diff --git a/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader.sln b/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader.sln deleted file mode 100644 index 90ad2b6..0000000 --- a/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader.sln +++ /dev/null @@ -1,22 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 14 -VisualStudioVersion = 14.0.25420.1 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NovetusTest_FileDownloader", "NovetusTest_FileDownloader\NovetusTest_FileDownloader.csproj", "{8638EB3E-97F1-4468-ADC1-DCFCB2902BBB}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {8638EB3E-97F1-4468-ADC1-DCFCB2902BBB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {8638EB3E-97F1-4468-ADC1-DCFCB2902BBB}.Debug|Any CPU.Build.0 = Debug|Any CPU - {8638EB3E-97F1-4468-ADC1-DCFCB2902BBB}.Release|Any CPU.ActiveCfg = Release|Any CPU - {8638EB3E-97F1-4468-ADC1-DCFCB2902BBB}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/App.config b/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/App.config deleted file mode 100644 index 88fa402..0000000 --- a/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/App.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/Downloader.cs b/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/Downloader.cs deleted file mode 100644 index 2b6984f..0000000 --- a/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/Downloader.cs +++ /dev/null @@ -1,139 +0,0 @@ -using System; -using System.Net; -using System.Windows.Forms; -using System.IO; - -class Downloader -{ - private string fileURL; - private string fileName; - private string fileFilter; - private string downloadOutcome; - private string downloadOutcomeAddText; - private ProgressBar downloadProgress; - private SaveFileDialog saveFileDialog1; - - public Downloader(string url, string name, string filter, ProgressBar progress) - { - fileName = name; - fileURL = url; - fileFilter = filter; - downloadProgress = progress; - } - - public void setDownloadOutcome(string text) - { - downloadOutcome = text; - } - - public string getDownloadOutcome() - { - return downloadOutcome; - } - - public void InitDownload(string additionalText = "") - { - downloadOutcomeAddText = additionalText; - - saveFileDialog1 = new SaveFileDialog() - { - FileName = fileName, - //"Compressed zip files (*.zip)|*.zip|All files (*.*)|*.*" - Filter = fileFilter, - Title = "Save " + fileName - }; - - if (saveFileDialog1.ShowDialog() == DialogResult.OK) - { - try - { - int read = DownloadGZipFile(fileURL, saveFileDialog1.FileName); - downloadOutcome = "File " + Path.GetFileName(saveFileDialog1.FileName) + " downloaded! " + read + " bytes written!" + downloadOutcomeAddText; - } - catch (Exception ex) - { - downloadOutcome = "Error when downloading file: " + ex.Message; - } - } - } - - public static int DownloadGZipFile(string remoteFilename, string localFilename) - { - //credit to Tom Archer (https://www.codeguru.com/columns/dotnettips/article.php/c7005/Downloading-Files-with-the-WebRequest-and-WebResponse-Classes.htm) - //and Brokenglass (https://stackoverflow.com/questions/4567313/uncompressing-gzip-response-from-webclient/4567408#4567408) - - // Function will return the number of bytes processed - // to the caller. Initialize to 0 here. - int bytesProcessed = 0; - - // Assign values to these objects here so that they can - // be referenced in the finally block - Stream remoteStream = null; - Stream localStream = null; - WebResponse response = null; - - // Use a try/catch/finally block as both the WebRequest and Stream - // classes throw exceptions upon error - try - { - // Create a request for the specified remote file name - var request = (HttpWebRequest)WebRequest.Create(remoteFilename); - request.Headers.Add(HttpRequestHeader.AcceptEncoding, "gzip,deflate"); - request.AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate; - if (request != null) - { - // Send the request to the server and retrieve the - // WebResponse object - response = request.GetResponse(); - if (response != null) - { - // Once the WebResponse object has been retrieved, - // get the stream object associated with the response's data - remoteStream = response.GetResponseStream(); - - // Create the local file - localStream = File.Create(localFilename); - - // Allocate a 1k buffer - byte[] buffer = new byte[1024]; - int bytesRead; - - // Simple do/while loop to read from stream until - // no bytes are returned - do - { - // Read data (up to 1k) from the stream - bytesRead = remoteStream.Read(buffer, 0, buffer.Length); - - // Write the data to the local file - localStream.Write(buffer, 0, bytesRead); - - // Increment total bytes processed - bytesProcessed += bytesRead; - } while (bytesRead > 0); - } - } - } - catch (Exception e) - { - Console.WriteLine(e.Message); - } - finally - { - // Close the response and streams objects here - // to make sure they're closed even if an exception - // is thrown at some point - if (response != null) response.Close(); - if (remoteStream != null) remoteStream.Close(); - if (localStream != null) localStream.Close(); - } - - // Return total bytes processed to caller. - return bytesProcessed; - } - - void wc_DownloadProgressChanged(object sender, DownloadProgressChangedEventArgs e) - { - downloadProgress.Value = e.ProgressPercentage; - } -} diff --git a/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/Form1.Designer.cs b/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/Form1.Designer.cs deleted file mode 100644 index bf627ea..0000000 --- a/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/Form1.Designer.cs +++ /dev/null @@ -1,118 +0,0 @@ -namespace NovetusTest_FileDownloader -{ - partial class Form1 - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.button1 = new System.Windows.Forms.Button(); - this.progressBar1 = new System.Windows.Forms.ProgressBar(); - this.label1 = new System.Windows.Forms.Label(); - this.textBox1 = new System.Windows.Forms.TextBox(); - this.textBox2 = new System.Windows.Forms.TextBox(); - this.label2 = new System.Windows.Forms.Label(); - this.SuspendLayout(); - // - // button1 - // - this.button1.Location = new System.Drawing.Point(12, 80); - this.button1.Name = "button1"; - this.button1.Size = new System.Drawing.Size(206, 23); - this.button1.TabIndex = 0; - this.button1.Text = "download"; - this.button1.UseVisualStyleBackColor = true; - this.button1.Click += new System.EventHandler(this.button1_Click); - // - // progressBar1 - // - this.progressBar1.Location = new System.Drawing.Point(12, 51); - this.progressBar1.Name = "progressBar1"; - this.progressBar1.Size = new System.Drawing.Size(206, 23); - this.progressBar1.TabIndex = 1; - // - // label1 - // - this.label1.AutoSize = true; - this.label1.Location = new System.Drawing.Point(33, 9); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(46, 13); - this.label1.TabIndex = 2; - this.label1.Text = "filename"; - // - // textBox1 - // - this.textBox1.Location = new System.Drawing.Point(12, 25); - this.textBox1.Name = "textBox1"; - this.textBox1.Size = new System.Drawing.Size(100, 20); - this.textBox1.TabIndex = 3; - // - // textBox2 - // - this.textBox2.Location = new System.Drawing.Point(118, 25); - this.textBox2.Name = "textBox2"; - this.textBox2.Size = new System.Drawing.Size(100, 20); - this.textBox2.TabIndex = 4; - // - // label2 - // - this.label2.AutoSize = true; - this.label2.Location = new System.Drawing.Point(159, 9); - this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(18, 13); - this.label2.TabIndex = 5; - this.label2.Text = "url"; - // - // Form1 - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(233, 113); - this.Controls.Add(this.label2); - this.Controls.Add(this.textBox2); - this.Controls.Add(this.textBox1); - this.Controls.Add(this.label1); - this.Controls.Add(this.progressBar1); - this.Controls.Add(this.button1); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; - this.MaximizeBox = false; - this.Name = "Form1"; - this.Text = "Test File Downloader"; - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private System.Windows.Forms.Button button1; - private System.Windows.Forms.ProgressBar progressBar1; - private System.Windows.Forms.Label label1; - private System.Windows.Forms.TextBox textBox1; - private System.Windows.Forms.TextBox textBox2; - private System.Windows.Forms.Label label2; - } -} - diff --git a/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/Form1.cs b/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/Form1.cs deleted file mode 100644 index 4a3278d..0000000 --- a/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/Form1.cs +++ /dev/null @@ -1,38 +0,0 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Forms; - -namespace NovetusTest_FileDownloader -{ - public partial class Form1 : Form - { - public Form1() - { - InitializeComponent(); - } - - private void button1_Click(object sender, EventArgs e) - { - Downloader download = new Downloader(textBox2.Text, textBox1.Text, "Roblox Model (*.rbxm)|*.rbxm|Roblox Mesh (*.mesh)|*.mesh|PNG Image (*.png)|*.png|WAV Sound (*.wav)|*.wav", progressBar1); - - try - { - download.InitDownload(" This was a test download."); - } - catch (Exception) - { - } - - if (!string.IsNullOrWhiteSpace(download.getDownloadOutcome())) - { - MessageBox.Show(download.getDownloadOutcome()); - } - } - } -} diff --git a/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/Form1.resx b/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/Form1.resx deleted file mode 100644 index 1af7de1..0000000 --- a/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/Form1.resx +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/NovetusTest_FileDownloader.csproj b/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/NovetusTest_FileDownloader.csproj deleted file mode 100644 index 26496f2..0000000 --- a/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/NovetusTest_FileDownloader.csproj +++ /dev/null @@ -1,91 +0,0 @@ - - - - - Debug - AnyCPU - {8638EB3E-97F1-4468-ADC1-DCFCB2902BBB} - WinExe - Properties - NovetusTest_FileDownloader - NovetusTest_FileDownloader - v4.5.2 - 512 - true - - - AnyCPU - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - AnyCPU - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - - - - - - - - - - - - - - - Form - - - Form1.cs - - - - - Form1.cs - - - ResXFileCodeGenerator - Resources.Designer.cs - Designer - - - True - Resources.resx - - - SettingsSingleFileGenerator - Settings.Designer.cs - - - True - Settings.settings - True - - - - - - - - \ No newline at end of file diff --git a/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/Program.cs b/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/Program.cs deleted file mode 100644 index 2d7fd53..0000000 --- a/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/Program.cs +++ /dev/null @@ -1,22 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; -using System.Windows.Forms; - -namespace NovetusTest_FileDownloader -{ - static class Program - { - /// - /// The main entry point for the application. - /// - [STAThread] - static void Main() - { - Application.EnableVisualStyles(); - Application.SetCompatibleTextRenderingDefault(false); - Application.Run(new Form1()); - } - } -} diff --git a/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/Properties/AssemblyInfo.cs b/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/Properties/AssemblyInfo.cs deleted file mode 100644 index 3911c44..0000000 --- a/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("NovetusTest_FileDownloader")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("NovetusTest_FileDownloader")] -[assembly: AssemblyCopyright("Copyright © 2019")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("8638eb3e-97f1-4468-adc1-dcfcb2902bbb")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/Properties/Resources.Designer.cs b/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/Properties/Resources.Designer.cs deleted file mode 100644 index 9238352..0000000 --- a/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/Properties/Resources.Designer.cs +++ /dev/null @@ -1,71 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace NovetusTest_FileDownloader.Properties -{ - - - /// - /// A strongly-typed resource class, for looking up localized strings, etc. - /// - // This class was auto-generated by the StronglyTypedResourceBuilder - // class via a tool like ResGen or Visual Studio. - // To add or remove a member, edit your .ResX file then rerun ResGen - // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class Resources - { - - private static global::System.Resources.ResourceManager resourceMan; - - private static global::System.Globalization.CultureInfo resourceCulture; - - [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal Resources() - { - } - - /// - /// Returns the cached ResourceManager instance used by this class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Resources.ResourceManager ResourceManager - { - get - { - if ((resourceMan == null)) - { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("NovetusTest_FileDownloader.Properties.Resources", typeof(Resources).Assembly); - resourceMan = temp; - } - return resourceMan; - } - } - - /// - /// Overrides the current thread's CurrentUICulture property for all - /// resource lookups using this strongly typed resource class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Globalization.CultureInfo Culture - { - get - { - return resourceCulture; - } - set - { - resourceCulture = value; - } - } - } -} diff --git a/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/Properties/Resources.resx b/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/Properties/Resources.resx deleted file mode 100644 index af7dbeb..0000000 --- a/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/Properties/Resources.resx +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/Properties/Settings.Designer.cs b/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/Properties/Settings.Designer.cs deleted file mode 100644 index 6b32b0c..0000000 --- a/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/Properties/Settings.Designer.cs +++ /dev/null @@ -1,30 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace NovetusTest_FileDownloader.Properties -{ - - - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] - internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase - { - - private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); - - public static Settings Default - { - get - { - return defaultInstance; - } - } - } -} diff --git a/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/Properties/Settings.settings b/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/Properties/Settings.settings deleted file mode 100644 index 3964565..0000000 --- a/Tests/NovetusTest_FileDownloader/NovetusTest_FileDownloader/Properties/Settings.settings +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/Tests/NovetusTest_RobloxFileDownloaderAndSorter/NovetusTest_RobloxFileDownloaderAndSorter.sln b/Tests/NovetusTest_RobloxFileDownloaderAndSorter/NovetusTest_RobloxFileDownloaderAndSorter.sln deleted file mode 100644 index 3e67c54..0000000 --- a/Tests/NovetusTest_RobloxFileDownloaderAndSorter/NovetusTest_RobloxFileDownloaderAndSorter.sln +++ /dev/null @@ -1,22 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 14 -VisualStudioVersion = 14.0.25420.1 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NovetusTest_RobloxFileDownloaderAndSorter", "NovetusTest_RobloxFileDownloaderAndSorter\NovetusTest_RobloxFileDownloaderAndSorter.csproj", "{5625D44D-4592-4926-8EFD-76FCC5437971}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {5625D44D-4592-4926-8EFD-76FCC5437971}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {5625D44D-4592-4926-8EFD-76FCC5437971}.Debug|Any CPU.Build.0 = Debug|Any CPU - {5625D44D-4592-4926-8EFD-76FCC5437971}.Release|Any CPU.ActiveCfg = Release|Any CPU - {5625D44D-4592-4926-8EFD-76FCC5437971}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/Tests/NovetusTest_RobloxFileDownloaderAndSorter/NovetusTest_RobloxFileDownloaderAndSorter/App.config b/Tests/NovetusTest_RobloxFileDownloaderAndSorter/NovetusTest_RobloxFileDownloaderAndSorter/App.config deleted file mode 100644 index 88fa402..0000000 --- a/Tests/NovetusTest_RobloxFileDownloaderAndSorter/NovetusTest_RobloxFileDownloaderAndSorter/App.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/Tests/NovetusTest_RobloxFileDownloaderAndSorter/NovetusTest_RobloxFileDownloaderAndSorter/Downloader.cs b/Tests/NovetusTest_RobloxFileDownloaderAndSorter/NovetusTest_RobloxFileDownloaderAndSorter/Downloader.cs deleted file mode 100644 index 3fd25ef..0000000 --- a/Tests/NovetusTest_RobloxFileDownloaderAndSorter/NovetusTest_RobloxFileDownloaderAndSorter/Downloader.cs +++ /dev/null @@ -1,162 +0,0 @@ -using System; -using System.Net; -using System.Windows.Forms; -using System.IO; - -class Downloader -{ - private string fileURL; - private string fileName; - private string fileFilter; - private string downloadOutcome; - private string downloadOutcomeAddText; - private static string downloadOutcomeException; - - public Downloader(string url, string name, string filter) - { - fileName = name; - fileURL = url; - fileFilter = filter; - } - - public Downloader(string url, string name) - { - fileName = name; - fileURL = url; - fileFilter = ""; - } - - public void setDownloadOutcome(string text) - { - downloadOutcome = text; - } - - public string getDownloadOutcome() - { - return downloadOutcome; - } - - public void InitDownload(string path, string fileext, string additionalText = "") - { - downloadOutcomeAddText = additionalText; - - string outputfilename = fileName + fileext; - string fullpath = path + "\\" + outputfilename; - - try - { - int read = DownloadFile(fileURL, fullpath); - downloadOutcome = "File " + outputfilename + " downloaded! " + read + " bytes written! " + downloadOutcomeAddText + downloadOutcomeException; - } - catch (Exception ex) - { - downloadOutcome = "Error when downloading file: " + ex.Message; - } - } - - public void InitDownload(string additionalText = "") - { - downloadOutcomeAddText = additionalText; - - SaveFileDialog saveFileDialog1 = new SaveFileDialog() - { - FileName = fileName, - //"Compressed zip files (*.zip)|*.zip|All files (*.*)|*.*" - Filter = fileFilter, - Title = "Save " + fileName - }; - - if (saveFileDialog1.ShowDialog() == DialogResult.OK) - { - try - { - int read = DownloadFile(fileURL, saveFileDialog1.FileName); - downloadOutcome = "File " + Path.GetFileName(saveFileDialog1.FileName) + " downloaded! " + read + " bytes written! " + downloadOutcomeAddText + downloadOutcomeException; - } - catch (Exception ex) - { - downloadOutcome = "Error when downloading file: " + ex.Message; - } - } - } - - private static int DownloadFile(string remoteFilename, string localFilename) - { - //credit to Tom Archer (https://www.codeguru.com/columns/dotnettips/article.php/c7005/Downloading-Files-with-the-WebRequest-and-WebResponse-Classes.htm) - //and Brokenglass (https://stackoverflow.com/questions/4567313/uncompressing-gzip-response-from-webclient/4567408#4567408) - - // Function will return the number of bytes processed - // to the caller. Initialize to 0 here. - int bytesProcessed = 0; - - // Assign values to these objects here so that they can - // be referenced in the finally block - Stream remoteStream = null; - Stream localStream = null; - WebResponse response = null; - - // Use a try/catch/finally block as both the WebRequest and Stream - // classes throw exceptions upon error - try - { - ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls - | SecurityProtocolType.Tls11 - | SecurityProtocolType.Tls12 - | SecurityProtocolType.Ssl3; - // Create a request for the specified remote file name - HttpWebRequest request = (HttpWebRequest)WebRequest.Create(remoteFilename); - request.UserAgent = "Roblox/WinINet"; - request.Headers.Add(HttpRequestHeader.AcceptEncoding, "gzip,deflate"); - request.AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate; - if (request != null) - { - // Send the request to the server and retrieve the - // WebResponse object - response = request.GetResponse(); - if (response != null) - { - // Once the WebResponse object has been retrieved, - // get the stream object associated with the response's data - remoteStream = response.GetResponseStream(); - - // Create the local file - localStream = File.Create(localFilename); - - // Allocate a 1k buffer - byte[] buffer = new byte[1024]; - int bytesRead; - - // Simple do/while loop to read from stream until - // no bytes are returned - do - { - // Read data (up to 1k) from the stream - bytesRead = remoteStream.Read(buffer, 0, buffer.Length); - - // Write the data to the local file - localStream.Write(buffer, 0, bytesRead); - - // Increment total bytes processed - bytesProcessed += bytesRead; - } while (bytesRead > 0); - } - } - } - catch (Exception e) - { - downloadOutcomeException = " Exception detected: " + e.Message; - } - finally - { - // Close the response and streams objects here - // to make sure they're closed even if an exception - // is thrown at some point - if (response != null) response.Close(); - if (remoteStream != null) remoteStream.Close(); - if (localStream != null) localStream.Close(); - } - - // Return total bytes processed to caller. - return bytesProcessed; - } -} diff --git a/Tests/NovetusTest_RobloxFileDownloaderAndSorter/NovetusTest_RobloxFileDownloaderAndSorter/NovetusTest_RobloxFileDownloaderAndSorter.csproj b/Tests/NovetusTest_RobloxFileDownloaderAndSorter/NovetusTest_RobloxFileDownloaderAndSorter/NovetusTest_RobloxFileDownloaderAndSorter.csproj deleted file mode 100644 index f76f767..0000000 --- a/Tests/NovetusTest_RobloxFileDownloaderAndSorter/NovetusTest_RobloxFileDownloaderAndSorter/NovetusTest_RobloxFileDownloaderAndSorter.csproj +++ /dev/null @@ -1,64 +0,0 @@ - - - - - Debug - AnyCPU - {5625D44D-4592-4926-8EFD-76FCC5437971} - Exe - Properties - NovetusTest_RobloxFileDownloaderAndSorter - NovetusTest_RobloxFileDownloaderAndSorter - v4.5.2 - 512 - true - - - AnyCPU - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - AnyCPU - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Tests/NovetusTest_RobloxFileDownloaderAndSorter/NovetusTest_RobloxFileDownloaderAndSorter/Program.cs b/Tests/NovetusTest_RobloxFileDownloaderAndSorter/NovetusTest_RobloxFileDownloaderAndSorter/Program.cs deleted file mode 100644 index 156eadd..0000000 --- a/Tests/NovetusTest_RobloxFileDownloaderAndSorter/NovetusTest_RobloxFileDownloaderAndSorter/Program.cs +++ /dev/null @@ -1,22 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace NovetusTest_RobloxFileDownloaderAndSorter -{ - class Program - { - static void Main(string[] args) - { - string path = GlobalVars.RootPath + "\\Test.rbxl"; - string exportpath = GlobalVars.RootPath + "\\Export"; - - Console.WriteLine("Meshes"); - RobloxXMLLocalizer.DownloadFromNodes(path, GlobalVars.Fonts, 0, 0, exportpath, 0); - Console.WriteLine("Finished!"); - Console.ReadLine(); - } - } -} diff --git a/Tests/NovetusTest_RobloxFileDownloaderAndSorter/NovetusTest_RobloxFileDownloaderAndSorter/Properties/AssemblyInfo.cs b/Tests/NovetusTest_RobloxFileDownloaderAndSorter/NovetusTest_RobloxFileDownloaderAndSorter/Properties/AssemblyInfo.cs deleted file mode 100644 index 7d9fb7f..0000000 --- a/Tests/NovetusTest_RobloxFileDownloaderAndSorter/NovetusTest_RobloxFileDownloaderAndSorter/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("NovetusTest_RobloxFileDownloaderAndSorter")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("NovetusTest_RobloxFileDownloaderAndSorter")] -[assembly: AssemblyCopyright("Copyright © 2019")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("5625d44d-4592-4926-8efd-76fcc5437971")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Tests/NovetusTest_RobloxFileDownloaderAndSorter/NovetusTest_RobloxFileDownloaderAndSorter/RobloxXMLLocalizer.cs b/Tests/NovetusTest_RobloxFileDownloaderAndSorter/NovetusTest_RobloxFileDownloaderAndSorter/RobloxXMLLocalizer.cs deleted file mode 100644 index 97a9ccd..0000000 --- a/Tests/NovetusTest_RobloxFileDownloaderAndSorter/NovetusTest_RobloxFileDownloaderAndSorter/RobloxXMLLocalizer.cs +++ /dev/null @@ -1,105 +0,0 @@ -using NovetusTest_RobloxFileDownloaderAndSorter; -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Text; -using System.Text.RegularExpressions; -using System.Threading.Tasks; -using System.Windows.Forms; -using System.Xml; -using System.Xml.Linq; - -public class RobloxXMLLocalizer -{ - public static void DownloadFromNodes(string filepath, AssetCacheDef assetdef, int idIndex, int extIndex, int outputPathIndex, int inGameDirIndex) - { - DownloadFromNodes(filepath, assetdef.Class, assetdef.Id[idIndex], assetdef.Ext[extIndex], assetdef.Dir[outputPathIndex], assetdef.GameDir[inGameDirIndex]); - } - - public static void DownloadFromNodes(string filepath, AssetCacheDef assetdef, int idIndex, int extIndex,string outputPath, int inGameDirIndex) - { - DownloadFromNodes(filepath, assetdef.Class, assetdef.Id[idIndex], assetdef.Ext[extIndex], outputPath, assetdef.GameDir[inGameDirIndex]); - } - - public static void DownloadFromNodes(string filepath, string itemClassValue, string itemIdValue, string fileext, string outputPath, string inGameDir) - { - string oldfile = File.ReadAllText(filepath); - string fixedfile = RemoveInvalidXmlChars(ReplaceHexadecimalSymbols(oldfile)); - XDocument doc = XDocument.Parse(fixedfile); - - try - { - var v = from nodes in doc.Descendants("Item") - where nodes.Attribute("class").Value == itemClassValue - select nodes; - - foreach (var item in v) - { - var v2 = from nodes in item.Descendants("Content") - where nodes.Attribute("name").Value == itemIdValue - select nodes; - - foreach (var item2 in v2) - { - var v3 = from nodes in item2.Descendants("url") - select nodes; - - foreach (var item3 in v3) - { - if (!item3.Value.Contains("rbxasset")) - { - //do whatever with your value - string url = item3.Value; - DownloadFilesFromNode(url, outputPath, fileext); - string[] substrings = url.Split('='); - item3.Value = inGameDir + substrings[1] + fileext; - } - } - } - } - - } - catch (Exception ex) - { - MessageBox.Show("The download has experienced an error: " + ex.Message, "Novetus Localizer", MessageBoxButtons.OK, MessageBoxIcon.Information); - } - finally - { - doc.Save(filepath); - } - } - - private static void DownloadFilesFromNode(string url, string path, string fileext) - { - if (url.Contains('=')) - { - string[] substrings = url.Split('='); - - if (!string.IsNullOrWhiteSpace(substrings[1])) - { - Downloader download = new Downloader(url, substrings[1]); - - try - { - download.InitDownload(path, fileext); - } - catch (Exception ex) - { - MessageBox.Show("The download has experienced an error: " + ex.Message, "Novetus Localizer", MessageBoxButtons.OK, MessageBoxIcon.Information); - } - } - } - } - - private static string RemoveInvalidXmlChars(string content) - { - return new string(content.Where(ch => XmlConvert.IsXmlChar(ch)).ToArray()); - } - - private static string ReplaceHexadecimalSymbols(string txt) - { - string r = "[\x00-\x08\x0B\x0C\x0E-\x1F\x26]"; - return Regex.Replace(txt, r, "", RegexOptions.Compiled); - } -} diff --git a/Tests/NovetusTest_RobloxFileDownloaderAndSorter/NovetusTest_RobloxFileDownloaderAndSorter/TestProgramVars.cs b/Tests/NovetusTest_RobloxFileDownloaderAndSorter/NovetusTest_RobloxFileDownloaderAndSorter/TestProgramVars.cs deleted file mode 100644 index 122f737..0000000 --- a/Tests/NovetusTest_RobloxFileDownloaderAndSorter/NovetusTest_RobloxFileDownloaderAndSorter/TestProgramVars.cs +++ /dev/null @@ -1,57 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Reflection; -using System.Text; -using System.Threading.Tasks; - -namespace NovetusTest_RobloxFileDownloaderAndSorter -{ - public class AssetCacheDef - { - public AssetCacheDef(string clas, string[] id, string[] ext, string[] dir, string[] gamedir) - { - Class = clas; - Id = id; - Ext = ext; - Dir = dir; - GameDir = gamedir; - } - - public string Class { get; set; } - public string[] Id { get; set; } - public string[] Ext { get; set; } - public string[] Dir { get; set; } - public string[] GameDir { get; set; } - } - - class GlobalVars - { - public static readonly string RootPath = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location); - public static readonly string BasePath = RootPath.Replace(@"\", @"\\"); - public static readonly string DataPath = BasePath + "\\shareddata"; - public static readonly string AssetCacheDir = DataPath + "\\assetcache"; - public static readonly string AssetCacheDirSky = AssetCacheDir + "\\sky"; - public static readonly string AssetCacheDirFonts = AssetCacheDir + "\\fonts"; - public static readonly string AssetCacheDirSounds = AssetCacheDir + "\\sounds"; - public static readonly string AssetCacheDirTextures = AssetCacheDir + "\\textures"; - - public static readonly string BaseGameDir = "rbxasset://../../../"; - public static readonly string SharedDataGameDir = BaseGameDir + "shareddata/"; - public static readonly string AssetCacheGameDir = SharedDataGameDir + "assetcache/"; - public static readonly string AssetCacheFontsGameDir = AssetCacheGameDir + "fonts/"; - public static readonly string AssetCacheSkyGameDir = AssetCacheGameDir + "sky/"; - public static readonly string AssetCacheSoundsGameDir = AssetCacheGameDir + "sounds/"; - public static readonly string AssetCacheTexturesGameDir = AssetCacheGameDir + "textures/"; - - public static AssetCacheDef Fonts { get { return new AssetCacheDef("SpecialMesh", new string[] { "MeshId", "TextureId"}, new string[] { ".mesh", ".png" }, new string[] { AssetCacheDirFonts, AssetCacheDirTextures }, new string[] { AssetCacheFontsGameDir, AssetCacheTexturesGameDir }); } } - public static AssetCacheDef Sky { get { return new AssetCacheDef("Sky", new string[] { "SkyboxBk", "SkyboxDn", "SkyboxFt", "SkyboxLf", "SkyboxRt", "SkyboxUp" }, new string[] { ".png" }, new string[] { AssetCacheDirSky }, new string[] { AssetCacheSkyGameDir }); } } - public static AssetCacheDef Decal { get { return new AssetCacheDef("Decal", new string[] { "Texture" }, new string[] { ".png" }, new string[] { AssetCacheDirTextures }, new string[] { AssetCacheTexturesGameDir }); } } - public static AssetCacheDef Texture { get { return new AssetCacheDef("Texture", new string[] { "Texture" }, new string[] { ".png" }, new string[] { AssetCacheDirTextures }, new string[] { AssetCacheTexturesGameDir }); } } - public static AssetCacheDef HopperBin { get { return new AssetCacheDef("HopperBin", new string[] { "TextureId" }, new string[] { ".png" }, new string[] { AssetCacheDirTextures }, new string[] { AssetCacheTexturesGameDir }); } } - public static AssetCacheDef Tool { get { return new AssetCacheDef("Tool", new string[] { "TextureId" }, new string[] { ".png" }, new string[] { AssetCacheDirTextures }, new string[] { AssetCacheTexturesGameDir }); } } - public static AssetCacheDef Sound { get { return new AssetCacheDef("Sound", new string[] { "SoundId" }, new string[] { ".wav" }, new string[] { AssetCacheDirSounds }, new string[] { AssetCacheSoundsGameDir }); } } - public static AssetCacheDef ImageLabel { get { return new AssetCacheDef("ImageLabel", new string[] { "Image" }, new string[] { ".png" }, new string[] { AssetCacheDirTextures }, new string[] { AssetCacheTexturesGameDir }); } } - } -} diff --git a/Tests/NovetusTest_RobloxXMLFileParser/NovetusTest_RobloxXMLFileParser.sln b/Tests/NovetusTest_RobloxXMLFileParser/NovetusTest_RobloxXMLFileParser.sln deleted file mode 100644 index 4a5a487..0000000 --- a/Tests/NovetusTest_RobloxXMLFileParser/NovetusTest_RobloxXMLFileParser.sln +++ /dev/null @@ -1,22 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 14 -VisualStudioVersion = 14.0.25420.1 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NovetusTest_RobloxXMLFileParser", "NovetusTest_RobloxXMLFileParser\NovetusTest_RobloxXMLFileParser.csproj", "{30A2FB06-2B19-45E3-83D1-D7A121BC6567}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {30A2FB06-2B19-45E3-83D1-D7A121BC6567}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {30A2FB06-2B19-45E3-83D1-D7A121BC6567}.Debug|Any CPU.Build.0 = Debug|Any CPU - {30A2FB06-2B19-45E3-83D1-D7A121BC6567}.Release|Any CPU.ActiveCfg = Release|Any CPU - {30A2FB06-2B19-45E3-83D1-D7A121BC6567}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/Tests/NovetusTest_RobloxXMLFileParser/NovetusTest_RobloxXMLFileParser/App.config b/Tests/NovetusTest_RobloxXMLFileParser/NovetusTest_RobloxXMLFileParser/App.config deleted file mode 100644 index 88fa402..0000000 --- a/Tests/NovetusTest_RobloxXMLFileParser/NovetusTest_RobloxXMLFileParser/App.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/Tests/NovetusTest_RobloxXMLFileParser/NovetusTest_RobloxXMLFileParser/NovetusTest_RobloxXMLFileParser.csproj b/Tests/NovetusTest_RobloxXMLFileParser/NovetusTest_RobloxXMLFileParser/NovetusTest_RobloxXMLFileParser.csproj deleted file mode 100644 index 4e35b0f..0000000 --- a/Tests/NovetusTest_RobloxXMLFileParser/NovetusTest_RobloxXMLFileParser/NovetusTest_RobloxXMLFileParser.csproj +++ /dev/null @@ -1,61 +0,0 @@ - - - - - Debug - AnyCPU - {30A2FB06-2B19-45E3-83D1-D7A121BC6567} - Exe - Properties - NovetusTest_RobloxXMLFileParser - NovetusTest_RobloxXMLFileParser - v4.5.2 - 512 - true - - - AnyCPU - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - AnyCPU - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Tests/NovetusTest_RobloxXMLFileParser/NovetusTest_RobloxXMLFileParser/Program.cs b/Tests/NovetusTest_RobloxXMLFileParser/NovetusTest_RobloxXMLFileParser/Program.cs deleted file mode 100644 index 5b4a16b..0000000 --- a/Tests/NovetusTest_RobloxXMLFileParser/NovetusTest_RobloxXMLFileParser/Program.cs +++ /dev/null @@ -1,52 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace NovetusTest_RobloxXMLFileParser -{ - class Program - { - static void Main(string[] args) - { - string path = @"G:\Projects\Novetus\Novetus\maps\2012\2012 - Iron Cafe.rbxl"; - - Console.WriteLine("Meshes"); - RobloxXMLParser.SearchNodes(path, "SpecialMesh", "MeshId"); - - Console.WriteLine("Mesh Textures"); - RobloxXMLParser.SearchNodes(path, "SpecialMesh", "TextureId"); - - Console.WriteLine("Decals"); - RobloxXMLParser.SearchNodes(path, "Decal", "Texture"); - - Console.WriteLine("SkyboxBk"); - RobloxXMLParser.SearchNodes(path, "Sky", "SkyboxBk"); - - Console.WriteLine("SkyboxDn"); - RobloxXMLParser.SearchNodes(path, "Sky", "SkyboxDn"); - - Console.WriteLine("SkyboxFt"); - RobloxXMLParser.SearchNodes(path, "Sky", "SkyboxFt"); - - Console.WriteLine("SkyboxRt"); - RobloxXMLParser.SearchNodes(path, "Sky", "SkyboxRt"); - - Console.WriteLine("SkyboxUp"); - RobloxXMLParser.SearchNodes(path, "Sky", "SkyboxUp"); - - Console.WriteLine("HopperBins"); - RobloxXMLParser.SearchNodes(path, "HopperBin", "TextureId"); - - Console.WriteLine("Tools"); - RobloxXMLParser.SearchNodes(path, "Tool", "TextureId"); - - Console.WriteLine("Sounds"); - RobloxXMLParser.SearchNodes(path, "Sound", "SoundId"); - - Console.WriteLine(path + " parsed."); - Console.ReadLine(); - } - } -} diff --git a/Tests/NovetusTest_RobloxXMLFileParser/NovetusTest_RobloxXMLFileParser/Properties/AssemblyInfo.cs b/Tests/NovetusTest_RobloxXMLFileParser/NovetusTest_RobloxXMLFileParser/Properties/AssemblyInfo.cs deleted file mode 100644 index bb7b798..0000000 --- a/Tests/NovetusTest_RobloxXMLFileParser/NovetusTest_RobloxXMLFileParser/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("NovetusTest_RobloxXMLFileParser")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("NovetusTest_RobloxXMLFileParser")] -[assembly: AssemblyCopyright("Copyright © 2019")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("30a2fb06-2b19-45e3-83d1-d7a121bc6567")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Tests/NovetusTest_RobloxXMLFileParser/NovetusTest_RobloxXMLFileParser/RobloxXMLParser.cs b/Tests/NovetusTest_RobloxXMLFileParser/NovetusTest_RobloxXMLFileParser/RobloxXMLParser.cs deleted file mode 100644 index bf7dfe8..0000000 --- a/Tests/NovetusTest_RobloxXMLFileParser/NovetusTest_RobloxXMLFileParser/RobloxXMLParser.cs +++ /dev/null @@ -1,80 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Text; -using System.Text.RegularExpressions; -using System.Threading.Tasks; -using System.Xml; -using System.Xml.Linq; - -public class RobloxXMLParser -{ - /* - * todo: make it so it: - * - * - downloads files from ROBLOX's servers from the links in the xml - * - puts them in their respective assetcache folders, naming them as [ID].[FILEEXT} - * - modifies the value in the xml to contain the new link - * - save the roblox xml. - */ - public static void SearchNodes(string path, string itemClassValue, string itemIdValue) - { - try - { - string oldfile = File.ReadAllText(path); - string fixedfile = RemoveInvalidXmlChars(ReplaceHexadecimalSymbols(oldfile)); - XDocument doc = XDocument.Parse(fixedfile); - - var v = from nodes in doc.Descendants("Item") - where nodes.Attribute("class").Value == itemClassValue - select nodes; - - foreach (var item in v) - { - var v2 = from nodes in item.Descendants("Content") - where nodes.Attribute("name").Value == itemIdValue - select nodes; - - foreach (var item2 in v2) - { - var v3 = from nodes in item2.Descendants("url") - select nodes; - - foreach (var item3 in v3) - { - if (!item3.Value.Contains("rbxasset")) - { - //do whatever with your value - if (item3.Value.Contains('=')) - { - string[] substrings = item3.Value.Split('='); - - if (!string.IsNullOrWhiteSpace(substrings[1])) - { - Console.WriteLine(item3.Value); - Console.WriteLine("ID: " + substrings[1]); - } - } - } - } - } - } - } - catch (Exception ex) - { - Console.WriteLine(ex.Message); - } - } - - private static string RemoveInvalidXmlChars(string content) - { - return new string(content.Where(ch => XmlConvert.IsXmlChar(ch)).ToArray()); - } - - private static string ReplaceHexadecimalSymbols(string txt) - { - string r = "[\x00-\x08\x0B\x0C\x0E-\x1F\x26]"; - return Regex.Replace(txt, r, "", RegexOptions.Compiled); - } -} diff --git a/shareddata/charcustom/BodyColors.xml b/shareddata/charcustom/BodyColors.xml deleted file mode 100644 index 5a83647..0000000 --- a/shareddata/charcustom/BodyColors.xml +++ /dev/null @@ -1,16 +0,0 @@ - - null - nil - - - {0} - {1} - {2} - Body Colors - {3} - {4} - {5} - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/custom/NoExtra.png b/shareddata/charcustom/custom/NoExtra.png deleted file mode 100644 index 081f49a..0000000 Binary files a/shareddata/charcustom/custom/NoExtra.png and /dev/null differ diff --git a/shareddata/charcustom/custom/NoExtra.rbxm b/shareddata/charcustom/custom/NoExtra.rbxm deleted file mode 100644 index ab10a6c..0000000 --- a/shareddata/charcustom/custom/NoExtra.rbxm +++ /dev/null @@ -1,4 +0,0 @@ - - null - nil - \ No newline at end of file diff --git a/shareddata/charcustom/faces/2006Face.png b/shareddata/charcustom/faces/2006Face.png deleted file mode 100644 index 68d81eb..0000000 Binary files a/shareddata/charcustom/faces/2006Face.png and /dev/null differ diff --git a/shareddata/charcustom/faces/2006Face.rbxm b/shareddata/charcustom/faces/2006Face.rbxm deleted file mode 100644 index 7018604..0000000 --- a/shareddata/charcustom/faces/2006Face.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/2006Face.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/Annoyance.png b/shareddata/charcustom/faces/Annoyance.png deleted file mode 100644 index 48fe043..0000000 Binary files a/shareddata/charcustom/faces/Annoyance.png and /dev/null differ diff --git a/shareddata/charcustom/faces/Annoyance.rbxm b/shareddata/charcustom/faces/Annoyance.rbxm deleted file mode 100644 index 2025ac5..0000000 --- a/shareddata/charcustom/faces/Annoyance.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/Annoyance.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/AprilFools.png b/shareddata/charcustom/faces/AprilFools.png deleted file mode 100644 index 573e8b2..0000000 Binary files a/shareddata/charcustom/faces/AprilFools.png and /dev/null differ diff --git a/shareddata/charcustom/faces/AprilFools.rbxm b/shareddata/charcustom/faces/AprilFools.rbxm deleted file mode 100644 index 42c6340..0000000 --- a/shareddata/charcustom/faces/AprilFools.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/AprilFools.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/AprilFools2.png b/shareddata/charcustom/faces/AprilFools2.png deleted file mode 100644 index 6254cf5..0000000 Binary files a/shareddata/charcustom/faces/AprilFools2.png and /dev/null differ diff --git a/shareddata/charcustom/faces/AprilFools2.rbxm b/shareddata/charcustom/faces/AprilFools2.rbxm deleted file mode 100644 index c75d62c..0000000 --- a/shareddata/charcustom/faces/AprilFools2.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/AprilFools2.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/CatFace.png b/shareddata/charcustom/faces/CatFace.png deleted file mode 100644 index 6926177..0000000 Binary files a/shareddata/charcustom/faces/CatFace.png and /dev/null differ diff --git a/shareddata/charcustom/faces/CatFace.rbxm b/shareddata/charcustom/faces/CatFace.rbxm deleted file mode 100644 index efd1a65..0000000 --- a/shareddata/charcustom/faces/CatFace.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/CatFace.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/CheckIt.png b/shareddata/charcustom/faces/CheckIt.png deleted file mode 100644 index 4ce976a..0000000 Binary files a/shareddata/charcustom/faces/CheckIt.png and /dev/null differ diff --git a/shareddata/charcustom/faces/CheckIt.rbxm b/shareddata/charcustom/faces/CheckIt.rbxm deleted file mode 100644 index 5702a8c..0000000 --- a/shareddata/charcustom/faces/CheckIt.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/CheckIt.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/Chill.png b/shareddata/charcustom/faces/Chill.png deleted file mode 100644 index 3bd0ce7..0000000 Binary files a/shareddata/charcustom/faces/Chill.png and /dev/null differ diff --git a/shareddata/charcustom/faces/Chill.rbxm b/shareddata/charcustom/faces/Chill.rbxm deleted file mode 100644 index da5c400..0000000 --- a/shareddata/charcustom/faces/Chill.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/Chill.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/ChillMcCool.png b/shareddata/charcustom/faces/ChillMcCool.png deleted file mode 100644 index 75544f6..0000000 Binary files a/shareddata/charcustom/faces/ChillMcCool.png and /dev/null differ diff --git a/shareddata/charcustom/faces/ChillMcCool.rbxm b/shareddata/charcustom/faces/ChillMcCool.rbxm deleted file mode 100644 index ce31b37..0000000 --- a/shareddata/charcustom/faces/ChillMcCool.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/ChillMcCool.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/ClassicZombie.png b/shareddata/charcustom/faces/ClassicZombie.png deleted file mode 100644 index a5dbae5..0000000 Binary files a/shareddata/charcustom/faces/ClassicZombie.png and /dev/null differ diff --git a/shareddata/charcustom/faces/ClassicZombie.rbxm b/shareddata/charcustom/faces/ClassicZombie.rbxm deleted file mode 100644 index 48afd8e..0000000 --- a/shareddata/charcustom/faces/ClassicZombie.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/ClassicZombie.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/Commando.png b/shareddata/charcustom/faces/Commando.png deleted file mode 100644 index 9e3aa94..0000000 Binary files a/shareddata/charcustom/faces/Commando.png and /dev/null differ diff --git a/shareddata/charcustom/faces/Commando.rbxm b/shareddata/charcustom/faces/Commando.rbxm deleted file mode 100644 index 083d2ef..0000000 --- a/shareddata/charcustom/faces/Commando.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/Commando.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/D.png b/shareddata/charcustom/faces/D.png deleted file mode 100644 index 7a657ce..0000000 Binary files a/shareddata/charcustom/faces/D.png and /dev/null differ diff --git a/shareddata/charcustom/faces/D.rbxm b/shareddata/charcustom/faces/D.rbxm deleted file mode 100644 index 1760c6b..0000000 --- a/shareddata/charcustom/faces/D.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/D.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/DefaultFace.png b/shareddata/charcustom/faces/DefaultFace.png deleted file mode 100644 index 5555669..0000000 Binary files a/shareddata/charcustom/faces/DefaultFace.png and /dev/null differ diff --git a/shareddata/charcustom/faces/DefaultFace.rbxm b/shareddata/charcustom/faces/DefaultFace.rbxm deleted file mode 100644 index 41508ba..0000000 --- a/shareddata/charcustom/faces/DefaultFace.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://textures/face.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/Drool.png b/shareddata/charcustom/faces/Drool.png deleted file mode 100644 index 1c8033d..0000000 Binary files a/shareddata/charcustom/faces/Drool.png and /dev/null differ diff --git a/shareddata/charcustom/faces/Drool.rbxm b/shareddata/charcustom/faces/Drool.rbxm deleted file mode 100644 index d328647..0000000 --- a/shareddata/charcustom/faces/Drool.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/Drool.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/Dulko.png b/shareddata/charcustom/faces/Dulko.png deleted file mode 100644 index 09a74c3..0000000 Binary files a/shareddata/charcustom/faces/Dulko.png and /dev/null differ diff --git a/shareddata/charcustom/faces/Dulko.rbxm b/shareddata/charcustom/faces/Dulko.rbxm deleted file mode 100644 index b62eb79..0000000 --- a/shareddata/charcustom/faces/Dulko.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/Dulko.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/EmotionallyDistressedZombie.png b/shareddata/charcustom/faces/EmotionallyDistressedZombie.png deleted file mode 100644 index a3261f3..0000000 Binary files a/shareddata/charcustom/faces/EmotionallyDistressedZombie.png and /dev/null differ diff --git a/shareddata/charcustom/faces/EmotionallyDistressedZombie.rbxm b/shareddata/charcustom/faces/EmotionallyDistressedZombie.rbxm deleted file mode 100644 index 5e83e70..0000000 --- a/shareddata/charcustom/faces/EmotionallyDistressedZombie.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/EmotionallyDistressedZombie.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/EpicFace.png b/shareddata/charcustom/faces/EpicFace.png deleted file mode 100644 index 2b10f21..0000000 Binary files a/shareddata/charcustom/faces/EpicFace.png and /dev/null differ diff --git a/shareddata/charcustom/faces/EpicFace.rbxm b/shareddata/charcustom/faces/EpicFace.rbxm deleted file mode 100644 index 0104c3c..0000000 --- a/shareddata/charcustom/faces/EpicFace.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/EpicFace.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/Err.png b/shareddata/charcustom/faces/Err.png deleted file mode 100644 index 879b895..0000000 Binary files a/shareddata/charcustom/faces/Err.png and /dev/null differ diff --git a/shareddata/charcustom/faces/Err.rbxm b/shareddata/charcustom/faces/Err.rbxm deleted file mode 100644 index 5eaeb10..0000000 --- a/shareddata/charcustom/faces/Err.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/Err.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/EvilCatFace.png b/shareddata/charcustom/faces/EvilCatFace.png deleted file mode 100644 index ae833d8..0000000 Binary files a/shareddata/charcustom/faces/EvilCatFace.png and /dev/null differ diff --git a/shareddata/charcustom/faces/EvilCatFace.rbxm b/shareddata/charcustom/faces/EvilCatFace.rbxm deleted file mode 100644 index e187820..0000000 --- a/shareddata/charcustom/faces/EvilCatFace.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/EvilCatFace.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/ExistentialAngst.png b/shareddata/charcustom/faces/ExistentialAngst.png deleted file mode 100644 index 491ccf7..0000000 Binary files a/shareddata/charcustom/faces/ExistentialAngst.png and /dev/null differ diff --git a/shareddata/charcustom/faces/ExistentialAngst.rbxm b/shareddata/charcustom/faces/ExistentialAngst.rbxm deleted file mode 100644 index 4ab6927..0000000 --- a/shareddata/charcustom/faces/ExistentialAngst.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/ExistentialAngst.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/Fearless.png b/shareddata/charcustom/faces/Fearless.png deleted file mode 100644 index 37d2789..0000000 Binary files a/shareddata/charcustom/faces/Fearless.png and /dev/null differ diff --git a/shareddata/charcustom/faces/Fearless.rbxm b/shareddata/charcustom/faces/Fearless.rbxm deleted file mode 100644 index 1ae7fac..0000000 --- a/shareddata/charcustom/faces/Fearless.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/Fearless.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/FinnMcCool.png b/shareddata/charcustom/faces/FinnMcCool.png deleted file mode 100644 index 3c1ca41..0000000 Binary files a/shareddata/charcustom/faces/FinnMcCool.png and /dev/null differ diff --git a/shareddata/charcustom/faces/FinnMcCool.rbxm b/shareddata/charcustom/faces/FinnMcCool.rbxm deleted file mode 100644 index 1b1b1d3..0000000 --- a/shareddata/charcustom/faces/FinnMcCool.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/FinnMcCool.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/Freckles.png b/shareddata/charcustom/faces/Freckles.png deleted file mode 100644 index 31d6230..0000000 Binary files a/shareddata/charcustom/faces/Freckles.png and /dev/null differ diff --git a/shareddata/charcustom/faces/Freckles.rbxm b/shareddata/charcustom/faces/Freckles.rbxm deleted file mode 100644 index 6b54467..0000000 --- a/shareddata/charcustom/faces/Freckles.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/Freckles.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/Grr.png b/shareddata/charcustom/faces/Grr.png deleted file mode 100644 index b5a98d5..0000000 Binary files a/shareddata/charcustom/faces/Grr.png and /dev/null differ diff --git a/shareddata/charcustom/faces/Grr.rbxm b/shareddata/charcustom/faces/Grr.rbxm deleted file mode 100644 index da078bb..0000000 --- a/shareddata/charcustom/faces/Grr.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/Grr.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/HappyD.png b/shareddata/charcustom/faces/HappyD.png deleted file mode 100644 index cba19c6..0000000 Binary files a/shareddata/charcustom/faces/HappyD.png and /dev/null differ diff --git a/shareddata/charcustom/faces/HappyD.rbxm b/shareddata/charcustom/faces/HappyD.rbxm deleted file mode 100644 index 591efbd..0000000 --- a/shareddata/charcustom/faces/HappyD.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/HappyD.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/Heeeeeey.png b/shareddata/charcustom/faces/Heeeeeey.png deleted file mode 100644 index 78c6e7a..0000000 Binary files a/shareddata/charcustom/faces/Heeeeeey.png and /dev/null differ diff --git a/shareddata/charcustom/faces/Heeeeeey.rbxm b/shareddata/charcustom/faces/Heeeeeey.rbxm deleted file mode 100644 index 38f40ce..0000000 --- a/shareddata/charcustom/faces/Heeeeeey.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/Heeeeeey.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/ItsGoTime.png b/shareddata/charcustom/faces/ItsGoTime.png deleted file mode 100644 index 4eba82c..0000000 Binary files a/shareddata/charcustom/faces/ItsGoTime.png and /dev/null differ diff --git a/shareddata/charcustom/faces/ItsGoTime.rbxm b/shareddata/charcustom/faces/ItsGoTime.rbxm deleted file mode 100644 index b86bef8..0000000 --- a/shareddata/charcustom/faces/ItsGoTime.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/ItsGoTime.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/JackFrostFace.png b/shareddata/charcustom/faces/JackFrostFace.png deleted file mode 100644 index 0e9e14e..0000000 Binary files a/shareddata/charcustom/faces/JackFrostFace.png and /dev/null differ diff --git a/shareddata/charcustom/faces/JackFrostFace.rbxm b/shareddata/charcustom/faces/JackFrostFace.rbxm deleted file mode 100644 index 26c1e42..0000000 --- a/shareddata/charcustom/faces/JackFrostFace.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/JackFrostFace.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/KnowItAllGrin.png b/shareddata/charcustom/faces/KnowItAllGrin.png deleted file mode 100644 index 11c0529..0000000 Binary files a/shareddata/charcustom/faces/KnowItAllGrin.png and /dev/null differ diff --git a/shareddata/charcustom/faces/KnowItAllGrin.rbxm b/shareddata/charcustom/faces/KnowItAllGrin.rbxm deleted file mode 100644 index 78890f5..0000000 --- a/shareddata/charcustom/faces/KnowItAllGrin.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/KnowItAllGrin.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/LazyEye.png b/shareddata/charcustom/faces/LazyEye.png deleted file mode 100644 index 9f9a442..0000000 Binary files a/shareddata/charcustom/faces/LazyEye.png and /dev/null differ diff --git a/shareddata/charcustom/faces/LazyEye.rbxm b/shareddata/charcustom/faces/LazyEye.rbxm deleted file mode 100644 index 865582b..0000000 --- a/shareddata/charcustom/faces/LazyEye.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/LazyEye.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/MOOONEYYYY.png b/shareddata/charcustom/faces/MOOONEYYYY.png deleted file mode 100644 index 270b92c..0000000 Binary files a/shareddata/charcustom/faces/MOOONEYYYY.png and /dev/null differ diff --git a/shareddata/charcustom/faces/MOOONEYYYY.rbxm b/shareddata/charcustom/faces/MOOONEYYYY.rbxm deleted file mode 100644 index 6cb4f8b..0000000 --- a/shareddata/charcustom/faces/MOOONEYYYY.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/MOOONEYYYY.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/Meanie.png b/shareddata/charcustom/faces/Meanie.png deleted file mode 100644 index a8297c5..0000000 Binary files a/shareddata/charcustom/faces/Meanie.png and /dev/null differ diff --git a/shareddata/charcustom/faces/Meanie.rbxm b/shareddata/charcustom/faces/Meanie.rbxm deleted file mode 100644 index 441dbe5..0000000 --- a/shareddata/charcustom/faces/Meanie.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/Meanie.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/Mischievous.png b/shareddata/charcustom/faces/Mischievous.png deleted file mode 100644 index 79a652e..0000000 Binary files a/shareddata/charcustom/faces/Mischievous.png and /dev/null differ diff --git a/shareddata/charcustom/faces/Mischievous.rbxm b/shareddata/charcustom/faces/Mischievous.rbxm deleted file mode 100644 index 2393173..0000000 --- a/shareddata/charcustom/faces/Mischievous.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/Mischievous.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/ModernFace.png b/shareddata/charcustom/faces/ModernFace.png deleted file mode 100644 index e57e342..0000000 Binary files a/shareddata/charcustom/faces/ModernFace.png and /dev/null differ diff --git a/shareddata/charcustom/faces/ModernFace.rbxm b/shareddata/charcustom/faces/ModernFace.rbxm deleted file mode 100644 index a94610a..0000000 --- a/shareddata/charcustom/faces/ModernFace.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/ModernFace.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/Ninja.png b/shareddata/charcustom/faces/Ninja.png deleted file mode 100644 index f21bb35..0000000 Binary files a/shareddata/charcustom/faces/Ninja.png and /dev/null differ diff --git a/shareddata/charcustom/faces/Ninja.rbxm b/shareddata/charcustom/faces/Ninja.rbxm deleted file mode 100644 index 964b62f..0000000 --- a/shareddata/charcustom/faces/Ninja.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/Ninja.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/NoZ.png b/shareddata/charcustom/faces/NoZ.png deleted file mode 100644 index e211357..0000000 Binary files a/shareddata/charcustom/faces/NoZ.png and /dev/null differ diff --git a/shareddata/charcustom/faces/NoZ.rbxm b/shareddata/charcustom/faces/NoZ.rbxm deleted file mode 100644 index c71f0da..0000000 --- a/shareddata/charcustom/faces/NoZ.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/NoZ.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/P.png b/shareddata/charcustom/faces/P.png deleted file mode 100644 index ee5c26f..0000000 Binary files a/shareddata/charcustom/faces/P.png and /dev/null differ diff --git a/shareddata/charcustom/faces/P.rbxm b/shareddata/charcustom/faces/P.rbxm deleted file mode 100644 index fbb527a..0000000 --- a/shareddata/charcustom/faces/P.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/P.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/PUDDING.png b/shareddata/charcustom/faces/PUDDING.png deleted file mode 100644 index 3764942..0000000 Binary files a/shareddata/charcustom/faces/PUDDING.png and /dev/null differ diff --git a/shareddata/charcustom/faces/PUDDING.rbxm b/shareddata/charcustom/faces/PUDDING.rbxm deleted file mode 100644 index 25d72e8..0000000 --- a/shareddata/charcustom/faces/PUDDING.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/PUDDING.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/PumpkinFace.png b/shareddata/charcustom/faces/PumpkinFace.png deleted file mode 100644 index eae46ac..0000000 Binary files a/shareddata/charcustom/faces/PumpkinFace.png and /dev/null differ diff --git a/shareddata/charcustom/faces/PumpkinFace.rbxm b/shareddata/charcustom/faces/PumpkinFace.rbxm deleted file mode 100644 index eee77c9..0000000 --- a/shareddata/charcustom/faces/PumpkinFace.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/PumpkinFace.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/RetroSmiley.png b/shareddata/charcustom/faces/RetroSmiley.png deleted file mode 100644 index 3d18190..0000000 Binary files a/shareddata/charcustom/faces/RetroSmiley.png and /dev/null differ diff --git a/shareddata/charcustom/faces/RetroSmiley.rbxm b/shareddata/charcustom/faces/RetroSmiley.rbxm deleted file mode 100644 index a87187c..0000000 --- a/shareddata/charcustom/faces/RetroSmiley.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/RetroSmiley.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/RobloxMadness.png b/shareddata/charcustom/faces/RobloxMadness.png deleted file mode 100644 index 2a9b9b2..0000000 Binary files a/shareddata/charcustom/faces/RobloxMadness.png and /dev/null differ diff --git a/shareddata/charcustom/faces/RobloxMadness.rbxm b/shareddata/charcustom/faces/RobloxMadness.rbxm deleted file mode 100644 index 3fd2673..0000000 --- a/shareddata/charcustom/faces/RobloxMadness.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/RobloxMadness.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/Sad.png b/shareddata/charcustom/faces/Sad.png deleted file mode 100644 index 6cfbf43..0000000 Binary files a/shareddata/charcustom/faces/Sad.png and /dev/null differ diff --git a/shareddata/charcustom/faces/Sad.rbxm b/shareddata/charcustom/faces/Sad.rbxm deleted file mode 100644 index 82a7689..0000000 --- a/shareddata/charcustom/faces/Sad.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/Sad.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/Scarecrow.png b/shareddata/charcustom/faces/Scarecrow.png deleted file mode 100644 index c87ec1f..0000000 Binary files a/shareddata/charcustom/faces/Scarecrow.png and /dev/null differ diff --git a/shareddata/charcustom/faces/Scarecrow.rbxm b/shareddata/charcustom/faces/Scarecrow.rbxm deleted file mode 100644 index ff00ba2..0000000 --- a/shareddata/charcustom/faces/Scarecrow.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/Scarecrow.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/SecretService.png b/shareddata/charcustom/faces/SecretService.png deleted file mode 100644 index 2db3873..0000000 Binary files a/shareddata/charcustom/faces/SecretService.png and /dev/null differ diff --git a/shareddata/charcustom/faces/SecretService.rbxm b/shareddata/charcustom/faces/SecretService.rbxm deleted file mode 100644 index a7cda06..0000000 --- a/shareddata/charcustom/faces/SecretService.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/SecretService.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/Sheepish.png b/shareddata/charcustom/faces/Sheepish.png deleted file mode 100644 index c362fa3..0000000 Binary files a/shareddata/charcustom/faces/Sheepish.png and /dev/null differ diff --git a/shareddata/charcustom/faces/Sheepish.rbxm b/shareddata/charcustom/faces/Sheepish.rbxm deleted file mode 100644 index 7327c41..0000000 --- a/shareddata/charcustom/faces/Sheepish.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/Sheepish.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/ShinyTeeth.png b/shareddata/charcustom/faces/ShinyTeeth.png deleted file mode 100644 index b506376..0000000 Binary files a/shareddata/charcustom/faces/ShinyTeeth.png and /dev/null differ diff --git a/shareddata/charcustom/faces/ShinyTeeth.rbxm b/shareddata/charcustom/faces/ShinyTeeth.rbxm deleted file mode 100644 index a4c0260..0000000 --- a/shareddata/charcustom/faces/ShinyTeeth.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/ShinyTeeth.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/SillyFun.png b/shareddata/charcustom/faces/SillyFun.png deleted file mode 100644 index 51a5e7f..0000000 Binary files a/shareddata/charcustom/faces/SillyFun.png and /dev/null differ diff --git a/shareddata/charcustom/faces/SillyFun.rbxm b/shareddata/charcustom/faces/SillyFun.rbxm deleted file mode 100644 index 2adefec..0000000 --- a/shareddata/charcustom/faces/SillyFun.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/SillyFun.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/Sinister.png b/shareddata/charcustom/faces/Sinister.png deleted file mode 100644 index 15a3d7a..0000000 Binary files a/shareddata/charcustom/faces/Sinister.png and /dev/null differ diff --git a/shareddata/charcustom/faces/Sinister.rbxm b/shareddata/charcustom/faces/Sinister.rbxm deleted file mode 100644 index c544fa6..0000000 --- a/shareddata/charcustom/faces/Sinister.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/Sinister.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/SirRichMcMoneystonIII.png b/shareddata/charcustom/faces/SirRichMcMoneystonIII.png deleted file mode 100644 index 01773a8..0000000 Binary files a/shareddata/charcustom/faces/SirRichMcMoneystonIII.png and /dev/null differ diff --git a/shareddata/charcustom/faces/SirRichMcMoneystonIII.rbxm b/shareddata/charcustom/faces/SirRichMcMoneystonIII.rbxm deleted file mode 100644 index bb6814b..0000000 --- a/shareddata/charcustom/faces/SirRichMcMoneystonIII.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/SirRichMcMoneystonIII.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/SkullFace.png b/shareddata/charcustom/faces/SkullFace.png deleted file mode 100644 index f48c28a..0000000 Binary files a/shareddata/charcustom/faces/SkullFace.png and /dev/null differ diff --git a/shareddata/charcustom/faces/SkullFace.rbxm b/shareddata/charcustom/faces/SkullFace.rbxm deleted file mode 100644 index ef5de21..0000000 --- a/shareddata/charcustom/faces/SkullFace.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/SkullFace.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/Slickfang.png b/shareddata/charcustom/faces/Slickfang.png deleted file mode 100644 index b0903dc..0000000 Binary files a/shareddata/charcustom/faces/Slickfang.png and /dev/null differ diff --git a/shareddata/charcustom/faces/Slickfang.rbxm b/shareddata/charcustom/faces/Slickfang.rbxm deleted file mode 100644 index 19e6a2a..0000000 --- a/shareddata/charcustom/faces/Slickfang.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/Slickface.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/Smile.png b/shareddata/charcustom/faces/Smile.png deleted file mode 100644 index e9f41f6..0000000 Binary files a/shareddata/charcustom/faces/Smile.png and /dev/null differ diff --git a/shareddata/charcustom/faces/Smile.rbxm b/shareddata/charcustom/faces/Smile.rbxm deleted file mode 100644 index 6a8369c..0000000 --- a/shareddata/charcustom/faces/Smile.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/Smile.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/Snowman.png b/shareddata/charcustom/faces/Snowman.png deleted file mode 100644 index 70e252c..0000000 Binary files a/shareddata/charcustom/faces/Snowman.png and /dev/null differ diff --git a/shareddata/charcustom/faces/Snowman.rbxm b/shareddata/charcustom/faces/Snowman.rbxm deleted file mode 100644 index 5b9672e..0000000 --- a/shareddata/charcustom/faces/Snowman.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/Snowman.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/Stitchface.png b/shareddata/charcustom/faces/Stitchface.png deleted file mode 100644 index 16ebb3e..0000000 Binary files a/shareddata/charcustom/faces/Stitchface.png and /dev/null differ diff --git a/shareddata/charcustom/faces/Stitchface.rbxm b/shareddata/charcustom/faces/Stitchface.rbxm deleted file mode 100644 index bf7b15e..0000000 --- a/shareddata/charcustom/faces/Stitchface.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/Stitchface.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/Tango.png b/shareddata/charcustom/faces/Tango.png deleted file mode 100644 index 6e428bb..0000000 Binary files a/shareddata/charcustom/faces/Tango.png and /dev/null differ diff --git a/shareddata/charcustom/faces/Tango.rbxm b/shareddata/charcustom/faces/Tango.rbxm deleted file mode 100644 index 04e6391..0000000 --- a/shareddata/charcustom/faces/Tango.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/Tango.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/ToothyGrin.png b/shareddata/charcustom/faces/ToothyGrin.png deleted file mode 100644 index 481e47a..0000000 Binary files a/shareddata/charcustom/faces/ToothyGrin.png and /dev/null differ diff --git a/shareddata/charcustom/faces/ToothyGrin.rbxm b/shareddata/charcustom/faces/ToothyGrin.rbxm deleted file mode 100644 index 027ab57..0000000 --- a/shareddata/charcustom/faces/ToothyGrin.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/ToothyGrin.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/UhOh.png b/shareddata/charcustom/faces/UhOh.png deleted file mode 100644 index d8c357a..0000000 Binary files a/shareddata/charcustom/faces/UhOh.png and /dev/null differ diff --git a/shareddata/charcustom/faces/UhOh.rbxm b/shareddata/charcustom/faces/UhOh.rbxm deleted file mode 100644 index 42f293a..0000000 --- a/shareddata/charcustom/faces/UhOh.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/UhOh.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/WhatchooTalkinBout.png b/shareddata/charcustom/faces/WhatchooTalkinBout.png deleted file mode 100644 index b8759fd..0000000 Binary files a/shareddata/charcustom/faces/WhatchooTalkinBout.png and /dev/null differ diff --git a/shareddata/charcustom/faces/WhatchooTalkinBout.rbxm b/shareddata/charcustom/faces/WhatchooTalkinBout.rbxm deleted file mode 100644 index 27f8e40..0000000 --- a/shareddata/charcustom/faces/WhatchooTalkinBout.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/WhatchooTalkinBout.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/Whistle.png b/shareddata/charcustom/faces/Whistle.png deleted file mode 100644 index 46b5491..0000000 Binary files a/shareddata/charcustom/faces/Whistle.png and /dev/null differ diff --git a/shareddata/charcustom/faces/Whistle.rbxm b/shareddata/charcustom/faces/Whistle.rbxm deleted file mode 100644 index ae2d38a..0000000 --- a/shareddata/charcustom/faces/Whistle.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/Whistle.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/Wow.png b/shareddata/charcustom/faces/Wow.png deleted file mode 100644 index f8e848c..0000000 Binary files a/shareddata/charcustom/faces/Wow.png and /dev/null differ diff --git a/shareddata/charcustom/faces/Wow.rbxm b/shareddata/charcustom/faces/Wow.rbxm deleted file mode 100644 index 31902cf..0000000 --- a/shareddata/charcustom/faces/Wow.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/Wow.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/faces/XD.png b/shareddata/charcustom/faces/XD.png deleted file mode 100644 index 0e35fce..0000000 Binary files a/shareddata/charcustom/faces/XD.png and /dev/null differ diff --git a/shareddata/charcustom/faces/XD.rbxm b/shareddata/charcustom/faces/XD.rbxm deleted file mode 100644 index 506c349..0000000 --- a/shareddata/charcustom/faces/XD.rbxm +++ /dev/null @@ -1,14 +0,0 @@ - - null - nil - - - 5 - face - 20 - 0 - rbxasset://../../../shareddata/charcustom/faces/XD.png - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/2007RobloxVisor.png b/shareddata/charcustom/hats/2007RobloxVisor.png deleted file mode 100644 index f40472b..0000000 Binary files a/shareddata/charcustom/hats/2007RobloxVisor.png and /dev/null differ diff --git a/shareddata/charcustom/hats/2007RobloxVisor.rbxm b/shareddata/charcustom/hats/2007RobloxVisor.rbxm deleted file mode 100644 index 29dea1c..0000000 --- a/shareddata/charcustom/hats/2007RobloxVisor.rbxm +++ /dev/null @@ -1,118 +0,0 @@ - - null - nil - - - - 0 - 0.0900000036 - 0.180000007 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - RobloxVisor - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -54.5893402 - 1.7905935 - 10.173811 - 0.990246177 - -6.40412909e-005 - -0.139328629 - 5.6671106e-005 - 1 - -5.68651376e-005 - 0.139328644 - 4.84145821e-005 - 0.990246177 - - true - true - 0 - true - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 1 - 0.400000006 - 1 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/visor.mesh - 5 - Mesh - - 1.01999998 - 1.01999998 - 1.01999998 - - rbxasset://../../../shareddata/charcustom/hats/textures/ROBLOXVisor.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/2008RobloxVisor.png b/shareddata/charcustom/hats/2008RobloxVisor.png deleted file mode 100644 index 4b15565..0000000 Binary files a/shareddata/charcustom/hats/2008RobloxVisor.png and /dev/null differ diff --git a/shareddata/charcustom/hats/2008RobloxVisor.rbxm b/shareddata/charcustom/hats/2008RobloxVisor.rbxm deleted file mode 100644 index 758bcc6..0000000 --- a/shareddata/charcustom/hats/2008RobloxVisor.rbxm +++ /dev/null @@ -1,116 +0,0 @@ - - null - nil - - - - 0 - 0.0900000036 - 0.180000007 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - BlueROBLOXVisor - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -55.5893402 - 3.39059353 - -2.82618904 - 0.990246177 - -6.40412909e-005 - -0.139328629 - 5.6671106e-005 - 1 - -5.68651376e-005 - 0.139328644 - 4.84145821e-005 - 0.990246177 - - true - 0 - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 1 - 0.400000006 - 1 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/visor.mesh - 5 - Mesh - - 1.01999998 - 1.01999998 - 1.01999998 - - rbxasset://../../../shareddata/charcustom/hats/textures/BlueROBLOXVisor.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/2009RobloxVisor.png b/shareddata/charcustom/hats/2009RobloxVisor.png deleted file mode 100644 index c291dca..0000000 Binary files a/shareddata/charcustom/hats/2009RobloxVisor.png and /dev/null differ diff --git a/shareddata/charcustom/hats/2009RobloxVisor.rbxm b/shareddata/charcustom/hats/2009RobloxVisor.rbxm deleted file mode 100644 index 69a6a53..0000000 --- a/shareddata/charcustom/hats/2009RobloxVisor.rbxm +++ /dev/null @@ -1,116 +0,0 @@ - - null - nil - - - - 0 - 0.0900000036 - 0.180000007 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - YellowROBLOXVisor - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -55.5893402 - 3.39059353 - -2.82618904 - 0.990246177 - -6.40412909e-005 - -0.139328629 - 5.6671106e-005 - 1 - -5.68651376e-005 - 0.139328644 - 4.84145821e-005 - 0.990246177 - - true - 0 - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 1 - 0.400000006 - 1 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/visor.mesh - 5 - Mesh - - 1.01999998 - 1.01999998 - 1.01999998 - - rbxasset://../../../shareddata/charcustom/hats/textures/YellowROBLOXVisor.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/ArrowHat.png b/shareddata/charcustom/hats/ArrowHat.png deleted file mode 100644 index 8f4245e..0000000 Binary files a/shareddata/charcustom/hats/ArrowHat.png and /dev/null differ diff --git a/shareddata/charcustom/hats/ArrowHat.rbxm b/shareddata/charcustom/hats/ArrowHat.rbxm deleted file mode 100644 index 53fea5f..0000000 --- a/shareddata/charcustom/hats/ArrowHat.rbxm +++ /dev/null @@ -1,140 +0,0 @@ - - null - nil - - - - -0.200000003 - 0.5 - 0 - 1 - 0 - -0 - -0 - 1 - 0 - 0 - 0 - 1 - - ArrowHat - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -14.3394747 - 0.797211528 - 52.6908569 - -0.251784325 - 0.00272286031 - -0.967779458 - 0.000115611641 - 0.999996126 - 0.00278342376 - 0.967783272 - 0.000588936033 - -0.251783669 - - true - - false - - 0.5 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - 2 - 1 - - 4 - 0.800000012 - 1 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/ArrowHat.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 0.600000024 - 0.600000024 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/ArrowHat.png - - 1 - 1 - 1 - - - - - - - -0.199999988 - 0.599999905 - -0.000272244215 - 1 - 7.87137555e-009 - -3.26223034e-024 - -7.87137555e-009 - 1 - -4.1444221e-016 - 0 - 4.1444221e-016 - 1 - - HatAttachment - false - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/BCHardHat.png b/shareddata/charcustom/hats/BCHardHat.png deleted file mode 100644 index 44a3207..0000000 Binary files a/shareddata/charcustom/hats/BCHardHat.png and /dev/null differ diff --git a/shareddata/charcustom/hats/BCHardHat.rbxm b/shareddata/charcustom/hats/BCHardHat.rbxm deleted file mode 100644 index 8ff1033..0000000 --- a/shareddata/charcustom/hats/BCHardHat.rbxm +++ /dev/null @@ -1,118 +0,0 @@ - - null - nil - - - - 0 - -0.349999994 - 0.150000006 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 4 - HardHat - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -3.60424042 - 5.74905539 - -29.0172787 - -0.916252911 - -2.77620595e-021 - -0.400600582 - -3.90117441e-021 - 1 - 1.99264861e-021 - 0.400600582 - 3.38858254e-021 - -0.916252911 - - true - true - 0 - true - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - -2.42862883e-023 - 3.62439101e-022 - -1.39473558e-023 - - -0.5 - 0.5 - 0 - 0 - 0 - - 3.65625818e-020 - 0.0075033661 - 3.64011588e-020 - - true - 1 - - 1 - 0.800000012 - 1 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/hardhat.mesh - 5 - Mesh - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/hardhat_bc.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/BiggerHead.png b/shareddata/charcustom/hats/BiggerHead.png deleted file mode 100644 index 85595f9..0000000 Binary files a/shareddata/charcustom/hats/BiggerHead.png and /dev/null differ diff --git a/shareddata/charcustom/hats/BiggerHead.rbxm b/shareddata/charcustom/hats/BiggerHead.rbxm deleted file mode 100644 index 6fdb74a..0000000 --- a/shareddata/charcustom/hats/BiggerHead.rbxm +++ /dev/null @@ -1,178 +0,0 @@ - - null - nil - - - - 0 - -0.100000001 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - BiggerHead - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - 0.0956699997 - 17.9791546 - 21.3052826 - -0.146556064 - 0 - 0.98920238 - 0 - 1 - 0 - -0.98920238 - 0 - -0.146556079 - - true - - false - - 0.5 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - 2 - 1 - - 3 - 2 - 3 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/head.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 1.20000005 - 1.20000005 - 1.20000005 - - rbxasset://../../../shareddata/charcustom/hats/textures/BiggerHead.png - - 1 - 1 - 1 - - - - - - - 8.65838956e-09 - 0 - -0.000272244215 - 1 - 7.87137555e-09 - -3.26223034e-24 - -7.87137555e-09 - 1 - -4.1444221e-16 - 0 - 4.1444221e-16 - 1 - - HatAttachment - false - - - - - - - -3.69429398 - 18.9349079 - 23.4477196 - 0.492105782 - 0.18666546 - -0.850286961 - -0 - 0.976740241 - 0.214426041 - 0.870535433 - -0.105520293 - 0.480659485 - - null - 0 - 70 - - -1.99372005 - 18.5060558 - 22.4864006 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - true - 1 - ThumbnailCamera - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/Bighead.png b/shareddata/charcustom/hats/Bighead.png deleted file mode 100644 index 263c6d7..0000000 Binary files a/shareddata/charcustom/hats/Bighead.png and /dev/null differ diff --git a/shareddata/charcustom/hats/Bighead.rbxm b/shareddata/charcustom/hats/Bighead.rbxm deleted file mode 100644 index 0223214..0000000 --- a/shareddata/charcustom/hats/Bighead.rbxm +++ /dev/null @@ -1,140 +0,0 @@ - - null - nil - - - - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - Bighead - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - 57.0543022 - 1.19939876 - -65.1173859 - -0.86764586 - 5.43082569e-005 - -0.497182906 - -1.16321849e-006 - 1 - 0.000111261907 - 0.497182935 - 9.71142581e-005 - -0.8676458 - - true - - false - - 0.5 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - 2 - 1 - - 2 - 1.60000002 - 2 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/head.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/Bighead.png - - 1 - 1 - 1 - - - - - - - 8.65838956e-009 - 0.0999999046 - -0.000272244215 - 1 - 7.87137555e-009 - -3.26223034e-024 - -7.87137555e-009 - 1 - -4.1444221e-016 - 0 - 4.1444221e-016 - 1 - - HatAttachment - false - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/BlockheadBaseballCap.png b/shareddata/charcustom/hats/BlockheadBaseballCap.png deleted file mode 100644 index 3f2b5df..0000000 Binary files a/shareddata/charcustom/hats/BlockheadBaseballCap.png and /dev/null differ diff --git a/shareddata/charcustom/hats/BlockheadBaseballCap.rbxm b/shareddata/charcustom/hats/BlockheadBaseballCap.rbxm deleted file mode 100644 index 6f44b16..0000000 --- a/shareddata/charcustom/hats/BlockheadBaseballCap.rbxm +++ /dev/null @@ -1,140 +0,0 @@ - - null - nil - - - - 0 - -0.300000012 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - BlockheadBaseballCap - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -33.4935532 - 7.89712667 - 14.4049015 - 0.999751627 - -5.25372174e-021 - -0.0222777594 - 5.26573444e-021 - 1 - 4.80515498e-022 - 0.0222777594 - -5.97705948e-022 - 0.999751627 - - true - - false - - 0.5 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - 0 - 1 - - 1 - 1 - 2 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/BlockheadBaseballCap.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 0.850000024 - 0.850000024 - 0.850000024 - - rbxasset://../../../shareddata/charcustom/hats/textures/BlockheadBaseballCap.png - - 1 - 1 - 1 - - - - - - - 8.65838956e-009 - -0.200000286 - -0.000272244215 - 1 - 7.87137555e-009 - -3.26223034e-024 - -7.87137555e-009 - 1 - -4.1444221e-016 - 0 - 4.1444221e-016 - 1 - - HatAttachment - false - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/BlueBaseballCap.png b/shareddata/charcustom/hats/BlueBaseballCap.png deleted file mode 100644 index e8748bb..0000000 Binary files a/shareddata/charcustom/hats/BlueBaseballCap.png and /dev/null differ diff --git a/shareddata/charcustom/hats/BlueBaseballCap.rbxm b/shareddata/charcustom/hats/BlueBaseballCap.rbxm deleted file mode 100644 index 89ac292..0000000 --- a/shareddata/charcustom/hats/BlueBaseballCap.rbxm +++ /dev/null @@ -1,118 +0,0 @@ - - null - nil - - - - 0 - -0.200000003 - 0.150000006 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - BlueBaseballCap - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -9.5 - 0.600000024 - 16.5 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - true - true - 0 - true - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 1 - 0.400000006 - 1 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/BaseballCap.mesh - 5 - Mesh - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/BlueBaseballCap.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/BlueSteelBatHelm.png b/shareddata/charcustom/hats/BlueSteelBatHelm.png deleted file mode 100644 index 7f18ba8..0000000 Binary files a/shareddata/charcustom/hats/BlueSteelBatHelm.png and /dev/null differ diff --git a/shareddata/charcustom/hats/BlueSteelBatHelm.rbxm b/shareddata/charcustom/hats/BlueSteelBatHelm.rbxm deleted file mode 100644 index 351cef8..0000000 --- a/shareddata/charcustom/hats/BlueSteelBatHelm.rbxm +++ /dev/null @@ -1,118 +0,0 @@ - - null - nil - - - - 0 - 0.280000001 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - BlueSteelBatHelm - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -91 - 5.79844189 - 41.5 - 1 - -1.28136491e-018 - 2.70646879e-019 - 1.28136491e-018 - 1 - -1.67646949e-018 - -2.70646879e-019 - 1.67646949e-018 - 1 - - true - true - 0 - true - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 2 - 1.20000005 - 1 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/BlueSteelBatHelm.mesh - 5 - Mesh - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/BlueSteelBatHelm.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/BusinessFedora.png b/shareddata/charcustom/hats/BusinessFedora.png deleted file mode 100644 index f801dae..0000000 Binary files a/shareddata/charcustom/hats/BusinessFedora.png and /dev/null differ diff --git a/shareddata/charcustom/hats/BusinessFedora.rbxm b/shareddata/charcustom/hats/BusinessFedora.rbxm deleted file mode 100644 index 39f958d..0000000 --- a/shareddata/charcustom/hats/BusinessFedora.rbxm +++ /dev/null @@ -1,140 +0,0 @@ - - null - nil - - - - 0 - -0.25 - 0 - 1 - 0 - 0 - 0 - 0.995037198 - 0.0995037183 - 0 - -0.0995037183 - 0.995037198 - - BusinessFedora - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - 0 - 4 - 274 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - true - - false - - 0.5 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - 2 - 1 - - 2 - 0.800000012 - 2 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/BusinessFedora.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/BusinessFedora.png - - 1 - 1 - 1 - - - - - - - 8.65748007e-009 - -0.150523663 - -0.0102213025 - 1 - 7.87137289e-009 - 4.24105195e-014 - -7.83231258e-009 - 0.995037198 - 0.0995037183 - 7.83188625e-010 - -0.0995037183 - 0.995037198 - - HatAttachment - false - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/ChristmasBaseballCap.png b/shareddata/charcustom/hats/ChristmasBaseballCap.png deleted file mode 100644 index 316efac..0000000 Binary files a/shareddata/charcustom/hats/ChristmasBaseballCap.png and /dev/null differ diff --git a/shareddata/charcustom/hats/ChristmasBaseballCap.rbxm b/shareddata/charcustom/hats/ChristmasBaseballCap.rbxm deleted file mode 100644 index 0eeda9e..0000000 --- a/shareddata/charcustom/hats/ChristmasBaseballCap.rbxm +++ /dev/null @@ -1,140 +0,0 @@ - - null - nil - - - - 0 - -0.200000003 - 0.150000006 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - ChristmasBaseballCap - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -169.5 - 4.59435844 - 16.5 - 1 - -1.16600587e-017 - 6.05396395e-022 - 1.16600587e-017 - 1 - -1.16603532e-017 - -6.05396395e-022 - 1.16603532e-017 - 1 - - true - - false - - 0.5 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - 2 - 1 - - 1 - 0.400000006 - 1 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/BaseballCap.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/ChristmasBaseballCap.png - - 1 - 1 - 1 - - - - - - - 8.65748007e-009 - -0.0999999046 - 0.149727762 - 1 - 7.87137555e-009 - -3.26223034e-024 - -7.87137555e-009 - 1 - -4.1444221e-016 - 0 - 4.1444221e-016 - 1 - - HatAttachment - false - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/CoifOfGlory.png b/shareddata/charcustom/hats/CoifOfGlory.png deleted file mode 100644 index c21a31d..0000000 Binary files a/shareddata/charcustom/hats/CoifOfGlory.png and /dev/null differ diff --git a/shareddata/charcustom/hats/CoifOfGlory.rbxm b/shareddata/charcustom/hats/CoifOfGlory.rbxm deleted file mode 100644 index 3c15a8d..0000000 --- a/shareddata/charcustom/hats/CoifOfGlory.rbxm +++ /dev/null @@ -1,140 +0,0 @@ - - null - nil - - - - 0 - 0.150000006 - -0.200000003 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - CoifOfGlory - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -3.74445057 - 5.49905539 - -29.3379669 - -0.916252911 - -2.77620595e-021 - -0.400600582 - -3.90117441e-021 - 1 - 1.99264861e-021 - 0.400600582 - 3.38858254e-021 - -0.916252911 - - true - - false - - 0.5 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - -2.42862883e-023 - 3.62439101e-022 - -1.39473558e-023 - - -0.5 - 0.5 - 0 - 0 - 0 - - 3.64428668e-020 - 0.0075033661 - 3.64580469e-020 - - 2 - 1 - - 1 - 1.20000005 - 1 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/Coif.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 1.00999999 - 0.850000024 - 1.00999999 - - rbxasset://../../../shareddata/charcustom/hats/textures/CoifOfGlory.png - - 1 - 1 - 1 - - - - - - - 8.65748007e-009 - 0.25 - -0.200272247 - 1 - 7.87137555e-009 - -3.26223034e-024 - -7.87137555e-009 - 1 - -4.1444221e-016 - 0 - 4.1444221e-016 - 1 - - HatAttachment - false - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/CrimsonCatseye.png b/shareddata/charcustom/hats/CrimsonCatseye.png deleted file mode 100644 index 8edfcce..0000000 Binary files a/shareddata/charcustom/hats/CrimsonCatseye.png and /dev/null differ diff --git a/shareddata/charcustom/hats/CrimsonCatseye.rbxm b/shareddata/charcustom/hats/CrimsonCatseye.rbxm deleted file mode 100644 index fe51bd9..0000000 --- a/shareddata/charcustom/hats/CrimsonCatseye.rbxm +++ /dev/null @@ -1,140 +0,0 @@ - - null - nil - - - - 0 - 0 - 0 - 0.315927833 - 0.948783219 - -0 - -0.948783219 - 0.315927833 - 0 - 0 - 0 - 1 - - CrimsonCatseye - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -145.192429 - 5.39913511 - -13.2564058 - -0.297082156 - 0.892186522 - 0.340213925 - 0.948783219 - 0.315927833 - 4.50383647e-021 - -0.107483052 - 0.322789252 - -0.940348148 - - true - - false - - 0.5 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - -1.37522897e-021 - 3.39070542e-022 - -1.37556985e-021 - - -0.5 - 0.5 - 0 - 0 - 0 - - 3.92317321e-020 - 0.00677233888 - 3.37289422e-020 - - 0 - 0 - - 2 - 2 - 2 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/Eye.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 3.3499999 - 3.3499999 - 3.3499999 - - rbxasset://../../../shareddata/charcustom/hats/textures/CrimsonCatseye.png - - 1 - 1 - 1 - - - - - - - 0.0948781967 - 0.0315927267 - -0.000272244215 - 0.315927833 - 0.948783219 - -3.93215802e-016 - -0.948783219 - 0.315927833 - -1.30933824e-016 - 0 - 4.1444221e-016 - 1 - - HatAttachment - false - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/CrownofWarlords.png b/shareddata/charcustom/hats/CrownofWarlords.png deleted file mode 100644 index f08a6ff..0000000 Binary files a/shareddata/charcustom/hats/CrownofWarlords.png and /dev/null differ diff --git a/shareddata/charcustom/hats/CrownofWarlords.rbxm b/shareddata/charcustom/hats/CrownofWarlords.rbxm deleted file mode 100644 index 8715d22..0000000 --- a/shareddata/charcustom/hats/CrownofWarlords.rbxm +++ /dev/null @@ -1,140 +0,0 @@ - - null - nil - - - - 0 - -0.0500000007 - 0.0399999991 - 1 - 0 - 0 - 0 - 0.995037198 - -0.0995037183 - -0 - 0.0995037183 - 0.995037198 - - CrownOfWarlords - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - 0 - 4 - -398 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - true - - false - - 0.5 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - 2 - 1 - - 2 - 1.60000002 - 1 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/CrownOfWarlords.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 0.449999988 - 0.349999994 - 0.349999994 - - rbxasset://../../../shareddata/charcustom/hats/textures/CrownOfWarlords.png - - 1 - 1 - 1 - - - - - - - 8.65838956e-009 - 0.0495305061 - 0.0496794283 - 1 - 7.87137289e-009 - -4.24105195e-014 - -7.83231258e-009 - 0.995037198 - -0.0995037183 - -7.83188625e-010 - 0.0995037183 - 0.995037198 - - HatAttachment - false - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/Darkseed.png b/shareddata/charcustom/hats/Darkseed.png deleted file mode 100644 index de4c83d..0000000 Binary files a/shareddata/charcustom/hats/Darkseed.png and /dev/null differ diff --git a/shareddata/charcustom/hats/Darkseed.rbxm b/shareddata/charcustom/hats/Darkseed.rbxm deleted file mode 100644 index c04572b..0000000 --- a/shareddata/charcustom/hats/Darkseed.rbxm +++ /dev/null @@ -1,116 +0,0 @@ - - null - nil - - - - 0 - 0.100000001 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - Darkseed - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -98 - 9.39844799 - -4 - 1 - -1.28136491e-018 - 2.70646879e-019 - 1.28136491e-018 - 1 - -1.67646949e-018 - -2.70646879e-019 - 1.67646949e-018 - 1 - - true - 0 - true - false - 0.5 - 0 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 0 - - 2 - 2 - 2 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/pumpkin.mesh - 5 - Mesh - - 0.5 - 0.5 - 0.5 - - rbxasset://../../../shareddata/charcustom/hats/textures/Darkseed.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/DominoCrown.png b/shareddata/charcustom/hats/DominoCrown.png deleted file mode 100644 index 48686ad..0000000 Binary files a/shareddata/charcustom/hats/DominoCrown.png and /dev/null differ diff --git a/shareddata/charcustom/hats/DominoCrown.rbxm b/shareddata/charcustom/hats/DominoCrown.rbxm deleted file mode 100644 index 489a288..0000000 --- a/shareddata/charcustom/hats/DominoCrown.rbxm +++ /dev/null @@ -1,118 +0,0 @@ - - null - nil - - - - 0 - -0.449999988 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - DominoCrown - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -12.5 - 1.59906554 - 38.5 - 1 - -2.3695262e-017 - 2.34151298e-018 - 2.3695262e-017 - 1 - -1.97234252e-017 - -2.34151298e-018 - 1.97234252e-017 - 1 - - true - true - 0 - true - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 1 - 0.800000012 - 1 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/DominoCrown.mesh - 5 - Mesh - - 1.10000002 - 1.10000002 - 1.10000002 - - rbxasset://../../../shareddata/charcustom/hats/textures/DominoCrown.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/EeriePumpkinHead.png b/shareddata/charcustom/hats/EeriePumpkinHead.png deleted file mode 100644 index 4d25dbe..0000000 Binary files a/shareddata/charcustom/hats/EeriePumpkinHead.png and /dev/null differ diff --git a/shareddata/charcustom/hats/EeriePumpkinHead.rbxm b/shareddata/charcustom/hats/EeriePumpkinHead.rbxm deleted file mode 100644 index 794557a..0000000 --- a/shareddata/charcustom/hats/EeriePumpkinHead.rbxm +++ /dev/null @@ -1,118 +0,0 @@ - - null - nil - - - - 0 - 0.100000001 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - GreenPumpkinHead - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -91 - 1.79844737 - -4 - 1 - -1.28136491e-018 - 2.70646879e-019 - 1.28136491e-018 - 1 - -1.67646949e-018 - -2.70646879e-019 - 1.67646949e-018 - 1 - - true - true - 0 - true - true - false - 0.5 - 0 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 0 - - 2 - 2 - 2 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/pumpkin.mesh - 5 - Mesh - - 0.5 - 0.5 - 0.5 - - rbxasset://../../../shareddata/charcustom/hats/textures/GreenPumpkinHead.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/EmeraldEye.png b/shareddata/charcustom/hats/EmeraldEye.png deleted file mode 100644 index 5287d26..0000000 Binary files a/shareddata/charcustom/hats/EmeraldEye.png and /dev/null differ diff --git a/shareddata/charcustom/hats/EmeraldEye.rbxm b/shareddata/charcustom/hats/EmeraldEye.rbxm deleted file mode 100644 index 946dd84..0000000 --- a/shareddata/charcustom/hats/EmeraldEye.rbxm +++ /dev/null @@ -1,178 +0,0 @@ - - null - nil - - - - 0 - 0.100000001 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - EmeraldEye - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -0.130005002 - 20.6384449 - 22.4799995 - 1 - -1.28136491e-018 - 2.70646879e-019 - 1.28136491e-018 - 1 - -1.67646949e-018 - -2.70646879e-019 - 1.67646949e-018 - 1 - - true - - false - - 0.5 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - 0 - 0 - - 2 - 2 - 2 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/Eye.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 3.20000005 - 3.20000005 - 3.20000005 - - rbxasset://../../../shareddata/charcustom/hats/textures/EmeraldEye.png - - 1 - 1 - 1 - - - - - - - 8.65838956e-009 - 0.199999809 - -0.000272244215 - 1 - 7.87137555e-009 - -3.26223034e-024 - -7.87137555e-009 - 1 - -4.1444221e-016 - 0 - 4.1444221e-016 - 1 - - HatAttachment - false - - - - - - - -0.903261542 - 20.882246 - 20.2210979 - -0.946103156 - 0.0328994915 - -0.322190195 - 1.86264537e-009 - 0.994827032 - 0.101583786 - 0.323865592 - 0.0961087421 - -0.941208899 - - null - 0 - 70 - - -0.130005002 - 20.6384449 - 22.4799995 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - true - 1 - ThumbnailCamera - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/EvilDuck.png b/shareddata/charcustom/hats/EvilDuck.png deleted file mode 100644 index a5b3ac4..0000000 Binary files a/shareddata/charcustom/hats/EvilDuck.png and /dev/null differ diff --git a/shareddata/charcustom/hats/EvilDuck.rbxm b/shareddata/charcustom/hats/EvilDuck.rbxm deleted file mode 100644 index df892e1..0000000 --- a/shareddata/charcustom/hats/EvilDuck.rbxm +++ /dev/null @@ -1,140 +0,0 @@ - - null - nil - - - - 0 - -0.5 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - EvilDuck - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - 0 - 4 - 526 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - true - - false - - 0.5 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - 0 - 1 - - 1 - 1 - 2 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/EvilDuck.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/EvilDuck.png - - 1 - 1 - 1 - - - - - - - 8.65838956e-009 - -0.400000095 - -0.000272244215 - 1 - 7.87137555e-009 - -3.26223034e-024 - -7.87137555e-009 - 1 - -4.1444221e-016 - 0 - 4.1444221e-016 - 1 - - HatAttachment - false - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/ExtremeSkateHelmet.png b/shareddata/charcustom/hats/ExtremeSkateHelmet.png deleted file mode 100644 index 338bf9d..0000000 Binary files a/shareddata/charcustom/hats/ExtremeSkateHelmet.png and /dev/null differ diff --git a/shareddata/charcustom/hats/ExtremeSkateHelmet.rbxm b/shareddata/charcustom/hats/ExtremeSkateHelmet.rbxm deleted file mode 100644 index c6c7876..0000000 --- a/shareddata/charcustom/hats/ExtremeSkateHelmet.rbxm +++ /dev/null @@ -1,140 +0,0 @@ - - null - nil - - - - 0 - 0.349999994 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - ExtremeSkateHelmet - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -22.5046921 - 9.0971241 - 12.9047775 - 0.999751627 - -5.25372174e-021 - -0.0222777594 - 5.26573444e-021 - 1 - 4.80515498e-022 - 0.0222777594 - -5.97705948e-022 - 0.999751627 - - true - - false - - 0.5 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - 0 - 0 - - 1 - 1 - 1 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/ExtremeSkateHelmet.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 1.10000002 - 1.10000002 - 1.10000002 - - rbxasset://../../../shareddata/charcustom/hats/textures/ExtremeSkateHelmet.png - - 1 - 1 - 1 - - - - - - - 8.65838956e-009 - 0.449999809 - -0.000272244215 - 1 - 7.87137555e-009 - -3.26223034e-024 - -7.87137555e-009 - 1 - -4.1444221e-016 - 0 - 4.1444221e-016 - 1 - - HatAttachment - false - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/FirefighterHat.png b/shareddata/charcustom/hats/FirefighterHat.png deleted file mode 100644 index 3199157..0000000 Binary files a/shareddata/charcustom/hats/FirefighterHat.png and /dev/null differ diff --git a/shareddata/charcustom/hats/FirefighterHat.rbxm b/shareddata/charcustom/hats/FirefighterHat.rbxm deleted file mode 100644 index 2f4876a..0000000 --- a/shareddata/charcustom/hats/FirefighterHat.rbxm +++ /dev/null @@ -1,140 +0,0 @@ - - null - nil - - - - 0 - -0.25 - -0.349999994 - 1 - 0 - -0 - -0 - 1 - 0 - 0 - 0 - 1 - - FirefighterHat - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - 7.50342607 - 12.3970766 - 57 - -0.999996185 - 0.00272532669 - 1.94437707e-005 - 0.00272532669 - 0.999996305 - -2.93517542e-006 - -1.94516979e-005 - -2.8821737e-006 - -0.999999881 - - true - - false - - 0.5 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - 2 - 1 - - 1 - 0.800000012 - 2 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/FirefighterHat.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 1.20000005 - 1.20000005 - 1.20000005 - - rbxasset://../../../shareddata/charcustom/hats/textures/FirefighterHat.png - - 1 - 1 - 1 - - - - - - - 8.65748007e-009 - -0.150000095 - -0.350272238 - 1 - 7.87137555e-009 - -3.26223034e-024 - -7.87137555e-009 - 1 - -4.1444221e-016 - 0 - 4.1444221e-016 - 1 - - HatAttachment - false - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/FlashingBolt.png b/shareddata/charcustom/hats/FlashingBolt.png deleted file mode 100644 index f9f795b..0000000 Binary files a/shareddata/charcustom/hats/FlashingBolt.png and /dev/null differ diff --git a/shareddata/charcustom/hats/FlashingBolt.rbxm b/shareddata/charcustom/hats/FlashingBolt.rbxm deleted file mode 100644 index 4d57a8d..0000000 --- a/shareddata/charcustom/hats/FlashingBolt.rbxm +++ /dev/null @@ -1,123 +0,0 @@ - - null - nil - - - - 0 - -0.200000003 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - BoltHelm - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -193 - 13.4000006 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - true - 0 - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 2 - 2.4000001 - 2 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/BlackLotus.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 0.899999976 - 0.899999976 - 0.899999976 - - rbxasset://../../../shareddata/charcustom/hats/textures/Bolt.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/FrozenNorth.png b/shareddata/charcustom/hats/FrozenNorth.png deleted file mode 100644 index 49bb4e1..0000000 Binary files a/shareddata/charcustom/hats/FrozenNorth.png and /dev/null differ diff --git a/shareddata/charcustom/hats/FrozenNorth.rbxm b/shareddata/charcustom/hats/FrozenNorth.rbxm deleted file mode 100644 index 38e176c..0000000 --- a/shareddata/charcustom/hats/FrozenNorth.rbxm +++ /dev/null @@ -1,116 +0,0 @@ - - null - nil - - - - 0 - -0.200000003 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - HelmOfIce - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -205 - 13.4000006 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - true - 0 - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 2 - 2.4000001 - 2 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/HelmOfIce.mesh - 5 - Mesh - - 0.899999976 - 0.899999976 - 0.899999976 - - rbxasset://../../../shareddata/charcustom/hats/textures/HelmOfIce.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/GoldTeapot.png b/shareddata/charcustom/hats/GoldTeapot.png deleted file mode 100644 index f6ba85f..0000000 Binary files a/shareddata/charcustom/hats/GoldTeapot.png and /dev/null differ diff --git a/shareddata/charcustom/hats/GoldTeapot.rbxm b/shareddata/charcustom/hats/GoldTeapot.rbxm deleted file mode 100644 index ff900f1..0000000 --- a/shareddata/charcustom/hats/GoldTeapot.rbxm +++ /dev/null @@ -1,140 +0,0 @@ - - null - nil - - - - 0 - 0.300000012 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - GoldTeapot - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -150 - 20.3984299 - 30 - 1 - -1.28136491e-018 - 2.70646879e-019 - 1.28136491e-018 - 1 - -1.67646949e-018 - -2.70646879e-019 - 1.67646949e-018 - 1 - - true - - false - - 0.5 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - 2 - 1 - - 2 - 0.800000012 - 2 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/GoldTeapot.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/GoldTeapot.png - - 1 - 1 - 1 - - - - - - - 8.65838956e-009 - 0.400000095 - -0.000272244215 - 1 - 7.87137555e-009 - -3.26223034e-024 - -7.87137555e-009 - 1 - -4.1444221e-016 - 0 - 4.1444221e-016 - 1 - - HatAttachment - false - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/GreatTree.png b/shareddata/charcustom/hats/GreatTree.png deleted file mode 100644 index f2a2f2f..0000000 Binary files a/shareddata/charcustom/hats/GreatTree.png and /dev/null differ diff --git a/shareddata/charcustom/hats/GreatTree.rbxm b/shareddata/charcustom/hats/GreatTree.rbxm deleted file mode 100644 index 2249371..0000000 --- a/shareddata/charcustom/hats/GreatTree.rbxm +++ /dev/null @@ -1,124 +0,0 @@ - - null - nil - - - - 0 - -0.200000003 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - TreeHelm - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -213 - 15.8000002 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - true - 0 - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 2 - 2.4000001 - 2 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/LeafHelm.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 0.899999976 - 0.899999976 - 0.899999976 - - rbxasset://../../../shareddata/charcustom/hats/textures/LeafHelm.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/GreenTopHat.png b/shareddata/charcustom/hats/GreenTopHat.png deleted file mode 100644 index 32e605a..0000000 Binary files a/shareddata/charcustom/hats/GreenTopHat.png and /dev/null differ diff --git a/shareddata/charcustom/hats/GreenTopHat.rbxm b/shareddata/charcustom/hats/GreenTopHat.rbxm deleted file mode 100644 index fa76d7b..0000000 --- a/shareddata/charcustom/hats/GreenTopHat.rbxm +++ /dev/null @@ -1,116 +0,0 @@ - - null - nil - - - - 0 - -0.25 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - GreenTopHat - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -23 - 1.598441 - 12 - 1 - -1.28136491e-018 - 2.70646879e-019 - 1.28136491e-018 - 1 - -1.67646949e-018 - -2.70646879e-019 - 1.67646949e-018 - 1 - - true - 0 - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 2 - 0.800000012 - 2 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/tophat.mesh - 5 - Mesh - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/GreenTopHat.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/HalloweenBaseballCap.png b/shareddata/charcustom/hats/HalloweenBaseballCap.png deleted file mode 100644 index 044ee35..0000000 Binary files a/shareddata/charcustom/hats/HalloweenBaseballCap.png and /dev/null differ diff --git a/shareddata/charcustom/hats/HalloweenBaseballCap.rbxm b/shareddata/charcustom/hats/HalloweenBaseballCap.rbxm deleted file mode 100644 index ba5578b..0000000 --- a/shareddata/charcustom/hats/HalloweenBaseballCap.rbxm +++ /dev/null @@ -1,140 +0,0 @@ - - null - nil - - - - 0 - -0.200000003 - 0.150000006 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - HalloweenBaseballCap - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -12.5 - 0.994357944 - 16.5 - 1 - -1.16600587e-017 - 6.05396395e-022 - 1.16600587e-017 - 1 - -1.16603532e-017 - -6.05396395e-022 - 1.16603532e-017 - 1 - - true - - false - - 0.5 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - 2 - 1 - - 1 - 0.400000006 - 1 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/BaseballCap.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/HalloweenBaseballCap.png - - 1 - 1 - 1 - - - - - - - 8.65748007e-009 - -0.0999999046 - 0.149727762 - 1 - 7.87137555e-009 - -3.26223034e-024 - -7.87137555e-009 - 1 - -4.1444221e-016 - 0 - 4.1444221e-016 - 1 - - HatAttachment - false - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/HalloweenSantaHat.png b/shareddata/charcustom/hats/HalloweenSantaHat.png deleted file mode 100644 index ecc6f06..0000000 Binary files a/shareddata/charcustom/hats/HalloweenSantaHat.png and /dev/null differ diff --git a/shareddata/charcustom/hats/HalloweenSantaHat.rbxm b/shareddata/charcustom/hats/HalloweenSantaHat.rbxm deleted file mode 100644 index aeab03c..0000000 --- a/shareddata/charcustom/hats/HalloweenSantaHat.rbxm +++ /dev/null @@ -1,140 +0,0 @@ - - null - nil - - - - 0 - -0.0500000007 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - HalloweenSantaHat - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -116.66433 - 5.99905586 - 43.8452835 - -0.916252911 - -2.77620595e-021 - -0.400600582 - -3.90117441e-021 - 1 - 1.99264861e-021 - 0.400600582 - 3.38858254e-021 - -0.916252911 - - true - - false - - 0.5 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - 2 - 1 - - 1 - 1.20000005 - 1 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/SantaHat.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/HalloweenSantaHat.png - - 1 - 1 - 1 - - - - - - - 8.65838956e-009 - 0.0499997139 - -0.000272244215 - 1 - 7.87137555e-009 - -3.26223034e-024 - -7.87137555e-009 - 1 - -4.1444221e-016 - 0 - 4.1444221e-016 - 1 - - HatAttachment - false - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/HalloweenSombrero.png b/shareddata/charcustom/hats/HalloweenSombrero.png deleted file mode 100644 index a623460..0000000 Binary files a/shareddata/charcustom/hats/HalloweenSombrero.png and /dev/null differ diff --git a/shareddata/charcustom/hats/HalloweenSombrero.rbxm b/shareddata/charcustom/hats/HalloweenSombrero.rbxm deleted file mode 100644 index ef88dea..0000000 --- a/shareddata/charcustom/hats/HalloweenSombrero.rbxm +++ /dev/null @@ -1,140 +0,0 @@ - - null - nil - - - - 0 - -0.150000006 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - HalloweenSombrero - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -4.38744259 - 1.60013628 - 26.3471107 - 0.933304489 - -0.000134134956 - -0.359085947 - -0.000283476315 - 0.999999344 - -0.00111033185 - 0.359085888 - 0.00113807002 - 0.933303833 - - true - - false - - 0.5 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - 2 - 1 - - 2 - 0.800000012 - 2 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/Sombrero.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/HalloweenSombrero.png - - 1 - 1 - 1 - - - - - - - 8.65838956e-009 - -0.0500001907 - -0.000272244215 - 1 - 7.87137555e-009 - -3.26223034e-024 - -7.87137555e-009 - 1 - -4.1444221e-016 - 0 - 4.1444221e-016 - 1 - - HatAttachment - false - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/KleosAphthiton.png b/shareddata/charcustom/hats/KleosAphthiton.png deleted file mode 100644 index 8c2cf9b..0000000 Binary files a/shareddata/charcustom/hats/KleosAphthiton.png and /dev/null differ diff --git a/shareddata/charcustom/hats/KleosAphthiton.rbxm b/shareddata/charcustom/hats/KleosAphthiton.rbxm deleted file mode 100644 index 693f437..0000000 --- a/shareddata/charcustom/hats/KleosAphthiton.rbxm +++ /dev/null @@ -1,140 +0,0 @@ - - null - nil - - - - 0 - 0.150000006 - -0.200000003 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - KleosAphthiton - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - 0.255549431 - 1.79905534 - 47.6620331 - -0.916252911 - -2.77620595e-021 - -0.400600582 - -3.90117441e-021 - 1 - 1.99264861e-021 - 0.400600582 - 3.38858254e-021 - -0.916252911 - - true - - false - - 0.5 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - 2 - 1 - - 1 - 1.20000005 - 1 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/Coif.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 1.00999999 - 0.850000024 - 1.00999999 - - rbxasset://../../../shareddata/charcustom/hats/textures/KleosAphthiton.png - - 1 - 1 - 1 - - - - - - - 8.65748007e-009 - 0.25 - -0.200272247 - 1 - 7.87137555e-009 - -3.26223034e-024 - -7.87137555e-009 - 1 - -4.1444221e-016 - 0 - 4.1444221e-016 - 1 - - HatAttachment - false - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/Lightbulb.png b/shareddata/charcustom/hats/Lightbulb.png deleted file mode 100644 index 3d2584b..0000000 Binary files a/shareddata/charcustom/hats/Lightbulb.png and /dev/null differ diff --git a/shareddata/charcustom/hats/Lightbulb.rbxm b/shareddata/charcustom/hats/Lightbulb.rbxm deleted file mode 100644 index 035974f..0000000 --- a/shareddata/charcustom/hats/Lightbulb.rbxm +++ /dev/null @@ -1,140 +0,0 @@ - - null - nil - - - - 0 - -0.75 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - Lightbulb - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -0.219999999 - 0.870000005 - -0.540009022 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - true - - false - - 0.5 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - 2 - 1 - - 1 - 0.800000012 - 1 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/Lightbulb.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 1 - 1 - 1.10000002 - - rbxasset://../../../shareddata/charcustom/hats/textures/Lightbulb.png - - 1 - 1 - 1 - - - - - - - 8.65838956e-009 - -0.650000095 - -0.000272244215 - 1 - 7.87137555e-009 - -3.26223034e-024 - -7.87137555e-009 - 1 - -4.1444221e-016 - 0 - 4.1444221e-016 - 1 - - HatAttachment - false - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/NinjaMaskOfAwesomeness.png b/shareddata/charcustom/hats/NinjaMaskOfAwesomeness.png deleted file mode 100644 index 238239a..0000000 Binary files a/shareddata/charcustom/hats/NinjaMaskOfAwesomeness.png and /dev/null differ diff --git a/shareddata/charcustom/hats/NinjaMaskOfAwesomeness.rbxm b/shareddata/charcustom/hats/NinjaMaskOfAwesomeness.rbxm deleted file mode 100644 index e1caa02..0000000 --- a/shareddata/charcustom/hats/NinjaMaskOfAwesomeness.rbxm +++ /dev/null @@ -1,116 +0,0 @@ - - null - nil - - - - 0 - 0.400000006 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - NinjaMaskOfAwesomeness - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -42.5 - 13.1984425 - 23.5 - 1 - -1.28136491e-018 - 2.70646879e-019 - 1.28136491e-018 - 1 - -1.67646949e-018 - -2.70646879e-019 - 1.67646949e-018 - 1 - - true - 0 - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 1 - 0.800000012 - 1 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/NinjaMask.mesh - 5 - Mesh - - 1.10000002 - 1.10000002 - 1.10000002 - - rbxasset://../../../shareddata/charcustom/hats/textures/NinjaMaskOfAwesomeness.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/NinjaMaskOfLight.png b/shareddata/charcustom/hats/NinjaMaskOfLight.png deleted file mode 100644 index e566e2d..0000000 Binary files a/shareddata/charcustom/hats/NinjaMaskOfLight.png and /dev/null differ diff --git a/shareddata/charcustom/hats/NinjaMaskOfLight.rbxm b/shareddata/charcustom/hats/NinjaMaskOfLight.rbxm deleted file mode 100644 index c5d8af0..0000000 --- a/shareddata/charcustom/hats/NinjaMaskOfLight.rbxm +++ /dev/null @@ -1,117 +0,0 @@ - - null - nil - - - - 0 - 0.400000006 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - NinjaMaskOfLight - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -38.5 - 16.798439 - -14.5 - 1 - -1.28136491e-018 - 2.70646879e-019 - 1.28136491e-018 - 1 - -1.67646949e-018 - -2.70646879e-019 - 1.67646949e-018 - 1 - - true - 0 - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 1 - 0.800000012 - 1 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/NinjaMask.mesh - 5 - Mesh - - 1.10000002 - 1.10000002 - 1.10000002 - - rbxasset://../../../shareddata/charcustom/hats/textures/NinjaMaskOfLight.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/NoHat.png b/shareddata/charcustom/hats/NoHat.png deleted file mode 100644 index 081f49a..0000000 Binary files a/shareddata/charcustom/hats/NoHat.png and /dev/null differ diff --git a/shareddata/charcustom/hats/NoHat.rbxm b/shareddata/charcustom/hats/NoHat.rbxm deleted file mode 100644 index ab10a6c..0000000 --- a/shareddata/charcustom/hats/NoHat.rbxm +++ /dev/null @@ -1,4 +0,0 @@ - - null - nil - \ No newline at end of file diff --git a/shareddata/charcustom/hats/OBCHardHat.png b/shareddata/charcustom/hats/OBCHardHat.png deleted file mode 100644 index efaa3a6..0000000 Binary files a/shareddata/charcustom/hats/OBCHardHat.png and /dev/null differ diff --git a/shareddata/charcustom/hats/OBCHardHat.rbxm b/shareddata/charcustom/hats/OBCHardHat.rbxm deleted file mode 100644 index 2a50dbe..0000000 --- a/shareddata/charcustom/hats/OBCHardHat.rbxm +++ /dev/null @@ -1,121 +0,0 @@ - - null - nil - - - - 0 - -0.25 - 0.150000006 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - BCHardHatGolden - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - 0.395759583 - 5.8490572 - -12.0172787 - -0.916252911 - -2.77620595e-021 - -0.400600582 - -3.90117441e-021 - 1 - 1.99264861e-021 - 0.400600582 - 3.38858254e-021 - -0.916252911 - - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 1 - 0.800000012 - 1 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/hardhat.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/hardhat_obc.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/OhNoes.png b/shareddata/charcustom/hats/OhNoes.png deleted file mode 100644 index 06d3d54..0000000 Binary files a/shareddata/charcustom/hats/OhNoes.png and /dev/null differ diff --git a/shareddata/charcustom/hats/OhNoes.rbxm b/shareddata/charcustom/hats/OhNoes.rbxm deleted file mode 100644 index 9f78b81..0000000 --- a/shareddata/charcustom/hats/OhNoes.rbxm +++ /dev/null @@ -1,116 +0,0 @@ - - null - nil - - - - 0 - -0.75 - 0 - 1 - 0 - -0 - -0 - 1 - 0 - 0 - 0 - 1 - - 2 - ONOHat - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - 0.5 - 4.4000001 - 0 - 0 - 0 - -1 - 0 - 1 - -0 - 1 - 0 - -0 - - false - 0 - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 2 - 1.60000002 - 1 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/ono.mesh - 5 - Mesh - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/ono.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/PaperBag.png b/shareddata/charcustom/hats/PaperBag.png deleted file mode 100644 index b01b95c..0000000 Binary files a/shareddata/charcustom/hats/PaperBag.png and /dev/null differ diff --git a/shareddata/charcustom/hats/PaperBag.rbxm b/shareddata/charcustom/hats/PaperBag.rbxm deleted file mode 100644 index 314fcdd..0000000 --- a/shareddata/charcustom/hats/PaperBag.rbxm +++ /dev/null @@ -1,140 +0,0 @@ - - null - nil - - - - 0 - 0.200000003 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - PaperBag - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - 14.5 - 8.90000057 - 7.5 - -1 - 0 - -0 - -0 - 1 - -0 - -0 - 0 - -1 - - true - - false - - 0.5 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 1 - 1 - 1 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - 2 - 1 - - 1 - 1.60000002 - 1 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/PaperBag.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/bag.png - - 1 - 1 - 1 - - - - - - - 8.65838956e-009 - 0.299999714 - -0.000272244215 - 1 - 7.87137555e-009 - -3.26223034e-024 - -7.87137555e-009 - 1 - -4.1444221e-016 - 0 - 4.1444221e-016 - 1 - - HatAttachment - false - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/PirateHat.png b/shareddata/charcustom/hats/PirateHat.png deleted file mode 100644 index f125691..0000000 Binary files a/shareddata/charcustom/hats/PirateHat.png and /dev/null differ diff --git a/shareddata/charcustom/hats/PirateHat.rbxm b/shareddata/charcustom/hats/PirateHat.rbxm deleted file mode 100644 index 7cc8836..0000000 --- a/shareddata/charcustom/hats/PirateHat.rbxm +++ /dev/null @@ -1,118 +0,0 @@ - - null - nil - - - - 0 - -0.349999994 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - PirateHat - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -28 - 1.19713736 - 22.5 - 1 - -1.80803587e-018 - 5.86063461e-019 - 1.80803587e-018 - 1 - -5.0792372e-018 - -5.86063461e-019 - 5.0792372e-018 - 1 - - true - true - 0 - true - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 2 - 0.800000012 - 1 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/PirateHat.mesh - 5 - Mesh - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/pirate.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/PoliceCap.png b/shareddata/charcustom/hats/PoliceCap.png deleted file mode 100644 index 188ed99..0000000 Binary files a/shareddata/charcustom/hats/PoliceCap.png and /dev/null differ diff --git a/shareddata/charcustom/hats/PoliceCap.rbxm b/shareddata/charcustom/hats/PoliceCap.rbxm deleted file mode 100644 index 128a132..0000000 --- a/shareddata/charcustom/hats/PoliceCap.rbxm +++ /dev/null @@ -1,118 +0,0 @@ - - null - nil - - - - 0 - -0.150000006 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - PoliceCap - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -12.5 - 1.20000005 - 25.5 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - true - true - 0 - true - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 1 - 0.800000012 - 1 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/PoliceCap.mesh - 5 - Mesh - - 1.10000002 - 1.10000002 - 1.10000002 - - rbxasset://../../../shareddata/charcustom/hats/textures/PoliceCap.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/PumpkinHead.png b/shareddata/charcustom/hats/PumpkinHead.png deleted file mode 100644 index 5a97a78..0000000 Binary files a/shareddata/charcustom/hats/PumpkinHead.png and /dev/null differ diff --git a/shareddata/charcustom/hats/PumpkinHead.rbxm b/shareddata/charcustom/hats/PumpkinHead.rbxm deleted file mode 100644 index 9180f9f..0000000 --- a/shareddata/charcustom/hats/PumpkinHead.rbxm +++ /dev/null @@ -1,118 +0,0 @@ - - null - nil - - - - 0 - 0.100000001 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - PumpkinHead - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -85 - 1.99844325 - -4 - 1 - -1.28136491e-018 - 2.70646879e-019 - 1.28136491e-018 - 1 - -1.67646949e-018 - -2.70646879e-019 - 1.67646949e-018 - 1 - - true - true - 0 - true - true - false - 0.5 - 0 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 0 - - 2 - 2 - 2 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/pumpkin.mesh - 5 - Mesh - - 0.5 - 0.5 - 0.5 - - rbxasset://../../../shareddata/charcustom/hats/textures/PumpkinHead.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/PurpleBaseballCap.png b/shareddata/charcustom/hats/PurpleBaseballCap.png deleted file mode 100644 index 6dffbac..0000000 Binary files a/shareddata/charcustom/hats/PurpleBaseballCap.png and /dev/null differ diff --git a/shareddata/charcustom/hats/PurpleBaseballCap.rbxm b/shareddata/charcustom/hats/PurpleBaseballCap.rbxm deleted file mode 100644 index e13610b..0000000 --- a/shareddata/charcustom/hats/PurpleBaseballCap.rbxm +++ /dev/null @@ -1,140 +0,0 @@ - - null - nil - - - - 0 - -0.200000003 - 0.150000006 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - PurpleBaseballCap - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - 10.5 - 1.3943578 - 26.5 - 1 - -1.16600587e-017 - 6.05396395e-022 - 1.16600587e-017 - 1 - -1.16603532e-017 - -6.05396395e-022 - 1.16603532e-017 - 1 - - true - - false - - 0.5 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - 2 - 1 - - 1 - 0.400000006 - 1 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/BaseballCap.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/PurpleBaseballCap.png - - 1 - 1 - 1 - - - - - - - 8.65748007e-009 - -0.0999999046 - 0.149727762 - 1 - 7.87137555e-009 - -3.26223034e-024 - -7.87137555e-009 - 1 - -4.1444221e-016 - 0 - 4.1444221e-016 - 1 - - HatAttachment - false - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/PurpleTopHat.png b/shareddata/charcustom/hats/PurpleTopHat.png deleted file mode 100644 index 2ecda0c..0000000 Binary files a/shareddata/charcustom/hats/PurpleTopHat.png and /dev/null differ diff --git a/shareddata/charcustom/hats/PurpleTopHat.rbxm b/shareddata/charcustom/hats/PurpleTopHat.rbxm deleted file mode 100644 index 2f2d830..0000000 --- a/shareddata/charcustom/hats/PurpleTopHat.rbxm +++ /dev/null @@ -1,118 +0,0 @@ - - null - nil - - - - 0 - -0.25 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - PurpleTopHat - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -23 - 1.20000005 - 17 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - true - true - 0 - true - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 2 - 0.800000012 - 2 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/tophat.mesh - 5 - Mesh - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/TopHatPurple.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/RedBaseballCap.png b/shareddata/charcustom/hats/RedBaseballCap.png deleted file mode 100644 index 1593b6f..0000000 Binary files a/shareddata/charcustom/hats/RedBaseballCap.png and /dev/null differ diff --git a/shareddata/charcustom/hats/RedBaseballCap.rbxm b/shareddata/charcustom/hats/RedBaseballCap.rbxm deleted file mode 100644 index 252ce8e..0000000 --- a/shareddata/charcustom/hats/RedBaseballCap.rbxm +++ /dev/null @@ -1,118 +0,0 @@ - - null - nil - - - - 0 - -0.200000003 - 0.150000006 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - RedBaseballCap - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -17.5 - 0.600000024 - 15.5 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - true - true - 0 - true - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 1 - 0.400000006 - 1 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/BaseballCap.mesh - 5 - Mesh - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/BaseballCapRed.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/RedTopHat.png b/shareddata/charcustom/hats/RedTopHat.png deleted file mode 100644 index 5965c8e..0000000 Binary files a/shareddata/charcustom/hats/RedTopHat.png and /dev/null differ diff --git a/shareddata/charcustom/hats/RedTopHat.rbxm b/shareddata/charcustom/hats/RedTopHat.rbxm deleted file mode 100644 index 0235d92..0000000 --- a/shareddata/charcustom/hats/RedTopHat.rbxm +++ /dev/null @@ -1,116 +0,0 @@ - - null - nil - - - - 0 - -0.25 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - RedTopHat - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -23 - 2.39844131 - 7 - 1 - -1.28136491e-018 - 2.70646879e-019 - 1.28136491e-018 - 1 - -1.67646949e-018 - -2.70646879e-019 - 1.67646949e-018 - 1 - - true - 0 - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 2 - 0.800000012 - 2 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/tophat.mesh - 5 - Mesh - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/RedTopHat.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/RiddlingSkull.png b/shareddata/charcustom/hats/RiddlingSkull.png deleted file mode 100644 index e701ac6..0000000 Binary files a/shareddata/charcustom/hats/RiddlingSkull.png and /dev/null differ diff --git a/shareddata/charcustom/hats/RiddlingSkull.rbxm b/shareddata/charcustom/hats/RiddlingSkull.rbxm deleted file mode 100644 index 3c1ccb9..0000000 --- a/shareddata/charcustom/hats/RiddlingSkull.rbxm +++ /dev/null @@ -1,140 +0,0 @@ - - null - nil - - - - 0 - 0.300000012 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - RiddlingSkull - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -91 - 16.5984459 - -19 - 1 - -1.28136491e-018 - 2.70646879e-019 - 1.28136491e-018 - 1 - -1.67646949e-018 - -2.70646879e-019 - 1.67646949e-018 - 1 - - true - - false - - 0.5 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - 0 - 0 - - 2 - 2 - 2 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/Skull.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 3.20000005 - 3.20000005 - 3.20000005 - - rbxasset://../../../shareddata/charcustom/hats/textures/RiddlingSkull.png - - 1 - 1 - 1 - - - - - - - 8.65838956e-009 - 0.400000095 - -0.000272244215 - 1 - 7.87137555e-009 - -3.26223034e-024 - -7.87137555e-009 - 1 - -4.1444221e-016 - 0 - 4.1444221e-016 - 1 - - HatAttachment - false - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/RubberDuckie.png b/shareddata/charcustom/hats/RubberDuckie.png deleted file mode 100644 index 16b1ca8..0000000 Binary files a/shareddata/charcustom/hats/RubberDuckie.png and /dev/null differ diff --git a/shareddata/charcustom/hats/RubberDuckie.rbxm b/shareddata/charcustom/hats/RubberDuckie.rbxm deleted file mode 100644 index 7c95cdd..0000000 --- a/shareddata/charcustom/hats/RubberDuckie.rbxm +++ /dev/null @@ -1,140 +0,0 @@ - - null - nil - - - - 0 - -0.600000024 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - RubberDuckie - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -17.5046921 - 8.09712505 - 12.9047775 - 0.999751627 - -5.25372174e-021 - -0.0222777594 - 5.26573444e-021 - 1 - 4.80515498e-022 - 0.0222777594 - -5.97705948e-022 - 0.999751627 - - true - - false - - 0.5 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - 0 - 1 - - 1 - 1 - 1 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/RubberDuckie.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/RubberDuckie.png - - 1 - 1 - 1 - - - - - - - 8.65838956e-009 - -0.5 - -0.000272244215 - 1 - 7.87137555e-009 - -3.26223034e-024 - -7.87137555e-009 - 1 - -4.1444221e-016 - 0 - 4.1444221e-016 - 1 - - HatAttachment - false - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/SantaHat.png b/shareddata/charcustom/hats/SantaHat.png deleted file mode 100644 index 44656e2..0000000 Binary files a/shareddata/charcustom/hats/SantaHat.png and /dev/null differ diff --git a/shareddata/charcustom/hats/SantaHat.rbxm b/shareddata/charcustom/hats/SantaHat.rbxm deleted file mode 100644 index 220ce6e..0000000 --- a/shareddata/charcustom/hats/SantaHat.rbxm +++ /dev/null @@ -1,140 +0,0 @@ - - null - nil - - - - 0 - -0.0500000007 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - SantaHat - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -3.66433048 - 5.69905567 - -29.1547165 - -0.916252911 - -2.77620595e-021 - -0.400600582 - -3.90117441e-021 - 1 - 1.99264861e-021 - 0.400600582 - 3.38858254e-021 - -0.916252911 - - true - - false - - 0.5 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - -2.42862883e-023 - 3.62439101e-022 - -1.39473558e-023 - - -0.5 - 0.5 - 0 - 0 - 0 - - 3.65120721e-020 - 0.0075033661 - 3.64241519e-020 - - 2 - 1 - - 1 - 1.20000005 - 1 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/SantaHat.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/SantaHat.png - - 1 - 1 - 1 - - - - - - - 8.65838956e-009 - 0.0499997139 - -0.000272244215 - 1 - 7.87137555e-009 - -3.26223034e-024 - -7.87137555e-009 - 1 - -4.1444221e-016 - 0 - 4.1444221e-016 - 1 - - HatAttachment - false - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/SapphireEye.png b/shareddata/charcustom/hats/SapphireEye.png deleted file mode 100644 index 6a137fb..0000000 Binary files a/shareddata/charcustom/hats/SapphireEye.png and /dev/null differ diff --git a/shareddata/charcustom/hats/SapphireEye.rbxm b/shareddata/charcustom/hats/SapphireEye.rbxm deleted file mode 100644 index 90b2299..0000000 --- a/shareddata/charcustom/hats/SapphireEye.rbxm +++ /dev/null @@ -1,140 +0,0 @@ - - null - nil - - - - 0 - 0.100000001 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - SapphireEye - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -103 - 3.79844522 - -4 - 1 - -1.28136491e-018 - 2.70646879e-019 - 1.28136491e-018 - 1 - -1.67646949e-018 - -2.70646879e-019 - 1.67646949e-018 - 1 - - true - - false - - 0.5 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - 0 - 0 - - 2 - 2 - 2 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/Eye.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 3.20000005 - 3.20000005 - 3.20000005 - - rbxasset://../../../shareddata/charcustom/hats/textures/SapphireEye.png - - 1 - 1 - 1 - - - - - - - 8.65838956e-009 - 0.199999809 - -0.000272244215 - 1 - 7.87137555e-009 - -3.26223034e-024 - -7.87137555e-009 - 1 - -4.1444221e-016 - 0 - 4.1444221e-016 - 1 - - HatAttachment - false - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/SecretFire.png b/shareddata/charcustom/hats/SecretFire.png deleted file mode 100644 index ba708b9..0000000 Binary files a/shareddata/charcustom/hats/SecretFire.png and /dev/null differ diff --git a/shareddata/charcustom/hats/SecretFire.rbxm b/shareddata/charcustom/hats/SecretFire.rbxm deleted file mode 100644 index 6271b11..0000000 --- a/shareddata/charcustom/hats/SecretFire.rbxm +++ /dev/null @@ -1,116 +0,0 @@ - - null - nil - - - - 0 - -0.200000003 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - IronHelm - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -216 - 5.20000029 - -42 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - true - 0 - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 2 - 2.4000001 - 2 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/IronHelm.mesh - 5 - Mesh - - 0.899999976 - 0.899999976 - 0.899999976 - - rbxasset://../../../shareddata/charcustom/hats/textures/BlackIronHelm.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/ShadowNinjaMask.png b/shareddata/charcustom/hats/ShadowNinjaMask.png deleted file mode 100644 index 4327d4d..0000000 Binary files a/shareddata/charcustom/hats/ShadowNinjaMask.png and /dev/null differ diff --git a/shareddata/charcustom/hats/ShadowNinjaMask.rbxm b/shareddata/charcustom/hats/ShadowNinjaMask.rbxm deleted file mode 100644 index c8b4f9c..0000000 --- a/shareddata/charcustom/hats/ShadowNinjaMask.rbxm +++ /dev/null @@ -1,116 +0,0 @@ - - null - nil - - - - 0 - 0.400000006 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - NinjaMaskOfShadows - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -42.5 - 15.9984398 - -14.5 - 1 - -1.28136491e-018 - 2.70646879e-019 - 1.28136491e-018 - 1 - -1.67646949e-018 - -2.70646879e-019 - 1.67646949e-018 - 1 - - true - 0 - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 1 - 0.800000012 - 1 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/NinjaMask.mesh - 5 - Mesh - - 1.10000002 - 1.10000002 - 1.10000002 - - rbxasset://../../../shareddata/charcustom/hats/textures/ShadowNinjaMask.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/Shaggy.png b/shareddata/charcustom/hats/Shaggy.png deleted file mode 100644 index da2fff7..0000000 Binary files a/shareddata/charcustom/hats/Shaggy.png and /dev/null differ diff --git a/shareddata/charcustom/hats/Shaggy.rbxm b/shareddata/charcustom/hats/Shaggy.rbxm deleted file mode 100644 index 9d8c83a..0000000 --- a/shareddata/charcustom/hats/Shaggy.rbxm +++ /dev/null @@ -1,140 +0,0 @@ - - null - nil - - - - 0.119999997 - 0.300000012 - -0.0700000003 - 0.980619192 - 0 - -0.19592388 - 0 - 1 - 0 - 0.19592391 - -0 - 0.980619073 - - Shaggy - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - 0.5 - 5.9000001 - -13 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - true - - false - - 0.5 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - 0 - 1 - - 1 - 1 - 2 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/Shaggy.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 1.07000005 - 1.07000005 - 1.07000005 - - rbxasset://../../../shareddata/charcustom/hats/textures/Shaggy.png - - 1 - 1 - 1 - - - - - - - 0.120053358 - 0.400000095 - -0.0702669546 - 0.980619192 - 7.71882025e-009 - -0.19592391 - -7.87137555e-009 - 1 - -4.4408921e-016 - 0.19592391 - 1.54219071e-009 - 0.980619192 - - HairAttachment - false - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/Sombrero.png b/shareddata/charcustom/hats/Sombrero.png deleted file mode 100644 index dae4a95..0000000 Binary files a/shareddata/charcustom/hats/Sombrero.png and /dev/null differ diff --git a/shareddata/charcustom/hats/Sombrero.rbxm b/shareddata/charcustom/hats/Sombrero.rbxm deleted file mode 100644 index f754c0f..0000000 --- a/shareddata/charcustom/hats/Sombrero.rbxm +++ /dev/null @@ -1,118 +0,0 @@ - - null - nil - - - - 0 - -0.150000006 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - Sombrero - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -2 - 1.20000005 - 25 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - true - true - 0 - true - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 2 - 0.800000012 - 2 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/Sombrero.mesh - 5 - Mesh - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/Sombrero.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/SpaceHat.png b/shareddata/charcustom/hats/SpaceHat.png deleted file mode 100644 index b4e5aed..0000000 Binary files a/shareddata/charcustom/hats/SpaceHat.png and /dev/null differ diff --git a/shareddata/charcustom/hats/SpaceHat.rbxm b/shareddata/charcustom/hats/SpaceHat.rbxm deleted file mode 100644 index 6526f50..0000000 --- a/shareddata/charcustom/hats/SpaceHat.rbxm +++ /dev/null @@ -1,140 +0,0 @@ - - null - nil - - - - 0 - 0.129999995 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - SpaceHat - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - 12 - 13.6000004 - 50 - -1 - 0 - -0 - -0 - 1 - -0 - -0 - 0 - -1 - - true - - false - - 0.5 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - 2 - 1 - - 2 - 1.60000002 - 2 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/SpaceHat.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/SpaceHat.png - - 1 - 1 - 1 - - - - - - - 8.65838956e-009 - 0.230000019 - -0.000272244215 - 1 - 7.87137555e-009 - -3.26223034e-024 - -7.87137555e-009 - 1 - -4.1444221e-016 - 0 - 4.1444221e-016 - 1 - - HatAttachment - false - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/SparkleTimeFedora.png b/shareddata/charcustom/hats/SparkleTimeFedora.png deleted file mode 100644 index c1f968d..0000000 Binary files a/shareddata/charcustom/hats/SparkleTimeFedora.png and /dev/null differ diff --git a/shareddata/charcustom/hats/SparkleTimeFedora.rbxm b/shareddata/charcustom/hats/SparkleTimeFedora.rbxm deleted file mode 100644 index 2862686..0000000 --- a/shareddata/charcustom/hats/SparkleTimeFedora.rbxm +++ /dev/null @@ -1,116 +0,0 @@ - - null - nil - - - - 0 - -0.100000001 - 0.0500000007 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - SparkleTimeFedora - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -86.5 - 8.99435711 - 32.5 - 1 - -1.16600587e-017 - 6.05396395e-022 - 1.16600587e-017 - 1 - -1.16603532e-017 - -6.05396395e-022 - 1.16603532e-017 - 1 - - true - 0 - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 1 - 0.400000006 - 1 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/SparkleTimeFedora.mesh - 5 - Mesh - - 1.10000002 - 1.10000002 - 1.10000002 - - rbxasset://../../../shareddata/charcustom/hats/textures/SparkleTimeFedora.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/StageProp.png b/shareddata/charcustom/hats/StageProp.png deleted file mode 100644 index 112de9c..0000000 Binary files a/shareddata/charcustom/hats/StageProp.png and /dev/null differ diff --git a/shareddata/charcustom/hats/StageProp.rbxm b/shareddata/charcustom/hats/StageProp.rbxm deleted file mode 100644 index 45c5e71..0000000 --- a/shareddata/charcustom/hats/StageProp.rbxm +++ /dev/null @@ -1,140 +0,0 @@ - - null - nil - - - - 0 - -0.349999994 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - StageProp - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -3.66433048 - 5.99905539 - -29.1547165 - -0.916252911 - -2.77620595e-021 - -0.400600582 - -3.90117441e-021 - 1 - 1.99264861e-021 - 0.400600582 - 3.38858254e-021 - -0.916252911 - - true - - false - - 0.5 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - -2.42862883e-023 - 3.62439101e-022 - -1.39473558e-023 - - -0.5 - 0.5 - 0 - 0 - 0 - - 3.65162565e-020 - 0.0075033661 - 3.64168656e-020 - - 2 - 1 - - 1 - 1.20000005 - 1 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/StageProp.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/StageProp.png - - 1 - 1 - 1 - - - - - - - 8.65838956e-009 - -0.25 - -0.000272244215 - 1 - 7.87137555e-009 - -3.26223034e-024 - -7.87137555e-009 - 1 - -4.1444221e-016 - 0 - 4.1444221e-016 - 1 - - HatAttachment - false - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/StrawHat.png b/shareddata/charcustom/hats/StrawHat.png deleted file mode 100644 index be07e85..0000000 Binary files a/shareddata/charcustom/hats/StrawHat.png and /dev/null differ diff --git a/shareddata/charcustom/hats/StrawHat.rbxm b/shareddata/charcustom/hats/StrawHat.rbxm deleted file mode 100644 index 3727e63..0000000 --- a/shareddata/charcustom/hats/StrawHat.rbxm +++ /dev/null @@ -1,118 +0,0 @@ - - null - nil - - - - 0 - -0.349999994 - 0 - 1 - 0 - 0 - -0 - 0.980390251 - 0.1970658 - 0 - -0.197065771 - 0.98039037 - - 2 - StrawHat - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - 46.3998489 - 0.799179196 - 39.3222809 - 0.0497253612 - 0.00195141044 - -0.998760939 - -0.00180361001 - 0.999996662 - 0.00186402828 - 0.998761237 - 0.001708686 - 0.0497287102 - - true - true - 0 - true - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 2 - 0.800000012 - 2 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/StrawHat.mesh - 5 - Mesh - - 1.60000002 - 1.29999995 - 1.60000002 - - rbxasset://../../../shareddata/charcustom/hats/textures/StrawHat.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/Swordpack.png b/shareddata/charcustom/hats/Swordpack.png deleted file mode 100644 index 10871cb..0000000 Binary files a/shareddata/charcustom/hats/Swordpack.png and /dev/null differ diff --git a/shareddata/charcustom/hats/Swordpack.rbxm b/shareddata/charcustom/hats/Swordpack.rbxm deleted file mode 100644 index a7fbf3d..0000000 --- a/shareddata/charcustom/hats/Swordpack.rbxm +++ /dev/null @@ -1,140 +0,0 @@ - - null - nil - - - - 0 - 1.39999998 - -0.800000012 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - Swordpack - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - 28.5 - 1.89999998 - 28 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - true - - false - - 0.5 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - 0 - 1 - - 3 - 3 - 2 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/Swordpack.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/Swordpack.png - - 1 - 1 - 1 - - - - - - - -9.09494702e-013 - -0.600000143 - -0.300272375 - 1 - -6.83440315e-031 - 0 - 6.83440315e-031 - 1 - -0 - 0 - 0 - 1 - - BodyBackAttachment - false - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/TBCHardHat.png b/shareddata/charcustom/hats/TBCHardHat.png deleted file mode 100644 index 8656a57..0000000 Binary files a/shareddata/charcustom/hats/TBCHardHat.png and /dev/null differ diff --git a/shareddata/charcustom/hats/TBCHardHat.rbxm b/shareddata/charcustom/hats/TBCHardHat.rbxm deleted file mode 100644 index 4061725..0000000 --- a/shareddata/charcustom/hats/TBCHardHat.rbxm +++ /dev/null @@ -1,118 +0,0 @@ - - null - nil - - - - 0 - -0.25 - 0.150000006 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - TBCHardHat - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -24.6042404 - 1.64905727 - -0.0172786713 - -0.916252911 - -2.77620595e-021 - -0.400600582 - -3.90117441e-021 - 1 - 1.99264861e-021 - 0.400600582 - 3.38858254e-021 - -0.916252911 - - true - true - 0 - true - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 1 - 0.800000012 - 1 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/hardhat.mesh - 5 - Mesh - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/hardhat_tbc.png - - 1 - 1 - 1 - - true - - - - - diff --git a/shareddata/charcustom/hats/TeapotHat.png b/shareddata/charcustom/hats/TeapotHat.png deleted file mode 100644 index b5a2cf9..0000000 Binary files a/shareddata/charcustom/hats/TeapotHat.png and /dev/null differ diff --git a/shareddata/charcustom/hats/TeapotHat.rbxm b/shareddata/charcustom/hats/TeapotHat.rbxm deleted file mode 100644 index 0314cc0..0000000 --- a/shareddata/charcustom/hats/TeapotHat.rbxm +++ /dev/null @@ -1,118 +0,0 @@ - - null - nil - - - - 0 - 0.25 - 0.100000001 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - TeapotHat - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - 7.96006393 - 0.801764309 - 8.7839489 - -0.209644035 - -0.00530963205 - 0.977763355 - -0.000722747762 - 0.999985814 - 0.00527534308 - -0.977777541 - 0.000399267912 - -0.209644899 - - true - true - 0 - true - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 2 - 0.800000012 - 1 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/teapot.mesh - 5 - Mesh - - 2 - 2 - 2 - - rbxasset://../../../shareddata/charcustom/hats/textures/teapot.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/TeapotTurret.png b/shareddata/charcustom/hats/TeapotTurret.png deleted file mode 100644 index cd8afc8..0000000 Binary files a/shareddata/charcustom/hats/TeapotTurret.png and /dev/null differ diff --git a/shareddata/charcustom/hats/TeapotTurret.rbxm b/shareddata/charcustom/hats/TeapotTurret.rbxm deleted file mode 100644 index fe702c0..0000000 --- a/shareddata/charcustom/hats/TeapotTurret.rbxm +++ /dev/null @@ -1,11590 +0,0 @@ - - null - nil - - - - 0 - 0.25 - 0.100000001 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - TeapotTurret - - - - 0 - 2 - true - - 0 - 0 - -3.25 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 1 - 0 - - GravityHammer - rbxasset://../../../shareddata/charcustom/hats/textures/gravityhammericon.png - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 199 - - 7.143013 - 25.3518391 - -5.57722473 - -0.999864757 - -0.0164248962 - 0.000796166831 - 0.000796274282 - -1.28919441e-021 - 0.999999702 - -0.0164248906 - 0.999865055 - 1.30787221e-005 - - true - 0 - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - false - Handle - 0.400000006 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 1 - 0.800000012 - 10 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/gravityhammer.mesh - 5 - Mesh - - 0.0500000007 - 0.0500000007 - 0.0500000007 - - rbxasset://../../../shareddata/charcustom/hats/textures/gravityhammer.png - - 1 - 1 - 1 - - true - - - - - false - Sound - 2 - false - rbxasset://../../../shareddata/charcustom/hats/sounds/gravityhammerswing.mp3 - 1 - true - - - - - - false - - SwordScript - -------- OMG HAX - - - -r = game:service("RunService") - - - - - -local damage = 5 - - - - - -local slash_damage = 10 - -local lunge_damage = 30 - - - -sword = script.Parent.Handle - -Tool = script.Parent - - - -SlashSound = sword.Sound - - - -function blow(hit) - - Grip = Tool.Parent["Right Arm"].RightGrip:clone() - - humanoid = hit.Parent:findFirstChild("Humanoid") - - if(humanoid ~= nil and humanoid.Parent.Name == Tool.Parent.Name) then --don't hit yourself - - return - - end - - - - --if(Tool:findFirstChild("toolAnim") == nil) then return end - - if(humanoid ~= nil) then --if it's a person, damage him and stop - - propel(hit) - - print(humanoid.Parent.Name) - - humanoid.Health = humanoid.Health - 49 - - else - - explode(hit) --explode only if it doesn't hit a person (ie, blowing holes through walls) - - end - - - -end - - - -function propel(part) - - if(part.Anchored) then return end --if it isn't anchored, make it flyyy - - direction = (part.Position - Tool.Parent.Torso.Position).unit - - direction = direction + Vector3.new(0,1,0) - - direction = direction * 200 - - part.Velocity = part.Velocity + direction - -end - - - -debounce = true - -function explode(part) - - if not debounce then return end - - - - debounce = false - - direction = (part.Position - Tool.Parent.Torso.Position).unit - - pos = direction * 12 + Tool.Parent.Torso.Position - - explosion = Instance.new("Explosion") - - explosion.BlastRadius = 4 - - explosion.BlastPressure = 1 - - explosion.Position = pos - - explosion.Parent = game.Workspace - - explosion.Hit:connect(function(part, distance) propel(part) end) - - wait(.1) - - Grip:clone().Parent = Tool.Parent["Right Arm"] - - debounce = true - -end - - - -function attack() - - SlashSound:play() - - local anim = Instance.new("StringValue") - - anim.Name = "toolanim" - - anim.Value = "Slash" - - anim.Parent = Tool - -end - - - -function lunge() - - attack() - - force = Instance.new("BodyPosition") - - force.maxForce = Vector3.new(1e+005,1e+004,1e+005) - - dir = Tool.Parent.Humanoid.targetPoint - - if((dir - sword.Position).magnitude > 15) then return end - - force.position = dir - - force.Parent = sword - - wait(.25) - - force.Parent = nil - -end - - - -function swordUp() - - Tool.GripForward = Vector3.new(-1,0,0) - - Tool.GripRight = Vector3.new(0,1,0) - - Tool.GripUp = Vector3.new(0,0,1) - -end - - - -function swordOut() - - Tool.GripForward = Vector3.new(0,0,1) - - Tool.GripRight = Vector3.new(0,-1,0) - - Tool.GripUp = Vector3.new(-1,0,0) - -end - - - -function swordAcross() - - -- parry - -end - - - - - -Tool.Enabled = true - -local last_attack = 0 - -function onActivated() - - - - if not Tool.Enabled then - - return - - end - - - - Tool.Enabled = false - - - - local character = Tool.Parent; - - local humanoid = character.Humanoid - - if humanoid == nil then - - print("Humanoid not found") - - return - - end - - - - t = r.Stepped:wait() - - connection = sword.Touched:connect(blow) - - lunge() - - - - wait(.4) - -connection:disconnect() - - last_attack = t - - Tool.Enabled = true - - - - - -end - -script.Parent.Activated:connect(onActivated) - - - - - - - true - - - - - false - - Local Gui - local Tool = script.Parent; - -enabled = true -function onButton1Down(mouse) - if not enabled then - return - end - - enabled = false - mouse.Icon = "rbxasset://textures\\GunWaitCursor.png" - - wait(.5) - mouse.Icon = "rbxasset://textures\\GunCursor.png" - enabled = true - -end - -function onEquippedLocal(mouse) - - if mouse == nil then - print("Mouse not found") - return - end - - mouse.Icon = "rbxasset://textures\\GunCursor.png" - mouse.Button1Down:connect(function() onButton1Down(mouse) end) -end - - -Tool.Equipped:connect(onEquippedLocal) - true - - - - - - false - - Massive - hat = script.Parent - -teapot = hat.Handle:clone() - -teapot.Size = Vector3.new(65,65,65) - -teapot.Mesh.Scale = Vector3.new(100,100,100) - -teapot.Name = "massive teapot" - -teapot.Size = Vector3.new(65,65,65) - -teapot.Mesh.Scale = Vector3.new(100,100,100) - -teapot.Name = "massive teapot" - - - -debounce = true - -function teapottouch(pot, hit) - - if not debounce then return end - - debounce = false - - --[[ - - if(hit.Parent.className == "Model" and hit.Parent:findFirstChild("owned") == nil) then - - hit.Parent:breakJoints() - - local tag = Instance.new("IntValue") - - tag.Name = "owned" - - tag.Parent = hit.Parent - - end - - if(hit.Parent:findFirstChild("Humanoid") ~= nil) then hit.Parent.Humanoid.Health = 0 end ]]-- - - exp = Instance.new("Explosion") - - exp.BlastRadius = 50 - - exp.BlastPressure = 1000000 - - exp.Position = pot.Position - - exp.Parent = game.Workspace - - wait(.5) - - debounce = true - -end - - - -function gf(player) - - Torso = player.Position - - pos = Torso + Vector3.new(0,1000,0) - - pot = teapot:clone() - - pot.Position = pos - - pot.Elasticity = 0.1 - - pot.Parent = game.Workspace - - pot.homing.TargetOffset = player.Position - - pot.homing:Fire() - - pot.homing.ThrustP = 50000 - - pot.homing.MaxTorque = Vector3.new(0,0,0) - - pot.homing.TurnP = 0 - - connection = pot.Touched:connect(function(hit) teapottouch(pot, hit) end) - -end - - - -function trigger(msg, recipient) - - name = string.sub(msg,1,-2) - - children = game.Players:children() - - for i=1,#children do - - if(children[i].Name == name) then gf(children[i].Character.Torso) end - - end - - - -end - - - -wait(1) - -while hat.Parent.Name == "Workspace" do wait(2) end - -print("Hat picked up") - -player = game.Players:GetPlayerFromCharacter(hat.Parent) - -print("Admin confirmed") - -player.Chatted:connect(trigger) - true - - - - - false - - Server Launcher - local hat = script.Parent - -wait(1) - -while hat.Parent.Name == "Workspace" do wait(2) end - -print("Hat picked up") - -player = game.Players:GetPlayerFromCharacter(hat.Parent) - -print("Admin confirmed") - -local Rocket = hat.Handle - -local block = hat.Handle:clone() - -block.Size = Vector3.new(4,7,3) - -block.Name = "shield" - -number = 4 - -radius = 6 - - - -teapot = hat.Handle:clone() - -teapot.Size = Vector3.new(65,65,65) - -teapot.Mesh.Scale = Vector3.new(100,100,100) - -teapot.Name = "massive teapot" - -teapot.Size = Vector3.new(65,65,65) - -teapot.Mesh.Scale = Vector3.new(100,100,100) - -teapot.Name = "massive teapot" - - - -function either(number) - - if(math.random(1,2) == 1) then return number end - - return -number - -end - - - -function glue(x, y) - - weld = Instance.new("Weld") - - - - weld.Part0 = x - - weld.Part1 = y - - - - local HitPos = x.Position - - - - local CJ = CFrame.new(HitPos) - - local C0 = x.CFrame:inverse() *CJ - - local C1 = y.CFrame:inverse() * CJ - - - - weld.C0 = C0 - - weld.C1 = C1 - - - - weld.Parent = x - -end - -children = hat:children() - -for i=1,#children do - - if(children[i].className == "HopperBin" or children[i].className == "Tool") then - - children[i].Parent = player.Backpack - - end - -end - - -torso = hat.Parent.Torso - -function Leap() - - torso.Velocity=Vector3.new(torso.Velocity.x*1.6,100,torso.Velocity.z*1.6) - - wait(0.5) - -end - - - -function Amplify() - - torso.Velocity= torso.CFrame.lookVector * 50 - -end - - - -function fire(vTarget,offset) - - obj = vTarget - - vTarget = vTarget.Position - - - - - - local dir = vTarget - hat.Handle.Position - - dir = dir.unit - - missile = {} - - pos = {} - - hatFrame = {} - - misFrame = {} - - seed = {} - - for i=1,number do - - seed[i] = math.random(0,100000) - - missile[i] = Rocket:clone() - - missile[i].Name = "teapot" .. seed[i] - - pos[i] = hat.Handle.Position + Vector3.new(math.random(-10,10),4,math.random(-10,10)) - - hatFrame[i] = hat.Handle.CFrame - - misFrame[i] = hatFrame[i] * CFrame.new(math.random(-10,10),math.random(-10,10),math.random(-10,0)) - - --missile.Position = pos - - missile[i].CFrame = CFrame.new(pos[i], pos[i] + dir) - - - - missile[i].RocketScript.Disabled = false - - missile[i].Parent = game.Workspace - - missile[i].homing:Fire() - - missile[i].homing.ThrustP = 50 - - missile[i].homing.TargetOffset = misFrame[i].p + offset - - end - - - - wait(.4) - - - - for i=1,number do - - teapot = game.Workspace:findFirstChild("teapot" .. seed[i]) - - if(teapot ~= nil) then - - teapot.homing.ThrustP = 30 - - teapot.homing.TargetOffset = Vector3.new(math.random(-2,2),math.random(-2,2),math.random(-2,2)) - - teapot.homing.Target = obj - - end - - end - -end - - - -function shield() - - Torso = hat.Parent.Torso.CFrame - - bricks = {} - - bricks[1] = Torso * CFrame.new(0,0,-radius) - - bricks[2] = Torso * CFrame.new(0,0,radius) - - bricks[3] = Torso * CFrame.new(-radius,0,0) - - bricks[4] = Torso * CFrame.new(radius,0,0) - - for i=1,#bricks do - - newbrick = block:clone() - - newbrick.CFrame = CFrame.new(bricks[i].p, Torso.p) - - newbrick.Parent = game.Workspace - - glue(newbrick,hat.Parent.Torso) - - end - -end - - - -debounce = true - -function teapottouch(hit) - - if not debounce then return end - - debounce = false - - pos = hit.Position - - boom = Instance.new("Explosion") - - boom.BlastRadius = 30 - - boom.BlastPressure = 500000 - - boom.Position = pos - - boom.Parent = game.Workspace - - wait(1) - - debounce = true - -end - - - -function gf(player) - - Torso = player.Position - - pos = Torso + Vector3.new(0,750,0) - - pot = teapot:clone() - - pot.Position = pos - - pot.Elasticity = 0.1 - - pot.Parent = game.Workspace - - connection = pot.Touched:connect(teapottouch) - -end - - - -function kill(hit) - - local human = hit.Parent:findFirstChild("Humanoid") - - if (human ~= nil) then - - human.Health = 0 - - end - -end - - - -function trigger(msg, recipient) - - if(msg == "spew!") then - - children = game.Players:children() - - for i=1,#children do - - fire(children[i].Character.Torso,Vector3.new(0,25,0)) - - end - - end - - if(msg == "abort") then - - children = game.Workspace:children() - - for i=1,#children do - - if(string.sub(children[i].Name,1,6) == "teapot") then children[i].homing:Abort() end - - if(children[i].Name == "shield" or children[i].Name == "massive teapot" or children[i].Name == "TVehicle") then children[i]:remove() end - - end - - end - - if(msg == "shield!") then - - shield() - - end - - if(msg == "i can fly") then - - hat.TVehicle:move((hat.Handle.CFrame * CFrame.new(0,3,-10)).p) - - hat.TVehicle.Front.Propulsion.TargetOffset = hat.Handle.Position + Vector3.new(5,-5,0) - - end - - if(msg == "arm front") then - - hat.TVehicle.Front.Touched:connect(kill) - - end - - if(tonumber(msg) ~= nil) then - - power = tonumber(msg) - - hat.TVehicle.Front.Propulsion.MaxSpeed = power - - end - - children = game.Players:children() - - for i=1,#children do - - if(children[i].Name == msg) then - - torso = children[i].Character.Torso - - prop = hat.TVehicle.Front.Propulsion:clone() - - prop.Target = hat.TVehicle.back - - prop.MaxSpeed = 1000 - - prop.TargetOffset = Vector3.new(0,0,0) - - prop.MaxTorque = Vector3.new(4e+10,4e+10,4e+10) - - prop.Parent = torso - - prop:Fire() - - end - - end - - if(string.sub(msg,1,6) ~= "Teapot") then return end - - name = string.sub(msg,8,-2) - - children = game.Players:children() - - for i=1,#children do - - if(children[i].Name == name) then fire(children[i].Character.Torso,Vector3.new(0,25,0)) end - - end - - - -end - -player.Chatted:connect(trigger) - -hat.Parent.Humanoid.Jumping:connect(Leap) - -hat.Parent.Humanoid.Running:connect(Amplify) - true - - - - - 0 - true - - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - TVehicle - RBX11 - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 1 - - -1 - 30.6000004 - 4 - -0 - 0 - 1 - -0 - 1 - 0 - -1 - 0 - 0 - - true - 0 - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - false - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 6.08332275e-020 - 4.26090527 - 1.26058997e-020 - - -0.5 - 0.5 - 0 - 0 - 0 - - 6.75871754 - -0.631815135 - -6.61694717 - - true - 1 - - 2 - 1.60000002 - 2 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/teapot.mesh - 5 - Mesh - - 3 - 3 - 3 - - rbxasset://../../../shareddata/charcustom/hats/textures/TeapotTurret.png - - 1 - 1 - 1 - - true - - - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 1 - - -3 - 30.6000004 - 4 - -0 - 0 - 1 - -0 - 1 - 0 - -1 - 0 - 0 - - true - 0 - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - false - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 6.08332275e-020 - 4.26090527 - 1.26058997e-020 - - -0.5 - 0.5 - 0 - 0 - 0 - - 6.75871754 - -0.631815135 - 1.90486336 - - true - 1 - - 2 - 1.60000002 - 2 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/teapot.mesh - 5 - Mesh - - 3 - 3 - 3 - - rbxasset://../../../shareddata/charcustom/hats/textures/TeapotTurret.png - - 1 - 1 - 1 - - true - - - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 1 - - -1 - 30.6000004 - 2 - -0 - 0 - 1 - -0 - 1 - 0 - -1 - 0 - 0 - - true - 0 - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - false - back - 0 - -0.5 - 0.5 - 0 - 0 - - 6.08332275e-020 - 4.26090527 - 1.26058997e-020 - - -0.5 - 0.5 - 0 - 0 - 0 - - -1.76309323 - -0.631815135 - -6.61694717 - - true - 1 - - 2 - 1.60000002 - 2 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/teapot.mesh - 5 - Mesh - - 3 - 3 - 3 - - rbxasset://../../../shareddata/charcustom/hats/textures/TeapotTurret.png - - 1 - 1 - 1 - - true - - - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 1 - - -3 - 30.3999996 - 2 - -0 - 0 - 1 - -0 - 1 - 0 - -1 - 0 - 0 - - true - 0 - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - false - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 6.08332275e-020 - 4.26090527 - 1.26058997e-020 - - -0.5 - 0.5 - 0 - 0 - 0 - - -1.76309323 - -0.631815135 - 1.90486336 - - true - 1 - - 2 - 0.400000006 - 2 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/teapot.mesh - 5 - Mesh - - 3 - 3 - 3 - - rbxasset://../../../shareddata/charcustom/hats/textures/TeapotTurret.png - - 1 - 1 - 1 - - true - - - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 1 - - -1 - 30.6000004 - 0 - -0 - 0 - 1 - -0 - 1 - 0 - -1 - 0 - 0 - - true - 0 - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - false - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 6.08332275e-020 - 4.26090527 - 1.26058997e-020 - - -0.5 - 0.5 - 0 - 0 - 0 - - -10.2849035 - -0.631815135 - -6.61694717 - - true - 1 - - 2 - 1.60000002 - 2 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/teapot.mesh - 5 - Mesh - - 3 - 3 - 3 - - rbxasset://../../../shareddata/charcustom/hats/textures/TeapotTurret.png - - 1 - 1 - 1 - - true - - - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 1 - - -3 - 30.6000004 - 0 - -0 - 0 - 1 - -0 - 1 - 0 - -1 - 0 - 0 - - true - 0 - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - false - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 6.08332275e-020 - 4.26090527 - 1.26058997e-020 - - -0.5 - 0.5 - 0 - 0 - 0 - - -10.2849035 - -0.631815135 - 1.90486336 - - true - 1 - - 2 - 1.60000002 - 2 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/teapot.mesh - 5 - Mesh - - 3 - 3 - 3 - - rbxasset://../../../shareddata/charcustom/hats/textures/TeapotTurret.png - - 1 - 1 - 1 - - true - - - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 1 - - -5 - 31 - 2 - -0 - 0 - 1 - -0 - 1 - 0 - -1 - 0 - 0 - - true - 0 - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - false - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 6.08332275e-020 - 4.26090527 - 1.26058997e-020 - - -0.5 - 0.5 - 0 - 0 - 0 - - -1.76309323 - -0.631815135 - 10.4266739 - - true - 1 - - 2 - 1.60000002 - 2 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/teapot.mesh - 5 - Mesh - - 3 - 3 - 3 - - rbxasset://../../../shareddata/charcustom/hats/textures/TeapotTurret.png - - 1 - 1 - 1 - - true - - - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 1 - - -5 - 30.6000004 - 4 - -0 - 0 - 1 - -0 - 1 - 0 - -1 - 0 - 0 - - true - 0 - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - false - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 6.08332275e-020 - 4.26090527 - 1.26058997e-020 - - -0.5 - 0.5 - 0 - 0 - 0 - - 6.75871754 - -0.631815135 - 10.4266739 - - true - 1 - - 2 - 1.60000002 - 2 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/teapot.mesh - 5 - Mesh - - 3 - 3 - 3 - - rbxasset://../../../shareddata/charcustom/hats/textures/TeapotTurret.png - - 1 - 1 - 1 - - true - - - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 1 - - -5 - 30.6000004 - 0 - -0 - 0 - 1 - -0 - 1 - 0 - -1 - 0 - 0 - - true - 0 - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - false - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 6.08332275e-020 - 4.26090527 - 1.26058997e-020 - - -0.5 - 0.5 - 0 - 0 - 0 - - -10.2849035 - -0.631815135 - 10.4266739 - - true - 1 - - 2 - 1.60000002 - 2 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/teapot.mesh - 5 - Mesh - - 3 - 3 - 3 - - rbxasset://../../../shareddata/charcustom/hats/textures/TeapotTurret.png - - 1 - 1 - 1 - - true - - - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 1 - - -7 - 31 - 2 - -0 - 0 - 1 - -0 - 1 - 0 - -1 - 0 - 0 - - true - 0 - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - false - Front - 0 - -0.5 - 0.5 - 0 - 0 - - 6.08332275e-020 - 4.26090527 - 1.26058997e-020 - - -0.5 - 0.5 - 0 - 0 - 0 - - -1.76309323 - -0.631815135 - 18.9484844 - - true - 1 - - 2 - 1.60000002 - 2 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/teapot.mesh - 5 - Mesh - - 3 - 3 - 3 - - rbxasset://../../../shareddata/charcustom/hats/textures/TeapotTurret.png - - 1 - 1 - 1 - - true - - - - - 1 - 35 - 400000 - - 400000 - 400000 - 0 - - Propulsion - null - - 1000 - 10000 - 0 - - 10 - 1.25 - 5 - 500 - 3000 - true - - - - - - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - - -2 - 0.399999976 - -2 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - Instance - null - null - true - - - - - - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - - 2 - 0.399999976 - -2 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - Instance - null - null - true - - - - - - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - - 0 - 0 - -2 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - Instance - null - null - true - - - - - - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - - -2 - 0.399999976 - -4 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - Instance - null - null - true - - - - - - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - - -2 - 0.399999976 - -6 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - Instance - null - null - true - - - - - - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - - 0 - 0.600000024 - -4 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - Instance - null - null - true - - - - - - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - - 0 - 0.399999976 - -6 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - Instance - null - null - true - - - - - - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - - 2 - 0.399999976 - -4 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - Instance - null - null - true - - - - - - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - - 2 - 0.399999976 - -6 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - Instance - null - null - true - - - - - - false - - Power - children = script.Parent:children() - -front = script.Parent.Front - - - -function stick(a,b) - - welded = true - - -- joint myself to the thing i hit - - local weld = Instance.new("Weld") - - - - weld.Part0 = a - - weld.Part1 = b - - - - local HitPos = a.Position - - - - local CJ = CFrame.new(HitPos) - - local C0 = a.CFrame:inverse() *CJ - - local C1 = b.CFrame:inverse() * CJ - - - - weld.C0 = C0 - - weld.C1 = C1 - - - - weld.Parent = a - -end - - - -for i=1,#children do - - if(children[i].className == "Part" and children[i].Name ~= "Front") then stick(front,children[i]) end - -end - -wait(.5) - -front.Propulsion:Fire() - -dest = Vector3.new(1000,10000,0) - -script.Parent:move(dest) - -front.Propulsion.TargetOffset = dest - true - - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 4 - 0 - 1 - - -3 - 30.8000011 - 2 - -0 - 0 - 1 - -0 - 1 - 0 - -1 - 0 - 0 - - true - 0 - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - false - Seat - 0 - -0.5 - 0.5 - 0 - 0 - - 6.08332275e-020 - 4.26090527 - 1.26058997e-020 - - -0.5 - 0.5 - 3 - 0 - 1 - - -1.76309323 - -0.631815135 - 1.90486336 - - true - 1 - - 2 - 0.400000006 - 2 - - - - - 500 - BodyGyro - 3000 - true - - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - - 4000 - 0 - 4000 - - - - - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 1 - - 3.37573242 - 24.3032551 - -2.06309128 - -0.916252911 - -3.54950471e-021 - -0.400600582 - -5.14688943e-021 - 1 - 2.91149723e-021 - 0.400600582 - 4.7295142e-021 - -0.916252911 - - true - 0 - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - false - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 8.4264061e-025 - 3.72885967e-022 - 5.50971025e-025 - - -0.5 - 0.5 - 0 - 0 - 0 - - 3.65131998e-020 - 0.00671230676 - 3.64665287e-020 - - true - 1 - - 2 - 1.60000002 - 2 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/teapot.mesh - 5 - Mesh - - 3 - 3 - 3 - - rbxasset://../../../shareddata/charcustom/hats/textures/TeapotTurret.png - - 1 - 1 - 1 - - true - - - - - false - Explosion - 0 - false - rbxasset://sounds\collide.wav - 1 - true - - - - - true - Swoosh - -1 - false - rbxasset://sounds\Rocket whoosh 01.wav - 0.699999988 - true - - - - - 1 - 25 - 4e+010 - - 3.99999995e+015 - 3.99999995e+015 - 3.99999995e+015 - - homing - null - - 0 - 0 - 0 - - 4 - 3 - 30 - 4000 - 20000 - true - - - - - true - - RocketScript - r = game:service("RunService") - - - -shaft = script.Parent - -position = shaft.Position - - - -script.Parent.Explosion.PlayOnRemove = true -- play explosion sound when projectile removed from game - -bother = true - - - -function blow(hit) - - if(bother == true) then return end - - if(string.sub(hit.Name,1,6) == "teapot") then return end - - swoosh:stop() - - explosion = Instance.new("Explosion") - - explosion.Position = shaft.Position - - - - explosion.Parent = game.Workspace - - wait(.1) - - shaft:remove() - -end - - - -function onPlayerBlownUp(part, distance, creator) - - - - if part.Name == "Head" then - - - - local humanoid = part.Parent.Humanoid - - tagHumanoid(humanoid, creator) - - end - -end - - - -function tagHumanoid(humanoid, creator) - - -- tag does not need to expire iff all explosions lethal - - - - if creator ~= nil then - - local new_tag = creator:clone() - - new_tag.Parent = humanoid - - - - end - -end - - - -function untagHumanoid(humanoid) - - if humanoid ~= nil then - - local tag = humanoid:findFirstChild("creator") - - if tag ~= nil then - - - - tag.Parent = nil - - end - - end - -end - - - -swoosh = script.Parent.Swoosh - -swoosh:play() - - - -connection = shaft.Touched:connect(blow) - - - -wait(30) - --- at max range - -script.Parent.Explosion.PlayOnRemove = false - -swoosh:stop() - -shaft:remove() - - - true - - - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - 0 - 15.055522 - 0 - 1 - -1.07914328e-024 - 4.63997453e-024 - 1.07914328e-024 - 1 - -1.07914328e-024 - -4.63997453e-024 - 1.07914328e-024 - 1 - - true - 0 - true - false - 0.5 - 1 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - false - Satellite - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 5 - 16.8000011 - 5 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/Satellite.mesh - 5 - Mesh - - 0.25 - 0.25 - 0.25 - - rbxasset://../../../shareddata/charcustom/hats/textures/Satellite.png - - 1 - 1 - 1 - - true - - - - - 1250 - BodyPosition - 10000 - true - - 4000000 - 4000000 - 4000000 - - - 10 - 25 - 10 - - - - - - 500 - BodyGyro - 3000 - true - - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - - 0 - 400000 - 400000 - - - - - - true - Sparkles - true - - - - - false - Sound - 2 - false - rbxasset://../../../shareddata/charcustom/hats/sounds/Activation.wav - 1 - true - - - - - - 0 - Fly2 - - true - - - - false - - TeleportScript - wait(.5) - -bin = script.Parent - -vehicle = game.Players.LocalPlayer.Character.TeapotTurret.TVehicle - - - -function assignPosition(pos) - - - - local player = game.Players.LocalPlayer - - if player == nil or player.Character == nil then return end - - local char = vehicle.Front - - obj = char.Propulsion - - difference = pos - char.Position - - obj.TargetOffset = pos + Vector3.new(0,4,0) - -end - - - -function onButton1Down(mouse) - - - - local player = game.Players.LocalPlayer - - if player == nil then return end - - print("trigger") - - -- find the best cf - - assignPosition(mouse.Hit.p) - -end - - - -function onSelected(mouse) - - print("select") - - mouse.Icon = "rbxasset://textures\\ArrowCursor.png" - - mouse.Button1Down:connect(function() onButton1Down(mouse) end) - -end - - - -bin.Selected:connect(onSelected) - true - - - - - Power - 30 - true - - - - - - 0 - The One Tool - - true - - - - false - - Script - --clockwork - - - -local bin = script.Parent - -mode = 0 - - - -weapons = {} - -children = bin:children() - -for i=1,#children do - - if(children[i].className == "HopperBin") then - - table.insert(weapons,children[i]) - - end - -end - - - - - -table.sort(weapons, - -function (obj1, obj2) - - if(obj1.Name < obj2.Name) then return true end - - return false - -end - -) - - - -curTool = weapons[1].Name - - - -function onButton1Down(mouse) - - mode = mode + 1 - - giveTool() - -end - - - -function giveTool() - - local player = game.Players.LocalPlayer - - if player == nil then return end - - print("trigger") - - if(player.Backpack:findFirstChild(curTool) ~= nil) then player.Backpack[curTool]:remove() end - - if(mode > #weapons) then mode = 1 end - - if(mode < 1) then mode = #weapons end - - weapons[mode]:clone().Parent = player.Backpack - - curTool = weapons[mode].Name - -end - - - -function keyDown(key) - - print(key) - - if(key == "q") then - - mode = mode - 1 - - giveTool() - - end - -end - - - -function onSelected(mouse) - - print("select") - - mouse.Icon = "rbxasset://textures\\GunCursor.png" - - mouse.Button1Down:connect(function() onButton1Down(mouse) end) - - mouse.KeyDown:connect(keyDown) - -end - - - -bin.Selected:connect(onSelected) - true - - - - - 0 - Avada Kedavra - - true - - - - false - - Script - --clockwork - - - -local bin = script.Parent - -local msg = Instance.new("Hint") - -msg.Text = "Avada Kedavra!" - -enabled = true - - - -function stick(x, y) - - weld = Instance.new("Weld") - - - - weld.Part0 = x - - weld.Part1 = y - - - - local HitPos = x.Position - - - - local CJ = CFrame.new(HitPos) - - local C0 = x.CFrame:inverse() *CJ - - local C1 = y.CFrame:inverse() * CJ - - - - weld.C0 = C0 - - weld.C1 = C1 - - - - weld.Parent = x - -end - - - -function onButton1Down(mouse) - - local player = game.Players.LocalPlayer - - if player == nil then return end - - print("trigger") - - -- find the best cf - - - - target = mouse.Target - - if target == nil then return end - - humanoid = target.Parent:findFirstChild("Humanoid") - - if humanoid == nil then return end - - msg.Parent = game.Workspace - - top = game.Lighting.TopAmbientV9 - - spot = game.Lighting.SpotLightV9 - - game.Lighting.TopAmbientV9 = Color3.new(0,125,0) - - game.Lighting.SpotLightV9 = Color3.new(0,125,0) - - humanoid.Health = 0 - - children = target.Parent:children() - - for i=1,#children do - - if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], target.Parent.Torso) end - - if(children[i].className == "Hat") then stick(children[i].Handle, target.Parent.Torso) end - - end - - target.Parent.Head.Velocity = target.Parent.Head.Velocity + Vector3.new(5,0,0) - - wait(.1) - - game.Lighting.TopAmbientV9 = top - - game.Lighting.SpotLightV9 = spot - - wait(2) - - msg.Parent = nil - -end - - - -function onSelected(mouse) - - print("select") - - mouse.Icon = "rbxasset://textures\\GunCursor.png" - - mouse.Button1Down:connect(function() onButton1Down(mouse) end) - -end - - - -bin.Selected:connect(onSelected) - - - true - - - - - - 0 - Hat Jacker - - true - - - - false - - ActionTool - -- clockwork - -bin=script.Parent - -sfx = bin.Sound - - - -function onButton1Down(mouse) - - mouse.Icon = "rbxasset://textures\\GunWaitCursor.png" - - local hit = mouse.Target - - if (hit == nil) then return end - - humanoid = hit.Parent:findFirstChild("Humanoid") - - if(humanoid == nil) then return end - - sfx:play() - - children = hit.Parent:children() - - for i=1,#children do - - if(children[i].className == "Hat") then children[i].Parent = bin.Parent.Parent.Character return end - - end - - mouse.Icon = "rbxasset://textures\\GunCursor.png" - -end - - - - - -function onSelected(mouse) - - print("Action Tool Selected") - - mouse.Icon = "rbxasset://textures\\GunCursor.png" - - mouse.Button1Down:connect(function() onButton1Down(mouse) end) - -end - - - -bin.Selected:connect(onSelected) - true - - - - - false - Sound - -1 - false - rbxasset://../../../shareddata/charcustom/hats/sounds/hurray.wav - 0.300000012 - true - - - - - - 0 - Katon Goukakyou No Jutsu - - true - - - - false - - Script - --clockwork - - - -local bin = script.Parent - -local sfx = bin.Sound - -enabled = true - - - -function explode(pos) - - local lol = Instance.new("Explosion") - - lol.BlastRadius = 10 - - lol.BlastPressure = 1000000 - - lol.Position = pos - - lol.Parent = game.Workspace - -end - - - -function onButton1Down(mouse) - - local player = game.Players.LocalPlayer - - if player == nil then return end - - print("trigger") - - -- find the best cf - - - - startPos = player.Character.Head.Position - - delta = mouse.Hit.p - startPos - - unit = delta.unit - - sfx:play() - - for i=0,75 do - - explode(startPos + unit * 20 + i * unit * i / 25) - - wait(.05) - - end - -end - - - -function onSelected(mouse) - - print("select") - - mouse.Icon = "rbxasset://textures\\GunCursor.png" - - mouse.Button1Down:connect(function() onButton1Down(mouse) end) - -end - - - -bin.Selected:connect(onSelected) - - - true - - - - - false - Sound - -1 - false - rbxasset://../../../shareddata/charcustom/hats/sounds/Katon.mp3 - 0.200000003 - true - - - - - - 0 - Ray Gun Of Collapse - - true - - - - false - Sound - -1 - false - rbxasset://../../../shareddata/charcustom/hats/sounds/hurray.wav - 0.300000012 - true - - - - - false - - Script - --clockwork - - - -local bin = script.Parent - -local sfx = bin.Sound - - - -function onButton1Down(mouse) - - local player = game.Players.LocalPlayer - - if player == nil then return end - - print("trigger") - - -- find the best cf - - - - target = mouse.Target - - if target == nil then return end - - model = target.Parent - - if(model:findFirstChild("Humanoid") ~= nil) then return end - - sfx:play() - - model:breakJoints() - -end - - - -function onSelected(mouse) - - print("select") - - mouse.Icon = "rbxasset://textures\\GunCursor.png" - - mouse.Button1Down:connect(function() onButton1Down(mouse) end) - -end - - - -bin.Selected:connect(onSelected) - - - true - - - - - - 0 - SpinFire - - true - - - - false - - Script - --clockwork - - - -local bin = script.Parent - -sfx = bin.Sound - - - -function explode(pos) - - local lol = Instance.new("Explosion") - - lol.BlastRadius = 2 - - lol.BlastPressure = 1000000 - - lol.Position = pos - - lol.Parent = game.Workspace - -end - - - -function onButton1Down(mouse) - - local player = game.Players.LocalPlayer - - if player == nil then return end - - print("trigger") - - -- find the best cf - - - - sfx:play() - - look = CFrame.new(player.Character.Head.Position,mouse.Hit.p) - - for i=0,75 do - - x = math.sin(i / 3) * 8 * (75 - i) / 75 - - y = math.cos(i / 3) * 8 * (75 - i) / 75 - - helix = look * CFrame.new(x,y,-i) - - - - explode(helix.p) - - - - x = -math.sin(i / 3) * 8 * (75 - i) / 75 - - y = -math.cos(i / 3) * 8 * (75 - i) / 75 - - helix = look * CFrame.new(x,y,-i) - - - - explode(helix.p) - - wait(.02) - - end - - sfx:pause() - -end - - - -function onSelected(mouse) - - print("select") - - mouse.Icon = "rbxasset://textures\\GunCursor.png" - - mouse.Button1Down:connect(function() onButton1Down(mouse) end) - -end - - - -bin.Selected:connect(onSelected) - - - true - - - - - false - Sound - -1 - false - rbxasset://sounds\Rocket whoosh 01.wav - 0.600000024 - true - - - - - - 0 - House Spawner - - true - - - - false - - Script - -- clockwork - -bin=script.Parent - - - -limbs = {"Left Leg", "Right Leg", "Left Arm", "Right Arm"} - - - -function stick(x, y) - - weld = Instance.new("Weld") - - - - weld.Part0 = x - - weld.Part1 = y - - - - local HitPos = x.Position - - - - local CJ = CFrame.new(HitPos) - - local C0 = x.CFrame:inverse() *CJ - - local C1 = y.CFrame:inverse() * CJ - - - - weld.C0 = C0 - - weld.C1 = C1 - - - - weld.Parent = x - -end - - - -function spawnHouse(offset) - -template = Instance.new("Part") - -template.Anchored = true - - - -house = Instance.new("Model") - -house.Name = "House" - -house.Parent = game.Workspace - -part = template:clone() - -part.Position = offset + Vector3.new(-23,4.8,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,4.8,22) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-11,19.2,24.5) - -part.Size = Vector3.new(2,2.4,1) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,19.2,20) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-5,16.8,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,16.8,22) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,16.8,16) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,14.4,20) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,9.6,20) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,12,20.5) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,7.2,20.5) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-18,14.4,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-24.5,14.4,24) - -part.Size = Vector3.new(7,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-4.5,14.4,24) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-18.5,12,24) - -part.Size = Vector3.new(7,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-25,12,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-24.5,9.6,24) - -part.Size = Vector3.new(7,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-18,9.6,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-25,7.2,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-18.5,7.2,24) - -part.Size = Vector3.new(7,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-11,16.8,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-17,16.8,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-23,16.8,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-1,19.2,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-7,19.2,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-14,19.2,24) - -part.Size = Vector3.new(4,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-19,19.2,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-25,19.2,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-11,4.8,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-17,4.8,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,4.8,16) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,4.8,10) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,4.8,4) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(11,19.2,24.5) - -part.Size = Vector3.new(2,2.4,1) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,19.2,14) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,19.2,8) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(7,16.8,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(1,16.8,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,16.8,4) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,16.8,10) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,12,15) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,14.4,14.5) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,9.6,14.5) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,7.2,15) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-5,12,24) - -part.Size = Vector3.new(4,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(0.5,14.4,24) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-0.5,12,24) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(5,14.4,24) - -part.Size = Vector3.new(4,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-4.5,9.6,24) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(6,19.2,24) - -part.Size = Vector3.new(8,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-5,4.8,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(4.5,12,24) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(8,15,24) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(0.5,9.6,24) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-5,7.2,24) - -part.Size = Vector3.new(4,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(13,19.2,24) - -part.Size = Vector3.new(2,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,19.2,2) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(13,16.8,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,14.4,2) - -part.Size = Vector3.new(4,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,12,1.5) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,9.6,2) - -part.Size = Vector3.new(4,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,7.2,1.5) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(7.5,13.2,24) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(8.5,13.2,24) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(11,15,24) - -part.Size = Vector3.new(4,1.2,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(5,9.6,24) - -part.Size = Vector3.new(4,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-0.5,7.2,24) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(17,19.2,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,4.8,-2) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(1,4.8,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(5.5,4.8,24) - -part.Size = Vector3.new(3,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-11,19.2,-3) - -part.Size = Vector3.new(2,2.4,54) - -part.BrickColor = BrickColor.new(192) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,19.2,-4) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(19,16.8,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,16.8,-2) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,14.4,-2.5) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,12,-3.5) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,9.6,-2.5) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,7.2,-3.5) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(0,2.4,-3) - -part.Size = Vector3.new(56,2.4,56) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(7.5,7.8,24) - -part.Size = Vector3.new(1,8.4,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(13.5,13.2,24) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(14.5,13.2,24) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(14,15,24) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(0,4.2,-3) - -part.Size = Vector3.new(52,1.2,52) - -part.BrickColor = BrickColor.new(102) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(17.5,14.4,24) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(4.5,7.2,24) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(11,19.2,-3) - -part.Size = Vector3.new(2,2.4,54) - -part.BrickColor = BrickColor.new(192) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(23,19.2,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,19.2,4) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,19.2,-2) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(15.5,4.8,24) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(19,4.8,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,4.8,-8) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,4.8,-20) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,4.8,-14) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,16.8,-16) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,16.8,-10) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,16.8,-4) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,16.8,2) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,16.8,8) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,16.8,14) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,14.4,-8) - -part.Size = Vector3.new(4,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,14.4,15) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,12,-7.5) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,14.4,21.5) - -part.Size = Vector3.new(7,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,14.4,1.5) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,14.4,-3.5) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,12,-2.5) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,12,15.5) - -part.Size = Vector3.new(7,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,12,2) - -part.Size = Vector3.new(4,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,12,22) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(11,2.4,27) - -part.Size = Vector3.new(6,2.4,4) - -part.BrickColor = BrickColor.new(199) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,19.2,-10) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,19.2,-16) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,19.2,-22) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,16.8,-20) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,16.8,-14) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,16.8,-8) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,16.8,20) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(25,16.8,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,14.4,-21) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,14.4,-7.5) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,12,-21.5) - -part.Size = Vector3.new(7,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,12,-8) - -part.Size = Vector3.new(4,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,9.6,-7.5) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,9.6,-21) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,7.2,-21.5) - -part.Size = Vector3.new(7,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,7.2,-8) - -part.Size = Vector3.new(4,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(11,4.2,25) - -part.Size = Vector3.new(6,1.2,4) - -part.BrickColor = BrickColor.new(199) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(14.5,7.8,24) - -part.Size = Vector3.new(1,8.4,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(18,12,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(17.5,9.6,24) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(23,14.4,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(23,9.6,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(23.5,12,24) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(18,7.2,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(11,1.2,30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(199) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(11,0.6,32) - -part.Size = Vector3.new(6,1.2,2) - -part.BrickColor = BrickColor.new(199) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,19.2,22) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,19.2,16) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,19.2,10) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,19.2,-8) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,19.2,-14) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,4.8,-26) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,16.8,-26) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,9.6,-27.5) - -part.Size = Vector3.new(7,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,9.6,-20.5) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,14.4,-27.5) - -part.Size = Vector3.new(7,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,12,-28) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,7.2,-28) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(23.5,7.2,24) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,14.4,-20.5) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,19.2,-20) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-25,4.8,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,9.6,21.5) - -part.Size = Vector3.new(7,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,9.6,1.5) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,9.6,15) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,9.6,-3.5) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,12,-21) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,9.6,-8) - -part.Size = Vector3.new(4,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,19.2,-28) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-19,4.8,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-13,4.8,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-7,4.8,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,16.8,-22) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-18,12,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-17.5,14.4,-30) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-17.5,9.6,-30) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-23,14.4,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-23,9.6,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-23.5,12,-30) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-23.5,7.2,-30) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-18,7.2,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-13,16.8,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-19,16.8,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-25,16.8,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-17,19.2,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-23,19.2,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,7.2,-2.5) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(25,4.8,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-1,4.8,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(5,4.8,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(17,4.8,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(11,4.8,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,7.2,22) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,7.2,15.5) - -part.Size = Vector3.new(7,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,12,-26.5) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,14.4,-26) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-11,19.2,-30.5) - -part.Size = Vector3.new(2,2.4,1) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,9.6,-26) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,7.2,2) - -part.Size = Vector3.new(4,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,7.2,-7.5) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,7.2,-26.5) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,7.2,-21) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(4.5,14.4,-30) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(5,12,-30) - -part.Size = Vector3.new(4,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-0.5,14.4,-30) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(0.5,12,-30) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-5,14.4,-30) - -part.Size = Vector3.new(4,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-4.5,12,-30) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(4.5,9.6,-30) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-0.5,9.6,-30) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-5,9.6,-30) - -part.Size = Vector3.new(4,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(0.5,7.2,-30) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(18.5,7.2,-30) - -part.Size = Vector3.new(7,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(5,7.2,-30) - -part.Size = Vector3.new(4,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-4.5,7.2,-30) - -part.Size = Vector3.new(5,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(5,16.8,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-1,16.8,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-7,16.8,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(11,16.8,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-13,19.2,-30) - -part.Size = Vector3.new(2,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-6,19.2,-30) - -part.Size = Vector3.new(8,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(1,19.2,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(7,19.2,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,19.2,-26) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,4.8,-22) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,4.8,-16) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,4.8,-10) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,4.8,-4) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,4.8,2) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,4.8,14) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,4.8,20) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,4.8,8) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,4.8,-28) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(23,4.8,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,16.8,-28) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(18,14.4,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(24.5,14.4,-30) - -part.Size = Vector3.new(7,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(18.5,12,-30) - -part.Size = Vector3.new(7,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(25,12,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(24.5,9.6,-30) - -part.Size = Vector3.new(7,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(18,9.6,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(25,7.2,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(23,16.8,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(17,16.8,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(17,19.2,-30) - -part.Size = Vector3.new(10,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(11,19.2,-30.5) - -part.Size = Vector3.new(2,2.4,1) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(25,19.2,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(7,28.8,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(5,26.4,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(11,28.2,24) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(3,31.2,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(13,29.4,24) - -part.Size = Vector3.new(6,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(3,35.4,21) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(7,30.6,24) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(7,33,21) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(9,31.8,24) - -part.Size = Vector3.new(6,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(5,34.2,15) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(5,34.2,24) - -part.Size = Vector3.new(6,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(11,30.6,21) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(3,33,24) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(1,28.8,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-11,28.2,24) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-13,29.4,24) - -part.Size = Vector3.new(6,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-15,24,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-15,25.8,24) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(0,33.6,24) - -part.Size = Vector3.new(4,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(9,24,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-5,34.2,3) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(7,33,9) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-9,31.8,24) - -part.Size = Vector3.new(6,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-11,30.6,9) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-7,33,21) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-11,30.6,21) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-9,31.8,15) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-7,30.6,24) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-7,33,9) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-9,31.8,3) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-3,35.4,21) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(5,21.6,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(15,24,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(11,26.4,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-6,28.8,24) - -part.Size = Vector3.new(8,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(23,23.4,21) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-13,21.6,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-7,21.6,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-1,21.6,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-12,26.4,24) - -part.Size = Vector3.new(4,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-1,26.4,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-3,24,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(3,24,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-9,24,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-7,26.4,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(11,21.6,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(18,21.6,24) - -part.Size = Vector3.new(8,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(3,35.4,9) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(25,22.2,24) - -part.Size = Vector3.new(6,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(0,37.8,21) - -part.Size = Vector3.new(12,1.2,4) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(23,21,24) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-3,35.4,9) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(9,31.8,15) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(19,25.8,21) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(15,28.2,21) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-5,34.2,15) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(0,37.8,9) - -part.Size = Vector3.new(12,1.2,4) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(15,25.8,24) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(11,30.6,9) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(0,37.8,-3) - -part.Size = Vector3.new(12,1.2,4) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-5,34.2,24) - -part.Size = Vector3.new(6,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-3,33,24) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(17,27,15) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(0,36.6,15) - -part.Size = Vector3.new(12,1.2,8) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(0,36.6,3) - -part.Size = Vector3.new(12,1.2,8) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(21,24.6,24) - -part.Size = Vector3.new(6,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(0,36.6,24) - -part.Size = Vector3.new(6,1.2,8) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(13,29.4,15) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(19,23.4,24) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(5,34.2,3) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,21,21) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(17,27,24) - -part.Size = Vector3.new(6,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-3,31.2,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(21,24.6,15) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(15,28.2,9) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-13,29.4,15) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-7,33,-3) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-5,34.2,-9) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-3,35.4,-3) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(23,23.4,9) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(25,22.2,15) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(0,36.6,-9) - -part.Size = Vector3.new(12,1.2,8) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(19,25.8,9) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(17,27,3) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(7,33,-3) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(3,35.4,-3) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(11,30.6,-3) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(9,31.8,3) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,21,9) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(13,29.4,3) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-15,28.2,-3) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-21,24.6,24) - -part.Size = Vector3.new(6,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-13,29.4,-9) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-17,27,24) - -part.Size = Vector3.new(6,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-13,29.4,3) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-15,28.2,21) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-19,25.8,21) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-17,27,15) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-19,23.4,24) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-15,28.2,9) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-17,27,3) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(5,34.2,-9) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-9,31.8,-9) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-11,30.6,-3) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-7,33,-15) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-11,30.6,-15) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-5,34.2,-21) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(23,23.4,-3) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-3,35.4,-15) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-19,21.6,24) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(7,33,-15) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(0,37.8,-15) - -part.Size = Vector3.new(12,1.2,4) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(21,24.6,-9) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(21,24.6,3) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(11,30.6,-15) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(3,35.4,-15) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,21,-3) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(9,31.8,-9) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(25,22.2,3) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(15,28.2,-3) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(0,36.6,-21) - -part.Size = Vector3.new(12,1.2,8) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(13,29.4,-9) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(19,25.8,-3) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(17,27,-9) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-21,24.6,3) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-17,27,-9) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-15,28.2,-15) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-19,25.8,-3) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-19,25.8,9) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-25,22.2,24) - -part.Size = Vector3.new(6,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-21,24.6,15) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-23,23.4,21) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,21,21) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-25,22.2,15) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-23,21,24) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-23,23.4,9) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-13,29.4,-21) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-9,31.8,-21) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-7,33,-27) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-3,35.4,-27) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(23,23.4,-15) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(25,22.2,-9) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(19,25.8,-15) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(5,34.2,-21) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(9,31.8,-21) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(15,28.2,-15) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(0,37.8,-27) - -part.Size = Vector3.new(12,1.2,4) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(0,36.6,-30) - -part.Size = Vector3.new(6,1.2,8) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(13,29.4,-21) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(3,35.4,-27) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-21,24.6,-21) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-23,23.4,-3) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-25,22.2,-9) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,21,-3) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-23,23.4,-15) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-21,24.6,-9) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,21,9) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-25,22.2,3) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-19,25.8,-15) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-17,27,-21) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-15,28.2,-27) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-19,25.8,-27) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-11,28.2,-30) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-17,27,-30) - -part.Size = Vector3.new(6,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-13,29.4,-30) - -part.Size = Vector3.new(6,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-11,30.6,-27) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-3,33,-30) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-9,31.8,-30) - -part.Size = Vector3.new(6,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-5,34.2,-30) - -part.Size = Vector3.new(6,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-7,30.6,-30) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-6,28.8,-30) - -part.Size = Vector3.new(8,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(7,33,-27) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(7,30.6,-30) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-3,31.2,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(0,33.6,-30) - -part.Size = Vector3.new(4,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(3,31.2,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(11,30.6,-27) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(17,27,-21) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(21,24.6,-21) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,21,-15) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(9,31.8,-30) - -part.Size = Vector3.new(6,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(15,28.2,-27) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(5,34.2,-30) - -part.Size = Vector3.new(6,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(3,33,-30) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-19,23.4,-30) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-23,23.4,-27) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-25,22.2,-21) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-25,22.2,-30) - -part.Size = Vector3.new(6,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,21,-15) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-21,24.6,-30) - -part.Size = Vector3.new(6,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,21,-27) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-15,25.8,-30) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-12,26.4,-30) - -part.Size = Vector3.new(4,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(7,28.8,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(1,28.8,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-9,24,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(5,26.4,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-1,26.4,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(13,29.4,-30) - -part.Size = Vector3.new(6,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-15,24,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(11,28.2,-30) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(25,22.2,-21) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-7,26.4,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(11,26.4,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(19,25.8,-27) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-23,21,-30) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-19,21.6,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(17,27,-30) - -part.Size = Vector3.new(6,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-3,24,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(5,21.6,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(3,24,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(9,24,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(15,24,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,21,-27) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-7,21.6,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(21,24.6,-30) - -part.Size = Vector3.new(6,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(15,25.8,-30) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(19,23.4,-30) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-13,21.6,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-1,21.6,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(23,23.4,-27) - -part.Size = Vector3.new(12,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(11,21.6,-30) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(18,21.6,-30) - -part.Size = Vector3.new(8,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(23,21,-30) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(25,22.2,-30) - -part.Size = Vector3.new(6,1.2,6) - -part.BrickColor = BrickColor.new(21) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-14,15,24) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-14.5,13.2,24) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-13.5,13.2,24) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-11,15,24) - -part.Size = Vector3.new(4,1.2,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-14.5,9.6,24) - -part.Size = Vector3.new(1,4.8,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-8.5,13.2,24) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-7.5,13.2,24) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-8,15,24) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-7.5,9.6,24) - -part.Size = Vector3.new(1,4.8,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-11,6.6,24.5) - -part.Size = Vector3.new(8,1.2,3) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,15,5) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,13.2,4.5) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,13.2,5.5) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,15,8) - -part.Size = Vector3.new(4,1.2,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,9.6,4.5) - -part.Size = Vector3.new(1,4.8,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,13.2,10.5) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,13.2,11.5) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,15,11) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,9.6,11.5) - -part.Size = Vector3.new(1,4.8,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27.5,6.6,8) - -part.Size = Vector3.new(8,1.2,3) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,15,-11) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,13.2,-10.5) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,13.2,-11.5) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,15,-14) - -part.Size = Vector3.new(4,1.2,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,9.6,-10.5) - -part.Size = Vector3.new(1,4.8,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,13.2,-16.5) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,13.2,-17.5) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,15,-17) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,9.6,-17.5) - -part.Size = Vector3.new(1,4.8,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27.5,6.6,-14) - -part.Size = Vector3.new(8,1.2,3) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,15,-17) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,13.2,-17.5) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,13.2,-16.5) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,15,-14) - -part.Size = Vector3.new(4,1.2,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,9.6,-17.5) - -part.Size = Vector3.new(1,4.8,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,13.2,-11.5) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,13.2,-10.5) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,15,-11) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27,9.6,-10.5) - -part.Size = Vector3.new(1,4.8,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-27.5,6.6,-14) - -part.Size = Vector3.new(8,1.2,3) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,15,11) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,13.2,11.5) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,13.2,10.5) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,15,8) - -part.Size = Vector3.new(4,1.2,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,9.6,11.5) - -part.Size = Vector3.new(1,4.8,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,13.2,5.5) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,13.2,4.5) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,15,5) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27,9.6,4.5) - -part.Size = Vector3.new(1,4.8,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(27.5,6.6,8) - -part.Size = Vector3.new(8,1.2,3) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(14,15,-30) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(14.5,13.2,-30) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(13.5,13.2,-30) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(11,15,-30) - -part.Size = Vector3.new(4,1.2,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(14.5,9.6,-30) - -part.Size = Vector3.new(1,4.8,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(8.5,13.2,-30) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(7.5,13.2,-30) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(8,15,-30) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(7.5,9.6,-30) - -part.Size = Vector3.new(1,4.8,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(11,6.6,-30.5) - -part.Size = Vector3.new(8,1.2,3) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-8,15,-30) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-7.5,13.2,-30) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-8.5,13.2,-30) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-11,15,-30) - -part.Size = Vector3.new(4,1.2,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-7.5,9.6,-30) - -part.Size = Vector3.new(1,4.8,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-13.5,13.2,-30) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-14.5,13.2,-30) - -part.Size = Vector3.new(1,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-14,15,-30) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-14.5,9.6,-30) - -part.Size = Vector3.new(1,4.8,2) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-11,6.6,-30.5) - -part.Size = Vector3.new(8,1.2,3) - -part.BrickColor = BrickColor.new(38) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-19,45,16) - -part.Size = Vector3.new(6,1.2,2) - -part.BrickColor = BrickColor.new(153) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-19,43.2,14) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-17,45,12) - -part.Size = Vector3.new(6,1.2,2) - -part.BrickColor = BrickColor.new(153) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-17,43.2,18) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-15,45,18) - -part.Size = Vector3.new(6,1.2,2) - -part.BrickColor = BrickColor.new(153) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-17,40.8,12) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-15,40.8,18) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-19,40.8,16) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-19,38.4,14) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-17,38.4,18) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-15,43.2,12) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-15,38.4,12) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-17,36,12) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-19,36,16) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-15,36,18) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-15,33.6,12) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-19,33.6,14) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-17,33.6,18) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-17,31.2,12) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-19,31.2,15) - -part.Size = Vector3.new(4,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-13,33.6,16) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-13,43.2,16) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-13,38.4,16) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-13,40.8,14) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-13,36,14) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-13,31.8,15) - -part.Size = Vector3.new(8,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-13,45,14) - -part.Size = Vector3.new(6,1.2,2) - -part.BrickColor = BrickColor.new(153) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-19,28.8,12) - -part.Size = Vector3.new(2,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-17,29.4,12) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-19,28.8,16) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-17,29.4,18) - -part.Size = Vector3.new(2,1.2,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - - - -part = template:clone() - -part.Position = offset + Vector3.new(-17,31.2,18) - -part.Size = Vector3.new(6,2.4,2) - -part.BrickColor = BrickColor.new(5) - -part.Parent = game.Workspace.House wait(.01) - -part.Name = "Base" - -children = game.Workspace.House:children() - -for i=1,#children do - - if(children[i].Name ~= "Base") then stick(game.Workspace.House.Base, children[i]) end - - children[i].Anchored = false - -end - -end - - - -function onButton1Down(mouse) - - mouse.Icon = "rbxasset://textures\\GunWaitCursor.png" - - print("trigger") - - spawnHouse(mouse.Hit.p) - - print("spawned") - - mouse.Icon = "rbxasset://textures\\GunCursor.png" - -end - - - - - -function onSelected(mouse) - - print("Action Tool Selected") - - mouse.Icon = "rbxasset://textures\\GunCursor.png" - - mouse.Button1Down:connect(function() onButton1Down(mouse) end) - -end - - - -bin.Selected:connect(onSelected) - true - - - - - - 0 - Teleport - - true - - - - false - - TeleportScript - --- SonOfSevenless - -bin = script.Parent - -sfx = bin.Sound - - - -function teleportPlayer(pos) - - - - local player = game.Players.LocalPlayer - - if player == nil or player.Character == nil then return end - - - - local char = player.Character.Torso - - - - char.CFrame = CFrame.new(Vector3.new(pos.x, pos.y + 7, pos.z)) - - - -end - - - - - -enabled = true - -function onButton1Down(mouse) - - if not enabled then - - return - - end - - - - local player = game.Players.LocalPlayer - - if player == nil then return end - - local cf = mouse.Hit - - teleportPlayer(cf.p) - - sfx:play() - - - -end - - - -function onSelected(mouse) - - mouse.Icon = "rbxasset://textures\\ArrowCursor.png" - - mouse.Button1Down:connect(function() onButton1Down(mouse) end) - -end - - - -bin.Selected:connect(onSelected) - - - - - true - - - - - false - Sound - -1 - false - rbxasset://../../../shareddata/charcustom/hats/sounds/hurray.wav - 0.300000012 - true - - - - - - 0 - Fire Shield - - true - - - - false - - Script - --clockwork - - - -local bin = script.Parent - - - -function getX(t) - - return 41 * math.cos(t) - 18 * math.sin(t) - 83 * math.cos(2 * t) - 11 * math.cos(3 * t) + 27 * math.sin(3 * t) - -end - - - -function getY(t) - - return 36 * math.cos(t) + 27 * math.sin(t) - 113 * math.cos(2 * t) + 30 * math.sin(2 * t) + 11 * math.cos(3 * t) - 27 * math.sin(3 * t) - -end - - - -function getZ(t) - - return 45 * math.sin(t) - 30 * math.cos(2 * t) + 113 * math.sin(2 * t) - 11 * math.cos(3 * t) + 27 * math.sin(3 * t) - -end - - - -template = Instance.new("Explosion") - -template.BlastRadius = 3 - - - - - -spew = false - -function onButton1Down(mouse) - - local player = game.Players.LocalPlayer - - if player == nil then return end - - print("trigger") - - -- find the best cf - - - - spew = not spew - - i = 0 - - while spew do - - i = i + .15 - - part = template:clone() - - part.Position = player.Character.Torso.Position + Vector3.new(getX(i) / 5, getY(i) / 5, getZ(i) / 5) - - part.Parent = game.Workspace - - part = template:clone() - - part.Position = player.Character.Torso.Position - Vector3.new(getX(i) / 5, getY(i) / 5, getZ(i) / 5) - - part.Parent = game.Workspace - - wait(.025) - - end - -end - - - -function onSelected(mouse) - - print("select") - - mouse.Icon = "rbxasset://textures\\GunCursor.png" - - mouse.Button1Down:connect(function() onButton1Down(mouse) end) - -end - - - -bin.Selected:connect(onSelected) - - - true - - - - - - 0 - Wall Gun - - true - - - - false - - Script - --clockwork - - - -local bin = script.Parent - -local sfx = bin.Sound - - - -local template = Instance.new("Seat") - -template.Size = Vector3.new(10,8,2) - -template.BrickColor = BrickColor.Random() - -local bodypos = Instance.new("BodyPosition") - -bodypos.maxForce = Vector3.new(4e+07, 4e+07, 4e+07) - -bodypos.P = 2.5e+003 - -bodypos.Parent = template - -local bodygyro = Instance.new("BodyGyro") - -bodygyro.Parent = template - -local script = Instance.new("Script") - -script.Source = "wait(20) script.Parent:remove()" - -script.Parent = template - - - -function onButton1Down(mouse) - - local player = game.Players.LocalPlayer - - if player == nil then return end - - print("trigger") - - -- find the best cf - - - - sfx:play() - - startPos = player.Character.Torso.Position - - dest = mouse.Hit.p - - delta = dest - startPos - - part = template:clone() - - part.CFrame = CFrame.new(startPos + delta.unit * 5, dest) - - part.BodyGyro.cframe = part.CFrame - - part.BodyPosition.position = dest - - part.Parent = game.Workspace - -end - - - -function onSelected(mouse) - - print("select") - - mouse.Icon = "rbxasset://textures\\GunCursor.png" - - mouse.Button1Down:connect(function() onButton1Down(mouse) end) - -end - - - -bin.Selected:connect(onSelected) - - - true - - - - - false - Sound - -1 - false - rbxasset://sounds\\short spring sound.wav - 1 - true - - - - - - 0 - Force Push - - true - - - - false - - Script - --clockwork - - - -local bin = script.Parent - -local sfx = bin.Sound - - - -local template = Instance.new("Seat") - -template.Size = Vector3.new(10,8,2) - -template.BrickColor = BrickColor.Random() - -local bodypos = Instance.new("BodyVelocity") - -bodypos.maxForce = Vector3.new(4e+07, 4e+07, 4e+07) - -bodypos.P = 2.5e+003 - -bodypos.Parent = template - -local bodygyro = Instance.new("BodyGyro") - -bodygyro.Parent = template - -local script = Instance.new("Script") - -script.Source = "wait(10) script.Parent.BodyVelocity:remove() wait(5) script.Parent:remove()" - -script.Parent = template - - - -function stick(x, y) - - weld = Instance.new("Weld") - - - - weld.Part0 = x - - weld.Part1 = y - - - - local HitPos = x.Position - - - - local CJ = CFrame.new(HitPos) - - local C0 = x.CFrame:inverse() *CJ - - local C1 = y.CFrame:inverse() * CJ - - - - weld.C0 = C0 - - weld.C1 = C1 - - - - weld.Parent = x - -end - - - -function onButton1Down(mouse) - - local player = game.Players.LocalPlayer - - if player == nil then return end - - print("trigger") - - -- find the best cf - - - - sfx:play() - - startPos = player.Character.Torso.Position - - dest = mouse.Hit.p - - delta = dest - startPos - - part = template:clone() - - part.CFrame = CFrame.new(startPos + delta.unit * 5, dest) - - part.BodyGyro.cframe = part.CFrame - - part.BodyVelocity.velocity = delta.unit * 40 - - part.Touched:connect(function(hit) if(hit.Parent:findFirstChild("Humanoid") ~= nil) then stick(hit.Parent.Torso, part) end end) - - part.Parent = game.Workspace - -end - - - -function onSelected(mouse) - - print("select") - - mouse.Icon = "rbxasset://textures\\GunCursor.png" - - mouse.Button1Down:connect(function() onButton1Down(mouse) end) - -end - - - -bin.Selected:connect(onSelected) - - - true - - - - - false - Sound - -1 - false - rbxasset://sounds\\short spring sound.wav - 1 - true - - - - - - 0 - Construct Additional Pylon - - true - - - - false - - Script - -- clockwork - -bin=script.Parent - - - -part = Instance.new("Part") - -part.Transparency = .3 - -part.BrickColor = BrickColor.new(102) - -part.Anchored = true - -ring = Instance.new("Part") - -ring.BrickColor = BrickColor.Yellow() - -ring.Anchored = true - -height = 14 - -maxWidth = 8 - - - -ringHeight = height / 6 - -ringBegin = height / 2 - ringHeight / 2 - -ringEnd = height / 2 + ringHeight / 2 - - - -function stick(x, y) - - weld = Instance.new("Weld") - - - - weld.Part0 = x - - weld.Part1 = y - - - - local HitPos = x.Position - - - - local CJ = CFrame.new(HitPos) - - local C0 = x.CFrame:inverse() *CJ - - local C1 = y.CFrame:inverse() * CJ - - - - weld.C0 = C0 - - weld.C1 = C1 - - - - weld.Parent = x - -end - - - -function getWidth(i) - - if(i < height / 2) then return math.sqrt(i) / math.sqrt(height) * maxWidth end - - return math.sqrt(height - i) / math.sqrt(height) * maxWidth - -end - - - -function spawnCircle(diameter, height, offset, model) - - for i=-diameter / 2,diameter / 2 do - - obj = part:clone() - - obj.Position = offset + Vector3.new(0,height,0) + Vector3.new(i,0,0) - - obj.Size = Vector3.new(1,1,math.sqrt(diameter * diameter - i * i)) - - obj.Parent = model - - wait(.02) - - end - -end - - - -function spawnBorder(diameter, height, offset, model) - - for i=-diameter / 2,diameter / 2 do - - obj = ring:clone() - - obj.CFrame = CFrame.new(offset + Vector3.new(0,height,0) + Vector3.new(i,0,math.sqrt(diameter * diameter / 4 - i * i)), Vector3.new(0,height,0)) - - obj.Size = Vector3.new(1,1,1) - - obj.Parent = model - - - - obj = ring:clone() - - obj.CFrame = CFrame.new(offset + Vector3.new(0,height,0) - Vector3.new(i,0,math.sqrt(diameter * diameter / 4 - i * i)), Vector3.new(0,height,0)) - - obj.Size = Vector3.new(1,1,1) - - obj.Parent = model - - wait(.02) - - end - -end - - - - - -function spawnHouse(offset) - - model = Instance.new("Model") - - model.Name = "Pylon" .. math.random(1,50000) - - model.Parent = game.Workspace - - base = Instance.new("Part") - - base.Name = "Base" - - base.Parent = model - - base.Anchored = true - - base.Transparency = 1 - - base.Position = offset - - for i=1,height do - - width = getWidth(i) - - spawnCircle(width,i, offset,model) - - end - - - - for i=ringBegin,ringEnd do - - spawnBorder(maxWidth + 2, i, offset,model) - - end - - - - children = model:children() - - for i=1,#children do - - if(children[i].Name ~= "Base" and children[i].className == "Part") then stick(base,children[i]) end - - children[i].Anchored = false - - end - -end - - - -function onButton1Down(mouse) - - mouse.Icon = "rbxasset://textures\\GunWaitCursor.png" - - print("trigger") - - spawnHouse(mouse.Hit.p) - - print("spawned") - - mouse.Icon = "rbxasset://textures\\GunCursor.png" - -end - - - - - -function onSelected(mouse) - - print("Action Tool Selected") - - mouse.Icon = "rbxasset://textures\\GunCursor.png" - - mouse.Button1Down:connect(function() onButton1Down(mouse) end) - -end - - - -bin.Selected:connect(onSelected) - true - - - - - - 0 - Force Bubble - - true - - - - false - - Script - --clockwork - - - -local bin = script.Parent - - - -local template = Instance.new("Part") - -template.Size = Vector3.new(12,12,12) - -template.Shape = 0 - -template.BrickColor = BrickColor.Blue() - -template.Transparency = .7 - -template.TopSurface = 0 - -template.BottomSurface = 0 - -template.CanCollide = false - - - -bubbleScript = bin.BubbleScript - - - -function onButton1Down(mouse) - - local player = game.Players.LocalPlayer - - if player == nil then return end - - print("trigger") - - -- find the best cf - - - - part = template:clone() - - part.Position = player.Character.Torso.Position + Vector3.new(0,5,0) - - newScript = bubbleScript:clone() - - newScript.Parent = part - - newScript.Disabled = false - - part.Parent = player.Character - -end - - - -function onSelected(mouse) - - print("select") - - mouse.Icon = "rbxasset://textures\\GunCursor.png" - - mouse.Button1Down:connect(function() onButton1Down(mouse) end) - -end - - - -bin.Selected:connect(onSelected) - - - true - - - - - true - - BubbleScript - wait(.1) - -bubble = script.Parent - -char = bubble.Parent - -debris = game:service("Debris") - - - -Propulsion = Instance.new("RocketPropulsion") - -Propulsion.Target = char.Torso - -Propulsion.MaxThrust = 1e+008 - -Propulsion.MaxSpeed = 100 - -Propulsion.ThrustD = 10 - -Propulsion.ThrustP = 80 - -Propulsion.TurnP = 0 - -Propulsion.Parent = bubble - -Propulsion:Fire() - - - -function stick(x, y) - - weld = Instance.new("Weld") - - - - weld.Part0 = x - - weld.Part1 = y - - - - local HitPos = x.Position - - - - local CJ = CFrame.new(HitPos) - - local C0 = x.CFrame:inverse() *CJ - - local C1 = y.CFrame:inverse() * CJ - - - - weld.C0 = C0 - - weld.C1 = C1 - - - - weld.Parent = x - -end - - - -function repel(hit) - - if hit.Parent == char then return end - - if hit.Parent.className == "Hat" then return end - - if hit:getMass() > 1000 then return end - - if hit.Anchored == true then return end - - hit:remove() - -end - - - -bubble.Touched:connect(repel) - - - true - - - - - - 0 - Satellite-Fire - - true - - - - false - - Script - --clockwork - -wait(1) - -local bin = script.Parent - -sat = game.Players.LocalPlayer.Character.TeapotTurret.Satellite - - - -if sat:findFirstChild("Sound") ~= nil then - - sound = sat.Sound - - sound.Parent = game.Workspace - -else - - sound = game.Workspace.Sound - -end - - - -function fire(sattarget) - - --point sat at the person, then rotate it so that the right face of the sat is pointing at it, not the side - - sat.BodyGyro.cframe = CFrame.new(sat.Position, sattarget) * CFrame.fromAxisAngle(Vector3.new(1,0,0),-3.14/2) - - sound:play() - - wait(2) - - --lerp the pretty balefire from satellite's position to the target - - dir = (sattarget - sat.Position).unit - - maxSize = 25 - - minSize = 5 - - for i=1,100,2 do - - lol = Instance.new("Explosion") - - lol.Position = i * dir * 2 + sat.Position - - lol.BlastRadius = i / 100 * (maxSize - minSize) + minSize - - lol.Parent = game.Workspace - - end - -end - - - -enabled = true - -function onButton1Down(mouse) - - if not enabled then return end - - local player = game.Players.LocalPlayer - - if player == nil then return end - - print("trigger") - - -- find the best cf - - - - enabled = false - - target = mouse.Hit.p - - print(target) - - print(mouse.Target) - - fire(target) - - enabled = true - -end - - - -function onSelected(mouse) - - print("select") - - mouse.Icon = "rbxasset://textures\\GunCursor.png" - - mouse.Button1Down:connect(function() onButton1Down(mouse) end) - -end - - - -bin.Selected:connect(onSelected) - - - true - - - - - - 0 - Satellite-Move - - true - - - - false - - Script - --clockwork - -wait(1) - -local bin = script.Parent - -sat = game.Players.LocalPlayer.Character.TeapotTurret.Satellite - - - -enabled = true - -function onButton1Down(mouse) - - if not enabled then return end - - local player = game.Players.LocalPlayer - - if player == nil then return end - - print("trigger") - - -- find the best cf - - - - enabled = false - - target = mouse.Hit.p - - home = player.Character.Torso.Position - - dir = (target - home).unit - - pos = home + dir * math.random(0,200) - - sat.Position = pos - - sat.BodyPosition.position = pos - - enabled = true - -end - - - -function onSelected(mouse) - - print("select") - - mouse.Icon = "rbxasset://textures\\GunCursor.png" - - mouse.Button1Down:connect(function() onButton1Down(mouse) end) - -end - - - -bin.Selected:connect(onSelected) - - - true - - - - - - RBX96 - \ No newline at end of file diff --git a/shareddata/charcustom/hats/TheDusekkar.png b/shareddata/charcustom/hats/TheDusekkar.png deleted file mode 100644 index 985abde..0000000 Binary files a/shareddata/charcustom/hats/TheDusekkar.png and /dev/null differ diff --git a/shareddata/charcustom/hats/TheDusekkar.rbxm b/shareddata/charcustom/hats/TheDusekkar.rbxm deleted file mode 100644 index d65f04f..0000000 --- a/shareddata/charcustom/hats/TheDusekkar.rbxm +++ /dev/null @@ -1,116 +0,0 @@ - - null - nil - - - - 0 - 0.100000001 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - TheDusekkar - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -106 - 11.7984476 - -4 - 1 - -1.28136491e-018 - 2.70646879e-019 - 1.28136491e-018 - 1 - -1.67646949e-018 - -2.70646879e-019 - 1.67646949e-018 - 1 - - true - 0 - true - false - 0.5 - 0 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 0 - - 2 - 2 - 2 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/TheDusekkar.mesh - 5 - Mesh - - 0.5 - 0.5 - 0.5 - - rbxasset://../../../shareddata/charcustom/hats/textures/TheDusekkar.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/TinyTopHat.png b/shareddata/charcustom/hats/TinyTopHat.png deleted file mode 100644 index 4dfac2f..0000000 Binary files a/shareddata/charcustom/hats/TinyTopHat.png and /dev/null differ diff --git a/shareddata/charcustom/hats/TinyTopHat.rbxm b/shareddata/charcustom/hats/TinyTopHat.rbxm deleted file mode 100644 index b31be8c..0000000 --- a/shareddata/charcustom/hats/TinyTopHat.rbxm +++ /dev/null @@ -1,142 +0,0 @@ - - null - nil - - - - 0 - -0.150000006 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - TinyTopHat - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - 0 - 4 - -371 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - true - - false - - 0.5 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - 2 - 1 - - 1 - 0.800000012 - 1 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/tophat.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 0.699999988 - 0.699999988 - 0.699999988 - - rbxasset://../../../shareddata/charcustom/hats/textures/TopHatPurple.png - - 1 - 1 - 1 - - - - - - - 8.65838956e-009 - -0.0500001907 - -0.000272244215 - 1 - 7.87137555e-009 - -3.26223034e-024 - -7.87137555e-009 - 1 - -4.1444221e-016 - 0 - 4.1444221e-016 - 1 - - HatAttachment - false - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/VikingHelm.png b/shareddata/charcustom/hats/VikingHelm.png deleted file mode 100644 index dd82e62..0000000 Binary files a/shareddata/charcustom/hats/VikingHelm.png and /dev/null differ diff --git a/shareddata/charcustom/hats/VikingHelm.rbxm b/shareddata/charcustom/hats/VikingHelm.rbxm deleted file mode 100644 index fc718c7..0000000 --- a/shareddata/charcustom/hats/VikingHelm.rbxm +++ /dev/null @@ -1,118 +0,0 @@ - - null - nil - - - - 0 - -0.349999994 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - VikingHelmet - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -18 - 1.20000005 - 22.5 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - true - true - 0 - true - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 2 - 0.800000012 - 1 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/VikingHelm.mesh - 5 - Mesh - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/viking.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/VoidStar.png b/shareddata/charcustom/hats/VoidStar.png deleted file mode 100644 index 6b7ba7c..0000000 Binary files a/shareddata/charcustom/hats/VoidStar.png and /dev/null differ diff --git a/shareddata/charcustom/hats/VoidStar.rbxm b/shareddata/charcustom/hats/VoidStar.rbxm deleted file mode 100644 index e8a4687..0000000 --- a/shareddata/charcustom/hats/VoidStar.rbxm +++ /dev/null @@ -1,118 +0,0 @@ - - null - nil - - - - 0 - 0.0500000007 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - VoidStar - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -35.5 - 1.39844096 - 25.5 - 1 - -1.28136491e-018 - 2.70646879e-019 - 1.28136491e-018 - 1 - -1.67646949e-018 - -2.70646879e-019 - 1.67646949e-018 - 1 - - true - true - 0 - true - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 1 - 0.400000006 - 1 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/VoidStar.mesh - 5 - Mesh - - 0.649999976 - 0.649999976 - 0.649999976 - - rbxasset://../../../shareddata/charcustom/hats/textures/VoidStar.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/WhiteTopHat.png b/shareddata/charcustom/hats/WhiteTopHat.png deleted file mode 100644 index 9e787ef..0000000 Binary files a/shareddata/charcustom/hats/WhiteTopHat.png and /dev/null differ diff --git a/shareddata/charcustom/hats/WhiteTopHat.rbxm b/shareddata/charcustom/hats/WhiteTopHat.rbxm deleted file mode 100644 index cf70b99..0000000 --- a/shareddata/charcustom/hats/WhiteTopHat.rbxm +++ /dev/null @@ -1,118 +0,0 @@ - - null - nil - - - - 0 - -0.25 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 4 - WhiteTopHat - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - -3.66433048 - 5.64905548 - -29.1547165 - -0.916252911 - -2.77620595e-021 - -0.400600582 - -3.90117441e-021 - 1 - 1.99264861e-021 - 0.400600582 - 3.38858254e-021 - -0.916252911 - - true - true - 0 - true - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - -2.42862883e-023 - 3.62439101e-022 - -1.39473558e-023 - - -0.5 - 0.5 - 0 - 0 - 0 - - 3.65113742e-020 - 0.0075033661 - 3.64253668e-020 - - true - 1 - - 2 - 0.800000012 - 2 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/tophat.mesh - 5 - Mesh - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/WhiteTopHat.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/YellowBaseballCap.png b/shareddata/charcustom/hats/YellowBaseballCap.png deleted file mode 100644 index 1477480..0000000 Binary files a/shareddata/charcustom/hats/YellowBaseballCap.png and /dev/null differ diff --git a/shareddata/charcustom/hats/YellowBaseballCap.rbxm b/shareddata/charcustom/hats/YellowBaseballCap.rbxm deleted file mode 100644 index 4844628..0000000 --- a/shareddata/charcustom/hats/YellowBaseballCap.rbxm +++ /dev/null @@ -1,140 +0,0 @@ - - null - nil - - - - 0 - -0.200000003 - 0.150000006 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - YellowBaseballCap - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - 3.5 - 1.79435873 - 34.5 - 1 - -1.16600587e-017 - 6.05396395e-022 - 1.16600587e-017 - 1 - -1.16603532e-017 - -6.05396395e-022 - 1.16603532e-017 - 1 - - true - - false - - 0.5 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - 2 - 1 - - 1 - 0.400000006 - 1 - - - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/hats/fonts/BaseballCap.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/YellowBaseballCap.png - - 1 - 1 - 1 - - - - - - - 8.65748007e-009 - -0.0999999046 - 0.149727762 - 1 - 7.87137555e-009 - -3.26223034e-024 - -7.87137555e-009 - 1 - -4.1444221e-016 - 0 - 4.1444221e-016 - 1 - - HatAttachment - false - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/fedora.png b/shareddata/charcustom/hats/fedora.png deleted file mode 100644 index 12f0d6e..0000000 Binary files a/shareddata/charcustom/hats/fedora.png and /dev/null differ diff --git a/shareddata/charcustom/hats/fedora.rbxm b/shareddata/charcustom/hats/fedora.rbxm deleted file mode 100644 index 6dbbb43..0000000 --- a/shareddata/charcustom/hats/fedora.rbxm +++ /dev/null @@ -1,118 +0,0 @@ - - null - nil - - - - 0 - -0.100000001 - 0.0500000007 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - Fedora - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - 16.5 - 1.3943578 - 16.5 - 1 - -1.16600587e-017 - 6.05396395e-022 - 1.16600587e-017 - 1 - -1.16603532e-017 - -6.05396395e-022 - 1.16603532e-017 - 1 - - true - true - 0 - true - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 1 - 0.400000006 - 1 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/fedora.mesh - 5 - Mesh - - 1.10000002 - 1.10000002 - 1.10000002 - - rbxasset://../../../shareddata/charcustom/hats/textures/fedora.png - - 0.180000007 - 0.180000007 - 0.180000007 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/ArrowHat.mesh b/shareddata/charcustom/hats/fonts/ArrowHat.mesh deleted file mode 100644 index 1eb523b..0000000 --- a/shareddata/charcustom/hats/fonts/ArrowHat.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -56 -[-5.79567,-0.179818,0.0722833][0,-0.00680995,1.99999][0.727617,0.142919,0][-6.49987,-1.48357,0.0678441][0,-0.00340497,0.999994][0.781981,0.243569,0][-5.02916,-1.48357,0.0678441][0,-0.00680995,1.99999][0.668442,0.243569,0][-5.02916,-1.48357,0.0678441][0,-0.00680995,1.99999][0.668442,0.243569,0][-4.39009,-0.179818,0.0722833][0,-0.00340498,0.999994][0.619106,0.142919,0][-5.79567,-0.179818,0.0722833][0,-0.00680995,1.99999][0.727617,0.142919,0][-5.79567,-0.179818,-0.0777167][0,0.000295131,-2][0.727617,0.365502,0][-4.39009,-0.179818,-0.0777167][0,0.000147566,-1][0.619106,0.365502,0][-5.02916,-1.48357,-0.077909][0,0.000295131,-2][0.668442,0.264852,0][-5.02916,-1.48357,-0.077909][0,0.000295131,-2][0.668442,0.264852,0][-6.49987,-1.48357,-0.077909][0,0.000147566,-1][0.781981,0.264852,0][-5.79567,-0.179818,-0.0777167][0,0.000295131,-2][0.727617,0.365502,0][-4.39009,-0.179818,0.0722833][0,-0.00340498,0.999994][0.610584,0.311136,0][-5.02916,-1.48357,0.0678441][0,-0.00680995,1.99999][0.509934,0.310794,0][-5.02916,-1.48357,-0.077909][0,0.000295131,-2][0.509934,0.299542,0][-5.02916,-1.48357,-0.077909][0,0.000295131,-2][0.509934,0.299542,0][-4.39009,-0.179818,-0.0777167][0,0.000147566,-1][0.610584,0.299556,0][-4.39009,-0.179818,0.0722833][0,-0.00340498,0.999994][0.610584,0.311136,0][-5.02916,-1.48357,0.0678441][0,-0.00680995,1.99999][0.371889,0.35643,0][-6.49987,-1.48357,0.0678441][0,-0.00340497,0.999994][0.258351,0.35643,0][-6.49987,-1.48357,-0.077909][0,0.000147566,-1][0.258351,0.345178,0][-6.49987,-1.48357,-0.077909][0,0.000147566,-1][0.258351,0.345178,0][-5.02916,-1.48357,-0.077909][0,0.000295131,-2][0.371889,0.345178,0][-5.02916,-1.48357,0.0678441][0,-0.00680995,1.99999][0.371889,0.35643,0][-6.49987,-1.48357,0.0678441][0,-0.00340497,0.999994][0.610584,0.329483,0][-5.79567,-0.179818,0.0722833][0,-0.00680995,1.99999][0.509934,0.329826,0][-5.79567,-0.179818,-0.0777167][0,0.000295131,-2][0.509934,0.318246,0][-5.79567,-0.179818,-0.0777167][0,0.000295131,-2][0.509934,0.318246,0][-6.49987,-1.48357,-0.077909][0,0.000147566,-1][0.610584,0.318231,0][-6.49987,-1.48357,0.0678441][0,-0.00340497,0.999994][0.610584,0.329483,0][-5.79567,0.0955689,-0.075][0,0.00238226,-2][0.727617,0.386762,0][-6.49987,1.54193,-0.0732772][0,0.00119113,-0.999999][0.781981,0.498421,0][-5.02916,1.54193,-0.0732772][0,0.00238226,-2][0.668442,0.498421,0][-5.02916,1.54193,-0.0732772][0,0.00238226,-2][0.668442,0.498421,0][-4.39009,0.0955689,-0.075][0,0.00119113,-0.999999][0.619106,0.386762,0][-5.79567,0.0955689,-0.075][0,0.00238226,-2][0.727617,0.386762,0][-5.79567,0.0955689,0.075][0,0.00349024,2][0.727617,0.121659,0][-4.39009,0.0955689,0.075][0,0.00174512,0.999998][0.619106,0.121659,0][-5.02916,1.54193,0.0724759][0,0.00349024,2][0.668442,0.01,0][-5.02916,1.54193,0.0724759][0,0.00349024,2][0.668442,0.01,0][-6.49987,1.54193,0.0724759][0,0.00174512,0.999998][0.781981,0.01,0][-5.79567,0.0955689,0.075][0,0.00349024,2][0.727617,0.121659,0][-4.39009,0.0955689,-0.075][0,0.00119113,-0.999999][0.26023,0.486841,0][-5.02916,1.54193,-0.0732772][0,0.00238226,-2][0.371889,0.486974,0][-5.02916,1.54193,0.0724759][0,0.00349024,2][0.371889,0.498227,0][-5.02916,1.54193,0.0724759][0,0.00349024,2][0.371889,0.498227,0][-4.39009,0.0955689,0.075][0,0.00174512,0.999998][0.26023,0.498421,0][-4.39009,0.0955689,-0.075][0,0.00119113,-0.999999][0.26023,0.486841,0][-5.02916,1.54193,-0.0732772][0,0.00238226,-2][0.497045,0.43438,0][-6.49987,1.54193,-0.0732772][0,0.00119113,-0.999999][0.610584,0.43438,0][-6.49987,1.54193,0.0724759][0,0.00174512,0.999998][0.610584,0.445632,0][-6.49987,1.54193,0.0724759][0,0.00174512,0.999998][0.610584,0.445632,0][-5.02916,1.54193,0.0724759][0,0.00349024,2][0.497045,0.445632,0][-5.02916,1.54193,-0.0732772][0,0.00238226,-2][0.497045,0.43438,0][-6.49987,1.54193,-0.0732772][0,0.00119113,-0.999999][0.377015,0.318588,0][-5.79567,0.0955689,-0.075][0,0.00238226,-2][0.488675,0.318455,0][-5.79567,0.0955689,0.075][0,0.00349024,2][0.488675,0.330035,0][-5.79567,0.0955689,0.075][0,0.00349024,2][0.488675,0.330035,0][-6.49987,1.54193,0.0724759][0,0.00174512,0.999998][0.377015,0.329841,0][-6.49987,1.54193,-0.0732772][0,0.00119113,-0.999999][0.377015,0.318588,0][3.49987,0.145569,-0.125][0,0,-2][0.01,0.62103,0][3.49987,1.45807,-0.125][0,0,-1][0.01,0.519705,0][6.49987,-0.0419312,-0.125][0,0,-3][0.2416,0.635505,0][3.49987,-0.229431,-0.125][0,0,-2][0.01,0.64998,0][3.49987,0.145569,-0.125][0,0,-2][0.01,0.62103,0][6.49987,-0.0419312,-0.125][0,0,-3][0.2416,0.635505,0][3.49987,-1.54193,-0.125][0,0,-1][0.01,0.751305,0][3.49987,-0.229431,-0.125][0,0,-2][0.01,0.64998,0][6.49987,-0.0419312,-0.125][0,0,-3][0.2416,0.635505,0][6.49987,-0.0419312,0.125][0,0,3][0.2416,0.8742,0][3.49987,1.45807,0.125][0,0,1][0.01,0.99,0][3.49987,0.145569,0.125][0,0,2][0.01,0.888675,0][6.49987,-0.0419312,0.125][0,0,3][0.2416,0.8742,0][3.49987,0.145569,0.125][0,0,2][0.01,0.888675,0][3.49987,-0.229431,0.125][0,0,2][0.01,0.859725,0][3.49987,-1.54193,0.125][0,0,1][0.01,0.7584,0][6.49987,-0.0419312,0.125][0,0,3][0.2416,0.8742,0][3.49987,-0.229431,0.125][0,0,2][0.01,0.859725,0][3.49987,-1.54193,-0.125][0,0,-1][0.378984,0.452727,0][6.49987,-0.0419312,-0.125][0,0,-3][0.610584,0.452727,0][6.49987,-0.0419312,0.125][0,0,3][0.610584,0.472027,0][6.49987,-0.0419312,0.125][0,0,3][0.610584,0.472027,0][3.49987,-1.54193,0.125][0,0,1][0.378984,0.472027,0][3.49987,-1.54193,-0.125][0,0,-1][0.378984,0.452727,0][6.49987,-0.0419312,-0.125][0,0,-3][0.378984,0.33713,0][3.49987,1.45807,-0.125][0,0,-1][0.610584,0.33713,0][3.49987,1.45807,0.125][0,0,1][0.610584,0.35643,0][3.49987,1.45807,0.125][0,0,1][0.610584,0.35643,0][6.49987,-0.0419312,0.125][0,0,3][0.378984,0.35643,0][6.49987,-0.0419312,-0.125][0,0,-3][0.378984,0.33713,0][-5.79567,-0.179818,-0.0777167][0,0.000295131,-2][0.509934,0.318246,0][-5.79567,-0.179818,0.0722833][0,-0.00680995,1.99999][0.509934,0.329826,0][-5.79567,0.0955689,0.075][0,0.00349024,2][0.488675,0.330035,0][-5.79567,0.0955689,0.075][0,0.00349024,2][0.488675,0.330035,0][-5.79567,0.0955689,-0.075][0,0.00238226,-2][0.488675,0.318455,0][-5.79567,-0.179818,-0.0777167][0,0.000295131,-2][0.509934,0.318246,0][3.49987,-1.54193,-0.125][0,0,-1][0.610584,0.479121,0][3.49987,-1.54193,0.125][0,0,1][0.610584,0.498421,0][3.49987,-0.229431,0.125][0,0,2][0.509259,0.498421,0][3.49987,-0.229431,0.125][0,0,2][0.509259,0.498421,0][3.49987,-0.229431,-0.125][0,0,-2][0.509259,0.479121,0][3.49987,-1.54193,-0.125][0,0,-1][0.610584,0.479121,0][3.49987,1.45807,0.125][0,0,1][0.378984,0.498421,0][3.49987,1.45807,-0.125][0,0,-1][0.378984,0.479121,0][3.49987,0.145569,-0.125][0,0,-2][0.480309,0.479121,0][3.49987,0.145569,-0.125][0,0,-2][0.480309,0.479121,0][3.49987,0.145569,0.125][0,0,2][0.480309,0.498421,0][3.49987,1.45807,0.125][0,0,1][0.378984,0.498421,0][3.49987,0.145569,-0.125][0,0,-2][0.480309,0.479121,0][3.49987,-0.229431,-0.125][0,0,-2][0.509259,0.479121,0][3.49987,-0.179431,-0.075][-1,0,0][0.505399,0.482981,0][3.49987,-0.179431,-0.075][-1,0,0][0.505399,0.482981,0][3.49987,0.0955689,-0.075][-1,0,0][0.484169,0.482981,0][3.49987,0.145569,-0.125][0,0,-2][0.480309,0.479121,0][3.49987,-0.229431,-0.125][0,0,-2][0.509259,0.479121,0][3.49987,-0.229431,0.125][0,0,2][0.509259,0.498421,0][3.49987,-0.179431,0.075][-1,0,0][0.505399,0.494561,0][3.49987,-0.179431,0.075][-1,0,0][0.505399,0.494561,0][3.49987,-0.179431,-0.075][-1,0,0][0.505399,0.482981,0][3.49987,-0.229431,-0.125][0,0,-2][0.509259,0.479121,0][3.49987,-0.229431,0.125][0,0,2][0.509259,0.498421,0][3.49987,0.145569,0.125][0,0,2][0.480309,0.498421,0][3.49987,0.0955689,0.075][-1,0,0][0.484169,0.494561,0][3.49987,0.0955689,0.075][-1,0,0][0.484169,0.494561,0][3.49987,-0.179431,0.075][-1,0,0][0.505399,0.494561,0][3.49987,-0.229431,0.125][0,0,2][0.509259,0.498421,0][3.49987,0.145569,0.125][0,0,2][0.480309,0.498421,0][3.49987,0.145569,-0.125][0,0,-2][0.480309,0.479121,0][3.49987,0.0955689,-0.075][-1,0,0][0.484169,0.482981,0][3.49987,0.0955689,-0.075][-1,0,0][0.484169,0.482981,0][3.49987,0.0955689,0.075][-1,0,0][0.484169,0.494561,0][3.49987,0.145569,0.125][0,0,2][0.480309,0.498421,0][3.49987,-0.179431,-0.075][-1,0,0][0.01,0.365532,0][-4.39009,-0.179818,-0.0777167][0,0.000147566,-1][0.619106,0.365502,0][-4.39009,0.0955689,-0.075][0,0.00119113,-0.999999][0.619106,0.386762,0][-4.39009,0.0955689,-0.075][0,0.00119113,-0.999999][0.619106,0.386762,0][3.49987,0.0955689,-0.075][-1,0,0][0.01,0.386762,0][3.49987,-0.179431,-0.075][-1,0,0][0.01,0.365532,0][3.49987,-0.179431,0.075][-1,0,0][0.8578,0.531495,0][-4.39009,-0.179818,0.0722833][0,-0.00340498,0.999994][0.248695,0.531285,0][-4.39009,-0.179818,-0.0777167][0,0.000147566,-1][0.248695,0.519705,0][-4.39009,-0.179818,-0.0777167][0,0.000147566,-1][0.248695,0.519705,0][3.49987,-0.179431,-0.075][-1,0,0][0.8578,0.519915,0][3.49987,-0.179431,0.075][-1,0,0][0.8578,0.531495,0][3.49987,0.0955689,0.075][-1,0,0][0.01,0.121659,0][-4.39009,0.0955689,0.075][0,0.00174512,0.999998][0.619106,0.121659,0][-4.39009,-0.179818,0.0722833][0,-0.00340498,0.999994][0.619106,0.142919,0][-4.39009,-0.179818,0.0722833][0,-0.00340498,0.999994][0.619106,0.142919,0][3.49987,-0.179431,0.075][-1,0,0][0.01,0.142889,0][3.49987,0.0955689,0.075][-1,0,0][0.01,0.121659,0][3.49987,0.0955689,-0.075][-1,0,0][0.248695,0.552778,0][-4.39009,0.0955689,-0.075][0,0.00119113,-0.999999][0.8578,0.552778,0][-4.39009,0.0955689,0.075][0,0.00174512,0.999998][0.8578,0.564358,0][-4.39009,0.0955689,0.075][0,0.00174512,0.999998][0.8578,0.564358,0][3.49987,0.0955689,0.075][-1,0,0][0.248695,0.564358,0][3.49987,0.0955689,-0.075][-1,0,0][0.248695,0.552778,0][-5.79567,-0.179818,-0.0777167][0,0.000295131,-2][0.727617,0.365502,0][-5.79567,0.0955689,-0.075][0,0.00238226,-2][0.727617,0.386762,0][-4.39009,0.0955689,-0.075][0,0.00119113,-0.999999][0.619106,0.386762,0][-4.39009,0.0955689,-0.075][0,0.00119113,-0.999999][0.619106,0.386762,0][-4.39009,-0.179818,-0.0777167][0,0.000147566,-1][0.619106,0.365502,0][-5.79567,-0.179818,-0.0777167][0,0.000295131,-2][0.727617,0.365502,0][-5.79567,0.0955689,0.075][0,0.00349024,2][0.727617,0.121659,0][-5.79567,-0.179818,0.0722833][0,-0.00680995,1.99999][0.727617,0.142919,0][-4.39009,-0.179818,0.0722833][0,-0.00340498,0.999994][0.619106,0.142919,0][-4.39009,-0.179818,0.0722833][0,-0.00340498,0.999994][0.619106,0.142919,0][-4.39009,0.0955689,0.075][0,0.00174512,0.999998][0.619106,0.121659,0][-5.79567,0.0955689,0.075][0,0.00349024,2][0.727617,0.121659,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/BaseballCap.mesh b/shareddata/charcustom/hats/fonts/BaseballCap.mesh deleted file mode 100644 index ebbf847..0000000 --- a/shareddata/charcustom/hats/fonts/BaseballCap.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -476 -[-0.118986,0.500689,0.339873][-2.96657,1.32069,-6.17495e-007][0.607233,0.605293,0][-0.109929,0.500689,0.294339][-2.74075,1.32069,-1.13526][0.594948,0.60724,0][-0.125633,0.462508,0.287834][-0.543237,0.808864,-0.225016][0.593372,0.602967,0][-0.125633,0.462508,0.287834][-0.543237,0.808864,-0.225016][0.593372,0.602967,0][-0.135984,0.462508,0.339873][-0.587996,0.808864,-1.23028e-007][0.607411,0.600743,0][-0.118986,0.500689,0.339873][-2.96657,1.32069,-6.17495e-007][0.607233,0.605293,0][-0.109929,0.500689,0.294339][-2.74075,1.32069,-1.13526][0.594948,0.60724,0][-0.0841357,0.500689,0.255737][-2.09768,1.32069,-2.09768][0.584344,0.613739,0][-0.0961551,0.462508,0.243717][-0.415776,0.808864,-0.415776][0.581252,0.610395,0][-0.0961551,0.462508,0.243717][-0.415776,0.808864,-0.415776][0.581252,0.610395,0][-0.125633,0.462508,0.287834][-0.543237,0.808864,-0.225016][0.593372,0.602967,0][-0.109929,0.500689,0.294339][-2.74075,1.32069,-1.13526][0.594948,0.60724,0][-0.0841357,0.500689,0.255737][-2.09768,1.32069,-2.09768][0.584344,0.613739,0][-0.0455339,0.500689,0.229944][-1.13526,1.32069,-2.74075][0.577034,0.623802,0][-0.0520388,0.462508,0.21424][-0.225016,0.808864,-0.543237][0.572898,0.621895,0][-0.0520388,0.462508,0.21424][-0.225016,0.808864,-0.543237][0.572898,0.621895,0][-0.0961551,0.462508,0.243717][-0.415776,0.808864,-0.415776][0.581252,0.610395,0][-0.0841357,0.500689,0.255737][-2.09768,1.32069,-2.09768][0.584344,0.613739,0][-0.0455339,0.500689,0.229944][-1.13526,1.32069,-2.74075][0.577034,0.623802,0][0,0.500689,0.220887][8.11357e-007,1.32069,-2.96657][0.574131,0.635896,0][0,0.462508,0.203889][1.40184e-007,0.808864,-0.587996][0.56958,0.635718,0][0,0.462508,0.203889][1.40184e-007,0.808864,-0.587996][0.56958,0.635718,0][-0.0520388,0.462508,0.21424][-0.225016,0.808864,-0.543237][0.572898,0.621895,0][-0.0455339,0.500689,0.229944][-1.13526,1.32069,-2.74075][0.577034,0.623802,0][0,0.500689,0.220887][8.11357e-007,1.32069,-2.96657][0.574131,0.635896,0][0.0455339,0.500689,0.229944][1.13526,1.32069,-2.74075][0.576077,0.648181,0][0.0520388,0.462508,0.21424][0.225016,0.808864,-0.543237][0.571805,0.649757,0][0.0520388,0.462508,0.21424][0.225016,0.808864,-0.543237][0.571805,0.649757,0][0,0.462508,0.203889][1.40184e-007,0.808864,-0.587996][0.56958,0.635718,0][0,0.500689,0.220887][8.11357e-007,1.32069,-2.96657][0.574131,0.635896,0][0.0455339,0.500689,0.229944][1.13526,1.32069,-2.74075][0.576077,0.648181,0][0.0841358,0.500689,0.255737][2.09768,1.32069,-2.09768][0.582576,0.658785,0][0.0961552,0.462508,0.243717][0.415776,0.808864,-0.415776][0.579232,0.661877,0][0.0961552,0.462508,0.243717][0.415776,0.808864,-0.415776][0.579232,0.661877,0][0.0520388,0.462508,0.21424][0.225016,0.808864,-0.543237][0.571805,0.649757,0][0.0455339,0.500689,0.229944][1.13526,1.32069,-2.74075][0.576077,0.648181,0][0.0841358,0.500689,0.255737][2.09768,1.32069,-2.09768][0.582576,0.658785,0][0.109929,0.500689,0.294339][2.74075,1.32069,-1.13526][0.592639,0.666095,0][0.125633,0.462508,0.287834][0.543238,0.808864,-0.225016][0.590733,0.670231,0][0.125633,0.462508,0.287834][0.543238,0.808864,-0.225016][0.590733,0.670231,0][0.0961552,0.462508,0.243717][0.415776,0.808864,-0.415776][0.579232,0.661877,0][0.0841358,0.500689,0.255737][2.09768,1.32069,-2.09768][0.582576,0.658785,0][0.109929,0.500689,0.294339][2.74075,1.32069,-1.13526][0.592639,0.666095,0][0.118986,0.500689,0.339873][2.96657,1.32069,1.54804e-006][0.604733,0.668998,0][0.135984,0.462508,0.339873][0.587996,0.808864,2.13926e-007][0.604555,0.673549,0][0.135984,0.462508,0.339873][0.587996,0.808864,2.13926e-007][0.604555,0.673549,0][0.125633,0.462508,0.287834][0.543238,0.808864,-0.225016][0.590733,0.670231,0][0.109929,0.500689,0.294339][2.74075,1.32069,-1.13526][0.592639,0.666095,0][0.118986,0.500689,0.339873][2.96657,1.32069,1.54804e-006][0.604733,0.668998,0][0.109929,0.500689,0.385407][2.74075,1.32069,1.13526][0.617018,0.667052,0][0.125633,0.462508,0.391911][0.543238,0.808864,0.225016][0.618594,0.671324,0][0.125633,0.462508,0.391911][0.543238,0.808864,0.225016][0.618594,0.671324,0][0.135984,0.462508,0.339873][0.587996,0.808864,2.13926e-007][0.604555,0.673549,0][0.118986,0.500689,0.339873][2.96657,1.32069,1.54804e-006][0.604733,0.668998,0][0.109929,0.500689,0.385407][2.74075,1.32069,1.13526][0.617018,0.667052,0][0.0841357,0.500689,0.424008][2.09768,1.32069,2.09768][0.627623,0.660553,0][0.0961551,0.462508,0.436028][0.415776,0.808864,0.415776][0.630714,0.663896,0][0.0961551,0.462508,0.436028][0.415776,0.808864,0.415776][0.630714,0.663896,0][0.125633,0.462508,0.391911][0.543238,0.808864,0.225016][0.618594,0.671324,0][0.109929,0.500689,0.385407][2.74075,1.32069,1.13526][0.617018,0.667052,0][0.0841357,0.500689,0.424008][2.09768,1.32069,2.09768][0.627623,0.660553,0][0.0455339,0.500689,0.449801][1.13526,1.32069,2.74075][0.634933,0.65049,0][0.0520387,0.462508,0.465505][0.225016,0.808864,0.543238][0.639068,0.652396,0][0.0520387,0.462508,0.465505][0.225016,0.808864,0.543238][0.639068,0.652396,0][0.0961551,0.462508,0.436028][0.415776,0.808864,0.415776][0.630714,0.663896,0][0.0841357,0.500689,0.424008][2.09768,1.32069,2.09768][0.627623,0.660553,0][0.0455339,0.500689,0.449801][1.13526,1.32069,2.74075][0.634933,0.65049,0][0,0.500689,0.458858][-2.03484e-006,1.32069,2.96657][0.637836,0.638396,0][0,0.462508,0.475856][-2.17452e-007,0.808864,0.587996][0.642386,0.638574,0][0,0.462508,0.475856][-2.17452e-007,0.808864,0.587996][0.642386,0.638574,0][0.0520387,0.462508,0.465505][0.225016,0.808864,0.543238][0.639068,0.652396,0][0.0455339,0.500689,0.449801][1.13526,1.32069,2.74075][0.634933,0.65049,0][0,0.500689,0.458858][-2.03484e-006,1.32069,2.96657][0.637836,0.638396,0][-0.045534,0.500689,0.449801][-1.13526,1.32069,2.74075][0.635889,0.626111,0][-0.0520388,0.462508,0.465505][-0.225017,0.808864,0.543237][0.640162,0.624534,0][-0.0520388,0.462508,0.465505][-0.225017,0.808864,0.543237][0.640162,0.624534,0][0,0.462508,0.475856][-2.17452e-007,0.808864,0.587996][0.642386,0.638574,0][0,0.500689,0.458858][-2.03484e-006,1.32069,2.96657][0.637836,0.638396,0][-0.045534,0.500689,0.449801][-1.13526,1.32069,2.74075][0.635889,0.626111,0][-0.0841358,0.500689,0.424008][-2.09768,1.32069,2.09768][0.62939,0.615506,0][-0.0961552,0.462508,0.436028][-0.415776,0.808864,0.415776][0.632734,0.612415,0][-0.0961552,0.462508,0.436028][-0.415776,0.808864,0.415776][0.632734,0.612415,0][-0.0520388,0.462508,0.465505][-0.225017,0.808864,0.543237][0.640162,0.624534,0][-0.045534,0.500689,0.449801][-1.13526,1.32069,2.74075][0.635889,0.626111,0][-0.0841358,0.500689,0.424008][-2.09768,1.32069,2.09768][0.62939,0.615506,0][-0.109929,0.500689,0.385406][-2.74075,1.32069,1.13526][0.619327,0.608196,0][-0.125633,0.462508,0.391911][-0.543238,0.808864,0.225016][0.621233,0.60406,0][-0.125633,0.462508,0.391911][-0.543238,0.808864,0.225016][0.621233,0.60406,0][-0.0961552,0.462508,0.436028][-0.415776,0.808864,0.415776][0.632734,0.612415,0][-0.0841358,0.500689,0.424008][-2.09768,1.32069,2.09768][0.62939,0.615506,0][-0.109929,0.500689,0.385406][-2.74075,1.32069,1.13526][0.619327,0.608196,0][-0.118986,0.500689,0.339873][-2.96657,1.32069,-6.17495e-007][0.607233,0.605293,0][-0.135984,0.462508,0.339873][-0.587996,0.808864,-1.23028e-007][0.607411,0.600743,0][-0.135984,0.462508,0.339873][-0.587996,0.808864,-1.23028e-007][0.607411,0.600743,0][-0.125633,0.462508,0.391911][-0.543238,0.808864,0.225016][0.621233,0.60406,0][-0.109929,0.500689,0.385406][-2.74075,1.32069,1.13526][0.619327,0.608196,0][-0.135984,0.462508,0.339873][-0.587996,0.808864,-1.23028e-007][0.607411,0.600743,0][-0.125633,0.462508,0.287834][-0.543237,0.808864,-0.225016][0.593372,0.602967,0][-0.330043,0.417829,0.203164][-0.269318,0.956569,-0.111555][0.572853,0.547357,0][-0.330043,0.417829,0.203164][-0.269318,0.956569,-0.111555][0.572853,0.547357,0][-0.357236,0.417829,0.339873][-0.291507,0.956569,-1.80026e-007][0.609735,0.541514,0][-0.135984,0.462508,0.339873][-0.587996,0.808864,-1.23028e-007][0.607411,0.600743,0][-0.125633,0.462508,0.287834][-0.543237,0.808864,-0.225016][0.593372,0.602967,0][-0.0961551,0.462508,0.243717][-0.415776,0.808864,-0.415776][0.581252,0.610395,0][-0.252604,0.417829,0.0872688][-0.206126,0.956569,-0.206126][0.541014,0.566871,0][-0.252604,0.417829,0.0872688][-0.206126,0.956569,-0.206126][0.541014,0.566871,0][-0.330043,0.417829,0.203164][-0.269318,0.956569,-0.111555][0.572853,0.547357,0][-0.125633,0.462508,0.287834][-0.543237,0.808864,-0.225016][0.593372,0.602967,0][-0.0961551,0.462508,0.243717][-0.415776,0.808864,-0.415776][0.581252,0.610395,0][-0.0520388,0.462508,0.21424][-0.225016,0.808864,-0.543237][0.572898,0.621895,0][-0.136708,0.417829,0.00982984][-0.111555,0.956569,-0.269317][0.519066,0.597082,0][-0.136708,0.417829,0.00982984][-0.111555,0.956569,-0.269317][0.519066,0.597082,0][-0.252604,0.417829,0.0872688][-0.206126,0.956569,-0.206126][0.541014,0.566871,0][-0.0961551,0.462508,0.243717][-0.415776,0.808864,-0.415776][0.581252,0.610395,0][-0.0520388,0.462508,0.21424][-0.225016,0.808864,-0.543237][0.572898,0.621895,0][0,0.462508,0.203889][1.40184e-007,0.808864,-0.587996][0.56958,0.635718,0][0,0.417829,-0.017363][0,0.956569,-0.291507][0.510351,0.633394,0][0,0.417829,-0.017363][0,0.956569,-0.291507][0.510351,0.633394,0][-0.136708,0.417829,0.00982984][-0.111555,0.956569,-0.269317][0.519066,0.597082,0][-0.0520388,0.462508,0.21424][-0.225016,0.808864,-0.543237][0.572898,0.621895,0][0,0.462508,0.203889][1.40184e-007,0.808864,-0.587996][0.56958,0.635718,0][0.0520388,0.462508,0.21424][0.225016,0.808864,-0.543237][0.571805,0.649757,0][0.136708,0.417829,0.00982988][0.111555,0.956569,-0.269317][0.516195,0.670276,0][0.136708,0.417829,0.00982988][0.111555,0.956569,-0.269317][0.516195,0.670276,0][0,0.417829,-0.017363][0,0.956569,-0.291507][0.510351,0.633394,0][0,0.462508,0.203889][1.40184e-007,0.808864,-0.587996][0.56958,0.635718,0][0.0520388,0.462508,0.21424][0.225016,0.808864,-0.543237][0.571805,0.649757,0][0.0961552,0.462508,0.243717][0.415776,0.808864,-0.415776][0.579232,0.661877,0][0.252604,0.417829,0.0872689][0.206127,0.956569,-0.206126][0.535708,0.702115,0][0.252604,0.417829,0.0872689][0.206127,0.956569,-0.206126][0.535708,0.702115,0][0.136708,0.417829,0.00982988][0.111555,0.956569,-0.269317][0.516195,0.670276,0][0.0520388,0.462508,0.21424][0.225016,0.808864,-0.543237][0.571805,0.649757,0][0.0961552,0.462508,0.243717][0.415776,0.808864,-0.415776][0.579232,0.661877,0][0.125633,0.462508,0.287834][0.543238,0.808864,-0.225016][0.590733,0.670231,0][0.330043,0.417829,0.203164][0.269318,0.956569,-0.111555][0.56592,0.724062,0][0.330043,0.417829,0.203164][0.269318,0.956569,-0.111555][0.56592,0.724062,0][0.252604,0.417829,0.0872689][0.206127,0.956569,-0.206126][0.535708,0.702115,0][0.0961552,0.462508,0.243717][0.415776,0.808864,-0.415776][0.579232,0.661877,0][0.125633,0.462508,0.287834][0.543238,0.808864,-0.225016][0.590733,0.670231,0][0.135984,0.462508,0.339873][0.587996,0.808864,2.13926e-007][0.604555,0.673549,0][0.357236,0.417829,0.339873][0.291507,0.956569,0][0.602231,0.732778,0][0.357236,0.417829,0.339873][0.291507,0.956569,0][0.602231,0.732778,0][0.330043,0.417829,0.203164][0.269318,0.956569,-0.111555][0.56592,0.724062,0][0.125633,0.462508,0.287834][0.543238,0.808864,-0.225016][0.590733,0.670231,0][0.135984,0.462508,0.339873][0.587996,0.808864,2.13926e-007][0.604555,0.673549,0][0.125633,0.462508,0.391911][0.543238,0.808864,0.225016][0.618594,0.671324,0][0.330043,0.417829,0.476581][0.269317,0.956569,0.111555][0.639114,0.726934,0][0.330043,0.417829,0.476581][0.269317,0.956569,0.111555][0.639114,0.726934,0][0.357236,0.417829,0.339873][0.291507,0.956569,0][0.602231,0.732778,0][0.135984,0.462508,0.339873][0.587996,0.808864,2.13926e-007][0.604555,0.673549,0][0.125633,0.462508,0.391911][0.543238,0.808864,0.225016][0.618594,0.671324,0][0.0961551,0.462508,0.436028][0.415776,0.808864,0.415776][0.630714,0.663896,0][0.252604,0.417829,0.592476][0.206127,0.956569,0.206127][0.670952,0.707421,0][0.252604,0.417829,0.592476][0.206127,0.956569,0.206127][0.670952,0.707421,0][0.330043,0.417829,0.476581][0.269317,0.956569,0.111555][0.639114,0.726934,0][0.125633,0.462508,0.391911][0.543238,0.808864,0.225016][0.618594,0.671324,0][0.0961551,0.462508,0.436028][0.415776,0.808864,0.415776][0.630714,0.663896,0][0.0520387,0.462508,0.465505][0.225016,0.808864,0.543238][0.639068,0.652396,0][0.136708,0.417829,0.669915][0.111555,0.956569,0.269318][0.6929,0.677209,0][0.136708,0.417829,0.669915][0.111555,0.956569,0.269318][0.6929,0.677209,0][0.252604,0.417829,0.592476][0.206127,0.956569,0.206127][0.670952,0.707421,0][0.0961551,0.462508,0.436028][0.415776,0.808864,0.415776][0.630714,0.663896,0][0.0520387,0.462508,0.465505][0.225016,0.808864,0.543238][0.639068,0.652396,0][0,0.462508,0.475856][-2.17452e-007,0.808864,0.587996][0.642386,0.638574,0][0,0.417829,0.697108][0,0.956569,0.291508][0.701615,0.640898,0][0,0.417829,0.697108][0,0.956569,0.291508][0.701615,0.640898,0][0.136708,0.417829,0.669915][0.111555,0.956569,0.269318][0.6929,0.677209,0][0.0520387,0.462508,0.465505][0.225016,0.808864,0.543238][0.639068,0.652396,0][0,0.462508,0.475856][-2.17452e-007,0.808864,0.587996][0.642386,0.638574,0][-0.0520388,0.462508,0.465505][-0.225017,0.808864,0.543237][0.640162,0.624534,0][-0.136708,0.417829,0.669915][-0.111555,0.956569,0.269318][0.695772,0.604015,0][-0.136708,0.417829,0.669915][-0.111555,0.956569,0.269318][0.695772,0.604015,0][0,0.417829,0.697108][0,0.956569,0.291508][0.701615,0.640898,0][0,0.462508,0.475856][-2.17452e-007,0.808864,0.587996][0.642386,0.638574,0][-0.0520388,0.462508,0.465505][-0.225017,0.808864,0.543237][0.640162,0.624534,0][-0.0961552,0.462508,0.436028][-0.415776,0.808864,0.415776][0.632734,0.612415,0][-0.252604,0.417829,0.592476][-0.206127,0.956569,0.206127][0.676258,0.572177,0][-0.252604,0.417829,0.592476][-0.206127,0.956569,0.206127][0.676258,0.572177,0][-0.136708,0.417829,0.669915][-0.111555,0.956569,0.269318][0.695772,0.604015,0][-0.0520388,0.462508,0.465505][-0.225017,0.808864,0.543237][0.640162,0.624534,0][-0.0961552,0.462508,0.436028][-0.415776,0.808864,0.415776][0.632734,0.612415,0][-0.125633,0.462508,0.391911][-0.543238,0.808864,0.225016][0.621233,0.60406,0][-0.330043,0.417829,0.476581][-0.269317,0.956569,0.111555][0.646046,0.550229,0][-0.330043,0.417829,0.476581][-0.269317,0.956569,0.111555][0.646046,0.550229,0][-0.252604,0.417829,0.592476][-0.206127,0.956569,0.206127][0.676258,0.572177,0][-0.0961552,0.462508,0.436028][-0.415776,0.808864,0.415776][0.632734,0.612415,0][-0.125633,0.462508,0.391911][-0.543238,0.808864,0.225016][0.621233,0.60406,0][-0.135984,0.462508,0.339873][-0.587996,0.808864,-1.23028e-007][0.607411,0.600743,0][-0.357236,0.417829,0.339873][-0.291507,0.956569,-1.80026e-007][0.609735,0.541514,0][-0.357236,0.417829,0.339873][-0.291507,0.956569,-1.80026e-007][0.609735,0.541514,0][-0.330043,0.417829,0.476581][-0.269317,0.956569,0.111555][0.646046,0.550229,0][-0.125633,0.462508,0.391911][-0.543238,0.808864,0.225016][0.621233,0.60406,0][-0.357236,0.417829,0.339873][-0.291507,0.956569,-1.80026e-007][0.609735,0.541514,0][-0.330043,0.417829,0.203164][-0.269318,0.956569,-0.111555][0.572853,0.547357,0][-0.607975,0.300529,0.0880408][-0.445713,0.875931,-0.18462][0.544953,0.471746,0][-0.607975,0.300529,0.0880408][-0.445713,0.875931,-0.18462][0.544953,0.471746,0][-0.658068,0.300529,0.339872][-0.482435,0.875932,-7.50927e-007][0.612895,0.460981,0][-0.357236,0.417829,0.339873][-0.291507,0.956569,-1.80026e-007][0.609735,0.541514,0][-0.330043,0.417829,0.203164][-0.269318,0.956569,-0.111555][0.572853,0.547357,0][-0.252604,0.417829,0.0872688][-0.206126,0.956569,-0.206126][0.541014,0.566871,0][-0.465324,0.30053,-0.125452][-0.341134,0.875931,-0.341133][0.486303,0.507691,0][-0.465324,0.30053,-0.125452][-0.341134,0.875931,-0.341133][0.486303,0.507691,0][-0.607975,0.300529,0.0880408][-0.445713,0.875931,-0.18462][0.544953,0.471746,0][-0.330043,0.417829,0.203164][-0.269318,0.956569,-0.111555][0.572853,0.547357,0][-0.252604,0.417829,0.0872688][-0.206126,0.956569,-0.206126][0.541014,0.566871,0][-0.136708,0.417829,0.00982984][-0.111555,0.956569,-0.269317][0.519066,0.597082,0][-0.251832,0.30053,-0.268103][-0.18462,0.875932,-0.445712][0.445873,0.563345,0][-0.251832,0.30053,-0.268103][-0.18462,0.875932,-0.445712][0.445873,0.563345,0][-0.465324,0.30053,-0.125452][-0.341134,0.875931,-0.341133][0.486303,0.507691,0][-0.252604,0.417829,0.0872688][-0.206126,0.956569,-0.206126][0.541014,0.566871,0][-0.136708,0.417829,0.00982984][-0.111555,0.956569,-0.269317][0.519066,0.597082,0][0,0.417829,-0.017363][0,0.956569,-0.291507][0.510351,0.633394,0][0,0.30053,-0.318195][1.64855e-007,0.875932,-0.482435][0.429818,0.630234,0][0,0.30053,-0.318195][1.64855e-007,0.875932,-0.482435][0.429818,0.630234,0][-0.251832,0.30053,-0.268103][-0.18462,0.875932,-0.445712][0.445873,0.563345,0][-0.136708,0.417829,0.00982984][-0.111555,0.956569,-0.269317][0.519066,0.597082,0][0,0.417829,-0.017363][0,0.956569,-0.291507][0.510351,0.633394,0][0.136708,0.417829,0.00982988][0.111555,0.956569,-0.269317][0.516195,0.670276,0][0.251832,0.30053,-0.268103][0.18462,0.875931,-0.445712][0.440583,0.698176,0][0.251832,0.30053,-0.268103][0.18462,0.875931,-0.445712][0.440583,0.698176,0][0,0.30053,-0.318195][1.64855e-007,0.875932,-0.482435][0.429818,0.630234,0][0,0.417829,-0.017363][0,0.956569,-0.291507][0.510351,0.633394,0][0.136708,0.417829,0.00982988][0.111555,0.956569,-0.269317][0.516195,0.670276,0][0.252604,0.417829,0.0872689][0.206127,0.956569,-0.206126][0.535708,0.702115,0][0.465324,0.30053,-0.125451][0.341134,0.875932,-0.341133][0.476528,0.756826,0][0.465324,0.30053,-0.125451][0.341134,0.875932,-0.341133][0.476528,0.756826,0][0.251832,0.30053,-0.268103][0.18462,0.875931,-0.445712][0.440583,0.698176,0][0.136708,0.417829,0.00982988][0.111555,0.956569,-0.269317][0.516195,0.670276,0][0.252604,0.417829,0.0872689][0.206127,0.956569,-0.206126][0.535708,0.702115,0][0.330043,0.417829,0.203164][0.269318,0.956569,-0.111555][0.56592,0.724062,0][0.607975,0.300529,0.0880411][0.445713,0.875931,-0.18462][0.532182,0.797256,0][0.607975,0.300529,0.0880411][0.445713,0.875931,-0.18462][0.532182,0.797256,0][0.465324,0.30053,-0.125451][0.341134,0.875932,-0.341133][0.476528,0.756826,0][0.252604,0.417829,0.0872689][0.206127,0.956569,-0.206126][0.535708,0.702115,0][0.330043,0.417829,0.203164][0.269318,0.956569,-0.111555][0.56592,0.724062,0][0.357236,0.417829,0.339873][0.291507,0.956569,0][0.602231,0.732778,0][0.658068,0.30053,0.339873][0.482436,0.875932,-5.58331e-007][0.599072,0.813311,0][0.658068,0.30053,0.339873][0.482436,0.875932,-5.58331e-007][0.599072,0.813311,0][0.607975,0.300529,0.0880411][0.445713,0.875931,-0.18462][0.532182,0.797256,0][0.330043,0.417829,0.203164][0.269318,0.956569,-0.111555][0.56592,0.724062,0][0.357236,0.417829,0.339873][0.291507,0.956569,0][0.602231,0.732778,0][0.330043,0.417829,0.476581][0.269317,0.956569,0.111555][0.639114,0.726934,0][0.607975,0.30053,0.591704][0.445712,0.875932,0.184621][0.667013,0.802546,0][0.607975,0.30053,0.591704][0.445712,0.875932,0.184621][0.667013,0.802546,0][0.658068,0.30053,0.339873][0.482436,0.875932,-5.58331e-007][0.599072,0.813311,0][0.357236,0.417829,0.339873][0.291507,0.956569,0][0.602231,0.732778,0][0.330043,0.417829,0.476581][0.269317,0.956569,0.111555][0.639114,0.726934,0][0.252604,0.417829,0.592476][0.206127,0.956569,0.206127][0.670952,0.707421,0][0.465324,0.300529,0.805197][0.341133,0.875931,0.341134][0.725663,0.7666,0][0.465324,0.300529,0.805197][0.341133,0.875931,0.341134][0.725663,0.7666,0][0.607975,0.30053,0.591704][0.445712,0.875932,0.184621][0.667013,0.802546,0][0.330043,0.417829,0.476581][0.269317,0.956569,0.111555][0.639114,0.726934,0][0.252604,0.417829,0.592476][0.206127,0.956569,0.206127][0.670952,0.707421,0][0.136708,0.417829,0.669915][0.111555,0.956569,0.269318][0.6929,0.677209,0][0.251831,0.300529,0.947848][0.18462,0.875931,0.445713][0.766093,0.710947,0][0.251831,0.300529,0.947848][0.18462,0.875931,0.445713][0.766093,0.710947,0][0.465324,0.300529,0.805197][0.341133,0.875931,0.341134][0.725663,0.7666,0][0.252604,0.417829,0.592476][0.206127,0.956569,0.206127][0.670952,0.707421,0][0.136708,0.417829,0.669915][0.111555,0.956569,0.269318][0.6929,0.677209,0][0,0.417829,0.697108][0,0.956569,0.291508][0.701615,0.640898,0][-1.97329e-007,0.300529,0.99794][-1.32644e-007,0.875931,0.482436][0.782148,0.644057,0][-1.97329e-007,0.300529,0.99794][-1.32644e-007,0.875931,0.482436][0.782148,0.644057,0][0.251831,0.300529,0.947848][0.18462,0.875931,0.445713][0.766093,0.710947,0][0.136708,0.417829,0.669915][0.111555,0.956569,0.269318][0.6929,0.677209,0][0,0.417829,0.697108][0,0.956569,0.291508][0.701615,0.640898,0][-0.136708,0.417829,0.669915][-0.111555,0.956569,0.269318][0.695772,0.604015,0][-0.251832,0.300529,0.947848][-0.18462,0.875931,0.445712][0.771383,0.576116,0][-0.251832,0.300529,0.947848][-0.18462,0.875931,0.445712][0.771383,0.576116,0][-1.97329e-007,0.300529,0.99794][-1.32644e-007,0.875931,0.482436][0.782148,0.644057,0][0,0.417829,0.697108][0,0.956569,0.291508][0.701615,0.640898,0][-0.136708,0.417829,0.669915][-0.111555,0.956569,0.269318][0.695772,0.604015,0][-0.252604,0.417829,0.592476][-0.206127,0.956569,0.206127][0.676258,0.572177,0][-0.465324,0.300529,0.805197][-0.341133,0.875931,0.341134][0.735438,0.517466,0][-0.465324,0.300529,0.805197][-0.341133,0.875931,0.341134][0.735438,0.517466,0][-0.251832,0.300529,0.947848][-0.18462,0.875931,0.445712][0.771383,0.576116,0][-0.136708,0.417829,0.669915][-0.111555,0.956569,0.269318][0.695772,0.604015,0][-0.252604,0.417829,0.592476][-0.206127,0.956569,0.206127][0.676258,0.572177,0][-0.330043,0.417829,0.476581][-0.269317,0.956569,0.111555][0.646046,0.550229,0][-0.607975,0.30053,0.591704][-0.445712,0.875932,0.18462][0.679784,0.477036,0][-0.607975,0.30053,0.591704][-0.445712,0.875932,0.18462][0.679784,0.477036,0][-0.465324,0.300529,0.805197][-0.341133,0.875931,0.341134][0.735438,0.517466,0][-0.252604,0.417829,0.592476][-0.206127,0.956569,0.206127][0.676258,0.572177,0][-0.330043,0.417829,0.476581][-0.269317,0.956569,0.111555][0.646046,0.550229,0][-0.357236,0.417829,0.339873][-0.291507,0.956569,-1.80026e-007][0.609735,0.541514,0][-0.658068,0.300529,0.339872][-0.482435,0.875932,-7.50927e-007][0.612895,0.460981,0][-0.658068,0.300529,0.339872][-0.482435,0.875932,-7.50927e-007][0.612895,0.460981,0][-0.607975,0.30053,0.591704][-0.445712,0.875932,0.18462][0.679784,0.477036,0][-0.330043,0.417829,0.476581][-0.269317,0.956569,0.111555][0.646046,0.550229,0][-0.658068,0.300529,0.339872][-0.482435,0.875932,-7.50927e-007][0.612895,0.460981,0][-0.607975,0.300529,0.0880408][-0.445713,0.875931,-0.18462][0.544953,0.471746,0][-0.862884,0.107992,-0.0175459][-0.653051,0.707356,-0.270503][0.519365,0.402397,0][-0.862884,0.107992,-0.0175459][-0.653051,0.707356,-0.270503][0.519365,0.402397,0][-0.933979,0.107992,0.339872][-0.706858,0.707355,-3.36665e-007][0.615793,0.387119,0][-0.658068,0.300529,0.339872][-0.482435,0.875932,-7.50927e-007][0.612895,0.460981,0][-0.607975,0.300529,0.0880408][-0.445713,0.875931,-0.18462][0.544953,0.471746,0][-0.465324,0.30053,-0.125452][-0.341134,0.875931,-0.341133][0.486303,0.507691,0][-0.660423,0.107992,-0.320551][-0.499824,0.707355,-0.499824][0.436124,0.453414,0][-0.660423,0.107992,-0.320551][-0.499824,0.707355,-0.499824][0.436124,0.453414,0][-0.862884,0.107992,-0.0175459][-0.653051,0.707356,-0.270503][0.519365,0.402397,0][-0.607975,0.300529,0.0880408][-0.445713,0.875931,-0.18462][0.544953,0.471746,0][-0.465324,0.30053,-0.125452][-0.341134,0.875931,-0.341133][0.486303,0.507691,0][-0.251832,0.30053,-0.268103][-0.18462,0.875932,-0.445712][0.445873,0.563345,0][-0.357418,0.107992,-0.523012][-0.270503,0.707355,-0.653052][0.378743,0.532402,0][-0.357418,0.107992,-0.523012][-0.270503,0.707355,-0.653052][0.378743,0.532402,0][-0.660423,0.107992,-0.320551][-0.499824,0.707355,-0.499824][0.436124,0.453414,0][-0.465324,0.30053,-0.125452][-0.341134,0.875931,-0.341133][0.486303,0.507691,0][-0.251832,0.30053,-0.268103][-0.18462,0.875932,-0.445712][0.445873,0.563345,0][0,0.30053,-0.318195][1.64855e-007,0.875932,-0.482435][0.429818,0.630234,0][1.70771e-007,0.107992,-0.594106][2.05993e-007,0.707355,-0.706858][0.355957,0.627336,0][1.70771e-007,0.107992,-0.594106][2.05993e-007,0.707355,-0.706858][0.355957,0.627336,0][-0.357418,0.107992,-0.523012][-0.270503,0.707355,-0.653052][0.378743,0.532402,0][-0.251832,0.30053,-0.268103][-0.18462,0.875932,-0.445712][0.445873,0.563345,0][0,0.30053,-0.318195][1.64855e-007,0.875932,-0.482435][0.429818,0.630234,0][0.251832,0.30053,-0.268103][0.18462,0.875931,-0.445712][0.440583,0.698176,0][0.357418,0.107992,-0.523011][0.270503,0.707355,-0.653052][0.371235,0.723764,0][0.357418,0.107992,-0.523011][0.270503,0.707355,-0.653052][0.371235,0.723764,0][1.70771e-007,0.107992,-0.594106][2.05993e-007,0.707355,-0.706858][0.355957,0.627336,0][0,0.30053,-0.318195][1.64855e-007,0.875932,-0.482435][0.429818,0.630234,0][0.251832,0.30053,-0.268103][0.18462,0.875931,-0.445712][0.440583,0.698176,0][0.465324,0.30053,-0.125451][0.341134,0.875932,-0.341133][0.476528,0.756826,0][0.660423,0.107992,-0.32055][0.499824,0.707355,-0.499824][0.422251,0.807005,0][0.660423,0.107992,-0.32055][0.499824,0.707355,-0.499824][0.422251,0.807005,0][0.357418,0.107992,-0.523011][0.270503,0.707355,-0.653052][0.371235,0.723764,0][0.251832,0.30053,-0.268103][0.18462,0.875931,-0.445712][0.440583,0.698176,0][0.465324,0.30053,-0.125451][0.341134,0.875932,-0.341133][0.476528,0.756826,0][0.607975,0.300529,0.0880411][0.445713,0.875931,-0.18462][0.532182,0.797256,0][0.862884,0.107992,-0.0175455][0.653052,0.707355,-0.270503][0.501239,0.864386,0][0.862884,0.107992,-0.0175455][0.653052,0.707355,-0.270503][0.501239,0.864386,0][0.660423,0.107992,-0.32055][0.499824,0.707355,-0.499824][0.422251,0.807005,0][0.465324,0.30053,-0.125451][0.341134,0.875932,-0.341133][0.476528,0.756826,0][0.607975,0.300529,0.0880411][0.445713,0.875931,-0.18462][0.532182,0.797256,0][0.658068,0.30053,0.339873][0.482436,0.875932,-5.58331e-007][0.599072,0.813311,0][0.933979,0.107992,0.339873][0.706858,0.707355,0][0.596174,0.887172,0][0.933979,0.107992,0.339873][0.706858,0.707355,0][0.596174,0.887172,0][0.862884,0.107992,-0.0175455][0.653052,0.707355,-0.270503][0.501239,0.864386,0][0.607975,0.300529,0.0880411][0.445713,0.875931,-0.18462][0.532182,0.797256,0][0.658068,0.30053,0.339873][0.482436,0.875932,-5.58331e-007][0.599072,0.813311,0][0.607975,0.30053,0.591704][0.445712,0.875932,0.184621][0.667013,0.802546,0][0.862884,0.107992,0.697291][0.653052,0.707355,0.270503][0.692601,0.871894,0][0.862884,0.107992,0.697291][0.653052,0.707355,0.270503][0.692601,0.871894,0][0.933979,0.107992,0.339873][0.706858,0.707355,0][0.596174,0.887172,0][0.658068,0.30053,0.339873][0.482436,0.875932,-5.58331e-007][0.599072,0.813311,0][0.607975,0.30053,0.591704][0.445712,0.875932,0.184621][0.667013,0.802546,0][0.465324,0.300529,0.805197][0.341133,0.875931,0.341134][0.725663,0.7666,0][0.660423,0.107992,1.0003][0.499824,0.707355,0.499824][0.775842,0.820878,0][0.660423,0.107992,1.0003][0.499824,0.707355,0.499824][0.775842,0.820878,0][0.862884,0.107992,0.697291][0.653052,0.707355,0.270503][0.692601,0.871894,0][0.607975,0.30053,0.591704][0.445712,0.875932,0.184621][0.667013,0.802546,0][0.465324,0.300529,0.805197][0.341133,0.875931,0.341134][0.725663,0.7666,0][0.251831,0.300529,0.947848][0.18462,0.875931,0.445713][0.766093,0.710947,0][0.357418,0.107992,1.20276][0.270502,0.707356,0.653052][0.833224,0.741889,0][0.357418,0.107992,1.20276][0.270502,0.707356,0.653052][0.833224,0.741889,0][0.660423,0.107992,1.0003][0.499824,0.707355,0.499824][0.775842,0.820878,0][0.465324,0.300529,0.805197][0.341133,0.875931,0.341134][0.725663,0.7666,0][0.251831,0.300529,0.947848][0.18462,0.875931,0.445713][0.766093,0.710947,0][-1.97329e-007,0.300529,0.99794][-1.32644e-007,0.875931,0.482436][0.782148,0.644057,0][-2.74555e-007,0.107992,1.27385][-1.50847e-007,0.707356,0.706858][0.85601,0.646955,0][-2.74555e-007,0.107992,1.27385][-1.50847e-007,0.707356,0.706858][0.85601,0.646955,0][0.357418,0.107992,1.20276][0.270502,0.707356,0.653052][0.833224,0.741889,0][0.251831,0.300529,0.947848][0.18462,0.875931,0.445713][0.766093,0.710947,0][-1.97329e-007,0.300529,0.99794][-1.32644e-007,0.875931,0.482436][0.782148,0.644057,0][-0.251832,0.300529,0.947848][-0.18462,0.875931,0.445712][0.771383,0.576116,0][-0.357419,0.107992,1.20276][-0.270503,0.707356,0.653051][0.840731,0.550528,0][-0.357419,0.107992,1.20276][-0.270503,0.707356,0.653051][0.840731,0.550528,0][-2.74555e-007,0.107992,1.27385][-1.50847e-007,0.707356,0.706858][0.85601,0.646955,0][-1.97329e-007,0.300529,0.99794][-1.32644e-007,0.875931,0.482436][0.782148,0.644057,0][-0.251832,0.300529,0.947848][-0.18462,0.875931,0.445712][0.771383,0.576116,0][-0.465324,0.300529,0.805197][-0.341133,0.875931,0.341134][0.735438,0.517466,0][-0.660423,0.107992,1.0003][-0.499824,0.707356,0.499824][0.789715,0.467287,0][-0.660423,0.107992,1.0003][-0.499824,0.707356,0.499824][0.789715,0.467287,0][-0.357419,0.107992,1.20276][-0.270503,0.707356,0.653051][0.840731,0.550528,0][-0.251832,0.300529,0.947848][-0.18462,0.875931,0.445712][0.771383,0.576116,0][-0.465324,0.300529,0.805197][-0.341133,0.875931,0.341134][0.735438,0.517466,0][-0.607975,0.30053,0.591704][-0.445712,0.875932,0.18462][0.679784,0.477036,0][-0.862884,0.107992,0.697291][-0.653052,0.707355,0.270503][0.710727,0.409905,0][-0.862884,0.107992,0.697291][-0.653052,0.707355,0.270503][0.710727,0.409905,0][-0.660423,0.107992,1.0003][-0.499824,0.707356,0.499824][0.789715,0.467287,0][-0.465324,0.300529,0.805197][-0.341133,0.875931,0.341134][0.735438,0.517466,0][-0.607975,0.30053,0.591704][-0.445712,0.875932,0.18462][0.679784,0.477036,0][-0.658068,0.300529,0.339872][-0.482435,0.875932,-7.50927e-007][0.612895,0.460981,0][-0.933979,0.107992,0.339872][-0.706858,0.707355,-3.36665e-007][0.615793,0.387119,0][-0.933979,0.107992,0.339872][-0.706858,0.707355,-3.36665e-007][0.615793,0.387119,0][-0.862884,0.107992,0.697291][-0.653052,0.707355,0.270503][0.710727,0.409905,0][-0.607975,0.30053,0.591704][-0.445712,0.875932,0.18462][0.679784,0.477036,0][-0.933979,0.107992,0.339872][-0.706858,0.707355,-3.36665e-007][0.615793,0.387119,0][-0.862884,0.107992,-0.0175459][-0.653051,0.707356,-0.270503][0.519365,0.402397,0][-1.05062,-0.165979,-0.0953071][-0.802601,0.496412,-0.330767][0.50052,0.351325,0][-1.05062,-0.165979,-0.0953071][-0.802601,0.496412,-0.330767][0.50052,0.351325,0][-1.13718,-0.165979,0.339872][-0.867264,0.497848,-0.000851172][0.617927,0.332723,0][-0.933979,0.107992,0.339872][-0.706858,0.707355,-3.36665e-007][0.615793,0.387119,0][-0.862884,0.107992,-0.0175459][-0.653051,0.707356,-0.270503][0.519365,0.402397,0][-0.660423,0.107992,-0.320551][-0.499824,0.707355,-0.499824][0.436124,0.453414,0][-0.804107,-0.165979,-0.464235][-0.613023,0.498403,-0.613023][0.399169,0.413441,0][-0.804107,-0.165979,-0.464235][-0.613023,0.498403,-0.613023][0.399169,0.413441,0][-1.05062,-0.165979,-0.0953071][-0.802601,0.496412,-0.330767][0.50052,0.351325,0][-0.862884,0.107992,-0.0175459][-0.653051,0.707356,-0.270503][0.519365,0.402397,0][-0.660423,0.107992,-0.320551][-0.499824,0.707355,-0.499824][0.436124,0.453414,0][-0.357418,0.107992,-0.523012][-0.270503,0.707355,-0.653052][0.378743,0.532402,0][-0.435179,-0.165979,-0.710744][-0.331766,0.498403,-0.800953][0.329303,0.509613,0][-0.435179,-0.165979,-0.710744][-0.331766,0.498403,-0.800953][0.329303,0.509613,0][-0.804107,-0.165979,-0.464235][-0.613023,0.498403,-0.613023][0.399169,0.413441,0][-0.660423,0.107992,-0.320551][-0.499824,0.707355,-0.499824][0.436124,0.453414,0][-0.357418,0.107992,-0.523012][-0.270503,0.707355,-0.653052][0.378743,0.532402,0][1.70771e-007,0.107992,-0.594106][2.05993e-007,0.707355,-0.706858][0.355957,0.627336,0][2.12164e-007,-0.165979,-0.797306][1.80159e-007,0.498403,-0.866946][0.30156,0.625202,0][2.12164e-007,-0.165979,-0.797306][1.80159e-007,0.498403,-0.866946][0.30156,0.625202,0][-0.435179,-0.165979,-0.710744][-0.331766,0.498403,-0.800953][0.329303,0.509613,0][-0.357418,0.107992,-0.523012][-0.270503,0.707355,-0.653052][0.378743,0.532402,0][1.70771e-007,0.107992,-0.594106][2.05993e-007,0.707355,-0.706858][0.355957,0.627336,0][0.357418,0.107992,-0.523011][0.270503,0.707355,-0.653052][0.371235,0.723764,0][0.43518,-0.165979,-0.710744][0.331766,0.498403,-0.800953][0.320162,0.742609,0][0.43518,-0.165979,-0.710744][0.331766,0.498403,-0.800953][0.320162,0.742609,0][2.12164e-007,-0.165979,-0.797306][1.80159e-007,0.498403,-0.866946][0.30156,0.625202,0][1.70771e-007,0.107992,-0.594106][2.05993e-007,0.707355,-0.706858][0.355957,0.627336,0][0.357418,0.107992,-0.523011][0.270503,0.707355,-0.653052][0.371235,0.723764,0][0.660423,0.107992,-0.32055][0.499824,0.707355,-0.499824][0.422251,0.807005,0][0.804107,-0.165979,-0.464234][0.58966,0.513704,-0.623225][0.382278,0.84396,0][0.804107,-0.165979,-0.464234][0.58966,0.513704,-0.623225][0.382278,0.84396,0][0.43518,-0.165979,-0.710744][0.331766,0.498403,-0.800953][0.320162,0.742609,0][0.357418,0.107992,-0.523011][0.270503,0.707355,-0.653052][0.371235,0.723764,0][0.660423,0.107992,-0.32055][0.499824,0.707355,-0.499824][0.422251,0.807005,0][0.862884,0.107992,-0.0175455][0.653052,0.707355,-0.270503][0.501239,0.864386,0][1.05062,-0.165979,-0.0953067][0.749704,0.59484,-0.290015][0.478451,0.913825,0][1.05062,-0.165979,-0.0953067][0.749704,0.59484,-0.290015][0.478451,0.913825,0][0.804107,-0.165979,-0.464234][0.58966,0.513704,-0.623225][0.382278,0.84396,0][0.660423,0.107992,-0.32055][0.499824,0.707355,-0.499824][0.422251,0.807005,0][0.862884,0.107992,-0.0175455][0.653052,0.707355,-0.270503][0.501239,0.864386,0][0.933979,0.107992,0.339873][0.706858,0.707355,0][0.596174,0.887172,0][1.13718,-0.165979,0.339873][0.866945,0.498403,3.49103e-007][0.594039,0.941569,0][1.13718,-0.165979,0.339873][0.866945,0.498403,3.49103e-007][0.594039,0.941569,0][1.05062,-0.165979,-0.0953067][0.749704,0.59484,-0.290015][0.478451,0.913825,0][0.862884,0.107992,-0.0175455][0.653052,0.707355,-0.270503][0.501239,0.864386,0][0.933979,0.107992,0.339873][0.706858,0.707355,0][0.596174,0.887172,0][0.862884,0.107992,0.697291][0.653052,0.707355,0.270503][0.692601,0.871894,0][1.05062,-0.165979,0.775052][0.800953,0.498403,0.331766][0.711446,0.922967,0][1.05062,-0.165979,0.775052][0.800953,0.498403,0.331766][0.711446,0.922967,0][1.13718,-0.165979,0.339873][0.866945,0.498403,3.49103e-007][0.594039,0.941569,0][0.933979,0.107992,0.339873][0.706858,0.707355,0][0.596174,0.887172,0][0.862884,0.107992,0.697291][0.653052,0.707355,0.270503][0.692601,0.871894,0][0.660423,0.107992,1.0003][0.499824,0.707355,0.499824][0.775842,0.820878,0][0.804107,-0.165979,1.14398][0.613023,0.498403,0.613023][0.812797,0.860851,0][0.804107,-0.165979,1.14398][0.613023,0.498403,0.613023][0.812797,0.860851,0][1.05062,-0.165979,0.775052][0.800953,0.498403,0.331766][0.711446,0.922967,0][0.862884,0.107992,0.697291][0.653052,0.707355,0.270503][0.692601,0.871894,0][0.660423,0.107992,1.0003][0.499824,0.707355,0.499824][0.775842,0.820878,0][0.357418,0.107992,1.20276][0.270502,0.707356,0.653052][0.833224,0.741889,0][0.435179,-0.165979,1.39049][0.331766,0.498403,0.800953][0.882663,0.764678,0][0.435179,-0.165979,1.39049][0.331766,0.498403,0.800953][0.882663,0.764678,0][0.804107,-0.165979,1.14398][0.613023,0.498403,0.613023][0.812797,0.860851,0][0.660423,0.107992,1.0003][0.499824,0.707355,0.499824][0.775842,0.820878,0][0.357418,0.107992,1.20276][0.270502,0.707356,0.653052][0.833224,0.741889,0][-2.74555e-007,0.107992,1.27385][-1.50847e-007,0.707356,0.706858][0.85601,0.646955,0][-3.30092e-007,-0.165979,1.47705][-3.43074e-007,0.498403,0.866945][0.910406,0.649089,0][-3.30092e-007,-0.165979,1.47705][-3.43074e-007,0.498403,0.866945][0.910406,0.649089,0][0.435179,-0.165979,1.39049][0.331766,0.498403,0.800953][0.882663,0.764678,0][0.357418,0.107992,1.20276][0.270502,0.707356,0.653052][0.833224,0.741889,0][-2.74555e-007,0.107992,1.27385][-1.50847e-007,0.707356,0.706858][0.85601,0.646955,0][-0.357419,0.107992,1.20276][-0.270503,0.707356,0.653051][0.840731,0.550528,0][-0.43518,-0.165979,1.39049][-0.331766,0.498403,0.800953][0.891804,0.531683,0][-0.43518,-0.165979,1.39049][-0.331766,0.498403,0.800953][0.891804,0.531683,0][-3.30092e-007,-0.165979,1.47705][-3.43074e-007,0.498403,0.866945][0.910406,0.649089,0][-2.74555e-007,0.107992,1.27385][-1.50847e-007,0.707356,0.706858][0.85601,0.646955,0][-0.357419,0.107992,1.20276][-0.270503,0.707356,0.653051][0.840731,0.550528,0][-0.660423,0.107992,1.0003][-0.499824,0.707356,0.499824][0.789715,0.467287,0][-0.804107,-0.165979,1.14398][-0.613023,0.498403,0.613023][0.829688,0.430332,0][-0.804107,-0.165979,1.14398][-0.613023,0.498403,0.613023][0.829688,0.430332,0][-0.43518,-0.165979,1.39049][-0.331766,0.498403,0.800953][0.891804,0.531683,0][-0.357419,0.107992,1.20276][-0.270503,0.707356,0.653051][0.840731,0.550528,0][-0.660423,0.107992,1.0003][-0.499824,0.707356,0.499824][0.789715,0.467287,0][-0.862884,0.107992,0.697291][-0.653052,0.707355,0.270503][0.710727,0.409905,0][-1.05062,-0.165979,0.775052][-0.800953,0.498403,0.331766][0.733515,0.360466,0][-1.05062,-0.165979,0.775052][-0.800953,0.498403,0.331766][0.733515,0.360466,0][-0.804107,-0.165979,1.14398][-0.613023,0.498403,0.613023][0.829688,0.430332,0][-0.660423,0.107992,1.0003][-0.499824,0.707356,0.499824][0.789715,0.467287,0][-0.862884,0.107992,0.697291][-0.653052,0.707355,0.270503][0.710727,0.409905,0][-0.933979,0.107992,0.339872][-0.706858,0.707355,-3.36665e-007][0.615793,0.387119,0][-1.13718,-0.165979,0.339872][-0.867264,0.497848,-0.000851172][0.617927,0.332723,0][-1.13718,-0.165979,0.339872][-0.867264,0.497848,-0.000851172][0.617927,0.332723,0][-1.05062,-0.165979,0.775052][-0.800953,0.498403,0.331766][0.733515,0.360466,0][-0.862884,0.107992,0.697291][-0.653052,0.707355,0.270503][0.710727,0.409905,0][-1.13718,-0.165979,0.339872][-0.867264,0.497848,-0.000851172][0.617927,0.332723,0][-1.05062,-0.165979,-0.0953071][-0.802601,0.496412,-0.330767][0.50052,0.351325,0][-1.13789,-0.38601,-0.137625][-0.846749,0.443615,-0.293634][0.490108,0.327518,0][-1.13789,-0.38601,-0.137625][-0.846749,0.443615,-0.293634][0.490108,0.327518,0][-1.23194,-0.378842,0.339872][-0.909482,0.415613,0.0104047][0.618922,0.307354,0][-1.13718,-0.165979,0.339872][-0.867264,0.497848,-0.000851172][0.617927,0.332723,0][-1.05062,-0.165979,-0.0953071][-0.802601,0.496412,-0.330767][0.50052,0.351325,0][-0.804107,-0.165979,-0.464235][-0.613023,0.498403,-0.613023][0.399169,0.413441,0][-0.871116,-0.378842,-0.531243][-0.646687,0.406708,-0.645278][0.381934,0.394798,0][-0.871116,-0.378842,-0.531243][-0.646687,0.406708,-0.645278][0.381934,0.394798,0][-1.13789,-0.38601,-0.137625][-0.846749,0.443615,-0.293634][0.490108,0.327518,0][-1.05062,-0.165979,-0.0953071][-0.802601,0.496412,-0.330767][0.50052,0.351325,0][-0.804107,-0.165979,-0.464235][-0.613023,0.498403,-0.613023][0.399169,0.413441,0][-0.435179,-0.165979,-0.710744][-0.331766,0.498403,-0.800953][0.329303,0.509613,0][-0.471444,-0.378842,-0.798295][-0.349603,0.406708,-0.844018][0.306247,0.498986,0][-0.471444,-0.378842,-0.798295][-0.349603,0.406708,-0.844018][0.306247,0.498986,0][-0.871116,-0.378842,-0.531243][-0.646687,0.406708,-0.645278][0.381934,0.394798,0][-0.804107,-0.165979,-0.464235][-0.613023,0.498403,-0.613023][0.399169,0.413441,0][-0.435179,-0.165979,-0.710744][-0.331766,0.498403,-0.800953][0.329303,0.509613,0][2.12164e-007,-0.165979,-0.797306][1.80159e-007,0.498403,-0.866946][0.30156,0.625202,0][2.30605e-007,-0.378841,-0.892071][1.72279e-007,0.406708,-0.913558][0.276191,0.624207,0][2.30605e-007,-0.378841,-0.892071][1.72279e-007,0.406708,-0.913558][0.276191,0.624207,0][-0.471444,-0.378842,-0.798295][-0.349603,0.406708,-0.844018][0.306247,0.498986,0][-0.435179,-0.165979,-0.710744][-0.331766,0.498403,-0.800953][0.329303,0.509613,0][2.12164e-007,-0.165979,-0.797306][1.80159e-007,0.498403,-0.866946][0.30156,0.625202,0][0.43518,-0.165979,-0.710744][0.331766,0.498403,-0.800953][0.320162,0.742609,0][0.471445,-0.378842,-0.798295][0.349604,0.406708,-0.844018][0.296344,0.751398,0][0.471445,-0.378842,-0.798295][0.349604,0.406708,-0.844018][0.296344,0.751398,0][2.30605e-007,-0.378841,-0.892071][1.72279e-007,0.406708,-0.913558][0.276191,0.624207,0][2.12164e-007,-0.165979,-0.797306][1.80159e-007,0.498403,-0.866946][0.30156,0.625202,0][0.43518,-0.165979,-0.710744][0.331766,0.498403,-0.800953][0.320162,0.742609,0][0.804107,-0.165979,-0.464234][0.58966,0.513704,-0.623225][0.382278,0.84396,0][0.871116,-0.378842,-0.531243][0.605239,0.406066,-0.684687][0.363636,0.861195,0][0.871116,-0.378842,-0.531243][0.605239,0.406066,-0.684687][0.363636,0.861195,0][0.471445,-0.378842,-0.798295][0.349604,0.406708,-0.844018][0.296344,0.751398,0][0.43518,-0.165979,-0.710744][0.331766,0.498403,-0.800953][0.320162,0.742609,0][0.804107,-0.165979,-0.464234][0.58966,0.513704,-0.623225][0.382278,0.84396,0][1.05062,-0.165979,-0.0953067][0.749704,0.59484,-0.290015][0.478451,0.913825,0][1.22171,-0.38362,-0.132386][0.84148,0.511114,-0.17514][0.466728,0.959237,0][1.22171,-0.38362,-0.132386][0.84148,0.511114,-0.17514][0.466728,0.959237,0][0.871116,-0.378842,-0.531243][0.605239,0.406066,-0.684687][0.363636,0.861195,0][0.804107,-0.165979,-0.464234][0.58966,0.513704,-0.623225][0.382278,0.84396,0][1.05062,-0.165979,-0.0953067][0.749704,0.59484,-0.290015][0.478451,0.913825,0][1.13718,-0.165979,0.339873][0.866945,0.498403,3.49103e-007][0.594039,0.941569,0][1.23194,-0.378842,0.339873][0.902915,0.426587,0.0526035][0.593044,0.966937,0][1.23194,-0.378842,0.339873][0.902915,0.426587,0.0526035][0.593044,0.966937,0][1.22171,-0.38362,-0.132386][0.84148,0.511114,-0.17514][0.466728,0.959237,0][1.05062,-0.165979,-0.0953067][0.749704,0.59484,-0.290015][0.478451,0.913825,0][1.13718,-0.165979,0.339873][0.866945,0.498403,3.49103e-007][0.594039,0.941569,0][1.05062,-0.165979,0.775052][0.800953,0.498403,0.331766][0.711446,0.922967,0][1.13817,-0.378842,0.811317][0.844017,0.406708,0.349604][0.720235,0.946785,0][1.13817,-0.378842,0.811317][0.844017,0.406708,0.349604][0.720235,0.946785,0][1.23194,-0.378842,0.339873][0.902915,0.426587,0.0526035][0.593044,0.966937,0][1.13718,-0.165979,0.339873][0.866945,0.498403,3.49103e-007][0.594039,0.941569,0][1.05062,-0.165979,0.775052][0.800953,0.498403,0.331766][0.711446,0.922967,0][0.804107,-0.165979,1.14398][0.613023,0.498403,0.613023][0.812797,0.860851,0][0.871116,-0.378842,1.21099][0.645983,0.406708,0.645983][0.830032,0.879493,0][0.871116,-0.378842,1.21099][0.645983,0.406708,0.645983][0.830032,0.879493,0][1.13817,-0.378842,0.811317][0.844017,0.406708,0.349604][0.720235,0.946785,0][1.05062,-0.165979,0.775052][0.800953,0.498403,0.331766][0.711446,0.922967,0][0.804107,-0.165979,1.14398][0.613023,0.498403,0.613023][0.812797,0.860851,0][0.435179,-0.165979,1.39049][0.331766,0.498403,0.800953][0.882663,0.764678,0][0.471444,-0.378842,1.47804][0.349603,0.406708,0.844018][0.905719,0.775306,0][0.471444,-0.378842,1.47804][0.349603,0.406708,0.844018][0.905719,0.775306,0][0.871116,-0.378842,1.21099][0.645983,0.406708,0.645983][0.830032,0.879493,0][0.804107,-0.165979,1.14398][0.613023,0.498403,0.613023][0.812797,0.860851,0][0.435179,-0.165979,1.39049][0.331766,0.498403,0.800953][0.882663,0.764678,0][-3.30092e-007,-0.165979,1.47705][-3.43074e-007,0.498403,0.866945][0.910406,0.649089,0][-3.568e-007,-0.378842,1.57182][-2.25586e-007,0.406708,0.913558][0.935775,0.650085,0][-3.568e-007,-0.378842,1.57182][-2.25586e-007,0.406708,0.913558][0.935775,0.650085,0][0.471444,-0.378842,1.47804][0.349603,0.406708,0.844018][0.905719,0.775306,0][0.435179,-0.165979,1.39049][0.331766,0.498403,0.800953][0.882663,0.764678,0][-3.30092e-007,-0.165979,1.47705][-3.43074e-007,0.498403,0.866945][0.910406,0.649089,0][-0.43518,-0.165979,1.39049][-0.331766,0.498403,0.800953][0.891804,0.531683,0][-0.471445,-0.378842,1.47804][-0.349604,0.406708,0.844018][0.915623,0.522894,0][-0.471445,-0.378842,1.47804][-0.349604,0.406708,0.844018][0.915623,0.522894,0][-3.568e-007,-0.378842,1.57182][-2.25586e-007,0.406708,0.913558][0.935775,0.650085,0][-3.30092e-007,-0.165979,1.47705][-3.43074e-007,0.498403,0.866945][0.910406,0.649089,0][-0.43518,-0.165979,1.39049][-0.331766,0.498403,0.800953][0.891804,0.531683,0][-0.804107,-0.165979,1.14398][-0.613023,0.498403,0.613023][0.829688,0.430332,0][-0.871116,-0.378842,1.21099][-0.645983,0.406708,0.645983][0.84833,0.413097,0][-0.871116,-0.378842,1.21099][-0.645983,0.406708,0.645983][0.84833,0.413097,0][-0.471445,-0.378842,1.47804][-0.349604,0.406708,0.844018][0.915623,0.522894,0][-0.43518,-0.165979,1.39049][-0.331766,0.498403,0.800953][0.891804,0.531683,0][-0.804107,-0.165979,1.14398][-0.613023,0.498403,0.613023][0.829688,0.430332,0][-1.05062,-0.165979,0.775052][-0.800953,0.498403,0.331766][0.733515,0.360466,0][-1.13817,-0.378842,0.811317][-0.844018,0.406708,0.349603][0.744143,0.337409,0][-1.13817,-0.378842,0.811317][-0.844018,0.406708,0.349603][0.744143,0.337409,0][-0.871116,-0.378842,1.21099][-0.645983,0.406708,0.645983][0.84833,0.413097,0][-0.804107,-0.165979,1.14398][-0.613023,0.498403,0.613023][0.829688,0.430332,0][-1.05062,-0.165979,0.775052][-0.800953,0.498403,0.331766][0.733515,0.360466,0][-1.13718,-0.165979,0.339872][-0.867264,0.497848,-0.000851172][0.617927,0.332723,0][-1.23194,-0.378842,0.339872][-0.909482,0.415613,0.0104047][0.618922,0.307354,0][-1.23194,-0.378842,0.339872][-0.909482,0.415613,0.0104047][0.618922,0.307354,0][-1.13817,-0.378842,0.811317][-0.844018,0.406708,0.349603][0.744143,0.337409,0][-1.05062,-0.165979,0.775052][-0.800953,0.498403,0.331766][0.733515,0.360466,0][-1.23194,-0.378842,0.339872][-0.909482,0.415613,0.0104047][0.618922,0.307354,0][-1.13789,-0.38601,-0.137625][-0.846749,0.443615,-0.293634][0.490108,0.327518,0][-1.26242,-0.589391,-0.138236][-1.41319,0.796109,-0.260512][0.491253,0.294174,0][-1.26242,-0.589391,-0.138236][-1.41319,0.796109,-0.260512][0.491253,0.294174,0][-1.32671,-0.591705,0.339872][-2.71198,1.20735,0.0851771][0.619917,0.281985,0][-1.23194,-0.378842,0.339872][-0.909482,0.415613,0.0104047][0.618922,0.307354,0][-1.23291,-0.481649,-0.991351][-0.847367,0.0550646,-0.528145][0.262563,0.293114,0][-0.95779,-0.362825,-1.39102][-0.719624,0.183971,-0.669549][0.152682,0.362565,0][-0.948913,-0.58745,-1.45803][-0.728069,0.156792,-0.667332][0.13465,0.364238,0][-0.948913,-0.58745,-1.45803][-0.728069,0.156792,-0.667332][0.13465,0.364238,0][-1.21854,-0.714076,-1.02762][-0.850935,0.0292215,-0.524457][0.252704,0.29658,0][-1.23291,-0.481649,-0.991351][-0.847367,0.0550646,-0.528145][0.262563,0.293114,0][-0.95779,-0.362825,-1.39102][-0.719624,0.183971,-0.669549][0.152682,0.362565,0][-0.526085,-0.242223,-1.65807][-0.391418,0.344041,-0.85348][0.0766577,0.475328,0][-0.522452,-0.45862,-1.74563][-0.399707,0.326573,-0.856495][0.053182,0.475381,0][-0.522452,-0.45862,-1.74563][-0.399707,0.326573,-0.856495][0.053182,0.475381,0][-0.948913,-0.58745,-1.45803][-0.728069,0.156792,-0.667332][0.13465,0.364238,0][-0.95779,-0.362825,-1.39102][-0.719624,0.183971,-0.669549][0.152682,0.362565,0][-0.526085,-0.242223,-1.65807][-0.391418,0.344041,-0.85348][0.0766577,0.475328,0][4.07577e-007,-0.191743,-1.75185][0.00584543,0.402184,-0.91554][0.0460284,0.615176,0][4.22351e-007,-0.404606,-1.84662][0.00601706,0.402212,-0.915527][0.0206597,0.614181,0][4.22351e-007,-0.404606,-1.84662][0.00601706,0.402212,-0.915527][0.0206597,0.614181,0][-0.522452,-0.45862,-1.74563][-0.399707,0.326573,-0.856495][0.053182,0.475381,0][-0.526085,-0.242223,-1.65807][-0.391418,0.344041,-0.85348][0.0766577,0.475328,0][4.07577e-007,-0.191743,-1.75185][0.00584543,0.402184,-0.91554][0.0460284,0.615176,0][0.526086,-0.242223,-1.65807][0.398988,0.326706,-0.85678][0.0656068,0.756995,0][0.522452,-0.45862,-1.74563][0.408275,0.341032,-0.846764][0.0422074,0.755102,0][0.522452,-0.45862,-1.74563][0.408275,0.341032,-0.846764][0.0422074,0.755102,0][4.22351e-007,-0.404606,-1.84662][0.00601706,0.402212,-0.915527][0.0206597,0.614181,0][4.07577e-007,-0.191743,-1.75185][0.00584543,0.402184,-0.91554][0.0460284,0.615176,0][0.526086,-0.242223,-1.65807][0.398988,0.326706,-0.85678][0.0656068,0.756995,0][0.957791,-0.362825,-1.39102][0.687074,0.206223,-0.696707][0.132563,0.875367,0][0.948914,-0.58745,-1.45803][0.685937,0.194736,-0.701119][0.114717,0.872287,0][0.948914,-0.58745,-1.45803][0.685937,0.194736,-0.701119][0.114717,0.872287,0][0.522452,-0.45862,-1.74563][0.408275,0.341032,-0.846764][0.0422074,0.755102,0][0.526086,-0.242223,-1.65807][0.398988,0.326706,-0.85678][0.0656068,0.756995,0][0.957791,-0.362825,-1.39102][0.687074,0.206223,-0.696707][0.132563,0.875367,0][1.23291,-0.481649,-0.99135][0.823377,0.312027,-0.474015][0.236665,0.953214,0][1.30011,-0.714076,-1.02762][0.816226,0.26359,-0.514096][0.226251,0.970824,0][1.30011,-0.714076,-1.02762][0.816226,0.26359,-0.514096][0.226251,0.970824,0][0.948914,-0.58745,-1.45803][0.685937,0.194736,-0.701119][0.114717,0.872287,0][0.957791,-0.362825,-1.39102][0.687074,0.206223,-0.696707][0.132563,0.875367,0][1.22171,-0.38362,-0.132386][0.84148,0.511114,-0.17514][0.466728,0.959237,0][1.23194,-0.378842,0.339873][0.902915,0.426587,0.0526035][0.593044,0.966937,0][1.32671,-0.591705,0.339873][2.75441,1.19134,0.214242][0.592049,0.992306,0][1.32671,-0.591705,0.339873][2.75441,1.19134,0.214242][0.592049,0.992306,0][1.29212,-0.586926,-0.167022][1.35598,0.484604,-0.0879661][0.456716,0.977722,0][1.22171,-0.38362,-0.132386][0.84148,0.511114,-0.17514][0.466728,0.959237,0][1.23194,-0.378842,0.339873][0.902915,0.426587,0.0526035][0.593044,0.966937,0][1.13817,-0.378842,0.811317][0.844017,0.406708,0.349604][0.720235,0.946785,0][1.22572,-0.591705,0.847582][2.47692,1.19356,1.02597][0.729023,0.970604,0][1.22572,-0.591705,0.847582][2.47692,1.19356,1.02597][0.729023,0.970604,0][1.32671,-0.591705,0.339873][2.75441,1.19134,0.214242][0.592049,0.992306,0][1.23194,-0.378842,0.339873][0.902915,0.426587,0.0526035][0.593044,0.966937,0][1.13817,-0.378842,0.811317][0.844017,0.406708,0.349604][0.720235,0.946785,0][0.871116,-0.378842,1.21099][0.645983,0.406708,0.645983][0.830032,0.879493,0][0.938125,-0.591705,1.278][1.89575,1.19356,1.89575][0.847266,0.898135,0][0.938125,-0.591705,1.278][1.89575,1.19356,1.89575][0.847266,0.898135,0][1.22572,-0.591705,0.847582][2.47692,1.19356,1.02597][0.729023,0.970604,0][1.13817,-0.378842,0.811317][0.844017,0.406708,0.349604][0.720235,0.946785,0][0.871116,-0.378842,1.21099][0.645983,0.406708,0.645983][0.830032,0.879493,0][0.471444,-0.378842,1.47804][0.349603,0.406708,0.844018][0.905719,0.775306,0][0.507709,-0.591705,1.56559][1.02597,1.19356,2.47692][0.928776,0.785933,0][0.507709,-0.591705,1.56559][1.02597,1.19356,2.47692][0.928776,0.785933,0][0.938125,-0.591705,1.278][1.89575,1.19356,1.89575][0.847266,0.898135,0][0.871116,-0.378842,1.21099][0.645983,0.406708,0.645983][0.830032,0.879493,0][0.471444,-0.378842,1.47804][0.349603,0.406708,0.844018][0.905719,0.775306,0][-3.568e-007,-0.378842,1.57182][-2.25586e-007,0.406708,0.913558][0.935775,0.650085,0][-3.83565e-007,-0.591705,1.66658][-6.1922e-007,1.19356,2.681][0.961143,0.65108,0][-3.83565e-007,-0.591705,1.66658][-6.1922e-007,1.19356,2.681][0.961143,0.65108,0][0.507709,-0.591705,1.56559][1.02597,1.19356,2.47692][0.928776,0.785933,0][0.471444,-0.378842,1.47804][0.349603,0.406708,0.844018][0.905719,0.775306,0][-3.568e-007,-0.378842,1.57182][-2.25586e-007,0.406708,0.913558][0.935775,0.650085,0][-0.471445,-0.378842,1.47804][-0.349604,0.406708,0.844018][0.915623,0.522894,0][-0.50771,-0.591705,1.56559][-1.02597,1.19356,2.47692][0.939441,0.514105,0][-0.50771,-0.591705,1.56559][-1.02597,1.19356,2.47692][0.939441,0.514105,0][-3.83565e-007,-0.591705,1.66658][-6.1922e-007,1.19356,2.681][0.961143,0.65108,0][-3.568e-007,-0.378842,1.57182][-2.25586e-007,0.406708,0.913558][0.935775,0.650085,0][-0.471445,-0.378842,1.47804][-0.349604,0.406708,0.844018][0.915623,0.522894,0][-0.871116,-0.378842,1.21099][-0.645983,0.406708,0.645983][0.84833,0.413097,0][-0.938125,-0.591705,1.278][-1.89575,1.19356,1.89575][0.866972,0.395862,0][-0.938125,-0.591705,1.278][-1.89575,1.19356,1.89575][0.866972,0.395862,0][-0.50771,-0.591705,1.56559][-1.02597,1.19356,2.47692][0.939441,0.514105,0][-0.471445,-0.378842,1.47804][-0.349604,0.406708,0.844018][0.915623,0.522894,0][-0.871116,-0.378842,1.21099][-0.645983,0.406708,0.645983][0.84833,0.413097,0][-1.13817,-0.378842,0.811317][-0.844018,0.406708,0.349603][0.744143,0.337409,0][-1.22572,-0.591705,0.847582][-2.47692,1.19356,1.02597][0.754771,0.314353,0][-1.22572,-0.591705,0.847582][-2.47692,1.19356,1.02597][0.754771,0.314353,0][-0.938125,-0.591705,1.278][-1.89575,1.19356,1.89575][0.866972,0.395862,0][-0.871116,-0.378842,1.21099][-0.645983,0.406708,0.645983][0.84833,0.413097,0][-1.13817,-0.378842,0.811317][-0.844018,0.406708,0.349603][0.744143,0.337409,0][-1.23194,-0.378842,0.339872][-0.909482,0.415613,0.0104047][0.618922,0.307354,0][-1.32671,-0.591705,0.339872][-2.71198,1.20735,0.0851771][0.619917,0.281985,0][-1.32671,-0.591705,0.339872][-2.71198,1.20735,0.0851771][0.619917,0.281985,0][-1.22572,-0.591705,0.847582][-2.47692,1.19356,1.02597][0.754771,0.314353,0][-1.13817,-0.378842,0.811317][-0.844018,0.406708,0.349603][0.744143,0.337409,0][-0.109929,0.500689,0.294339][-2.74075,1.32069,-1.13526][0.594948,0.60724,0][-0.118986,0.500689,0.339873][-2.96657,1.32069,-6.17495e-007][0.607233,0.605293,0][-0.0892394,0.500689,0.339873][0,1,0][0.60692,0.613256,0][-0.0892394,0.500689,0.339873][0,1,0][0.60692,0.613256,0][-0.0824465,0.500689,0.305722][0,1,0][0.597707,0.614716,0][-0.109929,0.500689,0.294339][-2.74075,1.32069,-1.13526][0.594948,0.60724,0][-0.0841357,0.500689,0.255737][-2.09768,1.32069,-2.09768][0.584344,0.613739,0][-0.109929,0.500689,0.294339][-2.74075,1.32069,-1.13526][0.594948,0.60724,0][-0.0824465,0.500689,0.305722][0,1,0][0.597707,0.614716,0][-0.0824465,0.500689,0.305722][0,1,0][0.597707,0.614716,0][-0.0631018,0.500689,0.276771][0,1,0][0.589754,0.619591,0][-0.0841357,0.500689,0.255737][-2.09768,1.32069,-2.09768][0.584344,0.613739,0][-0.0455339,0.500689,0.229944][-1.13526,1.32069,-2.74075][0.577034,0.623802,0][-0.0841357,0.500689,0.255737][-2.09768,1.32069,-2.09768][0.584344,0.613739,0][-0.0631018,0.500689,0.276771][0,1,0][0.589754,0.619591,0][-0.0631018,0.500689,0.276771][0,1,0][0.589754,0.619591,0][-0.0341504,0.500689,0.257426][0,1,0][0.584271,0.627138,0][-0.0455339,0.500689,0.229944][-1.13526,1.32069,-2.74075][0.577034,0.623802,0][0,0.500689,0.220887][8.11357e-007,1.32069,-2.96657][0.574131,0.635896,0][-0.0455339,0.500689,0.229944][-1.13526,1.32069,-2.74075][0.577034,0.623802,0][-0.0341504,0.500689,0.257426][0,1,0][0.584271,0.627138,0][-0.0341504,0.500689,0.257426][0,1,0][0.584271,0.627138,0][0,0.500689,0.250633][0,1,0][0.582094,0.636208,0][0,0.500689,0.220887][8.11357e-007,1.32069,-2.96657][0.574131,0.635896,0][0.0455339,0.500689,0.229944][1.13526,1.32069,-2.74075][0.576077,0.648181,0][0,0.500689,0.220887][8.11357e-007,1.32069,-2.96657][0.574131,0.635896,0][0,0.500689,0.250633][0,1,0][0.582094,0.636208,0][0,0.500689,0.250633][0,1,0][0.582094,0.636208,0][0.0341505,0.500689,0.257426][0,1,0][0.583553,0.645422,0][0.0455339,0.500689,0.229944][1.13526,1.32069,-2.74075][0.576077,0.648181,0][0.0841358,0.500689,0.255737][2.09768,1.32069,-2.09768][0.582576,0.658785,0][0.0455339,0.500689,0.229944][1.13526,1.32069,-2.74075][0.576077,0.648181,0][0.0341505,0.500689,0.257426][0,1,0][0.583553,0.645422,0][0.0341505,0.500689,0.257426][0,1,0][0.583553,0.645422,0][0.0631018,0.500689,0.276771][0,1,0][0.588428,0.653375,0][0.0841358,0.500689,0.255737][2.09768,1.32069,-2.09768][0.582576,0.658785,0][0.109929,0.500689,0.294339][2.74075,1.32069,-1.13526][0.592639,0.666095,0][0.0841358,0.500689,0.255737][2.09768,1.32069,-2.09768][0.582576,0.658785,0][0.0631018,0.500689,0.276771][0,1,0][0.588428,0.653375,0][0.0631018,0.500689,0.276771][0,1,0][0.588428,0.653375,0][0.0824465,0.500689,0.305722][0,1,0][0.595975,0.658858,0][0.109929,0.500689,0.294339][2.74075,1.32069,-1.13526][0.592639,0.666095,0][0.118986,0.500689,0.339873][2.96657,1.32069,1.54804e-006][0.604733,0.668998,0][0.109929,0.500689,0.294339][2.74075,1.32069,-1.13526][0.592639,0.666095,0][0.0824465,0.500689,0.305722][0,1,0][0.595975,0.658858,0][0.0824465,0.500689,0.305722][0,1,0][0.595975,0.658858,0][0.0892394,0.500689,0.339873][0,1,0][0.605046,0.661035,0][0.118986,0.500689,0.339873][2.96657,1.32069,1.54804e-006][0.604733,0.668998,0][0.109929,0.500689,0.385407][2.74075,1.32069,1.13526][0.617018,0.667052,0][0.118986,0.500689,0.339873][2.96657,1.32069,1.54804e-006][0.604733,0.668998,0][0.0892394,0.500689,0.339873][0,1,0][0.605046,0.661035,0][0.0892394,0.500689,0.339873][0,1,0][0.605046,0.661035,0][0.0824465,0.500689,0.374023][0,1,0][0.614259,0.659575,0][0.109929,0.500689,0.385407][2.74075,1.32069,1.13526][0.617018,0.667052,0][0.0841357,0.500689,0.424008][2.09768,1.32069,2.09768][0.627623,0.660553,0][0.109929,0.500689,0.385407][2.74075,1.32069,1.13526][0.617018,0.667052,0][0.0824465,0.500689,0.374023][0,1,0][0.614259,0.659575,0][0.0824465,0.500689,0.374023][0,1,0][0.614259,0.659575,0][0.0631018,0.500689,0.402974][0,1,0][0.622213,0.654701,0][0.0841357,0.500689,0.424008][2.09768,1.32069,2.09768][0.627623,0.660553,0][0.0455339,0.500689,0.449801][1.13526,1.32069,2.74075][0.634933,0.65049,0][0.0841357,0.500689,0.424008][2.09768,1.32069,2.09768][0.627623,0.660553,0][0.0631018,0.500689,0.402974][0,1,0][0.622213,0.654701,0][0.0631018,0.500689,0.402974][0,1,0][0.622213,0.654701,0][0.0341504,0.500689,0.422319][0,1,0][0.627695,0.647154,0][0.0455339,0.500689,0.449801][1.13526,1.32069,2.74075][0.634933,0.65049,0][0,0.500689,0.458858][-2.03484e-006,1.32069,2.96657][0.637836,0.638396,0][0.0455339,0.500689,0.449801][1.13526,1.32069,2.74075][0.634933,0.65049,0][0.0341504,0.500689,0.422319][0,1,0][0.627695,0.647154,0][0.0341504,0.500689,0.422319][0,1,0][0.627695,0.647154,0][0,0.500689,0.429112][0,1,0][0.629873,0.638083,0][0,0.500689,0.458858][-2.03484e-006,1.32069,2.96657][0.637836,0.638396,0][-0.045534,0.500689,0.449801][-1.13526,1.32069,2.74075][0.635889,0.626111,0][0,0.500689,0.458858][-2.03484e-006,1.32069,2.96657][0.637836,0.638396,0][0,0.500689,0.429112][0,1,0][0.629873,0.638083,0][0,0.500689,0.429112][0,1,0][0.629873,0.638083,0][-0.0341505,0.500689,0.422319][0,1,0][0.628413,0.62887,0][-0.045534,0.500689,0.449801][-1.13526,1.32069,2.74075][0.635889,0.626111,0][-0.0841358,0.500689,0.424008][-2.09768,1.32069,2.09768][0.62939,0.615506,0][-0.045534,0.500689,0.449801][-1.13526,1.32069,2.74075][0.635889,0.626111,0][-0.0341505,0.500689,0.422319][0,1,0][0.628413,0.62887,0][-0.0341505,0.500689,0.422319][0,1,0][0.628413,0.62887,0][-0.0631018,0.500689,0.402974][0,1,0][0.623538,0.620916,0][-0.0841358,0.500689,0.424008][-2.09768,1.32069,2.09768][0.62939,0.615506,0][-0.109929,0.500689,0.385406][-2.74075,1.32069,1.13526][0.619327,0.608196,0][-0.0841358,0.500689,0.424008][-2.09768,1.32069,2.09768][0.62939,0.615506,0][-0.0631018,0.500689,0.402974][0,1,0][0.623538,0.620916,0][-0.0631018,0.500689,0.402974][0,1,0][0.623538,0.620916,0][-0.0824465,0.500689,0.374023][0,1,0][0.615991,0.615433,0][-0.109929,0.500689,0.385406][-2.74075,1.32069,1.13526][0.619327,0.608196,0][-0.118986,0.500689,0.339873][-2.96657,1.32069,-6.17495e-007][0.607233,0.605293,0][-0.109929,0.500689,0.385406][-2.74075,1.32069,1.13526][0.619327,0.608196,0][-0.0824465,0.500689,0.374023][0,1,0][0.615991,0.615433,0][-0.0824465,0.500689,0.374023][0,1,0][0.615991,0.615433,0][-0.0892394,0.500689,0.339873][0,1,0][0.60692,0.613256,0][-0.118986,0.500689,0.339873][-2.96657,1.32069,-6.17495e-007][0.607233,0.605293,0][-0.0824465,0.500689,0.305722][0,1,0][0.597707,0.614716,0][-0.0892394,0.500689,0.339873][0,1,0][0.60692,0.613256,0][-0.059493,0.500689,0.339873][0,1,0][0.606608,0.621219,0][-0.059493,0.500689,0.339873][0,1,0][0.606608,0.621219,0][-0.0549643,0.500689,0.317106][0,1,0][0.600466,0.622193,0][-0.0824465,0.500689,0.305722][0,1,0][0.597707,0.614716,0][-0.0631018,0.500689,0.276771][0,1,0][0.589754,0.619591,0][-0.0824465,0.500689,0.305722][0,1,0][0.597707,0.614716,0][-0.0549643,0.500689,0.317106][0,1,0][0.600466,0.622193,0][-0.0549643,0.500689,0.317106][0,1,0][0.600466,0.622193,0][-0.0420679,0.500689,0.297805][0,1,0][0.595163,0.625442,0][-0.0631018,0.500689,0.276771][0,1,0][0.589754,0.619591,0][-0.0341504,0.500689,0.257426][0,1,0][0.584271,0.627138,0][-0.0631018,0.500689,0.276771][0,1,0][0.589754,0.619591,0][-0.0420679,0.500689,0.297805][0,1,0][0.595163,0.625442,0][-0.0420679,0.500689,0.297805][0,1,0][0.595163,0.625442,0][-0.022767,0.500689,0.284908][0,1,0][0.591508,0.630474,0][-0.0341504,0.500689,0.257426][0,1,0][0.584271,0.627138,0][0,0.500689,0.250633][0,1,0][0.582094,0.636208,0][-0.0341504,0.500689,0.257426][0,1,0][0.584271,0.627138,0][-0.022767,0.500689,0.284908][0,1,0][0.591508,0.630474,0][-0.022767,0.500689,0.284908][0,1,0][0.591508,0.630474,0][0,0.500689,0.28038][0,1,0][0.590057,0.636521,0][0,0.500689,0.250633][0,1,0][0.582094,0.636208,0][0.0341505,0.500689,0.257426][0,1,0][0.583553,0.645422,0][0,0.500689,0.250633][0,1,0][0.582094,0.636208,0][0,0.500689,0.28038][0,1,0][0.590057,0.636521,0][0,0.500689,0.28038][0,1,0][0.590057,0.636521,0][0.022767,0.500689,0.284908][0,1,0][0.59103,0.642663,0][0.0341505,0.500689,0.257426][0,1,0][0.583553,0.645422,0][0.0631018,0.500689,0.276771][0,1,0][0.588428,0.653375,0][0.0341505,0.500689,0.257426][0,1,0][0.583553,0.645422,0][0.022767,0.500689,0.284908][0,1,0][0.59103,0.642663,0][0.022767,0.500689,0.284908][0,1,0][0.59103,0.642663,0][0.0420679,0.500689,0.297805][0,1,0][0.59428,0.647965,0][0.0631018,0.500689,0.276771][0,1,0][0.588428,0.653375,0][0.0824465,0.500689,0.305722][0,1,0][0.595975,0.658858,0][0.0631018,0.500689,0.276771][0,1,0][0.588428,0.653375,0][0.0420679,0.500689,0.297805][0,1,0][0.59428,0.647965,0][0.0420679,0.500689,0.297805][0,1,0][0.59428,0.647965,0][0.0549643,0.500689,0.317106][0,1,0][0.599311,0.651621,0][0.0824465,0.500689,0.305722][0,1,0][0.595975,0.658858,0][0.0892394,0.500689,0.339873][0,1,0][0.605046,0.661035,0][0.0824465,0.500689,0.305722][0,1,0][0.595975,0.658858,0][0.0549643,0.500689,0.317106][0,1,0][0.599311,0.651621,0][0.0549643,0.500689,0.317106][0,1,0][0.599311,0.651621,0][0.0594929,0.500689,0.339873][0,1,0][0.605358,0.653072,0][0.0892394,0.500689,0.339873][0,1,0][0.605046,0.661035,0][0.0824465,0.500689,0.374023][0,1,0][0.614259,0.659575,0][0.0892394,0.500689,0.339873][0,1,0][0.605046,0.661035,0][0.0594929,0.500689,0.339873][0,1,0][0.605358,0.653072,0][0.0594929,0.500689,0.339873][0,1,0][0.605358,0.653072,0][0.0549643,0.500689,0.36264][0,1,0][0.611501,0.652099,0][0.0824465,0.500689,0.374023][0,1,0][0.614259,0.659575,0][0.0631018,0.500689,0.402974][0,1,0][0.622213,0.654701,0][0.0824465,0.500689,0.374023][0,1,0][0.614259,0.659575,0][0.0549643,0.500689,0.36264][0,1,0][0.611501,0.652099,0][0.0549643,0.500689,0.36264][0,1,0][0.611501,0.652099,0][0.0420678,0.500689,0.38194][0,1,0][0.616803,0.648849,0][0.0631018,0.500689,0.402974][0,1,0][0.622213,0.654701,0][0.0341504,0.500689,0.422319][0,1,0][0.627695,0.647154,0][0.0631018,0.500689,0.402974][0,1,0][0.622213,0.654701,0][0.0420678,0.500689,0.38194][0,1,0][0.616803,0.648849,0][0.0420678,0.500689,0.38194][0,1,0][0.616803,0.648849,0][0.0227669,0.500689,0.394837][0,1,0][0.620458,0.643818,0][0.0341504,0.500689,0.422319][0,1,0][0.627695,0.647154,0][0,0.500689,0.429112][0,1,0][0.629873,0.638083,0][0.0341504,0.500689,0.422319][0,1,0][0.627695,0.647154,0][0.0227669,0.500689,0.394837][0,1,0][0.620458,0.643818,0][0.0227669,0.500689,0.394837][0,1,0][0.620458,0.643818,0][0,0.500689,0.399366][0,1,0][0.621909,0.637771,0][0,0.500689,0.429112][0,1,0][0.629873,0.638083,0][-0.0341505,0.500689,0.422319][0,1,0][0.628413,0.62887,0][0,0.500689,0.429112][0,1,0][0.629873,0.638083,0][0,0.500689,0.399366][0,1,0][0.621909,0.637771,0][0,0.500689,0.399366][0,1,0][0.621909,0.637771,0][-0.022767,0.500689,0.394837][0,1,0][0.620936,0.631628,0][-0.0341505,0.500689,0.422319][0,1,0][0.628413,0.62887,0][-0.0631018,0.500689,0.402974][0,1,0][0.623538,0.620916,0][-0.0341505,0.500689,0.422319][0,1,0][0.628413,0.62887,0][-0.022767,0.500689,0.394837][0,1,0][0.620936,0.631628,0][-0.022767,0.500689,0.394837][0,1,0][0.620936,0.631628,0][-0.0420679,0.500689,0.38194][0,1,0][0.617687,0.626326,0][-0.0631018,0.500689,0.402974][0,1,0][0.623538,0.620916,0][-0.0824465,0.500689,0.374023][0,1,0][0.615991,0.615433,0][-0.0631018,0.500689,0.402974][0,1,0][0.623538,0.620916,0][-0.0420679,0.500689,0.38194][0,1,0][0.617687,0.626326,0][-0.0420679,0.500689,0.38194][0,1,0][0.617687,0.626326,0][-0.0549643,0.500689,0.36264][0,1,0][0.612655,0.622671,0][-0.0824465,0.500689,0.374023][0,1,0][0.615991,0.615433,0][-0.0892394,0.500689,0.339873][0,1,0][0.60692,0.613256,0][-0.0824465,0.500689,0.374023][0,1,0][0.615991,0.615433,0][-0.0549643,0.500689,0.36264][0,1,0][0.612655,0.622671,0][-0.0549643,0.500689,0.36264][0,1,0][0.612655,0.622671,0][-0.059493,0.500689,0.339873][0,1,0][0.606608,0.621219,0][-0.0892394,0.500689,0.339873][0,1,0][0.60692,0.613256,0][-0.0549643,0.500689,0.317106][0,1,0][0.600466,0.622193,0][-0.059493,0.500689,0.339873][0,1,0][0.606608,0.621219,0][-0.0297465,0.500689,0.339873][0,1,0][0.606296,0.629183,0][-0.0297465,0.500689,0.339873][0,1,0][0.606296,0.629183,0][-0.0274822,0.500689,0.328489][0,1,0][0.603224,0.629669,0][-0.0549643,0.500689,0.317106][0,1,0][0.600466,0.622193,0][-0.0420679,0.500689,0.297805][0,1,0][0.595163,0.625442,0][-0.0549643,0.500689,0.317106][0,1,0][0.600466,0.622193,0][-0.0274822,0.500689,0.328489][0,1,0][0.603224,0.629669,0][-0.0274822,0.500689,0.328489][0,1,0][0.603224,0.629669,0][-0.0210339,0.500689,0.318839][0,1,0][0.600573,0.631294,0][-0.0420679,0.500689,0.297805][0,1,0][0.595163,0.625442,0][-0.022767,0.500689,0.284908][0,1,0][0.591508,0.630474,0][-0.0420679,0.500689,0.297805][0,1,0][0.595163,0.625442,0][-0.0210339,0.500689,0.318839][0,1,0][0.600573,0.631294,0][-0.0210339,0.500689,0.318839][0,1,0][0.600573,0.631294,0][-0.0113835,0.500689,0.31239][0,1,0][0.598746,0.63381,0][-0.022767,0.500689,0.284908][0,1,0][0.591508,0.630474,0][0,0.500689,0.28038][0,1,0][0.590057,0.636521,0][-0.022767,0.500689,0.284908][0,1,0][0.591508,0.630474,0][-0.0113835,0.500689,0.31239][0,1,0][0.598746,0.63381,0][-0.0113835,0.500689,0.31239][0,1,0][0.598746,0.63381,0][0,0.500689,0.310126][0,1,0][0.59802,0.636833,0][0,0.500689,0.28038][0,1,0][0.590057,0.636521,0][0.022767,0.500689,0.284908][0,1,0][0.59103,0.642663,0][0,0.500689,0.28038][0,1,0][0.590057,0.636521,0][0,0.500689,0.310126][0,1,0][0.59802,0.636833,0][0,0.500689,0.310126][0,1,0][0.59802,0.636833,0][0.0113835,0.500689,0.31239][0,1,0][0.598507,0.639904,0][0.022767,0.500689,0.284908][0,1,0][0.59103,0.642663,0][0.0420679,0.500689,0.297805][0,1,0][0.59428,0.647965,0][0.022767,0.500689,0.284908][0,1,0][0.59103,0.642663,0][0.0113835,0.500689,0.31239][0,1,0][0.598507,0.639904,0][0.0113835,0.500689,0.31239][0,1,0][0.598507,0.639904,0][0.0210339,0.500689,0.318839][0,1,0][0.600131,0.642556,0][0.0420679,0.500689,0.297805][0,1,0][0.59428,0.647965,0][0.0549643,0.500689,0.317106][0,1,0][0.599311,0.651621,0][0.0420679,0.500689,0.297805][0,1,0][0.59428,0.647965,0][0.0210339,0.500689,0.318839][0,1,0][0.600131,0.642556,0][0.0210339,0.500689,0.318839][0,1,0][0.600131,0.642556,0][0.0274822,0.500689,0.328489][0,1,0][0.602647,0.644383,0][0.0549643,0.500689,0.317106][0,1,0][0.599311,0.651621,0][0.0594929,0.500689,0.339873][0,1,0][0.605358,0.653072,0][0.0549643,0.500689,0.317106][0,1,0][0.599311,0.651621,0][0.0274822,0.500689,0.328489][0,1,0][0.602647,0.644383,0][0.0274822,0.500689,0.328489][0,1,0][0.602647,0.644383,0][0.0297465,0.500689,0.339873][0,1,0][0.605671,0.645109,0][0.0594929,0.500689,0.339873][0,1,0][0.605358,0.653072,0][0.0549643,0.500689,0.36264][0,1,0][0.611501,0.652099,0][0.0594929,0.500689,0.339873][0,1,0][0.605358,0.653072,0][0.0297465,0.500689,0.339873][0,1,0][0.605671,0.645109,0][0.0297465,0.500689,0.339873][0,1,0][0.605671,0.645109,0][0.0274821,0.500689,0.351256][0,1,0][0.608742,0.644622,0][0.0549643,0.500689,0.36264][0,1,0][0.611501,0.652099,0][0.0420678,0.500689,0.38194][0,1,0][0.616803,0.648849,0][0.0549643,0.500689,0.36264][0,1,0][0.611501,0.652099,0][0.0274821,0.500689,0.351256][0,1,0][0.608742,0.644622,0][0.0274821,0.500689,0.351256][0,1,0][0.608742,0.644622,0][0.0210339,0.500689,0.360907][0,1,0][0.611393,0.642998,0][0.0420678,0.500689,0.38194][0,1,0][0.616803,0.648849,0][0.0227669,0.500689,0.394837][0,1,0][0.620458,0.643818,0][0.0420678,0.500689,0.38194][0,1,0][0.616803,0.648849,0][0.0210339,0.500689,0.360907][0,1,0][0.611393,0.642998,0][0.0210339,0.500689,0.360907][0,1,0][0.611393,0.642998,0][0.0113835,0.500689,0.367355][0,1,0][0.613221,0.640482,0][0.0227669,0.500689,0.394837][0,1,0][0.620458,0.643818,0][0,0.500689,0.399366][0,1,0][0.621909,0.637771,0][0.0227669,0.500689,0.394837][0,1,0][0.620458,0.643818,0][0.0113835,0.500689,0.367355][0,1,0][0.613221,0.640482,0][0.0113835,0.500689,0.367355][0,1,0][0.613221,0.640482,0][0,0.500689,0.369619][0,1,0][0.613946,0.637458,0][0,0.500689,0.399366][0,1,0][0.621909,0.637771,0][-0.022767,0.500689,0.394837][0,1,0][0.620936,0.631628,0][0,0.500689,0.399366][0,1,0][0.621909,0.637771,0][0,0.500689,0.369619][0,1,0][0.613946,0.637458,0][0,0.500689,0.369619][0,1,0][0.613946,0.637458,0][-0.0113835,0.500689,0.367355][0,1,0][0.61346,0.634387,0][-0.022767,0.500689,0.394837][0,1,0][0.620936,0.631628,0][-0.0420679,0.500689,0.38194][0,1,0][0.617687,0.626326,0][-0.022767,0.500689,0.394837][0,1,0][0.620936,0.631628,0][-0.0113835,0.500689,0.367355][0,1,0][0.61346,0.634387,0][-0.0113835,0.500689,0.367355][0,1,0][0.61346,0.634387,0][-0.021034,0.500689,0.360907][0,1,0][0.611835,0.631736,0][-0.0420679,0.500689,0.38194][0,1,0][0.617687,0.626326,0][-0.0549643,0.500689,0.36264][0,1,0][0.612655,0.622671,0][-0.0420679,0.500689,0.38194][0,1,0][0.617687,0.626326,0][-0.021034,0.500689,0.360907][0,1,0][0.611835,0.631736,0][-0.021034,0.500689,0.360907][0,1,0][0.611835,0.631736,0][-0.0274822,0.500689,0.351256][0,1,0][0.609319,0.629908,0][-0.0549643,0.500689,0.36264][0,1,0][0.612655,0.622671,0][-0.059493,0.500689,0.339873][0,1,0][0.606608,0.621219,0][-0.0549643,0.500689,0.36264][0,1,0][0.612655,0.622671,0][-0.0274822,0.500689,0.351256][0,1,0][0.609319,0.629908,0][-0.0274822,0.500689,0.351256][0,1,0][0.609319,0.629908,0][-0.0297465,0.500689,0.339873][0,1,0][0.606296,0.629183,0][-0.059493,0.500689,0.339873][0,1,0][0.606608,0.621219,0][-0.0274822,0.500689,0.328489][0,1,0][0.603224,0.629669,0][-0.0297465,0.500689,0.339873][0,1,0][0.606296,0.629183,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][-0.0210339,0.500689,0.318839][0,1,0][0.600573,0.631294,0][-0.0274822,0.500689,0.328489][0,1,0][0.603224,0.629669,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][-0.0113835,0.500689,0.31239][0,1,0][0.598746,0.63381,0][-0.0210339,0.500689,0.318839][0,1,0][0.600573,0.631294,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][0,0.500689,0.310126][0,1,0][0.59802,0.636833,0][-0.0113835,0.500689,0.31239][0,1,0][0.598746,0.63381,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][0.0113835,0.500689,0.31239][0,1,0][0.598507,0.639904,0][0,0.500689,0.310126][0,1,0][0.59802,0.636833,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][0.0210339,0.500689,0.318839][0,1,0][0.600131,0.642556,0][0.0113835,0.500689,0.31239][0,1,0][0.598507,0.639904,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][0.0274822,0.500689,0.328489][0,1,0][0.602647,0.644383,0][0.0210339,0.500689,0.318839][0,1,0][0.600131,0.642556,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][0.0297465,0.500689,0.339873][0,1,0][0.605671,0.645109,0][0.0274822,0.500689,0.328489][0,1,0][0.602647,0.644383,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][0.0274821,0.500689,0.351256][0,1,0][0.608742,0.644622,0][0.0297465,0.500689,0.339873][0,1,0][0.605671,0.645109,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][0.0210339,0.500689,0.360907][0,1,0][0.611393,0.642998,0][0.0274821,0.500689,0.351256][0,1,0][0.608742,0.644622,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][0.0113835,0.500689,0.367355][0,1,0][0.613221,0.640482,0][0.0210339,0.500689,0.360907][0,1,0][0.611393,0.642998,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][0,0.500689,0.369619][0,1,0][0.613946,0.637458,0][0.0113835,0.500689,0.367355][0,1,0][0.613221,0.640482,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][-0.0113835,0.500689,0.367355][0,1,0][0.61346,0.634387,0][0,0.500689,0.369619][0,1,0][0.613946,0.637458,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][-0.021034,0.500689,0.360907][0,1,0][0.611835,0.631736,0][-0.0113835,0.500689,0.367355][0,1,0][0.61346,0.634387,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][-0.0274822,0.500689,0.351256][0,1,0][0.609319,0.629908,0][-0.021034,0.500689,0.360907][0,1,0][0.611835,0.631736,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][-0.0297465,0.500689,0.339873][0,1,0][0.606296,0.629183,0][-0.0274822,0.500689,0.351256][0,1,0][0.609319,0.629908,0][0,0.500689,0.339873][0,1,0][0.605983,0.637146,0][-1.32671,-0.591705,0.339872][-2.71198,1.20735,0.0851771][0.861771,0.28339,0][-1.26242,-0.589391,-0.138236][-1.41319,0.796109,-0.260512][0.814696,0.2807,0][-1.09739,-0.591705,-0.114509][0.427451,-0.883288,0.192581][0.815775,0.26444,0][-1.09739,-0.591705,-0.114509][0.427451,-0.883288,0.192581][0.815775,0.26444,0][-1.18779,-0.591705,0.339955][0.483061,-0.875587,0][0.86074,0.269851,0][-1.32671,-0.591705,0.339872][-2.71198,1.20735,0.0851771][0.861771,0.28339,0][-1.26242,-0.589391,-0.138236][-1.41319,0.796109,-0.260512][0.814696,0.2807,0][-0.946827,-0.589315,-0.583351][-0.00865647,-0.99994,-0.00664996][0.768957,0.253272,0][-0.730109,-0.591615,-0.540394][0.354519,-0.848371,0.393171][0.771523,0.23183,0][-0.730109,-0.591615,-0.540394][0.354519,-0.848371,0.393171][0.771523,0.23183,0][-1.09739,-0.591705,-0.114509][0.427451,-0.883288,0.192581][0.815775,0.26444,0][-1.26242,-0.589391,-0.138236][-1.41319,0.796109,-0.260512][0.814696,0.2807,0][-0.946827,-0.589315,-0.583351][-0.00865647,-0.99994,-0.00664996][0.768957,0.253272,0][-0.507709,-0.591705,-0.885847][-0.00210603,-0.999997,0.000866289][0.736194,0.21274,0][-0.454686,-0.591705,-0.757217][0.194951,-0.881812,0.429421][0.748333,0.20661,0][-0.454686,-0.591705,-0.757217][0.194951,-0.881812,0.429421][0.748333,0.20661,0][-0.730109,-0.591615,-0.540394][0.354519,-0.848371,0.393171][0.771523,0.23183,0][-0.946827,-0.589315,-0.583351][-0.00865647,-0.99994,-0.00664996][0.768957,0.253272,0][-0.507709,-0.591705,-0.885847][-0.00210603,-0.999997,0.000866289][0.736194,0.21274,0][2.49047e-007,-0.591705,-0.986836][0,-1,-1.71252e-006][0.722556,0.164016,0][-0.000222405,-0.591705,-0.847615][-1.35086e-007,-0.875587,0.483061][0.736125,0.162997,0][-0.000222405,-0.591705,-0.847615][-1.35086e-007,-0.875587,0.483061][0.736125,0.162997,0][-0.454686,-0.591705,-0.757217][0.194951,-0.881812,0.429421][0.748333,0.20661,0][-0.507709,-0.591705,-0.885847][-0.00210603,-0.999997,0.000866289][0.736194,0.21274,0][2.49047e-007,-0.591705,-0.986836][0,-1,-1.71252e-006][0.722556,0.164016,0][0.50771,-0.591705,-0.885846][6.5519e-007,-1,-1.58118e-006][0.728601,0.113782,0][0.454241,-0.591705,-0.757217][-0.184859,-0.875587,0.44629][0.741537,0.118031,0][0.454241,-0.591705,-0.757217][-0.184859,-0.875587,0.44629][0.741537,0.118031,0][-0.000222405,-0.591705,-0.847615][-1.35086e-007,-0.875587,0.483061][0.736125,0.162997,0][2.49047e-007,-0.591705,-0.986836][0,-1,-1.71252e-006][0.722556,0.164016,0][0.50771,-0.591705,-0.885846][6.5519e-007,-1,-1.58118e-006][0.728601,0.113782,0][0.938125,-0.591705,-0.598252][0.00292567,-0.999995,-0.00096143][0.75341,0.069685,0][0.839517,-0.591705,-0.499784][-0.341575,-0.875587,0.341575][0.763744,0.0785586,0][0.839517,-0.591705,-0.499784][-0.341575,-0.875587,0.341575][0.763744,0.0785586,0][0.454241,-0.591705,-0.757217][-0.184859,-0.875587,0.44629][0.741537,0.118031,0][0.50771,-0.591705,-0.885846][6.5519e-007,-1,-1.58118e-006][0.728601,0.113782,0][0.938125,-0.591705,-0.598252][0.00292567,-0.999995,-0.00096143][0.75341,0.069685,0][1.29212,-0.586926,-0.167022][1.35598,0.484604,-0.0879661][0.792789,0.0319621,0][1.09695,-0.591705,-0.114508][-0.435629,-0.881425,0.182528][0.799366,0.0505895,0][1.09695,-0.591705,-0.114508][-0.435629,-0.881425,0.182528][0.799366,0.0505895,0][0.839517,-0.591705,-0.499784][-0.341575,-0.875587,0.341575][0.763744,0.0785586,0][0.938125,-0.591705,-0.598252][0.00292567,-0.999995,-0.00096143][0.75341,0.069685,0][1.29212,-0.586926,-0.167022][1.35598,0.484604,-0.0879661][0.792789,0.0319621,0][1.32671,-0.591705,0.339873][2.75441,1.19134,0.214242][0.84193,0.0248005,0][1.18735,-0.591705,0.339955][-0.48176,-0.876299,-0.00269434][0.84298,0.0383814,0][1.18735,-0.591705,0.339955][-0.48176,-0.876299,-0.00269434][0.84298,0.0383814,0][1.09695,-0.591705,-0.114508][-0.435629,-0.881425,0.182528][0.799366,0.0505895,0][1.29212,-0.586926,-0.167022][1.35598,0.484604,-0.0879661][0.792789,0.0319621,0][1.32671,-0.591705,0.339873][2.75441,1.19134,0.214242][0.84193,0.0248005,0][1.22572,-0.591705,0.847582][2.47692,1.19356,1.02597][0.892164,0.030846,0][1.09695,-0.591705,0.794419][-0.44629,-0.875587,-0.184859][0.887946,0.0437928,0][1.09695,-0.591705,0.794419][-0.44629,-0.875587,-0.184859][0.887946,0.0437928,0][1.18735,-0.591705,0.339955][-0.48176,-0.876299,-0.00269434][0.84298,0.0383814,0][1.32671,-0.591705,0.339873][2.75441,1.19134,0.214242][0.84193,0.0248005,0][1.22572,-0.591705,0.847582][2.47692,1.19356,1.02597][0.892164,0.030846,0][0.938125,-0.591705,1.278][1.89575,1.19356,1.89575][0.93626,0.0556551,0][0.839516,-0.591705,1.17969][-0.341575,-0.875587,-0.341575][0.927418,0.0660001,0][0.839516,-0.591705,1.17969][-0.341575,-0.875587,-0.341575][0.927418,0.0660001,0][1.09695,-0.591705,0.794419][-0.44629,-0.875587,-0.184859][0.887946,0.0437928,0][1.22572,-0.591705,0.847582][2.47692,1.19356,1.02597][0.892164,0.030846,0][0.938125,-0.591705,1.278][1.89575,1.19356,1.89575][0.93626,0.0556551,0][0.507709,-0.591705,1.56559][1.02597,1.19356,2.47692][0.967507,0.0954508,0][0.45424,-0.591705,1.43713][-0.184859,-0.875587,-0.44629][0.955387,0.101622,0][0.45424,-0.591705,1.43713][-0.184859,-0.875587,-0.44629][0.955387,0.101622,0][0.839516,-0.591705,1.17969][-0.341575,-0.875587,-0.341575][0.927418,0.0660001,0][0.938125,-0.591705,1.278][1.89575,1.19356,1.89575][0.93626,0.0556551,0][0.507709,-0.591705,1.56559][1.02597,1.19356,2.47692][0.967507,0.0954508,0][-3.83565e-007,-0.591705,1.66658][-6.1922e-007,1.19356,2.681][0.981145,0.144175,0][-0.000222971,-0.591705,1.52752][0,-0.875587,-0.483061][0.967595,0.145236,0][-0.000222971,-0.591705,1.52752][0,-0.875587,-0.483061][0.967595,0.145236,0][0.45424,-0.591705,1.43713][-0.184859,-0.875587,-0.44629][0.955387,0.101622,0][0.507709,-0.591705,1.56559][1.02597,1.19356,2.47692][0.967507,0.0954508,0][-3.83565e-007,-0.591705,1.66658][-6.1922e-007,1.19356,2.681][0.981145,0.144175,0][-0.50771,-0.591705,1.56559][-1.02597,1.19356,2.47692][0.975099,0.194409,0][-0.454686,-0.591705,1.43713][0.184859,-0.875587,-0.44629][0.962183,0.190202,0][-0.454686,-0.591705,1.43713][0.184859,-0.875587,-0.44629][0.962183,0.190202,0][-0.000222971,-0.591705,1.52752][0,-0.875587,-0.483061][0.967595,0.145236,0][-3.83565e-007,-0.591705,1.66658][-6.1922e-007,1.19356,2.681][0.981145,0.144175,0][-0.50771,-0.591705,1.56559][-1.02597,1.19356,2.47692][0.975099,0.194409,0][-0.938125,-0.591705,1.278][-1.89575,1.19356,1.89575][0.950291,0.238505,0][-0.839962,-0.591705,1.17969][0.341575,-0.875587,-0.341575][0.939976,0.229674,0][-0.839962,-0.591705,1.17969][0.341575,-0.875587,-0.341575][0.939976,0.229674,0][-0.454686,-0.591705,1.43713][0.184859,-0.875587,-0.44629][0.962183,0.190202,0][-0.50771,-0.591705,1.56559][-1.02597,1.19356,2.47692][0.975099,0.194409,0][-0.938125,-0.591705,1.278][-1.89575,1.19356,1.89575][0.950291,0.238505,0][-1.22572,-0.591705,0.847582][-2.47692,1.19356,1.02597][0.910495,0.269751,0][-1.09739,-0.591705,0.794418][0.44629,-0.875587,-0.184859][0.904354,0.257643,0][-1.09739,-0.591705,0.794418][0.44629,-0.875587,-0.184859][0.904354,0.257643,0][-0.839962,-0.591705,1.17969][0.341575,-0.875587,-0.341575][0.939976,0.229674,0][-0.938125,-0.591705,1.278][-1.89575,1.19356,1.89575][0.950291,0.238505,0][-1.22572,-0.591705,0.847582][-2.47692,1.19356,1.02597][0.910495,0.269751,0][-1.32671,-0.591705,0.339872][-2.71198,1.20735,0.0851771][0.861771,0.28339,0][-1.18779,-0.591705,0.339955][0.483061,-0.875587,0][0.86074,0.269851,0][-1.18779,-0.591705,0.339955][0.483061,-0.875587,0][0.86074,0.269851,0][-1.09739,-0.591705,0.794418][0.44629,-0.875587,-0.184859][0.904354,0.257643,0][-1.22572,-0.591705,0.847582][-2.47692,1.19356,1.02597][0.910495,0.269751,0][-1.18779,-0.591705,0.339955][0.483061,-0.875587,0][0.86074,0.269851,0][-1.09739,-0.591705,-0.114509][0.427451,-0.883288,0.192581][0.815775,0.26444,0][-0.894436,-0.129729,-0.0304406][0.72974,-0.61328,0.302268][0.82245,0.244032,0][-0.894436,-0.129729,-0.0304406][0.72974,-0.61328,0.302268][0.82245,0.244032,0][-0.968112,-0.129729,0.339955][0.789865,-0.61328,1.97485e-007][0.859098,0.248442,0][-1.18779,-0.591705,0.339955][0.483061,-0.875587,0][0.86074,0.269851,0][-1.09739,-0.591705,-0.114509][0.427451,-0.883288,0.192581][0.815775,0.26444,0][-0.730109,-0.591615,-0.540394][0.354519,-0.848371,0.393171][0.771523,0.23183,0][-0.684624,-0.129729,-0.344446][0.566247,-0.590895,0.574637][0.790279,0.225932,0][-0.684624,-0.129729,-0.344446][0.566247,-0.590895,0.574637][0.790279,0.225932,0][-0.894436,-0.129729,-0.0304406][0.72974,-0.61328,0.302268][0.82245,0.244032,0][-1.09739,-0.591705,-0.114509][0.427451,-0.883288,0.192581][0.815775,0.26444,0][-0.730109,-0.591615,-0.540394][0.354519,-0.848371,0.393171][0.771523,0.23183,0][-0.454686,-0.591705,-0.757217][0.194951,-0.881812,0.429421][0.748333,0.20661,0][-0.370618,-0.129729,-0.554258][0.311719,-0.606934,0.73107][0.767484,0.1969,0][-0.370618,-0.129729,-0.554258][0.311719,-0.606934,0.73107][0.767484,0.1969,0][-0.684624,-0.129729,-0.344446][0.566247,-0.590895,0.574637][0.790279,0.225932,0][-0.730109,-0.591615,-0.540394][0.354519,-0.848371,0.393171][0.771523,0.23183,0][-0.454686,-0.591705,-0.757217][0.194951,-0.881812,0.429421][0.748333,0.20661,0][-0.000222405,-0.591705,-0.847615][-1.35086e-007,-0.875587,0.483061][0.736125,0.162997,0][-0.000222445,-0.129729,-0.627935][-1.51167e-007,-0.61328,0.789865][0.757534,0.161354,0][-0.000222445,-0.129729,-0.627935][-1.51167e-007,-0.61328,0.789865][0.757534,0.161354,0][-0.370618,-0.129729,-0.554258][0.311719,-0.606934,0.73107][0.767484,0.1969,0][-0.454686,-0.591705,-0.757217][0.194951,-0.881812,0.429421][0.748333,0.20661,0][-0.000222405,-0.591705,-0.847615][-1.35086e-007,-0.875587,0.483061][0.736125,0.162997,0][0.454241,-0.591705,-0.757217][-0.184859,-0.875587,0.44629][0.741537,0.118031,0][0.370173,-0.129729,-0.554258][-0.302268,-0.61328,0.72974][0.761945,0.124706,0][0.370173,-0.129729,-0.554258][-0.302268,-0.61328,0.72974][0.761945,0.124706,0][-0.000222445,-0.129729,-0.627935][-1.51167e-007,-0.61328,0.789865][0.757534,0.161354,0][-0.000222405,-0.591705,-0.847615][-1.35086e-007,-0.875587,0.483061][0.736125,0.162997,0][0.454241,-0.591705,-0.757217][-0.184859,-0.875587,0.44629][0.741537,0.118031,0][0.839517,-0.591705,-0.499784][-0.341575,-0.875587,0.341575][0.763744,0.0785586,0][0.684179,-0.129729,-0.344446][-0.558519,-0.61328,0.558519][0.780044,0.0925355,0][0.684179,-0.129729,-0.344446][-0.558519,-0.61328,0.558519][0.780044,0.0925355,0][0.370173,-0.129729,-0.554258][-0.302268,-0.61328,0.72974][0.761945,0.124706,0][0.454241,-0.591705,-0.757217][-0.184859,-0.875587,0.44629][0.741537,0.118031,0][0.839517,-0.591705,-0.499784][-0.341575,-0.875587,0.341575][0.763744,0.0785586,0][1.09695,-0.591705,-0.114508][-0.435629,-0.881425,0.182528][0.799366,0.0505895,0][0.893991,-0.129729,-0.0304402][-0.72974,-0.61328,0.302268][0.809076,0.0697402,0][0.893991,-0.129729,-0.0304402][-0.72974,-0.61328,0.302268][0.809076,0.0697402,0][0.684179,-0.129729,-0.344446][-0.558519,-0.61328,0.558519][0.780044,0.0925355,0][0.839517,-0.591705,-0.499784][-0.341575,-0.875587,0.341575][0.763744,0.0785586,0][1.09695,-0.591705,-0.114508][-0.435629,-0.881425,0.182528][0.799366,0.0505895,0][1.18735,-0.591705,0.339955][-0.48176,-0.876299,-0.00269434][0.84298,0.0383814,0][0.967667,-0.129729,0.339955][-0.789865,-0.61328,-2.27352e-007][0.844623,0.0597904,0][0.967667,-0.129729,0.339955][-0.789865,-0.61328,-2.27352e-007][0.844623,0.0597904,0][0.893991,-0.129729,-0.0304402][-0.72974,-0.61328,0.302268][0.809076,0.0697402,0][1.09695,-0.591705,-0.114508][-0.435629,-0.881425,0.182528][0.799366,0.0505895,0][1.18735,-0.591705,0.339955][-0.48176,-0.876299,-0.00269434][0.84298,0.0383814,0][1.09695,-0.591705,0.794419][-0.44629,-0.875587,-0.184859][0.887946,0.0437928,0][0.893991,-0.129729,0.71035][-0.72974,-0.61328,-0.302269][0.88127,0.0642009,0][0.893991,-0.129729,0.71035][-0.72974,-0.61328,-0.302269][0.88127,0.0642009,0][0.967667,-0.129729,0.339955][-0.789865,-0.61328,-2.27352e-007][0.844623,0.0597904,0][1.18735,-0.591705,0.339955][-0.48176,-0.876299,-0.00269434][0.84298,0.0383814,0][1.09695,-0.591705,0.794419][-0.44629,-0.875587,-0.184859][0.887946,0.0437928,0][0.839516,-0.591705,1.17969][-0.341575,-0.875587,-0.341575][0.927418,0.0660001,0][0.684178,-0.129729,1.02436][-0.558519,-0.61328,-0.558519][0.913441,0.0823001,0][0.684178,-0.129729,1.02436][-0.558519,-0.61328,-0.558519][0.913441,0.0823001,0][0.893991,-0.129729,0.71035][-0.72974,-0.61328,-0.302269][0.88127,0.0642009,0][1.09695,-0.591705,0.794419][-0.44629,-0.875587,-0.184859][0.887946,0.0437928,0][0.839516,-0.591705,1.17969][-0.341575,-0.875587,-0.341575][0.927418,0.0660001,0][0.45424,-0.591705,1.43713][-0.184859,-0.875587,-0.44629][0.955387,0.101622,0][0.370172,-0.129729,1.23417][-0.302268,-0.61328,-0.729741][0.936236,0.111333,0][0.370172,-0.129729,1.23417][-0.302268,-0.61328,-0.729741][0.936236,0.111333,0][0.684178,-0.129729,1.02436][-0.558519,-0.61328,-0.558519][0.913441,0.0823001,0][0.839516,-0.591705,1.17969][-0.341575,-0.875587,-0.341575][0.927418,0.0660001,0][0.45424,-0.591705,1.43713][-0.184859,-0.875587,-0.44629][0.955387,0.101622,0][-0.000222971,-0.591705,1.52752][0,-0.875587,-0.483061][0.967595,0.145236,0][-0.000222907,-0.129729,1.30784][3.06291e-007,-0.61328,-0.789865][0.946186,0.146879,0][-0.000222907,-0.129729,1.30784][3.06291e-007,-0.61328,-0.789865][0.946186,0.146879,0][0.370172,-0.129729,1.23417][-0.302268,-0.61328,-0.729741][0.936236,0.111333,0][0.45424,-0.591705,1.43713][-0.184859,-0.875587,-0.44629][0.955387,0.101622,0][-0.000222971,-0.591705,1.52752][0,-0.875587,-0.483061][0.967595,0.145236,0][-0.454686,-0.591705,1.43713][0.184859,-0.875587,-0.44629][0.962183,0.190202,0][-0.370618,-0.129729,1.23417][0.302269,-0.61328,-0.72974][0.941775,0.183527,0][-0.370618,-0.129729,1.23417][0.302269,-0.61328,-0.72974][0.941775,0.183527,0][-0.000222907,-0.129729,1.30784][3.06291e-007,-0.61328,-0.789865][0.946186,0.146879,0][-0.000222971,-0.591705,1.52752][0,-0.875587,-0.483061][0.967595,0.145236,0][-0.454686,-0.591705,1.43713][0.184859,-0.875587,-0.44629][0.962183,0.190202,0][-0.839962,-0.591705,1.17969][0.341575,-0.875587,-0.341575][0.939976,0.229674,0][-0.684624,-0.129729,1.02436][0.558519,-0.61328,-0.558519][0.923676,0.215697,0][-0.684624,-0.129729,1.02436][0.558519,-0.61328,-0.558519][0.923676,0.215697,0][-0.370618,-0.129729,1.23417][0.302269,-0.61328,-0.72974][0.941775,0.183527,0][-0.454686,-0.591705,1.43713][0.184859,-0.875587,-0.44629][0.962183,0.190202,0][-0.839962,-0.591705,1.17969][0.341575,-0.875587,-0.341575][0.939976,0.229674,0][-1.09739,-0.591705,0.794418][0.44629,-0.875587,-0.184859][0.904354,0.257643,0][-0.894436,-0.129729,0.71035][0.72974,-0.61328,-0.302268][0.894644,0.238492,0][-0.894436,-0.129729,0.71035][0.72974,-0.61328,-0.302268][0.894644,0.238492,0][-0.684624,-0.129729,1.02436][0.558519,-0.61328,-0.558519][0.923676,0.215697,0][-0.839962,-0.591705,1.17969][0.341575,-0.875587,-0.341575][0.939976,0.229674,0][-1.09739,-0.591705,0.794418][0.44629,-0.875587,-0.184859][0.904354,0.257643,0][-1.18779,-0.591705,0.339955][0.483061,-0.875587,0][0.86074,0.269851,0][-0.968112,-0.129729,0.339955][0.789865,-0.61328,1.97485e-007][0.859098,0.248442,0][-0.968112,-0.129729,0.339955][0.789865,-0.61328,1.97485e-007][0.859098,0.248442,0][-0.894436,-0.129729,0.71035][0.72974,-0.61328,-0.302268][0.894644,0.238492,0][-1.09739,-0.591705,0.794418][0.44629,-0.875587,-0.184859][0.904354,0.257643,0][-0.968112,-0.129729,0.339955][0.789865,-0.61328,1.97485e-007][0.859098,0.248442,0][-0.894436,-0.129729,-0.0304406][0.72974,-0.61328,0.302268][0.82245,0.244032,0][-0.447329,0.245277,0.154757][0.331601,-0.933367,0.137354][0.837155,0.199074,0][-0.447329,0.245277,0.154757][0.331601,-0.933367,0.137354][0.837155,0.199074,0][-0.484167,0.245277,0.339955][0.358922,-0.933367,0][0.855479,0.201279,0][-0.968112,-0.129729,0.339955][0.789865,-0.61328,1.97485e-007][0.859098,0.248442,0][-0.894436,-0.129729,-0.0304406][0.72974,-0.61328,0.302268][0.82245,0.244032,0][-0.684624,-0.129729,-0.344446][0.566247,-0.590895,0.574637][0.790279,0.225932,0][-0.342423,0.245277,-0.00224586][0.253796,-0.933367,0.253797][0.82107,0.190024,0][-0.342423,0.245277,-0.00224586][0.253796,-0.933367,0.253797][0.82107,0.190024,0][-0.447329,0.245277,0.154757][0.331601,-0.933367,0.137354][0.837155,0.199074,0][-0.894436,-0.129729,-0.0304406][0.72974,-0.61328,0.302268][0.82245,0.244032,0][-0.684624,-0.129729,-0.344446][0.566247,-0.590895,0.574637][0.790279,0.225932,0][-0.370618,-0.129729,-0.554258][0.311719,-0.606934,0.73107][0.767484,0.1969,0][-0.18542,0.245277,-0.107152][0.137354,-0.933367,0.331601][0.809672,0.175508,0][-0.18542,0.245277,-0.107152][0.137354,-0.933367,0.331601][0.809672,0.175508,0][-0.342423,0.245277,-0.00224586][0.253796,-0.933367,0.253797][0.82107,0.190024,0][-0.684624,-0.129729,-0.344446][0.566247,-0.590895,0.574637][0.790279,0.225932,0][-0.370618,-0.129729,-0.554258][0.311719,-0.606934,0.73107][0.767484,0.1969,0][-0.000222445,-0.129729,-0.627935][-1.51167e-007,-0.61328,0.789865][0.757534,0.161354,0][-0.000222539,0.245277,-0.14399][0,-0.933367,0.358923][0.804697,0.157735,0][-0.000222539,0.245277,-0.14399][0,-0.933367,0.358923][0.804697,0.157735,0][-0.18542,0.245277,-0.107152][0.137354,-0.933367,0.331601][0.809672,0.175508,0][-0.370618,-0.129729,-0.554258][0.311719,-0.606934,0.73107][0.767484,0.1969,0][-0.000222445,-0.129729,-0.627935][-1.51167e-007,-0.61328,0.789865][0.757534,0.161354,0][0.370173,-0.129729,-0.554258][-0.302268,-0.61328,0.72974][0.761945,0.124706,0][0.184975,0.245277,-0.107152][-0.137354,-0.933367,0.331601][0.806902,0.139411,0][0.184975,0.245277,-0.107152][-0.137354,-0.933367,0.331601][0.806902,0.139411,0][-0.000222539,0.245277,-0.14399][0,-0.933367,0.358923][0.804697,0.157735,0][-0.000222445,-0.129729,-0.627935][-1.51167e-007,-0.61328,0.789865][0.757534,0.161354,0][0.370173,-0.129729,-0.554258][-0.302268,-0.61328,0.72974][0.761945,0.124706,0][0.684179,-0.129729,-0.344446][-0.558519,-0.61328,0.558519][0.780044,0.0925355,0][0.341978,0.245277,-0.0022457][-0.253797,-0.933367,0.253796][0.815952,0.123326,0][0.341978,0.245277,-0.0022457][-0.253797,-0.933367,0.253796][0.815952,0.123326,0][0.184975,0.245277,-0.107152][-0.137354,-0.933367,0.331601][0.806902,0.139411,0][0.370173,-0.129729,-0.554258][-0.302268,-0.61328,0.72974][0.761945,0.124706,0][0.684179,-0.129729,-0.344446][-0.558519,-0.61328,0.558519][0.780044,0.0925355,0][0.893991,-0.129729,-0.0304402][-0.72974,-0.61328,0.302268][0.809076,0.0697402,0][0.446884,0.245277,0.154757][-0.331601,-0.933367,0.137354][0.830468,0.111928,0][0.446884,0.245277,0.154757][-0.331601,-0.933367,0.137354][0.830468,0.111928,0][0.341978,0.245277,-0.0022457][-0.253797,-0.933367,0.253796][0.815952,0.123326,0][0.684179,-0.129729,-0.344446][-0.558519,-0.61328,0.558519][0.780044,0.0925355,0][0.893991,-0.129729,-0.0304402][-0.72974,-0.61328,0.302268][0.809076,0.0697402,0][0.967667,-0.129729,0.339955][-0.789865,-0.61328,-2.27352e-007][0.844623,0.0597904,0][0.483722,0.245277,0.339955][-0.358922,-0.933367,-1.80075e-007][0.848241,0.106953,0][0.483722,0.245277,0.339955][-0.358922,-0.933367,-1.80075e-007][0.848241,0.106953,0][0.446884,0.245277,0.154757][-0.331601,-0.933367,0.137354][0.830468,0.111928,0][0.893991,-0.129729,-0.0304402][-0.72974,-0.61328,0.302268][0.809076,0.0697402,0][0.967667,-0.129729,0.339955][-0.789865,-0.61328,-2.27352e-007][0.844623,0.0597904,0][0.893991,-0.129729,0.71035][-0.72974,-0.61328,-0.302269][0.88127,0.0642009,0][0.446884,0.245277,0.525153][-0.331601,-0.933367,-0.137354][0.866565,0.109159,0][0.446884,0.245277,0.525153][-0.331601,-0.933367,-0.137354][0.866565,0.109159,0][0.483722,0.245277,0.339955][-0.358922,-0.933367,-1.80075e-007][0.848241,0.106953,0][0.967667,-0.129729,0.339955][-0.789865,-0.61328,-2.27352e-007][0.844623,0.0597904,0][0.893991,-0.129729,0.71035][-0.72974,-0.61328,-0.302269][0.88127,0.0642009,0][0.684178,-0.129729,1.02436][-0.558519,-0.61328,-0.558519][0.913441,0.0823001,0][0.341978,0.245277,0.682155][-0.253796,-0.933367,-0.253797][0.88265,0.118208,0][0.341978,0.245277,0.682155][-0.253796,-0.933367,-0.253797][0.88265,0.118208,0][0.446884,0.245277,0.525153][-0.331601,-0.933367,-0.137354][0.866565,0.109159,0][0.893991,-0.129729,0.71035][-0.72974,-0.61328,-0.302269][0.88127,0.0642009,0][0.684178,-0.129729,1.02436][-0.558519,-0.61328,-0.558519][0.913441,0.0823001,0][0.370172,-0.129729,1.23417][-0.302268,-0.61328,-0.729741][0.936236,0.111333,0][0.184975,0.245277,0.787062][-0.137354,-0.933367,-0.331601][0.894048,0.132724,0][0.184975,0.245277,0.787062][-0.137354,-0.933367,-0.331601][0.894048,0.132724,0][0.341978,0.245277,0.682155][-0.253796,-0.933367,-0.253797][0.88265,0.118208,0][0.684178,-0.129729,1.02436][-0.558519,-0.61328,-0.558519][0.913441,0.0823001,0][0.370172,-0.129729,1.23417][-0.302268,-0.61328,-0.729741][0.936236,0.111333,0][-0.000222907,-0.129729,1.30784][3.06291e-007,-0.61328,-0.789865][0.946186,0.146879,0][-0.00022277,0.245277,0.8239][0,-0.933367,-0.358922][0.899023,0.150497,0][-0.00022277,0.245277,0.8239][0,-0.933367,-0.358922][0.899023,0.150497,0][0.184975,0.245277,0.787062][-0.137354,-0.933367,-0.331601][0.894048,0.132724,0][0.370172,-0.129729,1.23417][-0.302268,-0.61328,-0.729741][0.936236,0.111333,0][-0.000222907,-0.129729,1.30784][3.06291e-007,-0.61328,-0.789865][0.946186,0.146879,0][-0.370618,-0.129729,1.23417][0.302269,-0.61328,-0.72974][0.941775,0.183527,0][-0.18542,0.245277,0.787062][0.137354,-0.933367,-0.331601][0.896818,0.168821,0][-0.18542,0.245277,0.787062][0.137354,-0.933367,-0.331601][0.896818,0.168821,0][-0.00022277,0.245277,0.8239][0,-0.933367,-0.358922][0.899023,0.150497,0][-0.000222907,-0.129729,1.30784][3.06291e-007,-0.61328,-0.789865][0.946186,0.146879,0][-0.370618,-0.129729,1.23417][0.302269,-0.61328,-0.72974][0.941775,0.183527,0][-0.684624,-0.129729,1.02436][0.558519,-0.61328,-0.558519][0.923676,0.215697,0][-0.342423,0.245277,0.682155][0.253797,-0.933367,-0.253796][0.887768,0.184907,0][-0.342423,0.245277,0.682155][0.253797,-0.933367,-0.253796][0.887768,0.184907,0][-0.18542,0.245277,0.787062][0.137354,-0.933367,-0.331601][0.896818,0.168821,0][-0.370618,-0.129729,1.23417][0.302269,-0.61328,-0.72974][0.941775,0.183527,0][-0.684624,-0.129729,1.02436][0.558519,-0.61328,-0.558519][0.923676,0.215697,0][-0.894436,-0.129729,0.71035][0.72974,-0.61328,-0.302268][0.894644,0.238492,0][-0.447329,0.245277,0.525152][0.331601,-0.933367,-0.137354][0.873252,0.196304,0][-0.447329,0.245277,0.525152][0.331601,-0.933367,-0.137354][0.873252,0.196304,0][-0.342423,0.245277,0.682155][0.253797,-0.933367,-0.253796][0.887768,0.184907,0][-0.684624,-0.129729,1.02436][0.558519,-0.61328,-0.558519][0.923676,0.215697,0][-0.894436,-0.129729,0.71035][0.72974,-0.61328,-0.302268][0.894644,0.238492,0][-0.968112,-0.129729,0.339955][0.789865,-0.61328,1.97485e-007][0.859098,0.248442,0][-0.484167,0.245277,0.339955][0.358922,-0.933367,0][0.855479,0.201279,0][-0.484167,0.245277,0.339955][0.358922,-0.933367,0][0.855479,0.201279,0][-0.447329,0.245277,0.525152][0.331601,-0.933367,-0.137354][0.873252,0.196304,0][-0.894436,-0.129729,0.71035][0.72974,-0.61328,-0.302268][0.894644,0.238492,0][-0.484167,0.245277,0.339955][0.358922,-0.933367,0][0.855479,0.201279,0][-0.447329,0.245277,0.154757][0.331601,-0.933367,0.137354][0.837155,0.199074,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][-0.447329,0.245277,0.154757][0.331601,-0.933367,0.137354][0.837155,0.199074,0][-0.342423,0.245277,-0.00224586][0.253796,-0.933367,0.253797][0.82107,0.190024,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][-0.342423,0.245277,-0.00224586][0.253796,-0.933367,0.253797][0.82107,0.190024,0][-0.18542,0.245277,-0.107152][0.137354,-0.933367,0.331601][0.809672,0.175508,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][-0.18542,0.245277,-0.107152][0.137354,-0.933367,0.331601][0.809672,0.175508,0][-0.000222539,0.245277,-0.14399][0,-0.933367,0.358923][0.804697,0.157735,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][-0.000222539,0.245277,-0.14399][0,-0.933367,0.358923][0.804697,0.157735,0][0.184975,0.245277,-0.107152][-0.137354,-0.933367,0.331601][0.806902,0.139411,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][0.184975,0.245277,-0.107152][-0.137354,-0.933367,0.331601][0.806902,0.139411,0][0.341978,0.245277,-0.0022457][-0.253797,-0.933367,0.253796][0.815952,0.123326,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][0.341978,0.245277,-0.0022457][-0.253797,-0.933367,0.253796][0.815952,0.123326,0][0.446884,0.245277,0.154757][-0.331601,-0.933367,0.137354][0.830468,0.111928,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][0.446884,0.245277,0.154757][-0.331601,-0.933367,0.137354][0.830468,0.111928,0][0.483722,0.245277,0.339955][-0.358922,-0.933367,-1.80075e-007][0.848241,0.106953,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][0.483722,0.245277,0.339955][-0.358922,-0.933367,-1.80075e-007][0.848241,0.106953,0][0.446884,0.245277,0.525153][-0.331601,-0.933367,-0.137354][0.866565,0.109159,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][0.446884,0.245277,0.525153][-0.331601,-0.933367,-0.137354][0.866565,0.109159,0][0.341978,0.245277,0.682155][-0.253796,-0.933367,-0.253797][0.88265,0.118208,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][0.341978,0.245277,0.682155][-0.253796,-0.933367,-0.253797][0.88265,0.118208,0][0.184975,0.245277,0.787062][-0.137354,-0.933367,-0.331601][0.894048,0.132724,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][0.184975,0.245277,0.787062][-0.137354,-0.933367,-0.331601][0.894048,0.132724,0][-0.00022277,0.245277,0.8239][0,-0.933367,-0.358922][0.899023,0.150497,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][-0.00022277,0.245277,0.8239][0,-0.933367,-0.358922][0.899023,0.150497,0][-0.18542,0.245277,0.787062][0.137354,-0.933367,-0.331601][0.896818,0.168821,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][-0.18542,0.245277,0.787062][0.137354,-0.933367,-0.331601][0.896818,0.168821,0][-0.342423,0.245277,0.682155][0.253797,-0.933367,-0.253796][0.887768,0.184907,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][-0.342423,0.245277,0.682155][0.253797,-0.933367,-0.253796][0.887768,0.184907,0][-0.447329,0.245277,0.525152][0.331601,-0.933367,-0.137354][0.873252,0.196304,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][-0.447329,0.245277,0.525152][0.331601,-0.933367,-0.137354][0.873252,0.196304,0][-0.484167,0.245277,0.339955][0.358922,-0.933367,0][0.855479,0.201279,0][-0.000222633,0.245277,0.339955][0,-1,0][0.85186,0.154116,0][-1.13789,-0.38601,-0.137625][-0.846749,0.443615,-0.293634][0.490108,0.327518,0][-0.871116,-0.378842,-0.531243][-0.646687,0.406708,-0.645278][0.381934,0.394798,0][-0.95779,-0.362825,-1.39102][-0.719624,0.183971,-0.669549][0.152682,0.362565,0][-0.95779,-0.362825,-1.39102][-0.719624,0.183971,-0.669549][0.152682,0.362565,0][-1.23291,-0.481649,-0.991351][-0.847367,0.0550646,-0.528145][0.262563,0.293114,0][-1.13789,-0.38601,-0.137625][-0.846749,0.443615,-0.293634][0.490108,0.327518,0][-0.871116,-0.378842,-0.531243][-0.646687,0.406708,-0.645278][0.381934,0.394798,0][-0.471444,-0.378842,-0.798295][-0.349603,0.406708,-0.844018][0.306247,0.498986,0][-0.526085,-0.242223,-1.65807][-0.391418,0.344041,-0.85348][0.0766577,0.475328,0][-0.526085,-0.242223,-1.65807][-0.391418,0.344041,-0.85348][0.0766577,0.475328,0][-0.95779,-0.362825,-1.39102][-0.719624,0.183971,-0.669549][0.152682,0.362565,0][-0.871116,-0.378842,-0.531243][-0.646687,0.406708,-0.645278][0.381934,0.394798,0][-0.471444,-0.378842,-0.798295][-0.349603,0.406708,-0.844018][0.306247,0.498986,0][2.30605e-007,-0.378841,-0.892071][1.72279e-007,0.406708,-0.913558][0.276191,0.624207,0][4.07577e-007,-0.191743,-1.75185][0.00584543,0.402184,-0.91554][0.0460284,0.615176,0][4.07577e-007,-0.191743,-1.75185][0.00584543,0.402184,-0.91554][0.0460284,0.615176,0][-0.526085,-0.242223,-1.65807][-0.391418,0.344041,-0.85348][0.0766577,0.475328,0][-0.471444,-0.378842,-0.798295][-0.349603,0.406708,-0.844018][0.306247,0.498986,0][2.30605e-007,-0.378841,-0.892071][1.72279e-007,0.406708,-0.913558][0.276191,0.624207,0][0.471445,-0.378842,-0.798295][0.349604,0.406708,-0.844018][0.296344,0.751398,0][0.526086,-0.242223,-1.65807][0.398988,0.326706,-0.85678][0.0656068,0.756995,0][0.526086,-0.242223,-1.65807][0.398988,0.326706,-0.85678][0.0656068,0.756995,0][4.07577e-007,-0.191743,-1.75185][0.00584543,0.402184,-0.91554][0.0460284,0.615176,0][2.30605e-007,-0.378841,-0.892071][1.72279e-007,0.406708,-0.913558][0.276191,0.624207,0][0.471445,-0.378842,-0.798295][0.349604,0.406708,-0.844018][0.296344,0.751398,0][0.871116,-0.378842,-0.531243][0.605239,0.406066,-0.684687][0.363636,0.861195,0][0.957791,-0.362825,-1.39102][0.687074,0.206223,-0.696707][0.132563,0.875367,0][0.957791,-0.362825,-1.39102][0.687074,0.206223,-0.696707][0.132563,0.875367,0][0.526086,-0.242223,-1.65807][0.398988,0.326706,-0.85678][0.0656068,0.756995,0][0.471445,-0.378842,-0.798295][0.349604,0.406708,-0.844018][0.296344,0.751398,0][0.871116,-0.378842,-0.531243][0.605239,0.406066,-0.684687][0.363636,0.861195,0][1.22171,-0.38362,-0.132386][0.84148,0.511114,-0.17514][0.466728,0.959237,0][1.23291,-0.481649,-0.99135][0.823377,0.312027,-0.474015][0.236665,0.953214,0][1.23291,-0.481649,-0.99135][0.823377,0.312027,-0.474015][0.236665,0.953214,0][0.957791,-0.362825,-1.39102][0.687074,0.206223,-0.696707][0.132563,0.875367,0][0.871116,-0.378842,-0.531243][0.605239,0.406066,-0.684687][0.363636,0.861195,0][1.22171,-0.38362,-0.132386][0.84148,0.511114,-0.17514][0.466728,0.959237,0][1.29212,-0.586926,-0.167022][1.35598,0.484604,-0.0879661][0.456716,0.977722,0][1.30011,-0.714076,-1.02762][0.816226,0.26359,-0.514096][0.226251,0.970824,0][1.30011,-0.714076,-1.02762][0.816226,0.26359,-0.514096][0.226251,0.970824,0][1.23291,-0.481649,-0.99135][0.823377,0.312027,-0.474015][0.236665,0.953214,0][1.22171,-0.38362,-0.132386][0.84148,0.511114,-0.17514][0.466728,0.959237,0][1.29212,-0.586926,-0.167022][1.35598,0.484604,-0.0879661][0.792789,0.0319621,0][0.938125,-0.591705,-0.598252][0.00292567,-0.999995,-0.00096143][0.75341,0.069685,0][0.948914,-0.58745,-1.45803][0.685937,0.194736,-0.701119][0.66954,0.0750627,0][0.948914,-0.58745,-1.45803][0.685937,0.194736,-0.701119][0.66954,0.0750627,0][1.30011,-0.714076,-1.02762][0.816226,0.26359,-0.514096][0.70886,0.037618,0][1.29212,-0.586926,-0.167022][1.35598,0.484604,-0.0879661][0.792789,0.0319621,0][0.938125,-0.591705,-0.598252][0.00292567,-0.999995,-0.00096143][0.75341,0.069685,0][0.50771,-0.591705,-0.885846][6.5519e-007,-1,-1.58118e-006][0.728601,0.113782,0][0.522452,-0.45862,-1.74563][0.408275,0.341032,-0.846764][0.644701,0.118774,0][0.522452,-0.45862,-1.74563][0.408275,0.341032,-0.846764][0.644701,0.118774,0][0.948914,-0.58745,-1.45803][0.685937,0.194736,-0.701119][0.66954,0.0750627,0][0.938125,-0.591705,-0.598252][0.00292567,-0.999995,-0.00096143][0.75341,0.069685,0][0.50771,-0.591705,-0.885846][6.5519e-007,-1,-1.58118e-006][0.728601,0.113782,0][2.49047e-007,-0.591705,-0.986836][0,-1,-1.71252e-006][0.722556,0.164016,0][4.22351e-007,-0.404606,-1.84662][0.00601706,0.402212,-0.915527][0.638766,0.170445,0][4.22351e-007,-0.404606,-1.84662][0.00601706,0.402212,-0.915527][0.638766,0.170445,0][0.522452,-0.45862,-1.74563][0.408275,0.341032,-0.846764][0.644701,0.118774,0][0.50771,-0.591705,-0.885846][6.5519e-007,-1,-1.58118e-006][0.728601,0.113782,0][2.49047e-007,-0.591705,-0.986836][0,-1,-1.71252e-006][0.722556,0.164016,0][-0.507709,-0.591705,-0.885847][-0.00210603,-0.999997,0.000866289][0.736194,0.21274,0][-0.522452,-0.45862,-1.74563][-0.399707,0.326573,-0.856495][0.652514,0.220605,0][-0.522452,-0.45862,-1.74563][-0.399707,0.326573,-0.856495][0.652514,0.220605,0][4.22351e-007,-0.404606,-1.84662][0.00601706,0.402212,-0.915527][0.638766,0.170445,0][2.49047e-007,-0.591705,-0.986836][0,-1,-1.71252e-006][0.722556,0.164016,0][-0.507709,-0.591705,-0.885847][-0.00210603,-0.999997,0.000866289][0.736194,0.21274,0][-0.946827,-0.589315,-0.583351][-0.00865647,-0.99994,-0.00664996][0.768957,0.253272,0][-0.948913,-0.58745,-1.45803][-0.728069,0.156792,-0.667332][0.683731,0.260016,0][-0.948913,-0.58745,-1.45803][-0.728069,0.156792,-0.667332][0.683731,0.260016,0][-0.522452,-0.45862,-1.74563][-0.399707,0.326573,-0.856495][0.652514,0.220605,0][-0.507709,-0.591705,-0.885847][-0.00210603,-0.999997,0.000866289][0.736194,0.21274,0][-0.946827,-0.589315,-0.583351][-0.00865647,-0.99994,-0.00664996][0.768957,0.253272,0][-1.26242,-0.589391,-0.138236][-1.41319,0.796109,-0.260512][0.814696,0.2807,0][-1.21854,-0.714076,-1.02762][-0.850935,0.0292215,-0.524457][0.727693,0.283074,0][-1.21854,-0.714076,-1.02762][-0.850935,0.0292215,-0.524457][0.727693,0.283074,0][-0.948913,-0.58745,-1.45803][-0.728069,0.156792,-0.667332][0.683731,0.260016,0][-0.946827,-0.589315,-0.583351][-0.00865647,-0.99994,-0.00664996][0.768957,0.253272,0][-1.26242,-0.589391,-0.138236][-1.41319,0.796109,-0.260512][0.491253,0.294174,0][-1.13789,-0.38601,-0.137625][-0.846749,0.443615,-0.293634][0.490108,0.327518,0][-1.23291,-0.481649,-0.991351][-0.847367,0.0550646,-0.528145][0.262563,0.293114,0][-1.23291,-0.481649,-0.991351][-0.847367,0.0550646,-0.528145][0.731335,0.284203,0][-1.21854,-0.714076,-1.02762][-0.850935,0.0292215,-0.524457][0.727693,0.283074,0][-1.26242,-0.589391,-0.138236][-1.41319,0.796109,-0.260512][0.814696,0.2807,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/BlackLotus.mesh b/shareddata/charcustom/hats/fonts/BlackLotus.mesh deleted file mode 100644 index aa239ff..0000000 --- a/shareddata/charcustom/hats/fonts/BlackLotus.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -604 -[0.0951588,2.8203,1.37237][2.48388,2.5338e-007,4.20466e-007][0.729388,0.722306,0][0.0951589,3.11721,0.467112][2.52512,-1.84797e-007,2.30347e-007][0.804574,0.724607,0][0.0951589,3.27603,0.349502][0.616471,0,0][0.817024,0.734013,0][0.0951589,3.27603,0.349502][0.616471,0,0][0.817024,0.734013,0][0.0951587,2.88277,1.54853][0.657715,0,0][0.717439,0.730966,0][0.0951588,2.8203,1.37237][2.48388,2.5338e-007,4.20466e-007][0.729388,0.722306,0][0.0951587,2.88277,1.54853][0.657715,0,0][0.346996,0.948537,0][0.0951589,3.27603,0.349502][0.616471,0,0][0.346996,0.850582,0][-0.0918797,3.27603,0.349502][0,1.49257,0.489536][0.361764,0.850582,0][-0.0918797,3.27603,0.349502][0,1.49257,0.489536][0.361764,0.850582,0][-0.0918799,2.88277,1.54853][3.12006e-007,1.49257,0.489536][0.361764,0.948537,0][0.0951587,2.88277,1.54853][0.657715,0,0][0.346996,0.948537,0][-0.0918799,2.88277,1.54853][3.12006e-007,1.49257,0.489536][0.303397,0.99,0][-0.0918797,3.27603,0.349502][0,1.49257,0.489536][0.203769,0.98914,0][-0.0918797,3.11721,0.467112][-2.52512,0,-3.76289e-007][0.216578,0.980229,0][-0.0918797,3.11721,0.467112][-2.52512,0,-3.76289e-007][0.216578,0.980229,0][-0.0918798,2.8203,1.37237][-2.48388,-2.90319e-007,-4.22311e-007][0.291796,0.980878,0][-0.0918799,2.88277,1.54853][3.12006e-007,1.49257,0.489536][0.303397,0.99,0][-0.0918798,2.8203,1.37237][-2.48388,-2.90319e-007,-4.22311e-007][0.944109,0.268012,0][-0.0918797,3.11721,0.467112][-2.52512,0,-3.76289e-007][0.944109,0.341967,0][0.0951589,3.11721,0.467112][2.52512,-1.84797e-007,2.30347e-007][0.929341,0.341967,0][0.0951589,3.11721,0.467112][2.52512,-1.84797e-007,2.30347e-007][0.929341,0.341967,0][0.0951588,2.8203,1.37237][2.48388,2.5338e-007,4.20466e-007][0.929341,0.268012,0][-0.0918798,2.8203,1.37237][-2.48388,-2.90319e-007,-4.22311e-007][0.944109,0.268012,0][0.0951589,3.11721,0.467112][2.52512,-1.84797e-007,2.30347e-007][0.804574,0.724607,0][0.0951589,2.11258,0.488137][0.612745,0,0][0.780578,0.648984,0][0.0951589,2.27268,0.370502][2.52885,0,4.68329e-007][0.793058,0.658487,0][0.0951589,2.27268,0.370502][2.52885,0,4.68329e-007][0.793058,0.658487,0][0.0951589,3.27603,0.349502][0.616471,0,0][0.817024,0.734013,0][0.0951589,3.11721,0.467112][2.52512,-1.84797e-007,2.30347e-007][0.804574,0.724607,0][0.0951589,3.27603,0.349502][0.616471,0,0][0.10867,0.0695131,0][0.0951589,2.27268,0.370502][2.52885,0,4.68329e-007][0.186968,0.0695131,0][-0.0918797,2.27268,0.370502][0,-0.0328685,-1.57045][0.186968,0.0842807,0][-0.0918797,2.27268,0.370502][0,-0.0328685,-1.57045][0.186968,0.0842807,0][-0.0918797,3.27603,0.349502][0,1.49257,0.489536][0.10867,0.0842807,0][0.0951589,3.27603,0.349502][0.616471,0,0][0.10867,0.0695131,0][-0.0918797,3.27603,0.349502][0,1.49257,0.489536][0.203769,0.98914,0][-0.0918797,2.27268,0.370502][0,-0.0328685,-1.57045][0.230677,0.914612,0][-0.0918797,2.11258,0.488137][-0.612745,0,0][0.24352,0.905606,0][-0.0918797,2.11258,0.488137][-0.612745,0,0][0.24352,0.905606,0][-0.0918797,3.11721,0.467112][-2.52512,0,-3.76289e-007][0.216578,0.980229,0][-0.0918797,3.27603,0.349502][0,1.49257,0.489536][0.203769,0.98914,0][-0.0918797,3.11721,0.467112][-2.52512,0,-3.76289e-007][0.258567,0.242431,0][-0.0918797,2.11258,0.488137][-0.612745,0,0][0.258567,0.164033,0][0.0951589,2.11258,0.488137][0.612745,0,0][0.273335,0.164033,0][0.0951589,2.11258,0.488137][0.612745,0,0][0.273335,0.164033,0][0.0951589,3.11721,0.467112][2.52512,-1.84797e-007,2.30347e-007][0.273335,0.242431,0][-0.0918797,3.11721,0.467112][-2.52512,0,-3.76289e-007][0.258567,0.242431,0][0.0951589,2.11258,0.488137][0.612745,0,0][0.780578,0.648984,0][0.0951589,2.21149,0.19396][2.49126,-2.95554e-007,0][0.805065,0.649916,0][0.0951589,2.36767,0.0880077][0.650329,0,0][0.816572,0.659382,0][0.0951589,2.36767,0.0880077][0.650329,0,0][0.816572,0.659382,0][0.0951589,2.27268,0.370502][2.52885,0,4.68329e-007][0.793058,0.658487,0][0.0951589,2.11258,0.488137][0.612745,0,0][0.780578,0.648984,0][0.0951589,2.27268,0.370502][2.52885,0,4.68329e-007][0.765114,0.53484,0][0.0951589,2.36767,0.0880077][0.650329,0,0][0.765114,0.557942,0][-0.0918797,2.36767,0.0880077][0,1.48888,0.500628][0.750346,0.557942,0][-0.0918797,2.36767,0.0880077][0,1.48888,0.500628][0.750346,0.557942,0][-0.0918797,2.27268,0.370502][0,-0.0328685,-1.57045][0.750346,0.53484,0][0.0951589,2.27268,0.370502][2.52885,0,4.68329e-007][0.765114,0.53484,0][-0.0918797,2.27268,0.370502][0,-0.0328685,-1.57045][0.230677,0.914612,0][-0.0918797,2.36767,0.0880077][0,1.48888,0.500628][0.207146,0.914584,0][-0.0918797,2.21149,0.19396][-2.49126,1.31672e-007,-1.50774e-007][0.219016,0.905577,0][-0.0918797,2.21149,0.19396][-2.49126,1.31672e-007,-1.50774e-007][0.219016,0.905577,0][-0.0918797,2.11258,0.488137][-0.612745,0,0][0.24352,0.905606,0][-0.0918797,2.27268,0.370502][0,-0.0328685,-1.57045][0.230677,0.914612,0][-0.0918797,2.11258,0.488137][-0.612745,0,0][0.942217,0.689885,0][-0.0918797,2.21149,0.19396][-2.49126,1.31672e-007,-1.50774e-007][0.942217,0.66538,0][0.0951589,2.21149,0.19396][2.49126,-2.95554e-007,0][0.956985,0.66538,0][0.0951589,2.21149,0.19396][2.49126,-2.95554e-007,0][0.956985,0.66538,0][0.0951589,2.11258,0.488137][0.612745,0,0][0.956985,0.689885,0][-0.0918797,2.11258,0.488137][-0.612745,0,0][0.942217,0.689885,0][0.0951589,2.21149,0.19396][2.49126,-2.95554e-007,0][0.805065,0.649916,0][0.0951589,1.26244,0.142465][2.96369,0,-7.69194e-007][0.787801,0.576886,0][0.0951589,0.634028,-0.00606995][0.177894,0,0][0.785037,0.525977,0][0.0951589,0.634028,-0.00606995][0.177894,0,0][0.785037,0.525977,0][0.0951589,2.36767,0.0880077][0.650329,0,0][0.816572,0.659382,0][0.0951589,2.21149,0.19396][2.49126,-2.95554e-007,0][0.805065,0.649916,0][0.0951589,2.36767,0.0880077][0.650329,0,0][0.492492,0.700557,0][0.0951589,0.634028,-0.00606995][0.177894,0,0][0.492492,0.563903,0][-0.0918797,0.634028,-0.00606994][0,0.0851155,-1.56849][0.50726,0.563903,0][-0.0918797,0.634028,-0.00606994][0,0.0851155,-1.56849][0.50726,0.563903,0][-0.0918797,2.36767,0.0880077][0,1.48888,0.500628][0.50726,0.700557,0][0.0951589,2.36767,0.0880077][0.650329,0,0][0.492492,0.700557,0][-0.0918797,2.36767,0.0880077][0,1.48888,0.500628][0.207146,0.914584,0][-0.0918797,0.634028,-0.00606994][0,0.0851155,-1.56849][0.243887,0.782518,0][-0.0918797,1.26244,0.142465][-2.96369,0,2.88153e-007][0.23913,0.833279,0][-0.0918797,1.26244,0.142465][-2.96369,0,2.88153e-007][0.23913,0.833279,0][-0.0918797,2.21149,0.19396][-2.49126,1.31672e-007,-1.50774e-007][0.219016,0.905577,0][-0.0918797,2.36767,0.0880077][0,1.48888,0.500628][0.207146,0.914584,0][-0.0918797,2.21149,0.19396][-2.49126,1.31672e-007,-1.50774e-007][0.861766,0.334344,0][-0.0918797,1.26244,0.142465][-2.96369,0,2.88153e-007][0.786957,0.334344,0][0.0951589,1.26244,0.142465][2.96369,0,-7.69194e-007][0.786957,0.319577,0][0.0951589,1.26244,0.142465][2.96369,0,-7.69194e-007][0.786957,0.319577,0][0.0951589,2.21149,0.19396][2.49126,-2.95554e-007,0][0.861766,0.319577,0][-0.0918797,2.21149,0.19396][-2.49126,1.31672e-007,-1.50774e-007][0.861766,0.334344,0][0.0951589,1.26244,0.142465][2.96369,0,-7.69194e-007][0.787801,0.576886,0][0.0951589,1.82616,0.387461][0.84121,0,0][0.781816,0.625046,0][0.0951589,1.68692,0.451528][2.30037,0,3.35713e-007][0.773858,0.615928,0][0.0951589,1.68692,0.451528][2.30037,0,3.35713e-007][0.773858,0.615928,0][0.0951589,0.634028,-0.00606995][0.177894,0,0][0.785037,0.525977,0][0.0951589,1.26244,0.142465][2.96369,0,-7.69194e-007][0.787801,0.576886,0][0.0951589,0.634028,-0.00606995][0.177894,0,0][0.0997756,0.31427,0][0.0951589,1.68692,0.451528][2.30037,0,3.35713e-007][0.186968,0.31427,0][-0.0918797,1.68692,0.451528][0,-0.62611,1.44062][0.186968,0.329037,0][-0.0918797,1.68692,0.451528][0,-0.62611,1.44062][0.186968,0.329037,0][-0.0918797,0.634028,-0.00606994][0,0.0851155,-1.56849][0.0997756,0.329037,0][0.0951589,0.634028,-0.00606995][0.177894,0,0][0.0997756,0.31427,0][-0.0918797,0.634028,-0.00606994][0,0.0851155,-1.56849][0.243887,0.782518,0][-0.0918797,1.68692,0.451528][0,-0.62611,1.44062][0.251531,0.872839,0][-0.0918797,1.82616,0.387461][-0.841211,0,-2.11446e-007][0.243222,0.881637,0][-0.0918797,1.82616,0.387461][-0.841211,0,-2.11446e-007][0.243222,0.881637,0][-0.0918797,1.26244,0.142465][-2.96369,0,2.88153e-007][0.23913,0.833279,0][-0.0918797,0.634028,-0.00606994][0,0.0851155,-1.56849][0.243887,0.782518,0][-0.0918797,1.26244,0.142465][-2.96369,0,2.88153e-007][0.298049,0.473444,0][-0.0918797,1.82616,0.387461][-0.841211,0,-2.11446e-007][0.251365,0.473444,0][0.0951589,1.82616,0.387461][0.84121,0,0][0.251365,0.458677,0][0.0951589,1.82616,0.387461][0.84121,0,0][0.251365,0.458677,0][0.0951589,1.26244,0.142465][2.96369,0,-7.69194e-007][0.298049,0.458677,0][-0.0918797,1.26244,0.142465][-2.96369,0,2.88153e-007][0.298049,0.473444,0][0.0951589,1.82616,0.387461][0.84121,0,0][0.781816,0.625046,0][0.0951588,1.73775,0.674977][2.21921,2.80235e-007,4.31222e-007][0.758068,0.624761,0][0.0951588,1.60309,0.724144][0.922383,0,1.54523e-007][0.751341,0.615658,0][0.0951588,1.60309,0.724144][0.922383,0,1.54523e-007][0.751341,0.615658,0][0.0951589,1.68692,0.451528][2.30037,0,3.35713e-007][0.773858,0.615928,0][0.0951589,1.82616,0.387461][0.84121,0,0][0.781816,0.625046,0][0.0951589,1.68692,0.451528][2.30037,0,3.35713e-007][0.741786,0.535729,0][0.0951588,1.60309,0.724144][0.922383,0,1.54523e-007][0.741786,0.557942,0][-0.0918798,1.60309,0.724144][0,-1.50141,-0.461696][0.727019,0.557942,0][-0.0918798,1.60309,0.724144][0,-1.50141,-0.461696][0.727019,0.557942,0][-0.0918797,1.68692,0.451528][0,-0.62611,1.44062][0.727019,0.535729,0][0.0951589,1.68692,0.451528][2.30037,0,3.35713e-007][0.741786,0.535729,0][-0.0918797,1.68692,0.451528][0,-0.62611,1.44062][0.251531,0.872839,0][-0.0918798,1.60309,0.724144][0,-1.50141,-0.461696][0.274041,0.873452,0][-0.0918798,1.73775,0.674977][-2.21921,0,-2.21278e-007][0.266963,0.882284,0][-0.0918798,1.73775,0.674977][-2.21921,0,-2.21278e-007][0.266963,0.882284,0][-0.0918797,1.82616,0.387461][-0.841211,0,-2.11446e-007][0.243222,0.881637,0][-0.0918797,1.68692,0.451528][0,-0.62611,1.44062][0.251531,0.872839,0][-0.0918797,1.82616,0.387461][-0.841211,0,-2.11446e-007][0.942217,0.553635,0][-0.0918798,1.73775,0.674977][-2.21921,0,-2.21278e-007][0.942217,0.530209,0][0.0951588,1.73775,0.674977][2.21921,2.80235e-007,4.31222e-007][0.956985,0.530209,0][0.0951588,1.73775,0.674977][2.21921,2.80235e-007,4.31222e-007][0.956985,0.530209,0][0.0951589,1.82616,0.387461][0.84121,0,0][0.956985,0.553635,0][-0.0918797,1.82616,0.387461][-0.841211,0,-2.11446e-007][0.942217,0.553635,0][0.0951588,1.73775,0.674977][2.21921,2.80235e-007,4.31222e-007][0.758068,0.624761,0][0.0951588,2.8203,1.37237][2.48388,2.5338e-007,4.20466e-007][0.729388,0.722306,0][0.0951587,2.88277,1.54853][0.657715,0,0][0.717439,0.730966,0][0.0951587,2.88277,1.54853][0.657715,0,0][0.717439,0.730966,0][0.0951588,1.60309,0.724144][0.922383,0,1.54523e-007][0.751341,0.615658,0][0.0951588,1.73775,0.674977][2.21921,2.80235e-007,4.31222e-007][0.758068,0.624761,0][0.0951588,1.60309,0.724144][0.922383,0,1.54523e-007][0.11796,0.112843,0][0.0951587,2.88277,1.54853][0.657715,0,0][0.238149,0.112843,0][-0.0918799,2.88277,1.54853][3.12006e-007,1.49257,0.489536][0.238149,0.12761,0][-0.0918799,2.88277,1.54853][3.12006e-007,1.49257,0.489536][0.238149,0.12761,0][-0.0918798,1.60309,0.724144][0,-1.50141,-0.461696][0.11796,0.12761,0][0.0951588,1.60309,0.724144][0.922383,0,1.54523e-007][0.11796,0.112843,0][-0.0918798,1.60309,0.724144][0,-1.50141,-0.461696][0.274041,0.873452,0][-0.0918799,2.88277,1.54853][3.12006e-007,1.49257,0.489536][0.303397,0.99,0][-0.0918798,2.8203,1.37237][-2.48388,-2.90319e-007,-4.22311e-007][0.291796,0.980878,0][-0.0918798,2.8203,1.37237][-2.48388,-2.90319e-007,-4.22311e-007][0.291796,0.980878,0][-0.0918798,1.73775,0.674977][-2.21921,0,-2.21278e-007][0.266963,0.882284,0][-0.0918798,1.60309,0.724144][0,-1.50141,-0.461696][0.274041,0.873452,0][-0.0918798,1.73775,0.674977][-2.21921,0,-2.21278e-007][0.890403,0.319577,0][-0.0918798,2.8203,1.37237][-2.48388,-2.90319e-007,-4.22311e-007][0.890403,0.42125,0][0.0951588,2.8203,1.37237][2.48388,2.5338e-007,4.20466e-007][0.875635,0.42125,0][0.0951588,2.8203,1.37237][2.48388,2.5338e-007,4.20466e-007][0.875635,0.42125,0][0.0951588,1.73775,0.674977][2.21921,2.80235e-007,4.31222e-007][0.875635,0.319577,0][-0.0918798,1.73775,0.674977][-2.21921,0,-2.21278e-007][0.890403,0.319577,0][0.096114,0.659853,0.227474][0,1,0][0.762135,0.597504,0][0.17925,0.659853,0.171924][0,1,0][0.756613,0.603116,0][0.2348,0.659853,0.0887881][0,1,0][0.749389,0.606177,0][0.096114,0.659853,0.227474][0,1,0][0.762135,0.597504,0][0.2348,0.659853,0.0887881][0,1,0][0.749389,0.606177,0][0.254306,0.659853,-0.00927759][-6.0083e-007,1,-4.01462e-007][0.741562,0.606222,0][0.096114,0.659853,0.227474][0,1,0][0.762135,0.597504,0][0.254306,0.659853,-0.00927759][-6.0083e-007,1,-4.01462e-007][0.741562,0.606222,0][0.2348,0.659853,-0.107343][4.99459e-007,1,0][0.734324,0.603243,0][0.096114,0.659853,0.227474][0,1,0][0.762135,0.597504,0][0.2348,0.659853,-0.107343][4.99459e-007,1,0][0.734324,0.603243,0][0.17925,0.659853,-0.190479][2.36242e-007,1,0][0.728776,0.597694,0][0.096114,0.659853,0.227474][0,1,0][0.762135,0.597504,0][0.17925,0.659853,-0.190479][2.36242e-007,1,0][0.728776,0.597694,0][0.096114,0.659853,-0.246029][-3.90731e-007,1,0][0.725764,0.59042,0][0.096114,0.659853,0.227474][0,1,0][0.762135,0.597504,0][0.096114,0.659853,-0.246029][-3.90731e-007,1,0][0.725764,0.59042,0][-0.0019517,0.659853,-0.265536][0,1,-1.32912e-007][0.725746,0.582528,0][0.096114,0.659853,0.227474][0,1,0][0.762135,0.597504,0][-0.0019517,0.659853,-0.265536][0,1,-1.32912e-007][0.725746,0.582528,0][-0.100017,0.659853,-0.246029][5.61537e-007,1,-2.32596e-007][0.728725,0.57522,0][0.096114,0.659853,0.227474][0,1,0][0.762135,0.597504,0][-0.100017,0.659853,-0.246029][5.61537e-007,1,-2.32596e-007][0.728725,0.57522,0][-0.183153,0.659853,-0.190479][1.36686e-007,1,0][0.734247,0.569608,0][0.096114,0.659853,0.227474][0,1,0][0.762135,0.597504,0][-0.183153,0.659853,-0.190479][1.36686e-007,1,0][0.734247,0.569608,0][-0.238703,0.659853,-0.107343][-2.76288e-007,1,2.76288e-007][0.741471,0.566547,0][0.096114,0.659853,0.227474][0,1,0][0.762135,0.597504,0][-0.238703,0.659853,-0.107343][-2.76288e-007,1,2.76288e-007][0.741471,0.566547,0][-0.25821,0.659853,-0.00927763][1.33821e-007,1,-2.00277e-007][0.749298,0.566502,0][0.096114,0.659853,0.227474][0,1,0][0.762135,0.597504,0][-0.25821,0.659853,-0.00927763][1.33821e-007,1,-2.00277e-007][0.749298,0.566502,0][-0.238703,0.659853,0.0887881][3.32763e-007,1,-3.73579e-007][0.756537,0.569481,0][0.096114,0.659853,0.227474][0,1,0][0.762135,0.597504,0][-0.238703,0.659853,0.0887881][3.32763e-007,1,-3.73579e-007][0.756537,0.569481,0][-0.183153,0.659853,0.171924][-1.40974e-007,1,7.08727e-007][0.762084,0.57503,0][0.096114,0.659853,0.227474][0,1,0][0.762135,0.597504,0][-0.183153,0.659853,0.171924][-1.40974e-007,1,7.08727e-007][0.762084,0.57503,0][-0.100017,0.659853,0.227474][0,1,0][0.765096,0.582304,0][-0.00195169,0.659853,0.24698][0,1,0][0.765114,0.590196,0][0.096114,0.659853,0.227474][0,1,0][0.762135,0.597504,0][-0.100017,0.659853,0.227474][0,1,0][0.765096,0.582304,0][-0.00195211,-2.44029,2.32109][-0.306114,0.0130237,1.53894][0.18633,0.578207,0][-0.00195207,-2.22919,2.3193][2.00527e-007,0.497344,0.867554][0.202831,0.578207,0][-0.89306,-2.22919,2.14205][-0.331998,0.497344,0.801515][0.200973,0.648565,0][-0.89306,-2.22919,2.14205][-0.331998,0.497344,0.801515][0.200973,0.648565,0][-0.893744,-2.44029,2.1437][-0.306114,0.0130228,1.53894][0.184471,0.648619,0][-0.00195211,-2.44029,2.32109][-0.306114,0.0130237,1.53894][0.18633,0.578207,0][-0.00195207,-2.22919,2.3193][2.00527e-007,0.497344,0.867554][0.0112964,0.545787,0][-0.00195205,-2.00582,1.88583][0,0.774789,0.63222][0.0490875,0.553148,0][-0.72718,-2.00582,1.74158][-0.24194,0.774789,0.584095][0.0480325,0.61152,0][-0.72718,-2.00582,1.74158][-0.24194,0.774789,0.584095][0.0480325,0.61152,0][-0.89306,-2.22919,2.14205][-0.331998,0.497344,0.801515][0.01,0.617511,0][-0.00195207,-2.22919,2.3193][2.00527e-007,0.497344,0.867554][0.0112964,0.545787,0][-0.00195205,-2.00582,1.88583][0,0.774789,0.63222][0.0490875,0.553148,0][-0.00195201,-1.61625,1.59988][0,0.410806,0.911723][0.0829119,0.558164,0][-0.617748,-1.61625,1.47739][-0.348901,0.410806,0.842322][0.082016,0.607729,0][-0.617748,-1.61625,1.47739][-0.348901,0.410806,0.842322][0.082016,0.607729,0][-0.72718,-2.00582,1.74158][-0.24194,0.774789,0.584095][0.0480325,0.61152,0][-0.00195205,-2.00582,1.88583][0,0.774789,0.63222][0.0490875,0.553148,0][-0.00195201,-1.61625,1.59988][0,0.410806,0.911723][0.527825,0.81247,0][-0.00195195,-1.19582,1.51867][0,0.152222,0.988346][0.561633,0.81247,0][-0.586673,-1.19582,1.40236][-0.378224,0.152222,0.913113][0.563375,0.859509,0][-0.586673,-1.19582,1.40236][-0.378224,0.152222,0.913113][0.563375,0.859509,0][-0.617748,-1.61625,1.47739][-0.348901,0.410806,0.842322][0.529659,0.862009,0][-0.00195201,-1.61625,1.59988][0,0.410806,0.911723][0.527825,0.81247,0][-0.00195195,-1.19582,1.51867][0,0.152222,0.988346][0.561633,0.81247,0][-0.00195187,-0.668635,1.45865][2.04113e-007,0.205947,0.978563][0.603401,0.811849,0][-0.563703,-0.668635,1.34691][-0.37448,0.205947,0.904075][0.605074,0.85704,0][-0.563703,-0.668635,1.34691][-0.37448,0.205947,0.904075][0.605074,0.85704,0][-0.586673,-1.19582,1.40236][-0.378224,0.152222,0.913113][0.563375,0.859509,0][-0.00195195,-1.19582,1.51867][0,0.152222,0.988346][0.561633,0.81247,0][-0.00195187,-0.668635,1.45865][2.04113e-007,0.205947,0.978563][0.603401,0.811849,0][-0.00195181,-0.314304,1.34655][1.66724e-007,0.305416,0.952219][0.632547,0.812498,0][-0.520805,-0.314304,1.24335][-0.364398,0.305417,0.879736][0.634093,0.854238,0][-0.520805,-0.314304,1.24335][-0.364398,0.305417,0.879736][0.634093,0.854238,0][-0.563703,-0.668635,1.34691][-0.37448,0.205947,0.904075][0.605074,0.85704,0][-0.00195187,-0.668635,1.45865][2.04113e-007,0.205947,0.978563][0.603401,0.811849,0][-0.00195181,-0.314304,1.34655][1.66724e-007,0.305416,0.952219][0.632547,0.812498,0][-0.00195176,0.0400268,1.23122][0,0.511149,0.859492][0.661743,0.813195,0][-0.476671,0.0400268,1.1368][-0.328913,0.511149,0.794067][0.663157,0.851385,0][-0.476671,0.0400268,1.1368][-0.328913,0.511149,0.794067][0.663157,0.851385,0][-0.520805,-0.314304,1.24335][-0.364398,0.305417,0.879736][0.634093,0.854238,0][-0.00195181,-0.314304,1.34655][1.66724e-007,0.305416,0.952219][0.632547,0.812498,0][-0.00195176,0.0400268,1.23122][0,0.511149,0.859492][0.621415,0.290111,0][-0.00195174,0.341322,0.928451][0,0.809578,0.587013][0.638491,0.310835,0][-0.360805,0.341322,0.857071][-0.22464,0.809578,0.542329][0.620177,0.333164,0][-0.360805,0.341322,0.857071][-0.22464,0.809578,0.542329][0.620177,0.333164,0][-0.476671,0.0400268,1.1368][-0.328913,0.511149,0.794067][0.597188,0.31965,0][-0.00195176,0.0400268,1.23122][0,0.511149,0.859492][0.621415,0.290111,0][-0.00195174,0.341322,0.928451][0,0.809578,0.587013][0.638491,0.310835,0][-0.00195169,0.659853,0.24698][0,0.905923,0.423443][0.674529,0.354569,0][-0.100017,0.659853,0.227474][-0.162045,0.905923,0.391211][0.669524,0.360671,0][-0.100017,0.659853,0.227474][-0.162045,0.905923,0.391211][0.669524,0.360671,0][-0.360805,0.341322,0.857071][-0.22464,0.809578,0.542329][0.620177,0.333164,0][-0.00195174,0.341322,0.928451][0,0.809578,0.587013][0.638491,0.310835,0][-0.306977,0.341322,0.727119][0.224113,-0.810574,-0.541057][0.181446,0.163812,0][-0.00195171,0.618851,-0.00927762][-2.35707e-007,-1,0][0.16707,0.228882,0][-0.00195175,0.341322,0.787792][-3.35806e-007,-0.810574,-0.585636][0.156904,0.163023,0][-0.00195175,0.341322,0.787792][-3.35806e-007,-0.810574,-0.585636][0.156904,0.163023,0][-0.00195176,0.0400266,1.04515][-2.11154e-007,-0.458393,-0.88875][0.153801,0.13617,0][-0.405463,0.0400268,0.964886][0.34011,-0.458393,-0.821097][0.186268,0.137214,0][-0.405463,0.0400268,0.964886][0.34011,-0.458393,-0.821097][0.186268,0.137214,0][-0.306977,0.341322,0.727119][0.224113,-0.810574,-0.541057][0.181446,0.163812,0][-0.00195175,0.341322,0.787792][-3.35806e-007,-0.810574,-0.585636][0.156904,0.163023,0][-0.00195176,0.0400266,1.04515][-2.11154e-007,-0.458393,-0.88875][0.0914274,0.974669,0][-0.00195181,-0.314304,1.14318][0,-0.26305,-0.964782][0.0914274,0.945642,0][-0.442977,-0.314304,1.05545][0.369206,-0.26305,-0.891343][0.126883,0.947489,0][-0.442977,-0.314304,1.05545][0.369206,-0.26305,-0.891343][0.126883,0.947489,0][-0.405463,0.0400268,0.964886][0.34011,-0.458393,-0.821097][0.123867,0.976359,0][-0.00195176,0.0400266,1.04515][-2.11154e-007,-0.458393,-0.88875][0.0914274,0.974669,0][-0.00195181,-0.314304,1.14318][0,-0.26305,-0.964782][0.0914274,0.945642,0][-0.00195188,-0.668635,1.23846][0,-0.176835,-0.98424][0.0914668,0.916673,0][-0.47944,-0.668635,1.14348][0.376653,-0.176835,-0.90932][0.129854,0.918672,0][-0.47944,-0.668635,1.14348][0.376653,-0.176835,-0.90932][0.129854,0.918672,0][-0.442977,-0.314304,1.05545][0.369206,-0.26305,-0.891343][0.126883,0.947489,0][-0.00195181,-0.314304,1.14318][0,-0.26305,-0.964782][0.0914274,0.945642,0][-0.00195188,-0.668635,1.23846][0,-0.176835,-0.98424][0.0914668,0.916673,0][-0.00195196,-1.19582,1.28948][0,-0.129768,-0.991544][0.0928255,0.875482,0][-0.498965,-1.19582,1.19062][0.379448,-0.129768,-0.916068][0.132782,0.877563,0][-0.498965,-1.19582,1.19062][0.379448,-0.129768,-0.916068][0.132782,0.877563,0][-0.47944,-0.668635,1.14348][0.376653,-0.176835,-0.90932][0.129854,0.918672,0][-0.00195188,-0.668635,1.23846][0,-0.176835,-0.98424][0.0914668,0.916673,0][-0.00195196,-1.19582,1.28948][0,-0.129768,-0.991544][0.0928255,0.875482,0][-0.00195202,-1.61625,1.3585][-2.61509e-007,-0.360844,-0.932626][0.093503,0.842036,0][-0.525379,-1.61625,1.25439][0.356901,-0.360844,-0.861634][0.135583,0.844227,0][-0.525379,-1.61625,1.25439][0.356901,-0.360844,-0.861634][0.135583,0.844227,0][-0.498965,-1.19582,1.19062][0.379448,-0.129768,-0.916068][0.132782,0.877563,0][-0.00195196,-1.19582,1.28948][0,-0.129768,-0.991544][0.0928255,0.875482,0][-0.00195202,-1.61625,1.3585][-2.61509e-007,-0.360844,-0.932626][0.093503,0.842036,0][-0.00195206,-2.00582,1.60157][-3.29238e-007,-0.726347,-0.687328][0.0915647,0.807273,0][-0.618396,-2.00582,1.47895][0.263029,-0.726347,-0.635008][0.141122,0.809855,0][-0.618396,-2.00582,1.47895][0.263029,-0.726347,-0.635008][0.141122,0.809855,0][-0.525379,-1.61625,1.25439][0.356901,-0.360844,-0.861634][0.135583,0.844227,0][-0.00195202,-1.61625,1.3585][-2.61509e-007,-0.360844,-0.932626][0.093503,0.842036,0][-0.00195206,-2.00582,1.60157][-3.29238e-007,-0.726347,-0.687328][0.0915647,0.807273,0][-0.00195209,-2.22919,1.97001][-1.69732e-007,-0.469485,-0.882941][0.0871712,0.782518,0][-0.759394,-2.22919,1.81935][0.337887,-0.469485,-0.815731][0.148064,0.78569,0][-0.759394,-2.22919,1.81935][0.337887,-0.469485,-0.815731][0.148064,0.78569,0][-0.618396,-2.00582,1.47895][0.263029,-0.726347,-0.635008][0.141122,0.809855,0][-0.00195206,-2.00582,1.60157][-3.29238e-007,-0.726347,-0.687328][0.0915647,0.807273,0][-0.00195209,-2.22919,1.97001][-1.69732e-007,-0.469485,-0.882941][0.949594,0.120588,0][-0.00195212,-2.44029,1.97153][0.306165,-0.0110746,-1.5392][0.966098,0.120588,0][-0.759975,-2.44029,1.82075][0.306166,-0.011075,-1.5392][0.967679,0.180438,0][-0.759975,-2.44029,1.82075][0.306166,-0.011075,-1.5392][0.967679,0.180438,0][-0.759394,-2.22919,1.81935][0.337887,-0.469485,-0.815731][0.951174,0.180392,0][-0.00195209,-2.22919,1.97001][-1.69732e-007,-0.469485,-0.882941][0.949594,0.120588,0][-0.00195212,-2.44029,1.97153][0.306165,-0.0110746,-1.5392][0.293962,0.193994,0][-0.00195211,-2.44029,2.32109][-0.306114,0.0130237,1.53894][0.321316,0.193994,0][-0.893744,-2.44029,2.1437][-0.306114,0.0130228,1.53894][0.307435,0.264406,0][-0.893744,-2.44029,2.1437][-0.306114,0.0130228,1.53894][0.307435,0.264406,0][-0.759975,-2.44029,1.82075][0.306166,-0.011075,-1.5392][0.282162,0.253844,0][-0.00195212,-2.44029,1.97153][0.306165,-0.0110746,-1.5392][0.293962,0.193994,0][-0.893744,-2.44029,2.1437][-0.306114,0.0130228,1.53894][0.184471,0.648619,0][-0.89306,-2.22919,2.14205][-0.331998,0.497344,0.801515][0.200973,0.648565,0][-1.64851,-2.22919,1.63728][-0.613453,0.497345,0.613453][0.195681,0.708211,0][-1.64851,-2.22919,1.63728][-0.613453,0.497345,0.613453][0.195681,0.708211,0][-1.64977,-2.44029,1.63854][-0.87174,0.0130253,1.30465][0.179174,0.708311,0][-0.893744,-2.44029,2.1437][-0.306114,0.0130228,1.53894][0.184471,0.648619,0][-0.89306,-2.22919,2.14205][-0.331998,0.497344,0.801515][0.01,0.617511,0][-0.72718,-2.00582,1.74158][-0.24194,0.774789,0.584095][0.0480325,0.61152,0][-1.342,-2.00582,1.33077][-0.447047,0.774789,0.447047][0.0668326,0.665807,0][-1.342,-2.00582,1.33077][-0.447047,0.774789,0.447047][0.0668326,0.665807,0][-1.64851,-2.22919,1.63728][-0.613453,0.497345,0.613453][0.0331003,0.684215,0][-0.89306,-2.22919,2.14205][-0.331998,0.497344,0.801515][0.01,0.617511,0][-0.72718,-2.00582,1.74158][-0.24194,0.774789,0.584095][0.0480325,0.61152,0][-0.617748,-1.61625,1.47739][-0.348901,0.410806,0.842322][0.082016,0.607729,0][-1.1398,-1.61625,1.12857][-0.644685,0.410806,0.644685][0.0979794,0.653825,0][-1.1398,-1.61625,1.12857][-0.644685,0.410806,0.644685][0.0979794,0.653825,0][-1.342,-2.00582,1.33077][-0.447047,0.774789,0.447047][0.0668326,0.665807,0][-0.72718,-2.00582,1.74158][-0.24194,0.774789,0.584095][0.0480325,0.61152,0][-0.617748,-1.61625,1.47739][-0.348901,0.410806,0.842322][0.529659,0.862009,0][-0.586673,-1.19582,1.40236][-0.378224,0.152222,0.913113][0.563375,0.859509,0][-1.08238,-1.19582,1.07115][-0.698866,0.152222,0.698866][0.568334,0.902844,0][-1.08238,-1.19582,1.07115][-0.698866,0.152222,0.698866][0.568334,0.902844,0][-1.1398,-1.61625,1.12857][-0.644685,0.410806,0.644685][0.534882,0.907647,0][-0.617748,-1.61625,1.47739][-0.348901,0.410806,0.842322][0.529659,0.862009,0][-0.586673,-1.19582,1.40236][-0.378224,0.152222,0.913113][0.563375,0.859509,0][-0.563703,-0.668635,1.34691][-0.37448,0.205947,0.904075][0.605074,0.85704,0][-1.03993,-0.668634,1.0287][-0.691949,0.205947,0.691949][0.609838,0.898672,0][-1.03993,-0.668634,1.0287][-0.691949,0.205947,0.691949][0.609838,0.898672,0][-1.08238,-1.19582,1.07115][-0.698866,0.152222,0.698866][0.568334,0.902844,0][-0.586673,-1.19582,1.40236][-0.378224,0.152222,0.913113][0.563375,0.859509,0][-0.563703,-0.668635,1.34691][-0.37448,0.205947,0.904075][0.605074,0.85704,0][-0.520805,-0.314304,1.24335][-0.364398,0.305417,0.879736][0.634093,0.854238,0][-0.960668,-0.314304,0.949439][-0.67332,0.305416,0.67332][0.638494,0.892691,0][-0.960668,-0.314304,0.949439][-0.67332,0.305416,0.67332][0.638494,0.892691,0][-1.03993,-0.668634,1.0287][-0.691949,0.205947,0.691949][0.609838,0.898672,0][-0.563703,-0.668635,1.34691][-0.37448,0.205947,0.904075][0.605074,0.85704,0][-0.520805,-0.314304,1.24335][-0.364398,0.305417,0.879736][0.634093,0.854238,0][-0.476671,0.0400268,1.1368][-0.328913,0.511149,0.794067][0.663157,0.851385,0][-0.879119,0.0400269,0.86789][-0.607753,0.511149,0.607753][0.667183,0.886567,0][-0.879119,0.0400269,0.86789][-0.607753,0.511149,0.607753][0.667183,0.886567,0][-0.960668,-0.314304,0.949439][-0.67332,0.305416,0.67332][0.638494,0.892691,0][-0.520805,-0.314304,1.24335][-0.364398,0.305417,0.879736][0.634093,0.854238,0][-0.476671,0.0400268,1.1368][-0.328913,0.511149,0.794067][0.597188,0.31965,0][-0.360805,0.341322,0.857071][-0.22464,0.809578,0.542329][0.620177,0.333164,0][-0.665026,0.341323,0.653797][-0.415081,0.809578,0.415081][0.611756,0.360715,0][-0.665026,0.341323,0.653797][-0.415081,0.809578,0.415081][0.611756,0.360715,0][-0.879119,0.0400269,0.86789][-0.607753,0.511149,0.607753][0.586047,0.356097,0][-0.476671,0.0400268,1.1368][-0.328913,0.511149,0.794067][0.597188,0.31965,0][-0.360805,0.341322,0.857071][-0.22464,0.809578,0.542329][0.620177,0.333164,0][-0.100017,0.659853,0.227474][-0.162045,0.905923,0.391211][0.669524,0.360671,0][-0.183153,0.659853,0.171924][-0.299419,0.905923,0.29942][0.667222,0.3682,0][-0.183153,0.659853,0.171924][-0.299419,0.905923,0.29942][0.667222,0.3682,0][-0.665026,0.341323,0.653797][-0.415081,0.809578,0.415081][0.611756,0.360715,0][-0.360805,0.341322,0.857071][-0.22464,0.809578,0.542329][0.620177,0.333164,0][-0.565565,0.341322,0.554336][0.414107,-0.810574,-0.414107][0.203836,0.173392,0][-0.00195171,0.618851,-0.00927762][-2.35707e-007,-1,0][0.16707,0.228882,0][-0.306977,0.341322,0.727119][0.224113,-0.810574,-0.541057][0.181446,0.163812,0][-0.306977,0.341322,0.727119][0.224113,-0.810574,-0.541057][0.181446,0.163812,0][-0.405463,0.0400268,0.964886][0.34011,-0.458393,-0.821097][0.186268,0.137214,0][-0.747544,0.0400268,0.736315][0.628441,-0.458393,-0.628441][0.215887,0.149887,0][-0.747544,0.0400268,0.736315][0.628441,-0.458393,-0.628441][0.215887,0.149887,0][-0.565565,0.341322,0.554336][0.414107,-0.810574,-0.414107][0.203836,0.173392,0][-0.306977,0.341322,0.727119][0.224113,-0.810574,-0.541057][0.181446,0.163812,0][-0.405463,0.0400268,0.964886][0.34011,-0.458393,-0.821097][0.123867,0.976359,0][-0.442977,-0.314304,1.05545][0.369206,-0.26305,-0.891343][0.126883,0.947489,0][-0.816861,-0.314304,0.805631][0.682204,-0.26305,-0.682204][0.159454,0.952748,0][-0.816861,-0.314304,0.805631][0.682204,-0.26305,-0.682204][0.159454,0.952748,0][-0.747544,0.0400268,0.736315][0.628441,-0.458393,-0.628441][0.153668,0.981171,0][-0.405463,0.0400268,0.964886][0.34011,-0.458393,-0.821097][0.123867,0.976359,0][-0.442977,-0.314304,1.05545][0.369206,-0.26305,-0.891343][0.126883,0.947489,0][-0.47944,-0.668635,1.14348][0.376653,-0.176835,-0.90932][0.129854,0.918672,0][-0.884236,-0.668635,0.873006][0.695963,-0.176835,-0.695963][0.165118,0.924367,0][-0.884236,-0.668635,0.873006][0.695963,-0.176835,-0.695963][0.165118,0.924367,0][-0.816861,-0.314304,0.805631][0.682204,-0.26305,-0.682204][0.159454,0.952748,0][-0.442977,-0.314304,1.05545][0.369206,-0.26305,-0.891343][0.126883,0.947489,0][-0.47944,-0.668635,1.14348][0.376653,-0.176835,-0.90932][0.129854,0.918672,0][-0.498965,-1.19582,1.19062][0.379448,-0.129768,-0.916068][0.132782,0.877563,0][-0.920312,-1.19582,0.909082][0.701128,-0.129768,-0.701128][0.169488,0.88349,0][-0.920312,-1.19582,0.909082][0.701128,-0.129768,-0.701128][0.169488,0.88349,0][-0.884236,-0.668635,0.873006][0.695963,-0.176835,-0.695963][0.165118,0.924367,0][-0.47944,-0.668635,1.14348][0.376653,-0.176835,-0.90932][0.129854,0.918672,0][-0.498965,-1.19582,1.19062][0.379448,-0.129768,-0.916068][0.132782,0.877563,0][-0.525379,-1.61625,1.25439][0.356901,-0.360844,-0.861634][0.135583,0.844227,0][-0.969119,-1.61625,0.957889][0.659466,-0.360844,-0.659466][0.17424,0.85047,0][-0.969119,-1.61625,0.957889][0.659466,-0.360844,-0.659466][0.17424,0.85047,0][-0.920312,-1.19582,0.909082][0.701128,-0.129768,-0.701128][0.169488,0.88349,0][-0.498965,-1.19582,1.19062][0.379448,-0.129768,-0.916068][0.132782,0.877563,0][-0.525379,-1.61625,1.25439][0.356901,-0.360844,-0.861634][0.135583,0.844227,0][-0.618396,-2.00582,1.47895][0.263029,-0.726347,-0.635008][0.141122,0.809855,0][-1.14099,-2.00582,1.12976][0.486014,-0.726348,-0.486014][0.186649,0.817206,0][-1.14099,-2.00582,1.12976][0.486014,-0.726348,-0.486014][0.186649,0.817206,0][-0.969119,-1.61625,0.957889][0.659466,-0.360844,-0.659466][0.17424,0.85047,0][-0.525379,-1.61625,1.25439][0.356901,-0.360844,-0.861634][0.135583,0.844227,0][-0.618396,-2.00582,1.47895][0.263029,-0.726347,-0.635008][0.381596,0.706389,0][-0.759394,-2.22919,1.81935][0.337887,-0.469485,-0.815731][0.348168,0.712708,0][-1.40152,-2.22919,1.39029][0.624333,-0.469484,-0.624334][0.346996,0.651744,0][-1.40152,-2.22919,1.39029][0.624333,-0.469484,-0.624334][0.346996,0.651744,0][-1.14099,-2.00582,1.12976][0.486014,-0.726348,-0.486014][0.380642,0.656773,0][-0.618396,-2.00582,1.47895][0.263029,-0.726347,-0.635008][0.381596,0.706389,0][-0.759394,-2.22919,1.81935][0.337887,-0.469485,-0.815731][0.951174,0.180392,0][-0.759975,-2.44029,1.82075][0.306166,-0.011075,-1.5392][0.967679,0.180438,0][-1.4026,-2.44029,1.39137][0.871886,-0.0110715,-1.30487][0.97218,0.231176,0][-1.4026,-2.44029,1.39137][0.871886,-0.0110715,-1.30487][0.97218,0.231176,0][-1.40152,-2.22919,1.39029][0.624333,-0.469484,-0.624334][0.955672,0.231091,0][-0.759394,-2.22919,1.81935][0.337887,-0.469485,-0.815731][0.951174,0.180392,0][-0.759975,-2.44029,1.82075][0.306166,-0.011075,-1.5392][0.282162,0.253844,0][-0.893744,-2.44029,2.1437][-0.306114,0.0130228,1.53894][0.307435,0.264406,0][-1.64977,-2.44029,1.63854][-0.87174,0.0130253,1.30465][0.267903,0.324098,0][-1.64977,-2.44029,1.63854][-0.87174,0.0130253,1.30465][0.267903,0.324098,0][-1.4026,-2.44029,1.39137][0.871886,-0.0110715,-1.30487][0.24856,0.304582,0][-0.759975,-2.44029,1.82075][0.306166,-0.011075,-1.5392][0.282162,0.253844,0][-1.64977,-2.44029,1.63854][-0.87174,0.0130253,1.30465][0.859366,0.975945,0][-1.64851,-2.22919,1.63728][-0.613453,0.497345,0.613453][0.842703,0.975525,0][-2.15328,-2.22919,0.881831][-0.801515,0.497344,0.331998][0.843851,0.915889,0][-2.15328,-2.22919,0.881831][-0.801515,0.497344,0.331998][0.843851,0.915889,0][-2.15493,-2.44029,0.882514][-1.30465,0.0130224,0.87174][0.860514,0.916264,0][-1.64977,-2.44029,1.63854][-0.87174,0.0130253,1.30465][0.859366,0.975945,0][-1.64851,-2.22919,1.63728][-0.613453,0.497345,0.613453][0.0331003,0.684215,0][-1.342,-2.00582,1.33077][-0.447047,0.774789,0.447047][0.0668326,0.665807,0][-1.75281,-2.00582,0.71595][-0.584095,0.774789,0.24194][0.102626,0.707743,0][-1.75281,-2.00582,0.71595][-0.584095,0.774789,0.24194][0.102626,0.707743,0][-2.15328,-2.22919,0.881831][-0.801515,0.497344,0.331998][0.0770805,0.735743,0][-1.64851,-2.22919,1.63728][-0.613453,0.497345,0.613453][0.0331003,0.684215,0][-1.342,-2.00582,1.33077][-0.447047,0.774789,0.447047][0.0668326,0.665807,0][-1.1398,-1.61625,1.12857][-0.644685,0.410806,0.644685][0.0979794,0.653825,0][-1.48862,-1.61625,0.606519][-0.842322,0.410806,0.348901][0.128372,0.689433,0][-1.48862,-1.61625,0.606519][-0.842322,0.410806,0.348901][0.128372,0.689433,0][-1.75281,-2.00582,0.71595][-0.584095,0.774789,0.24194][0.102626,0.707743,0][-1.342,-2.00582,1.33077][-0.447047,0.774789,0.447047][0.0668326,0.665807,0][-1.1398,-1.61625,1.12857][-0.644685,0.410806,0.644685][0.658176,0.705621,0][-1.08238,-1.19582,1.07115][-0.698866,0.152222,0.698866][0.625074,0.70045,0][-1.41359,-1.19582,0.575443][-0.913113,0.152222,0.378224][0.625827,0.661319,0][-1.41359,-1.19582,0.575443][-0.913113,0.152222,0.378224][0.625827,0.661319,0][-1.48862,-1.61625,0.606519][-0.842322,0.410806,0.348901][0.658969,0.66441,0][-1.1398,-1.61625,1.12857][-0.644685,0.410806,0.644685][0.658176,0.705621,0][-1.08238,-1.19582,1.07115][-0.698866,0.152222,0.698866][0.625074,0.70045,0][-1.03993,-0.668634,1.0287][-0.691949,0.205947,0.691949][0.583523,0.696299,0][-1.35814,-0.668634,0.552474][-0.904074,0.205947,0.37448][0.584246,0.658705,0][-1.35814,-0.668634,0.552474][-0.904074,0.205947,0.37448][0.584246,0.658705,0][-1.41359,-1.19582,0.575443][-0.913113,0.152222,0.378224][0.625827,0.661319,0][-1.08238,-1.19582,1.07115][-0.698866,0.152222,0.698866][0.625074,0.70045,0][-1.03993,-0.668634,1.0287][-0.691949,0.205947,0.691949][0.583523,0.696299,0][-0.960668,-0.314304,0.949439][-0.67332,0.305416,0.67332][0.555672,0.689503,0][-1.25458,-0.314304,0.509576][-0.879736,0.305416,0.364398][0.55634,0.65478,0][-1.25458,-0.314304,0.509576][-0.879736,0.305416,0.364398][0.55634,0.65478,0][-1.35814,-0.668634,0.552474][-0.904074,0.205947,0.37448][0.584246,0.658705,0][-1.03993,-0.668634,1.0287][-0.691949,0.205947,0.691949][0.583523,0.696299,0][-0.960668,-0.314304,0.949439][-0.67332,0.305416,0.67332][0.555672,0.689503,0][-0.879119,0.0400269,0.86789][-0.607753,0.511149,0.607753][0.527825,0.682528,0][-1.14803,0.0400268,0.465442][-0.794067,0.511149,0.328913][0.528436,0.650758,0][-1.14803,0.0400268,0.465442][-0.794067,0.511149,0.328913][0.528436,0.650758,0][-1.25458,-0.314304,0.509576][-0.879736,0.305416,0.364398][0.55634,0.65478,0][-0.960668,-0.314304,0.949439][-0.67332,0.305416,0.67332][0.555672,0.689503,0][-0.879119,0.0400269,0.86789][-0.607753,0.511149,0.607753][0.586047,0.356097,0][-0.665026,0.341323,0.653797][-0.415081,0.809578,0.415081][0.611756,0.360715,0][-0.8683,0.341323,0.349576][-0.542329,0.809578,0.22464][0.614509,0.389294,0][-0.8683,0.341323,0.349576][-0.542329,0.809578,0.22464][0.614509,0.389294,0][-1.14803,0.0400268,0.465442][-0.794067,0.511149,0.328913][0.58969,0.393904,0][-0.879119,0.0400269,0.86789][-0.607753,0.511149,0.607753][0.586047,0.356097,0][-0.665026,0.341323,0.653797][-0.415081,0.809578,0.415081][0.611756,0.360715,0][-0.183153,0.659853,0.171924][-0.299419,0.905923,0.29942][0.667222,0.3682,0][-0.238703,0.659853,0.0887881][-0.39121,0.905923,0.162045][0.667975,0.37601,0][-0.238703,0.659853,0.0887881][-0.39121,0.905923,0.162045][0.667975,0.37601,0][-0.8683,0.341323,0.349576][-0.542329,0.809578,0.22464][0.614509,0.389294,0][-0.665026,0.341323,0.653797][-0.415081,0.809578,0.415081][0.611756,0.360715,0][-0.738348,0.341323,0.295748][0.541057,-0.810574,-0.224113][0.220664,0.190304,0][-0.00195171,0.618851,-0.00927762][-2.35707e-007,-1,0][0.16707,0.228882,0][-0.565565,0.341322,0.554336][0.414107,-0.810574,-0.414107][0.203836,0.173392,0][-0.565565,0.341322,0.554336][0.414107,-0.810574,-0.414107][0.203836,0.173392,0][-0.747544,0.0400268,0.736315][0.628441,-0.458393,-0.628441][0.215887,0.149887,0][-0.976115,0.0400268,0.394234][0.821097,-0.458393,-0.34011][0.238149,0.17226,0][-0.976115,0.0400268,0.394234][0.821097,-0.458393,-0.34011][0.238149,0.17226,0][-0.738348,0.341323,0.295748][0.541057,-0.810574,-0.224113][0.220664,0.190304,0][-0.565565,0.341322,0.554336][0.414107,-0.810574,-0.414107][0.203836,0.173392,0][-0.747544,0.0400268,0.736315][0.628441,-0.458393,-0.628441][0.545747,0.45374,0][-0.816861,-0.314304,0.805631][0.682204,-0.26305,-0.682204][0.51787,0.459699,0][-1.06668,-0.314304,0.431748][0.891343,-0.26305,-0.369206][0.517357,0.430183,0][-1.06668,-0.314304,0.431748][0.891343,-0.26305,-0.369206][0.517357,0.430183,0][-0.976115,0.0400268,0.394234][0.821097,-0.458393,-0.34011][0.545277,0.426735,0][-0.747544,0.0400268,0.736315][0.628441,-0.458393,-0.628441][0.545747,0.45374,0][-0.816861,-0.314304,0.805631][0.682204,-0.26305,-0.682204][0.51787,0.459699,0][-0.884236,-0.668635,0.873006][0.695963,-0.176835,-0.695963][0.489991,0.465504,0][-1.15471,-0.668634,0.468211][0.90932,-0.176835,-0.376653][0.489435,0.433548,0][-1.15471,-0.668634,0.468211][0.90932,-0.176835,-0.376653][0.489435,0.433548,0][-1.06668,-0.314304,0.431748][0.891343,-0.26305,-0.369206][0.517357,0.430183,0][-0.816861,-0.314304,0.805631][0.682204,-0.26305,-0.682204][0.51787,0.459699,0][-0.884236,-0.668635,0.873006][0.695963,-0.176835,-0.695963][0.489991,0.465504,0][-0.920312,-1.19582,0.909082][0.701128,-0.129768,-0.701128][0.448423,0.469076,0][-1.20185,-1.19582,0.487735][0.916067,-0.129768,-0.379448][0.447844,0.435813,0][-1.20185,-1.19582,0.487735][0.916067,-0.129768,-0.379448][0.447844,0.435813,0][-1.15471,-0.668634,0.468211][0.90932,-0.176835,-0.376653][0.489435,0.433548,0][-0.884236,-0.668635,0.873006][0.695963,-0.176835,-0.695963][0.489991,0.465504,0][-0.920312,-1.19582,0.909082][0.701128,-0.129768,-0.701128][0.448423,0.469076,0][-0.969119,-1.61625,0.957889][0.659466,-0.360844,-0.659466][0.4153,0.473506,0][-1.26562,-1.61625,0.514149][0.861634,-0.360844,-0.356901][0.414691,0.438476,0][-1.26562,-1.61625,0.514149][0.861634,-0.360844,-0.356901][0.414691,0.438476,0][-1.20185,-1.19582,0.487735][0.916067,-0.129768,-0.379448][0.447844,0.435813,0][-0.920312,-1.19582,0.909082][0.701128,-0.129768,-0.701128][0.448423,0.469076,0][-0.969119,-1.61625,0.957889][0.659466,-0.360844,-0.659466][0.4153,0.473506,0][-1.14099,-2.00582,1.12976][0.486014,-0.726348,-0.486014][0.384782,0.487609,0][-1.49018,-2.00582,0.607166][0.635008,-0.726348,-0.263029][0.384064,0.446353,0][-1.49018,-2.00582,0.607166][0.635008,-0.726348,-0.263029][0.384064,0.446353,0][-1.26562,-1.61625,0.514149][0.861634,-0.360844,-0.356901][0.414691,0.438476,0][-0.969119,-1.61625,0.957889][0.659466,-0.360844,-0.659466][0.4153,0.473506,0][-1.14099,-2.00582,1.12976][0.486014,-0.726348,-0.486014][0.380642,0.656773,0][-1.40152,-2.22919,1.39029][0.624333,-0.469484,-0.624334][0.346996,0.651744,0][-1.83058,-2.22919,0.748164][0.815731,-0.469485,-0.337887][0.365758,0.595039,0][-1.83058,-2.22919,0.748164][0.815731,-0.469485,-0.337887][0.365758,0.595039,0][-1.49018,-2.00582,0.607166][0.635008,-0.726348,-0.263029][0.395911,0.610624,0][-1.14099,-2.00582,1.12976][0.486014,-0.726348,-0.486014][0.380642,0.656773,0][-1.40152,-2.22919,1.39029][0.624333,-0.469484,-0.624334][0.367505,0.508483,0][-1.4026,-2.44029,1.39137][0.871886,-0.0110715,-1.30487][0.350842,0.508857,0][-1.83198,-2.44029,0.748745][1.30487,-0.0110724,-0.871886][0.34996,0.458127,0][-1.83198,-2.44029,0.748745][1.30487,-0.0110724,-0.871886][0.34996,0.458127,0][-1.83058,-2.22919,0.748164][0.815731,-0.469485,-0.337887][0.366624,0.457791,0][-1.40152,-2.22919,1.39029][0.624333,-0.469484,-0.624334][0.367505,0.508483,0][-1.4026,-2.44029,1.39137][0.871886,-0.0110715,-1.30487][0.24856,0.304582,0][-1.64977,-2.44029,1.63854][-0.87174,0.0130253,1.30465][0.267903,0.324098,0][-2.15493,-2.44029,0.882514][-1.30465,0.0130224,0.87174][0.20874,0.363983,0][-2.15493,-2.44029,0.882514][-1.30465,0.0130224,0.87174][0.20874,0.363983,0][-1.83198,-2.44029,0.748745][1.30487,-0.0110724,-0.871886][0.198271,0.338485,0][-1.4026,-2.44029,1.39137][0.871886,-0.0110715,-1.30487][0.24856,0.304582,0][-2.15493,-2.44029,0.882514][-1.30465,0.0130224,0.87174][0.860514,0.916264,0][-2.15328,-2.22919,0.881831][-0.801515,0.497344,0.331998][0.843851,0.915889,0][-2.33053,-2.22919,-0.00927747][-0.867553,0.497344,1.31165e-007][0.845204,0.845545,0][-2.33053,-2.22919,-0.00927747][-0.867553,0.497344,1.31165e-007][0.845204,0.845545,0][-2.33232,-2.44029,-0.00927765][-1.53894,0.0130235,0.306115][0.861868,0.845865,0][-2.15493,-2.44029,0.882514][-1.30465,0.0130224,0.87174][0.860514,0.916264,0][-2.15328,-2.22919,0.881831][-0.801515,0.497344,0.331998][0.0770805,0.735743,0][-1.75281,-2.00582,0.71595][-0.584095,0.774789,0.24194][0.102626,0.707743,0][-1.89706,-2.00582,-0.00927749][-0.632219,0.774789,0][0.149963,0.730945,0][-1.89706,-2.00582,-0.00927749][-0.632219,0.774789,0][0.149963,0.730945,0][-2.33053,-2.22919,-0.00927747][-0.867553,0.497344,1.31165e-007][0.135245,0.764251,0][-2.15328,-2.22919,0.881831][-0.801515,0.497344,0.331998][0.0770805,0.735743,0][-1.75281,-2.00582,0.71595][-0.584095,0.774789,0.24194][0.689556,0.673641,0][-1.48862,-1.61625,0.606519][-0.842322,0.410806,0.348901][0.658969,0.66441,0][-1.61111,-1.61625,-0.0092775][-0.911723,0.410806,0][0.659904,0.615799,0][-1.61111,-1.61625,-0.0092775][-0.911723,0.410806,0][0.659904,0.615799,0][-1.89706,-2.00582,-0.00927749][-0.632219,0.774789,0][0.690657,0.616391,0][-1.75281,-2.00582,0.71595][-0.584095,0.774789,0.24194][0.689556,0.673641,0][-1.48862,-1.61625,0.606519][-0.842322,0.410806,0.348901][0.658969,0.66441,0][-1.41359,-1.19582,0.575443][-0.913113,0.152222,0.378224][0.625827,0.661319,0][-1.5299,-1.19582,-0.00927762][-0.988346,0.152222,0][0.626715,0.615161,0][-1.5299,-1.19582,-0.00927762][-0.988346,0.152222,0][0.626715,0.615161,0][-1.61111,-1.61625,-0.0092775][-0.911723,0.410806,0][0.659904,0.615799,0][-1.48862,-1.61625,0.606519][-0.842322,0.410806,0.348901][0.658969,0.66441,0][-1.41359,-1.19582,0.575443][-0.913113,0.152222,0.378224][0.625827,0.661319,0][-1.35814,-0.668634,0.552474][-0.904074,0.205947,0.37448][0.584246,0.658705,0][-1.46988,-0.668634,-0.00927758][-0.978563,0.205947,0][0.585099,0.61436,0][-1.46988,-0.668634,-0.00927758][-0.978563,0.205947,0][0.585099,0.61436,0][-1.5299,-1.19582,-0.00927762][-0.988346,0.152222,0][0.626715,0.615161,0][-1.41359,-1.19582,0.575443][-0.913113,0.152222,0.378224][0.625827,0.661319,0][-1.35814,-0.668634,0.552474][-0.904074,0.205947,0.37448][0.584246,0.658705,0][-1.25458,-0.314304,0.509576][-0.879736,0.305416,0.364398][0.55634,0.65478,0][-1.35778,-0.314304,-0.00927759][-0.952219,0.305417,0][0.557128,0.613822,0][-1.35778,-0.314304,-0.00927759][-0.952219,0.305417,0][0.557128,0.613822,0][-1.46988,-0.668634,-0.00927758][-0.978563,0.205947,0][0.585099,0.61436,0][-1.35814,-0.668634,0.552474][-0.904074,0.205947,0.37448][0.584246,0.658705,0][-1.25458,-0.314304,0.509576][-0.879736,0.305416,0.364398][0.55634,0.65478,0][-1.14803,0.0400268,0.465442][-0.794067,0.511149,0.328913][0.528436,0.650758,0][-1.24245,0.0400269,-0.0092776][-0.859492,0.511149,0][0.529157,0.613284,0][-1.24245,0.0400269,-0.0092776][-0.859492,0.511149,0][0.529157,0.613284,0][-1.35778,-0.314304,-0.00927759][-0.952219,0.305417,0][0.557128,0.613822,0][-1.25458,-0.314304,0.509576][-0.879736,0.305416,0.364398][0.55634,0.65478,0][-1.14803,0.0400268,0.465442][-0.794067,0.511149,0.328913][0.58969,0.393904,0][-0.8683,0.341323,0.349576][-0.542329,0.809578,0.22464][0.614509,0.389294,0][-0.939681,0.341323,-0.00927763][-0.587013,0.809578,0][0.628018,0.414551,0][-0.939681,0.341323,-0.00927763][-0.587013,0.809578,0][0.628018,0.414551,0][-1.24245,0.0400269,-0.0092776][-0.859492,0.511149,0][0.607561,0.427315,0][-1.14803,0.0400268,0.465442][-0.794067,0.511149,0.328913][0.58969,0.393904,0][-0.8683,0.341323,0.349576][-0.542329,0.809578,0.22464][0.614509,0.389294,0][-0.238703,0.659853,0.0887881][-0.39121,0.905923,0.162045][0.667975,0.37601,0][-0.25821,0.659853,-0.00927763][-0.423443,0.905923,-2.26976e-007][0.671667,0.382912,0][-0.25821,0.659853,-0.00927763][-0.423443,0.905923,-2.26976e-007][0.671667,0.382912,0][-0.939681,0.341323,-0.00927763][-0.587013,0.809578,0][0.628018,0.414551,0][-0.8683,0.341323,0.349576][-0.542329,0.809578,0.22464][0.614509,0.389294,0][-0.799021,0.341323,-0.00927762][0.585636,-0.810574,0][0.229369,0.211974,0][-0.00195171,0.618851,-0.00927762][-2.35707e-007,-1,0][0.16707,0.228882,0][-0.738348,0.341323,0.295748][0.541057,-0.810574,-0.224113][0.220664,0.190304,0][-0.738348,0.341323,0.295748][0.541057,-0.810574,-0.224113][0.568927,0.418547,0][-0.976115,0.0400268,0.394234][0.821097,-0.458393,-0.34011][0.545277,0.426735,0][-1.05638,0.0400267,-0.00927763][0.88875,-0.458393,0][0.544723,0.394881,0][-1.05638,0.0400267,-0.00927763][0.88875,-0.458393,0][0.544723,0.394881,0][-0.799021,0.341323,-0.00927762][0.585636,-0.810574,0][0.568509,0.394467,0][-0.738348,0.341323,0.295748][0.541057,-0.810574,-0.224113][0.568927,0.418547,0][-0.976115,0.0400268,0.394234][0.821097,-0.458393,-0.34011][0.545277,0.426735,0][-1.06668,-0.314304,0.431748][0.891343,-0.26305,-0.369206][0.517357,0.430183,0][-1.15441,-0.314304,-0.00927757][0.964782,-0.26305,0][0.516751,0.395367,0][-1.15441,-0.314304,-0.00927757][0.964782,-0.26305,0][0.516751,0.395367,0][-1.05638,0.0400267,-0.00927763][0.88875,-0.458393,0][0.544723,0.394881,0][-0.976115,0.0400268,0.394234][0.821097,-0.458393,-0.34011][0.545277,0.426735,0][-1.06668,-0.314304,0.431748][0.891343,-0.26305,-0.369206][0.517357,0.430183,0][-1.15471,-0.668634,0.468211][0.90932,-0.176835,-0.376653][0.489435,0.433548,0][-1.24969,-0.668634,-0.00927758][0.98424,-0.176835,0][0.488779,0.395854,0][-1.24969,-0.668634,-0.00927758][0.98424,-0.176835,0][0.488779,0.395854,0][-1.15441,-0.314304,-0.00927757][0.964782,-0.26305,0][0.516751,0.395367,0][-1.06668,-0.314304,0.431748][0.891343,-0.26305,-0.369206][0.517357,0.430183,0][-1.15471,-0.668634,0.468211][0.90932,-0.176835,-0.376653][0.489435,0.433548,0][-1.20185,-1.19582,0.487735][0.916067,-0.129768,-0.379448][0.447844,0.435813,0][-1.30071,-1.19582,-0.00927761][0.991544,-0.129768,0][0.447162,0.396577,0][-1.30071,-1.19582,-0.00927761][0.991544,-0.129768,0][0.447162,0.396577,0][-1.24969,-0.668634,-0.00927758][0.98424,-0.176835,0][0.488779,0.395854,0][-1.15471,-0.668634,0.468211][0.90932,-0.176835,-0.376653][0.489435,0.433548,0][-1.20185,-1.19582,0.487735][0.916067,-0.129768,-0.379448][0.447844,0.435813,0][-1.26562,-1.61625,0.514149][0.861634,-0.360844,-0.356901][0.414691,0.438476,0][-1.36973,-1.61625,-0.00927755][0.932626,-0.360844,0][0.413972,0.397155,0][-1.36973,-1.61625,-0.00927755][0.932626,-0.360844,0][0.413972,0.397155,0][-1.30071,-1.19582,-0.00927761][0.991544,-0.129768,0][0.447162,0.396577,0][-1.20185,-1.19582,0.487735][0.916067,-0.129768,-0.379448][0.447844,0.435813,0][-1.26562,-1.61625,0.514149][0.861634,-0.360844,-0.356901][0.414691,0.438476,0][-1.49018,-2.00582,0.607166][0.635008,-0.726348,-0.263029][0.384064,0.446353,0][-1.6128,-2.00582,-0.00927749][0.687327,-0.726348,0][0.383218,0.397689,0][-1.6128,-2.00582,-0.00927749][0.687327,-0.726348,0][0.383218,0.397689,0][-1.36973,-1.61625,-0.00927755][0.932626,-0.360844,0][0.413972,0.397155,0][-1.26562,-1.61625,0.514149][0.861634,-0.360844,-0.356901][0.414691,0.438476,0][-1.49018,-2.00582,0.607166][0.635008,-0.726348,-0.263029][0.395911,0.610624,0][-1.83058,-2.22919,0.748164][0.815731,-0.469485,-0.337887][0.365758,0.595039,0][-1.98124,-2.22919,-0.00927746][0.882941,-0.469484,0][0.401598,0.551225,0][-1.98124,-2.22919,-0.00927746][0.882941,-0.469484,0][0.401598,0.551225,0][-1.6128,-2.00582,-0.00927749][0.687327,-0.726348,0][0.425079,0.574966,0][-1.49018,-2.00582,0.607166][0.635008,-0.726348,-0.263029][0.395911,0.610624,0][-1.83058,-2.22919,0.748164][0.815731,-0.469485,-0.337887][0.366624,0.457791,0][-1.83198,-2.44029,0.748745][1.30487,-0.0110724,-0.871886][0.34996,0.458127,0][-1.98276,-2.44029,-0.00927752][1.5392,-0.011072,-0.306166][0.348919,0.398286,0][-1.98276,-2.44029,-0.00927752][1.5392,-0.011072,-0.306166][0.348919,0.398286,0][-1.98124,-2.22919,-0.00927746][0.882941,-0.469484,0][0.365584,0.397996,0][-1.83058,-2.22919,0.748164][0.815731,-0.469485,-0.337887][0.366624,0.457791,0][-1.83198,-2.44029,0.748745][1.30487,-0.0110724,-0.871886][0.198271,0.338485,0][-2.15493,-2.44029,0.882514][-1.30465,0.0130224,0.87174][0.20874,0.363983,0][-2.33232,-2.44029,-0.00927765][-1.53894,0.0130235,0.306115][0.138951,0.377989,0][-2.33232,-2.44029,-0.00927765][-1.53894,0.0130235,0.306115][0.138951,0.377989,0][-1.98276,-2.44029,-0.00927752][1.5392,-0.011072,-0.306166][0.138951,0.35039,0][-1.83198,-2.44029,0.748745][1.30487,-0.0110724,-0.871886][0.198271,0.338485,0][-2.33232,-2.44029,-0.00927765][-1.53894,0.0130235,0.306115][0.861868,0.845865,0][-2.33053,-2.22919,-0.00927747][-0.867553,0.497344,1.31165e-007][0.845204,0.845545,0][-2.15328,-2.22919,-0.900386][-0.801515,0.497345,-0.331998][0.846558,0.7752,0][-2.15328,-2.22919,-0.900386][-0.801515,0.497345,-0.331998][0.846558,0.7752,0][-2.15493,-2.44029,-0.901069][-1.53894,0.0130243,-0.306115][0.863223,0.775467,0][-2.33232,-2.44029,-0.00927765][-1.53894,0.0130235,0.306115][0.861868,0.845865,0][-2.33053,-2.22919,-0.00927747][-0.867553,0.497344,1.31165e-007][0.135245,0.764251,0][-1.89706,-2.00582,-0.00927749][-0.632219,0.774789,0][0.149963,0.730945,0][-1.75281,-2.00582,-0.734505][-0.584095,0.774789,-0.24194][0.201637,0.731879,0][-1.75281,-2.00582,-0.734505][-0.584095,0.774789,-0.24194][0.201637,0.731879,0][-2.15328,-2.22919,-0.900386][-0.801515,0.497345,-0.331998][0.198739,0.765399,0][-2.33053,-2.22919,-0.00927747][-0.867553,0.497344,1.31165e-007][0.135245,0.764251,0][-1.89706,-2.00582,-0.00927749][-0.632219,0.774789,0][0.690657,0.616391,0][-1.61111,-1.61625,-0.0092775][-0.911723,0.410806,0][0.659904,0.615799,0][-1.48862,-1.61625,-0.625074][-0.842322,0.410806,-0.348901][0.660839,0.567188,0][-1.48862,-1.61625,-0.625074][-0.842322,0.410806,-0.348901][0.660839,0.567188,0][-1.75281,-2.00582,-0.734505][-0.584095,0.774789,-0.24194][0.691759,0.559141,0][-1.89706,-2.00582,-0.00927749][-0.632219,0.774789,0][0.690657,0.616391,0][-1.61111,-1.61625,-0.0092775][-0.911723,0.410806,0][0.659904,0.615799,0][-1.5299,-1.19582,-0.00927762][-0.988346,0.152222,0][0.626715,0.615161,0][-1.41359,-1.19582,-0.593998][-0.913113,0.152222,-0.378224][0.627604,0.569002,0][-1.41359,-1.19582,-0.593998][-0.913113,0.152222,-0.378224][0.627604,0.569002,0][-1.48862,-1.61625,-0.625074][-0.842322,0.410806,-0.348901][0.660839,0.567188,0][-1.61111,-1.61625,-0.0092775][-0.911723,0.410806,0][0.659904,0.615799,0][-1.5299,-1.19582,-0.00927762][-0.988346,0.152222,0][0.626715,0.615161,0][-1.46988,-0.668634,-0.00927758][-0.978563,0.205947,0][0.585099,0.61436,0][-1.35814,-0.668635,-0.571029][-0.904074,0.205947,-0.37448][0.585952,0.570015,0][-1.35814,-0.668635,-0.571029][-0.904074,0.205947,-0.37448][0.585952,0.570015,0][-1.41359,-1.19582,-0.593998][-0.913113,0.152222,-0.378224][0.627604,0.569002,0][-1.5299,-1.19582,-0.00927762][-0.988346,0.152222,0][0.626715,0.615161,0][-1.46988,-0.668634,-0.00927758][-0.978563,0.205947,0][0.585099,0.61436,0][-1.35778,-0.314304,-0.00927759][-0.952219,0.305417,0][0.557128,0.613822,0][-1.25458,-0.314304,-0.528131][-0.879736,0.305416,-0.364398][0.557916,0.572863,0][-1.25458,-0.314304,-0.528131][-0.879736,0.305416,-0.364398][0.557916,0.572863,0][-1.35814,-0.668635,-0.571029][-0.904074,0.205947,-0.37448][0.585952,0.570015,0][-1.46988,-0.668634,-0.00927758][-0.978563,0.205947,0][0.585099,0.61436,0][-1.35778,-0.314304,-0.00927759][-0.952219,0.305417,0][0.557128,0.613822,0][-1.24245,0.0400269,-0.0092776][-0.859492,0.511149,0][0.529157,0.613284,0][-1.14803,0.0400268,-0.483997][-0.794067,0.511149,-0.328913][0.529878,0.575809,0][-1.14803,0.0400268,-0.483997][-0.794067,0.511149,-0.328913][0.529878,0.575809,0][-1.25458,-0.314304,-0.528131][-0.879736,0.305416,-0.364398][0.557916,0.572863,0][-1.35778,-0.314304,-0.00927759][-0.952219,0.305417,0][0.557128,0.613822,0][-1.24245,0.0400269,-0.0092776][-0.859492,0.511149,0][0.224061,0.439994,0][-0.939681,0.341323,-0.00927763][-0.587013,0.809578,0][0.235982,0.408446,0][-0.8683,0.341322,-0.368131][-0.542329,0.809578,-0.22464][0.264158,0.414823,0][-0.8683,0.341322,-0.368131][-0.542329,0.809578,-0.22464][0.264158,0.414823,0][-1.14803,0.0400268,-0.483997][-0.794067,0.511149,-0.328913][0.261335,0.44843,0][-1.24245,0.0400269,-0.0092776][-0.859492,0.511149,0][0.224061,0.439994,0][-0.939681,0.341323,-0.00927763][-0.587013,0.809578,0][0.628018,0.414551,0][-0.25821,0.659853,-0.00927763][-0.423443,0.905923,-2.26976e-007][0.671667,0.382912,0][-0.238703,0.659853,-0.107343][-0.391211,0.905923,-0.162045][0.677735,0.387855,0][-0.238703,0.659853,-0.107343][-0.391211,0.905923,-0.162045][0.677735,0.387855,0][-0.8683,0.341322,-0.368131][-0.542329,0.809578,-0.22464][0.650226,0.43264,0][-0.939681,0.341323,-0.00927763][-0.587013,0.809578,0][0.628018,0.414551,0][-0.738348,0.341323,-0.314303][0.541057,-0.810574,0.224113][0.228626,0.235102,0][-0.00195171,0.618851,-0.00927762][-2.35707e-007,-1,0][0.16707,0.228882,0][-0.799021,0.341323,-0.00927762][0.585636,-0.810574,0][0.229369,0.211974,0][-0.799021,0.341323,-0.00927762][0.585636,-0.810574,0][0.568509,0.394467,0][-1.05638,0.0400267,-0.00927763][0.88875,-0.458393,0][0.544723,0.394881,0][-0.976115,0.0400268,-0.412789][0.821097,-0.458393,0.34011][0.544169,0.363026,0][-0.976115,0.0400268,-0.412789][0.821097,-0.458393,0.34011][0.544169,0.363026,0][-0.738348,0.341323,-0.314303][0.541057,-0.810574,0.224113][0.56809,0.370387,0][-0.799021,0.341323,-0.00927762][0.585636,-0.810574,0][0.568509,0.394467,0][-1.05638,0.0400267,-0.00927763][0.88875,-0.458393,0][0.544723,0.394881,0][-1.15441,-0.314304,-0.00927757][0.964782,-0.26305,0][0.516751,0.395367,0][-1.06668,-0.314304,-0.450303][0.891342,-0.26305,0.369206][0.516146,0.360551,0][-1.06668,-0.314304,-0.450303][0.891342,-0.26305,0.369206][0.516146,0.360551,0][-0.976115,0.0400268,-0.412789][0.821097,-0.458393,0.34011][0.544169,0.363026,0][-1.05638,0.0400267,-0.00927763][0.88875,-0.458393,0][0.544723,0.394881,0][-1.15441,-0.314304,-0.00927757][0.964782,-0.26305,0][0.516751,0.395367,0][-1.24969,-0.668634,-0.00927758][0.98424,-0.176835,0][0.488779,0.395854,0][-1.15471,-0.668635,-0.486766][0.90932,-0.176835,0.376653][0.488124,0.358159,0][-1.15471,-0.668635,-0.486766][0.90932,-0.176835,0.376653][0.488124,0.358159,0][-1.06668,-0.314304,-0.450303][0.891342,-0.26305,0.369206][0.516146,0.360551,0][-1.15441,-0.314304,-0.00927757][0.964782,-0.26305,0][0.516751,0.395367,0][-1.24969,-0.668634,-0.00927758][0.98424,-0.176835,0][0.488779,0.395854,0][-1.30071,-1.19582,-0.00927761][0.991544,-0.129768,0][0.447162,0.396577,0][-1.20185,-1.19582,-0.50629][0.916067,-0.129768,0.379448][0.446479,0.357341,0][-1.20185,-1.19582,-0.50629][0.916067,-0.129768,0.379448][0.446479,0.357341,0][-1.15471,-0.668635,-0.486766][0.90932,-0.176835,0.376653][0.488124,0.358159,0][-1.24969,-0.668634,-0.00927758][0.98424,-0.176835,0][0.488779,0.395854,0][-1.30071,-1.19582,-0.00927761][0.991544,-0.129768,0][0.447162,0.396577,0][-1.36973,-1.61625,-0.00927755][0.932626,-0.360844,0][0.413972,0.397155,0][-1.26562,-1.61625,-0.532705][0.861634,-0.360845,0.356901][0.413253,0.355834,0][-1.26562,-1.61625,-0.532705][0.861634,-0.360845,0.356901][0.413253,0.355834,0][-1.20185,-1.19582,-0.50629][0.916067,-0.129768,0.379448][0.446479,0.357341,0][-1.30071,-1.19582,-0.00927761][0.991544,-0.129768,0][0.447162,0.396577,0][-1.36973,-1.61625,-0.00927755][0.932626,-0.360844,0][0.413972,0.397155,0][-1.6128,-2.00582,-0.00927749][0.687327,-0.726348,0][0.383218,0.397689,0][-1.49018,-2.00582,-0.625721][0.635008,-0.726348,0.263029][0.382371,0.349025,0][-1.49018,-2.00582,-0.625721][0.635008,-0.726348,0.263029][0.382371,0.349025,0][-1.26562,-1.61625,-0.532705][0.861634,-0.360845,0.356901][0.413253,0.355834,0][-1.36973,-1.61625,-0.00927755][0.932626,-0.360844,0][0.413972,0.397155,0][-1.6128,-2.00582,-0.00927749][0.687327,-0.726348,0][0.425079,0.574966,0][-1.98124,-2.22919,-0.00927746][0.882941,-0.469484,0][0.401598,0.551225,0][-1.83058,-2.22919,-0.766719][0.815731,-0.469484,0.337887][0.449059,0.526974,0][-1.83058,-2.22919,-0.766719][0.815731,-0.469484,0.337887][0.449059,0.526974,0][-1.49018,-2.00582,-0.625721][0.635008,-0.726348,0.263029][0.463706,0.55523,0][-1.6128,-2.00582,-0.00927749][0.687327,-0.726348,0][0.425079,0.574966,0][-1.98124,-2.22919,-0.00927746][0.882941,-0.469484,0][0.365584,0.397996,0][-1.98276,-2.44029,-0.00927752][1.5392,-0.011072,-0.306166][0.348919,0.398286,0][-1.83198,-2.44029,-0.7673][1.5392,-0.0110717,0.306166][0.347879,0.338445,0][-1.83198,-2.44029,-0.7673][1.5392,-0.0110717,0.306166][0.347879,0.338445,0][-1.83058,-2.22919,-0.766719][0.815731,-0.469484,0.337887][0.364544,0.338201,0][-1.98124,-2.22919,-0.00927746][0.882941,-0.469484,0][0.365584,0.397996,0][-1.98276,-2.44029,-0.00927752][1.5392,-0.011072,-0.306166][0.138951,0.35039,0][-2.33232,-2.44029,-0.00927765][-1.53894,0.0130235,0.306115][0.138951,0.377989,0][-2.15493,-2.44029,-0.901069][-1.53894,0.0130243,-0.306115][0.0691634,0.363983,0][-2.15493,-2.44029,-0.901069][-1.53894,0.0130243,-0.306115][0.0691634,0.363983,0][-1.83198,-2.44029,-0.7673][1.5392,-0.0110717,0.306166][0.0796316,0.338485,0][-1.98276,-2.44029,-0.00927752][1.5392,-0.011072,-0.306166][0.138951,0.35039,0][-2.15493,-2.44029,-0.901069][-1.53894,0.0130243,-0.306115][0.863223,0.775467,0][-2.15328,-2.22919,-0.900386][-0.801515,0.497345,-0.331998][0.846558,0.7752,0][-1.64851,-2.22919,-1.65583][-1.84747,1.2493,-1.23444][0.847705,0.715565,0][-1.64851,-2.22919,-1.65583][-1.84747,1.2493,-1.23444][0.847705,0.715565,0][-1.64977,-2.44029,-1.65709][-1.30465,0.0130248,-0.87174][0.864371,0.715786,0][-2.15493,-2.44029,-0.901069][-1.53894,0.0130243,-0.306115][0.863223,0.775467,0][-2.15328,-2.22919,-0.900386][-0.801515,0.497345,-0.331998][0.23646,0.634274,0][-1.75281,-2.00582,-0.734505][-0.584095,0.774789,-0.24194][0.237921,0.597568,0][-1.342,-2.00582,-1.34932][-1.65677,2.395,-1.10702][0.293991,0.594177,0][-1.342,-2.00582,-1.34932][-1.65677,2.395,-1.10702][0.293991,0.594177,0][-1.64851,-2.22919,-1.65583][-1.84747,1.2493,-1.23444][0.305354,0.630108,0][-2.15328,-2.22919,-0.900386][-0.801515,0.497345,-0.331998][0.23646,0.634274,0][-1.75281,-2.00582,-0.734505][-0.584095,0.774789,-0.24194][0.237921,0.597568,0][-1.48862,-1.61625,-0.625074][-0.842322,0.410806,-0.348901][0.241892,0.560068,0][-1.1398,-1.61625,-1.14712][-2.39105,1.27084,-1.59765][0.289501,0.557189,0][-1.1398,-1.61625,-1.14712][-2.39105,1.27084,-1.59765][0.289501,0.557189,0][-1.342,-2.00582,-1.34932][-1.65677,2.395,-1.10702][0.293991,0.594177,0][-1.75281,-2.00582,-0.734505][-0.584095,0.774789,-0.24194][0.237921,0.597568,0][-1.48862,-1.61625,-0.625074][-0.842322,0.410806,-0.348901][0.660839,0.567188,0][-1.41359,-1.19582,-0.593998][-0.913113,0.152222,-0.378224][0.627604,0.569002,0][-1.08238,-1.19582,-1.0897][-2.59324,0.471129,-1.73275][0.628356,0.529871,0][-1.08238,-1.19582,-1.0897][-2.59324,0.471129,-1.73275][0.628356,0.529871,0][-1.1398,-1.61625,-1.14712][-2.39105,1.27084,-1.59765][0.661632,0.525977,0][-1.48862,-1.61625,-0.625074][-0.842322,0.410806,-0.348901][0.660839,0.567188,0][-1.41359,-1.19582,-0.593998][-0.913113,0.152222,-0.378224][0.627604,0.569002,0][-1.35814,-0.668635,-0.571029][-0.904074,0.205947,-0.37448][0.585952,0.570015,0][-1.03993,-0.668634,-1.04726][-3.31913,1.07287,-2.88238][0.586676,0.532421,0][-1.03993,-0.668634,-1.04726][-3.31913,1.07287,-2.88238][0.586676,0.532421,0][-1.08238,-1.19582,-1.0897][-2.59324,0.471129,-1.73275][0.628356,0.529871,0][-1.41359,-1.19582,-0.593998][-0.913113,0.152222,-0.378224][0.627604,0.569002,0][-1.35814,-0.668635,-0.571029][-0.904074,0.205947,-0.37448][0.585952,0.570015,0][-1.25458,-0.314304,-0.528131][-0.879736,0.305416,-0.364398][0.557916,0.572863,0][-0.960668,-0.314304,-0.967994][-0.67332,0.305416,-0.673321][0.558584,0.53814,0][-0.960668,-0.314304,-0.967994][-0.67332,0.305416,-0.673321][0.558584,0.53814,0][-1.03993,-0.668634,-1.04726][-3.31913,1.07287,-2.88238][0.586676,0.532421,0][-1.35814,-0.668635,-0.571029][-0.904074,0.205947,-0.37448][0.585952,0.570015,0][-1.25458,-0.314304,-0.528131][-0.879736,0.305416,-0.364398][0.557916,0.572863,0][-1.14803,0.0400268,-0.483997][-0.794067,0.511149,-0.328913][0.529878,0.575809,0][-0.879119,0.0400267,-0.886445][-0.607753,0.511149,-0.607753][0.530489,0.544039,0][-0.879119,0.0400267,-0.886445][-0.607753,0.511149,-0.607753][0.530489,0.544039,0][-0.960668,-0.314304,-0.967994][-0.67332,0.305416,-0.673321][0.558584,0.53814,0][-1.25458,-0.314304,-0.528131][-0.879736,0.305416,-0.364398][0.557916,0.572863,0][-1.14803,0.0400268,-0.483997][-0.794067,0.511149,-0.328913][0.261335,0.44843,0][-0.8683,0.341322,-0.368131][-0.542329,0.809578,-0.22464][0.264158,0.414823,0][-0.665026,0.341323,-0.672352][-0.415081,0.809578,-0.415081][0.291902,0.413145,0][-0.665026,0.341323,-0.672352][-0.415081,0.809578,-0.415081][0.291902,0.413145,0][-0.879119,0.0400267,-0.886445][-0.607753,0.511149,-0.607753][0.298037,0.44621,0][-1.14803,0.0400268,-0.483997][-0.794067,0.511149,-0.328913][0.261335,0.44843,0][-0.8683,0.341322,-0.368131][-0.542329,0.809578,-0.22464][0.650226,0.43264,0][-0.238703,0.659853,-0.107343][-0.391211,0.905923,-0.162045][0.677735,0.387855,0][-0.183153,0.659853,-0.190479][-0.29942,0.905923,-0.29942][0.685258,0.390087,0][-0.183153,0.659853,-0.190479][-0.29942,0.905923,-0.29942][0.685258,0.390087,0][-0.665026,0.341323,-0.672352][-0.415081,0.809578,-0.415081][0.677752,0.440806,0][-0.8683,0.341322,-0.368131][-0.542329,0.809578,-0.22464][0.650226,0.43264,0][-0.565565,0.341323,-0.572891][0.414107,-0.810574,0.414107][0.218547,0.256168,0][-0.00195171,0.618851,-0.00927762][-2.35707e-007,-1,0][0.16707,0.228882,0][-0.738348,0.341323,-0.314303][0.541057,-0.810574,0.224113][0.228626,0.235102,0][-0.738348,0.341323,-0.314303][0.541057,-0.810574,0.224113][0.792877,0.359848,0][-0.976115,0.0400268,-0.412789][0.821097,-0.458393,0.34011][0.823742,0.354734,0][-0.747544,0.0400268,-0.75487][0.628441,-0.458393,0.628441][0.824948,0.387195,0][-0.747544,0.0400268,-0.75487][0.628441,-0.458393,0.628441][0.824948,0.387195,0][-0.565565,0.341323,-0.572891][0.414107,-0.810574,0.414107][0.793788,0.384386,0][-0.738348,0.341323,-0.314303][0.541057,-0.810574,0.224113][0.792877,0.359848,0][-0.976115,0.0400268,-0.412789][0.821097,-0.458393,0.34011][0.544169,0.363026,0][-1.06668,-0.314304,-0.450303][0.891342,-0.26305,0.369206][0.516146,0.360551,0][-0.816861,-0.314304,-0.824187][0.682204,-0.26305,0.682204][0.515633,0.331035,0][-0.816861,-0.314304,-0.824187][0.682204,-0.26305,0.682204][0.515633,0.331035,0][-0.747544,0.0400268,-0.75487][0.628441,-0.458393,0.628441][0.5437,0.336021,0][-0.976115,0.0400268,-0.412789][0.821097,-0.458393,0.34011][0.544169,0.363026,0][-1.06668,-0.314304,-0.450303][0.891342,-0.26305,0.369206][0.516146,0.360551,0][-1.15471,-0.668635,-0.486766][0.90932,-0.176835,0.376653][0.488124,0.358159,0][-0.884236,-0.668634,-0.891561][3.35452,-0.925524,2.91792][0.487568,0.326203,0][-0.884236,-0.668634,-0.891561][3.35452,-0.925524,2.91792][0.487568,0.326203,0][-0.816861,-0.314304,-0.824187][0.682204,-0.26305,0.682204][0.515633,0.331035,0][-1.06668,-0.314304,-0.450303][0.891342,-0.26305,0.369206][0.516146,0.360551,0][-1.15471,-0.668635,-0.486766][0.90932,-0.176835,0.376653][0.488124,0.358159,0][-1.20185,-1.19582,-0.50629][0.916067,-0.129768,0.379448][0.446479,0.357341,0][-0.920312,-1.19582,-0.927637][2.60008,-0.401394,1.73732][0.445901,0.324079,0][-0.920312,-1.19582,-0.927637][2.60008,-0.401394,1.73732][0.445901,0.324079,0][-0.884236,-0.668634,-0.891561][3.35452,-0.925524,2.91792][0.487568,0.326203,0][-1.15471,-0.668635,-0.486766][0.90932,-0.176835,0.376653][0.488124,0.358159,0][-1.20185,-1.19582,-0.50629][0.916067,-0.129768,0.379448][0.446479,0.357341,0][-1.26562,-1.61625,-0.532705][0.861634,-0.360845,0.356901][0.413253,0.355834,0][-0.969119,-1.61625,-0.976444][2.45092,-1.11858,1.63765][0.412644,0.320803,0][-0.969119,-1.61625,-0.976444][2.45092,-1.11858,1.63765][0.412644,0.320803,0][-0.920312,-1.19582,-0.927637][2.60008,-0.401394,1.73732][0.445901,0.324079,0][-1.20185,-1.19582,-0.50629][0.916067,-0.129768,0.379448][0.446479,0.357341,0][-1.26562,-1.61625,-0.532705][0.861634,-0.360845,0.356901][0.413253,0.355834,0][-1.49018,-2.00582,-0.625721][0.635008,-0.726348,0.263029][0.382371,0.349025,0][-1.14099,-2.00582,-1.14832][1.80066,-2.24461,1.20316][0.381654,0.30777,0][-1.14099,-2.00582,-1.14832][1.80066,-2.24461,1.20316][0.381654,0.30777,0][-0.969119,-1.61625,-0.976444][2.45092,-1.11858,1.63765][0.412644,0.320803,0][-1.26562,-1.61625,-0.532705][0.861634,-0.360845,0.356901][0.413253,0.355834,0][-1.49018,-2.00582,-0.625721][0.635008,-0.726348,0.263029][0.463706,0.55523,0][-1.83058,-2.22919,-0.766719][0.815731,-0.469484,0.337887][0.449059,0.526974,0][-1.40152,-2.22919,-1.40885][1.92065,-1.20466,1.28334][0.500916,0.525977,0][-1.40152,-2.22919,-1.40885][1.92065,-1.20466,1.28334][0.500916,0.525977,0][-1.14099,-2.00582,-1.14832][1.80066,-2.24461,1.20316][0.505909,0.554418,0][-1.49018,-2.00582,-0.625721][0.635008,-0.726348,0.263029][0.463706,0.55523,0][-1.83058,-2.22919,-0.766719][0.815731,-0.469484,0.337887][0.364544,0.338201,0][-1.83198,-2.44029,-0.7673][1.5392,-0.0110717,0.306166][0.347879,0.338445,0][-1.4026,-2.44029,-1.40992][1.30487,-0.0110734,0.871887][0.346996,0.287714,0][-1.4026,-2.44029,-1.40992][1.30487,-0.0110734,0.871887][0.346996,0.287714,0][-1.40152,-2.22919,-1.40885][1.92065,-1.20466,1.28334][0.363662,0.287509,0][-1.83058,-2.22919,-0.766719][0.815731,-0.469484,0.337887][0.364544,0.338201,0][-1.83198,-2.44029,-0.7673][1.5392,-0.0110717,0.306166][0.0796316,0.338485,0][-2.15493,-2.44029,-0.901069][-1.53894,0.0130243,-0.306115][0.0691634,0.363983,0][-1.64977,-2.44029,-1.65709][-1.30465,0.0130248,-0.87174][0.01,0.324098,0][-1.64977,-2.44029,-1.65709][-1.30465,0.0130248,-0.87174][0.01,0.324098,0][-1.4026,-2.44029,-1.40992][1.30487,-0.0110734,0.871887][0.0293427,0.304582,0][-1.83198,-2.44029,-0.7673][1.5392,-0.0110717,0.306166][0.0796316,0.338485,0][-1.03993,-0.668634,-1.04726][-3.31913,1.07287,-2.88238][0.923538,0.689885,0][-0.960668,-0.314304,-0.967994][-0.67332,0.305416,-0.673321][0.894979,0.683627,0][-0.520805,-0.314304,-1.2619][-0.364398,0.305416,-0.879736][0.89806,0.648897,0][-0.520805,-0.314304,-1.2619][-0.364398,0.305416,-0.879736][0.89806,0.648897,0][-0.563703,-0.668635,-1.36546][-1.18984,0.896002,-3.1802][0.926874,0.652284,0][-1.03993,-0.668634,-1.04726][-3.31913,1.07287,-2.88238][0.923538,0.689885,0][-0.960668,-0.314304,-0.967994][-0.67332,0.305416,-0.673321][0.894979,0.683627,0][-0.879119,0.0400267,-0.886445][-0.607753,0.511149,-0.607753][0.866395,0.677188,0][-0.476671,0.0400266,-1.15535][-0.328913,0.511149,-0.794067][0.869214,0.645413,0][-0.476671,0.0400266,-1.15535][-0.328913,0.511149,-0.794067][0.869214,0.645413,0][-0.520805,-0.314304,-1.2619][-0.364398,0.305416,-0.879736][0.89806,0.648897,0][-0.960668,-0.314304,-0.967994][-0.67332,0.305416,-0.673321][0.894979,0.683627,0][-0.879119,0.0400267,-0.886445][-0.607753,0.511149,-0.607753][0.298037,0.44621,0][-0.665026,0.341323,-0.672352][-0.415081,0.809578,-0.415081][0.291902,0.413145,0][-0.360805,0.341322,-0.875626][-0.22464,0.809578,-0.542329][0.314991,0.403669,0][-0.360805,0.341322,-0.875626][-0.22464,0.809578,-0.542329][0.314991,0.403669,0][-0.476671,0.0400266,-1.15535][-0.328913,0.511149,-0.794067][0.32858,0.433674,0][-0.879119,0.0400267,-0.886445][-0.607753,0.511149,-0.607753][0.298037,0.44621,0][-0.665026,0.341323,-0.672352][-0.415081,0.809578,-0.415081][0.677752,0.440806,0][-0.183153,0.659853,-0.190479][-0.29942,0.905923,-0.29942][0.685258,0.390087,0][-0.100017,0.659853,-0.246029][-0.162044,0.905923,-0.391211][0.693088,0.389267,0][-0.100017,0.659853,-0.246029][-0.162044,0.905923,-0.391211][0.693088,0.389267,0][-0.360805,0.341322,-0.875626][-0.22464,0.809578,-0.542329][0.706405,0.437808,0][-0.665026,0.341323,-0.672352][-0.415081,0.809578,-0.415081][0.677752,0.440806,0][-0.306977,0.341322,-0.745674][0.224113,-0.810574,0.541057][0.200667,0.271964,0][-0.00195171,0.618851,-0.00927762][-2.35707e-007,-1,0][0.16707,0.228882,0][-0.565565,0.341323,-0.572891][0.414107,-0.810574,0.414107][0.218547,0.256168,0][-0.565565,0.341323,-0.572891][0.414107,-0.810574,0.414107][0.803647,0.873854,0][-0.747544,0.0400268,-0.75487][0.628441,-0.458393,0.628441][0.77816,0.888222,0][-0.405463,0.0400267,-0.983441][0.34011,-0.458393,0.821098][0.775764,0.861213,0][-0.405463,0.0400267,-0.983441][0.34011,-0.458393,0.821098][0.775764,0.861213,0][-0.306977,0.341322,-0.745674][0.224113,-0.810574,0.541057][0.801835,0.853437,0][-0.565565,0.341323,-0.572891][0.414107,-0.810574,0.414107][0.803647,0.873854,0][-0.747544,0.0400268,-0.75487][0.628441,-0.458393,0.628441][0.77816,0.888222,0][-0.816861,-0.314304,-0.824187][0.682204,-0.26305,0.682204][0.749705,0.893695,0][-0.442977,-0.314304,-1.07401][0.369206,-0.26305,0.891343][0.747086,0.864175,0][-0.442977,-0.314304,-1.07401][0.369206,-0.26305,0.891343][0.747086,0.864175,0][-0.405463,0.0400267,-0.983441][0.34011,-0.458393,0.821098][0.775764,0.861213,0][-0.747544,0.0400268,-0.75487][0.628441,-0.458393,0.628441][0.77816,0.888222,0][-0.816861,-0.314304,-0.824187][0.682204,-0.26305,0.682204][0.749705,0.893695,0][-0.884236,-0.668634,-0.891561][3.35452,-0.925524,2.91792][0.72127,0.899015,0][-0.47944,-0.668635,-1.16204][1.10336,-0.775318,2.66375][0.718434,0.867054,0][-0.47944,-0.668635,-1.16204][1.10336,-0.775318,2.66375][0.718434,0.867054,0][-0.442977,-0.314304,-1.07401][0.369206,-0.26305,0.891343][0.747086,0.864175,0][-0.816861,-0.314304,-0.824187][0.682204,-0.26305,0.682204][0.749705,0.893695,0][-0.563703,-0.668635,-1.36546][-1.18984,0.896002,-3.1802][0.926874,0.652284,0][-0.520805,-0.314304,-1.2619][-0.364398,0.305416,-0.879736][0.89806,0.648897,0][-0.00195181,-0.314304,-1.36511][0.00081918,0.302428,-0.953172][0.899142,0.607931,0][-0.563703,-0.668635,-1.36546][-1.18984,0.896002,-3.1802][0.926874,0.652284,0][-0.00195181,-0.314304,-1.36511][0.00081918,0.302428,-0.953172][0.899142,0.607931,0][-0.00195186,-0.667183,-1.47388][0.067404,0.125633,-0.989784][0.927897,0.607931,0][-0.563703,-0.668635,-1.36546][-1.18984,0.896002,-3.1802][0.926874,0.652284,0][-0.00195186,-0.667183,-1.47388][0.067404,0.125633,-0.989784][0.927897,0.607931,0][-0.00195193,-1.03843,-1.4772][0.030098,0.0603636,-0.997723][0.956985,0.607931,0][-0.520805,-0.314304,-1.2619][-0.364398,0.305416,-0.879736][0.89806,0.648897,0][-0.476671,0.0400266,-1.15535][-0.328913,0.511149,-0.794067][0.869214,0.645413,0][-0.00195176,0.0400267,-1.24978][0,0.511149,-0.859492][0.870204,0.607931,0][-0.00195176,0.0400267,-1.24978][0,0.511149,-0.859492][0.870204,0.607931,0][-0.00195181,-0.314304,-1.36511][0.00081918,0.302428,-0.953172][0.899142,0.607931,0][-0.520805,-0.314304,-1.2619][-0.364398,0.305416,-0.879736][0.89806,0.648897,0][-0.476671,0.0400266,-1.15535][-0.328913,0.511149,-0.794067][0.869214,0.645413,0][-0.360805,0.341322,-0.875626][-0.22464,0.809578,-0.542329][0.842703,0.636264,0][-0.00195174,0.341322,-0.947007][0,0.809578,-0.587013][0.843452,0.607931,0][-0.00195174,0.341322,-0.947007][0,0.809578,-0.587013][0.843452,0.607931,0][-0.00195176,0.0400267,-1.24978][0,0.511149,-0.859492][0.870204,0.607931,0][-0.476671,0.0400266,-1.15535][-0.328913,0.511149,-0.794067][0.869214,0.645413,0][-0.360805,0.341322,-0.875626][-0.22464,0.809578,-0.542329][0.706405,0.437808,0][-0.100017,0.659853,-0.246029][-0.162044,0.905923,-0.391211][0.693088,0.389267,0][-0.0019517,0.659853,-0.265536][-1.58621e-007,0.905923,-0.423443][0.700034,0.385521,0][-0.0019517,0.659853,-0.265536][-1.58621e-007,0.905923,-0.423443][0.700034,0.385521,0][-0.00195174,0.341322,-0.947007][0,0.809578,-0.587013][0.731824,0.424101,0][-0.360805,0.341322,-0.875626][-0.22464,0.809578,-0.542329][0.706405,0.437808,0][-0.00195175,0.341322,-0.806347][0,-0.810574,0.585636][0.177708,0.280086,0][-0.00195171,0.618851,-0.00927762][-2.35707e-007,-1,0][0.16707,0.228882,0][-0.306977,0.341322,-0.745674][0.224113,-0.810574,0.541057][0.200667,0.271964,0][-0.306977,0.341322,-0.745674][0.224113,-0.810574,0.541057][0.801835,0.853437,0][-0.405463,0.0400267,-0.983441][0.34011,-0.458393,0.821098][0.775764,0.861213,0][-0.00195176,0.0400267,-1.0637][0,-0.458393,0.88875][0.774922,0.829354,0][-0.00195176,0.0400267,-1.0637][0,-0.458393,0.88875][0.774922,0.829354,0][-0.00195175,0.341322,-0.806347][0,-0.810574,0.585636][0.801199,0.829354,0][-0.306977,0.341322,-0.745674][0.224113,-0.810574,0.541057][0.801835,0.853437,0][-0.405463,0.0400267,-0.983441][0.34011,-0.458393,0.821098][0.775764,0.861213,0][-0.442977,-0.314304,-1.07401][0.369206,-0.26305,0.891343][0.747086,0.864175,0][-0.00195181,-0.314304,-1.16173][0,-0.26305,0.964782][0.746166,0.829354,0][-0.00195181,-0.314304,-1.16173][0,-0.26305,0.964782][0.746166,0.829354,0][-0.00195176,0.0400267,-1.0637][0,-0.458393,0.88875][0.774922,0.829354,0][-0.405463,0.0400267,-0.983441][0.34011,-0.458393,0.821098][0.775764,0.861213,0][-0.442977,-0.314304,-1.07401][0.369206,-0.26305,0.891343][0.747086,0.864175,0][-0.47944,-0.668635,-1.16204][1.10336,-0.775318,2.66375][0.718434,0.867054,0][-0.00195188,-0.668635,-1.25701][-3.7196e-007,-0.775318,2.88322][0.717439,0.829354,0][-0.00195188,-0.668635,-1.25701][-3.7196e-007,-0.775318,2.88322][0.717439,0.829354,0][-0.00195181,-0.314304,-1.16173][0,-0.26305,0.964782][0.746166,0.829354,0][-0.442977,-0.314304,-1.07401][0.369206,-0.26305,0.891343][0.747086,0.864175,0][0.516902,-0.314304,-1.2619][0.355873,0.288829,-0.888781][0.89806,0.566965,0][0.559799,-0.668635,-1.36546][0.814142,1.02658,-3.1751][0.926874,0.563578,0][-0.00195193,-1.03843,-1.4772][0.030098,0.0603636,-0.997723][0.956985,0.607931,0][0.516902,-0.314304,-1.2619][0.355873,0.288829,-0.888781][0.89806,0.566965,0][-0.00195193,-1.03843,-1.4772][0.030098,0.0603636,-0.997723][0.956985,0.607931,0][-0.00195186,-0.667183,-1.47388][0.067404,0.125633,-0.989784][0.927897,0.607931,0][0.516902,-0.314304,-1.2619][0.355873,0.288829,-0.888781][0.89806,0.566965,0][-0.00195186,-0.667183,-1.47388][0.067404,0.125633,-0.989784][0.927897,0.607931,0][-0.00195181,-0.314304,-1.36511][0.00081918,0.302428,-0.953172][0.899142,0.607931,0][-0.00195181,-0.314304,-1.36511][0.00081918,0.302428,-0.953172][0.899142,0.607931,0][-0.00195176,0.0400267,-1.24978][0,0.511149,-0.859492][0.870204,0.607931,0][0.472768,0.0400266,-1.15535][0.328913,0.511149,-0.794067][0.869214,0.57045,0][0.472768,0.0400266,-1.15535][0.328913,0.511149,-0.794067][0.869214,0.57045,0][0.516902,-0.314304,-1.2619][0.355873,0.288829,-0.888781][0.89806,0.566965,0][-0.00195181,-0.314304,-1.36511][0.00081918,0.302428,-0.953172][0.899142,0.607931,0][-0.00195176,0.0400267,-1.24978][0,0.511149,-0.859492][0.870204,0.607931,0][-0.00195174,0.341322,-0.947007][0,0.809578,-0.587013][0.843452,0.607931,0][0.356902,0.341322,-0.875626][0.22464,0.809578,-0.542329][0.842703,0.579598,0][0.356902,0.341322,-0.875626][0.22464,0.809578,-0.542329][0.842703,0.579598,0][0.472768,0.0400266,-1.15535][0.328913,0.511149,-0.794067][0.869214,0.57045,0][-0.00195176,0.0400267,-1.24978][0,0.511149,-0.859492][0.870204,0.607931,0][-0.00195174,0.341322,-0.947007][0,0.809578,-0.587013][0.731824,0.424101,0][-0.0019517,0.659853,-0.265536][-1.58621e-007,0.905923,-0.423443][0.700034,0.385521,0][0.096114,0.659853,-0.246029][0.162045,0.905923,-0.391211][0.705039,0.37942,0][0.096114,0.659853,-0.246029][0.162045,0.905923,-0.391211][0.705039,0.37942,0][0.356902,0.341322,-0.875626][0.22464,0.809578,-0.542329][0.750138,0.401772,0][-0.00195174,0.341322,-0.947007][0,0.809578,-0.587013][0.731824,0.424101,0][0.303074,0.341322,-0.745674][-0.224113,-0.810574,0.541057][0.153165,0.279297,0][-0.00195171,0.618851,-0.00927762][-2.35707e-007,-1,0][0.16707,0.228882,0][-0.00195175,0.341322,-0.806347][0,-0.810574,0.585636][0.177708,0.280086,0][-0.00195175,0.341322,-0.806347][0,-0.810574,0.585636][0.801199,0.829354,0][-0.00195176,0.0400267,-1.0637][0,-0.458393,0.88875][0.774922,0.829354,0][0.40156,0.0400267,-0.983441][-0.34011,-0.458393,0.821097][0.775764,0.797495,0][0.40156,0.0400267,-0.983441][-0.34011,-0.458393,0.821097][0.775764,0.797495,0][0.303074,0.341322,-0.745674][-0.224113,-0.810574,0.541057][0.801835,0.80527,0][-0.00195175,0.341322,-0.806347][0,-0.810574,0.585636][0.801199,0.829354,0][-0.00195176,0.0400267,-1.0637][0,-0.458393,0.88875][0.774922,0.829354,0][-0.00195181,-0.314304,-1.16173][0,-0.26305,0.964782][0.746166,0.829354,0][0.439074,-0.314304,-1.07401][-0.369206,-0.26305,0.891343][0.747086,0.794533,0][0.439074,-0.314304,-1.07401][-0.369206,-0.26305,0.891343][0.747086,0.794533,0][0.40156,0.0400267,-0.983441][-0.34011,-0.458393,0.821097][0.775764,0.797495,0][-0.00195176,0.0400267,-1.0637][0,-0.458393,0.88875][0.774922,0.829354,0][-0.00195181,-0.314304,-1.16173][0,-0.26305,0.964782][0.746166,0.829354,0][-0.00195188,-0.668635,-1.25701][-3.7196e-007,-0.775318,2.88322][0.717439,0.829354,0][0.475537,-0.668635,-1.16204][-1.10336,-0.775317,2.66375][0.718434,0.791654,0][0.475537,-0.668635,-1.16204][-1.10336,-0.775317,2.66375][0.718434,0.791654,0][0.439074,-0.314304,-1.07401][-0.369206,-0.26305,0.891343][0.747086,0.794533,0][-0.00195181,-0.314304,-1.16173][0,-0.26305,0.964782][0.746166,0.829354,0][0.559799,-0.668635,-1.36546][0.814142,1.02658,-3.1751][0.926874,0.563578,0][0.516902,-0.314304,-1.2619][0.355873,0.288829,-0.888781][0.89806,0.566965,0][0.956765,-0.314304,-0.967994][0.673321,0.305416,-0.673321][0.894979,0.532236,0][0.956765,-0.314304,-0.967994][0.673321,0.305416,-0.673321][0.894979,0.532236,0][1.03603,-0.668635,-1.04726][3.31913,1.07287,-2.88237][0.923538,0.525977,0][0.559799,-0.668635,-1.36546][0.814142,1.02658,-3.1751][0.926874,0.563578,0][0.516902,-0.314304,-1.2619][0.355873,0.288829,-0.888781][0.89806,0.566965,0][0.472768,0.0400266,-1.15535][0.328913,0.511149,-0.794067][0.869214,0.57045,0][0.875216,0.0400265,-0.886445][0.607753,0.511149,-0.607753][0.866395,0.538674,0][0.875216,0.0400265,-0.886445][0.607753,0.511149,-0.607753][0.866395,0.538674,0][0.956765,-0.314304,-0.967994][0.673321,0.305416,-0.673321][0.894979,0.532236,0][0.516902,-0.314304,-1.2619][0.355873,0.288829,-0.888781][0.89806,0.566965,0][0.472768,0.0400266,-1.15535][0.328913,0.511149,-0.794067][0.78511,0.298687,0][0.356902,0.341322,-0.875626][0.22464,0.809578,-0.542329][0.799126,0.268012,0][0.661123,0.341322,-0.672352][0.415081,0.809578,-0.415081][0.82681,0.276269,0][0.661123,0.341322,-0.672352][0.415081,0.809578,-0.415081][0.82681,0.276269,0][0.875216,0.0400265,-0.886445][0.607753,0.511149,-0.607753][0.821732,0.309609,0][0.472768,0.0400266,-1.15535][0.328913,0.511149,-0.794067][0.78511,0.298687,0][0.356902,0.341322,-0.875626][0.22464,0.809578,-0.542329][0.750138,0.401772,0][0.096114,0.659853,-0.246029][0.162045,0.905923,-0.391211][0.705039,0.37942,0][0.17925,0.659853,-0.190479][0.29942,0.905923,-0.29942][0.70734,0.37189,0][0.17925,0.659853,-0.190479][0.29942,0.905923,-0.29942][0.70734,0.37189,0][0.661123,0.341322,-0.672352][0.415081,0.809578,-0.415081][0.758559,0.37422,0][0.356902,0.341322,-0.875626][0.22464,0.809578,-0.542329][0.750138,0.401772,0][0.561662,0.341322,-0.572891][-0.414108,-0.810574,0.414107][0.130776,0.269717,0][-0.00195171,0.618851,-0.00927762][-2.35707e-007,-1,0][0.16707,0.228882,0][0.303074,0.341322,-0.745674][-0.224113,-0.810574,0.541057][0.153165,0.279297,0][0.303074,0.341322,-0.745674][-0.224113,-0.810574,0.541057][0.801835,0.80527,0][0.40156,0.0400267,-0.983441][-0.34011,-0.458393,0.821097][0.775764,0.797495,0][0.743641,0.0400266,-0.75487][-0.628441,-0.458393,0.628441][0.77816,0.770485,0][0.743641,0.0400266,-0.75487][-0.628441,-0.458393,0.628441][0.77816,0.770485,0][0.561662,0.341322,-0.572891][-0.414108,-0.810574,0.414107][0.803646,0.784854,0][0.303074,0.341322,-0.745674][-0.224113,-0.810574,0.541057][0.801835,0.80527,0][0.40156,0.0400267,-0.983441][-0.34011,-0.458393,0.821097][0.775764,0.797495,0][0.439074,-0.314304,-1.07401][-0.369206,-0.26305,0.891343][0.747086,0.794533,0][0.812957,-0.314304,-0.824186][-0.682204,-0.26305,0.682204][0.749705,0.765013,0][0.812957,-0.314304,-0.824186][-0.682204,-0.26305,0.682204][0.749705,0.765013,0][0.743641,0.0400266,-0.75487][-0.628441,-0.458393,0.628441][0.77816,0.770485,0][0.40156,0.0400267,-0.983441][-0.34011,-0.458393,0.821097][0.775764,0.797495,0][0.439074,-0.314304,-1.07401][-0.369206,-0.26305,0.891343][0.747086,0.794533,0][0.475537,-0.668635,-1.16204][-1.10336,-0.775317,2.66375][0.718434,0.791654,0][0.880332,-0.668635,-0.891561][-3.35453,-0.925522,2.91792][0.72127,0.759693,0][0.880332,-0.668635,-0.891561][-3.35453,-0.925522,2.91792][0.72127,0.759693,0][0.812957,-0.314304,-0.824186][-0.682204,-0.26305,0.682204][0.749705,0.765013,0][0.439074,-0.314304,-1.07401][-0.369206,-0.26305,0.891343][0.747086,0.794533,0][1.64586,-2.44029,-1.65709][1.30465,0.0130245,-0.87174][0.890051,0.715755,0][1.6446,-2.22919,-1.65583][1.84747,1.2493,-1.23444][0.906718,0.715565,0][2.14937,-2.22919,-0.900385][0.801515,0.497344,-0.331998][0.907755,0.775202,0][2.14937,-2.22919,-0.900385][0.801515,0.497344,-0.331998][0.907755,0.775202,0][2.15102,-2.44029,-0.901069][1.30465,0.0130239,-0.871741][0.891089,0.775438,0][1.64586,-2.44029,-1.65709][1.30465,0.0130245,-0.87174][0.890051,0.715755,0][1.6446,-2.22919,-1.65583][1.84747,1.2493,-1.23444][0.784417,0.493361,0][1.33809,-2.00582,-1.34932][1.65677,2.395,-1.10702][0.788343,0.456836,0][1.7489,-2.00582,-0.734505][0.584095,0.774789,-0.24194][0.844514,0.457223,0][1.7489,-2.00582,-0.734505][0.584095,0.774789,-0.24194][0.844514,0.457223,0][2.14937,-2.22919,-0.900385][0.801515,0.497344,-0.331998][0.853435,0.493837,0][1.6446,-2.22919,-1.65583][1.84747,1.2493,-1.23444][0.784417,0.493361,0][1.33809,-2.00582,-1.34932][1.65677,2.395,-1.10702][0.788343,0.456836,0][1.13589,-1.61625,-1.14712][2.39105,1.27084,-1.59765][0.794826,0.419688,0][1.48471,-1.61625,-0.625074][0.842322,0.410806,-0.348901][0.842521,0.420017,0][1.48471,-1.61625,-0.625074][0.842322,0.410806,-0.348901][0.842521,0.420017,0][1.7489,-2.00582,-0.734505][0.584095,0.774789,-0.24194][0.844514,0.457223,0][1.33809,-2.00582,-1.34932][1.65677,2.395,-1.10702][0.788343,0.456836,0][1.13589,-1.61625,-1.14712][2.39105,1.27084,-1.59765][0.798956,0.01,0][1.07847,-1.19582,-1.0897][2.59324,0.471129,-1.73275][0.832225,0.0139557,0][1.40969,-1.19582,-0.593998][0.913113,0.152222,-0.378224][0.832905,0.0530881,0][1.40969,-1.19582,-0.593998][0.913113,0.152222,-0.378224][0.832905,0.0530881,0][1.48471,-1.61625,-0.625074][0.842322,0.410806,-0.348901][0.799673,0.0512121,0][1.13589,-1.61625,-1.14712][2.39105,1.27084,-1.59765][0.798956,0.01,0][1.07847,-1.19582,-1.0897][2.59324,0.471129,-1.73275][0.832225,0.0139557,0][1.03603,-0.668635,-1.04726][3.31913,1.07287,-2.88237][0.873901,0.0165825,0][1.35424,-0.668635,-0.571028][0.904075,0.205946,-0.37448][0.874555,0.0541776,0][1.35424,-0.668635,-0.571028][0.904075,0.205946,-0.37448][0.874555,0.0541776,0][1.40969,-1.19582,-0.593998][0.913113,0.152222,-0.378224][0.832905,0.0530881,0][1.07847,-1.19582,-1.0897][2.59324,0.471129,-1.73275][0.832225,0.0139557,0][1.03603,-0.668635,-1.04726][3.31913,1.07287,-2.88237][0.873901,0.0165825,0][0.956765,-0.314304,-0.967994][0.673321,0.305416,-0.673321][0.901982,0.0223534,0][1.25067,-0.314304,-0.528131][0.879736,0.305416,-0.364399][0.902585,0.0570776,0][1.25067,-0.314304,-0.528131][0.879736,0.305416,-0.364399][0.902585,0.0570776,0][1.35424,-0.668635,-0.571028][0.904075,0.205946,-0.37448][0.874555,0.0541776,0][1.03603,-0.668635,-1.04726][3.31913,1.07287,-2.88237][0.873901,0.0165825,0][0.956765,-0.314304,-0.967994][0.673321,0.305416,-0.673321][0.901982,0.0223534,0][0.875216,0.0400265,-0.886445][0.607753,0.511149,-0.607753][0.930066,0.0283046,0][1.14412,0.0400264,-0.483997][0.794067,0.511149,-0.328913][0.930618,0.0600752,0][1.14412,0.0400264,-0.483997][0.794067,0.511149,-0.328913][0.930618,0.0600752,0][1.25067,-0.314304,-0.528131][0.879736,0.305416,-0.364399][0.902585,0.0570776,0][0.956765,-0.314304,-0.967994][0.673321,0.305416,-0.673321][0.901982,0.0223534,0][0.875216,0.0400265,-0.886445][0.607753,0.511149,-0.607753][0.821732,0.309609,0][0.661123,0.341322,-0.672352][0.415081,0.809578,-0.415081][0.82681,0.276269,0][0.864397,0.341322,-0.368131][0.542329,0.809578,-0.22464][0.854604,0.27646,0][0.864397,0.341322,-0.368131][0.542329,0.809578,-0.22464][0.854604,0.27646,0][1.14412,0.0400264,-0.483997][0.794067,0.511149,-0.328913][0.8585,0.309863,0][0.875216,0.0400265,-0.886445][0.607753,0.511149,-0.607753][0.821732,0.309609,0][0.661123,0.341322,-0.672352][0.415081,0.809578,-0.415081][0.758559,0.37422,0][0.17925,0.659853,-0.190479][0.29942,0.905923,-0.29942][0.70734,0.37189,0][0.2348,0.659853,-0.107343][0.391211,0.905923,-0.162045][0.706588,0.36408,0][0.2348,0.659853,-0.107343][0.391211,0.905923,-0.162045][0.706588,0.36408,0][0.864397,0.341322,-0.368131][0.542329,0.809578,-0.22464][0.755806,0.345641,0][0.661123,0.341322,-0.672352][0.415081,0.809578,-0.415081][0.758559,0.37422,0][0.734445,0.341322,-0.314303][-0.541057,-0.810574,0.224113][0.113947,0.252805,0][-0.00195171,0.618851,-0.00927762][-2.35707e-007,-1,0][0.16707,0.228882,0][0.561662,0.341322,-0.572891][-0.414108,-0.810574,0.414107][0.130776,0.269717,0][0.561662,0.341322,-0.572891][-0.414108,-0.810574,0.414107][0.588191,0.225131,0][0.743641,0.0400266,-0.75487][-0.628441,-0.458393,0.628441][0.586606,0.193886,0][0.972212,0.0400266,-0.412789][-0.821097,-0.458393,0.34011][0.618994,0.196364,0][0.972212,0.0400266,-0.412789][-0.821097,-0.458393,0.34011][0.618994,0.196364,0][0.734445,0.341322,-0.314303][-0.541057,-0.810574,0.224113][0.612675,0.227004,0][0.561662,0.341322,-0.572891][-0.414108,-0.810574,0.414107][0.588191,0.225131,0][0.743641,0.0400266,-0.75487][-0.628441,-0.458393,0.628441][0.370086,0.0851327,0][0.812957,-0.314304,-0.824186][-0.682204,-0.26305,0.682204][0.397947,0.0791021,0][1.06278,-0.314304,-0.450303][-0.891343,-0.26305,0.369206][0.398537,0.108616,0][1.06278,-0.314304,-0.450303][-0.891343,-0.26305,0.369206][0.398537,0.108616,0][0.972212,0.0400266,-0.412789][-0.821097,-0.458393,0.34011][0.370625,0.112136,0][0.743641,0.0400266,-0.75487][-0.628441,-0.458393,0.628441][0.370086,0.0851327,0][0.812957,-0.314304,-0.824186][-0.682204,-0.26305,0.682204][0.397947,0.0791021,0][0.880332,-0.668635,-0.891561][-3.35453,-0.925522,2.91792][0.425811,0.0732248,0][1.15081,-0.668635,-0.486766][-0.90932,-0.176835,0.376652][0.42645,0.105179,0][1.15081,-0.668635,-0.486766][-0.90932,-0.176835,0.376652][0.42645,0.105179,0][1.06278,-0.314304,-0.450303][-0.891343,-0.26305,0.369206][0.398537,0.108616,0][0.812957,-0.314304,-0.824186][-0.682204,-0.26305,0.682204][0.397947,0.0791021,0][0.880332,-0.668635,-0.891561][-3.35453,-0.925522,2.91792][0.425811,0.0732248,0][0.916408,-1.19582,-0.927637][-2.60008,-0.401393,1.73732][0.46737,0.0695455,0][1.19794,-1.19582,-0.50629][-0.916068,-0.129768,0.379447][0.468035,0.102806,0][1.19794,-1.19582,-0.50629][-0.916068,-0.129768,0.379447][0.468035,0.102806,0][1.15081,-0.668635,-0.486766][-0.90932,-0.176835,0.376652][0.42645,0.105179,0][0.880332,-0.668635,-0.891561][-3.35453,-0.925522,2.91792][0.425811,0.0732248,0][0.916408,-1.19582,-0.927637][-2.60008,-0.401393,1.73732][0.46737,0.0695455,0][0.965215,-1.61625,-0.976444][-2.45092,-1.11858,1.63765][0.500481,0.0650296,0][1.26171,-1.61625,-0.532704][-0.861634,-0.360844,0.356901][0.501181,0.100058,0][1.26171,-1.61625,-0.532704][-0.861634,-0.360844,0.356901][0.501181,0.100058,0][1.19794,-1.19582,-0.50629][-0.916068,-0.129768,0.379447][0.468035,0.102806,0][0.916408,-1.19582,-0.927637][-2.60008,-0.401393,1.73732][0.46737,0.0695455,0][0.965215,-1.61625,-0.976444][-2.45092,-1.11858,1.63765][0.500481,0.0650296,0][1.13709,-2.00582,-1.14832][-1.80066,-2.24461,1.20316][0.530963,0.0508478,0][1.48627,-2.00582,-0.625721][-0.635008,-0.726347,0.263029][0.531787,0.0921012,0][1.48627,-2.00582,-0.625721][-0.635008,-0.726347,0.263029][0.531787,0.0921012,0][1.26171,-1.61625,-0.532704][-0.861634,-0.360844,0.356901][0.501181,0.100058,0][0.965215,-1.61625,-0.976444][-2.45092,-1.11858,1.63765][0.500481,0.0650296,0][1.13709,-2.00582,-1.14832][-1.80066,-2.24461,1.20316][0.589615,0.042182,0][1.39762,-2.22919,-1.40885][-1.92065,-1.20466,1.28334][0.586385,0.01,0][1.82667,-2.22919,-0.766719][-0.815731,-0.469484,0.337887][0.647183,0.014651,0][1.82667,-2.22919,-0.766719][-0.815731,-0.469484,0.337887][0.647183,0.014651,0][1.48627,-2.00582,-0.625721][-0.635008,-0.726347,0.263029][0.639095,0.0459672,0][1.13709,-2.00582,-1.14832][-1.80066,-2.24461,1.20316][0.589615,0.042182,0][1.39762,-2.22919,-1.40885][-1.92065,-1.20466,1.28334][0.548185,0.0299293,0][1.39869,-2.44029,-1.40992][-1.30487,-0.0110723,0.871886][0.564847,0.0295116,0][1.82808,-2.44029,-0.7673][-1.30487,-0.0110728,0.871886][0.565861,0.0802398,0][1.82808,-2.44029,-0.7673][-1.30487,-0.0110728,0.871886][0.565861,0.0802398,0][1.82667,-2.22919,-0.766719][-0.815731,-0.469484,0.337887][0.549198,0.0806186,0][1.39762,-2.22919,-1.40885][-1.92065,-1.20466,1.28334][0.548185,0.0299293,0][1.39869,-2.44029,-1.40992][-1.30487,-0.0110723,0.871886][0.0293427,0.0834062,0][1.64586,-2.44029,-1.65709][1.30465,0.0130245,-0.87174][0.01,0.0638907,0][2.15102,-2.44029,-0.901069][1.30465,0.0130239,-0.871741][0.0691634,0.0240057,0][2.15102,-2.44029,-0.901069][1.30465,0.0130239,-0.871741][0.0691634,0.0240057,0][1.82808,-2.44029,-0.7673][-1.30487,-0.0110728,0.871886][0.0796316,0.049504,0][1.39869,-2.44029,-1.40992][-1.30487,-0.0110723,0.871886][0.0293427,0.0834062,0][2.15102,-2.44029,-0.901069][1.30465,0.0130239,-0.871741][0.891089,0.775438,0][2.14937,-2.22919,-0.900385][0.801515,0.497344,-0.331998][0.907755,0.775202,0][2.32663,-2.22919,-0.00927736][0.867553,0.497344,0][0.908978,0.845549,0][2.32663,-2.22919,-0.00927736][0.867553,0.497344,0][0.908978,0.845549,0][2.32841,-2.44029,-0.00927733][1.53894,0.0130237,-0.306115][0.892313,0.845839,0][2.15102,-2.44029,-0.901069][1.30465,0.0130239,-0.871741][0.891089,0.775438,0][2.14937,-2.22919,-0.900385][0.801515,0.497344,-0.331998][0.853435,0.493837,0][1.7489,-2.00582,-0.734505][0.584095,0.774789,-0.24194][0.844514,0.457223,0][1.89316,-2.00582,-0.00927731][0.63222,0.774789,1.76393e-007][0.892357,0.441253,0][1.89316,-2.00582,-0.00927731][0.63222,0.774789,1.76393e-007][0.892357,0.441253,0][2.32663,-2.22919,-0.00927736][0.867553,0.497344,0][0.912221,0.474213,0][2.14937,-2.22919,-0.900385][0.801515,0.497344,-0.331998][0.853435,0.493837,0][1.7489,-2.00582,-0.734505][0.584095,0.774789,-0.24194][0.768768,0.0431081,0][1.48471,-1.61625,-0.625074][0.842322,0.410806,-0.348901][0.799673,0.0512121,0][1.6072,-1.61625,-0.0092774][0.911723,0.410806,0][0.800518,0.0998251,0][1.6072,-1.61625,-0.0092774][0.911723,0.410806,0][0.800518,0.0998251,0][1.89316,-2.00582,-0.00927731][0.63222,0.774789,1.76393e-007][0.769764,0.10036,0][1.7489,-2.00582,-0.734505][0.584095,0.774789,-0.24194][0.768768,0.0431081,0][1.48471,-1.61625,-0.625074][0.842322,0.410806,-0.348901][0.799673,0.0512121,0][1.40969,-1.19582,-0.593998][0.913113,0.152222,-0.378224][0.832905,0.0530881,0][1.526,-1.19582,-0.00927741][0.988346,0.152222,0][0.833708,0.0992478,0][1.526,-1.19582,-0.00927741][0.988346,0.152222,0][0.833708,0.0992478,0][1.6072,-1.61625,-0.0092774][0.911723,0.410806,0][0.800518,0.0998251,0][1.48471,-1.61625,-0.625074][0.842322,0.410806,-0.348901][0.799673,0.0512121,0][1.40969,-1.19582,-0.593998][0.913113,0.152222,-0.378224][0.832905,0.0530881,0][1.35424,-0.668635,-0.571028][0.904075,0.205946,-0.37448][0.874555,0.0541776,0][1.46597,-0.668635,-0.00927751][0.978563,0.205946,0][0.875326,0.098524,0][1.46597,-0.668635,-0.00927751][0.978563,0.205946,0][0.875326,0.098524,0][1.526,-1.19582,-0.00927741][0.988346,0.152222,0][0.833708,0.0992478,0][1.40969,-1.19582,-0.593998][0.913113,0.152222,-0.378224][0.832905,0.0530881,0][1.35424,-0.668635,-0.571028][0.904075,0.205946,-0.37448][0.874555,0.0541776,0][1.25067,-0.314304,-0.528131][0.879736,0.305416,-0.364399][0.902585,0.0570776,0][1.35388,-0.314304,-0.00927746][0.952219,0.305416,1.20215e-007][0.903298,0.0980376,0][1.35388,-0.314304,-0.00927746][0.952219,0.305416,1.20215e-007][0.903298,0.0980376,0][1.46597,-0.668635,-0.00927751][0.978563,0.205946,0][0.875326,0.098524,0][1.35424,-0.668635,-0.571028][0.904075,0.205946,-0.37448][0.874555,0.0541776,0][1.25067,-0.314304,-0.528131][0.879736,0.305416,-0.364399][0.902585,0.0570776,0][1.14412,0.0400264,-0.483997][0.794067,0.511149,-0.328913][0.930618,0.0600752,0][1.23855,0.0400265,-0.00927751][0.859492,0.511149,0][0.93127,0.0975511,0][1.23855,0.0400265,-0.00927751][0.859492,0.511149,0][0.93127,0.0975511,0][1.35388,-0.314304,-0.00927746][0.952219,0.305416,1.20215e-007][0.903298,0.0980376,0][1.25067,-0.314304,-0.528131][0.879736,0.305416,-0.364399][0.902585,0.0570776,0][1.14412,0.0400264,-0.483997][0.794067,0.511149,-0.328913][0.8585,0.309863,0][0.864397,0.341322,-0.368131][0.542329,0.809578,-0.22464][0.854604,0.27646,0][0.935777,0.341322,-0.00927756][0.587013,0.809578,0][0.878277,0.268558,0][0.935777,0.341322,-0.00927756][0.587013,0.809578,0][0.878277,0.268558,0][1.23855,0.0400265,-0.00927751][0.859492,0.511149,0][0.889817,0.299409,0][1.14412,0.0400264,-0.483997][0.794067,0.511149,-0.328913][0.8585,0.309863,0][0.864397,0.341322,-0.368131][0.542329,0.809578,-0.22464][0.755806,0.345641,0][0.2348,0.659853,-0.107343][0.391211,0.905923,-0.162045][0.706588,0.36408,0][0.254306,0.659853,-0.00927759][0.423444,0.905922,0][0.702896,0.357178,0][0.254306,0.659853,-0.00927759][0.423444,0.905922,0][0.702896,0.357178,0][0.935777,0.341322,-0.00927756][0.587013,0.809578,0][0.742297,0.320384,0][0.864397,0.341322,-0.368131][0.542329,0.809578,-0.22464][0.755806,0.345641,0][0.795118,0.341322,-0.00927755][-0.585636,-0.810574,0][0.105242,0.231135,0][-0.00195171,0.618851,-0.00927762][-2.35707e-007,-1,0][0.16707,0.228882,0][0.734445,0.341322,-0.314303][-0.541057,-0.810574,0.224113][0.113947,0.252805,0][0.734445,0.341322,-0.314303][-0.541057,-0.810574,0.224113][0.346996,0.120386,0][0.972212,0.0400266,-0.412789][-0.821097,-0.458393,0.34011][0.370625,0.112136,0][1.05248,0.0400265,-0.00927752][-0.88875,-0.458393,0][0.371261,0.143989,0][1.05248,0.0400265,-0.00927752][-0.88875,-0.458393,0][0.371261,0.143989,0][0.795118,0.341322,-0.00927755][-0.585636,-0.810574,0][0.347477,0.144465,0][0.734445,0.341322,-0.314303][-0.541057,-0.810574,0.224113][0.346996,0.120386,0][0.972212,0.0400266,-0.412789][-0.821097,-0.458393,0.34011][0.370625,0.112136,0][1.06278,-0.314304,-0.450303][-0.891343,-0.26305,0.369206][0.398537,0.108616,0][1.1505,-0.314304,-0.00927752][-0.964782,-0.26305,1.40807e-007][0.399232,0.143431,0][1.1505,-0.314304,-0.00927752][-0.964782,-0.26305,1.40807e-007][0.399232,0.143431,0][1.05248,0.0400265,-0.00927752][-0.88875,-0.458393,0][0.371261,0.143989,0][0.972212,0.0400266,-0.412789][-0.821097,-0.458393,0.34011][0.370625,0.112136,0][1.06278,-0.314304,-0.450303][-0.891343,-0.26305,0.369206][0.398537,0.108616,0][1.15081,-0.668635,-0.486766][-0.90932,-0.176835,0.376652][0.42645,0.105179,0][1.24579,-0.668635,-0.00927744][-0.984241,-0.176835,0][0.427203,0.142872,0][1.24579,-0.668635,-0.00927744][-0.984241,-0.176835,0][0.427203,0.142872,0][1.1505,-0.314304,-0.00927752][-0.964782,-0.26305,1.40807e-007][0.399232,0.143431,0][1.06278,-0.314304,-0.450303][-0.891343,-0.26305,0.369206][0.398537,0.108616,0][1.15081,-0.668635,-0.486766][-0.90932,-0.176835,0.376652][0.42645,0.105179,0][1.19794,-1.19582,-0.50629][-0.916068,-0.129768,0.379447][0.468035,0.102806,0][1.2968,-1.19582,-0.00927747][-0.991544,-0.129768,0][0.468818,0.14204,0][1.2968,-1.19582,-0.00927747][-0.991544,-0.129768,0][0.468818,0.14204,0][1.24579,-0.668635,-0.00927744][-0.984241,-0.176835,0][0.427203,0.142872,0][1.15081,-0.668635,-0.486766][-0.90932,-0.176835,0.376652][0.42645,0.105179,0][1.19794,-1.19582,-0.50629][-0.916068,-0.129768,0.379447][0.468035,0.102806,0][1.26171,-1.61625,-0.532704][-0.861634,-0.360844,0.356901][0.501181,0.100058,0][1.36583,-1.61625,-0.0092774][-0.932626,-0.360844,0][0.502007,0.141377,0][1.36583,-1.61625,-0.0092774][-0.932626,-0.360844,0][0.502007,0.141377,0][1.2968,-1.19582,-0.00927747][-0.991544,-0.129768,0][0.468818,0.14204,0][1.19794,-1.19582,-0.50629][-0.916068,-0.129768,0.379447][0.468035,0.102806,0][1.26171,-1.61625,-0.532704][-0.861634,-0.360844,0.356901][0.501181,0.100058,0][1.48627,-2.00582,-0.625721][-0.635008,-0.726347,0.263029][0.531787,0.0921012,0][1.60889,-2.00582,-0.00927732][-0.687328,-0.726347,0][0.532759,0.140763,0][1.60889,-2.00582,-0.00927732][-0.687328,-0.726347,0][0.532759,0.140763,0][1.36583,-1.61625,-0.0092774][-0.932626,-0.360844,0][0.502007,0.141377,0][1.26171,-1.61625,-0.532704][-0.861634,-0.360844,0.356901][0.501181,0.100058,0][1.48627,-2.00582,-0.625721][-0.635008,-0.726347,0.263029][0.639095,0.0459672,0][1.82667,-2.22919,-0.766719][-0.815731,-0.469484,0.337887][0.647183,0.014651,0][1.97734,-2.22919,-0.00927737][-0.882941,-0.469484,0][0.70221,0.0338892,0][1.97734,-2.22919,-0.00927737][-0.882941,-0.469484,0][0.70221,0.0338892,0][1.60889,-2.00582,-0.00927732][-0.687328,-0.726347,0][0.683879,0.0616242,0][1.48627,-2.00582,-0.625721][-0.635008,-0.726347,0.263029][0.639095,0.0459672,0][1.82667,-2.22919,-0.766719][-0.815731,-0.469484,0.337887][0.549198,0.0806186,0][1.82808,-2.44029,-0.7673][-1.30487,-0.0110728,0.871886][0.565861,0.0802398,0][1.97886,-2.44029,-0.00927734][-1.5392,-0.0110729,0.306165][0.567056,0.140078,0][1.97886,-2.44029,-0.00927734][-1.5392,-0.0110729,0.306165][0.567056,0.140078,0][1.97734,-2.22919,-0.00927737][-0.882941,-0.469484,0][0.550392,0.140411,0][1.82667,-2.22919,-0.766719][-0.815731,-0.469484,0.337887][0.549198,0.0806186,0][1.82808,-2.44029,-0.7673][-1.30487,-0.0110728,0.871886][0.0796316,0.049504,0][2.15102,-2.44029,-0.901069][1.30465,0.0130239,-0.871741][0.0691634,0.0240057,0][2.32841,-2.44029,-0.00927733][1.53894,0.0130237,-0.306115][0.138951,0.01,0][2.32841,-2.44029,-0.00927733][1.53894,0.0130237,-0.306115][0.138951,0.01,0][1.97886,-2.44029,-0.00927734][-1.5392,-0.0110729,0.306165][0.138951,0.0375991,0][1.82808,-2.44029,-0.7673][-1.30487,-0.0110728,0.871886][0.0796316,0.049504,0][2.32841,-2.44029,-0.00927733][1.53894,0.0130237,-0.306115][0.892313,0.845839,0][2.32663,-2.22919,-0.00927736][0.867553,0.497344,0][0.908978,0.845549,0][2.14937,-2.22919,0.881831][0.801515,0.497344,0.331998][0.910201,0.915896,0][2.14937,-2.22919,0.881831][0.801515,0.497344,0.331998][0.910201,0.915896,0][2.15102,-2.44029,0.882514][1.53894,0.0130243,0.306115][0.893538,0.91624,0][2.32841,-2.44029,-0.00927733][1.53894,0.0130237,-0.306115][0.892313,0.845839,0][2.32663,-2.22919,-0.00927736][0.867553,0.497344,0][0.205256,0.404816,0][1.89316,-2.00582,-0.00927731][0.63222,0.774789,1.76393e-007][0.206941,0.438419,0][1.7489,-2.00582,0.71595][0.584095,0.774789,0.24194][0.155267,0.437485,0][1.7489,-2.00582,0.71595][0.584095,0.774789,0.24194][0.155267,0.437485,0][2.14937,-2.22919,0.881831][0.801515,0.497344,0.331998][0.141762,0.403669,0][2.32663,-2.22919,-0.00927736][0.867553,0.497344,0][0.205256,0.404816,0][1.89316,-2.00582,-0.00927731][0.63222,0.774789,1.76393e-007][0.769764,0.10036,0][1.6072,-1.61625,-0.0092774][0.911723,0.410806,0][0.800518,0.0998251,0][1.48471,-1.61625,0.606519][0.842322,0.410806,0.348901][0.801364,0.148438,0][1.48471,-1.61625,0.606519][0.842322,0.410806,0.348901][0.801364,0.148438,0][1.7489,-2.00582,0.71595][0.584095,0.774789,0.24194][0.77076,0.157612,0][1.89316,-2.00582,-0.00927731][0.63222,0.774789,1.76393e-007][0.769764,0.10036,0][1.6072,-1.61625,-0.0092774][0.911723,0.410806,0][0.800518,0.0998251,0][1.526,-1.19582,-0.00927741][0.988346,0.152222,0][0.833708,0.0992478,0][1.40969,-1.19582,0.575443][0.913113,0.152222,0.378224][0.834511,0.145408,0][1.40969,-1.19582,0.575443][0.913113,0.152222,0.378224][0.834511,0.145408,0][1.48471,-1.61625,0.606519][0.842322,0.410806,0.348901][0.801364,0.148438,0][1.6072,-1.61625,-0.0092774][0.911723,0.410806,0][0.800518,0.0998251,0][1.526,-1.19582,-0.00927741][0.988346,0.152222,0][0.833708,0.0992478,0][1.46597,-0.668635,-0.00927751][0.978563,0.205946,0][0.875326,0.098524,0][1.35424,-0.668635,0.552474][0.904074,0.205947,0.37448][0.876097,0.142871,0][1.35424,-0.668635,0.552474][0.904074,0.205947,0.37448][0.876097,0.142871,0][1.40969,-1.19582,0.575443][0.913113,0.152222,0.378224][0.834511,0.145408,0][1.526,-1.19582,-0.00927741][0.988346,0.152222,0][0.833708,0.0992478,0][1.46597,-0.668635,-0.00927751][0.978563,0.205946,0][0.875326,0.098524,0][1.35388,-0.314304,-0.00927746][0.952219,0.305416,1.20215e-007][0.903298,0.0980376,0][1.25067,-0.314304,0.509576][0.879736,0.305416,0.364399][0.90401,0.138998,0][1.25067,-0.314304,0.509576][0.879736,0.305416,0.364399][0.90401,0.138998,0][1.35424,-0.668635,0.552474][0.904074,0.205947,0.37448][0.876097,0.142871,0][1.46597,-0.668635,-0.00927751][0.978563,0.205946,0][0.875326,0.098524,0][1.35388,-0.314304,-0.00927746][0.952219,0.305416,1.20215e-007][0.903298,0.0980376,0][1.23855,0.0400265,-0.00927751][0.859492,0.511149,0][0.93127,0.0975511,0][1.14412,0.0400266,0.465442][0.794067,0.511149,0.328914][0.931922,0.135027,0][1.14412,0.0400266,0.465442][0.794067,0.511149,0.328914][0.931922,0.135027,0][1.25067,-0.314304,0.509576][0.879736,0.305416,0.364399][0.90401,0.138998,0][1.35388,-0.314304,-0.00927746][0.952219,0.305416,1.20215e-007][0.903298,0.0980376,0][1.23855,0.0400265,-0.00927751][0.859492,0.511149,0][0.758737,0.302744,0][0.935777,0.341322,-0.00927756][0.587013,0.809578,0][0.742297,0.320384,0][0.864397,0.341322,0.349576][0.542329,0.809578,0.22464][0.720089,0.302296,0][0.864397,0.341322,0.349576][0.542329,0.809578,0.22464][0.720089,0.302296,0][1.14412,0.0400266,0.465442][0.794067,0.511149,0.328914][0.729358,0.278815,0][1.23855,0.0400265,-0.00927751][0.859492,0.511149,0][0.758737,0.302744,0][0.935777,0.341322,-0.00927756][0.587013,0.809578,0][0.742297,0.320384,0][0.254306,0.659853,-0.00927759][0.423444,0.905922,0][0.702896,0.357178,0][0.2348,0.659853,0.0887881][0.391211,0.905922,0.162045][0.696827,0.352235,0][0.2348,0.659853,0.0887881][0.391211,0.905922,0.162045][0.696827,0.352235,0][0.864397,0.341322,0.349576][0.542329,0.809578,0.22464][0.720089,0.302296,0][0.935777,0.341322,-0.00927756][0.587013,0.809578,0][0.742297,0.320384,0][0.734445,0.341322,0.295748][-0.541057,-0.810574,-0.224113][0.105986,0.208007,0][-0.00195171,0.618851,-0.00927762][-2.35707e-007,-1,0][0.16707,0.228882,0][0.795118,0.341322,-0.00927755][-0.585636,-0.810574,0][0.105242,0.231135,0][0.795118,0.341322,-0.00927755][-0.585636,-0.810574,0][0.347477,0.144465,0][1.05248,0.0400265,-0.00927752][-0.88875,-0.458393,0][0.371261,0.143989,0][0.972212,0.0400265,0.394234][-0.821097,-0.458393,-0.34011][0.371898,0.175842,0][0.972212,0.0400265,0.394234][-0.821097,-0.458393,-0.34011][0.371898,0.175842,0][0.734445,0.341322,0.295748][-0.541057,-0.810574,-0.224113][0.347958,0.168543,0][0.795118,0.341322,-0.00927755][-0.585636,-0.810574,0][0.347477,0.144465,0][1.05248,0.0400265,-0.00927752][-0.88875,-0.458393,0][0.371261,0.143989,0][1.1505,-0.314304,-0.00927752][-0.964782,-0.26305,1.40807e-007][0.399232,0.143431,0][1.06278,-0.314304,0.431748][-0.891342,-0.26305,-0.369206][0.399928,0.178245,0][1.06278,-0.314304,0.431748][-0.891342,-0.26305,-0.369206][0.399928,0.178245,0][0.972212,0.0400265,0.394234][-0.821097,-0.458393,-0.34011][0.371898,0.175842,0][1.05248,0.0400265,-0.00927752][-0.88875,-0.458393,0][0.371261,0.143989,0][1.1505,-0.314304,-0.00927752][-0.964782,-0.26305,1.40807e-007][0.399232,0.143431,0][1.24579,-0.668635,-0.00927744][-0.984241,-0.176835,0][0.427203,0.142872,0][1.15081,-0.668635,0.468211][-0.90932,-0.176835,-0.376653][0.427956,0.180564,0][1.15081,-0.668635,0.468211][-0.90932,-0.176835,-0.376653][0.427956,0.180564,0][1.06278,-0.314304,0.431748][-0.891342,-0.26305,-0.369206][0.399928,0.178245,0][1.1505,-0.314304,-0.00927752][-0.964782,-0.26305,1.40807e-007][0.399232,0.143431,0][1.24579,-0.668635,-0.00927744][-0.984241,-0.176835,0][0.427203,0.142872,0][1.2968,-1.19582,-0.00927747][-0.991544,-0.129768,0][0.468818,0.14204,0][1.19794,-1.19582,0.487735][-0.916068,-0.129768,-0.379448][0.469602,0.181274,0][1.19794,-1.19582,0.487735][-0.916068,-0.129768,-0.379448][0.469602,0.181274,0][1.15081,-0.668635,0.468211][-0.90932,-0.176835,-0.376653][0.427956,0.180564,0][1.24579,-0.668635,-0.00927744][-0.984241,-0.176835,0][0.427203,0.142872,0][1.2968,-1.19582,-0.00927747][-0.991544,-0.129768,0][0.468818,0.14204,0][1.36583,-1.61625,-0.0092774][-0.932626,-0.360844,0][0.502007,0.141377,0][1.26171,-1.61625,0.514149][-0.861634,-0.360844,-0.3569][0.502832,0.182696,0][1.26171,-1.61625,0.514149][-0.861634,-0.360844,-0.3569][0.502832,0.182696,0][1.19794,-1.19582,0.487735][-0.916068,-0.129768,-0.379448][0.469602,0.181274,0][1.2968,-1.19582,-0.00927747][-0.991544,-0.129768,0][0.468818,0.14204,0][1.36583,-1.61625,-0.0092774][-0.932626,-0.360844,0][0.502007,0.141377,0][1.60889,-2.00582,-0.00927732][-0.687328,-0.726347,0][0.532759,0.140763,0][1.48627,-2.00582,0.607166][-0.635008,-0.726348,-0.263029][0.533732,0.189425,0][1.48627,-2.00582,0.607166][-0.635008,-0.726348,-0.263029][0.533732,0.189425,0][1.26171,-1.61625,0.514149][-0.861634,-0.360844,-0.3569][0.502832,0.182696,0][1.36583,-1.61625,-0.0092774][-0.932626,-0.360844,0][0.502007,0.141377,0][1.60889,-2.00582,-0.00927732][-0.687328,-0.726347,0][0.683879,0.0616242,0][1.97734,-2.22919,-0.00927737][-0.882941,-0.469484,0][0.70221,0.0338892,0][1.82667,-2.22919,0.748164][-0.815731,-0.469484,-0.337887][0.743088,0.0647858,0][1.82667,-2.22919,0.748164][-0.815731,-0.469484,-0.337887][0.743088,0.0647858,0][1.48627,-2.00582,0.607166][-0.635008,-0.726348,-0.263029][0.717148,0.0867693,0][1.60889,-2.00582,-0.00927732][-0.687328,-0.726347,0][0.683879,0.0616242,0][1.97734,-2.22919,-0.00927737][-0.882941,-0.469484,0][0.550392,0.140411,0][1.97886,-2.44029,-0.00927734][-1.5392,-0.0110729,0.306165][0.567056,0.140078,0][1.82808,-2.44029,0.748746][-1.5392,-0.0110718,-0.306166][0.568252,0.199916,0][1.82808,-2.44029,0.748746][-1.5392,-0.0110718,-0.306166][0.568252,0.199916,0][1.82667,-2.22919,0.748164][-0.815731,-0.469484,-0.337887][0.551587,0.200203,0][1.97734,-2.22919,-0.00927737][-0.882941,-0.469484,0][0.550392,0.140411,0][1.97886,-2.44029,-0.00927734][-1.5392,-0.0110729,0.306165][0.138951,0.0375991,0][2.32841,-2.44029,-0.00927733][1.53894,0.0130237,-0.306115][0.138951,0.01,0][2.15102,-2.44029,0.882514][1.53894,0.0130243,0.306115][0.20874,0.0240057,0][2.15102,-2.44029,0.882514][1.53894,0.0130243,0.306115][0.20874,0.0240057,0][1.82808,-2.44029,0.748746][-1.5392,-0.0110718,-0.306166][0.198271,0.049504,0][1.97886,-2.44029,-0.00927734][-1.5392,-0.0110729,0.306165][0.138951,0.0375991,0][2.15102,-2.44029,0.882514][1.53894,0.0130243,0.306115][0.893538,0.91624,0][2.14937,-2.22919,0.881831][0.801515,0.497344,0.331998][0.910201,0.915896,0][1.6446,-2.22919,1.63728][0.613453,0.497344,0.613453][0.911239,0.975533,0][1.6446,-2.22919,1.63728][0.613453,0.497344,0.613453][0.911239,0.975533,0][1.64586,-2.44029,1.63854][1.30465,0.0130246,0.871741][0.894576,0.975923,0][2.15102,-2.44029,0.882514][1.53894,0.0130243,0.306115][0.893538,0.91624,0][2.14937,-2.22919,0.881831][0.801515,0.497344,0.331998][0.141762,0.403669,0][1.7489,-2.00582,0.71595][0.584095,0.774789,0.24194][0.155267,0.437485,0][1.33809,-2.00582,1.33077][0.447047,0.774789,0.447047][0.107122,0.45896,0][1.33809,-2.00582,1.33077][0.447047,0.774789,0.447047][0.107122,0.45896,0][1.6446,-2.22919,1.63728][0.613453,0.497344,0.613453][0.0826056,0.430056,0][2.14937,-2.22919,0.881831][0.801515,0.497344,0.331998][0.141762,0.403669,0][1.7489,-2.00582,0.71595][0.584095,0.774789,0.24194][0.265641,0.782518,0][1.48471,-1.61625,0.606519][0.842322,0.410806,0.348901][0.303397,0.788031,0][1.13589,-1.61625,1.12857][0.644685,0.410806,0.644685][0.301945,0.837583,0][1.13589,-1.61625,1.12857][0.644685,0.410806,0.644685][0.301945,0.837583,0][1.33809,-2.00582,1.33077][0.447047,0.774789,0.447047][0.263932,0.840876,0][1.7489,-2.00582,0.71595][0.584095,0.774789,0.24194][0.265641,0.782518,0][1.48471,-1.61625,0.606519][0.842322,0.410806,0.348901][0.801364,0.148438,0][1.40969,-1.19582,0.575443][0.913113,0.152222,0.378224][0.834511,0.145408,0][1.07847,-1.19582,1.07115][0.698866,0.152222,0.698867][0.835191,0.18454,0][1.07847,-1.19582,1.07115][0.698866,0.152222,0.698867][0.835191,0.18454,0][1.13589,-1.61625,1.12857][0.644685,0.410806,0.644685][0.80208,0.18965,0][1.48471,-1.61625,0.606519][0.842322,0.410806,0.348901][0.801364,0.148438,0][1.40969,-1.19582,0.575443][0.913113,0.152222,0.378224][0.834511,0.145408,0][1.35424,-0.668635,0.552474][0.904074,0.205947,0.37448][0.876097,0.142871,0][1.03603,-0.668635,1.0287][0.691948,0.205947,0.691949][0.876751,0.180466,0][1.03603,-0.668635,1.0287][0.691948,0.205947,0.691949][0.876751,0.180466,0][1.07847,-1.19582,1.07115][0.698866,0.152222,0.698867][0.835191,0.18454,0][1.40969,-1.19582,0.575443][0.913113,0.152222,0.378224][0.834511,0.145408,0][1.35424,-0.668635,0.552474][0.904074,0.205947,0.37448][0.876097,0.142871,0][1.25067,-0.314304,0.509576][0.879736,0.305416,0.364399][0.90401,0.138998,0][0.956764,-0.314304,0.949439][0.67332,0.305416,0.673321][0.904614,0.173722,0][0.956764,-0.314304,0.949439][0.67332,0.305416,0.673321][0.904614,0.173722,0][1.03603,-0.668635,1.0287][0.691948,0.205947,0.691949][0.876751,0.180466,0][1.35424,-0.668635,0.552474][0.904074,0.205947,0.37448][0.876097,0.142871,0][1.25067,-0.314304,0.509576][0.879736,0.305416,0.364399][0.90401,0.138998,0][1.14412,0.0400266,0.465442][0.794067,0.511149,0.328914][0.931922,0.135027,0][0.875216,0.0400265,0.86789][0.607753,0.511149,0.607753][0.932474,0.166798,0][0.875216,0.0400265,0.86789][0.607753,0.511149,0.607753][0.932474,0.166798,0][0.956764,-0.314304,0.949439][0.67332,0.305416,0.673321][0.904614,0.173722,0][1.25067,-0.314304,0.509576][0.879736,0.305416,0.364399][0.90401,0.138998,0][1.14412,0.0400266,0.465442][0.794067,0.511149,0.328914][0.729358,0.278815,0][0.864397,0.341322,0.349576][0.542329,0.809578,0.22464][0.720089,0.302296,0][0.661123,0.341322,0.653797][0.415081,0.809578,0.415081][0.692563,0.294129,0][0.661123,0.341322,0.653797][0.415081,0.809578,0.415081][0.692563,0.294129,0][0.875216,0.0400265,0.86789][0.607753,0.511149,0.607753][0.692945,0.268012,0][1.14412,0.0400266,0.465442][0.794067,0.511149,0.328914][0.729358,0.278815,0][0.864397,0.341322,0.349576][0.542329,0.809578,0.22464][0.720089,0.302296,0][0.2348,0.659853,0.0887881][0.391211,0.905922,0.162045][0.696827,0.352235,0][0.17925,0.659853,0.171924][0.29942,0.905922,0.29942][0.689305,0.350003,0][0.17925,0.659853,0.171924][0.29942,0.905922,0.29942][0.689305,0.350003,0][0.661123,0.341322,0.653797][0.415081,0.809578,0.415081][0.692563,0.294129,0][0.864397,0.341322,0.349576][0.542329,0.809578,0.22464][0.720089,0.302296,0][0.561662,0.341322,0.554336][-0.414107,-0.810574,-0.414108][0.116065,0.186941,0][-0.00195171,0.618851,-0.00927762][-2.35707e-007,-1,0][0.16707,0.228882,0][0.734445,0.341322,0.295748][-0.541057,-0.810574,-0.224113][0.105986,0.208007,0][0.734445,0.341322,0.295748][-0.541057,-0.810574,-0.224113][0.712117,0.227004,0][0.972212,0.0400265,0.394234][-0.821097,-0.458393,-0.34011][0.695842,0.200285,0][0.743641,0.0400266,0.736315][-0.628441,-0.458393,-0.628441][0.725502,0.187038,0][0.743641,0.0400266,0.736315][-0.628441,-0.458393,-0.628441][0.725502,0.187038,0][0.561662,0.341322,0.554336][-0.414107,-0.810574,-0.414108][0.734538,0.216991,0][0.734445,0.341322,0.295748][-0.541057,-0.810574,-0.224113][0.712117,0.227004,0][0.972212,0.0400265,0.394234][-0.821097,-0.458393,-0.34011][0.371898,0.175842,0][1.06278,-0.314304,0.431748][-0.891342,-0.26305,-0.369206][0.399928,0.178245,0][0.812957,-0.314304,0.805631][-0.682204,-0.26305,-0.682204][0.400517,0.207759,0][0.812957,-0.314304,0.805631][-0.682204,-0.26305,-0.682204][0.400517,0.207759,0][0.743641,0.0400266,0.736315][-0.628441,-0.458393,-0.628441][0.372437,0.202846,0][0.972212,0.0400265,0.394234][-0.821097,-0.458393,-0.34011][0.371898,0.175842,0][1.06278,-0.314304,0.431748][-0.891342,-0.26305,-0.369206][0.399928,0.178245,0][1.15081,-0.668635,0.468211][-0.90932,-0.176835,-0.376653][0.427956,0.180564,0][0.880332,-0.668635,0.873006][-0.695963,-0.176835,-0.695963][0.428594,0.212519,0][0.880332,-0.668635,0.873006][-0.695963,-0.176835,-0.695963][0.428594,0.212519,0][0.812957,-0.314304,0.805631][-0.682204,-0.26305,-0.682204][0.400517,0.207759,0][1.06278,-0.314304,0.431748][-0.891342,-0.26305,-0.369206][0.399928,0.178245,0][1.15081,-0.668635,0.468211][-0.90932,-0.176835,-0.376653][0.427956,0.180564,0][1.19794,-1.19582,0.487735][-0.916068,-0.129768,-0.379448][0.469602,0.181274,0][0.916408,-1.19582,0.909082][-0.701128,-0.129768,-0.701128][0.470267,0.214535,0][0.916408,-1.19582,0.909082][-0.701128,-0.129768,-0.701128][0.470267,0.214535,0][0.880332,-0.668635,0.873006][-0.695963,-0.176835,-0.695963][0.428594,0.212519,0][1.15081,-0.668635,0.468211][-0.90932,-0.176835,-0.376653][0.427956,0.180564,0][1.19794,-1.19582,0.487735][-0.916068,-0.129768,-0.379448][0.469602,0.181274,0][1.26171,-1.61625,0.514149][-0.861634,-0.360844,-0.3569][0.502832,0.182696,0][0.965215,-1.61625,0.95789][-0.659466,-0.360844,-0.659467][0.503532,0.217725,0][0.965215,-1.61625,0.95789][-0.659466,-0.360844,-0.659467][0.503532,0.217725,0][0.916408,-1.19582,0.909082][-0.701128,-0.129768,-0.701128][0.470267,0.214535,0][1.19794,-1.19582,0.487735][-0.916068,-0.129768,-0.379448][0.469602,0.181274,0][1.26171,-1.61625,0.514149][-0.861634,-0.360844,-0.3569][0.502832,0.182696,0][1.48627,-2.00582,0.607166][-0.635008,-0.726348,-0.263029][0.533732,0.189425,0][1.13709,-2.00582,1.12976][-0.486014,-0.726347,-0.486014][0.534556,0.230678,0][1.13709,-2.00582,1.12976][-0.486014,-0.726347,-0.486014][0.534556,0.230678,0][0.965215,-1.61625,0.95789][-0.659466,-0.360844,-0.659467][0.503532,0.217725,0][1.26171,-1.61625,0.514149][-0.861634,-0.360844,-0.3569][0.502832,0.182696,0][1.48627,-2.00582,0.607166][-0.635008,-0.726348,-0.263029][0.510705,0.803854,0][1.82667,-2.22919,0.748164][-0.815731,-0.469484,-0.337887][0.506809,0.832466,0][1.39762,-2.22919,1.39029][-0.624334,-0.469484,-0.624334][0.454951,0.833462,0][1.39762,-2.22919,1.39029][-0.624334,-0.469484,-0.624334][0.454951,0.833462,0][1.13709,-2.00582,1.12976][-0.486014,-0.726347,-0.486014][0.468501,0.804665,0][1.48627,-2.00582,0.607166][-0.635008,-0.726348,-0.263029][0.510705,0.803854,0][1.82667,-2.22919,0.748164][-0.815731,-0.469484,-0.337887][0.551587,0.200203,0][1.82808,-2.44029,0.748746][-1.5392,-0.0110718,-0.306166][0.568252,0.199916,0][1.39869,-2.44029,1.39137][-1.30487,-0.0110718,-0.871886][0.569265,0.250644,0][1.39869,-2.44029,1.39137][-1.30487,-0.0110718,-0.871886][0.569265,0.250644,0][1.39762,-2.22919,1.39029][-0.624334,-0.469484,-0.624334][0.552599,0.250892,0][1.82667,-2.22919,0.748164][-0.815731,-0.469484,-0.337887][0.551587,0.200203,0][1.82808,-2.44029,0.748746][-1.5392,-0.0110718,-0.306166][0.198271,0.049504,0][2.15102,-2.44029,0.882514][1.53894,0.0130243,0.306115][0.20874,0.0240057,0][1.64586,-2.44029,1.63854][1.30465,0.0130246,0.871741][0.267903,0.0638907,0][1.64586,-2.44029,1.63854][1.30465,0.0130246,0.871741][0.267903,0.0638907,0][1.39869,-2.44029,1.39137][-1.30487,-0.0110718,-0.871886][0.24856,0.0834062,0][1.82808,-2.44029,0.748746][-1.5392,-0.0110718,-0.306166][0.198271,0.049504,0][1.64586,-2.44029,1.63854][1.30465,0.0130246,0.871741][0.179174,0.448103,0][1.6446,-2.22919,1.63728][0.613453,0.497344,0.613453][0.195681,0.448203,0][0.889156,-2.22919,2.14205][0.331998,0.497344,0.801515][0.200973,0.507849,0][0.889156,-2.22919,2.14205][0.331998,0.497344,0.801515][0.200973,0.507849,0][0.889839,-2.44029,2.1437][0.87174,0.0130231,1.30465][0.184471,0.507795,0][1.64586,-2.44029,1.63854][1.30465,0.0130246,0.871741][0.179174,0.448103,0][1.6446,-2.22919,1.63728][0.613453,0.497344,0.613453][0.0826056,0.430056,0][1.33809,-2.00582,1.33077][0.447047,0.774789,0.447047][0.107122,0.45896,0][0.723275,-2.00582,1.74158][0.24194,0.774789,0.584095][0.0698372,0.499576,0][0.723275,-2.00582,1.74158][0.24194,0.774789,0.584095][0.0698372,0.499576,0][0.889156,-2.22919,2.14205][0.331998,0.497344,0.801515][0.0367921,0.479961,0][1.6446,-2.22919,1.63728][0.613453,0.497344,0.613453][0.0826056,0.430056,0][1.33809,-2.00582,1.33077][0.447047,0.774789,0.447047][0.107122,0.45896,0][1.13589,-1.61625,1.12857][0.644685,0.410806,0.644685][0.13219,0.478189,0][0.613844,-1.61625,1.47739][0.348901,0.410806,0.842322][0.100531,0.512676,0][0.613844,-1.61625,1.47739][0.348901,0.410806,0.842322][0.100531,0.512676,0][0.723275,-2.00582,1.74158][0.24194,0.774789,0.584095][0.0698372,0.499576,0][1.33809,-2.00582,1.33077][0.447047,0.774789,0.447047][0.107122,0.45896,0][1.13589,-1.61625,1.12857][0.644685,0.410806,0.644685][0.534882,0.731301,0][1.07847,-1.19582,1.07115][0.698866,0.152222,0.698867][0.568334,0.735397,0][0.582769,-1.19582,1.40236][0.378224,0.152222,0.913113][0.563375,0.768888,0][0.582769,-1.19582,1.40236][0.378224,0.152222,0.913113][0.563375,0.768888,0][0.613844,-1.61625,1.47739][0.348901,0.410806,0.842322][0.529659,0.766572,0][1.13589,-1.61625,1.12857][0.644685,0.410806,0.644685][0.534882,0.731301,0][1.07847,-1.19582,1.07115][0.698866,0.152222,0.698867][0.568334,0.735397,0][1.03603,-0.668635,1.0287][0.691948,0.205947,0.691949][0.609838,0.737804,0][0.559799,-0.668635,1.34691][0.37448,0.205947,0.904075][0.605074,0.769979,0][0.559799,-0.668635,1.34691][0.37448,0.205947,0.904075][0.605074,0.769979,0][0.582769,-1.19582,1.40236][0.378224,0.152222,0.913113][0.563375,0.768888,0][1.07847,-1.19582,1.07115][0.698866,0.152222,0.698867][0.568334,0.735397,0][1.03603,-0.668635,1.0287][0.691948,0.205947,0.691949][0.609838,0.737804,0][0.956764,-0.314304,0.949439][0.67332,0.305416,0.673321][0.638494,0.744107,0][0.516902,-0.314304,1.24335][0.364398,0.305416,0.879736][0.634093,0.773825,0][0.516902,-0.314304,1.24335][0.364398,0.305416,0.879736][0.634093,0.773825,0][0.559799,-0.668635,1.34691][0.37448,0.205947,0.904075][0.605074,0.769979,0][1.03603,-0.668635,1.0287][0.691948,0.205947,0.691949][0.609838,0.737804,0][0.956764,-0.314304,0.949439][0.67332,0.305416,0.673321][0.638494,0.744107,0][0.875216,0.0400265,0.86789][0.607753,0.511149,0.607753][0.667183,0.750621,0][0.472768,0.0400266,1.1368][0.328913,0.511149,0.794067][0.663157,0.777811,0][0.472768,0.0400266,1.1368][0.328913,0.511149,0.794067][0.663157,0.777811,0][0.516902,-0.314304,1.24335][0.364398,0.305416,0.879736][0.634093,0.773825,0][0.956764,-0.314304,0.949439][0.67332,0.305416,0.673321][0.638494,0.744107,0][0.875216,0.0400265,0.86789][0.607753,0.511149,0.607753][0.692945,0.268012,0][0.661123,0.341322,0.653797][0.415081,0.809578,0.415081][0.692563,0.294129,0][0.356901,0.341322,0.857071][0.22464,0.809578,0.542329][0.66391,0.297128,0][0.356901,0.341322,0.857071][0.22464,0.809578,0.542329][0.66391,0.297128,0][0.472768,0.0400266,1.1368][0.328913,0.511149,0.794067][0.65504,0.271978,0][0.875216,0.0400265,0.86789][0.607753,0.511149,0.607753][0.692945,0.268012,0][0.661123,0.341322,0.653797][0.415081,0.809578,0.415081][0.692563,0.294129,0][0.17925,0.659853,0.171924][0.29942,0.905922,0.29942][0.689305,0.350003,0][0.096114,0.659853,0.227474][0.162045,0.905923,0.391211][0.681475,0.350823,0][0.096114,0.659853,0.227474][0.162045,0.905923,0.391211][0.681475,0.350823,0][0.356901,0.341322,0.857071][0.22464,0.809578,0.542329][0.66391,0.297128,0][0.661123,0.341322,0.653797][0.415081,0.809578,0.415081][0.692563,0.294129,0][0.303073,0.341322,0.727119][-0.224113,-0.810574,-0.541057][0.133945,0.171145,0][-0.00195171,0.618851,-0.00927762][-2.35707e-007,-1,0][0.16707,0.228882,0][0.561662,0.341322,0.554336][-0.414107,-0.810574,-0.414108][0.116065,0.186941,0][0.561662,0.341322,0.554336][-0.414107,-0.810574,-0.414108][0.116065,0.186941,0][0.743641,0.0400266,0.736315][-0.628441,-0.458393,-0.628441][0.0997762,0.167811,0][0.40156,0.0400266,0.964886][-0.34011,-0.458393,-0.821097][0.123429,0.146914,0][0.40156,0.0400266,0.964886][-0.34011,-0.458393,-0.821097][0.123429,0.146914,0][0.303073,0.341322,0.727119][-0.224113,-0.810574,-0.541057][0.133945,0.171145,0][0.561662,0.341322,0.554336][-0.414107,-0.810574,-0.414108][0.116065,0.186941,0][0.743641,0.0400266,0.736315][-0.628441,-0.458393,-0.628441][0.0380368,0.981171,0][0.812957,-0.314304,0.805631][-0.682204,-0.26305,-0.682204][0.0330731,0.952748,0][0.439074,-0.314304,1.05545][-0.369206,-0.26305,-0.891342][0.0584859,0.947489,0][0.439074,-0.314304,1.05545][-0.369206,-0.26305,-0.891342][0.0584859,0.947489,0][0.40156,0.0400266,0.964886][-0.34011,-0.458393,-0.821097][0.0612879,0.976359,0][0.743641,0.0400266,0.736315][-0.628441,-0.458393,-0.628441][0.0380368,0.981171,0][0.812957,-0.314304,0.805631][-0.682204,-0.26305,-0.682204][0.0330731,0.952748,0][0.880332,-0.668635,0.873006][-0.695963,-0.176835,-0.695963][0.0282879,0.924367,0][0.475536,-0.668635,1.14348][-0.376653,-0.176835,-0.90932][0.0558017,0.918672,0][0.475536,-0.668635,1.14348][-0.376653,-0.176835,-0.90932][0.0558017,0.918672,0][0.439074,-0.314304,1.05545][-0.369206,-0.26305,-0.891342][0.0584859,0.947489,0][0.812957,-0.314304,0.805631][-0.682204,-0.26305,-0.682204][0.0330731,0.952748,0][0.880332,-0.668635,0.873006][-0.695963,-0.176835,-0.695963][0.70681,0.137884,0][0.916408,-1.19582,0.909082][-0.701128,-0.129768,-0.701128][0.693482,0.106114,0][0.495061,-1.19582,1.19062][-0.379448,-0.129768,-0.916068][0.731244,0.100018,0][0.495061,-1.19582,1.19062][-0.379448,-0.129768,-0.916068][0.731244,0.100018,0][0.475536,-0.668635,1.14348][-0.376653,-0.176835,-0.90932][0.743088,0.132028,0][0.880332,-0.668635,0.873006][-0.695963,-0.176835,-0.695963][0.70681,0.137884,0][0.916408,-1.19582,0.909082][-0.701128,-0.129768,-0.701128][0.0270632,0.88349,0][0.965215,-1.61625,0.95789][-0.659466,-0.360844,-0.659467][0.0242458,0.85047,0][0.521475,-1.61625,1.25439][-0.3569,-0.360844,-0.861634][0.0544067,0.844227,0][0.521475,-1.61625,1.25439][-0.3569,-0.360844,-0.861634][0.0544067,0.844227,0][0.495061,-1.19582,1.19062][-0.379448,-0.129768,-0.916068][0.0557021,0.877563,0][0.916408,-1.19582,0.909082][-0.701128,-0.129768,-0.701128][0.0270632,0.88349,0][0.965215,-1.61625,0.95789][-0.659466,-0.360844,-0.659467][0.0242458,0.85047,0][1.13709,-2.00582,1.12976][-0.486014,-0.726347,-0.486014][0.01,0.817206,0][0.614491,-2.00582,1.47895][-0.263029,-0.726347,-0.635008][0.0455206,0.809855,0][0.614491,-2.00582,1.47895][-0.263029,-0.726347,-0.635008][0.0455206,0.809855,0][0.521475,-1.61625,1.25439][-0.3569,-0.360844,-0.861634][0.0544067,0.844227,0][0.965215,-1.61625,0.95789][-0.659466,-0.360844,-0.659467][0.0242458,0.85047,0][1.13709,-2.00582,1.12976][-0.486014,-0.726347,-0.486014][0.468501,0.804665,0][1.39762,-2.22919,1.39029][-0.624334,-0.469484,-0.624334][0.454951,0.833462,0][0.755489,-2.22919,1.81935][-0.337887,-0.469484,-0.815731][0.406593,0.811054,0][0.755489,-2.22919,1.81935][-0.337887,-0.469484,-0.815731][0.406593,0.811054,0][0.614491,-2.00582,1.47895][-0.263029,-0.726347,-0.635008][0.429145,0.786427,0][1.13709,-2.00582,1.12976][-0.486014,-0.726347,-0.486014][0.468501,0.804665,0][1.39762,-2.22919,1.39029][-0.624334,-0.469484,-0.624334][0.955672,0.0100848,0][1.39869,-2.44029,1.39137][-1.30487,-0.0110718,-0.871886][0.97218,0.01,0][0.756071,-2.44029,1.82075][-0.871886,-0.0110739,-1.30487][0.967679,0.0607382,0][0.756071,-2.44029,1.82075][-0.871886,-0.0110739,-1.30487][0.967679,0.0607382,0][0.755489,-2.22919,1.81935][-0.337887,-0.469484,-0.815731][0.951174,0.0607841,0][1.39762,-2.22919,1.39029][-0.624334,-0.469484,-0.624334][0.955672,0.0100848,0][1.39869,-2.44029,1.39137][-1.30487,-0.0110718,-0.871886][0.24856,0.0834062,0][1.64586,-2.44029,1.63854][1.30465,0.0130246,0.871741][0.267903,0.0638907,0][0.889839,-2.44029,2.1437][0.87174,0.0130231,1.30465][0.307435,0.123583,0][0.889839,-2.44029,2.1437][0.87174,0.0130231,1.30465][0.307435,0.123583,0][0.756071,-2.44029,1.82075][-0.871886,-0.0110739,-1.30487][0.282162,0.134144,0][1.39869,-2.44029,1.39137][-1.30487,-0.0110718,-0.871886][0.24856,0.0834062,0][0.889839,-2.44029,2.1437][0.87174,0.0130231,1.30465][0.184471,0.507795,0][0.889156,-2.22919,2.14205][0.331998,0.497344,0.801515][0.200973,0.507849,0][-0.00195207,-2.22919,2.3193][2.00527e-007,0.497344,0.867554][0.202831,0.578207,0][-0.00195207,-2.22919,2.3193][2.00527e-007,0.497344,0.867554][0.202831,0.578207,0][-0.00195211,-2.44029,2.32109][-0.306114,0.0130237,1.53894][0.18633,0.578207,0][0.889839,-2.44029,2.1437][0.87174,0.0130231,1.30465][0.184471,0.507795,0][0.889156,-2.22919,2.14205][0.331998,0.497344,0.801515][0.0367921,0.479961,0][0.723275,-2.00582,1.74158][0.24194,0.774789,0.584095][0.0698372,0.499576,0][-0.00195205,-2.00582,1.88583][0,0.774789,0.63222][0.0490875,0.553148,0][-0.00195205,-2.00582,1.88583][0,0.774789,0.63222][0.0490875,0.553148,0][-0.00195207,-2.22919,2.3193][2.00527e-007,0.497344,0.867554][0.0112964,0.545787,0][0.889156,-2.22919,2.14205][0.331998,0.497344,0.801515][0.0367921,0.479961,0][0.723275,-2.00582,1.74158][0.24194,0.774789,0.584095][0.0698372,0.499576,0][0.613844,-1.61625,1.47739][0.348901,0.410806,0.842322][0.100531,0.512676,0][-0.00195201,-1.61625,1.59988][0,0.410806,0.911723][0.0829119,0.558164,0][-0.00195201,-1.61625,1.59988][0,0.410806,0.911723][0.0829119,0.558164,0][-0.00195205,-2.00582,1.88583][0,0.774789,0.63222][0.0490875,0.553148,0][0.723275,-2.00582,1.74158][0.24194,0.774789,0.584095][0.0698372,0.499576,0][0.613844,-1.61625,1.47739][0.348901,0.410806,0.842322][0.529659,0.766572,0][0.582769,-1.19582,1.40236][0.378224,0.152222,0.913113][0.563375,0.768888,0][-0.00195195,-1.19582,1.51867][0,0.152222,0.988346][0.561633,0.81247,0][-0.00195195,-1.19582,1.51867][0,0.152222,0.988346][0.561633,0.81247,0][-0.00195201,-1.61625,1.59988][0,0.410806,0.911723][0.527825,0.81247,0][0.613844,-1.61625,1.47739][0.348901,0.410806,0.842322][0.529659,0.766572,0][0.582769,-1.19582,1.40236][0.378224,0.152222,0.913113][0.563375,0.768888,0][0.559799,-0.668635,1.34691][0.37448,0.205947,0.904075][0.605074,0.769979,0][-0.00195187,-0.668635,1.45865][2.04113e-007,0.205947,0.978563][0.603401,0.811849,0][-0.00195187,-0.668635,1.45865][2.04113e-007,0.205947,0.978563][0.603401,0.811849,0][-0.00195195,-1.19582,1.51867][0,0.152222,0.988346][0.561633,0.81247,0][0.582769,-1.19582,1.40236][0.378224,0.152222,0.913113][0.563375,0.768888,0][0.559799,-0.668635,1.34691][0.37448,0.205947,0.904075][0.605074,0.769979,0][0.516902,-0.314304,1.24335][0.364398,0.305416,0.879736][0.634093,0.773825,0][-0.00195181,-0.314304,1.34655][1.66724e-007,0.305416,0.952219][0.632547,0.812498,0][-0.00195181,-0.314304,1.34655][1.66724e-007,0.305416,0.952219][0.632547,0.812498,0][-0.00195187,-0.668635,1.45865][2.04113e-007,0.205947,0.978563][0.603401,0.811849,0][0.559799,-0.668635,1.34691][0.37448,0.205947,0.904075][0.605074,0.769979,0][0.516902,-0.314304,1.24335][0.364398,0.305416,0.879736][0.634093,0.773825,0][0.472768,0.0400266,1.1368][0.328913,0.511149,0.794067][0.663157,0.777811,0][-0.00195176,0.0400268,1.23122][0,0.511149,0.859492][0.661743,0.813195,0][-0.00195176,0.0400268,1.23122][0,0.511149,0.859492][0.661743,0.813195,0][-0.00195181,-0.314304,1.34655][1.66724e-007,0.305416,0.952219][0.632547,0.812498,0][0.516902,-0.314304,1.24335][0.364398,0.305416,0.879736][0.634093,0.773825,0][0.472768,0.0400266,1.1368][0.328913,0.511149,0.794067][0.65504,0.271978,0][0.356901,0.341322,0.857071][0.22464,0.809578,0.542329][0.66391,0.297128,0][-0.00195174,0.341322,0.928451][0,0.809578,0.587013][0.638491,0.310835,0][-0.00195174,0.341322,0.928451][0,0.809578,0.587013][0.638491,0.310835,0][-0.00195176,0.0400268,1.23122][0,0.511149,0.859492][0.621415,0.290111,0][0.472768,0.0400266,1.1368][0.328913,0.511149,0.794067][0.65504,0.271978,0][0.356901,0.341322,0.857071][0.22464,0.809578,0.542329][0.66391,0.297128,0][0.096114,0.659853,0.227474][0.162045,0.905923,0.391211][0.681475,0.350823,0][-0.00195169,0.659853,0.24698][0,0.905923,0.423443][0.674529,0.354569,0][-0.00195169,0.659853,0.24698][0,0.905923,0.423443][0.674529,0.354569,0][-0.00195174,0.341322,0.928451][0,0.809578,0.587013][0.638491,0.310835,0][0.356901,0.341322,0.857071][0.22464,0.809578,0.542329][0.66391,0.297128,0][-0.00195175,0.341322,0.787792][-3.35806e-007,-0.810574,-0.585636][0.156904,0.163023,0][-0.00195171,0.618851,-0.00927762][-2.35707e-007,-1,0][0.16707,0.228882,0][0.303073,0.341322,0.727119][-0.224113,-0.810574,-0.541057][0.133945,0.171145,0][0.303073,0.341322,0.727119][-0.224113,-0.810574,-0.541057][0.133945,0.171145,0][0.40156,0.0400266,0.964886][-0.34011,-0.458393,-0.821097][0.123429,0.146914,0][-0.00195176,0.0400266,1.04515][-2.11154e-007,-0.458393,-0.88875][0.153801,0.13617,0][-0.00195176,0.0400266,1.04515][-2.11154e-007,-0.458393,-0.88875][0.153801,0.13617,0][-0.00195175,0.341322,0.787792][-3.35806e-007,-0.810574,-0.585636][0.156904,0.163023,0][0.303073,0.341322,0.727119][-0.224113,-0.810574,-0.541057][0.133945,0.171145,0][0.40156,0.0400266,0.964886][-0.34011,-0.458393,-0.821097][0.0612879,0.976359,0][0.439074,-0.314304,1.05545][-0.369206,-0.26305,-0.891342][0.0584859,0.947489,0][-0.00195181,-0.314304,1.14318][0,-0.26305,-0.964782][0.0914274,0.945642,0][-0.00195181,-0.314304,1.14318][0,-0.26305,-0.964782][0.0914274,0.945642,0][-0.00195176,0.0400266,1.04515][-2.11154e-007,-0.458393,-0.88875][0.0914274,0.974669,0][0.40156,0.0400266,0.964886][-0.34011,-0.458393,-0.821097][0.0612879,0.976359,0][0.439074,-0.314304,1.05545][-0.369206,-0.26305,-0.891342][0.0584859,0.947489,0][0.475536,-0.668635,1.14348][-0.376653,-0.176835,-0.90932][0.0558017,0.918672,0][-0.00195188,-0.668635,1.23846][0,-0.176835,-0.98424][0.0914668,0.916673,0][-0.00195188,-0.668635,1.23846][0,-0.176835,-0.98424][0.0914668,0.916673,0][-0.00195181,-0.314304,1.14318][0,-0.26305,-0.964782][0.0914274,0.945642,0][0.439074,-0.314304,1.05545][-0.369206,-0.26305,-0.891342][0.0584859,0.947489,0][0.475536,-0.668635,1.14348][-0.376653,-0.176835,-0.90932][0.0558017,0.918672,0][0.495061,-1.19582,1.19062][-0.379448,-0.129768,-0.916068][0.0557021,0.877563,0][-0.00195196,-1.19582,1.28948][0,-0.129768,-0.991544][0.0928255,0.875482,0][-0.00195196,-1.19582,1.28948][0,-0.129768,-0.991544][0.0928255,0.875482,0][-0.00195188,-0.668635,1.23846][0,-0.176835,-0.98424][0.0914668,0.916673,0][0.475536,-0.668635,1.14348][-0.376653,-0.176835,-0.90932][0.0558017,0.918672,0][0.495061,-1.19582,1.19062][-0.379448,-0.129768,-0.916068][0.0557021,0.877563,0][0.521475,-1.61625,1.25439][-0.3569,-0.360844,-0.861634][0.0544067,0.844227,0][-0.00195202,-1.61625,1.3585][-2.61509e-007,-0.360844,-0.932626][0.093503,0.842036,0][-0.00195202,-1.61625,1.3585][-2.61509e-007,-0.360844,-0.932626][0.093503,0.842036,0][-0.00195196,-1.19582,1.28948][0,-0.129768,-0.991544][0.0928255,0.875482,0][0.495061,-1.19582,1.19062][-0.379448,-0.129768,-0.916068][0.0557021,0.877563,0][0.521475,-1.61625,1.25439][-0.3569,-0.360844,-0.861634][0.0544067,0.844227,0][0.614491,-2.00582,1.47895][-0.263029,-0.726347,-0.635008][0.0455206,0.809855,0][-0.00195206,-2.00582,1.60157][-3.29238e-007,-0.726347,-0.687328][0.0915647,0.807273,0][-0.00195206,-2.00582,1.60157][-3.29238e-007,-0.726347,-0.687328][0.0915647,0.807273,0][-0.00195202,-1.61625,1.3585][-2.61509e-007,-0.360844,-0.932626][0.093503,0.842036,0][0.521475,-1.61625,1.25439][-0.3569,-0.360844,-0.861634][0.0544067,0.844227,0][0.614491,-2.00582,1.47895][-0.263029,-0.726347,-0.635008][0.429145,0.786427,0][0.755489,-2.22919,1.81935][-0.337887,-0.469484,-0.815731][0.406593,0.811054,0][-0.00195209,-2.22919,1.97001][-1.69732e-007,-0.469485,-0.882941][0.369096,0.76865,0][-0.00195209,-2.22919,1.97001][-1.69732e-007,-0.469485,-0.882941][0.369096,0.76865,0][-0.00195206,-2.00582,1.60157][-3.29238e-007,-0.726347,-0.687328][0.398628,0.751918,0][0.614491,-2.00582,1.47895][-0.263029,-0.726347,-0.635008][0.429145,0.786427,0][0.755489,-2.22919,1.81935][-0.337887,-0.469484,-0.815731][0.951174,0.0607841,0][0.756071,-2.44029,1.82075][-0.871886,-0.0110739,-1.30487][0.967679,0.0607382,0][-0.00195212,-2.44029,1.97153][0.306165,-0.0110746,-1.5392][0.966098,0.120588,0][-0.00195212,-2.44029,1.97153][0.306165,-0.0110746,-1.5392][0.966098,0.120588,0][-0.00195209,-2.22919,1.97001][-1.69732e-007,-0.469485,-0.882941][0.949594,0.120588,0][0.755489,-2.22919,1.81935][-0.337887,-0.469484,-0.815731][0.951174,0.0607841,0][0.756071,-2.44029,1.82075][-0.871886,-0.0110739,-1.30487][0.282162,0.134144,0][0.889839,-2.44029,2.1437][0.87174,0.0130231,1.30465][0.307435,0.123583,0][-0.00195211,-2.44029,2.32109][-0.306114,0.0130237,1.53894][0.321316,0.193994,0][-0.00195211,-2.44029,2.32109][-0.306114,0.0130237,1.53894][0.321316,0.193994,0][-0.00195212,-2.44029,1.97153][0.306165,-0.0110746,-1.5392][0.293962,0.193994,0][0.756071,-2.44029,1.82075][-0.871886,-0.0110739,-1.30487][0.282162,0.134144,0][1.39869,-2.44029,-1.40992][-1.30487,-0.0110723,0.871886][0.564847,0.0295116,0][1.39762,-2.22919,-1.40885][-1.92065,-1.20466,1.28334][0.548185,0.0299293,0][1.64586,-2.44029,-1.65709][1.30465,0.0130245,-0.87174][0.564457,0.01,0][1.6446,-2.22919,-1.65583][1.84747,1.2493,-1.23444][0.547795,0.0104326,0][1.64586,-2.44029,-1.65709][1.30465,0.0130245,-0.87174][0.564457,0.01,0][1.39762,-2.22919,-1.40885][-1.92065,-1.20466,1.28334][0.548185,0.0299293,0][1.39762,-2.22919,-1.40885][-1.92065,-1.20466,1.28334][0.548185,0.0299293,0][1.13709,-2.00582,-1.14832][-1.80066,-2.24461,1.20316][0.530963,0.0508478,0][1.6446,-2.22919,-1.65583][1.84747,1.2493,-1.23444][0.547795,0.0104326,0][1.13709,-2.00582,-1.14832][-1.80066,-2.24461,1.20316][0.530963,0.0508478,0][0.965215,-1.61625,-0.976444][-2.45092,-1.11858,1.63765][0.500481,0.0650296,0][1.33809,-2.00582,-1.34932][1.65677,2.395,-1.10702][0.530646,0.0349804,0][1.33809,-2.00582,-1.34932][1.65677,2.395,-1.10702][0.530646,0.0349804,0][1.6446,-2.22919,-1.65583][1.84747,1.2493,-1.23444][0.547795,0.0104326,0][1.13709,-2.00582,-1.14832][-1.80066,-2.24461,1.20316][0.530963,0.0508478,0][1.13589,-1.61625,-1.14712][2.39105,1.27084,-1.59765][0.500212,0.0515565,0][1.33809,-2.00582,-1.34932][1.65677,2.395,-1.10702][0.530646,0.0349804,0][0.965215,-1.61625,-0.976444][-2.45092,-1.11858,1.63765][0.500481,0.0650296,0][0.965215,-1.61625,-0.976444][-2.45092,-1.11858,1.63765][0.500481,0.0650296,0][0.916408,-1.19582,-0.927637][-2.60008,-0.401393,1.73732][0.46737,0.0695455,0][1.13589,-1.61625,-1.14712][2.39105,1.27084,-1.59765][0.500212,0.0515565,0][1.07847,-1.19582,-1.0897][2.59324,0.471129,-1.73275][0.467114,0.0567523,0][1.13589,-1.61625,-1.14712][2.39105,1.27084,-1.59765][0.500212,0.0515565,0][0.916408,-1.19582,-0.927637][-2.60008,-0.401393,1.73732][0.46737,0.0695455,0][0.916408,-1.19582,-0.927637][-2.60008,-0.401393,1.73732][0.46737,0.0695455,0][0.880332,-0.668635,-0.891561][-3.35453,-0.925522,2.91792][0.425811,0.0732248,0][1.07847,-1.19582,-1.0897][2.59324,0.471129,-1.73275][0.467114,0.0567523,0][1.03603,-0.668635,-1.04726][3.31913,1.07287,-2.88237][0.425566,0.0609341,0][1.07847,-1.19582,-1.0897][2.59324,0.471129,-1.73275][0.467114,0.0567523,0][0.880332,-0.668635,-0.891561][-3.35453,-0.925522,2.91792][0.425811,0.0732248,0][-1.64977,-2.44029,-1.65709][-1.30465,0.0130248,-0.87174][0.0685077,0.140109,0][-1.64851,-2.22919,-1.65583][-1.84747,1.2493,-1.23444][0.0768991,0.15451,0][-1.4026,-2.44029,-1.40992][1.30487,-0.0110734,0.871887][0.0447798,0.154205,0][-1.64851,-2.22919,-1.65583][-1.84747,1.2493,-1.23444][0.363323,0.268012,0][-1.342,-2.00582,-1.34932][-1.65677,2.395,-1.10702][0.381378,0.291902,0][-1.40152,-2.22919,-1.40885][1.92065,-1.20466,1.28334][0.363662,0.287509,0][-1.40152,-2.22919,-1.40885][1.92065,-1.20466,1.28334][0.363662,0.287509,0][-1.4026,-2.44029,-1.40992][1.30487,-0.0110734,0.871887][0.346996,0.287714,0][-1.64851,-2.22919,-1.65583][-1.84747,1.2493,-1.23444][0.363323,0.268012,0][-1.14099,-2.00582,-1.14832][1.80066,-2.24461,1.20316][0.381654,0.30777,0][-1.40152,-2.22919,-1.40885][1.92065,-1.20466,1.28334][0.363662,0.287509,0][-1.342,-2.00582,-1.34932][-1.65677,2.395,-1.10702][0.381378,0.291902,0][-1.342,-2.00582,-1.34932][-1.65677,2.395,-1.10702][0.381378,0.291902,0][-1.1398,-1.61625,-1.14712][-2.39105,1.27084,-1.59765][0.41241,0.307329,0][-1.14099,-2.00582,-1.14832][1.80066,-2.24461,1.20316][0.381654,0.30777,0][-0.969119,-1.61625,-0.976444][2.45092,-1.11858,1.63765][0.412644,0.320803,0][-1.14099,-2.00582,-1.14832][1.80066,-2.24461,1.20316][0.381654,0.30777,0][-1.1398,-1.61625,-1.14712][-2.39105,1.27084,-1.59765][0.41241,0.307329,0][-1.1398,-1.61625,-1.14712][-2.39105,1.27084,-1.59765][0.41241,0.307329,0][-1.08238,-1.19582,-1.0897][-2.59324,0.471129,-1.73275][0.445678,0.311285,0][-0.969119,-1.61625,-0.976444][2.45092,-1.11858,1.63765][0.412644,0.320803,0][-0.920312,-1.19582,-0.927637][2.60008,-0.401394,1.73732][0.0486666,0.266185,0][-0.969119,-1.61625,-0.976444][2.45092,-1.11858,1.63765][0.0363977,0.234862,0][-1.08238,-1.19582,-1.0897][-2.59324,0.471129,-1.73275][0.0642242,0.256942,0][-1.08238,-1.19582,-1.0897][-2.59324,0.471129,-1.73275][0.0642242,0.256942,0][-1.03993,-0.668634,-1.04726][-3.31913,1.07287,-2.88238][0.0814091,0.295148,0][-0.920312,-1.19582,-0.927637][2.60008,-0.401394,1.73732][0.0486666,0.266185,0][-0.884236,-0.668634,-0.891561][3.35452,-0.925524,2.91792][0.487568,0.326203,0][-0.920312,-1.19582,-0.927637][2.60008,-0.401394,1.73732][0.445901,0.324079,0][-1.03993,-0.668634,-1.04726][-3.31913,1.07287,-2.88238][0.487354,0.313912,0][0.880332,-0.668635,-0.891561][-3.35453,-0.925522,2.91792][0.450411,0.643444,0][0.475537,-0.668635,-1.16204][-1.10336,-0.775317,2.66375][0.442718,0.680998,0][1.03603,-0.668635,-1.04726][3.31913,1.07287,-2.88237][0.434516,0.636593,0][0.475537,-0.668635,-1.16204][-1.10336,-0.775317,2.66375][0.442718,0.680998,0][-0.00195188,-0.668635,-1.25701][-3.7196e-007,-0.775318,2.88322][0.449909,0.718745,0][0.559799,-0.668635,-1.36546][0.814142,1.02658,-3.1751][0.425466,0.680774,0][0.559799,-0.668635,-1.36546][0.814142,1.02658,-3.1751][0.425466,0.680774,0][1.03603,-0.668635,-1.04726][3.31913,1.07287,-2.88237][0.434516,0.636593,0][0.475537,-0.668635,-1.16204][-1.10336,-0.775317,2.66375][0.442718,0.680998,0][-1.03993,-0.668634,-1.04726][-3.31913,1.07287,-2.88238][0.611829,0.102662,0][-0.563703,-0.668635,-1.36546][-1.18984,0.896002,-3.1802][0.619141,0.147164,0][-0.884236,-0.668634,-0.891561][3.35452,-0.925524,2.91792][0.595678,0.108884,0][-0.47944,-0.668635,-1.16204][1.10336,-0.775318,2.66375][0.601893,0.146711,0][-0.884236,-0.668634,-0.891561][3.35452,-0.925524,2.91792][0.595678,0.108884,0][-0.563703,-0.668635,-1.36546][-1.18984,0.896002,-3.1802][0.619141,0.147164,0][-0.00195188,-0.668635,-1.25701][-3.7196e-007,-0.775318,2.88322][0.593228,0.184147,0][-0.47944,-0.668635,-1.16204][1.10336,-0.775318,2.66375][0.601893,0.146711,0][-0.563703,-0.668635,-1.36546][-1.18984,0.896002,-3.1802][0.619141,0.147164,0][0.559799,-0.668635,-1.36546][0.814142,1.02658,-3.1751][0.658848,0.227004,0][-0.00195188,-0.668635,-1.25701][-3.7196e-007,-0.775318,2.88322][0.65104,0.182512,0][-0.00195193,-1.03843,-1.4772][0.030098,0.0603636,-0.997723][0.684922,0.179912,0][-0.563703,-0.668635,-1.36546][-1.18984,0.896002,-3.1802][0.652153,0.13975,0][-0.00195193,-1.03843,-1.4772][0.030098,0.0603636,-0.997723][0.684922,0.179912,0][-0.00195188,-0.668635,-1.25701][-3.7196e-007,-0.775318,2.88322][0.65104,0.182512,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/BlockheadBaseballCap.mesh b/shareddata/charcustom/hats/fonts/BlockheadBaseballCap.mesh deleted file mode 100644 index 4391c8d..0000000 --- a/shareddata/charcustom/hats/fonts/BlockheadBaseballCap.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -348 -[-1.43086,-0.756994,1.43494][0,-1.5708,0][0.791725,0.973028,0][-1.43086,-0.756994,0.862595][0,-3.14159,0][0.791725,0.934894,0][-1.09939,-0.756994,1.10347][0,-1,0][0.81381,0.950943,0][-1.09939,-0.756994,1.10347][0,-1,0][0.81381,0.950943,0][-0.858513,-0.756994,1.43494][0,-3.14159,0][0.829859,0.973028,0][-1.43086,-0.756994,1.43494][0,-1.5708,0][0.791725,0.973028,0][-0.858513,-0.756994,1.43494][0,-3.14159,0][0.829859,0.973028,0][-1.09939,-0.756994,1.10347][0,-1,0][0.81381,0.950943,0][-0.366464,-0.756994,1.10347][0,-1,0][0.862643,0.950944,0][-0.366464,-0.756994,1.10347][0,-1,0][0.862643,0.950944,0][-0.286171,-0.756994,1.43494][0,-3.14159,0][0.867993,0.973029,0][-0.858513,-0.756994,1.43494][0,-3.14159,0][0.829859,0.973028,0][-0.286171,-0.756994,1.43494][0,-3.14159,0][0.867993,0.973029,0][-0.366464,-0.756994,1.10347][0,-1,0][0.862643,0.950944,0][0.366464,-0.756994,1.10347][0,-1,0][0.911476,0.950944,0][0.366464,-0.756994,1.10347][0,-1,0][0.911476,0.950944,0][0.286171,-0.756994,1.43494][0,-3.14159,0][0.906126,0.973029,0][-0.286171,-0.756994,1.43494][0,-3.14159,0][0.867993,0.973029,0][0.286171,-0.756994,1.43494][0,-3.14159,0][0.906126,0.973029,0][0.366464,-0.756994,1.10347][0,-1,0][0.911476,0.950944,0][1.09939,-0.756994,1.10347][0,-1,0][0.96031,0.950945,0][1.09939,-0.756994,1.10347][0,-1,0][0.96031,0.950945,0][0.858513,-0.756994,1.43494][0,-3.14159,0][0.94426,0.973029,0][0.286171,-0.756994,1.43494][0,-3.14159,0][0.906126,0.973029,0][0.858513,-0.756994,1.43494][0,-3.14159,0][0.94426,0.973029,0][1.09939,-0.756994,1.10347][0,-1,0][0.96031,0.950945,0][1.43086,-0.756994,0.862595][0,-3.14159,0][0.982395,0.934896,0][1.43086,-0.756994,0.862595][0,-3.14159,0][0.982395,0.934896,0][1.43086,-0.756994,1.43494][0,-1.5708,0][0.982394,0.97303,0][0.858513,-0.756994,1.43494][0,-3.14159,0][0.94426,0.973029,0][-1.43086,-0.756994,0.862595][0,-3.14159,0][0.791725,0.934894,0][-1.43086,-0.756994,0.290252][0,-3.14159,0][0.791726,0.89676,0][-1.09939,-0.756994,0.370545][0,-1,0][0.81381,0.90211,0][-1.09939,-0.756994,0.370545][0,-1,0][0.81381,0.90211,0][-1.09939,-0.756994,1.10347][0,-1,0][0.81381,0.950943,0][-1.43086,-0.756994,0.862595][0,-3.14159,0][0.791725,0.934894,0][-0.353435,0.779069,0.357517][0,-1,0][0.863512,0.901242,0][-0.353435,0.779069,0.121893][0,-1,0][0.863512,0.885543,0][-0.117812,0.779069,0.121893][0,-1,0][0.879211,0.885543,0][-0.117812,0.779069,0.121893][0,-1,0][0.879211,0.885543,0][-0.117812,0.779069,0.357517][0,-1,0][0.879211,0.901242,0][-0.353435,0.779069,0.357517][0,-1,0][0.863512,0.901242,0][-0.117812,0.779069,0.357517][0,-1,0][0.879211,0.901242,0][-0.117812,0.779069,0.121893][0,-1,0][0.879211,0.885543,0][0.117812,0.779069,0.121893][0,-1,0][0.89491,0.885544,0][0.117812,0.779069,0.121893][0,-1,0][0.89491,0.885544,0][0.117812,0.779069,0.357517][0,-1,0][0.89491,0.901243,0][-0.117812,0.779069,0.357517][0,-1,0][0.879211,0.901242,0][0.117812,0.779069,0.357517][0,-1,0][0.89491,0.901243,0][0.117812,0.779069,0.121893][0,-1,0][0.89491,0.885544,0][0.353435,0.779069,0.121893][0,-1,0][0.910609,0.885544,0][0.353435,0.779069,0.121893][0,-1,0][0.910609,0.885544,0][0.353435,0.779069,0.357517][0,-1,0][0.910609,0.901243,0][0.117812,0.779069,0.357517][0,-1,0][0.89491,0.901243,0][1.09939,-0.756994,1.10347][0,-1,0][0.96031,0.950945,0][1.09939,-0.756994,0.370545][0,-1,0][0.96031,0.902111,0][1.43086,-0.756994,0.290252][0,-3.14159,0][0.982395,0.896762,0][1.43086,-0.756994,0.290252][0,-3.14159,0][0.982395,0.896762,0][1.43086,-0.756994,0.862595][0,-3.14159,0][0.982395,0.934896,0][1.09939,-0.756994,1.10347][0,-1,0][0.96031,0.950945,0][-1.43086,-0.756994,0.290252][0,-3.14159,0][0.791726,0.89676,0][-1.43086,-0.756994,-0.28209][0,-3.14159,0][0.791726,0.858626,0][-1.09939,-0.756994,-0.362383][0,-1,0][0.813811,0.853277,0][-1.09939,-0.756994,-0.362383][0,-1,0][0.813811,0.853277,0][-1.09939,-0.756994,0.370545][0,-1,0][0.81381,0.90211,0][-1.43086,-0.756994,0.290252][0,-3.14159,0][0.791726,0.89676,0][-0.353435,0.779069,0.121893][0,-1,0][0.863512,0.885543,0][-0.353435,0.779069,-0.113731][0,-1,0][0.863512,0.869844,0][-0.117812,0.779069,-0.113731][0,-1,0][0.879211,0.869844,0][-0.117812,0.779069,-0.113731][0,-1,0][0.879211,0.869844,0][-0.117812,0.779069,0.121893][0,-1,0][0.879211,0.885543,0][-0.353435,0.779069,0.121893][0,-1,0][0.863512,0.885543,0][-0.117812,0.779069,0.121893][0,-1,0][0.879211,0.885543,0][-0.117812,0.779069,-0.113731][0,-1,0][0.879211,0.869844,0][0.117812,0.779069,-0.113731][0,-1,0][0.89491,0.869845,0][0.117812,0.779069,-0.113731][0,-1,0][0.89491,0.869845,0][0.117812,0.779069,0.121893][0,-1,0][0.89491,0.885544,0][-0.117812,0.779069,0.121893][0,-1,0][0.879211,0.885543,0][0.117812,0.779069,0.121893][0,-1,0][0.89491,0.885544,0][0.117812,0.779069,-0.113731][0,-1,0][0.89491,0.869845,0][0.353435,0.779069,-0.113731][0,-1,0][0.910609,0.869845,0][0.353435,0.779069,-0.113731][0,-1,0][0.910609,0.869845,0][0.353435,0.779069,0.121893][0,-1,0][0.910609,0.885544,0][0.117812,0.779069,0.121893][0,-1,0][0.89491,0.885544,0][1.09939,-0.756994,0.370545][0,-1,0][0.96031,0.902111,0][1.09939,-0.756994,-0.362383][0,-1,0][0.960311,0.853278,0][1.43086,-0.756994,-0.28209][0,-3.14159,0][0.982395,0.858628,0][1.43086,-0.756994,-0.28209][0,-3.14159,0][0.982395,0.858628,0][1.43086,-0.756994,0.290252][0,-3.14159,0][0.982395,0.896762,0][1.09939,-0.756994,0.370545][0,-1,0][0.96031,0.902111,0][-1.43086,-0.756994,-0.28209][0,-3.14159,0][0.791726,0.858626,0][-1.43086,-0.756994,-0.854432][0.0622812,-2.95026,0.115131][0.791726,0.820492,0][-1.09939,-0.756994,-1.09531][0.136901,-0.970477,0.198577][0.813811,0.804443,0][-1.09939,-0.756994,-1.09531][0.136901,-0.970477,0.198577][0.813811,0.804443,0][-1.09939,-0.756994,-0.362383][0,-1,0][0.813811,0.853277,0][-1.43086,-0.756994,-0.28209][0,-3.14159,0][0.791726,0.858626,0][-0.353435,0.779069,-0.113731][0,-1,0][0.863512,0.869844,0][-0.353435,0.779069,-0.349354][0,-1,0][0.863512,0.854145,0][-0.117812,0.779069,-0.349355][0,-1,0][0.879211,0.854145,0][-0.117812,0.779069,-0.349355][0,-1,0][0.879211,0.854145,0][-0.117812,0.779069,-0.113731][0,-1,0][0.879211,0.869844,0][-0.353435,0.779069,-0.113731][0,-1,0][0.863512,0.869844,0][-0.117812,0.779069,-0.113731][0,-1,0][0.879211,0.869844,0][-0.117812,0.779069,-0.349355][0,-1,0][0.879211,0.854145,0][0.117812,0.779069,-0.349354][0,-1,0][0.89491,0.854145,0][0.117812,0.779069,-0.349354][0,-1,0][0.89491,0.854145,0][0.117812,0.779069,-0.113731][0,-1,0][0.89491,0.869845,0][-0.117812,0.779069,-0.113731][0,-1,0][0.879211,0.869844,0][0.117812,0.779069,-0.113731][0,-1,0][0.89491,0.869845,0][0.117812,0.779069,-0.349354][0,-1,0][0.89491,0.854145,0][0.353435,0.779069,-0.349354][0,-1,0][0.910609,0.854146,0][0.353435,0.779069,-0.349354][0,-1,0][0.910609,0.854146,0][0.353435,0.779069,-0.113731][0,-1,0][0.910609,0.869845,0][0.117812,0.779069,-0.113731][0,-1,0][0.89491,0.869845,0][1.09939,-0.756994,-0.362383][0,-1,0][0.960311,0.853278,0][1.09939,-0.756994,-1.09531][-0.0490963,-0.992876,0.108567][0.960311,0.804445,0][1.43086,-0.756994,-0.854432][-0.0732326,-2.95126,0.100774][0.982396,0.820494,0][1.43086,-0.756994,-0.854432][-0.0732326,-2.95126,0.100774][0.982396,0.820494,0][1.43086,-0.756994,-0.28209][0,-3.14159,0][0.982395,0.858628,0][1.09939,-0.756994,-0.362383][0,-1,0][0.960311,0.853278,0][-1.43086,-0.756994,-0.854432][0.0622812,-2.95026,0.115131][0.791726,0.820492,0][-1.32266,-0.823152,-1.42677][0.101759,-1.73256,0.219506][0.798936,0.782358,0][-0.801566,-0.792546,-1.42677][0.0579155,-0.986977,0.150077][0.833655,0.782359,0][-0.801566,-0.792546,-1.42677][0.0579155,-0.986977,0.150077][0.833655,0.782359,0][-1.09939,-0.756994,-1.09531][0.136901,-0.970477,0.198577][0.813811,0.804443,0][-1.43086,-0.756994,-0.854432][0.0622812,-2.95026,0.115131][0.791726,0.820492,0][-1.09939,-0.756994,-1.09531][0.136901,-0.970477,0.198577][0.813811,0.804443,0][-0.801566,-0.792546,-1.42677][0.0579155,-0.986977,0.150077][0.833655,0.782359,0][-0.268523,-0.765198,-1.42677][0.0061916,-0.99917,0.0402509][0.86917,0.782359,0][-0.268523,-0.765198,-1.42677][0.0061916,-0.99917,0.0402509][0.86917,0.782359,0][-0.366464,-0.756994,-1.09531][0,-0.999694,0.0247433][0.862645,0.804444,0][-1.09939,-0.756994,-1.09531][0.136901,-0.970477,0.198577][0.813811,0.804443,0][-0.366464,-0.756994,-1.09531][0,-0.999694,0.0247433][0.862645,0.804444,0][-0.268523,-0.765198,-1.42677][0.0061916,-0.99917,0.0402509][0.86917,0.782359,0][0.268523,-0.765198,-1.42677][-0.0209412,-0.999302,0.0309216][0.904953,0.782359,0][0.268523,-0.765198,-1.42677][-0.0209412,-0.999302,0.0309216][0.904953,0.782359,0][0.366464,-0.756994,-1.09531][-0.0196618,-0.998673,0.0476021][0.911478,0.804444,0][-0.366464,-0.756994,-1.09531][0,-0.999694,0.0247433][0.862645,0.804444,0][0.366464,-0.756994,-1.09531][-0.0196618,-0.998673,0.0476021][0.911478,0.804444,0][0.268523,-0.765198,-1.42677][-0.0209412,-0.999302,0.0309216][0.904953,0.782359,0][0.801566,-0.792546,-1.42677][-0.0262455,-0.993937,0.106768][0.940468,0.78236,0][0.801566,-0.792546,-1.42677][-0.0262455,-0.993937,0.106768][0.940468,0.78236,0][1.09939,-0.756994,-1.09531][-0.0490963,-0.992876,0.108567][0.960311,0.804445,0][0.366464,-0.756994,-1.09531][-0.0196618,-0.998673,0.0476021][0.911478,0.804444,0][1.09939,-0.756994,-1.09531][-0.0490963,-0.992876,0.108567][0.960311,0.804445,0][0.801566,-0.792546,-1.42677][-0.0262455,-0.993937,0.106768][0.940468,0.78236,0][1.32266,-0.823152,-1.42677][-0.130841,-1.72571,0.256307][0.975187,0.78236,0][1.32266,-0.823152,-1.42677][-0.130841,-1.72571,0.256307][0.975187,0.78236,0][1.43086,-0.756994,-0.854432][-0.0732326,-2.95126,0.100774][0.982396,0.820494,0][1.09939,-0.756994,-1.09531][-0.0490963,-0.992876,0.108567][0.960311,0.804445,0][-0.156774,0.913161,0.160855][0,1.5708,0][0.418397,0.680504,0][-0.0940645,0.913161,0.160855][0,3.14159,0][0.403466,0.680504,0][-0.0940645,0.913161,0.0981455][-0.116323,0.986376,0.116323][0.403466,0.665573,0][-0.0940645,0.913161,0.0981455][-0.116323,0.986376,0.116323][0.403466,0.665573,0][-0.156774,0.913161,0.0981455][0,3.14159,0][0.418397,0.665573,0][-0.156774,0.913161,0.160855][0,1.5708,0][0.418397,0.680504,0][-0.0940645,0.913161,0.160855][0,3.14159,0][0.403466,0.680504,0][-0.0313548,0.913161,0.160855][0,3.14159,0][0.388535,0.680504,0][-0.0313548,0.913161,0.0981455][0,0.916871,0.399184][0.388535,0.665573,0][-0.0313548,0.913161,0.0981455][0,0.916871,0.399184][0.388535,0.665573,0][-0.0940645,0.913161,0.0981455][-0.116323,0.986376,0.116323][0.403466,0.665573,0][-0.0940645,0.913161,0.160855][0,3.14159,0][0.403466,0.680504,0][-0.0313548,0.913161,0.160855][0,3.14159,0][0.388535,0.680504,0][0.0313548,0.913161,0.160855][0,3.14159,0][0.373604,0.680504,0][0.0313548,0.913161,0.0981455][0.10702,0.947263,0.30206][0.373604,0.665573,0][0.0313548,0.913161,0.0981455][0.10702,0.947263,0.30206][0.373604,0.665573,0][-0.0313548,0.913161,0.0981455][0,0.916871,0.399184][0.388535,0.665573,0][-0.0313548,0.913161,0.160855][0,3.14159,0][0.388535,0.680504,0][0.0313548,0.913161,0.160855][0,3.14159,0][0.373604,0.680504,0][0.0940645,0.913161,0.160855][0,3.14159,0][0.358673,0.680504,0][0.0940645,0.913161,0.0981455][0,1,0][0.358673,0.665573,0][0.0940645,0.913161,0.0981455][0,1,0][0.358673,0.665573,0][0.0313548,0.913161,0.0981455][0.10702,0.947263,0.30206][0.373604,0.665573,0][0.0313548,0.913161,0.160855][0,3.14159,0][0.373604,0.680504,0][0.0940645,0.913161,0.160855][0,3.14159,0][0.358673,0.680504,0][0.156774,0.913161,0.160855][0,1.5708,0][0.343742,0.680504,0][0.156774,0.913161,0.0981455][0,3.14159,0][0.343742,0.665573,0][0.156774,0.913161,0.0981455][0,3.14159,0][0.343742,0.665573,0][0.0940645,0.913161,0.0981455][0,1,0][0.358673,0.665573,0][0.0940645,0.913161,0.160855][0,3.14159,0][0.358673,0.680504,0][-0.156774,0.913161,0.0981455][0,3.14159,0][0.418397,0.665573,0][-0.0940645,0.913161,0.0981455][-0.116323,0.986376,0.116323][0.403466,0.665573,0][-0.0940645,0.913161,0.0354358][-0.399184,0.916871,0][0.403466,0.650642,0][-0.0940645,0.913161,0.0354358][-0.399184,0.916871,0][0.403466,0.650642,0][-0.156774,0.913161,0.0354358][0,3.14159,0][0.418397,0.650642,0][-0.156774,0.913161,0.0981455][0,3.14159,0][0.418397,0.665573,0][-0.0940645,0.913161,0.0981455][-0.116323,0.986376,0.116323][0.403466,0.665573,0][-0.0313548,0.913161,0.0981455][0,0.916871,0.399184][0.388535,0.665573,0][-0.0313548,0.980537,0.0354358][-0.314229,0.895835,0.314229][0.388535,0.650642,0][-0.0313548,0.980537,0.0354358][-0.314229,0.895835,0.314229][0.388535,0.650642,0][-0.0940645,0.913161,0.0354358][-0.399184,0.916871,0][0.403466,0.650642,0][-0.0940645,0.913161,0.0981455][-0.116323,0.986376,0.116323][0.403466,0.665573,0][-0.0313548,0.913161,0.0981455][0,0.916871,0.399184][0.388535,0.665573,0][0.0313548,0.913161,0.0981455][0.10702,0.947263,0.30206][0.373604,0.665573,0][0.0313548,0.980537,0.0354358][0.353997,0.865663,0.353997][0.373604,0.650642,0][0.0313548,0.980537,0.0354358][0.353997,0.865663,0.353997][0.373604,0.650642,0][-0.0313548,0.980537,0.0354358][-0.314229,0.895835,0.314229][0.388535,0.650642,0][-0.0313548,0.913161,0.0981455][0,0.916871,0.399184][0.388535,0.665573,0][0.0313548,0.913161,0.0981455][0.10702,0.947263,0.30206][0.373604,0.665573,0][0.0940645,0.913161,0.0981455][0,1,0][0.358673,0.665573,0][0.0940645,0.913161,0.0354358][0.30206,0.947263,0.10702][0.358673,0.650642,0][0.0940645,0.913161,0.0354358][0.30206,0.947263,0.10702][0.358673,0.650642,0][0.0313548,0.980537,0.0354358][0.353997,0.865663,0.353997][0.373604,0.650642,0][0.0313548,0.913161,0.0981455][0.10702,0.947263,0.30206][0.373604,0.665573,0][0.0940645,0.913161,0.0981455][0,1,0][0.358673,0.665573,0][0.156774,0.913161,0.0981455][0,3.14159,0][0.343742,0.665573,0][0.156774,0.913161,0.0354358][0,3.14159,0][0.343742,0.650642,0][0.156774,0.913161,0.0354358][0,3.14159,0][0.343742,0.650642,0][0.0940645,0.913161,0.0354358][0.30206,0.947263,0.10702][0.358673,0.650642,0][0.0940645,0.913161,0.0981455][0,1,0][0.358673,0.665573,0][-0.156774,0.913161,0.0354358][0,3.14159,0][0.418397,0.650642,0][-0.0940645,0.913161,0.0354358][-0.399184,0.916871,0][0.403466,0.650642,0][-0.0940645,0.913161,-0.0272738][-0.30206,0.947263,-0.10702][0.403466,0.635711,0][-0.0940645,0.913161,-0.0272738][-0.30206,0.947263,-0.10702][0.403466,0.635711,0][-0.156774,0.913161,-0.0272738][0,3.14159,0][0.418397,0.635711,0][-0.156774,0.913161,0.0354358][0,3.14159,0][0.418397,0.650642,0][-0.0940645,0.913161,0.0354358][-0.399184,0.916871,0][0.403466,0.650642,0][-0.0313548,0.980537,0.0354358][-0.314229,0.895835,0.314229][0.388535,0.650642,0][-0.0313548,0.980537,-0.0272738][-0.353997,0.865663,-0.353997][0.388535,0.635711,0][-0.0313548,0.980537,-0.0272738][-0.353997,0.865663,-0.353997][0.388535,0.635711,0][-0.0940645,0.913161,-0.0272738][-0.30206,0.947263,-0.10702][0.403466,0.635711,0][-0.0940645,0.913161,0.0354358][-0.399184,0.916871,0][0.403466,0.650642,0][-0.0313548,0.980537,0.0354358][-0.314229,0.895835,0.314229][0.388535,0.650642,0][0.0313548,0.980537,0.0354358][0.353997,0.865663,0.353997][0.373604,0.650642,0][0.0313548,0.980537,-0.0272738][0.314229,0.895835,-0.314229][0.373604,0.635711,0][0.0313548,0.980537,-0.0272738][0.314229,0.895835,-0.314229][0.373604,0.635711,0][-0.0313548,0.980537,-0.0272738][-0.353997,0.865663,-0.353997][0.388535,0.635711,0][-0.0313548,0.980537,0.0354358][-0.314229,0.895835,0.314229][0.388535,0.650642,0][0.0313548,0.980537,0.0354358][0.353997,0.865663,0.353997][0.373604,0.650642,0][0.0940645,0.913161,0.0354358][0.30206,0.947263,0.10702][0.358673,0.650642,0][0.0940645,0.913161,-0.0272738][0.399184,0.916871,0][0.358673,0.635711,0][0.0940645,0.913161,-0.0272738][0.399184,0.916871,0][0.358673,0.635711,0][0.0313548,0.980537,-0.0272738][0.314229,0.895835,-0.314229][0.373604,0.635711,0][0.0313548,0.980537,0.0354358][0.353997,0.865663,0.353997][0.373604,0.650642,0][0.0940645,0.913161,0.0354358][0.30206,0.947263,0.10702][0.358673,0.650642,0][0.156774,0.913161,0.0354358][0,3.14159,0][0.343742,0.650642,0][0.156774,0.913161,-0.0272738][0,3.14159,0][0.343742,0.63571,0][0.156774,0.913161,-0.0272738][0,3.14159,0][0.343742,0.63571,0][0.0940645,0.913161,-0.0272738][0.399184,0.916871,0][0.358673,0.635711,0][0.0940645,0.913161,0.0354358][0.30206,0.947263,0.10702][0.358673,0.650642,0][-0.156774,0.913161,-0.0272738][0,3.14159,0][0.418397,0.635711,0][-0.0940645,0.913161,-0.0272738][-0.30206,0.947263,-0.10702][0.403466,0.635711,0][-0.0940645,0.913161,-0.0899834][0,1,0][0.403467,0.62078,0][-0.0940645,0.913161,-0.0899834][0,1,0][0.403467,0.62078,0][-0.156774,0.913161,-0.0899834][0,3.14159,0][0.418398,0.62078,0][-0.156774,0.913161,-0.0272738][0,3.14159,0][0.418397,0.635711,0][-0.0940645,0.913161,-0.0272738][-0.30206,0.947263,-0.10702][0.403466,0.635711,0][-0.0313548,0.980537,-0.0272738][-0.353997,0.865663,-0.353997][0.388535,0.635711,0][-0.0313548,0.913161,-0.0899834][-0.10702,0.947263,-0.30206][0.388535,0.62078,0][-0.0313548,0.913161,-0.0899834][-0.10702,0.947263,-0.30206][0.388535,0.62078,0][-0.0940645,0.913161,-0.0899834][0,1,0][0.403467,0.62078,0][-0.0940645,0.913161,-0.0272738][-0.30206,0.947263,-0.10702][0.403466,0.635711,0][-0.0313548,0.980537,-0.0272738][-0.353997,0.865663,-0.353997][0.388535,0.635711,0][0.0313548,0.980537,-0.0272738][0.314229,0.895835,-0.314229][0.373604,0.635711,0][0.0313548,0.913161,-0.0899834][0,0.916871,-0.399184][0.373604,0.62078,0][0.0313548,0.913161,-0.0899834][0,0.916871,-0.399184][0.373604,0.62078,0][-0.0313548,0.913161,-0.0899834][-0.10702,0.947263,-0.30206][0.388535,0.62078,0][-0.0313548,0.980537,-0.0272738][-0.353997,0.865663,-0.353997][0.388535,0.635711,0][0.0313548,0.980537,-0.0272738][0.314229,0.895835,-0.314229][0.373604,0.635711,0][0.0940645,0.913161,-0.0272738][0.399184,0.916871,0][0.358673,0.635711,0][0.0940645,0.913161,-0.0899834][0.116323,0.986376,-0.116323][0.358673,0.62078,0][0.0940645,0.913161,-0.0899834][0.116323,0.986376,-0.116323][0.358673,0.62078,0][0.0313548,0.913161,-0.0899834][0,0.916871,-0.399184][0.373604,0.62078,0][0.0313548,0.980537,-0.0272738][0.314229,0.895835,-0.314229][0.373604,0.635711,0][0.0940645,0.913161,-0.0272738][0.399184,0.916871,0][0.358673,0.635711,0][0.156774,0.913161,-0.0272738][0,3.14159,0][0.343742,0.63571,0][0.156774,0.913161,-0.0899834][0,3.14159,0][0.343742,0.620779,0][0.156774,0.913161,-0.0899834][0,3.14159,0][0.343742,0.620779,0][0.0940645,0.913161,-0.0899834][0.116323,0.986376,-0.116323][0.358673,0.62078,0][0.0940645,0.913161,-0.0272738][0.399184,0.916871,0][0.358673,0.635711,0][-0.156774,0.913161,-0.0899834][0,3.14159,0][0.418398,0.62078,0][-0.0940645,0.913161,-0.0899834][0,1,0][0.403467,0.62078,0][-0.0940645,0.913161,-0.152693][0,3.14159,0][0.403467,0.605848,0][-0.0940645,0.913161,-0.152693][0,3.14159,0][0.403467,0.605848,0][-0.156774,0.913161,-0.152693][0,1.5708,0][0.418398,0.605849,0][-0.156774,0.913161,-0.0899834][0,3.14159,0][0.418398,0.62078,0][-0.0940645,0.913161,-0.0899834][0,1,0][0.403467,0.62078,0][-0.0313548,0.913161,-0.0899834][-0.10702,0.947263,-0.30206][0.388535,0.62078,0][-0.0313548,0.913161,-0.152693][0,3.14159,0][0.388535,0.605848,0][-0.0313548,0.913161,-0.152693][0,3.14159,0][0.388535,0.605848,0][-0.0940645,0.913161,-0.152693][0,3.14159,0][0.403467,0.605848,0][-0.0940645,0.913161,-0.0899834][0,1,0][0.403467,0.62078,0][-0.0313548,0.913161,-0.0899834][-0.10702,0.947263,-0.30206][0.388535,0.62078,0][0.0313548,0.913161,-0.0899834][0,0.916871,-0.399184][0.373604,0.62078,0][0.0313548,0.913161,-0.152693][0,3.14159,0][0.373604,0.605848,0][0.0313548,0.913161,-0.152693][0,3.14159,0][0.373604,0.605848,0][-0.0313548,0.913161,-0.152693][0,3.14159,0][0.388535,0.605848,0][-0.0313548,0.913161,-0.0899834][-0.10702,0.947263,-0.30206][0.388535,0.62078,0][0.0313548,0.913161,-0.0899834][0,0.916871,-0.399184][0.373604,0.62078,0][0.0940645,0.913161,-0.0899834][0.116323,0.986376,-0.116323][0.358673,0.62078,0][0.0940645,0.913161,-0.152693][0,3.14159,0][0.358673,0.605848,0][0.0940645,0.913161,-0.152693][0,3.14159,0][0.358673,0.605848,0][0.0313548,0.913161,-0.152693][0,3.14159,0][0.373604,0.605848,0][0.0313548,0.913161,-0.0899834][0,0.916871,-0.399184][0.373604,0.62078,0][0.0940645,0.913161,-0.0899834][0.116323,0.986376,-0.116323][0.358673,0.62078,0][0.156774,0.913161,-0.0899834][0,3.14159,0][0.343742,0.620779,0][0.156774,0.913161,-0.152693][0,1.5708,0][0.343742,0.605848,0][0.156774,0.913161,-0.152693][0,1.5708,0][0.343742,0.605848,0][0.0940645,0.913161,-0.152693][0,3.14159,0][0.358673,0.605848,0][0.0940645,0.913161,-0.0899834][0.116323,0.986376,-0.116323][0.358673,0.62078,0][-1.43086,-0.756994,1.43494][0,-1.5708,0][0.791725,0.973028,0][-0.858513,-0.756994,1.43494][0,-3.14159,0][0.829859,0.973028,0][-0.858513,-0.397333,1.43494][0,0.180899,0.983502][0.829859,0.973028,0][-0.858513,-0.397333,1.43494][0,0.180899,0.983502][0.829859,0.973028,0][-1.43086,-0.397333,1.43494][0,0.437292,2.7193][0.791725,0.973028,0][-1.43086,-0.756994,1.43494][0,-1.5708,0][0.791725,0.973028,0][-0.858513,-0.756994,1.43494][0,-3.14159,0][0.829859,0.973028,0][-0.286171,-0.756994,1.43494][0,-3.14159,0][0.867993,0.973029,0][-0.286171,-0.397333,1.43494][0,0.180899,0.983502][0.867993,0.973029,0][-0.286171,-0.397333,1.43494][0,0.180899,0.983502][0.867993,0.973029,0][-0.858513,-0.397333,1.43494][0,0.180899,0.983502][0.829859,0.973028,0][-0.858513,-0.756994,1.43494][0,-3.14159,0][0.829859,0.973028,0][-0.286171,-0.756994,1.43494][0,-3.14159,0][0.867993,0.973029,0][0.286171,-0.756994,1.43494][0,-3.14159,0][0.906126,0.973029,0][0.286171,-0.397333,1.43494][0,0.180899,0.983502][0.906126,0.973029,0][0.286171,-0.397333,1.43494][0,0.180899,0.983502][0.906126,0.973029,0][-0.286171,-0.397333,1.43494][0,0.180899,0.983502][0.867993,0.973029,0][-0.286171,-0.756994,1.43494][0,-3.14159,0][0.867993,0.973029,0][0.286171,-0.756994,1.43494][0,-3.14159,0][0.906126,0.973029,0][0.858513,-0.756994,1.43494][0,-3.14159,0][0.94426,0.973029,0][0.858513,-0.397333,1.43494][0,0.180899,0.983502][0.94426,0.973029,0][0.858513,-0.397333,1.43494][0,0.180899,0.983502][0.94426,0.973029,0][0.286171,-0.397333,1.43494][0,0.180899,0.983502][0.906126,0.973029,0][0.286171,-0.756994,1.43494][0,-3.14159,0][0.906126,0.973029,0][0.858513,-0.756994,1.43494][0,-3.14159,0][0.94426,0.973029,0][1.43086,-0.756994,1.43494][0,-1.5708,0][0.982394,0.97303,0][1.43086,-0.397333,1.43494][0,0.437292,2.7193][0.982394,0.97303,0][1.43086,-0.397333,1.43494][0,0.437292,2.7193][0.982394,0.97303,0][0.858513,-0.397333,1.43494][0,0.180899,0.983502][0.94426,0.973029,0][0.858513,-0.756994,1.43494][0,-3.14159,0][0.94426,0.973029,0][-1.43086,-0.397333,1.43494][0,0.437292,2.7193][0.721753,0.983862,0][-0.858513,-0.397333,1.43494][0,0.180899,0.983502][0.585479,0.983861,0][-0.737254,0.133462,1.23284][0,0.418102,0.9084][0.556607,0.935741,0][-0.737254,0.133462,1.23284][0,0.418102,0.9084][0.556607,0.935741,0][-1.22876,0.133462,1.23284][0,1.21863,2.77492][0.673633,0.935742,0][-1.43086,-0.397333,1.43494][0,0.437292,2.7193][0.721753,0.983862,0][-0.858513,-0.397333,1.43494][0,0.180899,0.983502][0.585479,0.983861,0][-0.286171,-0.397333,1.43494][0,0.180899,0.983502][0.449205,0.983861,0][-0.245751,0.133462,1.23284][0,0.418102,0.9084][0.439582,0.935741,0][-0.245751,0.133462,1.23284][0,0.418102,0.9084][0.439582,0.935741,0][-0.737254,0.133462,1.23284][0,0.418102,0.9084][0.556607,0.935741,0][-0.858513,-0.397333,1.43494][0,0.180899,0.983502][0.585479,0.983861,0][-0.286171,-0.397333,1.43494][0,0.180899,0.983502][0.449205,0.983861,0][0.286171,-0.397333,1.43494][0,0.180899,0.983502][0.312932,0.98386,0][0.245751,0.133462,1.23284][0,0.418102,0.9084][0.322556,0.935741,0][0.245751,0.133462,1.23284][0,0.418102,0.9084][0.322556,0.935741,0][-0.245751,0.133462,1.23284][0,0.418102,0.9084][0.439582,0.935741,0][-0.286171,-0.397333,1.43494][0,0.180899,0.983502][0.449205,0.983861,0][0.286171,-0.397333,1.43494][0,0.180899,0.983502][0.312932,0.98386,0][0.858513,-0.397333,1.43494][0,0.180899,0.983502][0.176658,0.98386,0][0.737254,0.133462,1.23284][0,0.418102,0.9084][0.20553,0.93574,0][0.737254,0.133462,1.23284][0,0.418102,0.9084][0.20553,0.93574,0][0.245751,0.133462,1.23284][0,0.418102,0.9084][0.322556,0.935741,0][0.286171,-0.397333,1.43494][0,0.180899,0.983502][0.312932,0.98386,0][0.858513,-0.397333,1.43494][0,0.180899,0.983502][0.176658,0.98386,0][1.43086,-0.397333,1.43494][0,0.437292,2.7193][0.0403843,0.983859,0][1.22876,0.133462,1.23284][0,1.21863,2.77492][0.0885041,0.93574,0][1.22876,0.133462,1.23284][0,1.21863,2.77492][0.0885041,0.93574,0][0.737254,0.133462,1.23284][0,0.418102,0.9084][0.20553,0.93574,0][0.858513,-0.397333,1.43494][0,0.180899,0.983502][0.176658,0.98386,0][-1.22876,0.133462,1.23284][0,1.21863,2.77492][0.673633,0.935742,0][-0.737254,0.133462,1.23284][0,0.418102,0.9084][0.556607,0.935741,0][-0.603058,0.543933,1.00918][0,0.691828,0.722062][0.524656,0.882489,0][-0.603058,0.543933,1.00918][0,0.691828,0.722062][0.524656,0.882489,0][-1.0051,0.543933,1.00918][0,1.704,2.21579][0.620381,0.882489,0][-1.22876,0.133462,1.23284][0,1.21863,2.77492][0.673633,0.935742,0][-0.737254,0.133462,1.23284][0,0.418102,0.9084][0.556607,0.935741,0][-0.245751,0.133462,1.23284][0,0.418102,0.9084][0.439582,0.935741,0][-0.201019,0.543933,1.00918][0,0.691828,0.722062][0.428931,0.882488,0][-0.201019,0.543933,1.00918][0,0.691828,0.722062][0.428931,0.882488,0][-0.603058,0.543933,1.00918][0,0.691828,0.722062][0.524656,0.882489,0][-0.737254,0.133462,1.23284][0,0.418102,0.9084][0.556607,0.935741,0][-0.245751,0.133462,1.23284][0,0.418102,0.9084][0.439582,0.935741,0][0.245751,0.133462,1.23284][0,0.418102,0.9084][0.322556,0.935741,0][0.201019,0.543933,1.00918][0,0.691828,0.722062][0.333207,0.882488,0][0.201019,0.543933,1.00918][0,0.691828,0.722062][0.333207,0.882488,0][-0.201019,0.543933,1.00918][0,0.691828,0.722062][0.428931,0.882488,0][-0.245751,0.133462,1.23284][0,0.418102,0.9084][0.439582,0.935741,0][0.245751,0.133462,1.23284][0,0.418102,0.9084][0.322556,0.935741,0][0.737254,0.133462,1.23284][0,0.418102,0.9084][0.20553,0.93574,0][0.603058,0.543933,1.00918][0,0.691828,0.722062][0.237482,0.882488,0][0.603058,0.543933,1.00918][0,0.691828,0.722062][0.237482,0.882488,0][0.201019,0.543933,1.00918][0,0.691828,0.722062][0.333207,0.882488,0][0.245751,0.133462,1.23284][0,0.418102,0.9084][0.322556,0.935741,0][0.737254,0.133462,1.23284][0,0.418102,0.9084][0.20553,0.93574,0][1.22876,0.133462,1.23284][0,1.21863,2.77492][0.0885041,0.93574,0][1.0051,0.543933,1.00918][0,1.70399,2.21579][0.141757,0.882487,0][1.0051,0.543933,1.00918][0,1.70399,2.21579][0.141757,0.882487,0][0.603058,0.543933,1.00918][0,0.691828,0.722062][0.237482,0.882488,0][0.737254,0.133462,1.23284][0,0.418102,0.9084][0.20553,0.93574,0][-1.0051,0.543933,1.00918][0,1.704,2.21579][0.620381,0.882489,0][-0.603058,0.543933,1.00918][0,0.691828,0.722062][0.524656,0.882489,0][-0.353435,0.794262,0.59314][0,0.919087,0.394054][0.465222,0.78343,0][-0.353435,0.794262,0.59314][0,0.919087,0.394054][0.465222,0.78343,0][-0.589059,0.794262,0.59314][0,2.72783,1.38822][0.521323,0.783431,0][-1.0051,0.543933,1.00918][0,1.704,2.21579][0.620381,0.882489,0][-0.603058,0.543933,1.00918][0,0.691828,0.722062][0.524656,0.882489,0][-0.201019,0.543933,1.00918][0,0.691828,0.722062][0.428931,0.882488,0][-0.117812,0.794262,0.59314][0,0.919087,0.394054][0.40912,0.78343,0][-0.117812,0.794262,0.59314][0,0.919087,0.394054][0.40912,0.78343,0][-0.353435,0.794262,0.59314][0,0.919087,0.394054][0.465222,0.78343,0][-0.603058,0.543933,1.00918][0,0.691828,0.722062][0.524656,0.882489,0][-0.201019,0.543933,1.00918][0,0.691828,0.722062][0.428931,0.882488,0][0.201019,0.543933,1.00918][0,0.691828,0.722062][0.333207,0.882488,0][0.117812,0.794262,0.59314][0,0.919087,0.394054][0.353018,0.78343,0][0.117812,0.794262,0.59314][0,0.919087,0.394054][0.353018,0.78343,0][-0.117812,0.794262,0.59314][0,0.919087,0.394054][0.40912,0.78343,0][-0.201019,0.543933,1.00918][0,0.691828,0.722062][0.428931,0.882488,0][0.201019,0.543933,1.00918][0,0.691828,0.722062][0.333207,0.882488,0][0.603058,0.543933,1.00918][0,0.691828,0.722062][0.237482,0.882488,0][0.353435,0.794262,0.59314][0,0.919087,0.394054][0.296917,0.78343,0][0.353435,0.794262,0.59314][0,0.919087,0.394054][0.296917,0.78343,0][0.117812,0.794262,0.59314][0,0.919087,0.394054][0.353018,0.78343,0][0.201019,0.543933,1.00918][0,0.691828,0.722062][0.333207,0.882488,0][0.603058,0.543933,1.00918][0,0.691828,0.722062][0.237482,0.882488,0][1.0051,0.543933,1.00918][0,1.70399,2.21579][0.141757,0.882487,0][0.589059,0.794262,0.59314][0,2.72783,1.38822][0.240815,0.78343,0][0.589059,0.794262,0.59314][0,2.72783,1.38822][0.240815,0.78343,0][0.353435,0.794262,0.59314][0,0.919087,0.394054][0.296917,0.78343,0][0.603058,0.543933,1.00918][0,0.691828,0.722062][0.237482,0.882488,0][-0.589059,0.794262,0.59314][0,2.72783,1.38822][0.521323,0.783431,0][-0.353435,0.794262,0.59314][0,0.919087,0.394054][0.465222,0.78343,0][-0.0940645,0.913161,0.160855][0,3.14159,0][0.403466,0.680504,0][-0.0940645,0.913161,0.160855][0,3.14159,0][0.403466,0.680504,0][-0.156774,0.913161,0.160855][0,1.5708,0][0.418397,0.680504,0][-0.589059,0.794262,0.59314][0,2.72783,1.38822][0.521323,0.783431,0][-0.353435,0.794262,0.59314][0,0.919087,0.394054][0.465222,0.78343,0][-0.117812,0.794262,0.59314][0,0.919087,0.394054][0.40912,0.78343,0][-0.0313548,0.913161,0.160855][0,3.14159,0][0.388535,0.680504,0][-0.0313548,0.913161,0.160855][0,3.14159,0][0.388535,0.680504,0][-0.0940645,0.913161,0.160855][0,3.14159,0][0.403466,0.680504,0][-0.353435,0.794262,0.59314][0,0.919087,0.394054][0.465222,0.78343,0][-0.117812,0.794262,0.59314][0,0.919087,0.394054][0.40912,0.78343,0][0.117812,0.794262,0.59314][0,0.919087,0.394054][0.353018,0.78343,0][0.0313548,0.913161,0.160855][0,3.14159,0][0.373604,0.680504,0][0.0313548,0.913161,0.160855][0,3.14159,0][0.373604,0.680504,0][-0.0313548,0.913161,0.160855][0,3.14159,0][0.388535,0.680504,0][-0.117812,0.794262,0.59314][0,0.919087,0.394054][0.40912,0.78343,0][0.117812,0.794262,0.59314][0,0.919087,0.394054][0.353018,0.78343,0][0.353435,0.794262,0.59314][0,0.919087,0.394054][0.296917,0.78343,0][0.0940645,0.913161,0.160855][0,3.14159,0][0.358673,0.680504,0][0.0940645,0.913161,0.160855][0,3.14159,0][0.358673,0.680504,0][0.0313548,0.913161,0.160855][0,3.14159,0][0.373604,0.680504,0][0.117812,0.794262,0.59314][0,0.919087,0.394054][0.353018,0.78343,0][0.353435,0.794262,0.59314][0,0.919087,0.394054][0.296917,0.78343,0][0.589059,0.794262,0.59314][0,2.72783,1.38822][0.240815,0.78343,0][0.156774,0.913161,0.160855][0,1.5708,0][0.343742,0.680504,0][0.156774,0.913161,0.160855][0,1.5708,0][0.343742,0.680504,0][0.0940645,0.913161,0.160855][0,3.14159,0][0.358673,0.680504,0][0.353435,0.794262,0.59314][0,0.919087,0.394054][0.296917,0.78343,0][1.43086,-0.756994,1.43494][0,-1.5708,0][0.982394,0.97303,0][1.43086,-0.756994,0.862595][0,-3.14159,0][0.982395,0.934896,0][1.43086,-0.397333,0.862595][0.983502,0.180899,0][0.982395,0.934896,0][1.43086,-0.397333,0.862595][0.983502,0.180899,0][0.982395,0.934896,0][1.43086,-0.397333,1.43494][0,0.437292,2.7193][0.982394,0.97303,0][1.43086,-0.756994,1.43494][0,-1.5708,0][0.982394,0.97303,0][1.43086,-0.756994,0.862595][0,-3.14159,0][0.982395,0.934896,0][1.43086,-0.756994,0.290252][0,-3.14159,0][0.982395,0.896762,0][1.43086,-0.397333,0.290252][0.983502,0.180899,0][0.982395,0.896762,0][1.43086,-0.397333,0.290252][0.983502,0.180899,0][0.982395,0.896762,0][1.43086,-0.397333,0.862595][0.983502,0.180899,0][0.982395,0.934896,0][1.43086,-0.756994,0.862595][0,-3.14159,0][0.982395,0.934896,0][1.43086,-0.756994,0.290252][0,-3.14159,0][0.982395,0.896762,0][1.43086,-0.756994,-0.28209][0,-3.14159,0][0.982395,0.858628,0][1.43086,-0.397333,-0.28209][0.983502,0.180899,0][0.982395,0.858628,0][1.43086,-0.397333,-0.28209][0.983502,0.180899,0][0.982395,0.858628,0][1.43086,-0.397333,0.290252][0.983502,0.180899,0][0.982395,0.896762,0][1.43086,-0.756994,0.290252][0,-3.14159,0][0.982395,0.896762,0][1.43086,-0.756994,-0.28209][0,-3.14159,0][0.982395,0.858628,0][1.43086,-0.756994,-0.854432][-0.0732326,-2.95126,0.100774][0.982396,0.820494,0][1.43086,-0.397333,-0.854432][0.979897,0.198976,0.0145283][0.982396,0.820494,0][1.43086,-0.397333,-0.854432][0.979897,0.198976,0.0145283][0.982396,0.820494,0][1.43086,-0.397333,-0.28209][0.983502,0.180899,0][0.982395,0.858628,0][1.43086,-0.756994,-0.28209][0,-3.14159,0][0.982395,0.858628,0][1.43086,-0.756994,-0.854432][-0.0732326,-2.95126,0.100774][0.982396,0.820494,0][1.32266,-0.823152,-1.42677][-0.130841,-1.72571,0.256307][0.975187,0.78236,0][1.49477,-0.627399,-1.42677][2.47197,-0.563967,-0.0488415][0.986654,0.78236,0][1.49477,-0.627399,-1.42677][2.47197,-0.563967,-0.0488415][0.986654,0.78236,0][1.43086,-0.397333,-0.854432][0.979897,0.198976,0.0145283][0.982396,0.820494,0][1.43086,-0.756994,-0.854432][-0.0732326,-2.95126,0.100774][0.982396,0.820494,0][1.43086,-0.397333,1.43494][0,0.437292,2.7193][0.0403843,0.983859,0][1.43086,-0.397333,0.862595][0.983502,0.180899,0][0.0403848,0.847585,0][1.22876,0.133462,0.741335][0.9084,0.418102,0][0.0885045,0.818714,0][1.22876,0.133462,0.741335][0.9084,0.418102,0][0.0885045,0.818714,0][1.22876,0.133462,1.23284][0,1.21863,2.77492][0.0885041,0.93574,0][1.43086,-0.397333,1.43494][0,0.437292,2.7193][0.0403843,0.983859,0][1.43086,-0.397333,0.862595][0.983502,0.180899,0][0.0403848,0.847585,0][1.43086,-0.397333,0.290252][0.983502,0.180899,0][0.0403853,0.711312,0][1.22876,0.133462,0.249832][0.9084,0.418102,0][0.0885049,0.701688,0][1.22876,0.133462,0.249832][0.9084,0.418102,0][0.0885049,0.701688,0][1.22876,0.133462,0.741335][0.9084,0.418102,0][0.0885045,0.818714,0][1.43086,-0.397333,0.862595][0.983502,0.180899,0][0.0403848,0.847585,0][1.43086,-0.397333,0.290252][0.983502,0.180899,0][0.0403853,0.711312,0][1.43086,-0.397333,-0.28209][0.983502,0.180899,0][0.0403858,0.575038,0][1.22876,0.133462,-0.24167][0.9084,0.418102,0][0.0885053,0.584662,0][1.22876,0.133462,-0.24167][0.9084,0.418102,0][0.0885053,0.584662,0][1.22876,0.133462,0.249832][0.9084,0.418102,0][0.0885049,0.701688,0][1.43086,-0.397333,0.290252][0.983502,0.180899,0][0.0403853,0.711312,0][1.43086,-0.397333,-0.28209][0.983502,0.180899,0][0.0403858,0.575038,0][1.43086,-0.397333,-0.854432][0.979897,0.198976,0.0145283][0.0403863,0.438764,0][1.22876,0.133462,-0.733172][0.9084,0.418102,0][0.0885057,0.467636,0][1.22876,0.133462,-0.733172][0.9084,0.418102,0][0.0885057,0.467636,0][1.22876,0.133462,-0.24167][0.9084,0.418102,0][0.0885053,0.584662,0][1.43086,-0.397333,-0.28209][0.983502,0.180899,0][0.0403858,0.575038,0][1.43086,-0.397333,-0.854432][0.979897,0.198976,0.0145283][0.0403863,0.438764,0][1.49477,-0.627399,-1.42677][2.47197,-0.563967,-0.0488415][0.02517,0.302491,0][1.22876,0.133462,-1.22467][2.69073,1.16909,-0.0250569][0.0885062,0.35061,0][1.22876,0.133462,-1.22467][2.69073,1.16909,-0.0250569][0.0885062,0.35061,0][1.22876,0.133462,-0.733172][0.9084,0.418102,0][0.0885057,0.467636,0][1.43086,-0.397333,-0.854432][0.979897,0.198976,0.0145283][0.0403863,0.438764,0][1.22876,0.133462,1.23284][0,1.21863,2.77492][0.0885041,0.93574,0][1.22876,0.133462,0.741335][0.9084,0.418102,0][0.0885045,0.818714,0][1.0051,0.543933,0.607139][0.722062,0.691829,0][0.141758,0.786762,0][1.0051,0.543933,0.607139][0.722062,0.691829,0][0.141758,0.786762,0][1.0051,0.543933,1.00918][0,1.70399,2.21579][0.141757,0.882487,0][1.22876,0.133462,1.23284][0,1.21863,2.77492][0.0885041,0.93574,0][1.22876,0.133462,0.741335][0.9084,0.418102,0][0.0885045,0.818714,0][1.22876,0.133462,0.249832][0.9084,0.418102,0][0.0885049,0.701688,0][1.0051,0.543933,0.205101][0.722062,0.691828,0][0.141758,0.691038,0][1.0051,0.543933,0.205101][0.722062,0.691828,0][0.141758,0.691038,0][1.0051,0.543933,0.607139][0.722062,0.691829,0][0.141758,0.786762,0][1.22876,0.133462,0.741335][0.9084,0.418102,0][0.0885045,0.818714,0][1.22876,0.133462,0.249832][0.9084,0.418102,0][0.0885049,0.701688,0][1.22876,0.133462,-0.24167][0.9084,0.418102,0][0.0885053,0.584662,0][1.0051,0.543933,-0.196938][0.722062,0.691828,0][0.141758,0.595313,0][1.0051,0.543933,-0.196938][0.722062,0.691828,0][0.141758,0.595313,0][1.0051,0.543933,0.205101][0.722062,0.691828,0][0.141758,0.691038,0][1.22876,0.133462,0.249832][0.9084,0.418102,0][0.0885049,0.701688,0][1.22876,0.133462,-0.24167][0.9084,0.418102,0][0.0885053,0.584662,0][1.22876,0.133462,-0.733172][0.9084,0.418102,0][0.0885057,0.467636,0][1.0051,0.543933,-0.598977][0.722062,0.691828,0][0.141759,0.499588,0][1.0051,0.543933,-0.598977][0.722062,0.691828,0][0.141759,0.499588,0][1.0051,0.543933,-0.196938][0.722062,0.691828,0][0.141758,0.595313,0][1.22876,0.133462,-0.24167][0.9084,0.418102,0][0.0885053,0.584662,0][1.22876,0.133462,-0.733172][0.9084,0.418102,0][0.0885057,0.467636,0][1.22876,0.133462,-1.22467][2.69073,1.16909,-0.0250569][0.0885062,0.35061,0][1.0051,0.543933,-1.00102][2.21579,1.704,0][0.141759,0.403864,0][1.0051,0.543933,-1.00102][2.21579,1.704,0][0.141759,0.403864,0][1.0051,0.543933,-0.598977][0.722062,0.691828,0][0.141759,0.499588,0][1.22876,0.133462,-0.733172][0.9084,0.418102,0][0.0885057,0.467636,0][1.0051,0.543933,1.00918][0,1.70399,2.21579][0.141757,0.882487,0][1.0051,0.543933,0.607139][0.722062,0.691829,0][0.141758,0.786762,0][0.589059,0.794262,0.357517][0.394054,0.919087,0][0.240816,0.727328,0][0.589059,0.794262,0.357517][0.394054,0.919087,0][0.240816,0.727328,0][0.589059,0.794262,0.59314][0,2.72783,1.38822][0.240815,0.78343,0][1.0051,0.543933,1.00918][0,1.70399,2.21579][0.141757,0.882487,0][1.0051,0.543933,0.607139][0.722062,0.691829,0][0.141758,0.786762,0][1.0051,0.543933,0.205101][0.722062,0.691828,0][0.141758,0.691038,0][0.589059,0.794262,0.121893][0.394054,0.919087,0][0.240816,0.671227,0][0.589059,0.794262,0.121893][0.394054,0.919087,0][0.240816,0.671227,0][0.589059,0.794262,0.357517][0.394054,0.919087,0][0.240816,0.727328,0][1.0051,0.543933,0.607139][0.722062,0.691829,0][0.141758,0.786762,0][1.0051,0.543933,0.205101][0.722062,0.691828,0][0.141758,0.691038,0][1.0051,0.543933,-0.196938][0.722062,0.691828,0][0.141758,0.595313,0][0.589059,0.794262,-0.113731][0.394054,0.919087,0][0.240816,0.615125,0][0.589059,0.794262,-0.113731][0.394054,0.919087,0][0.240816,0.615125,0][0.589059,0.794262,0.121893][0.394054,0.919087,0][0.240816,0.671227,0][1.0051,0.543933,0.205101][0.722062,0.691828,0][0.141758,0.691038,0][1.0051,0.543933,-0.196938][0.722062,0.691828,0][0.141758,0.595313,0][1.0051,0.543933,-0.598977][0.722062,0.691828,0][0.141759,0.499588,0][0.589059,0.794262,-0.349354][0.394054,0.919087,0][0.240816,0.559023,0][0.589059,0.794262,-0.349354][0.394054,0.919087,0][0.240816,0.559023,0][0.589059,0.794262,-0.113731][0.394054,0.919087,0][0.240816,0.615125,0][1.0051,0.543933,-0.196938][0.722062,0.691828,0][0.141758,0.595313,0][1.0051,0.543933,-0.598977][0.722062,0.691828,0][0.141759,0.499588,0][1.0051,0.543933,-1.00102][2.21579,1.704,0][0.141759,0.403864,0][0.589059,0.794262,-0.584978][1.38822,2.72783,0][0.240816,0.502922,0][0.589059,0.794262,-0.584978][1.38822,2.72783,0][0.240816,0.502922,0][0.589059,0.794262,-0.349354][0.394054,0.919087,0][0.240816,0.559023,0][1.0051,0.543933,-0.598977][0.722062,0.691828,0][0.141759,0.499588,0][0.589059,0.794262,0.59314][0,2.72783,1.38822][0.240815,0.78343,0][0.589059,0.794262,0.357517][0.394054,0.919087,0][0.240816,0.727328,0][0.156774,0.913161,0.0981455][0,3.14159,0][0.343742,0.665573,0][0.156774,0.913161,0.0981455][0,3.14159,0][0.343742,0.665573,0][0.156774,0.913161,0.160855][0,1.5708,0][0.343742,0.680504,0][0.589059,0.794262,0.59314][0,2.72783,1.38822][0.240815,0.78343,0][0.589059,0.794262,0.357517][0.394054,0.919087,0][0.240816,0.727328,0][0.589059,0.794262,0.121893][0.394054,0.919087,0][0.240816,0.671227,0][0.156774,0.913161,0.0354358][0,3.14159,0][0.343742,0.650642,0][0.156774,0.913161,0.0354358][0,3.14159,0][0.343742,0.650642,0][0.156774,0.913161,0.0981455][0,3.14159,0][0.343742,0.665573,0][0.589059,0.794262,0.357517][0.394054,0.919087,0][0.240816,0.727328,0][0.589059,0.794262,0.121893][0.394054,0.919087,0][0.240816,0.671227,0][0.589059,0.794262,-0.113731][0.394054,0.919087,0][0.240816,0.615125,0][0.156774,0.913161,-0.0272738][0,3.14159,0][0.343742,0.63571,0][0.156774,0.913161,-0.0272738][0,3.14159,0][0.343742,0.63571,0][0.156774,0.913161,0.0354358][0,3.14159,0][0.343742,0.650642,0][0.589059,0.794262,0.121893][0.394054,0.919087,0][0.240816,0.671227,0][0.589059,0.794262,-0.113731][0.394054,0.919087,0][0.240816,0.615125,0][0.589059,0.794262,-0.349354][0.394054,0.919087,0][0.240816,0.559023,0][0.156774,0.913161,-0.0899834][0,3.14159,0][0.343742,0.620779,0][0.156774,0.913161,-0.0899834][0,3.14159,0][0.343742,0.620779,0][0.156774,0.913161,-0.0272738][0,3.14159,0][0.343742,0.63571,0][0.589059,0.794262,-0.113731][0.394054,0.919087,0][0.240816,0.615125,0][0.589059,0.794262,-0.349354][0.394054,0.919087,0][0.240816,0.559023,0][0.589059,0.794262,-0.584978][1.38822,2.72783,0][0.240816,0.502922,0][0.156774,0.913161,-0.152693][0,1.5708,0][0.343742,0.605848,0][0.156774,0.913161,-0.152693][0,1.5708,0][0.343742,0.605848,0][0.156774,0.913161,-0.0899834][0,3.14159,0][0.343742,0.620779,0][0.589059,0.794262,-0.349354][0.394054,0.919087,0][0.240816,0.559023,0][1.28553,-1.02159,-2.63747][0,0,-1][0.972714,0.701694,0][0.78873,-0.890085,-2.63747][0,0,-1][0.939614,0.701694,0][0.916138,-0.745492,-2.63747][0,0,-1][0.948103,0.701694,0][0.916138,-0.745492,-2.63747][0,0,-1][0.948103,0.701694,0][1.48986,-0.911065,-2.63747][0,0,-1][0.986328,0.701694,0][1.28553,-1.02159,-2.63747][0,0,-1][0.972714,0.701694,0][0.78873,-0.890085,-2.63747][0,0,-1][0.939614,0.701694,0][0.265881,-0.822046,-2.63747][0,0,-1][0.904777,0.701693,0][0.309182,-0.659594,-2.63747][0,0,-1][0.907662,0.701693,0][0.309182,-0.659594,-2.63747][0,0,-1][0.907662,0.701693,0][0.916138,-0.745492,-2.63747][0,0,-1][0.948103,0.701694,0][0.78873,-0.890085,-2.63747][0,0,-1][0.939614,0.701694,0][0.265881,-0.822046,-2.63747][0,0,-1][0.904777,0.701693,0][-0.265881,-0.822046,-2.63747][0,0,-1][0.869347,0.701693,0][-0.309182,-0.659594,-2.63747][0,0,-1][0.866462,0.701693,0][-0.309182,-0.659594,-2.63747][0,0,-1][0.866462,0.701693,0][0.309182,-0.659594,-2.63747][0,0,-1][0.907662,0.701693,0][0.265881,-0.822046,-2.63747][0,0,-1][0.904777,0.701693,0][-0.265881,-0.822046,-2.63747][0,0,-1][0.869347,0.701693,0][-0.78873,-0.890085,-2.63747][0,0,-1][0.834511,0.701692,0][-0.916138,-0.745492,-2.63747][0,0,-1][0.826022,0.701692,0][-0.916138,-0.745492,-2.63747][0,0,-1][0.826022,0.701692,0][-0.309182,-0.659594,-2.63747][0,0,-1][0.866462,0.701693,0][-0.265881,-0.822046,-2.63747][0,0,-1][0.869347,0.701693,0][-0.78873,-0.890085,-2.63747][0,0,-1][0.834511,0.701692,0][-1.28553,-1.02159,-2.63747][0,0,-1][0.80141,0.701692,0][-1.48986,-0.911065,-2.63747][0,0,-1][0.787797,0.701692,0][-1.48986,-0.911065,-2.63747][0,0,-1][0.787797,0.701692,0][-0.916138,-0.745492,-2.63747][0,0,-1][0.826022,0.701692,0][-0.78873,-0.890085,-2.63747][0,0,-1][0.834511,0.701692,0][1.49477,-0.627399,-1.42677][2.47197,-0.563967,-0.0488415][0.02517,0.302491,0][0.905867,-0.48057,-1.42677][0.0611154,0.333479,-0.940774][0.165386,0.302491,0][0.737254,0.133462,-1.22467][0.00679597,0.391934,-0.919968][0.205532,0.350611,0][0.737254,0.133462,-1.22467][0.00679597,0.391934,-0.919968][0.205532,0.350611,0][1.22876,0.133462,-1.22467][2.69073,1.16909,-0.0250569][0.0885062,0.35061,0][1.49477,-0.627399,-1.42677][2.47197,-0.563967,-0.0488415][0.02517,0.302491,0][0.905867,-0.48057,-1.42677][0.0611154,0.333479,-0.940774][0.165386,0.302491,0][0.303464,-0.406604,-1.42677][0.0238475,0.352611,-0.935466][0.308817,0.302492,0][0.245751,0.133462,-1.22467][0.00483827,0.411435,-0.911426][0.322558,0.350611,0][0.245751,0.133462,-1.22467][0.00483827,0.411435,-0.911426][0.322558,0.350611,0][0.737254,0.133462,-1.22467][0.00679597,0.391934,-0.919968][0.205532,0.350611,0][0.905867,-0.48057,-1.42677][0.0611154,0.333479,-0.940774][0.165386,0.302491,0][0.303464,-0.406604,-1.42677][0.0238475,0.352611,-0.935466][0.308817,0.302492,0][-0.303464,-0.406604,-1.42677][-0.0126469,0.341522,-0.939789][0.453325,0.302492,0][-0.245751,0.133462,-1.22467][0,0.415501,-0.909593][0.439584,0.350612,0][-0.245751,0.133462,-1.22467][0,0.415501,-0.909593][0.439584,0.350612,0][0.245751,0.133462,-1.22467][0.00483827,0.411435,-0.911426][0.322558,0.350611,0][0.303464,-0.406604,-1.42677][0.0238475,0.352611,-0.935466][0.308817,0.302492,0][-0.303464,-0.406604,-1.42677][-0.0126469,0.341522,-0.939789][0.453325,0.302492,0][-0.905867,-0.48057,-1.42677][-0.0431779,0.302365,-0.952214][0.596756,0.302493,0][-0.737254,0.133462,-1.22467][-0.00569179,0.403944,-0.914766][0.55661,0.350612,0][-0.737254,0.133462,-1.22467][-0.00569179,0.403944,-0.914766][0.55661,0.350612,0][-0.245751,0.133462,-1.22467][0,0.415501,-0.909593][0.439584,0.350612,0][-0.303464,-0.406604,-1.42677][-0.0126469,0.341522,-0.939789][0.453325,0.302492,0][-0.905867,-0.48057,-1.42677][-0.0431779,0.302365,-0.952214][0.596756,0.302493,0][-1.49477,-0.627399,-1.42677][-0.0701665,0.281422,-0.96714][0.736972,0.302493,0][-1.22876,0.133462,-1.22467][-0.0549775,1.10481,-2.79727][0.673636,0.350613,0][-1.22876,0.133462,-1.22467][-0.0549775,1.10481,-2.79727][0.673636,0.350613,0][-0.737254,0.133462,-1.22467][-0.00569179,0.403944,-0.914766][0.55661,0.350612,0][-0.905867,-0.48057,-1.42677][-0.0431779,0.302365,-0.952214][0.596756,0.302493,0][1.22876,0.133462,-1.22467][2.69073,1.16909,-0.0250569][0.0885062,0.35061,0][0.737254,0.133462,-1.22467][0.00679597,0.391934,-0.919968][0.205532,0.350611,0][0.603058,0.543933,-1.00102][0,0.691829,-0.722062][0.237484,0.403864,0][0.603058,0.543933,-1.00102][0,0.691829,-0.722062][0.237484,0.403864,0][1.0051,0.543933,-1.00102][2.21579,1.704,0][0.141759,0.403864,0][1.22876,0.133462,-1.22467][2.69073,1.16909,-0.0250569][0.0885062,0.35061,0][0.737254,0.133462,-1.22467][0.00679597,0.391934,-0.919968][0.205532,0.350611,0][0.245751,0.133462,-1.22467][0.00483827,0.411435,-0.911426][0.322558,0.350611,0][0.201019,0.543933,-1.00102][0,0.691829,-0.722062][0.333208,0.403864,0][0.201019,0.543933,-1.00102][0,0.691829,-0.722062][0.333208,0.403864,0][0.603058,0.543933,-1.00102][0,0.691829,-0.722062][0.237484,0.403864,0][0.737254,0.133462,-1.22467][0.00679597,0.391934,-0.919968][0.205532,0.350611,0][0.245751,0.133462,-1.22467][0.00483827,0.411435,-0.911426][0.322558,0.350611,0][-0.245751,0.133462,-1.22467][0,0.415501,-0.909593][0.439584,0.350612,0][-0.201019,0.543933,-1.00102][0,0.691829,-0.722062][0.428933,0.403864,0][-0.201019,0.543933,-1.00102][0,0.691829,-0.722062][0.428933,0.403864,0][0.201019,0.543933,-1.00102][0,0.691829,-0.722062][0.333208,0.403864,0][0.245751,0.133462,-1.22467][0.00483827,0.411435,-0.911426][0.322558,0.350611,0][-0.245751,0.133462,-1.22467][0,0.415501,-0.909593][0.439584,0.350612,0][-0.737254,0.133462,-1.22467][-0.00569179,0.403944,-0.914766][0.55661,0.350612,0][-0.603058,0.543933,-1.00102][0,0.691829,-0.722062][0.524658,0.403865,0][-0.603058,0.543933,-1.00102][0,0.691829,-0.722062][0.524658,0.403865,0][-0.201019,0.543933,-1.00102][0,0.691829,-0.722062][0.428933,0.403864,0][-0.245751,0.133462,-1.22467][0,0.415501,-0.909593][0.439584,0.350612,0][-0.737254,0.133462,-1.22467][-0.00569179,0.403944,-0.914766][0.55661,0.350612,0][-1.22876,0.133462,-1.22467][-0.0549775,1.10481,-2.79727][0.673636,0.350613,0][-1.0051,0.543933,-1.00102][0,1.704,-2.21579][0.620382,0.403865,0][-1.0051,0.543933,-1.00102][0,1.704,-2.21579][0.620382,0.403865,0][-0.603058,0.543933,-1.00102][0,0.691829,-0.722062][0.524658,0.403865,0][-0.737254,0.133462,-1.22467][-0.00569179,0.403944,-0.914766][0.55661,0.350612,0][1.0051,0.543933,-1.00102][2.21579,1.704,0][0.141759,0.403864,0][0.603058,0.543933,-1.00102][0,0.691829,-0.722062][0.237484,0.403864,0][0.353435,0.794262,-0.584978][0,0.919087,-0.394054][0.296918,0.502922,0][0.353435,0.794262,-0.584978][0,0.919087,-0.394054][0.296918,0.502922,0][0.589059,0.794262,-0.584978][1.38822,2.72783,0][0.240816,0.502922,0][1.0051,0.543933,-1.00102][2.21579,1.704,0][0.141759,0.403864,0][0.603058,0.543933,-1.00102][0,0.691829,-0.722062][0.237484,0.403864,0][0.201019,0.543933,-1.00102][0,0.691829,-0.722062][0.333208,0.403864,0][0.117812,0.794262,-0.584978][0,0.919087,-0.394054][0.353019,0.502922,0][0.117812,0.794262,-0.584978][0,0.919087,-0.394054][0.353019,0.502922,0][0.353435,0.794262,-0.584978][0,0.919087,-0.394054][0.296918,0.502922,0][0.603058,0.543933,-1.00102][0,0.691829,-0.722062][0.237484,0.403864,0][0.201019,0.543933,-1.00102][0,0.691829,-0.722062][0.333208,0.403864,0][-0.201019,0.543933,-1.00102][0,0.691829,-0.722062][0.428933,0.403864,0][-0.117812,0.794262,-0.584978][0,0.919087,-0.394054][0.409121,0.502922,0][-0.117812,0.794262,-0.584978][0,0.919087,-0.394054][0.409121,0.502922,0][0.117812,0.794262,-0.584978][0,0.919087,-0.394054][0.353019,0.502922,0][0.201019,0.543933,-1.00102][0,0.691829,-0.722062][0.333208,0.403864,0][-0.201019,0.543933,-1.00102][0,0.691829,-0.722062][0.428933,0.403864,0][-0.603058,0.543933,-1.00102][0,0.691829,-0.722062][0.524658,0.403865,0][-0.353435,0.794262,-0.584978][0,0.919087,-0.394054][0.465223,0.502923,0][-0.353435,0.794262,-0.584978][0,0.919087,-0.394054][0.465223,0.502923,0][-0.117812,0.794262,-0.584978][0,0.919087,-0.394054][0.409121,0.502922,0][-0.201019,0.543933,-1.00102][0,0.691829,-0.722062][0.428933,0.403864,0][-0.603058,0.543933,-1.00102][0,0.691829,-0.722062][0.524658,0.403865,0][-1.0051,0.543933,-1.00102][0,1.704,-2.21579][0.620382,0.403865,0][-0.589059,0.794262,-0.584978][0,2.72783,-1.38822][0.521324,0.502923,0][-0.589059,0.794262,-0.584978][0,2.72783,-1.38822][0.521324,0.502923,0][-0.353435,0.794262,-0.584978][0,0.919087,-0.394054][0.465223,0.502923,0][-0.603058,0.543933,-1.00102][0,0.691829,-0.722062][0.524658,0.403865,0][0.589059,0.794262,-0.584978][1.38822,2.72783,0][0.240816,0.502922,0][0.353435,0.794262,-0.584978][0,0.919087,-0.394054][0.296918,0.502922,0][0.0940645,0.913161,-0.152693][0,3.14159,0][0.358673,0.605848,0][0.0940645,0.913161,-0.152693][0,3.14159,0][0.358673,0.605848,0][0.156774,0.913161,-0.152693][0,1.5708,0][0.343742,0.605848,0][0.589059,0.794262,-0.584978][1.38822,2.72783,0][0.240816,0.502922,0][0.353435,0.794262,-0.584978][0,0.919087,-0.394054][0.296918,0.502922,0][0.117812,0.794262,-0.584978][0,0.919087,-0.394054][0.353019,0.502922,0][0.0313548,0.913161,-0.152693][0,3.14159,0][0.373604,0.605848,0][0.0313548,0.913161,-0.152693][0,3.14159,0][0.373604,0.605848,0][0.0940645,0.913161,-0.152693][0,3.14159,0][0.358673,0.605848,0][0.353435,0.794262,-0.584978][0,0.919087,-0.394054][0.296918,0.502922,0][0.117812,0.794262,-0.584978][0,0.919087,-0.394054][0.353019,0.502922,0][-0.117812,0.794262,-0.584978][0,0.919087,-0.394054][0.409121,0.502922,0][-0.0313548,0.913161,-0.152693][0,3.14159,0][0.388535,0.605848,0][-0.0313548,0.913161,-0.152693][0,3.14159,0][0.388535,0.605848,0][0.0313548,0.913161,-0.152693][0,3.14159,0][0.373604,0.605848,0][0.117812,0.794262,-0.584978][0,0.919087,-0.394054][0.353019,0.502922,0][-0.117812,0.794262,-0.584978][0,0.919087,-0.394054][0.409121,0.502922,0][-0.353435,0.794262,-0.584978][0,0.919087,-0.394054][0.465223,0.502923,0][-0.0940645,0.913161,-0.152693][0,3.14159,0][0.403467,0.605848,0][-0.0940645,0.913161,-0.152693][0,3.14159,0][0.403467,0.605848,0][-0.0313548,0.913161,-0.152693][0,3.14159,0][0.388535,0.605848,0][-0.117812,0.794262,-0.584978][0,0.919087,-0.394054][0.409121,0.502922,0][-0.353435,0.794262,-0.584978][0,0.919087,-0.394054][0.465223,0.502923,0][-0.589059,0.794262,-0.584978][0,2.72783,-1.38822][0.521324,0.502923,0][-0.156774,0.913161,-0.152693][0,1.5708,0][0.418398,0.605849,0][-0.156774,0.913161,-0.152693][0,1.5708,0][0.418398,0.605849,0][-0.0940645,0.913161,-0.152693][0,3.14159,0][0.403467,0.605848,0][-0.353435,0.794262,-0.584978][0,0.919087,-0.394054][0.465223,0.502923,0][-1.32266,-0.823152,-1.42677][0.101759,-1.73256,0.219506][0.798936,0.782358,0][-1.43086,-0.756994,-0.854432][0.0622812,-2.95026,0.115131][0.791726,0.820492,0][-1.43086,-0.397333,-0.854432][-0.984946,0.171176,-0.0240686][0.791726,0.820492,0][-1.43086,-0.397333,-0.854432][-0.984946,0.171176,-0.0240686][0.791726,0.820492,0][-1.49477,-0.627399,-1.42677][-0.0701665,0.281422,-0.96714][0.787469,0.782358,0][-1.32266,-0.823152,-1.42677][0.101759,-1.73256,0.219506][0.798936,0.782358,0][-1.43086,-0.756994,-0.854432][0.0622812,-2.95026,0.115131][0.791726,0.820492,0][-1.43086,-0.756994,-0.28209][0,-3.14159,0][0.791726,0.858626,0][-1.43086,-0.397333,-0.28209][-0.983502,0.180899,0][0.791726,0.858626,0][-1.43086,-0.397333,-0.28209][-0.983502,0.180899,0][0.791726,0.858626,0][-1.43086,-0.397333,-0.854432][-0.984946,0.171176,-0.0240686][0.791726,0.820492,0][-1.43086,-0.756994,-0.854432][0.0622812,-2.95026,0.115131][0.791726,0.820492,0][-1.43086,-0.756994,-0.28209][0,-3.14159,0][0.791726,0.858626,0][-1.43086,-0.756994,0.290252][0,-3.14159,0][0.791726,0.89676,0][-1.43086,-0.397333,0.290252][-0.983502,0.180899,0][0.791726,0.89676,0][-1.43086,-0.397333,0.290252][-0.983502,0.180899,0][0.791726,0.89676,0][-1.43086,-0.397333,-0.28209][-0.983502,0.180899,0][0.791726,0.858626,0][-1.43086,-0.756994,-0.28209][0,-3.14159,0][0.791726,0.858626,0][-1.43086,-0.756994,0.290252][0,-3.14159,0][0.791726,0.89676,0][-1.43086,-0.756994,0.862595][0,-3.14159,0][0.791725,0.934894,0][-1.43086,-0.397333,0.862595][-0.983502,0.180899,0][0.791725,0.934894,0][-1.43086,-0.397333,0.862595][-0.983502,0.180899,0][0.791725,0.934894,0][-1.43086,-0.397333,0.290252][-0.983502,0.180899,0][0.791726,0.89676,0][-1.43086,-0.756994,0.290252][0,-3.14159,0][0.791726,0.89676,0][-1.43086,-0.756994,0.862595][0,-3.14159,0][0.791725,0.934894,0][-1.43086,-0.756994,1.43494][0,-1.5708,0][0.791725,0.973028,0][-1.43086,-0.397333,1.43494][0,0.437292,2.7193][0.791725,0.973028,0][-1.43086,-0.397333,1.43494][0,0.437292,2.7193][0.791725,0.973028,0][-1.43086,-0.397333,0.862595][-0.983502,0.180899,0][0.791725,0.934894,0][-1.43086,-0.756994,0.862595][0,-3.14159,0][0.791725,0.934894,0][-1.49477,-0.627399,-1.42677][-0.0701665,0.281422,-0.96714][0.736972,0.302493,0][-1.43086,-0.397333,-0.854432][-0.984946,0.171176,-0.0240686][0.721755,0.438767,0][-1.22876,0.133462,-0.733172][-0.909661,0.415338,-0.00338832][0.673635,0.467638,0][-1.22876,0.133462,-0.733172][-0.909661,0.415338,-0.00338832][0.673635,0.467638,0][-1.22876,0.133462,-1.22467][-0.0549775,1.10481,-2.79727][0.673636,0.350613,0][-1.49477,-0.627399,-1.42677][-0.0701665,0.281422,-0.96714][0.736972,0.302493,0][-1.43086,-0.397333,-0.854432][-0.984946,0.171176,-0.0240686][0.721755,0.438767,0][-1.43086,-0.397333,-0.28209][-0.983502,0.180899,0][0.721754,0.575041,0][-1.22876,0.133462,-0.24167][-0.9084,0.418101,0][0.673635,0.584664,0][-1.22876,0.133462,-0.24167][-0.9084,0.418101,0][0.673635,0.584664,0][-1.22876,0.133462,-0.733172][-0.909661,0.415338,-0.00338832][0.673635,0.467638,0][-1.43086,-0.397333,-0.854432][-0.984946,0.171176,-0.0240686][0.721755,0.438767,0][-1.43086,-0.397333,-0.28209][-0.983502,0.180899,0][0.721754,0.575041,0][-1.43086,-0.397333,0.290252][-0.983502,0.180899,0][0.721754,0.711314,0][-1.22876,0.133462,0.249832][-0.9084,0.418102,0][0.673634,0.70169,0][-1.22876,0.133462,0.249832][-0.9084,0.418102,0][0.673634,0.70169,0][-1.22876,0.133462,-0.24167][-0.9084,0.418101,0][0.673635,0.584664,0][-1.43086,-0.397333,-0.28209][-0.983502,0.180899,0][0.721754,0.575041,0][-1.43086,-0.397333,0.290252][-0.983502,0.180899,0][0.721754,0.711314,0][-1.43086,-0.397333,0.862595][-0.983502,0.180899,0][0.721753,0.847588,0][-1.22876,0.133462,0.741335][-0.9084,0.418102,0][0.673634,0.818716,0][-1.22876,0.133462,0.741335][-0.9084,0.418102,0][0.673634,0.818716,0][-1.22876,0.133462,0.249832][-0.9084,0.418102,0][0.673634,0.70169,0][-1.43086,-0.397333,0.290252][-0.983502,0.180899,0][0.721754,0.711314,0][-1.43086,-0.397333,0.862595][-0.983502,0.180899,0][0.721753,0.847588,0][-1.43086,-0.397333,1.43494][0,0.437292,2.7193][0.721753,0.983862,0][-1.22876,0.133462,1.23284][0,1.21863,2.77492][0.673633,0.935742,0][-1.22876,0.133462,1.23284][0,1.21863,2.77492][0.673633,0.935742,0][-1.22876,0.133462,0.741335][-0.9084,0.418102,0][0.673634,0.818716,0][-1.43086,-0.397333,0.862595][-0.983502,0.180899,0][0.721753,0.847588,0][-1.22876,0.133462,-1.22467][-0.0549775,1.10481,-2.79727][0.673636,0.350613,0][-1.22876,0.133462,-0.733172][-0.909661,0.415338,-0.00338832][0.673635,0.467638,0][-1.0051,0.543933,-0.598977][-0.722062,0.691828,0][0.620382,0.49959,0][-1.0051,0.543933,-0.598977][-0.722062,0.691828,0][0.620382,0.49959,0][-1.0051,0.543933,-1.00102][0,1.704,-2.21579][0.620382,0.403865,0][-1.22876,0.133462,-1.22467][-0.0549775,1.10481,-2.79727][0.673636,0.350613,0][-1.22876,0.133462,-0.733172][-0.909661,0.415338,-0.00338832][0.673635,0.467638,0][-1.22876,0.133462,-0.24167][-0.9084,0.418101,0][0.673635,0.584664,0][-1.0051,0.543933,-0.196938][-0.722062,0.691828,0][0.620382,0.595315,0][-1.0051,0.543933,-0.196938][-0.722062,0.691828,0][0.620382,0.595315,0][-1.0051,0.543933,-0.598977][-0.722062,0.691828,0][0.620382,0.49959,0][-1.22876,0.133462,-0.733172][-0.909661,0.415338,-0.00338832][0.673635,0.467638,0][-1.22876,0.133462,-0.24167][-0.9084,0.418101,0][0.673635,0.584664,0][-1.22876,0.133462,0.249832][-0.9084,0.418102,0][0.673634,0.70169,0][-1.0051,0.543933,0.205101][-0.722062,0.691828,0][0.620381,0.691039,0][-1.0051,0.543933,0.205101][-0.722062,0.691828,0][0.620381,0.691039,0][-1.0051,0.543933,-0.196938][-0.722062,0.691828,0][0.620382,0.595315,0][-1.22876,0.133462,-0.24167][-0.9084,0.418101,0][0.673635,0.584664,0][-1.22876,0.133462,0.249832][-0.9084,0.418102,0][0.673634,0.70169,0][-1.22876,0.133462,0.741335][-0.9084,0.418102,0][0.673634,0.818716,0][-1.0051,0.543933,0.607139][-0.722062,0.691828,0][0.620381,0.786764,0][-1.0051,0.543933,0.607139][-0.722062,0.691828,0][0.620381,0.786764,0][-1.0051,0.543933,0.205101][-0.722062,0.691828,0][0.620381,0.691039,0][-1.22876,0.133462,0.249832][-0.9084,0.418102,0][0.673634,0.70169,0][-1.22876,0.133462,0.741335][-0.9084,0.418102,0][0.673634,0.818716,0][-1.22876,0.133462,1.23284][0,1.21863,2.77492][0.673633,0.935742,0][-1.0051,0.543933,1.00918][0,1.704,2.21579][0.620381,0.882489,0][-1.0051,0.543933,1.00918][0,1.704,2.21579][0.620381,0.882489,0][-1.0051,0.543933,0.607139][-0.722062,0.691828,0][0.620381,0.786764,0][-1.22876,0.133462,0.741335][-0.9084,0.418102,0][0.673634,0.818716,0][-1.0051,0.543933,-1.00102][0,1.704,-2.21579][0.620382,0.403865,0][-1.0051,0.543933,-0.598977][-0.722062,0.691828,0][0.620382,0.49959,0][-0.589059,0.794262,-0.349355][-0.394054,0.919087,0][0.521324,0.559024,0][-0.589059,0.794262,-0.349355][-0.394054,0.919087,0][0.521324,0.559024,0][-0.589059,0.794262,-0.584978][0,2.72783,-1.38822][0.521324,0.502923,0][-1.0051,0.543933,-1.00102][0,1.704,-2.21579][0.620382,0.403865,0][-1.0051,0.543933,-0.598977][-0.722062,0.691828,0][0.620382,0.49959,0][-1.0051,0.543933,-0.196938][-0.722062,0.691828,0][0.620382,0.595315,0][-0.589059,0.794262,-0.113731][-0.394054,0.919087,0][0.521324,0.615126,0][-0.589059,0.794262,-0.113731][-0.394054,0.919087,0][0.521324,0.615126,0][-0.589059,0.794262,-0.349355][-0.394054,0.919087,0][0.521324,0.559024,0][-1.0051,0.543933,-0.598977][-0.722062,0.691828,0][0.620382,0.49959,0][-1.0051,0.543933,-0.196938][-0.722062,0.691828,0][0.620382,0.595315,0][-1.0051,0.543933,0.205101][-0.722062,0.691828,0][0.620381,0.691039,0][-0.589059,0.794262,0.121893][-0.394054,0.919087,0][0.521324,0.671227,0][-0.589059,0.794262,0.121893][-0.394054,0.919087,0][0.521324,0.671227,0][-0.589059,0.794262,-0.113731][-0.394054,0.919087,0][0.521324,0.615126,0][-1.0051,0.543933,-0.196938][-0.722062,0.691828,0][0.620382,0.595315,0][-1.0051,0.543933,0.205101][-0.722062,0.691828,0][0.620381,0.691039,0][-1.0051,0.543933,0.607139][-0.722062,0.691828,0][0.620381,0.786764,0][-0.589059,0.794262,0.357517][-0.394055,0.919087,-1.31809e-007][0.521323,0.727329,0][-0.589059,0.794262,0.357517][-0.394055,0.919087,-1.31809e-007][0.521323,0.727329,0][-0.589059,0.794262,0.121893][-0.394054,0.919087,0][0.521324,0.671227,0][-1.0051,0.543933,0.205101][-0.722062,0.691828,0][0.620381,0.691039,0][-1.0051,0.543933,0.607139][-0.722062,0.691828,0][0.620381,0.786764,0][-1.0051,0.543933,1.00918][0,1.704,2.21579][0.620381,0.882489,0][-0.589059,0.794262,0.59314][0,2.72783,1.38822][0.521323,0.783431,0][-0.589059,0.794262,0.59314][0,2.72783,1.38822][0.521323,0.783431,0][-0.589059,0.794262,0.357517][-0.394055,0.919087,-1.31809e-007][0.521323,0.727329,0][-1.0051,0.543933,0.607139][-0.722062,0.691828,0][0.620381,0.786764,0][-0.589059,0.794262,-0.584978][0,2.72783,-1.38822][0.521324,0.502923,0][-0.589059,0.794262,-0.349355][-0.394054,0.919087,0][0.521324,0.559024,0][-0.156774,0.913161,-0.0899834][0,3.14159,0][0.418398,0.62078,0][-0.156774,0.913161,-0.0899834][0,3.14159,0][0.418398,0.62078,0][-0.156774,0.913161,-0.152693][0,1.5708,0][0.418398,0.605849,0][-0.589059,0.794262,-0.584978][0,2.72783,-1.38822][0.521324,0.502923,0][-0.589059,0.794262,-0.349355][-0.394054,0.919087,0][0.521324,0.559024,0][-0.589059,0.794262,-0.113731][-0.394054,0.919087,0][0.521324,0.615126,0][-0.156774,0.913161,-0.0272738][0,3.14159,0][0.418397,0.635711,0][-0.156774,0.913161,-0.0272738][0,3.14159,0][0.418397,0.635711,0][-0.156774,0.913161,-0.0899834][0,3.14159,0][0.418398,0.62078,0][-0.589059,0.794262,-0.349355][-0.394054,0.919087,0][0.521324,0.559024,0][-0.589059,0.794262,-0.113731][-0.394054,0.919087,0][0.521324,0.615126,0][-0.589059,0.794262,0.121893][-0.394054,0.919087,0][0.521324,0.671227,0][-0.156774,0.913161,0.0354358][0,3.14159,0][0.418397,0.650642,0][-0.156774,0.913161,0.0354358][0,3.14159,0][0.418397,0.650642,0][-0.156774,0.913161,-0.0272738][0,3.14159,0][0.418397,0.635711,0][-0.589059,0.794262,-0.113731][-0.394054,0.919087,0][0.521324,0.615126,0][-0.589059,0.794262,0.121893][-0.394054,0.919087,0][0.521324,0.671227,0][-0.589059,0.794262,0.357517][-0.394055,0.919087,-1.31809e-007][0.521323,0.727329,0][-0.156774,0.913161,0.0981455][0,3.14159,0][0.418397,0.665573,0][-0.156774,0.913161,0.0981455][0,3.14159,0][0.418397,0.665573,0][-0.156774,0.913161,0.0354358][0,3.14159,0][0.418397,0.650642,0][-0.589059,0.794262,0.121893][-0.394054,0.919087,0][0.521324,0.671227,0][-0.589059,0.794262,0.357517][-0.394055,0.919087,-1.31809e-007][0.521323,0.727329,0][-0.589059,0.794262,0.59314][0,2.72783,1.38822][0.521323,0.783431,0][-0.156774,0.913161,0.160855][0,1.5708,0][0.418397,0.680504,0][-0.156774,0.913161,0.160855][0,1.5708,0][0.418397,0.680504,0][-0.156774,0.913161,0.0981455][0,3.14159,0][0.418397,0.665573,0][-0.589059,0.794262,0.357517][-0.394055,0.919087,-1.31809e-007][0.521323,0.727329,0][-0.801566,-0.792546,-1.42677][0.0579155,-0.986977,0.150077][0.833655,0.782359,0][-1.32266,-0.823152,-1.42677][0.101759,-1.73256,0.219506][0.798936,0.782358,0][-1.28553,-1.02159,-2.63747][0,0,-1][0.80141,0.701692,0][-1.28553,-1.02159,-2.63747][0,0,-1][0.80141,0.701692,0][-0.78873,-0.890085,-2.63747][0,0,-1][0.834511,0.701692,0][-0.801566,-0.792546,-1.42677][0.0579155,-0.986977,0.150077][0.833655,0.782359,0][-1.32266,-0.823152,-1.42677][0.101759,-1.73256,0.219506][0.798936,0.782358,0][-1.49477,-0.627399,-1.42677][-0.0701665,0.281422,-0.96714][0.787469,0.782358,0][-1.48986,-0.911065,-2.63747][0,0,-1][0.787797,0.701692,0][-1.48986,-0.911065,-2.63747][0,0,-1][0.787797,0.701692,0][-1.28553,-1.02159,-2.63747][0,0,-1][0.80141,0.701692,0][-1.32266,-0.823152,-1.42677][0.101759,-1.73256,0.219506][0.798936,0.782358,0][-1.49477,-0.627399,-1.42677][-0.0701665,0.281422,-0.96714][0.736972,0.302493,0][-0.905867,-0.48057,-1.42677][-0.0431779,0.302365,-0.952214][0.596756,0.302493,0][-0.916138,-0.745492,-2.63747][0,0,-1][0.599203,0.0142272,0][-0.916138,-0.745492,-2.63747][0,0,-1][0.599203,0.0142272,0][-1.48986,-0.911065,-2.63747][0,0,-1][0.735804,0.0142277,0][-1.49477,-0.627399,-1.42677][-0.0701665,0.281422,-0.96714][0.736972,0.302493,0][-0.905867,-0.48057,-1.42677][-0.0431779,0.302365,-0.952214][0.596756,0.302493,0][-0.303464,-0.406604,-1.42677][-0.0126469,0.341522,-0.939789][0.453325,0.302492,0][-0.309182,-0.659594,-2.63747][0,0,-1][0.454688,0.0142267,0][-0.309182,-0.659594,-2.63747][0,0,-1][0.454688,0.0142267,0][-0.916138,-0.745492,-2.63747][0,0,-1][0.599203,0.0142272,0][-0.905867,-0.48057,-1.42677][-0.0431779,0.302365,-0.952214][0.596756,0.302493,0][-0.303464,-0.406604,-1.42677][-0.0126469,0.341522,-0.939789][0.453325,0.302492,0][0.303464,-0.406604,-1.42677][0.0238475,0.352611,-0.935466][0.308817,0.302492,0][0.309182,-0.659594,-2.63747][0,0,-1][0.307456,0.0142261,0][0.309182,-0.659594,-2.63747][0,0,-1][0.307456,0.0142261,0][-0.309182,-0.659594,-2.63747][0,0,-1][0.454688,0.0142267,0][-0.303464,-0.406604,-1.42677][-0.0126469,0.341522,-0.939789][0.453325,0.302492,0][0.303464,-0.406604,-1.42677][0.0238475,0.352611,-0.935466][0.308817,0.302492,0][0.905867,-0.48057,-1.42677][0.0611154,0.333479,-0.940774][0.165386,0.302491,0][0.916138,-0.745492,-2.63747][0,0,-1][0.162941,0.0142256,0][0.916138,-0.745492,-2.63747][0,0,-1][0.162941,0.0142256,0][0.309182,-0.659594,-2.63747][0,0,-1][0.307456,0.0142261,0][0.303464,-0.406604,-1.42677][0.0238475,0.352611,-0.935466][0.308817,0.302492,0][0.905867,-0.48057,-1.42677][0.0611154,0.333479,-0.940774][0.165386,0.302491,0][1.49477,-0.627399,-1.42677][2.47197,-0.563967,-0.0488415][0.02517,0.302491,0][1.48986,-0.911065,-2.63747][0,0,-1][0.0263401,0.0142251,0][1.48986,-0.911065,-2.63747][0,0,-1][0.0263401,0.0142251,0][0.916138,-0.745492,-2.63747][0,0,-1][0.162941,0.0142256,0][0.905867,-0.48057,-1.42677][0.0611154,0.333479,-0.940774][0.165386,0.302491,0][1.49477,-0.627399,-1.42677][2.47197,-0.563967,-0.0488415][0.986654,0.78236,0][1.32266,-0.823152,-1.42677][-0.130841,-1.72571,0.256307][0.975187,0.78236,0][1.28553,-1.02159,-2.63747][0,0,-1][0.972714,0.701694,0][1.28553,-1.02159,-2.63747][0,0,-1][0.972714,0.701694,0][1.48986,-0.911065,-2.63747][0,0,-1][0.986328,0.701694,0][1.49477,-0.627399,-1.42677][2.47197,-0.563967,-0.0488415][0.986654,0.78236,0][1.32266,-0.823152,-1.42677][-0.130841,-1.72571,0.256307][0.975187,0.78236,0][0.801566,-0.792546,-1.42677][-0.0262455,-0.993937,0.106768][0.940468,0.78236,0][0.78873,-0.890085,-2.63747][0,0,-1][0.939614,0.701694,0][0.78873,-0.890085,-2.63747][0,0,-1][0.939614,0.701694,0][1.28553,-1.02159,-2.63747][0,0,-1][0.972714,0.701694,0][1.32266,-0.823152,-1.42677][-0.130841,-1.72571,0.256307][0.975187,0.78236,0][0.801566,-0.792546,-1.42677][-0.0262455,-0.993937,0.106768][0.940468,0.78236,0][0.268523,-0.765198,-1.42677][-0.0209412,-0.999302,0.0309216][0.904953,0.782359,0][0.265881,-0.822046,-2.63747][0,0,-1][0.904777,0.701693,0][0.265881,-0.822046,-2.63747][0,0,-1][0.904777,0.701693,0][0.78873,-0.890085,-2.63747][0,0,-1][0.939614,0.701694,0][0.801566,-0.792546,-1.42677][-0.0262455,-0.993937,0.106768][0.940468,0.78236,0][0.268523,-0.765198,-1.42677][-0.0209412,-0.999302,0.0309216][0.904953,0.782359,0][-0.268523,-0.765198,-1.42677][0.0061916,-0.99917,0.0402509][0.86917,0.782359,0][-0.265881,-0.822046,-2.63747][0,0,-1][0.869347,0.701693,0][-0.265881,-0.822046,-2.63747][0,0,-1][0.869347,0.701693,0][0.265881,-0.822046,-2.63747][0,0,-1][0.904777,0.701693,0][0.268523,-0.765198,-1.42677][-0.0209412,-0.999302,0.0309216][0.904953,0.782359,0][-0.268523,-0.765198,-1.42677][0.0061916,-0.99917,0.0402509][0.86917,0.782359,0][-0.801566,-0.792546,-1.42677][0.0579155,-0.986977,0.150077][0.833655,0.782359,0][-0.78873,-0.890085,-2.63747][0,0,-1][0.834511,0.701692,0][-0.78873,-0.890085,-2.63747][0,0,-1][0.834511,0.701692,0][-0.265881,-0.822046,-2.63747][0,0,-1][0.869347,0.701693,0][-0.268523,-0.765198,-1.42677][0.0061916,-0.99917,0.0402509][0.86917,0.782359,0][-0.366464,-0.756994,1.10347][0,-1,0][0.862643,0.950944,0][-1.09939,-0.756994,1.10347][0,-1,0][0.81381,0.950943,0][-0.353435,0.779069,0.357517][0,-1,0][0.863512,0.901242,0][-0.353435,0.779069,0.357517][0,-1,0][0.863512,0.901242,0][-0.117812,0.779069,0.357517][0,-1,0][0.879211,0.901242,0][-0.366464,-0.756994,1.10347][0,-1,0][0.862643,0.950944,0][-1.09939,-0.756994,1.10347][0,-1,0][0.81381,0.950943,0][-1.09939,-0.756994,0.370545][0,-1,0][0.81381,0.90211,0][-0.353435,0.779069,0.121893][0,-1,0][0.863512,0.885543,0][-0.353435,0.779069,0.121893][0,-1,0][0.863512,0.885543,0][-0.353435,0.779069,0.357517][0,-1,0][0.863512,0.901242,0][-1.09939,-0.756994,1.10347][0,-1,0][0.81381,0.950943,0][-1.09939,-0.756994,0.370545][0,-1,0][0.81381,0.90211,0][-1.09939,-0.756994,-0.362383][0,-1,0][0.813811,0.853277,0][-0.353435,0.779069,-0.113731][0,-1,0][0.863512,0.869844,0][-0.353435,0.779069,-0.113731][0,-1,0][0.863512,0.869844,0][-0.353435,0.779069,0.121893][0,-1,0][0.863512,0.885543,0][-1.09939,-0.756994,0.370545][0,-1,0][0.81381,0.90211,0][-1.09939,-0.756994,-0.362383][0,-1,0][0.813811,0.853277,0][-1.09939,-0.756994,-1.09531][0.136901,-0.970477,0.198577][0.813811,0.804443,0][-0.353435,0.779069,-0.349354][0,-1,0][0.863512,0.854145,0][-0.353435,0.779069,-0.349354][0,-1,0][0.863512,0.854145,0][-0.353435,0.779069,-0.113731][0,-1,0][0.863512,0.869844,0][-1.09939,-0.756994,-0.362383][0,-1,0][0.813811,0.853277,0][-1.09939,-0.756994,-1.09531][0.136901,-0.970477,0.198577][0.813811,0.804443,0][-0.366464,-0.756994,-1.09531][0,-0.999694,0.0247433][0.862645,0.804444,0][-0.117812,0.779069,-0.349355][0,-1,0][0.879211,0.854145,0][-0.117812,0.779069,-0.349355][0,-1,0][0.879211,0.854145,0][-0.353435,0.779069,-0.349354][0,-1,0][0.863512,0.854145,0][-1.09939,-0.756994,-1.09531][0.136901,-0.970477,0.198577][0.813811,0.804443,0][-0.366464,-0.756994,-1.09531][0,-0.999694,0.0247433][0.862645,0.804444,0][0.366464,-0.756994,-1.09531][-0.0196618,-0.998673,0.0476021][0.911478,0.804444,0][0.117812,0.779069,-0.349354][0,-1,0][0.89491,0.854145,0][0.117812,0.779069,-0.349354][0,-1,0][0.89491,0.854145,0][-0.117812,0.779069,-0.349355][0,-1,0][0.879211,0.854145,0][-0.366464,-0.756994,-1.09531][0,-0.999694,0.0247433][0.862645,0.804444,0][0.366464,-0.756994,-1.09531][-0.0196618,-0.998673,0.0476021][0.911478,0.804444,0][1.09939,-0.756994,-1.09531][-0.0490963,-0.992876,0.108567][0.960311,0.804445,0][0.353435,0.779069,-0.349354][0,-1,0][0.910609,0.854146,0][0.353435,0.779069,-0.349354][0,-1,0][0.910609,0.854146,0][0.117812,0.779069,-0.349354][0,-1,0][0.89491,0.854145,0][0.366464,-0.756994,-1.09531][-0.0196618,-0.998673,0.0476021][0.911478,0.804444,0][1.09939,-0.756994,-1.09531][-0.0490963,-0.992876,0.108567][0.960311,0.804445,0][1.09939,-0.756994,-0.362383][0,-1,0][0.960311,0.853278,0][0.353435,0.779069,-0.113731][0,-1,0][0.910609,0.869845,0][0.353435,0.779069,-0.113731][0,-1,0][0.910609,0.869845,0][0.353435,0.779069,-0.349354][0,-1,0][0.910609,0.854146,0][1.09939,-0.756994,-1.09531][-0.0490963,-0.992876,0.108567][0.960311,0.804445,0][1.09939,-0.756994,-0.362383][0,-1,0][0.960311,0.853278,0][1.09939,-0.756994,0.370545][0,-1,0][0.96031,0.902111,0][0.353435,0.779069,0.121893][0,-1,0][0.910609,0.885544,0][0.353435,0.779069,0.121893][0,-1,0][0.910609,0.885544,0][0.353435,0.779069,-0.113731][0,-1,0][0.910609,0.869845,0][1.09939,-0.756994,-0.362383][0,-1,0][0.960311,0.853278,0][1.09939,-0.756994,0.370545][0,-1,0][0.96031,0.902111,0][1.09939,-0.756994,1.10347][0,-1,0][0.96031,0.950945,0][0.353435,0.779069,0.357517][0,-1,0][0.910609,0.901243,0][0.353435,0.779069,0.357517][0,-1,0][0.910609,0.901243,0][0.353435,0.779069,0.121893][0,-1,0][0.910609,0.885544,0][1.09939,-0.756994,0.370545][0,-1,0][0.96031,0.902111,0][1.09939,-0.756994,1.10347][0,-1,0][0.96031,0.950945,0][0.366464,-0.756994,1.10347][0,-1,0][0.911476,0.950944,0][0.117812,0.779069,0.357517][0,-1,0][0.89491,0.901243,0][0.117812,0.779069,0.357517][0,-1,0][0.89491,0.901243,0][0.353435,0.779069,0.357517][0,-1,0][0.910609,0.901243,0][1.09939,-0.756994,1.10347][0,-1,0][0.96031,0.950945,0][0.366464,-0.756994,1.10347][0,-1,0][0.911476,0.950944,0][-0.366464,-0.756994,1.10347][0,-1,0][0.862643,0.950944,0][-0.117812,0.779069,0.357517][0,-1,0][0.879211,0.901242,0][-0.117812,0.779069,0.357517][0,-1,0][0.879211,0.901242,0][0.117812,0.779069,0.357517][0,-1,0][0.89491,0.901243,0][0.366464,-0.756994,1.10347][0,-1,0][0.911476,0.950944,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/BlueSteelBatHelm.mesh b/shareddata/charcustom/hats/fonts/BlueSteelBatHelm.mesh deleted file mode 100644 index d5119f5..0000000 --- a/shareddata/charcustom/hats/fonts/BlueSteelBatHelm.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -744 -[0.00678763,0.925086,-1.31209][-0.444023,0.152563,-3.08825][0.0664683,0.714795,0][0.00678763,0.210332,-1.31209][-0.172432,0,-1.19929][0.01,0.714795,0][-0.36668,0.925086,-1.2584][-0.223547,0,-1.55481][0.0664683,0.7443,0][-0.36668,0.351996,-1.2584][-0.818902,0,-3.10204][0.021192,0.7443,0][-0.36668,0.925086,-1.2584][-0.223547,0,-1.55481][0.0664683,0.7443,0][0.00678763,0.210332,-1.31209][-0.172432,0,-1.19929][0.01,0.714795,0][-0.36668,0.925086,-1.2584][0,0,0][0.0664683,0.7443,0][0.00678761,1.81092,-1.22396][-0.0570781,0.0394964,-0.396988][0.136453,0.714795,0][-0.36668,0.925086,-1.2584][-0.223547,0,-1.55481][0.0664683,0.7443,0][0.00678763,0.925086,-1.31209][-0.444023,0.152563,-3.08825][0.0664683,0.714795,0][-0.36668,0.925086,-1.2584][-0.223547,0,-1.55481][0.0664683,0.7443,0][0.00678761,1.81092,-1.22396][-0.0570781,0.0394964,-0.396988][0.136453,0.714795,0][0.00678763,0.310982,-1.16759][0,0,0][0.148107,0.196623,0][0.00678763,0.310982,-1.16759][0.132289,-0.0786685,1.15303][0.148107,0.196623,0][-0.325967,0.452645,-1.11974][0,0,0][0.159299,0.192844,0][-0.325967,0.452645,-1.11974][0.203345,-0.120924,1.77236][0.159299,0.192844,0][-0.325967,0.452645,-1.11974][0,0,0][0.159299,0.192844,0][0.00678763,0.310982,-1.16759][0.132289,-0.0786685,1.15303][0.148107,0.196623,0][-0.36668,-0.964678,-1.2584][-1.20716,-0.0222758,-2.57617][0.0473247,0.823435,0][-0.36668,-1.43712,-1.2584][-0.652532,0,-1.42885][0.01,0.823435,0][-0.709891,-0.964678,-1.10166][-0.540641,0,-0.841253][0.0473247,0.85055,0][-0.709891,-1.43712,-1.10166][-0.652532,0,-1.42885][0.01,0.85055,0][-0.709891,-0.964678,-1.10166][-0.540641,0,-0.841253][0.0473247,0.85055,0][-0.36668,-1.43712,-1.2584][-0.652532,0,-1.42885][0.01,0.823435,0][-0.480269,-0.577191,-1.22205][-1.04801,-0.128238,-1.90829][0.0779377,0.832409,0][-0.36668,-0.964678,-1.2584][-1.20716,-0.0222758,-2.57617][0.0473247,0.823435,0][-0.709891,-0.492237,-1.10166][-2.53101,-0.0315985,-3.31751][0.0846494,0.85055,0][-0.709891,-0.964678,-1.10166][-0.540641,0,-0.841253][0.0473247,0.85055,0][-0.709891,-0.492237,-1.10166][-2.53101,-0.0315985,-3.31751][0.0846494,0.85055,0][-0.36668,-0.964678,-1.2584][-1.20716,-0.0222758,-2.57617][0.0473247,0.823435,0][-0.36668,0.925086,-1.2584][-0.223547,0,-1.55481][0.0664683,0.7443,0][-0.36668,0.351996,-1.2584][-0.818902,0,-3.10204][0.021192,0.7443,0][-0.709891,0.925086,-1.10166][-0.652533,0,-1.42885][0.0664683,0.771415,0][-0.709891,0.452645,-1.10166][-1.94546,-0.0601421,-2.91812][0.0291436,0.771415,0][-0.709891,0.925086,-1.10166][-0.652533,0,-1.42885][0.0664683,0.771415,0][-0.36668,0.351996,-1.2584][-0.818902,0,-3.10204][0.021192,0.7443,0][-0.709891,0.925086,-1.10166][0,0,0][0.977617,0.844355,0][-0.36668,0.925086,-1.2584][0,0,0][0.99,0.844355,0][-0.709891,0.925086,-1.10166][-0.652533,0,-1.42885][0.977617,0.844355,0][-0.36668,0.925086,-1.2584][-0.223547,0,-1.55481][0.99,0.844355,0][-0.709891,0.925086,-1.10166][-0.652533,0,-1.42885][0.977617,0.844355,0][-0.36668,0.925086,-1.2584][0,0,0][0.99,0.844355,0][-0.631765,0.452645,-0.980089][0,0,0][0.159299,0.181811,0][-0.325967,0.452645,-1.11974][0,0,0][0.159299,0.192844,0][-0.631765,0.452645,-0.980089][0.584358,-0.270883,0.76495][0.159299,0.181811,0][-0.325967,0.452645,-1.11974][0.203345,-0.120924,1.77236][0.159299,0.192844,0][-0.631765,0.452645,-0.980089][0.584358,-0.270883,0.76495][0.159299,0.181811,0][-0.325967,0.452645,-1.11974][0,0,0][0.159299,0.192844,0][-0.325967,-0.964678,-1.11974][1.17743,0.0139172,2.57821][0.812235,0.64996,0][-0.439557,-0.577191,-1.07256][0.96374,0.00892409,2.04061][0.842848,0.640986,0][-0.631765,-0.964678,-0.980089][0.541988,0.00189039,0.840384][0.812235,0.625801,0][-0.631765,-0.492237,-0.980089][2.44858,0.0497682,3.30348][0.84956,0.625801,0][-0.631765,-0.964678,-0.980089][0.541988,0.00189039,0.840384][0.812235,0.625801,0][-0.439557,-0.577191,-1.07256][0.96374,0.00892409,2.04061][0.842848,0.640986,0][-0.325967,-1.43712,-1.11974][0.652532,0,1.42885][0.77491,0.64996,0][-0.325967,-0.964678,-1.11974][1.17743,0.0139172,2.57821][0.812235,0.64996,0][-0.631765,-1.43712,-0.980089][0.652533,0,1.42885][0.77491,0.625801,0][-0.631765,-0.964678,-0.980089][0.541988,0.00189039,0.840384][0.812235,0.625801,0][-0.631765,-1.43712,-0.980089][0.652533,0,1.42885][0.77491,0.625801,0][-0.325967,-0.964678,-1.11974][1.17743,0.0139172,2.57821][0.812235,0.64996,0][-0.36668,-1.43712,-1.2584][-0.652532,0,-1.42885][0.473931,0.440618,0][-0.325967,-1.43712,-1.11974][0.652532,0,1.42885][0.485248,0.442126,0][-0.709891,-1.43712,-1.10166][-0.652532,0,-1.42885][0.482033,0.411931,0][-0.631765,-1.43712,-0.980089][0.652533,0,1.42885][0.492466,0.416566,0][-0.709891,-1.43712,-1.10166][-0.652532,0,-1.42885][0.482033,0.411931,0][-0.325967,-1.43712,-1.11974][0.652532,0,1.42885][0.485248,0.442126,0][-0.709891,-0.964678,-1.10166][-0.540641,0,-0.841253][0.0473247,0.85055,0][-0.709891,-1.43712,-1.10166][-0.652532,0,-1.42885][0.01,0.85055,0][-0.995041,-0.964678,-0.854572][-0.75575,0,-0.654861][0.0473247,0.873078,0][-0.995041,-1.43712,-0.854572][-1.02865,1.49772e-007,-1.18713][0.01,0.873078,0][-0.995041,-0.964678,-0.854572][-0.75575,0,-0.654861][0.0473247,0.873078,0][-0.709891,-1.43712,-1.10166][-0.652532,0,-1.42885][0.01,0.85055,0][-0.709891,-0.492237,-1.10166][-2.53101,-0.0315985,-3.31751][0.0846494,0.85055,0][-0.709891,-0.964678,-1.10166][-0.540641,0,-0.841253][0.0473247,0.85055,0][-0.995041,-0.492237,-0.854572][-0.753526,0.0100998,-0.657341][0.0846494,0.873078,0][-0.995041,-0.964678,-0.854572][-0.75575,0,-0.654861][0.0473247,0.873078,0][-0.995041,-0.492237,-0.854572][-0.753526,0.0100998,-0.657341][0.0846494,0.873078,0][-0.709891,-0.964678,-1.10166][-0.540641,0,-0.841253][0.0473247,0.85055,0][-0.789983,-0.0197962,-1.05452][-1.56669,-0.128818,-1.37085][0.121974,0.856878,0][-0.709891,-0.492237,-1.10166][-2.53101,-0.0315985,-3.31751][0.0846494,0.85055,0][-0.972562,0.0729589,-0.854572][-3.44791,0.0569904,-2.75004][0.129302,0.871302,0][-0.995041,-0.492237,-0.854572][-0.753526,0.0100998,-0.657341][0.0846494,0.873078,0][-0.972562,0.0729589,-0.854572][-3.44791,0.0569904,-2.75004][0.129302,0.871302,0][-0.709891,-0.492237,-1.10166][-2.53101,-0.0315985,-3.31751][0.0846494,0.85055,0][-0.709891,0.925086,-1.10166][-0.652533,0,-1.42885][0.0664683,0.771415,0][-0.709891,0.452645,-1.10166][-1.94546,-0.0601421,-2.91812][0.0291436,0.771415,0][-0.995041,0.925086,-0.854572][-1.02151,-0.0351291,-1.11171][0.0664683,0.793943,0][-0.952484,0.399108,-0.854572][-3.47726,-0.0449067,-2.87807][0.024914,0.790581,0][-0.995041,0.925086,-0.854572][-1.02151,-0.0351291,-1.11171][0.0664683,0.793943,0][-0.709891,0.452645,-1.10166][-1.94546,-0.0601421,-2.91812][0.0291436,0.771415,0][-0.995041,0.925086,-0.854572][0,0,0][0.958096,0.844355,0][-0.709891,0.925086,-1.10166][0,0,0][0.977617,0.844355,0][-0.995041,0.925086,-0.854572][-1.02151,-0.0351291,-1.11171][0.958096,0.844355,0][-0.709891,0.925086,-1.10166][-0.652533,0,-1.42885][0.977617,0.844355,0][-0.995041,0.925086,-0.854572][-1.02151,-0.0351291,-1.11171][0.958096,0.844355,0][-0.709891,0.925086,-1.10166][0,0,0][0.977617,0.844355,0][-0.843273,0.399108,-0.75994][1.34355,-0.0154456,1.04274][0.155069,0.164418,0][-0.631765,0.452645,-0.980089][0,0,0][0.159299,0.181811,0][-0.843273,0.399108,-0.75994][0.73379,-0.236728,0.636799][0.155069,0.164418,0][-0.631765,0.452645,-0.980089][0.584358,-0.270883,0.76495][0.159299,0.181811,0][-0.843273,0.399108,-0.75994][0.73379,-0.236728,0.636799][0.155069,0.164418,0][-0.631765,0.452645,-0.980089][0,0,0][0.159299,0.181811,0][-0.631765,-0.492237,-0.980089][2.44858,0.0497682,3.30348][0.84956,0.625801,0][-0.711857,-0.0197962,-0.933245][1.57437,-0.0432182,1.46262][0.886885,0.619473,0][-0.88583,-0.492237,-0.75994][0.763928,-0.00969311,0.645229][0.84956,0.605729,0][-0.852354,0.0729589,-0.75994][3.44372,-0.122204,2.63038][0.894213,0.608374,0][-0.88583,-0.492237,-0.75994][0.763928,-0.00969311,0.645229][0.84956,0.605729,0][-0.711857,-0.0197962,-0.933245][1.57437,-0.0432182,1.46262][0.886885,0.619473,0][-0.631765,-0.964678,-0.980089][0.541988,0.00189039,0.840384][0.812235,0.625801,0][-0.631765,-0.492237,-0.980089][2.44858,0.0497682,3.30348][0.84956,0.625801,0][-0.88583,-0.964678,-0.75994][0.75575,0,0.654861][0.812235,0.605729,0][-0.88583,-0.492237,-0.75994][0.763928,-0.00969311,0.645229][0.84956,0.605729,0][-0.88583,-0.964678,-0.75994][0.75575,0,0.654861][0.812235,0.605729,0][-0.631765,-0.492237,-0.980089][2.44858,0.0497682,3.30348][0.84956,0.625801,0][-0.631765,-1.43712,-0.980089][0.652533,0,1.42885][0.77491,0.625801,0][-0.631765,-0.964678,-0.980089][0.541988,0.00189039,0.840384][0.812235,0.625801,0][-0.88583,-1.43712,-0.75994][1.02865,0,1.18713][0.77491,0.605729,0][-0.88583,-0.964678,-0.75994][0.75575,0,0.654861][0.812235,0.605729,0][-0.88583,-1.43712,-0.75994][1.02865,0,1.18713][0.77491,0.605729,0][-0.631765,-0.964678,-0.980089][0.541988,0.00189039,0.840384][0.812235,0.625801,0][-0.709891,-1.43712,-1.10166][-0.652532,0,-1.42885][0.482033,0.411931,0][-0.631765,-1.43712,-0.980089][0.652533,0,1.42885][0.492466,0.416566,0][-0.995041,-1.43712,-0.854572][-1.02865,1.49772e-007,-1.18713][0.497888,0.386689,0][-0.88583,-1.43712,-0.75994][1.02865,0,1.18713][0.506593,0.394076,0][-0.995041,-1.43712,-0.854572][-1.02865,1.49772e-007,-1.18713][0.497888,0.386689,0][-0.631765,-1.43712,-0.980089][0.652533,0,1.42885][0.492466,0.416566,0][-0.995041,-0.964678,-0.854572][-0.75575,0,-0.654861][0.321736,0.01,0][-0.995041,-1.43712,-0.854572][-1.02865,1.49772e-007,-1.18713][0.284412,0.01,0][-1.19903,-0.964678,-0.537161][-0.909632,0,-0.415415][0.321736,0.0350768,0][-1.19903,-1.43712,-0.537161][-1.32144,0,-0.849236][0.284412,0.0350768,0][-1.19903,-0.964678,-0.537161][-0.909632,0,-0.415415][0.321736,0.0350768,0][-0.995041,-1.43712,-0.854572][-1.02865,1.49772e-007,-1.18713][0.284412,0.01,0][-0.995041,-0.492237,-0.854572][-0.753526,0.0100998,-0.657341][0.359061,0.01,0][-0.995041,-0.964678,-0.854572][-0.75575,0,-0.654861][0.321736,0.01,0][-1.19903,-0.492237,-0.537161][-0.909632,0,-0.415415][0.359061,0.0350768,0][-1.19903,-0.964678,-0.537161][-0.909632,0,-0.415415][0.321736,0.0350768,0][-1.19903,-0.492237,-0.537161][-0.909632,0,-0.415415][0.359061,0.0350768,0][-0.995041,-0.964678,-0.854572][-0.75575,0,-0.654861][0.321736,0.01,0][-0.972562,0.0729589,-0.854572][-3.44791,0.0569904,-2.75004][0.403714,0.01,0][-0.995041,-0.492237,-0.854572][-0.753526,0.0100998,-0.657341][0.359061,0.01,0][-1.19903,-0.0197962,-0.537161][-0.902141,0.00593437,-0.4314][0.396386,0.0350768,0][-1.19903,-0.492237,-0.537161][-0.909632,0,-0.415415][0.359061,0.0350768,0][-1.19903,-0.0197962,-0.537161][-0.902141,0.00593437,-0.4314][0.396386,0.0350768,0][-0.995041,-0.492237,-0.854572][-0.753526,0.0100998,-0.657341][0.359061,0.01,0][-0.952484,0.399108,-0.854572][-3.47726,-0.0449067,-2.87807][0.429481,0.01,0][-0.972562,0.0729589,-0.854572][-3.44791,0.0569904,-2.75004][0.403714,0.01,0][-1.19903,0.452645,-0.537161][-0.892247,0.0050104,-0.45152][0.433711,0.0350768,0][-1.19903,-0.0197962,-0.537161][-0.902141,0.00593437,-0.4314][0.396386,0.0350768,0][-1.19903,0.452645,-0.537161][-0.892247,0.0050104,-0.45152][0.433711,0.0350768,0][-0.972562,0.0729589,-0.854572][-3.44791,0.0569904,-2.75004][0.403714,0.01,0][-0.995041,0.925086,-0.854572][-1.02151,-0.0351291,-1.11171][0.471035,0.01,0][-0.952484,0.399108,-0.854572][-3.47726,-0.0449067,-2.87807][0.429481,0.01,0][-1.19903,0.925086,-0.537161][-1.2886,-0.062568,-0.897219][0.471035,0.0350768,0][-1.19903,0.452645,-0.537161][-0.892247,0.0050104,-0.45152][0.433711,0.0350768,0][-1.19903,0.925086,-0.537161][-1.2886,-0.062568,-0.897219][0.471035,0.0350768,0][-0.952484,0.399108,-0.854572][-3.47726,-0.0449067,-2.87807][0.429481,0.01,0][-1.19903,0.925086,-0.537161][0,0,0][0.93302,0.844355,0][-0.995041,0.925086,-0.854572][0,0,0][0.958096,0.844355,0][-1.19903,0.925086,-0.537161][-1.2886,-0.062568,-0.897219][0.93302,0.844355,0][-0.995041,0.925086,-0.854572][-1.02151,-0.0351291,-1.11171][0.958096,0.844355,0][-1.19903,0.925086,-0.537161][-1.2886,-0.062568,-0.897219][0.93302,0.844355,0][-0.995041,0.925086,-0.854572][0,0,0][0.958096,0.844355,0][-0.843273,0.399108,-0.75994][1.34355,-0.0154456,1.04274][0.155069,0.164418,0][-0.843273,0.399108,-0.75994][0.73379,-0.236728,0.636799][0.155069,0.164418,0][-1.06758,0.452645,-0.47713][0.892252,0,0.451539][0.159299,0.142075,0][-1.06758,0.452645,-0.47713][0.840976,-0.270925,0.468357][0.159299,0.142075,0][-1.06758,0.452645,-0.47713][0.892252,0,0.451539][0.159299,0.142075,0][-0.843273,0.399108,-0.75994][0.73379,-0.236728,0.636799][0.155069,0.164418,0][-0.852354,0.0729589,-0.75994][3.44372,-0.122204,2.63038][0.129302,0.164418,0][-0.843273,0.399108,-0.75994][1.34355,-0.0154456,1.04274][0.155069,0.164418,0][-1.06758,-0.0197962,-0.47713][0.891672,-0.00217731,0.452678][0.121974,0.142075,0][-1.06758,0.452645,-0.47713][0.892252,0,0.451539][0.159299,0.142075,0][-1.06758,-0.0197962,-0.47713][0.891672,-0.00217731,0.452678][0.121974,0.142075,0][-0.843273,0.399108,-0.75994][1.34355,-0.0154456,1.04274][0.155069,0.164418,0][-0.88583,-0.492237,-0.75994][0.763928,-0.00969311,0.645229][0.0846494,0.164418,0][-0.852354,0.0729589,-0.75994][3.44372,-0.122204,2.63038][0.129302,0.164418,0][-1.06758,-0.492237,-0.47713][0.906645,-0.00810256,0.421816][0.0846494,0.142075,0][-1.06758,-0.0197962,-0.47713][0.891672,-0.00217731,0.452678][0.121974,0.142075,0][-1.06758,-0.492237,-0.47713][0.906645,-0.00810256,0.421816][0.0846494,0.142075,0][-0.852354,0.0729589,-0.75994][3.44372,-0.122204,2.63038][0.129302,0.164418,0][-0.88583,-0.964678,-0.75994][0.75575,0,0.654861][0.0473247,0.164418,0][-0.88583,-0.492237,-0.75994][0.763928,-0.00969311,0.645229][0.0846494,0.164418,0][-1.06758,-0.964678,-0.47713][0.909632,0,0.415415][0.0473247,0.142075,0][-1.06758,-0.492237,-0.47713][0.906645,-0.00810256,0.421816][0.0846494,0.142075,0][-1.06758,-0.964678,-0.47713][0.909632,0,0.415415][0.0473247,0.142075,0][-0.88583,-0.492237,-0.75994][0.763928,-0.00969311,0.645229][0.0846494,0.164418,0][-0.88583,-1.43712,-0.75994][1.02865,0,1.18713][0.01,0.164418,0][-0.88583,-0.964678,-0.75994][0.75575,0,0.654861][0.0473247,0.164418,0][-1.06758,-1.43712,-0.47713][1.32144,0,0.849237][0.01,0.142075,0][-1.06758,-0.964678,-0.47713][0.909632,0,0.415415][0.0473247,0.142075,0][-1.06758,-1.43712,-0.47713][1.32144,0,0.849237][0.01,0.142075,0][-0.88583,-0.964678,-0.75994][0.75575,0,0.654861][0.0473247,0.164418,0][-0.995041,-1.43712,-0.854572][-1.02865,1.49772e-007,-1.18713][0.497888,0.386689,0][-0.88583,-1.43712,-0.75994][1.02865,0,1.18713][0.506593,0.394076,0][-1.19903,-1.43712,-0.537161][-1.32144,0,-0.849236][0.520213,0.366936,0][-1.06758,-1.43712,-0.47713][1.32144,0,0.849237][0.526484,0.376476,0][-1.19903,-1.43712,-0.537161][-1.32144,0,-0.849236][0.520213,0.366936,0][-0.88583,-1.43712,-0.75994][1.02865,0,1.18713][0.506593,0.394076,0][-1.19903,-0.964678,-0.537161][-0.909632,0,-0.415415][0.321736,0.0350768,0][-1.19903,-1.43712,-0.537161][-1.32144,0,-0.849236][0.284412,0.0350768,0][-1.30533,-0.964678,-0.175137][-4.58513,0,-0.885089][0.321736,0.0636781,0][-1.30533,-1.43712,-0.175137][-1.50717,0,-0.442545][0.284412,0.0636781,0][-1.30533,-0.964678,-0.175137][-4.58513,0,-0.885089][0.321736,0.0636781,0][-1.19903,-1.43712,-0.537161][-1.32144,0,-0.849236][0.284412,0.0350768,0][-1.19903,-0.492237,-0.537161][-0.909632,0,-0.415415][0.359061,0.0350768,0][-1.19903,-0.964678,-0.537161][-0.909632,0,-0.415415][0.321736,0.0350768,0][-1.30533,-0.492237,-0.175137][-3.01434,0,-0.88509][0.359061,0.0636781,0][-1.30533,-0.964678,-0.175137][-4.58513,0,-0.885089][0.321736,0.0636781,0][-1.30533,-0.492237,-0.175137][-3.01434,0,-0.88509][0.359061,0.0636781,0][-1.19903,-0.964678,-0.537161][-0.909632,0,-0.415415][0.321736,0.0350768,0][-1.19903,-0.0197962,-0.537161][-0.902141,0.00593437,-0.4314][0.396386,0.0350768,0][-1.19903,-0.492237,-0.537161][-0.909632,0,-0.415415][0.359061,0.0350768,0][-1.30533,-0.0197962,-0.175137][-3.01434,0,-0.88509][0.396386,0.0636781,0][-1.30533,-0.492237,-0.175137][-3.01434,0,-0.88509][0.359061,0.0636781,0][-1.30533,-0.0197962,-0.175137][-3.01434,0,-0.88509][0.396386,0.0636781,0][-1.19903,-0.492237,-0.537161][-0.909632,0,-0.415415][0.359061,0.0350768,0][-1.19903,0.452645,-0.537161][-0.892247,0.0050104,-0.45152][0.433711,0.0350768,0][-1.19903,-0.0197962,-0.537161][-0.902141,0.00593437,-0.4314][0.396386,0.0350768,0][-1.30533,0.452645,-0.175137][-4.58513,0,-0.885089][0.433711,0.0636781,0][-1.30533,-0.0197962,-0.175137][-3.01434,0,-0.88509][0.396386,0.0636781,0][-1.30533,0.452645,-0.175137][-4.58513,0,-0.885089][0.433711,0.0636781,0][-1.19903,-0.0197962,-0.537161][-0.902141,0.00593437,-0.4314][0.396386,0.0350768,0][-1.19903,0.925086,-0.537161][-1.2886,-0.062568,-0.897219][0.471035,0.0350768,0][-1.19903,0.452645,-0.537161][-0.892247,0.0050104,-0.45152][0.433711,0.0350768,0][-1.30533,0.925086,-0.175137][-1.50717,0,-0.442545][0.471035,0.0636781,0][-1.30533,0.452645,-0.175137][-4.58513,0,-0.885089][0.433711,0.0636781,0][-1.30533,0.925086,-0.175137][-1.50717,0,-0.442545][0.471035,0.0636781,0][-1.19903,0.452645,-0.537161][-0.892247,0.0050104,-0.45152][0.433711,0.0350768,0][-1.30533,0.925086,-0.175137][0,0,0][0.904418,0.844355,0][-1.19903,0.925086,-0.537161][0,0,0][0.93302,0.844355,0][-1.30533,0.925086,-0.175137][-1.50717,0,-0.442545][0.904418,0.844355,0][-1.19903,0.925086,-0.537161][-1.2886,-0.062568,-0.897219][0.93302,0.844355,0][-1.30533,0.925086,-0.175137][-1.50717,0,-0.442545][0.904418,0.844355,0][-1.19903,0.925086,-0.537161][0,0,0][0.93302,0.844355,0][-1.16229,0.452645,-0.154571][0.989821,0,0.142315][0.159299,0.116591,0][-1.06758,0.452645,-0.47713][0.892252,0,0.451539][0.159299,0.142075,0][-1.16229,0.452645,-0.154571][0.944311,-0.299737,0.135771][0.159299,0.116591,0][-1.06758,0.452645,-0.47713][0.840976,-0.270925,0.468357][0.159299,0.142075,0][-1.16229,0.452645,-0.154571][0.944311,-0.299737,0.135771][0.159299,0.116591,0][-1.06758,0.452645,-0.47713][0.892252,0,0.451539][0.159299,0.142075,0][-1.06758,-0.0197962,-0.47713][0.891672,-0.00217731,0.452678][0.121974,0.142075,0][-1.06758,0.452645,-0.47713][0.892252,0,0.451539][0.159299,0.142075,0][-1.16229,-0.0197962,-0.154571][0.989821,0,0.142315][0.121974,0.116591,0][-1.16229,0.452645,-0.154571][0.989821,0,0.142315][0.159299,0.116591,0][-1.16229,-0.0197962,-0.154571][0.989821,0,0.142315][0.121974,0.116591,0][-1.06758,0.452645,-0.47713][0.892252,0,0.451539][0.159299,0.142075,0][-1.06758,-0.492237,-0.47713][0.906645,-0.00810256,0.421816][0.0846494,0.142075,0][-1.06758,-0.0197962,-0.47713][0.891672,-0.00217731,0.452678][0.121974,0.142075,0][-1.16229,-0.492237,-0.154571][0.989821,0,0.142315][0.0846494,0.116591,0][-1.16229,-0.0197962,-0.154571][0.989821,0,0.142315][0.121974,0.116591,0][-1.16229,-0.492237,-0.154571][0.989821,0,0.142315][0.0846494,0.116591,0][-1.06758,-0.0197962,-0.47713][0.891672,-0.00217731,0.452678][0.121974,0.142075,0][-1.06758,-0.964678,-0.47713][0.909632,0,0.415415][0.0473247,0.142075,0][-1.06758,-0.492237,-0.47713][0.906645,-0.00810256,0.421816][0.0846494,0.142075,0][-1.16229,-0.964678,-0.154571][0.989821,0,0.142315][0.0473247,0.116591,0][-1.16229,-0.492237,-0.154571][0.989821,0,0.142315][0.0846494,0.116591,0][-1.16229,-0.964678,-0.154571][0.989821,0,0.142315][0.0473247,0.116591,0][-1.06758,-0.492237,-0.47713][0.906645,-0.00810256,0.421816][0.0846494,0.142075,0][-1.06758,-1.43712,-0.47713][1.32144,0,0.849237][0.01,0.142075,0][-1.06758,-0.964678,-0.47713][0.909632,0,0.415415][0.0473247,0.142075,0][-1.16229,-1.43712,-0.154571][1.50717,0,0.442544][0.01,0.116591,0][-1.16229,-0.964678,-0.154571][0.989821,0,0.142315][0.0473247,0.116591,0][-1.16229,-1.43712,-0.154571][1.50717,0,0.442544][0.01,0.116591,0][-1.06758,-0.964678,-0.47713][0.909632,0,0.415415][0.0473247,0.142075,0][-1.19903,-1.43712,-0.537161][-1.32144,0,-0.849236][0.520213,0.366936,0][-1.06758,-1.43712,-0.47713][1.32144,0,0.849237][0.526484,0.376476,0][-1.30533,-1.43712,-0.175137][-1.50717,0,-0.442545][0.547198,0.354273,0][-1.16229,-1.43712,-0.154571][1.50717,0,0.442544][0.550528,0.365193,0][-1.30533,-1.43712,-0.175137][-1.50717,0,-0.442545][0.547198,0.354273,0][-1.06758,-1.43712,-0.47713][1.32144,0,0.849237][0.526484,0.376476,0][-1.30533,-0.964678,-0.175137][-4.58513,0,-0.885089][0.321736,0.0636781,0][-1.30533,-1.43712,-0.175137][-1.50717,0,-0.442545][0.284412,0.0636781,0][-1.30533,-0.964678,0.202171][-4.58513,0,0.885089][0.321736,0.0934869,0][-1.30533,-1.43712,0.202171][-1.5708,0,4.96289e-007][0.284412,0.0934869,0][-1.30533,-0.964678,0.202171][-4.58513,0,0.885089][0.321736,0.0934869,0][-1.30533,-1.43712,-0.175137][-1.50717,0,-0.442545][0.284412,0.0636781,0][-1.769,-0.492237,-0.175136][-1.32712,0,4.193e-007][0.251735,0.196623,0][-1.769,-0.85523,-0.0848907][-1.81447,0,8.34531e-007][0.244605,0.167946,0][-1.769,-0.492237,0.202171][-1.32712,0,5.42568e-007][0.221926,0.196623,0][-1.769,-0.85523,0.111925][-1.81447,-2.73231e-007,1.09901e-006][0.229056,0.167946,0][-1.769,-0.492237,0.202171][-1.32712,0,5.42568e-007][0.221926,0.196623,0][-1.769,-0.85523,-0.0848907][-1.81447,0,8.34531e-007][0.244605,0.167946,0][-2.23267,-0.0197962,-0.175136][-1.31417,9.11059e-007,0][0.836465,0.888862,0][-2.23267,-0.363707,-0.0848906][-1.82742,3.81874e-007,1.06026e-006][0.843595,0.916032,0][-2.23267,-0.0197963,0.202171][-1.31417,4.67252e-007,5.31697e-007][0.866274,0.888862,0][-2.23267,-0.363707,0.111926][-1.82742,-5.80898e-007,2.2137e-006][0.859144,0.916032,0][-2.23267,-0.0197963,0.202171][-1.31417,4.67252e-007,5.31697e-007][0.866274,0.888862,0][-2.23267,-0.363707,-0.0848906][-1.82742,3.81874e-007,1.06026e-006][0.843595,0.916032,0][-3.12779,1.05679,-0.175136][-1.43125,-0.237181,0][0.810712,0.48471,0][-3.00546,0.318591,-0.0848902][-1.66807,-0.276427,1.43944e-006][0.752392,0.49184,0][-3.12779,1.05679,0.202172][-1.43125,-0.237181,2.9434e-007][0.810712,0.514519,0][-3.00546,0.318591,0.111926][-1.66807,-0.276427,2.02067e-006][0.752392,0.507389,0][-3.12779,1.05679,0.202172][-1.43125,-0.237181,2.9434e-007][0.810712,0.514519,0][-3.00546,0.318591,-0.0848902][-1.66807,-0.276427,1.43944e-006][0.752392,0.49184,0][-1.30533,0.925086,-0.175137][-1.50717,0,-0.442545][0.471035,0.0636781,0][-1.30533,0.452645,-0.175137][-4.58513,0,-0.885089][0.433711,0.0636781,0][-1.30533,0.925086,0.202171][-1.5708,0,4.96288e-007][0.471035,0.0934869,0][-1.30533,0.452645,0.202171][-4.58513,0,0.885089][0.433711,0.0934869,0][-1.30533,0.925086,0.202171][-1.5708,0,4.96288e-007][0.471035,0.0934869,0][-1.30533,0.452645,-0.175137][-4.58513,0,-0.885089][0.433711,0.0636781,0][-1.30533,0.925086,0.202171][0,0,0][0.874609,0.844355,0][-1.30533,0.925086,-0.175137][0,0,0][0.904418,0.844355,0][-1.30533,0.925086,0.202171][-1.5708,0,4.96288e-007][0.874609,0.844355,0][-1.30533,0.925086,-0.175137][-1.50717,0,-0.442545][0.904418,0.844355,0][-1.30533,0.925086,0.202171][-1.5708,0,4.96288e-007][0.874609,0.844355,0][-1.30533,0.925086,-0.175137][0,0,0][0.904418,0.844355,0][-1.16229,0.452645,0.181606][0.989821,0,-0.142315][0.159299,0.0900321,0][-1.16229,0.452645,-0.154571][0.989821,0,0.142315][0.159299,0.116591,0][-1.16229,0.452645,0.181606][0.9443,-0.299766,-0.135785][0.159299,0.0900321,0][-1.16229,0.452645,-0.154571][0.944311,-0.299737,0.135771][0.159299,0.116591,0][-1.16229,0.452645,0.181606][0.9443,-0.299766,-0.135785][0.159299,0.0900321,0][-1.16229,0.452645,-0.154571][0.989821,0,0.142315][0.159299,0.116591,0][-1.16229,-0.0197962,-0.154571][0.989821,0,0.142315][0.121974,0.116591,0][-1.16229,0.452645,-0.154571][0.989821,0,0.142315][0.159299,0.116591,0][-1.16229,-0.0197963,0.181606][0.989821,0,-0.142315][0.121974,0.0900321,0][-1.16229,0.452645,0.181606][0.989821,0,-0.142315][0.159299,0.0900321,0][-1.16229,-0.0197963,0.181606][0.989821,0,-0.142315][0.121974,0.0900321,0][-1.16229,0.452645,-0.154571][0.989821,0,0.142315][0.159299,0.116591,0][-1.16229,-0.492237,-0.154571][0.989821,0,0.142315][0.0846494,0.116591,0][-1.16229,-0.0197962,-0.154571][0.989821,0,0.142315][0.121974,0.116591,0][-1.16229,-0.492237,0.181606][0.989821,0,-0.142315][0.0846494,0.0900321,0][-1.16229,-0.0197963,0.181606][0.989821,0,-0.142315][0.121974,0.0900321,0][-1.16229,-0.492237,0.181606][0.989821,0,-0.142315][0.0846494,0.0900321,0][-1.16229,-0.0197962,-0.154571][0.989821,0,0.142315][0.121974,0.116591,0][-1.16229,-0.964678,-0.154571][0.989821,0,0.142315][0.0473247,0.116591,0][-1.16229,-0.492237,-0.154571][0.989821,0,0.142315][0.0846494,0.116591,0][-1.16229,-0.964678,0.181606][0.989821,0,-0.142315][0.0473247,0.0900321,0][-1.16229,-0.492237,0.181606][0.989821,0,-0.142315][0.0846494,0.0900321,0][-1.16229,-0.964678,0.181606][0.989821,0,-0.142315][0.0473247,0.0900321,0][-1.16229,-0.492237,-0.154571][0.989821,0,0.142315][0.0846494,0.116591,0][-1.16229,-1.43712,-0.154571][1.50717,0,0.442544][0.01,0.116591,0][-1.16229,-0.964678,-0.154571][0.989821,0,0.142315][0.0473247,0.116591,0][-1.16229,-1.43712,0.181606][1.5708,0,-5.57009e-007][0.01,0.0900321,0][-1.16229,-0.964678,0.181606][0.989821,0,-0.142315][0.0473247,0.0900321,0][-1.16229,-1.43712,0.181606][1.5708,0,-5.57009e-007][0.01,0.0900321,0][-1.16229,-0.964678,-0.154571][0.989821,0,0.142315][0.0473247,0.116591,0][-1.30533,-1.43712,-0.175137][-1.50717,0,-0.442545][0.547198,0.354273,0][-1.16229,-1.43712,-0.154571][1.50717,0,0.442544][0.550528,0.365193,0][-1.30533,-1.43712,0.202171][-1.5708,0,4.96289e-007][0.576658,0.349725,0][-1.16229,-1.43712,0.181606][1.5708,0,-5.57009e-007][0.576776,0.361141,0][-1.30533,-1.43712,0.202171][-1.5708,0,4.96289e-007][0.576658,0.349725,0][-1.16229,-1.43712,-0.154571][1.50717,0,0.442544][0.550528,0.365193,0][-1.30533,-0.964678,0.202171][-4.58513,0,0.885089][0.321736,0.0934869,0][-1.30533,-1.43712,0.202171][-1.5708,0,4.96289e-007][0.284412,0.0934869,0][-1.19903,-0.964678,0.564195][-0.909632,0,0.415415][0.321736,0.122088,0][-1.19903,-1.43712,0.564195][-1.50717,0,0.442544][0.284412,0.122088,0][-1.19903,-0.964678,0.564195][-0.909632,0,0.415415][0.321736,0.122088,0][-1.30533,-1.43712,0.202171][-1.5708,0,4.96289e-007][0.284412,0.0934869,0][-1.30533,-0.492237,0.202171][-3.01434,0,0.885089][0.359061,0.0934869,0][-1.30533,-0.964678,0.202171][-4.58513,0,0.885089][0.321736,0.0934869,0][-1.19903,-0.492237,0.564195][-0.909632,0,0.415415][0.359061,0.122088,0][-1.19903,-0.964678,0.564195][-0.909632,0,0.415415][0.321736,0.122088,0][-1.19903,-0.492237,0.564195][-0.909632,0,0.415415][0.359061,0.122088,0][-1.30533,-0.964678,0.202171][-4.58513,0,0.885089][0.321736,0.0934869,0][-1.30533,-0.0197963,0.202171][-3.01434,0,0.885089][0.396386,0.0934869,0][-1.30533,-0.492237,0.202171][-3.01434,0,0.885089][0.359061,0.0934869,0][-1.19903,-0.0197963,0.564195][-0.909632,0,0.415415][0.396386,0.122088,0][-1.19903,-0.492237,0.564195][-0.909632,0,0.415415][0.359061,0.122088,0][-1.19903,-0.0197963,0.564195][-0.909632,0,0.415415][0.396386,0.122088,0][-1.30533,-0.492237,0.202171][-3.01434,0,0.885089][0.359061,0.0934869,0][-1.30533,0.452645,0.202171][-4.58513,0,0.885089][0.433711,0.0934869,0][-1.30533,-0.0197963,0.202171][-3.01434,0,0.885089][0.396386,0.0934869,0][-1.19903,0.452645,0.564195][-0.909632,0,0.415415][0.433711,0.122088,0][-1.19903,-0.0197963,0.564195][-0.909632,0,0.415415][0.396386,0.122088,0][-1.19903,0.452645,0.564195][-0.909632,0,0.415415][0.433711,0.122088,0][-1.30533,-0.0197963,0.202171][-3.01434,0,0.885089][0.396386,0.0934869,0][-1.30533,0.925086,0.202171][-1.5708,0,4.96288e-007][0.471035,0.0934869,0][-1.30533,0.452645,0.202171][-4.58513,0,0.885089][0.433711,0.0934869,0][-1.19903,0.925086,0.564196][-1.50717,0,0.442544][0.471035,0.122088,0][-1.19903,0.452645,0.564195][-0.909632,0,0.415415][0.433711,0.122088,0][-1.19903,0.925086,0.564196][-1.50717,0,0.442544][0.471035,0.122088,0][-1.30533,0.452645,0.202171][-4.58513,0,0.885089][0.433711,0.0934869,0][-1.19903,0.925086,0.564196][0,0,0][0.846008,0.844355,0][-1.30533,0.925086,0.202171][0,0,0][0.874609,0.844355,0][-1.19903,0.925086,0.564196][-1.50717,0,0.442544][0.846008,0.844355,0][-1.30533,0.925086,0.202171][-1.5708,0,4.96288e-007][0.874609,0.844355,0][-1.19903,0.925086,0.564196][-1.50717,0,0.442544][0.846008,0.844355,0][-1.30533,0.925086,0.202171][0,0,0][0.874609,0.844355,0][-1.06758,0.452645,0.504165][0.909632,0,-0.415415][0.159299,0.0645486,0][-1.16229,0.452645,0.181606][0.989821,0,-0.142315][0.159299,0.0900321,0][-1.06758,0.452645,0.504165][0.867809,-0.299737,-0.396315][0.159299,0.0645486,0][-1.16229,0.452645,0.181606][0.9443,-0.299766,-0.135785][0.159299,0.0900321,0][-1.06758,0.452645,0.504165][0.867809,-0.299737,-0.396315][0.159299,0.0645486,0][-1.16229,0.452645,0.181606][0.989821,0,-0.142315][0.159299,0.0900321,0][-1.16229,-0.0197963,0.181606][0.989821,0,-0.142315][0.121974,0.0900321,0][-1.16229,0.452645,0.181606][0.989821,0,-0.142315][0.159299,0.0900321,0][-1.06758,-0.0197963,0.504165][0.909632,0,-0.415415][0.121974,0.0645486,0][-1.06758,0.452645,0.504165][0.909632,0,-0.415415][0.159299,0.0645486,0][-1.06758,-0.0197963,0.504165][0.909632,0,-0.415415][0.121974,0.0645486,0][-1.16229,0.452645,0.181606][0.989821,0,-0.142315][0.159299,0.0900321,0][-1.16229,-0.492237,0.181606][0.989821,0,-0.142315][0.0846494,0.0900321,0][-1.16229,-0.0197963,0.181606][0.989821,0,-0.142315][0.121974,0.0900321,0][-1.06758,-0.492237,0.504165][0.909632,0,-0.415415][0.0846494,0.0645486,0][-1.06758,-0.0197963,0.504165][0.909632,0,-0.415415][0.121974,0.0645486,0][-1.06758,-0.492237,0.504165][0.909632,0,-0.415415][0.0846494,0.0645486,0][-1.16229,-0.0197963,0.181606][0.989821,0,-0.142315][0.121974,0.0900321,0][-1.16229,-0.964678,0.181606][0.989821,0,-0.142315][0.0473247,0.0900321,0][-1.16229,-0.492237,0.181606][0.989821,0,-0.142315][0.0846494,0.0900321,0][-1.06758,-0.964678,0.504165][0.909632,0,-0.415415][0.0473247,0.0645486,0][-1.06758,-0.492237,0.504165][0.909632,0,-0.415415][0.0846494,0.0645486,0][-1.06758,-0.964678,0.504165][0.909632,0,-0.415415][0.0473247,0.0645486,0][-1.16229,-0.492237,0.181606][0.989821,0,-0.142315][0.0846494,0.0900321,0][-1.16229,-1.43712,0.181606][1.5708,0,-5.57009e-007][0.01,0.0900321,0][-1.16229,-0.964678,0.181606][0.989821,0,-0.142315][0.0473247,0.0900321,0][-1.06758,-1.43712,0.504165][1.50717,0,-0.442544][0.01,0.0645486,0][-1.06758,-0.964678,0.504165][0.909632,0,-0.415415][0.0473247,0.0645486,0][-1.06758,-1.43712,0.504165][1.50717,0,-0.442544][0.01,0.0645486,0][-1.16229,-0.964678,0.181606][0.989821,0,-0.142315][0.0473247,0.0900321,0][-1.30533,-1.43712,0.202171][-1.5708,0,4.96289e-007][0.576658,0.349725,0][-1.16229,-1.43712,0.181606][1.5708,0,-5.57009e-007][0.576776,0.361141,0][-1.19903,-1.43712,0.564195][-1.50717,0,0.442544][0.606205,0.353662,0][-1.06758,-1.43712,0.504165][1.50717,0,-0.442544][0.603103,0.364648,0][-1.19903,-1.43712,0.564195][-1.50717,0,0.442544][0.606205,0.353662,0][-1.16229,-1.43712,0.181606][1.5708,0,-5.57009e-007][0.576776,0.361141,0][-1.19903,-0.964678,0.564195][-0.909632,0,0.415415][0.321736,0.122088,0][-1.19903,-1.43712,0.564195][-1.50717,0,0.442544][0.284412,0.122088,0][-0.995041,-0.964678,0.881607][-0.755749,0,0.654861][0.321736,0.147165,0][-0.995041,-1.43712,0.881607][-1.32144,0,0.849237][0.284412,0.147165,0][-0.995041,-0.964678,0.881607][-0.755749,0,0.654861][0.321736,0.147165,0][-1.19903,-1.43712,0.564195][-1.50717,0,0.442544][0.284412,0.122088,0][-1.19903,-0.492237,0.564195][-0.909632,0,0.415415][0.359061,0.122088,0][-1.19903,-0.964678,0.564195][-0.909632,0,0.415415][0.321736,0.122088,0][-0.995041,-0.492237,0.881607][-0.755749,0,0.654861][0.359061,0.147165,0][-0.995041,-0.964678,0.881607][-0.755749,0,0.654861][0.321736,0.147165,0][-0.995041,-0.492237,0.881607][-0.755749,0,0.654861][0.359061,0.147165,0][-1.19903,-0.964678,0.564195][-0.909632,0,0.415415][0.321736,0.122088,0][-1.19903,-0.0197963,0.564195][-0.909632,0,0.415415][0.396386,0.122088,0][-1.19903,-0.492237,0.564195][-0.909632,0,0.415415][0.359061,0.122088,0][-0.995041,-0.0197963,0.881607][-0.755749,0,0.654861][0.396386,0.147165,0][-0.995041,-0.492237,0.881607][-0.755749,0,0.654861][0.359061,0.147165,0][-0.995041,-0.0197963,0.881607][-0.755749,0,0.654861][0.396386,0.147165,0][-1.19903,-0.492237,0.564195][-0.909632,0,0.415415][0.359061,0.122088,0][-1.19903,0.452645,0.564195][-0.909632,0,0.415415][0.433711,0.122088,0][-1.19903,-0.0197963,0.564195][-0.909632,0,0.415415][0.396386,0.122088,0][-0.995041,0.452645,0.881607][-0.755749,0,0.654861][0.433711,0.147165,0][-0.995041,-0.0197963,0.881607][-0.755749,0,0.654861][0.396386,0.147165,0][-0.995041,0.452645,0.881607][-0.755749,0,0.654861][0.433711,0.147165,0][-1.19903,-0.0197963,0.564195][-0.909632,0,0.415415][0.396386,0.122088,0][-1.19903,0.925086,0.564196][-1.50717,0,0.442544][0.471035,0.122088,0][-1.19903,0.452645,0.564195][-0.909632,0,0.415415][0.433711,0.122088,0][-0.995041,0.925086,0.881607][-1.32144,0,0.849237][0.471035,0.147165,0][-0.995041,0.452645,0.881607][-0.755749,0,0.654861][0.433711,0.147165,0][-0.995041,0.925086,0.881607][-1.32144,0,0.849237][0.471035,0.147165,0][-1.19903,0.452645,0.564195][-0.909632,0,0.415415][0.433711,0.122088,0][-0.995041,0.925086,0.881607][0,0,0][0.820931,0.844355,0][-1.19903,0.925086,0.564196][0,0,0][0.846008,0.844355,0][-0.995041,0.925086,0.881607][-1.32144,0,0.849237][0.820931,0.844355,0][-1.19903,0.925086,0.564196][-1.50717,0,0.442544][0.846008,0.844355,0][-0.995041,0.925086,0.881607][-1.32144,0,0.849237][0.820931,0.844355,0][-1.19903,0.925086,0.564196][0,0,0][0.846008,0.844355,0][-0.88583,0.452645,0.786975][0.755749,0,-0.654861][0.159299,0.0422055,0][-1.06758,0.452645,0.504165][0.909632,0,-0.415415][0.159299,0.0645486,0][-0.88583,0.452645,0.786975][0.721002,-0.299737,-0.624752][0.159299,0.0422055,0][-1.06758,0.452645,0.504165][0.867809,-0.299737,-0.396315][0.159299,0.0645486,0][-0.88583,0.452645,0.786975][0.721002,-0.299737,-0.624752][0.159299,0.0422055,0][-1.06758,0.452645,0.504165][0.909632,0,-0.415415][0.159299,0.0645486,0][-1.06758,-0.0197963,0.504165][0.909632,0,-0.415415][0.121974,0.0645486,0][-1.06758,0.452645,0.504165][0.909632,0,-0.415415][0.159299,0.0645486,0][-0.88583,-0.0197963,0.786975][0.755749,0,-0.654861][0.121974,0.0422055,0][-0.88583,0.452645,0.786975][0.755749,0,-0.654861][0.159299,0.0422055,0][-0.88583,-0.0197963,0.786975][0.755749,0,-0.654861][0.121974,0.0422055,0][-1.06758,0.452645,0.504165][0.909632,0,-0.415415][0.159299,0.0645486,0][-1.06758,-0.492237,0.504165][0.909632,0,-0.415415][0.0846494,0.0645486,0][-1.06758,-0.0197963,0.504165][0.909632,0,-0.415415][0.121974,0.0645486,0][-0.88583,-0.492237,0.786975][0.755749,0,-0.654861][0.0846494,0.0422055,0][-0.88583,-0.0197963,0.786975][0.755749,0,-0.654861][0.121974,0.0422055,0][-0.88583,-0.492237,0.786975][0.755749,0,-0.654861][0.0846494,0.0422055,0][-1.06758,-0.0197963,0.504165][0.909632,0,-0.415415][0.121974,0.0645486,0][-1.06758,-0.964678,0.504165][0.909632,0,-0.415415][0.0473247,0.0645486,0][-1.06758,-0.492237,0.504165][0.909632,0,-0.415415][0.0846494,0.0645486,0][-0.88583,-0.964678,0.786975][0.755749,0,-0.654861][0.0473247,0.0422055,0][-0.88583,-0.492237,0.786975][0.755749,0,-0.654861][0.0846494,0.0422055,0][-0.88583,-0.964678,0.786975][0.755749,0,-0.654861][0.0473247,0.0422055,0][-1.06758,-0.492237,0.504165][0.909632,0,-0.415415][0.0846494,0.0645486,0][-1.06758,-1.43712,0.504165][1.50717,0,-0.442544][0.01,0.0645486,0][-1.06758,-0.964678,0.504165][0.909632,0,-0.415415][0.0473247,0.0645486,0][-0.88583,-1.43712,0.786975][1.32144,0,-0.849237][0.01,0.0422055,0][-0.88583,-0.964678,0.786975][0.755749,0,-0.654861][0.0473247,0.0422055,0][-0.88583,-1.43712,0.786975][1.32144,0,-0.849237][0.01,0.0422055,0][-1.06758,-0.964678,0.504165][0.909632,0,-0.415415][0.0473247,0.0645486,0][-1.19903,-1.43712,0.564195][-1.50717,0,0.442544][0.606205,0.353662,0][-1.06758,-1.43712,0.504165][1.50717,0,-0.442544][0.603103,0.364648,0][-0.995041,-1.43712,0.881607][-1.32144,0,0.849237][0.633447,0.365763,0][-0.88583,-1.43712,0.786975][1.32144,0,-0.849237][0.627375,0.375431,0][-0.995041,-1.43712,0.881607][-1.32144,0,0.849237][0.633447,0.365763,0][-1.06758,-1.43712,0.504165][1.50717,0,-0.442544][0.603103,0.364648,0][-0.995041,-0.964678,0.881607][-0.755749,0,0.654861][0.509364,0.472575,0][-0.995041,-1.43712,0.881607][-1.32144,0,0.849237][0.47204,0.472575,0][-0.709891,-0.964678,1.12869][-0.540641,0,0.841254][0.509364,0.495102,0][-0.709891,-1.43712,1.12869][-1.02865,0,1.18713][0.47204,0.495102,0][-0.709891,-0.964678,1.12869][-0.540641,0,0.841254][0.509364,0.495102,0][-0.995041,-1.43712,0.881607][-1.32144,0,0.849237][0.47204,0.472575,0][-0.995041,-0.492237,0.881607][-0.755749,0,0.654861][0.546689,0.472575,0][-0.995041,-0.964678,0.881607][-0.755749,0,0.654861][0.509364,0.472575,0][-0.709891,-0.492237,1.12869][-0.540641,0,0.841254][0.546689,0.495102,0][-0.709891,-0.964678,1.12869][-0.540641,0,0.841254][0.509364,0.495102,0][-0.709891,-0.492237,1.12869][-0.540641,0,0.841254][0.546689,0.495102,0][-0.995041,-0.964678,0.881607][-0.755749,0,0.654861][0.509364,0.472575,0][-0.995041,-0.0197963,0.881607][-0.755749,0,0.654861][0.584014,0.472575,0][-0.995041,-0.492237,0.881607][-0.755749,0,0.654861][0.546689,0.472575,0][-0.709891,-0.0197963,1.12869][-0.540641,0,0.841254][0.584014,0.495102,0][-0.709891,-0.492237,1.12869][-0.540641,0,0.841254][0.546689,0.495102,0][-0.709891,-0.0197963,1.12869][-0.540641,0,0.841254][0.584014,0.495102,0][-0.995041,-0.492237,0.881607][-0.755749,0,0.654861][0.546689,0.472575,0][-0.995041,0.452645,0.881607][-0.755749,0,0.654861][0.621339,0.472575,0][-0.995041,-0.0197963,0.881607][-0.755749,0,0.654861][0.584014,0.472575,0][-0.709891,0.452645,1.12869][-0.540641,0,0.841254][0.621339,0.495102,0][-0.709891,-0.0197963,1.12869][-0.540641,0,0.841254][0.584014,0.495102,0][-0.709891,0.452645,1.12869][-0.540641,0,0.841254][0.621339,0.495102,0][-0.995041,-0.0197963,0.881607][-0.755749,0,0.654861][0.584014,0.472575,0][-0.995041,0.925086,0.881607][-1.32144,0,0.849237][0.658663,0.472575,0][-0.995041,0.452645,0.881607][-0.755749,0,0.654861][0.621339,0.472575,0][-0.709891,0.925086,1.12869][-1.02865,0,1.18713][0.658663,0.495102,0][-0.709891,0.452645,1.12869][-0.540641,0,0.841254][0.621339,0.495102,0][-0.709891,0.925086,1.12869][-1.02865,0,1.18713][0.658663,0.495102,0][-0.995041,0.452645,0.881607][-0.755749,0,0.654861][0.621339,0.472575,0][-0.709891,0.925086,1.12869][0,0,0][0.801411,0.844355,0][-0.995041,0.925086,0.881607][0,0,0][0.820931,0.844355,0][-0.709891,0.925086,1.12869][-1.02865,0,1.18713][0.801411,0.844355,0][-0.995041,0.925086,0.881607][-1.32144,0,0.849237][0.820931,0.844355,0][-0.709891,0.925086,1.12869][-1.02865,0,1.18713][0.801411,0.844355,0][-0.995041,0.925086,0.881607][0,0,0][0.820931,0.844355,0][-0.631764,0.452645,1.00712][0.540641,0,-0.841254][0.159299,0.0248129,0][-0.88583,0.452645,0.786975][0.755749,0,-0.654861][0.159299,0.0422055,0][-0.631764,0.452645,1.00712][0.515783,-0.299737,-0.802574][0.159299,0.0248129,0][-0.88583,0.452645,0.786975][0.721002,-0.299737,-0.624752][0.159299,0.0422055,0][-0.631764,0.452645,1.00712][0.515783,-0.299737,-0.802574][0.159299,0.0248129,0][-0.88583,0.452645,0.786975][0.755749,0,-0.654861][0.159299,0.0422055,0][-0.88583,-0.0197963,0.786975][0.755749,0,-0.654861][0.565423,0.676249,0][-0.88583,0.452645,0.786975][0.755749,0,-0.654861][0.602748,0.676249,0][-0.631764,-0.0197963,1.00712][0.540641,0,-0.841254][0.565423,0.656177,0][-0.631764,0.452645,1.00712][0.540641,0,-0.841254][0.602748,0.656177,0][-0.631764,-0.0197963,1.00712][0.540641,0,-0.841254][0.565423,0.656177,0][-0.88583,0.452645,0.786975][0.755749,0,-0.654861][0.602748,0.676249,0][-0.88583,-0.492237,0.786975][0.755749,0,-0.654861][0.528098,0.676249,0][-0.88583,-0.0197963,0.786975][0.755749,0,-0.654861][0.565423,0.676249,0][-0.631764,-0.492237,1.00712][0.540641,0,-0.841254][0.528098,0.656177,0][-0.631764,-0.0197963,1.00712][0.540641,0,-0.841254][0.565423,0.656177,0][-0.631764,-0.492237,1.00712][0.540641,0,-0.841254][0.528098,0.656177,0][-0.88583,-0.0197963,0.786975][0.755749,0,-0.654861][0.565423,0.676249,0][-0.88583,-0.964678,0.786975][0.755749,0,-0.654861][0.490773,0.676249,0][-0.88583,-0.492237,0.786975][0.755749,0,-0.654861][0.528098,0.676249,0][-0.631764,-0.964678,1.00712][0.540641,0,-0.841254][0.490773,0.656177,0][-0.631764,-0.492237,1.00712][0.540641,0,-0.841254][0.528098,0.656177,0][-0.631764,-0.964678,1.00712][0.540641,0,-0.841254][0.490773,0.656177,0][-0.88583,-0.492237,0.786975][0.755749,0,-0.654861][0.528098,0.676249,0][-0.88583,-1.43712,0.786975][1.32144,0,-0.849237][0.453449,0.676249,0][-0.88583,-0.964678,0.786975][0.755749,0,-0.654861][0.490773,0.676249,0][-0.631764,-1.43712,1.00712][1.02865,0,-1.18713][0.453449,0.656177,0][-0.631764,-0.964678,1.00712][0.540641,0,-0.841254][0.490773,0.656177,0][-0.631764,-1.43712,1.00712][1.02865,0,-1.18713][0.453449,0.656177,0][-0.88583,-0.964678,0.786975][0.755749,0,-0.654861][0.490773,0.676249,0][-0.995041,-1.43712,0.881607][-1.32144,0,0.849237][0.633447,0.365763,0][-0.88583,-1.43712,0.786975][1.32144,0,-0.849237][0.627375,0.375431,0][-0.709891,-1.43712,1.12869][-1.02865,0,1.18713][0.656176,0.385049,0][-0.631764,-1.43712,1.00712][1.02865,0,-1.18713][0.647626,0.392615,0][-0.709891,-1.43712,1.12869][-1.02865,0,1.18713][0.656176,0.385049,0][-0.88583,-1.43712,0.786975][1.32144,0,-0.849237][0.627375,0.375431,0][-0.709891,-0.964678,1.12869][-0.540641,0,0.841254][0.509364,0.495102,0][-0.709891,-1.43712,1.12869][-1.02865,0,1.18713][0.47204,0.495102,0][-0.366679,-0.964678,1.28543][-0.281732,0,0.959493][0.509364,0.522218,0][-0.366679,-1.43712,1.28543][-0.652533,0,1.42885][0.47204,0.522218,0][-0.366679,-0.964678,1.28543][-0.281732,0,0.959493][0.509364,0.522218,0][-0.709891,-1.43712,1.12869][-1.02865,0,1.18713][0.47204,0.495102,0][-0.709891,-0.492237,1.12869][-0.540641,0,0.841254][0.546689,0.495102,0][-0.709891,-0.964678,1.12869][-0.540641,0,0.841254][0.509364,0.495102,0][-0.366679,-0.492237,1.28543][-0.281733,0,0.959493][0.546689,0.522218,0][-0.366679,-0.964678,1.28543][-0.281732,0,0.959493][0.509364,0.522218,0][-0.366679,-0.492237,1.28543][-0.281733,0,0.959493][0.546689,0.522218,0][-0.709891,-0.964678,1.12869][-0.540641,0,0.841254][0.509364,0.495102,0][-0.709891,-0.0197963,1.12869][-0.540641,0,0.841254][0.584014,0.495102,0][-0.709891,-0.492237,1.12869][-0.540641,0,0.841254][0.546689,0.495102,0][-0.366679,-0.0197963,1.28543][-0.281733,0,0.959493][0.584014,0.522218,0][-0.366679,-0.492237,1.28543][-0.281733,0,0.959493][0.546689,0.522218,0][-0.366679,-0.0197963,1.28543][-0.281733,0,0.959493][0.584014,0.522218,0][-0.709891,-0.492237,1.12869][-0.540641,0,0.841254][0.546689,0.495102,0][-0.709891,0.452645,1.12869][-0.540641,0,0.841254][0.621339,0.495102,0][-0.709891,-0.0197963,1.12869][-0.540641,0,0.841254][0.584014,0.495102,0][-0.366679,0.452645,1.28543][-0.281733,0,0.959493][0.621339,0.522218,0][-0.366679,-0.0197963,1.28543][-0.281733,0,0.959493][0.584014,0.522218,0][-0.366679,0.452645,1.28543][-0.281733,0,0.959493][0.621339,0.522218,0][-0.709891,-0.0197963,1.12869][-0.540641,0,0.841254][0.584014,0.495102,0][-0.709891,0.925086,1.12869][-1.02865,0,1.18713][0.658663,0.495102,0][-0.709891,0.452645,1.12869][-0.540641,0,0.841254][0.621339,0.495102,0][-0.366679,0.925086,1.28543][-0.652532,0,1.42885][0.658663,0.522218,0][-0.366679,0.452645,1.28543][-0.281733,0,0.959493][0.621339,0.522218,0][-0.366679,0.925086,1.28543][-0.652532,0,1.42885][0.658663,0.522218,0][-0.709891,0.452645,1.12869][-0.540641,0,0.841254][0.621339,0.495102,0][-0.366679,0.925086,1.28543][0,0,0][0.789028,0.844355,0][-0.709891,0.925086,1.12869][0,0,0][0.801411,0.844355,0][-0.366679,0.925086,1.28543][-0.652532,0,1.42885][0.789028,0.844355,0][-0.709891,0.925086,1.12869][-1.02865,0,1.18713][0.801411,0.844355,0][-0.366679,0.925086,1.28543][-0.652532,0,1.42885][0.789028,0.844355,0][-0.709891,0.925086,1.12869][0,0,0][0.801411,0.844355,0][-0.325967,0.452645,1.14678][0.281733,0,-0.959493][0.159299,0.0137798,0][-0.631764,0.452645,1.00712][0.540641,0,-0.841254][0.159299,0.0248129,0][-0.325967,0.452645,1.14678][0.26885,-0.299263,-0.915511][0.159299,0.0137798,0][-0.631764,0.452645,1.00712][0.515783,-0.299737,-0.802574][0.159299,0.0248129,0][-0.325967,0.452645,1.14678][0.26885,-0.299263,-0.915511][0.159299,0.0137798,0][-0.631764,0.452645,1.00712][0.540641,0,-0.841254][0.159299,0.0248129,0][-0.631764,-0.0197963,1.00712][0.540641,0,-0.841254][0.565423,0.656177,0][-0.631764,0.452645,1.00712][0.540641,0,-0.841254][0.602748,0.656177,0][-0.325967,-0.0197963,1.14678][0.281733,0,-0.959493][0.565423,0.632018,0][-0.325967,0.452645,1.14678][0.281733,0,-0.959493][0.602748,0.632018,0][-0.325967,-0.0197963,1.14678][0.281733,0,-0.959493][0.565423,0.632018,0][-0.631764,0.452645,1.00712][0.540641,0,-0.841254][0.602748,0.656177,0][-0.631764,-0.492237,1.00712][0.540641,0,-0.841254][0.528098,0.656177,0][-0.631764,-0.0197963,1.00712][0.540641,0,-0.841254][0.565423,0.656177,0][-0.325967,-0.492237,1.14678][0.281732,0,-0.959493][0.528098,0.632018,0][-0.325967,-0.0197963,1.14678][0.281733,0,-0.959493][0.565423,0.632018,0][-0.325967,-0.492237,1.14678][0.281732,0,-0.959493][0.528098,0.632018,0][-0.631764,-0.0197963,1.00712][0.540641,0,-0.841254][0.565423,0.656177,0][-0.631764,-0.964678,1.00712][0.540641,0,-0.841254][0.490773,0.656177,0][-0.631764,-0.492237,1.00712][0.540641,0,-0.841254][0.528098,0.656177,0][-0.325967,-0.964678,1.14678][0.281732,0,-0.959493][0.490773,0.632018,0][-0.325967,-0.492237,1.14678][0.281732,0,-0.959493][0.528098,0.632018,0][-0.325967,-0.964678,1.14678][0.281732,0,-0.959493][0.490773,0.632018,0][-0.631764,-0.492237,1.00712][0.540641,0,-0.841254][0.528098,0.656177,0][-0.631764,-1.43712,1.00712][1.02865,0,-1.18713][0.453449,0.656177,0][-0.631764,-0.964678,1.00712][0.540641,0,-0.841254][0.490773,0.656177,0][-0.325967,-1.43712,1.14678][0.652533,0,-1.42885][0.453449,0.632018,0][-0.325967,-0.964678,1.14678][0.281732,0,-0.959493][0.490773,0.632018,0][-0.325967,-1.43712,1.14678][0.652533,0,-1.42885][0.453449,0.632018,0][-0.631764,-0.964678,1.00712][0.540641,0,-0.841254][0.490773,0.656177,0][-0.709891,-1.43712,1.12869][-1.02865,0,1.18713][0.656176,0.385049,0][-0.631764,-1.43712,1.00712][1.02865,0,-1.18713][0.647626,0.392615,0][-0.366679,-1.43712,1.28543][-0.652533,0,1.42885][0.672551,0.409958,0][-0.325967,-1.43712,1.14678][0.652533,0,-1.42885][0.662216,0.414808,0][-0.366679,-1.43712,1.28543][-0.652533,0,1.42885][0.672551,0.409958,0][-0.631764,-1.43712,1.00712][1.02865,0,-1.18713][0.647626,0.392615,0][-0.366679,-0.964678,1.28543][-0.281732,0,0.959493][0.509364,0.522218,0][-0.366679,-1.43712,1.28543][-0.652533,0,1.42885][0.47204,0.522218,0][0.00678738,-0.964678,1.33913][-0.142314,0,0.989821][0.509364,0.551723,0][0.00678738,-1.43712,1.33913][-0.223547,0,1.55481][0.47204,0.551723,0][0.00678738,-0.964678,1.33913][-0.142314,0,0.989821][0.509364,0.551723,0][-0.366679,-1.43712,1.28543][-0.652533,0,1.42885][0.47204,0.522218,0][-0.366679,-0.492237,1.28543][-0.281733,0,0.959493][0.546689,0.522218,0][-0.366679,-0.964678,1.28543][-0.281732,0,0.959493][0.509364,0.522218,0][0.00678738,-0.492237,1.33913][-0.142314,-1.24879e-007,0.989821][0.546689,0.551723,0][0.00678738,-0.964678,1.33913][-0.142314,0,0.989821][0.509364,0.551723,0][0.00678738,-0.492237,1.33913][-0.142314,-1.24879e-007,0.989821][0.546689,0.551723,0][-0.366679,-0.964678,1.28543][-0.281732,0,0.959493][0.509364,0.522218,0][-0.366679,-0.0197963,1.28543][-0.281733,0,0.959493][0.584014,0.522218,0][-0.366679,-0.492237,1.28543][-0.281733,0,0.959493][0.546689,0.522218,0][0.00678738,-0.0197963,1.33913][-0.142315,0,0.989821][0.584014,0.551723,0][0.00678738,-0.492237,1.33913][-0.142314,-1.24879e-007,0.989821][0.546689,0.551723,0][0.00678738,-0.0197963,1.33913][-0.142315,0,0.989821][0.584014,0.551723,0][-0.366679,-0.492237,1.28543][-0.281733,0,0.959493][0.546689,0.522218,0][-0.366679,0.452645,1.28543][-0.281733,0,0.959493][0.621339,0.522218,0][-0.366679,-0.0197963,1.28543][-0.281733,0,0.959493][0.584014,0.522218,0][0.00678738,0.452645,1.33913][-0.142315,0,0.989821][0.621339,0.551723,0][0.00678738,-0.0197963,1.33913][-0.142315,0,0.989821][0.584014,0.551723,0][0.00678738,0.452645,1.33913][-0.142315,0,0.989821][0.621339,0.551723,0][-0.366679,-0.0197963,1.28543][-0.281733,0,0.959493][0.584014,0.522218,0][-0.366679,0.925086,1.28543][-0.652532,0,1.42885][0.658663,0.522218,0][-0.366679,0.452645,1.28543][-0.281733,0,0.959493][0.621339,0.522218,0][0.00678738,0.925086,1.33913][-0.223547,0,1.55481][0.658663,0.551723,0][0.00678738,0.452645,1.33913][-0.142315,0,0.989821][0.621339,0.551723,0][0.00678738,0.925086,1.33913][-0.223547,0,1.55481][0.658663,0.551723,0][-0.366679,0.452645,1.28543][-0.281733,0,0.959493][0.621339,0.522218,0][0.00678738,0.925086,1.33913][0,0,0][0.784786,0.844355,0][-0.366679,0.925086,1.28543][0,0,0][0.789028,0.844355,0][0.00678738,0.925086,1.33913][-0.223547,0,1.55481][0.784786,0.844355,0][-0.366679,0.925086,1.28543][-0.652532,0,1.42885][0.789028,0.844355,0][0.00678738,0.925086,1.33913][-0.223547,0,1.55481][0.784786,0.844355,0][-0.366679,0.925086,1.28543][0,0,0][0.789028,0.844355,0][0.00678741,0.452645,1.19462][0.142315,0,-0.989821][0.159299,0.01,0][-0.325967,0.452645,1.14678][0.281733,0,-0.959493][0.159299,0.0137798,0][0.00678741,0.452645,1.19462][0.135937,-0.296016,-0.945461][0.159299,0.01,0][-0.325967,0.452645,1.14678][0.26885,-0.299263,-0.915511][0.159299,0.0137798,0][0.00678741,0.452645,1.19462][0.135937,-0.296016,-0.945461][0.159299,0.01,0][-0.325967,0.452645,1.14678][0.281733,0,-0.959493][0.159299,0.0137798,0][-0.325967,-0.0197963,1.14678][0.281733,0,-0.959493][0.565423,0.632018,0][-0.325967,0.452645,1.14678][0.281733,0,-0.959493][0.602748,0.632018,0][0.00678741,-0.0197963,1.19462][0.142315,1.24879e-007,-0.989821][0.565423,0.605729,0][0.00678741,0.452645,1.19462][0.142315,0,-0.989821][0.602748,0.605729,0][0.00678741,-0.0197963,1.19462][0.142315,1.24879e-007,-0.989821][0.565423,0.605729,0][-0.325967,0.452645,1.14678][0.281733,0,-0.959493][0.602748,0.632018,0][-0.325967,-0.492237,1.14678][0.281732,0,-0.959493][0.528098,0.632018,0][-0.325967,-0.0197963,1.14678][0.281733,0,-0.959493][0.565423,0.632018,0][0.00678741,-0.492237,1.19462][0.142314,0,-0.989821][0.528098,0.605729,0][0.00678741,-0.0197963,1.19462][0.142315,1.24879e-007,-0.989821][0.565423,0.605729,0][0.00678741,-0.492237,1.19462][0.142314,0,-0.989821][0.528098,0.605729,0][-0.325967,-0.0197963,1.14678][0.281733,0,-0.959493][0.565423,0.632018,0][-0.325967,-0.964678,1.14678][0.281732,0,-0.959493][0.490773,0.632018,0][-0.325967,-0.492237,1.14678][0.281732,0,-0.959493][0.528098,0.632018,0][0.00678741,-0.964678,1.19462][0.142314,0,-0.989821][0.490773,0.605729,0][0.00678741,-0.492237,1.19462][0.142314,0,-0.989821][0.528098,0.605729,0][0.00678741,-0.964678,1.19462][0.142314,0,-0.989821][0.490773,0.605729,0][-0.325967,-0.492237,1.14678][0.281732,0,-0.959493][0.528098,0.632018,0][-0.325967,-1.43712,1.14678][0.652533,0,-1.42885][0.453449,0.632018,0][-0.325967,-0.964678,1.14678][0.281732,0,-0.959493][0.490773,0.632018,0][0.00678741,-1.43712,1.19462][0.223547,0,-1.55481][0.453449,0.605729,0][0.00678741,-0.964678,1.19462][0.142314,0,-0.989821][0.490773,0.605729,0][0.00678741,-1.43712,1.19462][0.223547,0,-1.55481][0.453449,0.605729,0][-0.325967,-0.964678,1.14678][0.281732,0,-0.959493][0.490773,0.632018,0][-0.366679,-1.43712,1.28543][-0.652533,0,1.42885][0.672551,0.409958,0][-0.325967,-1.43712,1.14678][0.652533,0,-1.42885][0.662216,0.414808,0][0.00678738,-1.43712,1.33913][-0.223547,0,1.55481][0.681245,0.438471,0][0.00678741,-1.43712,1.19462][0.223547,0,-1.55481][0.669962,0.440212,0][0.00678738,-1.43712,1.33913][-0.223547,0,1.55481][0.681245,0.438471,0][-0.325967,-1.43712,1.14678][0.652533,0,-1.42885][0.662216,0.414808,0][-0.325967,-0.964678,-1.11974][1.17743,0.0139172,2.57821][0.846975,0.148534,0][-0.325967,-1.43712,-1.11974][0.652532,0,1.42885][0.80965,0.148534,0][-0.36668,-1.43712,-1.2584][-0.652532,0,-1.42885][0.80965,0.159488,0][-0.36668,-1.43712,-1.2584][-0.652532,0,-1.42885][0.80965,0.159488,0][-0.36668,-0.964678,-1.2584][-1.20716,-0.0222758,-2.57617][0.846975,0.159488,0][-0.325967,-0.964678,-1.11974][1.17743,0.0139172,2.57821][0.846975,0.148534,0][-0.480269,-0.577191,-1.22205][-1.04801,-0.128238,-1.90829][0.877588,0.156617,0][-0.439557,-0.577191,-1.07256][0.96374,0.00892409,2.04061][0.877588,0.144806,0][-0.36668,-0.964678,-1.2584][-1.20716,-0.0222758,-2.57617][0.846975,0.159488,0][-0.325967,-0.964678,-1.11974][1.17743,0.0139172,2.57821][0.846975,0.148534,0][-0.36668,-0.964678,-1.2584][-1.20716,-0.0222758,-2.57617][0.846975,0.159488,0][-0.439557,-0.577191,-1.07256][0.96374,0.00892409,2.04061][0.877588,0.144806,0][-0.709891,-0.492237,-1.10166][-2.53101,-0.0315985,-3.31751][0.950449,0.361568,0][-0.631765,-0.492237,-0.980089][2.44858,0.0497682,3.30348][0.956621,0.371173,0][-0.480269,-0.577191,-1.22205][-1.04801,-0.128238,-1.90829][0.96859,0.352057,0][-0.439557,-0.577191,-1.07256][0.96374,0.00892409,2.04061][0.971806,0.363867,0][-0.480269,-0.577191,-1.22205][-1.04801,-0.128238,-1.90829][0.96859,0.352057,0][-0.631765,-0.492237,-0.980089][2.44858,0.0497682,3.30348][0.956621,0.371173,0][-0.789983,-0.0197962,-1.05452][-1.56669,-0.128818,-1.37085][0.502948,0.431973,0][-0.711857,-0.0197962,-0.933245][1.57437,-0.0432182,1.46262][0.501841,0.44149,0][-0.709891,-0.492237,-1.10166][-2.53101,-0.0315985,-3.31751][0.540453,0.432586,0][-0.631765,-0.492237,-0.980089][2.44858,0.0497682,3.30348][0.539343,0.442126,0][-0.709891,-0.492237,-1.10166][-2.53101,-0.0315985,-3.31751][0.540453,0.432586,0][-0.711857,-0.0197962,-0.933245][1.57437,-0.0432182,1.46262][0.501841,0.44149,0][-0.972562,0.0729589,-0.854572][-3.44791,0.0569904,-2.75004][0.922456,0.543095,0][-0.852354,0.0729589,-0.75994][3.44372,-0.122204,2.63038][0.929932,0.533598,0][-0.789983,-0.0197962,-1.05452][-1.56669,-0.128818,-1.37085][0.906659,0.52867,0][-0.711857,-0.0197962,-0.933245][1.57437,-0.0432182,1.46262][0.91624,0.522498,0][-0.789983,-0.0197962,-1.05452][-1.56669,-0.128818,-1.37085][0.906659,0.52867,0][-0.852354,0.0729589,-0.75994][3.44372,-0.122204,2.63038][0.929932,0.533598,0][-0.952484,0.399108,-0.854572][-3.47726,-0.0449067,-2.87807][0.883063,0.649748,0][-0.843273,0.399108,-0.75994][1.34355,-0.0154456,1.04274][0.883502,0.638344,0][-0.972562,0.0729589,-0.854572][-3.44791,0.0569904,-2.75004][0.857249,0.64996,0][-0.852354,0.0729589,-0.75994][3.44372,-0.122204,2.63038][0.857731,0.637886,0][-0.972562,0.0729589,-0.854572][-3.44791,0.0569904,-2.75004][0.857249,0.64996,0][-0.843273,0.399108,-0.75994][1.34355,-0.0154456,1.04274][0.883502,0.638344,0][0.00678763,0.210332,-1.31209][-0.172432,0,-1.19929][0.894406,0.798325,0][0.00678763,0.310982,-1.16759][0,0,0][0.889343,0.788092,0][-0.36668,0.351996,-1.2584][-0.818902,0,-3.10204][0.86608,0.807608,0][-0.325967,0.452645,-1.11974][0,0,0][0.864105,0.796363,0][-0.36668,0.351996,-1.2584][-0.818902,0,-3.10204][0.86608,0.807608,0][0.00678763,0.310982,-1.16759][0,0,0][0.889343,0.788092,0][-0.36668,0.351996,-1.2584][-0.818902,0,-3.10204][0.86608,0.807608,0][-0.325967,0.452645,-1.11974][0,0,0][0.864105,0.796363,0][-0.709891,0.452645,-1.10166][-1.94546,-0.0601421,-2.91812][0.836285,0.808534,0][-0.631765,0.452645,-0.980089][0,0,0][0.837558,0.797188,0][-0.709891,0.452645,-1.10166][-1.94546,-0.0601421,-2.91812][0.836285,0.808534,0][-0.325967,0.452645,-1.11974][0,0,0][0.864105,0.796363,0][-0.709891,0.452645,-1.10166][-1.94546,-0.0601421,-2.91812][0.836285,0.808534,0][-0.631765,0.452645,-0.980089][0,0,0][0.837558,0.797188,0][-0.952484,0.399108,-0.854572][-3.47726,-0.0449067,-2.87807][0.81045,0.799537,0][-0.843273,0.399108,-0.75994][1.34355,-0.0154456,1.04274][0.814868,0.78901,0][-0.952484,0.399108,-0.854572][-3.47726,-0.0449067,-2.87807][0.81045,0.799537,0][-0.631765,0.452645,-0.980089][0,0,0][0.837558,0.797188,0][-1.30533,-0.492237,-0.175137][-3.01434,0,-0.88509][0.426243,0.271901,0][-1.30533,-0.964678,-0.175137][-4.58513,0,-0.885089][0.45109,0.244049,0][-1.769,-0.492237,-0.175136][-1.32712,0,4.193e-007][0.398908,0.247515,0][-1.769,-0.85523,-0.0848907][-1.81447,0,8.34531e-007][0.417998,0.226115,0][-1.769,-0.492237,-0.175136][-1.32712,0,4.193e-007][0.398908,0.247515,0][-1.30533,-0.964678,-0.175137][-4.58513,0,-0.885089][0.45109,0.244049,0][-1.30533,-0.0197962,-0.175137][-3.01434,0,-0.88509][0.401396,0.299754,0][-1.30533,-0.492237,-0.175137][-3.01434,0,-0.88509][0.426243,0.271901,0][-1.769,-0.0197962,-0.175136][-1.62381e-007,0,-1][0.374061,0.275368,0][-1.769,-0.492237,-0.175136][-1.32712,0,4.193e-007][0.398908,0.247515,0][-1.769,-0.0197962,-0.175136][-1.62381e-007,0,-1][0.374061,0.275368,0][-1.30533,-0.492237,-0.175137][-3.01434,0,-0.88509][0.426243,0.271901,0][-1.30533,0.452645,-0.175137][-4.58513,0,-0.885089][0.376549,0.327606,0][-1.30533,-0.0197962,-0.175137][-3.01434,0,-0.88509][0.401396,0.299754,0][-1.769,0.452645,-0.175136][-2.77947e-007,0,-1.5708][0.349214,0.303221,0][-1.769,-0.0197962,-0.175136][-1.62381e-007,0,-1][0.374061,0.275368,0][-1.769,0.452645,-0.175136][-2.77947e-007,0,-1.5708][0.349214,0.303221,0][-1.30533,-0.0197962,-0.175137][-3.01434,0,-0.88509][0.401396,0.299754,0][-1.30533,0.452645,0.202171][-4.58513,0,0.885089][0.158794,0.823435,0][-1.30533,0.452645,-0.175137][-4.58513,0,-0.885089][0.158794,0.853244,0][-1.769,0.452645,0.202171][0,1.5708,0][0.195426,0.823435,0][-1.769,0.452645,-0.175136][-2.77947e-007,0,-1.5708][0.195426,0.853244,0][-1.769,0.452645,0.202171][0,1.5708,0][0.195426,0.823435,0][-1.30533,0.452645,-0.175137][-4.58513,0,-0.885089][0.158794,0.853244,0][-1.30533,-0.0197963,0.202171][-3.01434,0,0.885089][0.524949,0.299941,0][-1.30533,0.452645,0.202171][-4.58513,0,0.885089][0.550819,0.326846,0][-1.769,-0.0197963,0.202171][-0.0286686,-0.0264649,0.999239][0.551355,0.274551,0][-1.769,0.452645,0.202171][0,1.5708,0][0.577225,0.301456,0][-1.769,-0.0197963,0.202171][-0.0286686,-0.0264649,0.999239][0.551355,0.274551,0][-1.30533,0.452645,0.202171][-4.58513,0,0.885089][0.550819,0.326846,0][-1.30533,-0.492237,0.202171][-3.01434,0,0.885089][0.499079,0.273036,0][-1.30533,-0.0197963,0.202171][-3.01434,0,0.885089][0.524949,0.299941,0][-1.769,-0.492237,0.202171][-1.32712,0,5.42568e-007][0.525485,0.247646,0][-1.769,-0.0197963,0.202171][-0.0286686,-0.0264649,0.999239][0.551355,0.274551,0][-1.769,-0.492237,0.202171][-1.32712,0,5.42568e-007][0.525485,0.247646,0][-1.30533,-0.0197963,0.202171][-3.01434,0,0.885089][0.524949,0.299941,0][-1.30533,-0.964678,0.202171][-4.58513,0,0.885089][0.473209,0.246131,0][-1.30533,-0.492237,0.202171][-3.01434,0,0.885089][0.499079,0.273036,0][-1.769,-0.85523,0.111925][-1.81447,-2.73231e-007,1.09901e-006][0.505608,0.226974,0][-1.769,-0.492237,0.202171][-1.32712,0,5.42568e-007][0.525485,0.247646,0][-1.769,-0.85523,0.111925][-1.81447,-2.73231e-007,1.09901e-006][0.505608,0.226974,0][-1.30533,-0.492237,0.202171][-3.01434,0,0.885089][0.499079,0.273036,0][-1.30533,-0.964678,-0.175137][-4.58513,0,-0.885089][0.755101,0.948163,0][-1.30533,-0.964678,0.202171][-4.58513,0,0.885089][0.755101,0.977971,0][-1.769,-0.85523,-0.0848907][-1.81447,0,8.34531e-007][0.791732,0.955292,0][-1.769,-0.85523,0.111925][-1.81447,-2.73231e-007,1.09901e-006][0.791732,0.970842,0][-1.769,-0.85523,-0.0848907][-1.81447,0,8.34531e-007][0.791732,0.955292,0][-1.30533,-0.964678,0.202171][-4.58513,0,0.885089][0.755101,0.977971,0][-1.769,-0.492237,-0.175136][-1.32712,0,4.193e-007][0.946548,0.226115,0][-1.769,-0.492237,0.202171][-1.32712,0,5.42568e-007][0.946548,0.255924,0][-2.23267,-0.363707,-0.0848906][-1.82742,3.81874e-007,1.06026e-006][0.98318,0.233245,0][-2.23267,-0.363707,0.111926][-1.82742,-5.80898e-007,2.2137e-006][0.98318,0.248794,0][-2.23267,-0.363707,-0.0848906][-1.82742,3.81874e-007,1.06026e-006][0.98318,0.233245,0][-1.769,-0.492237,0.202171][-1.32712,0,5.42568e-007][0.946548,0.255924,0][-1.769,-0.0197962,-0.175136][-1.62381e-007,0,-1][0.374061,0.275368,0][-1.769,-0.492237,-0.175136][-1.32712,0,4.193e-007][0.398908,0.247515,0][-2.23267,-0.0197962,-0.175136][-1.31417,9.11059e-007,0][0.346725,0.250982,0][-2.23267,-0.363707,-0.0848906][-1.82742,3.81874e-007,1.06026e-006][0.364812,0.230707,0][-2.23267,-0.0197962,-0.175136][-1.31417,9.11059e-007,0][0.346725,0.250982,0][-1.769,-0.492237,-0.175136][-1.32712,0,4.193e-007][0.398908,0.247515,0][-1.769,0.452645,-0.175136][-2.77947e-007,0,-1.5708][0.349214,0.303221,0][-1.769,-0.0197962,-0.175136][-1.62381e-007,0,-1][0.374061,0.275368,0][-2.23267,0.917521,-0.175136][0,0,-0.784101][0.297429,0.306241,0][-2.23267,-0.0197962,-0.175136][-1.31417,9.11059e-007,0][0.346725,0.250982,0][-2.23267,0.917521,-0.175136][0,0,-0.784101][0.297429,0.306241,0][-1.769,-0.0197962,-0.175136][-1.62381e-007,0,-1][0.374061,0.275368,0][-1.769,0.452645,0.202171][0,1.5708,0][0.661358,0.932186,0][-1.769,0.452645,-0.175136][-2.77947e-007,0,-1.5708][0.661358,0.961995,0][-2.23267,0.917521,0.202171][1.11216,1.10928,0][0.713231,0.932186,0][-2.23267,0.917521,-0.175136][0,0,-0.784101][0.713231,0.961995,0][-2.23267,0.917521,0.202171][1.11216,1.10928,0][0.713231,0.932186,0][-1.769,0.452645,-0.175136][-2.77947e-007,0,-1.5708][0.661358,0.961995,0][-1.769,-0.0197963,0.202171][-0.0286686,-0.0264649,0.999239][0.551355,0.274551,0][-1.769,0.452645,0.202171][0,1.5708,0][0.577225,0.301456,0][-2.23267,-0.0197963,0.202171][-1.31417,4.67252e-007,5.31697e-007][0.57776,0.249161,0][-2.23267,0.917521,0.202171][1.11216,1.10928,0][0.629086,0.30254,0][-2.23267,-0.0197963,0.202171][-1.31417,4.67252e-007,5.31697e-007][0.57776,0.249161,0][-1.769,0.452645,0.202171][0,1.5708,0][0.577225,0.301456,0][-1.769,-0.492237,0.202171][-1.32712,0,5.42568e-007][0.525485,0.247646,0][-1.769,-0.0197963,0.202171][-0.0286686,-0.0264649,0.999239][0.551355,0.274551,0][-2.23267,-0.363707,0.111926][-1.82742,-5.80898e-007,2.2137e-006][0.558928,0.229576,0][-2.23267,-0.0197963,0.202171][-1.31417,4.67252e-007,5.31697e-007][0.57776,0.249161,0][-2.23267,-0.363707,0.111926][-1.82742,-5.80898e-007,2.2137e-006][0.558928,0.229576,0][-1.769,-0.0197963,0.202171][-0.0286686,-0.0264649,0.999239][0.551355,0.274551,0][-2.23267,-0.0197962,-0.175136][-1.31417,9.11059e-007,0][0.923705,0.605729,0][-2.23267,-0.0197963,0.202171][-1.31417,4.67252e-007,5.31697e-007][0.923704,0.635538,0][-3.00546,0.318591,-0.0848902][-1.66807,-0.276427,1.43944e-006][0.984758,0.612859,0][-3.00546,0.318591,0.111926][-1.66807,-0.276427,2.02067e-006][0.984758,0.628408,0][-3.00546,0.318591,-0.0848902][-1.66807,-0.276427,1.43944e-006][0.984758,0.612859,0][-2.23267,-0.0197963,0.202171][-1.31417,4.67252e-007,5.31697e-007][0.923704,0.635538,0][-2.23267,0.917521,-0.175136][0,0,-0.784101][0.297429,0.306241,0][-2.23267,-0.0197962,-0.175136][-1.31417,9.11059e-007,0][0.346725,0.250982,0][-3.12779,1.05679,-0.175136][-1.43125,-0.237181,0][0.237333,0.267375,0][-3.00546,0.318591,-0.0848902][-1.66807,-0.276427,1.43944e-006][0.283369,0.230289,0][-3.12779,1.05679,-0.175136][-1.43125,-0.237181,0][0.237333,0.267375,0][-2.23267,-0.0197962,-0.175136][-1.31417,9.11059e-007,0][0.346725,0.250982,0][-2.23267,0.917521,0.202171][1.11216,1.10928,0][0.139448,0.90257,0][-2.23267,0.917521,-0.175136][0,0,-0.784101][0.139448,0.932379,0][-3.12779,1.05679,0.202172][-1.43125,-0.237181,2.9434e-007][0.210166,0.90257,0][-3.12779,1.05679,-0.175136][-1.43125,-0.237181,0][0.210166,0.932379,0][-3.12779,1.05679,0.202172][-1.43125,-0.237181,2.9434e-007][0.210166,0.90257,0][-2.23267,0.917521,-0.175136][0,0,-0.784101][0.139448,0.932379,0][-2.23267,-0.0197963,0.202171][-1.31417,4.67252e-007,5.31697e-007][0.57776,0.249161,0][-2.23267,0.917521,0.202171][1.11216,1.10928,0][0.629086,0.30254,0][-3.00546,0.318591,0.111926][-1.66807,-0.276427,2.02067e-006][0.640299,0.226115,0][-3.12779,1.05679,0.202172][-1.43125,-0.237181,2.9434e-007][0.687688,0.261456,0][-3.00546,0.318591,0.111926][-1.66807,-0.276427,2.02067e-006][0.640299,0.226115,0][-2.23267,0.917521,0.202171][1.11216,1.10928,0][0.629086,0.30254,0][-0.36668,0.925086,-1.2584][0,0,0][0.551425,0.788092,0][-0.264703,1.14478,-0.911095][-1.91813,0.745227,-0.0777584][0.569795,0.814863,0][0.00678761,1.81092,-1.22396][-0.0570781,0.0394964,-0.396988][0.621462,0.788197,0][0.0067878,2.19029,-1.03936][-0.562134,0.116578,-0.239581][0.651958,0.801651,0][0.00678761,1.81092,-1.22396][-0.0570781,0.0394964,-0.396988][0.621462,0.788197,0][-0.264703,1.14478,-0.911095][-1.91813,0.745227,-0.0777584][0.569795,0.814863,0][0.00678763,0.310982,-1.16759][0.132289,-0.0786685,1.15303][0.736403,0.193602,0][0.0067878,2.19029,-1.03936][-0.562134,0.116578,-0.239581][0.884876,0.193602,0][-0.325967,0.452645,-1.11974][0.203345,-0.120924,1.77236][0.747595,0.167314,0][-0.264703,1.14478,-0.911095][-1.91813,0.745227,-0.0777584][0.802276,0.172154,0][-0.325967,0.452645,-1.11974][0.203345,-0.120924,1.77236][0.747595,0.167314,0][0.0067878,2.19029,-1.03936][-0.562134,0.116578,-0.239581][0.884876,0.193602,0][-0.264703,1.14478,-0.911095][0,1.67935,-1.93607][0.264772,0.494023,0][-0.264703,1.14478,-0.911095][-1.91813,0.745227,-0.0777584][0.264772,0.494023,0][-0.709891,0.925086,-1.10166][0.0222543,0.370788,-0.47946][0.249716,0.529195,0][-0.709891,0.925086,-1.10166][0.0222543,0.370788,-0.47946][0.249716,0.529195,0][-0.264703,1.14478,-0.911095][-1.91813,0.745227,-0.0777584][0.264772,0.494023,0][-0.709891,0.925086,-1.10166][0,0,0][0.249716,0.529195,0][-0.709891,0.925086,-1.10166][0,0,0][0.249716,0.529195,0][-0.264703,1.14478,-0.911095][-1.91813,0.745227,-0.0777584][0.264772,0.494023,0][-0.36668,0.925086,-1.2584][0,0,0][0.237333,0.50208,0][-0.631765,0.452645,-0.980089][0.233294,-0.146341,0.226887][0.747595,0.143154,0][-0.631765,0.452645,-0.980089][0.584358,-0.270883,0.76495][0.747595,0.143154,0][-0.264703,1.14478,-0.911095][0,1.67935,-1.93607][0.802276,0.172154,0][-0.264703,1.14478,-0.911095][0,1.67935,-1.93607][0.802276,0.172154,0][-0.631765,0.452645,-0.980089][0.584358,-0.270883,0.76495][0.747595,0.143154,0][-0.264703,1.14478,-0.911095][-1.91813,0.745227,-0.0777584][0.802276,0.172154,0][-0.264703,1.14478,-0.911095][-1.91813,0.745227,-0.0777584][0.802276,0.172154,0][-0.631765,0.452645,-0.980089][0.584358,-0.270883,0.76495][0.747595,0.143154,0][-0.325967,0.452645,-1.11974][0.203345,-0.120924,1.77236][0.747595,0.167314,0][-0.995041,0.925086,-0.854572][0,0,0][0.269237,0.551723,0][-0.724265,1.14764,-0.61881][-0.271575,0.662433,-0.313415][0.287863,0.530331,0][-0.709891,0.925086,-1.10166][0,0,0][0.249716,0.529195,0][-0.709891,0.925086,-1.10166][0,0,0][0.249716,0.529195,0][-0.724265,1.14764,-0.61881][-0.271575,0.662433,-0.313415][0.287863,0.530331,0][-0.709891,0.925086,-1.10166][0.0222543,0.370788,-0.47946][0.249716,0.529195,0][-0.709891,0.925086,-1.10166][0.0222543,0.370788,-0.47946][0.249716,0.529195,0][-0.724265,1.14764,-0.61881][-0.271575,0.662433,-0.313415][0.287863,0.530331,0][-0.724265,1.14764,-0.61881][0,0,0][0.287863,0.530331,0][-0.724265,1.14764,-0.61881][0,0,0][0.214206,0.153268,0][-0.724265,1.14764,-0.61881][-0.271575,0.662433,-0.313415][0.214206,0.153268,0][-0.631765,0.452645,-0.980089][0.233294,-0.146341,0.226887][0.159299,0.181811,0][-0.631765,0.452645,-0.980089][0.233294,-0.146341,0.226887][0.159299,0.181811,0][-0.724265,1.14764,-0.61881][-0.271575,0.662433,-0.313415][0.214206,0.153268,0][-0.631765,0.452645,-0.980089][0.584358,-0.270883,0.76495][0.159299,0.181811,0][-0.631765,0.452645,-0.980089][0.584358,-0.270883,0.76495][0.159299,0.181811,0][-0.724265,1.14764,-0.61881][-0.271575,0.662433,-0.313415][0.214206,0.153268,0][-0.843273,0.399108,-0.75994][0.73379,-0.236728,0.636799][0.155069,0.164418,0][-0.724265,1.14764,-0.61881][0,0,0][0.287863,0.530331,0][-0.724265,1.14764,-0.61881][-0.271575,0.662433,-0.313415][0.287863,0.530331,0][-1.19903,0.925086,-0.537161][-0.248783,0.379397,-0.412695][0.294314,0.567839,0][-1.19903,0.925086,-0.537161][-0.248783,0.379397,-0.412695][0.294314,0.567839,0][-0.724265,1.14764,-0.61881][-0.271575,0.662433,-0.313415][0.287863,0.530331,0][-1.19903,0.925086,-0.537161][0,0,0][0.294314,0.567839,0][-1.19903,0.925086,-0.537161][0,0,0][0.294314,0.567839,0][-0.724265,1.14764,-0.61881][-0.271575,0.662433,-0.313415][0.287863,0.530331,0][-0.995041,0.925086,-0.854572][0,0,0][0.269237,0.551723,0][-1.06758,0.452645,-0.47713][0.326704,-0.148324,0.0640776][0.159299,0.142075,0][-1.06758,0.452645,-0.47713][0.840976,-0.270925,0.468357][0.159299,0.142075,0][-0.724265,1.14764,-0.61881][0,0,0][0.214206,0.153268,0][-0.724265,1.14764,-0.61881][0,0,0][0.214206,0.153268,0][-1.06758,0.452645,-0.47713][0.840976,-0.270925,0.468357][0.159299,0.142075,0][-0.724265,1.14764,-0.61881][-0.271575,0.662433,-0.313415][0.214206,0.153268,0][-0.724265,1.14764,-0.61881][-0.271575,0.662433,-0.313415][0.214206,0.153268,0][-1.06758,0.452645,-0.47713][0.840976,-0.270925,0.468357][0.159299,0.142075,0][-0.843273,0.399108,-0.75994][0.73379,-0.236728,0.636799][0.155069,0.164418,0][-1.30533,0.925086,-0.175137][0,0,0][0.322915,0.576237,0][-0.94705,1.14478,-0.123624][1.22586,-1.1894,-0.115078][0.326985,0.547931,0][-1.19903,0.925086,-0.537161][0,0,0][0.294314,0.567839,0][-1.19903,0.925086,-0.537161][0,0,0][0.294314,0.567839,0][-0.94705,1.14478,-0.123624][1.22586,-1.1894,-0.115078][0.326985,0.547931,0][-1.19903,0.925086,-0.537161][-0.248783,0.379397,-0.412695][0.294314,0.567839,0][-1.19903,0.925086,-0.537161][-0.248783,0.379397,-0.412695][0.294314,0.567839,0][-0.94705,1.14478,-0.123624][1.22586,-1.1894,-0.115078][0.326985,0.547931,0][-0.94705,1.14478,-0.123624][0.446768,-0.512427,0][0.326985,0.547931,0][-0.94705,1.14478,-0.123624][0.446768,-0.512427,0][0.21398,0.114146,0][-0.94705,1.14478,-0.123624][1.22586,-1.1894,-0.115078][0.21398,0.114146,0][-1.06758,0.452645,-0.47713][0.326704,-0.148324,0.0640776][0.159299,0.142075,0][-1.06758,0.452645,-0.47713][0.326704,-0.148324,0.0640776][0.159299,0.142075,0][-0.94705,1.14478,-0.123624][1.22586,-1.1894,-0.115078][0.21398,0.114146,0][-1.06758,0.452645,-0.47713][0.840976,-0.270925,0.468357][0.159299,0.142075,0][-1.06758,0.452645,-0.47713][0.840976,-0.270925,0.468357][0.159299,0.142075,0][-0.94705,1.14478,-0.123624][1.22586,-1.1894,-0.115078][0.21398,0.114146,0][-1.16229,0.452645,-0.154571][0.944311,-0.299737,0.135771][0.159299,0.116591,0][-0.94705,1.14478,-0.123624][0.476403,-0.776929,0][0.326985,0.547931,0][-0.94705,1.14478,-0.123624][1.22586,-1.1894,-0.115078][0.326985,0.547931,0][-1.30533,0.925086,0.202171][-0.425468,0.377219,-0.213521][0.352724,0.576237,0][-1.30533,0.925086,0.202171][-0.425468,0.377219,-0.213521][0.352724,0.576237,0][-0.94705,1.14478,-0.123624][1.22586,-1.1894,-0.115078][0.326985,0.547931,0][-1.30533,0.925086,0.202171][0,0,0][0.352724,0.576237,0][-1.30533,0.925086,0.202171][0,0,0][0.352724,0.576237,0][-0.94705,1.14478,-0.123624][1.22586,-1.1894,-0.115078][0.326985,0.547931,0][-1.30533,0.925086,-0.175137][0,0,0][0.322915,0.576237,0][-1.16229,0.452645,0.181606][0.305237,-0.149314,-0.123334][0.159299,0.0900321,0][-1.16229,0.452645,0.181606][0.9443,-0.299766,-0.135785][0.159299,0.0900321,0][-0.94705,1.14478,-0.123624][0.476403,-0.776929,0][0.21398,0.114146,0][-0.94705,1.14478,-0.123624][0.476403,-0.776929,0][0.21398,0.114146,0][-1.16229,0.452645,0.181606][0.9443,-0.299766,-0.135785][0.159299,0.0900321,0][-0.94705,1.14478,-0.123624][1.22586,-1.1894,-0.115078][0.21398,0.114146,0][-0.94705,1.14478,-0.123624][1.22586,-1.1894,-0.115078][0.21398,0.114146,0][-1.16229,0.452645,0.181606][0.9443,-0.299766,-0.135785][0.159299,0.0900321,0][-1.16229,0.452645,-0.154571][0.944311,-0.299737,0.135771][0.159299,0.116591,0][-1.19903,0.925086,0.564196][0,0,0][0.381325,0.567839,0][-0.869776,1.14478,0.413831][-0.391921,0.666136,0.115078][0.369446,0.541826,0][-1.30533,0.925086,0.202171][0,0,0][0.352724,0.576237,0][-1.30533,0.925086,0.202171][0,0,0][0.352724,0.576237,0][-0.869776,1.14478,0.413831][-0.391921,0.666136,0.115078][0.369446,0.541826,0][-1.30533,0.925086,0.202171][-0.425468,0.377219,-0.213521][0.352724,0.576237,0][-1.30533,0.925086,0.202171][-0.425468,0.377219,-0.213521][0.352724,0.576237,0][-0.869776,1.14478,0.413831][-0.391921,0.666136,0.115078][0.369446,0.541826,0][-0.869776,1.14478,0.413831][0,0,0][0.369446,0.541826,0][-0.869776,1.14478,0.413831][0,0,0][0.21398,0.0716854,0][-0.869776,1.14478,0.413831][-0.391921,0.666136,0.115078][0.21398,0.0716854,0][-1.16229,0.452645,0.181606][0.305237,-0.149314,-0.123334][0.159299,0.0900321,0][-1.16229,0.452645,0.181606][0.305237,-0.149314,-0.123334][0.159299,0.0900321,0][-0.869776,1.14478,0.413831][-0.391921,0.666136,0.115078][0.21398,0.0716854,0][-1.16229,0.452645,0.181606][0.9443,-0.299766,-0.135785][0.159299,0.0900321,0][-1.16229,0.452645,0.181606][0.9443,-0.299766,-0.135785][0.159299,0.0900321,0][-0.869776,1.14478,0.413831][-0.391921,0.666136,0.115078][0.21398,0.0716854,0][-1.06758,0.452645,0.504165][0.867809,-0.299737,-0.396315][0.159299,0.0645486,0][-0.869776,1.14478,0.413831][0,0,0][0.369446,0.541826,0][-0.869776,1.14478,0.413831][-0.391921,0.666136,0.115078][0.369446,0.541826,0][-0.995041,0.925086,0.881607][-0.47348,0.377441,0.0504736][0.406402,0.551723,0][-0.995041,0.925086,0.881607][-0.47348,0.377441,0.0504736][0.406402,0.551723,0][-0.869776,1.14478,0.413831][-0.391921,0.666136,0.115078][0.369446,0.541826,0][-0.995041,0.925086,0.881607][0,0,0][0.406402,0.551723,0][-0.995041,0.925086,0.881607][0,0,0][0.406402,0.551723,0][-0.869776,1.14478,0.413831][-0.391921,0.666136,0.115078][0.369446,0.541826,0][-1.19903,0.925086,0.564196][0,0,0][0.381325,0.567839,0][-0.88583,0.452645,0.786975][0.190103,-0.149314,-0.268779][0.159299,0.0422055,0][-0.88583,0.452645,0.786975][0.721002,-0.299737,-0.624752][0.159299,0.0422055,0][-0.869776,1.14478,0.413831][0,0,0][0.21398,0.0716854,0][-0.869776,1.14478,0.413831][0,0,0][0.21398,0.0716854,0][-0.88583,0.452645,0.786975][0.721002,-0.299737,-0.624752][0.159299,0.0422055,0][-0.869776,1.14478,0.413831][-0.391921,0.666136,0.115078][0.21398,0.0716854,0][-0.869776,1.14478,0.413831][-0.391921,0.666136,0.115078][0.21398,0.0716854,0][-0.88583,0.452645,0.786975][0.721002,-0.299737,-0.624752][0.159299,0.0422055,0][-1.06758,0.452645,0.504165][0.867809,-0.299737,-0.396315][0.159299,0.0645486,0][-0.709891,0.925086,1.12869][0,0,0][0.425923,0.529195,0][-0.514199,1.14478,0.824188][-0.267489,0.666136,0.308698][0.401866,0.513734,0][-0.995041,0.925086,0.881607][0,0,0][0.406402,0.551723,0][-0.995041,0.925086,0.881607][0,0,0][0.406402,0.551723,0][-0.514199,1.14478,0.824188][-0.267489,0.666136,0.308698][0.401866,0.513734,0][-0.995041,0.925086,0.881607][-0.47348,0.377441,0.0504736][0.406402,0.551723,0][-0.995041,0.925086,0.881607][-0.47348,0.377441,0.0504736][0.406402,0.551723,0][-0.514199,1.14478,0.824188][-0.267489,0.666136,0.308698][0.401866,0.513734,0][-0.514199,1.14478,0.824188][0,0,0][0.401866,0.513734,0][-0.514199,1.14478,0.824188][0,0,0][0.898781,0.513734,0][-0.514199,1.14478,0.824188][-0.267489,0.666136,0.308698][0.898781,0.513734,0][-0.88583,0.452645,0.786975][0.190103,-0.149314,-0.268779][0.8441,0.543095,0][-0.88583,0.452645,0.786975][0.190103,-0.149314,-0.268779][0.8441,0.543095,0][-0.514199,1.14478,0.824188][-0.267489,0.666136,0.308698][0.898781,0.513734,0][-0.88583,0.452645,0.786975][0.721002,-0.299737,-0.624752][0.8441,0.543095,0][-0.88583,0.452645,0.786975][0.721002,-0.299737,-0.624752][0.8441,0.543095,0][-0.514199,1.14478,0.824188][-0.267489,0.666136,0.308698][0.898781,0.513734,0][-0.631764,0.452645,1.00712][0.515783,-0.299737,-0.802574][0.8441,0.523023,0][-0.514199,1.14478,0.824188][0,0,0][0.401866,0.513734,0][-0.514199,1.14478,0.824188][-0.267489,0.666136,0.308698][0.401866,0.513734,0][-0.366679,0.925086,1.28543][-0.371145,0.379066,0.299255][0.438306,0.50208,0][-0.366679,0.925086,1.28543][-0.371145,0.379066,0.299255][0.438306,0.50208,0][-0.514199,1.14478,0.824188][-0.267489,0.666136,0.308698][0.401866,0.513734,0][-0.366679,0.925086,1.28543][0,0,0][0.438306,0.50208,0][-0.366679,0.925086,1.28543][0,0,0][0.438306,0.50208,0][-0.514199,1.14478,0.824188][-0.267489,0.666136,0.308698][0.401866,0.513734,0][-0.709891,0.925086,1.12869][0,0,0][0.425923,0.529195,0][-0.325967,0.452645,1.14678][0.0147893,-0.149846,-0.330133][0.8441,0.498863,0][-0.325967,0.452645,1.14678][0.26885,-0.299263,-0.915511][0.8441,0.498863,0][-0.514199,1.14478,0.824188][0,0,0][0.898781,0.513734,0][-0.514199,1.14478,0.824188][0,0,0][0.898781,0.513734,0][-0.325967,0.452645,1.14678][0.26885,-0.299263,-0.915511][0.8441,0.498863,0][-0.514199,1.14478,0.824188][-0.267489,0.666136,0.308698][0.898781,0.513734,0][-0.514199,1.14478,0.824188][-0.267489,0.666136,0.308698][0.898781,0.513734,0][-0.325967,0.452645,1.14678][0.26885,-0.299263,-0.915511][0.8441,0.498863,0][-0.631764,0.452645,1.00712][0.515783,-0.299737,-0.802574][0.8441,0.523023,0][0.00678738,0.925086,1.33913][0,0,0][0.442548,0.472575,0][0.0067875,1.14366,0.978267][-0.058197,0.668253,0.404769][0.414039,0.472575,0][-0.366679,0.925086,1.28543][0,0,0][0.438306,0.50208,0][-0.366679,0.925086,1.28543][0,0,0][0.438306,0.50208,0][0.0067875,1.14366,0.978267][-0.058197,0.668253,0.404769][0.414039,0.472575,0][-0.366679,0.925086,1.28543][-0.371145,0.379066,0.299255][0.438306,0.50208,0][-0.366679,0.925086,1.28543][-0.371145,0.379066,0.299255][0.438306,0.50208,0][0.0067875,1.14366,0.978267][-0.058197,0.668253,0.404769][0.414039,0.472575,0][0.0067875,1.14366,0.978267][0,0,0][0.414039,0.472575,0][0.0067875,1.14366,0.978267][0,0,0][0.898693,0.472575,0][0.0067875,1.14366,0.978267][-0.058197,0.668253,0.404769][0.898693,0.472575,0][-0.325967,0.452645,1.14678][0.0147893,-0.149846,-0.330133][0.8441,0.498863,0][-0.325967,0.452645,1.14678][0.0147893,-0.149846,-0.330133][0.8441,0.498863,0][0.0067875,1.14366,0.978267][-0.058197,0.668253,0.404769][0.898693,0.472575,0][-0.325967,0.452645,1.14678][0.26885,-0.299263,-0.915511][0.8441,0.498863,0][-0.325967,0.452645,1.14678][0.26885,-0.299263,-0.915511][0.8441,0.498863,0][0.0067875,1.14366,0.978267][-0.058197,0.668253,0.404769][0.898693,0.472575,0][0.00678741,0.452645,1.19462][0.135937,-0.296016,-0.945461][0.8441,0.472575,0][-0.32647,1.66193,-0.514023][0.017655,0.294157,-0.380369][0.416124,0.84422,0][-0.264703,1.14478,-0.911095][0,1.67935,-1.93607][0.452374,0.881142,0][-0.709891,0.925086,-1.10166][0.0222543,0.370788,-0.47946][0.492593,0.869003,0][-0.32647,1.66193,-0.514023][0.017655,0.294157,-0.380369][0.700219,0.734911,0][-0.631765,0.452645,-0.980089][0.233294,-0.146341,0.226887][0.805378,0.737498,0][-0.264703,1.14478,-0.911095][0,1.67935,-1.93607][0.747709,0.714369,0][-0.32647,1.66193,-0.514023][0.017655,0.294157,-0.380369][0.265365,0.815368,0][-0.709891,0.925086,-1.10166][0.0222543,0.370788,-0.47946][0.237333,0.890707,0][-0.724265,1.14764,-0.61881][0,0,0][0.272007,0.866972,0][-0.32647,1.66193,-0.514023][0.017655,0.294157,-0.380369][0.108521,0.0336665,0][-0.724265,1.14764,-0.61881][0,0,0][0.0618006,0.0123174,0][-0.631765,0.452645,-0.980089][0.233294,-0.146341,0.226887][0.01,0.0319369,0][-0.56433,1.66298,-0.241371][-0.195718,0.298447,-0.324552][0.417693,0.821803,0][-0.724265,1.14764,-0.61881][0,0,0][0.46438,0.844685,0][-1.19903,0.925086,-0.537161][-0.248783,0.379397,-0.412695][0.495773,0.822881,0][-0.56433,1.66298,-0.241371][-0.195718,0.298447,-0.324552][0.25492,0.123449,0][-1.06758,0.452645,-0.47713][0.326704,-0.148324,0.0640776][0.159299,0.142075,0][-0.724265,1.14764,-0.61881][0,0,0][0.214206,0.153268,0][-0.56433,1.66298,-0.241371][-0.195718,0.298447,-0.324552][0.292734,0.819769,0][-1.19903,0.925086,-0.537161][-0.248783,0.379397,-0.412695][0.293893,0.899807,0][-0.94705,1.14478,-0.123624][0.446768,-0.512427,0][0.314894,0.866074,0][-0.56433,1.66298,-0.241371][-0.195718,0.298447,-0.324552][0.25492,0.123449,0][-0.94705,1.14478,-0.123624][0.446768,-0.512427,0][0.21398,0.114146,0][-1.06758,0.452645,-0.47713][0.326704,-0.148324,0.0640776][0.159299,0.142075,0][-0.605237,1.65757,0.101513][-0.336953,0.298822,-0.169046][0.318737,0.814381,0][-0.94705,1.14478,-0.123624][0.476403,-0.776929,0][0.314894,0.866074,0][-1.30533,0.925086,0.202171][-0.425468,0.377219,-0.213521][0.350525,0.888262,0][-0.605237,1.65757,0.101513][-0.336953,0.298822,-0.169046][0.254493,0.0963597,0][-1.16229,0.452645,0.181606][0.305237,-0.149314,-0.123334][0.159299,0.0900321,0][-0.94705,1.14478,-0.123624][0.476403,-0.776929,0][0.21398,0.114146,0][-0.605237,1.65757,0.101513][-0.336953,0.298822,-0.169046][0.445253,0.71519,0][-1.30533,0.925086,0.202171][-0.425468,0.377219,-0.213521][0.416124,0.790175,0][-0.869776,1.14478,0.413831][0,0,0][0.450971,0.766709,0][-0.605237,1.65757,0.101513][-0.336953,0.298822,-0.169046][0.254493,0.0963597,0][-0.869776,1.14478,0.413831][0,0,0][0.21398,0.0716854,0][-1.16229,0.452645,0.181606][0.305237,-0.149314,-0.123334][0.159299,0.0900321,0][-0.460506,1.65757,0.41843][-0.374856,0.298822,0.0399602][0.984989,0.810439,0][-0.869776,1.14478,0.413831][0,0,0][0.951195,0.788092,0][-0.995041,0.925086,0.881607][-0.47348,0.377441,0.0504736][0.916525,0.809657,0][-0.460506,1.65757,0.41843][-0.374856,0.298822,0.0399602][0.416124,0.931924,0][-0.88583,0.452645,0.786975][0.190103,-0.149314,-0.268779][0.521178,0.933451,0][-0.869776,1.14478,0.413831][0,0,0][0.463385,0.910634,0][-0.460506,1.65757,0.41843][-0.374856,0.298822,0.0399602][0.471546,0.719626,0][-0.995041,0.925086,0.881607][-0.47348,0.377441,0.0504736][0.472493,0.799684,0][-0.514199,1.14478,0.824188][0,0,0][0.493846,0.766082,0][-0.460506,1.65757,0.41843][-0.374856,0.298822,0.0399602][0.934413,0.732717,0][-0.514199,1.14478,0.824188][0,0,0][0.88612,0.714369,0][-0.88583,0.452645,0.786975][0.190103,-0.149314,-0.268779][0.83487,0.733661,0][-0.16563,1.65744,0.60711][-0.293444,0.299706,0.236604][0.498159,0.714369,0][-0.514199,1.14478,0.824188][0,0,0][0.493846,0.766082,0][-0.366679,0.925086,1.28543][-0.371145,0.379066,0.299255][0.529306,0.78852,0][-0.16563,1.65744,0.60711][-0.293444,0.299706,0.236604][0.939283,0.486196,0][-0.325967,0.452645,1.14678][0.0147893,-0.149846,-0.330133][0.8441,0.498863,0][-0.514199,1.14478,0.824188][0,0,0][0.898781,0.513734,0][-0.16563,1.65744,0.60711][-0.293444,0.299706,0.236604][0.496543,0.965099,0][-0.366679,0.925086,1.28543][-0.371145,0.379066,0.299255][0.416124,0.962943,0][0.0067875,1.14366,0.978267][0,0,0][0.449881,0.987806,0][-0.16563,1.65744,0.60711][-0.293444,0.299706,0.236604][0.939283,0.486196,0][0.0067875,1.14366,0.978267][0,0,0][0.898693,0.472575,0][-0.325967,0.452645,1.14678][0.0147893,-0.149846,-0.330133][0.8441,0.498863,0][0.00678806,0.925086,-1.31209][0.444024,0.152563,-3.08825][0.744624,0.551723,0][0.380255,0.925086,-1.2584][0.223548,0,-1.55481][0.744624,0.522218,0][0.00678805,0.210332,-1.31209][0.172432,0,-1.19929][0.688155,0.551723,0][0.380255,0.351996,-1.2584][0.818904,0,-3.10204][0.699347,0.522218,0][0.00678805,0.210332,-1.31209][0.172432,0,-1.19929][0.688155,0.551723,0][0.380255,0.925086,-1.2584][0.223548,0,-1.55481][0.744624,0.522218,0][0.380255,0.925086,-1.2584][0,0,0][0.744624,0.522218,0][0.380255,0.925086,-1.2584][0.223548,0,-1.55481][0.744624,0.522218,0][0.00678805,1.81092,-1.22396][0.0570783,0.0394964,-0.396988][0.814608,0.551723,0][0.00678806,0.925086,-1.31209][0.444024,0.152563,-3.08825][0.744624,0.551723,0][0.00678805,1.81092,-1.22396][0.0570783,0.0394964,-0.396988][0.814608,0.551723,0][0.380255,0.925086,-1.2584][0.223548,0,-1.55481][0.744624,0.522218,0][0.00678801,0.310982,-1.16759][0,0,0][0.471035,0.187849,0][0.339543,0.452645,-1.11974][0,0,0][0.467255,0.176657,0][0.00678801,0.310982,-1.16759][0,0,0][0.471035,0.187849,0][0.339543,0.452645,-1.11974][0,0,0][0.467255,0.176657,0][0.00678801,0.310982,-1.16759][0,0,0][0.471035,0.187849,0][0.339543,0.452645,-1.11974][0,0,0][0.467255,0.176657,0][0.380255,-0.964678,-1.2584][1.20716,-0.0222755,-2.57617][0.274658,0.971569,0][0.723467,-0.964678,-1.10166][0.540641,0,-0.841253][0.274658,0.944454,0][0.380255,-1.43712,-1.2584][0.652533,1.54678e-007,-1.42885][0.237333,0.971569,0][0.723467,-1.43712,-1.10166][0.652533,0,-1.42885][0.237333,0.944454,0][0.380255,-1.43712,-1.2584][0.652533,1.54678e-007,-1.42885][0.237333,0.971569,0][0.723467,-0.964678,-1.10166][0.540641,0,-0.841253][0.274658,0.944454,0][0.493845,-0.577191,-1.22205][1.04801,-0.128238,-1.90829][0.305271,0.962595,0][0.723467,-0.492237,-1.10166][2.53101,-0.0315985,-3.31751][0.311983,0.944454,0][0.380255,-0.964678,-1.2584][1.20716,-0.0222755,-2.57617][0.274658,0.971569,0][0.723467,-0.964678,-1.10166][0.540641,0,-0.841253][0.274658,0.944454,0][0.380255,-0.964678,-1.2584][1.20716,-0.0222755,-2.57617][0.274658,0.971569,0][0.723467,-0.492237,-1.10166][2.53101,-0.0315985,-3.31751][0.311983,0.944454,0][0.380255,0.925086,-1.2584][0.223548,0,-1.55481][0.744624,0.522218,0][0.723467,0.925086,-1.10166][0.540641,0,-0.841253][0.744624,0.495102,0][0.380255,0.351996,-1.2584][0.818904,0,-3.10204][0.699347,0.522218,0][0.723467,0.452645,-1.10166][1.94546,-0.0601421,-2.91812][0.707299,0.495102,0][0.380255,0.351996,-1.2584][0.818904,0,-3.10204][0.699347,0.522218,0][0.723467,0.925086,-1.10166][0.540641,0,-0.841253][0.744624,0.495102,0][0.723467,0.925086,-1.10166][0,0,0][0.202831,0.226115,0][0.723467,0.925086,-1.10166][0.540641,0,-0.841253][0.202831,0.226115,0][0.380255,0.925086,-1.2584][0,0,0][0.215214,0.226115,0][0.380255,0.925086,-1.2584][0.223548,0,-1.55481][0.215214,0.226115,0][0.380255,0.925086,-1.2584][0,0,0][0.215214,0.226115,0][0.723467,0.925086,-1.10166][0.540641,0,-0.841253][0.202831,0.226115,0][0.64534,0.452645,-0.980089][0,0,0][0.456222,0.176657,0][0.64534,0.452645,-0.980089][0,0,0][0.456222,0.176657,0][0.339543,0.452645,-1.11974][0,0,0][0.467255,0.176657,0][0.339543,0.452645,-1.11974][0,0,0][0.467255,0.176657,0][0.339543,0.452645,-1.11974][0,0,0][0.467255,0.176657,0][0.64534,0.452645,-0.980089][0,0,0][0.456222,0.176657,0][0.339543,-0.964678,-1.11974][-1.17743,0.0139173,2.57821][0.58875,0.714369,0][0.64534,-0.964678,-0.980089][-0.541988,0.00189043,0.840384][0.58875,0.738528,0][0.453133,-0.577191,-1.07256][-0.963741,0.00892415,2.04061][0.619363,0.723343,0][0.64534,-0.492237,-0.980089][-2.44858,0.0497681,3.30348][0.626075,0.738528,0][0.453133,-0.577191,-1.07256][-0.963741,0.00892415,2.04061][0.619363,0.723343,0][0.64534,-0.964678,-0.980089][-0.541988,0.00189043,0.840384][0.58875,0.738528,0][0.339543,-1.43712,-1.11974][-0.652533,-3.60535e-007,1.42885][0.551425,0.714369,0][0.64534,-1.43712,-0.980089][-0.652533,-2.18586e-007,1.42885][0.551425,0.738528,0][0.339543,-0.964678,-1.11974][-1.17743,0.0139173,2.57821][0.58875,0.714369,0][0.64534,-0.964678,-0.980089][-0.541988,0.00189043,0.840384][0.58875,0.738528,0][0.339543,-0.964678,-1.11974][-1.17743,0.0139173,2.57821][0.58875,0.714369,0][0.64534,-1.43712,-0.980089][-0.652533,-2.18586e-007,1.42885][0.551425,0.738528,0][0.380255,-1.43712,-1.2584][0.652533,1.54678e-007,-1.42885][0.709807,0.233033,0][0.723467,-1.43712,-1.10166][0.652533,0,-1.42885][0.718974,0.261397,0][0.339543,-1.43712,-1.11974][-0.652533,-3.60535e-007,1.42885][0.721059,0.231104,0][0.64534,-1.43712,-0.980089][-0.652533,-2.18586e-007,1.42885][0.729227,0.256376,0][0.339543,-1.43712,-1.11974][-0.652533,-3.60535e-007,1.42885][0.721059,0.231104,0][0.723467,-1.43712,-1.10166][0.652533,0,-1.42885][0.718974,0.261397,0][0.723467,-0.964678,-1.10166][0.540641,0,-0.841253][0.274658,0.944454,0][1.00862,-0.964678,-0.854572][0.75575,0,-0.65486][0.274658,0.921926,0][0.723467,-1.43712,-1.10166][0.652533,0,-1.42885][0.237333,0.944454,0][1.00862,-1.43712,-0.854572][1.02865,0,-1.18713][0.237333,0.921926,0][0.723467,-1.43712,-1.10166][0.652533,0,-1.42885][0.237333,0.944454,0][1.00862,-0.964678,-0.854572][0.75575,0,-0.65486][0.274658,0.921926,0][0.723467,-0.492237,-1.10166][2.53101,-0.0315985,-3.31751][0.311983,0.944454,0][1.00862,-0.492237,-0.854572][0.753526,0.0100998,-0.657341][0.311983,0.921926,0][0.723467,-0.964678,-1.10166][0.540641,0,-0.841253][0.274658,0.944454,0][1.00862,-0.964678,-0.854572][0.75575,0,-0.65486][0.274658,0.921926,0][0.723467,-0.964678,-1.10166][0.540641,0,-0.841253][0.274658,0.944454,0][1.00862,-0.492237,-0.854572][0.753526,0.0100998,-0.657341][0.311983,0.921926,0][0.803559,-0.0197962,-1.05452][1.56669,-0.128817,-1.37085][0.349308,0.938127,0][0.986138,0.0729589,-0.854572][3.44791,0.0569905,-2.75004][0.356636,0.923702,0][0.723467,-0.492237,-1.10166][2.53101,-0.0315985,-3.31751][0.311983,0.944454,0][1.00862,-0.492237,-0.854572][0.753526,0.0100998,-0.657341][0.311983,0.921926,0][0.723467,-0.492237,-1.10166][2.53101,-0.0315985,-3.31751][0.311983,0.944454,0][0.986138,0.0729589,-0.854572][3.44791,0.0569905,-2.75004][0.356636,0.923702,0][0.723467,0.925086,-1.10166][0.540641,0,-0.841253][0.744624,0.495102,0][1.00862,0.925086,-0.854572][0.767049,-0.046724,-0.639884][0.744624,0.472574,0][0.723467,0.452645,-1.10166][1.94546,-0.0601421,-2.91812][0.707299,0.495102,0][0.96606,0.399108,-0.854572][3.47726,-0.0449068,-2.87807][0.703069,0.475937,0][0.723467,0.452645,-1.10166][1.94546,-0.0601421,-2.91812][0.707299,0.495102,0][1.00862,0.925086,-0.854572][0.767049,-0.046724,-0.639884][0.744624,0.472574,0][1.00862,0.925086,-0.854572][0,0,0][0.183311,0.226115,0][1.00862,0.925086,-0.854572][0.767049,-0.046724,-0.639884][0.183311,0.226115,0][0.723467,0.925086,-1.10166][0,0,0][0.202831,0.226115,0][0.723467,0.925086,-1.10166][0.540641,0,-0.841253][0.202831,0.226115,0][0.723467,0.925086,-1.10166][0,0,0][0.202831,0.226115,0][1.00862,0.925086,-0.854572][0.767049,-0.046724,-0.639884][0.183311,0.226115,0][0.856848,0.399108,-0.75994][0,0,0][0.43883,0.180887,0][0.856848,0.399108,-0.75994][0,0,0][0.43883,0.180887,0][0.64534,0.452645,-0.980089][0,0,0][0.456222,0.176657,0][0.64534,0.452645,-0.980089][0,0,0][0.456222,0.176657,0][0.64534,0.452645,-0.980089][0,0,0][0.456222,0.176657,0][0.856848,0.399108,-0.75994][0,0,0][0.43883,0.180887,0][0.64534,-0.492237,-0.980089][-2.44858,0.0497681,3.30348][0.626075,0.738528,0][0.899406,-0.492237,-0.75994][-0.763928,-0.00969311,0.645228][0.626075,0.7586,0][0.725432,-0.0197962,-0.933245][-1.57437,-0.0432181,1.46262][0.663399,0.744856,0][0.865929,0.0729589,-0.75994][-3.44372,-0.122204,2.63038][0.670727,0.755956,0][0.725432,-0.0197962,-0.933245][-1.57437,-0.0432181,1.46262][0.663399,0.744856,0][0.899406,-0.492237,-0.75994][-0.763928,-0.00969311,0.645228][0.626075,0.7586,0][0.64534,-0.964678,-0.980089][-0.541988,0.00189043,0.840384][0.58875,0.738528,0][0.899406,-0.964678,-0.75994][-0.75575,0,0.65486][0.58875,0.7586,0][0.64534,-0.492237,-0.980089][-2.44858,0.0497681,3.30348][0.626075,0.738528,0][0.899406,-0.492237,-0.75994][-0.763928,-0.00969311,0.645228][0.626075,0.7586,0][0.64534,-0.492237,-0.980089][-2.44858,0.0497681,3.30348][0.626075,0.738528,0][0.899406,-0.964678,-0.75994][-0.75575,0,0.65486][0.58875,0.7586,0][0.64534,-1.43712,-0.980089][-0.652533,-2.18586e-007,1.42885][0.551425,0.738528,0][0.899406,-1.43712,-0.75994][-1.02865,0,1.18713][0.551425,0.7586,0][0.64534,-0.964678,-0.980089][-0.541988,0.00189043,0.840384][0.58875,0.738528,0][0.899406,-0.964678,-0.75994][-0.75575,0,0.65486][0.58875,0.7586,0][0.64534,-0.964678,-0.980089][-0.541988,0.00189043,0.840384][0.58875,0.738528,0][0.899406,-1.43712,-0.75994][-1.02865,0,1.18713][0.551425,0.7586,0][0.723467,-1.43712,-1.10166][0.652533,0,-1.42885][0.718974,0.261397,0][1.00862,-1.43712,-0.854572][1.02865,0,-1.18713][0.735761,0.286029,0][0.64534,-1.43712,-0.980089][-0.652533,-2.18586e-007,1.42885][0.729227,0.256376,0][0.899406,-1.43712,-0.75994][-1.02865,0,1.18713][0.744185,0.278323,0][0.64534,-1.43712,-0.980089][-0.652533,-2.18586e-007,1.42885][0.729227,0.256376,0][1.00862,-1.43712,-0.854572][1.02865,0,-1.18713][0.735761,0.286029,0][1.00862,-0.964678,-0.854572][0.75575,0,-0.65486][0.183311,0.375414,0][1.2126,-0.964678,-0.53716][0.909632,0,-0.415415][0.158234,0.375414,0][1.00862,-1.43712,-0.854572][1.02865,0,-1.18713][0.183311,0.412739,0][1.2126,-1.43712,-0.53716][1.32144,0,-0.849236][0.158234,0.412739,0][1.00862,-1.43712,-0.854572][1.02865,0,-1.18713][0.183311,0.412739,0][1.2126,-0.964678,-0.53716][0.909632,0,-0.415415][0.158234,0.375414,0][1.00862,-0.492237,-0.854572][0.753526,0.0100998,-0.657341][0.183311,0.338089,0][1.2126,-0.492237,-0.53716][0.909632,0,-0.415415][0.158234,0.338089,0][1.00862,-0.964678,-0.854572][0.75575,0,-0.65486][0.183311,0.375414,0][1.2126,-0.964678,-0.53716][0.909632,0,-0.415415][0.158234,0.375414,0][1.00862,-0.964678,-0.854572][0.75575,0,-0.65486][0.183311,0.375414,0][1.2126,-0.492237,-0.53716][0.909632,0,-0.415415][0.158234,0.338089,0][0.986138,0.0729589,-0.854572][3.44791,0.0569905,-2.75004][0.183311,0.293437,0][1.2126,-0.0197962,-0.53716][0.902141,0.00593438,-0.4314][0.158234,0.300765,0][1.00862,-0.492237,-0.854572][0.753526,0.0100998,-0.657341][0.183311,0.338089,0][1.2126,-0.492237,-0.53716][0.909632,0,-0.415415][0.158234,0.338089,0][1.00862,-0.492237,-0.854572][0.753526,0.0100998,-0.657341][0.183311,0.338089,0][1.2126,-0.0197962,-0.53716][0.902141,0.00593438,-0.4314][0.158234,0.300765,0][0.96606,0.399108,-0.854572][3.47726,-0.0449068,-2.87807][0.183311,0.26767,0][1.2126,0.452645,-0.53716][0.892247,0.0050104,-0.451519][0.158234,0.26344,0][0.986138,0.0729589,-0.854572][3.44791,0.0569905,-2.75004][0.183311,0.293437,0][1.2126,-0.0197962,-0.53716][0.902141,0.00593438,-0.4314][0.158234,0.300765,0][0.986138,0.0729589,-0.854572][3.44791,0.0569905,-2.75004][0.183311,0.293437,0][1.2126,0.452645,-0.53716][0.892247,0.0050104,-0.451519][0.158234,0.26344,0][1.00862,0.925086,-0.854572][0.767049,-0.046724,-0.639884][0.183311,0.226115,0][1.2126,0.925086,-0.53716][0.901617,-0.0201778,-0.432065][0.158234,0.226115,0][0.96606,0.399108,-0.854572][3.47726,-0.0449068,-2.87807][0.183311,0.26767,0][1.2126,0.452645,-0.53716][0.892247,0.0050104,-0.451519][0.158234,0.26344,0][0.96606,0.399108,-0.854572][3.47726,-0.0449068,-2.87807][0.183311,0.26767,0][1.2126,0.925086,-0.53716][0.901617,-0.0201778,-0.432065][0.158234,0.226115,0][1.2126,0.925086,-0.53716][0,0,0][0.158234,0.226115,0][1.2126,0.925086,-0.53716][0.901617,-0.0201778,-0.432065][0.158234,0.226115,0][1.00862,0.925086,-0.854572][0,0,0][0.183311,0.226115,0][1.00862,0.925086,-0.854572][0.767049,-0.046724,-0.639884][0.183311,0.226115,0][1.00862,0.925086,-0.854572][0,0,0][0.183311,0.226115,0][1.2126,0.925086,-0.53716][0.901617,-0.0201778,-0.432065][0.158234,0.226115,0][0.856848,0.399108,-0.75994][0,0,0][0.43883,0.180887,0][1.08116,0.452645,-0.47713][0,0,0][0.416487,0.176657,0][0.856848,0.399108,-0.75994][0,0,0][0.43883,0.180887,0][1.08116,0.452645,-0.47713][0,0,0][0.416487,0.176657,0][0.856848,0.399108,-0.75994][0,0,0][0.43883,0.180887,0][1.08116,0.452645,-0.47713][0,0,0][0.416487,0.176657,0][0.865929,0.0729589,-0.75994][-3.44372,-0.122204,2.63038][0.129302,0.434866,0][1.08116,-0.0197962,-0.47713][-0.891672,-0.00217732,0.452677][0.121974,0.457209,0][0.856848,0.399108,-0.75994][0,0,0][0.155069,0.434866,0][1.08116,0.452645,-0.47713][0,0,0][0.159299,0.457209,0][0.856848,0.399108,-0.75994][0,0,0][0.155069,0.434866,0][1.08116,-0.0197962,-0.47713][-0.891672,-0.00217732,0.452677][0.121974,0.457209,0][0.899406,-0.492237,-0.75994][-0.763928,-0.00969311,0.645228][0.0846494,0.434866,0][1.08116,-0.492237,-0.47713][-0.906645,-0.00810255,0.421816][0.0846494,0.457209,0][0.865929,0.0729589,-0.75994][-3.44372,-0.122204,2.63038][0.129302,0.434866,0][1.08116,-0.0197962,-0.47713][-0.891672,-0.00217732,0.452677][0.121974,0.457209,0][0.865929,0.0729589,-0.75994][-3.44372,-0.122204,2.63038][0.129302,0.434866,0][1.08116,-0.492237,-0.47713][-0.906645,-0.00810255,0.421816][0.0846494,0.457209,0][0.899406,-0.964678,-0.75994][-0.75575,0,0.65486][0.0473247,0.434866,0][1.08116,-0.964678,-0.47713][-0.909632,0,0.415415][0.0473247,0.457209,0][0.899406,-0.492237,-0.75994][-0.763928,-0.00969311,0.645228][0.0846494,0.434866,0][1.08116,-0.492237,-0.47713][-0.906645,-0.00810255,0.421816][0.0846494,0.457209,0][0.899406,-0.492237,-0.75994][-0.763928,-0.00969311,0.645228][0.0846494,0.434866,0][1.08116,-0.964678,-0.47713][-0.909632,0,0.415415][0.0473247,0.457209,0][0.899406,-1.43712,-0.75994][-1.02865,0,1.18713][0.01,0.434866,0][1.08116,-1.43712,-0.47713][-1.32144,0,0.849236][0.01,0.457209,0][0.899406,-0.964678,-0.75994][-0.75575,0,0.65486][0.0473247,0.434866,0][1.08116,-0.964678,-0.47713][-0.909632,0,0.415415][0.0473247,0.457209,0][0.899406,-0.964678,-0.75994][-0.75575,0,0.65486][0.0473247,0.434866,0][1.08116,-1.43712,-0.47713][-1.32144,0,0.849236][0.01,0.457209,0][1.00862,-1.43712,-0.854572][1.02865,0,-1.18713][0.735761,0.286029,0][1.2126,-1.43712,-0.53716][1.32144,0,-0.849236][0.758808,0.304935,0][0.899406,-1.43712,-0.75994][-1.02865,0,1.18713][0.744185,0.278323,0][1.08116,-1.43712,-0.47713][-1.32144,0,0.849236][0.764719,0.295167,0][0.899406,-1.43712,-0.75994][-1.02865,0,1.18713][0.744185,0.278323,0][1.2126,-1.43712,-0.53716][1.32144,0,-0.849236][0.758808,0.304935,0][1.2126,-0.964678,-0.53716][0.909632,0,-0.415415][0.158234,0.375414,0][1.3189,-0.964678,-0.175136][4.58513,0,-0.885087][0.129633,0.375414,0][1.2126,-1.43712,-0.53716][1.32144,0,-0.849236][0.158234,0.412739,0][1.3189,-1.43712,-0.175136][1.50717,0,-0.442544][0.129633,0.412739,0][1.2126,-1.43712,-0.53716][1.32144,0,-0.849236][0.158234,0.412739,0][1.3189,-0.964678,-0.175136][4.58513,0,-0.885087][0.129633,0.375414,0][1.2126,-0.492237,-0.53716][0.909632,0,-0.415415][0.158234,0.338089,0][1.3189,-0.492237,-0.175136][3.01434,0,-0.885088][0.129633,0.338089,0][1.2126,-0.964678,-0.53716][0.909632,0,-0.415415][0.158234,0.375414,0][1.3189,-0.964678,-0.175136][4.58513,0,-0.885087][0.129633,0.375414,0][1.2126,-0.964678,-0.53716][0.909632,0,-0.415415][0.158234,0.375414,0][1.3189,-0.492237,-0.175136][3.01434,0,-0.885088][0.129633,0.338089,0][1.2126,-0.0197962,-0.53716][0.902141,0.00593438,-0.4314][0.158234,0.300765,0][1.3189,-0.0197962,-0.175136][3.01434,0,-0.885088][0.129633,0.300765,0][1.2126,-0.492237,-0.53716][0.909632,0,-0.415415][0.158234,0.338089,0][1.3189,-0.492237,-0.175136][3.01434,0,-0.885088][0.129633,0.338089,0][1.2126,-0.492237,-0.53716][0.909632,0,-0.415415][0.158234,0.338089,0][1.3189,-0.0197962,-0.175136][3.01434,0,-0.885088][0.129633,0.300765,0][1.2126,0.452645,-0.53716][0.892247,0.0050104,-0.451519][0.158234,0.26344,0][1.3189,0.452645,-0.175136][4.58513,0,-0.885087][0.129633,0.26344,0][1.2126,-0.0197962,-0.53716][0.902141,0.00593438,-0.4314][0.158234,0.300765,0][1.3189,-0.0197962,-0.175136][3.01434,0,-0.885088][0.129633,0.300765,0][1.2126,-0.0197962,-0.53716][0.902141,0.00593438,-0.4314][0.158234,0.300765,0][1.3189,0.452645,-0.175136][4.58513,0,-0.885087][0.129633,0.26344,0][1.2126,0.925086,-0.53716][0.901617,-0.0201778,-0.432065][0.158234,0.226115,0][1.3189,0.925086,-0.175136][0.989821,0,-0.142314][0.129633,0.226115,0][1.2126,0.452645,-0.53716][0.892247,0.0050104,-0.451519][0.158234,0.26344,0][1.3189,0.452645,-0.175136][4.58513,0,-0.885087][0.129633,0.26344,0][1.2126,0.452645,-0.53716][0.892247,0.0050104,-0.451519][0.158234,0.26344,0][1.3189,0.925086,-0.175136][0.989821,0,-0.142314][0.129633,0.226115,0][1.3189,0.925086,-0.175136][0,0,0][0.129633,0.226115,0][1.3189,0.925086,-0.175136][0.989821,0,-0.142314][0.129633,0.226115,0][1.2126,0.925086,-0.53716][0,0,0][0.158234,0.226115,0][1.2126,0.925086,-0.53716][0.901617,-0.0201778,-0.432065][0.158234,0.226115,0][1.2126,0.925086,-0.53716][0,0,0][0.158234,0.226115,0][1.3189,0.925086,-0.175136][0.989821,0,-0.142314][0.129633,0.226115,0][1.17587,0.452645,-0.154571][0,0,0][0.391003,0.176657,0][1.17587,0.452645,-0.154571][0,0,0][0.391003,0.176657,0][1.08116,0.452645,-0.47713][0,0,0][0.416487,0.176657,0][1.08116,0.452645,-0.47713][0,0,0][0.416487,0.176657,0][1.08116,0.452645,-0.47713][0,0,0][0.416487,0.176657,0][1.17587,0.452645,-0.154571][0,0,0][0.391003,0.176657,0][1.08116,-0.0197962,-0.47713][-0.891672,-0.00217732,0.452677][0.121974,0.457209,0][1.17587,-0.0197962,-0.154571][-0.989821,0,0.142315][0.121974,0.482692,0][1.08116,0.452645,-0.47713][0,0,0][0.159299,0.457209,0][1.17587,0.452645,-0.154571][0,0,0][0.159299,0.482692,0][1.08116,0.452645,-0.47713][0,0,0][0.159299,0.457209,0][1.17587,-0.0197962,-0.154571][-0.989821,0,0.142315][0.121974,0.482692,0][1.08116,-0.492237,-0.47713][-0.906645,-0.00810255,0.421816][0.0846494,0.457209,0][1.17587,-0.492237,-0.154571][-0.989821,0,0.142315][0.0846494,0.482692,0][1.08116,-0.0197962,-0.47713][-0.891672,-0.00217732,0.452677][0.121974,0.457209,0][1.17587,-0.0197962,-0.154571][-0.989821,0,0.142315][0.121974,0.482692,0][1.08116,-0.0197962,-0.47713][-0.891672,-0.00217732,0.452677][0.121974,0.457209,0][1.17587,-0.492237,-0.154571][-0.989821,0,0.142315][0.0846494,0.482692,0][1.08116,-0.964678,-0.47713][-0.909632,0,0.415415][0.0473247,0.457209,0][1.17587,-0.964678,-0.154571][-0.989821,0,0.142315][0.0473247,0.482692,0][1.08116,-0.492237,-0.47713][-0.906645,-0.00810255,0.421816][0.0846494,0.457209,0][1.17587,-0.492237,-0.154571][-0.989821,0,0.142315][0.0846494,0.482692,0][1.08116,-0.492237,-0.47713][-0.906645,-0.00810255,0.421816][0.0846494,0.457209,0][1.17587,-0.964678,-0.154571][-0.989821,0,0.142315][0.0473247,0.482692,0][1.08116,-1.43712,-0.47713][-1.32144,0,0.849236][0.01,0.457209,0][1.17587,-1.43712,-0.154571][-1.50717,0,0.442544][0.01,0.482692,0][1.08116,-0.964678,-0.47713][-0.909632,0,0.415415][0.0473247,0.457209,0][1.17587,-0.964678,-0.154571][-0.989821,0,0.142315][0.0473247,0.482692,0][1.08116,-0.964678,-0.47713][-0.909632,0,0.415415][0.0473247,0.457209,0][1.17587,-1.43712,-0.154571][-1.50717,0,0.442544][0.01,0.482692,0][1.2126,-1.43712,-0.53716][1.32144,0,-0.849236][0.758808,0.304935,0][1.3189,-1.43712,-0.175136][1.50717,0,-0.442544][0.786248,0.316581,0][1.08116,-1.43712,-0.47713][-1.32144,0,0.849236][0.764719,0.295167,0][1.17587,-1.43712,-0.154571][-1.50717,0,0.442544][0.789167,0.305544,0][1.08116,-1.43712,-0.47713][-1.32144,0,0.849236][0.764719,0.295167,0][1.3189,-1.43712,-0.175136][1.50717,0,-0.442544][0.786248,0.316581,0][1.3189,-0.964678,-0.175136][4.58513,0,-0.885087][0.129633,0.375414,0][1.3189,-0.964678,0.202172][4.58513,0,0.885091][0.0998239,0.375414,0][1.3189,-1.43712,-0.175136][1.50717,0,-0.442544][0.129633,0.412739,0][1.3189,-1.43712,0.202172][1.5708,0,4.96289e-007][0.0998239,0.412739,0][1.3189,-1.43712,-0.175136][1.50717,0,-0.442544][0.129633,0.412739,0][1.3189,-0.964678,0.202172][4.58513,0,0.885091][0.0998239,0.375414,0][1.78258,-0.492237,-0.175136][1.32712,0,4.193e-007][0.208798,0.58657,0][1.78258,-0.492237,0.202172][1.32712,0,5.42568e-007][0.17899,0.58657,0][1.78258,-0.85523,-0.0848901][1.81447,0,8.34531e-007][0.201669,0.615248,0][1.78258,-0.85523,0.111926][1.81447,-2.7323e-007,1.09901e-006][0.186119,0.615248,0][1.78258,-0.85523,-0.0848901][1.81447,0,8.34531e-007][0.201669,0.615248,0][1.78258,-0.492237,0.202172][1.32712,0,5.42568e-007][0.17899,0.58657,0][2.24625,-0.0197962,-0.175136][1.31417,-4.75238e-007,1.66083e-006][0.708301,0.13361,0][2.24625,-0.0197963,0.202172][1.31417,-4.56037e-007,1.63783e-006][0.678492,0.13361,0][2.24625,-0.363707,-0.0848899][1.82742,-6.22553e-007,2.2636e-006][0.701171,0.16078,0][2.24625,-0.363707,0.111926][1.82742,-5.80898e-007,2.2137e-006][0.685622,0.16078,0][2.24625,-0.363707,-0.0848899][1.82742,-6.22553e-007,2.2636e-006][0.701171,0.16078,0][2.24625,-0.0197963,0.202172][1.31417,-4.56037e-007,1.63783e-006][0.678492,0.13361,0][3.14137,1.05679,-0.175135][1.43125,-0.237182,1.8088e-006][0.132557,0.793943,0][3.14137,1.05679,0.202173][1.43125,-0.237182,1.79606e-006][0.132557,0.764134,0][3.01904,0.318591,-0.0848893][1.66807,-0.276427,2.04581e-006][0.0742364,0.786813,0][3.01903,0.318591,0.111927][1.66807,-0.276427,2.02067e-006][0.0742364,0.771264,0][3.01904,0.318591,-0.0848893][1.66807,-0.276427,2.04581e-006][0.0742364,0.786813,0][3.14137,1.05679,0.202173][1.43125,-0.237182,1.79606e-006][0.132557,0.764134,0][1.3189,0.925086,-0.175136][0.989821,0,-0.142314][0.129633,0.226115,0][1.3189,0.925086,0.202172][0.989821,0,0.142315][0.0998239,0.226115,0][1.3189,0.452645,-0.175136][4.58513,0,-0.885087][0.129633,0.26344,0][1.3189,0.452645,0.202172][4.58513,0,0.885091][0.0998239,0.26344,0][1.3189,0.452645,-0.175136][4.58513,0,-0.885087][0.129633,0.26344,0][1.3189,0.925086,0.202172][0.989821,0,0.142315][0.0998239,0.226115,0][1.3189,0.925086,0.202172][0,0,0][0.0998239,0.226115,0][1.3189,0.925086,0.202172][0.989821,0,0.142315][0.0998239,0.226115,0][1.3189,0.925086,-0.175136][0,0,0][0.129633,0.226115,0][1.3189,0.925086,-0.175136][0.989821,0,-0.142314][0.129633,0.226115,0][1.3189,0.925086,-0.175136][0,0,0][0.129633,0.226115,0][1.3189,0.925086,0.202172][0.989821,0,0.142315][0.0998239,0.226115,0][1.17587,0.452645,0.181606][0,0,0][0.364444,0.176657,0][1.17587,0.452645,0.181606][0,0,0][0.364444,0.176657,0][1.17587,0.452645,-0.154571][0,0,0][0.391003,0.176657,0][1.17587,0.452645,-0.154571][0,0,0][0.391003,0.176657,0][1.17587,0.452645,-0.154571][0,0,0][0.391003,0.176657,0][1.17587,0.452645,0.181606][0,0,0][0.364444,0.176657,0][1.17587,-0.0197962,-0.154571][-0.989821,0,0.142315][0.121974,0.482692,0][1.17587,-0.0197963,0.181606][-0.989821,0,-0.142315][0.121974,0.509252,0][1.17587,0.452645,-0.154571][0,0,0][0.159299,0.482692,0][1.17587,0.452645,0.181606][0,0,0][0.159299,0.509252,0][1.17587,0.452645,-0.154571][0,0,0][0.159299,0.482692,0][1.17587,-0.0197963,0.181606][-0.989821,0,-0.142315][0.121974,0.509252,0][1.17587,-0.492237,-0.154571][-0.989821,0,0.142315][0.0846494,0.482692,0][1.17587,-0.492237,0.181606][-0.989821,0,-0.142315][0.0846494,0.509252,0][1.17587,-0.0197962,-0.154571][-0.989821,0,0.142315][0.121974,0.482692,0][1.17587,-0.0197963,0.181606][-0.989821,0,-0.142315][0.121974,0.509252,0][1.17587,-0.0197962,-0.154571][-0.989821,0,0.142315][0.121974,0.482692,0][1.17587,-0.492237,0.181606][-0.989821,0,-0.142315][0.0846494,0.509252,0][1.17587,-0.964678,-0.154571][-0.989821,0,0.142315][0.0473247,0.482692,0][1.17587,-0.964678,0.181606][-0.989821,0,-0.142315][0.0473247,0.509252,0][1.17587,-0.492237,-0.154571][-0.989821,0,0.142315][0.0846494,0.482692,0][1.17587,-0.492237,0.181606][-0.989821,0,-0.142315][0.0846494,0.509252,0][1.17587,-0.492237,-0.154571][-0.989821,0,0.142315][0.0846494,0.482692,0][1.17587,-0.964678,0.181606][-0.989821,0,-0.142315][0.0473247,0.509252,0][1.17587,-1.43712,-0.154571][-1.50717,0,0.442544][0.01,0.482692,0][1.17587,-1.43712,0.181606][-1.5708,0,-5.57009e-007][0.01,0.509252,0][1.17587,-0.964678,-0.154571][-0.989821,0,0.142315][0.0473247,0.482692,0][1.17587,-0.964678,0.181606][-0.989821,0,-0.142315][0.0473247,0.509252,0][1.17587,-0.964678,-0.154571][-0.989821,0,0.142315][0.0473247,0.482692,0][1.17587,-1.43712,0.181606][-1.5708,0,-5.57009e-007][0.01,0.509252,0][1.3189,-1.43712,-0.175136][1.50717,0,-0.442544][0.786248,0.316581,0][1.3189,-1.43712,0.202172][1.5708,0,4.96289e-007][0.815857,0.320025,0][1.17587,-1.43712,-0.154571][-1.50717,0,0.442544][0.789167,0.305544,0][1.17587,-1.43712,0.181606][-1.5708,0,-5.57009e-007][0.815549,0.308612,0][1.17587,-1.43712,-0.154571][-1.50717,0,0.442544][0.789167,0.305544,0][1.3189,-1.43712,0.202172][1.5708,0,4.96289e-007][0.815857,0.320025,0][1.3189,-0.964678,0.202172][4.58513,0,0.885091][0.0998239,0.375414,0][1.2126,-0.964678,0.564196][0.909632,0,0.415415][0.0712226,0.375414,0][1.3189,-1.43712,0.202172][1.5708,0,4.96289e-007][0.0998239,0.412739,0][1.2126,-1.43712,0.564196][1.50717,0,0.442545][0.0712226,0.412739,0][1.3189,-1.43712,0.202172][1.5708,0,4.96289e-007][0.0998239,0.412739,0][1.2126,-0.964678,0.564196][0.909632,0,0.415415][0.0712226,0.375414,0][1.3189,-0.492237,0.202172][3.01434,0,0.885091][0.0998239,0.338089,0][1.2126,-0.492237,0.564196][0.909632,0,0.415416][0.0712226,0.338089,0][1.3189,-0.964678,0.202172][4.58513,0,0.885091][0.0998239,0.375414,0][1.2126,-0.964678,0.564196][0.909632,0,0.415415][0.0712226,0.375414,0][1.3189,-0.964678,0.202172][4.58513,0,0.885091][0.0998239,0.375414,0][1.2126,-0.492237,0.564196][0.909632,0,0.415416][0.0712226,0.338089,0][1.3189,-0.0197963,0.202172][3.01434,0,0.885091][0.0998239,0.300765,0][1.2126,-0.0197963,0.564196][0.909632,0,0.415415][0.0712226,0.300765,0][1.3189,-0.492237,0.202172][3.01434,0,0.885091][0.0998239,0.338089,0][1.2126,-0.492237,0.564196][0.909632,0,0.415416][0.0712226,0.338089,0][1.3189,-0.492237,0.202172][3.01434,0,0.885091][0.0998239,0.338089,0][1.2126,-0.0197963,0.564196][0.909632,0,0.415415][0.0712226,0.300765,0][1.3189,0.452645,0.202172][4.58513,0,0.885091][0.0998239,0.26344,0][1.2126,0.452645,0.564196][0.909632,0,0.415416][0.0712226,0.26344,0][1.3189,-0.0197963,0.202172][3.01434,0,0.885091][0.0998239,0.300765,0][1.2126,-0.0197963,0.564196][0.909632,0,0.415415][0.0712226,0.300765,0][1.3189,-0.0197963,0.202172][3.01434,0,0.885091][0.0998239,0.300765,0][1.2126,0.452645,0.564196][0.909632,0,0.415416][0.0712226,0.26344,0][1.3189,0.925086,0.202172][0.989821,0,0.142315][0.0998239,0.226115,0][1.2126,0.925086,0.564196][0.909632,0,0.415416][0.0712226,0.226115,0][1.3189,0.452645,0.202172][4.58513,0,0.885091][0.0998239,0.26344,0][1.2126,0.452645,0.564196][0.909632,0,0.415416][0.0712226,0.26344,0][1.3189,0.452645,0.202172][4.58513,0,0.885091][0.0998239,0.26344,0][1.2126,0.925086,0.564196][0.909632,0,0.415416][0.0712226,0.226115,0][1.2126,0.925086,0.564196][0,0,0][0.0712226,0.226115,0][1.2126,0.925086,0.564196][0.909632,0,0.415416][0.0712226,0.226115,0][1.3189,0.925086,0.202172][0,0,0][0.0998239,0.226115,0][1.3189,0.925086,0.202172][0.989821,0,0.142315][0.0998239,0.226115,0][1.3189,0.925086,0.202172][0,0,0][0.0998239,0.226115,0][1.2126,0.925086,0.564196][0.909632,0,0.415416][0.0712226,0.226115,0][1.08116,0.452645,0.504165][0,0,0][0.33896,0.176657,0][1.08116,0.452645,0.504165][0,0,0][0.33896,0.176657,0][1.17587,0.452645,0.181606][0,0,0][0.364444,0.176657,0][1.17587,0.452645,0.181606][0,0,0][0.364444,0.176657,0][1.17587,0.452645,0.181606][0,0,0][0.364444,0.176657,0][1.08116,0.452645,0.504165][0,0,0][0.33896,0.176657,0][1.17587,-0.0197963,0.181606][-0.989821,0,-0.142315][0.121974,0.509252,0][1.08116,-0.0197963,0.504165][-0.909632,0,-0.415415][0.121974,0.534735,0][1.17587,0.452645,0.181606][0,0,0][0.159299,0.509252,0][1.08116,0.452645,0.504165][0,0,0][0.159299,0.534735,0][1.17587,0.452645,0.181606][0,0,0][0.159299,0.509252,0][1.08116,-0.0197963,0.504165][-0.909632,0,-0.415415][0.121974,0.534735,0][1.17587,-0.492237,0.181606][-0.989821,0,-0.142315][0.0846494,0.509252,0][1.08116,-0.492237,0.504165][-0.909632,0,-0.415415][0.0846494,0.534735,0][1.17587,-0.0197963,0.181606][-0.989821,0,-0.142315][0.121974,0.509252,0][1.08116,-0.0197963,0.504165][-0.909632,0,-0.415415][0.121974,0.534735,0][1.17587,-0.0197963,0.181606][-0.989821,0,-0.142315][0.121974,0.509252,0][1.08116,-0.492237,0.504165][-0.909632,0,-0.415415][0.0846494,0.534735,0][1.17587,-0.964678,0.181606][-0.989821,0,-0.142315][0.0473247,0.509252,0][1.08116,-0.964678,0.504165][-0.909632,0,-0.415415][0.0473247,0.534735,0][1.17587,-0.492237,0.181606][-0.989821,0,-0.142315][0.0846494,0.509252,0][1.08116,-0.492237,0.504165][-0.909632,0,-0.415415][0.0846494,0.534735,0][1.17587,-0.492237,0.181606][-0.989821,0,-0.142315][0.0846494,0.509252,0][1.08116,-0.964678,0.504165][-0.909632,0,-0.415415][0.0473247,0.534735,0][1.17587,-1.43712,0.181606][-1.5708,0,-5.57009e-007][0.01,0.509252,0][1.08116,-1.43712,0.504165][-1.50717,0,-0.442545][0.01,0.534735,0][1.17587,-0.964678,0.181606][-0.989821,0,-0.142315][0.0473247,0.509252,0][1.08116,-0.964678,0.504165][-0.909632,0,-0.415415][0.0473247,0.534735,0][1.17587,-0.964678,0.181606][-0.989821,0,-0.142315][0.0473247,0.509252,0][1.08116,-1.43712,0.504165][-1.50717,0,-0.442545][0.01,0.534735,0][1.3189,-1.43712,0.202172][1.5708,0,4.96289e-007][0.815857,0.320025,0][1.2126,-1.43712,0.564196][1.50717,0,0.442545][0.845237,0.314987,0][1.17587,-1.43712,0.181606][-1.5708,0,-5.57009e-007][0.815549,0.308612,0][1.08116,-1.43712,0.504165][-1.50717,0,-0.442545][0.841726,0.304124,0][1.17587,-1.43712,0.181606][-1.5708,0,-5.57009e-007][0.815549,0.308612,0][1.2126,-1.43712,0.564196][1.50717,0,0.442545][0.845237,0.314987,0][1.2126,-0.964678,0.564196][0.909632,0,0.415415][0.0712226,0.375414,0][1.00862,-0.964678,0.881607][0.755749,0,0.654861][0.0461458,0.375414,0][1.2126,-1.43712,0.564196][1.50717,0,0.442545][0.0712226,0.412739,0][1.00862,-1.43712,0.881607][1.32144,0,0.849237][0.0461458,0.412739,0][1.2126,-1.43712,0.564196][1.50717,0,0.442545][0.0712226,0.412739,0][1.00862,-0.964678,0.881607][0.755749,0,0.654861][0.0461458,0.375414,0][1.2126,-0.492237,0.564196][0.909632,0,0.415416][0.0712226,0.338089,0][1.00862,-0.492237,0.881607][0.755749,0,0.654861][0.0461458,0.338089,0][1.2126,-0.964678,0.564196][0.909632,0,0.415415][0.0712226,0.375414,0][1.00862,-0.964678,0.881607][0.755749,0,0.654861][0.0461458,0.375414,0][1.2126,-0.964678,0.564196][0.909632,0,0.415415][0.0712226,0.375414,0][1.00862,-0.492237,0.881607][0.755749,0,0.654861][0.0461458,0.338089,0][1.2126,-0.0197963,0.564196][0.909632,0,0.415415][0.0712226,0.300765,0][1.00862,-0.0197963,0.881607][0.755749,0,0.654861][0.0461458,0.300765,0][1.2126,-0.492237,0.564196][0.909632,0,0.415416][0.0712226,0.338089,0][1.00862,-0.492237,0.881607][0.755749,0,0.654861][0.0461458,0.338089,0][1.2126,-0.492237,0.564196][0.909632,0,0.415416][0.0712226,0.338089,0][1.00862,-0.0197963,0.881607][0.755749,0,0.654861][0.0461458,0.300765,0][1.2126,0.452645,0.564196][0.909632,0,0.415416][0.0712226,0.26344,0][1.00862,0.452645,0.881607][0.755749,0,0.654861][0.0461458,0.26344,0][1.2126,-0.0197963,0.564196][0.909632,0,0.415415][0.0712226,0.300765,0][1.00862,-0.0197963,0.881607][0.755749,0,0.654861][0.0461458,0.300765,0][1.2126,-0.0197963,0.564196][0.909632,0,0.415415][0.0712226,0.300765,0][1.00862,0.452645,0.881607][0.755749,0,0.654861][0.0461458,0.26344,0][1.2126,0.925086,0.564196][0.909632,0,0.415416][0.0712226,0.226115,0][1.00862,0.925086,0.881607][0.755749,0,0.654861][0.0461458,0.226115,0][1.2126,0.452645,0.564196][0.909632,0,0.415416][0.0712226,0.26344,0][1.00862,0.452645,0.881607][0.755749,0,0.654861][0.0461458,0.26344,0][1.2126,0.452645,0.564196][0.909632,0,0.415416][0.0712226,0.26344,0][1.00862,0.925086,0.881607][0.755749,0,0.654861][0.0461458,0.226115,0][1.00862,0.925086,0.881607][0,0,0][0.0461458,0.226115,0][1.00862,0.925086,0.881607][0.755749,0,0.654861][0.0461458,0.226115,0][1.2126,0.925086,0.564196][0,0,0][0.0712226,0.226115,0][1.2126,0.925086,0.564196][0.909632,0,0.415416][0.0712226,0.226115,0][1.2126,0.925086,0.564196][0,0,0][0.0712226,0.226115,0][1.00862,0.925086,0.881607][0.755749,0,0.654861][0.0461458,0.226115,0][0.899405,0.452645,0.786975][0,0,0][0.316617,0.176657,0][0.899405,0.452645,0.786975][0,0,0][0.316617,0.176657,0][1.08116,0.452645,0.504165][0,0,0][0.33896,0.176657,0][1.08116,0.452645,0.504165][0,0,0][0.33896,0.176657,0][1.08116,0.452645,0.504165][0,0,0][0.33896,0.176657,0][0.899405,0.452645,0.786975][0,0,0][0.316617,0.176657,0][1.08116,-0.0197963,0.504165][-0.909632,0,-0.415415][0.121974,0.534735,0][0.899405,-0.0197963,0.786975][-0.755749,0,-0.654861][0.121974,0.557078,0][1.08116,0.452645,0.504165][0,0,0][0.159299,0.534735,0][0.899405,0.452645,0.786975][0,0,0][0.159299,0.557078,0][1.08116,0.452645,0.504165][0,0,0][0.159299,0.534735,0][0.899405,-0.0197963,0.786975][-0.755749,0,-0.654861][0.121974,0.557078,0][1.08116,-0.492237,0.504165][-0.909632,0,-0.415415][0.0846494,0.534735,0][0.899405,-0.492237,0.786975][-0.755749,0,-0.654861][0.0846494,0.557078,0][1.08116,-0.0197963,0.504165][-0.909632,0,-0.415415][0.121974,0.534735,0][0.899405,-0.0197963,0.786975][-0.755749,0,-0.654861][0.121974,0.557078,0][1.08116,-0.0197963,0.504165][-0.909632,0,-0.415415][0.121974,0.534735,0][0.899405,-0.492237,0.786975][-0.755749,0,-0.654861][0.0846494,0.557078,0][1.08116,-0.964678,0.504165][-0.909632,0,-0.415415][0.0473247,0.534735,0][0.899405,-0.964678,0.786975][-0.755749,0,-0.654861][0.0473247,0.557078,0][1.08116,-0.492237,0.504165][-0.909632,0,-0.415415][0.0846494,0.534735,0][0.899405,-0.492237,0.786975][-0.755749,0,-0.654861][0.0846494,0.557078,0][1.08116,-0.492237,0.504165][-0.909632,0,-0.415415][0.0846494,0.534735,0][0.899405,-0.964678,0.786975][-0.755749,0,-0.654861][0.0473247,0.557078,0][1.08116,-1.43712,0.504165][-1.50717,0,-0.442545][0.01,0.534735,0][0.899405,-1.43712,0.786975][-1.32144,0,-0.849237][0.01,0.557078,0][1.08116,-0.964678,0.504165][-0.909632,0,-0.415415][0.0473247,0.534735,0][0.899405,-0.964678,0.786975][-0.755749,0,-0.654861][0.0473247,0.557078,0][1.08116,-0.964678,0.504165][-0.909632,0,-0.415415][0.0473247,0.534735,0][0.899405,-1.43712,0.786975][-1.32144,0,-0.849237][0.01,0.557078,0][1.2126,-1.43712,0.564196][1.50717,0,0.442545][0.845237,0.314987,0][1.00862,-1.43712,0.881607][1.32144,0,0.849237][0.872008,0.301877,0][1.08116,-1.43712,0.504165][-1.50717,0,-0.442545][0.841726,0.304124,0][0.899405,-1.43712,0.786975][-1.32144,0,-0.849237][0.865579,0.292443,0][1.08116,-1.43712,0.504165][-1.50717,0,-0.442545][0.841726,0.304124,0][1.00862,-1.43712,0.881607][1.32144,0,0.849237][0.872008,0.301877,0][1.00862,-0.964678,0.881607][0.755749,0,0.654861][0.274658,0.684877,0][0.723466,-0.964678,1.12869][0.540641,0,0.841254][0.274658,0.662349,0][1.00862,-1.43712,0.881607][1.32144,0,0.849237][0.237333,0.684877,0][0.723466,-1.43712,1.12869][1.02865,0,1.18713][0.237333,0.662349,0][1.00862,-1.43712,0.881607][1.32144,0,0.849237][0.237333,0.684877,0][0.723466,-0.964678,1.12869][0.540641,0,0.841254][0.274658,0.662349,0][1.00862,-0.492237,0.881607][0.755749,0,0.654861][0.311983,0.684877,0][0.723466,-0.492237,1.12869][0.540641,0,0.841254][0.311983,0.662349,0][1.00862,-0.964678,0.881607][0.755749,0,0.654861][0.274658,0.684877,0][0.723466,-0.964678,1.12869][0.540641,0,0.841254][0.274658,0.662349,0][1.00862,-0.964678,0.881607][0.755749,0,0.654861][0.274658,0.684877,0][0.723466,-0.492237,1.12869][0.540641,0,0.841254][0.311983,0.662349,0][1.00862,-0.0197963,0.881607][0.755749,0,0.654861][0.349307,0.684877,0][0.723466,-0.0197963,1.12869][0.54064,0,0.841254][0.349307,0.662349,0][1.00862,-0.492237,0.881607][0.755749,0,0.654861][0.311983,0.684877,0][0.723466,-0.492237,1.12869][0.540641,0,0.841254][0.311983,0.662349,0][1.00862,-0.492237,0.881607][0.755749,0,0.654861][0.311983,0.684877,0][0.723466,-0.0197963,1.12869][0.54064,0,0.841254][0.349307,0.662349,0][1.00862,0.452645,0.881607][0.755749,0,0.654861][0.386632,0.684877,0][0.723466,0.452645,1.12869][0.54064,0,0.841254][0.386632,0.662349,0][1.00862,-0.0197963,0.881607][0.755749,0,0.654861][0.349307,0.684877,0][0.723466,-0.0197963,1.12869][0.54064,0,0.841254][0.349307,0.662349,0][1.00862,-0.0197963,0.881607][0.755749,0,0.654861][0.349307,0.684877,0][0.723466,0.452645,1.12869][0.54064,0,0.841254][0.386632,0.662349,0][1.00862,0.925086,0.881607][0.755749,0,0.654861][0.423957,0.684877,0][0.723466,0.925086,1.12869][0.54064,0,0.841254][0.423957,0.662349,0][1.00862,0.452645,0.881607][0.755749,0,0.654861][0.386632,0.684877,0][0.723466,0.452645,1.12869][0.54064,0,0.841254][0.386632,0.662349,0][1.00862,0.452645,0.881607][0.755749,0,0.654861][0.386632,0.684877,0][0.723466,0.925086,1.12869][0.54064,0,0.841254][0.423957,0.662349,0][0.723466,0.925086,1.12869][0,0,0][0.0266252,0.226115,0][0.723466,0.925086,1.12869][0.54064,0,0.841254][0.0266252,0.226115,0][1.00862,0.925086,0.881607][0,0,0][0.0461458,0.226115,0][1.00862,0.925086,0.881607][0.755749,0,0.654861][0.0461458,0.226115,0][1.00862,0.925086,0.881607][0,0,0][0.0461458,0.226115,0][0.723466,0.925086,1.12869][0.54064,0,0.841254][0.0266252,0.226115,0][0.645339,0.452645,1.00712][0,0,0][0.299225,0.176657,0][0.645339,0.452645,1.00712][0,0,0][0.299225,0.176657,0][0.899405,0.452645,0.786975][0,0,0][0.316617,0.176657,0][0.899405,0.452645,0.786975][0,0,0][0.316617,0.176657,0][0.899405,0.452645,0.786975][0,0,0][0.316617,0.176657,0][0.645339,0.452645,1.00712][0,0,0][0.299225,0.176657,0][0.899405,-0.0197963,0.786975][-0.755749,0,-0.654861][0.349308,0.714369,0][0.645339,-0.0197963,1.00712][-0.540641,0,-0.841254][0.349308,0.734441,0][0.899405,0.452645,0.786975][0,0,0][0.386632,0.714369,0][0.645339,0.452645,1.00712][0,0,0][0.386632,0.734441,0][0.899405,0.452645,0.786975][0,0,0][0.386632,0.714369,0][0.645339,-0.0197963,1.00712][-0.540641,0,-0.841254][0.349308,0.734441,0][0.899405,-0.492237,0.786975][-0.755749,0,-0.654861][0.311983,0.714369,0][0.645339,-0.492237,1.00712][-0.540641,0,-0.841254][0.311983,0.734441,0][0.899405,-0.0197963,0.786975][-0.755749,0,-0.654861][0.349308,0.714369,0][0.645339,-0.0197963,1.00712][-0.540641,0,-0.841254][0.349308,0.734441,0][0.899405,-0.0197963,0.786975][-0.755749,0,-0.654861][0.349308,0.714369,0][0.645339,-0.492237,1.00712][-0.540641,0,-0.841254][0.311983,0.734441,0][0.899405,-0.964678,0.786975][-0.755749,0,-0.654861][0.274658,0.714369,0][0.645339,-0.964678,1.00712][-0.540641,0,-0.841254][0.274658,0.734441,0][0.899405,-0.492237,0.786975][-0.755749,0,-0.654861][0.311983,0.714369,0][0.645339,-0.492237,1.00712][-0.540641,0,-0.841254][0.311983,0.734441,0][0.899405,-0.492237,0.786975][-0.755749,0,-0.654861][0.311983,0.714369,0][0.645339,-0.964678,1.00712][-0.540641,0,-0.841254][0.274658,0.734441,0][0.899405,-1.43712,0.786975][-1.32144,0,-0.849237][0.237333,0.714369,0][0.645339,-1.43712,1.00712][-1.02865,0,-1.18713][0.237333,0.734441,0][0.899405,-0.964678,0.786975][-0.755749,0,-0.654861][0.274658,0.714369,0][0.645339,-0.964678,1.00712][-0.540641,0,-0.841254][0.274658,0.734441,0][0.899405,-0.964678,0.786975][-0.755749,0,-0.654861][0.274658,0.714369,0][0.645339,-1.43712,1.00712][-1.02865,0,-1.18713][0.237333,0.734441,0][1.00862,-1.43712,0.881607][1.32144,0,0.849237][0.872008,0.301877,0][0.723466,-1.43712,1.12869][1.02865,0,1.18713][0.894001,0.281755,0][0.899405,-1.43712,0.786975][-1.32144,0,-0.849237][0.865579,0.292443,0][0.645339,-1.43712,1.00712][-1.02865,0,-1.18713][0.885174,0.274514,0][0.899405,-1.43712,0.786975][-1.32144,0,-0.849237][0.865579,0.292443,0][0.723466,-1.43712,1.12869][1.02865,0,1.18713][0.894001,0.281755,0][0.723466,-0.964678,1.12869][0.540641,0,0.841254][0.274658,0.662349,0][0.380254,-0.964678,1.28543][0.281732,0,0.959493][0.274658,0.635234,0][0.723466,-1.43712,1.12869][1.02865,0,1.18713][0.237333,0.662349,0][0.380254,-1.43712,1.28543][0.652532,-3.60536e-007,1.42885][0.237333,0.635234,0][0.723466,-1.43712,1.12869][1.02865,0,1.18713][0.237333,0.662349,0][0.380254,-0.964678,1.28543][0.281732,0,0.959493][0.274658,0.635234,0][0.723466,-0.492237,1.12869][0.540641,0,0.841254][0.311983,0.662349,0][0.380254,-0.492237,1.28543][0.281732,0,0.959493][0.311983,0.635234,0][0.723466,-0.964678,1.12869][0.540641,0,0.841254][0.274658,0.662349,0][0.380254,-0.964678,1.28543][0.281732,0,0.959493][0.274658,0.635234,0][0.723466,-0.964678,1.12869][0.540641,0,0.841254][0.274658,0.662349,0][0.380254,-0.492237,1.28543][0.281732,0,0.959493][0.311983,0.635234,0][0.723466,-0.0197963,1.12869][0.54064,0,0.841254][0.349307,0.662349,0][0.380254,-0.0197963,1.28543][0.281732,0,0.959493][0.349307,0.635234,0][0.723466,-0.492237,1.12869][0.540641,0,0.841254][0.311983,0.662349,0][0.380254,-0.492237,1.28543][0.281732,0,0.959493][0.311983,0.635234,0][0.723466,-0.492237,1.12869][0.540641,0,0.841254][0.311983,0.662349,0][0.380254,-0.0197963,1.28543][0.281732,0,0.959493][0.349307,0.635234,0][0.723466,0.452645,1.12869][0.54064,0,0.841254][0.386632,0.662349,0][0.380254,0.452645,1.28543][0.281732,0,0.959493][0.386632,0.635234,0][0.723466,-0.0197963,1.12869][0.54064,0,0.841254][0.349307,0.662349,0][0.380254,-0.0197963,1.28543][0.281732,0,0.959493][0.349307,0.635234,0][0.723466,-0.0197963,1.12869][0.54064,0,0.841254][0.349307,0.662349,0][0.380254,0.452645,1.28543][0.281732,0,0.959493][0.386632,0.635234,0][0.723466,0.925086,1.12869][0.54064,0,0.841254][0.423957,0.662349,0][0.380254,0.925086,1.28543][0.281732,0,0.959493][0.423957,0.635234,0][0.723466,0.452645,1.12869][0.54064,0,0.841254][0.386632,0.662349,0][0.380254,0.452645,1.28543][0.281732,0,0.959493][0.386632,0.635234,0][0.723466,0.452645,1.12869][0.54064,0,0.841254][0.386632,0.662349,0][0.380254,0.925086,1.28543][0.281732,0,0.959493][0.423957,0.635234,0][0.380254,0.925086,1.28543][0,0,0][0.0142422,0.226115,0][0.380254,0.925086,1.28543][0.281732,0,0.959493][0.0142422,0.226115,0][0.723466,0.925086,1.12869][0,0,0][0.0266252,0.226115,0][0.723466,0.925086,1.12869][0.54064,0,0.841254][0.0266252,0.226115,0][0.723466,0.925086,1.12869][0,0,0][0.0266252,0.226115,0][0.380254,0.925086,1.28543][0.281732,0,0.959493][0.0142422,0.226115,0][0.339542,0.452645,1.14678][0,0,0][0.288192,0.176657,0][0.339542,0.452645,1.14678][0,0,0][0.288192,0.176657,0][0.645339,0.452645,1.00712][0,0,0][0.299225,0.176657,0][0.645339,0.452645,1.00712][0,0,0][0.299225,0.176657,0][0.645339,0.452645,1.00712][0,0,0][0.299225,0.176657,0][0.339542,0.452645,1.14678][0,0,0][0.288192,0.176657,0][0.645339,-0.0197963,1.00712][-0.540641,0,-0.841254][0.349308,0.734441,0][0.339542,-0.0197963,1.14678][-0.281732,0,-0.959493][0.349308,0.758601,0][0.645339,0.452645,1.00712][0,0,0][0.386632,0.734441,0][0.339542,0.452645,1.14678][0,0,0][0.386632,0.758601,0][0.645339,0.452645,1.00712][0,0,0][0.386632,0.734441,0][0.339542,-0.0197963,1.14678][-0.281732,0,-0.959493][0.349308,0.758601,0][0.645339,-0.492237,1.00712][-0.540641,0,-0.841254][0.311983,0.734441,0][0.339542,-0.492237,1.14678][-0.281732,0,-0.959493][0.311983,0.758601,0][0.645339,-0.0197963,1.00712][-0.540641,0,-0.841254][0.349308,0.734441,0][0.339542,-0.0197963,1.14678][-0.281732,0,-0.959493][0.349308,0.758601,0][0.645339,-0.0197963,1.00712][-0.540641,0,-0.841254][0.349308,0.734441,0][0.339542,-0.492237,1.14678][-0.281732,0,-0.959493][0.311983,0.758601,0][0.645339,-0.964678,1.00712][-0.540641,0,-0.841254][0.274658,0.734441,0][0.339542,-0.964678,1.14678][-0.281732,0,-0.959493][0.274658,0.758601,0][0.645339,-0.492237,1.00712][-0.540641,0,-0.841254][0.311983,0.734441,0][0.339542,-0.492237,1.14678][-0.281732,0,-0.959493][0.311983,0.758601,0][0.645339,-0.492237,1.00712][-0.540641,0,-0.841254][0.311983,0.734441,0][0.339542,-0.964678,1.14678][-0.281732,0,-0.959493][0.274658,0.758601,0][0.645339,-1.43712,1.00712][-1.02865,0,-1.18713][0.237333,0.734441,0][0.339542,-1.43712,1.14678][-0.652532,1.4195e-007,-1.42885][0.237333,0.758601,0][0.645339,-0.964678,1.00712][-0.540641,0,-0.841254][0.274658,0.734441,0][0.339542,-0.964678,1.14678][-0.281732,0,-0.959493][0.274658,0.758601,0][0.645339,-0.964678,1.00712][-0.540641,0,-0.841254][0.274658,0.734441,0][0.339542,-1.43712,1.14678][-0.652532,1.4195e-007,-1.42885][0.237333,0.758601,0][0.723466,-1.43712,1.12869][1.02865,0,1.18713][0.894001,0.281755,0][0.380254,-1.43712,1.28543][0.652532,-3.60536e-007,1.42885][0.909433,0.256252,0][0.645339,-1.43712,1.00712][-1.02865,0,-1.18713][0.885174,0.274514,0][0.339542,-1.43712,1.14678][-0.652532,1.4195e-007,-1.42885][0.898924,0.251792,0][0.645339,-1.43712,1.00712][-1.02865,0,-1.18713][0.885174,0.274514,0][0.380254,-1.43712,1.28543][0.652532,-3.60536e-007,1.42885][0.909433,0.256252,0][0.380254,-0.964678,1.28543][0.281732,0,0.959493][0.274658,0.635234,0][0.0067875,-0.964678,1.33913][0.142314,0,0.989822][0.274658,0.605729,0][0.380254,-1.43712,1.28543][0.652532,-3.60536e-007,1.42885][0.237333,0.635234,0][0.0067875,-1.43712,1.33913][0.223547,0,1.55481][0.237333,0.605729,0][0.380254,-1.43712,1.28543][0.652532,-3.60536e-007,1.42885][0.237333,0.635234,0][0.0067875,-0.964678,1.33913][0.142314,0,0.989822][0.274658,0.605729,0][0.380254,-0.492237,1.28543][0.281732,0,0.959493][0.311983,0.635234,0][0.0067875,-0.492237,1.33913][0.142314,-1.24879e-007,0.989822][0.311983,0.605729,0][0.380254,-0.964678,1.28543][0.281732,0,0.959493][0.274658,0.635234,0][0.0067875,-0.964678,1.33913][0.142314,0,0.989822][0.274658,0.605729,0][0.380254,-0.964678,1.28543][0.281732,0,0.959493][0.274658,0.635234,0][0.0067875,-0.492237,1.33913][0.142314,-1.24879e-007,0.989822][0.311983,0.605729,0][0.380254,-0.0197963,1.28543][0.281732,0,0.959493][0.349307,0.635234,0][0.0067875,-0.0197963,1.33913][0.142314,0,0.989821][0.349307,0.605729,0][0.380254,-0.492237,1.28543][0.281732,0,0.959493][0.311983,0.635234,0][0.0067875,-0.492237,1.33913][0.142314,-1.24879e-007,0.989822][0.311983,0.605729,0][0.380254,-0.492237,1.28543][0.281732,0,0.959493][0.311983,0.635234,0][0.0067875,-0.0197963,1.33913][0.142314,0,0.989821][0.349307,0.605729,0][0.380254,0.452645,1.28543][0.281732,0,0.959493][0.386632,0.635234,0][0.0067875,0.452645,1.33913][0.142314,0,0.989821][0.386632,0.605729,0][0.380254,-0.0197963,1.28543][0.281732,0,0.959493][0.349307,0.635234,0][0.0067875,-0.0197963,1.33913][0.142314,0,0.989821][0.349307,0.605729,0][0.380254,-0.0197963,1.28543][0.281732,0,0.959493][0.349307,0.635234,0][0.0067875,0.452645,1.33913][0.142314,0,0.989821][0.386632,0.605729,0][0.380254,0.925086,1.28543][0.281732,0,0.959493][0.423957,0.635234,0][0.0067875,0.925086,1.33913][0.142314,0,0.989821][0.423957,0.605729,0][0.380254,0.452645,1.28543][0.281732,0,0.959493][0.386632,0.635234,0][0.0067875,0.452645,1.33913][0.142314,0,0.989821][0.386632,0.605729,0][0.380254,0.452645,1.28543][0.281732,0,0.959493][0.386632,0.635234,0][0.0067875,0.925086,1.33913][0.142314,0,0.989821][0.423957,0.605729,0][0.0067875,0.925086,1.33913][0,0,0][0.01,0.226115,0][0.0067875,0.925086,1.33913][0.142314,0,0.989821][0.01,0.226115,0][0.380254,0.925086,1.28543][0,0,0][0.0142422,0.226115,0][0.380254,0.925086,1.28543][0.281732,0,0.959493][0.0142422,0.226115,0][0.380254,0.925086,1.28543][0,0,0][0.0142422,0.226115,0][0.0067875,0.925086,1.33913][0.142314,0,0.989821][0.01,0.226115,0][0.00678752,0.452645,1.19462][0,0,0][0.284412,0.176657,0][0.00678752,0.452645,1.19462][0,0,0][0.284412,0.176657,0][0.339542,0.452645,1.14678][0,0,0][0.288192,0.176657,0][0.339542,0.452645,1.14678][0,0,0][0.288192,0.176657,0][0.339542,0.452645,1.14678][0,0,0][0.288192,0.176657,0][0.00678752,0.452645,1.19462][0,0,0][0.284412,0.176657,0][0.339542,-0.0197963,1.14678][-0.281732,0,-0.959493][0.349308,0.758601,0][0.00678752,-0.0197963,1.19462][-0.142314,1.24879e-007,-0.989821][0.349308,0.78489,0][0.339542,0.452645,1.14678][0,0,0][0.386632,0.758601,0][0.00678752,0.452645,1.19462][0,0,0][0.386632,0.78489,0][0.339542,0.452645,1.14678][0,0,0][0.386632,0.758601,0][0.00678752,-0.0197963,1.19462][-0.142314,1.24879e-007,-0.989821][0.349308,0.78489,0][0.339542,-0.492237,1.14678][-0.281732,0,-0.959493][0.311983,0.758601,0][0.00678752,-0.492237,1.19462][-0.142314,0,-0.989822][0.311983,0.78489,0][0.339542,-0.0197963,1.14678][-0.281732,0,-0.959493][0.349308,0.758601,0][0.00678752,-0.0197963,1.19462][-0.142314,1.24879e-007,-0.989821][0.349308,0.78489,0][0.339542,-0.0197963,1.14678][-0.281732,0,-0.959493][0.349308,0.758601,0][0.00678752,-0.492237,1.19462][-0.142314,0,-0.989822][0.311983,0.78489,0][0.339542,-0.964678,1.14678][-0.281732,0,-0.959493][0.274658,0.758601,0][0.00678752,-0.964678,1.19462][-0.142314,0,-0.989822][0.274658,0.78489,0][0.339542,-0.492237,1.14678][-0.281732,0,-0.959493][0.311983,0.758601,0][0.00678752,-0.492237,1.19462][-0.142314,0,-0.989822][0.311983,0.78489,0][0.339542,-0.492237,1.14678][-0.281732,0,-0.959493][0.311983,0.758601,0][0.00678752,-0.964678,1.19462][-0.142314,0,-0.989822][0.274658,0.78489,0][0.339542,-1.43712,1.14678][-0.652532,1.4195e-007,-1.42885][0.237333,0.758601,0][0.00678752,-1.43712,1.19462][-0.223547,2.37856e-007,-1.55481][0.237333,0.78489,0][0.339542,-0.964678,1.14678][-0.281732,0,-0.959493][0.274658,0.758601,0][0.00678752,-0.964678,1.19462][-0.142314,0,-0.989822][0.274658,0.78489,0][0.339542,-0.964678,1.14678][-0.281732,0,-0.959493][0.274658,0.758601,0][0.00678752,-1.43712,1.19462][-0.223547,2.37856e-007,-1.55481][0.237333,0.78489,0][0.380254,-1.43712,1.28543][0.652532,-3.60536e-007,1.42885][0.909433,0.256252,0][0.0067875,-1.43712,1.33913][0.223547,0,1.55481][0.917056,0.227434,0][0.339542,-1.43712,1.14678][-0.652532,1.4195e-007,-1.42885][0.898924,0.251792,0][0.00678752,-1.43712,1.19462][-0.223547,2.37856e-007,-1.55481][0.905716,0.226115,0][0.339542,-1.43712,1.14678][-0.652532,1.4195e-007,-1.42885][0.898924,0.251792,0][0.0067875,-1.43712,1.33913][0.223547,0,1.55481][0.917056,0.227434,0][0.380255,-1.43712,-1.2584][0.652533,1.54678e-007,-1.42885][0.573775,0.169376,0][0.339543,-1.43712,-1.11974][-0.652533,-3.60535e-007,1.42885][0.573775,0.18033,0][0.339543,-0.964678,-1.11974][-1.17743,0.0139173,2.57821][0.611099,0.18033,0][0.339543,-0.964678,-1.11974][-1.17743,0.0139173,2.57821][0.611099,0.18033,0][0.380255,-0.964678,-1.2584][1.20716,-0.0222755,-2.57617][0.611099,0.169376,0][0.380255,-1.43712,-1.2584][0.652533,1.54678e-007,-1.42885][0.573775,0.169376,0][0.493845,-0.577191,-1.22205][1.04801,-0.128238,-1.90829][0.641712,0.172247,0][0.380255,-0.964678,-1.2584][1.20716,-0.0222755,-2.57617][0.611099,0.169376,0][0.453133,-0.577191,-1.07256][-0.963741,0.00892415,2.04061][0.641712,0.184058,0][0.339543,-0.964678,-1.11974][-1.17743,0.0139173,2.57821][0.611099,0.18033,0][0.453133,-0.577191,-1.07256][-0.963741,0.00892415,2.04061][0.641712,0.184058,0][0.380255,-0.964678,-1.2584][1.20716,-0.0222755,-2.57617][0.611099,0.169376,0][0.723467,-0.492237,-1.10166][2.53101,-0.0315985,-3.31751][0.0923388,0.842379,0][0.493845,-0.577191,-1.22205][1.04801,-0.128238,-1.90829][0.112817,0.84286,0][0.64534,-0.492237,-0.980089][-2.44858,0.0497681,3.30348][0.0936117,0.831034,0][0.453133,-0.577191,-1.07256][-0.963741,0.00892415,2.04061][0.110462,0.830847,0][0.64534,-0.492237,-0.980089][-2.44858,0.0497681,3.30348][0.0936117,0.831034,0][0.493845,-0.577191,-1.22205][1.04801,-0.128238,-1.90829][0.112817,0.84286,0][0.803559,-0.0197962,-1.05452][1.56669,-0.128817,-1.37085][0.552308,0.406207,0][0.723467,-0.492237,-1.10166][2.53101,-0.0315985,-3.31751][0.589814,0.405664,0][0.725432,-0.0197962,-0.933245][-1.57437,-0.0432181,1.46262][0.551218,0.396688,0][0.64534,-0.492237,-0.980089][-2.44858,0.0497681,3.30348][0.588722,0.396122,0][0.725432,-0.0197962,-0.933245][-1.57437,-0.0432181,1.46262][0.551218,0.396688,0][0.723467,-0.492237,-1.10166][2.53101,-0.0315985,-3.31751][0.589814,0.405664,0][0.986138,0.0729589,-0.854572][3.44791,0.0569905,-2.75004][0.319672,0.971569,0][0.803559,-0.0197962,-1.05452][1.56669,-0.128817,-1.37085][0.341062,0.971321,0][0.865929,0.0729589,-0.75994][-3.44372,-0.122204,2.63038][0.320415,0.959506,0][0.725432,-0.0197962,-0.933245][-1.57437,-0.0432181,1.46262][0.338021,0.960337,0][0.865929,0.0729589,-0.75994][-3.44372,-0.122204,2.63038][0.320415,0.959506,0][0.803559,-0.0197962,-1.05452][1.56669,-0.128817,-1.37085][0.341062,0.971321,0][0.96606,0.399108,-0.854572][3.47726,-0.0449068,-2.87807][0.659577,0.718919,0][0.986138,0.0729589,-0.854572][3.44791,0.0569905,-2.75004][0.633764,0.718659,0][0.856848,0.399108,-0.75994][0,0,0][0.659996,0.730325,0][0.865929,0.0729589,-0.75994][-3.44372,-0.122204,2.63038][0.634223,0.730734,0][0.856848,0.399108,-0.75994][0,0,0][0.659996,0.730325,0][0.986138,0.0729589,-0.854572][3.44791,0.0569905,-2.75004][0.633764,0.718659,0][0.00678805,0.210332,-1.31209][0.172432,0,-1.19929][0.678724,0.856635,0][0.380255,0.351996,-1.2584][0.818904,0,-3.10204][0.707377,0.864853,0][0.00678801,0.310982,-1.16759][0,0,0][0.683401,0.84622,0][0.339543,0.452645,-1.11974][0,0,0][0.708931,0.853542,0][0.00678801,0.310982,-1.16759][0,0,0][0.683401,0.84622,0][0.380255,0.351996,-1.2584][0.818904,0,-3.10204][0.707377,0.864853,0][0.380255,0.351996,-1.2584][0.818904,0,-3.10204][0.707377,0.864853,0][0.723467,0.452645,-1.10166][1.94546,-0.0601421,-2.91812][0.737186,0.864665,0][0.339543,0.452645,-1.11974][0,0,0][0.708931,0.853542,0][0.64534,0.452645,-0.980089][0,0,0][0.73549,0.853375,0][0.339543,0.452645,-1.11974][0,0,0][0.708931,0.853542,0][0.723467,0.452645,-1.10166][1.94546,-0.0601421,-2.91812][0.737186,0.864665,0][0.723467,0.452645,-1.10166][1.94546,-0.0601421,-2.91812][0.737186,0.864665,0][0.96606,0.399108,-0.854572][3.47726,-0.0449068,-2.87807][0.762667,0.85471,0][0.64534,0.452645,-0.980089][0,0,0][0.73549,0.853375,0][0.856848,0.399108,-0.75994][0,0,0][0.757859,0.844355,0][0.64534,0.452645,-0.980089][0,0,0][0.73549,0.853375,0][0.96606,0.399108,-0.854572][3.47726,-0.0449068,-2.87807][0.762667,0.85471,0][1.3189,-0.492237,-0.175136][3.01434,0,-0.885088][0.263203,0.396646,0][1.78258,-0.492237,-0.175136][1.32712,0,4.193e-007][0.289609,0.371256,0][1.3189,-0.964678,-0.175136][4.58513,0,-0.885087][0.237333,0.369741,0][1.78258,-0.85523,-0.0848901][1.81447,0,8.34531e-007][0.269732,0.350584,0][1.3189,-0.964678,-0.175136][4.58513,0,-0.885087][0.237333,0.369741,0][1.78258,-0.492237,-0.175136][1.32712,0,4.193e-007][0.289609,0.371256,0][1.3189,-0.0197962,-0.175136][3.01434,0,-0.885088][0.289073,0.423551,0][1.78258,-0.0197962,-0.175136][4.79785e-007,0,-1][0.315479,0.398161,0][1.3189,-0.492237,-0.175136][3.01434,0,-0.885088][0.263203,0.396646,0][1.78258,-0.492237,-0.175136][1.32712,0,4.193e-007][0.289609,0.371256,0][1.3189,-0.492237,-0.175136][3.01434,0,-0.885088][0.263203,0.396646,0][1.78258,-0.0197962,-0.175136][4.79785e-007,0,-1][0.315479,0.398161,0][1.3189,0.452645,-0.175136][4.58513,0,-0.885087][0.314943,0.450456,0][1.78258,0.452645,-0.175136][7.57217e-007,0,-1.5708][0.341349,0.425066,0][1.3189,-0.0197962,-0.175136][3.01434,0,-0.885088][0.289073,0.423551,0][1.78258,-0.0197962,-0.175136][4.79785e-007,0,-1][0.315479,0.398161,0][1.3189,-0.0197962,-0.175136][3.01434,0,-0.885088][0.289073,0.423551,0][1.78258,0.452645,-0.175136][7.57217e-007,0,-1.5708][0.341349,0.425066,0][1.3189,0.452645,0.202172][4.58513,0,0.885091][0.202577,0.714795,0][1.78258,0.452645,0.202172][0,1.5708,0][0.165945,0.714795,0][1.3189,0.452645,-0.175136][4.58513,0,-0.885087][0.202577,0.744603,0][1.78258,0.452645,-0.175136][7.57217e-007,0,-1.5708][0.165945,0.744603,0][1.3189,0.452645,-0.175136][4.58513,0,-0.885087][0.202577,0.744603,0][1.78258,0.452645,0.202172][0,1.5708,0][0.165945,0.714795,0][1.3189,-0.0197963,0.202172][3.01434,0,0.885091][0.66459,0.0836383,0][1.78258,-0.0197963,0.202172][0.0286683,-0.0264649,0.999239][0.637255,0.0592526,0][1.3189,0.452645,0.202172][4.58513,0,0.885091][0.639743,0.111491,0][1.78258,0.452645,0.202172][0,1.5708,0][0.612408,0.0871052,0][1.3189,0.452645,0.202172][4.58513,0,0.885091][0.639743,0.111491,0][1.78258,-0.0197963,0.202172][0.0286683,-0.0264649,0.999239][0.637255,0.0592526,0][1.3189,-0.492237,0.202172][3.01434,0,0.885091][0.689437,0.0557858,0][1.78258,-0.492237,0.202172][1.32712,0,5.42568e-007][0.662101,0.0314001,0][1.3189,-0.0197963,0.202172][3.01434,0,0.885091][0.66459,0.0836383,0][1.78258,-0.0197963,0.202172][0.0286683,-0.0264649,0.999239][0.637255,0.0592526,0][1.3189,-0.0197963,0.202172][3.01434,0,0.885091][0.66459,0.0836383,0][1.78258,-0.492237,0.202172][1.32712,0,5.42568e-007][0.662101,0.0314001,0][1.3189,-0.964678,0.202172][4.58513,0,0.885091][0.714284,0.0279332,0][1.78258,-0.85523,0.111926][1.81447,-2.7323e-007,1.09901e-006][0.681192,0.01,0][1.3189,-0.492237,0.202172][3.01434,0,0.885091][0.689437,0.0557858,0][1.78258,-0.492237,0.202172][1.32712,0,5.42568e-007][0.662101,0.0314001,0][1.3189,-0.492237,0.202172][3.01434,0,0.885091][0.689437,0.0557858,0][1.78258,-0.85523,0.111926][1.81447,-2.7323e-007,1.09901e-006][0.681192,0.01,0][1.3189,-0.964678,-0.175136][4.58513,0,-0.885087][0.960336,0.657657,0][1.78258,-0.85523,-0.0848901][1.81447,0,8.34531e-007][0.923704,0.664786,0][1.3189,-0.964678,0.202172][4.58513,0,0.885091][0.960336,0.687465,0][1.78258,-0.85523,0.111926][1.81447,-2.7323e-007,1.09901e-006][0.923705,0.680336,0][1.3189,-0.964678,0.202172][4.58513,0,0.885091][0.960336,0.687465,0][1.78258,-0.85523,-0.0848901][1.81447,0,8.34531e-007][0.923704,0.664786,0][1.78258,-0.492237,-0.175136][1.32712,0,4.193e-007][0.251735,0.0627659,0][2.24625,-0.363707,-0.0848899][1.82742,-6.22553e-007,2.2636e-006][0.244605,0.026134,0][1.78258,-0.492237,0.202172][1.32712,0,5.42568e-007][0.221926,0.0627659,0][2.24625,-0.363707,0.111926][1.82742,-5.80898e-007,2.2137e-006][0.229056,0.026134,0][1.78258,-0.492237,0.202172][1.32712,0,5.42568e-007][0.221926,0.0627659,0][2.24625,-0.363707,-0.0848899][1.82742,-6.22553e-007,2.2636e-006][0.244605,0.026134,0][1.78258,-0.0197962,-0.175136][4.79785e-007,0,-1][0.315479,0.398161,0][2.24625,-0.0197962,-0.175136][1.31417,-4.75238e-007,1.66083e-006][0.341885,0.372771,0][1.78258,-0.492237,-0.175136][1.32712,0,4.193e-007][0.289609,0.371256,0][2.24625,-0.363707,-0.0848899][1.82742,-6.22553e-007,2.2636e-006][0.323053,0.353186,0][1.78258,-0.492237,-0.175136][1.32712,0,4.193e-007][0.289609,0.371256,0][2.24625,-0.0197962,-0.175136][1.31417,-4.75238e-007,1.66083e-006][0.341885,0.372771,0][1.78258,0.452645,-0.175136][7.57217e-007,0,-1.5708][0.341349,0.425066,0][2.24625,0.917521,-0.175136][3.67882e-007,0,-0.784102][0.39321,0.42615,0][1.78258,-0.0197962,-0.175136][4.79785e-007,0,-1][0.315479,0.398161,0][2.24625,-0.0197962,-0.175136][1.31417,-4.75238e-007,1.66083e-006][0.341885,0.372771,0][1.78258,-0.0197962,-0.175136][4.79785e-007,0,-1][0.315479,0.398161,0][2.24625,0.917521,-0.175136][3.67882e-007,0,-0.784102][0.39321,0.42615,0][1.78258,0.452645,0.202172][0,1.5708,0][0.755101,0.918671,0][2.24625,0.917521,0.202172][-1.11216,1.10928,-1.05551e-006][0.806973,0.918671,0][1.78258,0.452645,-0.175136][7.57217e-007,0,-1.5708][0.755101,0.888862,0][2.24625,0.917521,-0.175136][3.67882e-007,0,-0.784102][0.806973,0.888862,0][1.78258,0.452645,-0.175136][7.57217e-007,0,-1.5708][0.755101,0.888862,0][2.24625,0.917521,0.202172][-1.11216,1.10928,-1.05551e-006][0.806973,0.918671,0][1.78258,-0.0197963,0.202172][0.0286683,-0.0264649,0.999239][0.637255,0.0592526,0][2.24625,-0.0197963,0.202172][1.31417,-4.56037e-007,1.63783e-006][0.609919,0.0348669,0][1.78258,0.452645,0.202172][0,1.5708,0][0.612408,0.0871052,0][2.24625,0.917521,0.202172][-1.11216,1.10928,-1.05551e-006][0.560623,0.090126,0][1.78258,0.452645,0.202172][0,1.5708,0][0.612408,0.0871052,0][2.24625,-0.0197963,0.202172][1.31417,-4.56037e-007,1.63783e-006][0.609919,0.0348669,0][1.78258,-0.492237,0.202172][1.32712,0,5.42568e-007][0.662101,0.0314001,0][2.24625,-0.363707,0.111926][1.82742,-5.80898e-007,2.2137e-006][0.628006,0.0145918,0][1.78258,-0.0197963,0.202172][0.0286683,-0.0264649,0.999239][0.637255,0.0592526,0][2.24625,-0.0197963,0.202172][1.31417,-4.56037e-007,1.63783e-006][0.609919,0.0348669,0][1.78258,-0.0197963,0.202172][0.0286683,-0.0264649,0.999239][0.637255,0.0592526,0][2.24625,-0.363707,0.111926][1.82742,-5.80898e-007,2.2137e-006][0.628006,0.0145918,0][2.24625,-0.0197962,-0.175136][1.31417,-4.75238e-007,1.66083e-006][0.198229,0.9595,0][3.01904,0.318591,-0.0848893][1.66807,-0.276427,2.04581e-006][0.137176,0.96663,0][2.24625,-0.0197963,0.202172][1.31417,-4.56037e-007,1.63783e-006][0.198229,0.989309,0][3.01903,0.318591,0.111927][1.66807,-0.276427,2.02067e-006][0.137176,0.982179,0][2.24625,-0.0197963,0.202172][1.31417,-4.56037e-007,1.63783e-006][0.198229,0.989309,0][3.01904,0.318591,-0.0848893][1.66807,-0.276427,2.04581e-006][0.137176,0.96663,0][2.24625,0.917521,-0.175136][3.67882e-007,0,-0.784102][0.39321,0.42615,0][3.14137,1.05679,-0.175135][1.43125,-0.237182,1.8088e-006][0.451812,0.385066,0][2.24625,-0.0197962,-0.175136][1.31417,-4.75238e-007,1.66083e-006][0.341885,0.372771,0][3.01904,0.318591,-0.0848893][1.66807,-0.276427,2.04581e-006][0.404423,0.349725,0][2.24625,-0.0197962,-0.175136][1.31417,-4.75238e-007,1.66083e-006][0.341885,0.372771,0][3.14137,1.05679,-0.175135][1.43125,-0.237182,1.8088e-006][0.451812,0.385066,0][2.24625,0.917521,0.202172][-1.11216,1.10928,-1.05551e-006][0.985085,0.143154,0][3.14137,1.05679,0.202173][1.43125,-0.237182,1.79606e-006][0.914367,0.143154,0][2.24625,0.917521,-0.175136][3.67882e-007,0,-0.784102][0.985085,0.172963,0][3.14137,1.05679,-0.175135][1.43125,-0.237182,1.8088e-006][0.914367,0.172963,0][2.24625,0.917521,-0.175136][3.67882e-007,0,-0.784102][0.985085,0.172963,0][3.14137,1.05679,0.202173][1.43125,-0.237182,1.79606e-006][0.914367,0.143154,0][2.24625,-0.0197963,0.202172][1.31417,-4.56037e-007,1.63783e-006][0.609919,0.0348669,0][3.01903,0.318591,0.111927][1.66807,-0.276427,2.02067e-006][0.546563,0.0141735,0][2.24625,0.917521,0.202172][-1.11216,1.10928,-1.05551e-006][0.560623,0.090126,0][3.14137,1.05679,0.202173][1.43125,-0.237182,1.79606e-006][0.500527,0.05126,0][2.24625,0.917521,0.202172][-1.11216,1.10928,-1.05551e-006][0.560623,0.090126,0][3.01903,0.318591,0.111927][1.66807,-0.276427,2.02067e-006][0.546563,0.0141735,0][0.380255,0.925086,-1.2584][0,0,0][0.01,0.930008,0][0.00678805,1.81092,-1.22396][0.0570783,0.0394964,-0.396988][0.0799844,0.927288,0][0.278278,1.14478,-0.911095][1.91813,0.745227,-0.0777577][0.0273566,0.90257,0][0.0067878,2.19029,-1.03936][0.562134,0.116578,-0.239581][0.109956,0.912704,0][0.278278,1.14478,-0.911095][1.91813,0.745227,-0.0777577][0.0273566,0.90257,0][0.00678805,1.81092,-1.22396][0.0570783,0.0394964,-0.396988][0.0799844,0.927288,0][0.00678801,0.310982,-1.16759][0,0,0][0.500527,0.13361,0][0.339543,0.452645,-1.11974][0,0,0][0.511719,0.159899,0][0.0067878,2.19029,-1.03936][0.562134,0.116578,-0.239581][0.649,0.13361,0][0.278278,1.14478,-0.911095][1.91813,0.745227,-0.0777577][0.5664,0.155059,0][0.0067878,2.19029,-1.03936][0.562134,0.116578,-0.239581][0.649,0.13361,0][0.339543,0.452645,-1.11974][0,0,0][0.511719,0.159899,0][0.380255,0.925086,-1.2584][0,0,0][0.736403,0.084157,0][0.278278,1.14478,-0.911095][1.91813,0.745227,-0.0777577][0.763841,0.0922135,0][0.723467,0.925086,-1.10166][0,0,0][0.748786,0.0570419,0][0.723467,0.925086,-1.10166][0,0,0][0.748786,0.0570419,0][0.278278,1.14478,-0.911095][1.91813,0.745227,-0.0777577][0.763841,0.0922135,0][0.723467,0.925086,-1.10166][-0.0222542,0.370961,-0.479659][0.748786,0.0570419,0][0.723467,0.925086,-1.10166][-0.0222542,0.370961,-0.479659][0.748786,0.0570419,0][0.278278,1.14478,-0.911095][1.91813,0.745227,-0.0777577][0.763841,0.0922135,0][0.278279,1.14478,-0.911095][0,1.67935,-1.93607][0.763841,0.0922135,0][0.339543,0.452645,-1.11974][0,0,0][0.511719,0.159899,0][0.64534,0.452645,-0.980089][0,0,0][0.511719,0.184058,0][0.278278,1.14478,-0.911095][1.91813,0.745227,-0.0777577][0.5664,0.155059,0][0.278278,1.14478,-0.911095][1.91813,0.745227,-0.0777577][0.5664,0.155059,0][0.64534,0.452645,-0.980089][0,0,0][0.511719,0.184058,0][0.278279,1.14478,-0.911095][0,1.67935,-1.93607][0.5664,0.155059,0][0.278279,1.14478,-0.911095][0,1.67935,-1.93607][0.5664,0.155059,0][0.64534,0.452645,-0.980089][0,0,0][0.511719,0.184058,0][0.64534,0.452645,-0.980089][-0.233294,-0.146341,0.226887][0.511719,0.184058,0][1.00862,0.925086,-0.854572][0,0,0][0.768307,0.034514,0][0.723467,0.925086,-1.10166][0,0,0][0.748786,0.0570419,0][0.73784,1.14764,-0.618809][0.271575,0.662433,-0.313414][0.786933,0.0559064,0][0.73784,1.14764,-0.618809][0,0,0][0.786933,0.0559064,0][0.73784,1.14764,-0.618809][0.271575,0.662433,-0.313414][0.786933,0.0559064,0][0.723467,0.925086,-1.10166][-0.0222542,0.370961,-0.479659][0.748786,0.0570419,0][0.73784,1.14764,-0.618809][0.271575,0.662433,-0.313414][0.786933,0.0559064,0][0.723467,0.925086,-1.10166][0,0,0][0.748786,0.0570419,0][0.723467,0.925086,-1.10166][-0.0222542,0.370961,-0.479659][0.748786,0.0570419,0][0.856848,0.399108,-0.75994][0,0,0][0.0272135,0.684738,0][0.73784,1.14764,-0.618809][0.271575,0.662433,-0.313414][0.0406732,0.626083,0][0.64534,0.452645,-0.980089][0,0,0][0.01,0.67983,0][0.64534,0.452645,-0.980089][0,0,0][0.01,0.67983,0][0.73784,1.14764,-0.618809][0.271575,0.662433,-0.313414][0.0406732,0.626083,0][0.64534,0.452645,-0.980089][-0.233294,-0.146341,0.226887][0.01,0.67983,0][0.64534,0.452645,-0.980089][-0.233294,-0.146341,0.226887][0.01,0.67983,0][0.73784,1.14764,-0.618809][0.271575,0.662433,-0.313414][0.0406732,0.626083,0][0.73784,1.14764,-0.618809][0,0,0][0.0406732,0.626083,0][1.00862,0.925086,-0.854572][0,0,0][0.768307,0.034514,0][0.73784,1.14764,-0.618809][0.271575,0.662433,-0.313414][0.786933,0.0559064,0][1.2126,0.925086,-0.53716][0,0,0][0.793383,0.0183981,0][1.2126,0.925086,-0.53716][0,0,0][0.793383,0.0183981,0][0.73784,1.14764,-0.618809][0.271575,0.662433,-0.313414][0.786933,0.0559064,0][1.2126,0.925086,-0.53716][0.248872,0.379499,-0.412695][0.793383,0.0183981,0][1.2126,0.925086,-0.53716][0.248872,0.379499,-0.412695][0.793383,0.0183981,0][0.73784,1.14764,-0.618809][0.271575,0.662433,-0.313414][0.786933,0.0559064,0][0.73784,1.14764,-0.618809][0,0,0][0.786933,0.0559064,0][0.856848,0.399108,-0.75994][0,0,0][0.0272135,0.684738,0][1.08116,0.452645,-0.47713][0,0,0][0.0497052,0.681387,0][0.73784,1.14764,-0.618809][0.271575,0.662433,-0.313414][0.0406732,0.626083,0][0.73784,1.14764,-0.618809][0.271575,0.662433,-0.313414][0.0406732,0.626083,0][1.08116,0.452645,-0.47713][0,0,0][0.0497052,0.681387,0][0.73784,1.14764,-0.618809][0,0,0][0.0406732,0.626083,0][0.73784,1.14764,-0.618809][0,0,0][0.0406732,0.626083,0][1.08116,0.452645,-0.47713][0,0,0][0.0497052,0.681387,0][1.08116,0.452645,-0.47713][-0.326704,-0.148324,0.0640774][0.0497052,0.681387,0][1.3189,0.925086,-0.175136][0,0,0][0.821985,0.01,0][1.2126,0.925086,-0.53716][0,0,0][0.793383,0.0183981,0][0.960626,1.14478,-0.123624][-1.22586,-1.1894,-0.115078][0.826054,0.0383054,0][0.960626,1.14478,-0.123624][-0.446768,-0.512427,0][0.826054,0.0383054,0][0.960626,1.14478,-0.123624][-1.22586,-1.1894,-0.115078][0.826054,0.0383054,0][1.2126,0.925086,-0.53716][0.248872,0.379499,-0.412695][0.793383,0.0183981,0][0.960626,1.14478,-0.123624][-1.22586,-1.1894,-0.115078][0.826054,0.0383054,0][1.2126,0.925086,-0.53716][0,0,0][0.793383,0.0183981,0][1.2126,0.925086,-0.53716][0.248872,0.379499,-0.412695][0.793383,0.0183981,0][1.17587,0.452645,-0.154571][0,0,0][0.0751691,0.682386,0][0.960626,1.14478,-0.123624][-1.22586,-1.1894,-0.115078][0.0797558,0.627843,0][1.08116,0.452645,-0.47713][0,0,0][0.0497052,0.681387,0][1.08116,0.452645,-0.47713][0,0,0][0.0497052,0.681387,0][0.960626,1.14478,-0.123624][-1.22586,-1.1894,-0.115078][0.0797558,0.627843,0][1.08116,0.452645,-0.47713][-0.326704,-0.148324,0.0640774][0.0497052,0.681387,0][1.08116,0.452645,-0.47713][-0.326704,-0.148324,0.0640774][0.0497052,0.681387,0][0.960626,1.14478,-0.123624][-1.22586,-1.1894,-0.115078][0.0797558,0.627843,0][0.960626,1.14478,-0.123624][-0.446768,-0.512427,0][0.0797558,0.627843,0][1.3189,0.925086,-0.175136][0,0,0][0.821985,0.01,0][0.960626,1.14478,-0.123624][-1.22586,-1.1894,-0.115078][0.826054,0.0383054,0][1.3189,0.925086,0.202172][0,0,0][0.851793,0.01,0][1.3189,0.925086,0.202172][0,0,0][0.851793,0.01,0][0.960626,1.14478,-0.123624][-1.22586,-1.1894,-0.115078][0.826054,0.0383054,0][1.3189,0.925086,0.202172][0.425551,0.377354,-0.213521][0.851793,0.01,0][1.3189,0.925086,0.202172][0.425551,0.377354,-0.213521][0.851793,0.01,0][0.960626,1.14478,-0.123624][-1.22586,-1.1894,-0.115078][0.826054,0.0383054,0][0.960626,1.14478,-0.123624][-0.476403,-0.776928,0][0.826054,0.0383054,0][1.17587,0.452645,-0.154571][0,0,0][0.0751691,0.682386,0][1.17587,0.452645,0.181606][0,0,0][0.101708,0.683428,0][0.960626,1.14478,-0.123624][-1.22586,-1.1894,-0.115078][0.0797558,0.627843,0][0.960626,1.14478,-0.123624][-1.22586,-1.1894,-0.115078][0.0797558,0.627843,0][1.17587,0.452645,0.181606][0,0,0][0.101708,0.683428,0][0.960626,1.14478,-0.123624][-0.476403,-0.776928,0][0.0797558,0.627843,0][0.960626,1.14478,-0.123624][-0.476403,-0.776928,0][0.0797558,0.627843,0][1.17587,0.452645,0.181606][0,0,0][0.101708,0.683428,0][1.17587,0.452645,0.181606][-0.305237,-0.149314,-0.123334][0.101708,0.683428,0][1.2126,0.925086,0.564196][0,0,0][0.880395,0.0183981,0][1.3189,0.925086,0.202172][0,0,0][0.851793,0.01,0][0.883351,1.14478,0.413831][0.391921,0.666136,0.115079][0.868515,0.0444104,0][0.883351,1.14478,0.413831][0,0,0][0.868515,0.0444104,0][0.883351,1.14478,0.413831][0.391921,0.666136,0.115079][0.868515,0.0444104,0][1.3189,0.925086,0.202172][0.425551,0.377354,-0.213521][0.851793,0.01,0][0.883351,1.14478,0.413831][0.391921,0.666136,0.115079][0.868515,0.0444104,0][1.3189,0.925086,0.202172][0,0,0][0.851793,0.01,0][1.3189,0.925086,0.202172][0.425551,0.377354,-0.213521][0.851793,0.01,0][1.08116,0.452645,0.504165][0,0,0][0.127172,0.684427,0][0.883351,1.14478,0.413831][0.391921,0.666136,0.115079][0.122184,0.629508,0][1.17587,0.452645,0.181606][0,0,0][0.101708,0.683428,0][1.17587,0.452645,0.181606][0,0,0][0.101708,0.683428,0][0.883351,1.14478,0.413831][0.391921,0.666136,0.115079][0.122184,0.629508,0][1.17587,0.452645,0.181606][-0.305237,-0.149314,-0.123334][0.101708,0.683428,0][1.17587,0.452645,0.181606][-0.305237,-0.149314,-0.123334][0.101708,0.683428,0][0.883351,1.14478,0.413831][0.391921,0.666136,0.115079][0.122184,0.629508,0][0.883351,1.14478,0.413831][0,0,0][0.122184,0.629508,0][1.2126,0.925086,0.564196][0,0,0][0.880395,0.0183981,0][0.883351,1.14478,0.413831][0.391921,0.666136,0.115079][0.868515,0.0444104,0][1.00862,0.925086,0.881607][0,0,0][0.905472,0.034514,0][1.00862,0.925086,0.881607][0,0,0][0.905472,0.034514,0][0.883351,1.14478,0.413831][0.391921,0.666136,0.115079][0.868515,0.0444104,0][1.00862,0.925086,0.881607][0.47348,0.377441,0.0504738][0.905472,0.034514,0][1.00862,0.925086,0.881607][0.47348,0.377441,0.0504738][0.905472,0.034514,0][0.883351,1.14478,0.413831][0.391921,0.666136,0.115079][0.868515,0.0444104,0][0.883351,1.14478,0.413831][0,0,0][0.868515,0.0444104,0][1.08116,0.452645,0.504165][0,0,0][0.127172,0.684427,0][0.899405,0.452645,0.786975][0,0,0][0.149498,0.685303,0][0.883351,1.14478,0.413831][0.391921,0.666136,0.115079][0.122184,0.629508,0][0.883351,1.14478,0.413831][0.391921,0.666136,0.115079][0.122184,0.629508,0][0.899405,0.452645,0.786975][0,0,0][0.149498,0.685303,0][0.883351,1.14478,0.413831][0,0,0][0.122184,0.629508,0][0.883351,1.14478,0.413831][0,0,0][0.122184,0.629508,0][0.899405,0.452645,0.786975][0,0,0][0.149498,0.685303,0][0.899405,0.452645,0.786975][-0.190103,-0.149314,-0.268779][0.149498,0.685303,0][0.723466,0.925086,1.12869][0,0,0][0.924992,0.057042,0][1.00862,0.925086,0.881607][0,0,0][0.905472,0.034514,0][0.527774,1.14478,0.824188][0.267489,0.666136,0.308699][0.900935,0.0725024,0][0.527774,1.14478,0.824188][0,0,0][0.900935,0.0725024,0][0.527774,1.14478,0.824188][0.267489,0.666136,0.308699][0.900935,0.0725024,0][1.00862,0.925086,0.881607][0.47348,0.377441,0.0504738][0.905472,0.034514,0][0.527774,1.14478,0.824188][0.267489,0.666136,0.308699][0.900935,0.0725024,0][1.00862,0.925086,0.881607][0,0,0][0.905472,0.034514,0][1.00862,0.925086,0.881607][0.47348,0.377441,0.0504738][0.905472,0.034514,0][0.645339,0.452645,1.00712][0,0,0][0.88789,0.369797,0][0.527774,1.14478,0.824188][0.267489,0.666136,0.308699][0.942571,0.379086,0][0.899405,0.452645,0.786975][0,0,0][0.88789,0.349725,0][0.899405,0.452645,0.786975][0,0,0][0.88789,0.349725,0][0.527774,1.14478,0.824188][0.267489,0.666136,0.308699][0.942571,0.379086,0][0.899405,0.452645,0.786975][-0.190103,-0.149314,-0.268779][0.88789,0.349725,0][0.899405,0.452645,0.786975][-0.190103,-0.149314,-0.268779][0.88789,0.349725,0][0.527774,1.14478,0.824188][0.267489,0.666136,0.308699][0.942571,0.379086,0][0.527774,1.14478,0.824188][0,0,0][0.942571,0.379086,0][0.723466,0.925086,1.12869][0,0,0][0.924992,0.057042,0][0.527774,1.14478,0.824188][0.267489,0.666136,0.308699][0.900935,0.0725024,0][0.380254,0.925086,1.28543][0,0,0][0.937375,0.084157,0][0.380254,0.925086,1.28543][0,0,0][0.937375,0.084157,0][0.527774,1.14478,0.824188][0.267489,0.666136,0.308699][0.900935,0.0725024,0][0.380254,0.925086,1.28543][0.371145,0.379066,0.299255][0.937375,0.084157,0][0.380254,0.925086,1.28543][0.371145,0.379066,0.299255][0.937375,0.084157,0][0.527774,1.14478,0.824188][0.267489,0.666136,0.308699][0.900935,0.0725024,0][0.527774,1.14478,0.824188][0,0,0][0.900935,0.0725024,0][0.645339,0.452645,1.00712][0,0,0][0.88789,0.369797,0][0.339542,0.452645,1.14678][0,0,0][0.88789,0.393957,0][0.527774,1.14478,0.824188][0.267489,0.666136,0.308699][0.942571,0.379086,0][0.527774,1.14478,0.824188][0.267489,0.666136,0.308699][0.942571,0.379086,0][0.339542,0.452645,1.14678][0,0,0][0.88789,0.393957,0][0.527774,1.14478,0.824188][0,0,0][0.942571,0.379086,0][0.527774,1.14478,0.824188][0,0,0][0.942571,0.379086,0][0.339542,0.452645,1.14678][0,0,0][0.88789,0.393957,0][0.339542,0.452645,1.14678][-0.0147893,-0.149846,-0.330134][0.88789,0.393957,0][0.0067875,0.925086,1.33913][0,0,0][0.941617,0.113662,0][0.380254,0.925086,1.28543][0,0,0][0.937375,0.084157,0][0.0067875,1.14366,0.978267][0.0581969,0.668253,0.404769][0.913108,0.113662,0][0.0067875,1.14366,0.978267][0,0,0][0.913108,0.113662,0][0.0067875,1.14366,0.978267][0.0581969,0.668253,0.404769][0.913108,0.113662,0][0.380254,0.925086,1.28543][0.371145,0.379066,0.299255][0.937375,0.084157,0][0.0067875,1.14366,0.978267][0.0581969,0.668253,0.404769][0.913108,0.113662,0][0.380254,0.925086,1.28543][0,0,0][0.937375,0.084157,0][0.380254,0.925086,1.28543][0.371145,0.379066,0.299255][0.937375,0.084157,0][0.00678752,0.452645,1.19462][0,0,0][0.88789,0.420245,0][0.0067875,1.14366,0.978267][0.0581969,0.668253,0.404769][0.942483,0.420245,0][0.339542,0.452645,1.14678][0,0,0][0.88789,0.393957,0][0.339542,0.452645,1.14678][0,0,0][0.88789,0.393957,0][0.0067875,1.14366,0.978267][0.0581969,0.668253,0.404769][0.942483,0.420245,0][0.339542,0.452645,1.14678][-0.0147893,-0.149846,-0.330134][0.88789,0.393957,0][0.339542,0.452645,1.14678][-0.0147893,-0.149846,-0.330134][0.88789,0.393957,0][0.0067875,1.14366,0.978267][0.0581969,0.668253,0.404769][0.942483,0.420245,0][0.0067875,1.14366,0.978267][0,0,0][0.942483,0.420245,0][0.723467,0.925086,-1.10166][-0.0222542,0.370961,-0.479659][0.617035,0.966699,0][0.278279,1.14478,-0.911095][0,1.67935,-1.93607][0.585881,0.942872,0][0.340046,1.66193,-0.514023][-0.0176549,0.294157,-0.380369][0.551425,0.965365,0][0.278279,1.14478,-0.911095][0,1.67935,-1.93607][0.609957,0.844355,0][0.64534,0.452645,-0.980089][-0.233294,-0.146341,0.226887][0.551425,0.865205,0][0.340046,1.66193,-0.514023][-0.0176549,0.294157,-0.380369][0.656605,0.866743,0][0.73784,1.14764,-0.618809][0,0,0][0.749278,0.386111,0][0.723467,0.925086,-1.10166][-0.0222542,0.370961,-0.479659][0.710737,0.369372,0][0.340046,1.66193,-0.514023][-0.0176549,0.294157,-0.380369][0.752529,0.438039,0][0.64534,0.452645,-0.980089][-0.233294,-0.146341,0.226887][0.01,0.174988,0][0.73784,1.14764,-0.618809][0,0,0][0.0609916,0.196623,0][0.340046,1.66193,-0.514023][-0.0176549,0.294157,-0.380369][0.108513,0.177122,0][1.2126,0.925086,-0.53716][0.248872,0.379499,-0.412695][0.764549,0.349725,0][0.73784,1.14764,-0.618809][0,0,0][0.749278,0.386111,0][0.577905,1.66298,-0.241371][0.195718,0.298447,-0.324552][0.778568,0.428534,0][0.73784,1.14764,-0.618809][0,0,0][0.0406732,0.626083,0][1.08116,0.452645,-0.47713][-0.326704,-0.148324,0.0640774][0.0497052,0.681387,0][0.577905,1.66298,-0.241371][0.195718,0.298447,-0.324552][0.0720655,0.58657,0][0.960626,1.14478,-0.123624][-0.446768,-0.512427,0][0.791559,0.378872,0][1.2126,0.925086,-0.53716][0.248872,0.379499,-0.412695][0.764549,0.349725,0][0.577905,1.66298,-0.241371][0.195718,0.298447,-0.324552][0.778568,0.428534,0][1.08116,0.452645,-0.47713][-0.326704,-0.148324,0.0640774][0.0497052,0.681387,0][0.960626,1.14478,-0.123624][-0.446768,-0.512427,0][0.0797558,0.627843,0][0.577905,1.66298,-0.241371][0.195718,0.298447,-0.324552][0.0720655,0.58657,0][1.3189,0.925086,0.202172][0.425551,0.377354,-0.213521][0.822344,0.350337,0][0.960626,1.14478,-0.123624][-0.476403,-0.776928,0][0.791559,0.378872,0][0.618812,1.65757,0.101513][0.336953,0.298822,-0.169046][0.805122,0.428901,0][0.960626,1.14478,-0.123624][-0.476403,-0.776928,0][0.0797558,0.627843,0][1.17587,0.452645,0.181606][-0.305237,-0.149314,-0.123334][0.101708,0.683428,0][0.618812,1.65757,0.101513][0.336953,0.298822,-0.169046][0.0991171,0.588059,0][0.883351,1.14478,0.413831][0,0,0][0.710615,0.658156,0][1.3189,0.925086,0.202172][0.425551,0.377354,-0.213521][0.745418,0.681687,0][0.618812,1.65757,0.101513][0.336953,0.298822,-0.169046][0.716428,0.606648,0][1.17587,0.452645,0.181606][-0.305237,-0.149314,-0.123334][0.101708,0.683428,0][0.883351,1.14478,0.413831][0,0,0][0.122184,0.629508,0][0.618812,1.65757,0.101513][0.336953,0.298822,-0.169046][0.0991171,0.588059,0][1.00862,0.925086,0.881607][0.47348,0.377441,0.0504738][0.865771,0.371012,0][0.883351,1.14478,0.413831][0,0,0][0.829903,0.386935,0][0.474082,1.65757,0.41843][0.374856,0.298822,0.0399603][0.825378,0.438544,0][0.883351,1.14478,0.413831][0,0,0][0.0678355,0.9595,0][0.899405,0.452645,0.786975][-0.190103,-0.149314,-0.268779][0.01,0.982211,0][0.474082,1.65757,0.41843][0.374856,0.298822,0.0399603][0.115057,0.980878,0][0.527774,1.14478,0.824188][0,0,0][0.696138,0.910067,0][1.00862,0.925086,0.881607][0.47348,0.377441,0.0504738][0.732982,0.890397,0][0.474082,1.65757,0.41843][0.374856,0.298822,0.0399603][0.661358,0.888862,0][0.899405,0.452645,0.786975][-0.190103,-0.149314,-0.268779][0.68145,0.790867,0][0.527774,1.14478,0.824188][0,0,0][0.733384,0.808231,0][0.474082,1.65757,0.41843][0.374856,0.298822,0.0399603][0.780958,0.788092,0][0.380254,0.925086,1.28543][0.371145,0.379066,0.299255][0.632239,0.679822,0][0.527774,1.14478,0.824188][0,0,0][0.667741,0.65745,0][0.179205,1.65744,0.607111][0.293444,0.299707,0.236604][0.663524,0.605729,0][0.527774,1.14478,0.824188][0,0,0][0.942571,0.379086,0][0.339542,0.452645,1.14678][-0.0147893,-0.149846,-0.330134][0.88789,0.393957,0][0.179205,1.65744,0.607111][0.293444,0.299707,0.236604][0.983073,0.406624,0][0.0067875,1.14366,0.978267][0,0,0][0.597161,0.91338,0][0.380254,0.925086,1.28543][0.371145,0.379066,0.299255][0.631866,0.88986,0][0.179205,1.65744,0.607111][0.293444,0.299707,0.236604][0.551425,0.888862,0][0.339542,0.452645,1.14678][-0.0147893,-0.149846,-0.330134][0.88789,0.393957,0][0.0067875,1.14366,0.978267][0,0,0][0.942483,0.420245,0][0.179205,1.65744,0.607111][0.293444,0.299707,0.236604][0.983073,0.406624,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/BusinessFedora.mesh b/shareddata/charcustom/hats/fonts/BusinessFedora.mesh deleted file mode 100644 index 7fa1102..0000000 --- a/shareddata/charcustom/hats/fonts/BusinessFedora.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -1038 -[-0.844235,-0.0540417,0.464081][0.661801,-0.724284,-0.193474][0.294796,0.111248,0][-0.717603,-0.0515258,0.745561][0.602928,-0.708201,-0.367327][0.31946,0.099642,0][-0.939356,-0.551138,0.810573][0.668982,-0.608849,-0.42634][0.337398,0.121758,0][-0.939356,-0.551138,0.810573][0.668982,-0.608849,-0.42634][0.337398,0.121758,0][-1.10494,-0.547682,0.44245][0.750806,-0.626114,-0.210409][0.304261,0.137351,0][-0.844235,-0.0540417,0.464081][0.661801,-0.724284,-0.193474][0.294796,0.111248,0][-0.717603,-0.0515258,0.745561][0.602928,-0.708201,-0.367327][0.31946,0.099642,0][-0.520369,-0.0479649,1.00329][0.402267,-0.668983,-0.625015][0.339013,0.081607,0][-0.681454,-0.548528,1.10267][0.471478,-0.598796,-0.647419][0.363668,0.097527,0][-0.681454,-0.548528,1.10267][0.471478,-0.598796,-0.647419][0.363668,0.097527,0][-0.939356,-0.551138,0.810573][0.668982,-0.608849,-0.42634][0.337398,0.121758,0][-0.717603,-0.0515258,0.745561][0.602928,-0.708201,-0.367327][0.31946,0.099642,0][-0.520369,-0.0479649,1.00329][0.402267,-0.668983,-0.625015][0.339013,0.081607,0][-0.271839,-0.047444,1.06155][0.129765,-0.698352,-0.703893][0.34407,0.058924,0][-0.356478,-0.54748,1.21991][0.22799,-0.573469,-0.786864][0.374428,0.067043,0][-0.356478,-0.54748,1.21991][0.22799,-0.573469,-0.786864][0.374428,0.067043,0][-0.681454,-0.548528,1.10267][0.471478,-0.598796,-0.647419][0.363668,0.097527,0][-0.520369,-0.0479649,1.00329][0.402267,-0.668983,-0.625015][0.339013,0.081607,0][-0.356478,-0.54748,1.21991][0.22799,-0.573469,-0.786864][0.374428,0.067043,0][-3.5751e-007,-0.510905,1.30277][-2.50869e-007,-0.523437,-0.852064][0.376466,0.03329,0][-4.7056e-007,-0.715287,1.48113][-4.31271e-007,-0.999749,0.0223917][0.402462,0.032867,0][-4.7056e-007,-0.715287,1.48113][-4.31271e-007,-0.999749,0.0223917][0.402462,0.032867,0][-0.414608,-0.715719,1.43284][-0.00985931,-0.997567,0.069014][0.398063,0.073364,0][-0.356478,-0.54748,1.21991][0.22799,-0.573469,-0.786864][0.374428,0.067043,0][0,-0.0658549,-0.857672][-3.75079e-007,-0.810312,0.585998][0.178671,0.034154,0][-0.271839,-0.0654137,-0.808252][0.196682,-0.811762,0.549871][0.183065,0.059276,0][-0.356478,-0.585343,-1.20655][0.229265,-0.562397,0.794448][0.155546,0.067485,0][-0.356478,-0.585343,-1.20655][0.229265,-0.562397,0.794448][0.155546,0.067485,0][-1.69867e-007,-0.585748,-1.25184][-2.71326e-007,-0.546378,0.837539][0.151508,0.033729,0][0,-0.0658549,-0.857672][-3.75079e-007,-0.810312,0.585998][0.178671,0.034154,0][-0.271839,-0.0654137,-0.808252][0.196682,-0.811762,0.549871][0.183065,0.059276,0][-0.520369,-0.0641316,-0.664831][0.377779,-0.804248,0.458768][0.1957,0.08192,0][-0.681454,-0.567622,-1.03365][0.48197,-0.581667,0.655262][0.17112,0.097948,0][-0.681454,-0.567622,-1.03365][0.48197,-0.581667,0.655262][0.17112,0.097948,0][-0.356478,-0.585343,-1.20655][0.229265,-0.562397,0.794448][0.155546,0.067485,0][-0.271839,-0.0654137,-0.808252][0.196682,-0.811762,0.549871][0.183065,0.059276,0][-0.520369,-0.0641316,-0.664831][0.377779,-0.804248,0.458768][0.1957,0.08192,0][-0.717603,-0.0621346,-0.441447][0.520503,-0.785553,0.334638][0.215337,0.099869,0][-0.939356,-0.56501,-0.741552][0.661676,-0.595578,0.455491][0.197504,0.122064,0][-0.939356,-0.56501,-0.741552][0.661676,-0.595578,0.455491][0.197504,0.122064,0][-0.681454,-0.567622,-1.03365][0.48197,-0.581667,0.655262][0.17112,0.097948,0][-0.520369,-0.0641316,-0.664831][0.377779,-0.804248,0.458768][0.1957,0.08192,0][-0.717603,-0.0621346,-0.441447][0.520503,-0.785553,0.334638][0.215337,0.099869,0][-0.844235,-0.0596186,-0.159966][0.618396,-0.765479,0.177844][0.240055,0.111367,0][-1.10494,-0.556064,-0.373541][0.752785,-0.609924,0.247602][0.230714,0.137511,0][-1.10494,-0.556064,-0.373541][0.752785,-0.609924,0.247602][0.230714,0.137511,0][-0.939356,-0.56501,-0.741552][0.661676,-0.595578,0.455491][0.197504,0.122064,0][-0.717603,-0.0621346,-0.441447][0.520503,-0.785553,0.334638][0.215337,0.099869,0][-0.844235,-0.0596186,-0.159966][0.618396,-0.765479,0.177844][0.240055,0.111367,0][-0.88787,-0.0568306,0.152057][0.667396,-0.744699,-0.00251934][0.267435,0.115288,0][-1.16999,-0.558228,0.0355688][0.774541,-0.632301,0.0167869][0.2675,0.142779,0][-1.16999,-0.558228,0.0355688][0.774541,-0.632301,0.0167869][0.2675,0.142779,0][-1.10494,-0.556064,-0.373541][0.752785,-0.609924,0.247602][0.230714,0.137511,0][-0.844235,-0.0596186,-0.159966][0.618396,-0.765479,0.177844][0.240055,0.111367,0][-0.88787,-0.0568306,0.152057][0.667396,-0.744699,-0.00251934][0.267435,0.115288,0][-0.844235,-0.0540417,0.464081][0.661801,-0.724284,-0.193474][0.294796,0.111248,0][-1.10494,-0.547682,0.44245][0.750806,-0.626114,-0.210409][0.304261,0.137351,0][-1.10494,-0.547682,0.44245][0.750806,-0.626114,-0.210409][0.304261,0.137351,0][-1.16999,-0.558228,0.0355688][0.774541,-0.632301,0.0167869][0.2675,0.142779,0][-0.88787,-0.0568306,0.152057][0.667396,-0.744699,-0.00251934][0.267435,0.115288,0][-0.717603,-0.0515258,0.745561][0.602928,-0.708201,-0.367327][0.31946,0.099642,0][-0.844235,-0.0540417,0.464081][0.661801,-0.724284,-0.193474][0.294796,0.111248,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][-0.520369,-0.0479649,1.00329][0.402267,-0.668983,-0.625015][0.339013,0.081607,0][-0.717603,-0.0515258,0.745561][0.602928,-0.708201,-0.367327][0.31946,0.099642,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][-0.271839,-0.047444,1.06155][0.129765,-0.698352,-0.703893][0.34407,0.058924,0][-0.520369,-0.0479649,1.00329][0.402267,-0.668983,-0.625015][0.339013,0.081607,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][0,-0.0472562,1.08258][-3.53014e-007,-0.722357,-0.69152][0.345855,0.033788,0][-0.271839,-0.047444,1.06155][0.129765,-0.698352,-0.703893][0.34407,0.058924,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][-0.271839,-0.0654137,-0.808252][0.196682,-0.811762,0.549871][0.183065,0.059276,0][0,-0.0658549,-0.857672][-3.75079e-007,-0.810312,0.585998][0.178671,0.034154,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][-0.520369,-0.0641316,-0.664831][0.377779,-0.804248,0.458768][0.1957,0.08192,0][-0.271839,-0.0654137,-0.808252][0.196682,-0.811762,0.549871][0.183065,0.059276,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][-0.717603,-0.0621346,-0.441447][0.520503,-0.785553,0.334638][0.215337,0.099869,0][-0.520369,-0.0641316,-0.664831][0.377779,-0.804248,0.458768][0.1957,0.08192,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][-0.844235,-0.0596186,-0.159966][0.618396,-0.765479,0.177844][0.240055,0.111367,0][-0.717603,-0.0621346,-0.441447][0.520503,-0.785553,0.334638][0.215337,0.099869,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][-0.88787,-0.0568306,0.152057][0.667396,-0.744699,-0.00251934][0.267435,0.115288,0][-0.844235,-0.0596186,-0.159966][0.618396,-0.765479,0.177844][0.240055,0.111367,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][-0.844235,-0.0540417,0.464081][0.661801,-0.724284,-0.193474][0.294796,0.111248,0][-0.88787,-0.0568306,0.152057][0.667396,-0.744699,-0.00251934][0.267435,0.115288,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][2.49967e-007,0.571379,0.257224][4.90324e-007,0.999334,-0.0364884][0.749768,0.226993,0][-0.180334,0.587348,0.24833][0.196054,0.980141,-0.0297619][0.747471,0.182288,0][-0.181274,0.593669,0.459988][0.184676,0.982243,-0.0330512][0.802146,0.182067,0][-0.181274,0.593669,0.459988][0.184676,0.982243,-0.0330512][0.802146,0.182067,0][2.35262e-007,0.576585,0.453827][4.95509e-007,0.999578,-0.0290418][0.800555,0.227003,0][2.49967e-007,0.571379,0.257224][4.90324e-007,0.999334,-0.0364884][0.749768,0.226993,0][-1.02099,-0.0159627,0.869153][-0.837419,0.156463,0.523687][0.719728,0.644196,0][-0.933413,0.437559,0.828259][-0.850884,0.218343,0.477831][0.720435,0.806277,0][-1.09299,0.445918,0.44911][-0.934848,0.239269,0.262316][0.606963,0.809265,0][-1.09299,0.445918,0.44911][-0.934848,0.239269,0.262316][0.606963,0.809265,0][-1.20089,-0.0211015,0.471694][-0.940283,0.180334,0.288698][0.604634,0.64236,0][-1.02099,-0.0159627,0.869153][-0.837419,0.156463,0.523687][0.719728,0.644196,0][-1.23943,0.0759216,0.0344069][-0.96705,0.249373,-0.0512549][0.496453,0.670244,0][-1.20089,-0.0211015,0.471694][-0.940283,0.180334,0.288698][0.604634,0.64236,0][-1.09299,0.445918,0.44911][-0.934848,0.239269,0.262316][0.606963,0.809265,0][-1.09299,0.445918,0.44911][-0.934848,0.239269,0.262316][0.606963,0.809265,0][-1.14678,0.461416,0.034407][-0.961759,0.258857,-0.0895176][0.495884,0.814803,0][-1.23943,0.0759216,0.0344069][-0.96705,0.249373,-0.0512549][0.496453,0.670244,0][-1.23943,0.0759216,0.0344069][-0.96705,0.249373,-0.0512549][0.496453,0.670244,0][-1.14678,0.461416,0.034407][-0.961759,0.258857,-0.0895176][0.495884,0.814803,0][-1.07067,0.460098,-0.200487][-0.86736,0.319379,-0.381686][0.427553,0.806989,0][-1.07067,0.460098,-0.200487][-0.86736,0.319379,-0.381686][0.427553,0.806989,0][-1.13003,0.129553,-0.361996][-0.883789,0.305597,-0.354297][0.395888,0.696201,0][-1.23943,0.0759216,0.0344069][-0.96705,0.249373,-0.0512549][0.496453,0.670244,0][-0.979383,0.218722,-0.439858][-0.459888,0.596683,-0.657627][0.362558,0.728068,0][-0.945696,0.381638,-0.354573][-0.524399,0.360339,-0.771467][0.376825,0.793634,0][-0.783955,0.321947,-0.498098][-0.560174,0.400223,-0.725277][0.30811,0.764959,0][-0.783955,0.321947,-0.498098][-0.560174,0.400223,-0.725277][0.30811,0.764959,0][-0.879661,0.122159,-0.616606][-0.340189,0.738866,-0.581677][0.308959,0.693558,0][-0.979383,0.218722,-0.439858][-0.459888,0.596683,-0.657627][0.362558,0.728068,0][-0.879661,0.122159,-0.616606][-0.340189,0.738866,-0.581677][0.308959,0.693558,0][-0.783955,0.321947,-0.498098][-0.560174,0.400223,-0.725277][0.30811,0.764959,0][-0.572981,0.281684,-0.688148][-0.542834,0.415614,-0.729792][0.224814,0.75057,0][-0.572981,0.281684,-0.688148][-0.542834,0.415614,-0.729792][0.224814,0.75057,0][-0.648121,0.0697744,-0.82582][-0.359999,0.778945,-0.513464][0.224594,0.674837,0][-0.879661,0.122159,-0.616606][-0.340189,0.738866,-0.581677][0.308959,0.693558,0][-0.648121,0.0697744,-0.82582][-0.359999,0.778945,-0.513464][0.224594,0.674837,0][-0.572981,0.281684,-0.688148][-0.542834,0.415614,-0.729792][0.224814,0.75057,0][-0.369956,0.248634,-0.847398][-0.590007,0.419662,-0.689764][0.158934,0.738758,0][-0.369956,0.248634,-0.847398][-0.590007,0.419662,-0.689764][0.158934,0.738758,0][-0.417833,0.114991,-0.947852][-0.471548,0.725463,-0.501345][0.160685,0.690997,0][-0.648121,0.0697744,-0.82582][-0.359999,0.778945,-0.513464][0.224594,0.674837,0][-0.318551,0.183914,-0.97185][-0.610962,0.609921,-0.5047][0.133586,0.715629,0][-0.417833,0.114991,-0.947852][-0.471548,0.725463,-0.501345][0.160685,0.690997,0][-0.369956,0.248634,-0.847398][-0.590007,0.419662,-0.689764][0.158934,0.738758,0][-0.369956,0.248634,-0.847398][-0.590007,0.419662,-0.689764][0.158934,0.738758,0][-0.266523,0.27629,-0.94409][-0.667877,0.398039,-0.628892][0.121998,0.748642,0][-0.318551,0.183914,-0.97185][-0.610962,0.609921,-0.5047][0.133586,0.715629,0][-1.26063e-007,-0.00569123,1.41095][0,0.0782557,0.996933][0.960103,0.647867,0][0,0.403359,1.36505][0,0.175048,0.98456][0.960103,0.794055,0][-0.37334,0.404642,1.31998][-0.262887,0.172349,0.949308][0.888,0.794513,0][-0.37334,0.404642,1.31998][-0.262887,0.172349,0.949308][0.888,0.794513,0][-0.387723,-0.00611604,1.36349][-0.266893,0.0800133,0.960399][0.887703,0.647716,0][-1.26063e-007,-0.00569123,1.41095][0,0.0782557,0.996933][0.960103,0.647867,0][-0.740794,-0.00752984,1.20522][-0.609625,0.101396,0.786178][0.809706,0.64721,0][-0.387723,-0.00611604,1.36349][-0.266893,0.0800133,0.960399][0.887703,0.647716,0][-0.37334,0.404642,1.31998][-0.262887,0.172349,0.949308][0.888,0.794513,0][-0.37334,0.404642,1.31998][-0.262887,0.172349,0.949308][0.888,0.794513,0][-0.703517,0.424924,1.16813][-0.630153,0.175608,0.756352][0.812163,0.801762,0][-0.740794,-0.00752984,1.20522][-0.609625,0.101396,0.786178][0.809706,0.64721,0][-0.740794,-0.00752984,1.20522][-0.609625,0.101396,0.786178][0.809706,0.64721,0][-0.703517,0.424924,1.16813][-0.630153,0.175608,0.756352][0.812163,0.801762,0][-0.933413,0.437559,0.828259][-0.850884,0.218343,0.477831][0.720435,0.806277,0][-0.933413,0.437559,0.828259][-0.850884,0.218343,0.477831][0.720435,0.806277,0][-1.02099,-0.0159627,0.869153][-0.837419,0.156463,0.523687][0.719728,0.644196,0][-0.740794,-0.00752984,1.20522][-0.609625,0.101396,0.786178][0.809706,0.64721,0][-0.792026,-0.717187,1.26856][-0.00898057,-0.999089,0.0417088][0.382862,0.109921,0][-0.937414,-0.529112,1.48242][-0.399732,-0.65545,0.640781][0.412594,0.129512,0][-1.29977,-0.5783,1.06085][-0.510308,-0.751778,0.417632][0.372873,0.169251,0][-1.29977,-0.5783,1.06085][-0.510308,-0.751778,0.417632][0.372873,0.169251,0][-1.09155,-0.717177,0.929196][0.0308774,-0.998912,-0.0349599][0.351363,0.138976,0][-0.792026,-0.717187,1.26856][-0.00898057,-0.999089,0.0417088][0.382862,0.109921,0][-1.28385,-0.706193,0.502165][0.157038,-0.98753,0.0111139][0.311629,0.157673,0][-1.09155,-0.717177,0.929196][0.0308774,-0.998912,-0.0349599][0.351363,0.138976,0][-1.29977,-0.5783,1.06085][-0.510308,-0.751778,0.417632][0.372873,0.169251,0][-1.29977,-0.5783,1.06085][-0.510308,-0.751778,0.417632][0.372873,0.169251,0][-1.58629,-0.597601,0.596417][-0.460297,-0.843063,0.278159][0.322969,0.189989,0][-1.28385,-0.706193,0.502165][0.157038,-0.98753,0.0111139][0.311629,0.157673,0][-1.681,-0.675449,0.0287787][-0.271523,-0.952977,0.13457][0.267611,0.197218,0][-1.35744,-0.731259,0.0301428][0.26367,-0.961381,0.078893][0.26755,0.164181,0][-1.28385,-0.706193,0.502165][0.157038,-0.98753,0.0111139][0.311629,0.157673,0][-1.28385,-0.706193,0.502165][0.157038,-0.98753,0.0111139][0.311629,0.157673,0][-1.58629,-0.597601,0.596417][-0.460297,-0.843063,0.278159][0.322969,0.189989,0][-1.681,-0.675449,0.0287787][-0.271523,-0.952977,0.13457][0.267611,0.197218,0][-1.35744,-0.731259,0.0301428][0.26367,-0.961381,0.078893][0.26755,0.164181,0][-1.681,-0.675449,0.0287787][-0.271523,-0.952977,0.13457][0.267611,0.197218,0][-1.56521,-0.775535,-0.544065][-0.0785425,-0.987956,0.133321][0.212221,0.190231,0][-1.56521,-0.775535,-0.544065][-0.0785425,-0.987956,0.133321][0.212221,0.190231,0][-1.28385,-0.772562,-0.442914][0.349294,-0.916075,0.19698][0.223442,0.157865,0][-1.35744,-0.731259,0.0301428][0.26367,-0.961381,0.078893][0.26755,0.164181,0][-1.09154,-0.828245,-0.869067][0.30651,-0.895328,0.323172][0.18362,0.139342,0][-1.28385,-0.772562,-0.442914][0.349294,-0.916075,0.19698][0.223442,0.157865,0][-1.56521,-0.775535,-0.544065][-0.0785425,-0.987956,0.133321][0.212221,0.190231,0][-1.56521,-0.775535,-0.544065][-0.0785425,-0.987956,0.133321][0.212221,0.190231,0][-1.32109,-0.841776,-1.065][-0.0648835,-0.99173,0.110729][0.162219,0.169711,0][-1.09154,-0.828245,-0.869067][0.30651,-0.895328,0.323172][0.18362,0.139342,0][-0.792025,-0.883304,-1.20593][0.224067,-0.865032,0.448903][0.151984,0.110426,0][-1.09154,-0.828245,-0.869067][0.30651,-0.895328,0.323172][0.18362,0.139342,0][-1.32109,-0.841776,-1.065][-0.0648835,-0.99173,0.110729][0.162219,0.169711,0][-1.32109,-0.841776,-1.065][-0.0648835,-0.99173,0.110729][0.162219,0.169711,0][-0.937414,-0.922699,-1.43071][-0.053451,-0.99132,0.120115][0.122346,0.130125,0][-0.792025,-0.883304,-1.20593][0.224067,-0.865032,0.448903][0.151984,0.110426,0][-0.414608,-0.912371,-1.39681][0.114565,-0.855428,0.505091][0.134121,0.073877,0][-0.792025,-0.883304,-1.20593][0.224067,-0.865032,0.448903][0.151984,0.110426,0][-0.937414,-0.922699,-1.43071][-0.053451,-0.99132,0.120115][0.122346,0.130125,0][-0.937414,-0.922699,-1.43071][-0.053451,-0.99132,0.120115][0.122346,0.130125,0][-0.49104,-0.956381,-1.66316][-0.00111413,-0.992913,0.118837][0.099134,0.084243,0][-0.414608,-0.912371,-1.39681][0.114565,-0.855428,0.505091][0.134121,0.073877,0][-3.06389e-007,-0.959829,-1.73059][-4.36873e-007,-0.992807,0.119724][0.092226,0.033411,0][-3.09665e-007,-0.912723,-1.43618][-3.73148e-007,-0.836829,0.547464][0.130362,0.033398,0][-0.414608,-0.912371,-1.39681][0.114565,-0.855428,0.505091][0.134121,0.073877,0][-0.414608,-0.912371,-1.39681][0.114565,-0.855428,0.505091][0.134121,0.073877,0][-0.49104,-0.956381,-1.66316][-0.00111413,-0.992913,0.118837][0.099134,0.084243,0][-3.06389e-007,-0.959829,-1.73059][-4.36873e-007,-0.992807,0.119724][0.092226,0.033411,0][-0.414608,-0.715719,1.43284][-0.00985931,-0.997567,0.069014][0.398063,0.073364,0][-4.7056e-007,-0.715287,1.48113][-4.31271e-007,-0.999749,0.0223917][0.402462,0.032867,0][-3.82071e-007,-0.479491,1.75505][-2.79219e-007,-0.589156,0.80802][0.439249,0.032757,0][-3.82071e-007,-0.479491,1.75505][-2.79219e-007,-0.589156,0.80802][0.439249,0.032757,0][-0.491039,-0.491135,1.69358][-0.189182,-0.599963,0.777338][0.433118,0.083603,0][-0.414608,-0.715719,1.43284][-0.00985931,-0.997567,0.069014][0.398063,0.073364,0][-0.414608,-0.715719,1.43284][-0.00985931,-0.997567,0.069014][0.398063,0.073364,0][-0.491039,-0.491135,1.69358][-0.189182,-0.599963,0.777338][0.433118,0.083603,0][-0.937414,-0.529112,1.48242][-0.399732,-0.65545,0.640781][0.412594,0.129512,0][-0.937414,-0.529112,1.48242][-0.399732,-0.65545,0.640781][0.412594,0.129512,0][-0.792026,-0.717187,1.26856][-0.00898057,-0.999089,0.0417088][0.382862,0.109921,0][-0.414608,-0.715719,1.43284][-0.00985931,-0.997567,0.069014][0.398063,0.073364,0][-1.10114,-0.664548,-0.88099][-0.173194,0.972846,-0.153542][0.29192,0.41778,0][-1.32204,-0.73877,-1.03811][-0.0969236,0.985762,-0.137399][0.291925,0.367597,0][-1.49459,-0.681148,-0.531945][-0.0471658,0.989448,-0.136996][0.38786,0.369055,0][-1.49459,-0.681148,-0.531945][-0.0471658,0.989448,-0.136996][0.38786,0.369055,0][-1.32513,-0.651314,-0.462713][-0.0694956,0.995845,-0.0588403][0.387885,0.420196,0][-1.10114,-0.664548,-0.88099][-0.173194,0.972846,-0.153542][0.29192,0.41778,0][-0.775094,-0.658751,-1.18589][-0.409877,0.726892,-0.551026][0.208158,0.428886,0][-0.799104,-0.670184,-1.22261][-0.159536,0.959552,-0.231965][0.20817,0.417868,0][-1.10114,-0.664548,-0.88099][-0.173194,0.972846,-0.153542][0.29192,0.41778,0][-1.10114,-0.664548,-0.88099][-0.173194,0.972846,-0.153542][0.29192,0.41778,0][-1.06824,-0.655783,-0.853873][-0.582983,0.692815,-0.424428][0.291918,0.429017,0][-0.775094,-0.658751,-1.18589][-0.409877,0.726892,-0.551026][0.208158,0.428886,0][-0.405707,-0.660444,-1.37518][-0.191402,0.709749,-0.677954][0.113489,0.429364,0][-0.41833,-0.676217,-1.41866][-0.0896019,0.936254,-0.339706][0.113491,0.418482,0][-0.799104,-0.670184,-1.22261][-0.159536,0.959552,-0.231965][0.20817,0.417868,0][-0.799104,-0.670184,-1.22261][-0.159536,0.959552,-0.231965][0.20817,0.417868,0][-0.775094,-0.658751,-1.18589][-0.409877,0.726892,-0.551026][0.208158,0.428886,0][-0.405707,-0.660444,-1.37518][-0.191402,0.709749,-0.677954][0.113489,0.429364,0][-0.405707,-0.660444,-1.37518][-0.191402,0.709749,-0.677954][0.113489,0.429364,0][-1.9124e-007,-0.660816,-1.41681][3.14796e-007,0.696868,-0.7172][0.045394,0.428223,0][-1.95161e-007,-0.67784,-1.46482][4.0879e-007,0.940736,-0.339138][0.045376,0.417384,0][-1.95161e-007,-0.67784,-1.46482][4.0879e-007,0.940736,-0.339138][0.045376,0.417384,0][-0.41833,-0.676217,-1.41866][-0.0896019,0.936254,-0.339706][0.113491,0.418482,0][-0.405707,-0.660444,-1.37518][-0.191402,0.709749,-0.677954][0.113489,0.429364,0][-4.18871e-007,-0.611438,1.45631][2.78739e-007,0.688128,0.725589][0.9717,0.429686,0][-0.405707,-0.608839,1.40659][-0.199084,0.664978,0.71984][0.912957,0.429875,0][-0.421863,-0.620654,1.46244][0.0888586,0.94078,-0.327164][0.913051,0.416465,0][-0.421863,-0.620654,1.46244][0.0888586,0.94078,-0.327164][0.913051,0.416465,0][-4.27596e-007,-0.61901,1.51481][4.01754e-007,0.916047,-0.401071][0.971705,0.41767,0][-4.18871e-007,-0.611438,1.45631][2.78739e-007,0.688128,0.725589][0.9717,0.429686,0][-0.775094,-0.610318,1.24116][-0.440092,0.675905,0.591161][0.809373,0.428864,0][-0.805824,-0.622291,1.2883][0.171672,0.951054,-0.256953][0.809373,0.415134,0][-0.421863,-0.620654,1.46244][0.0888586,0.94078,-0.327164][0.913051,0.416465,0][-0.421863,-0.620654,1.46244][0.0888586,0.94078,-0.327164][0.913051,0.416465,0][-0.405707,-0.608839,1.40659][-0.199084,0.664978,0.71984][0.912957,0.429875,0][-0.775094,-0.610318,1.24116][-0.440092,0.675905,0.591161][0.809373,0.428864,0][-0.775094,-0.610318,1.24116][-0.440092,0.675905,0.591161][0.809373,0.428864,0][-1.06824,-0.613286,0.909145][-0.623443,0.661486,0.41684][0.72059,0.430116,0][-1.11035,-0.623881,0.944046][0.220612,0.957878,-0.18385][0.720583,0.416319,0][-1.11035,-0.623881,0.944046][0.220612,0.957878,-0.18385][0.720583,0.416319,0][-0.805824,-0.622291,1.2883][0.171672,0.951054,-0.256953][0.809373,0.415134,0][-0.775094,-0.610318,1.24116][-0.440092,0.675905,0.591161][0.809373,0.428864,0][-1.11035,-0.623881,0.944046][0.220612,0.957878,-0.18385][0.720583,0.416319,0][-1.32411,-0.629165,0.518181][0.212051,0.968775,-0.128492][0.622969,0.418523,0][-1.49792,-0.533544,0.564781][0.494782,0.819548,-0.289018][0.623028,0.370987,0][-1.49792,-0.533544,0.564781][0.494782,0.819548,-0.289018][0.623028,0.370987,0][-1.26598,-0.451561,1.05627][0.560605,0.695833,-0.44893][0.720577,0.37184,0][-1.11035,-0.623881,0.944046][0.220612,0.957878,-0.18385][0.720583,0.416319,0][-2.72365e-007,-0.304581,1.45419][3.03867e-007,0.634453,0.772961][0.971531,0.520934,0][-2.67779e-007,-0.300386,1.42461][3.42596e-007,0.698199,0.715904][0.961003,0.53844,0][-0.397291,-0.30082,1.37605][-0.192647,0.70575,0.681765][0.887697,0.538409,0][-0.397291,-0.30082,1.37605][-0.192647,0.70575,0.681765][0.887697,0.538409,0][-0.405707,-0.305024,1.40461][-0.209843,0.629223,0.748361][0.912933,0.520934,0][-2.72365e-007,-0.304581,1.45419][3.03867e-007,0.634453,0.772961][0.971531,0.520934,0][-0.405707,-0.305024,1.40461][-0.209843,0.629223,0.748361][0.912933,0.520934,0][-0.397291,-0.30082,1.37605][-0.192647,0.70575,0.681765][0.887697,0.538409,0][-0.759086,-0.302268,1.21402][-0.417974,0.726138,0.545913][0.809221,0.538306,0][-0.759086,-0.302268,1.21402][-0.417974,0.726138,0.545913][0.809221,0.538306,0][-0.775094,-0.306503,1.23918][-0.468329,0.616974,0.632464][0.809372,0.520934,0][-0.405707,-0.305024,1.40461][-0.209843,0.629223,0.748361][0.912933,0.520934,0][-1.06824,-0.30947,0.907165][-0.675585,0.585658,0.447873][0.720627,0.520934,0][-0.775094,-0.306503,1.23918][-0.468329,0.616974,0.632464][0.809372,0.520934,0][-0.759086,-0.302268,1.21402][-0.417974,0.726138,0.545913][0.809221,0.538306,0][-0.759086,-0.302268,1.21402][-0.417974,0.726138,0.545913][0.809221,0.538306,0][-1.04621,-0.30122,0.888796][-0.633337,0.666352,0.393522][0.71835,0.538381,0][-1.06824,-0.30947,0.907165][-0.675585,0.585658,0.447873][0.720627,0.520934,0][-1.06824,-0.30947,0.907165][-0.675585,0.585658,0.447873][0.720627,0.520934,0][-1.04621,-0.30122,0.888796][-0.633337,0.666352,0.393522][0.71835,0.538381,0][-1.23055,-0.315919,0.479132][-0.59229,0.780936,0.198323][0.622663,0.53743,0][-1.23055,-0.315919,0.479132][-0.59229,0.780936,0.198323][0.622663,0.53743,0][-1.27922,-0.313165,0.493701][-0.682731,0.696262,0.221581][0.622866,0.52293,0][-1.06824,-0.30947,0.907165][-0.675585,0.585658,0.447873][0.720627,0.520934,0][-1.06824,-0.324762,-0.803845][-0.629564,0.613924,-0.476179][0.291907,0.520934,0][-1.27922,-0.321543,-0.443608][-0.716601,0.645772,-0.263556][0.387862,0.522643,0][-1.23055,-0.317534,-0.429376][-0.579082,0.785732,-0.21746][0.383051,0.537765,0][-1.23055,-0.317534,-0.429376][-0.579082,0.785732,-0.21746][0.383051,0.537765,0][-1.04621,-0.316302,-0.785952][-0.544065,0.72867,-0.415974][0.305111,0.53731,0][-1.06824,-0.324762,-0.803845][-0.629564,0.613924,-0.476179][0.291907,0.520934,0][-1.06824,-0.324762,-0.803845][-0.629564,0.613924,-0.476179][0.291907,0.520934,0][-1.04621,-0.316302,-0.785952][-0.544065,0.72867,-0.415974][0.305111,0.53731,0][-0.759086,-0.318212,-1.06951][-0.378843,0.754558,-0.535836][0.222659,0.537174,0][-0.759086,-0.318212,-1.06951][-0.378843,0.754558,-0.535836][0.222659,0.537174,0][-0.775094,-0.326733,-1.09423][-0.447441,0.659336,-0.604212][0.208126,0.520934,0][-1.06824,-0.324762,-0.803845][-0.629564,0.613924,-0.476179][0.291907,0.520934,0][-0.775094,-0.326733,-1.09423][-0.447441,0.659336,-0.604212][0.208126,0.520934,0][-0.759086,-0.318212,-1.06951][-0.378843,0.754558,-0.535836][0.222659,0.537174,0][-0.397291,-0.31987,-1.25492][-0.177613,0.770074,-0.612731][0.135485,0.537056,0][-0.397291,-0.31987,-1.25492][-0.177613,0.770074,-0.612731][0.135485,0.537056,0][-0.405707,-0.328426,-1.28353][-0.214226,0.671371,-0.709485][0.113474,0.520934,0][-0.775094,-0.326733,-1.09423][-0.447441,0.659336,-0.604212][0.208126,0.520934,0][0,-0.328798,-1.32516][3.11974e-007,0.686666,-0.726973][0.045424,0.520934,0][-0.405707,-0.328426,-1.28353][-0.214226,0.671371,-0.709485][0.113474,0.520934,0][-0.397291,-0.31987,-1.25492][-0.177613,0.770074,-0.612731][0.135485,0.537056,0][-0.397291,-0.31987,-1.25492][-0.177613,0.770074,-0.612731][0.135485,0.537056,0][0,-0.320235,-1.29569][3.41706e-007,0.748475,-0.663162][0.046096,0.53703,0][0,-0.328798,-1.32516][3.11974e-007,0.686666,-0.726973][0.045424,0.520934,0][-0.397291,-0.31987,-1.25492][-0.177613,0.770074,-0.612731][0.135485,0.537056,0][-0.759086,-0.318212,-1.06951][-0.378843,0.754558,-0.535836][0.222659,0.537174,0][-0.726176,-0.0569605,-0.974513][-0.513422,0.453288,-0.728648][0.224395,0.629544,0][-0.726176,-0.0569605,-0.974513][-0.513422,0.453288,-0.728648][0.224395,0.629544,0][-0.356212,0.00637035,-1.12741][-0.285207,0.441385,-0.850786][0.131317,0.652178,0][-0.397291,-0.31987,-1.25492][-0.177613,0.770074,-0.612731][0.135485,0.537056,0][0,-0.320235,-1.29569][3.41706e-007,0.748475,-0.663162][0.046096,0.53703,0][-0.397291,-0.31987,-1.25492][-0.177613,0.770074,-0.612731][0.135485,0.537056,0][-0.356212,0.00637035,-1.12741][-0.285207,0.441385,-0.850786][0.131317,0.652178,0][-0.356212,0.00637035,-1.12741][-0.285207,0.441385,-0.850786][0.131317,0.652178,0][0,-0.000837807,-1.18476][1.73264e-007,0.363554,-0.931573][0.046177,0.649602,0][0,-0.320235,-1.29569][3.41706e-007,0.748475,-0.663162][0.046096,0.53703,0][-2.67779e-007,-0.300386,1.42461][3.42596e-007,0.698199,0.715904][0.961003,0.53844,0][-1.26063e-007,-0.00569123,1.41095][0,0.0782557,0.996933][0.960103,0.647867,0][-0.387723,-0.00611604,1.36349][-0.266893,0.0800133,0.960399][0.887703,0.647716,0][-0.387723,-0.00611604,1.36349][-0.266893,0.0800133,0.960399][0.887703,0.647716,0][-0.397291,-0.30082,1.37605][-0.192647,0.70575,0.681765][0.887697,0.538409,0][-2.67779e-007,-0.300386,1.42461][3.42596e-007,0.698199,0.715904][0.961003,0.53844,0][-0.397291,-0.30082,1.37605][-0.192647,0.70575,0.681765][0.887697,0.538409,0][-0.387723,-0.00611604,1.36349][-0.266893,0.0800133,0.960399][0.887703,0.647716,0][-0.740794,-0.00752984,1.20522][-0.609625,0.101396,0.786178][0.809706,0.64721,0][-0.740794,-0.00752984,1.20522][-0.609625,0.101396,0.786178][0.809706,0.64721,0][-0.759086,-0.302268,1.21402][-0.417974,0.726138,0.545913][0.809221,0.538306,0][-0.397291,-0.30082,1.37605][-0.192647,0.70575,0.681765][0.887697,0.538409,0][-0.759086,-0.302268,1.21402][-0.417974,0.726138,0.545913][0.809221,0.538306,0][-0.740794,-0.00752984,1.20522][-0.609625,0.101396,0.786178][0.809706,0.64721,0][-1.02099,-0.0159627,0.869153][-0.837419,0.156463,0.523687][0.719728,0.644196,0][-1.02099,-0.0159627,0.869153][-0.837419,0.156463,0.523687][0.719728,0.644196,0][-1.04621,-0.30122,0.888796][-0.633337,0.666352,0.393522][0.71835,0.538381,0][-0.759086,-0.302268,1.21402][-0.417974,0.726138,0.545913][0.809221,0.538306,0][-1.04621,-0.30122,0.888796][-0.633337,0.666352,0.393522][0.71835,0.538381,0][-1.02099,-0.0159627,0.869153][-0.837419,0.156463,0.523687][0.719728,0.644196,0][-1.20089,-0.0211015,0.471694][-0.940283,0.180334,0.288698][0.604634,0.64236,0][-1.20089,-0.0211015,0.471694][-0.940283,0.180334,0.288698][0.604634,0.64236,0][-1.23055,-0.315919,0.479132][-0.59229,0.780936,0.198323][0.622663,0.53743,0][-1.04621,-0.30122,0.888796][-0.633337,0.666352,0.393522][0.71835,0.538381,0][-1.23055,-0.317534,-0.429376][-0.579082,0.785732,-0.21746][0.383051,0.537765,0][-1.13003,0.129553,-0.361996][-0.883789,0.305597,-0.354297][0.395888,0.696201,0][-1.00542,-0.00567541,-0.697061][-0.71802,0.398177,-0.570879][0.308711,0.647873,0][-1.00542,-0.00567541,-0.697061][-0.71802,0.398177,-0.570879][0.308711,0.647873,0][-1.04621,-0.316302,-0.785952][-0.544065,0.72867,-0.415974][0.305111,0.53731,0][-1.23055,-0.317534,-0.429376][-0.579082,0.785732,-0.21746][0.383051,0.537765,0][-1.04621,-0.316302,-0.785952][-0.544065,0.72867,-0.415974][0.305111,0.53731,0][-1.00542,-0.00567541,-0.697061][-0.71802,0.398177,-0.570879][0.308711,0.647873,0][-0.726176,-0.0569605,-0.974513][-0.513422,0.453288,-0.728648][0.224395,0.629544,0][-0.726176,-0.0569605,-0.974513][-0.513422,0.453288,-0.728648][0.224395,0.629544,0][-0.759086,-0.318212,-1.06951][-0.378843,0.754558,-0.535836][0.222659,0.537174,0][-1.04621,-0.316302,-0.785952][-0.544065,0.72867,-0.415974][0.305111,0.53731,0][-0.175568,0.57627,0.00280208][0.204738,0.977904,-0.0422516][0.684046,0.183449,0][-0.163617,0.560188,-0.236956][0.197931,0.979828,-0.0275787][0.622112,0.186383,0][-0.601713,0.710126,-0.367336][0.291577,0.956344,-0.019738][0.588432,0.077991,0][-0.601713,0.710126,-0.367336][0.291577,0.956344,-0.019738][0.588432,0.077991,0][-0.788395,0.76363,-0.133][0.331803,0.942942,-0.0276859][0.648965,0.031783,0][-0.175568,0.57627,0.00280208][0.204738,0.977904,-0.0422516][0.684046,0.183449,0][-0.140062,0.560958,-0.691163][0.179982,0.983479,0.0193906][0.504781,0.192228,0][-0.258774,0.593068,-0.640187][0.289875,0.956922,0.016496][0.517949,0.162841,0][-0.163617,0.560188,-0.236956][0.197931,0.979828,-0.0275787][0.622112,0.186383,0][2.82214e-007,0.549114,-0.23307][4.89427e-007,0.999649,-0.0264903][0.623115,0.22695,0][3.2653e-007,0.548831,-0.741531][4.33738e-007,0.999974,0.00724544][0.49177,0.22695,0][-0.140062,0.560958,-0.691163][0.179982,0.983479,0.0193906][0.504781,0.192228,0][-0.140062,0.560958,-0.691163][0.179982,0.983479,0.0193906][0.504781,0.192228,0][-0.163617,0.560188,-0.236956][0.197931,0.979828,-0.0275787][0.622112,0.186383,0][2.82214e-007,0.549114,-0.23307][4.89427e-007,0.999649,-0.0264903][0.623115,0.22695,0][2.06991e-007,0.642073,1.13441][4.04088e-007,0.994194,-0.107604][0.976363,0.227127,0][2.19507e-007,0.583506,0.671799][4.78642e-007,0.996272,-0.0862719][0.856861,0.227016,0][-0.193497,0.608524,0.675266][0.171394,0.983085,-0.0645626][0.857757,0.179063,0][-0.193497,0.608524,0.675266][0.171394,0.983085,-0.0645626][0.857757,0.179063,0][-0.298124,0.649169,1.12267][0.110628,0.991924,-0.0620267][0.97333,0.153186,0][2.06991e-007,0.642073,1.13441][4.04088e-007,0.994194,-0.107604][0.976363,0.227127,0][-0.193497,0.608524,0.675266][0.171394,0.983085,-0.0645626][0.857757,0.179063,0][-0.702001,0.742541,0.753559][0.318222,0.948011,-0.00314011][0.877981,0.053174,0][-0.550727,0.699008,0.990038][0.212882,0.977014,0.0112142][0.939069,0.090618,0][-0.550727,0.699008,0.990038][0.212882,0.977014,0.0112142][0.939069,0.090618,0][-0.298124,0.649169,1.12267][0.110628,0.991924,-0.0620267][0.97333,0.153186,0][-0.193497,0.608524,0.675266][0.171394,0.983085,-0.0645626][0.857757,0.179063,0][-0.180334,0.587348,0.24833][0.196054,0.980141,-0.0297619][0.747471,0.182288,0][-0.850521,0.801829,0.0833351][0.301884,0.953036,-0.0242424][0.704849,0.016444,0][-0.823886,0.782313,0.437464][0.350654,0.936501,0.00277412][0.796328,0.023014,0][-0.823886,0.782313,0.437464][0.350654,0.936501,0.00277412][0.796328,0.023014,0][-0.181274,0.593669,0.459988][0.184676,0.982243,-0.0330512][0.802146,0.182067,0][-0.180334,0.587348,0.24833][0.196054,0.980141,-0.0297619][0.747471,0.182288,0][-0.961506,0.654289,-0.247349][-0.786463,0.341189,-0.514846][0.412345,0.883733,0][-0.942867,0.765969,-0.216007][-0.604144,0.648301,-0.463375][0.419162,0.912816,0][-0.767809,0.713093,-0.426345][-0.428359,0.702632,-0.568169][0.306858,0.89392,0][-0.767809,0.713093,-0.426345][-0.428359,0.702632,-0.568169][0.306858,0.89392,0][-0.790876,0.629613,-0.454907][-0.632713,0.40647,-0.659133][0.307145,0.874914,0][-0.961506,0.654289,-0.247349][-0.786463,0.341189,-0.514846][0.412345,0.883733,0][-0.790876,0.629613,-0.454907][-0.632713,0.40647,-0.659133][0.307145,0.874914,0][-0.767809,0.713093,-0.426345][-0.428359,0.702632,-0.568169][0.306858,0.89392,0][-0.554898,0.65007,-0.636804][-0.293245,0.742887,-0.60177][0.225007,0.871396,0][-0.554898,0.65007,-0.636804][-0.293245,0.742887,-0.60177][0.225007,0.871396,0][-0.569796,0.588453,-0.663266][-0.509353,0.429863,-0.745505][0.224954,0.860204,0][-0.790876,0.629613,-0.454907][-0.632713,0.40647,-0.659133][0.307145,0.874914,0][-0.569796,0.588453,-0.663266][-0.509353,0.429863,-0.745505][0.224954,0.860204,0][-0.554898,0.65007,-0.636804][-0.293245,0.742887,-0.60177][0.225007,0.871396,0][-0.303384,0.579897,-0.816149][-0.169651,0.74009,-0.650757][0.14334,0.846318,0][-0.303384,0.579897,-0.816149][-0.169651,0.74009,-0.650757][0.14334,0.846318,0][-0.323859,0.5186,-0.835979][-0.385234,0.421208,-0.821084][0.147259,0.83524,0][-0.569796,0.588453,-0.663266][-0.509353,0.429863,-0.745505][0.224954,0.860204,0][-0.292201,0.361605,-0.890561][-0.668062,0.129487,-0.732752][0.133207,0.779132,0][-0.266523,0.27629,-0.94409][-0.667877,0.398039,-0.628892][0.121998,0.748642,0][-0.369956,0.248634,-0.847398][-0.590007,0.419662,-0.689764][0.158934,0.738758,0][-0.369956,0.248634,-0.847398][-0.590007,0.419662,-0.689764][0.158934,0.738758,0][-0.378747,0.397432,-0.806556][-0.656242,-0.0103413,-0.75448][0.166127,0.791937,0][-0.292201,0.361605,-0.890561][-0.668062,0.129487,-0.732752][0.133207,0.779132,0][0,0.403359,1.36505][0,0.175048,0.98456][0.960103,0.794055,0][1.53952e-007,0.565717,1.32463][0,0.241187,0.970479][0.960103,0.852079,0][-0.362761,0.567049,1.28196][-0.254903,0.235442,0.937865][0.887841,0.852555,0][-0.362761,0.567049,1.28196][-0.254903,0.235442,0.937865][0.887841,0.852555,0][-0.37334,0.404642,1.31998][-0.262887,0.172349,0.949308][0.888,0.794513,0][0,0.403359,1.36505][0,0.175048,0.98456][0.960103,0.794055,0][-0.703517,0.424924,1.16813][-0.630153,0.175608,0.756352][0.812163,0.801762,0][-0.37334,0.404642,1.31998][-0.262887,0.172349,0.949308][0.888,0.794513,0][-0.362761,0.567049,1.28196][-0.254903,0.235442,0.937865][0.887841,0.852555,0][-0.362761,0.567049,1.28196][-0.254903,0.235442,0.937865][0.887841,0.852555,0][-0.674653,0.607752,1.1357][-0.622413,0.234288,0.7468][0.813748,0.867101,0][-0.703517,0.424924,1.16813][-0.630153,0.175608,0.756352][0.812163,0.801762,0][-0.933413,0.437559,0.828259][-0.850884,0.218343,0.477831][0.720435,0.806277,0][-0.703517,0.424924,1.16813][-0.630153,0.175608,0.756352][0.812163,0.801762,0][-0.674653,0.607752,1.1357][-0.622413,0.234288,0.7468][0.813748,0.867101,0][-0.674653,0.607752,1.1357][-0.622413,0.234288,0.7468][0.813748,0.867101,0][-0.880986,0.666895,0.79795][-0.850926,0.253572,0.460028][0.720763,0.888238,0][-0.933413,0.437559,0.828259][-0.850884,0.218343,0.477831][0.720435,0.806277,0][-1.09299,0.445918,0.44911][-0.934848,0.239269,0.262316][0.606963,0.809265,0][-0.933413,0.437559,0.828259][-0.850884,0.218343,0.477831][0.720435,0.806277,0][-0.880986,0.666895,0.79795][-0.850926,0.253572,0.460028][0.720763,0.888238,0][-0.880986,0.666895,0.79795][-0.850926,0.253572,0.460028][0.720763,0.888238,0][-1.02634,0.701921,0.439184][-0.932514,0.25734,0.253367][0.607855,0.900756,0][-1.09299,0.445918,0.44911][-0.934848,0.239269,0.262316][0.606963,0.809265,0][-1.14678,0.461416,0.034407][-0.961759,0.258857,-0.0895176][0.495884,0.814803,0][-1.09299,0.445918,0.44911][-0.934848,0.239269,0.262316][0.606963,0.809265,0][-1.02634,0.701921,0.439184][-0.932514,0.25734,0.253367][0.607855,0.900756,0][-1.02634,0.701921,0.439184][-0.932514,0.25734,0.253367][0.607855,0.900756,0][-1.07226,0.706526,0.04087][-0.944586,0.301965,-0.12874][0.497106,0.902401,0][-1.14678,0.461416,0.034407][-0.961759,0.258857,-0.0895176][0.495884,0.814803,0][-1.07067,0.460098,-0.200487][-0.86736,0.319379,-0.381686][0.427553,0.806989,0][-1.14678,0.461416,0.034407][-0.961759,0.258857,-0.0895176][0.495884,0.814803,0][-1.07226,0.706526,0.04087][-0.944586,0.301965,-0.12874][0.497106,0.902401,0][-1.07226,0.706526,0.04087][-0.944586,0.301965,-0.12874][0.497106,0.902401,0][-0.961506,0.654289,-0.247349][-0.786463,0.341189,-0.514846][0.412345,0.883733,0][-1.07067,0.460098,-0.200487][-0.86736,0.319379,-0.381686][0.427553,0.806989,0][-0.356478,-0.585343,-1.20655][0.229265,-0.562397,0.794448][0.155546,0.067485,0][-0.414608,-0.912371,-1.39681][0.114565,-0.855428,0.505091][0.134121,0.073877,0][-3.09665e-007,-0.912723,-1.43618][-3.73148e-007,-0.836829,0.547464][0.130362,0.033398,0][-3.09665e-007,-0.912723,-1.43618][-3.73148e-007,-0.836829,0.547464][0.130362,0.033398,0][-1.69867e-007,-0.585748,-1.25184][-2.71326e-007,-0.546378,0.837539][0.151508,0.033729,0][-0.356478,-0.585343,-1.20655][0.229265,-0.562397,0.794448][0.155546,0.067485,0][-0.681454,-0.548528,1.10267][0.471478,-0.598796,-0.647419][0.363668,0.097527,0][-0.356478,-0.54748,1.21991][0.22799,-0.573469,-0.786864][0.374428,0.067043,0][-0.414608,-0.715719,1.43284][-0.00985931,-0.997567,0.069014][0.398063,0.073364,0][-0.414608,-0.715719,1.43284][-0.00985931,-0.997567,0.069014][0.398063,0.073364,0][-0.792026,-0.717187,1.26856][-0.00898057,-0.999089,0.0417088][0.382862,0.109921,0][-0.681454,-0.548528,1.10267][0.471478,-0.598796,-0.647419][0.363668,0.097527,0][-0.681454,-0.548528,1.10267][0.471478,-0.598796,-0.647419][0.363668,0.097527,0][-0.792026,-0.717187,1.26856][-0.00898057,-0.999089,0.0417088][0.382862,0.109921,0][-1.09155,-0.717177,0.929196][0.0308774,-0.998912,-0.0349599][0.351363,0.138976,0][-1.09155,-0.717177,0.929196][0.0308774,-0.998912,-0.0349599][0.351363,0.138976,0][-0.939356,-0.551138,0.810573][0.668982,-0.608849,-0.42634][0.337398,0.121758,0][-0.681454,-0.548528,1.10267][0.471478,-0.598796,-0.647419][0.363668,0.097527,0][-0.939356,-0.551138,0.810573][0.668982,-0.608849,-0.42634][0.337398,0.121758,0][-1.09155,-0.717177,0.929196][0.0308774,-0.998912,-0.0349599][0.351363,0.138976,0][-1.28385,-0.706193,0.502165][0.157038,-0.98753,0.0111139][0.311629,0.157673,0][-1.28385,-0.706193,0.502165][0.157038,-0.98753,0.0111139][0.311629,0.157673,0][-1.10494,-0.547682,0.44245][0.750806,-0.626114,-0.210409][0.304261,0.137351,0][-0.939356,-0.551138,0.810573][0.668982,-0.608849,-0.42634][0.337398,0.121758,0][-1.16999,-0.558228,0.0355688][0.774541,-0.632301,0.0167869][0.2675,0.142779,0][-1.10494,-0.547682,0.44245][0.750806,-0.626114,-0.210409][0.304261,0.137351,0][-1.28385,-0.706193,0.502165][0.157038,-0.98753,0.0111139][0.311629,0.157673,0][-1.28385,-0.706193,0.502165][0.157038,-0.98753,0.0111139][0.311629,0.157673,0][-1.35744,-0.731259,0.0301428][0.26367,-0.961381,0.078893][0.26755,0.164181,0][-1.16999,-0.558228,0.0355688][0.774541,-0.632301,0.0167869][0.2675,0.142779,0][-1.35744,-0.731259,0.0301428][0.26367,-0.961381,0.078893][0.26755,0.164181,0][-1.28385,-0.772562,-0.442914][0.349294,-0.916075,0.19698][0.223442,0.157865,0][-1.10494,-0.556064,-0.373541][0.752785,-0.609924,0.247602][0.230714,0.137511,0][-1.10494,-0.556064,-0.373541][0.752785,-0.609924,0.247602][0.230714,0.137511,0][-1.16999,-0.558228,0.0355688][0.774541,-0.632301,0.0167869][0.2675,0.142779,0][-1.35744,-0.731259,0.0301428][0.26367,-0.961381,0.078893][0.26755,0.164181,0][-0.939356,-0.56501,-0.741552][0.661676,-0.595578,0.455491][0.197504,0.122064,0][-1.10494,-0.556064,-0.373541][0.752785,-0.609924,0.247602][0.230714,0.137511,0][-1.28385,-0.772562,-0.442914][0.349294,-0.916075,0.19698][0.223442,0.157865,0][-1.28385,-0.772562,-0.442914][0.349294,-0.916075,0.19698][0.223442,0.157865,0][-1.09154,-0.828245,-0.869067][0.30651,-0.895328,0.323172][0.18362,0.139342,0][-0.939356,-0.56501,-0.741552][0.661676,-0.595578,0.455491][0.197504,0.122064,0][-0.681454,-0.567622,-1.03365][0.48197,-0.581667,0.655262][0.17112,0.097948,0][-0.939356,-0.56501,-0.741552][0.661676,-0.595578,0.455491][0.197504,0.122064,0][-1.09154,-0.828245,-0.869067][0.30651,-0.895328,0.323172][0.18362,0.139342,0][-1.09154,-0.828245,-0.869067][0.30651,-0.895328,0.323172][0.18362,0.139342,0][-0.792025,-0.883304,-1.20593][0.224067,-0.865032,0.448903][0.151984,0.110426,0][-0.681454,-0.567622,-1.03365][0.48197,-0.581667,0.655262][0.17112,0.097948,0][-0.356478,-0.585343,-1.20655][0.229265,-0.562397,0.794448][0.155546,0.067485,0][-0.681454,-0.567622,-1.03365][0.48197,-0.581667,0.655262][0.17112,0.097948,0][-0.792025,-0.883304,-1.20593][0.224067,-0.865032,0.448903][0.151984,0.110426,0][-0.792025,-0.883304,-1.20593][0.224067,-0.865032,0.448903][0.151984,0.110426,0][-0.414608,-0.912371,-1.39681][0.114565,-0.855428,0.505091][0.134121,0.073877,0][-0.356478,-0.585343,-1.20655][0.229265,-0.562397,0.794448][0.155546,0.067485,0][-0.57699,-0.88946,-1.95562][-0.164932,0.764239,-0.623487][0.11987,0.326643,0][-0.496225,-0.787949,-1.67069][-0.0760469,0.936919,-0.341173][0.117371,0.371416,0][-2.20608e-007,-0.784828,-1.75729][4.31684e-007,0.936404,-0.350924][0.045286,0.372967,0][-2.20608e-007,-0.784828,-1.75729][4.31684e-007,0.936404,-0.350924][0.045286,0.372967,0][-2.48244e-007,-0.897365,-2.05499][3.48292e-007,0.759449,-0.650567][0.045197,0.326999,0][-0.57699,-0.88946,-1.95562][-0.164932,0.764239,-0.623487][0.11987,0.326643,0][-1.10089,-0.825965,-1.67919][-0.27199,0.825624,-0.494334][0.210547,0.326013,0][-0.947269,-0.758088,-1.44855][-0.112046,0.963235,-0.244181][0.208953,0.370468,0][-0.496225,-0.787949,-1.67069][-0.0760469,0.936919,-0.341173][0.117371,0.371416,0][-0.496225,-0.787949,-1.67069][-0.0760469,0.936919,-0.341173][0.117371,0.371416,0][-0.57699,-0.88946,-1.95562][-0.164932,0.764239,-0.623487][0.11987,0.326643,0][-1.10089,-0.825965,-1.67919][-0.27199,0.825624,-0.494334][0.210547,0.326013,0][-1.50547,-0.758415,-1.21366][-0.34696,0.890355,-0.294765][0.291929,0.325103,0][-1.32204,-0.73877,-1.03811][-0.0969236,0.985762,-0.137399][0.291925,0.367597,0][-0.947269,-0.758088,-1.44855][-0.112046,0.963235,-0.244181][0.208953,0.370468,0][-0.947269,-0.758088,-1.44855][-0.112046,0.963235,-0.244181][0.208953,0.370468,0][-1.10089,-0.825965,-1.67919][-0.27199,0.825624,-0.494334][0.210547,0.326013,0][-1.50547,-0.758415,-1.21366][-0.34696,0.890355,-0.294765][0.291929,0.325103,0][-1.71937,-0.696386,-0.622723][-0.329403,0.918117,-0.220353][0.387869,0.325023,0][-1.49459,-0.681148,-0.531945][-0.0471658,0.989448,-0.136996][0.38786,0.369055,0][-1.32204,-0.73877,-1.03811][-0.0969236,0.985762,-0.137399][0.291925,0.367597,0][-1.32204,-0.73877,-1.03811][-0.0969236,0.985762,-0.137399][0.291925,0.367597,0][-1.50547,-0.758415,-1.21366][-0.34696,0.890355,-0.294765][0.291929,0.325103,0][-1.71937,-0.696386,-0.622723][-0.329403,0.918117,-0.220353][0.387869,0.325023,0][-1.75687,-0.553422,0.0279698][-0.0379672,0.978725,-0.201633][0.505051,0.325525,0][-1.56176,-0.632845,0.0275138][0.258314,0.961747,-0.0911952][0.504639,0.371214,0][-1.49459,-0.681148,-0.531945][-0.0471658,0.989448,-0.136996][0.38786,0.369055,0][-1.49459,-0.681148,-0.531945][-0.0471658,0.989448,-0.136996][0.38786,0.369055,0][-1.71937,-0.696386,-0.622723][-0.329403,0.918117,-0.220353][0.387869,0.325023,0][-1.75687,-0.553422,0.0279698][-0.0379672,0.978725,-0.201633][0.505051,0.325525,0][-1.75687,-0.553422,0.0279698][-0.0379672,0.978725,-0.201633][0.505051,0.325525,0][-1.65825,-0.374009,0.66569][0.113149,0.947247,-0.299866][0.623033,0.326223,0][-1.49792,-0.533544,0.564781][0.494782,0.819548,-0.289018][0.623028,0.370987,0][-1.49792,-0.533544,0.564781][0.494782,0.819548,-0.289018][0.623028,0.370987,0][-1.56176,-0.632845,0.0275138][0.258314,0.961747,-0.0911952][0.504639,0.371214,0][-1.75687,-0.553422,0.0279698][-0.0379672,0.978725,-0.201633][0.505051,0.325525,0][-1.26598,-0.451561,1.05627][0.560605,0.695833,-0.44893][0.720577,0.37184,0][-1.49792,-0.533544,0.564781][0.494782,0.819548,-0.289018][0.623028,0.370987,0][-1.65825,-0.374009,0.66569][0.113149,0.947247,-0.299866][0.623033,0.326223,0][-1.65825,-0.374009,0.66569][0.113149,0.947247,-0.299866][0.623033,0.326223,0][-1.41955,-0.217509,1.16868][0.166754,0.936193,-0.309413][0.720573,0.32611,0][-1.26598,-0.451561,1.05627][0.560605,0.695833,-0.44893][0.720577,0.37184,0][-0.94727,-0.433411,1.4591][0.426736,0.625385,-0.653292][0.809374,0.372535,0][-1.26598,-0.451561,1.05627][0.560605,0.695833,-0.44893][0.720577,0.37184,0][-1.41955,-0.217509,1.16868][0.166754,0.936193,-0.309413][0.720573,0.32611,0][-1.41955,-0.217509,1.16868][0.166754,0.936193,-0.309413][0.720573,0.32611,0][-1.10089,-0.155303,1.54287][0.161391,0.894252,-0.417451][0.809375,0.327138,0][-0.94727,-0.433411,1.4591][0.426736,0.625385,-0.653292][0.809374,0.372535,0][-0.57699,-0.068659,1.78768][0.0837001,0.814042,-0.574743][0.913954,0.328011,0][-0.496225,-0.38796,1.67504][0.194909,0.532098,-0.823943][0.913484,0.373909,0][-0.94727,-0.433411,1.4591][0.426736,0.625385,-0.653292][0.809374,0.372535,0][-0.94727,-0.433411,1.4591][0.426736,0.625385,-0.653292][0.809374,0.372535,0][-1.10089,-0.155303,1.54287][0.161391,0.894252,-0.417451][0.809375,0.327138,0][-0.57699,-0.068659,1.78768][0.0837001,0.814042,-0.574743][0.913954,0.328011,0][-3.06327e-007,-0.323828,1.73769][2.34301e-007,0.48672,-0.873558][0.971591,0.376293,0][-0.496225,-0.38796,1.67504][0.194909,0.532098,-0.823943][0.913484,0.373909,0][-0.57699,-0.068659,1.78768][0.0837001,0.814042,-0.574743][0.913954,0.328011,0][-0.57699,-0.068659,1.78768][0.0837001,0.814042,-0.574743][0.913954,0.328011,0][-1.81671e-007,-0.0392693,1.86389][4.12382e-007,0.841837,-0.539732][0.971447,0.329715,0][-3.06327e-007,-0.323828,1.73769][2.34301e-007,0.48672,-0.873558][0.971591,0.376293,0][-1.34213,-0.316284,0.0298988][-0.714137,0.69969,-0.0210279][0.505488,0.536958,0][-1.36029,-0.323289,0.0239868][-0.823182,0.567497,-0.0178301][0.506408,0.523675,0][-1.27922,-0.313165,0.493701][-0.682731,0.696262,0.221581][0.622866,0.52293,0][-1.27922,-0.313165,0.493701][-0.682731,0.696262,0.221581][0.622866,0.52293,0][-1.23055,-0.315919,0.479132][-0.59229,0.780936,0.198323][0.622663,0.53743,0][-1.34213,-0.316284,0.0298988][-0.714137,0.69969,-0.0210279][0.505488,0.536958,0][-1.23055,-0.317534,-0.429376][-0.579082,0.785732,-0.21746][0.383051,0.537765,0][-1.34213,-0.316284,0.0298988][-0.714137,0.69969,-0.0210279][0.505488,0.536958,0][-1.23943,0.0759216,0.0344069][-0.96705,0.249373,-0.0512549][0.496453,0.670244,0][-1.23943,0.0759216,0.0344069][-0.96705,0.249373,-0.0512549][0.496453,0.670244,0][-1.13003,0.129553,-0.361996][-0.883789,0.305597,-0.354297][0.395888,0.696201,0][-1.23055,-0.317534,-0.429376][-0.579082,0.785732,-0.21746][0.383051,0.537765,0][-1.34213,-0.316284,0.0298988][-0.714137,0.69969,-0.0210279][0.505488,0.536958,0][-1.23055,-0.315919,0.479132][-0.59229,0.780936,0.198323][0.622663,0.53743,0][-1.20089,-0.0211015,0.471694][-0.940283,0.180334,0.288698][0.604634,0.64236,0][-1.20089,-0.0211015,0.471694][-0.940283,0.180334,0.288698][0.604634,0.64236,0][-1.23943,0.0759216,0.0344069][-0.96705,0.249373,-0.0512549][0.496453,0.670244,0][-1.34213,-0.316284,0.0298988][-0.714137,0.69969,-0.0210279][0.505488,0.536958,0][-1.32411,-0.629165,0.518181][0.212051,0.968775,-0.128492][0.622969,0.418523,0][-1.42913,-0.647021,0.0301018][0.0603542,0.997916,-0.0228221][0.506976,0.417038,0][-1.56176,-0.632845,0.0275138][0.258314,0.961747,-0.0911952][0.504639,0.371214,0][-1.56176,-0.632845,0.0275138][0.258314,0.961747,-0.0911952][0.504639,0.371214,0][-1.49792,-0.533544,0.564781][0.494782,0.819548,-0.289018][0.623028,0.370987,0][-1.32411,-0.629165,0.518181][0.212051,0.968775,-0.128492][0.622969,0.418523,0][-0.41833,-0.676217,-1.41866][-0.0896019,0.936254,-0.339706][0.113491,0.418482,0][-1.95161e-007,-0.67784,-1.46482][4.0879e-007,0.940736,-0.339138][0.045376,0.417384,0][-2.20608e-007,-0.784828,-1.75729][4.31684e-007,0.936404,-0.350924][0.045286,0.372967,0][-2.20608e-007,-0.784828,-1.75729][4.31684e-007,0.936404,-0.350924][0.045286,0.372967,0][-0.496225,-0.787949,-1.67069][-0.0760469,0.936919,-0.341173][0.117371,0.371416,0][-0.41833,-0.676217,-1.41866][-0.0896019,0.936254,-0.339706][0.113491,0.418482,0][-0.947269,-0.758088,-1.44855][-0.112046,0.963235,-0.244181][0.208953,0.370468,0][-0.799104,-0.670184,-1.22261][-0.159536,0.959552,-0.231965][0.20817,0.417868,0][-0.41833,-0.676217,-1.41866][-0.0896019,0.936254,-0.339706][0.113491,0.418482,0][-0.41833,-0.676217,-1.41866][-0.0896019,0.936254,-0.339706][0.113491,0.418482,0][-0.496225,-0.787949,-1.67069][-0.0760469,0.936919,-0.341173][0.117371,0.371416,0][-0.947269,-0.758088,-1.44855][-0.112046,0.963235,-0.244181][0.208953,0.370468,0][-1.32204,-0.73877,-1.03811][-0.0969236,0.985762,-0.137399][0.291925,0.367597,0][-1.10114,-0.664548,-0.88099][-0.173194,0.972846,-0.153542][0.29192,0.41778,0][-0.799104,-0.670184,-1.22261][-0.159536,0.959552,-0.231965][0.20817,0.417868,0][-0.799104,-0.670184,-1.22261][-0.159536,0.959552,-0.231965][0.20817,0.417868,0][-0.947269,-0.758088,-1.44855][-0.112046,0.963235,-0.244181][0.208953,0.370468,0][-1.32204,-0.73877,-1.03811][-0.0969236,0.985762,-0.137399][0.291925,0.367597,0][-0.805824,-0.622291,1.2883][0.171672,0.951054,-0.256953][0.809373,0.415134,0][-1.11035,-0.623881,0.944046][0.220612,0.957878,-0.18385][0.720583,0.416319,0][-1.26598,-0.451561,1.05627][0.560605,0.695833,-0.44893][0.720577,0.37184,0][-1.26598,-0.451561,1.05627][0.560605,0.695833,-0.44893][0.720577,0.37184,0][-0.94727,-0.433411,1.4591][0.426736,0.625385,-0.653292][0.809374,0.372535,0][-0.805824,-0.622291,1.2883][0.171672,0.951054,-0.256953][0.809373,0.415134,0][-0.496225,-0.38796,1.67504][0.194909,0.532098,-0.823943][0.913484,0.373909,0][-0.421863,-0.620654,1.46244][0.0888586,0.94078,-0.327164][0.913051,0.416465,0][-0.805824,-0.622291,1.2883][0.171672,0.951054,-0.256953][0.809373,0.415134,0][-0.805824,-0.622291,1.2883][0.171672,0.951054,-0.256953][0.809373,0.415134,0][-0.94727,-0.433411,1.4591][0.426736,0.625385,-0.653292][0.809374,0.372535,0][-0.496225,-0.38796,1.67504][0.194909,0.532098,-0.823943][0.913484,0.373909,0][-4.27596e-007,-0.61901,1.51481][4.01754e-007,0.916047,-0.401071][0.971705,0.41767,0][-0.421863,-0.620654,1.46244][0.0888586,0.94078,-0.327164][0.913051,0.416465,0][-0.496225,-0.38796,1.67504][0.194909,0.532098,-0.823943][0.913484,0.373909,0][-0.496225,-0.38796,1.67504][0.194909,0.532098,-0.823943][0.913484,0.373909,0][-3.06327e-007,-0.323828,1.73769][2.34301e-007,0.48672,-0.873558][0.971591,0.376293,0][-4.27596e-007,-0.61901,1.51481][4.01754e-007,0.916047,-0.401071][0.971705,0.41767,0][-1.32411,-0.629165,0.518181][0.212051,0.968775,-0.128492][0.622969,0.418523,0][-1.11035,-0.623881,0.944046][0.220612,0.957878,-0.18385][0.720583,0.416319,0][-1.06824,-0.613286,0.909145][-0.623443,0.661486,0.41684][0.72059,0.430116,0][-1.06824,-0.613286,0.909145][-0.623443,0.661486,0.41684][0.72059,0.430116,0][-1.28028,-0.628832,0.501061][-0.64343,0.739138,0.199179][0.622967,0.428731,0][-1.32411,-0.629165,0.518181][0.212051,0.968775,-0.128492][0.622969,0.418523,0][-1.32411,-0.629165,0.518181][0.212051,0.968775,-0.128492][0.622969,0.418523,0][-1.28028,-0.628832,0.501061][-0.64343,0.739138,0.199179][0.622967,0.428731,0][-1.37949,-0.647021,0.0301018][-0.6294,0.776923,-0.0157229][0.506828,0.429766,0][-1.37949,-0.647021,0.0301018][-0.6294,0.776923,-0.0157229][0.506828,0.429766,0][-1.42913,-0.647021,0.0301018][0.0603542,0.997916,-0.0228221][0.506976,0.417038,0][-1.32411,-0.629165,0.518181][0.212051,0.968775,-0.128492][0.622969,0.418523,0][-1.06824,-0.655783,-0.853873][-0.582983,0.692815,-0.424428][0.291918,0.429017,0][-1.10114,-0.664548,-0.88099][-0.173194,0.972846,-0.153542][0.29192,0.41778,0][-1.32513,-0.651314,-0.462713][-0.0694956,0.995845,-0.0588403][0.387885,0.420196,0][-1.32513,-0.651314,-0.462713][-0.0694956,0.995845,-0.0588403][0.387885,0.420196,0][-1.28028,-0.65066,-0.445207][-0.634237,0.736103,-0.236424][0.387882,0.429184,0][-1.06824,-0.655783,-0.853873][-0.582983,0.692815,-0.424428][0.291918,0.429017,0][-1.56176,-0.632845,0.0275138][0.258314,0.961747,-0.0911952][0.504639,0.371214,0][-1.42913,-0.647021,0.0301018][0.0603542,0.997916,-0.0228221][0.506976,0.417038,0][-1.32513,-0.651314,-0.462713][-0.0694956,0.995845,-0.0588403][0.387885,0.420196,0][-1.32513,-0.651314,-0.462713][-0.0694956,0.995845,-0.0588403][0.387885,0.420196,0][-1.49459,-0.681148,-0.531945][-0.0471658,0.989448,-0.136996][0.38786,0.369055,0][-1.56176,-0.632845,0.0275138][0.258314,0.961747,-0.0911952][0.504639,0.371214,0][-0.491039,-0.491135,1.69358][-0.189182,-0.599963,0.777338][0.433118,0.083603,0][-3.82071e-007,-0.479491,1.75505][-2.79219e-007,-0.589156,0.80802][0.439249,0.032757,0][-2.14646e-007,-0.0970813,1.92574][0,-0.0338154,0.999428][0.471493,0.033729,0][-2.14646e-007,-0.0970813,1.92574][0,-0.0338154,0.999428][0.471493,0.033729,0][-0.589458,-0.123164,1.84729][-0.286632,-0.0525617,0.956598][0.461618,0.089223,0][-0.491039,-0.491135,1.69358][-0.189182,-0.599963,0.777338][0.433118,0.083603,0][-0.937414,-0.529112,1.48242][-0.399732,-0.65545,0.640781][0.412594,0.129512,0][-0.491039,-0.491135,1.69358][-0.189182,-0.599963,0.777338][0.433118,0.083603,0][-0.589458,-0.123164,1.84729][-0.286632,-0.0525617,0.956598][0.461618,0.089223,0][-0.589458,-0.123164,1.84729][-0.286632,-0.0525617,0.956598][0.461618,0.089223,0][-1.12463,-0.219167,1.58506][-0.582975,-0.18773,0.790504][0.444827,0.148688,0][-0.937414,-0.529112,1.48242][-0.399732,-0.65545,0.640781][0.412594,0.129512,0][-1.29977,-0.5783,1.06085][-0.510308,-0.751778,0.417632][0.372873,0.169251,0][-0.937414,-0.529112,1.48242][-0.399732,-0.65545,0.640781][0.412594,0.129512,0][-1.12463,-0.219167,1.58506][-0.582975,-0.18773,0.790504][0.444827,0.148688,0][-1.12463,-0.219167,1.58506][-0.582975,-0.18773,0.790504][0.444827,0.148688,0][-1.48045,-0.291835,1.17237][-0.808413,-0.197368,0.554539][0.394684,0.202347,0][-1.29977,-0.5783,1.06085][-0.510308,-0.751778,0.417632][0.372873,0.169251,0][-1.29977,-0.5783,1.06085][-0.510308,-0.751778,0.417632][0.372873,0.169251,0][-1.48045,-0.291835,1.17237][-0.808413,-0.197368,0.554539][0.394684,0.202347,0][-1.73962,-0.43989,0.655097][-0.950031,-0.118762,0.288679][0.334299,0.225713,0][-1.73962,-0.43989,0.655097][-0.950031,-0.118762,0.288679][0.334299,0.225713,0][-1.58629,-0.597601,0.596417][-0.460297,-0.843063,0.278159][0.322969,0.189989,0][-1.29977,-0.5783,1.06085][-0.510308,-0.751778,0.417632][0.372873,0.169251,0][-1.58629,-0.597601,0.596417][-0.460297,-0.843063,0.278159][0.322969,0.189989,0][-1.73962,-0.43989,0.655097][-0.950031,-0.118762,0.288679][0.334299,0.225713,0][-1.83769,-0.621477,0.0155277][-0.951859,-0.304609,0.0343143][0.267036,0.239652,0][-1.83769,-0.621477,0.0155277][-0.951859,-0.304609,0.0343143][0.267036,0.239652,0][-1.681,-0.675449,0.0287787][-0.271523,-0.952977,0.13457][0.267611,0.197218,0][-1.58629,-0.597601,0.596417][-0.460297,-0.843063,0.278159][0.322969,0.189989,0][-1.56521,-0.775535,-0.544065][-0.0785425,-0.987956,0.133321][0.212221,0.190231,0][-1.681,-0.675449,0.0287787][-0.271523,-0.952977,0.13457][0.267611,0.197218,0][-1.83769,-0.621477,0.0155277][-0.951859,-0.304609,0.0343143][0.267036,0.239652,0][-1.83769,-0.621477,0.0155277][-0.951859,-0.304609,0.0343143][0.267036,0.239652,0][-1.76771,-0.774267,-0.637966][-0.781354,-0.616466,-0.0972437][0.197772,0.226018,0][-1.56521,-0.775535,-0.544065][-0.0785425,-0.987956,0.133321][0.212221,0.190231,0][-1.32109,-0.841776,-1.065][-0.0648835,-0.99173,0.110729][0.162219,0.169711,0][-1.56521,-0.775535,-0.544065][-0.0785425,-0.987956,0.133321][0.212221,0.190231,0][-1.76771,-0.774267,-0.637966][-0.781354,-0.616466,-0.0972437][0.197772,0.226018,0][-1.76771,-0.774267,-0.637966][-0.781354,-0.616466,-0.0972437][0.197772,0.226018,0][-1.53296,-0.838166,-1.22754][-0.650296,-0.704048,-0.285362][0.140942,0.197038,0][-1.32109,-0.841776,-1.065][-0.0648835,-0.99173,0.110729][0.162219,0.169711,0][-0.937414,-0.922699,-1.43071][-0.053451,-0.99132,0.120115][0.122346,0.130125,0][-1.32109,-0.841776,-1.065][-0.0648835,-0.99173,0.110729][0.162219,0.169711,0][-1.53296,-0.838166,-1.22754][-0.650296,-0.704048,-0.285362][0.140942,0.197038,0][-1.53296,-0.838166,-1.22754][-0.650296,-0.704048,-0.285362][0.140942,0.197038,0][-1.13496,-0.918381,-1.68613][-0.485081,-0.745553,-0.456998][0.091249,0.148424,0][-0.937414,-0.922699,-1.43071][-0.053451,-0.99132,0.120115][0.122346,0.130125,0][-0.937414,-0.922699,-1.43071][-0.053451,-0.99132,0.120115][0.122346,0.130125,0][-1.13496,-0.918381,-1.68613][-0.485081,-0.745553,-0.456998][0.091249,0.148424,0][-0.589458,-0.980765,-1.95898][-0.211252,-0.857515,-0.469084][0.063505,0.107014,0][-0.589458,-0.980765,-1.95898][-0.211252,-0.857515,-0.469084][0.063505,0.107014,0][-0.49104,-0.956381,-1.66316][-0.00111413,-0.992913,0.118837][0.099134,0.084243,0][-0.937414,-0.922699,-1.43071][-0.053451,-0.99132,0.120115][0.122346,0.130125,0][-3.06389e-007,-0.959829,-1.73059][-4.36873e-007,-0.992807,0.119724][0.092226,0.033411,0][-0.49104,-0.956381,-1.66316][-0.00111413,-0.992913,0.118837][0.099134,0.084243,0][-0.589458,-0.980765,-1.95898][-0.211252,-0.857515,-0.469084][0.063505,0.107014,0][-0.589458,-0.980765,-1.95898][-0.211252,-0.857515,-0.469084][0.063505,0.107014,0][-2.91647e-007,-0.989764,-2.06249][-4.19245e-007,-0.862658,-0.505788][0.049401,0.031072,0][-3.06389e-007,-0.959829,-1.73059][-4.36873e-007,-0.992807,0.119724][0.092226,0.033411,0][2.82214e-007,0.549114,-0.23307][4.89427e-007,0.999649,-0.0264903][0.623115,0.22695,0][-0.163617,0.560188,-0.236956][0.197931,0.979828,-0.0275787][0.622112,0.186383,0][-0.175568,0.57627,0.00280208][0.204738,0.977904,-0.0422516][0.684046,0.183449,0][-0.175568,0.57627,0.00280208][0.204738,0.977904,-0.0422516][0.684046,0.183449,0][2.65827e-007,0.560426,0.0160691][3.76922e-007,0.999,-0.0447062][0.687473,0.226972,0][2.82214e-007,0.549114,-0.23307][4.89427e-007,0.999649,-0.0264903][0.623115,0.22695,0][3.0095e-007,0.452059,-0.976766][2.51497e-007,0.463926,-0.885874][0.046177,0.811459,0][2.44075e-007,0.320048,-1.04623][2.42099e-007,0.427924,-0.903815][0.046177,0.76428,0][-0.126965,0.324207,-1.00708][-0.212482,0.444987,-0.869964][0.08118,0.765767,0][-0.126965,0.324207,-1.00708][-0.212482,0.444987,-0.869964][0.08118,0.765767,0][-0.180833,0.436038,-0.937216][-0.252656,0.466912,-0.847442][0.098815,0.805734,0][3.0095e-007,0.452059,-0.976766][2.51497e-007,0.463926,-0.885874][0.046177,0.811459,0][0,-0.000837807,-1.18476][1.73264e-007,0.363554,-0.931573][0.046177,0.649602,0][-0.356212,0.00637035,-1.12741][-0.285207,0.441385,-0.850786][0.131317,0.652178,0][-0.21375,0.159201,-1.08041][-0.21414,0.463137,-0.860028][0.100551,0.706797,0][-0.21375,0.159201,-1.08041][-0.21414,0.463137,-0.860028][0.100551,0.706797,0][1.61628e-007,0.132282,-1.12729][2.14034e-007,0.415122,-0.909766][0.046177,0.697176,0][0,-0.000837807,-1.18476][1.73264e-007,0.363554,-0.931573][0.046177,0.649602,0][-0.572981,0.281684,-0.688148][-0.542834,0.415614,-0.729792][0.224814,0.75057,0][-0.555984,0.449002,-0.653911][-0.671623,-0.0904,-0.735357][0.224896,0.810367,0][-0.378747,0.397432,-0.806556][-0.656242,-0.0103413,-0.75448][0.166127,0.791937,0][-0.378747,0.397432,-0.806556][-0.656242,-0.0103413,-0.75448][0.166127,0.791937,0][-0.369956,0.248634,-0.847398][-0.590007,0.419662,-0.689764][0.158934,0.738758,0][-0.572981,0.281684,-0.688148][-0.542834,0.415614,-0.729792][0.224814,0.75057,0][-0.783955,0.321947,-0.498098][-0.560174,0.400223,-0.725277][0.30811,0.764959,0][-0.762701,0.499891,-0.471397][-0.671489,-0.0816201,-0.736506][0.307877,0.828554,0][-0.555984,0.449002,-0.653911][-0.671623,-0.0904,-0.735357][0.224896,0.810367,0][-0.555984,0.449002,-0.653911][-0.671623,-0.0904,-0.735357][0.224896,0.810367,0][-0.572981,0.281684,-0.688148][-0.542834,0.415614,-0.729792][0.224814,0.75057,0][-0.783955,0.321947,-0.498098][-0.560174,0.400223,-0.725277][0.30811,0.764959,0][-0.945696,0.381638,-0.354573][-0.524399,0.360339,-0.771467][0.376825,0.793634,0][-0.883103,0.516508,-0.361904][-0.661921,0.0844494,-0.744801][0.372753,0.834492,0][-0.762701,0.499891,-0.471397][-0.671489,-0.0816201,-0.736506][0.307877,0.828554,0][-0.762701,0.499891,-0.471397][-0.671489,-0.0816201,-0.736506][0.307877,0.828554,0][-0.783955,0.321947,-0.498098][-0.560174,0.400223,-0.725277][0.30811,0.764959,0][-0.945696,0.381638,-0.354573][-0.524399,0.360339,-0.771467][0.376825,0.793634,0][-0.181274,0.593669,0.459988][0.184676,0.982243,-0.0330512][0.802146,0.182067,0][-0.823886,0.782313,0.437464][0.350654,0.936501,0.00277412][0.796328,0.023014,0][-0.702001,0.742541,0.753559][0.318222,0.948011,-0.00314011][0.877981,0.053174,0][-0.702001,0.742541,0.753559][0.318222,0.948011,-0.00314011][0.877981,0.053174,0][-0.193497,0.608524,0.675266][0.171394,0.983085,-0.0645626][0.857757,0.179063,0][-0.181274,0.593669,0.459988][0.184676,0.982243,-0.0330512][0.802146,0.182067,0][-0.181274,0.593669,0.459988][0.184676,0.982243,-0.0330512][0.802146,0.182067,0][-0.193497,0.608524,0.675266][0.171394,0.983085,-0.0645626][0.857757,0.179063,0][2.19507e-007,0.583506,0.671799][4.78642e-007,0.996272,-0.0862719][0.856861,0.227016,0][2.19507e-007,0.583506,0.671799][4.78642e-007,0.996272,-0.0862719][0.856861,0.227016,0][2.35262e-007,0.576585,0.453827][4.95509e-007,0.999578,-0.0290418][0.800555,0.227003,0][-0.181274,0.593669,0.459988][0.184676,0.982243,-0.0330512][0.802146,0.182067,0][-0.175568,0.57627,0.00280208][0.204738,0.977904,-0.0422516][0.684046,0.183449,0][-0.788395,0.76363,-0.133][0.331803,0.942942,-0.0276859][0.648965,0.031783,0][-0.850521,0.801829,0.0833351][0.301884,0.953036,-0.0242424][0.704849,0.016444,0][-0.850521,0.801829,0.0833351][0.301884,0.953036,-0.0242424][0.704849,0.016444,0][-0.180334,0.587348,0.24833][0.196054,0.980141,-0.0297619][0.747471,0.182288,0][-0.175568,0.57627,0.00280208][0.204738,0.977904,-0.0422516][0.684046,0.183449,0][2.65827e-007,0.560426,0.0160691][3.76922e-007,0.999,-0.0447062][0.687473,0.226972,0][-0.175568,0.57627,0.00280208][0.204738,0.977904,-0.0422516][0.684046,0.183449,0][-0.180334,0.587348,0.24833][0.196054,0.980141,-0.0297619][0.747471,0.182288,0][-0.180334,0.587348,0.24833][0.196054,0.980141,-0.0297619][0.747471,0.182288,0][2.49967e-007,0.571379,0.257224][4.90324e-007,0.999334,-0.0364884][0.749768,0.226993,0][2.65827e-007,0.560426,0.0160691][3.76922e-007,0.999,-0.0447062][0.687473,0.226972,0][-1.13003,0.129553,-0.361996][-0.883789,0.305597,-0.354297][0.395888,0.696201,0][-1.10197,0.163441,-0.383777][-0.743109,0.427419,-0.514881][0.388417,0.708312,0][-0.982815,0.0378036,-0.679487][-0.541557,0.629149,-0.557573][0.308704,0.663411,0][-0.982815,0.0378036,-0.679487][-0.541557,0.629149,-0.557573][0.308704,0.663411,0][-1.00542,-0.00567541,-0.697061][-0.71802,0.398177,-0.570879][0.308711,0.647873,0][-1.13003,0.129553,-0.361996][-0.883789,0.305597,-0.354297][0.395888,0.696201,0][-1.13003,0.129553,-0.361996][-0.883789,0.305597,-0.354297][0.395888,0.696201,0][-1.07067,0.460098,-0.200487][-0.86736,0.319379,-0.381686][0.427553,0.806989,0][-1.05003,0.445644,-0.243942][-0.737867,0.352027,-0.575872][0.414971,0.804529,0][-1.05003,0.445644,-0.243942][-0.737867,0.352027,-0.575872][0.414971,0.804529,0][-1.10197,0.163441,-0.383777][-0.743109,0.427419,-0.514881][0.388417,0.708312,0][-1.13003,0.129553,-0.361996][-0.883789,0.305597,-0.354297][0.395888,0.696201,0][-1.00542,-0.00567541,-0.697061][-0.71802,0.398177,-0.570879][0.308711,0.647873,0][-0.982815,0.0378036,-0.679487][-0.541557,0.629149,-0.557573][0.308704,0.663411,0][-0.711746,-0.0168905,-0.948529][-0.420754,0.680747,-0.599624][0.224421,0.643865,0][-0.711746,-0.0168905,-0.948529][-0.420754,0.680747,-0.599624][0.224421,0.643865,0][-0.726176,-0.0569605,-0.974513][-0.513422,0.453288,-0.728648][0.224395,0.629544,0][-1.00542,-0.00567541,-0.697061][-0.71802,0.398177,-0.570879][0.308711,0.647873,0][-0.726176,-0.0569605,-0.974513][-0.513422,0.453288,-0.728648][0.224395,0.629544,0][-0.711746,-0.0168905,-0.948529][-0.420754,0.680747,-0.599624][0.224421,0.643865,0][-0.374543,0.0436824,-1.09127][-0.4047,0.597078,-0.692615][0.138098,0.665512,0][-0.374543,0.0436824,-1.09127][-0.4047,0.597078,-0.692615][0.138098,0.665512,0][-0.356212,0.00637035,-1.12741][-0.285207,0.441385,-0.850786][0.131317,0.652178,0][-0.726176,-0.0569605,-0.974513][-0.513422,0.453288,-0.728648][0.224395,0.629544,0][-0.21375,0.159201,-1.08041][-0.21414,0.463137,-0.860028][0.100551,0.706797,0][-0.356212,0.00637035,-1.12741][-0.285207,0.441385,-0.850786][0.131317,0.652178,0][-0.374543,0.0436824,-1.09127][-0.4047,0.597078,-0.692615][0.138098,0.665512,0][-0.374543,0.0436824,-1.09127][-0.4047,0.597078,-0.692615][0.138098,0.665512,0][-0.242697,0.173053,-1.06097][-0.39846,0.540581,-0.740946][0.108695,0.711747,0][-0.21375,0.159201,-1.08041][-0.21414,0.463137,-0.860028][0.100551,0.706797,0][-0.180833,0.436038,-0.937216][-0.252656,0.466912,-0.847442][0.098815,0.805734,0][-0.126965,0.324207,-1.00708][-0.212482,0.444987,-0.869964][0.08118,0.765767,0][-0.165042,0.316492,-1.00231][-0.313994,0.454592,-0.833519][0.091511,0.76301,0][-0.165042,0.316492,-1.00231][-0.313994,0.454592,-0.833519][0.091511,0.76301,0][-0.210948,0.419694,-0.937207][-0.368153,0.39759,-0.840468][0.107202,0.799893,0][-0.180833,0.436038,-0.937216][-0.252656,0.466912,-0.847442][0.098815,0.805734,0][-0.323859,0.5186,-0.835979][-0.385234,0.421208,-0.821084][0.147259,0.83524,0][-0.340709,0.48659,-0.844386][-0.499851,0.269226,-0.823205][0.151121,0.8238,0][-0.576397,0.559414,-0.675105][-0.595817,0.174341,-0.783969][0.224931,0.849826,0][-0.576397,0.559414,-0.675105][-0.595817,0.174341,-0.783969][0.224931,0.849826,0][-0.569796,0.588453,-0.663266][-0.509353,0.429863,-0.745505][0.224954,0.860204,0][-0.323859,0.5186,-0.835979][-0.385234,0.421208,-0.821084][0.147259,0.83524,0][-0.569796,0.588453,-0.663266][-0.509353,0.429863,-0.745505][0.224954,0.860204,0][-0.576397,0.559414,-0.675105][-0.595817,0.174341,-0.783969][0.224931,0.849826,0][-0.798896,0.600146,-0.465418][-0.694475,0.187625,-0.694623][0.307251,0.864383,0][-0.798896,0.600146,-0.465418][-0.694475,0.187625,-0.694623][0.307251,0.864383,0][-0.790876,0.629613,-0.454907][-0.632713,0.40647,-0.659133][0.307145,0.874914,0][-0.569796,0.588453,-0.663266][-0.509353,0.429863,-0.745505][0.224954,0.860204,0][-1.07067,0.460098,-0.200487][-0.86736,0.319379,-0.381686][0.427553,0.806989,0][-0.961506,0.654289,-0.247349][-0.786463,0.341189,-0.514846][0.412345,0.883733,0][-0.95447,0.622986,-0.278692][-0.725753,0.331201,-0.602983][0.403198,0.872546,0][-0.95447,0.622986,-0.278692][-0.725753,0.331201,-0.602983][0.403198,0.872546,0][-1.05003,0.445644,-0.243942][-0.737867,0.352027,-0.575872][0.414971,0.804529,0][-1.07067,0.460098,-0.200487][-0.86736,0.319379,-0.381686][0.427553,0.806989,0][-0.790876,0.629613,-0.454907][-0.632713,0.40647,-0.659133][0.307145,0.874914,0][-0.798896,0.600146,-0.465418][-0.694475,0.187625,-0.694623][0.307251,0.864383,0][-0.95447,0.622986,-0.278692][-0.725753,0.331201,-0.602983][0.403198,0.872546,0][-0.95447,0.622986,-0.278692][-0.725753,0.331201,-0.602983][0.403198,0.872546,0][-0.961506,0.654289,-0.247349][-0.786463,0.341189,-0.514846][0.412345,0.883733,0][-0.790876,0.629613,-0.454907][-0.632713,0.40647,-0.659133][0.307145,0.874914,0][-0.21375,0.159201,-1.08041][-0.21414,0.463137,-0.860028][0.100551,0.706797,0][-0.242697,0.173053,-1.06097][-0.39846,0.540581,-0.740946][0.108695,0.711747,0][-0.165042,0.316492,-1.00231][-0.313994,0.454592,-0.833519][0.091511,0.76301,0][-0.165042,0.316492,-1.00231][-0.313994,0.454592,-0.833519][0.091511,0.76301,0][-0.126965,0.324207,-1.00708][-0.212482,0.444987,-0.869964][0.08118,0.765767,0][-0.21375,0.159201,-1.08041][-0.21414,0.463137,-0.860028][0.100551,0.706797,0][1.61628e-007,0.132282,-1.12729][2.14034e-007,0.415122,-0.909766][0.046177,0.697176,0][-0.21375,0.159201,-1.08041][-0.21414,0.463137,-0.860028][0.100551,0.706797,0][-0.126965,0.324207,-1.00708][-0.212482,0.444987,-0.869964][0.08118,0.765767,0][-0.126965,0.324207,-1.00708][-0.212482,0.444987,-0.869964][0.08118,0.765767,0][2.44075e-007,0.320048,-1.04623][2.42099e-007,0.427924,-0.903815][0.046177,0.76428,0][1.61628e-007,0.132282,-1.12729][2.14034e-007,0.415122,-0.909766][0.046177,0.697176,0][-0.323859,0.5186,-0.835979][-0.385234,0.421208,-0.821084][0.147259,0.83524,0][-0.180833,0.436038,-0.937216][-0.252656,0.466912,-0.847442][0.098815,0.805734,0][-0.210948,0.419694,-0.937207][-0.368153,0.39759,-0.840468][0.107202,0.799893,0][-0.210948,0.419694,-0.937207][-0.368153,0.39759,-0.840468][0.107202,0.799893,0][-0.340709,0.48659,-0.844386][-0.499851,0.269226,-0.823205][0.151121,0.8238,0][-0.323859,0.5186,-0.835979][-0.385234,0.421208,-0.821084][0.147259,0.83524,0][3.0095e-007,0.452059,-0.976766][2.51497e-007,0.463926,-0.885874][0.046177,0.811459,0][-0.180833,0.436038,-0.937216][-0.252656,0.466912,-0.847442][0.098815,0.805734,0][-0.152931,0.524397,-0.895809][-0.149265,0.716136,-0.681814][0.092806,0.826483,0][-0.152931,0.524397,-0.895809][-0.149265,0.716136,-0.681814][0.092806,0.826483,0][3.29103e-007,0.517404,-0.942382][4.03419e-007,0.718743,-0.695276][0.046177,0.823984,0][3.0095e-007,0.452059,-0.976766][2.51497e-007,0.463926,-0.885874][0.046177,0.811459,0][1.53952e-007,0.565717,1.32463][0,0.241187,0.970479][0.960103,0.852079,0][1.86438e-007,0.630872,1.30841][2.85123e-007,0.661243,0.750171][0.960103,0.864535,0][-0.358516,0.632224,1.26671][-0.174326,0.61678,0.767589][0.887774,0.865018,0][-0.358516,0.632224,1.26671][-0.174326,0.61678,0.767589][0.887774,0.865018,0][-0.362761,0.567049,1.28196][-0.254903,0.235442,0.937865][0.887841,0.852555,0][1.53952e-007,0.565717,1.32463][0,0.241187,0.970479][0.960103,0.852079,0][-0.674653,0.607752,1.1357][-0.622413,0.234288,0.7468][0.813748,0.867101,0][-0.362761,0.567049,1.28196][-0.254903,0.235442,0.937865][0.887841,0.852555,0][-0.358516,0.632224,1.26671][-0.174326,0.61678,0.767589][0.887774,0.865018,0][-0.358516,0.632224,1.26671][-0.174326,0.61678,0.767589][0.887774,0.865018,0][-0.66307,0.681122,1.12268][-0.463178,0.608977,0.643905][0.814415,0.882494,0][-0.674653,0.607752,1.1357][-0.622413,0.234288,0.7468][0.813748,0.867101,0][-0.880986,0.666895,0.79795][-0.850926,0.253572,0.460028][0.720763,0.888238,0][-0.674653,0.607752,1.1357][-0.622413,0.234288,0.7468][0.813748,0.867101,0][-0.66307,0.681122,1.12268][-0.463178,0.608977,0.643905][0.814415,0.882494,0][-0.66307,0.681122,1.12268][-0.463178,0.608977,0.643905][0.814415,0.882494,0][-0.859946,0.758929,0.785787][-0.615014,0.671967,0.412574][0.720904,0.908829,0][-0.880986,0.666895,0.79795][-0.850926,0.253572,0.460028][0.720763,0.888238,0][-1.02634,0.701921,0.439184][-0.932514,0.25734,0.253367][0.607855,0.900756,0][-0.880986,0.666895,0.79795][-0.850926,0.253572,0.460028][0.720763,0.888238,0][-0.859946,0.758929,0.785787][-0.615014,0.671967,0.412574][0.720904,0.908829,0][-0.859946,0.758929,0.785787][-0.615014,0.671967,0.412574][0.720904,0.908829,0][-0.999599,0.804656,0.435201][-0.700724,0.681394,0.211394][0.610419,0.925504,0][-1.02634,0.701921,0.439184][-0.932514,0.25734,0.253367][0.607855,0.900756,0][-1.04236,0.80489,0.043464][-0.723668,0.676751,-0.135325][0.50229,0.926726,0][-1.07226,0.706526,0.04087][-0.944586,0.301965,-0.12874][0.497106,0.902401,0][-1.02634,0.701921,0.439184][-0.932514,0.25734,0.253367][0.607855,0.900756,0][-1.02634,0.701921,0.439184][-0.932514,0.25734,0.253367][0.607855,0.900756,0][-0.999599,0.804656,0.435201][-0.700724,0.681394,0.211394][0.610419,0.925504,0][-1.04236,0.80489,0.043464][-0.723668,0.676751,-0.135325][0.50229,0.926726,0][-1.07226,0.706526,0.04087][-0.944586,0.301965,-0.12874][0.497106,0.902401,0][-1.04236,0.80489,0.043464][-0.723668,0.676751,-0.135325][0.50229,0.926726,0][-0.942867,0.765969,-0.216007][-0.604144,0.648301,-0.463375][0.419162,0.912816,0][-0.942867,0.765969,-0.216007][-0.604144,0.648301,-0.463375][0.419162,0.912816,0][-0.961506,0.654289,-0.247349][-0.786463,0.341189,-0.514846][0.412345,0.883733,0][-1.07226,0.706526,0.04087][-0.944586,0.301965,-0.12874][0.497106,0.902401,0][-0.152931,0.524397,-0.895809][-0.149265,0.716136,-0.681814][0.092806,0.826483,0][-0.180833,0.436038,-0.937216][-0.252656,0.466912,-0.847442][0.098815,0.805734,0][-0.323859,0.5186,-0.835979][-0.385234,0.421208,-0.821084][0.147259,0.83524,0][-0.323859,0.5186,-0.835979][-0.385234,0.421208,-0.821084][0.147259,0.83524,0][-0.303384,0.579897,-0.816149][-0.169651,0.74009,-0.650757][0.14334,0.846318,0][-0.152931,0.524397,-0.895809][-0.149265,0.716136,-0.681814][0.092806,0.826483,0][-0.163617,0.560188,-0.236956][0.197931,0.979828,-0.0275787][0.622112,0.186383,0][-0.258774,0.593068,-0.640187][0.289875,0.956922,0.016496][0.517949,0.162841,0][-0.445699,0.656427,-0.514359][0.301002,0.953121,-0.0309438][0.550453,0.116591,0][-0.445699,0.656427,-0.514359][0.301002,0.953121,-0.0309438][0.550453,0.116591,0][-0.601713,0.710126,-0.367336][0.291577,0.956344,-0.019738][0.588432,0.077991,0][-0.163617,0.560188,-0.236956][0.197931,0.979828,-0.0275787][0.622112,0.186383,0][1.86438e-007,0.630872,1.30841][2.85123e-007,0.661243,0.750171][0.960103,0.864535,0][2.03953e-007,0.654293,1.23581][4.28964e-007,0.993915,0.110151][0.960103,0.869366,0][-0.333722,0.657891,1.20607][0.0361719,0.980434,0.193495][0.889346,0.870651,0][-0.333722,0.657891,1.20607][0.0361719,0.980434,0.193495][0.889346,0.870651,0][-0.358516,0.632224,1.26671][-0.174326,0.61678,0.767589][0.887774,0.865018,0][1.86438e-007,0.630872,1.30841][2.85123e-007,0.661243,0.750171][0.960103,0.864535,0][-0.358516,0.632224,1.26671][-0.174326,0.61678,0.767589][0.887774,0.865018,0][-0.333722,0.657891,1.20607][0.0361719,0.980434,0.193495][0.889346,0.870651,0][-0.61587,0.709552,1.06715][0.0166742,0.972633,0.231748][0.817011,0.889114,0][-0.61587,0.709552,1.06715][0.0166742,0.972633,0.231748][0.817011,0.889114,0][-0.66307,0.681122,1.12268][-0.463178,0.608977,0.643905][0.814415,0.882494,0][-0.358516,0.632224,1.26671][-0.174326,0.61678,0.767589][0.887774,0.865018,0][-0.859946,0.758929,0.785787][-0.615014,0.671967,0.412574][0.720904,0.908829,0][-0.66307,0.681122,1.12268][-0.463178,0.608977,0.643905][0.814415,0.882494,0][-0.61587,0.709552,1.06715][0.0166742,0.972633,0.231748][0.817011,0.889114,0][-0.61587,0.709552,1.06715][0.0166742,0.972633,0.231748][0.817011,0.889114,0][-0.792197,0.77945,0.769662][0.0716489,0.986339,0.148329][0.722039,0.913866,0][-0.859946,0.758929,0.785787][-0.615014,0.671967,0.412574][0.720904,0.908829,0][-0.859946,0.758929,0.785787][-0.615014,0.671967,0.412574][0.720904,0.908829,0][-0.792197,0.77945,0.769662][0.0716489,0.986339,0.148329][0.722039,0.913866,0][-0.923251,0.825984,0.434919][0.0372468,0.995943,0.0819218][0.610793,0.930941,0][-0.923251,0.825984,0.434919][0.0372468,0.995943,0.0819218][0.610793,0.930941,0][-0.999599,0.804656,0.435201][-0.700724,0.681394,0.211394][0.610419,0.925504,0][-0.859946,0.758929,0.785787][-0.615014,0.671967,0.412574][0.720904,0.908829,0][-0.999599,0.804656,0.435201][-0.700724,0.681394,0.211394][0.610419,0.925504,0][-0.923251,0.825984,0.434919][0.0372468,0.995943,0.0819218][0.610793,0.930941,0][-0.958798,0.83246,0.059772][-0.0456157,0.996747,-0.0664452][0.503377,0.93304,0][-0.958798,0.83246,0.059772][-0.0456157,0.996747,-0.0664452][0.503377,0.93304,0][-1.04236,0.80489,0.043464][-0.723668,0.676751,-0.135325][0.50229,0.926726,0][-0.999599,0.804656,0.435201][-0.700724,0.681394,0.211394][0.610419,0.925504,0][-1.04236,0.80489,0.043464][-0.723668,0.676751,-0.135325][0.50229,0.926726,0][-0.958798,0.83246,0.059772][-0.0456157,0.996747,-0.0664452][0.503377,0.93304,0][-0.877173,0.797713,-0.17447][0.0275675,0.98151,-0.189414][0.419011,0.920621,0][-0.877173,0.797713,-0.17447][0.0275675,0.98151,-0.189414][0.419011,0.920621,0][-0.942867,0.765969,-0.216007][-0.604144,0.648301,-0.463375][0.419162,0.912816,0][-1.04236,0.80489,0.043464][-0.723668,0.676751,-0.135325][0.50229,0.926726,0][-0.767809,0.713093,-0.426345][-0.428359,0.702632,-0.568169][0.306858,0.89392,0][-0.942867,0.765969,-0.216007][-0.604144,0.648301,-0.463375][0.419162,0.912816,0][-0.877173,0.797713,-0.17447][0.0275675,0.98151,-0.189414][0.419011,0.920621,0][-0.877173,0.797713,-0.17447][0.0275675,0.98151,-0.189414][0.419011,0.920621,0][-0.696287,0.736347,-0.394979][0.0784258,0.973963,-0.212709][0.307196,0.89869,0][-0.767809,0.713093,-0.426345][-0.428359,0.702632,-0.568169][0.306858,0.89392,0][-0.554898,0.65007,-0.636804][-0.293245,0.742887,-0.60177][0.225007,0.871396,0][-0.767809,0.713093,-0.426345][-0.428359,0.702632,-0.568169][0.306858,0.89392,0][-0.696287,0.736347,-0.394979][0.0784258,0.973963,-0.212709][0.307196,0.89869,0][-0.696287,0.736347,-0.394979][0.0784258,0.973963,-0.212709][0.307196,0.89869,0][-0.507955,0.670568,-0.581313][0.140713,0.967291,-0.211062][0.224977,0.875182,0][-0.554898,0.65007,-0.636804][-0.293245,0.742887,-0.60177][0.225007,0.871396,0][-0.554898,0.65007,-0.636804][-0.293245,0.742887,-0.60177][0.225007,0.871396,0][-0.507955,0.670568,-0.581313][0.140713,0.967291,-0.211062][0.224977,0.875182,0][-0.279999,0.602958,-0.741726][0.176882,0.971474,-0.157958][0.144067,0.85102,0][-0.279999,0.602958,-0.741726][0.176882,0.971474,-0.157958][0.144067,0.85102,0][-0.303384,0.579897,-0.816149][-0.169651,0.74009,-0.650757][0.14334,0.846318,0][-0.554898,0.65007,-0.636804][-0.293245,0.742887,-0.60177][0.225007,0.871396,0][-0.303384,0.579897,-0.816149][-0.169651,0.74009,-0.650757][0.14334,0.846318,0][-0.279999,0.602958,-0.741726][0.176882,0.971474,-0.157958][0.144067,0.85102,0][-0.139753,0.564494,-0.80389][0.112016,0.974367,-0.195095][0.093283,0.837273,0][-0.139753,0.564494,-0.80389][0.112016,0.974367,-0.195095][0.093283,0.837273,0][-0.152931,0.524397,-0.895809][-0.149265,0.716136,-0.681814][0.092806,0.826483,0][-0.303384,0.579897,-0.816149][-0.169651,0.74009,-0.650757][0.14334,0.846318,0][3.36332e-007,0.548768,-0.853997][4.85551e-007,0.975208,-0.221289][0.046177,0.831653,0][3.29103e-007,0.517404,-0.942382][4.03419e-007,0.718743,-0.695276][0.046177,0.823984,0][-0.152931,0.524397,-0.895809][-0.149265,0.716136,-0.681814][0.092806,0.826483,0][-0.152931,0.524397,-0.895809][-0.149265,0.716136,-0.681814][0.092806,0.826483,0][-0.139753,0.564494,-0.80389][0.112016,0.974367,-0.195095][0.093283,0.837273,0][3.36332e-007,0.548768,-0.853997][4.85551e-007,0.975208,-0.221289][0.046177,0.831653,0][2.03953e-007,0.654293,1.23581][4.28964e-007,0.993915,0.110151][0.960103,0.869366,0][2.06991e-007,0.642073,1.13441][4.04088e-007,0.994194,-0.107604][0.960103,0.879367,0][-0.298124,0.649169,1.12267][0.110628,0.991924,-0.0620267][0.892193,0.881903,0][-0.298124,0.649169,1.12267][0.110628,0.991924,-0.0620267][0.892193,0.881903,0][-0.333722,0.657891,1.20607][0.0361719,0.980434,0.193495][0.889346,0.870651,0][2.03953e-007,0.654293,1.23581][4.28964e-007,0.993915,0.110151][0.960103,0.869366,0][-0.333722,0.657891,1.20607][0.0361719,0.980434,0.193495][0.889346,0.870651,0][-0.298124,0.649169,1.12267][0.110628,0.991924,-0.0620267][0.892193,0.881903,0][-0.550727,0.699008,0.990038][0.212882,0.977014,0.0112142][0.819743,0.899659,0][-0.550727,0.699008,0.990038][0.212882,0.977014,0.0112142][0.819743,0.899659,0][-0.61587,0.709552,1.06715][0.0166742,0.972633,0.231748][0.817011,0.889114,0][-0.333722,0.657891,1.20607][0.0361719,0.980434,0.193495][0.889346,0.870651,0][-0.61587,0.709552,1.06715][0.0166742,0.972633,0.231748][0.817011,0.889114,0][-0.550727,0.699008,0.990038][0.212882,0.977014,0.0112142][0.819743,0.899659,0][-0.702001,0.742541,0.753559][0.318222,0.948011,-0.00314011][0.72392,0.920762,0][-0.702001,0.742541,0.753559][0.318222,0.948011,-0.00314011][0.72392,0.920762,0][-0.792197,0.77945,0.769662][0.0716489,0.986339,0.148329][0.722039,0.913866,0][-0.61587,0.709552,1.06715][0.0166742,0.972633,0.231748][0.817011,0.889114,0][-0.823886,0.782313,0.437464][0.350654,0.936501,0.00277412][0.611409,0.934643,0][-0.923251,0.825984,0.434919][0.0372468,0.995943,0.0819218][0.610793,0.930941,0][-0.792197,0.77945,0.769662][0.0716489,0.986339,0.148329][0.722039,0.913866,0][-0.792197,0.77945,0.769662][0.0716489,0.986339,0.148329][0.722039,0.913866,0][-0.702001,0.742541,0.753559][0.318222,0.948011,-0.00314011][0.72392,0.920762,0][-0.823886,0.782313,0.437464][0.350654,0.936501,0.00277412][0.611409,0.934643,0][-0.850521,0.801829,0.0833351][0.301884,0.953036,-0.0242424][0.505306,0.940479,0][-0.958798,0.83246,0.059772][-0.0456157,0.996747,-0.0664452][0.503377,0.93304,0][-0.923251,0.825984,0.434919][0.0372468,0.995943,0.0819218][0.610793,0.930941,0][-0.923251,0.825984,0.434919][0.0372468,0.995943,0.0819218][0.610793,0.930941,0][-0.823886,0.782313,0.437464][0.350654,0.936501,0.00277412][0.611409,0.934643,0][-0.850521,0.801829,0.0833351][0.301884,0.953036,-0.0242424][0.505306,0.940479,0][-0.850521,0.801829,0.0833351][0.301884,0.953036,-0.0242424][0.505306,0.940479,0][-0.788395,0.76363,-0.133][0.331803,0.942942,-0.0276859][0.418878,0.926828,0][-0.877173,0.797713,-0.17447][0.0275675,0.98151,-0.189414][0.419011,0.920621,0][-0.877173,0.797713,-0.17447][0.0275675,0.98151,-0.189414][0.419011,0.920621,0][-0.958798,0.83246,0.059772][-0.0456157,0.996747,-0.0664452][0.503377,0.93304,0][-0.850521,0.801829,0.0833351][0.301884,0.953036,-0.0242424][0.505306,0.940479,0][-0.788395,0.76363,-0.133][0.331803,0.942942,-0.0276859][0.418878,0.926828,0][-0.601713,0.710126,-0.367336][0.291577,0.956344,-0.019738][0.30811,0.907706,0][-0.696287,0.736347,-0.394979][0.0784258,0.973963,-0.212709][0.307196,0.89869,0][-0.696287,0.736347,-0.394979][0.0784258,0.973963,-0.212709][0.307196,0.89869,0][-0.877173,0.797713,-0.17447][0.0275675,0.98151,-0.189414][0.419011,0.920621,0][-0.788395,0.76363,-0.133][0.331803,0.942942,-0.0276859][0.418878,0.926828,0][-0.507955,0.670568,-0.581313][0.140713,0.967291,-0.211062][0.224977,0.875182,0][-0.696287,0.736347,-0.394979][0.0784258,0.973963,-0.212709][0.307196,0.89869,0][-0.601713,0.710126,-0.367336][0.291577,0.956344,-0.019738][0.30811,0.907706,0][-0.601713,0.710126,-0.367336][0.291577,0.956344,-0.019738][0.30811,0.907706,0][-0.445699,0.656427,-0.514359][0.301002,0.953121,-0.0309438][0.224871,0.883916,0][-0.507955,0.670568,-0.581313][0.140713,0.967291,-0.211062][0.224977,0.875182,0][-0.258774,0.593068,-0.640187][0.289875,0.956922,0.016496][0.149203,0.861853,0][-0.279999,0.602958,-0.741726][0.176882,0.971474,-0.157958][0.144067,0.85102,0][-0.507955,0.670568,-0.581313][0.140713,0.967291,-0.211062][0.224977,0.875182,0][-0.507955,0.670568,-0.581313][0.140713,0.967291,-0.211062][0.224977,0.875182,0][-0.445699,0.656427,-0.514359][0.301002,0.953121,-0.0309438][0.224871,0.883916,0][-0.258774,0.593068,-0.640187][0.289875,0.956922,0.016496][0.149203,0.861853,0][-0.140062,0.560958,-0.691163][0.179982,0.983479,0.0193906][0.100174,0.850378,0][-0.139753,0.564494,-0.80389][0.112016,0.974367,-0.195095][0.093283,0.837273,0][-0.279999,0.602958,-0.741726][0.176882,0.971474,-0.157958][0.144067,0.85102,0][-0.279999,0.602958,-0.741726][0.176882,0.971474,-0.157958][0.144067,0.85102,0][-0.258774,0.593068,-0.640187][0.289875,0.956922,0.016496][0.149203,0.861853,0][-0.140062,0.560958,-0.691163][0.179982,0.983479,0.0193906][0.100174,0.850378,0][3.2653e-007,0.548831,-0.741531][4.33738e-007,0.999974,0.00724544][0.046177,0.846044,0][3.36332e-007,0.548768,-0.853997][4.85551e-007,0.975208,-0.221289][0.046177,0.831653,0][-0.139753,0.564494,-0.80389][0.112016,0.974367,-0.195095][0.093283,0.837273,0][-0.139753,0.564494,-0.80389][0.112016,0.974367,-0.195095][0.093283,0.837273,0][-0.140062,0.560958,-0.691163][0.179982,0.983479,0.0193906][0.100174,0.850378,0][3.2653e-007,0.548831,-0.741531][4.33738e-007,0.999974,0.00724544][0.046177,0.846044,0][-0.271839,-0.047444,1.06155][0.129765,-0.698352,-0.703893][0.34407,0.058924,0][0,-0.0472562,1.08258][-3.53014e-007,-0.722357,-0.69152][0.345855,0.033788,0][-3.5751e-007,-0.510905,1.30277][-2.50869e-007,-0.523437,-0.852064][0.376466,0.03329,0][-3.5751e-007,-0.510905,1.30277][-2.50869e-007,-0.523437,-0.852064][0.376466,0.03329,0][-0.356478,-0.54748,1.21991][0.22799,-0.573469,-0.786864][0.374428,0.067043,0][-0.271839,-0.047444,1.06155][0.129765,-0.698352,-0.703893][0.34407,0.058924,0][-1.36029,-0.323289,0.0239868][-0.823182,0.567497,-0.0178301][0.506408,0.523675,0][-1.34213,-0.316284,0.0298988][-0.714137,0.69969,-0.0210279][0.505488,0.536958,0][-1.23055,-0.317534,-0.429376][-0.579082,0.785732,-0.21746][0.383051,0.537765,0][-1.23055,-0.317534,-0.429376][-0.579082,0.785732,-0.21746][0.383051,0.537765,0][-1.27922,-0.321543,-0.443608][-0.716601,0.645772,-0.263556][0.387862,0.522643,0][-1.36029,-0.323289,0.0239868][-0.823182,0.567497,-0.0178301][0.506408,0.523675,0][-1.42913,-0.647021,0.0301018][0.0603542,0.997916,-0.0228221][0.506976,0.417038,0][-1.37949,-0.647021,0.0301018][-0.6294,0.776923,-0.0157229][0.506828,0.429766,0][-1.28028,-0.65066,-0.445207][-0.634237,0.736103,-0.236424][0.387882,0.429184,0][-1.28028,-0.65066,-0.445207][-0.634237,0.736103,-0.236424][0.387882,0.429184,0][-1.32513,-0.651314,-0.462713][-0.0694956,0.995845,-0.0588403][0.387885,0.420196,0][-1.42913,-0.647021,0.0301018][0.0603542,0.997916,-0.0228221][0.506976,0.417038,0][-1.04595,0.197189,-0.412979][-0.554855,0.557763,-0.617282][0.37598,0.720373,0][-1.00364,0.416474,-0.301745][-0.584451,0.349024,-0.732529][0.396,0.799564,0][-0.945696,0.381638,-0.354573][-0.524399,0.360339,-0.771467][0.376825,0.793634,0][-0.945696,0.381638,-0.354573][-0.524399,0.360339,-0.771467][0.376825,0.793634,0][-0.979383,0.218722,-0.439858][-0.459888,0.596683,-0.657627][0.362558,0.728068,0][-1.04595,0.197189,-0.412979][-0.554855,0.557763,-0.617282][0.37598,0.720373,0][-0.936078,0.0860106,-0.649481][-0.335215,0.774054,-0.537095][0.308795,0.68064,0][-1.04595,0.197189,-0.412979][-0.554855,0.557763,-0.617282][0.37598,0.720373,0][-0.979383,0.218722,-0.439858][-0.459888,0.596683,-0.657627][0.362558,0.728068,0][-0.979383,0.218722,-0.439858][-0.459888,0.596683,-0.657627][0.362558,0.728068,0][-0.879661,0.122159,-0.616606][-0.340189,0.738866,-0.581677][0.308959,0.693558,0][-0.936078,0.0860106,-0.649481][-0.335215,0.774054,-0.537095][0.308795,0.68064,0][-0.936078,0.0860106,-0.649481][-0.335215,0.774054,-0.537095][0.308795,0.68064,0][-0.879661,0.122159,-0.616606][-0.340189,0.738866,-0.581677][0.308959,0.693558,0][-0.648121,0.0697744,-0.82582][-0.359999,0.778945,-0.513464][0.224594,0.674837,0][-0.648121,0.0697744,-0.82582][-0.359999,0.778945,-0.513464][0.224594,0.674837,0][-0.682724,0.0307995,-0.893294][-0.327133,0.831504,-0.448983][0.224494,0.660908,0][-0.936078,0.0860106,-0.649481][-0.335215,0.774054,-0.537095][0.308795,0.68064,0][-0.682724,0.0307995,-0.893294][-0.327133,0.831504,-0.448983][0.224494,0.660908,0][-0.648121,0.0697744,-0.82582][-0.359999,0.778945,-0.513464][0.224594,0.674837,0][-0.417833,0.114991,-0.947852][-0.471548,0.725463,-0.501345][0.160685,0.690997,0][-0.417833,0.114991,-0.947852][-0.471548,0.725463,-0.501345][0.160685,0.690997,0][-0.397691,0.0846564,-1.02441][-0.462612,0.7203,-0.516873][0.149063,0.680156,0][-0.682724,0.0307995,-0.893294][-0.327133,0.831504,-0.448983][0.224494,0.660908,0][-0.397691,0.0846564,-1.02441][-0.462612,0.7203,-0.516873][0.149063,0.680156,0][-0.417833,0.114991,-0.947852][-0.471548,0.725463,-0.501345][0.160685,0.690997,0][-0.318551,0.183914,-0.97185][-0.610962,0.609921,-0.5047][0.133586,0.715629,0][-0.318551,0.183914,-0.97185][-0.610962,0.609921,-0.5047][0.133586,0.715629,0][-0.28199,0.182559,-1.02063][-0.562787,0.597437,-0.571262][0.121047,0.715144,0][-0.397691,0.0846564,-1.02441][-0.462612,0.7203,-0.516873][0.149063,0.680156,0][-0.28199,0.182559,-1.02063][-0.562787,0.597437,-0.571262][0.121047,0.715144,0][-0.318551,0.183914,-0.97185][-0.610962,0.609921,-0.5047][0.133586,0.715629,0][-0.266523,0.27629,-0.94409][-0.667877,0.398039,-0.628892][0.121998,0.748642,0][-0.266523,0.27629,-0.94409][-0.667877,0.398039,-0.628892][0.121998,0.748642,0][-0.217351,0.298715,-0.979119][-0.554501,0.417632,-0.7198][0.106782,0.756657,0][-0.28199,0.182559,-1.02063][-0.562787,0.597437,-0.571262][0.121047,0.715144,0][-0.252682,0.391931,-0.920153][-0.572932,0.209646,-0.792337][0.120058,0.78997,0][-0.217351,0.298715,-0.979119][-0.554501,0.417632,-0.7198][0.106782,0.756657,0][-0.266523,0.27629,-0.94409][-0.667877,0.398039,-0.628892][0.121998,0.748642,0][-0.266523,0.27629,-0.94409][-0.667877,0.398039,-0.628892][0.121998,0.748642,0][-0.292201,0.361605,-0.890561][-0.668062,0.129487,-0.732752][0.133207,0.779132,0][-0.252682,0.391931,-0.920153][-0.572932,0.209646,-0.792337][0.120058,0.78997,0][-0.361346,0.44121,-0.833919][-0.638571,-0.0278087,-0.76906][0.158149,0.807582,0][-0.252682,0.391931,-0.920153][-0.572932,0.209646,-0.792337][0.120058,0.78997,0][-0.292201,0.361605,-0.890561][-0.668062,0.129487,-0.732752][0.133207,0.779132,0][-0.292201,0.361605,-0.890561][-0.668062,0.129487,-0.732752][0.133207,0.779132,0][-0.378747,0.397432,-0.806556][-0.656242,-0.0103413,-0.75448][0.166127,0.791937,0][-0.361346,0.44121,-0.833919][-0.638571,-0.0278087,-0.76906][0.158149,0.807582,0][-0.571574,0.507453,-0.67209][-0.657617,-0.227114,-0.718303][0.224909,0.831256,0][-0.361346,0.44121,-0.833919][-0.638571,-0.0278087,-0.76906][0.158149,0.807582,0][-0.378747,0.397432,-0.806556][-0.656242,-0.0103413,-0.75448][0.166127,0.791937,0][-0.378747,0.397432,-0.806556][-0.656242,-0.0103413,-0.75448][0.166127,0.791937,0][-0.555984,0.449002,-0.653911][-0.671623,-0.0904,-0.735357][0.224896,0.810367,0][-0.571574,0.507453,-0.67209][-0.657617,-0.227114,-0.718303][0.224909,0.831256,0][-0.571574,0.507453,-0.67209][-0.657617,-0.227114,-0.718303][0.224909,0.831256,0][-0.555984,0.449002,-0.653911][-0.671623,-0.0904,-0.735357][0.224896,0.810367,0][-0.762701,0.499891,-0.471397][-0.671489,-0.0816201,-0.736506][0.307877,0.828554,0][-0.762701,0.499891,-0.471397][-0.671489,-0.0816201,-0.736506][0.307877,0.828554,0][-0.788871,0.551726,-0.471804][-0.699149,-0.184723,-0.690701][0.307522,0.847079,0][-0.571574,0.507453,-0.67209][-0.657617,-0.227114,-0.718303][0.224909,0.831256,0][-0.788871,0.551726,-0.471804][-0.699149,-0.184723,-0.690701][0.307522,0.847079,0][-0.762701,0.499891,-0.471397][-0.671489,-0.0816201,-0.736506][0.307877,0.828554,0][-0.883103,0.516508,-0.361904][-0.661921,0.0844494,-0.744801][0.372753,0.834492,0][-0.883103,0.516508,-0.361904][-0.661921,0.0844494,-0.744801][0.372753,0.834492,0][-0.925573,0.571558,-0.321632][-0.69417,0.133903,-0.707247][0.388415,0.854166,0][-0.788871,0.551726,-0.471804][-0.699149,-0.184723,-0.690701][0.307522,0.847079,0][-1.00364,0.416474,-0.301745][-0.584451,0.349024,-0.732529][0.396,0.799564,0][-0.925573,0.571558,-0.321632][-0.69417,0.133903,-0.707247][0.388415,0.854166,0][-0.883103,0.516508,-0.361904][-0.661921,0.0844494,-0.744801][0.372753,0.834492,0][-0.883103,0.516508,-0.361904][-0.661921,0.0844494,-0.744801][0.372753,0.834492,0][-0.945696,0.381638,-0.354573][-0.524399,0.360339,-0.771467][0.376825,0.793634,0][-1.00364,0.416474,-0.301745][-0.584451,0.349024,-0.732529][0.396,0.799564,0][-0.982815,0.0378036,-0.679487][-0.541557,0.629149,-0.557573][0.308704,0.663411,0][-1.10197,0.163441,-0.383777][-0.743109,0.427419,-0.514881][0.388417,0.708312,0][-1.04595,0.197189,-0.412979][-0.554855,0.557763,-0.617282][0.37598,0.720373,0][-1.04595,0.197189,-0.412979][-0.554855,0.557763,-0.617282][0.37598,0.720373,0][-0.936078,0.0860106,-0.649481][-0.335215,0.774054,-0.537095][0.308795,0.68064,0][-0.982815,0.0378036,-0.679487][-0.541557,0.629149,-0.557573][0.308704,0.663411,0][-0.682724,0.0307995,-0.893294][-0.327133,0.831504,-0.448983][0.224494,0.660908,0][-0.711746,-0.0168905,-0.948529][-0.420754,0.680747,-0.599624][0.224421,0.643865,0][-0.982815,0.0378036,-0.679487][-0.541557,0.629149,-0.557573][0.308704,0.663411,0][-0.982815,0.0378036,-0.679487][-0.541557,0.629149,-0.557573][0.308704,0.663411,0][-0.936078,0.0860106,-0.649481][-0.335215,0.774054,-0.537095][0.308795,0.68064,0][-0.682724,0.0307995,-0.893294][-0.327133,0.831504,-0.448983][0.224494,0.660908,0][-0.397691,0.0846564,-1.02441][-0.462612,0.7203,-0.516873][0.149063,0.680156,0][-0.374543,0.0436824,-1.09127][-0.4047,0.597078,-0.692615][0.138098,0.665512,0][-0.711746,-0.0168905,-0.948529][-0.420754,0.680747,-0.599624][0.224421,0.643865,0][-0.711746,-0.0168905,-0.948529][-0.420754,0.680747,-0.599624][0.224421,0.643865,0][-0.682724,0.0307995,-0.893294][-0.327133,0.831504,-0.448983][0.224494,0.660908,0][-0.397691,0.0846564,-1.02441][-0.462612,0.7203,-0.516873][0.149063,0.680156,0][-0.374543,0.0436824,-1.09127][-0.4047,0.597078,-0.692615][0.138098,0.665512,0][-0.397691,0.0846564,-1.02441][-0.462612,0.7203,-0.516873][0.149063,0.680156,0][-0.28199,0.182559,-1.02063][-0.562787,0.597437,-0.571262][0.121047,0.715144,0][-0.28199,0.182559,-1.02063][-0.562787,0.597437,-0.571262][0.121047,0.715144,0][-0.242697,0.173053,-1.06097][-0.39846,0.540581,-0.740946][0.108695,0.711747,0][-0.374543,0.0436824,-1.09127][-0.4047,0.597078,-0.692615][0.138098,0.665512,0][-0.217351,0.298715,-0.979119][-0.554501,0.417632,-0.7198][0.106782,0.756657,0][-0.165042,0.316492,-1.00231][-0.313994,0.454592,-0.833519][0.091511,0.76301,0][-0.242697,0.173053,-1.06097][-0.39846,0.540581,-0.740946][0.108695,0.711747,0][-0.242697,0.173053,-1.06097][-0.39846,0.540581,-0.740946][0.108695,0.711747,0][-0.28199,0.182559,-1.02063][-0.562787,0.597437,-0.571262][0.121047,0.715144,0][-0.217351,0.298715,-0.979119][-0.554501,0.417632,-0.7198][0.106782,0.756657,0][-0.210948,0.419694,-0.937207][-0.368153,0.39759,-0.840468][0.107202,0.799893,0][-0.165042,0.316492,-1.00231][-0.313994,0.454592,-0.833519][0.091511,0.76301,0][-0.217351,0.298715,-0.979119][-0.554501,0.417632,-0.7198][0.106782,0.756657,0][-0.217351,0.298715,-0.979119][-0.554501,0.417632,-0.7198][0.106782,0.756657,0][-0.252682,0.391931,-0.920153][-0.572932,0.209646,-0.792337][0.120058,0.78997,0][-0.210948,0.419694,-0.937207][-0.368153,0.39759,-0.840468][0.107202,0.799893,0][-0.340709,0.48659,-0.844386][-0.499851,0.269226,-0.823205][0.151121,0.8238,0][-0.210948,0.419694,-0.937207][-0.368153,0.39759,-0.840468][0.107202,0.799893,0][-0.252682,0.391931,-0.920153][-0.572932,0.209646,-0.792337][0.120058,0.78997,0][-0.252682,0.391931,-0.920153][-0.572932,0.209646,-0.792337][0.120058,0.78997,0][-0.361346,0.44121,-0.833919][-0.638571,-0.0278087,-0.76906][0.158149,0.807582,0][-0.340709,0.48659,-0.844386][-0.499851,0.269226,-0.823205][0.151121,0.8238,0][-0.571574,0.507453,-0.67209][-0.657617,-0.227114,-0.718303][0.224909,0.831256,0][-0.576397,0.559414,-0.675105][-0.595817,0.174341,-0.783969][0.224931,0.849826,0][-0.340709,0.48659,-0.844386][-0.499851,0.269226,-0.823205][0.151121,0.8238,0][-0.340709,0.48659,-0.844386][-0.499851,0.269226,-0.823205][0.151121,0.8238,0][-0.361346,0.44121,-0.833919][-0.638571,-0.0278087,-0.76906][0.158149,0.807582,0][-0.571574,0.507453,-0.67209][-0.657617,-0.227114,-0.718303][0.224909,0.831256,0][-0.788871,0.551726,-0.471804][-0.699149,-0.184723,-0.690701][0.307522,0.847079,0][-0.798896,0.600146,-0.465418][-0.694475,0.187625,-0.694623][0.307251,0.864383,0][-0.576397,0.559414,-0.675105][-0.595817,0.174341,-0.783969][0.224931,0.849826,0][-0.576397,0.559414,-0.675105][-0.595817,0.174341,-0.783969][0.224931,0.849826,0][-0.571574,0.507453,-0.67209][-0.657617,-0.227114,-0.718303][0.224909,0.831256,0][-0.788871,0.551726,-0.471804][-0.699149,-0.184723,-0.690701][0.307522,0.847079,0][-0.925573,0.571558,-0.321632][-0.69417,0.133903,-0.707247][0.388415,0.854166,0][-0.95447,0.622986,-0.278692][-0.725753,0.331201,-0.602983][0.403198,0.872546,0][-0.798896,0.600146,-0.465418][-0.694475,0.187625,-0.694623][0.307251,0.864383,0][-0.798896,0.600146,-0.465418][-0.694475,0.187625,-0.694623][0.307251,0.864383,0][-0.788871,0.551726,-0.471804][-0.699149,-0.184723,-0.690701][0.307522,0.847079,0][-0.925573,0.571558,-0.321632][-0.69417,0.133903,-0.707247][0.388415,0.854166,0][-1.05003,0.445644,-0.243942][-0.737867,0.352027,-0.575872][0.414971,0.804529,0][-0.95447,0.622986,-0.278692][-0.725753,0.331201,-0.602983][0.403198,0.872546,0][-0.925573,0.571558,-0.321632][-0.69417,0.133903,-0.707247][0.388415,0.854166,0][-0.925573,0.571558,-0.321632][-0.69417,0.133903,-0.707247][0.388415,0.854166,0][-1.00364,0.416474,-0.301745][-0.584451,0.349024,-0.732529][0.396,0.799564,0][-1.05003,0.445644,-0.243942][-0.737867,0.352027,-0.575872][0.414971,0.804529,0][-1.10197,0.163441,-0.383777][-0.743109,0.427419,-0.514881][0.388417,0.708312,0][-1.05003,0.445644,-0.243942][-0.737867,0.352027,-0.575872][0.414971,0.804529,0][-1.00364,0.416474,-0.301745][-0.584451,0.349024,-0.732529][0.396,0.799564,0][-1.00364,0.416474,-0.301745][-0.584451,0.349024,-0.732529][0.396,0.799564,0][-1.04595,0.197189,-0.412979][-0.554855,0.557763,-0.617282][0.37598,0.720373,0][-1.10197,0.163441,-0.383777][-0.743109,0.427419,-0.514881][0.388417,0.708312,0][-0.57699,-0.88946,-1.95562][-0.164932,0.764239,-0.623487][0.11987,0.326643,0][-2.48244e-007,-0.897365,-2.05499][3.48292e-007,0.759449,-0.650567][0.045197,0.326999,0][-2.69108e-007,-0.946951,-2.0868][0,0.0206031,-0.999788][0.045183,0.304601,0][-2.69108e-007,-0.946951,-2.0868][0,0.0206031,-0.999788][0.045183,0.304601,0][-0.590603,-0.937709,-1.98365][-0.315554,0.0191239,-0.948715][0.121109,0.304432,0][-0.57699,-0.88946,-1.95562][-0.164932,0.764239,-0.623487][0.11987,0.326643,0][-1.10089,-0.825965,-1.67919][-0.27199,0.825624,-0.494334][0.210547,0.326013,0][-0.57699,-0.88946,-1.95562][-0.164932,0.764239,-0.623487][0.11987,0.326643,0][-0.590603,-0.937709,-1.98365][-0.315554,0.0191239,-0.948715][0.121109,0.304432,0][-0.590603,-0.937709,-1.98365][-0.315554,0.0191239,-0.948715][0.121109,0.304432,0][-1.13179,-0.871782,-1.70429][-0.577892,0.200707,-0.791048][0.211339,0.303629,0][-1.10089,-0.825965,-1.67919][-0.27199,0.825624,-0.494334][0.210547,0.326013,0][-1.53565,-0.795598,-1.23566][-0.798479,0.302247,-0.520652][0.291917,0.303158,0][-1.50547,-0.758415,-1.21366][-0.34696,0.890355,-0.294765][0.291929,0.325103,0][-1.10089,-0.825965,-1.67919][-0.27199,0.825624,-0.494334][0.210547,0.326013,0][-1.10089,-0.825965,-1.67919][-0.27199,0.825624,-0.494334][0.210547,0.326013,0][-1.13179,-0.871782,-1.70429][-0.577892,0.200707,-0.791048][0.211339,0.303629,0][-1.53565,-0.795598,-1.23566][-0.798479,0.302247,-0.520652][0.291917,0.303158,0][-1.50547,-0.758415,-1.21366][-0.34696,0.890355,-0.294765][0.291929,0.325103,0][-1.53565,-0.795598,-1.23566][-0.798479,0.302247,-0.520652][0.291917,0.303158,0][-1.7612,-0.732528,-0.638058][-0.837167,0.472358,-0.275734][0.387864,0.302577,0][-1.7612,-0.732528,-0.638058][-0.837167,0.472358,-0.275734][0.387864,0.302577,0][-1.71937,-0.696386,-0.622723][-0.329403,0.918117,-0.220353][0.387869,0.325023,0][-1.50547,-0.758415,-1.21366][-0.34696,0.890355,-0.294765][0.291929,0.325103,0][-1.71937,-0.696386,-0.622723][-0.329403,0.918117,-0.220353][0.387869,0.325023,0][-1.7612,-0.732528,-0.638058][-0.837167,0.472358,-0.275734][0.387864,0.302577,0][-1.81017,-0.577733,0.0219507][-0.656781,0.738474,-0.152631][0.504479,0.302972,0][-1.81017,-0.577733,0.0219507][-0.656781,0.738474,-0.152631][0.504479,0.302972,0][-1.75687,-0.553422,0.0279698][-0.0379672,0.978725,-0.201633][0.505051,0.325525,0][-1.71937,-0.696386,-0.622723][-0.329403,0.918117,-0.220353][0.387869,0.325023,0][-1.7096,-0.389241,0.668842][-0.661146,0.749893,0.0233808][0.623032,0.303639,0][-1.65825,-0.374009,0.66569][0.113149,0.947247,-0.299866][0.623033,0.326223,0][-1.75687,-0.553422,0.0279698][-0.0379672,0.978725,-0.201633][0.505051,0.325525,0][-1.75687,-0.553422,0.0279698][-0.0379672,0.978725,-0.201633][0.505051,0.325525,0][-1.81017,-0.577733,0.0219507][-0.656781,0.738474,-0.152631][0.504479,0.302972,0][-1.7096,-0.389241,0.668842][-0.661146,0.749893,0.0233808][0.623032,0.303639,0][-1.46207,-0.228026,1.18064][-0.672391,0.681934,0.287847][0.72058,0.303302,0][-1.41955,-0.217509,1.16868][0.166754,0.936193,-0.309413][0.720573,0.32611,0][-1.65825,-0.374009,0.66569][0.113149,0.947247,-0.299866][0.623033,0.326223,0][-1.65825,-0.374009,0.66569][0.113149,0.947247,-0.299866][0.623033,0.326223,0][-1.7096,-0.389241,0.668842][-0.661146,0.749893,0.0233808][0.623032,0.303639,0][-1.46207,-0.228026,1.18064][-0.672391,0.681934,0.287847][0.72058,0.303302,0][-1.1268,-0.157681,1.57025][-0.514191,0.697836,0.498631][0.809376,0.304733,0][-1.10089,-0.155303,1.54287][0.161391,0.894252,-0.417451][0.809375,0.327138,0][-1.41955,-0.217509,1.16868][0.166754,0.936193,-0.309413][0.720573,0.32611,0][-1.41955,-0.217509,1.16868][0.166754,0.936193,-0.309413][0.720573,0.32611,0][-1.46207,-0.228026,1.18064][-0.672391,0.681934,0.287847][0.72058,0.303302,0][-1.1268,-0.157681,1.57025][-0.514191,0.697836,0.498631][0.809376,0.304733,0][-0.590603,-0.062491,1.82629][-0.243978,0.823744,0.511781][0.914117,0.305567,0][-0.57699,-0.068659,1.78768][0.0837001,0.814042,-0.574743][0.913954,0.328011,0][-1.10089,-0.155303,1.54287][0.161391,0.894252,-0.417451][0.809375,0.327138,0][-1.10089,-0.155303,1.54287][0.161391,0.894252,-0.417451][0.809375,0.327138,0][-1.1268,-0.157681,1.57025][-0.514191,0.697836,0.498631][0.809376,0.304733,0][-0.590603,-0.062491,1.82629][-0.243978,0.823744,0.511781][0.914117,0.305567,0][-1.81671e-007,-0.0392693,1.86389][4.12382e-007,0.841837,-0.539732][0.971447,0.329715,0][-0.57699,-0.068659,1.78768][0.0837001,0.814042,-0.574743][0.913954,0.328011,0][-0.590603,-0.062491,1.82629][-0.243978,0.823744,0.511781][0.914117,0.305567,0][-0.590603,-0.062491,1.82629][-0.243978,0.823744,0.511781][0.914117,0.305567,0][-1.83816e-007,-0.0362533,1.90487][3.78379e-007,0.816902,0.576776][0.971127,0.307216,0][-1.81671e-007,-0.0392693,1.86389][4.12382e-007,0.841837,-0.539732][0.971447,0.329715,0][-1.72193e-007,-0.618743,-1.4052][1.47753e-007,0.266098,-0.963946][0.045398,0.439389,0][-1.9124e-007,-0.660816,-1.41681][3.14796e-007,0.696868,-0.7172][0.045394,0.428223,0][-0.405707,-0.660444,-1.37518][-0.191402,0.709749,-0.677954][0.113489,0.429364,0][-0.405707,-0.660444,-1.37518][-0.191402,0.709749,-0.677954][0.113489,0.429364,0][-0.405707,-0.618371,-1.36357][-0.274522,0.255874,-0.926912][0.113487,0.440968,0][-1.72193e-007,-0.618743,-1.4052][1.47753e-007,0.266098,-0.963946][0.045398,0.439389,0][-0.775094,-0.658751,-1.18589][-0.409877,0.726892,-0.551026][0.208158,0.428886,0][-0.775094,-0.616678,-1.17427][-0.598261,0.212024,-0.772742][0.208154,0.44055,0][-0.405707,-0.618371,-1.36357][-0.274522,0.255874,-0.926912][0.113487,0.440968,0][-0.405707,-0.618371,-1.36357][-0.274522,0.255874,-0.926912][0.113487,0.440968,0][-0.405707,-0.660444,-1.37518][-0.191402,0.709749,-0.677954][0.113489,0.429364,0][-0.775094,-0.658751,-1.18589][-0.409877,0.726892,-0.551026][0.208158,0.428886,0][-1.06824,-0.655783,-0.853873][-0.582983,0.692815,-0.424428][0.291918,0.429017,0][-1.06824,-0.613837,-0.847534][-0.815071,0.0894726,-0.57241][0.291917,0.440664,0][-0.775094,-0.616678,-1.17427][-0.598261,0.212024,-0.772742][0.208154,0.44055,0][-0.775094,-0.616678,-1.17427][-0.598261,0.212024,-0.772742][0.208154,0.44055,0][-0.775094,-0.658751,-1.18589][-0.409877,0.726892,-0.551026][0.208158,0.428886,0][-1.06824,-0.655783,-0.853873][-0.582983,0.692815,-0.424428][0.291918,0.429017,0][-1.28028,-0.65066,-0.445207][-0.634237,0.736103,-0.236424][0.387882,0.429184,0][-1.28014,-0.608954,-0.445004][-0.940032,0.00828316,-0.340985][0.387879,0.441027,0][-1.06824,-0.613837,-0.847534][-0.815071,0.0894726,-0.57241][0.291917,0.440664,0][-1.06824,-0.613837,-0.847534][-0.815071,0.0894726,-0.57241][0.291917,0.440664,0][-1.06824,-0.655783,-0.853873][-0.582983,0.692815,-0.424428][0.291918,0.429017,0][-1.28028,-0.65066,-0.445207][-0.634237,0.736103,-0.236424][0.387882,0.429184,0][-1.37949,-0.647021,0.0301018][-0.6294,0.776923,-0.0157229][0.506828,0.429766,0][-1.37705,-0.605998,0.0293268][-0.998398,0.0564848,0.00318453][0.506775,0.441666,0][-1.28014,-0.608954,-0.445004][-0.940032,0.00828316,-0.340985][0.387879,0.441027,0][-1.28014,-0.608954,-0.445004][-0.940032,0.00828316,-0.340985][0.387879,0.441027,0][-1.28028,-0.65066,-0.445207][-0.634237,0.736103,-0.236424][0.387882,0.429184,0][-1.37949,-0.647021,0.0301018][-0.6294,0.776923,-0.0157229][0.506828,0.429766,0][-1.28028,-0.628832,0.501061][-0.64343,0.739138,0.199179][0.622967,0.428731,0][-1.28015,-0.588831,0.500128][-0.943502,0.0129008,0.331116][0.622964,0.440668,0][-1.37705,-0.605998,0.0293268][-0.998398,0.0564848,0.00318453][0.506775,0.441666,0][-1.37705,-0.605998,0.0293268][-0.998398,0.0564848,0.00318453][0.506775,0.441666,0][-1.37949,-0.647021,0.0301018][-0.6294,0.776923,-0.0157229][0.506828,0.429766,0][-1.28028,-0.628832,0.501061][-0.64343,0.739138,0.199179][0.622967,0.428731,0][-1.06824,-0.613286,0.909145][-0.623443,0.661486,0.41684][0.72059,0.430116,0][-1.06824,-0.574786,0.908894][-0.82526,0.00411248,0.564738][0.720595,0.441624,0][-1.28015,-0.588831,0.500128][-0.943502,0.0129008,0.331116][0.622964,0.440668,0][-1.28015,-0.588831,0.500128][-0.943502,0.0129008,0.331116][0.622964,0.440668,0][-1.28028,-0.628832,0.501061][-0.64343,0.739138,0.199179][0.622967,0.428731,0][-1.06824,-0.613286,0.909145][-0.623443,0.661486,0.41684][0.72059,0.430116,0][-0.775094,-0.610318,1.24116][-0.440092,0.675905,0.591161][0.809373,0.428864,0][-0.775094,-0.571819,1.24091][-0.592605,0.00525099,0.805476][0.809373,0.440531,0][-1.06824,-0.574786,0.908894][-0.82526,0.00411248,0.564738][0.720595,0.441624,0][-1.06824,-0.574786,0.908894][-0.82526,0.00411248,0.564738][0.720595,0.441624,0][-1.06824,-0.613286,0.909145][-0.623443,0.661486,0.41684][0.72059,0.430116,0][-0.775094,-0.610318,1.24116][-0.440092,0.675905,0.591161][0.809373,0.428864,0][-0.405707,-0.608839,1.40659][-0.199084,0.664978,0.71984][0.912957,0.429875,0][-0.405707,-0.57034,1.40633][-0.268156,0.0062833,0.963355][0.912954,0.441414,0][-0.775094,-0.571819,1.24091][-0.592605,0.00525099,0.805476][0.809373,0.440531,0][-0.775094,-0.571819,1.24091][-0.592605,0.00525099,0.805476][0.809373,0.440531,0][-0.775094,-0.610318,1.24116][-0.440092,0.675905,0.591161][0.809373,0.428864,0][-0.405707,-0.608839,1.40659][-0.199084,0.664978,0.71984][0.912957,0.429875,0][-4.18871e-007,-0.611438,1.45631][2.78739e-007,0.688128,0.725589][0.9717,0.429686,0][-4.00306e-007,-0.572554,1.45604][0,0.00687457,0.999976][0.971679,0.441249,0][-0.405707,-0.57034,1.40633][-0.268156,0.0062833,0.963355][0.912954,0.441414,0][-0.405707,-0.57034,1.40633][-0.268156,0.0062833,0.963355][0.912954,0.441414,0][-0.405707,-0.608839,1.40659][-0.199084,0.664978,0.71984][0.912957,0.429875,0][-4.18871e-007,-0.611438,1.45631][2.78739e-007,0.688128,0.725589][0.9717,0.429686,0][-3.45345e-007,-0.457438,1.45524][0,0.00686313,0.999976][0.971615,0.47548,0][-2.82917e-007,-0.326683,1.45434][0,0.00690768,0.999976][0.971543,0.514362,0][-0.405707,-0.326907,1.40475][-0.268062,0.00628473,0.963381][0.912935,0.514375,0][-0.405707,-0.326907,1.40475][-0.268062,0.00628473,0.963381][0.912935,0.514375,0][-0.405707,-0.456366,1.40559][-0.268118,0.00629266,0.963366][0.912945,0.475574,0][-3.45345e-007,-0.457438,1.45524][0,0.00686313,0.999976][0.971615,0.47548,0][-0.405707,-0.456366,1.40559][-0.268118,0.00629266,0.963366][0.912945,0.475574,0][-0.405707,-0.326907,1.40475][-0.268062,0.00628473,0.963381][0.912935,0.514375,0][-0.775094,-0.328385,1.23932][-0.592605,0.00525822,0.805476][0.809372,0.514302,0][-0.775094,-0.328385,1.23932][-0.592605,0.00525822,0.805476][0.809372,0.514302,0][-0.775094,-0.457845,1.24016][-0.592605,0.00525077,0.805476][0.809373,0.47507,0][-0.405707,-0.456366,1.40559][-0.268118,0.00629266,0.963366][0.912945,0.475574,0][-0.775094,-0.457845,1.24016][-0.592605,0.00525077,0.805476][0.809373,0.47507,0][-0.775094,-0.328385,1.23932][-0.592605,0.00525822,0.805476][0.809372,0.514302,0][-1.06824,-0.331353,0.907308][-0.826641,0.00375647,0.562718][0.720624,0.514393,0][-1.06824,-0.331353,0.907308][-0.826641,0.00375647,0.562718][0.720624,0.514393,0][-1.06824,-0.460812,0.908152][-0.826063,0.00415762,0.563563][0.720609,0.475694,0][-0.775094,-0.457845,1.24016][-0.592605,0.00525077,0.805476][0.809373,0.47507,0][-1.06824,-0.460812,0.908152][-0.826063,0.00415762,0.563563][0.720609,0.475694,0][-1.06824,-0.331353,0.907308][-0.826641,0.00375647,0.562718][0.720624,0.514393,0][-1.27929,-0.335901,0.494231][-0.948305,0.010539,0.317186][0.622879,0.516145,0][-1.27929,-0.335901,0.494231][-0.948305,0.010539,0.317186][0.622879,0.516145,0][-1.27975,-0.470411,0.497368][-0.94616,0.0127626,0.323449][0.622956,0.476006,0][-1.06824,-0.460812,0.908152][-0.826063,0.00415762,0.563563][0.720609,0.475694,0][-1.27975,-0.470411,0.497368][-0.94616,0.0127626,0.323449][0.622956,0.476006,0][-1.27929,-0.335901,0.494231][-0.948305,0.010539,0.317186][0.622879,0.516145,0][-1.36168,-0.346606,0.0244268][-0.998541,0.0539903,-0.000245061][0.506438,0.516911,0][-1.36168,-0.346606,0.0244268][-0.998541,0.0539903,-0.000245061][0.506438,0.516911,0][-1.36985,-0.484552,0.0270328][-0.998366,0.0571001,0.00215559][0.506617,0.476896,0][-1.27975,-0.470411,0.497368][-0.94616,0.0127626,0.323449][0.622956,0.476006,0][-1.27975,-0.485488,-0.444404][-0.939208,0.0125518,-0.34312][0.387872,0.476087,0][-1.36985,-0.484552,0.0270328][-0.998366,0.0571001,0.00215559][0.506617,0.476896,0][-1.36168,-0.346606,0.0244268][-0.998541,0.0539903,-0.000245061][0.506438,0.516911,0][-1.36168,-0.346606,0.0244268][-0.998541,0.0539903,-0.000245061][0.506438,0.516911,0][-1.27929,-0.345248,-0.443723][-0.939024,0.0053595,-0.343811][0.387864,0.515912,0][-1.27975,-0.485488,-0.444404][-0.939208,0.0125518,-0.34312][0.387872,0.476087,0][-1.27975,-0.485488,-0.444404][-0.939208,0.0125518,-0.34312][0.387872,0.476087,0][-1.27929,-0.345248,-0.443723][-0.939024,0.0053595,-0.343811][0.387864,0.515912,0][-1.06824,-0.348604,-0.807448][-0.791746,0.0885045,-0.604405][0.291908,0.514313,0][-1.06824,-0.348604,-0.807448][-0.791746,0.0885045,-0.604405][0.291908,0.514313,0][-1.06824,-0.489657,-0.828766][-0.803686,0.0905849,-0.588118][0.291913,0.475146,0][-1.27975,-0.485488,-0.444404][-0.939208,0.0125518,-0.34312][0.387872,0.476087,0][-1.06824,-0.489657,-0.828766][-0.803686,0.0905849,-0.588118][0.291913,0.475146,0][-1.06824,-0.348604,-0.807448][-0.791746,0.0885045,-0.604405][0.291908,0.514313,0][-0.775094,-0.350647,-1.10083][-0.580774,0.212119,-0.785943][0.208128,0.514304,0][-0.775094,-0.350647,-1.10083][-0.580774,0.212119,-0.785943][0.208128,0.514304,0][-0.775094,-0.492124,-1.13989][-0.591785,0.210748,-0.778059][0.208142,0.475081,0][-1.06824,-0.489657,-0.828766][-0.803686,0.0905849,-0.588118][0.291913,0.475146,0][-0.775094,-0.492124,-1.13989][-0.591785,0.210748,-0.778059][0.208142,0.475081,0][-0.775094,-0.350647,-1.10083][-0.580774,0.212119,-0.785943][0.208128,0.514304,0][-0.405707,-0.35234,-1.29013][-0.274522,0.255887,-0.926909][0.113475,0.514338,0][-0.405707,-0.35234,-1.29013][-0.274522,0.255887,-0.926909][0.113475,0.514338,0][-0.405707,-0.493817,-1.32919][-0.274522,0.255882,-0.92691][0.113481,0.47532,0][-0.775094,-0.492124,-1.13989][-0.591785,0.210748,-0.778059][0.208142,0.475081,0][0,-0.352712,-1.33176][1.28688e-007,0.266094,-0.963947][0.045422,0.514588,0][0,-0.494189,-1.37081][1.33454e-007,0.266105,-0.963944][0.045409,0.477042,0][-0.405707,-0.493817,-1.32919][-0.274522,0.255882,-0.92691][0.113481,0.47532,0][-0.405707,-0.493817,-1.32919][-0.274522,0.255882,-0.92691][0.113481,0.47532,0][-0.405707,-0.35234,-1.29013][-0.274522,0.255887,-0.926909][0.113475,0.514338,0][0,-0.352712,-1.33176][1.28688e-007,0.266094,-0.963947][0.045422,0.514588,0][-0.589458,-0.123164,1.84729][-0.286632,-0.0525617,0.956598][0.913961,0.285945,0][-2.14646e-007,-0.0970813,1.92574][0,-0.0338154,0.999428][0.967942,0.288353,0][-1.83816e-007,-0.0362533,1.90487][3.78379e-007,0.816902,0.576776][0.971127,0.307216,0][-1.83816e-007,-0.0362533,1.90487][3.78379e-007,0.816902,0.576776][0.971127,0.307216,0][-0.590603,-0.062491,1.82629][-0.243978,0.823744,0.511781][0.914117,0.305567,0][-0.589458,-0.123164,1.84729][-0.286632,-0.0525617,0.956598][0.913961,0.285945,0][-1.12463,-0.219167,1.58506][-0.582975,-0.18773,0.790504][0.809376,0.285819,0][-0.589458,-0.123164,1.84729][-0.286632,-0.0525617,0.956598][0.913961,0.285945,0][-0.590603,-0.062491,1.82629][-0.243978,0.823744,0.511781][0.914117,0.305567,0][-0.590603,-0.062491,1.82629][-0.243978,0.823744,0.511781][0.914117,0.305567,0][-1.1268,-0.157681,1.57025][-0.514191,0.697836,0.498631][0.809376,0.304733,0][-1.12463,-0.219167,1.58506][-0.582975,-0.18773,0.790504][0.809376,0.285819,0][-1.46207,-0.228026,1.18064][-0.672391,0.681934,0.287847][0.72058,0.303302,0][-1.48045,-0.291835,1.17237][-0.808413,-0.197368,0.554539][0.720493,0.28699,0][-1.12463,-0.219167,1.58506][-0.582975,-0.18773,0.790504][0.809376,0.285819,0][-1.12463,-0.219167,1.58506][-0.582975,-0.18773,0.790504][0.809376,0.285819,0][-1.1268,-0.157681,1.57025][-0.514191,0.697836,0.498631][0.809376,0.304733,0][-1.46207,-0.228026,1.18064][-0.672391,0.681934,0.287847][0.72058,0.303302,0][-1.7096,-0.389241,0.668842][-0.661146,0.749893,0.0233808][0.623032,0.303639,0][-1.73962,-0.43989,0.655097][-0.950031,-0.118762,0.288679][0.623041,0.286141,0][-1.48045,-0.291835,1.17237][-0.808413,-0.197368,0.554539][0.720493,0.28699,0][-1.48045,-0.291835,1.17237][-0.808413,-0.197368,0.554539][0.720493,0.28699,0][-1.46207,-0.228026,1.18064][-0.672391,0.681934,0.287847][0.72058,0.303302,0][-1.7096,-0.389241,0.668842][-0.661146,0.749893,0.0233808][0.623032,0.303639,0][-1.81017,-0.577733,0.0219507][-0.656781,0.738474,-0.152631][0.504479,0.302972,0][-1.83769,-0.621477,0.0155277][-0.951859,-0.304609,0.0343143][0.506342,0.285551,0][-1.73962,-0.43989,0.655097][-0.950031,-0.118762,0.288679][0.623041,0.286141,0][-1.73962,-0.43989,0.655097][-0.950031,-0.118762,0.288679][0.623041,0.286141,0][-1.7096,-0.389241,0.668842][-0.661146,0.749893,0.0233808][0.623032,0.303639,0][-1.81017,-0.577733,0.0219507][-0.656781,0.738474,-0.152631][0.504479,0.302972,0][-1.7612,-0.732528,-0.638058][-0.837167,0.472358,-0.275734][0.387864,0.302577,0][-1.76771,-0.774267,-0.637966][-0.781354,-0.616466,-0.0972437][0.387869,0.28711,0][-1.83769,-0.621477,0.0155277][-0.951859,-0.304609,0.0343143][0.506342,0.285551,0][-1.83769,-0.621477,0.0155277][-0.951859,-0.304609,0.0343143][0.506342,0.285551,0][-1.81017,-0.577733,0.0219507][-0.656781,0.738474,-0.152631][0.504479,0.302972,0][-1.7612,-0.732528,-0.638058][-0.837167,0.472358,-0.275734][0.387864,0.302577,0][-1.53296,-0.838166,-1.22754][-0.650296,-0.704048,-0.285362][0.291904,0.285608,0][-1.76771,-0.774267,-0.637966][-0.781354,-0.616466,-0.0972437][0.387869,0.28711,0][-1.7612,-0.732528,-0.638058][-0.837167,0.472358,-0.275734][0.387864,0.302577,0][-1.7612,-0.732528,-0.638058][-0.837167,0.472358,-0.275734][0.387864,0.302577,0][-1.53565,-0.795598,-1.23566][-0.798479,0.302247,-0.520652][0.291917,0.303158,0][-1.53296,-0.838166,-1.22754][-0.650296,-0.704048,-0.285362][0.291904,0.285608,0][-1.13496,-0.918381,-1.68613][-0.485081,-0.745553,-0.456998][0.21188,0.287379,0][-1.53296,-0.838166,-1.22754][-0.650296,-0.704048,-0.285362][0.291904,0.285608,0][-1.53565,-0.795598,-1.23566][-0.798479,0.302247,-0.520652][0.291917,0.303158,0][-1.53565,-0.795598,-1.23566][-0.798479,0.302247,-0.520652][0.291917,0.303158,0][-1.13179,-0.871782,-1.70429][-0.577892,0.200707,-0.791048][0.211339,0.303629,0][-1.13496,-0.918381,-1.68613][-0.485081,-0.745553,-0.456998][0.21188,0.287379,0][-0.589458,-0.980765,-1.95898][-0.211252,-0.857515,-0.469084][0.122086,0.286741,0][-1.13496,-0.918381,-1.68613][-0.485081,-0.745553,-0.456998][0.21188,0.287379,0][-1.13179,-0.871782,-1.70429][-0.577892,0.200707,-0.791048][0.211339,0.303629,0][-1.13179,-0.871782,-1.70429][-0.577892,0.200707,-0.791048][0.211339,0.303629,0][-0.590603,-0.937709,-1.98365][-0.315554,0.0191239,-0.948715][0.121109,0.304432,0][-0.589458,-0.980765,-1.95898][-0.211252,-0.857515,-0.469084][0.122086,0.286741,0][-2.91647e-007,-0.989764,-2.06249][-4.19245e-007,-0.862658,-0.505788][0.044969,0.286108,0][-0.589458,-0.980765,-1.95898][-0.211252,-0.857515,-0.469084][0.122086,0.286741,0][-0.590603,-0.937709,-1.98365][-0.315554,0.0191239,-0.948715][0.121109,0.304432,0][-0.590603,-0.937709,-1.98365][-0.315554,0.0191239,-0.948715][0.121109,0.304432,0][-2.69108e-007,-0.946951,-2.0868][0,0.0206031,-0.999788][0.045183,0.304601,0][-2.91647e-007,-0.989764,-2.06249][-4.19245e-007,-0.862658,-0.505788][0.044969,0.286108,0][-0.775094,-0.350647,-1.10083][-0.580774,0.212119,-0.785943][0.208128,0.514304,0][-0.775094,-0.326733,-1.09423][-0.447441,0.659336,-0.604212][0.208126,0.520934,0][-0.405707,-0.328426,-1.28353][-0.214226,0.671371,-0.709485][0.113474,0.520934,0][-0.405707,-0.328426,-1.28353][-0.214226,0.671371,-0.709485][0.113474,0.520934,0][-0.405707,-0.35234,-1.29013][-0.274522,0.255887,-0.926909][0.113475,0.514338,0][-0.775094,-0.350647,-1.10083][-0.580774,0.212119,-0.785943][0.208128,0.514304,0][0,-0.352712,-1.33176][1.28688e-007,0.266094,-0.963947][0.045422,0.514588,0][-0.405707,-0.35234,-1.29013][-0.274522,0.255887,-0.926909][0.113475,0.514338,0][-0.405707,-0.328426,-1.28353][-0.214226,0.671371,-0.709485][0.113474,0.520934,0][-0.405707,-0.328426,-1.28353][-0.214226,0.671371,-0.709485][0.113474,0.520934,0][0,-0.328798,-1.32516][3.11974e-007,0.686666,-0.726973][0.045424,0.520934,0][0,-0.352712,-1.33176][1.28688e-007,0.266094,-0.963947][0.045422,0.514588,0][-2.82917e-007,-0.326683,1.45434][0,0.00690768,0.999976][0.971543,0.514362,0][-2.72365e-007,-0.304581,1.45419][3.03867e-007,0.634453,0.772961][0.971531,0.520934,0][-0.405707,-0.305024,1.40461][-0.209843,0.629223,0.748361][0.912933,0.520934,0][-0.405707,-0.305024,1.40461][-0.209843,0.629223,0.748361][0.912933,0.520934,0][-0.405707,-0.326907,1.40475][-0.268062,0.00628473,0.963381][0.912935,0.514375,0][-2.82917e-007,-0.326683,1.45434][0,0.00690768,0.999976][0.971543,0.514362,0][-0.405707,-0.326907,1.40475][-0.268062,0.00628473,0.963381][0.912935,0.514375,0][-0.405707,-0.305024,1.40461][-0.209843,0.629223,0.748361][0.912933,0.520934,0][-0.775094,-0.306503,1.23918][-0.468329,0.616974,0.632464][0.809372,0.520934,0][-0.775094,-0.306503,1.23918][-0.468329,0.616974,0.632464][0.809372,0.520934,0][-0.775094,-0.328385,1.23932][-0.592605,0.00525822,0.805476][0.809372,0.514302,0][-0.405707,-0.326907,1.40475][-0.268062,0.00628473,0.963381][0.912935,0.514375,0][-0.775094,-0.328385,1.23932][-0.592605,0.00525822,0.805476][0.809372,0.514302,0][-0.775094,-0.306503,1.23918][-0.468329,0.616974,0.632464][0.809372,0.520934,0][-1.06824,-0.30947,0.907165][-0.675585,0.585658,0.447873][0.720627,0.520934,0][-1.06824,-0.30947,0.907165][-0.675585,0.585658,0.447873][0.720627,0.520934,0][-1.06824,-0.331353,0.907308][-0.826641,0.00375647,0.562718][0.720624,0.514393,0][-0.775094,-0.328385,1.23932][-0.592605,0.00525822,0.805476][0.809372,0.514302,0][-1.06824,-0.331353,0.907308][-0.826641,0.00375647,0.562718][0.720624,0.514393,0][-1.06824,-0.30947,0.907165][-0.675585,0.585658,0.447873][0.720627,0.520934,0][-1.27922,-0.313165,0.493701][-0.682731,0.696262,0.221581][0.622866,0.52293,0][-1.27922,-0.313165,0.493701][-0.682731,0.696262,0.221581][0.622866,0.52293,0][-1.27929,-0.335901,0.494231][-0.948305,0.010539,0.317186][0.622879,0.516145,0][-1.06824,-0.331353,0.907308][-0.826641,0.00375647,0.562718][0.720624,0.514393,0][-1.27929,-0.335901,0.494231][-0.948305,0.010539,0.317186][0.622879,0.516145,0][-1.27922,-0.313165,0.493701][-0.682731,0.696262,0.221581][0.622866,0.52293,0][-1.36029,-0.323289,0.0239868][-0.823182,0.567497,-0.0178301][0.506408,0.523675,0][-1.36029,-0.323289,0.0239868][-0.823182,0.567497,-0.0178301][0.506408,0.523675,0][-1.36168,-0.346606,0.0244268][-0.998541,0.0539903,-0.000245061][0.506438,0.516911,0][-1.27929,-0.335901,0.494231][-0.948305,0.010539,0.317186][0.622879,0.516145,0][-1.36168,-0.346606,0.0244268][-0.998541,0.0539903,-0.000245061][0.506438,0.516911,0][-1.36029,-0.323289,0.0239868][-0.823182,0.567497,-0.0178301][0.506408,0.523675,0][-1.27922,-0.321543,-0.443608][-0.716601,0.645772,-0.263556][0.387862,0.522643,0][-1.27922,-0.321543,-0.443608][-0.716601,0.645772,-0.263556][0.387862,0.522643,0][-1.27929,-0.345248,-0.443723][-0.939024,0.0053595,-0.343811][0.387864,0.515912,0][-1.36168,-0.346606,0.0244268][-0.998541,0.0539903,-0.000245061][0.506438,0.516911,0][-1.27929,-0.345248,-0.443723][-0.939024,0.0053595,-0.343811][0.387864,0.515912,0][-1.27922,-0.321543,-0.443608][-0.716601,0.645772,-0.263556][0.387862,0.522643,0][-1.06824,-0.324762,-0.803845][-0.629564,0.613924,-0.476179][0.291907,0.520934,0][-1.06824,-0.324762,-0.803845][-0.629564,0.613924,-0.476179][0.291907,0.520934,0][-1.06824,-0.348604,-0.807448][-0.791746,0.0885045,-0.604405][0.291908,0.514313,0][-1.27929,-0.345248,-0.443723][-0.939024,0.0053595,-0.343811][0.387864,0.515912,0][-1.06824,-0.348604,-0.807448][-0.791746,0.0885045,-0.604405][0.291908,0.514313,0][-1.06824,-0.324762,-0.803845][-0.629564,0.613924,-0.476179][0.291907,0.520934,0][-0.775094,-0.326733,-1.09423][-0.447441,0.659336,-0.604212][0.208126,0.520934,0][-0.775094,-0.326733,-1.09423][-0.447441,0.659336,-0.604212][0.208126,0.520934,0][-0.775094,-0.350647,-1.10083][-0.580774,0.212119,-0.785943][0.208128,0.514304,0][-1.06824,-0.348604,-0.807448][-0.791746,0.0885045,-0.604405][0.291908,0.514313,0][-0.775094,-0.616678,-1.17427][-0.598261,0.212024,-0.772742][0.208154,0.44055,0][-0.775094,-0.492124,-1.13989][-0.591785,0.210748,-0.778059][0.208142,0.475081,0][-0.405707,-0.493817,-1.32919][-0.274522,0.255882,-0.92691][0.113481,0.47532,0][-0.405707,-0.493817,-1.32919][-0.274522,0.255882,-0.92691][0.113481,0.47532,0][-0.405707,-0.618371,-1.36357][-0.274522,0.255874,-0.926912][0.113487,0.440968,0][-0.775094,-0.616678,-1.17427][-0.598261,0.212024,-0.772742][0.208154,0.44055,0][0,-0.494189,-1.37081][1.33454e-007,0.266105,-0.963944][0.045409,0.477042,0][-1.72193e-007,-0.618743,-1.4052][1.47753e-007,0.266098,-0.963946][0.045398,0.439389,0][-0.405707,-0.618371,-1.36357][-0.274522,0.255874,-0.926912][0.113487,0.440968,0][-0.405707,-0.618371,-1.36357][-0.274522,0.255874,-0.926912][0.113487,0.440968,0][-0.405707,-0.493817,-1.32919][-0.274522,0.255882,-0.92691][0.113481,0.47532,0][0,-0.494189,-1.37081][1.33454e-007,0.266105,-0.963944][0.045409,0.477042,0][-4.00306e-007,-0.572554,1.45604][0,0.00687457,0.999976][0.971679,0.441249,0][-3.45345e-007,-0.457438,1.45524][0,0.00686313,0.999976][0.971615,0.47548,0][-0.405707,-0.456366,1.40559][-0.268118,0.00629266,0.963366][0.912945,0.475574,0][-0.405707,-0.456366,1.40559][-0.268118,0.00629266,0.963366][0.912945,0.475574,0][-0.405707,-0.57034,1.40633][-0.268156,0.0062833,0.963355][0.912954,0.441414,0][-4.00306e-007,-0.572554,1.45604][0,0.00687457,0.999976][0.971679,0.441249,0][-0.405707,-0.57034,1.40633][-0.268156,0.0062833,0.963355][0.912954,0.441414,0][-0.405707,-0.456366,1.40559][-0.268118,0.00629266,0.963366][0.912945,0.475574,0][-0.775094,-0.457845,1.24016][-0.592605,0.00525077,0.805476][0.809373,0.47507,0][-0.775094,-0.457845,1.24016][-0.592605,0.00525077,0.805476][0.809373,0.47507,0][-0.775094,-0.571819,1.24091][-0.592605,0.00525099,0.805476][0.809373,0.440531,0][-0.405707,-0.57034,1.40633][-0.268156,0.0062833,0.963355][0.912954,0.441414,0][-0.775094,-0.571819,1.24091][-0.592605,0.00525099,0.805476][0.809373,0.440531,0][-0.775094,-0.457845,1.24016][-0.592605,0.00525077,0.805476][0.809373,0.47507,0][-1.06824,-0.460812,0.908152][-0.826063,0.00415762,0.563563][0.720609,0.475694,0][-1.06824,-0.460812,0.908152][-0.826063,0.00415762,0.563563][0.720609,0.475694,0][-1.06824,-0.574786,0.908894][-0.82526,0.00411248,0.564738][0.720595,0.441624,0][-0.775094,-0.571819,1.24091][-0.592605,0.00525099,0.805476][0.809373,0.440531,0][-1.06824,-0.574786,0.908894][-0.82526,0.00411248,0.564738][0.720595,0.441624,0][-1.06824,-0.460812,0.908152][-0.826063,0.00415762,0.563563][0.720609,0.475694,0][-1.27975,-0.470411,0.497368][-0.94616,0.0127626,0.323449][0.622956,0.476006,0][-1.27975,-0.470411,0.497368][-0.94616,0.0127626,0.323449][0.622956,0.476006,0][-1.28015,-0.588831,0.500128][-0.943502,0.0129008,0.331116][0.622964,0.440668,0][-1.06824,-0.574786,0.908894][-0.82526,0.00411248,0.564738][0.720595,0.441624,0][-1.28015,-0.588831,0.500128][-0.943502,0.0129008,0.331116][0.622964,0.440668,0][-1.27975,-0.470411,0.497368][-0.94616,0.0127626,0.323449][0.622956,0.476006,0][-1.36985,-0.484552,0.0270328][-0.998366,0.0571001,0.00215559][0.506617,0.476896,0][-1.36985,-0.484552,0.0270328][-0.998366,0.0571001,0.00215559][0.506617,0.476896,0][-1.37705,-0.605998,0.0293268][-0.998398,0.0564848,0.00318453][0.506775,0.441666,0][-1.28015,-0.588831,0.500128][-0.943502,0.0129008,0.331116][0.622964,0.440668,0][-1.37705,-0.605998,0.0293268][-0.998398,0.0564848,0.00318453][0.506775,0.441666,0][-1.36985,-0.484552,0.0270328][-0.998366,0.0571001,0.00215559][0.506617,0.476896,0][-1.27975,-0.485488,-0.444404][-0.939208,0.0125518,-0.34312][0.387872,0.476087,0][-1.27975,-0.485488,-0.444404][-0.939208,0.0125518,-0.34312][0.387872,0.476087,0][-1.28014,-0.608954,-0.445004][-0.940032,0.00828316,-0.340985][0.387879,0.441027,0][-1.37705,-0.605998,0.0293268][-0.998398,0.0564848,0.00318453][0.506775,0.441666,0][-1.28014,-0.608954,-0.445004][-0.940032,0.00828316,-0.340985][0.387879,0.441027,0][-1.27975,-0.485488,-0.444404][-0.939208,0.0125518,-0.34312][0.387872,0.476087,0][-1.06824,-0.489657,-0.828766][-0.803686,0.0905849,-0.588118][0.291913,0.475146,0][-1.06824,-0.489657,-0.828766][-0.803686,0.0905849,-0.588118][0.291913,0.475146,0][-1.06824,-0.613837,-0.847534][-0.815071,0.0894726,-0.57241][0.291917,0.440664,0][-1.28014,-0.608954,-0.445004][-0.940032,0.00828316,-0.340985][0.387879,0.441027,0][-1.06824,-0.613837,-0.847534][-0.815071,0.0894726,-0.57241][0.291917,0.440664,0][-1.06824,-0.489657,-0.828766][-0.803686,0.0905849,-0.588118][0.291913,0.475146,0][-0.775094,-0.492124,-1.13989][-0.591785,0.210748,-0.778059][0.208142,0.475081,0][-0.775094,-0.492124,-1.13989][-0.591785,0.210748,-0.778059][0.208142,0.475081,0][-0.775094,-0.616678,-1.17427][-0.598261,0.212024,-0.772742][0.208154,0.44055,0][-1.06824,-0.613837,-0.847534][-0.815071,0.0894726,-0.57241][0.291917,0.440664,0][0.844235,-0.0540425,0.464081][-0.661802,-0.724283,-0.193474][0.294796,0.111248,0][1.10494,-0.547683,0.44245][-0.750806,-0.626113,-0.210409][0.304261,0.137351,0][0.939356,-0.551139,0.810573][-0.668982,-0.608848,-0.426341][0.337398,0.121758,0][0.939356,-0.551139,0.810573][-0.668982,-0.608848,-0.426341][0.337398,0.121758,0][0.717603,-0.0515265,0.745561][-0.602928,-0.708201,-0.367327][0.31946,0.099642,0][0.844235,-0.0540425,0.464081][-0.661802,-0.724283,-0.193474][0.294796,0.111248,0][0.717603,-0.0515265,0.745561][-0.602928,-0.708201,-0.367327][0.31946,0.099642,0][0.939356,-0.551139,0.810573][-0.668982,-0.608848,-0.426341][0.337398,0.121758,0][0.681454,-0.548528,1.10267][-0.471479,-0.598796,-0.647419][0.363668,0.097527,0][0.681454,-0.548528,1.10267][-0.471479,-0.598796,-0.647419][0.363668,0.097527,0][0.520369,-0.0479654,1.00329][-0.402268,-0.668982,-0.625015][0.339013,0.081607,0][0.717603,-0.0515265,0.745561][-0.602928,-0.708201,-0.367327][0.31946,0.099642,0][0.520369,-0.0479654,1.00329][-0.402268,-0.668982,-0.625015][0.339013,0.081607,0][0.681454,-0.548528,1.10267][-0.471479,-0.598796,-0.647419][0.363668,0.097527,0][0.356478,-0.54748,1.21991][-0.22799,-0.573469,-0.786864][0.374428,0.067043,0][0.356478,-0.54748,1.21991][-0.22799,-0.573469,-0.786864][0.374428,0.067043,0][0.271839,-0.0474443,1.06155][-0.129766,-0.698352,-0.703893][0.34407,0.058924,0][0.520369,-0.0479654,1.00329][-0.402268,-0.668982,-0.625015][0.339013,0.081607,0][0.356478,-0.54748,1.21991][-0.22799,-0.573469,-0.786864][0.374428,0.067043,0][0.414608,-0.715719,1.43284][0.00985831,-0.997567,0.069014][0.398063,0.073364,0][-4.7056e-007,-0.715287,1.48113][-4.31271e-007,-0.999749,0.0223917][0.402462,0.032867,0][-4.7056e-007,-0.715287,1.48113][-4.31271e-007,-0.999749,0.0223917][0.402462,0.032867,0][-3.5751e-007,-0.510905,1.30277][-2.50869e-007,-0.523437,-0.852064][0.376466,0.03329,0][0.356478,-0.54748,1.21991][-0.22799,-0.573469,-0.786864][0.374428,0.067043,0][0,-0.0658549,-0.857672][-3.75079e-007,-0.810312,0.585998][0.178671,0.034154,0][-1.69867e-007,-0.585748,-1.25184][-2.71326e-007,-0.546378,0.837539][0.151508,0.033729,0][0.356478,-0.585343,-1.20655][-0.229265,-0.562397,0.794448][0.155546,0.067485,0][0.356478,-0.585343,-1.20655][-0.229265,-0.562397,0.794448][0.155546,0.067485,0][0.271839,-0.065414,-0.808252][-0.196683,-0.811762,0.549871][0.183065,0.059276,0][0,-0.0658549,-0.857672][-3.75079e-007,-0.810312,0.585998][0.178671,0.034154,0][0.271839,-0.065414,-0.808252][-0.196683,-0.811762,0.549871][0.183065,0.059276,0][0.356478,-0.585343,-1.20655][-0.229265,-0.562397,0.794448][0.155546,0.067485,0][0.681454,-0.567622,-1.03365][-0.48197,-0.581666,0.655262][0.17112,0.097948,0][0.681454,-0.567622,-1.03365][-0.48197,-0.581666,0.655262][0.17112,0.097948,0][0.520369,-0.0641321,-0.664831][-0.37778,-0.804248,0.458768][0.1957,0.08192,0][0.271839,-0.065414,-0.808252][-0.196683,-0.811762,0.549871][0.183065,0.059276,0][0.520369,-0.0641321,-0.664831][-0.37778,-0.804248,0.458768][0.1957,0.08192,0][0.681454,-0.567622,-1.03365][-0.48197,-0.581666,0.655262][0.17112,0.097948,0][0.939356,-0.565011,-0.741552][-0.661677,-0.595577,0.45549][0.197504,0.122064,0][0.939356,-0.565011,-0.741552][-0.661677,-0.595577,0.45549][0.197504,0.122064,0][0.717603,-0.0621353,-0.441447][-0.520504,-0.785553,0.334638][0.215337,0.099869,0][0.520369,-0.0641321,-0.664831][-0.37778,-0.804248,0.458768][0.1957,0.08192,0][0.717603,-0.0621353,-0.441447][-0.520504,-0.785553,0.334638][0.215337,0.099869,0][0.939356,-0.565011,-0.741552][-0.661677,-0.595577,0.45549][0.197504,0.122064,0][1.10494,-0.556065,-0.373541][-0.752786,-0.609923,0.247602][0.230714,0.137511,0][1.10494,-0.556065,-0.373541][-0.752786,-0.609923,0.247602][0.230714,0.137511,0][0.844235,-0.0596194,-0.159966][-0.618397,-0.765478,0.177844][0.240055,0.111367,0][0.717603,-0.0621353,-0.441447][-0.520504,-0.785553,0.334638][0.215337,0.099869,0][0.844235,-0.0596194,-0.159966][-0.618397,-0.765478,0.177844][0.240055,0.111367,0][1.10494,-0.556065,-0.373541][-0.752786,-0.609923,0.247602][0.230714,0.137511,0][1.16999,-0.55823,0.035569][-0.774542,-0.6323,0.0167868][0.2675,0.142779,0][1.16999,-0.55823,0.035569][-0.774542,-0.6323,0.0167868][0.2675,0.142779,0][0.88787,-0.0568314,0.152057][-0.667397,-0.744698,-0.00251956][0.267435,0.115288,0][0.844235,-0.0596194,-0.159966][-0.618397,-0.765478,0.177844][0.240055,0.111367,0][1.10494,-0.547683,0.44245][-0.750806,-0.626113,-0.210409][0.304261,0.137351,0][0.844235,-0.0540425,0.464081][-0.661802,-0.724283,-0.193474][0.294796,0.111248,0][0.88787,-0.0568314,0.152057][-0.667397,-0.744698,-0.00251956][0.267435,0.115288,0][0.88787,-0.0568314,0.152057][-0.667397,-0.744698,-0.00251956][0.267435,0.115288,0][1.16999,-0.55823,0.035569][-0.774542,-0.6323,0.0167868][0.2675,0.142779,0][1.10494,-0.547683,0.44245][-0.750806,-0.626113,-0.210409][0.304261,0.137351,0][0.717603,-0.0515265,0.745561][-0.602928,-0.708201,-0.367327][0.31946,0.099642,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][0.844235,-0.0540425,0.464081][-0.661802,-0.724283,-0.193474][0.294796,0.111248,0][0.520369,-0.0479654,1.00329][-0.402268,-0.668982,-0.625015][0.339013,0.081607,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][0.717603,-0.0515265,0.745561][-0.602928,-0.708201,-0.367327][0.31946,0.099642,0][0.271839,-0.0474443,1.06155][-0.129766,-0.698352,-0.703893][0.34407,0.058924,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][0.520369,-0.0479654,1.00329][-0.402268,-0.668982,-0.625015][0.339013,0.081607,0][0,-0.0472562,1.08258][-3.53014e-007,-0.722357,-0.69152][0.345855,0.033788,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][0.271839,-0.0474443,1.06155][-0.129766,-0.698352,-0.703893][0.34407,0.058924,0][0.271839,-0.065414,-0.808252][-0.196683,-0.811762,0.549871][0.183065,0.059276,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][0,-0.0658549,-0.857672][-3.75079e-007,-0.810312,0.585998][0.178671,0.034154,0][0.520369,-0.0641321,-0.664831][-0.37778,-0.804248,0.458768][0.1957,0.08192,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][0.271839,-0.065414,-0.808252][-0.196683,-0.811762,0.549871][0.183065,0.059276,0][0.717603,-0.0621353,-0.441447][-0.520504,-0.785553,0.334638][0.215337,0.099869,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][0.520369,-0.0641321,-0.664831][-0.37778,-0.804248,0.458768][0.1957,0.08192,0][0.844235,-0.0596194,-0.159966][-0.618397,-0.765478,0.177844][0.240055,0.111367,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][0.717603,-0.0621353,-0.441447][-0.520504,-0.785553,0.334638][0.215337,0.099869,0][0.88787,-0.0568314,0.152057][-0.667397,-0.744698,-0.00251956][0.267435,0.115288,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][0.844235,-0.0596194,-0.159966][-0.618397,-0.765478,0.177844][0.240055,0.111367,0][0.844235,-0.0540425,0.464081][-0.661802,-0.724283,-0.193474][0.294796,0.111248,0][0,0.271093,0.271482][-4.2335e-007,-0.999485,-0.032103][0.267226,0.034493,0][0.88787,-0.0568314,0.152057][-0.667397,-0.744698,-0.00251956][0.267435,0.115288,0][0.181274,0.593669,0.459988][-0.184675,0.982244,-0.0330513][0.802146,0.182067,0][0.180334,0.587348,0.24833][-0.196053,0.980142,-0.0297618][0.747471,0.182288,0][2.49967e-007,0.571379,0.257224][4.90324e-007,0.999334,-0.0364884][0.749768,0.226993,0][2.49967e-007,0.571379,0.257224][4.90324e-007,0.999334,-0.0364884][0.749768,0.226993,0][2.35262e-007,0.576585,0.453827][4.95509e-007,0.999578,-0.0290418][0.800555,0.227003,0][0.181274,0.593669,0.459988][-0.184675,0.982244,-0.0330513][0.802146,0.182067,0][1.09299,0.445917,0.44911][0.934848,0.239268,0.262316][0.606963,0.809265,0][0.933413,0.437558,0.828259][0.850884,0.218342,0.477831][0.720435,0.806277,0][1.02099,-0.0159636,0.869153][0.837419,0.156463,0.523687][0.719728,0.644196,0][1.02099,-0.0159636,0.869153][0.837419,0.156463,0.523687][0.719728,0.644196,0][1.20089,-0.0211027,0.471694][0.940283,0.180333,0.288699][0.604634,0.64236,0][1.09299,0.445917,0.44911][0.934848,0.239268,0.262316][0.606963,0.809265,0][1.09299,0.445917,0.44911][0.934848,0.239268,0.262316][0.606963,0.809265,0][1.20089,-0.0211027,0.471694][0.940283,0.180333,0.288699][0.604634,0.64236,0][1.23943,0.0759204,0.0344071][0.96705,0.249372,-0.0512548][0.496453,0.670244,0][1.23943,0.0759204,0.0344071][0.96705,0.249372,-0.0512548][0.496453,0.670244,0][1.14678,0.461414,0.0344072][0.961759,0.258855,-0.0895174][0.495884,0.814803,0][1.09299,0.445917,0.44911][0.934848,0.239268,0.262316][0.606963,0.809265,0][1.07067,0.460097,-0.200487][0.86736,0.319379,-0.381686][0.427553,0.806989,0][1.14678,0.461414,0.0344072][0.961759,0.258855,-0.0895174][0.495884,0.814803,0][1.23943,0.0759204,0.0344071][0.96705,0.249372,-0.0512548][0.496453,0.670244,0][1.23943,0.0759204,0.0344071][0.96705,0.249372,-0.0512548][0.496453,0.670244,0][1.13003,0.129552,-0.361996][0.88379,0.305597,-0.354297][0.395888,0.696201,0][1.07067,0.460097,-0.200487][0.86736,0.319379,-0.381686][0.427553,0.806989,0][0.783955,0.321947,-0.498098][0.560174,0.400223,-0.725277][0.30811,0.764959,0][0.945696,0.381638,-0.354573][0.5244,0.360338,-0.771467][0.376825,0.793634,0][0.979383,0.218721,-0.439858][0.459888,0.596682,-0.657627][0.362558,0.728068,0][0.979383,0.218721,-0.439858][0.459888,0.596682,-0.657627][0.362558,0.728068,0][0.879661,0.122158,-0.616606][0.34019,0.738866,-0.581677][0.308959,0.693558,0][0.783955,0.321947,-0.498098][0.560174,0.400223,-0.725277][0.30811,0.764959,0][0.572981,0.281684,-0.688148][0.542835,0.415613,-0.729792][0.224814,0.75057,0][0.783955,0.321947,-0.498098][0.560174,0.400223,-0.725277][0.30811,0.764959,0][0.879661,0.122158,-0.616606][0.34019,0.738866,-0.581677][0.308959,0.693558,0][0.879661,0.122158,-0.616606][0.34019,0.738866,-0.581677][0.308959,0.693558,0][0.648121,0.0697738,-0.82582][0.36,0.778945,-0.513464][0.224594,0.674837,0][0.572981,0.281684,-0.688148][0.542835,0.415613,-0.729792][0.224814,0.75057,0][0.369956,0.248634,-0.847398][0.590008,0.419661,-0.689764][0.158934,0.738758,0][0.572981,0.281684,-0.688148][0.542835,0.415613,-0.729792][0.224814,0.75057,0][0.648121,0.0697738,-0.82582][0.36,0.778945,-0.513464][0.224594,0.674837,0][0.648121,0.0697738,-0.82582][0.36,0.778945,-0.513464][0.224594,0.674837,0][0.417833,0.114991,-0.947852][0.471548,0.725462,-0.501345][0.160685,0.690997,0][0.369956,0.248634,-0.847398][0.590008,0.419661,-0.689764][0.158934,0.738758,0][0.369956,0.248634,-0.847398][0.590008,0.419661,-0.689764][0.158934,0.738758,0][0.417833,0.114991,-0.947852][0.471548,0.725462,-0.501345][0.160685,0.690997,0][0.318551,0.183914,-0.97185][0.610963,0.60992,-0.5047][0.133586,0.715629,0][0.318551,0.183914,-0.97185][0.610963,0.60992,-0.5047][0.133586,0.715629,0][0.266523,0.27629,-0.94409][0.667877,0.398038,-0.628892][0.121998,0.748642,0][0.369956,0.248634,-0.847398][0.590008,0.419661,-0.689764][0.158934,0.738758,0][0.37334,0.404642,1.31998][0.262887,0.172349,0.949308][0.888,0.794513,0][0,0.403359,1.36505][0,0.175048,0.98456][0.960103,0.794055,0][-1.26063e-007,-0.00569123,1.41095][0,0.0782557,0.996933][0.960103,0.647867,0][-1.26063e-007,-0.00569123,1.41095][0,0.0782557,0.996933][0.960103,0.647867,0][0.387723,-0.00611641,1.36349][0.266892,0.0800131,0.960399][0.887703,0.647716,0][0.37334,0.404642,1.31998][0.262887,0.172349,0.949308][0.888,0.794513,0][0.740794,-0.00753055,1.20522][0.609625,0.101396,0.786178][0.809706,0.64721,0][0.703517,0.424923,1.16813][0.630154,0.175608,0.756352][0.812163,0.801762,0][0.37334,0.404642,1.31998][0.262887,0.172349,0.949308][0.888,0.794513,0][0.37334,0.404642,1.31998][0.262887,0.172349,0.949308][0.888,0.794513,0][0.387723,-0.00611641,1.36349][0.266892,0.0800131,0.960399][0.887703,0.647716,0][0.740794,-0.00753055,1.20522][0.609625,0.101396,0.786178][0.809706,0.64721,0][0.933413,0.437558,0.828259][0.850884,0.218342,0.477831][0.720435,0.806277,0][0.703517,0.424923,1.16813][0.630154,0.175608,0.756352][0.812163,0.801762,0][0.740794,-0.00753055,1.20522][0.609625,0.101396,0.786178][0.809706,0.64721,0][0.740794,-0.00753055,1.20522][0.609625,0.101396,0.786178][0.809706,0.64721,0][1.02099,-0.0159636,0.869153][0.837419,0.156463,0.523687][0.719728,0.644196,0][0.933413,0.437558,0.828259][0.850884,0.218342,0.477831][0.720435,0.806277,0][1.29977,-0.578301,1.06085][0.510307,-0.751778,0.417632][0.372873,0.169251,0][0.937414,-0.529113,1.48242][0.399731,-0.65545,0.640781][0.412594,0.129512,0][0.792025,-0.717188,1.26857][0.00897965,-0.999089,0.0417089][0.382862,0.109921,0][0.792025,-0.717188,1.26857][0.00897965,-0.999089,0.0417089][0.382862,0.109921,0][1.09154,-0.717178,0.929196][-0.0308784,-0.998912,-0.0349599][0.351363,0.138976,0][1.29977,-0.578301,1.06085][0.510307,-0.751778,0.417632][0.372873,0.169251,0][1.28385,-0.706195,0.502165][-0.157039,-0.98753,0.0111139][0.311629,0.157673,0][1.58629,-0.597603,0.596417][0.460296,-0.843063,0.278159][0.322969,0.189989,0][1.29977,-0.578301,1.06085][0.510307,-0.751778,0.417632][0.372873,0.169251,0][1.29977,-0.578301,1.06085][0.510307,-0.751778,0.417632][0.372873,0.169251,0][1.09154,-0.717178,0.929196][-0.0308784,-0.998912,-0.0349599][0.351363,0.138976,0][1.28385,-0.706195,0.502165][-0.157039,-0.98753,0.0111139][0.311629,0.157673,0][1.681,-0.675451,0.028779][0.271522,-0.952978,0.134571][0.267611,0.197218,0][1.58629,-0.597603,0.596417][0.460296,-0.843063,0.278159][0.322969,0.189989,0][1.28385,-0.706195,0.502165][-0.157039,-0.98753,0.0111139][0.311629,0.157673,0][1.28385,-0.706195,0.502165][-0.157039,-0.98753,0.0111139][0.311629,0.157673,0][1.35744,-0.731261,0.030143][-0.263672,-0.961381,0.078893][0.26755,0.164181,0][1.681,-0.675451,0.028779][0.271522,-0.952978,0.134571][0.267611,0.197218,0][1.56521,-0.775537,-0.544065][0.0785415,-0.987956,0.133321][0.212221,0.190231,0][1.681,-0.675451,0.028779][0.271522,-0.952978,0.134571][0.267611,0.197218,0][1.35744,-0.731261,0.030143][-0.263672,-0.961381,0.078893][0.26755,0.164181,0][1.35744,-0.731261,0.030143][-0.263672,-0.961381,0.078893][0.26755,0.164181,0][1.28385,-0.772564,-0.442914][-0.349295,-0.916074,0.196979][0.223442,0.157865,0][1.56521,-0.775537,-0.544065][0.0785415,-0.987956,0.133321][0.212221,0.190231,0][1.09154,-0.828246,-0.869067][-0.306511,-0.895327,0.323172][0.18362,0.139342,0][1.32109,-0.841778,-1.065][0.0648825,-0.99173,0.11073][0.162219,0.169711,0][1.56521,-0.775537,-0.544065][0.0785415,-0.987956,0.133321][0.212221,0.190231,0][1.56521,-0.775537,-0.544065][0.0785415,-0.987956,0.133321][0.212221,0.190231,0][1.28385,-0.772564,-0.442914][-0.349295,-0.916074,0.196979][0.223442,0.157865,0][1.09154,-0.828246,-0.869067][-0.306511,-0.895327,0.323172][0.18362,0.139342,0][0.792025,-0.883305,-1.20593][-0.224068,-0.865032,0.448903][0.151984,0.110426,0][0.937414,-0.9227,-1.43071][0.05345,-0.99132,0.120115][0.122346,0.130125,0][1.32109,-0.841778,-1.065][0.0648825,-0.99173,0.11073][0.162219,0.169711,0][1.32109,-0.841778,-1.065][0.0648825,-0.99173,0.11073][0.162219,0.169711,0][1.09154,-0.828246,-0.869067][-0.306511,-0.895327,0.323172][0.18362,0.139342,0][0.792025,-0.883305,-1.20593][-0.224068,-0.865032,0.448903][0.151984,0.110426,0][0.414608,-0.912371,-1.39681][-0.114566,-0.855428,0.505091][0.134121,0.073877,0][0.49104,-0.956381,-1.66316][0.00111315,-0.992913,0.118837][0.099134,0.084243,0][0.937414,-0.9227,-1.43071][0.05345,-0.99132,0.120115][0.122346,0.130125,0][0.937414,-0.9227,-1.43071][0.05345,-0.99132,0.120115][0.122346,0.130125,0][0.792025,-0.883305,-1.20593][-0.224068,-0.865032,0.448903][0.151984,0.110426,0][0.414608,-0.912371,-1.39681][-0.114566,-0.855428,0.505091][0.134121,0.073877,0][-3.06389e-007,-0.959829,-1.73059][-4.36873e-007,-0.992807,0.119724][0.092226,0.033411,0][0.49104,-0.956381,-1.66316][0.00111315,-0.992913,0.118837][0.099134,0.084243,0][0.414608,-0.912371,-1.39681][-0.114566,-0.855428,0.505091][0.134121,0.073877,0][0.414608,-0.912371,-1.39681][-0.114566,-0.855428,0.505091][0.134121,0.073877,0][-3.09665e-007,-0.912723,-1.43618][-3.73148e-007,-0.836829,0.547464][0.130362,0.033398,0][-3.06389e-007,-0.959829,-1.73059][-4.36873e-007,-0.992807,0.119724][0.092226,0.033411,0][0.414608,-0.715719,1.43284][0.00985831,-0.997567,0.069014][0.398063,0.073364,0][0.491039,-0.491136,1.69358][0.189181,-0.599963,0.777338][0.433118,0.083603,0][-3.82071e-007,-0.479491,1.75505][-2.79219e-007,-0.589156,0.80802][0.439249,0.032757,0][-3.82071e-007,-0.479491,1.75505][-2.79219e-007,-0.589156,0.80802][0.439249,0.032757,0][-4.7056e-007,-0.715287,1.48113][-4.31271e-007,-0.999749,0.0223917][0.402462,0.032867,0][0.414608,-0.715719,1.43284][0.00985831,-0.997567,0.069014][0.398063,0.073364,0][0.937414,-0.529113,1.48242][0.399731,-0.65545,0.640781][0.412594,0.129512,0][0.491039,-0.491136,1.69358][0.189181,-0.599963,0.777338][0.433118,0.083603,0][0.414608,-0.715719,1.43284][0.00985831,-0.997567,0.069014][0.398063,0.073364,0][0.414608,-0.715719,1.43284][0.00985831,-0.997567,0.069014][0.398063,0.073364,0][0.792025,-0.717188,1.26857][0.00897965,-0.999089,0.0417089][0.382862,0.109921,0][0.937414,-0.529113,1.48242][0.399731,-0.65545,0.640781][0.412594,0.129512,0][1.49459,-0.68115,-0.531945][0.0471668,0.989448,-0.136996][0.38786,0.369055,0][1.32204,-0.738771,-1.03811][0.0969245,0.985762,-0.137399][0.291925,0.367597,0][1.10114,-0.664549,-0.88099][0.173195,0.972845,-0.153542][0.29192,0.41778,0][1.10114,-0.664549,-0.88099][0.173195,0.972845,-0.153542][0.29192,0.41778,0][1.32512,-0.651316,-0.462713][0.0694968,0.995845,-0.0588404][0.387885,0.420196,0][1.49459,-0.68115,-0.531945][0.0471668,0.989448,-0.136996][0.38786,0.369055,0][1.10114,-0.664549,-0.88099][0.173195,0.972845,-0.153542][0.29192,0.41778,0][0.799104,-0.670185,-1.2226][0.159537,0.959552,-0.231966][0.20817,0.417868,0][0.775094,-0.658752,-1.18589][0.409878,0.726891,-0.551026][0.208158,0.428886,0][0.775094,-0.658752,-1.18589][0.409878,0.726891,-0.551026][0.208158,0.428886,0][1.06824,-0.655784,-0.853873][0.582983,0.692815,-0.424428][0.291918,0.429017,0][1.10114,-0.664549,-0.88099][0.173195,0.972845,-0.153542][0.29192,0.41778,0][0.799104,-0.670185,-1.2226][0.159537,0.959552,-0.231966][0.20817,0.417868,0][0.41833,-0.676217,-1.41866][0.0896029,0.936254,-0.339706][0.113491,0.418482,0][0.405707,-0.660444,-1.37518][0.191403,0.709749,-0.677954][0.113489,0.429364,0][0.405707,-0.660444,-1.37518][0.191403,0.709749,-0.677954][0.113489,0.429364,0][0.775094,-0.658752,-1.18589][0.409878,0.726891,-0.551026][0.208158,0.428886,0][0.799104,-0.670185,-1.2226][0.159537,0.959552,-0.231966][0.20817,0.417868,0][0.405707,-0.660444,-1.37518][0.191403,0.709749,-0.677954][0.113489,0.429364,0][0.41833,-0.676217,-1.41866][0.0896029,0.936254,-0.339706][0.113491,0.418482,0][-1.95161e-007,-0.67784,-1.46482][4.0879e-007,0.940736,-0.339138][0.045376,0.417384,0][-1.95161e-007,-0.67784,-1.46482][4.0879e-007,0.940736,-0.339138][0.045376,0.417384,0][-1.9124e-007,-0.660816,-1.41681][3.14796e-007,0.696868,-0.7172][0.045394,0.428223,0][0.405707,-0.660444,-1.37518][0.191403,0.709749,-0.677954][0.113489,0.429364,0][0.421863,-0.620654,1.46244][-0.0888576,0.940781,-0.327164][0.913051,0.416465,0][0.405707,-0.608839,1.40659][0.199084,0.664978,0.71984][0.912957,0.429875,0][-4.18871e-007,-0.611438,1.45631][2.78739e-007,0.688128,0.725589][0.9717,0.429686,0][-4.18871e-007,-0.611438,1.45631][2.78739e-007,0.688128,0.725589][0.9717,0.429686,0][-4.27596e-007,-0.61901,1.51481][4.01754e-007,0.916047,-0.401071][0.971705,0.41767,0][0.421863,-0.620654,1.46244][-0.0888576,0.940781,-0.327164][0.913051,0.416465,0][0.421863,-0.620654,1.46244][-0.0888576,0.940781,-0.327164][0.913051,0.416465,0][0.805824,-0.622292,1.2883][-0.171671,0.951054,-0.256953][0.809373,0.415134,0][0.775094,-0.610319,1.24116][0.440093,0.675904,0.591161][0.809373,0.428864,0][0.775094,-0.610319,1.24116][0.440093,0.675904,0.591161][0.809373,0.428864,0][0.405707,-0.608839,1.40659][0.199084,0.664978,0.71984][0.912957,0.429875,0][0.421863,-0.620654,1.46244][-0.0888576,0.940781,-0.327164][0.913051,0.416465,0][0.775094,-0.610319,1.24116][0.440093,0.675904,0.591161][0.809373,0.428864,0][0.805824,-0.622292,1.2883][-0.171671,0.951054,-0.256953][0.809373,0.415134,0][1.11035,-0.623882,0.944046][-0.220611,0.957878,-0.183851][0.720583,0.416319,0][1.11035,-0.623882,0.944046][-0.220611,0.957878,-0.183851][0.720583,0.416319,0][1.06824,-0.613287,0.909145][0.623443,0.661486,0.416839][0.72059,0.430116,0][0.775094,-0.610319,1.24116][0.440093,0.675904,0.591161][0.809373,0.428864,0][1.49792,-0.533546,0.564781][-0.494781,0.819549,-0.289018][0.623028,0.370987,0][1.32411,-0.629167,0.518181][-0.212051,0.968775,-0.128492][0.622969,0.418523,0][1.11035,-0.623882,0.944046][-0.220611,0.957878,-0.183851][0.720583,0.416319,0][1.11035,-0.623882,0.944046][-0.220611,0.957878,-0.183851][0.720583,0.416319,0][1.26598,-0.451562,1.05627][-0.560605,0.695834,-0.44893][0.720577,0.37184,0][1.49792,-0.533546,0.564781][-0.494781,0.819549,-0.289018][0.623028,0.370987,0][0.397291,-0.30082,1.37605][0.192648,0.70575,0.681765][0.887697,0.538409,0][-2.67779e-007,-0.300386,1.42461][3.42596e-007,0.698199,0.715904][0.961003,0.53844,0][-2.72365e-007,-0.304581,1.45419][3.03867e-007,0.634453,0.772961][0.971531,0.520934,0][-2.72365e-007,-0.304581,1.45419][3.03867e-007,0.634453,0.772961][0.971531,0.520934,0][0.405707,-0.305024,1.40461][0.209844,0.629223,0.748361][0.912933,0.520934,0][0.397291,-0.30082,1.37605][0.192648,0.70575,0.681765][0.887697,0.538409,0][0.759086,-0.302269,1.21402][0.417975,0.726138,0.545913][0.809221,0.538306,0][0.397291,-0.30082,1.37605][0.192648,0.70575,0.681765][0.887697,0.538409,0][0.405707,-0.305024,1.40461][0.209844,0.629223,0.748361][0.912933,0.520934,0][0.405707,-0.305024,1.40461][0.209844,0.629223,0.748361][0.912933,0.520934,0][0.775094,-0.306504,1.23918][0.468329,0.616974,0.632464][0.809372,0.520934,0][0.759086,-0.302269,1.21402][0.417975,0.726138,0.545913][0.809221,0.538306,0][1.06824,-0.309471,0.907165][0.675585,0.585658,0.447872][0.720627,0.520934,0][1.04621,-0.301221,0.888796][0.633337,0.666351,0.393522][0.71835,0.538381,0][0.759086,-0.302269,1.21402][0.417975,0.726138,0.545913][0.809221,0.538306,0][0.759086,-0.302269,1.21402][0.417975,0.726138,0.545913][0.809221,0.538306,0][0.775094,-0.306504,1.23918][0.468329,0.616974,0.632464][0.809372,0.520934,0][1.06824,-0.309471,0.907165][0.675585,0.585658,0.447872][0.720627,0.520934,0][1.23055,-0.315921,0.479132][0.592291,0.780935,0.198323][0.622663,0.53743,0][1.04621,-0.301221,0.888796][0.633337,0.666351,0.393522][0.71835,0.538381,0][1.06824,-0.309471,0.907165][0.675585,0.585658,0.447872][0.720627,0.520934,0][1.06824,-0.309471,0.907165][0.675585,0.585658,0.447872][0.720627,0.520934,0][1.27922,-0.313167,0.493701][0.682731,0.696261,0.221582][0.622866,0.52293,0][1.23055,-0.315921,0.479132][0.592291,0.780935,0.198323][0.622663,0.53743,0][1.06824,-0.324763,-0.803845][0.629565,0.613923,-0.476179][0.291907,0.520934,0][1.04621,-0.316303,-0.785952][0.544065,0.728669,-0.415974][0.305111,0.53731,0][1.23055,-0.317536,-0.429376][0.579083,0.785732,-0.21746][0.383051,0.537765,0][1.23055,-0.317536,-0.429376][0.579083,0.785732,-0.21746][0.383051,0.537765,0][1.27922,-0.321545,-0.443608][0.716601,0.645771,-0.263556][0.387862,0.522643,0][1.06824,-0.324763,-0.803845][0.629565,0.613923,-0.476179][0.291907,0.520934,0][0.759086,-0.318213,-1.06951][0.378844,0.754557,-0.535836][0.222659,0.537174,0][1.04621,-0.316303,-0.785952][0.544065,0.728669,-0.415974][0.305111,0.53731,0][1.06824,-0.324763,-0.803845][0.629565,0.613923,-0.476179][0.291907,0.520934,0][1.06824,-0.324763,-0.803845][0.629565,0.613923,-0.476179][0.291907,0.520934,0][0.775094,-0.326734,-1.09423][0.447442,0.659336,-0.604212][0.208126,0.520934,0][0.759086,-0.318213,-1.06951][0.378844,0.754557,-0.535836][0.222659,0.537174,0][0.397291,-0.31987,-1.25492][0.177614,0.770073,-0.612732][0.135485,0.537056,0][0.759086,-0.318213,-1.06951][0.378844,0.754557,-0.535836][0.222659,0.537174,0][0.775094,-0.326734,-1.09423][0.447442,0.659336,-0.604212][0.208126,0.520934,0][0.775094,-0.326734,-1.09423][0.447442,0.659336,-0.604212][0.208126,0.520934,0][0.405707,-0.328426,-1.28353][0.214227,0.67137,-0.709485][0.113474,0.520934,0][0.397291,-0.31987,-1.25492][0.177614,0.770073,-0.612732][0.135485,0.537056,0][0.397291,-0.31987,-1.25492][0.177614,0.770073,-0.612732][0.135485,0.537056,0][0.405707,-0.328426,-1.28353][0.214227,0.67137,-0.709485][0.113474,0.520934,0][0,-0.328798,-1.32516][3.11974e-007,0.686666,-0.726973][0.045424,0.520934,0][0,-0.328798,-1.32516][3.11974e-007,0.686666,-0.726973][0.045424,0.520934,0][0,-0.320235,-1.29569][3.41706e-007,0.748475,-0.663162][0.046096,0.53703,0][0.397291,-0.31987,-1.25492][0.177614,0.770073,-0.612732][0.135485,0.537056,0][0.397291,-0.31987,-1.25492][0.177614,0.770073,-0.612732][0.135485,0.537056,0][0.356212,0.00637001,-1.12741][0.285207,0.441385,-0.850786][0.131317,0.652178,0][0.726176,-0.0569612,-0.974513][0.513423,0.453288,-0.728648][0.224395,0.629544,0][0.726176,-0.0569612,-0.974513][0.513423,0.453288,-0.728648][0.224395,0.629544,0][0.759086,-0.318213,-1.06951][0.378844,0.754557,-0.535836][0.222659,0.537174,0][0.397291,-0.31987,-1.25492][0.177614,0.770073,-0.612732][0.135485,0.537056,0][0.356212,0.00637001,-1.12741][0.285207,0.441385,-0.850786][0.131317,0.652178,0][0.397291,-0.31987,-1.25492][0.177614,0.770073,-0.612732][0.135485,0.537056,0][0,-0.320235,-1.29569][3.41706e-007,0.748475,-0.663162][0.046096,0.53703,0][0,-0.320235,-1.29569][3.41706e-007,0.748475,-0.663162][0.046096,0.53703,0][0,-0.000837807,-1.18476][1.73264e-007,0.363554,-0.931573][0.046177,0.649602,0][0.356212,0.00637001,-1.12741][0.285207,0.441385,-0.850786][0.131317,0.652178,0][0.387723,-0.00611641,1.36349][0.266892,0.0800131,0.960399][0.887703,0.647716,0][-1.26063e-007,-0.00569123,1.41095][0,0.0782557,0.996933][0.960103,0.647867,0][-2.67779e-007,-0.300386,1.42461][3.42596e-007,0.698199,0.715904][0.961003,0.53844,0][-2.67779e-007,-0.300386,1.42461][3.42596e-007,0.698199,0.715904][0.961003,0.53844,0][0.397291,-0.30082,1.37605][0.192648,0.70575,0.681765][0.887697,0.538409,0][0.387723,-0.00611641,1.36349][0.266892,0.0800131,0.960399][0.887703,0.647716,0][0.740794,-0.00753055,1.20522][0.609625,0.101396,0.786178][0.809706,0.64721,0][0.387723,-0.00611641,1.36349][0.266892,0.0800131,0.960399][0.887703,0.647716,0][0.397291,-0.30082,1.37605][0.192648,0.70575,0.681765][0.887697,0.538409,0][0.397291,-0.30082,1.37605][0.192648,0.70575,0.681765][0.887697,0.538409,0][0.759086,-0.302269,1.21402][0.417975,0.726138,0.545913][0.809221,0.538306,0][0.740794,-0.00753055,1.20522][0.609625,0.101396,0.786178][0.809706,0.64721,0][1.02099,-0.0159636,0.869153][0.837419,0.156463,0.523687][0.719728,0.644196,0][0.740794,-0.00753055,1.20522][0.609625,0.101396,0.786178][0.809706,0.64721,0][0.759086,-0.302269,1.21402][0.417975,0.726138,0.545913][0.809221,0.538306,0][0.759086,-0.302269,1.21402][0.417975,0.726138,0.545913][0.809221,0.538306,0][1.04621,-0.301221,0.888796][0.633337,0.666351,0.393522][0.71835,0.538381,0][1.02099,-0.0159636,0.869153][0.837419,0.156463,0.523687][0.719728,0.644196,0][1.20089,-0.0211027,0.471694][0.940283,0.180333,0.288699][0.604634,0.64236,0][1.02099,-0.0159636,0.869153][0.837419,0.156463,0.523687][0.719728,0.644196,0][1.04621,-0.301221,0.888796][0.633337,0.666351,0.393522][0.71835,0.538381,0][1.04621,-0.301221,0.888796][0.633337,0.666351,0.393522][0.71835,0.538381,0][1.23055,-0.315921,0.479132][0.592291,0.780935,0.198323][0.622663,0.53743,0][1.20089,-0.0211027,0.471694][0.940283,0.180333,0.288699][0.604634,0.64236,0][1.00542,-0.00567637,-0.697061][0.718021,0.398175,-0.570879][0.308711,0.647873,0][1.13003,0.129552,-0.361996][0.88379,0.305597,-0.354297][0.395888,0.696201,0][1.23055,-0.317536,-0.429376][0.579083,0.785732,-0.21746][0.383051,0.537765,0][1.23055,-0.317536,-0.429376][0.579083,0.785732,-0.21746][0.383051,0.537765,0][1.04621,-0.316303,-0.785952][0.544065,0.728669,-0.415974][0.305111,0.53731,0][1.00542,-0.00567637,-0.697061][0.718021,0.398175,-0.570879][0.308711,0.647873,0][0.726176,-0.0569612,-0.974513][0.513423,0.453288,-0.728648][0.224395,0.629544,0][1.00542,-0.00567637,-0.697061][0.718021,0.398175,-0.570879][0.308711,0.647873,0][1.04621,-0.316303,-0.785952][0.544065,0.728669,-0.415974][0.305111,0.53731,0][1.04621,-0.316303,-0.785952][0.544065,0.728669,-0.415974][0.305111,0.53731,0][0.759086,-0.318213,-1.06951][0.378844,0.754557,-0.535836][0.222659,0.537174,0][0.726176,-0.0569612,-0.974513][0.513423,0.453288,-0.728648][0.224395,0.629544,0][0.175568,0.57627,0.00280211][-0.204738,0.977905,-0.0422516][0.684046,0.183449,0][0.788395,0.76363,-0.133][-0.331802,0.942943,-0.027686][0.648965,0.031783,0][0.601713,0.710126,-0.367336][-0.291576,0.956344,-0.019738][0.588432,0.077991,0][0.601713,0.710126,-0.367336][-0.291576,0.956344,-0.019738][0.588432,0.077991,0][0.163617,0.560188,-0.236956][-0.19793,0.979828,-0.0275788][0.622112,0.186383,0][0.175568,0.57627,0.00280211][-0.204738,0.977905,-0.0422516][0.684046,0.183449,0][0.140062,0.560958,-0.691163][-0.179981,0.983479,0.0193906][0.504781,0.192228,0][0.163617,0.560188,-0.236956][-0.19793,0.979828,-0.0275788][0.622112,0.186383,0][0.258774,0.593068,-0.640187][-0.289874,0.956923,0.0164961][0.517949,0.162841,0][2.82214e-007,0.549114,-0.23307][4.89427e-007,0.999649,-0.0264903][0.623115,0.22695,0][0.163617,0.560188,-0.236956][-0.19793,0.979828,-0.0275788][0.622112,0.186383,0][0.140062,0.560958,-0.691163][-0.179981,0.983479,0.0193906][0.504781,0.192228,0][0.140062,0.560958,-0.691163][-0.179981,0.983479,0.0193906][0.504781,0.192228,0][3.2653e-007,0.548831,-0.741531][4.33738e-007,0.999974,0.00724544][0.49177,0.22695,0][2.82214e-007,0.549114,-0.23307][4.89427e-007,0.999649,-0.0264903][0.623115,0.22695,0][0.193497,0.608524,0.675266][-0.171393,0.983085,-0.0645627][0.857757,0.179063,0][2.19507e-007,0.583506,0.671799][4.78642e-007,0.996272,-0.0862719][0.856861,0.227016,0][2.06991e-007,0.642073,1.13441][4.04088e-007,0.994194,-0.107604][0.976363,0.227127,0][2.06991e-007,0.642073,1.13441][4.04088e-007,0.994194,-0.107604][0.976363,0.227127,0][0.298124,0.649169,1.12267][-0.110627,0.991925,-0.0620266][0.97333,0.153186,0][0.193497,0.608524,0.675266][-0.171393,0.983085,-0.0645627][0.857757,0.179063,0][0.550727,0.699008,0.990038][-0.212881,0.977014,0.0112141][0.939069,0.090618,0][0.702001,0.742541,0.753559][-0.318222,0.948011,-0.00314032][0.877981,0.053174,0][0.193497,0.608524,0.675266][-0.171393,0.983085,-0.0645627][0.857757,0.179063,0][0.193497,0.608524,0.675266][-0.171393,0.983085,-0.0645627][0.857757,0.179063,0][0.298124,0.649169,1.12267][-0.110627,0.991925,-0.0620266][0.97333,0.153186,0][0.550727,0.699008,0.990038][-0.212881,0.977014,0.0112141][0.939069,0.090618,0][0.180334,0.587348,0.24833][-0.196053,0.980142,-0.0297618][0.747471,0.182288,0][0.181274,0.593669,0.459988][-0.184675,0.982244,-0.0330513][0.802146,0.182067,0][0.823886,0.782313,0.437464][-0.350653,0.936501,0.00277404][0.796328,0.023014,0][0.823886,0.782313,0.437464][-0.350653,0.936501,0.00277404][0.796328,0.023014,0][0.850521,0.801829,0.0833352][-0.301883,0.953037,-0.0242425][0.704849,0.016444,0][0.180334,0.587348,0.24833][-0.196053,0.980142,-0.0297618][0.747471,0.182288,0][0.767809,0.713093,-0.426345][0.428359,0.702632,-0.568169][0.306858,0.89392,0][0.942867,0.765968,-0.216007][0.604144,0.6483,-0.463375][0.419162,0.912816,0][0.961506,0.654289,-0.247349][0.786463,0.341188,-0.514846][0.412345,0.883733,0][0.961506,0.654289,-0.247349][0.786463,0.341188,-0.514846][0.412345,0.883733,0][0.790876,0.629613,-0.454907][0.632714,0.406469,-0.659133][0.307145,0.874914,0][0.767809,0.713093,-0.426345][0.428359,0.702632,-0.568169][0.306858,0.89392,0][0.554898,0.65007,-0.636804][0.293246,0.742887,-0.60177][0.225007,0.871396,0][0.767809,0.713093,-0.426345][0.428359,0.702632,-0.568169][0.306858,0.89392,0][0.790876,0.629613,-0.454907][0.632714,0.406469,-0.659133][0.307145,0.874914,0][0.790876,0.629613,-0.454907][0.632714,0.406469,-0.659133][0.307145,0.874914,0][0.569796,0.588453,-0.663266][0.509353,0.429862,-0.745505][0.224954,0.860204,0][0.554898,0.65007,-0.636804][0.293246,0.742887,-0.60177][0.225007,0.871396,0][0.303384,0.579897,-0.816149][0.169652,0.74009,-0.650757][0.14334,0.846318,0][0.554898,0.65007,-0.636804][0.293246,0.742887,-0.60177][0.225007,0.871396,0][0.569796,0.588453,-0.663266][0.509353,0.429862,-0.745505][0.224954,0.860204,0][0.569796,0.588453,-0.663266][0.509353,0.429862,-0.745505][0.224954,0.860204,0][0.323859,0.5186,-0.835979][0.385235,0.421208,-0.821084][0.147259,0.83524,0][0.303384,0.579897,-0.816149][0.169652,0.74009,-0.650757][0.14334,0.846318,0][0.369956,0.248634,-0.847398][0.590008,0.419661,-0.689764][0.158934,0.738758,0][0.266523,0.27629,-0.94409][0.667877,0.398038,-0.628892][0.121998,0.748642,0][0.292201,0.361605,-0.890561][0.668063,0.129486,-0.732752][0.133207,0.779132,0][0.292201,0.361605,-0.890561][0.668063,0.129486,-0.732752][0.133207,0.779132,0][0.378747,0.397432,-0.806556][0.656242,-0.010342,-0.754479][0.166127,0.791937,0][0.369956,0.248634,-0.847398][0.590008,0.419661,-0.689764][0.158934,0.738758,0][0.362761,0.567049,1.28196][0.254904,0.235442,0.937865][0.887841,0.852555,0][1.53952e-007,0.565717,1.32463][0,0.241187,0.970479][0.960103,0.852079,0][0,0.403359,1.36505][0,0.175048,0.98456][0.960103,0.794055,0][0,0.403359,1.36505][0,0.175048,0.98456][0.960103,0.794055,0][0.37334,0.404642,1.31998][0.262887,0.172349,0.949308][0.888,0.794513,0][0.362761,0.567049,1.28196][0.254904,0.235442,0.937865][0.887841,0.852555,0][0.703517,0.424923,1.16813][0.630154,0.175608,0.756352][0.812163,0.801762,0][0.674653,0.607751,1.1357][0.622414,0.234287,0.7468][0.813748,0.867101,0][0.362761,0.567049,1.28196][0.254904,0.235442,0.937865][0.887841,0.852555,0][0.362761,0.567049,1.28196][0.254904,0.235442,0.937865][0.887841,0.852555,0][0.37334,0.404642,1.31998][0.262887,0.172349,0.949308][0.888,0.794513,0][0.703517,0.424923,1.16813][0.630154,0.175608,0.756352][0.812163,0.801762,0][0.933413,0.437558,0.828259][0.850884,0.218342,0.477831][0.720435,0.806277,0][0.880986,0.666894,0.79795][0.850927,0.253571,0.460028][0.720763,0.888238,0][0.674653,0.607751,1.1357][0.622414,0.234287,0.7468][0.813748,0.867101,0][0.674653,0.607751,1.1357][0.622414,0.234287,0.7468][0.813748,0.867101,0][0.703517,0.424923,1.16813][0.630154,0.175608,0.756352][0.812163,0.801762,0][0.933413,0.437558,0.828259][0.850884,0.218342,0.477831][0.720435,0.806277,0][1.09299,0.445917,0.44911][0.934848,0.239268,0.262316][0.606963,0.809265,0][1.02635,0.70192,0.439184][0.932514,0.257339,0.253367][0.607855,0.900756,0][0.880986,0.666894,0.79795][0.850927,0.253571,0.460028][0.720763,0.888238,0][0.880986,0.666894,0.79795][0.850927,0.253571,0.460028][0.720763,0.888238,0][0.933413,0.437558,0.828259][0.850884,0.218342,0.477831][0.720435,0.806277,0][1.09299,0.445917,0.44911][0.934848,0.239268,0.262316][0.606963,0.809265,0][1.02635,0.70192,0.439184][0.932514,0.257339,0.253367][0.607855,0.900756,0][1.09299,0.445917,0.44911][0.934848,0.239268,0.262316][0.606963,0.809265,0][1.14678,0.461414,0.0344072][0.961759,0.258855,-0.0895174][0.495884,0.814803,0][1.14678,0.461414,0.0344072][0.961759,0.258855,-0.0895174][0.495884,0.814803,0][1.07226,0.706524,0.0408702][0.944587,0.301964,-0.128739][0.497106,0.902401,0][1.02635,0.70192,0.439184][0.932514,0.257339,0.253367][0.607855,0.900756,0][1.07067,0.460097,-0.200487][0.86736,0.319379,-0.381686][0.427553,0.806989,0][0.961506,0.654289,-0.247349][0.786463,0.341188,-0.514846][0.412345,0.883733,0][1.07226,0.706524,0.0408702][0.944587,0.301964,-0.128739][0.497106,0.902401,0][1.07226,0.706524,0.0408702][0.944587,0.301964,-0.128739][0.497106,0.902401,0][1.14678,0.461414,0.0344072][0.961759,0.258855,-0.0895174][0.495884,0.814803,0][1.07067,0.460097,-0.200487][0.86736,0.319379,-0.381686][0.427553,0.806989,0][-3.09665e-007,-0.912723,-1.43618][-3.73148e-007,-0.836829,0.547464][0.130362,0.033398,0][0.414608,-0.912371,-1.39681][-0.114566,-0.855428,0.505091][0.134121,0.073877,0][0.356478,-0.585343,-1.20655][-0.229265,-0.562397,0.794448][0.155546,0.067485,0][0.356478,-0.585343,-1.20655][-0.229265,-0.562397,0.794448][0.155546,0.067485,0][-1.69867e-007,-0.585748,-1.25184][-2.71326e-007,-0.546378,0.837539][0.151508,0.033729,0][-3.09665e-007,-0.912723,-1.43618][-3.73148e-007,-0.836829,0.547464][0.130362,0.033398,0][0.681454,-0.548528,1.10267][-0.471479,-0.598796,-0.647419][0.363668,0.097527,0][0.792025,-0.717188,1.26857][0.00897965,-0.999089,0.0417089][0.382862,0.109921,0][0.414608,-0.715719,1.43284][0.00985831,-0.997567,0.069014][0.398063,0.073364,0][0.414608,-0.715719,1.43284][0.00985831,-0.997567,0.069014][0.398063,0.073364,0][0.356478,-0.54748,1.21991][-0.22799,-0.573469,-0.786864][0.374428,0.067043,0][0.681454,-0.548528,1.10267][-0.471479,-0.598796,-0.647419][0.363668,0.097527,0][1.09154,-0.717178,0.929196][-0.0308784,-0.998912,-0.0349599][0.351363,0.138976,0][0.792025,-0.717188,1.26857][0.00897965,-0.999089,0.0417089][0.382862,0.109921,0][0.681454,-0.548528,1.10267][-0.471479,-0.598796,-0.647419][0.363668,0.097527,0][0.681454,-0.548528,1.10267][-0.471479,-0.598796,-0.647419][0.363668,0.097527,0][0.939356,-0.551139,0.810573][-0.668982,-0.608848,-0.426341][0.337398,0.121758,0][1.09154,-0.717178,0.929196][-0.0308784,-0.998912,-0.0349599][0.351363,0.138976,0][1.28385,-0.706195,0.502165][-0.157039,-0.98753,0.0111139][0.311629,0.157673,0][1.09154,-0.717178,0.929196][-0.0308784,-0.998912,-0.0349599][0.351363,0.138976,0][0.939356,-0.551139,0.810573][-0.668982,-0.608848,-0.426341][0.337398,0.121758,0][0.939356,-0.551139,0.810573][-0.668982,-0.608848,-0.426341][0.337398,0.121758,0][1.10494,-0.547683,0.44245][-0.750806,-0.626113,-0.210409][0.304261,0.137351,0][1.28385,-0.706195,0.502165][-0.157039,-0.98753,0.0111139][0.311629,0.157673,0][1.28385,-0.706195,0.502165][-0.157039,-0.98753,0.0111139][0.311629,0.157673,0][1.10494,-0.547683,0.44245][-0.750806,-0.626113,-0.210409][0.304261,0.137351,0][1.16999,-0.55823,0.035569][-0.774542,-0.6323,0.0167868][0.2675,0.142779,0][1.16999,-0.55823,0.035569][-0.774542,-0.6323,0.0167868][0.2675,0.142779,0][1.35744,-0.731261,0.030143][-0.263672,-0.961381,0.078893][0.26755,0.164181,0][1.28385,-0.706195,0.502165][-0.157039,-0.98753,0.0111139][0.311629,0.157673,0][1.10494,-0.556065,-0.373541][-0.752786,-0.609923,0.247602][0.230714,0.137511,0][1.28385,-0.772564,-0.442914][-0.349295,-0.916074,0.196979][0.223442,0.157865,0][1.35744,-0.731261,0.030143][-0.263672,-0.961381,0.078893][0.26755,0.164181,0][1.35744,-0.731261,0.030143][-0.263672,-0.961381,0.078893][0.26755,0.164181,0][1.16999,-0.55823,0.035569][-0.774542,-0.6323,0.0167868][0.2675,0.142779,0][1.10494,-0.556065,-0.373541][-0.752786,-0.609923,0.247602][0.230714,0.137511,0][0.939356,-0.565011,-0.741552][-0.661677,-0.595577,0.45549][0.197504,0.122064,0][1.09154,-0.828246,-0.869067][-0.306511,-0.895327,0.323172][0.18362,0.139342,0][1.28385,-0.772564,-0.442914][-0.349295,-0.916074,0.196979][0.223442,0.157865,0][1.28385,-0.772564,-0.442914][-0.349295,-0.916074,0.196979][0.223442,0.157865,0][1.10494,-0.556065,-0.373541][-0.752786,-0.609923,0.247602][0.230714,0.137511,0][0.939356,-0.565011,-0.741552][-0.661677,-0.595577,0.45549][0.197504,0.122064,0][0.681454,-0.567622,-1.03365][-0.48197,-0.581666,0.655262][0.17112,0.097948,0][0.792025,-0.883305,-1.20593][-0.224068,-0.865032,0.448903][0.151984,0.110426,0][1.09154,-0.828246,-0.869067][-0.306511,-0.895327,0.323172][0.18362,0.139342,0][1.09154,-0.828246,-0.869067][-0.306511,-0.895327,0.323172][0.18362,0.139342,0][0.939356,-0.565011,-0.741552][-0.661677,-0.595577,0.45549][0.197504,0.122064,0][0.681454,-0.567622,-1.03365][-0.48197,-0.581666,0.655262][0.17112,0.097948,0][0.356478,-0.585343,-1.20655][-0.229265,-0.562397,0.794448][0.155546,0.067485,0][0.414608,-0.912371,-1.39681][-0.114566,-0.855428,0.505091][0.134121,0.073877,0][0.792025,-0.883305,-1.20593][-0.224068,-0.865032,0.448903][0.151984,0.110426,0][0.792025,-0.883305,-1.20593][-0.224068,-0.865032,0.448903][0.151984,0.110426,0][0.681454,-0.567622,-1.03365][-0.48197,-0.581666,0.655262][0.17112,0.097948,0][0.356478,-0.585343,-1.20655][-0.229265,-0.562397,0.794448][0.155546,0.067485,0][0.57699,-0.889461,-1.95562][0.164933,0.764239,-0.623487][0.11987,0.326643,0][-2.48244e-007,-0.897365,-2.05499][3.48292e-007,0.759449,-0.650567][0.045197,0.326999,0][-2.20608e-007,-0.784828,-1.75729][4.31684e-007,0.936404,-0.350924][0.045286,0.372967,0][-2.20608e-007,-0.784828,-1.75729][4.31684e-007,0.936404,-0.350924][0.045286,0.372967,0][0.496225,-0.78795,-1.67069][0.0760479,0.936919,-0.341173][0.117371,0.371416,0][0.57699,-0.889461,-1.95562][0.164933,0.764239,-0.623487][0.11987,0.326643,0][1.10089,-0.825966,-1.67919][0.27199,0.825624,-0.494334][0.210547,0.326013,0][0.57699,-0.889461,-1.95562][0.164933,0.764239,-0.623487][0.11987,0.326643,0][0.496225,-0.78795,-1.67069][0.0760479,0.936919,-0.341173][0.117371,0.371416,0][0.496225,-0.78795,-1.67069][0.0760479,0.936919,-0.341173][0.117371,0.371416,0][0.947269,-0.758089,-1.44855][0.112047,0.963235,-0.244181][0.208953,0.370468,0][1.10089,-0.825966,-1.67919][0.27199,0.825624,-0.494334][0.210547,0.326013,0][1.50547,-0.758417,-1.21366][0.34696,0.890355,-0.294765][0.291929,0.325103,0][1.10089,-0.825966,-1.67919][0.27199,0.825624,-0.494334][0.210547,0.326013,0][0.947269,-0.758089,-1.44855][0.112047,0.963235,-0.244181][0.208953,0.370468,0][0.947269,-0.758089,-1.44855][0.112047,0.963235,-0.244181][0.208953,0.370468,0][1.32204,-0.738771,-1.03811][0.0969245,0.985762,-0.137399][0.291925,0.367597,0][1.50547,-0.758417,-1.21366][0.34696,0.890355,-0.294765][0.291929,0.325103,0][1.71937,-0.696388,-0.622723][0.329404,0.918116,-0.220353][0.387869,0.325023,0][1.50547,-0.758417,-1.21366][0.34696,0.890355,-0.294765][0.291929,0.325103,0][1.32204,-0.738771,-1.03811][0.0969245,0.985762,-0.137399][0.291925,0.367597,0][1.32204,-0.738771,-1.03811][0.0969245,0.985762,-0.137399][0.291925,0.367597,0][1.49459,-0.68115,-0.531945][0.0471668,0.989448,-0.136996][0.38786,0.369055,0][1.71937,-0.696388,-0.622723][0.329404,0.918116,-0.220353][0.387869,0.325023,0][1.75687,-0.553424,0.0279701][0.0379683,0.978725,-0.201633][0.505051,0.325525,0][1.71937,-0.696388,-0.622723][0.329404,0.918116,-0.220353][0.387869,0.325023,0][1.49459,-0.68115,-0.531945][0.0471668,0.989448,-0.136996][0.38786,0.369055,0][1.49459,-0.68115,-0.531945][0.0471668,0.989448,-0.136996][0.38786,0.369055,0][1.56176,-0.632847,0.027514][-0.258313,0.961747,-0.0911953][0.504639,0.371214,0][1.75687,-0.553424,0.0279701][0.0379683,0.978725,-0.201633][0.505051,0.325525,0][1.49792,-0.533546,0.564781][-0.494781,0.819549,-0.289018][0.623028,0.370987,0][1.65825,-0.374011,0.66569][-0.113148,0.947248,-0.299866][0.623033,0.326223,0][1.75687,-0.553424,0.0279701][0.0379683,0.978725,-0.201633][0.505051,0.325525,0][1.75687,-0.553424,0.0279701][0.0379683,0.978725,-0.201633][0.505051,0.325525,0][1.56176,-0.632847,0.027514][-0.258313,0.961747,-0.0911953][0.504639,0.371214,0][1.49792,-0.533546,0.564781][-0.494781,0.819549,-0.289018][0.623028,0.370987,0][1.65825,-0.374011,0.66569][-0.113148,0.947248,-0.299866][0.623033,0.326223,0][1.49792,-0.533546,0.564781][-0.494781,0.819549,-0.289018][0.623028,0.370987,0][1.26598,-0.451562,1.05627][-0.560605,0.695834,-0.44893][0.720577,0.37184,0][1.26598,-0.451562,1.05627][-0.560605,0.695834,-0.44893][0.720577,0.37184,0][1.41955,-0.21751,1.16868][-0.166753,0.936193,-0.309413][0.720573,0.32611,0][1.65825,-0.374011,0.66569][-0.113148,0.947248,-0.299866][0.623033,0.326223,0][1.41955,-0.21751,1.16868][-0.166753,0.936193,-0.309413][0.720573,0.32611,0][1.26598,-0.451562,1.05627][-0.560605,0.695834,-0.44893][0.720577,0.37184,0][0.94727,-0.433412,1.4591][-0.426735,0.625385,-0.653292][0.809374,0.372535,0][0.94727,-0.433412,1.4591][-0.426735,0.625385,-0.653292][0.809374,0.372535,0][1.10089,-0.155304,1.54287][-0.16139,0.894252,-0.417452][0.809375,0.327138,0][1.41955,-0.21751,1.16868][-0.166753,0.936193,-0.309413][0.720573,0.32611,0][0.57699,-0.0686596,1.78768][-0.0836992,0.814042,-0.574743][0.913954,0.328011,0][1.10089,-0.155304,1.54287][-0.16139,0.894252,-0.417452][0.809375,0.327138,0][0.94727,-0.433412,1.4591][-0.426735,0.625385,-0.653292][0.809374,0.372535,0][0.94727,-0.433412,1.4591][-0.426735,0.625385,-0.653292][0.809374,0.372535,0][0.496225,-0.38796,1.67504][-0.194908,0.532098,-0.823943][0.913484,0.373909,0][0.57699,-0.0686596,1.78768][-0.0836992,0.814042,-0.574743][0.913954,0.328011,0][0.57699,-0.0686596,1.78768][-0.0836992,0.814042,-0.574743][0.913954,0.328011,0][0.496225,-0.38796,1.67504][-0.194908,0.532098,-0.823943][0.913484,0.373909,0][-3.06327e-007,-0.323828,1.73769][2.34301e-007,0.48672,-0.873558][0.971591,0.376293,0][-3.06327e-007,-0.323828,1.73769][2.34301e-007,0.48672,-0.873558][0.971591,0.376293,0][-1.81671e-007,-0.0392693,1.86389][4.12382e-007,0.841837,-0.539732][0.971447,0.329715,0][0.57699,-0.0686596,1.78768][-0.0836992,0.814042,-0.574743][0.913954,0.328011,0][1.27922,-0.313167,0.493701][0.682731,0.696261,0.221582][0.622866,0.52293,0][1.36029,-0.323291,0.0239871][0.823183,0.567496,-0.0178298][0.506408,0.523675,0][1.34213,-0.316286,0.0298991][0.714138,0.699689,-0.0210278][0.505488,0.536958,0][1.34213,-0.316286,0.0298991][0.714138,0.699689,-0.0210278][0.505488,0.536958,0][1.23055,-0.315921,0.479132][0.592291,0.780935,0.198323][0.622663,0.53743,0][1.27922,-0.313167,0.493701][0.682731,0.696261,0.221582][0.622866,0.52293,0][1.23055,-0.317536,-0.429376][0.579083,0.785732,-0.21746][0.383051,0.537765,0][1.13003,0.129552,-0.361996][0.88379,0.305597,-0.354297][0.395888,0.696201,0][1.23943,0.0759204,0.0344071][0.96705,0.249372,-0.0512548][0.496453,0.670244,0][1.23943,0.0759204,0.0344071][0.96705,0.249372,-0.0512548][0.496453,0.670244,0][1.34213,-0.316286,0.0298991][0.714138,0.699689,-0.0210278][0.505488,0.536958,0][1.23055,-0.317536,-0.429376][0.579083,0.785732,-0.21746][0.383051,0.537765,0][1.34213,-0.316286,0.0298991][0.714138,0.699689,-0.0210278][0.505488,0.536958,0][1.23943,0.0759204,0.0344071][0.96705,0.249372,-0.0512548][0.496453,0.670244,0][1.20089,-0.0211027,0.471694][0.940283,0.180333,0.288699][0.604634,0.64236,0][1.20089,-0.0211027,0.471694][0.940283,0.180333,0.288699][0.604634,0.64236,0][1.23055,-0.315921,0.479132][0.592291,0.780935,0.198323][0.622663,0.53743,0][1.34213,-0.316286,0.0298991][0.714138,0.699689,-0.0210278][0.505488,0.536958,0][1.56176,-0.632847,0.027514][-0.258313,0.961747,-0.0911953][0.504639,0.371214,0][1.42913,-0.647023,0.030102][-0.0603532,0.997916,-0.0228221][0.506976,0.417038,0][1.32411,-0.629167,0.518181][-0.212051,0.968775,-0.128492][0.622969,0.418523,0][1.32411,-0.629167,0.518181][-0.212051,0.968775,-0.128492][0.622969,0.418523,0][1.49792,-0.533546,0.564781][-0.494781,0.819549,-0.289018][0.623028,0.370987,0][1.56176,-0.632847,0.027514][-0.258313,0.961747,-0.0911953][0.504639,0.371214,0][-2.20608e-007,-0.784828,-1.75729][4.31684e-007,0.936404,-0.350924][0.045286,0.372967,0][-1.95161e-007,-0.67784,-1.46482][4.0879e-007,0.940736,-0.339138][0.045376,0.417384,0][0.41833,-0.676217,-1.41866][0.0896029,0.936254,-0.339706][0.113491,0.418482,0][0.41833,-0.676217,-1.41866][0.0896029,0.936254,-0.339706][0.113491,0.418482,0][0.496225,-0.78795,-1.67069][0.0760479,0.936919,-0.341173][0.117371,0.371416,0][-2.20608e-007,-0.784828,-1.75729][4.31684e-007,0.936404,-0.350924][0.045286,0.372967,0][0.947269,-0.758089,-1.44855][0.112047,0.963235,-0.244181][0.208953,0.370468,0][0.496225,-0.78795,-1.67069][0.0760479,0.936919,-0.341173][0.117371,0.371416,0][0.41833,-0.676217,-1.41866][0.0896029,0.936254,-0.339706][0.113491,0.418482,0][0.41833,-0.676217,-1.41866][0.0896029,0.936254,-0.339706][0.113491,0.418482,0][0.799104,-0.670185,-1.2226][0.159537,0.959552,-0.231966][0.20817,0.417868,0][0.947269,-0.758089,-1.44855][0.112047,0.963235,-0.244181][0.208953,0.370468,0][1.32204,-0.738771,-1.03811][0.0969245,0.985762,-0.137399][0.291925,0.367597,0][0.947269,-0.758089,-1.44855][0.112047,0.963235,-0.244181][0.208953,0.370468,0][0.799104,-0.670185,-1.2226][0.159537,0.959552,-0.231966][0.20817,0.417868,0][0.799104,-0.670185,-1.2226][0.159537,0.959552,-0.231966][0.20817,0.417868,0][1.10114,-0.664549,-0.88099][0.173195,0.972845,-0.153542][0.29192,0.41778,0][1.32204,-0.738771,-1.03811][0.0969245,0.985762,-0.137399][0.291925,0.367597,0][1.26598,-0.451562,1.05627][-0.560605,0.695834,-0.44893][0.720577,0.37184,0][1.11035,-0.623882,0.944046][-0.220611,0.957878,-0.183851][0.720583,0.416319,0][0.805824,-0.622292,1.2883][-0.171671,0.951054,-0.256953][0.809373,0.415134,0][0.805824,-0.622292,1.2883][-0.171671,0.951054,-0.256953][0.809373,0.415134,0][0.94727,-0.433412,1.4591][-0.426735,0.625385,-0.653292][0.809374,0.372535,0][1.26598,-0.451562,1.05627][-0.560605,0.695834,-0.44893][0.720577,0.37184,0][0.496225,-0.38796,1.67504][-0.194908,0.532098,-0.823943][0.913484,0.373909,0][0.94727,-0.433412,1.4591][-0.426735,0.625385,-0.653292][0.809374,0.372535,0][0.805824,-0.622292,1.2883][-0.171671,0.951054,-0.256953][0.809373,0.415134,0][0.805824,-0.622292,1.2883][-0.171671,0.951054,-0.256953][0.809373,0.415134,0][0.421863,-0.620654,1.46244][-0.0888576,0.940781,-0.327164][0.913051,0.416465,0][0.496225,-0.38796,1.67504][-0.194908,0.532098,-0.823943][0.913484,0.373909,0][0.496225,-0.38796,1.67504][-0.194908,0.532098,-0.823943][0.913484,0.373909,0][0.421863,-0.620654,1.46244][-0.0888576,0.940781,-0.327164][0.913051,0.416465,0][-4.27596e-007,-0.61901,1.51481][4.01754e-007,0.916047,-0.401071][0.971705,0.41767,0][-4.27596e-007,-0.61901,1.51481][4.01754e-007,0.916047,-0.401071][0.971705,0.41767,0][-3.06327e-007,-0.323828,1.73769][2.34301e-007,0.48672,-0.873558][0.971591,0.376293,0][0.496225,-0.38796,1.67504][-0.194908,0.532098,-0.823943][0.913484,0.373909,0][1.32411,-0.629167,0.518181][-0.212051,0.968775,-0.128492][0.622969,0.418523,0][1.28028,-0.628834,0.501061][0.64343,0.739138,0.199179][0.622967,0.428731,0][1.06824,-0.613287,0.909145][0.623443,0.661486,0.416839][0.72059,0.430116,0][1.06824,-0.613287,0.909145][0.623443,0.661486,0.416839][0.72059,0.430116,0][1.11035,-0.623882,0.944046][-0.220611,0.957878,-0.183851][0.720583,0.416319,0][1.32411,-0.629167,0.518181][-0.212051,0.968775,-0.128492][0.622969,0.418523,0][1.32411,-0.629167,0.518181][-0.212051,0.968775,-0.128492][0.622969,0.418523,0][1.42913,-0.647023,0.030102][-0.0603532,0.997916,-0.0228221][0.506976,0.417038,0][1.37948,-0.647023,0.030102][0.629402,0.776921,-0.0157228][0.506828,0.429766,0][1.37948,-0.647023,0.030102][0.629402,0.776921,-0.0157228][0.506828,0.429766,0][1.28028,-0.628834,0.501061][0.64343,0.739138,0.199179][0.622967,0.428731,0][1.32411,-0.629167,0.518181][-0.212051,0.968775,-0.128492][0.622969,0.418523,0][1.32512,-0.651316,-0.462713][0.0694968,0.995845,-0.0588404][0.387885,0.420196,0][1.10114,-0.664549,-0.88099][0.173195,0.972845,-0.153542][0.29192,0.41778,0][1.06824,-0.655784,-0.853873][0.582983,0.692815,-0.424428][0.291918,0.429017,0][1.06824,-0.655784,-0.853873][0.582983,0.692815,-0.424428][0.291918,0.429017,0][1.28028,-0.650662,-0.445207][0.634237,0.736102,-0.236424][0.387882,0.429184,0][1.32512,-0.651316,-0.462713][0.0694968,0.995845,-0.0588404][0.387885,0.420196,0][1.32512,-0.651316,-0.462713][0.0694968,0.995845,-0.0588404][0.387885,0.420196,0][1.42913,-0.647023,0.030102][-0.0603532,0.997916,-0.0228221][0.506976,0.417038,0][1.56176,-0.632847,0.027514][-0.258313,0.961747,-0.0911953][0.504639,0.371214,0][1.56176,-0.632847,0.027514][-0.258313,0.961747,-0.0911953][0.504639,0.371214,0][1.49459,-0.68115,-0.531945][0.0471668,0.989448,-0.136996][0.38786,0.369055,0][1.32512,-0.651316,-0.462713][0.0694968,0.995845,-0.0588404][0.387885,0.420196,0][0.491039,-0.491136,1.69358][0.189181,-0.599963,0.777338][0.433118,0.083603,0][0.589458,-0.123165,1.84729][0.286631,-0.0525619,0.956598][0.461618,0.089223,0][-2.14646e-007,-0.0970813,1.92574][0,-0.0338154,0.999428][0.471493,0.033729,0][-2.14646e-007,-0.0970813,1.92574][0,-0.0338154,0.999428][0.471493,0.033729,0][-3.82071e-007,-0.479491,1.75505][-2.79219e-007,-0.589156,0.80802][0.439249,0.032757,0][0.491039,-0.491136,1.69358][0.189181,-0.599963,0.777338][0.433118,0.083603,0][0.937414,-0.529113,1.48242][0.399731,-0.65545,0.640781][0.412594,0.129512,0][1.12463,-0.219168,1.58506][0.582975,-0.18773,0.790505][0.444827,0.148688,0][0.589458,-0.123165,1.84729][0.286631,-0.0525619,0.956598][0.461618,0.089223,0][0.589458,-0.123165,1.84729][0.286631,-0.0525619,0.956598][0.461618,0.089223,0][0.491039,-0.491136,1.69358][0.189181,-0.599963,0.777338][0.433118,0.083603,0][0.937414,-0.529113,1.48242][0.399731,-0.65545,0.640781][0.412594,0.129512,0][1.29977,-0.578301,1.06085][0.510307,-0.751778,0.417632][0.372873,0.169251,0][1.48044,-0.291836,1.17237][0.808413,-0.197368,0.554539][0.394684,0.202347,0][1.12463,-0.219168,1.58506][0.582975,-0.18773,0.790505][0.444827,0.148688,0][1.12463,-0.219168,1.58506][0.582975,-0.18773,0.790505][0.444827,0.148688,0][0.937414,-0.529113,1.48242][0.399731,-0.65545,0.640781][0.412594,0.129512,0][1.29977,-0.578301,1.06085][0.510307,-0.751778,0.417632][0.372873,0.169251,0][1.73962,-0.439892,0.655097][0.950031,-0.118763,0.288679][0.334299,0.225713,0][1.48044,-0.291836,1.17237][0.808413,-0.197368,0.554539][0.394684,0.202347,0][1.29977,-0.578301,1.06085][0.510307,-0.751778,0.417632][0.372873,0.169251,0][1.29977,-0.578301,1.06085][0.510307,-0.751778,0.417632][0.372873,0.169251,0][1.58629,-0.597603,0.596417][0.460296,-0.843063,0.278159][0.322969,0.189989,0][1.73962,-0.439892,0.655097][0.950031,-0.118763,0.288679][0.334299,0.225713,0][1.83769,-0.621479,0.0155281][0.951859,-0.30461,0.0343144][0.267036,0.239652,0][1.73962,-0.439892,0.655097][0.950031,-0.118763,0.288679][0.334299,0.225713,0][1.58629,-0.597603,0.596417][0.460296,-0.843063,0.278159][0.322969,0.189989,0][1.58629,-0.597603,0.596417][0.460296,-0.843063,0.278159][0.322969,0.189989,0][1.681,-0.675451,0.028779][0.271522,-0.952978,0.134571][0.267611,0.197218,0][1.83769,-0.621479,0.0155281][0.951859,-0.30461,0.0343144][0.267036,0.239652,0][1.56521,-0.775537,-0.544065][0.0785415,-0.987956,0.133321][0.212221,0.190231,0][1.76771,-0.774269,-0.637966][0.781352,-0.616468,-0.097243][0.197772,0.226018,0][1.83769,-0.621479,0.0155281][0.951859,-0.30461,0.0343144][0.267036,0.239652,0][1.83769,-0.621479,0.0155281][0.951859,-0.30461,0.0343144][0.267036,0.239652,0][1.681,-0.675451,0.028779][0.271522,-0.952978,0.134571][0.267611,0.197218,0][1.56521,-0.775537,-0.544065][0.0785415,-0.987956,0.133321][0.212221,0.190231,0][1.32109,-0.841778,-1.065][0.0648825,-0.99173,0.11073][0.162219,0.169711,0][1.53296,-0.838168,-1.22754][0.650296,-0.704048,-0.285362][0.140942,0.197038,0][1.76771,-0.774269,-0.637966][0.781352,-0.616468,-0.097243][0.197772,0.226018,0][1.76771,-0.774269,-0.637966][0.781352,-0.616468,-0.097243][0.197772,0.226018,0][1.56521,-0.775537,-0.544065][0.0785415,-0.987956,0.133321][0.212221,0.190231,0][1.32109,-0.841778,-1.065][0.0648825,-0.99173,0.11073][0.162219,0.169711,0][0.937414,-0.9227,-1.43071][0.05345,-0.99132,0.120115][0.122346,0.130125,0][1.13495,-0.918382,-1.68613][0.48508,-0.745553,-0.456998][0.091249,0.148424,0][1.53296,-0.838168,-1.22754][0.650296,-0.704048,-0.285362][0.140942,0.197038,0][1.53296,-0.838168,-1.22754][0.650296,-0.704048,-0.285362][0.140942,0.197038,0][1.32109,-0.841778,-1.065][0.0648825,-0.99173,0.11073][0.162219,0.169711,0][0.937414,-0.9227,-1.43071][0.05345,-0.99132,0.120115][0.122346,0.130125,0][0.589458,-0.980766,-1.95898][0.211251,-0.857516,-0.469084][0.063505,0.107014,0][1.13495,-0.918382,-1.68613][0.48508,-0.745553,-0.456998][0.091249,0.148424,0][0.937414,-0.9227,-1.43071][0.05345,-0.99132,0.120115][0.122346,0.130125,0][0.937414,-0.9227,-1.43071][0.05345,-0.99132,0.120115][0.122346,0.130125,0][0.49104,-0.956381,-1.66316][0.00111315,-0.992913,0.118837][0.099134,0.084243,0][0.589458,-0.980766,-1.95898][0.211251,-0.857516,-0.469084][0.063505,0.107014,0][0.589458,-0.980766,-1.95898][0.211251,-0.857516,-0.469084][0.063505,0.107014,0][0.49104,-0.956381,-1.66316][0.00111315,-0.992913,0.118837][0.099134,0.084243,0][-3.06389e-007,-0.959829,-1.73059][-4.36873e-007,-0.992807,0.119724][0.092226,0.033411,0][-3.06389e-007,-0.959829,-1.73059][-4.36873e-007,-0.992807,0.119724][0.092226,0.033411,0][-2.91647e-007,-0.989764,-2.06249][-4.19245e-007,-0.862658,-0.505788][0.049401,0.031072,0][0.589458,-0.980766,-1.95898][0.211251,-0.857516,-0.469084][0.063505,0.107014,0][0.175568,0.57627,0.00280211][-0.204738,0.977905,-0.0422516][0.684046,0.183449,0][0.163617,0.560188,-0.236956][-0.19793,0.979828,-0.0275788][0.622112,0.186383,0][2.82214e-007,0.549114,-0.23307][4.89427e-007,0.999649,-0.0264903][0.623115,0.22695,0][2.82214e-007,0.549114,-0.23307][4.89427e-007,0.999649,-0.0264903][0.623115,0.22695,0][2.65827e-007,0.560426,0.0160691][3.76922e-007,0.999,-0.0447062][0.687473,0.226972,0][0.175568,0.57627,0.00280211][-0.204738,0.977905,-0.0422516][0.684046,0.183449,0][3.0095e-007,0.452059,-0.976766][2.51497e-007,0.463926,-0.885874][0.046177,0.811459,0][0.180833,0.436038,-0.937216][0.252656,0.466912,-0.847442][0.098815,0.805734,0][0.126965,0.324207,-1.00708][0.212482,0.444987,-0.869964][0.08118,0.765767,0][0.126965,0.324207,-1.00708][0.212482,0.444987,-0.869964][0.08118,0.765767,0][2.44075e-007,0.320048,-1.04623][2.42099e-007,0.427924,-0.903815][0.046177,0.76428,0][3.0095e-007,0.452059,-0.976766][2.51497e-007,0.463926,-0.885874][0.046177,0.811459,0][0.21375,0.159201,-1.08041][0.214141,0.463137,-0.860028][0.100551,0.706797,0][0.356212,0.00637001,-1.12741][0.285207,0.441385,-0.850786][0.131317,0.652178,0][0,-0.000837807,-1.18476][1.73264e-007,0.363554,-0.931573][0.046177,0.649602,0][0,-0.000837807,-1.18476][1.73264e-007,0.363554,-0.931573][0.046177,0.649602,0][1.61628e-007,0.132282,-1.12729][2.14034e-007,0.415122,-0.909766][0.046177,0.697176,0][0.21375,0.159201,-1.08041][0.214141,0.463137,-0.860028][0.100551,0.706797,0][0.378747,0.397432,-0.806556][0.656242,-0.010342,-0.754479][0.166127,0.791937,0][0.555984,0.449002,-0.653911][0.671623,-0.0904006,-0.735357][0.224896,0.810367,0][0.572981,0.281684,-0.688148][0.542835,0.415613,-0.729792][0.224814,0.75057,0][0.572981,0.281684,-0.688148][0.542835,0.415613,-0.729792][0.224814,0.75057,0][0.369956,0.248634,-0.847398][0.590008,0.419661,-0.689764][0.158934,0.738758,0][0.378747,0.397432,-0.806556][0.656242,-0.010342,-0.754479][0.166127,0.791937,0][0.555984,0.449002,-0.653911][0.671623,-0.0904006,-0.735357][0.224896,0.810367,0][0.762701,0.499891,-0.471397][0.671489,-0.0816205,-0.736506][0.307877,0.828554,0][0.783955,0.321947,-0.498098][0.560174,0.400223,-0.725277][0.30811,0.764959,0][0.783955,0.321947,-0.498098][0.560174,0.400223,-0.725277][0.30811,0.764959,0][0.572981,0.281684,-0.688148][0.542835,0.415613,-0.729792][0.224814,0.75057,0][0.555984,0.449002,-0.653911][0.671623,-0.0904006,-0.735357][0.224896,0.810367,0][0.762701,0.499891,-0.471397][0.671489,-0.0816205,-0.736506][0.307877,0.828554,0][0.883103,0.516508,-0.361904][0.661921,0.0844491,-0.744801][0.372753,0.834492,0][0.945696,0.381638,-0.354573][0.5244,0.360338,-0.771467][0.376825,0.793634,0][0.945696,0.381638,-0.354573][0.5244,0.360338,-0.771467][0.376825,0.793634,0][0.783955,0.321947,-0.498098][0.560174,0.400223,-0.725277][0.30811,0.764959,0][0.762701,0.499891,-0.471397][0.671489,-0.0816205,-0.736506][0.307877,0.828554,0][0.702001,0.742541,0.753559][-0.318222,0.948011,-0.00314032][0.877981,0.053174,0][0.823886,0.782313,0.437464][-0.350653,0.936501,0.00277404][0.796328,0.023014,0][0.181274,0.593669,0.459988][-0.184675,0.982244,-0.0330513][0.802146,0.182067,0][0.181274,0.593669,0.459988][-0.184675,0.982244,-0.0330513][0.802146,0.182067,0][0.193497,0.608524,0.675266][-0.171393,0.983085,-0.0645627][0.857757,0.179063,0][0.702001,0.742541,0.753559][-0.318222,0.948011,-0.00314032][0.877981,0.053174,0][2.19507e-007,0.583506,0.671799][4.78642e-007,0.996272,-0.0862719][0.856861,0.227016,0][0.193497,0.608524,0.675266][-0.171393,0.983085,-0.0645627][0.857757,0.179063,0][0.181274,0.593669,0.459988][-0.184675,0.982244,-0.0330513][0.802146,0.182067,0][0.181274,0.593669,0.459988][-0.184675,0.982244,-0.0330513][0.802146,0.182067,0][2.35262e-007,0.576585,0.453827][4.95509e-007,0.999578,-0.0290418][0.800555,0.227003,0][2.19507e-007,0.583506,0.671799][4.78642e-007,0.996272,-0.0862719][0.856861,0.227016,0][0.850521,0.801829,0.0833352][-0.301883,0.953037,-0.0242425][0.704849,0.016444,0][0.788395,0.76363,-0.133][-0.331802,0.942943,-0.027686][0.648965,0.031783,0][0.175568,0.57627,0.00280211][-0.204738,0.977905,-0.0422516][0.684046,0.183449,0][0.175568,0.57627,0.00280211][-0.204738,0.977905,-0.0422516][0.684046,0.183449,0][0.180334,0.587348,0.24833][-0.196053,0.980142,-0.0297618][0.747471,0.182288,0][0.850521,0.801829,0.0833352][-0.301883,0.953037,-0.0242425][0.704849,0.016444,0][0.180334,0.587348,0.24833][-0.196053,0.980142,-0.0297618][0.747471,0.182288,0][0.175568,0.57627,0.00280211][-0.204738,0.977905,-0.0422516][0.684046,0.183449,0][2.65827e-007,0.560426,0.0160691][3.76922e-007,0.999,-0.0447062][0.687473,0.226972,0][2.65827e-007,0.560426,0.0160691][3.76922e-007,0.999,-0.0447062][0.687473,0.226972,0][2.49967e-007,0.571379,0.257224][4.90324e-007,0.999334,-0.0364884][0.749768,0.226993,0][0.180334,0.587348,0.24833][-0.196053,0.980142,-0.0297618][0.747471,0.182288,0][0.982815,0.0378026,-0.679487][0.541558,0.629148,-0.557573][0.308704,0.663411,0][1.10197,0.16344,-0.383777][0.743109,0.427418,-0.514881][0.388417,0.708312,0][1.13003,0.129552,-0.361996][0.88379,0.305597,-0.354297][0.395888,0.696201,0][1.13003,0.129552,-0.361996][0.88379,0.305597,-0.354297][0.395888,0.696201,0][1.00542,-0.00567637,-0.697061][0.718021,0.398175,-0.570879][0.308711,0.647873,0][0.982815,0.0378026,-0.679487][0.541558,0.629148,-0.557573][0.308704,0.663411,0][1.13003,0.129552,-0.361996][0.88379,0.305597,-0.354297][0.395888,0.696201,0][1.10197,0.16344,-0.383777][0.743109,0.427418,-0.514881][0.388417,0.708312,0][1.05003,0.445643,-0.243942][0.737868,0.352026,-0.575872][0.414971,0.804529,0][1.05003,0.445643,-0.243942][0.737868,0.352026,-0.575872][0.414971,0.804529,0][1.07067,0.460097,-0.200487][0.86736,0.319379,-0.381686][0.427553,0.806989,0][1.13003,0.129552,-0.361996][0.88379,0.305597,-0.354297][0.395888,0.696201,0][0.711746,-0.0168912,-0.948529][0.420755,0.680747,-0.599624][0.224421,0.643865,0][0.982815,0.0378026,-0.679487][0.541558,0.629148,-0.557573][0.308704,0.663411,0][1.00542,-0.00567637,-0.697061][0.718021,0.398175,-0.570879][0.308711,0.647873,0][1.00542,-0.00567637,-0.697061][0.718021,0.398175,-0.570879][0.308711,0.647873,0][0.726176,-0.0569612,-0.974513][0.513423,0.453288,-0.728648][0.224395,0.629544,0][0.711746,-0.0168912,-0.948529][0.420755,0.680747,-0.599624][0.224421,0.643865,0][0.374543,0.043682,-1.09127][0.404701,0.597077,-0.692615][0.138098,0.665512,0][0.711746,-0.0168912,-0.948529][0.420755,0.680747,-0.599624][0.224421,0.643865,0][0.726176,-0.0569612,-0.974513][0.513423,0.453288,-0.728648][0.224395,0.629544,0][0.726176,-0.0569612,-0.974513][0.513423,0.453288,-0.728648][0.224395,0.629544,0][0.356212,0.00637001,-1.12741][0.285207,0.441385,-0.850786][0.131317,0.652178,0][0.374543,0.043682,-1.09127][0.404701,0.597077,-0.692615][0.138098,0.665512,0][0.21375,0.159201,-1.08041][0.214141,0.463137,-0.860028][0.100551,0.706797,0][0.242697,0.173053,-1.06097][0.398461,0.540581,-0.740946][0.108695,0.711747,0][0.374543,0.043682,-1.09127][0.404701,0.597077,-0.692615][0.138098,0.665512,0][0.374543,0.043682,-1.09127][0.404701,0.597077,-0.692615][0.138098,0.665512,0][0.356212,0.00637001,-1.12741][0.285207,0.441385,-0.850786][0.131317,0.652178,0][0.21375,0.159201,-1.08041][0.214141,0.463137,-0.860028][0.100551,0.706797,0][0.180833,0.436038,-0.937216][0.252656,0.466912,-0.847442][0.098815,0.805734,0][0.210948,0.419694,-0.937207][0.368153,0.39759,-0.840468][0.107202,0.799893,0][0.165042,0.316492,-1.00231][0.313994,0.454592,-0.833519][0.091511,0.76301,0][0.165042,0.316492,-1.00231][0.313994,0.454592,-0.833519][0.091511,0.76301,0][0.126965,0.324207,-1.00708][0.212482,0.444987,-0.869964][0.08118,0.765767,0][0.180833,0.436038,-0.937216][0.252656,0.466912,-0.847442][0.098815,0.805734,0][0.576397,0.559414,-0.675105][0.595818,0.17434,-0.783969][0.224931,0.849826,0][0.340709,0.48659,-0.844386][0.499852,0.269225,-0.823205][0.151121,0.8238,0][0.323859,0.5186,-0.835979][0.385235,0.421208,-0.821084][0.147259,0.83524,0][0.323859,0.5186,-0.835979][0.385235,0.421208,-0.821084][0.147259,0.83524,0][0.569796,0.588453,-0.663266][0.509353,0.429862,-0.745505][0.224954,0.860204,0][0.576397,0.559414,-0.675105][0.595818,0.17434,-0.783969][0.224931,0.849826,0][0.798896,0.600146,-0.465418][0.694476,0.187624,-0.694623][0.307251,0.864383,0][0.576397,0.559414,-0.675105][0.595818,0.17434,-0.783969][0.224931,0.849826,0][0.569796,0.588453,-0.663266][0.509353,0.429862,-0.745505][0.224954,0.860204,0][0.569796,0.588453,-0.663266][0.509353,0.429862,-0.745505][0.224954,0.860204,0][0.790876,0.629613,-0.454907][0.632714,0.406469,-0.659133][0.307145,0.874914,0][0.798896,0.600146,-0.465418][0.694476,0.187624,-0.694623][0.307251,0.864383,0][1.07067,0.460097,-0.200487][0.86736,0.319379,-0.381686][0.427553,0.806989,0][1.05003,0.445643,-0.243942][0.737868,0.352026,-0.575872][0.414971,0.804529,0][0.95447,0.622986,-0.278692][0.725754,0.331199,-0.602983][0.403198,0.872546,0][0.95447,0.622986,-0.278692][0.725754,0.331199,-0.602983][0.403198,0.872546,0][0.961506,0.654289,-0.247349][0.786463,0.341188,-0.514846][0.412345,0.883733,0][1.07067,0.460097,-0.200487][0.86736,0.319379,-0.381686][0.427553,0.806989,0][0.95447,0.622986,-0.278692][0.725754,0.331199,-0.602983][0.403198,0.872546,0][0.798896,0.600146,-0.465418][0.694476,0.187624,-0.694623][0.307251,0.864383,0][0.790876,0.629613,-0.454907][0.632714,0.406469,-0.659133][0.307145,0.874914,0][0.790876,0.629613,-0.454907][0.632714,0.406469,-0.659133][0.307145,0.874914,0][0.961506,0.654289,-0.247349][0.786463,0.341188,-0.514846][0.412345,0.883733,0][0.95447,0.622986,-0.278692][0.725754,0.331199,-0.602983][0.403198,0.872546,0][0.165042,0.316492,-1.00231][0.313994,0.454592,-0.833519][0.091511,0.76301,0][0.242697,0.173053,-1.06097][0.398461,0.540581,-0.740946][0.108695,0.711747,0][0.21375,0.159201,-1.08041][0.214141,0.463137,-0.860028][0.100551,0.706797,0][0.21375,0.159201,-1.08041][0.214141,0.463137,-0.860028][0.100551,0.706797,0][0.126965,0.324207,-1.00708][0.212482,0.444987,-0.869964][0.08118,0.765767,0][0.165042,0.316492,-1.00231][0.313994,0.454592,-0.833519][0.091511,0.76301,0][0.126965,0.324207,-1.00708][0.212482,0.444987,-0.869964][0.08118,0.765767,0][0.21375,0.159201,-1.08041][0.214141,0.463137,-0.860028][0.100551,0.706797,0][1.61628e-007,0.132282,-1.12729][2.14034e-007,0.415122,-0.909766][0.046177,0.697176,0][1.61628e-007,0.132282,-1.12729][2.14034e-007,0.415122,-0.909766][0.046177,0.697176,0][2.44075e-007,0.320048,-1.04623][2.42099e-007,0.427924,-0.903815][0.046177,0.76428,0][0.126965,0.324207,-1.00708][0.212482,0.444987,-0.869964][0.08118,0.765767,0][0.323859,0.5186,-0.835979][0.385235,0.421208,-0.821084][0.147259,0.83524,0][0.340709,0.48659,-0.844386][0.499852,0.269225,-0.823205][0.151121,0.8238,0][0.210948,0.419694,-0.937207][0.368153,0.39759,-0.840468][0.107202,0.799893,0][0.210948,0.419694,-0.937207][0.368153,0.39759,-0.840468][0.107202,0.799893,0][0.180833,0.436038,-0.937216][0.252656,0.466912,-0.847442][0.098815,0.805734,0][0.323859,0.5186,-0.835979][0.385235,0.421208,-0.821084][0.147259,0.83524,0][0.152931,0.524397,-0.895809][0.149265,0.716135,-0.681814][0.092806,0.826483,0][0.180833,0.436038,-0.937216][0.252656,0.466912,-0.847442][0.098815,0.805734,0][3.0095e-007,0.452059,-0.976766][2.51497e-007,0.463926,-0.885874][0.046177,0.811459,0][3.0095e-007,0.452059,-0.976766][2.51497e-007,0.463926,-0.885874][0.046177,0.811459,0][3.29103e-007,0.517404,-0.942382][4.03419e-007,0.718743,-0.695276][0.046177,0.823984,0][0.152931,0.524397,-0.895809][0.149265,0.716135,-0.681814][0.092806,0.826483,0][0.358516,0.632224,1.26671][0.174327,0.61678,0.767589][0.887774,0.865018,0][1.86438e-007,0.630872,1.30841][2.85123e-007,0.661243,0.750171][0.960103,0.864535,0][1.53952e-007,0.565717,1.32463][0,0.241187,0.970479][0.960103,0.852079,0][1.53952e-007,0.565717,1.32463][0,0.241187,0.970479][0.960103,0.852079,0][0.362761,0.567049,1.28196][0.254904,0.235442,0.937865][0.887841,0.852555,0][0.358516,0.632224,1.26671][0.174327,0.61678,0.767589][0.887774,0.865018,0][0.674653,0.607751,1.1357][0.622414,0.234287,0.7468][0.813748,0.867101,0][0.66307,0.681122,1.12268][0.463178,0.608976,0.643905][0.814415,0.882494,0][0.358516,0.632224,1.26671][0.174327,0.61678,0.767589][0.887774,0.865018,0][0.358516,0.632224,1.26671][0.174327,0.61678,0.767589][0.887774,0.865018,0][0.362761,0.567049,1.28196][0.254904,0.235442,0.937865][0.887841,0.852555,0][0.674653,0.607751,1.1357][0.622414,0.234287,0.7468][0.813748,0.867101,0][0.880986,0.666894,0.79795][0.850927,0.253571,0.460028][0.720763,0.888238,0][0.859946,0.758928,0.785787][0.615015,0.671966,0.412574][0.720904,0.908829,0][0.66307,0.681122,1.12268][0.463178,0.608976,0.643905][0.814415,0.882494,0][0.66307,0.681122,1.12268][0.463178,0.608976,0.643905][0.814415,0.882494,0][0.674653,0.607751,1.1357][0.622414,0.234287,0.7468][0.813748,0.867101,0][0.880986,0.666894,0.79795][0.850927,0.253571,0.460028][0.720763,0.888238,0][1.02635,0.70192,0.439184][0.932514,0.257339,0.253367][0.607855,0.900756,0][0.999599,0.804655,0.435201][0.700725,0.681393,0.211394][0.610419,0.925504,0][0.859946,0.758928,0.785787][0.615015,0.671966,0.412574][0.720904,0.908829,0][0.859946,0.758928,0.785787][0.615015,0.671966,0.412574][0.720904,0.908829,0][0.880986,0.666894,0.79795][0.850927,0.253571,0.460028][0.720763,0.888238,0][1.02635,0.70192,0.439184][0.932514,0.257339,0.253367][0.607855,0.900756,0][1.04236,0.80489,0.0434642][0.723668,0.676751,-0.135324][0.50229,0.926726,0][0.999599,0.804655,0.435201][0.700725,0.681393,0.211394][0.610419,0.925504,0][1.02635,0.70192,0.439184][0.932514,0.257339,0.253367][0.607855,0.900756,0][1.02635,0.70192,0.439184][0.932514,0.257339,0.253367][0.607855,0.900756,0][1.07226,0.706524,0.0408702][0.944587,0.301964,-0.128739][0.497106,0.902401,0][1.04236,0.80489,0.0434642][0.723668,0.676751,-0.135324][0.50229,0.926726,0][0.942867,0.765968,-0.216007][0.604144,0.6483,-0.463375][0.419162,0.912816,0][1.04236,0.80489,0.0434642][0.723668,0.676751,-0.135324][0.50229,0.926726,0][1.07226,0.706524,0.0408702][0.944587,0.301964,-0.128739][0.497106,0.902401,0][1.07226,0.706524,0.0408702][0.944587,0.301964,-0.128739][0.497106,0.902401,0][0.961506,0.654289,-0.247349][0.786463,0.341188,-0.514846][0.412345,0.883733,0][0.942867,0.765968,-0.216007][0.604144,0.6483,-0.463375][0.419162,0.912816,0][0.152931,0.524397,-0.895809][0.149265,0.716135,-0.681814][0.092806,0.826483,0][0.303384,0.579897,-0.816149][0.169652,0.74009,-0.650757][0.14334,0.846318,0][0.323859,0.5186,-0.835979][0.385235,0.421208,-0.821084][0.147259,0.83524,0][0.323859,0.5186,-0.835979][0.385235,0.421208,-0.821084][0.147259,0.83524,0][0.180833,0.436038,-0.937216][0.252656,0.466912,-0.847442][0.098815,0.805734,0][0.152931,0.524397,-0.895809][0.149265,0.716135,-0.681814][0.092806,0.826483,0][0.163617,0.560188,-0.236956][-0.19793,0.979828,-0.0275788][0.622112,0.186383,0][0.601713,0.710126,-0.367336][-0.291576,0.956344,-0.019738][0.588432,0.077991,0][0.445699,0.656427,-0.514359][-0.301001,0.953122,-0.0309438][0.550453,0.116591,0][0.445699,0.656427,-0.514359][-0.301001,0.953122,-0.0309438][0.550453,0.116591,0][0.258774,0.593068,-0.640187][-0.289874,0.956923,0.0164961][0.517949,0.162841,0][0.163617,0.560188,-0.236956][-0.19793,0.979828,-0.0275788][0.622112,0.186383,0][0.333722,0.657891,1.20607][-0.036171,0.980434,0.193495][0.889346,0.870651,0][2.03953e-007,0.654293,1.23581][4.28964e-007,0.993915,0.110151][0.960103,0.869366,0][1.86438e-007,0.630872,1.30841][2.85123e-007,0.661243,0.750171][0.960103,0.864535,0][1.86438e-007,0.630872,1.30841][2.85123e-007,0.661243,0.750171][0.960103,0.864535,0][0.358516,0.632224,1.26671][0.174327,0.61678,0.767589][0.887774,0.865018,0][0.333722,0.657891,1.20607][-0.036171,0.980434,0.193495][0.889346,0.870651,0][0.61587,0.709552,1.06715][-0.0166736,0.972633,0.231748][0.817011,0.889114,0][0.333722,0.657891,1.20607][-0.036171,0.980434,0.193495][0.889346,0.870651,0][0.358516,0.632224,1.26671][0.174327,0.61678,0.767589][0.887774,0.865018,0][0.358516,0.632224,1.26671][0.174327,0.61678,0.767589][0.887774,0.865018,0][0.66307,0.681122,1.12268][0.463178,0.608976,0.643905][0.814415,0.882494,0][0.61587,0.709552,1.06715][-0.0166736,0.972633,0.231748][0.817011,0.889114,0][0.859946,0.758928,0.785787][0.615015,0.671966,0.412574][0.720904,0.908829,0][0.792197,0.77945,0.769662][-0.071648,0.986339,0.148329][0.722039,0.913866,0][0.61587,0.709552,1.06715][-0.0166736,0.972633,0.231748][0.817011,0.889114,0][0.61587,0.709552,1.06715][-0.0166736,0.972633,0.231748][0.817011,0.889114,0][0.66307,0.681122,1.12268][0.463178,0.608976,0.643905][0.814415,0.882494,0][0.859946,0.758928,0.785787][0.615015,0.671966,0.412574][0.720904,0.908829,0][0.923251,0.825983,0.434919][-0.037246,0.995943,0.0819218][0.610793,0.930941,0][0.792197,0.77945,0.769662][-0.071648,0.986339,0.148329][0.722039,0.913866,0][0.859946,0.758928,0.785787][0.615015,0.671966,0.412574][0.720904,0.908829,0][0.859946,0.758928,0.785787][0.615015,0.671966,0.412574][0.720904,0.908829,0][0.999599,0.804655,0.435201][0.700725,0.681393,0.211394][0.610419,0.925504,0][0.923251,0.825983,0.434919][-0.037246,0.995943,0.0819218][0.610793,0.930941,0][0.958798,0.83246,0.0597722][0.0456166,0.996747,-0.0664451][0.503377,0.93304,0][0.923251,0.825983,0.434919][-0.037246,0.995943,0.0819218][0.610793,0.930941,0][0.999599,0.804655,0.435201][0.700725,0.681393,0.211394][0.610419,0.925504,0][0.999599,0.804655,0.435201][0.700725,0.681393,0.211394][0.610419,0.925504,0][1.04236,0.80489,0.0434642][0.723668,0.676751,-0.135324][0.50229,0.926726,0][0.958798,0.83246,0.0597722][0.0456166,0.996747,-0.0664451][0.503377,0.93304,0][0.877173,0.797713,-0.17447][-0.0275663,0.98151,-0.189414][0.419011,0.920621,0][0.958798,0.83246,0.0597722][0.0456166,0.996747,-0.0664451][0.503377,0.93304,0][1.04236,0.80489,0.0434642][0.723668,0.676751,-0.135324][0.50229,0.926726,0][1.04236,0.80489,0.0434642][0.723668,0.676751,-0.135324][0.50229,0.926726,0][0.942867,0.765968,-0.216007][0.604144,0.6483,-0.463375][0.419162,0.912816,0][0.877173,0.797713,-0.17447][-0.0275663,0.98151,-0.189414][0.419011,0.920621,0][0.767809,0.713093,-0.426345][0.428359,0.702632,-0.568169][0.306858,0.89392,0][0.696287,0.736347,-0.394979][-0.0784251,0.973963,-0.212709][0.307196,0.89869,0][0.877173,0.797713,-0.17447][-0.0275663,0.98151,-0.189414][0.419011,0.920621,0][0.877173,0.797713,-0.17447][-0.0275663,0.98151,-0.189414][0.419011,0.920621,0][0.942867,0.765968,-0.216007][0.604144,0.6483,-0.463375][0.419162,0.912816,0][0.767809,0.713093,-0.426345][0.428359,0.702632,-0.568169][0.306858,0.89392,0][0.554898,0.65007,-0.636804][0.293246,0.742887,-0.60177][0.225007,0.871396,0][0.507955,0.670568,-0.581313][-0.140712,0.967292,-0.211062][0.224977,0.875182,0][0.696287,0.736347,-0.394979][-0.0784251,0.973963,-0.212709][0.307196,0.89869,0][0.696287,0.736347,-0.394979][-0.0784251,0.973963,-0.212709][0.307196,0.89869,0][0.767809,0.713093,-0.426345][0.428359,0.702632,-0.568169][0.306858,0.89392,0][0.554898,0.65007,-0.636804][0.293246,0.742887,-0.60177][0.225007,0.871396,0][0.279999,0.602958,-0.741726][-0.176881,0.971474,-0.157958][0.144067,0.85102,0][0.507955,0.670568,-0.581313][-0.140712,0.967292,-0.211062][0.224977,0.875182,0][0.554898,0.65007,-0.636804][0.293246,0.742887,-0.60177][0.225007,0.871396,0][0.554898,0.65007,-0.636804][0.293246,0.742887,-0.60177][0.225007,0.871396,0][0.303384,0.579897,-0.816149][0.169652,0.74009,-0.650757][0.14334,0.846318,0][0.279999,0.602958,-0.741726][-0.176881,0.971474,-0.157958][0.144067,0.85102,0][0.139753,0.564494,-0.80389][-0.112015,0.974367,-0.195095][0.093283,0.837273,0][0.279999,0.602958,-0.741726][-0.176881,0.971474,-0.157958][0.144067,0.85102,0][0.303384,0.579897,-0.816149][0.169652,0.74009,-0.650757][0.14334,0.846318,0][0.303384,0.579897,-0.816149][0.169652,0.74009,-0.650757][0.14334,0.846318,0][0.152931,0.524397,-0.895809][0.149265,0.716135,-0.681814][0.092806,0.826483,0][0.139753,0.564494,-0.80389][-0.112015,0.974367,-0.195095][0.093283,0.837273,0][3.36332e-007,0.548768,-0.853997][4.85551e-007,0.975208,-0.221289][0.046177,0.831653,0][0.139753,0.564494,-0.80389][-0.112015,0.974367,-0.195095][0.093283,0.837273,0][0.152931,0.524397,-0.895809][0.149265,0.716135,-0.681814][0.092806,0.826483,0][0.152931,0.524397,-0.895809][0.149265,0.716135,-0.681814][0.092806,0.826483,0][3.29103e-007,0.517404,-0.942382][4.03419e-007,0.718743,-0.695276][0.046177,0.823984,0][3.36332e-007,0.548768,-0.853997][4.85551e-007,0.975208,-0.221289][0.046177,0.831653,0][0.298124,0.649169,1.12267][-0.110627,0.991925,-0.0620266][0.892193,0.881903,0][2.06991e-007,0.642073,1.13441][4.04088e-007,0.994194,-0.107604][0.960103,0.879367,0][2.03953e-007,0.654293,1.23581][4.28964e-007,0.993915,0.110151][0.960103,0.869366,0][2.03953e-007,0.654293,1.23581][4.28964e-007,0.993915,0.110151][0.960103,0.869366,0][0.333722,0.657891,1.20607][-0.036171,0.980434,0.193495][0.889346,0.870651,0][0.298124,0.649169,1.12267][-0.110627,0.991925,-0.0620266][0.892193,0.881903,0][0.550727,0.699008,0.990038][-0.212881,0.977014,0.0112141][0.819743,0.899659,0][0.298124,0.649169,1.12267][-0.110627,0.991925,-0.0620266][0.892193,0.881903,0][0.333722,0.657891,1.20607][-0.036171,0.980434,0.193495][0.889346,0.870651,0][0.333722,0.657891,1.20607][-0.036171,0.980434,0.193495][0.889346,0.870651,0][0.61587,0.709552,1.06715][-0.0166736,0.972633,0.231748][0.817011,0.889114,0][0.550727,0.699008,0.990038][-0.212881,0.977014,0.0112141][0.819743,0.899659,0][0.702001,0.742541,0.753559][-0.318222,0.948011,-0.00314032][0.72392,0.920762,0][0.550727,0.699008,0.990038][-0.212881,0.977014,0.0112141][0.819743,0.899659,0][0.61587,0.709552,1.06715][-0.0166736,0.972633,0.231748][0.817011,0.889114,0][0.61587,0.709552,1.06715][-0.0166736,0.972633,0.231748][0.817011,0.889114,0][0.792197,0.77945,0.769662][-0.071648,0.986339,0.148329][0.722039,0.913866,0][0.702001,0.742541,0.753559][-0.318222,0.948011,-0.00314032][0.72392,0.920762,0][0.792197,0.77945,0.769662][-0.071648,0.986339,0.148329][0.722039,0.913866,0][0.923251,0.825983,0.434919][-0.037246,0.995943,0.0819218][0.610793,0.930941,0][0.823886,0.782313,0.437464][-0.350653,0.936501,0.00277404][0.611409,0.934643,0][0.823886,0.782313,0.437464][-0.350653,0.936501,0.00277404][0.611409,0.934643,0][0.702001,0.742541,0.753559][-0.318222,0.948011,-0.00314032][0.72392,0.920762,0][0.792197,0.77945,0.769662][-0.071648,0.986339,0.148329][0.722039,0.913866,0][0.850521,0.801829,0.0833352][-0.301883,0.953037,-0.0242425][0.505306,0.940479,0][0.823886,0.782313,0.437464][-0.350653,0.936501,0.00277404][0.611409,0.934643,0][0.923251,0.825983,0.434919][-0.037246,0.995943,0.0819218][0.610793,0.930941,0][0.923251,0.825983,0.434919][-0.037246,0.995943,0.0819218][0.610793,0.930941,0][0.958798,0.83246,0.0597722][0.0456166,0.996747,-0.0664451][0.503377,0.93304,0][0.850521,0.801829,0.0833352][-0.301883,0.953037,-0.0242425][0.505306,0.940479,0][0.850521,0.801829,0.0833352][-0.301883,0.953037,-0.0242425][0.505306,0.940479,0][0.958798,0.83246,0.0597722][0.0456166,0.996747,-0.0664451][0.503377,0.93304,0][0.877173,0.797713,-0.17447][-0.0275663,0.98151,-0.189414][0.419011,0.920621,0][0.877173,0.797713,-0.17447][-0.0275663,0.98151,-0.189414][0.419011,0.920621,0][0.788395,0.76363,-0.133][-0.331802,0.942943,-0.027686][0.418878,0.926828,0][0.850521,0.801829,0.0833352][-0.301883,0.953037,-0.0242425][0.505306,0.940479,0][0.788395,0.76363,-0.133][-0.331802,0.942943,-0.027686][0.418878,0.926828,0][0.877173,0.797713,-0.17447][-0.0275663,0.98151,-0.189414][0.419011,0.920621,0][0.696287,0.736347,-0.394979][-0.0784251,0.973963,-0.212709][0.307196,0.89869,0][0.696287,0.736347,-0.394979][-0.0784251,0.973963,-0.212709][0.307196,0.89869,0][0.601713,0.710126,-0.367336][-0.291576,0.956344,-0.019738][0.30811,0.907706,0][0.788395,0.76363,-0.133][-0.331802,0.942943,-0.027686][0.418878,0.926828,0][0.601713,0.710126,-0.367336][-0.291576,0.956344,-0.019738][0.30811,0.907706,0][0.696287,0.736347,-0.394979][-0.0784251,0.973963,-0.212709][0.307196,0.89869,0][0.507955,0.670568,-0.581313][-0.140712,0.967292,-0.211062][0.224977,0.875182,0][0.507955,0.670568,-0.581313][-0.140712,0.967292,-0.211062][0.224977,0.875182,0][0.445699,0.656427,-0.514359][-0.301001,0.953122,-0.0309438][0.224871,0.883916,0][0.601713,0.710126,-0.367336][-0.291576,0.956344,-0.019738][0.30811,0.907706,0][0.258774,0.593068,-0.640187][-0.289874,0.956923,0.0164961][0.149203,0.861853,0][0.445699,0.656427,-0.514359][-0.301001,0.953122,-0.0309438][0.224871,0.883916,0][0.507955,0.670568,-0.581313][-0.140712,0.967292,-0.211062][0.224977,0.875182,0][0.507955,0.670568,-0.581313][-0.140712,0.967292,-0.211062][0.224977,0.875182,0][0.279999,0.602958,-0.741726][-0.176881,0.971474,-0.157958][0.144067,0.85102,0][0.258774,0.593068,-0.640187][-0.289874,0.956923,0.0164961][0.149203,0.861853,0][0.140062,0.560958,-0.691163][-0.179981,0.983479,0.0193906][0.100174,0.850378,0][0.258774,0.593068,-0.640187][-0.289874,0.956923,0.0164961][0.149203,0.861853,0][0.279999,0.602958,-0.741726][-0.176881,0.971474,-0.157958][0.144067,0.85102,0][0.279999,0.602958,-0.741726][-0.176881,0.971474,-0.157958][0.144067,0.85102,0][0.139753,0.564494,-0.80389][-0.112015,0.974367,-0.195095][0.093283,0.837273,0][0.140062,0.560958,-0.691163][-0.179981,0.983479,0.0193906][0.100174,0.850378,0][3.2653e-007,0.548831,-0.741531][4.33738e-007,0.999974,0.00724544][0.046177,0.846044,0][0.140062,0.560958,-0.691163][-0.179981,0.983479,0.0193906][0.100174,0.850378,0][0.139753,0.564494,-0.80389][-0.112015,0.974367,-0.195095][0.093283,0.837273,0][0.139753,0.564494,-0.80389][-0.112015,0.974367,-0.195095][0.093283,0.837273,0][3.36332e-007,0.548768,-0.853997][4.85551e-007,0.975208,-0.221289][0.046177,0.831653,0][3.2653e-007,0.548831,-0.741531][4.33738e-007,0.999974,0.00724544][0.046177,0.846044,0][-3.5751e-007,-0.510905,1.30277][-2.50869e-007,-0.523437,-0.852064][0.376466,0.03329,0][0,-0.0472562,1.08258][-3.53014e-007,-0.722357,-0.69152][0.345855,0.033788,0][0.271839,-0.0474443,1.06155][-0.129766,-0.698352,-0.703893][0.34407,0.058924,0][0.271839,-0.0474443,1.06155][-0.129766,-0.698352,-0.703893][0.34407,0.058924,0][0.356478,-0.54748,1.21991][-0.22799,-0.573469,-0.786864][0.374428,0.067043,0][-3.5751e-007,-0.510905,1.30277][-2.50869e-007,-0.523437,-0.852064][0.376466,0.03329,0][1.23055,-0.317536,-0.429376][0.579083,0.785732,-0.21746][0.383051,0.537765,0][1.34213,-0.316286,0.0298991][0.714138,0.699689,-0.0210278][0.505488,0.536958,0][1.36029,-0.323291,0.0239871][0.823183,0.567496,-0.0178298][0.506408,0.523675,0][1.36029,-0.323291,0.0239871][0.823183,0.567496,-0.0178298][0.506408,0.523675,0][1.27922,-0.321545,-0.443608][0.716601,0.645771,-0.263556][0.387862,0.522643,0][1.23055,-0.317536,-0.429376][0.579083,0.785732,-0.21746][0.383051,0.537765,0][1.28028,-0.650662,-0.445207][0.634237,0.736102,-0.236424][0.387882,0.429184,0][1.37948,-0.647023,0.030102][0.629402,0.776921,-0.0157228][0.506828,0.429766,0][1.42913,-0.647023,0.030102][-0.0603532,0.997916,-0.0228221][0.506976,0.417038,0][1.42913,-0.647023,0.030102][-0.0603532,0.997916,-0.0228221][0.506976,0.417038,0][1.32512,-0.651316,-0.462713][0.0694968,0.995845,-0.0588404][0.387885,0.420196,0][1.28028,-0.650662,-0.445207][0.634237,0.736102,-0.236424][0.387882,0.429184,0][1.04595,0.197188,-0.412979][0.554855,0.557762,-0.617282][0.37598,0.720373,0][0.979383,0.218721,-0.439858][0.459888,0.596682,-0.657627][0.362558,0.728068,0][0.945696,0.381638,-0.354573][0.5244,0.360338,-0.771467][0.376825,0.793634,0][0.945696,0.381638,-0.354573][0.5244,0.360338,-0.771467][0.376825,0.793634,0][1.00364,0.416473,-0.301745][0.584451,0.349024,-0.732529][0.396,0.799564,0][1.04595,0.197188,-0.412979][0.554855,0.557762,-0.617282][0.37598,0.720373,0][0.936078,0.0860097,-0.649481][0.335216,0.774054,-0.537095][0.308795,0.68064,0][0.879661,0.122158,-0.616606][0.34019,0.738866,-0.581677][0.308959,0.693558,0][0.979383,0.218721,-0.439858][0.459888,0.596682,-0.657627][0.362558,0.728068,0][0.979383,0.218721,-0.439858][0.459888,0.596682,-0.657627][0.362558,0.728068,0][1.04595,0.197188,-0.412979][0.554855,0.557762,-0.617282][0.37598,0.720373,0][0.936078,0.0860097,-0.649481][0.335216,0.774054,-0.537095][0.308795,0.68064,0][0.648121,0.0697738,-0.82582][0.36,0.778945,-0.513464][0.224594,0.674837,0][0.879661,0.122158,-0.616606][0.34019,0.738866,-0.581677][0.308959,0.693558,0][0.936078,0.0860097,-0.649481][0.335216,0.774054,-0.537095][0.308795,0.68064,0][0.936078,0.0860097,-0.649481][0.335216,0.774054,-0.537095][0.308795,0.68064,0][0.682724,0.0307988,-0.893294][0.327134,0.831503,-0.448983][0.224494,0.660908,0][0.648121,0.0697738,-0.82582][0.36,0.778945,-0.513464][0.224594,0.674837,0][0.417833,0.114991,-0.947852][0.471548,0.725462,-0.501345][0.160685,0.690997,0][0.648121,0.0697738,-0.82582][0.36,0.778945,-0.513464][0.224594,0.674837,0][0.682724,0.0307988,-0.893294][0.327134,0.831503,-0.448983][0.224494,0.660908,0][0.682724,0.0307988,-0.893294][0.327134,0.831503,-0.448983][0.224494,0.660908,0][0.397691,0.084656,-1.02441][0.462613,0.7203,-0.516873][0.149063,0.680156,0][0.417833,0.114991,-0.947852][0.471548,0.725462,-0.501345][0.160685,0.690997,0][0.318551,0.183914,-0.97185][0.610963,0.60992,-0.5047][0.133586,0.715629,0][0.417833,0.114991,-0.947852][0.471548,0.725462,-0.501345][0.160685,0.690997,0][0.397691,0.084656,-1.02441][0.462613,0.7203,-0.516873][0.149063,0.680156,0][0.397691,0.084656,-1.02441][0.462613,0.7203,-0.516873][0.149063,0.680156,0][0.28199,0.182559,-1.02063][0.562788,0.597437,-0.571261][0.121047,0.715144,0][0.318551,0.183914,-0.97185][0.610963,0.60992,-0.5047][0.133586,0.715629,0][0.266523,0.27629,-0.94409][0.667877,0.398038,-0.628892][0.121998,0.748642,0][0.318551,0.183914,-0.97185][0.610963,0.60992,-0.5047][0.133586,0.715629,0][0.28199,0.182559,-1.02063][0.562788,0.597437,-0.571261][0.121047,0.715144,0][0.28199,0.182559,-1.02063][0.562788,0.597437,-0.571261][0.121047,0.715144,0][0.217351,0.298715,-0.979119][0.554501,0.417632,-0.7198][0.106782,0.756657,0][0.266523,0.27629,-0.94409][0.667877,0.398038,-0.628892][0.121998,0.748642,0][0.252682,0.391931,-0.920153][0.572932,0.209645,-0.792337][0.120058,0.78997,0][0.292201,0.361605,-0.890561][0.668063,0.129486,-0.732752][0.133207,0.779132,0][0.266523,0.27629,-0.94409][0.667877,0.398038,-0.628892][0.121998,0.748642,0][0.266523,0.27629,-0.94409][0.667877,0.398038,-0.628892][0.121998,0.748642,0][0.217351,0.298715,-0.979119][0.554501,0.417632,-0.7198][0.106782,0.756657,0][0.252682,0.391931,-0.920153][0.572932,0.209645,-0.792337][0.120058,0.78997,0][0.361346,0.44121,-0.833919][0.638572,-0.0278099,-0.76906][0.158149,0.807582,0][0.378747,0.397432,-0.806556][0.656242,-0.010342,-0.754479][0.166127,0.791937,0][0.292201,0.361605,-0.890561][0.668063,0.129486,-0.732752][0.133207,0.779132,0][0.292201,0.361605,-0.890561][0.668063,0.129486,-0.732752][0.133207,0.779132,0][0.252682,0.391931,-0.920153][0.572932,0.209645,-0.792337][0.120058,0.78997,0][0.361346,0.44121,-0.833919][0.638572,-0.0278099,-0.76906][0.158149,0.807582,0][0.571574,0.507453,-0.67209][0.657617,-0.227114,-0.718303][0.224909,0.831256,0][0.555984,0.449002,-0.653911][0.671623,-0.0904006,-0.735357][0.224896,0.810367,0][0.378747,0.397432,-0.806556][0.656242,-0.010342,-0.754479][0.166127,0.791937,0][0.378747,0.397432,-0.806556][0.656242,-0.010342,-0.754479][0.166127,0.791937,0][0.361346,0.44121,-0.833919][0.638572,-0.0278099,-0.76906][0.158149,0.807582,0][0.571574,0.507453,-0.67209][0.657617,-0.227114,-0.718303][0.224909,0.831256,0][0.762701,0.499891,-0.471397][0.671489,-0.0816205,-0.736506][0.307877,0.828554,0][0.555984,0.449002,-0.653911][0.671623,-0.0904006,-0.735357][0.224896,0.810367,0][0.571574,0.507453,-0.67209][0.657617,-0.227114,-0.718303][0.224909,0.831256,0][0.571574,0.507453,-0.67209][0.657617,-0.227114,-0.718303][0.224909,0.831256,0][0.788871,0.551726,-0.471804][0.699149,-0.184723,-0.690701][0.307522,0.847079,0][0.762701,0.499891,-0.471397][0.671489,-0.0816205,-0.736506][0.307877,0.828554,0][0.883103,0.516508,-0.361904][0.661921,0.0844491,-0.744801][0.372753,0.834492,0][0.762701,0.499891,-0.471397][0.671489,-0.0816205,-0.736506][0.307877,0.828554,0][0.788871,0.551726,-0.471804][0.699149,-0.184723,-0.690701][0.307522,0.847079,0][0.788871,0.551726,-0.471804][0.699149,-0.184723,-0.690701][0.307522,0.847079,0][0.925573,0.571558,-0.321632][0.69417,0.133903,-0.707247][0.388415,0.854166,0][0.883103,0.516508,-0.361904][0.661921,0.0844491,-0.744801][0.372753,0.834492,0][1.00364,0.416473,-0.301745][0.584451,0.349024,-0.732529][0.396,0.799564,0][0.945696,0.381638,-0.354573][0.5244,0.360338,-0.771467][0.376825,0.793634,0][0.883103,0.516508,-0.361904][0.661921,0.0844491,-0.744801][0.372753,0.834492,0][0.883103,0.516508,-0.361904][0.661921,0.0844491,-0.744801][0.372753,0.834492,0][0.925573,0.571558,-0.321632][0.69417,0.133903,-0.707247][0.388415,0.854166,0][1.00364,0.416473,-0.301745][0.584451,0.349024,-0.732529][0.396,0.799564,0][1.04595,0.197188,-0.412979][0.554855,0.557762,-0.617282][0.37598,0.720373,0][1.10197,0.16344,-0.383777][0.743109,0.427418,-0.514881][0.388417,0.708312,0][0.982815,0.0378026,-0.679487][0.541558,0.629148,-0.557573][0.308704,0.663411,0][0.982815,0.0378026,-0.679487][0.541558,0.629148,-0.557573][0.308704,0.663411,0][0.936078,0.0860097,-0.649481][0.335216,0.774054,-0.537095][0.308795,0.68064,0][1.04595,0.197188,-0.412979][0.554855,0.557762,-0.617282][0.37598,0.720373,0][0.682724,0.0307988,-0.893294][0.327134,0.831503,-0.448983][0.224494,0.660908,0][0.936078,0.0860097,-0.649481][0.335216,0.774054,-0.537095][0.308795,0.68064,0][0.982815,0.0378026,-0.679487][0.541558,0.629148,-0.557573][0.308704,0.663411,0][0.982815,0.0378026,-0.679487][0.541558,0.629148,-0.557573][0.308704,0.663411,0][0.711746,-0.0168912,-0.948529][0.420755,0.680747,-0.599624][0.224421,0.643865,0][0.682724,0.0307988,-0.893294][0.327134,0.831503,-0.448983][0.224494,0.660908,0][0.397691,0.084656,-1.02441][0.462613,0.7203,-0.516873][0.149063,0.680156,0][0.682724,0.0307988,-0.893294][0.327134,0.831503,-0.448983][0.224494,0.660908,0][0.711746,-0.0168912,-0.948529][0.420755,0.680747,-0.599624][0.224421,0.643865,0][0.711746,-0.0168912,-0.948529][0.420755,0.680747,-0.599624][0.224421,0.643865,0][0.374543,0.043682,-1.09127][0.404701,0.597077,-0.692615][0.138098,0.665512,0][0.397691,0.084656,-1.02441][0.462613,0.7203,-0.516873][0.149063,0.680156,0][0.28199,0.182559,-1.02063][0.562788,0.597437,-0.571261][0.121047,0.715144,0][0.397691,0.084656,-1.02441][0.462613,0.7203,-0.516873][0.149063,0.680156,0][0.374543,0.043682,-1.09127][0.404701,0.597077,-0.692615][0.138098,0.665512,0][0.374543,0.043682,-1.09127][0.404701,0.597077,-0.692615][0.138098,0.665512,0][0.242697,0.173053,-1.06097][0.398461,0.540581,-0.740946][0.108695,0.711747,0][0.28199,0.182559,-1.02063][0.562788,0.597437,-0.571261][0.121047,0.715144,0][0.217351,0.298715,-0.979119][0.554501,0.417632,-0.7198][0.106782,0.756657,0][0.28199,0.182559,-1.02063][0.562788,0.597437,-0.571261][0.121047,0.715144,0][0.242697,0.173053,-1.06097][0.398461,0.540581,-0.740946][0.108695,0.711747,0][0.242697,0.173053,-1.06097][0.398461,0.540581,-0.740946][0.108695,0.711747,0][0.165042,0.316492,-1.00231][0.313994,0.454592,-0.833519][0.091511,0.76301,0][0.217351,0.298715,-0.979119][0.554501,0.417632,-0.7198][0.106782,0.756657,0][0.210948,0.419694,-0.937207][0.368153,0.39759,-0.840468][0.107202,0.799893,0][0.252682,0.391931,-0.920153][0.572932,0.209645,-0.792337][0.120058,0.78997,0][0.217351,0.298715,-0.979119][0.554501,0.417632,-0.7198][0.106782,0.756657,0][0.217351,0.298715,-0.979119][0.554501,0.417632,-0.7198][0.106782,0.756657,0][0.165042,0.316492,-1.00231][0.313994,0.454592,-0.833519][0.091511,0.76301,0][0.210948,0.419694,-0.937207][0.368153,0.39759,-0.840468][0.107202,0.799893,0][0.252682,0.391931,-0.920153][0.572932,0.209645,-0.792337][0.120058,0.78997,0][0.210948,0.419694,-0.937207][0.368153,0.39759,-0.840468][0.107202,0.799893,0][0.340709,0.48659,-0.844386][0.499852,0.269225,-0.823205][0.151121,0.8238,0][0.340709,0.48659,-0.844386][0.499852,0.269225,-0.823205][0.151121,0.8238,0][0.361346,0.44121,-0.833919][0.638572,-0.0278099,-0.76906][0.158149,0.807582,0][0.252682,0.391931,-0.920153][0.572932,0.209645,-0.792337][0.120058,0.78997,0][0.571574,0.507453,-0.67209][0.657617,-0.227114,-0.718303][0.224909,0.831256,0][0.361346,0.44121,-0.833919][0.638572,-0.0278099,-0.76906][0.158149,0.807582,0][0.340709,0.48659,-0.844386][0.499852,0.269225,-0.823205][0.151121,0.8238,0][0.340709,0.48659,-0.844386][0.499852,0.269225,-0.823205][0.151121,0.8238,0][0.576397,0.559414,-0.675105][0.595818,0.17434,-0.783969][0.224931,0.849826,0][0.571574,0.507453,-0.67209][0.657617,-0.227114,-0.718303][0.224909,0.831256,0][0.788871,0.551726,-0.471804][0.699149,-0.184723,-0.690701][0.307522,0.847079,0][0.571574,0.507453,-0.67209][0.657617,-0.227114,-0.718303][0.224909,0.831256,0][0.576397,0.559414,-0.675105][0.595818,0.17434,-0.783969][0.224931,0.849826,0][0.576397,0.559414,-0.675105][0.595818,0.17434,-0.783969][0.224931,0.849826,0][0.798896,0.600146,-0.465418][0.694476,0.187624,-0.694623][0.307251,0.864383,0][0.788871,0.551726,-0.471804][0.699149,-0.184723,-0.690701][0.307522,0.847079,0][0.925573,0.571558,-0.321632][0.69417,0.133903,-0.707247][0.388415,0.854166,0][0.788871,0.551726,-0.471804][0.699149,-0.184723,-0.690701][0.307522,0.847079,0][0.798896,0.600146,-0.465418][0.694476,0.187624,-0.694623][0.307251,0.864383,0][0.798896,0.600146,-0.465418][0.694476,0.187624,-0.694623][0.307251,0.864383,0][0.95447,0.622986,-0.278692][0.725754,0.331199,-0.602983][0.403198,0.872546,0][0.925573,0.571558,-0.321632][0.69417,0.133903,-0.707247][0.388415,0.854166,0][0.925573,0.571558,-0.321632][0.69417,0.133903,-0.707247][0.388415,0.854166,0][0.95447,0.622986,-0.278692][0.725754,0.331199,-0.602983][0.403198,0.872546,0][1.05003,0.445643,-0.243942][0.737868,0.352026,-0.575872][0.414971,0.804529,0][1.05003,0.445643,-0.243942][0.737868,0.352026,-0.575872][0.414971,0.804529,0][1.00364,0.416473,-0.301745][0.584451,0.349024,-0.732529][0.396,0.799564,0][0.925573,0.571558,-0.321632][0.69417,0.133903,-0.707247][0.388415,0.854166,0][1.00364,0.416473,-0.301745][0.584451,0.349024,-0.732529][0.396,0.799564,0][1.05003,0.445643,-0.243942][0.737868,0.352026,-0.575872][0.414971,0.804529,0][1.10197,0.16344,-0.383777][0.743109,0.427418,-0.514881][0.388417,0.708312,0][1.10197,0.16344,-0.383777][0.743109,0.427418,-0.514881][0.388417,0.708312,0][1.04595,0.197188,-0.412979][0.554855,0.557762,-0.617282][0.37598,0.720373,0][1.00364,0.416473,-0.301745][0.584451,0.349024,-0.732529][0.396,0.799564,0][-2.69108e-007,-0.946951,-2.0868][0,0.0206031,-0.999788][0.045183,0.304601,0][-2.48244e-007,-0.897365,-2.05499][3.48292e-007,0.759449,-0.650567][0.045197,0.326999,0][0.57699,-0.889461,-1.95562][0.164933,0.764239,-0.623487][0.11987,0.326643,0][0.57699,-0.889461,-1.95562][0.164933,0.764239,-0.623487][0.11987,0.326643,0][0.590603,-0.93771,-1.98365][0.315554,0.0191237,-0.948715][0.121109,0.304432,0][-2.69108e-007,-0.946951,-2.0868][0,0.0206031,-0.999788][0.045183,0.304601,0][0.590603,-0.93771,-1.98365][0.315554,0.0191237,-0.948715][0.121109,0.304432,0][0.57699,-0.889461,-1.95562][0.164933,0.764239,-0.623487][0.11987,0.326643,0][1.10089,-0.825966,-1.67919][0.27199,0.825624,-0.494334][0.210547,0.326013,0][1.10089,-0.825966,-1.67919][0.27199,0.825624,-0.494334][0.210547,0.326013,0][1.13179,-0.871783,-1.70429][0.577892,0.200707,-0.791048][0.211339,0.303629,0][0.590603,-0.93771,-1.98365][0.315554,0.0191237,-0.948715][0.121109,0.304432,0][1.53565,-0.7956,-1.23566][0.798479,0.302246,-0.520652][0.291917,0.303158,0][1.13179,-0.871783,-1.70429][0.577892,0.200707,-0.791048][0.211339,0.303629,0][1.10089,-0.825966,-1.67919][0.27199,0.825624,-0.494334][0.210547,0.326013,0][1.10089,-0.825966,-1.67919][0.27199,0.825624,-0.494334][0.210547,0.326013,0][1.50547,-0.758417,-1.21366][0.34696,0.890355,-0.294765][0.291929,0.325103,0][1.53565,-0.7956,-1.23566][0.798479,0.302246,-0.520652][0.291917,0.303158,0][1.7612,-0.73253,-0.638058][0.837169,0.472355,-0.275733][0.387864,0.302577,0][1.53565,-0.7956,-1.23566][0.798479,0.302246,-0.520652][0.291917,0.303158,0][1.50547,-0.758417,-1.21366][0.34696,0.890355,-0.294765][0.291929,0.325103,0][1.50547,-0.758417,-1.21366][0.34696,0.890355,-0.294765][0.291929,0.325103,0][1.71937,-0.696388,-0.622723][0.329404,0.918116,-0.220353][0.387869,0.325023,0][1.7612,-0.73253,-0.638058][0.837169,0.472355,-0.275733][0.387864,0.302577,0][1.81017,-0.577735,0.0219511][0.656781,0.738473,-0.152631][0.504479,0.302972,0][1.7612,-0.73253,-0.638058][0.837169,0.472355,-0.275733][0.387864,0.302577,0][1.71937,-0.696388,-0.622723][0.329404,0.918116,-0.220353][0.387869,0.325023,0][1.71937,-0.696388,-0.622723][0.329404,0.918116,-0.220353][0.387869,0.325023,0][1.75687,-0.553424,0.0279701][0.0379683,0.978725,-0.201633][0.505051,0.325525,0][1.81017,-0.577735,0.0219511][0.656781,0.738473,-0.152631][0.504479,0.302972,0][1.7096,-0.389243,0.668842][0.661147,0.749892,0.0233808][0.623032,0.303639,0][1.81017,-0.577735,0.0219511][0.656781,0.738473,-0.152631][0.504479,0.302972,0][1.75687,-0.553424,0.0279701][0.0379683,0.978725,-0.201633][0.505051,0.325525,0][1.75687,-0.553424,0.0279701][0.0379683,0.978725,-0.201633][0.505051,0.325525,0][1.65825,-0.374011,0.66569][-0.113148,0.947248,-0.299866][0.623033,0.326223,0][1.7096,-0.389243,0.668842][0.661147,0.749892,0.0233808][0.623032,0.303639,0][1.46207,-0.228028,1.18065][0.672392,0.681934,0.287847][0.72058,0.303302,0][1.7096,-0.389243,0.668842][0.661147,0.749892,0.0233808][0.623032,0.303639,0][1.65825,-0.374011,0.66569][-0.113148,0.947248,-0.299866][0.623033,0.326223,0][1.65825,-0.374011,0.66569][-0.113148,0.947248,-0.299866][0.623033,0.326223,0][1.41955,-0.21751,1.16868][-0.166753,0.936193,-0.309413][0.720573,0.32611,0][1.46207,-0.228028,1.18065][0.672392,0.681934,0.287847][0.72058,0.303302,0][1.1268,-0.157682,1.57025][0.514191,0.697835,0.498631][0.809376,0.304733,0][1.46207,-0.228028,1.18065][0.672392,0.681934,0.287847][0.72058,0.303302,0][1.41955,-0.21751,1.16868][-0.166753,0.936193,-0.309413][0.720573,0.32611,0][1.41955,-0.21751,1.16868][-0.166753,0.936193,-0.309413][0.720573,0.32611,0][1.10089,-0.155304,1.54287][-0.16139,0.894252,-0.417452][0.809375,0.327138,0][1.1268,-0.157682,1.57025][0.514191,0.697835,0.498631][0.809376,0.304733,0][0.590603,-0.0624916,1.82629][0.243978,0.823744,0.511782][0.914117,0.305567,0][1.1268,-0.157682,1.57025][0.514191,0.697835,0.498631][0.809376,0.304733,0][1.10089,-0.155304,1.54287][-0.16139,0.894252,-0.417452][0.809375,0.327138,0][1.10089,-0.155304,1.54287][-0.16139,0.894252,-0.417452][0.809375,0.327138,0][0.57699,-0.0686596,1.78768][-0.0836992,0.814042,-0.574743][0.913954,0.328011,0][0.590603,-0.0624916,1.82629][0.243978,0.823744,0.511782][0.914117,0.305567,0][0.590603,-0.0624916,1.82629][0.243978,0.823744,0.511782][0.914117,0.305567,0][0.57699,-0.0686596,1.78768][-0.0836992,0.814042,-0.574743][0.913954,0.328011,0][-1.81671e-007,-0.0392693,1.86389][4.12382e-007,0.841837,-0.539732][0.971447,0.329715,0][-1.81671e-007,-0.0392693,1.86389][4.12382e-007,0.841837,-0.539732][0.971447,0.329715,0][-1.83816e-007,-0.0362533,1.90487][3.78379e-007,0.816902,0.576776][0.971127,0.307216,0][0.590603,-0.0624916,1.82629][0.243978,0.823744,0.511782][0.914117,0.305567,0][-1.72193e-007,-0.618743,-1.4052][1.47753e-007,0.266098,-0.963946][0.045398,0.439389,0][0.405707,-0.618371,-1.36357][0.274522,0.255874,-0.926912][0.113487,0.440968,0][0.405707,-0.660444,-1.37518][0.191403,0.709749,-0.677954][0.113489,0.429364,0][0.405707,-0.660444,-1.37518][0.191403,0.709749,-0.677954][0.113489,0.429364,0][-1.9124e-007,-0.660816,-1.41681][3.14796e-007,0.696868,-0.7172][0.045394,0.428223,0][-1.72193e-007,-0.618743,-1.4052][1.47753e-007,0.266098,-0.963946][0.045398,0.439389,0][0.405707,-0.618371,-1.36357][0.274522,0.255874,-0.926912][0.113487,0.440968,0][0.775094,-0.616679,-1.17427][0.598261,0.212023,-0.772742][0.208154,0.44055,0][0.775094,-0.658752,-1.18589][0.409878,0.726891,-0.551026][0.208158,0.428886,0][0.775094,-0.658752,-1.18589][0.409878,0.726891,-0.551026][0.208158,0.428886,0][0.405707,-0.660444,-1.37518][0.191403,0.709749,-0.677954][0.113489,0.429364,0][0.405707,-0.618371,-1.36357][0.274522,0.255874,-0.926912][0.113487,0.440968,0][0.775094,-0.616679,-1.17427][0.598261,0.212023,-0.772742][0.208154,0.44055,0][1.06824,-0.613838,-0.847534][0.815072,0.0894718,-0.57241][0.291917,0.440664,0][1.06824,-0.655784,-0.853873][0.582983,0.692815,-0.424428][0.291918,0.429017,0][1.06824,-0.655784,-0.853873][0.582983,0.692815,-0.424428][0.291918,0.429017,0][0.775094,-0.658752,-1.18589][0.409878,0.726891,-0.551026][0.208158,0.428886,0][0.775094,-0.616679,-1.17427][0.598261,0.212023,-0.772742][0.208154,0.44055,0][1.06824,-0.613838,-0.847534][0.815072,0.0894718,-0.57241][0.291917,0.440664,0][1.28014,-0.608956,-0.445004][0.940032,0.00828302,-0.340984][0.387879,0.441027,0][1.28028,-0.650662,-0.445207][0.634237,0.736102,-0.236424][0.387882,0.429184,0][1.28028,-0.650662,-0.445207][0.634237,0.736102,-0.236424][0.387882,0.429184,0][1.06824,-0.655784,-0.853873][0.582983,0.692815,-0.424428][0.291918,0.429017,0][1.06824,-0.613838,-0.847534][0.815072,0.0894718,-0.57241][0.291917,0.440664,0][1.28014,-0.608956,-0.445004][0.940032,0.00828302,-0.340984][0.387879,0.441027,0][1.37705,-0.606,0.029327][0.998399,0.0564819,0.00318474][0.506775,0.441666,0][1.37948,-0.647023,0.030102][0.629402,0.776921,-0.0157228][0.506828,0.429766,0][1.37948,-0.647023,0.030102][0.629402,0.776921,-0.0157228][0.506828,0.429766,0][1.28028,-0.650662,-0.445207][0.634237,0.736102,-0.236424][0.387882,0.429184,0][1.28014,-0.608956,-0.445004][0.940032,0.00828302,-0.340984][0.387879,0.441027,0][1.37705,-0.606,0.029327][0.998399,0.0564819,0.00318474][0.506775,0.441666,0][1.28014,-0.588833,0.500128][0.943502,0.0129,0.331116][0.622964,0.440668,0][1.28028,-0.628834,0.501061][0.64343,0.739138,0.199179][0.622967,0.428731,0][1.28028,-0.628834,0.501061][0.64343,0.739138,0.199179][0.622967,0.428731,0][1.37948,-0.647023,0.030102][0.629402,0.776921,-0.0157228][0.506828,0.429766,0][1.37705,-0.606,0.029327][0.998399,0.0564819,0.00318474][0.506775,0.441666,0][1.28014,-0.588833,0.500128][0.943502,0.0129,0.331116][0.622964,0.440668,0][1.06824,-0.574787,0.908894][0.82526,0.00411238,0.564738][0.720595,0.441624,0][1.06824,-0.613287,0.909145][0.623443,0.661486,0.416839][0.72059,0.430116,0][1.06824,-0.613287,0.909145][0.623443,0.661486,0.416839][0.72059,0.430116,0][1.28028,-0.628834,0.501061][0.64343,0.739138,0.199179][0.622967,0.428731,0][1.28014,-0.588833,0.500128][0.943502,0.0129,0.331116][0.622964,0.440668,0][1.06824,-0.574787,0.908894][0.82526,0.00411238,0.564738][0.720595,0.441624,0][0.775094,-0.57182,1.24091][0.592605,0.00524981,0.805476][0.809373,0.440531,0][0.775094,-0.610319,1.24116][0.440093,0.675904,0.591161][0.809373,0.428864,0][0.775094,-0.610319,1.24116][0.440093,0.675904,0.591161][0.809373,0.428864,0][1.06824,-0.613287,0.909145][0.623443,0.661486,0.416839][0.72059,0.430116,0][1.06824,-0.574787,0.908894][0.82526,0.00411238,0.564738][0.720595,0.441624,0][0.775094,-0.57182,1.24091][0.592605,0.00524981,0.805476][0.809373,0.440531,0][0.405707,-0.57034,1.40633][0.268156,0.00628295,0.963355][0.912954,0.441414,0][0.405707,-0.608839,1.40659][0.199084,0.664978,0.71984][0.912957,0.429875,0][0.405707,-0.608839,1.40659][0.199084,0.664978,0.71984][0.912957,0.429875,0][0.775094,-0.610319,1.24116][0.440093,0.675904,0.591161][0.809373,0.428864,0][0.775094,-0.57182,1.24091][0.592605,0.00524981,0.805476][0.809373,0.440531,0][0.405707,-0.57034,1.40633][0.268156,0.00628295,0.963355][0.912954,0.441414,0][-4.00306e-007,-0.572554,1.45604][0,0.00687457,0.999976][0.971679,0.441249,0][-4.18871e-007,-0.611438,1.45631][2.78739e-007,0.688128,0.725589][0.9717,0.429686,0][-4.18871e-007,-0.611438,1.45631][2.78739e-007,0.688128,0.725589][0.9717,0.429686,0][0.405707,-0.608839,1.40659][0.199084,0.664978,0.71984][0.912957,0.429875,0][0.405707,-0.57034,1.40633][0.268156,0.00628295,0.963355][0.912954,0.441414,0][0.405707,-0.326907,1.40475][0.268062,0.0062846,0.963381][0.912935,0.514375,0][-2.82917e-007,-0.326683,1.45434][0,0.00690768,0.999976][0.971543,0.514362,0][-3.45345e-007,-0.457438,1.45524][0,0.00686313,0.999976][0.971615,0.47548,0][-3.45345e-007,-0.457438,1.45524][0,0.00686313,0.999976][0.971615,0.47548,0][0.405707,-0.456366,1.40559][0.268117,0.0062924,0.963366][0.912945,0.475574,0][0.405707,-0.326907,1.40475][0.268062,0.0062846,0.963381][0.912935,0.514375,0][0.775094,-0.328386,1.23932][0.592605,0.00525795,0.805476][0.809372,0.514302,0][0.405707,-0.326907,1.40475][0.268062,0.0062846,0.963381][0.912935,0.514375,0][0.405707,-0.456366,1.40559][0.268117,0.0062924,0.963366][0.912945,0.475574,0][0.405707,-0.456366,1.40559][0.268117,0.0062924,0.963366][0.912945,0.475574,0][0.775094,-0.457846,1.24016][0.592605,0.00525015,0.805476][0.809373,0.47507,0][0.775094,-0.328386,1.23932][0.592605,0.00525795,0.805476][0.809372,0.514302,0][1.06824,-0.331354,0.907308][0.826641,0.00375573,0.562718][0.720624,0.514393,0][0.775094,-0.328386,1.23932][0.592605,0.00525795,0.805476][0.809372,0.514302,0][0.775094,-0.457846,1.24016][0.592605,0.00525015,0.805476][0.809373,0.47507,0][0.775094,-0.457846,1.24016][0.592605,0.00525015,0.805476][0.809373,0.47507,0][1.06824,-0.460813,0.908152][0.826063,0.0041569,0.563563][0.720609,0.475694,0][1.06824,-0.331354,0.907308][0.826641,0.00375573,0.562718][0.720624,0.514393,0][1.27929,-0.335903,0.494231][0.948305,0.0105389,0.317186][0.622879,0.516145,0][1.06824,-0.331354,0.907308][0.826641,0.00375573,0.562718][0.720624,0.514393,0][1.06824,-0.460813,0.908152][0.826063,0.0041569,0.563563][0.720609,0.475694,0][1.06824,-0.460813,0.908152][0.826063,0.0041569,0.563563][0.720609,0.475694,0][1.27975,-0.470413,0.497368][0.94616,0.0127617,0.323449][0.622956,0.476006,0][1.27929,-0.335903,0.494231][0.948305,0.0105389,0.317186][0.622879,0.516145,0][1.36167,-0.346608,0.0244271][0.998541,0.0539895,-0.000244877][0.506438,0.516911,0][1.27929,-0.335903,0.494231][0.948305,0.0105389,0.317186][0.622879,0.516145,0][1.27975,-0.470413,0.497368][0.94616,0.0127617,0.323449][0.622956,0.476006,0][1.27975,-0.470413,0.497368][0.94616,0.0127617,0.323449][0.622956,0.476006,0][1.36985,-0.484554,0.027033][0.998366,0.0570992,0.00215572][0.506617,0.476896,0][1.36167,-0.346608,0.0244271][0.998541,0.0539895,-0.000244877][0.506438,0.516911,0][1.27975,-0.48549,-0.444404][0.939208,0.012551,-0.34312][0.387872,0.476087,0][1.27929,-0.34525,-0.443723][0.939024,0.00535871,-0.343811][0.387864,0.515912,0][1.36167,-0.346608,0.0244271][0.998541,0.0539895,-0.000244877][0.506438,0.516911,0][1.36167,-0.346608,0.0244271][0.998541,0.0539895,-0.000244877][0.506438,0.516911,0][1.36985,-0.484554,0.027033][0.998366,0.0570992,0.00215572][0.506617,0.476896,0][1.27975,-0.48549,-0.444404][0.939208,0.012551,-0.34312][0.387872,0.476087,0][1.06824,-0.348605,-0.807448][0.791746,0.0885043,-0.604405][0.291908,0.514313,0][1.27929,-0.34525,-0.443723][0.939024,0.00535871,-0.343811][0.387864,0.515912,0][1.27975,-0.48549,-0.444404][0.939208,0.012551,-0.34312][0.387872,0.476087,0][1.27975,-0.48549,-0.444404][0.939208,0.012551,-0.34312][0.387872,0.476087,0][1.06824,-0.489658,-0.828766][0.803686,0.0905842,-0.588118][0.291913,0.475146,0][1.06824,-0.348605,-0.807448][0.791746,0.0885043,-0.604405][0.291908,0.514313,0][0.775094,-0.350648,-1.10083][0.580775,0.212119,-0.785943][0.208128,0.514304,0][1.06824,-0.348605,-0.807448][0.791746,0.0885043,-0.604405][0.291908,0.514313,0][1.06824,-0.489658,-0.828766][0.803686,0.0905842,-0.588118][0.291913,0.475146,0][1.06824,-0.489658,-0.828766][0.803686,0.0905842,-0.588118][0.291913,0.475146,0][0.775094,-0.492125,-1.13989][0.591785,0.210747,-0.778059][0.208142,0.475081,0][0.775094,-0.350648,-1.10083][0.580775,0.212119,-0.785943][0.208128,0.514304,0][0.405707,-0.35234,-1.29013][0.274522,0.255887,-0.926909][0.113475,0.514338,0][0.775094,-0.350648,-1.10083][0.580775,0.212119,-0.785943][0.208128,0.514304,0][0.775094,-0.492125,-1.13989][0.591785,0.210747,-0.778059][0.208142,0.475081,0][0.775094,-0.492125,-1.13989][0.591785,0.210747,-0.778059][0.208142,0.475081,0][0.405707,-0.493817,-1.32919][0.274523,0.255881,-0.92691][0.113481,0.47532,0][0.405707,-0.35234,-1.29013][0.274522,0.255887,-0.926909][0.113475,0.514338,0][0,-0.352712,-1.33176][1.28688e-007,0.266094,-0.963947][0.045422,0.514588,0][0.405707,-0.35234,-1.29013][0.274522,0.255887,-0.926909][0.113475,0.514338,0][0.405707,-0.493817,-1.32919][0.274523,0.255881,-0.92691][0.113481,0.47532,0][0.405707,-0.493817,-1.32919][0.274523,0.255881,-0.92691][0.113481,0.47532,0][0,-0.494189,-1.37081][1.33454e-007,0.266105,-0.963944][0.045409,0.477042,0][0,-0.352712,-1.33176][1.28688e-007,0.266094,-0.963947][0.045422,0.514588,0][-1.83816e-007,-0.0362533,1.90487][3.78379e-007,0.816902,0.576776][0.971127,0.307216,0][-2.14646e-007,-0.0970813,1.92574][0,-0.0338154,0.999428][0.967942,0.288353,0][0.589458,-0.123165,1.84729][0.286631,-0.0525619,0.956598][0.913961,0.285945,0][0.589458,-0.123165,1.84729][0.286631,-0.0525619,0.956598][0.913961,0.285945,0][0.590603,-0.0624916,1.82629][0.243978,0.823744,0.511782][0.914117,0.305567,0][-1.83816e-007,-0.0362533,1.90487][3.78379e-007,0.816902,0.576776][0.971127,0.307216,0][0.590603,-0.0624916,1.82629][0.243978,0.823744,0.511782][0.914117,0.305567,0][0.589458,-0.123165,1.84729][0.286631,-0.0525619,0.956598][0.913961,0.285945,0][1.12463,-0.219168,1.58506][0.582975,-0.18773,0.790505][0.809376,0.285819,0][1.12463,-0.219168,1.58506][0.582975,-0.18773,0.790505][0.809376,0.285819,0][1.1268,-0.157682,1.57025][0.514191,0.697835,0.498631][0.809376,0.304733,0][0.590603,-0.0624916,1.82629][0.243978,0.823744,0.511782][0.914117,0.305567,0][1.46207,-0.228028,1.18065][0.672392,0.681934,0.287847][0.72058,0.303302,0][1.1268,-0.157682,1.57025][0.514191,0.697835,0.498631][0.809376,0.304733,0][1.12463,-0.219168,1.58506][0.582975,-0.18773,0.790505][0.809376,0.285819,0][1.12463,-0.219168,1.58506][0.582975,-0.18773,0.790505][0.809376,0.285819,0][1.48044,-0.291836,1.17237][0.808413,-0.197368,0.554539][0.720493,0.28699,0][1.46207,-0.228028,1.18065][0.672392,0.681934,0.287847][0.72058,0.303302,0][1.7096,-0.389243,0.668842][0.661147,0.749892,0.0233808][0.623032,0.303639,0][1.46207,-0.228028,1.18065][0.672392,0.681934,0.287847][0.72058,0.303302,0][1.48044,-0.291836,1.17237][0.808413,-0.197368,0.554539][0.720493,0.28699,0][1.48044,-0.291836,1.17237][0.808413,-0.197368,0.554539][0.720493,0.28699,0][1.73962,-0.439892,0.655097][0.950031,-0.118763,0.288679][0.623041,0.286141,0][1.7096,-0.389243,0.668842][0.661147,0.749892,0.0233808][0.623032,0.303639,0][1.81017,-0.577735,0.0219511][0.656781,0.738473,-0.152631][0.504479,0.302972,0][1.7096,-0.389243,0.668842][0.661147,0.749892,0.0233808][0.623032,0.303639,0][1.73962,-0.439892,0.655097][0.950031,-0.118763,0.288679][0.623041,0.286141,0][1.73962,-0.439892,0.655097][0.950031,-0.118763,0.288679][0.623041,0.286141,0][1.83769,-0.621479,0.0155281][0.951859,-0.30461,0.0343144][0.506342,0.285551,0][1.81017,-0.577735,0.0219511][0.656781,0.738473,-0.152631][0.504479,0.302972,0][1.7612,-0.73253,-0.638058][0.837169,0.472355,-0.275733][0.387864,0.302577,0][1.81017,-0.577735,0.0219511][0.656781,0.738473,-0.152631][0.504479,0.302972,0][1.83769,-0.621479,0.0155281][0.951859,-0.30461,0.0343144][0.506342,0.285551,0][1.83769,-0.621479,0.0155281][0.951859,-0.30461,0.0343144][0.506342,0.285551,0][1.76771,-0.774269,-0.637966][0.781352,-0.616468,-0.097243][0.387869,0.28711,0][1.7612,-0.73253,-0.638058][0.837169,0.472355,-0.275733][0.387864,0.302577,0][1.7612,-0.73253,-0.638058][0.837169,0.472355,-0.275733][0.387864,0.302577,0][1.76771,-0.774269,-0.637966][0.781352,-0.616468,-0.097243][0.387869,0.28711,0][1.53296,-0.838168,-1.22754][0.650296,-0.704048,-0.285362][0.291904,0.285608,0][1.53296,-0.838168,-1.22754][0.650296,-0.704048,-0.285362][0.291904,0.285608,0][1.53565,-0.7956,-1.23566][0.798479,0.302246,-0.520652][0.291917,0.303158,0][1.7612,-0.73253,-0.638058][0.837169,0.472355,-0.275733][0.387864,0.302577,0][1.53565,-0.7956,-1.23566][0.798479,0.302246,-0.520652][0.291917,0.303158,0][1.53296,-0.838168,-1.22754][0.650296,-0.704048,-0.285362][0.291904,0.285608,0][1.13495,-0.918382,-1.68613][0.48508,-0.745553,-0.456998][0.21188,0.287379,0][1.13495,-0.918382,-1.68613][0.48508,-0.745553,-0.456998][0.21188,0.287379,0][1.13179,-0.871783,-1.70429][0.577892,0.200707,-0.791048][0.211339,0.303629,0][1.53565,-0.7956,-1.23566][0.798479,0.302246,-0.520652][0.291917,0.303158,0][1.13179,-0.871783,-1.70429][0.577892,0.200707,-0.791048][0.211339,0.303629,0][1.13495,-0.918382,-1.68613][0.48508,-0.745553,-0.456998][0.21188,0.287379,0][0.589458,-0.980766,-1.95898][0.211251,-0.857516,-0.469084][0.122086,0.286741,0][0.589458,-0.980766,-1.95898][0.211251,-0.857516,-0.469084][0.122086,0.286741,0][0.590603,-0.93771,-1.98365][0.315554,0.0191237,-0.948715][0.121109,0.304432,0][1.13179,-0.871783,-1.70429][0.577892,0.200707,-0.791048][0.211339,0.303629,0][0.590603,-0.93771,-1.98365][0.315554,0.0191237,-0.948715][0.121109,0.304432,0][0.589458,-0.980766,-1.95898][0.211251,-0.857516,-0.469084][0.122086,0.286741,0][-2.91647e-007,-0.989764,-2.06249][-4.19245e-007,-0.862658,-0.505788][0.044969,0.286108,0][-2.91647e-007,-0.989764,-2.06249][-4.19245e-007,-0.862658,-0.505788][0.044969,0.286108,0][-2.69108e-007,-0.946951,-2.0868][0,0.0206031,-0.999788][0.045183,0.304601,0][0.590603,-0.93771,-1.98365][0.315554,0.0191237,-0.948715][0.121109,0.304432,0][0.405707,-0.328426,-1.28353][0.214227,0.67137,-0.709485][0.113474,0.520934,0][0.775094,-0.326734,-1.09423][0.447442,0.659336,-0.604212][0.208126,0.520934,0][0.775094,-0.350648,-1.10083][0.580775,0.212119,-0.785943][0.208128,0.514304,0][0.775094,-0.350648,-1.10083][0.580775,0.212119,-0.785943][0.208128,0.514304,0][0.405707,-0.35234,-1.29013][0.274522,0.255887,-0.926909][0.113475,0.514338,0][0.405707,-0.328426,-1.28353][0.214227,0.67137,-0.709485][0.113474,0.520934,0][0.405707,-0.328426,-1.28353][0.214227,0.67137,-0.709485][0.113474,0.520934,0][0.405707,-0.35234,-1.29013][0.274522,0.255887,-0.926909][0.113475,0.514338,0][0,-0.352712,-1.33176][1.28688e-007,0.266094,-0.963947][0.045422,0.514588,0][0,-0.352712,-1.33176][1.28688e-007,0.266094,-0.963947][0.045422,0.514588,0][0,-0.328798,-1.32516][3.11974e-007,0.686666,-0.726973][0.045424,0.520934,0][0.405707,-0.328426,-1.28353][0.214227,0.67137,-0.709485][0.113474,0.520934,0][0.405707,-0.305024,1.40461][0.209844,0.629223,0.748361][0.912933,0.520934,0][-2.72365e-007,-0.304581,1.45419][3.03867e-007,0.634453,0.772961][0.971531,0.520934,0][-2.82917e-007,-0.326683,1.45434][0,0.00690768,0.999976][0.971543,0.514362,0][-2.82917e-007,-0.326683,1.45434][0,0.00690768,0.999976][0.971543,0.514362,0][0.405707,-0.326907,1.40475][0.268062,0.0062846,0.963381][0.912935,0.514375,0][0.405707,-0.305024,1.40461][0.209844,0.629223,0.748361][0.912933,0.520934,0][0.775094,-0.306504,1.23918][0.468329,0.616974,0.632464][0.809372,0.520934,0][0.405707,-0.305024,1.40461][0.209844,0.629223,0.748361][0.912933,0.520934,0][0.405707,-0.326907,1.40475][0.268062,0.0062846,0.963381][0.912935,0.514375,0][0.405707,-0.326907,1.40475][0.268062,0.0062846,0.963381][0.912935,0.514375,0][0.775094,-0.328386,1.23932][0.592605,0.00525795,0.805476][0.809372,0.514302,0][0.775094,-0.306504,1.23918][0.468329,0.616974,0.632464][0.809372,0.520934,0][1.06824,-0.309471,0.907165][0.675585,0.585658,0.447872][0.720627,0.520934,0][0.775094,-0.306504,1.23918][0.468329,0.616974,0.632464][0.809372,0.520934,0][0.775094,-0.328386,1.23932][0.592605,0.00525795,0.805476][0.809372,0.514302,0][0.775094,-0.328386,1.23932][0.592605,0.00525795,0.805476][0.809372,0.514302,0][1.06824,-0.331354,0.907308][0.826641,0.00375573,0.562718][0.720624,0.514393,0][1.06824,-0.309471,0.907165][0.675585,0.585658,0.447872][0.720627,0.520934,0][1.27922,-0.313167,0.493701][0.682731,0.696261,0.221582][0.622866,0.52293,0][1.06824,-0.309471,0.907165][0.675585,0.585658,0.447872][0.720627,0.520934,0][1.06824,-0.331354,0.907308][0.826641,0.00375573,0.562718][0.720624,0.514393,0][1.06824,-0.331354,0.907308][0.826641,0.00375573,0.562718][0.720624,0.514393,0][1.27929,-0.335903,0.494231][0.948305,0.0105389,0.317186][0.622879,0.516145,0][1.27922,-0.313167,0.493701][0.682731,0.696261,0.221582][0.622866,0.52293,0][1.36029,-0.323291,0.0239871][0.823183,0.567496,-0.0178298][0.506408,0.523675,0][1.27922,-0.313167,0.493701][0.682731,0.696261,0.221582][0.622866,0.52293,0][1.27929,-0.335903,0.494231][0.948305,0.0105389,0.317186][0.622879,0.516145,0][1.27929,-0.335903,0.494231][0.948305,0.0105389,0.317186][0.622879,0.516145,0][1.36167,-0.346608,0.0244271][0.998541,0.0539895,-0.000244877][0.506438,0.516911,0][1.36029,-0.323291,0.0239871][0.823183,0.567496,-0.0178298][0.506408,0.523675,0][1.27922,-0.321545,-0.443608][0.716601,0.645771,-0.263556][0.387862,0.522643,0][1.36029,-0.323291,0.0239871][0.823183,0.567496,-0.0178298][0.506408,0.523675,0][1.36167,-0.346608,0.0244271][0.998541,0.0539895,-0.000244877][0.506438,0.516911,0][1.36167,-0.346608,0.0244271][0.998541,0.0539895,-0.000244877][0.506438,0.516911,0][1.27929,-0.34525,-0.443723][0.939024,0.00535871,-0.343811][0.387864,0.515912,0][1.27922,-0.321545,-0.443608][0.716601,0.645771,-0.263556][0.387862,0.522643,0][1.06824,-0.324763,-0.803845][0.629565,0.613923,-0.476179][0.291907,0.520934,0][1.27922,-0.321545,-0.443608][0.716601,0.645771,-0.263556][0.387862,0.522643,0][1.27929,-0.34525,-0.443723][0.939024,0.00535871,-0.343811][0.387864,0.515912,0][1.27929,-0.34525,-0.443723][0.939024,0.00535871,-0.343811][0.387864,0.515912,0][1.06824,-0.348605,-0.807448][0.791746,0.0885043,-0.604405][0.291908,0.514313,0][1.06824,-0.324763,-0.803845][0.629565,0.613923,-0.476179][0.291907,0.520934,0][0.775094,-0.326734,-1.09423][0.447442,0.659336,-0.604212][0.208126,0.520934,0][1.06824,-0.324763,-0.803845][0.629565,0.613923,-0.476179][0.291907,0.520934,0][1.06824,-0.348605,-0.807448][0.791746,0.0885043,-0.604405][0.291908,0.514313,0][1.06824,-0.348605,-0.807448][0.791746,0.0885043,-0.604405][0.291908,0.514313,0][0.775094,-0.350648,-1.10083][0.580775,0.212119,-0.785943][0.208128,0.514304,0][0.775094,-0.326734,-1.09423][0.447442,0.659336,-0.604212][0.208126,0.520934,0][0.405707,-0.493817,-1.32919][0.274523,0.255881,-0.92691][0.113481,0.47532,0][0.775094,-0.492125,-1.13989][0.591785,0.210747,-0.778059][0.208142,0.475081,0][0.775094,-0.616679,-1.17427][0.598261,0.212023,-0.772742][0.208154,0.44055,0][0.775094,-0.616679,-1.17427][0.598261,0.212023,-0.772742][0.208154,0.44055,0][0.405707,-0.618371,-1.36357][0.274522,0.255874,-0.926912][0.113487,0.440968,0][0.405707,-0.493817,-1.32919][0.274523,0.255881,-0.92691][0.113481,0.47532,0][0,-0.494189,-1.37081][1.33454e-007,0.266105,-0.963944][0.045409,0.477042,0][0.405707,-0.493817,-1.32919][0.274523,0.255881,-0.92691][0.113481,0.47532,0][0.405707,-0.618371,-1.36357][0.274522,0.255874,-0.926912][0.113487,0.440968,0][0.405707,-0.618371,-1.36357][0.274522,0.255874,-0.926912][0.113487,0.440968,0][-1.72193e-007,-0.618743,-1.4052][1.47753e-007,0.266098,-0.963946][0.045398,0.439389,0][0,-0.494189,-1.37081][1.33454e-007,0.266105,-0.963944][0.045409,0.477042,0][0.405707,-0.456366,1.40559][0.268117,0.0062924,0.963366][0.912945,0.475574,0][-3.45345e-007,-0.457438,1.45524][0,0.00686313,0.999976][0.971615,0.47548,0][-4.00306e-007,-0.572554,1.45604][0,0.00687457,0.999976][0.971679,0.441249,0][-4.00306e-007,-0.572554,1.45604][0,0.00687457,0.999976][0.971679,0.441249,0][0.405707,-0.57034,1.40633][0.268156,0.00628295,0.963355][0.912954,0.441414,0][0.405707,-0.456366,1.40559][0.268117,0.0062924,0.963366][0.912945,0.475574,0][0.775094,-0.457846,1.24016][0.592605,0.00525015,0.805476][0.809373,0.47507,0][0.405707,-0.456366,1.40559][0.268117,0.0062924,0.963366][0.912945,0.475574,0][0.405707,-0.57034,1.40633][0.268156,0.00628295,0.963355][0.912954,0.441414,0][0.405707,-0.57034,1.40633][0.268156,0.00628295,0.963355][0.912954,0.441414,0][0.775094,-0.57182,1.24091][0.592605,0.00524981,0.805476][0.809373,0.440531,0][0.775094,-0.457846,1.24016][0.592605,0.00525015,0.805476][0.809373,0.47507,0][1.06824,-0.460813,0.908152][0.826063,0.0041569,0.563563][0.720609,0.475694,0][0.775094,-0.457846,1.24016][0.592605,0.00525015,0.805476][0.809373,0.47507,0][0.775094,-0.57182,1.24091][0.592605,0.00524981,0.805476][0.809373,0.440531,0][0.775094,-0.57182,1.24091][0.592605,0.00524981,0.805476][0.809373,0.440531,0][1.06824,-0.574787,0.908894][0.82526,0.00411238,0.564738][0.720595,0.441624,0][1.06824,-0.460813,0.908152][0.826063,0.0041569,0.563563][0.720609,0.475694,0][1.27975,-0.470413,0.497368][0.94616,0.0127617,0.323449][0.622956,0.476006,0][1.06824,-0.460813,0.908152][0.826063,0.0041569,0.563563][0.720609,0.475694,0][1.06824,-0.574787,0.908894][0.82526,0.00411238,0.564738][0.720595,0.441624,0][1.06824,-0.574787,0.908894][0.82526,0.00411238,0.564738][0.720595,0.441624,0][1.28014,-0.588833,0.500128][0.943502,0.0129,0.331116][0.622964,0.440668,0][1.27975,-0.470413,0.497368][0.94616,0.0127617,0.323449][0.622956,0.476006,0][1.36985,-0.484554,0.027033][0.998366,0.0570992,0.00215572][0.506617,0.476896,0][1.27975,-0.470413,0.497368][0.94616,0.0127617,0.323449][0.622956,0.476006,0][1.28014,-0.588833,0.500128][0.943502,0.0129,0.331116][0.622964,0.440668,0][1.28014,-0.588833,0.500128][0.943502,0.0129,0.331116][0.622964,0.440668,0][1.37705,-0.606,0.029327][0.998399,0.0564819,0.00318474][0.506775,0.441666,0][1.36985,-0.484554,0.027033][0.998366,0.0570992,0.00215572][0.506617,0.476896,0][1.27975,-0.48549,-0.444404][0.939208,0.012551,-0.34312][0.387872,0.476087,0][1.36985,-0.484554,0.027033][0.998366,0.0570992,0.00215572][0.506617,0.476896,0][1.37705,-0.606,0.029327][0.998399,0.0564819,0.00318474][0.506775,0.441666,0][1.37705,-0.606,0.029327][0.998399,0.0564819,0.00318474][0.506775,0.441666,0][1.28014,-0.608956,-0.445004][0.940032,0.00828302,-0.340984][0.387879,0.441027,0][1.27975,-0.48549,-0.444404][0.939208,0.012551,-0.34312][0.387872,0.476087,0][1.06824,-0.489658,-0.828766][0.803686,0.0905842,-0.588118][0.291913,0.475146,0][1.27975,-0.48549,-0.444404][0.939208,0.012551,-0.34312][0.387872,0.476087,0][1.28014,-0.608956,-0.445004][0.940032,0.00828302,-0.340984][0.387879,0.441027,0][1.28014,-0.608956,-0.445004][0.940032,0.00828302,-0.340984][0.387879,0.441027,0][1.06824,-0.613838,-0.847534][0.815072,0.0894718,-0.57241][0.291917,0.440664,0][1.06824,-0.489658,-0.828766][0.803686,0.0905842,-0.588118][0.291913,0.475146,0][0.775094,-0.492125,-1.13989][0.591785,0.210747,-0.778059][0.208142,0.475081,0][1.06824,-0.489658,-0.828766][0.803686,0.0905842,-0.588118][0.291913,0.475146,0][1.06824,-0.613838,-0.847534][0.815072,0.0894718,-0.57241][0.291917,0.440664,0][1.06824,-0.613838,-0.847534][0.815072,0.0894718,-0.57241][0.291917,0.440664,0][0.775094,-0.616679,-1.17427][0.598261,0.212023,-0.772742][0.208154,0.44055,0][0.775094,-0.492125,-1.13989][0.591785,0.210747,-0.778059][0.208142,0.475081,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/Coif.mesh b/shareddata/charcustom/hats/fonts/Coif.mesh deleted file mode 100644 index 4bc0e5d..0000000 --- a/shareddata/charcustom/hats/fonts/Coif.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -2004 -[0.956458,0.0792385,-1.2017][-3.81603,-0.104615,2.43667][0.327427,0.838819,0][1.14766,-1.39534,-0.893239][-0.904027,-0.110851,0.412852][0.347419,0.696496,0][1.11876,0.565783,-0.882248][-0.917477,-0.127336,0.376857][0.355348,0.884489,0][1.11876,0.565783,-0.882248][-0.917477,-0.127336,0.376857][0.355348,0.884489,0][0.887831,0.565875,-1.25412][-0.748207,-0.184149,0.637397][0.324875,0.885637,0][0.956458,0.0792385,-1.2017][-3.81603,-0.104615,2.43667][0.327427,0.838819,0][-1.0631,0.615715,0.546828][0.874325,-0.178957,-0.451143][0.195076,0.742878,0][-0.844411,-1.47032,0.977352][0.753404,-0.174587,-0.633958][0.23001,0.943085,0][-1.14766,-1.39529,0.463624][0.902237,-0.139838,-0.407937][0.187896,0.935809,0][-1.19412,0.762869,-0.436633][0.936242,-0.33128,0.117064][0.114455,0.728611,0][-0.887875,1.27672,-0.379833][0.72705,-0.68297,0.0703552][0.119204,0.679318,0][-1.11875,0.949964,-0.00814554][0.894516,-0.438396,-0.0874685][0.149626,0.710725,0][0.317407,0.234159,-1.6867][-0.276774,-0.0017694,0.960934][0.0774602,0.522802,0][0.055659,0.0941201,-1.72538][-0.0453587,-0.0190522,0.998789][0.0806321,0.509367,0][0.12977,-0.0256966,-1.72206][-0.10754,0.00363818,0.994194][0.0803599,0.497871,0][0.317407,0.234159,-1.6867][-0.276774,-0.0017694,0.960934][0.0774602,0.522802,0][0.12977,-0.0256966,-1.72206][-0.10754,0.00363818,0.994194][0.0803599,0.497871,0][0.42169,0.261437,-1.65377][-0.350282,-0.000184198,0.936644][0.0747604,0.52542,0][0.317407,0.234159,-1.6867][-0.276774,-0.0017694,0.960934][0.0774602,0.522802,0][0.42169,0.261437,-1.65377][-0.350282,-0.000184198,0.936644][0.0747604,0.52542,0][0.0704624,0.515594,-1.71905][-0.0827905,-0.0338584,0.995992][0.0801133,0.549804,0][1.07636,0.51569,0.556446][-0.859223,-0.152793,-0.488252][0.473064,0.875279,0][0.988569,-1.47035,0.779648][-0.805827,-0.1515,-0.572443][0.484236,0.68418,0][0.669367,-1.30763,1.11513][-0.621885,-0.151638,-0.768287][0.51231,0.698753,0][0.669367,-1.30763,1.11513][-0.621885,-0.151638,-0.768287][0.51231,0.698753,0][0.710676,0.762788,0.929074][-0.614288,-0.30775,-0.726595][0.504485,0.897828,0][1.07636,0.51569,0.556446][-0.859223,-0.152793,-0.488252][0.473064,0.875279,0][-1.0631,0.615715,0.546828][0.874325,-0.178957,-0.451143][0.195076,0.742878,0][-1.26512,-1.30772,0.0182842][0.981147,-0.0887872,-0.17166][0.151393,0.927339,0][-1.20554,0.457718,0.242976][0.952721,-0.100484,-0.286752][0.170131,0.757991,0][0.669367,-1.30763,1.11513][-0.621885,-0.151638,-0.768287][0.51231,0.698753,0][0.575543,0.457724,1.10596][-0.549861,-0.113064,-0.827568][0.517887,0.868038,0][0.710676,0.762788,0.929074][-0.614288,-0.30775,-0.726595][0.504485,0.897828,0][-0.165515,1.64449,-0.246044][0.114554,-0.993274,0.0168508][0.130241,0.644054,0][0.210524,1.61914,-0.46162][-0.189383,-0.972734,0.133876][0.112558,0.646454,0][0.185327,1.63826,-0.104947][-0.165387,-0.985035,-0.0485025][0.14181,0.644673,0][0.345707,1.53628,-0.688886][-0.305785,-0.90911,0.282867][0.0939072,0.654369,0][0.0902955,1.51414,-0.882382][-0.0821987,-0.895647,0.437104][0.0780359,0.656464,0][0.56047,1.31191,-0.983021][-0.480544,-0.765281,0.428278][0.0697474,0.675851,0][0.189113,0.762792,-1.61252][-0.15859,-0.326562,0.931776][0.0180295,0.72844,0][-0.183728,0.85792,-1.57258][0.164788,-0.422934,0.891051][0.0213215,0.719319,0][-0.0990011,0.515658,-1.68787][0.0622452,-0.151211,0.98654][0.0118068,0.752139,0][-0.575485,0.457728,1.106][0.522214,-0.113195,-0.845269][0.240902,0.758121,0][-0.666722,-0.960738,1.07043][0.545571,-0.0706728,-0.83508][0.237733,0.894208,0][-0.887803,0.56584,0.823419][0.734186,-0.163541,-0.658958][0.217748,0.747705,0][-0.453859,1.53628,0.109965][0.396969,-0.900563,-0.177204][0.159415,0.65449,0][-0.604607,1.4083,0.29845][0.52218,-0.806129,-0.278359][0.174849,0.666797,0][-0.656074,1.46463,-0.336832][0.535235,-0.84424,0.0279734][0.122764,0.661297,0][-0.726615,0.665345,-1.3854][0.633948,-0.298304,0.71353][0.0366366,0.737824,0][-0.916345,0.949967,-0.99444][0.727342,-0.458514,0.510625][0.0687468,0.710575,0][-1.04322,0.714265,-0.96337][0.850504,-0.248764,0.463421][0.0712529,0.733194,0][-0.979438,-1.39538,-1.1851][0.784769,-0.0963249,0.612258][0.0526964,0.935567,0][-0.956475,0.079258,-1.20167][3.93946,-0.158509,2.41843][0.0515987,0.794083,0][-1.20103,-1.47024,-0.786779][0.914596,-0.205296,0.348378][0.0853463,0.94281,0][0.71068,1.40831,-0.485572][-0.56453,-0.806987,0.173431][0.390874,0.964052,0][0.766468,1.03843,-1.11205][-0.652515,-0.544367,0.527152][0.338211,0.930509,0][0.907676,1.24027,-0.470294][-0.700313,-0.70177,0.130693][0.391524,0.947894,0][0.988569,-1.47035,0.779648][-0.805827,-0.1515,-0.572443][0.484236,0.68418,0][1.07636,0.51569,0.556446][-0.859223,-0.152793,-0.488252][0.473064,0.875279,0][1.20557,0.457738,0.242873][-0.962186,-0.112542,-0.248058][0.44716,0.870683,0][1.20557,0.457738,0.242873][-0.962186,-0.112542,-0.248058][0.44716,0.870683,0][1.20104,-1.47024,0.356013][-0.918039,-0.207803,-0.337671][0.449521,0.685488,0][0.988569,-1.47035,0.779648][-0.805827,-0.1515,-0.572443][0.484236,0.68418,0][1.14766,-1.39534,-0.893239][-0.904027,-0.110851,0.412852][0.347419,0.696496,0][0.956458,0.0792385,-1.2017][-3.81603,-0.104615,2.43667][0.327427,0.838819,0][0.903173,-1.20676,-1.27117][-0.741236,-0.022239,0.670876][0.317125,0.715734,0][0.903173,-1.20676,-1.27117][-0.741236,-0.022239,0.670876][0.317125,0.715734,0][0.930012,-1.95035,-1.35086][-1.9101,-0.370746,2.37258][0.30793,0.644686,0][1.14766,-1.39534,-0.893239][-0.904027,-0.110851,0.412852][0.347419,0.696496,0][-0.880763,0.254829,-1.29119][2.7641,-0.393871,1.94882][0.0442888,0.777224,0][-0.726615,0.665345,-1.3854][0.633948,-0.298304,0.71353][0.0366366,0.737824,0][-1.04322,0.714265,-0.96337][0.850504,-0.248764,0.463421][0.0712529,0.733194,0][-0.956475,0.079258,-1.20167][3.93946,-0.158509,2.41843][0.0515987,0.794083,0][-1.17445,0.384638,-0.784634][0.926772,-0.0739498,0.368272][0.0858512,0.764847,0][-1.20103,-1.47024,-0.786779][0.914596,-0.205296,0.348378][0.0853463,0.94281,0][-0.665796,0.94997,0.856818][0.564457,-0.472639,-0.676757][0.220555,0.710856,0][-0.258906,0.994635,1.04653][0.211145,-0.506102,-0.836229][0.236121,0.706599,0][-0.468232,0.714327,1.10717][0.419681,-0.307494,-0.853999][0.241043,0.733502,0][0.604539,1.12266,0.758199][-0.514164,-0.588444,-0.623995][0.212499,0.694273,0][0.710676,0.762788,0.929074][-0.614288,-0.30775,-0.726595][0.226447,0.728826,0][0.278445,0.810777,1.14147][-0.256478,-0.416977,-0.87198][0.243873,0.724254,0][0.854934,1.27679,0.109545][-0.675588,-0.720994,-0.154106][0.43917,0.949619,0][0.577175,1.51417,-0.21538][-0.471983,-0.881604,0.00242199][0.413395,0.973373,0][1.05375,1.08112,-0.312364][-0.83283,-0.552048,0.0404778][0.403895,0.932152,0][0.6022,1.43732,0.216352][-0.483392,-0.842486,-0.237803][0.168122,0.664001,0][0.709848,1.24021,0.493964][-0.577656,-0.694642,-0.428703][0.190852,0.682954,0][0.439105,1.40836,0.491961][-0.293418,-0.850601,-0.436329][0.190717,0.666821,0][0.198314,0.457717,1.2494][-0.195292,-0.110704,-0.974477][0.252661,0.758144,0][0.199767,-0.96075,1.27282][-0.265585,-0.0659045,-0.961832][0.25433,0.89424,0][-3.97649e-005,-1.20655,1.3224][0.0246247,-0.156647,-0.987348][0.258352,0.91783,0][0.745357,0.589657,-1.46841][-0.545217,-0.0377739,0.837444][0.119237,0.55691,0][0.528134,0.520195,-1.60364][-0.465558,-0.175802,0.867381][0.108149,0.550246,0][0.845551,0.271924,-1.39738][-0.66437,-0.0123416,0.747302][0.125062,0.526426,0][0.845551,0.271924,-1.39738][-0.66437,-0.0123416,0.747302][0.125062,0.526426,0][0.92448,0.466982,-1.31699][-0.708564,-0.0294966,0.70503][0.131655,0.54514,0][0.745357,0.589657,-1.46841][-0.545217,-0.0377739,0.837444][0.119237,0.55691,0][0.931837,0.0794115,-1.31513][-0.739016,-0.00761075,0.673645][0.131807,0.507955,0][0.987249,-0.0941353,-1.25348][-0.799863,-6.02235e-005,0.600182][0.136863,0.491305,0][0.92448,0.466982,-1.31699][-0.708564,-0.0294966,0.70503][0.131655,0.54514,0][0.182597,-0.00782073,-1.69218][-0.507695,-0.167971,3.32618][0.0113604,0.802363,0][0.189113,0.762792,-1.61252][-0.15859,-0.326562,0.931776][0.0180295,0.72844,0][-0.0990011,0.515658,-1.68787][0.0622452,-0.151211,0.98654][0.0118068,0.752139,0][-0.0990011,0.515658,-1.68787][0.0622452,-0.151211,0.98654][0.0118068,0.752139,0][5.45281e-006,-0.138286,-1.70848][-0.0063484,-0.0607006,1.89467][0.01,0.814878,0][0.182597,-0.00782073,-1.69218][-0.507695,-0.167971,3.32618][0.0113604,0.802363,0][0.56047,1.31191,-0.983021][-0.480544,-0.765281,0.428278][0.0697474,0.675851,0][0.0902955,1.51414,-0.882382][-0.0821987,-0.895647,0.437104][0.0780359,0.656464,0][0.201422,1.31191,-1.19709][-0.15139,-0.783785,0.602298][0.0521931,0.675819,0][0.201422,1.31191,-1.19709][-0.15139,-0.783785,0.602298][0.0521931,0.675819,0][0.521607,1.16312,-1.21133][-0.425406,-0.647847,0.631921][0.0509988,0.690092,0][0.56047,1.31191,-0.983021][-0.480544,-0.765281,0.428278][0.0697474,0.675851,0][-0.887875,1.27672,-0.379833][0.72705,-0.68297,0.0703552][0.119204,0.679318,0][-1.07728,0.950014,-0.62484][0.856915,-0.467495,0.217129][0.0990552,0.710627,0][-0.832059,1.12273,-0.922657][0.671916,-0.612857,0.415855][0.0746639,0.69401,0][0.442662,-1.95049,-1.6354][-1.20115,-0.107983,2.84127][0.0156719,0.988758,0][0.836778,-0.151463,-1.34208][-2.61345,-0.0497003,2.89133][0.0400438,0.816198,0][0.218794,-0.215085,-1.6856][-1.13543,-0.0583497,3.63134][0.0118627,0.82225,0][-0.232554,-0.219462,-1.68241][1.04877,-0.0429011,3.67726][0.012124,0.82267,0][-0.668774,-0.153416,-1.48689][1.65246,-0.0142481,2.4818][0.028169,0.816363,0][-0.548107,-1.95054,-1.59481][1.35401,-0.0187908,2.76504][0.0190005,0.988769,0][-0.548107,-1.95054,-1.59481][1.35401,-0.0187908,2.76504][0.0190005,0.988769,0][-0.140438,-1.95056,-1.70038][0.388046,0.00495428,1.51143][0.0103429,0.988755,0][-0.232554,-0.219462,-1.68241][1.04877,-0.0429011,3.67726][0.012124,0.82267,0][0.0704624,0.515594,-1.71905][-0.0827905,-0.0338584,0.995992][0.0986841,0.549804,0][0.42169,0.261437,-1.65377][-0.350282,-0.000184198,0.936644][0.104037,0.525419,0][0.40807,0.262538,-1.59888][-0.850486,-1.2232,-0.18646][0.108539,0.525525,0][0.40807,0.262538,-1.59888][-0.850486,-1.2232,-0.18646][0.108539,0.525525,0][0.0695526,0.514603,-1.66226][-1.02051,-1.38069,-0.0404388][0.103341,0.549709,0][0.0704624,0.515594,-1.71905][-0.0827905,-0.0338584,0.995992][0.0986841,0.549804,0][0.285695,1.57507,0.176231][-0.194141,-0.937157,-0.289906][0.164856,0.650779,0][0.6022,1.43732,0.216352][-0.483392,-0.842486,-0.237803][0.168122,0.664001,0][0.439105,1.40836,0.491961][-0.293418,-0.850601,-0.436329][0.190717,0.666821,0][-0.528403,1.27674,0.635519][0.44884,-0.727289,-0.519224][0.202466,0.67947,0][-0.30144,1.46466,0.477084][0.182675,-0.887195,-0.423693][0.189507,0.661417,0][-0.128868,1.34576,0.73838][-0.0433765,-0.892113,-0.449725][0.210913,0.672864,0][-0.128868,1.34576,0.73838][-0.0433765,-0.892113,-0.449725][0.210913,0.672864,0][-0.382065,1.16312,0.863769][0.337541,-0.657741,-0.673382][0.221163,0.690406,0][-0.528403,1.27674,0.635519][0.44884,-0.727289,-0.519224][0.202466,0.67947,0][0.277891,-0.888569,-1.6973][-0.272437,-0.0059235,0.962155][0.0783292,0.415084,0][0.202007,-0.215994,-1.71181][-0.164347,-0.0108718,0.986343][0.0795195,0.479613,0][0.147993,-1.92166,-1.71933][-0.171846,0.000853019,0.985123][0.0801358,0.315966,0][0.521607,1.16312,-1.21133][-0.425406,-0.647847,0.631921][0.0509988,0.690092,0][0.201422,1.31191,-1.19709][-0.15139,-0.783785,0.602298][0.0521931,0.675819,0][0.350023,0.950001,-1.47578][-0.301302,-0.507452,0.807285][0.0292752,0.710499,0][0.552174,0.520108,-1.54192][-1.77784,-0.863742,2.75859][0.301127,0.88213,0][0.746702,0.405002,-1.41766][-2.3283,-0.472131,2.49949][0.310897,0.870714,0][0.623194,0.81072,-1.40515][-0.547819,-0.373812,0.748438][0.313376,0.909574,0][-0.184979,-1.92211,-1.70821][0.208583,-0.00256616,0.978001][0.0792245,0.315922,0][-0.267398,-0.361761,-1.68983][0.280462,0.00998791,0.959813][0.0777172,0.465628,0][-0.266939,-0.888556,-1.69017][0.294069,-0.0133097,0.955692][0.0777452,0.415085,0][-0.266939,-0.888556,-1.69017][0.294069,-0.0133097,0.955692][0.0777452,0.415085,0][-0.330724,-1.14201,-1.67189][0.294191,-0.0059214,0.955728][0.0762457,0.390768,0][-0.184979,-1.92211,-1.70821][0.208583,-0.00256616,0.978001][0.0792245,0.315922,0][1.27219,-1.39524,-0.448939][-0.978194,-0.159126,0.133472][0.383828,0.695144,0][1.24299,0.615698,-0.329832][-0.982966,-0.169534,0.0709622][0.400795,0.887582,0][1.14766,-1.39534,-0.893239][-0.904027,-0.110851,0.412852][0.347419,0.696496,0][-1.20103,-1.47024,-0.786779][0.914596,-0.205296,0.348378][0.0853463,0.94281,0][-1.22755,0.515663,-0.560166][0.971754,-0.134603,0.193843][0.104282,0.75231,0][-1.27697,-1.30771,-0.332542][0.992125,-0.0976128,0.078487][0.122624,0.927285,0][-1.27697,-1.30771,-0.332542][0.992125,-0.0976128,0.078487][0.122624,0.927285,0][-1.30359,-1.59783,-0.56091][0.906114,-0.391148,0.161125][0.103846,0.955085,0][-1.20103,-1.47024,-0.786779][0.914596,-0.205296,0.348378][0.0853463,0.94281,0][-0.800778,0.545702,-1.39317][0.633682,-0.0500182,0.771975][0.0533903,0.552693,0][-0.836818,0.334337,-1.36585][0.727313,-0.0357391,0.685374][0.0511493,0.532414,0][-0.568509,0.519886,-1.56087][0.541244,-0.166539,0.824209][0.0671418,0.550216,0][-0.568509,0.519886,-1.56087][0.541244,-0.166539,0.824209][0.0671418,0.550216,0][-0.389692,0.759298,-1.61718][0.401405,-0.145725,0.904233][0.0717596,0.573186,0][-0.800778,0.545702,-1.39317][0.633682,-0.0500182,0.771975][0.0533903,0.552693,0][-3.97649e-005,-1.20655,1.3224][0.0246247,-0.156647,-0.987348][0.258352,0.91783,0][-0.198305,0.457731,1.2494][0.189702,-0.119433,-0.974551][0.252661,0.758142,0][0.198314,0.457717,1.2494][-0.195292,-0.110704,-0.974477][0.252661,0.758144,0][-0.468232,0.714327,1.10717][0.419681,-0.307494,-0.853999][0.241043,0.733502,0][-0.258906,0.994635,1.04653][0.211145,-0.506102,-0.836229][0.236121,0.706599,0][-2.89086e-005,0.665324,1.23091][0.0176569,-0.299838,-0.953827][0.251181,0.738222,0][-0.330724,-1.14201,-1.67189][0.294191,-0.0059214,0.955728][0.0762457,0.390768,0][-0.338706,-1.90517,-1.67218][0.227933,-0.00275499,0.973673][0.0762696,0.317547,0][-0.184979,-1.92211,-1.70821][0.208583,-0.00256616,0.978001][0.0792245,0.315922,0][0.903173,-1.20676,-1.27117][-0.741236,-0.022239,0.670876][0.317125,0.715734,0][0.836778,-0.151463,-1.34208][-2.61345,-0.0497003,2.89133][0.315096,0.81713,0][0.442662,-1.95049,-1.6354][-1.20115,-0.107983,2.84127][0.284612,0.645544,0][0.442662,-1.95049,-1.6354][-1.20115,-0.107983,2.84127][0.284612,0.645544,0][0.930012,-1.95035,-1.35086][-1.9101,-0.370746,2.37258][0.30793,0.644686,0][0.903173,-1.20676,-1.27117][-0.741236,-0.022239,0.670876][0.317125,0.715734,0][1.14683,0.127616,-1.03117][-0.80161,-0.0220481,0.59744][0.155092,0.51258,0][0.92448,0.466982,-1.31699][-0.708564,-0.0294966,0.70503][0.131655,0.54514,0][0.987249,-0.0941353,-1.25348][-0.799863,-6.02235e-005,0.600182][0.136863,0.491305,0][0.868341,0.00388312,-1.37596][-0.686217,-0.00133157,0.727395][0.126818,0.500709,0][0.811352,-0.150662,-1.42734][-0.635717,-0.0107968,0.771847][0.122606,0.485881,0][0.903347,-0.255723,-1.34342][-0.687801,0.0136879,0.725771][0.129487,0.475801,0][0.903347,-0.255723,-1.34342][-0.687801,0.0136879,0.725771][0.129487,0.475801,0][0.931837,0.0794115,-1.31513][-0.739016,-0.00761075,0.673645][0.131807,0.507955,0][0.868341,0.00388312,-1.37596][-0.686217,-0.00133157,0.727395][0.126818,0.500709,0][-0.0782576,1.16306,0.949148][0.025755,-0.635504,-0.771667][0.228165,0.690425,0][0.357188,1.2402,0.793741][-0.275201,-0.710937,-0.647174][0.215434,0.683001,0][0.278445,0.810777,1.14147][-0.256478,-0.416977,-0.87198][0.243873,0.724254,0][-0.30144,1.46466,0.477084][0.182675,-0.887195,-0.423693][0.189507,0.661417,0][0.439105,1.40836,0.491961][-0.293418,-0.850601,-0.436329][0.190717,0.666821,0][0.000108432,1.27682,0.836297][-0.0601828,-0.783022,-0.619076][0.218931,0.679493,0][-0.424512,0.994687,-1.41428][0.397805,-0.527435,0.750709][0.0343264,0.706221,0][-0.606257,1.24021,-1.04591][0.497549,-0.699466,0.513023][0.0645775,0.682721,0][-0.726615,0.665345,-1.3854][0.633948,-0.298304,0.71353][0.0366366,0.737824,0][-0.726615,0.665345,-1.3854][0.633948,-0.298304,0.71353][0.0366366,0.737824,0][-0.426051,0.540795,-1.60036][1.78187,-1.12351,4.8356][0.0189866,0.749741,0][-0.424512,0.994687,-1.41428][0.397805,-0.527435,0.750709][0.0343264,0.706221,0][-0.330195,1.31192,-1.14812][0.255069,-0.784104,0.565792][0.0562085,0.675825,0][0.201422,1.31191,-1.19709][-0.15139,-0.783785,0.602298][0.0521931,0.675819,0][-0.124318,1.53625,-0.820956][0.142955,-0.906585,0.397074][0.083077,0.654351,0][1.02783,1.08108,0.0733517][-0.829952,-0.529464,-0.175634][0.435503,0.930966,0][1.05375,1.08112,-0.312364][-0.83283,-0.552048,0.0404778][0.403895,0.932152,0][1.19412,0.762829,0.00597127][-0.940466,-0.304707,-0.150591][0.42884,0.90066,0][1.24299,0.615698,-0.329832][-0.982966,-0.169534,0.0709622][0.400795,0.887582,0][1.11876,0.565783,-0.882248][-0.917477,-0.127336,0.376857][0.355348,0.884489,0][1.14766,-1.39534,-0.893239][-0.904027,-0.110851,0.412852][0.347419,0.696496,0][-1.06662,0.904317,0.301534][0.867872,-0.391971,-0.305215][0.175012,0.715152,0][-1.25854,0.515681,-0.0994913][0.987366,-0.143982,-0.06616][0.142058,0.752378,0][-1.11875,0.949964,-0.00814554][0.894516,-0.438396,-0.0874685][0.149626,0.710725,0][-0.528403,1.27674,0.635519][0.44884,-0.727289,-0.519224][0.202466,0.67947,0][-0.382065,1.16312,0.863769][0.337541,-0.657741,-0.673382][0.221163,0.690406,0][-0.665796,0.94997,0.856818][0.564457,-0.472639,-0.676757][0.220555,0.710856,0][-0.836818,0.334337,-1.36585][0.727313,-0.0357391,0.685374][0.0511493,0.532414,0][-0.800778,0.545702,-1.39317][0.633682,-0.0500182,0.771975][0.0533903,0.552693,0][-1.05725,0.296292,-1.10501][0.797057,-0.0214232,0.603524][0.0297599,0.528764,0][-1.05725,0.296292,-1.10501][0.797057,-0.0214232,0.603524][0.0297599,0.528764,0][-0.971641,0.0793879,-1.22416][0.788103,-0.0147721,0.615366][0.0395305,0.507953,0][-0.836818,0.334337,-1.36585][0.727313,-0.0357391,0.685374][0.0511493,0.532414,0][-0.969094,-0.0940894,-1.22821][0.775585,0.000304306,0.631244][0.0398624,0.491309,0][-1.1815,-0.085811,-0.891807][0.845606,0.00701429,0.533762][0.0122767,0.492103,0][-0.951888,-0.675206,-1.24783][0.779702,0.0590319,0.623362][0.0414714,0.435555,0][-0.969094,-0.0940894,-1.22821][0.775585,0.000304306,0.631244][0.0398624,0.491309,0][-0.951888,-0.675206,-1.24783][0.779702,0.0590319,0.623362][0.0414714,0.435555,0][-0.958671,-0.247406,-1.24019][0.729286,0.00413585,0.684196][0.0408453,0.476599,0][-0.969094,-0.0940894,-1.22821][0.775585,0.000304306,0.631244][0.0398624,0.491309,0][-0.958671,-0.247406,-1.24019][0.729286,0.00413585,0.684196][0.0408453,0.476599,0][-0.971641,0.0793879,-1.22416][0.788103,-0.0147721,0.615366][0.0395305,0.507953,0][-0.969094,-0.0940894,-1.22821][0.775585,0.000304306,0.631244][0.0398624,0.491309,0][-0.971641,0.0793879,-1.22416][0.788103,-0.0147721,0.615366][0.0395305,0.507953,0][-1.05725,0.296292,-1.10501][0.797057,-0.0214232,0.603524][0.0297599,0.528764,0][-1.08139,-1.17922,-1.07161][0.816953,-0.00141377,0.576703][0.0133551,0.0612871,0][-0.905212,-1.51119,-1.31721][0.79705,-0.0234492,0.603457][0.0229533,0.0248463,0][-0.931971,-1.22575,-1.27077][0.760903,-0.0360558,0.647863][0.027581,0.0521057,0][-0.931971,-1.22575,-1.27077][0.760903,-0.0360558,0.647863][0.027581,0.0521057,0][-1.04126,-0.868723,-1.1323][0.789251,-0.0370414,0.612953][0.0270839,0.0881902,0][-1.08139,-1.17922,-1.07161][0.816953,-0.00141377,0.576703][0.0133551,0.0612871,0][-0.56881,0.135632,-1.56659][0.421107,0.014656,0.906893][0.0676108,0.513349,0][-0.401124,0.261529,-1.64697][0.384608,-0.0173604,0.922917][0.0742024,0.525428,0][-0.444761,0.542665,-1.62185][0.400871,-0.0823541,0.912426][0.0721423,0.552402,0][-0.0203732,-0.139806,-1.72498][0.0672751,0.0152445,0.997618][0.0805992,0.486923,0][0.055659,0.0941201,-1.72538][-0.0453587,-0.0190522,0.998789][0.0806321,0.509367,0][-0.0924451,0.113845,-1.7214][0.130681,0.0122148,0.991349][0.0803062,0.511259,0][0.29569,0.731395,-1.66408][-0.373726,-0.0806287,0.924028][0.0756054,0.570509,0][0.528134,0.520195,-1.60364][-0.465558,-0.175802,0.867381][0.0706489,0.550246,0][0.745357,0.589657,-1.46841][-0.545217,-0.0377739,0.837444][0.05956,0.55691,0][0.745357,0.589657,-1.46841][-0.545217,-0.0377739,0.837444][0.05956,0.55691,0][0.410483,0.759313,-1.62378][-0.357942,0.139074,0.923329][0.072301,0.573188,0][0.29569,0.731395,-1.66408][-0.373726,-0.0806287,0.924028][0.0756054,0.570509,0][-0.453859,1.53628,0.109965][0.396969,-0.900563,-0.177204][0.159415,0.65449,0][-0.656074,1.46463,-0.336832][0.535235,-0.84424,0.0279734][0.122764,0.661297,0][-0.392886,1.59169,-0.215359][0.330976,-0.943617,-0.00651218][0.132748,0.649124,0][-0.330195,1.31192,-1.14812][0.255069,-0.784104,0.565792][0.0562085,0.675825,0][-0.33463,1.57506,-0.54979][0.291926,-0.928858,0.228039][0.10532,0.650669,0][-0.66575,1.40831,-0.61236][0.521736,-0.808794,0.271374][0.10016,0.666658,0][-0.66575,1.40831,-0.61236][0.521736,-0.808794,0.271374][0.10016,0.666658,0][-0.606257,1.24021,-1.04591][0.497549,-0.699466,0.513023][0.0645775,0.682721,0][-0.330195,1.31192,-1.14812][0.255069,-0.784104,0.565792][0.0562085,0.675825,0][0.901297,1.08103,0.430834][-0.760987,-0.514624,-0.395046][0.464797,0.929866,0][1.19412,0.762829,0.00597127][-0.940466,-0.304707,-0.150591][0.42884,0.90066,0][0.930377,0.714222,0.714359][-0.772953,-0.225972,-0.592858][0.486716,0.893829,0][0.604539,1.12266,0.758199][-0.514164,-0.588444,-0.623995][0.491772,0.932854,0][0.901297,1.08103,0.430834][-0.760987,-0.514624,-0.395046][0.464797,0.929866,0][0.930377,0.714222,0.714359][-0.772953,-0.225972,-0.592858][0.486716,0.893829,0][-0.520567,0.384525,-1.5711][0.882727,-0.0292485,2.5586][0.021359,0.764738,0][-0.550903,0.136257,-1.55995][0.606858,0.00163911,1.68851][0.0222288,0.78856,0][-0.18262,-0.00786519,-1.69217][0.559162,-0.0741016,3.32826][0.0113606,0.802367,0][-0.900332,-0.0144756,-1.30468][0.740625,0.000533519,0.671918][0.0461337,0.498947,0][-0.971641,0.0793879,-1.22416][0.788103,-0.0147721,0.615366][0.0395305,0.507953,0][-0.958671,-0.247406,-1.24019][0.729286,0.00413585,0.684196][0.0408453,0.476599,0][-0.958671,-0.247406,-1.24019][0.729286,0.00413585,0.684196][0.0408453,0.476599,0][-0.709135,-0.534117,-1.47729][0.494776,-0.00325436,0.869014][0.0602883,0.449091,0][-0.851493,-0.150666,-1.35448][0.696087,-0.00164836,0.717956][0.0502174,0.485881,0][0.960949,-1.22576,-1.2837][-0.754604,-0.0365953,0.65516][0.0345683,0.361961,0][0.930969,-1.51165,-1.33127][-0.791017,-0.0187872,0.611505][0.0401886,0.334832,0][1.1102,-1.17931,-1.08921][-0.832453,-0.00630157,0.554061][0.048065,0.371556,0][0.182597,-0.00782073,-1.69218][-0.507695,-0.167971,3.32618][0.0113604,0.802363,0][0.550903,0.136275,-1.55995][-0.658398,-0.0199783,1.83372][0.0222288,0.788558,0][0.425993,0.540753,-1.60039][-1.57577,-0.977867,4.85647][0.0189842,0.749745,0][0.425993,0.540753,-1.60039][-1.57577,-0.977867,4.85647][0.0189842,0.749745,0][0.189113,0.762792,-1.61252][-0.15859,-0.326562,0.931776][0.0180295,0.72844,0][0.182597,-0.00782073,-1.69218][-0.507695,-0.167971,3.32618][0.0113604,0.802363,0][-0.666722,-0.960738,1.07043][0.545571,-0.0706728,-0.83508][0.237733,0.894208,0][-0.575485,0.457728,1.106][0.522214,-0.113195,-0.845269][0.240902,0.758121,0][-0.394357,-0.96072,1.21821][0.351259,-0.0835171,-0.932546][0.249852,0.894229,0][-0.394357,-0.96072,1.21821][0.351259,-0.0835171,-0.932546][0.249852,0.894229,0][-0.598785,-1.53479,1.22032][0.5591,-0.269682,-0.784014][0.249923,0.949307,0][-0.666722,-0.960738,1.07043][0.545571,-0.0706728,-0.83508][0.237733,0.894208,0][0.303429,-1.47017,1.34288][-0.229556,-0.275907,-0.93337][0.259984,0.943126,0][2.5443e-006,-1.53609,1.4078][-0.00166245,-0.342834,-0.939394][0.265297,0.949461,0][-3.97649e-005,-1.20655,1.3224][0.0246247,-0.156647,-0.987348][0.258352,0.91783,0][1.16273,-0.0863862,-0.906193][-0.833988,-0.408639,-0.37078][0.165341,0.492048,0][0.987249,-0.0941353,-1.25348][-0.799863,-6.02235e-005,0.600182][0.136863,0.491305,0][0.972482,-0.675181,-1.2701][-0.775004,0.0574812,0.629336][0.1355,0.435557,0][-0.979438,-1.39538,-1.1851][0.784769,-0.0963249,0.612258][0.0526964,0.935567,0][-0.836837,-0.151499,-1.34203][2.95151,0.0375536,2.97968][0.0400484,0.816201,0][-0.894063,0.00292468,-1.27975][2.09673,-0.0103883,1.73776][0.0451828,0.801395,0][0.439105,1.40836,0.491961][-0.293418,-0.850601,-0.436329][0.190717,0.666821,0][-0.30144,1.46466,0.477084][0.182675,-0.887195,-0.423693][0.189507,0.661417,0][-0.0197589,1.6298,0.0776631][0.00308547,-0.973724,-0.227711][0.156783,0.645512,0][-0.165515,1.64449,-0.246044][0.114554,-0.993274,0.0168508][0.130241,0.644054,0][-0.0197589,1.6298,0.0776631][0.00308547,-0.973724,-0.227711][0.156783,0.645512,0][-0.230876,1.5917,0.156537][0.16561,-0.955698,-0.243339][0.163244,0.64918,0][1.33273,-1.65844,-0.556747][-0.887507,-0.395812,0.235932][0.37405,0.670241,0][1.54172,-1.89423,-0.215538][-2.52714,-1.05173,0.167591][0.401165,0.646589,0][1.33924,-1.59973,-0.103945][-0.915725,-0.397766,-0.0568335][0.411365,0.674482,0][-0.444761,0.542665,-1.62185][0.400871,-0.0823541,0.912426][0.0721423,0.552402,0][-0.401124,0.261529,-1.64697][0.384608,-0.0173604,0.922917][0.0742024,0.525428,0][-0.336504,0.574765,-1.66019][0.345921,-0.0881871,0.93411][0.0752866,0.555481,0][-0.336504,0.574765,-1.66019][0.345921,-0.0881871,0.93411][0.0752866,0.555481,0][-0.389692,0.759298,-1.61718][0.401405,-0.145725,0.904233][0.0717596,0.573186,0][-0.444761,0.542665,-1.62185][0.400871,-0.0823541,0.912426][0.0721423,0.552402,0][-1.19412,0.762869,-0.436633][0.936242,-0.33128,0.117064][0.114455,0.728611,0][-1.11875,0.949964,-0.00814554][0.894516,-0.438396,-0.0874685][0.149626,0.710725,0][-1.25854,0.515681,-0.0994913][0.987366,-0.143982,-0.06616][0.142058,0.752378,0][-1.22755,0.515663,-0.560166][0.971754,-0.134603,0.193843][0.104282,0.75231,0][-1.25854,0.515681,-0.0994913][0.987366,-0.143982,-0.06616][0.142058,0.752378,0][-1.27697,-1.30771,-0.332542][0.992125,-0.0976128,0.078487][0.122624,0.927285,0][0.211438,1.47163,-1.02439][5.65277e-007,-0.0693557,-0.997592][0.0981982,0.142795,0][-7.87952e-007,1.10629,-0.998994][5.65277e-007,-0.0693557,-0.997592][0.118484,0.107742,0][-0.21144,1.47163,-1.02439][5.65277e-007,-0.0693557,-0.997592][0.138771,0.142795,0][-0.21144,1.20415,-1.35218][-2.81221e-007,0.0693565,0.997592][0.186364,0.110732,0][0.211438,1.20415,-1.35218][-2.81221e-007,0.0693565,0.997592][0.186364,0.0701591,0][-6.89565e-007,1.5695,-1.37758][-2.81221e-007,0.0693565,0.997592][0.221416,0.0904453,0][-0.266939,-0.888556,-1.69017][0.294069,-0.0133097,0.955692][0.0777452,0.415085,0][-0.717597,-0.254293,-1.47099][0.583291,-0.0506262,0.810684][0.0597713,0.475939,0][-0.709135,-0.534117,-1.47729][0.494776,-0.00325436,0.869014][0.0602883,0.449091,0][-1.54168,-1.89413,-0.215504][2.41848,-1.16726,0.125839][0.132117,0.983566,0][-1.30359,-1.59783,-0.56091][0.906114,-0.391148,0.161125][0.103846,0.955085,0][-1.33924,-1.59975,-0.103918][0.918733,-0.388718,-0.0694866][0.14132,0.955339,0][-1.33924,-1.59975,-0.103918][0.918733,-0.388718,-0.0694866][0.14132,0.955339,0][-1.3711,-1.75058,0.245532][2.80661,-1.44171,-0.723883][0.169949,0.969863,0][-1.54168,-1.89413,-0.215504][2.41848,-1.16726,0.125839][0.132117,0.983566,0][-1.1572,-1.77313,-1.09312][0.802514,-0.146464,0.578376][0.0601718,0.971824,0][-1.20103,-1.47024,-0.786779][0.914596,-0.205296,0.348378][0.0853463,0.94281,0][-1.45264,-1.902,-0.634672][3.03242,-0.874477,1.02648][0.097743,0.984258,0][-1.45264,-1.902,-0.634672][3.03242,-0.874477,1.02648][0.097743,0.984258,0][-1.08892,-1.9505,-1.18526][2.22472,-0.106432,2.15013][0.0525842,0.988827,0][-1.1572,-1.77313,-1.09312][0.802514,-0.146464,0.578376][0.0601718,0.971824,0][0.956458,0.0792385,-1.2017][-3.81603,-0.104615,2.43667][0.327427,0.838819,0][0.836778,-0.151463,-1.34208][-2.61345,-0.0497003,2.89133][0.315096,0.81713,0][0.903173,-1.20676,-1.27117][-0.741236,-0.022239,0.670876][0.317125,0.715734,0][0.0704624,0.515594,-1.71905][-0.0827905,-0.0338584,0.995992][0.0801133,0.549804,0][0.0832852,0.776317,-1.6881][-0.292062,-0.144426,0.945432][0.0775751,0.574819,0][0.000360707,0.647088,-1.71151][0.0372977,-0.105875,0.99368][0.0794945,0.56242,0][0.0704624,0.515594,-1.71905][-0.0827905,-0.0338584,0.995992][0.0801133,0.549804,0][0.000360707,0.647088,-1.71151][0.0372977,-0.105875,0.99368][0.0794945,0.56242,0][0.005153,0.463582,-1.72228][0.0130786,0.00116832,0.999914][0.0803783,0.544814,0][0.0704624,0.515594,-1.71905][-0.0827905,-0.0338584,0.995992][0.0801133,0.549804,0][0.005153,0.463582,-1.72228][0.0130786,0.00116832,0.999914][0.0803783,0.544814,0][0.317407,0.234159,-1.6867][-0.276774,-0.0017694,0.960934][0.0774602,0.522802,0][-0.833889,-1.74312,1.10581][2.1786,-0.927476,-2.14355][0.240496,0.969278,0][-1.10884,-1.71055,0.725112][2.55621,-1.33775,-1.40567][0.209283,0.966095,0][-0.844411,-1.47032,0.977352][0.753404,-0.174587,-0.633958][0.23001,0.943085,0][-0.951888,-0.675206,-1.24783][0.779702,0.0590319,0.623362][0.0414714,0.435555,0][-0.815358,-0.890694,-1.3885][0.599142,-0.0167862,0.800466][0.053007,0.41488,0][-0.958671,-0.247406,-1.24019][0.729286,0.00413585,0.684196][0.0408453,0.476599,0][-1.17416,-0.752529,-0.907863][0.827981,0.0674793,0.556681][0.0135933,0.428136,0][-0.815358,-0.890694,-1.3885][0.599142,-0.0167862,0.800466][0.053007,0.41488,0][-0.951888,-0.675206,-1.24783][0.779702,0.0590319,0.623362][0.0414714,0.435555,0][0.211439,1.46452,0.631486][-0.816574,0.465277,0.341651][0.0211485,0.257199,0][-1.28601e-006,1.09836,0.624788][-0.816574,0.465277,0.341651][0.0414348,0.222068,0][0.211438,1.2141,0.972515][-0.816573,0.465277,0.341651][0.0211485,0.233173,0][-1.34476e-006,1.58027,0.979214][-2.81852e-007,0.0182895,-0.999833][0.0414348,0.268304,0][0.211438,1.2141,0.972515][-0.816573,0.465277,0.341651][0.0211485,0.233173,0][-0.211441,1.2141,0.972516][-2.81852e-007,0.0182895,-0.999833][0.0617211,0.233173,0][-1.40217e-006,-0.11567,1.00133][0,0.812859,0.582461][0.43459,0.286097,0][-0.211425,-0.329114,1.2992][0,0.812859,0.582461][0.466133,0.281502,0][0.211422,-0.329114,1.2992][0,0.812859,0.582461][0.466133,0.281502,0][0.211422,-0.329114,1.2992][0,0.812859,0.582461][0.417923,0.0929478,0][-1.54884e-006,-0.119721,1.59994][-0.816785,0.00391166,-0.576929][0.418102,0.124756,0][0.211422,0.0937225,1.30207][-0.816785,0.00391166,-0.576929][0.386764,0.118928,0][-0.211425,0.0937225,1.30207][0,-0.812859,-0.58246][0.436016,0.25432,0][0.211422,0.0937225,1.30207][-0.816785,0.00391166,-0.576929][0.436016,0.25432,0][-1.54884e-006,-0.119721,1.59994][-0.816785,0.00391166,-0.576929][0.467558,0.249725,0][-0.211425,0.0937225,1.30207][0,-0.812859,-0.58246][0.436016,0.25432,0][-0.211425,-0.329114,1.2992][0,0.812859,0.582461][0.466133,0.281502,0][-1.40217e-006,-0.11567,1.00133][0,0.812859,0.582461][0.43459,0.286097,0][-0.211425,-0.439087,1.28929][0.816785,0.0167131,-0.576701][0.297468,0.0832176,0][-1.5467e-006,-0.659078,1.58235][0.816785,0.0167131,-0.576701][0.296025,0.0512652,0][-0.211425,-0.861756,1.27704][0.816785,0.0167131,-0.576701][0.327396,0.0558345,0][-1.4352e-006,-0.641765,0.983972][0,0.799747,0.600337][0.328838,0.087787,0][-0.211425,-0.861756,1.27704][0.816785,0.0167131,-0.576701][0.327396,0.0558345,0][0.211422,-0.861756,1.27704][0,0.799747,0.600337][0.327396,0.0558345,0][-0.211425,-0.172851,1.30196][0.816784,-0.0229919,0.576485][0.468882,0.172511,0][-0.211425,-0.595362,1.28511][0.816784,-0.0229919,0.576485][0.437495,0.14682,0][-1.40971e-006,-0.372199,0.994454][0.816784,-0.0229919,0.576485][0.468975,0.140862,0][-0.211425,-0.172851,1.30196][0.816784,-0.0229919,0.576485][0.468882,0.172511,0][0.211422,-0.172851,1.30196][3.4338e-007,-0.793171,-0.608999][0.468882,0.172511,0][-1.55739e-006,-0.396015,1.59261][3.4338e-007,-0.793171,-0.608999][0.437402,0.178469,0][-1.52833e-006,0.165916,1.59354][3.51256e-007,0.782247,-0.622968][0.386585,0.178893,0][0.211422,-0.0623626,1.3069][3.51256e-007,0.782247,-0.622968][0.387096,0.147849,0][-0.211425,-0.0623626,1.3069][3.51256e-007,0.782247,-0.622968][0.417369,0.174856,0][-0.211425,-0.0623626,1.3069][3.51256e-007,0.782247,-0.622968][0.417369,0.174856,0][-1.40066e-006,0.131504,0.995903][0.816784,0.0332204,0.575987][0.419209,0.142322,0][-0.211425,0.359784,1.28255][0.816784,0.0332204,0.575987][0.418699,0.173366,0][0.211422,0.359784,1.28255][0,-0.782247,0.622969][0.437913,0.201562,0][-0.211425,0.359784,1.28255][0.816784,0.0332204,0.575987][0.468187,0.228569,0][-1.40066e-006,0.131504,0.995903][0.816784,0.0332204,0.575987][0.437402,0.232606,0][0.211422,0.359784,1.28255][0,-0.782247,0.622969][0.388425,0.146359,0][0.211422,-0.0623626,1.3069][3.51256e-007,0.782247,-0.622968][0.387096,0.147849,0][-1.52833e-006,0.165916,1.59354][3.51256e-007,0.782247,-0.622968][0.386585,0.178893,0][-0.211425,-0.439087,1.28929][0.816785,0.0167131,-0.576701][0.297468,0.0832176,0][0.211422,-0.439087,1.28929][0,-0.799747,-0.600337][0.297468,0.0832176,0][-1.5467e-006,-0.659078,1.58235][0.816785,0.0167131,-0.576701][0.296025,0.0512652,0][0.211422,-0.861756,1.27704][0,0.799747,0.600337][0.51877,0.226868,0][0.211422,-0.439087,1.28929][0,-0.799747,-0.600337][0.48784,0.200622,0][-1.4352e-006,-0.641765,0.983972][0,0.799747,0.600337][0.519018,0.194884,0][-1.40971e-006,-0.372199,0.994454][0.816784,-0.0229919,0.576485][0.468975,0.140862,0][-0.211425,-0.595362,1.28511][0.816784,-0.0229919,0.576485][0.437495,0.14682,0][0.211422,-0.595362,1.28511][0,0.793171,0.609][0.437495,0.14682,0][0.211422,-0.595362,1.28511][0,0.793171,0.609][0.511903,0.280012,0][-1.55739e-006,-0.396015,1.59261][3.4338e-007,-0.793171,-0.608999][0.480844,0.286097,0][0.211422,-0.172851,1.30196][3.4338e-007,-0.793171,-0.608999][0.480733,0.254058,0][0.211422,-0.70573,1.27308][-4.42851e-007,-0.785416,0.618968][0.388514,0.200561,0][-0.211425,-0.705729,1.27308][-4.42851e-007,-0.785416,0.618968][0.388514,0.200561,0][-1.43709e-006,-0.932544,0.985277][-4.42851e-007,-0.785416,0.618968][0.386585,0.232606,0][-0.211425,-1.12799,1.29528][0.816784,-0.0302786,-0.576148][0.417906,0.228504,0][-0.211425,-0.705729,1.27308][-4.42851e-007,-0.785416,0.618968][0.388514,0.200561,0][-1.56444e-006,-0.90118,1.58308][0.816784,-0.0302786,-0.576148][0.419836,0.196459,0][-1.56444e-006,-0.90118,1.58308][0.816784,-0.0302786,-0.576148][0.419836,0.196459,0][0.211422,-1.12799,1.29528][0,0.785415,-0.618969][0.417906,0.228504,0][-0.211425,-1.12799,1.29528][0.816784,-0.0302786,-0.576148][0.417906,0.228504,0][-0.211425,-1.12799,1.29528][0.816784,-0.0302786,-0.576148][0.417906,0.228504,0][-1.43709e-006,-0.932544,0.985277][-4.42851e-007,-0.785416,0.618968][0.386585,0.232606,0][-0.211425,-0.705729,1.27308][-4.42851e-007,-0.785416,0.618968][0.388514,0.200561,0][-0.211425,0.204691,1.29926][0.816778,-0.0855771,-0.570571][0.502665,0.335149,0][-0.211425,0.622868,1.23654][0.816778,-0.0855771,-0.570571][0.505936,0.339118,0][-1.51119e-006,0.458102,1.5639][0.816778,-0.0855771,-0.570571][0.504519,0.305501,0][0.211422,0.622868,1.23654][0,-0.722273,0.691608][0.489196,0.394874,0][-0.211425,0.622868,1.23654][0.816778,-0.0855771,-0.570571][0.51844,0.366755,0][-1.3871e-006,0.369456,0.971888][0,-0.722273,0.691608][0.51886,0.396458,0][-0.211432,-1.87718,1.56609][0.816706,-0.279548,-0.50482][0.0981982,0.0603007,0][-0.211432,-1.50718,1.3612][0.816706,-0.279548,-0.50482][0.0981982,0.0771019,0][-1.61854e-006,-1.5474,1.72553][0.816706,-0.279548,-0.50482][0.118484,0.0472262,0][0.211429,-1.50718,1.3612][0,-0.435271,0.900299][0.138769,0.0771019,0][-0.211432,-1.50718,1.3612][0.816706,-0.279548,-0.50482][0.0981982,0.0771019,0][-1.51659e-006,-1.83696,1.20177][0,-0.435271,0.900299][0.118484,0.0901764,0][0.211426,1.12127,1.045][-0.816734,-0.224728,-0.531453][0.363174,0.594933,0][0.211426,0.731758,1.20971][-0.816734,-0.224728,-0.531453][0.363174,0.581427,0][-1.4465e-006,1.0429,1.40306][-0.816734,-0.224728,-0.531453][0.342889,0.565571,0][0.211426,1.12127,1.045][-0.816734,-0.224728,-0.531453][0.363174,0.594933,0][-0.211429,1.12127,1.045][0,-0.527807,0.849364][0.322604,0.594933,0][-1.35408e-006,0.810122,0.851648][0,-0.527807,0.849364][0.342889,0.610789,0][-1.60008e-006,-1.37351,1.66857][0,0.665328,-0.746551][0.466115,0.419062,0][0.211423,-1.64704,1.4248][0,0.665328,-0.746551][0.494205,0.423752,0][-0.211426,-1.64704,1.4248][0,0.665328,-0.746551][0.461013,0.44708,0][-0.211426,-1.64704,1.4248][0,0.665328,-0.746551][0.461013,0.44708,0][-1.47956e-006,-1.50865,1.08543][0.816768,0.130456,0.562024][0.493612,0.458185,0][-0.211426,-1.23512,1.32919][0.816768,0.130456,0.562024][0.465522,0.453495,0][0.211423,-1.23512,1.32919][0,-0.665327,0.746552][0.53686,0.232256,0][-0.211426,-1.23512,1.32919][0.816768,0.130456,0.562024][0.566104,0.204137,0][-1.47956e-006,-1.50865,1.08543][0.816768,0.130456,0.562024][0.565337,0.232606,0][0.211423,-1.23512,1.32919][0,-0.665327,0.746552][0.498714,0.430166,0][0.211423,-1.64704,1.4248][0,0.665328,-0.746551][0.494205,0.423752,0][-1.60008e-006,-1.37351,1.66857][0,0.665328,-0.746551][0.466115,0.419062,0][-0.211445,1.63233,0.122107][-2.58674e-007,-0.791049,0.611753][0.38756,0.60486,0][0.211443,1.63233,0.122108][-2.58674e-007,-0.791049,0.611753][0.420754,0.581529,0][-1.21709e-006,1.85648,0.411944][-2.58674e-007,-0.791049,0.611753][0.416523,0.610789,0][-1.21709e-006,1.85648,0.411944][-2.58674e-007,-0.791049,0.611753][0.462702,0.486143,0][0.211443,1.50873,0.52686][2.67658e-007,-0.313768,-0.9495][0.50045,0.496132,0][-0.211445,1.50873,0.52686][2.67658e-007,-0.313768,-0.9495][0.471203,0.524254,0][-1.51119e-006,0.458102,1.5639][0.816778,-0.0855771,-0.570571][0.504519,0.305501,0][0.211422,0.204691,1.29926][0,0.722273,-0.691608][0.533975,0.30935,0][-0.211425,0.204691,1.29926][0.816778,-0.0855771,-0.570571][0.502665,0.335149,0][0.211422,0.622868,1.23654][0,-0.722273,0.691608][0.537246,0.313319,0][-1.3871e-006,0.369456,0.971888][0,-0.722273,0.691608][0.535392,0.342967,0][0.211422,0.204691,1.29926][0,0.722273,-0.691608][0.533975,0.30935,0][1.08735,-1.77282,-1.18532][-0.592789,-0.341677,0.729286][0.322131,0.661199,0][1.45261,-1.90205,-0.634775][-3.14117,-0.824124,1.24725][0.366783,0.647123,0][1.33273,-1.65844,-0.556747][-0.887507,-0.395812,0.235932][0.37405,0.670241,0][1.33273,-1.65844,-0.556747][-0.887507,-0.395812,0.235932][0.37405,0.670241,0][1.45261,-1.90205,-0.634775][-3.14117,-0.824124,1.24725][0.366783,0.647123,0][1.54172,-1.89423,-0.215538][-2.52714,-1.05173,0.167591][0.401165,0.646589,0][-1.57065e-006,-1.11978,1.61514][4.11767e-007,0.683136,-0.730292][0.567188,0.421084,0][0.211423,-1.38735,1.36485][4.11767e-007,0.683136,-0.730292][0.595895,0.424025,0][-0.211426,-1.38735,1.36485][4.11767e-007,0.683136,-0.730292][0.564585,0.449824,0][0.211423,-0.973251,1.2792][-0.816771,0.116858,0.565003][0.600361,0.429445,0][-1.46631e-006,-1.24082,1.02891][-0.816771,0.116858,0.565003][0.597759,0.458185,0][0.211423,-1.38735,1.36485][4.11767e-007,0.683136,-0.730292][0.595895,0.424025,0][0.211423,-0.973251,1.2792][-0.816771,0.116858,0.565003][0.540994,0.177733,0][-0.211426,-0.973251,1.2792][0,-0.683136,0.730291][0.570238,0.149614,0][-1.46631e-006,-1.24082,1.02891][-0.816771,0.116858,0.565003][0.569842,0.178469,0][0.211423,-0.973251,1.2792][-0.816771,0.116858,0.565003][0.600361,0.429445,0][0.211423,-1.38735,1.36485][4.11767e-007,0.683136,-0.730292][0.595895,0.424025,0][-1.57065e-006,-1.11978,1.61514][4.11767e-007,0.683136,-0.730292][0.567188,0.421084,0][0.211443,1.59573,0.273834][0,0.710596,-0.7036][0.356025,0.446565,0][-1.14557e-006,1.33796,0.0135][0,0.710596,-0.7036][0.355954,0.414578,0][-0.211446,1.59573,0.273833][0,0.710596,-0.7036][0.387338,0.420763,0][0.211443,1.66912,-0.142985][-3.82304e-007,0.427242,0.904137][0.449456,0.493707,0][-0.211446,1.66912,-0.142985][-3.82304e-007,0.427242,0.904137][0.418143,0.519509,0][-1.14557e-006,1.33796,0.0135][0,0.710596,-0.7036][0.413595,0.482088,0][0.211444,1.62664,-0.67468][-2.0593e-007,0.682885,0.730526][0.245987,0.275305,0][-0.211446,1.62664,-0.67468][-2.0593e-007,0.682885,0.730526][0.245987,0.275305,0][-1.05052e-006,1.35902,-0.424506][-2.0593e-007,0.682885,0.730526][0.275761,0.289221,0][0.211444,1.68389,-0.255333][2.64555e-007,0.461872,-0.886947][0.274372,0.255132,0][-1.05052e-006,1.35902,-0.424506][-2.0593e-007,0.682885,0.730526][0.275761,0.289221,0][-0.211446,1.68389,-0.255333][2.64555e-007,0.461872,-0.886947][0.274372,0.255132,0][-0.51417,-0.173317,-1.59794][0.461075,0.10797,0.880768][0.070182,0.483708,0][-0.717597,-0.254293,-1.47099][0.583291,-0.0506262,0.810684][0.0597713,0.475939,0][-0.267398,-0.361761,-1.68983][0.280462,0.00998791,0.959813][0.0777172,0.465628,0][-0.851493,-0.150666,-1.35448][0.696087,-0.00164836,0.717956][0.0502174,0.485881,0][-0.709135,-0.534117,-1.47729][0.494776,-0.00325436,0.869014][0.0602883,0.449091,0][-0.717597,-0.254293,-1.47099][0.583291,-0.0506262,0.810684][0.0597713,0.475939,0][-0.717597,-0.254293,-1.47099][0.583291,-0.0506262,0.810684][0.0597713,0.475939,0][-0.51417,-0.173317,-1.59794][0.461075,0.10797,0.880768][0.070182,0.483708,0][-0.851493,-0.150666,-1.35448][0.696087,-0.00164836,0.717956][0.0502174,0.485881,0][0.211424,0.878698,1.15857][0,-0.638452,0.769662][0.530011,0.286097,0][-0.211427,0.878698,1.15857][0,-0.638452,0.769662][0.559255,0.257977,0][-1.3599e-006,0.596716,0.924656][0,-0.638452,0.769662][0.557928,0.285864,0][0.211424,0.878698,1.15857][0,-0.638452,0.769662][0.443447,0.430827,0][0.211424,0.470428,1.26873][-0.816762,-0.150306,-0.557053][0.438253,0.423437,0][-1.49627e-006,0.752411,1.50264][-0.816762,-0.150306,-0.557053][0.410627,0.419408,0][-1.49627e-006,0.752411,1.50264][-0.816762,-0.150306,-0.557053][0.410627,0.419408,0][0.211424,0.470428,1.26873][-0.816762,-0.150306,-0.557053][0.438253,0.423437,0][-0.211427,0.470428,1.26873][0,0.638451,-0.769662][0.405061,0.446765,0][-0.211427,0.470428,1.26873][0,0.638451,-0.769662][0.405061,0.446765,0][-1.3599e-006,0.596716,0.924656][0,-0.638452,0.769662][0.437881,0.458185,0][-0.211427,0.878698,1.15857][0,-0.638452,0.769662][0.410256,0.454156,0][0.199767,-0.96075,1.27282][-0.265585,-0.0659045,-0.961832][0.25433,0.89424,0][0.303429,-1.47017,1.34288][-0.229556,-0.275907,-0.93337][0.259984,0.943126,0][-3.97649e-005,-1.20655,1.3224][0.0246247,-0.156647,-0.987348][0.258352,0.91783,0][0.988569,-1.47035,0.779648][-0.805827,-0.1515,-0.572443][0.484236,0.68418,0][0.628911,-1.78704,1.30316][-1.93143,-1.04055,-2.37011][0.526,0.652213,0][0.669367,-1.30763,1.11513][-0.621885,-0.151638,-0.768287][0.51231,0.698753,0][-1.08138e-006,1.96217,-0.180318][1.19933e-007,-0.525309,-0.850912][0.244598,0.22365,0][0.211444,1.65048,0.0120997][1.19933e-007,-0.525309,-0.850911][0.245043,0.189841,0][-0.211446,1.65048,0.0120997][1.19933e-007,-0.525309,-0.850911][0.245043,0.189841,0][-0.211446,1.67704,-0.410308][-2.19412e-007,-0.627827,0.778353][0.274245,0.208646,0][0.211444,1.67704,-0.410308][-2.19412e-007,-0.627827,0.778353][0.274245,0.208646,0][-1.08138e-006,1.96217,-0.180318][1.19933e-007,-0.525309,-0.850912][0.244598,0.22365,0][0.211444,1.67704,-0.410308][-2.19412e-007,-0.627827,0.778353][0.274245,0.208646,0][-0.211446,1.67704,-0.410308][-2.19412e-007,-0.627827,0.778353][0.274245,0.208646,0][-1.09483e-006,1.36535,-0.21789][-2.39865e-007,0.525309,0.850911][0.27469,0.174837,0][0.211444,1.65048,0.0120997][1.19933e-007,-0.525309,-0.850911][0.245043,0.189841,0][-1.09483e-006,1.36535,-0.21789][-2.39865e-007,0.525309,0.850911][0.27469,0.174837,0][-0.211446,1.65048,0.0120997][1.19933e-007,-0.525309,-0.850911][0.245043,0.189841,0][-1.4465e-006,1.0429,1.40306][-0.816734,-0.224728,-0.531453][0.342889,0.565571,0][0.211426,0.731758,1.20971][-0.816734,-0.224728,-0.531453][0.363174,0.581427,0][-0.211429,0.731758,1.20971][0,0.527807,-0.849364][0.322604,0.581427,0][-0.211429,0.731758,1.20971][0,0.527807,-0.849364][0.322604,0.581427,0][-1.35408e-006,0.810122,0.851648][0,-0.527807,0.849364][0.342889,0.610789,0][-0.211429,1.12127,1.045][0,-0.527807,0.849364][0.322604,0.594933,0][-0.211446,1.62664,-0.67468][-2.0593e-007,0.682885,0.730526][0.245987,0.275305,0][0.211444,1.62664,-0.67468][-2.0593e-007,0.682885,0.730526][0.245987,0.275305,0][-1.01171e-006,1.95151,-0.505507][-2.50024e-007,-0.461872,0.886946][0.244598,0.241216,0][-1.01171e-006,1.95151,-0.505507][-2.50024e-007,-0.461872,0.886946][0.244598,0.241216,0][0.211444,1.68389,-0.255333][2.64555e-007,0.461872,-0.886947][0.274372,0.255132,0][-0.211446,1.68389,-0.255333][2.64555e-007,0.461872,-0.886947][0.274372,0.255132,0][0.211439,1.46452,0.631486][-0.816574,0.465277,0.341651][0.551411,0.417612,0][-0.211441,1.46452,0.631486][0,-0.018289,0.999833][0.551411,0.458185,0][-1.28601e-006,1.09836,0.624788][-0.816574,0.465277,0.341651][0.51628,0.437898,0][-0.211441,1.2141,0.972516][-2.81852e-007,0.0182895,-0.999833][0.0617211,0.233173,0][-0.211441,1.46452,0.631486][0,-0.018289,0.999833][0.0617211,0.257199,0][-1.34476e-006,1.58027,0.979214][-2.81852e-007,0.0182895,-0.999833][0.0414348,0.268304,0][-1.1468e-006,1.92689,0.117348][1.27435e-007,-0.427242,-0.904137][0.391887,0.458185,0][0.211443,1.59573,0.273834][0,0.710596,-0.7036][0.356025,0.446565,0][-0.211446,1.59573,0.273833][0,0.710596,-0.7036][0.387338,0.420763,0][-0.211446,1.66912,-0.142985][-3.82304e-007,0.427242,0.904137][0.418143,0.519509,0][0.211443,1.66912,-0.142985][-3.82304e-007,0.427242,0.904137][0.449456,0.493707,0][-1.1468e-006,1.92689,0.117348][1.27435e-007,-0.427242,-0.904137][0.449527,0.525694,0][0.211441,1.58853,-0.782144][5.5926e-007,0.111992,-0.993709][0.264465,0.595444,0][-9.69682e-007,1.2246,-0.823158][5.5926e-007,0.111992,-0.993709][0.284751,0.560528,0][-0.211443,1.58853,-0.782144][5.5926e-007,0.111992,-0.993709][0.305038,0.595444,0][0.211441,1.38454,-1.15287][-4.99688e-007,0.899739,0.436428][0.264465,0.575873,0][-0.211443,1.38453,-1.15287][-4.99688e-007,0.899739,0.436428][0.305038,0.575873,0][-9.69682e-007,1.2246,-0.823158][5.5926e-007,0.111992,-0.993709][0.284751,0.560528,0][-0.211443,1.38453,-1.15287][-4.99688e-007,0.899739,0.436428][0.454575,0.342967,0][0.211441,1.38454,-1.15287][-4.99688e-007,0.899739,0.436428][0.454575,0.302394,0][-8.88514e-007,1.74846,-1.11186][-5.28676e-007,-0.111992,0.993709][0.489491,0.322681,0][-8.88514e-007,1.74846,-1.11186][-5.28676e-007,-0.111992,0.993709][0.284751,0.610789,0][0.211441,1.58853,-0.782144][5.5926e-007,0.111992,-0.993709][0.264465,0.595444,0][-0.211443,1.58853,-0.782144][5.5926e-007,0.111992,-0.993709][0.305038,0.595444,0][0.211443,1.63233,0.122108][-2.58674e-007,-0.791049,0.611753][0.420754,0.581529,0][-0.211445,1.63233,0.122107][-2.58674e-007,-0.791049,0.611753][0.38756,0.60486,0][-1.19129e-006,1.28458,0.237024][-4.01487e-007,0.313768,0.9495][0.384972,0.565898,0][0.211443,1.50873,0.52686][2.67658e-007,-0.313768,-0.9495][0.50045,0.496132,0][-1.19129e-006,1.28458,0.237024][-4.01487e-007,0.313768,0.9495][0.500732,0.525694,0][-0.211445,1.50873,0.52686][2.67658e-007,-0.313768,-0.9495][0.471203,0.524254,0][-0.211445,1.52616,-0.924416][-2.70149e-007,-0.285638,0.958337][0.186364,0.4423,0][0.211443,1.52616,-0.924416][-2.70149e-007,-0.285638,0.958337][0.219558,0.418969,0][-9.46619e-007,1.87715,-0.819803][-2.70149e-007,-0.285638,0.958337][0.222325,0.458185,0][-9.46619e-007,1.87715,-0.819803][-2.70149e-007,-0.285638,0.958337][0.186655,0.184797,0][0.211443,1.66163,-0.523485][1.65808e-007,-0.808721,-0.588193][0.21561,0.185641,0][-0.211445,1.66163,-0.523485][1.65808e-007,-0.808721,-0.588193][0.186364,0.213763,0][0.211443,1.66163,-0.523485][1.65808e-007,-0.808721,-0.588193][0.21561,0.185641,0][-1.0085e-006,1.31065,-0.628098][2.88635e-007,0.285639,-0.958337][0.224327,0.223976,0][-0.211445,1.66163,-0.523485][1.65808e-007,-0.808721,-0.588193][0.186364,0.213763,0][0.211443,1.52616,-0.924416][-2.70149e-007,-0.285638,0.958337][0.219558,0.418969,0][-0.211445,1.52616,-0.924416][-2.70149e-007,-0.285638,0.958337][0.186364,0.4423,0][-1.0085e-006,1.31065,-0.628098][2.88635e-007,0.285639,-0.958337][0.191071,0.413717,0][-1.61854e-006,-1.5474,1.72553][0.816706,-0.279548,-0.50482][0.118484,0.0472262,0][0.211429,-1.87718,1.56609][0,0.435271,-0.900299][0.138769,0.0603007,0][-0.211432,-1.87718,1.56609][0.816706,-0.279548,-0.50482][0.0981982,0.0603007,0][0.211429,-1.50718,1.3612][0,-0.435271,0.900299][0.138769,0.0771019,0][-1.51659e-006,-1.83696,1.20177][0,-0.435271,0.900299][0.118484,0.0901764,0][0.211429,-1.87718,1.56609][0,0.435271,-0.900299][0.138769,0.0603007,0][-1.40701e-006,1.34414,1.22839][0,0.274805,-0.9615][0.244598,0.322681,0][0.211433,0.991984,1.12774][0,0.274805,-0.9615][0.252851,0.302395,0][-0.211436,0.991984,1.12774][0,0.274805,-0.9615][0.252851,0.342967,0][0.211433,1.32153,0.862558][-0.816655,0.36181,0.449631][0.274597,0.302395,0][-1.32024e-006,0.969376,0.761908][-0.816655,0.36181,0.449631][0.282851,0.322681,0][0.211433,0.991984,1.12774][0,0.274805,-0.9615][0.252851,0.302395,0][0.211433,1.32153,0.862558][-0.816655,0.36181,0.449631][0.274597,0.302395,0][-0.211436,1.32153,0.862558][0,-0.274805,0.9615][0.274597,0.342967,0][-1.32024e-006,0.969376,0.761908][-0.816655,0.36181,0.449631][0.282851,0.322681,0][0.211433,1.32153,0.862558][-0.816655,0.36181,0.449631][0.274597,0.302395,0][0.211433,0.991984,1.12774][0,0.274805,-0.9615][0.252851,0.302395,0][-1.40701e-006,1.34414,1.22839][0,0.274805,-0.9615][0.244598,0.322681,0][0.436958,-0.179784,-1.64915][-0.405729,0.0804785,0.910443][0.0743808,0.483087,0][0.202007,-0.215994,-1.71181][-0.164347,-0.0108718,0.986343][0.0795195,0.479613,0][0.278358,-0.361777,-1.69696][-0.243951,0.0112583,0.969722][0.0783018,0.465626,0][0.278358,-0.361777,-1.69696][-0.243951,0.0112583,0.969722][0.0783018,0.465626,0][0.725496,-0.254327,-1.49417][-0.546212,-0.0367208,0.836842][0.0616727,0.475935,0][0.436958,-0.179784,-1.64915][-0.405729,0.0804785,0.910443][0.0743808,0.483087,0][0.278358,-0.361777,-1.69696][-0.243951,0.0112583,0.969722][0.0783018,0.465626,0][0.202007,-0.215994,-1.71181][-0.164347,-0.0108718,0.986343][0.0795195,0.479613,0][0.277891,-0.888569,-1.6973][-0.272437,-0.0059235,0.962155][0.0783292,0.415084,0][1.14989,0.762829,-0.652475][-0.920029,-0.306821,0.243738][0.374883,0.902677,0][0.976494,1.08116,-0.688706][-0.750917,-0.582749,0.310688][0.373055,0.933308,0][0.978129,0.762864,-1.04686][-0.793025,-0.338094,0.506758][0.342565,0.903888,0][1.24299,0.615698,-0.329832][-0.982966,-0.169534,0.0709622][0.400795,0.887582,0][1.05375,1.08112,-0.312364][-0.83283,-0.552048,0.0404778][0.403895,0.932152,0][1.14989,0.762829,-0.652475][-0.920029,-0.306821,0.243738][0.374883,0.902677,0][0.302753,-1.14203,-1.69086][-0.291935,-0.00670739,0.956415][0.0778015,0.390766,0][0.725496,-0.254327,-1.49417][-0.546212,-0.0367208,0.836842][0.0616727,0.475935,0][0.277891,-0.888569,-1.6973][-0.272437,-0.0059235,0.962155][0.0783292,0.415084,0][0.302753,-1.14203,-1.69086][-0.291935,-0.00670739,0.956415][0.0778015,0.390766,0][0.277891,-0.888569,-1.6973][-0.272437,-0.0059235,0.962155][0.0783292,0.415084,0][0.308289,-1.90166,-1.69099][-0.175524,0.000856641,0.984475][0.0778125,0.317884,0][0.0832852,0.776317,-1.6881][-0.292062,-0.144426,0.945432][0.0775751,0.574819,0][0.0704624,0.515594,-1.71905][-0.0827905,-0.0338584,0.995992][0.0801133,0.549804,0][0.21074,0.972031,-1.61339][-0.114147,-0.32426,0.939056][0.0714489,0.593597,0][0.0832852,0.776317,-1.6881][-0.292062,-0.144426,0.945432][0.0775751,0.574819,0][0.21074,0.972031,-1.61339][-0.114147,-0.32426,0.939056][0.0714489,0.593597,0][0.000487613,1.03411,-1.60475][0.0140241,-0.4146,0.909896][0.0707403,0.599553,0][-1.07728,0.950014,-0.62484][0.856915,-0.467495,0.217129][0.0990552,0.710627,0][-1.04322,0.714265,-0.96337][0.850504,-0.248764,0.463421][0.0712529,0.733194,0][-0.916345,0.949967,-0.99444][0.727342,-0.458514,0.510625][0.0687468,0.710575,0][-1.25854,0.515681,-0.0994913][0.987366,-0.143982,-0.06616][0.142058,0.752378,0][-1.22755,0.515663,-0.560166][0.971754,-0.134603,0.193843][0.104282,0.75231,0][-1.19412,0.762869,-0.436633][0.936242,-0.33128,0.117064][0.114455,0.728611,0][1.3711,-1.75056,0.245521][-2.79523,-1.47268,-0.711299][0.439462,0.65895,0][1.33924,-1.59973,-0.103945][-0.915725,-0.397766,-0.0568335][0.411365,0.674482,0][1.54172,-1.89423,-0.215538][-2.52714,-1.05173,0.167591][0.401165,0.646589,0][0.71068,1.40831,-0.485572][-0.56453,-0.806987,0.173431][0.390874,0.964052,0][0.345707,1.53628,-0.688886][-0.305785,-0.90911,0.282867][0.374672,0.976944,0][0.56047,1.31191,-0.983021][-0.480544,-0.765281,0.428278][0.349765,0.956334,0][0.56047,1.31191,-0.983021][-0.480544,-0.765281,0.428278][0.349765,0.956334,0][0.766468,1.03843,-1.11205][-0.652515,-0.544367,0.527152][0.338211,0.930509,0][0.71068,1.40831,-0.485572][-0.56453,-0.806987,0.173431][0.390874,0.964052,0][0.577175,1.51417,-0.21538][-0.471983,-0.881604,0.00242199][0.132732,0.656562,0][0.185327,1.63826,-0.104947][-0.165387,-0.985035,-0.0485025][0.14181,0.644673,0][0.210524,1.61914,-0.46162][-0.189383,-0.972734,0.133876][0.112558,0.646454,0][0.811352,-0.150662,-1.42734][-0.635717,-0.0107968,0.771847][0.122606,0.485881,0][0.65389,-0.623327,-1.5424][-0.36083,-0.0511309,0.931229][0.11317,0.440532,0][0.903347,-0.255723,-1.34342][-0.687801,0.0136879,0.725771][0.129487,0.475801,0][0.780815,-0.751741,-1.45154][0.0627819,-0.0432268,0.0494319][0.0581763,0.428212,0][0.979201,-0.247421,-1.26249][1.10596,-0.761478,0.870786][0.0426736,0.476598,0][0.946455,-0.248131,-1.22152][1.00227,-0.690085,0.789146][0.039314,0.47653,0][0.946455,-0.248131,-1.22152][1.00227,-0.690085,0.789146][0.039314,0.47653,0][0.754696,-0.751742,-1.40497][1.31079,-0.766955,0.735277][0.054358,0.428211,0][0.780815,-0.751741,-1.45154][0.0627819,-0.0432268,0.0494319][0.0581763,0.428212,0][-0.604607,1.4083,0.29845][0.52218,-0.806129,-0.278359][0.174849,0.666797,0][-0.30144,1.46466,0.477084][0.182675,-0.887195,-0.423693][0.189507,0.661417,0][-0.528403,1.27674,0.635519][0.44884,-0.727289,-0.519224][0.202466,0.67947,0][-0.528403,1.27674,0.635519][0.44884,-0.727289,-0.519224][0.202466,0.67947,0][-0.83204,1.12273,0.491947][0.664284,-0.611695,-0.4296][0.190666,0.694225,0][-0.604607,1.4083,0.29845][0.52218,-0.806129,-0.278359][0.174849,0.666797,0][-0.83204,1.12273,0.491947][0.664284,-0.611695,-0.4296][0.190666,0.694225,0][-1.06662,0.904317,0.301534][0.867872,-0.391971,-0.305215][0.175012,0.715152,0][-0.9781,1.1228,0.156415][0.748021,-0.635458,-0.191464][0.163151,0.694167,0][1.19294,-0.752533,-0.948578][-0.81544,0.066171,0.575047][0.161865,0.428136,0][0.972482,-0.675181,-1.2701][-0.775004,0.0574812,0.629336][0.1355,0.435557,0][0.833032,-0.890761,-1.40912][-0.724295,0.0392602,0.688372][0.1241,0.414873,0][0.972482,-0.675181,-1.2701][-0.775004,0.0574812,0.629336][0.1355,0.435557,0][0.979201,-0.247421,-1.26249][1.10596,-0.761478,0.870786][0.136124,0.476598,0][0.833032,-0.890761,-1.40912][-0.724295,0.0392602,0.688372][0.1241,0.414873,0][-1.26512,-1.30772,0.0182842][0.981147,-0.0887872,-0.17166][0.151393,0.927339,0][-1.0631,0.615715,0.546828][0.874325,-0.178957,-0.451143][0.195076,0.742878,0][-1.14766,-1.39529,0.463624][0.902237,-0.139838,-0.407937][0.187896,0.935809,0][-1.14766,-1.39529,0.463624][0.902237,-0.139838,-0.407937][0.187896,0.935809,0][-1.33924,-1.59975,-0.103918][0.918733,-0.388718,-0.0694866][0.14132,0.955339,0][-1.26512,-1.30772,0.0182842][0.981147,-0.0887872,-0.17166][0.151393,0.927339,0][0.623194,0.81072,-1.40515][-0.547819,-0.373812,0.748438][0.0350424,0.723873,0][0.521607,1.16312,-1.21133][-0.425406,-0.647847,0.631921][0.0509988,0.690092,0][0.350023,0.950001,-1.47578][-0.301302,-0.507452,0.807285][0.0292752,0.710499,0][0.350023,0.950001,-1.47578][-0.301302,-0.507452,0.807285][0.0292752,0.710499,0][0.425993,0.540753,-1.60039][-1.57577,-0.977867,4.85647][0.0189842,0.749745,0][0.623194,0.81072,-1.40515][-0.547819,-0.373812,0.748438][0.0350424,0.723873,0][-0.0898778,0.81863,-1.67516][0.149304,-0.20757,0.966759][0.0765139,0.578879,0][0.000487613,1.03411,-1.60475][0.0140241,-0.4146,0.909896][0.0707403,0.599553,0][-0.189912,0.98067,-1.60677][0.104852,-0.359181,0.927359][0.0709056,0.594425,0][-0.189912,0.98067,-1.60677][0.104852,-0.359181,0.927359][0.0709056,0.594425,0][-0.202412,0.839773,-1.65215][0.149358,-0.245698,0.957771][0.074627,0.580907,0][-0.0898778,0.81863,-1.67516][0.149304,-0.20757,0.966759][0.0765139,0.578879,0][-0.202412,0.839773,-1.65215][0.149358,-0.245698,0.957771][0.074627,0.580907,0][0.000360707,0.647088,-1.71151][0.0372977,-0.105875,0.99368][0.0794945,0.56242,0][-0.0898778,0.81863,-1.67516][0.149304,-0.20757,0.966759][0.0765139,0.578879,0][-1.45264,-1.902,-0.634672][3.03242,-0.874477,1.02648][0.097743,0.984258,0][-1.30359,-1.59783,-0.56091][0.906114,-0.391148,0.161125][0.103846,0.955085,0][-1.54168,-1.89413,-0.215504][2.41848,-1.16726,0.125839][0.132117,0.983566,0][-0.887803,0.56584,0.823419][0.734186,-0.163541,-0.658958][0.217748,0.747705,0][-0.844411,-1.47032,0.977352][0.753404,-0.174587,-0.633958][0.23001,0.943085,0][-1.0631,0.615715,0.546828][0.874325,-0.178957,-0.451143][0.195076,0.742878,0][-1.0631,0.615715,0.546828][0.874325,-0.178957,-0.451143][0.195076,0.742878,0][-0.877868,0.90437,0.66187][0.721916,-0.434776,-0.538337][0.204561,0.715201,0][-0.887803,0.56584,0.823419][0.734186,-0.163541,-0.658958][0.217748,0.747705,0][-0.223989,-0.207552,-1.70023][-0.105531,-0.0191922,0.994231][0.0785702,0.480423,0][-0.51417,-0.173317,-1.59794][0.461075,0.10797,0.880768][0.070182,0.483708,0][-0.267398,-0.361761,-1.68983][0.280462,0.00998791,0.959813][0.0777172,0.465628,0][-0.223989,-0.207552,-1.70023][-0.105531,-0.0191922,0.994231][0.0785702,0.480423,0][-0.267398,-0.361761,-1.68983][0.280462,0.00998791,0.959813][0.0777172,0.465628,0][-0.184979,-1.92211,-1.70821][0.208583,-0.00256616,0.978001][0.0792245,0.315922,0][0.210524,1.61914,-0.46162][-0.189383,-0.972734,0.133876][0.112558,0.646454,0][-0.0465483,1.61915,-0.559347][0.0285831,-0.980007,0.196901][0.104544,0.646438,0][0.0902955,1.51414,-0.882382][-0.0821987,-0.895647,0.437104][0.0780359,0.656464,0][-0.124318,1.53625,-0.820956][0.142955,-0.906585,0.397074][0.083077,0.654351,0][-0.33463,1.57506,-0.54979][0.291926,-0.928858,0.228039][0.10532,0.650669,0][-0.330195,1.31192,-1.14812][0.255069,-0.784104,0.565792][0.0562085,0.675825,0][0.147993,-1.92166,-1.71933][-0.171846,0.000853019,0.985123][0.0801358,0.315966,0][0.308289,-1.90166,-1.69099][-0.175524,0.000856641,0.984475][0.0778125,0.317884,0][0.277891,-0.888569,-1.6973][-0.272437,-0.0059235,0.962155][0.0783292,0.415084,0][-0.979438,-1.39538,-1.1851][0.784769,-0.0963249,0.612258][0.0526964,0.935567,0][-0.679395,-1.47058,-1.48835][0.646678,-0.0269384,0.762287][0.0278157,0.942736,0][-0.668774,-0.153416,-1.48689][1.65246,-0.0142481,2.4818][0.028169,0.816363,0][0.845551,0.271924,-1.39738][-0.66437,-0.0123416,0.747302][0.125062,0.526426,0][0.931837,0.0794115,-1.31513][-0.739016,-0.00761075,0.673645][0.131807,0.507955,0][0.92448,0.466982,-1.31699][-0.708564,-0.0294966,0.70503][0.131655,0.54514,0][0.960949,-1.22576,-1.2837][-0.754604,-0.0365953,0.65516][0.0345683,0.361961,0][1.1102,-1.17931,-1.08921][-0.832453,-0.00630157,0.554061][0.048065,0.371556,0][1.08183,-0.863737,-1.1322][-0.842275,-0.0514114,0.536591][0.0344933,0.398851,0][-0.302222,0.033067,-1.68096][0.25619,0.0184135,0.966451][0.0769898,0.503509,0][-0.401124,0.261529,-1.64697][0.384608,-0.0173604,0.922917][0.0742024,0.525428,0][-0.56881,0.135632,-1.56659][0.421107,0.014656,0.906893][0.0676108,0.513349,0][-1.04522,-1.17979,-1.03624][0.788349,0.967435,-0.790726][0.0105733,0.0621098,0][-0.874299,-1.51499,-1.27594][0.0606326,0.0744063,-0.0608155][0.0196169,0.0255188,0][-1.08139,-1.17922,-1.07161][0.816953,-0.00141377,0.576703][0.0133551,0.0612871,0][-1.08139,-1.17922,-1.07161][0.816953,-0.00141377,0.576703][0.0133551,0.0612871,0][-1.18121,-0.810656,-0.892311][0.0745277,0.0568194,-0.0753081][0.01,0.0994364,0][-1.04522,-1.17979,-1.03624][0.788349,0.967435,-0.790726][0.0105733,0.0621098,0][-1.18121,-0.810656,-0.892311][0.0745277,0.0568194,-0.0753081][0.01,0.0994364,0][-1.08139,-1.17922,-1.07161][0.816953,-0.00141377,0.576703][0.0133551,0.0612871,0][-1.04126,-0.868723,-1.1323][0.789251,-0.0370414,0.612953][0.0270839,0.0881902,0][-0.726615,0.665345,-1.3854][0.633948,-0.298304,0.71353][0.0366366,0.737824,0][-0.756392,0.397625,-1.40926][2.369,-0.466821,2.28121][0.0346324,0.763506,0][-0.552115,0.52017,-1.54193][1.66429,-0.995906,2.77892][0.0237745,0.751729,0][-0.709135,-0.534117,-1.47729][0.494776,-0.00325436,0.869014][0.0602883,0.449091,0][-0.958671,-0.247406,-1.24019][0.729286,0.00413585,0.684196][0.0408453,0.476599,0][-0.85307,-0.255798,-1.27855][-0.59816,1.02678,-1.87115][0.0439912,0.475794,0][-0.958671,-0.247406,-1.24019][0.729286,0.00413585,0.684196][0.137952,0.476599,0][-0.735864,-0.751608,-1.38989][-0.0636562,-0.0430736,0.0503315][0.125676,0.428224,0][-0.925849,-0.248123,-1.19929][-1.0606,-0.717667,0.838592][0.141306,0.476531,0][-0.925849,-0.248123,-1.19929][-1.0606,-0.717667,0.838592][0.141306,0.476531,0][-0.85307,-0.255798,-1.27855][-0.59816,1.02678,-1.87115][0.134806,0.475794,0][-0.958671,-0.247406,-1.24019][0.729286,0.00413585,0.684196][0.137952,0.476599,0][0.211422,-0.329114,1.2992][0,0.812859,0.582461][0.417923,0.0929478,0][0.211422,0.0937225,1.30207][-0.816785,0.00391166,-0.576929][0.386764,0.118928,0][-1.40217e-006,-0.11567,1.00133][0,0.812859,0.582461][0.386585,0.0871196,0][0.211422,0.0937225,1.30207][-0.816785,0.00391166,-0.576929][0.436016,0.25432,0][-0.211425,0.0937225,1.30207][0,-0.812859,-0.58246][0.436016,0.25432,0][-1.40217e-006,-0.11567,1.00133][0,0.812859,0.582461][0.43459,0.286097,0][-0.211425,-0.329114,1.2992][0,0.812859,0.582461][0.466133,0.281502,0][-1.54884e-006,-0.119721,1.59994][-0.816785,0.00391166,-0.576929][0.467558,0.249725,0][0.211422,-0.329114,1.2992][0,0.812859,0.582461][0.466133,0.281502,0][-0.211425,0.0937225,1.30207][0,-0.812859,-0.58246][0.436016,0.25432,0][-1.54884e-006,-0.119721,1.59994][-0.816785,0.00391166,-0.576929][0.467558,0.249725,0][-0.211425,-0.329114,1.2992][0,0.812859,0.582461][0.466133,0.281502,0][-0.211425,-0.861756,1.27704][0.816785,0.0167131,-0.576701][0.327396,0.0558345,0][-1.5467e-006,-0.659078,1.58235][0.816785,0.0167131,-0.576701][0.296025,0.0512652,0][0.211422,-0.861756,1.27704][0,0.799747,0.600337][0.327396,0.0558345,0][0.211422,-0.861756,1.27704][0,0.799747,0.600337][0.51877,0.226868,0][-1.5467e-006,-0.659078,1.58235][0.816785,0.0167131,-0.576701][0.487593,0.232606,0][0.211422,-0.439087,1.28929][0,-0.799747,-0.600337][0.48784,0.200622,0][-0.211425,-0.439087,1.28929][0.816785,0.0167131,-0.576701][0.297468,0.0832176,0][-0.211425,-0.861756,1.27704][0.816785,0.0167131,-0.576701][0.327396,0.0558345,0][-1.4352e-006,-0.641765,0.983972][0,0.799747,0.600337][0.328838,0.087787,0][0.211422,-0.439087,1.28929][0,-0.799747,-0.600337][0.297468,0.0832176,0][-0.211425,-0.439087,1.28929][0.816785,0.0167131,-0.576701][0.297468,0.0832176,0][-1.4352e-006,-0.641765,0.983972][0,0.799747,0.600337][0.328838,0.087787,0][0.211422,-0.595362,1.28511][0,0.793171,0.609][0.511903,0.280012,0][0.211422,-0.172851,1.30196][3.4338e-007,-0.793171,-0.608999][0.480733,0.254058,0][-1.40971e-006,-0.372199,0.994454][0.816784,-0.0229919,0.576485][0.511792,0.247973,0][0.211422,-0.172851,1.30196][3.4338e-007,-0.793171,-0.608999][0.468882,0.172511,0][-0.211425,-0.172851,1.30196][0.816784,-0.0229919,0.576485][0.468882,0.172511,0][-1.40971e-006,-0.372199,0.994454][0.816784,-0.0229919,0.576485][0.468975,0.140862,0][-0.211425,-0.595362,1.28511][0.816784,-0.0229919,0.576485][0.437495,0.14682,0][-1.55739e-006,-0.396015,1.59261][3.4338e-007,-0.793171,-0.608999][0.437402,0.178469,0][0.211422,-0.595362,1.28511][0,0.793171,0.609][0.437495,0.14682,0][-0.211425,-0.172851,1.30196][0.816784,-0.0229919,0.576485][0.468882,0.172511,0][-1.55739e-006,-0.396015,1.59261][3.4338e-007,-0.793171,-0.608999][0.437402,0.178469,0][-0.211425,-0.595362,1.28511][0.816784,-0.0229919,0.576485][0.437495,0.14682,0][0.211422,-1.12799,1.29528][0,0.785415,-0.618969][0.417906,0.228504,0][-1.43709e-006,-0.932544,0.985277][-4.42851e-007,-0.785416,0.618968][0.386585,0.232606,0][-0.211425,-1.12799,1.29528][0.816784,-0.0302786,-0.576148][0.417906,0.228504,0][0.211422,-0.70573,1.27308][-4.42851e-007,-0.785416,0.618968][0.4409,0.391131,0][-1.43709e-006,-0.932544,0.985277][-4.42851e-007,-0.785416,0.618968][0.440229,0.359036,0][0.211422,-1.12799,1.29528][0,0.785415,-0.618969][0.471365,0.364362,0][0.211422,-0.70573,1.27308][-4.42851e-007,-0.785416,0.618968][0.4409,0.391131,0][0.211422,-1.12799,1.29528][0,0.785415,-0.618969][0.471365,0.364362,0][-1.56444e-006,-0.90118,1.58308][0.816784,-0.0302786,-0.576148][0.472037,0.396458,0][-0.211425,-0.705729,1.27308][-4.42851e-007,-0.785416,0.618968][0.388514,0.200561,0][0.211422,-0.70573,1.27308][-4.42851e-007,-0.785416,0.618968][0.388514,0.200561,0][-1.56444e-006,-0.90118,1.58308][0.816784,-0.0302786,-0.576148][0.419836,0.196459,0][-0.211425,-0.0623626,1.3069][3.51256e-007,0.782247,-0.622968][0.417369,0.174856,0][-0.211425,0.359784,1.28255][0.816784,0.0332204,0.575987][0.418699,0.173366,0][-1.52833e-006,0.165916,1.59354][3.51256e-007,0.782247,-0.622968][0.386585,0.178893,0][-0.211425,0.359784,1.28255][0.816784,0.0332204,0.575987][0.468187,0.228569,0][0.211422,0.359784,1.28255][0,-0.782247,0.622969][0.437913,0.201562,0][-1.52833e-006,0.165916,1.59354][3.51256e-007,0.782247,-0.622968][0.470026,0.196035,0][0.211422,-0.0623626,1.3069][3.51256e-007,0.782247,-0.622968][0.387096,0.147849,0][-1.40066e-006,0.131504,0.995903][0.816784,0.0332204,0.575987][0.419209,0.142322,0][-0.211425,-0.0623626,1.3069][3.51256e-007,0.782247,-0.622968][0.417369,0.174856,0][0.211422,0.359784,1.28255][0,-0.782247,0.622969][0.388425,0.146359,0][-1.40066e-006,0.131504,0.995903][0.816784,0.0332204,0.575987][0.419209,0.142322,0][0.211422,-0.0623626,1.3069][3.51256e-007,0.782247,-0.622968][0.387096,0.147849,0][-0.0782576,1.16306,0.949148][0.025755,-0.635504,-0.771667][0.228165,0.690425,0][0.000108432,1.27682,0.836297][-0.0601828,-0.783022,-0.619076][0.218931,0.679493,0][0.357188,1.2402,0.793741][-0.275201,-0.710937,-0.647174][0.215434,0.683001,0][1.19294,-0.752533,-0.948578][-0.81544,0.066171,0.575047][0.161865,0.428136,0][1.17057,-0.612868,-0.989303][-0.820282,0.0350675,0.570884][0.158526,0.441535,0][0.972482,-0.675181,-1.2701][-0.775004,0.0574812,0.629336][0.1355,0.435557,0][0.211422,0.204691,1.29926][0,0.722273,-0.691608][0.533975,0.30935,0][-1.3871e-006,0.369456,0.971888][0,-0.722273,0.691608][0.535392,0.342967,0][-0.211425,0.204691,1.29926][0.816778,-0.0855771,-0.570571][0.502665,0.335149,0][-0.211425,0.204691,1.29926][0.816778,-0.0855771,-0.570571][0.502665,0.335149,0][-1.3871e-006,0.369456,0.971888][0,-0.722273,0.691608][0.535392,0.342967,0][-0.211425,0.622868,1.23654][0.816778,-0.0855771,-0.570571][0.505936,0.339118,0][0.211422,0.622868,1.23654][0,-0.722273,0.691608][0.537246,0.313319,0][0.211422,0.204691,1.29926][0,0.722273,-0.691608][0.533975,0.30935,0][-1.51119e-006,0.458102,1.5639][0.816778,-0.0855771,-0.570571][0.504519,0.305501,0][-0.211425,0.622868,1.23654][0.816778,-0.0855771,-0.570571][0.51844,0.366755,0][0.211422,0.622868,1.23654][0,-0.722273,0.691608][0.489196,0.394874,0][-1.51119e-006,0.458102,1.5639][0.816778,-0.0855771,-0.570571][0.485211,0.361464,0][0.211423,-1.38735,1.36485][4.11767e-007,0.683136,-0.730292][0.595895,0.424025,0][-1.46631e-006,-1.24082,1.02891][-0.816771,0.116858,0.565003][0.597759,0.458185,0][-0.211426,-1.38735,1.36485][4.11767e-007,0.683136,-0.730292][0.564585,0.449824,0][-0.211426,-1.38735,1.36485][4.11767e-007,0.683136,-0.730292][0.564585,0.449824,0][-1.46631e-006,-1.24082,1.02891][-0.816771,0.116858,0.565003][0.597759,0.458185,0][-0.211426,-0.973251,1.2792][0,-0.683136,0.730291][0.569052,0.455244,0][-0.211426,-1.38735,1.36485][4.11767e-007,0.683136,-0.730292][0.564585,0.449824,0][-0.211426,-0.973251,1.2792][0,-0.683136,0.730291][0.569052,0.455244,0][-1.57065e-006,-1.11978,1.61514][4.11767e-007,0.683136,-0.730292][0.567188,0.421084,0][-0.211426,-0.973251,1.2792][0,-0.683136,0.730291][0.570238,0.149614,0][0.211423,-0.973251,1.2792][-0.816771,0.116858,0.565003][0.540994,0.177733,0][-1.57065e-006,-1.11978,1.61514][4.11767e-007,0.683136,-0.730292][0.536522,0.143816,0][-0.211426,-1.64704,1.4248][0,0.665328,-0.746551][0.461013,0.44708,0][-0.211426,-1.23512,1.32919][0.816768,0.130456,0.562024][0.465522,0.453495,0][-1.60008e-006,-1.37351,1.66857][0,0.665328,-0.746551][0.466115,0.419062,0][-0.211426,-1.23512,1.32919][0.816768,0.130456,0.562024][0.566104,0.204137,0][0.211423,-1.23512,1.32919][0,-0.665327,0.746552][0.53686,0.232256,0][-1.60008e-006,-1.37351,1.66857][0,0.665328,-0.746551][0.532193,0.198136,0][0.211423,-1.64704,1.4248][0,0.665328,-0.746551][0.494205,0.423752,0][-1.47956e-006,-1.50865,1.08543][0.816768,0.130456,0.562024][0.493612,0.458185,0][-0.211426,-1.64704,1.4248][0,0.665328,-0.746551][0.461013,0.44708,0][0.211423,-1.23512,1.32919][0,-0.665327,0.746552][0.498714,0.430166,0][-1.47956e-006,-1.50865,1.08543][0.816768,0.130456,0.562024][0.493612,0.458185,0][0.211423,-1.64704,1.4248][0,0.665328,-0.746551][0.494205,0.423752,0][0.211424,0.470428,1.26873][-0.816762,-0.150306,-0.557053][0.438253,0.423437,0][-1.3599e-006,0.596716,0.924656][0,-0.638452,0.769662][0.437881,0.458185,0][-0.211427,0.470428,1.26873][0,0.638451,-0.769662][0.405061,0.446765,0][0.211424,0.878698,1.15857][0,-0.638452,0.769662][0.443447,0.430827,0][-1.3599e-006,0.596716,0.924656][0,-0.638452,0.769662][0.437881,0.458185,0][0.211424,0.470428,1.26873][-0.816762,-0.150306,-0.557053][0.438253,0.423437,0][-0.211427,0.470428,1.26873][0,0.638451,-0.769662][0.405061,0.446765,0][-0.211427,0.878698,1.15857][0,-0.638452,0.769662][0.410256,0.454156,0][-1.49627e-006,0.752411,1.50264][-0.816762,-0.150306,-0.557053][0.410627,0.419408,0][-0.211427,0.878698,1.15857][0,-0.638452,0.769662][0.559255,0.257977,0][0.211424,0.878698,1.15857][0,-0.638452,0.769662][0.530011,0.286097,0][-1.49627e-006,0.752411,1.50264][-0.816762,-0.150306,-0.557053][0.525077,0.251699,0][0.211438,1.20415,-1.35218][-2.81221e-007,0.0693565,0.997592][0.0981982,0.117132,0][0.211438,1.47163,-1.02439][5.65277e-007,-0.0693557,-0.997592][0.0981982,0.142795,0][-6.89565e-007,1.5695,-1.37758][-2.81221e-007,0.0693565,0.997592][0.118484,0.152185,0][0.211438,1.20415,-1.35218][-2.81221e-007,0.0693565,0.997592][0.0981982,0.117132,0][-7.87952e-007,1.10629,-0.998994][5.65277e-007,-0.0693557,-0.997592][0.118484,0.107742,0][0.211438,1.47163,-1.02439][5.65277e-007,-0.0693557,-0.997592][0.0981982,0.142795,0][0.211426,0.731758,1.20971][-0.816734,-0.224728,-0.531453][0.363174,0.581427,0][-1.35408e-006,0.810122,0.851648][0,-0.527807,0.849364][0.342889,0.610789,0][-0.211429,0.731758,1.20971][0,0.527807,-0.849364][0.322604,0.581427,0][0.211426,1.12127,1.045][-0.816734,-0.224728,-0.531453][0.363174,0.594933,0][-1.35408e-006,0.810122,0.851648][0,-0.527807,0.849364][0.342889,0.610789,0][0.211426,0.731758,1.20971][-0.816734,-0.224728,-0.531453][0.363174,0.581427,0][-0.211429,0.731758,1.20971][0,0.527807,-0.849364][0.322604,0.581427,0][-0.211429,1.12127,1.045][0,-0.527807,0.849364][0.322604,0.594933,0][-1.4465e-006,1.0429,1.40306][-0.816734,-0.224728,-0.531453][0.342889,0.565571,0][-0.211429,1.12127,1.045][0,-0.527807,0.849364][0.343508,0.170667,0][0.211426,1.12127,1.045][-0.816734,-0.224728,-0.531453][0.343508,0.130097,0][-1.4465e-006,1.0429,1.40306][-0.816734,-0.224728,-0.531453][0.37287,0.150382,0][0.000360707,0.647088,-1.71151][0.0372977,-0.105875,0.99368][0.0794945,0.56242,0][-0.202412,0.839773,-1.65215][0.149358,-0.245698,0.957771][0.074627,0.580907,0][-0.0498451,0.515562,-1.71811][0.0917448,-0.0396026,0.994995][0.080036,0.549801,0][-0.615866,0.881365,-1.46671][0.417618,-0.359055,0.834671][0.165818,0.298356,0][-0.491509,0.804301,-1.56209][0.417618,-0.359055,0.834671][0.169677,0.284622,0][-0.323312,0.960799,-1.57892][0.417618,-0.359055,0.834671][0.166127,0.26882,0][0.211439,1.46452,0.631486][-0.816574,0.465277,0.341651][0.0211485,0.257199,0][0.211438,1.2141,0.972515][-0.816573,0.465277,0.341651][0.0211485,0.233173,0][-1.34476e-006,1.58027,0.979214][-2.81852e-007,0.0182895,-0.999833][0.0414348,0.268304,0][-0.211441,1.46452,0.631486][0,-0.018289,0.999833][0.0617211,0.257199,0][0.211439,1.46452,0.631486][-0.816574,0.465277,0.341651][0.0211485,0.257199,0][-1.34476e-006,1.58027,0.979214][-2.81852e-007,0.0182895,-0.999833][0.0414348,0.268304,0][0.211438,1.2141,0.972515][-0.816573,0.465277,0.341651][0.0211485,0.233173,0][-1.28601e-006,1.09836,0.624788][-0.816574,0.465277,0.341651][0.0414348,0.222068,0][-0.211441,1.2141,0.972516][-2.81852e-007,0.0182895,-0.999833][0.0617211,0.233173,0][-0.211441,1.2141,0.972516][-2.81852e-007,0.0182895,-0.999833][0.0617211,0.233173,0][-1.28601e-006,1.09836,0.624788][-0.816574,0.465277,0.341651][0.0414348,0.222068,0][-0.211441,1.46452,0.631486][0,-0.018289,0.999833][0.0617211,0.257199,0][-0.21144,1.47163,-1.02439][5.65277e-007,-0.0693557,-0.997592][0.138771,0.142795,0][-0.21144,1.20415,-1.35218][-2.81221e-007,0.0693565,0.997592][0.138771,0.117132,0][-6.89565e-007,1.5695,-1.37758][-2.81221e-007,0.0693565,0.997592][0.118484,0.152185,0][-6.89565e-007,1.5695,-1.37758][-2.81221e-007,0.0693565,0.997592][0.118484,0.152185,0][0.211438,1.47163,-1.02439][5.65277e-007,-0.0693557,-0.997592][0.0981982,0.142795,0][-0.21144,1.47163,-1.02439][5.65277e-007,-0.0693557,-0.997592][0.138771,0.142795,0][0.211438,1.20415,-1.35218][-2.81221e-007,0.0693565,0.997592][0.0981982,0.117132,0][-0.21144,1.20415,-1.35218][-2.81221e-007,0.0693565,0.997592][0.138771,0.117132,0][-7.87952e-007,1.10629,-0.998994][5.65277e-007,-0.0693557,-0.997592][0.118484,0.107742,0][-0.21144,1.47163,-1.02439][5.65277e-007,-0.0693557,-0.997592][0.138771,0.142795,0][-7.87952e-007,1.10629,-0.998994][5.65277e-007,-0.0693557,-0.997592][0.118484,0.107742,0][-0.21144,1.20415,-1.35218][-2.81221e-007,0.0693565,0.997592][0.138771,0.117132,0][0.211429,-1.50718,1.3612][0,-0.435271,0.900299][0.138769,0.0771019,0][0.211429,-1.87718,1.56609][0,0.435271,-0.900299][0.138769,0.0603007,0][-1.61854e-006,-1.5474,1.72553][0.816706,-0.279548,-0.50482][0.118484,0.0472262,0][-0.211432,-1.50718,1.3612][0.816706,-0.279548,-0.50482][0.343508,0.224412,0][0.211429,-1.50718,1.3612][0,-0.435271,0.900299][0.343508,0.183842,0][-1.61854e-006,-1.5474,1.72553][0.816706,-0.279548,-0.50482][0.373384,0.204127,0][0.211429,-1.87718,1.56609][0,0.435271,-0.900299][0.138769,0.0603007,0][-1.51659e-006,-1.83696,1.20177][0,-0.435271,0.900299][0.118484,0.0901764,0][-0.211432,-1.87718,1.56609][0.816706,-0.279548,-0.50482][0.0981982,0.0603007,0][-0.211432,-1.87718,1.56609][0.816706,-0.279548,-0.50482][0.0981982,0.0603007,0][-1.51659e-006,-1.83696,1.20177][0,-0.435271,0.900299][0.118484,0.0901764,0][-0.211432,-1.50718,1.3612][0.816706,-0.279548,-0.50482][0.0981982,0.0771019,0][-0.211436,0.991984,1.12774][0,0.274805,-0.9615][0.252851,0.342967,0][-0.211436,1.32153,0.862558][0,-0.274805,0.9615][0.274597,0.342967,0][-1.40701e-006,1.34414,1.22839][0,0.274805,-0.9615][0.244598,0.322681,0][-0.211436,1.32153,0.862558][0,-0.274805,0.9615][0.296025,0.141533,0][0.211433,1.32153,0.862558][-0.816655,0.36181,0.449631][0.296025,0.100962,0][-1.40701e-006,1.34414,1.22839][0,0.274805,-0.9615][0.326025,0.121247,0][0.211433,0.991984,1.12774][0,0.274805,-0.9615][0.252851,0.302395,0][-1.32024e-006,0.969376,0.761908][-0.816655,0.36181,0.449631][0.282851,0.322681,0][-0.211436,0.991984,1.12774][0,0.274805,-0.9615][0.252851,0.342967,0][-0.211436,0.991984,1.12774][0,0.274805,-0.9615][0.252851,0.342967,0][-1.32024e-006,0.969376,0.761908][-0.816655,0.36181,0.449631][0.282851,0.322681,0][-0.211436,1.32153,0.862558][0,-0.274805,0.9615][0.274597,0.342967,0][0.211441,1.38454,-1.15287][-4.99688e-007,0.899739,0.436428][0.264465,0.575873,0][0.211441,1.58853,-0.782144][5.5926e-007,0.111992,-0.993709][0.264465,0.595444,0][-8.88514e-007,1.74846,-1.11186][-5.28676e-007,-0.111992,0.993709][0.284751,0.610789,0][0.211441,1.38454,-1.15287][-4.99688e-007,0.899739,0.436428][0.264465,0.575873,0][-9.69682e-007,1.2246,-0.823158][5.5926e-007,0.111992,-0.993709][0.284751,0.560528,0][0.211441,1.58853,-0.782144][5.5926e-007,0.111992,-0.993709][0.264465,0.595444,0][-0.211443,1.58853,-0.782144][5.5926e-007,0.111992,-0.993709][0.305038,0.595444,0][-0.211443,1.38453,-1.15287][-4.99688e-007,0.899739,0.436428][0.305038,0.575873,0][-8.88514e-007,1.74846,-1.11186][-5.28676e-007,-0.111992,0.993709][0.284751,0.610789,0][-0.211443,1.58853,-0.782144][5.5926e-007,0.111992,-0.993709][0.305038,0.595444,0][-9.69682e-007,1.2246,-0.823158][5.5926e-007,0.111992,-0.993709][0.284751,0.560528,0][-0.211443,1.38453,-1.15287][-4.99688e-007,0.899739,0.436428][0.305038,0.575873,0][0.211443,1.52616,-0.924416][-2.70149e-007,-0.285638,0.958337][0.219558,0.418969,0][0.211443,1.66163,-0.523485][1.65808e-007,-0.808721,-0.588193][0.227032,0.429602,0][-9.46619e-007,1.87715,-0.819803][-2.70149e-007,-0.285638,0.958337][0.222325,0.458185,0][0.211443,1.52616,-0.924416][-2.70149e-007,-0.285638,0.958337][0.219558,0.418969,0][-1.0085e-006,1.31065,-0.628098][2.88635e-007,0.285639,-0.958337][0.191071,0.413717,0][0.211443,1.66163,-0.523485][1.65808e-007,-0.808721,-0.588193][0.227032,0.429602,0][-0.211445,1.66163,-0.523485][1.65808e-007,-0.808721,-0.588193][0.193837,0.452933,0][-0.211445,1.52616,-0.924416][-2.70149e-007,-0.285638,0.958337][0.186364,0.4423,0][-9.46619e-007,1.87715,-0.819803][-2.70149e-007,-0.285638,0.958337][0.222325,0.458185,0][-0.211445,1.66163,-0.523485][1.65808e-007,-0.808721,-0.588193][0.193837,0.452933,0][-1.0085e-006,1.31065,-0.628098][2.88635e-007,0.285639,-0.958337][0.191071,0.413717,0][-0.211445,1.52616,-0.924416][-2.70149e-007,-0.285638,0.958337][0.186364,0.4423,0][-0.211445,1.50873,0.52686][2.67658e-007,-0.313768,-0.9495][0.38074,0.595157,0][-0.211445,1.63233,0.122107][-2.58674e-007,-0.791049,0.611753][0.38756,0.60486,0][-1.21709e-006,1.85648,0.411944][-2.58674e-007,-0.791049,0.611753][0.416523,0.610789,0][-0.211445,1.50873,0.52686][2.67658e-007,-0.313768,-0.9495][0.38074,0.595157,0][-1.19129e-006,1.28458,0.237024][-4.01487e-007,0.313768,0.9495][0.384972,0.565898,0][-0.211445,1.63233,0.122107][-2.58674e-007,-0.791049,0.611753][0.38756,0.60486,0][0.211443,1.63233,0.122108][-2.58674e-007,-0.791049,0.611753][0.420754,0.581529,0][0.211443,1.50873,0.52686][2.67658e-007,-0.313768,-0.9495][0.413935,0.571827,0][-1.21709e-006,1.85648,0.411944][-2.58674e-007,-0.791049,0.611753][0.416523,0.610789,0][0.211443,1.63233,0.122108][-2.58674e-007,-0.791049,0.611753][0.420754,0.581529,0][-1.19129e-006,1.28458,0.237024][-4.01487e-007,0.313768,0.9495][0.384972,0.565898,0][0.211443,1.50873,0.52686][2.67658e-007,-0.313768,-0.9495][0.413935,0.571827,0][-0.377273,0.75145,-1.56364][0.646266,-1.66079,-0.393344][0.0673694,0.572433,0][-0.681015,0.599054,-1.41924][0.0493325,-0.126776,-0.0300258][0.0555278,0.557812,0][-0.389692,0.759298,-1.61718][0.401405,-0.145725,0.904233][0.0717596,0.573186,0][0.000108432,1.27682,0.836297][-0.0601828,-0.783022,-0.619076][0.218931,0.679493,0][0.439105,1.40836,0.491961][-0.293418,-0.850601,-0.436329][0.190717,0.666821,0][0.357188,1.2402,0.793741][-0.275201,-0.710937,-0.647174][0.215434,0.683001,0][0.604539,1.12266,0.758199][-0.514164,-0.588444,-0.623995][0.212499,0.694273,0][0.439105,1.40836,0.491961][-0.293418,-0.850601,-0.436329][0.190717,0.666821,0][0.709848,1.24021,0.493964][-0.577656,-0.694642,-0.428703][0.190852,0.682954,0][-0.211446,1.59573,0.273833][0,0.710596,-0.7036][0.413666,0.514075,0][-0.211446,1.66912,-0.142985][-3.82304e-007,0.427242,0.904137][0.418143,0.519509,0][-1.1468e-006,1.92689,0.117348][1.27435e-007,-0.427242,-0.904137][0.449527,0.525694,0][-0.211446,1.59573,0.273833][0,0.710596,-0.7036][0.413666,0.514075,0][-1.14557e-006,1.33796,0.0135][0,0.710596,-0.7036][0.413595,0.482088,0][-0.211446,1.66912,-0.142985][-3.82304e-007,0.427242,0.904137][0.418143,0.519509,0][0.211443,1.66912,-0.142985][-3.82304e-007,0.427242,0.904137][0.449456,0.493707,0][0.211443,1.59573,0.273834][0,0.710596,-0.7036][0.444978,0.488273,0][-1.1468e-006,1.92689,0.117348][1.27435e-007,-0.427242,-0.904137][0.449527,0.525694,0][0.211443,1.66912,-0.142985][-3.82304e-007,0.427242,0.904137][0.449456,0.493707,0][-1.14557e-006,1.33796,0.0135][0,0.710596,-0.7036][0.413595,0.482088,0][0.211443,1.59573,0.273834][0,0.710596,-0.7036][0.444978,0.488273,0][-0.211446,1.68389,-0.255333][2.64555e-007,0.461872,-0.886947][0.274372,0.255132,0][-0.211446,1.62664,-0.67468][-2.0593e-007,0.682885,0.730526][0.245987,0.275305,0][-1.01171e-006,1.95151,-0.505507][-2.50024e-007,-0.461872,0.886946][0.244598,0.241216,0][-0.211446,1.68389,-0.255333][2.64555e-007,0.461872,-0.886947][0.274372,0.255132,0][-1.05052e-006,1.35902,-0.424506][-2.0593e-007,0.682885,0.730526][0.275761,0.289221,0][-0.211446,1.62664,-0.67468][-2.0593e-007,0.682885,0.730526][0.245987,0.275305,0][0.211444,1.62664,-0.67468][-2.0593e-007,0.682885,0.730526][0.325259,0.193216,0][0.211444,1.68389,-0.255333][2.64555e-007,0.461872,-0.886947][0.29614,0.174118,0][-1.01171e-006,1.95151,-0.505507][-2.50024e-007,-0.461872,0.886946][0.325374,0.159099,0][0.211444,1.62664,-0.67468][-2.0593e-007,0.682885,0.730526][0.325259,0.193216,0][-1.05052e-006,1.35902,-0.424506][-2.0593e-007,0.682885,0.730526][0.296025,0.208235,0][0.211444,1.68389,-0.255333][2.64555e-007,0.461872,-0.886947][0.29614,0.174118,0][-0.211446,1.65048,0.0120997][1.19933e-007,-0.525309,-0.850911][0.245043,0.189841,0][-0.211446,1.67704,-0.410308][-2.19412e-007,-0.627827,0.778353][0.274245,0.208646,0][-1.08138e-006,1.96217,-0.180318][1.19933e-007,-0.525309,-0.850912][0.244598,0.22365,0][-0.211446,1.65048,0.0120997][1.19933e-007,-0.525309,-0.850911][0.245043,0.189841,0][-1.09483e-006,1.36535,-0.21789][-2.39865e-007,0.525309,0.850911][0.27469,0.174837,0][-0.211446,1.67704,-0.410308][-2.19412e-007,-0.627827,0.778353][0.274245,0.208646,0][0.211444,1.67704,-0.410308][-2.19412e-007,-0.627827,0.778353][0.325942,0.309167,0][0.211444,1.65048,0.0120997][1.19933e-007,-0.525309,-0.850911][0.296025,0.326812,0][-1.08138e-006,1.96217,-0.180318][1.19933e-007,-0.525309,-0.850912][0.296906,0.293011,0][0.211444,1.67704,-0.410308][-2.19412e-007,-0.627827,0.778353][0.325942,0.309167,0][-1.09483e-006,1.36535,-0.21789][-2.39865e-007,0.525309,0.850911][0.325061,0.342967,0][0.211444,1.65048,0.0120997][1.19933e-007,-0.525309,-0.850911][0.296025,0.326812,0][0.903172,-1.51503,-1.28676][-0.039682,0.0749731,-0.0858235][0.162992,0.409223,0][1.09892,-1.10037,-1.01504][-0.16748,0.316428,-0.362223][0.168797,0.363995,0][1.1102,-1.17931,-1.08921][-0.832453,-0.00630157,0.554061][0.165985,0.373293,0][1.1102,-1.17931,-1.08921][-0.832453,-0.00630157,0.554061][0.048065,0.371556,0][1.17083,-0.811179,-0.891297][-0.727896,-0.536326,-0.427227][0.0513729,0.410286,0][1.08183,-0.863737,-1.1322][-0.842275,-0.0514114,0.536591][0.0344933,0.398851,0][-0.305454,0.241868,-1.67971][0.277799,-0.0585637,0.958853][0.0768871,0.523542,0][-0.0498451,0.515562,-1.71811][0.0917448,-0.0396026,0.994995][0.080036,0.549801,0][-0.401124,0.261529,-1.64697][0.384608,-0.0173604,0.922917][0.0742024,0.525428,0][-0.302222,0.033067,-1.68096][0.25619,0.0184135,0.966451][0.0769898,0.503509,0][-0.0203732,-0.139806,-1.72498][0.0672751,0.0152445,0.997618][0.0805992,0.486923,0][-0.0924451,0.113845,-1.7214][0.130681,0.0122148,0.991349][0.0803062,0.511259,0][-0.302222,0.033067,-1.68096][0.25619,0.0184135,0.966451][0.0769898,0.503509,0][-0.0924451,0.113845,-1.7214][0.130681,0.0122148,0.991349][0.0803062,0.511259,0][-0.305454,0.241868,-1.67971][0.277799,-0.0585637,0.958853][0.0768871,0.523542,0][-0.302222,0.033067,-1.68096][0.25619,0.0184135,0.966451][0.0769898,0.503509,0][-0.305454,0.241868,-1.67971][0.277799,-0.0585637,0.958853][0.0768871,0.523542,0][-0.401124,0.261529,-1.64697][0.384608,-0.0173604,0.922917][0.0742024,0.525428,0][-0.0203732,-0.139806,-1.72498][0.0672751,0.0152445,0.997618][0.0805992,0.486923,0][0.12977,-0.0256966,-1.72206][-0.10754,0.00363818,0.994194][0.0803599,0.497871,0][0.055659,0.0941201,-1.72538][-0.0453587,-0.0190522,0.998789][0.0806321,0.509367,0][1.20104,-1.47024,0.356013][-0.918039,-0.207803,-0.337671][0.449521,0.685488,0][1.13752,-1.71078,0.682316][-2.63041,-0.979403,-1.59417][0.475398,0.661427,0][0.988569,-1.47035,0.779648][-0.805827,-0.1515,-0.572443][0.484236,0.68418,0][1.13752,-1.71078,0.682316][-2.63041,-0.979403,-1.59417][0.475398,0.661427,0][0.628911,-1.78704,1.30316][-1.93143,-1.04055,-2.37011][0.526,0.652213,0][0.988569,-1.47035,0.779648][-0.805827,-0.1515,-0.572443][0.484236,0.68418,0][0.278445,0.810777,1.14147][-0.256478,-0.416977,-0.87198][0.243873,0.724254,0][0.710676,0.762788,0.929074][-0.614288,-0.30775,-0.726595][0.226447,0.728826,0][0.575543,0.457724,1.10596][-0.549861,-0.113064,-0.827568][0.240899,0.758121,0][0.198314,0.457717,1.2494][-0.195292,-0.110704,-0.974477][0.252661,0.758144,0][-0.198305,0.457731,1.2494][0.189702,-0.119433,-0.974551][0.252661,0.758142,0][-2.89086e-005,0.665324,1.23091][0.0176569,-0.299838,-0.953827][0.251181,0.738222,0][-0.330724,-1.14201,-1.67189][0.294191,-0.0059214,0.955728][0.0762457,0.390768,0][-0.266939,-0.888556,-1.69017][0.294069,-0.0133097,0.955692][0.0777452,0.415085,0][-0.709135,-0.534117,-1.47729][0.494776,-0.00325436,0.869014][0.0602883,0.449091,0][0.000487613,1.03411,-1.60475][0.0140241,-0.4146,0.909896][0.0707403,0.599553,0][0.21074,0.972031,-1.61339][-0.114147,-0.32426,0.939056][0.0714489,0.593597,0][0.00864585,1.15122,-1.54487][0.0052048,-0.455576,0.890182][0.0658295,0.610789,0][0.00864585,1.15122,-1.54487][0.0052048,-0.455576,0.890182][0.0658295,0.610789,0][-0.189912,0.98067,-1.60677][0.104852,-0.359181,0.927359][0.0709056,0.594425,0][0.000487613,1.03411,-1.60475][0.0140241,-0.4146,0.909896][0.0707403,0.599553,0][-0.951888,-0.675206,-1.24783][0.779702,0.0590319,0.623362][0.0414714,0.435555,0][-1.14995,-0.612858,-0.953287][0.832766,0.035329,0.552497][0.0173182,0.441536,0][-1.17416,-0.752529,-0.907863][0.827981,0.0674793,0.556681][0.0135933,0.428136,0][0.833032,-0.890761,-1.40912][-0.724295,0.0392602,0.688372][0.1241,0.414873,0][0.979201,-0.247421,-1.26249][1.10596,-0.761478,0.870786][0.136124,0.476598,0][0.780815,-0.751741,-1.45154][0.0627819,-0.0432268,0.0494319][0.120621,0.428212,0][0.987249,-0.0941353,-1.25348][-0.799863,-6.02235e-005,0.600182][0.136863,0.491305,0][0.931837,0.0794115,-1.31513][-0.739016,-0.00761075,0.673645][0.131807,0.507955,0][0.903347,-0.255723,-1.34342][-0.687801,0.0136879,0.725771][0.129487,0.475801,0][0.987249,-0.0941353,-1.25348][-0.799863,-6.02235e-005,0.600182][0.136863,0.491305,0][0.903347,-0.255723,-1.34342][-0.687801,0.0136879,0.725771][0.129487,0.475801,0][0.979201,-0.247421,-1.26249][1.10596,-0.761478,0.870786][0.136124,0.476598,0][0.987249,-0.0941353,-1.25348][-0.799863,-6.02235e-005,0.600182][0.136863,0.491305,0][0.979201,-0.247421,-1.26249][1.10596,-0.761478,0.870786][0.136124,0.476598,0][0.972482,-0.675181,-1.2701][-0.775004,0.0574812,0.629336][0.1355,0.435557,0][-1.08995,0.127337,-0.960453][0.0669417,0.10667,-0.0579969][0.0179058,0.512553,0][-0.935565,-0.0934324,-1.1883][0.865912,1.3798,-0.750208][0.0365898,0.491372,0][-0.969094,-0.0940894,-1.22821][0.775585,0.000304306,0.631244][0.0398624,0.491309,0][-0.969094,-0.0940894,-1.22821][0.775585,0.000304306,0.631244][0.0398624,0.491309,0][-1.12828,0.127598,-0.992093][0.650356,1.29461,-0.777057][0.0205004,0.512578,0][-1.08995,0.127337,-0.960453][0.0669417,0.10667,-0.0579969][0.0179058,0.512553,0][-1.1815,-0.085811,-0.891807][0.845606,0.00701429,0.533762][0.0122767,0.492103,0][-0.969094,-0.0940894,-1.22821][0.775585,0.000304306,0.631244][0.0398624,0.491309,0][-0.935565,-0.0934324,-1.1883][0.865912,1.3798,-0.750208][0.0365898,0.491372,0][0.65672,0.88134,-1.46643][-0.416276,-0.361339,0.834355][0.0568276,0.386345,0][0.363719,0.960606,-1.57828][-0.416276,-0.361339,0.834355][0.0569658,0.357224,0][0.532229,0.804293,-1.5619][-0.416276,-0.361339,0.834355][0.0671278,0.376795,0][-0.606257,1.24021,-1.04591][0.497549,-0.699466,0.513023][0.0645775,0.682721,0][-0.916345,0.949967,-0.99444][0.727342,-0.458514,0.510625][0.0687468,0.710575,0][-0.726615,0.665345,-1.3854][0.633948,-0.298304,0.71353][0.0366366,0.737824,0][-0.66575,1.40831,-0.61236][0.521736,-0.808794,0.271374][0.10016,0.666658,0][-0.832059,1.12273,-0.922657][0.671916,-0.612857,0.415855][0.0746639,0.69401,0][-0.606257,1.24021,-1.04591][0.497549,-0.699466,0.513023][0.0645775,0.682721,0][-0.455465,-1.84482,1.48257][0.918575,-1.12019,-2.30282][0.271373,0.979093,0][-0.30347,-1.47013,1.34285][0.252968,-0.301016,-0.919455][0.259983,0.943122,0][2.5443e-006,-1.53609,1.4078][-0.00166245,-0.342834,-0.939394][0.265297,0.949461,0][2.5443e-006,-1.53609,1.4078][-0.00166245,-0.342834,-0.939394][0.265297,0.949461,0][-0.0151412,-1.88017,1.56868][0.0140452,-1.19199,-2.54806][0.278429,0.982498,0][-0.455465,-1.84482,1.48257][0.918575,-1.12019,-2.30282][0.271373,0.979093,0][0.623194,0.81072,-1.40515][-0.547819,-0.373812,0.748438][0.313376,0.909574,0][0.746702,0.405002,-1.41766][-2.3283,-0.472131,2.49949][0.310897,0.870714,0][0.887831,0.565875,-1.25412][-0.748207,-0.184149,0.637397][0.324875,0.885637,0][0.887831,0.565875,-1.25412][-0.748207,-0.184149,0.637397][0.324875,0.885637,0][0.766468,1.03843,-1.11205][-0.652515,-0.544367,0.527152][0.338211,0.930509,0][0.623194,0.81072,-1.40515][-0.547819,-0.373812,0.748438][0.313376,0.909574,0][0.766468,1.03843,-1.11205][-0.652515,-0.544367,0.527152][0.338211,0.930509,0][0.978129,0.762864,-1.04686][-0.793025,-0.338094,0.506758][0.342565,0.903888,0][0.976494,1.08116,-0.688706][-0.750917,-0.582749,0.310688][0.373055,0.933308,0][0.976494,1.08116,-0.688706][-0.750917,-0.582749,0.310688][0.373055,0.933308,0][0.907676,1.24027,-0.470294][-0.700313,-0.70177,0.130693][0.391524,0.947894,0][0.766468,1.03843,-1.11205][-0.652515,-0.544367,0.527152][0.338211,0.930509,0][1.24299,0.615698,-0.329832][-0.982966,-0.169534,0.0709622][0.400795,0.887582,0][1.26514,-1.30774,0.0181558][-0.989197,-0.0835259,-0.12047][0.422418,0.702103,0][1.20557,0.457738,0.242873][-0.962186,-0.112542,-0.248058][0.44716,0.870683,0][1.19412,0.762829,0.00597127][-0.940466,-0.304707,-0.150591][0.42884,0.90066,0][1.05375,1.08112,-0.312364][-0.83283,-0.552048,0.0404778][0.403895,0.932152,0][1.24299,0.615698,-0.329832][-0.982966,-0.169534,0.0709622][0.400795,0.887582,0][1.24299,0.615698,-0.329832][-0.982966,-0.169534,0.0709622][0.400795,0.887582,0][1.20557,0.457738,0.242873][-0.962186,-0.112542,-0.248058][0.44716,0.870683,0][1.19412,0.762829,0.00597127][-0.940466,-0.304707,-0.150591][0.42884,0.90066,0][-0.568509,0.519886,-1.56087][0.541244,-0.166539,0.824209][0.0671418,0.550216,0][-0.836818,0.334337,-1.36585][0.727313,-0.0357391,0.685374][0.0511493,0.532414,0][-0.548675,0.517935,-1.50962][-0.75142,1.45028,0.346032][0.0629394,0.550029,0][-0.429598,0.539363,-1.56804][1.41204,-0.821415,-0.448323][0.0677299,0.552085,0][-0.549728,0.303423,-1.51411][0.165005,-0.0959871,-0.0523891][0.0633078,0.529448,0][-0.444761,0.542665,-1.62185][0.400871,-0.0823541,0.912426][0.0721423,0.552402,0][-0.956475,0.079258,-1.20167][3.93946,-0.158509,2.41843][0.0515987,0.794083,0][-1.04322,0.714265,-0.96337][0.850504,-0.248764,0.463421][0.0712529,0.733194,0][-1.17445,0.384638,-0.784634][0.926772,-0.0739498,0.368272][0.0858512,0.764847,0][-1.22755,0.515663,-0.560166][0.971754,-0.134603,0.193843][0.104282,0.75231,0][-1.04322,0.714265,-0.96337][0.850504,-0.248764,0.463421][0.0712529,0.733194,0][-1.07728,0.950014,-0.62484][0.856915,-0.467495,0.217129][0.0990552,0.710627,0][-1.07728,0.950014,-0.62484][0.856915,-0.467495,0.217129][0.0990552,0.710627,0][-1.19412,0.762869,-0.436633][0.936242,-0.33128,0.117064][0.114455,0.728611,0][-1.22755,0.515663,-0.560166][0.971754,-0.134603,0.193843][0.104282,0.75231,0][0.202007,-0.215994,-1.71181][-0.164347,-0.0108718,0.986343][0.0795195,0.479613,0][0.10128,-0.125411,-1.72292][-0.11045,-0.000881485,0.993881][0.0804309,0.488304,0][0.147993,-1.92166,-1.71933][-0.171846,0.000853019,0.985123][0.0801358,0.315966,0][-0.880763,0.254829,-1.29119][2.7641,-0.393871,1.94882][0.0442888,0.777224,0][-1.04322,0.714265,-0.96337][0.850504,-0.248764,0.463421][0.0712529,0.733194,0][-0.956475,0.079258,-1.20167][3.93946,-0.158509,2.41843][0.0515987,0.794083,0][0.854934,1.27679,0.109545][-0.675588,-0.720994,-0.154106][0.43917,0.949619,0][0.709848,1.24021,0.493964][-0.577656,-0.694642,-0.428703][0.47054,0.944935,0][0.6022,1.43732,0.216352][-0.483392,-0.842486,-0.237803][0.448498,0.964683,0][0.901297,1.08103,0.430834][-0.760987,-0.514624,-0.395046][0.464797,0.929866,0][1.02783,1.08108,0.0733517][-0.829952,-0.529464,-0.175634][0.435503,0.930966,0][1.19412,0.762829,0.00597127][-0.940466,-0.304707,-0.150591][0.42884,0.90066,0][-0.604607,1.4083,0.29845][0.52218,-0.806129,-0.278359][0.174849,0.666797,0][-0.9781,1.1228,0.156415][0.748021,-0.635458,-0.191464][0.163151,0.694167,0][-0.887875,1.27672,-0.379833][0.72705,-0.68297,0.0703552][0.119204,0.679318,0][-0.9781,1.1228,0.156415][0.748021,-0.635458,-0.191464][0.163151,0.694167,0][-0.604607,1.4083,0.29845][0.52218,-0.806129,-0.278359][0.174849,0.666797,0][-0.83204,1.12273,0.491947][0.664284,-0.611695,-0.4296][0.190666,0.694225,0][0.71068,1.40831,-0.485572][-0.56453,-0.806987,0.173431][0.390874,0.964052,0][0.907676,1.24027,-0.470294][-0.700313,-0.70177,0.130693][0.391524,0.947894,0][0.577175,1.51417,-0.21538][-0.471983,-0.881604,0.00242199][0.413395,0.973373,0][0.577175,1.51417,-0.21538][-0.471983,-0.881604,0.00242199][0.132732,0.656562,0][0.210524,1.61914,-0.46162][-0.189383,-0.972734,0.133876][0.112558,0.646454,0][0.71068,1.40831,-0.485572][-0.56453,-0.806987,0.173431][0.110557,0.666677,0][-0.183728,0.85792,-1.57258][0.164788,-0.422934,0.891051][0.0213215,0.719319,0][0.189113,0.762792,-1.61252][-0.15859,-0.326562,0.931776][0.0180295,0.72844,0][-1.29346e-005,1.12273,-1.41869][0.00682633,-0.647144,0.762337][0.0339874,0.693936,0][-0.330195,1.31192,-1.14812][0.255069,-0.784104,0.565792][0.0562085,0.675825,0][-0.424512,0.994687,-1.41428][0.397805,-0.527435,0.750709][0.0343264,0.706221,0][-1.29346e-005,1.12273,-1.41869][0.00682633,-0.647144,0.762337][0.0339874,0.693936,0][-1.05725,0.296292,-1.10501][0.797057,-0.0214232,0.603524][0.0297599,0.528764,0][-0.800778,0.545702,-1.39317][0.633682,-0.0500182,0.771975][0.0533903,0.552693,0][-0.933237,0.410933,-1.1878][1.79232,-2.09838,-0.220999][0.0365487,0.539763,0][-0.933237,0.410933,-1.1878][1.79232,-2.09838,-0.220999][0.0365487,0.539763,0][-1.08995,0.127337,-0.960453][0.0669417,0.10667,-0.0579969][0.0179058,0.512553,0][-1.05725,0.296292,-1.10501][0.797057,-0.0214232,0.603524][0.0297599,0.528764,0][-0.165515,1.64449,-0.246044][0.114554,-0.993274,0.0168508][0.130241,0.644054,0][-0.230876,1.5917,0.156537][0.16561,-0.955698,-0.243339][0.163244,0.64918,0][-0.392886,1.59169,-0.215359][0.330976,-0.943617,-0.00651218][0.132748,0.649124,0][-0.124318,1.53625,-0.820956][0.142955,-0.906585,0.397074][0.083077,0.654351,0][-0.0465483,1.61915,-0.559347][0.0285831,-0.980007,0.196901][0.104544,0.646438,0][-0.33463,1.57506,-0.54979][0.291926,-0.928858,0.228039][0.10532,0.650669,0][-0.336504,0.574765,-1.66019][0.345921,-0.0881871,0.93411][0.0752866,0.555481,0][-0.275357,0.73151,-1.65957][0.317364,-0.12755,0.939686][0.0752354,0.57052,0][-0.389692,0.759298,-1.61718][0.401405,-0.145725,0.904233][0.0717596,0.573186,0][1.44855,-1.96141,-0.355612][-1.63087,1.60133,0.316768][0.389446,0.640576,0][1.54172,-1.89423,-0.215538][-2.52714,-1.05173,0.167591][0.401165,0.646589,0][1.45261,-1.90205,-0.634775][-3.14117,-0.824124,1.24725][0.366783,0.647123,0][0.746702,0.405002,-1.41766][-2.3283,-0.472131,2.49949][0.310897,0.870714,0][0.956458,0.0792385,-1.2017][-3.81603,-0.104615,2.43667][0.327427,0.838819,0][0.887831,0.565875,-1.25412][-0.748207,-0.184149,0.637397][0.324875,0.885637,0][0.294298,-1.14232,-1.63522][-0.0892706,0.066277,-0.0247357][0.105558,0.390738,0][0.72654,-0.482756,-1.42795][-0.298243,0.221424,-0.082639][0.122556,0.454019,0][0.65389,-0.623327,-1.5424][-0.36083,-0.0511309,0.931229][0.11317,0.440532,0][0.65389,-0.623327,-1.5424][-0.36083,-0.0511309,0.931229][0.11317,0.440532,0][0.302753,-1.14203,-1.69086][-0.291935,-0.00670739,0.956415][0.100996,0.390766,0][0.294298,-1.14232,-1.63522][-0.0892706,0.066277,-0.0247357][0.105558,0.390738,0][0.903347,-0.255723,-1.34342][-0.687801,0.0136879,0.725771][0.129487,0.475801,0][0.65389,-0.623327,-1.5424][-0.36083,-0.0511309,0.931229][0.11317,0.440532,0][0.874702,-0.256433,-1.2987][-0.902686,0.917728,-0.56376][0.133154,0.475733,0][0.528389,0.13567,-1.60902][-0.485263,-0.0104637,0.874306][0.107707,0.513353,0][0.515549,0.290442,-1.55531][-0.876961,-0.266928,-0.39961][0.112111,0.528202,0][0.404148,0.542687,-1.65333][-0.3552,-0.118595,0.927237][0.104073,0.552404,0][0.528389,0.13567,-1.60902][-0.485263,-0.0104637,0.874306][0.107707,0.513353,0][0.12977,-0.0256966,-1.72206][-0.10754,0.00363818,0.994194][0.0984375,0.497871,0][0.512653,0.135175,-1.55611][-0.512003,1.36251,-0.139512][0.112046,0.513305,0][0.512653,0.135175,-1.55611][-0.512003,1.36251,-0.139512][0.112046,0.513305,0][0.515549,0.290442,-1.55531][-0.876961,-0.266928,-0.39961][0.112111,0.528202,0][0.528389,0.13567,-1.60902][-0.485263,-0.0104637,0.874306][0.107707,0.513353,0][0.725496,-0.254327,-1.49417][-0.546212,-0.0367208,0.836842][0.0616727,0.475935,0][0.302753,-1.14203,-1.69086][-0.291935,-0.00670739,0.956415][0.0778015,0.390766,0][0.65389,-0.623327,-1.5424][-0.36083,-0.0511309,0.931229][0.0656273,0.440532,0][0.725496,-0.254327,-1.49417][-0.546212,-0.0367208,0.836842][0.0616727,0.475935,0][0.65389,-0.623327,-1.5424][-0.36083,-0.0511309,0.931229][0.0656273,0.440532,0][0.811352,-0.150662,-1.42734][-0.635717,-0.0107968,0.771847][0.0561918,0.485881,0][0.725496,-0.254327,-1.49417][-0.546212,-0.0367208,0.836842][0.0616727,0.475935,0][0.811352,-0.150662,-1.42734][-0.635717,-0.0107968,0.771847][0.0561918,0.485881,0][0.436958,-0.179784,-1.64915][-0.405729,0.0804785,0.910443][0.0743808,0.483087,0][-0.0498451,0.515562,-1.71811][0.0917448,-0.0396026,0.994995][0.080036,0.549801,0][-0.202412,0.839773,-1.65215][0.149358,-0.245698,0.957771][0.074627,0.580907,0][-0.0489483,0.514567,-1.66127][1.42295,0.671789,-0.0106998][0.0753746,0.549706,0][-0.401124,0.261529,-1.64697][0.384608,-0.0173604,0.922917][0.0742024,0.525428,0][-0.0498451,0.515562,-1.71811][0.0917448,-0.0396026,0.994995][0.080036,0.549801,0][-0.0489483,0.514567,-1.66127][1.42295,0.671789,-0.0106998][0.0753746,0.549706,0][-0.0489483,0.514567,-1.66127][1.42295,0.671789,-0.0106998][0.0753746,0.549706,0][-0.387567,0.262587,-1.59232][0.929803,-1.30569,-0.205394][0.0697208,0.52553,0][-0.401124,0.261529,-1.64697][0.384608,-0.0173604,0.922917][0.0742024,0.525428,0][0.42169,0.261437,-1.65377][-0.350282,-0.000184198,0.936644][0.0747604,0.52542,0][0.356156,0.45472,-1.67196][0.247647,0.0895786,0.0596444][0.0762516,0.543964,0][0.40807,0.262538,-1.59888][-0.850486,-1.2232,-0.18646][0.0702589,0.525525,0][1.08735,-1.77282,-1.18532][-0.592789,-0.341677,0.729286][0.322131,0.661199,0][1.14766,-1.39534,-0.893239][-0.904027,-0.110851,0.412852][0.347419,0.696496,0][0.930012,-1.95035,-1.35086][-1.9101,-0.370746,2.37258][0.30793,0.644686,0][0.575543,0.457724,1.10596][-0.549861,-0.113064,-0.827568][0.240899,0.758121,0][0.198314,0.457717,1.2494][-0.195292,-0.110704,-0.974477][0.252661,0.758144,0][0.278445,0.810777,1.14147][-0.256478,-0.416977,-0.87198][0.243873,0.724254,0][0.669367,-1.30763,1.11513][-0.621885,-0.151638,-0.768287][0.241337,0.927497,0][0.198314,0.457717,1.2494][-0.195292,-0.110704,-0.974477][0.252661,0.758144,0][0.575543,0.457724,1.10596][-0.549861,-0.113064,-0.827568][0.240899,0.758121,0][-0.844411,-1.47032,0.977352][0.753404,-0.174587,-0.633958][0.23001,0.943085,0][-1.3711,-1.75058,0.245532][2.80661,-1.44171,-0.723883][0.169949,0.969863,0][-1.14766,-1.39529,0.463624][0.902237,-0.139838,-0.407937][0.187896,0.935809,0][-1.33924,-1.59975,-0.103918][0.918733,-0.388718,-0.0694866][0.14132,0.955339,0][-1.14766,-1.39529,0.463624][0.902237,-0.139838,-0.407937][0.187896,0.935809,0][-1.3711,-1.75058,0.245532][2.80661,-1.44171,-0.723883][0.169949,0.969863,0][-0.887875,1.27672,-0.379833][0.72705,-0.68297,0.0703552][0.119204,0.679318,0][-0.832059,1.12273,-0.922657][0.671916,-0.612857,0.415855][0.0746639,0.69401,0][-0.66575,1.40831,-0.61236][0.521736,-0.808794,0.271374][0.10016,0.666658,0][-0.604607,1.4083,0.29845][0.52218,-0.806129,-0.278359][0.174849,0.666797,0][-0.887875,1.27672,-0.379833][0.72705,-0.68297,0.0703552][0.119204,0.679318,0][-0.656074,1.46463,-0.336832][0.535235,-0.84424,0.0279734][0.122764,0.661297,0][-1.05725,0.296292,-1.10501][0.797057,-0.0214232,0.603524][0.0297599,0.528764,0][-1.12828,0.127598,-0.992093][0.650356,1.29461,-0.777057][0.0205004,0.512578,0][-0.969094,-0.0940894,-1.22821][0.775585,0.000304306,0.631244][0.0398624,0.491309,0][0.392477,0.539263,-1.59863][0.0774377,0.47565,0.286434][0.070238,0.552075,0][0.722955,0.381744,-1.4264][0.0341838,0.209969,0.126442][0.0561146,0.536962,0][0.528134,0.520195,-1.60364][-0.465558,-0.175802,0.867381][0.0706489,0.550246,0][0.528134,0.520195,-1.60364][-0.465558,-0.175802,0.867381][0.0706489,0.550246,0][0.404148,0.542687,-1.65333][-0.3552,-0.118595,0.927237][0.0747239,0.552404,0][0.392477,0.539263,-1.59863][0.0774377,0.47565,0.286434][0.070238,0.552075,0][0.404148,0.542687,-1.65333][-0.3552,-0.118595,0.927237][0.104073,0.552404,0][0.515549,0.290442,-1.55531][-0.876961,-0.266928,-0.39961][0.112111,0.528202,0][0.392477,0.539263,-1.59863][0.0774377,0.47565,0.286434][0.108559,0.552075,0][0.0695526,0.514603,-1.66226][-1.02051,-1.38069,-0.0404388][0.103341,0.549709,0][0.220655,0.892095,-1.58299][-0.12183,0.0489963,-0.00109661][0.109841,0.585927,0][0.0704624,0.515594,-1.71905][-0.0827905,-0.0338584,0.995992][0.0986841,0.549804,0][-0.56881,0.135632,-1.56659][0.421107,0.014656,0.906893][0.0676108,0.513349,0][-0.444761,0.542665,-1.62185][0.400871,-0.0823541,0.912426][0.0721423,0.552402,0][-0.56872,0.303871,-1.56551][0.423334,-0.00602214,0.905954][0.0675225,0.529491,0][-0.665796,0.94997,0.856818][0.564457,-0.472639,-0.676757][0.220555,0.710856,0][-0.575485,0.457728,1.106][0.522214,-0.113195,-0.845269][0.240902,0.758121,0][-0.887803,0.56584,0.823419][0.734186,-0.163541,-0.658958][0.217748,0.747705,0][-0.887803,0.56584,0.823419][0.734186,-0.163541,-0.658958][0.217748,0.747705,0][-0.877868,0.90437,0.66187][0.721916,-0.434776,-0.538337][0.204561,0.715201,0][-0.665796,0.94997,0.856818][0.564457,-0.472639,-0.676757][0.220555,0.710856,0][-1.04126,-0.868723,-1.1323][0.789251,-0.0370414,0.612953][0.0270839,0.0881902,0][-0.931971,-1.22575,-1.27077][0.760903,-0.0360558,0.647863][0.027581,0.0521057,0][-0.824535,-0.948826,-1.31067][-0.302198,-0.35721,0.883786][0.0387127,0.0764517,0][-0.824535,-0.948826,-1.31067][-0.302198,-0.35721,0.883786][0.0617211,0.168237,0][-1.14091,-0.810324,-0.864678][-0.0677784,-0.247391,0.0287461][0.0338022,0.141132,0][-1.04126,-0.868723,-1.1323][0.789251,-0.0370414,0.612953][0.0515264,0.155234,0][-1.1572,-1.77313,-1.09312][0.802514,-0.146464,0.578376][0.0601718,0.971824,0][-1.08892,-1.9505,-1.18526][2.22472,-0.106432,2.15013][0.0525842,0.988827,0][-0.679395,-1.47058,-1.48835][0.646678,-0.0269384,0.762287][0.0278157,0.942736,0][-0.679395,-1.47058,-1.48835][0.646678,-0.0269384,0.762287][0.0278157,0.942736,0][-0.979438,-1.39538,-1.1851][0.784769,-0.0963249,0.612258][0.0526964,0.935567,0][-1.1572,-1.77313,-1.09312][0.802514,-0.146464,0.578376][0.0601718,0.971824,0][0.325628,0.746817,-1.59518][1.18639,0.177215,-0.555138][0.069955,0.571989,0][0.34269,0.581846,-1.61138][0.418378,0.0624941,-0.195767][0.0712835,0.556161,0][0.29569,0.731395,-1.66408][-0.373726,-0.0806287,0.924028][0.0756054,0.570509,0][-0.815358,-0.890694,-1.3885][0.599142,-0.0167862,0.800466][0.053007,0.41488,0][-0.735864,-0.751608,-1.38989][-0.0636562,-0.0430736,0.0503315][0.0531214,0.428224,0][-0.958671,-0.247406,-1.24019][0.729286,0.00413585,0.684196][0.0408453,0.476599,0][1.19412,0.762829,0.00597127][-0.940466,-0.304707,-0.150591][0.42884,0.90066,0][1.07636,0.51569,0.556446][-0.859223,-0.152793,-0.488252][0.473064,0.875279,0][0.930377,0.714222,0.714359][-0.772953,-0.225972,-0.592858][0.486716,0.893829,0][0.0164048,0.0888438,-1.6702][-0.222821,-0.516844,0.221334][0.0761076,0.50886,0][-0.292901,0.241608,-1.62486][-0.101598,-0.235662,0.10092][0.0723896,0.523517,0][-0.0924451,0.113845,-1.7214][0.130681,0.0122148,0.991349][0.0803062,0.511259,0][-0.0924451,0.113845,-1.7214][0.130681,0.0122148,0.991349][0.0803062,0.511259,0][0.055659,0.0941201,-1.72538][-0.0453587,-0.0190522,0.998789][0.0806321,0.509367,0][0.0164048,0.0888438,-1.6702][-0.222821,-0.516844,0.221334][0.0761076,0.50886,0][-0.292901,0.241608,-1.62486][-0.101598,-0.235662,0.10092][0.106408,0.523517,0][0.00691974,0.461399,-1.66561][-0.0845973,0.119095,0.0199284][0.103067,0.544605,0][-0.305454,0.241868,-1.67971][0.277799,-0.0585637,0.958853][0.10191,0.523542,0][1.14989,0.762829,-0.652475][-0.920029,-0.306821,0.243738][0.374883,0.902677,0][1.11876,0.565783,-0.882248][-0.917477,-0.127336,0.376857][0.355348,0.884489,0][1.24299,0.615698,-0.329832][-0.982966,-0.169534,0.0709622][0.400795,0.887582,0][1.11876,0.565783,-0.882248][-0.917477,-0.127336,0.376857][0.355348,0.884489,0][1.14989,0.762829,-0.652475][-0.920029,-0.306821,0.243738][0.374883,0.902677,0][0.978129,0.762864,-1.04686][-0.793025,-0.338094,0.506758][0.342565,0.903888,0][0.540199,-0.395566,-1.60422][-0.101397,0.000163203,0.994846][0.0503612,0.326155,0][0.345162,-0.440003,-1.62409][-0.181693,0.000292442,1.78265][0.0458387,0.325539,0][0.345548,-0.656717,-1.62401][-0.0653807,0.000105233,0.641474][0.0255941,0.33028,0][0.853453,-0.948978,-1.32175][0.196073,0.0806361,0.0326418][0.140041,0.359918,0][0.915373,-1.12639,-1.25543][2.32361,0.955597,0.386829][0.151444,0.373675,0][0.960949,-1.22576,-1.2837][-0.754604,-0.0365953,0.65516][0.152856,0.383386,0][0.915373,-1.12639,-1.25543][2.32361,0.955597,0.386829][0.151444,0.373675,0][0.903172,-1.51503,-1.28676][-0.039682,0.0749731,-0.0858235][0.162992,0.409223,0][0.960949,-1.22576,-1.2837][-0.754604,-0.0365953,0.65516][0.152856,0.383386,0][-0.598785,-1.53479,1.22032][0.5591,-0.269682,-0.784014][0.249923,0.949307,0][-0.30347,-1.47013,1.34285][0.252968,-0.301016,-0.919455][0.259983,0.943122,0][-0.455465,-1.84482,1.48257][0.918575,-1.12019,-2.30282][0.271373,0.979093,0][-0.334694,-0.656466,-1.61391][0.247916,6.83177e-007,0.588598][0.131683,0.349645,0][-0.334694,-0.440239,-1.61391][0.696448,1.91919e-006,1.65349][0.135649,0.329283,0][-0.512672,-0.396367,-1.53895][0.275111,7.58116e-007,0.653162][0.13042,0.323976,0][0.21074,0.972031,-1.61339][-0.114147,-0.32426,0.939056][0.107349,0.593597,0][0.0704624,0.515594,-1.71905][-0.0827905,-0.0338584,0.995992][0.0986841,0.549804,0][0.220655,0.892095,-1.58299][-0.12183,0.0489963,-0.00109661][0.109841,0.585927,0][0.220655,0.892095,-1.58299][-0.12183,0.0489963,-0.00109661][0.109841,0.585927,0][0.118075,1.06994,-1.52327][-0.30051,-0.109533,-0.189999][0.114739,0.60299,0][0.21074,0.972031,-1.61339][-0.114147,-0.32426,0.939056][0.107349,0.593597,0][0.303429,-1.47017,1.34288][-0.229556,-0.275907,-0.93337][0.259984,0.943126,0][0.466651,-1.84287,1.47745][-0.946507,-1.20877,-2.14106][0.270954,0.978905,0][2.5443e-006,-1.53609,1.4078][-0.00166245,-0.342834,-0.939394][0.265297,0.949461,0][-0.165515,1.64449,-0.246044][0.114554,-0.993274,0.0168508][0.130241,0.644054,0][0.185327,1.63826,-0.104947][-0.165387,-0.985035,-0.0485025][0.14181,0.644673,0][-0.0197589,1.6298,0.0776631][0.00308547,-0.973724,-0.227711][0.156783,0.645512,0][0.577175,1.51417,-0.21538][-0.471983,-0.881604,0.00242199][0.132732,0.656562,0][0.285695,1.57507,0.176231][-0.194141,-0.937157,-0.289906][0.164856,0.650779,0][0.185327,1.63826,-0.104947][-0.165387,-0.985035,-0.0485025][0.14181,0.644673,0][1.33924,-1.59973,-0.103945][-0.915725,-0.397766,-0.0568335][0.411365,0.674482,0][1.3711,-1.75056,0.245521][-2.79523,-1.47268,-0.711299][0.439462,0.65895,0][1.20104,-1.47024,0.356013][-0.918039,-0.207803,-0.337671][0.449521,0.685488,0][1.24299,0.615698,-0.329832][-0.982966,-0.169534,0.0709622][0.400795,0.887582,0][1.27219,-1.39524,-0.448939][-0.978194,-0.159126,0.133472][0.383828,0.695144,0][1.26514,-1.30774,0.0181558][-0.989197,-0.0835259,-0.12047][0.422418,0.702103,0][0.140374,-1.95055,-1.7004][-0.326463,0.00174575,1.52574][0.0103417,0.988754,0][0.442662,-1.95049,-1.6354][-1.20115,-0.107983,2.84127][0.0156719,0.988758,0][0.218794,-0.215085,-1.6856][-1.13543,-0.0583497,3.63134][0.0118627,0.82225,0][0.317407,0.234159,-1.6867][-0.276774,-0.0017694,0.960934][0.0774602,0.522802,0][0.005153,0.463582,-1.72228][0.0130786,0.00116832,0.999914][0.0803783,0.544814,0][0.00691974,0.461399,-1.66561][-0.0845973,0.119095,0.0199284][0.0757305,0.544605,0][0.00691974,0.461399,-1.66561][-0.0845973,0.119095,0.0199284][0.0757305,0.544605,0][0.306913,0.234023,-1.63112][0.962852,1.29841,0.184984][0.072903,0.522789,0][0.317407,0.234159,-1.6867][-0.276774,-0.0017694,0.960934][0.0774602,0.522802,0][0.005153,0.463582,-1.72228][0.0130786,0.00116832,0.999914][0.0984192,0.544814,0][-0.305454,0.241868,-1.67971][0.277799,-0.0585637,0.958853][0.10191,0.523542,0][0.00691974,0.461399,-1.66561][-0.0845973,0.119095,0.0199284][0.103067,0.544605,0][0.00864585,1.15122,-1.54487][0.0052048,-0.455576,0.890182][0.112968,0.610789,0][0.21074,0.972031,-1.61339][-0.114147,-0.32426,0.939056][0.107349,0.593597,0][0.118075,1.06994,-1.52327][-0.30051,-0.109533,-0.189999][0.114739,0.60299,0][0.118075,1.06994,-1.52327][-0.30051,-0.109533,-0.189999][0.114739,0.60299,0][0.0102552,1.13089,-1.49388][-0.826216,-1.23633,-0.466936][0.117149,0.608838,0][0.00864585,1.15122,-1.54487][0.0052048,-0.455576,0.890182][0.112968,0.610789,0][0.0102552,1.13089,-1.49388][-0.826216,-1.23633,-0.466936][0.0616489,0.608838,0][-0.14078,1.02962,-1.53342][0.168463,-0.21561,-0.0912978][0.064891,0.599122,0][0.00864585,1.15122,-1.54487][0.0052048,-0.455576,0.890182][0.0658295,0.610789,0][-0.137155,-0.1261,-1.66015][-0.650623,-0.662822,0.370616][0.0752833,0.488238,0][-0.223989,-0.207552,-1.70023][-0.105531,-0.0191922,0.994231][0.0785702,0.480423,0][-0.184979,-1.92211,-1.70821][0.208583,-0.00256616,0.978001][0.0792245,0.315922,0][-0.877868,0.90437,0.66187][0.721916,-0.434776,-0.538337][0.204561,0.715201,0][-0.528403,1.27674,0.635519][0.44884,-0.727289,-0.519224][0.202466,0.67947,0][-0.665796,0.94997,0.856818][0.564457,-0.472639,-0.676757][0.220555,0.710856,0][-0.30347,-1.47013,1.34285][0.252968,-0.301016,-0.919455][0.259983,0.943122,0][-0.598785,-1.53479,1.22032][0.5591,-0.269682,-0.784014][0.249923,0.949307,0][-0.394357,-0.96072,1.21821][0.351259,-0.0835171,-0.932546][0.249852,0.894229,0][-0.198305,0.457731,1.2494][0.189702,-0.119433,-0.974551][0.252661,0.758142,0][-3.97649e-005,-1.20655,1.3224][0.0246247,-0.156647,-0.987348][0.258352,0.91783,0][-0.394357,-0.96072,1.21821][0.351259,-0.0835171,-0.932546][0.249852,0.894229,0][-0.0990011,0.515658,-1.68787][0.0622452,-0.151211,0.98654][0.0118068,0.752139,0][-0.183728,0.85792,-1.57258][0.164788,-0.422934,0.891051][0.0213215,0.719319,0][-0.426051,0.540795,-1.60036][1.78187,-1.12351,4.8356][0.0189866,0.749741,0][-0.18262,-0.00786519,-1.69217][0.559162,-0.0741016,3.32826][0.0113606,0.802367,0][-0.0990011,0.515658,-1.68787][0.0622452,-0.151211,0.98654][0.0118068,0.752139,0][-0.426051,0.540795,-1.60036][1.78187,-1.12351,4.8356][0.0189866,0.749741,0][-0.426051,0.540795,-1.60036][1.78187,-1.12351,4.8356][0.0189866,0.749741,0][-0.520567,0.384525,-1.5711][0.882727,-0.0292485,2.5586][0.021359,0.764738,0][-0.18262,-0.00786519,-1.69217][0.559162,-0.0741016,3.32826][0.0113606,0.802367,0][-0.394357,-0.96072,1.21821][0.351259,-0.0835171,-0.932546][0.249852,0.894229,0][-0.575485,0.457728,1.106][0.522214,-0.113195,-0.845269][0.240902,0.758121,0][-0.198305,0.457731,1.2494][0.189702,-0.119433,-0.974551][0.252661,0.758142,0][-0.198305,0.457731,1.2494][0.189702,-0.119433,-0.974551][0.252661,0.758142,0][-0.468232,0.714327,1.10717][0.419681,-0.307494,-0.853999][0.241043,0.733502,0][-2.89086e-005,0.665324,1.23091][0.0176569,-0.299838,-0.953827][0.251181,0.738222,0][1.19412,0.762829,0.00597127][-0.940466,-0.304707,-0.150591][0.42884,0.90066,0][1.20557,0.457738,0.242873][-0.962186,-0.112542,-0.248058][0.44716,0.870683,0][1.07636,0.51569,0.556446][-0.859223,-0.152793,-0.488252][0.473064,0.875279,0][0.874702,-0.256433,-1.2987][-0.902686,0.917728,-0.56376][0.0456436,0.475733,0][0.946455,-0.248131,-1.22152][1.00227,-0.690085,0.789146][0.039314,0.47653,0][0.979201,-0.247421,-1.26249][1.10596,-0.761478,0.870786][0.0426736,0.476598,0][0.979201,-0.247421,-1.26249][1.10596,-0.761478,0.870786][0.0426736,0.476598,0][0.903347,-0.255723,-1.34342][-0.687801,0.0136879,0.725771][0.04931,0.475801,0][0.874702,-0.256433,-1.2987][-0.902686,0.917728,-0.56376][0.0456436,0.475733,0][1.17083,-0.811179,-0.891297][-0.727896,-0.536326,-0.427227][0.167844,0.334467,0][0.974191,-0.894515,-1.19079][0.0969204,-0.46312,0.0652297][0.14805,0.351059,0][1.08183,-0.863737,-1.1322][-0.842275,-0.0514114,0.536591][0.151403,0.346525,0][0.960949,-1.22576,-1.2837][-0.754604,-0.0365953,0.65516][0.0345683,0.361961,0][1.08183,-0.863737,-1.1322][-0.842275,-0.0514114,0.536591][0.0344933,0.398851,0][0.853453,-0.948978,-1.32175][0.196073,0.0806361,0.0326418][0.0226387,0.385891,0][0.899249,0.0793976,-1.27408][0.442111,-0.241031,0.0445222][0.0436242,0.507954,0][0.784927,-0.149938,-1.3804][0.323135,-0.176168,0.032541][0.0523429,0.485951,0][0.868341,0.00388312,-1.37596][-0.686217,-0.00133157,0.727395][0.0519792,0.500709,0][0.868341,0.00388312,-1.37596][-0.686217,-0.00133157,0.727395][0.0519792,0.500709,0][0.931837,0.0794115,-1.31513][-0.739016,-0.00761075,0.673645][0.0469906,0.507955,0][0.899249,0.0793976,-1.27408][0.442111,-0.241031,0.0445222][0.0436242,0.507954,0][0.931837,0.0794115,-1.31513][-0.739016,-0.00761075,0.673645][0.0469906,0.507955,0][0.845551,0.271924,-1.39738][-0.66437,-0.0123416,0.747302][0.0537357,0.526426,0][0.899249,0.0793976,-1.27408][0.442111,-0.241031,0.0445222][0.0436242,0.507954,0][-0.30144,1.46466,0.477084][0.182675,-0.887195,-0.423693][0.189507,0.661417,0][-0.604607,1.4083,0.29845][0.52218,-0.806129,-0.278359][0.174849,0.666797,0][-0.453859,1.53628,0.109965][0.396969,-0.900563,-0.177204][0.159415,0.65449,0][-0.230876,1.5917,0.156537][0.16561,-0.955698,-0.243339][0.163244,0.64918,0][-0.0197589,1.6298,0.0776631][0.00308547,-0.973724,-0.227711][0.156783,0.645512,0][-0.30144,1.46466,0.477084][0.182675,-0.887195,-0.423693][0.189507,0.661417,0][-0.822131,-0.149924,-1.31026][-0.266276,-0.160369,0.161143][0.132207,0.485952,0][-0.883828,0.0165256,-1.24656][-0.693301,-0.417551,0.419568][0.13743,0.501922,0][-0.900332,-0.0144756,-1.30468][0.740625,0.000533519,0.671918][0.132664,0.498947,0][-0.900332,-0.0144756,-1.30468][0.740625,0.000533519,0.671918][0.132664,0.498947,0][-0.851493,-0.150666,-1.35448][0.696087,-0.00164836,0.717956][0.12858,0.485881,0][-0.822131,-0.149924,-1.31026][-0.266276,-0.160369,0.161143][0.132207,0.485952,0][-0.496077,-0.17267,-1.54583][-0.00511773,-0.131381,0.00560248][0.0659087,0.48377,0][-0.822131,-0.149924,-1.31026][-0.266276,-0.160369,0.161143][0.0465909,0.485952,0][-0.851493,-0.150666,-1.35448][0.696087,-0.00164836,0.717956][0.0502174,0.485881,0][-0.851493,-0.150666,-1.35448][0.696087,-0.00164836,0.717956][0.0502174,0.485881,0][-0.51417,-0.173317,-1.59794][0.461075,0.10797,0.880768][0.070182,0.483708,0][-0.496077,-0.17267,-1.54583][-0.00511773,-0.131381,0.00560248][0.0659087,0.48377,0][0.0832852,0.776317,-1.6881][-0.292062,-0.144426,0.945432][0.0775751,0.574819,0][0.000487613,1.03411,-1.60475][0.0140241,-0.4146,0.909896][0.0707403,0.599553,0][0.0895901,0.825402,-1.61693][1.83021,0.823974,-0.730439][0.0717391,0.579528,0][0.0895901,0.825402,-1.61693][1.83021,0.823974,-0.730439][0.0717391,0.579528,0][0.00223007,0.644148,-1.65481][0.349755,-0.189396,0.0996408][0.0748452,0.562138,0][0.0832852,0.776317,-1.6881][-0.292062,-0.144426,0.945432][0.0775751,0.574819,0][-1.14995,-0.612858,-0.953287][0.832766,0.035329,0.552497][0.0173182,0.441536,0][-0.951888,-0.675206,-1.24783][0.779702,0.0590319,0.623362][0.0414714,0.435555,0][-0.920776,-0.674178,-1.2052][-0.233389,-1.7449,0.212423][0.0379756,0.435653,0][-0.920776,-0.674178,-1.2052][-0.233389,-1.7449,0.212423][0.0379756,0.435653,0][-1.11155,-0.612522,-0.921854][-0.158783,-1.4541,0.209508][0.0147406,0.441569,0][-1.14995,-0.612858,-0.953287][0.832766,0.035329,0.552497][0.0173182,0.441536,0][-1.1413,-0.0855916,-0.864044][0.0475226,0.0384456,-0.0356107][0.01,0.492124,0][-0.920776,-0.674178,-1.2052][-0.233389,-1.7449,0.212423][0.0379756,0.435653,0][-0.951888,-0.675206,-1.24783][0.779702,0.0590319,0.623362][0.0414714,0.435555,0][-0.951888,-0.675206,-1.24783][0.779702,0.0590319,0.623362][0.0414714,0.435555,0][-1.1815,-0.085811,-0.891807][0.845606,0.00701429,0.533762][0.0122767,0.492103,0][-1.1413,-0.0855916,-0.864044][0.0475226,0.0384456,-0.0356107][0.01,0.492124,0][-1.44845,-1.95244,-0.416711][1.80238,1.66871,0.351524][0.115607,0.98913,0][-1.45264,-1.902,-0.634672][3.03242,-0.874477,1.02648][0.097743,0.984258,0][-1.54168,-1.89413,-0.215504][2.41848,-1.16726,0.125839][0.132117,0.983566,0][0.0021643,1.01519,-1.55215][1.46429,0.614943,0.174513][0.0664264,0.597737,0][0.0895901,0.825402,-1.61693][1.83021,0.823974,-0.730439][0.0717391,0.579528,0][0.000487613,1.03411,-1.60475][0.0140241,-0.4146,0.909896][0.0707403,0.599553,0][0.000487613,1.03411,-1.60475][0.0140241,-0.4146,0.909896][0.0707403,0.599553,0][-0.0898778,0.81863,-1.67516][0.149304,-0.20757,0.966759][0.0765139,0.578879,0][0.0021643,1.01519,-1.55215][1.46429,0.614943,0.174513][0.0664264,0.597737,0][0.277891,-0.888569,-1.6973][-0.272437,-0.0059235,0.962155][0.0783292,0.415084,0][0.725496,-0.254327,-1.49417][-0.546212,-0.0367208,0.836842][0.0616727,0.475935,0][0.435959,-0.641187,-1.59127][2.00926,-1.81459,1.23834][0.0696348,0.438819,0][0.435959,-0.641187,-1.59127][2.00926,-1.81459,1.23834][0.0696348,0.438819,0][0.269022,-0.887057,-1.64129][1.34441,-0.96141,0.238876][0.0737368,0.415229,0][0.277891,-0.888569,-1.6973][-0.272437,-0.0059235,0.962155][0.0783292,0.415084,0][0.269022,-0.887057,-1.64129][1.34441,-0.96141,0.238876][0.105061,0.415229,0][0.26994,-0.362455,-1.64109][-0.106036,0.00019223,-0.0167984][0.105078,0.465561,0][0.277891,-0.888569,-1.6973][-0.272437,-0.0059235,0.962155][0.100468,0.415084,0][0.725496,-0.254327,-1.49417][-0.546212,-0.0367208,0.836842][0.0616727,0.475935,0][0.278358,-0.361777,-1.69696][-0.243951,0.0112583,0.969722][0.0783018,0.465626,0][0.536979,-0.296988,-1.54545][-0.578224,2.81634,-0.217316][0.0658776,0.471842,0][0.536979,-0.296988,-1.54545][-0.578224,2.81634,-0.217316][0.0658776,0.471842,0][0.701399,-0.255193,-1.44511][-0.295649,1.45022,-0.119613][0.0576495,0.475852,0][0.725496,-0.254327,-1.49417][-0.546212,-0.0367208,0.836842][0.0616727,0.475935,0][0.278358,-0.361777,-1.69696][-0.243951,0.0112583,0.969722][0.100496,0.465626,0][0.277891,-0.888569,-1.6973][-0.272437,-0.0059235,0.962155][0.100468,0.415084,0][0.26994,-0.362455,-1.64109][-0.106036,0.00019223,-0.0167984][0.105078,0.465561,0][0.604539,1.12266,0.758199][-0.514164,-0.588444,-0.623995][0.212499,0.694273,0][0.278445,0.810777,1.14147][-0.256478,-0.416977,-0.87198][0.243873,0.724254,0][0.357188,1.2402,0.793741][-0.275201,-0.710937,-0.647174][0.215434,0.683001,0][0.357188,1.2402,0.793741][-0.275201,-0.710937,-0.647174][0.215434,0.683001,0][0.439105,1.40836,0.491961][-0.293418,-0.850601,-0.436329][0.190717,0.666821,0][0.604539,1.12266,0.758199][-0.514164,-0.588444,-0.623995][0.212499,0.694273,0][0.941377,-0.674167,-1.22744][-1.20073,0.942928,-0.897898][0.138998,0.435654,0][1.16273,-0.0863862,-0.906193][-0.833988,-0.408639,-0.37078][0.165341,0.492048,0][0.972482,-0.675181,-1.2701][-0.775004,0.0574812,0.629336][0.1355,0.435557,0][1.13217,-0.612526,-0.957875][0.0197542,-0.13853,0.017696][0.0176945,0.441568,0][0.941377,-0.674167,-1.22744][-1.20073,0.942928,-0.897898][0.0397993,0.435654,0][0.972482,-0.675181,-1.2701][-0.775004,0.0574812,0.629336][0.0432977,0.435557,0][0.972482,-0.675181,-1.2701][-0.775004,0.0574812,0.629336][0.0432977,0.435557,0][1.17057,-0.612868,-0.989303][-0.820282,0.0350675,0.570884][0.0202717,0.441535,0][1.13217,-0.612526,-0.957875][0.0197542,-0.13853,0.017696][0.0176945,0.441568,0][0.201422,1.31191,-1.19709][-0.15139,-0.783785,0.602298][0.0521931,0.675819,0][-0.330195,1.31192,-1.14812][0.255069,-0.784104,0.565792][0.0562085,0.675825,0][-1.29346e-005,1.12273,-1.41869][0.00682633,-0.647144,0.762337][0.0339874,0.693936,0][0.350023,0.950001,-1.47578][-0.301302,-0.507452,0.807285][0.0292752,0.710499,0][0.201422,1.31191,-1.19709][-0.15139,-0.783785,0.602298][0.0521931,0.675819,0][-1.29346e-005,1.12273,-1.41869][0.00682633,-0.647144,0.762337][0.0339874,0.693936,0][0.345707,1.53628,-0.688886][-0.305785,-0.90911,0.282867][0.0939072,0.654369,0][0.71068,1.40831,-0.485572][-0.56453,-0.806987,0.173431][0.110557,0.666677,0][0.210524,1.61914,-0.46162][-0.189383,-0.972734,0.133876][0.112558,0.646454,0][0.210524,1.61914,-0.46162][-0.189383,-0.972734,0.133876][0.112558,0.646454,0][0.0902955,1.51414,-0.882382][-0.0821987,-0.895647,0.437104][0.0780359,0.656464,0][0.345707,1.53628,-0.688886][-0.305785,-0.90911,0.282867][0.0939072,0.654369,0][-0.179631,-1.9216,-1.65238][-1.5701,0.037793,0.150066][0.104152,0.315971,0][-0.137155,-0.1261,-1.66015][-0.650623,-0.662822,0.370616][0.103514,0.488238,0][-0.184979,-1.92211,-1.70821][0.208583,-0.00256616,0.978001][0.0995729,0.315922,0][-0.326973,-1.90349,-1.61783][0.0392327,0.332056,-0.00675139][0.0718132,0.317708,0][-0.179631,-1.9216,-1.65238][-1.5701,0.037793,0.150066][0.0746458,0.315971,0][-0.184979,-1.92211,-1.70821][0.208583,-0.00256616,0.978001][0.0792245,0.315922,0][-0.184979,-1.92211,-1.70821][0.208583,-0.00256616,0.978001][0.0792245,0.315922,0][-0.338706,-1.90517,-1.67218][0.227933,-0.00275499,0.973673][0.0762696,0.317547,0][-0.326973,-1.90349,-1.61783][0.0392327,0.332056,-0.00675139][0.0718132,0.317708,0][-0.387567,0.262587,-1.59232][0.929803,-1.30569,-0.205394][0.109077,0.52553,0][-0.323912,0.563291,-1.60644][-0.171119,0.038182,0.0417106][0.107919,0.554381,0][-0.401124,0.261529,-1.64697][0.384608,-0.0173604,0.922917][0.104595,0.525428,0][-0.800778,0.545702,-1.39317][0.633682,-0.0500182,0.771975][0.0533903,0.552693,0][-0.389692,0.759298,-1.61718][0.401405,-0.145725,0.904233][0.0717596,0.573186,0][-0.681015,0.599054,-1.41924][0.0493325,-0.126776,-0.0300258][0.0555278,0.557812,0][-0.681015,0.599054,-1.41924][0.0493325,-0.126776,-0.0300258][0.0555278,0.557812,0][-0.933237,0.410933,-1.1878][1.79232,-2.09838,-0.220999][0.0365487,0.539763,0][-0.800778,0.545702,-1.39317][0.633682,-0.0500182,0.771975][0.0533903,0.552693,0][-1.27697,-1.30771,-0.332542][0.992125,-0.0976128,0.078487][0.122624,0.927285,0][-1.25854,0.515681,-0.0994913][0.987366,-0.143982,-0.06616][0.142058,0.752378,0][-1.26512,-1.30772,0.0182842][0.981147,-0.0887872,-0.17166][0.151393,0.927339,0][0.628911,-1.78704,1.30316][-1.93143,-1.04055,-2.37011][0.256671,0.973521,0][0.199767,-0.96075,1.27282][-0.265585,-0.0659045,-0.961832][0.25433,0.89424,0][0.669367,-1.30763,1.11513][-0.621885,-0.151638,-0.768287][0.241337,0.927497,0][0.669367,-1.30763,1.11513][-0.621885,-0.151638,-0.768287][0.241337,0.927497,0][0.199767,-0.96075,1.27282][-0.265585,-0.0659045,-0.961832][0.25433,0.89424,0][0.198314,0.457717,1.2494][-0.195292,-0.110704,-0.974477][0.252661,0.758144,0][0.722955,0.381744,-1.4264][0.0341838,0.209969,0.126442][0.0561146,0.536962,0][0.899249,0.0793976,-1.27408][0.442111,-0.241031,0.0445222][0.0436242,0.507954,0][0.845551,0.271924,-1.39738][-0.66437,-0.0123416,0.747302][0.0537357,0.526426,0][0.845551,0.271924,-1.39738][-0.66437,-0.0123416,0.747302][0.0537357,0.526426,0][0.528134,0.520195,-1.60364][-0.465558,-0.175802,0.867381][0.0706489,0.550246,0][0.722955,0.381744,-1.4264][0.0341838,0.209969,0.126442][0.0561146,0.536962,0][0.92448,0.466982,-1.31699][-0.708564,-0.0294966,0.70503][0.131655,0.54514,0][1.14683,0.127616,-1.03117][-0.80161,-0.0220481,0.59744][0.155092,0.51258,0][1.04713,0.287471,-1.0947][-2.2889,-1.36327,0.161969][0.149883,0.527917,0][0.745357,0.589657,-1.46841][-0.545217,-0.0377739,0.837444][0.05956,0.55691,0][0.92448,0.466982,-1.31699][-0.708564,-0.0294966,0.70503][0.0471429,0.54514,0][0.889183,0.471525,-1.27878][-0.566807,-1.28535,-0.370825][0.0440098,0.545576,0][0.889183,0.471525,-1.27878][-0.566807,-1.28535,-0.370825][0.0440098,0.545576,0][0.631378,0.638611,-1.47622][-0.193205,-0.473503,-0.148436][0.0602001,0.561607,0][0.745357,0.589657,-1.46841][-0.545217,-0.0377739,0.837444][0.05956,0.55691,0][0.532229,0.804293,-1.5619][-0.416276,-0.361339,0.834355][0.157755,0.0810174,0][0.363719,0.960606,-1.57828][-0.416276,-0.361339,0.834355][0.167179,0.0610801,0][0.458051,0.875609,-1.51121][1.49724,1.60678,-0.069556][0.162133,0.0721685,0][0.458051,0.875609,-1.51121][1.49724,1.60678,-0.069556][0.162133,0.0721685,0][0.516486,0.793749,-1.51043][1.19975,0.861582,0.543457][0.156335,0.0798823,0][0.532229,0.804293,-1.5619][-0.416276,-0.361339,0.834355][0.157755,0.0810174,0][0.363719,0.960606,-1.57828][-0.416276,-0.361339,0.834355][0.167179,0.0610801,0][0.65672,0.88134,-1.46643][-0.416276,-0.361339,0.834355][0.168405,0.0901764,0][0.426357,0.94124,-1.50176][-0.594261,-2.34919,-0.108109][0.16722,0.0673703,0][0.426357,0.94124,-1.50176][-0.594261,-2.34919,-0.108109][0.16722,0.0673703,0][0.458051,0.875609,-1.51121][1.49724,1.60678,-0.069556][0.162133,0.0721685,0][0.363719,0.960606,-1.57828][-0.416276,-0.361339,0.834355][0.167179,0.0610801,0][-0.0782576,1.16306,0.949148][0.025755,-0.635504,-0.771667][0.228165,0.690425,0][0.278445,0.810777,1.14147][-0.256478,-0.416977,-0.87198][0.243873,0.724254,0][-2.89086e-005,0.665324,1.23091][0.0176569,-0.299838,-0.953827][0.251181,0.738222,0][0.198314,0.457717,1.2494][-0.195292,-0.110704,-0.974477][0.252661,0.758144,0][-2.89086e-005,0.665324,1.23091][0.0176569,-0.299838,-0.953827][0.251181,0.738222,0][0.278445,0.810777,1.14147][-0.256478,-0.416977,-0.87198][0.243873,0.724254,0][0.976494,1.08116,-0.688706][-0.750917,-0.582749,0.310688][0.373055,0.933308,0][1.14989,0.762829,-0.652475][-0.920029,-0.306821,0.243738][0.374883,0.902677,0][1.05375,1.08112,-0.312364][-0.83283,-0.552048,0.0404778][0.403895,0.932152,0][0.577175,1.51417,-0.21538][-0.471983,-0.881604,0.00242199][0.413395,0.973373,0][0.907676,1.24027,-0.470294][-0.700313,-0.70177,0.130693][0.391524,0.947894,0][1.05375,1.08112,-0.312364][-0.83283,-0.552048,0.0404778][0.403895,0.932152,0][0.12977,-0.0256966,-1.72206][-0.10754,0.00363818,0.994194][0.0984375,0.497871,0][-0.0203732,-0.139806,-1.72498][0.0672751,0.0152445,0.997618][0.0981982,0.486923,0][0.231909,0.0232928,-1.64978][-0.198634,0.258665,0.105371][0.104365,0.502571,0][0.231909,0.0232928,-1.64978][-0.198634,0.258665,0.105371][0.0744326,0.502571,0][0.512653,0.135175,-1.55611][-0.512003,1.36251,-0.139512][0.0667519,0.513305,0][0.12977,-0.0256966,-1.72206][-0.10754,0.00363818,0.994194][0.0803599,0.497871,0][-0.257893,-0.887026,-1.63422][-1.40237,-1.04522,0.255284][0.105641,0.415232,0][-0.690514,-0.255304,-1.42427][-0.0547175,-0.0407824,0.00996068][0.122857,0.475841,0][-0.266939,-0.888556,-1.69017][0.294069,-0.0133097,0.955692][0.101052,0.415085,0][-0.266939,-0.888556,-1.69017][0.294069,-0.0133097,0.955692][0.0777452,0.415085,0][-0.267398,-0.361761,-1.68983][0.280462,0.00998791,0.959813][0.0777172,0.465628,0][-0.257893,-0.887026,-1.63422][-1.40237,-1.04522,0.255284][0.0731568,0.415232,0][-0.717597,-0.254293,-1.47099][0.583291,-0.0506262,0.810684][0.119026,0.475938,0][-0.266939,-0.888556,-1.69017][0.294069,-0.0133097,0.955692][0.101052,0.415085,0][-0.690514,-0.255304,-1.42427][-0.0547175,-0.0407824,0.00996068][0.122857,0.475841,0][-0.267398,-0.361761,-1.68983][0.280462,0.00998791,0.959813][0.0777172,0.465628,0][-0.717597,-0.254293,-1.47099][0.583291,-0.0506262,0.810684][0.0597713,0.475939,0][-0.690514,-0.255304,-1.42427][-0.0547175,-0.0407824,0.00996068][0.0559403,0.475841,0][-0.690514,-0.255304,-1.42427][-0.0547175,-0.0407824,0.00996068][0.0559403,0.475841,0][-0.258909,-0.362489,-1.63399][0.429519,1.8111,-0.0416756][0.0731382,0.465558,0][-0.267398,-0.361761,-1.68983][0.280462,0.00998791,0.959813][0.0777172,0.465628,0][0.766468,1.03843,-1.11205][-0.652515,-0.544367,0.527152][0.338211,0.930509,0][0.56047,1.31191,-0.983021][-0.480544,-0.765281,0.428278][0.349765,0.956334,0][0.521607,1.16312,-1.21133][-0.425406,-0.647847,0.631921][0.330522,0.942767,0][0.521607,1.16312,-1.21133][-0.425406,-0.647847,0.631921][0.330522,0.942767,0][0.623194,0.81072,-1.40515][-0.547819,-0.373812,0.748438][0.313376,0.909574,0][0.766468,1.03843,-1.11205][-0.652515,-0.544367,0.527152][0.338211,0.930509,0][-1.06662,0.904317,0.301534][0.867872,-0.391971,-0.305215][0.175012,0.715152,0][-1.0631,0.615715,0.546828][0.874325,-0.178957,-0.451143][0.195076,0.742878,0][-1.20554,0.457718,0.242976][0.952721,-0.100484,-0.286752][0.170131,0.757991,0][-1.06662,0.904317,0.301534][0.867872,-0.391971,-0.305215][0.175012,0.715152,0][-0.877868,0.90437,0.66187][0.721916,-0.434776,-0.538337][0.204561,0.715201,0][-1.0631,0.615715,0.546828][0.874325,-0.178957,-0.451143][0.195076,0.742878,0][0.410483,0.759313,-1.62378][-0.357942,0.139074,0.923329][0.072301,0.573188,0][0.745357,0.589657,-1.46841][-0.545217,-0.0377739,0.837444][0.05956,0.55691,0][0.631378,0.638611,-1.47622][-0.193205,-0.473503,-0.148436][0.0602001,0.561607,0][0.631378,0.638611,-1.47622][-0.193205,-0.473503,-0.148436][0.0602001,0.561607,0][0.325628,0.746817,-1.59518][1.18639,0.177215,-0.555138][0.069955,0.571989,0][0.410483,0.759313,-1.62378][-0.357942,0.139074,0.923329][0.072301,0.573188,0][-0.202412,0.839773,-1.65215][0.149358,-0.245698,0.957771][0.074627,0.580907,0][-0.189912,0.98067,-1.60677][0.104852,-0.359181,0.927359][0.0709056,0.594425,0][-0.200617,0.872341,-1.58355][1.7957,-0.170201,0.0338176][0.0690015,0.584032,0][-0.200617,0.872341,-1.58355][1.7957,-0.170201,0.0338176][0.0690015,0.584032,0][-0.0489483,0.514567,-1.66127][1.42295,0.671789,-0.0106998][0.0753746,0.549706,0][-0.202412,0.839773,-1.65215][0.149358,-0.245698,0.957771][0.074627,0.580907,0][1.16273,-0.0863862,-0.906193][-0.833988,-0.408639,-0.37078][0.0134564,0.492048,0][0.956256,-0.0933958,-1.21073][0.00782082,-1.91823,0.0388505][0.038429,0.491376,0][0.987249,-0.0941353,-1.25348][-0.799863,-6.02235e-005,0.600182][0.0419346,0.491305,0][0.956256,-0.0933958,-1.21073][0.00782082,-1.91823,0.0388505][0.140368,0.491376,0][1.11075,0.127292,-0.996016][-0.0747673,0.106877,-0.0560552][0.157975,0.512549,0][0.987249,-0.0941353,-1.25348][-0.799863,-6.02235e-005,0.600182][0.136863,0.491305,0][0.710676,0.762788,0.929074][-0.614288,-0.30775,-0.726595][0.504485,0.897828,0][0.930377,0.714222,0.714359][-0.772953,-0.225972,-0.592858][0.486716,0.893829,0][1.07636,0.51569,0.556446][-0.859223,-0.152793,-0.488252][0.473064,0.875279,0][0.710676,0.762788,0.929074][-0.614288,-0.30775,-0.726595][0.504485,0.897828,0][0.604539,1.12266,0.758199][-0.514164,-0.588444,-0.623995][0.491772,0.932854,0][0.930377,0.714222,0.714359][-0.772953,-0.225972,-0.592858][0.486716,0.893829,0][0.306913,0.234023,-1.63112][0.962852,1.29841,0.184984][0.072903,0.522789,0][0.0164048,0.0888438,-1.6702][-0.222821,-0.516844,0.221334][0.0761076,0.50886,0][0.055659,0.0941201,-1.72538][-0.0453587,-0.0190522,0.998789][0.0806321,0.509367,0][0.055659,0.0941201,-1.72538][-0.0453587,-0.0190522,0.998789][0.0806321,0.509367,0][0.317407,0.234159,-1.6867][-0.276774,-0.0017694,0.960934][0.0774602,0.522802,0][0.306913,0.234023,-1.63112][0.962852,1.29841,0.184984][0.072903,0.522789,0][-0.0203732,-0.139806,-1.72498][0.0672751,0.0152445,0.997618][0.0805992,0.486923,0][-0.302222,0.033067,-1.68096][0.25619,0.0184135,0.966451][0.0769898,0.503509,0][-0.295616,0.0331757,-1.62497][0.705837,1.17256,-0.0855443][0.0723981,0.503519,0][-0.549727,0.135166,-1.51538][0.0616908,0.161862,-0.00759193][0.0634116,0.513305,0][-0.295616,0.0331757,-1.62497][0.705837,1.17256,-0.0855443][0.0723981,0.503519,0][-0.302222,0.033067,-1.68096][0.25619,0.0184135,0.966451][0.0769898,0.503509,0][-0.302222,0.033067,-1.68096][0.25619,0.0184135,0.966451][0.0769898,0.503509,0][-0.56881,0.135632,-1.56659][0.421107,0.014656,0.906893][0.0676108,0.513349,0][-0.549727,0.135166,-1.51538][0.0616908,0.161862,-0.00759193][0.0634116,0.513305,0][-0.971641,0.0793879,-1.22416][0.788103,-0.0147721,0.615366][0.0395305,0.507953,0][-0.900332,-0.0144756,-1.30468][0.740625,0.000533519,0.671918][0.0461337,0.498947,0][-0.883828,0.0165256,-1.24656][-0.693301,-0.417551,0.419568][0.0413674,0.501922,0][-0.883828,0.0165256,-1.24656][-0.693301,-0.417551,0.419568][0.0413674,0.501922,0][-0.936514,0.079422,-1.1864][-0.67608,-1.16891,0.629999][0.0364341,0.507956,0][-0.971641,0.0793879,-1.22416][0.788103,-0.0147721,0.615366][0.0395305,0.507953,0][-0.836818,0.334337,-1.36585][0.727313,-0.0357391,0.685374][0.127648,0.532414,0][-0.971641,0.0793879,-1.22416][0.788103,-0.0147721,0.615366][0.139267,0.507953,0][-0.936514,0.079422,-1.1864][-0.67608,-1.16891,0.629999][0.142363,0.507956,0][-0.936514,0.079422,-1.1864][-0.67608,-1.16891,0.629999][0.142363,0.507956,0][-0.819225,0.318933,-1.31067][-1.51541,1.16099,0.80734][0.132173,0.530936,0][-0.836818,0.334337,-1.36585][0.727313,-0.0357391,0.685374][0.127648,0.532414,0][0.302753,-1.14203,-1.69086][-0.291935,-0.00670739,0.956415][0.100996,0.390766,0][0.308289,-1.90166,-1.69099][-0.175524,0.000856641,0.984475][0.100985,0.317884,0][0.299723,-1.90012,-1.63578][-1.50813,-0.0109499,-0.233677][0.105512,0.318032,0][0.299723,-1.90012,-1.63578][-1.50813,-0.0109499,-0.233677][0.105512,0.318032,0][0.294298,-1.14232,-1.63522][-0.0892706,0.066277,-0.0247357][0.105558,0.390738,0][0.302753,-1.14203,-1.69086][-0.291935,-0.00670739,0.956415][0.100996,0.390766,0][0.1425,-1.92159,-1.66353][-0.0427129,0.333413,-0.0159563][0.0755608,0.315972,0][0.299723,-1.90012,-1.63578][-1.50813,-0.0109499,-0.233677][0.0732849,0.318032,0][0.308289,-1.90166,-1.69099][-0.175524,0.000856641,0.984475][0.0778125,0.317884,0][0.308289,-1.90166,-1.69099][-0.175524,0.000856641,0.984475][0.0778125,0.317884,0][0.147993,-1.92166,-1.71933][-0.171846,0.000853019,0.985123][0.0801358,0.315966,0][0.1425,-1.92159,-1.66353][-0.0427129,0.333413,-0.0159563][0.0755608,0.315972,0][-0.389692,0.759298,-1.61718][0.401405,-0.145725,0.904233][0.0717596,0.573186,0][-0.275357,0.73151,-1.65957][0.317364,-0.12755,0.939686][0.0752354,0.57052,0][-0.377273,0.75145,-1.56364][0.646266,-1.66079,-0.393344][0.0673694,0.572433,0][-0.275357,0.73151,-1.65957][0.317364,-0.12755,0.939686][0.103562,0.57052,0][-0.336504,0.574765,-1.66019][0.345921,-0.0881871,0.93411][0.103511,0.555481,0][-0.26611,0.724549,-1.60509][-1.18577,0.461533,0.260238][0.10803,0.569852,0][-0.18262,-0.00786519,-1.69217][0.559162,-0.0741016,3.32826][0.0113606,0.802367,0][5.45281e-006,-0.138286,-1.70848][-0.0063484,-0.0607006,1.89467][0.01,0.814878,0][-0.0990011,0.515658,-1.68787][0.0622452,-0.151211,0.98654][0.0118068,0.752139,0][0.701399,-0.255193,-1.44511][-0.295649,1.45022,-0.119613][0.0576495,0.475852,0][0.435959,-0.641187,-1.59127][2.00926,-1.81459,1.23834][0.0696348,0.438819,0][0.725496,-0.254327,-1.49417][-0.546212,-0.0367208,0.836842][0.0616727,0.475935,0][0.147993,-1.92166,-1.71933][-0.171846,0.000853019,0.985123][0.0801358,0.315966,0][0.10128,-0.125411,-1.72292][-0.11045,-0.000881485,0.993881][0.0804309,0.488304,0][0.1425,-1.92159,-1.66353][-0.0427129,0.333413,-0.0159563][0.0755608,0.315972,0][-0.382065,1.16312,0.863769][0.337541,-0.657741,-0.673382][0.221163,0.690406,0][-0.128868,1.34576,0.73838][-0.0433765,-0.892113,-0.449725][0.210913,0.672864,0][-0.0782576,1.16306,0.949148][0.025755,-0.635504,-0.771667][0.228165,0.690425,0][-0.0782576,1.16306,0.949148][0.025755,-0.635504,-0.771667][0.228165,0.690425,0][-2.89086e-005,0.665324,1.23091][0.0176569,-0.299838,-0.953827][0.251181,0.738222,0][-0.258906,0.994635,1.04653][0.211145,-0.506102,-0.836229][0.236121,0.706599,0][0.00223007,0.644148,-1.65481][0.349755,-0.189396,0.0996408][0.103952,0.562138,0][-0.08516,0.825654,-1.61543][-0.232973,-0.112569,0.00184402][0.107181,0.579553,0][0.000360707,0.647088,-1.71151][0.0372977,-0.105875,0.99368][0.0993029,0.56242,0][0.000360707,0.647088,-1.71151][0.0372977,-0.105875,0.99368][0.0794945,0.56242,0][0.0832852,0.776317,-1.6881][-0.292062,-0.144426,0.945432][0.0775751,0.574819,0][0.00223007,0.644148,-1.65481][0.349755,-0.189396,0.0996408][0.0748452,0.562138,0][-0.548675,0.517935,-1.50962][-0.75142,1.45028,0.346032][0.0629394,0.550029,0][-0.429598,0.539363,-1.56804][1.41204,-0.821415,-0.448323][0.0677299,0.552085,0][-0.444761,0.542665,-1.62185][0.400871,-0.0823541,0.912426][0.0721423,0.552402,0][-0.444761,0.542665,-1.62185][0.400871,-0.0823541,0.912426][0.0721423,0.552402,0][-0.568509,0.519886,-1.56087][0.541244,-0.166539,0.824209][0.0671418,0.550216,0][-0.548675,0.517935,-1.50962][-0.75142,1.45028,0.346032][0.0629394,0.550029,0][-0.593759,-0.687313,-1.4908][0.0822221,0.0546257,-0.0177314][0.0613963,0.434393,0][-0.318757,-1.14226,-1.61718][1.38192,0.918104,-0.298015][0.0717595,0.390743,0][-0.330724,-1.14201,-1.67189][0.294191,-0.0059214,0.955728][0.0762457,0.390768,0][-0.330724,-1.14201,-1.67189][0.294191,-0.0059214,0.955728][0.0762457,0.390768,0][-0.709135,-0.534117,-1.47729][0.494776,-0.00325436,0.869014][0.0602883,0.449091,0][-0.593759,-0.687313,-1.4908][0.0822221,0.0546257,-0.0177314][0.0613963,0.434393,0][-0.318757,-1.14226,-1.61718][1.38192,0.918104,-0.298015][0.0717595,0.390743,0][-0.326973,-1.90349,-1.61783][0.0392327,0.332056,-0.00675139][0.0718132,0.317708,0][-0.330724,-1.14201,-1.67189][0.294191,-0.0059214,0.955728][0.0762457,0.390768,0][0.854934,1.27679,0.109545][-0.675588,-0.720994,-0.154106][0.43917,0.949619,0][0.6022,1.43732,0.216352][-0.483392,-0.842486,-0.237803][0.448498,0.964683,0][0.577175,1.51417,-0.21538][-0.471983,-0.881604,0.00242199][0.413395,0.973373,0][0.6022,1.43732,0.216352][-0.483392,-0.842486,-0.237803][0.168122,0.664001,0][0.285695,1.57507,0.176231][-0.194141,-0.937157,-0.289906][0.164856,0.650779,0][0.577175,1.51417,-0.21538][-0.471983,-0.881604,0.00242199][0.132732,0.656562,0][-1.07728,0.950014,-0.62484][0.856915,-0.467495,0.217129][0.0990552,0.710627,0][-0.887875,1.27672,-0.379833][0.72705,-0.68297,0.0703552][0.119204,0.679318,0][-1.19412,0.762869,-0.436633][0.936242,-0.33128,0.117064][0.114455,0.728611,0][1.11075,0.127292,-0.996016][-0.0747673,0.106877,-0.0560552][0.157975,0.512549,0][1.04713,0.287471,-1.0947][-2.2889,-1.36327,0.161969][0.149883,0.527917,0][1.14683,0.127616,-1.03117][-0.80161,-0.0220481,0.59744][0.155092,0.51258,0][1.14683,0.127616,-1.03117][-0.80161,-0.0220481,0.59744][0.155092,0.51258,0][0.987249,-0.0941353,-1.25348][-0.799863,-6.02235e-005,0.600182][0.136863,0.491305,0][1.11075,0.127292,-0.996016][-0.0747673,0.106877,-0.0560552][0.157975,0.512549,0][-0.892309,-1.15736,-1.2366][-2.10751,0.908192,0.628539][0.047983,0.184,0][-0.824535,-0.948826,-1.31067][-0.302198,-0.35721,0.883786][0.0617211,0.168237,0][-0.931971,-1.22575,-1.27077][0.760903,-0.0360558,0.647863][0.0478511,0.191134,0][-0.874299,-1.51499,-1.27594][0.0606326,0.0744063,-0.0608155][0.0368687,0.216623,0][-0.892309,-1.15736,-1.2366][-2.10751,0.908192,0.628539][0.047983,0.184,0][-0.931971,-1.22575,-1.27077][0.760903,-0.0360558,0.647863][0.0478511,0.191134,0][-0.931971,-1.22575,-1.27077][0.760903,-0.0360558,0.647863][0.0478511,0.191134,0][-0.905212,-1.51119,-1.31721][0.79705,-0.0234492,0.603457][0.0401051,0.217676,0][-0.874299,-1.51499,-1.27594][0.0606326,0.0744063,-0.0608155][0.0368687,0.216623,0][-0.815358,-0.890694,-1.3885][0.599142,-0.0167862,0.800466][0.053007,0.41488,0][-1.17416,-0.752529,-0.907863][0.827981,0.0674793,0.556681][0.0135933,0.428136,0][-1.13391,-0.752779,-0.880045][0.201245,1.48895,-0.277785][0.0113121,0.428112,0][-1.13391,-0.752779,-0.880045][0.201245,1.48895,-0.277785][0.0113121,0.428112,0][-0.78661,-0.891133,-1.34434][0.407154,1.8499,-0.246687][0.0493861,0.414838,0][-0.815358,-0.890694,-1.3885][0.599142,-0.0167862,0.800466][0.053007,0.41488,0][-1.11155,-0.612522,-0.921854][-0.158783,-1.4541,0.209508][0.0147406,0.441569,0][-1.13391,-0.752779,-0.880045][0.201245,1.48895,-0.277785][0.0113121,0.428112,0][-1.17416,-0.752529,-0.907863][0.827981,0.0674793,0.556681][0.0135933,0.428136,0][-1.17416,-0.752529,-0.907863][0.827981,0.0674793,0.556681][0.0135933,0.428136,0][-1.14995,-0.612858,-0.953287][0.832766,0.035329,0.552497][0.0173182,0.441536,0][-1.11155,-0.612522,-0.921854][-0.158783,-1.4541,0.209508][0.0147406,0.441569,0][-0.475813,0.793724,-1.51059][-0.142711,0.164218,0.0830215][0.165197,0.28446,0][-0.311141,0.9455,-1.52774][-1.02229,1.17635,0.594713][0.161773,0.268972,0][-0.323312,0.960799,-1.57892][0.417618,-0.359055,0.834671][0.166127,0.26882,0][-0.323312,0.960799,-1.57892][0.417618,-0.359055,0.834671][0.166127,0.26882,0][-0.491509,0.804301,-1.56209][0.417618,-0.359055,0.834671][0.169677,0.284622,0][-0.475813,0.793724,-1.51059][-0.142711,0.164218,0.0830215][0.165197,0.28446,0][-0.311141,0.9455,-1.52774][-1.02229,1.17635,0.594713][0.135649,0.381083,0][-0.59429,0.869537,-1.41903][0.0218206,-0.155108,-0.0515518][0.134835,0.409663,0][-0.323312,0.960799,-1.57892][0.417618,-0.359055,0.834671][0.131305,0.38076,0][1.33273,-1.65844,-0.556747][-0.887507,-0.395812,0.235932][0.37405,0.670241,0][1.27219,-1.39524,-0.448939][-0.978194,-0.159126,0.133472][0.383828,0.695144,0][1.14766,-1.39534,-0.893239][-0.904027,-0.110851,0.412852][0.347419,0.696496,0][1.14766,-1.39534,-0.893239][-0.904027,-0.110851,0.412852][0.347419,0.696496,0][1.08735,-1.77282,-1.18532][-0.592789,-0.341677,0.729286][0.322131,0.661199,0][1.33273,-1.65844,-0.556747][-0.887507,-0.395812,0.235932][0.37405,0.670241,0][-0.85307,-0.255798,-1.27855][-0.59816,1.02678,-1.87115][0.0439912,0.475794,0][-0.593759,-0.687313,-1.4908][0.0822221,0.0546257,-0.0177314][0.0613963,0.434393,0][-0.709135,-0.534117,-1.47729][0.494776,-0.00325436,0.869014][0.0602883,0.449091,0][-0.549728,0.303423,-1.51411][0.165005,-0.0959871,-0.0523891][0.0633078,0.529448,0][-0.549727,0.135166,-1.51538][0.0616908,0.161862,-0.00759193][0.0634116,0.513305,0][-0.56881,0.135632,-1.56659][0.421107,0.014656,0.906893][0.0676108,0.513349,0][-0.56881,0.135632,-1.56659][0.421107,0.014656,0.906893][0.0676108,0.513349,0][-0.56872,0.303871,-1.56551][0.423334,-0.00602214,0.905954][0.0675225,0.529491,0][-0.549728,0.303423,-1.51411][0.165005,-0.0959871,-0.0523891][0.0633078,0.529448,0][0.10128,-0.125411,-1.72292][-0.11045,-0.000881485,0.993881][0.0983666,0.488304,0][0.202007,-0.215994,-1.71181][-0.164347,-0.0108718,0.986343][0.0992779,0.479613,0][0.234853,-0.221971,-1.64931][-0.478349,-0.507031,0.202907][0.104403,0.47904,0][0.234853,-0.221971,-1.64931][-0.478349,-0.507031,0.202907][0.104403,0.47904,0][0.0993363,-0.125097,-1.66684][-0.953846,-1.33896,-0.0255489][0.102966,0.488334,0][0.10128,-0.125411,-1.72292][-0.11045,-0.000881485,0.993881][0.0983666,0.488304,0][0.202007,-0.215994,-1.71181][-0.164347,-0.0108718,0.986343][0.0795195,0.479613,0][0.436958,-0.179784,-1.64915][-0.405729,0.0804785,0.910443][0.0743808,0.483087,0][0.234853,-0.221971,-1.64931][-0.478349,-0.507031,0.202907][0.0743945,0.47904,0][0.784927,-0.149938,-1.3804][0.323135,-0.176168,0.032541][0.0523429,0.485951,0][0.553435,-0.158301,-1.53754][-0.811092,-2.50105,1.32796][0.065229,0.485148,0][0.436958,-0.179784,-1.64915][-0.405729,0.0804785,0.910443][0.0743808,0.483087,0][0.436958,-0.179784,-1.64915][-0.405729,0.0804785,0.910443][0.0743808,0.483087,0][0.811352,-0.150662,-1.42734][-0.635717,-0.0107968,0.771847][0.0561918,0.485881,0][0.784927,-0.149938,-1.3804][0.323135,-0.176168,0.032541][0.0523429,0.485951,0][0.553435,-0.158301,-1.53754][-0.811092,-2.50105,1.32796][0.065229,0.485148,0][0.234853,-0.221971,-1.64931][-0.478349,-0.507031,0.202907][0.0743945,0.47904,0][0.436958,-0.179784,-1.64915][-0.405729,0.0804785,0.910443][0.0743808,0.483087,0][-0.14078,1.02962,-1.53342][0.168463,-0.21561,-0.0912978][0.064891,0.599122,0][-0.200617,0.872341,-1.58355][1.7957,-0.170201,0.0338176][0.0690015,0.584032,0][-0.189912,0.98067,-1.60677][0.104852,-0.359181,0.927359][0.0709056,0.594425,0][-0.189912,0.98067,-1.60677][0.104852,-0.359181,0.927359][0.0709056,0.594425,0][0.00864585,1.15122,-1.54487][0.0052048,-0.455576,0.890182][0.0658295,0.610789,0][-0.14078,1.02962,-1.53342][0.168463,-0.21561,-0.0912978][0.064891,0.599122,0][0.628911,-1.78704,1.30316][-1.93143,-1.04055,-2.37011][0.256671,0.973521,0][0.303429,-1.47017,1.34288][-0.229556,-0.275907,-0.93337][0.259984,0.943126,0][0.199767,-0.96075,1.27282][-0.265585,-0.0659045,-0.961832][0.25433,0.89424,0][0.303429,-1.47017,1.34288][-0.229556,-0.275907,-0.93337][0.530391,0.682471,0][0.628911,-1.78704,1.30316][-1.93143,-1.04055,-2.37011][0.526,0.652213,0][0.466651,-1.84287,1.47745][-0.946507,-1.20877,-2.14106][0.540083,0.646326,0][-0.51417,-0.173317,-1.59794][0.461075,0.10797,0.880768][0.070182,0.483708,0][-0.223989,-0.207552,-1.70023][-0.105531,-0.0191922,0.994231][0.0785702,0.480423,0][-0.22464,-0.211389,-1.64217][-0.241451,-1.70237,-0.115187][0.0738089,0.480055,0][-0.22464,-0.211389,-1.64217][-0.241451,-1.70237,-0.115187][0.0738089,0.480055,0][-0.496077,-0.17267,-1.54583][-0.00511773,-0.131381,0.00560248][0.0659087,0.48377,0][-0.51417,-0.173317,-1.59794][0.461075,0.10797,0.880768][0.070182,0.483708,0][-0.137155,-0.1261,-1.66015][-0.650623,-0.662822,0.370616][0.0752833,0.488238,0][-0.22464,-0.211389,-1.64217][-0.241451,-1.70237,-0.115187][0.0738089,0.480055,0][-0.223989,-0.207552,-1.70023][-0.105531,-0.0191922,0.994231][0.0785702,0.480423,0][-0.08516,0.825654,-1.61543][-0.232973,-0.112569,0.00184402][0.107181,0.579553,0][0.0021643,1.01519,-1.55215][1.46429,0.614943,0.174513][0.112371,0.597737,0][-0.0898778,0.81863,-1.67516][0.149304,-0.20757,0.966759][0.102284,0.578879,0][-0.0898778,0.81863,-1.67516][0.149304,-0.20757,0.966759][0.102284,0.578879,0][0.000360707,0.647088,-1.71151][0.0372977,-0.105875,0.99368][0.0993029,0.56242,0][-0.08516,0.825654,-1.61543][-0.232973,-0.112569,0.00184402][0.107181,0.579553,0][-0.836837,-0.151499,-1.34203][2.95151,0.0375536,2.97968][0.0400484,0.816201,0][-0.979438,-1.39538,-1.1851][0.784769,-0.0963249,0.612258][0.0526964,0.935567,0][-0.668774,-0.153416,-1.48689][1.65246,-0.0142481,2.4818][0.028169,0.816363,0][-0.0185359,-0.140203,-1.66878][-0.908049,1.38638,0.0394794][0.102806,0.486885,0][0.231909,0.0232928,-1.64978][-0.198634,0.258665,0.105371][0.104365,0.502571,0][-0.0203732,-0.139806,-1.72498][0.0672751,0.0152445,0.997618][0.0981982,0.486923,0][-0.295616,0.0331757,-1.62497][0.705837,1.17256,-0.0855443][0.0723981,0.503519,0][-0.0185359,-0.140203,-1.66878][-0.908049,1.38638,0.0394794][0.0759913,0.486885,0][-0.0203732,-0.139806,-1.72498][0.0672751,0.0152445,0.997618][0.0805992,0.486923,0][-0.258909,-0.362489,-1.63399][0.429519,1.8111,-0.0416756][0.0731382,0.465558,0][-0.257893,-0.887026,-1.63422][-1.40237,-1.04522,0.255284][0.0731568,0.415232,0][-0.267398,-0.361761,-1.68983][0.280462,0.00998791,0.959813][0.0777172,0.465628,0][-0.606257,1.24021,-1.04591][0.497549,-0.699466,0.513023][0.0645775,0.682721,0][-0.424512,0.994687,-1.41428][0.397805,-0.527435,0.750709][0.0343264,0.706221,0][-0.330195,1.31192,-1.14812][0.255069,-0.784104,0.565792][0.0562085,0.675825,0][-0.575485,0.457728,1.106][0.522214,-0.113195,-0.845269][0.240902,0.758121,0][-0.665796,0.94997,0.856818][0.564457,-0.472639,-0.676757][0.220555,0.710856,0][-0.468232,0.714327,1.10717][0.419681,-0.307494,-0.853999][0.241043,0.733502,0][-0.198305,0.457731,1.2494][0.189702,-0.119433,-0.974551][0.252661,0.758142,0][-0.575485,0.457728,1.106][0.522214,-0.113195,-0.845269][0.240902,0.758121,0][-0.468232,0.714327,1.10717][0.419681,-0.307494,-0.853999][0.241043,0.733502,0][0.285695,1.57507,0.176231][-0.194141,-0.937157,-0.289906][0.164856,0.650779,0][-0.0197589,1.6298,0.0776631][0.00308547,-0.973724,-0.227711][0.156783,0.645512,0][0.185327,1.63826,-0.104947][-0.165387,-0.985035,-0.0485025][0.14181,0.644673,0][0.285695,1.57507,0.176231][-0.194141,-0.937157,-0.289906][0.164856,0.650779,0][0.439105,1.40836,0.491961][-0.293418,-0.850601,-0.436329][0.190717,0.666821,0][-0.0197589,1.6298,0.0776631][0.00308547,-0.973724,-0.227711][0.156783,0.645512,0][-1.29346e-005,1.12273,-1.41869][0.00682633,-0.647144,0.762337][0.0339874,0.693936,0][0.189113,0.762792,-1.61252][-0.15859,-0.326562,0.931776][0.0180295,0.72844,0][0.350023,0.950001,-1.47578][-0.301302,-0.507452,0.807285][0.0292752,0.710499,0][0.425993,0.540753,-1.60039][-1.57577,-0.977867,4.85647][0.0189842,0.749745,0][0.350023,0.950001,-1.47578][-0.301302,-0.507452,0.807285][0.0292752,0.710499,0][0.189113,0.762792,-1.61252][-0.15859,-0.326562,0.931776][0.0180295,0.72844,0][0.901297,1.08103,0.430834][-0.760987,-0.514624,-0.395046][0.464797,0.929866,0][0.709848,1.24021,0.493964][-0.577656,-0.694642,-0.428703][0.47054,0.944935,0][0.854934,1.27679,0.109545][-0.675588,-0.720994,-0.154106][0.43917,0.949619,0][0.604539,1.12266,0.758199][-0.514164,-0.588444,-0.623995][0.491772,0.932854,0][0.709848,1.24021,0.493964][-0.577656,-0.694642,-0.428703][0.47054,0.944935,0][0.901297,1.08103,0.430834][-0.760987,-0.514624,-0.395046][0.464797,0.929866,0][-1.06662,0.904317,0.301534][0.867872,-0.391971,-0.305215][0.175012,0.715152,0][-0.83204,1.12273,0.491947][0.664284,-0.611695,-0.4296][0.190666,0.694225,0][-0.877868,0.90437,0.66187][0.721916,-0.434776,-0.538337][0.204561,0.715201,0][-0.83204,1.12273,0.491947][0.664284,-0.611695,-0.4296][0.190666,0.694225,0][-0.528403,1.27674,0.635519][0.44884,-0.727289,-0.519224][0.202466,0.67947,0][-0.877868,0.90437,0.66187][0.721916,-0.434776,-0.538337][0.204561,0.715201,0][0.34269,0.581846,-1.61138][0.418378,0.0624941,-0.195767][0.0712835,0.556161,0][0.40807,0.262538,-1.59888][-0.850486,-1.2232,-0.18646][0.0702589,0.525525,0][0.356156,0.45472,-1.67196][0.247647,0.0895786,0.0596444][0.0762516,0.543964,0][0.356156,0.45472,-1.67196][0.247647,0.0895786,0.0596444][0.0762516,0.543964,0][0.29569,0.731395,-1.66408][-0.373726,-0.0806287,0.924028][0.0756054,0.570509,0][0.34269,0.581846,-1.61138][0.418378,0.0624941,-0.195767][0.0712835,0.556161,0][-0.819225,0.318933,-1.31067][-1.51541,1.16099,0.80734][0.0466248,0.530936,0][-0.548675,0.517935,-1.50962][-0.75142,1.45028,0.346032][0.0629394,0.550029,0][-0.836818,0.334337,-1.36585][0.727313,-0.0357391,0.685374][0.0511493,0.532414,0][1.20104,-1.47024,0.356013][-0.918039,-0.207803,-0.337671][0.449521,0.685488,0][1.3711,-1.75056,0.245521][-2.79523,-1.47268,-0.711299][0.439462,0.65895,0][1.13752,-1.71078,0.682316][-2.63041,-0.979403,-1.59417][0.475398,0.661427,0][-0.615866,0.881365,-1.46671][0.417618,-0.359055,0.834671][0.130455,0.410286,0][-0.323312,0.960799,-1.57892][0.417618,-0.359055,0.834671][0.131305,0.38076,0][-0.59429,0.869537,-1.41903][0.0218206,-0.155108,-0.0515518][0.134835,0.409663,0][-0.491509,0.804301,-1.56209][0.417618,-0.359055,0.834671][0.169677,0.284622,0][-0.615866,0.881365,-1.46671][0.417618,-0.359055,0.834671][0.165818,0.298356,0][-0.59429,0.869537,-1.41903][0.0218206,-0.155108,-0.0515518][0.161466,0.297562,0][-0.59429,0.869537,-1.41903][0.0218206,-0.155108,-0.0515518][0.161466,0.297562,0][-0.475813,0.793724,-1.51059][-0.142711,0.164218,0.0830215][0.165197,0.28446,0][-0.491509,0.804301,-1.56209][0.417618,-0.359055,0.834671][0.169677,0.284622,0][-0.935565,-0.0934324,-1.1883][0.865912,1.3798,-0.750208][0.0365898,0.491372,0][-1.1413,-0.0855916,-0.864044][0.0475226,0.0384456,-0.0356107][0.01,0.492124,0][-1.1815,-0.085811,-0.891807][0.845606,0.00701429,0.533762][0.0122767,0.492103,0][1.19294,-0.752533,-0.948578][-0.81544,0.066171,0.575047][0.0169321,0.428136,0][0.833032,-0.890761,-1.40912][-0.724295,0.0392602,0.688372][0.0546978,0.414873,0][0.80721,-0.891144,-1.3624][-0.419384,1.81476,-0.216942][0.0508672,0.414837,0][0.80721,-0.891144,-1.3624][-0.419384,1.81476,-0.216942][0.0508672,0.414837,0][1.15463,-0.752755,-0.917054][-0.239208,1.50202,-0.280132][0.014347,0.428114,0][1.19294,-0.752533,-0.948578][-0.81544,0.066171,0.575047][0.0169321,0.428136,0][0.833032,-0.890761,-1.40912][-0.724295,0.0392602,0.688372][0.0546978,0.414873,0][0.780815,-0.751741,-1.45154][0.0627819,-0.0432268,0.0494319][0.0581763,0.428212,0][0.80721,-0.891144,-1.3624][-0.419384,1.81476,-0.216942][0.0508672,0.414837,0][-0.336504,0.574765,-1.66019][0.345921,-0.0881871,0.93411][0.103511,0.555481,0][-0.401124,0.261529,-1.64697][0.384608,-0.0173604,0.922917][0.104595,0.525428,0][-0.323912,0.563291,-1.60644][-0.171119,0.038182,0.0417106][0.107919,0.554381,0][-0.323912,0.563291,-1.60644][-0.171119,0.038182,0.0417106][0.107919,0.554381,0][-0.26611,0.724549,-1.60509][-1.18577,0.461533,0.260238][0.10803,0.569852,0][-0.336504,0.574765,-1.66019][0.345921,-0.0881871,0.93411][0.103511,0.555481,0][1.17057,-0.612868,-0.989303][-0.820282,0.0350675,0.570884][0.158526,0.441535,0][1.19294,-0.752533,-0.948578][-0.81544,0.066171,0.575047][0.161865,0.428136,0][1.15463,-0.752755,-0.917054][-0.239208,1.50202,-0.280132][0.16445,0.428114,0][1.15463,-0.752755,-0.917054][-0.239208,1.50202,-0.280132][0.16445,0.428114,0][1.13217,-0.612526,-0.957875][0.0197542,-0.13853,0.017696][0.161103,0.441568,0][1.17057,-0.612868,-0.989303][-0.820282,0.0350675,0.570884][0.158526,0.441535,0][-0.392886,1.59169,-0.215359][0.330976,-0.943617,-0.00651218][0.132748,0.649124,0][-0.33463,1.57506,-0.54979][0.291926,-0.928858,0.228039][0.10532,0.650669,0][-0.165515,1.64449,-0.246044][0.114554,-0.993274,0.0168508][0.130241,0.644054,0][-0.33463,1.57506,-0.54979][0.291926,-0.928858,0.228039][0.10532,0.650669,0][-0.392886,1.59169,-0.215359][0.330976,-0.943617,-0.00651218][0.132748,0.649124,0][-0.656074,1.46463,-0.336832][0.535235,-0.84424,0.0279734][0.122764,0.661297,0][-0.844411,-1.47032,0.977352][0.753404,-0.174587,-0.633958][0.23001,0.943085,0][-1.10884,-1.71055,0.725112][2.55621,-1.33775,-1.40567][0.209283,0.966095,0][-1.3711,-1.75058,0.245532][2.80661,-1.44171,-0.723883][0.169949,0.969863,0][-0.389692,0.759298,-1.61718][0.401405,-0.145725,0.904233][0.0717596,0.573186,0][-0.568509,0.519886,-1.56087][0.541244,-0.166539,0.824209][0.0671418,0.550216,0][-0.444761,0.542665,-1.62185][0.400871,-0.0823541,0.912426][0.0721423,0.552402,0][0.550903,0.136275,-1.55995][-0.658398,-0.0199783,1.83372][0.0222288,0.788558,0][0.553674,0.290066,-1.55636][-0.925983,-0.0406657,2.45328][0.0225509,0.773803,0][0.425993,0.540753,-1.60039][-1.57577,-0.977867,4.85647][0.0189842,0.749745,0][1.15866,-1.95057,-1.09313][-2.56491,0.00868478,1.83079][0.329049,0.643875,0][1.37577,-1.96135,-0.688917][-1.73429,1.36371,0.967883][0.362133,0.641604,0][1.45261,-1.90205,-0.634775][-3.14117,-0.824124,1.24725][0.366783,0.647123,0][-0.66575,1.40831,-0.61236][0.521736,-0.808794,0.271374][0.10016,0.666658,0][-0.33463,1.57506,-0.54979][0.291926,-0.928858,0.228039][0.10532,0.650669,0][-0.656074,1.46463,-0.336832][0.535235,-0.84424,0.0279734][0.122764,0.661297,0][-0.656074,1.46463,-0.336832][0.535235,-0.84424,0.0279734][0.122764,0.661297,0][-0.887875,1.27672,-0.379833][0.72705,-0.68297,0.0703552][0.119204,0.679318,0][-0.66575,1.40831,-0.61236][0.521736,-0.808794,0.271374][0.10016,0.666658,0][-0.832059,1.12273,-0.922657][0.671916,-0.612857,0.415855][0.0746639,0.69401,0][-1.07728,0.950014,-0.62484][0.856915,-0.467495,0.217129][0.0990552,0.710627,0][-0.916345,0.949967,-0.99444][0.727342,-0.458514,0.510625][0.0687468,0.710575,0][-0.832059,1.12273,-0.922657][0.671916,-0.612857,0.415855][0.0746639,0.69401,0][-0.916345,0.949967,-0.99444][0.727342,-0.458514,0.510625][0.0687468,0.710575,0][-0.606257,1.24021,-1.04591][0.497549,-0.699466,0.513023][0.0645775,0.682721,0][1.26514,-1.30774,0.0181558][-0.989197,-0.0835259,-0.12047][0.422418,0.702103,0][1.33924,-1.59973,-0.103945][-0.915725,-0.397766,-0.0568335][0.411365,0.674482,0][1.20104,-1.47024,0.356013][-0.918039,-0.207803,-0.337671][0.449521,0.685488,0][1.26514,-1.30774,0.0181558][-0.989197,-0.0835259,-0.12047][0.422418,0.702103,0][1.20104,-1.47024,0.356013][-0.918039,-0.207803,-0.337671][0.449521,0.685488,0][1.20557,0.457738,0.242873][-0.962186,-0.112542,-0.248058][0.44716,0.870683,0][-1.08892,-1.9505,-1.18526][2.22472,-0.106432,2.15013][0.0525842,0.988827,0][-0.548107,-1.95054,-1.59481][1.35401,-0.0187908,2.76504][0.0190005,0.988769,0][-0.679395,-1.47058,-1.48835][0.646678,-0.0269384,0.762287][0.0278157,0.942736,0][-0.679395,-1.47058,-1.48835][0.646678,-0.0269384,0.762287][0.0278157,0.942736,0][-0.548107,-1.95054,-1.59481][1.35401,-0.0187908,2.76504][0.0190005,0.988769,0][-0.668774,-0.153416,-1.48689][1.65246,-0.0142481,2.4818][0.028169,0.816363,0][-0.424512,0.994687,-1.41428][0.397805,-0.527435,0.750709][0.0343264,0.706221,0][-0.426051,0.540795,-1.60036][1.78187,-1.12351,4.8356][0.0189866,0.749741,0][-0.183728,0.85792,-1.57258][0.164788,-0.422934,0.891051][0.0213215,0.719319,0][-0.183728,0.85792,-1.57258][0.164788,-0.422934,0.891051][0.0213215,0.719319,0][-1.29346e-005,1.12273,-1.41869][0.00682633,-0.647144,0.762337][0.0339874,0.693936,0][-0.424512,0.994687,-1.41428][0.397805,-0.527435,0.750709][0.0343264,0.706221,0][0.29569,0.731395,-1.66408][-0.373726,-0.0806287,0.924028][0.0756054,0.570509,0][0.410483,0.759313,-1.62378][-0.357942,0.139074,0.923329][0.072301,0.573188,0][0.325628,0.746817,-1.59518][1.18639,0.177215,-0.555138][0.069955,0.571989,0][-0.887875,1.27672,-0.379833][0.72705,-0.68297,0.0703552][0.119204,0.679318,0][-0.9781,1.1228,0.156415][0.748021,-0.635458,-0.191464][0.163151,0.694167,0][-1.11875,0.949964,-0.00814554][0.894516,-0.438396,-0.0874685][0.149626,0.710725,0][-1.11875,0.949964,-0.00814554][0.894516,-0.438396,-0.0874685][0.149626,0.710725,0][-0.9781,1.1228,0.156415][0.748021,-0.635458,-0.191464][0.163151,0.694167,0][-1.06662,0.904317,0.301534][0.867872,-0.391971,-0.305215][0.175012,0.715152,0][1.17083,-0.811179,-0.891297][-0.727896,-0.536326,-0.427227][0.0513729,0.410286,0][1.1102,-1.17931,-1.08921][-0.832453,-0.00630157,0.554061][0.048065,0.371556,0][1.09892,-1.10037,-1.01504][-0.16748,0.316428,-0.362223][0.051223,0.380743,0][-1.06662,0.904317,0.301534][0.867872,-0.391971,-0.305215][0.175012,0.715152,0][-1.20554,0.457718,0.242976][0.952721,-0.100484,-0.286752][0.170131,0.757991,0][-1.25854,0.515681,-0.0994913][0.987366,-0.143982,-0.06616][0.142058,0.752378,0][-1.20554,0.457718,0.242976][0.952721,-0.100484,-0.286752][0.170131,0.757991,0][-1.26512,-1.30772,0.0182842][0.981147,-0.0887872,-0.17166][0.151393,0.927339,0][-1.25854,0.515681,-0.0994913][0.987366,-0.143982,-0.06616][0.142058,0.752378,0][0.811352,-0.150662,-1.42734][-0.635717,-0.0107968,0.771847][0.0561918,0.485881,0][0.868341,0.00388312,-1.37596][-0.686217,-0.00133157,0.727395][0.0519792,0.500709,0][0.784927,-0.149938,-1.3804][0.323135,-0.176168,0.032541][0.0523429,0.485951,0][-0.735864,-0.751608,-1.38989][-0.0636562,-0.0430736,0.0503315][0.125676,0.428224,0][-0.815358,-0.890694,-1.3885][0.599142,-0.0167862,0.800466][0.12579,0.41488,0][-0.78661,-0.891133,-1.34434][0.407154,1.8499,-0.246687][0.129411,0.414838,0][-1.27697,-1.30771,-0.332542][0.992125,-0.0976128,0.078487][0.122624,0.927285,0][-1.26512,-1.30772,0.0182842][0.981147,-0.0887872,-0.17166][0.151393,0.927339,0][-1.33924,-1.59975,-0.103918][0.918733,-0.388718,-0.0694866][0.14132,0.955339,0][-1.30359,-1.59783,-0.56091][0.906114,-0.391148,0.161125][0.103846,0.955085,0][-1.27697,-1.30771,-0.332542][0.992125,-0.0976128,0.078487][0.122624,0.927285,0][-1.33924,-1.59975,-0.103918][0.918733,-0.388718,-0.0694866][0.14132,0.955339,0][-0.124318,1.53625,-0.820956][0.142955,-0.906585,0.397074][0.083077,0.654351,0][0.201422,1.31191,-1.19709][-0.15139,-0.783785,0.602298][0.0521931,0.675819,0][0.0902955,1.51414,-0.882382][-0.0821987,-0.895647,0.437104][0.0780359,0.656464,0][-0.124318,1.53625,-0.820956][0.142955,-0.906585,0.397074][0.083077,0.654351,0][0.0902955,1.51414,-0.882382][-0.0821987,-0.895647,0.437104][0.0780359,0.656464,0][-0.0465483,1.61915,-0.559347][0.0285831,-0.980007,0.196901][0.104544,0.646438,0][0.528134,0.520195,-1.60364][-0.465558,-0.175802,0.867381][0.0706489,0.550246,0][0.29569,0.731395,-1.66408][-0.373726,-0.0806287,0.924028][0.0756054,0.570509,0][0.404148,0.542687,-1.65333][-0.3552,-0.118595,0.927237][0.0747239,0.552404,0][0.158177,-0.171165,-1.69581][-0.160145,-0.000838439,0.947264][0.0110333,0.818034,0][0.140374,-1.95055,-1.7004][-0.326463,0.00174575,1.52574][0.0103417,0.988754,0][0.218794,-0.215085,-1.6856][-1.13543,-0.0583497,3.63134][0.0118627,0.82225,0][-1.20103,-1.47024,-0.786779][0.914596,-0.205296,0.348378][0.0853463,0.94281,0][-1.1572,-1.77313,-1.09312][0.802514,-0.146464,0.578376][0.0601718,0.971824,0][-0.979438,-1.39538,-1.1851][0.784769,-0.0963249,0.612258][0.0526964,0.935567,0][0.404148,0.542687,-1.65333][-0.3552,-0.118595,0.927237][0.0747239,0.552404,0][0.29569,0.731395,-1.66408][-0.373726,-0.0806287,0.924028][0.0756054,0.570509,0][0.356156,0.45472,-1.67196][0.247647,0.0895786,0.0596444][0.0762516,0.543964,0][0.404148,0.542687,-1.65333][-0.3552,-0.118595,0.927237][0.0747239,0.552404,0][0.356156,0.45472,-1.67196][0.247647,0.0895786,0.0596444][0.0762516,0.543964,0][0.42169,0.261437,-1.65377][-0.350282,-0.000184198,0.936644][0.0747604,0.52542,0][0.42169,0.261437,-1.65377][-0.350282,-0.000184198,0.936644][0.0747604,0.52542,0][0.12977,-0.0256966,-1.72206][-0.10754,0.00363818,0.994194][0.0803599,0.497871,0][0.528389,0.13567,-1.60902][-0.485263,-0.0104637,0.874306][0.0710907,0.513353,0][0.404148,0.542687,-1.65333][-0.3552,-0.118595,0.927237][0.0747239,0.552404,0][0.42169,0.261437,-1.65377][-0.350282,-0.000184198,0.936644][0.0747604,0.52542,0][0.528389,0.13567,-1.60902][-0.485263,-0.0104637,0.874306][0.0710907,0.513353,0][-0.665796,0.94997,0.856818][0.564457,-0.472639,-0.676757][0.220555,0.710856,0][-0.382065,1.16312,0.863769][0.337541,-0.657741,-0.673382][0.221163,0.690406,0][-0.258906,0.994635,1.04653][0.211145,-0.506102,-0.836229][0.236121,0.706599,0][-0.382065,1.16312,0.863769][0.337541,-0.657741,-0.673382][0.221163,0.690406,0][-0.0782576,1.16306,0.949148][0.025755,-0.635504,-0.771667][0.228165,0.690425,0][-0.258906,0.994635,1.04653][0.211145,-0.506102,-0.836229][0.236121,0.706599,0][-0.26611,0.724549,-1.60509][-1.18577,0.461533,0.260238][0.0707679,0.569852,0][-0.377273,0.75145,-1.56364][0.646266,-1.66079,-0.393344][0.0673694,0.572433,0][-0.275357,0.73151,-1.65957][0.317364,-0.12755,0.939686][0.0752354,0.57052,0][0.65672,0.88134,-1.46643][-0.416276,-0.361339,0.834355][0.168405,0.0901764,0][0.532229,0.804293,-1.5619][-0.416276,-0.361339,0.834355][0.157755,0.0810174,0][0.516486,0.793749,-1.51043][1.19975,0.861582,0.543457][0.156335,0.0798823,0][0.516486,0.793749,-1.51043][1.19975,0.861582,0.543457][0.156335,0.0798823,0][0.635154,0.86945,-1.41873][-0.769861,1.25079,-0.0363003][0.166693,0.0885476,0][0.65672,0.88134,-1.46643][-0.416276,-0.361339,0.834355][0.168405,0.0901764,0][-0.338706,-1.90517,-1.67218][0.227933,-0.00275499,0.973673][0.0762696,0.317547,0][-0.330724,-1.14201,-1.67189][0.294191,-0.0059214,0.955728][0.0762457,0.390768,0][-0.326973,-1.90349,-1.61783][0.0392327,0.332056,-0.00675139][0.0718132,0.317708,0][-0.666722,-0.960738,1.07043][0.545571,-0.0706728,-0.83508][0.237733,0.894208,0][-0.598785,-1.53479,1.22032][0.5591,-0.269682,-0.784014][0.249923,0.949307,0][-0.844411,-1.47032,0.977352][0.753404,-0.174587,-0.633958][0.23001,0.943085,0][-0.666722,-0.960738,1.07043][0.545571,-0.0706728,-0.83508][0.237733,0.894208,0][-0.844411,-1.47032,0.977352][0.753404,-0.174587,-0.633958][0.23001,0.943085,0][-0.887803,0.56584,0.823419][0.734186,-0.163541,-0.658958][0.217748,0.747705,0][-0.140438,-1.95056,-1.70038][0.388046,0.00495428,1.51143][0.0103429,0.988755,0][-0.158195,-0.171165,-1.69581][0.18005,-0.000763385,0.99618][0.0110335,0.818034,0][-0.232554,-0.219462,-1.68241][1.04877,-0.0429011,3.67726][0.012124,0.82267,0][-1.33502,-1.95415,-0.787279][2.27124,0.986018,1.41352][0.0852195,0.989238,0][-1.08892,-1.9505,-1.18526][2.22472,-0.106432,2.15013][0.0525842,0.988827,0][-1.45264,-1.902,-0.634672][3.03242,-0.874477,1.02648][0.097743,0.984258,0][0.26994,-0.362455,-1.64109][-0.106036,0.00019223,-0.0167984][0.0737199,0.465561,0][0.536979,-0.296988,-1.54545][-0.578224,2.81634,-0.217316][0.0658776,0.471842,0][0.278358,-0.361777,-1.69696][-0.243951,0.0112583,0.969722][0.0783018,0.465626,0][-0.30347,-1.47013,1.34285][0.252968,-0.301016,-0.919455][0.259983,0.943122,0][-3.97649e-005,-1.20655,1.3224][0.0246247,-0.156647,-0.987348][0.258352,0.91783,0][2.5443e-006,-1.53609,1.4078][-0.00166245,-0.342834,-0.939394][0.265297,0.949461,0][-0.30347,-1.47013,1.34285][0.252968,-0.301016,-0.919455][0.259983,0.943122,0][-0.394357,-0.96072,1.21821][0.351259,-0.0835171,-0.932546][0.249852,0.894229,0][-3.97649e-005,-1.20655,1.3224][0.0246247,-0.156647,-0.987348][0.258352,0.91783,0][-1.18121,-0.810656,-0.892311][0.0745277,0.0568194,-0.0753081][0.0358562,0.142089,0][-1.04126,-0.868723,-1.1323][0.789251,-0.0370414,0.612953][0.0515264,0.155234,0][-1.14091,-0.810324,-0.864678][-0.0677784,-0.247391,0.0287461][0.0338022,0.141132,0][-1.14091,-0.810324,-0.864678][-0.0677784,-0.247391,0.0287461][0.0338022,0.141132,0][-1.04522,-1.17979,-1.03624][0.788349,0.967435,-0.790726][0.0321132,0.179232,0][-1.18121,-0.810656,-0.892311][0.0745277,0.0568194,-0.0753081][0.0358562,0.142089,0][-0.833889,-1.74312,1.10581][2.1786,-0.927476,-2.14355][0.240496,0.969278,0][-0.598785,-1.53479,1.22032][0.5591,-0.269682,-0.784014][0.249923,0.949307,0][-0.455465,-1.84482,1.48257][0.918575,-1.12019,-2.30282][0.271373,0.979093,0][-0.598785,-1.53479,1.22032][0.5591,-0.269682,-0.784014][0.249923,0.949307,0][-0.833889,-1.74312,1.10581][2.1786,-0.927476,-2.14355][0.240496,0.969278,0][-0.844411,-1.47032,0.977352][0.753404,-0.174587,-0.633958][0.23001,0.943085,0][-0.851493,-0.150666,-1.35448][0.696087,-0.00164836,0.717956][0.0502174,0.485881,0][-0.900332,-0.0144756,-1.30468][0.740625,0.000533519,0.671918][0.0461337,0.498947,0][-0.958671,-0.247406,-1.24019][0.729286,0.00413585,0.684196][0.0408453,0.476599,0][-0.165515,1.64449,-0.246044][0.114554,-0.993274,0.0168508][0.130241,0.644054,0][-0.0465483,1.61915,-0.559347][0.0285831,-0.980007,0.196901][0.104544,0.646438,0][0.210524,1.61914,-0.46162][-0.189383,-0.972734,0.133876][0.112558,0.646454,0][-0.0465483,1.61915,-0.559347][0.0285831,-0.980007,0.196901][0.104544,0.646438,0][-0.165515,1.64449,-0.246044][0.114554,-0.993274,0.0168508][0.130241,0.644054,0][-0.33463,1.57506,-0.54979][0.291926,-0.928858,0.228039][0.10532,0.650669,0][1.02783,1.08108,0.0733517][-0.829952,-0.529464,-0.175634][0.435503,0.930966,0][0.901297,1.08103,0.430834][-0.760987,-0.514624,-0.395046][0.464797,0.929866,0][0.854934,1.27679,0.109545][-0.675588,-0.720994,-0.154106][0.43917,0.949619,0][1.02783,1.08108,0.0733517][-0.829952,-0.529464,-0.175634][0.435503,0.930966,0][0.854934,1.27679,0.109545][-0.675588,-0.720994,-0.154106][0.43917,0.949619,0][1.05375,1.08112,-0.312364][-0.83283,-0.552048,0.0404778][0.403895,0.932152,0][0.754696,-0.751742,-1.40497][1.31079,-0.766955,0.735277][0.054358,0.428211,0][0.80721,-0.891144,-1.3624][-0.419384,1.81476,-0.216942][0.0508672,0.414837,0][0.780815,-0.751741,-1.45154][0.0627819,-0.0432268,0.0494319][0.0581763,0.428212,0][-0.128868,1.34576,0.73838][-0.0433765,-0.892113,-0.449725][0.210913,0.672864,0][-0.30144,1.46466,0.477084][0.182675,-0.887195,-0.423693][0.189507,0.661417,0][0.000108432,1.27682,0.836297][-0.0601828,-0.783022,-0.619076][0.218931,0.679493,0][-0.0782576,1.16306,0.949148][0.025755,-0.635504,-0.771667][0.228165,0.690425,0][-0.128868,1.34576,0.73838][-0.0433765,-0.892113,-0.449725][0.210913,0.672864,0][0.000108432,1.27682,0.836297][-0.0601828,-0.783022,-0.619076][0.218931,0.679493,0][-0.56872,0.303871,-1.56551][0.423334,-0.00602214,0.905954][0.0675225,0.529491,0][-0.444761,0.542665,-1.62185][0.400871,-0.0823541,0.912426][0.0721423,0.552402,0][-0.549728,0.303423,-1.51411][0.165005,-0.0959871,-0.0523891][0.0633078,0.529448,0][-0.726615,0.665345,-1.3854][0.633948,-0.298304,0.71353][0.0366366,0.737824,0][-0.552115,0.52017,-1.54193][1.66429,-0.995906,2.77892][0.0237745,0.751729,0][-0.426051,0.540795,-1.60036][1.78187,-1.12351,4.8356][0.0189866,0.749741,0][1.33924,-1.59973,-0.103945][-0.915725,-0.397766,-0.0568335][0.411365,0.674482,0][1.26514,-1.30774,0.0181558][-0.989197,-0.0835259,-0.12047][0.422418,0.702103,0][1.27219,-1.39524,-0.448939][-0.978194,-0.159126,0.133472][0.383828,0.695144,0][1.27219,-1.39524,-0.448939][-0.978194,-0.159126,0.133472][0.383828,0.695144,0][1.33273,-1.65844,-0.556747][-0.887507,-0.395812,0.235932][0.37405,0.670241,0][1.33924,-1.59973,-0.103945][-0.915725,-0.397766,-0.0568335][0.411365,0.674482,0][-0.905212,-1.51119,-1.31721][0.79705,-0.0234492,0.603457][0.0229533,0.0248463,0][-1.08139,-1.17922,-1.07161][0.816953,-0.00141377,0.576703][0.0133551,0.0612871,0][-0.874299,-1.51499,-1.27594][0.0606326,0.0744063,-0.0608155][0.0196169,0.0255188,0][0.635154,0.86945,-1.41873][-0.769861,1.25079,-0.0363003][0.166693,0.0885476,0][0.426357,0.94124,-1.50176][-0.594261,-2.34919,-0.108109][0.16722,0.0673703,0][0.65672,0.88134,-1.46643][-0.416276,-0.361339,0.834355][0.168405,0.0901764,0][0.72654,-0.482756,-1.42795][-0.298243,0.221424,-0.082639][0.122556,0.454019,0][0.874702,-0.256433,-1.2987][-0.902686,0.917728,-0.56376][0.133154,0.475733,0][0.65389,-0.623327,-1.5424][-0.36083,-0.0511309,0.931229][0.11317,0.440532,0][-0.0498451,0.515562,-1.71811][0.0917448,-0.0396026,0.994995][0.080036,0.549801,0][0.005153,0.463582,-1.72228][0.0130786,0.00116832,0.999914][0.0803783,0.544814,0][0.000360707,0.647088,-1.71151][0.0372977,-0.105875,0.99368][0.0794945,0.56242,0][0.005153,0.463582,-1.72228][0.0130786,0.00116832,0.999914][0.0803783,0.544814,0][-0.0498451,0.515562,-1.71811][0.0917448,-0.0396026,0.994995][0.080036,0.549801,0][-0.305454,0.241868,-1.67971][0.277799,-0.0585637,0.958853][0.0768871,0.523542,0][0.853453,-0.948978,-1.32175][0.196073,0.0806361,0.0326418][0.140041,0.359918,0][1.08183,-0.863737,-1.1322][-0.842275,-0.0514114,0.536591][0.151403,0.346525,0][0.974191,-0.894515,-1.19079][0.0969204,-0.46312,0.0652297][0.14805,0.351059,0][0.930969,-1.51165,-1.33127][-0.791017,-0.0187872,0.611505][0.159486,0.410286,0][0.960949,-1.22576,-1.2837][-0.754604,-0.0365953,0.65516][0.152856,0.383386,0][0.903172,-1.51503,-1.28676][-0.039682,0.0749731,-0.0858235][0.162992,0.409223,0][1.1102,-1.17931,-1.08921][-0.832453,-0.00630157,0.554061][0.048065,0.371556,0][0.930969,-1.51165,-1.33127][-0.791017,-0.0187872,0.611505][0.0401886,0.334832,0][0.903172,-1.51503,-1.28676][-0.039682,0.0749731,-0.0858235][0.0437323,0.335764,0][-0.880763,0.254829,-1.29119][2.7641,-0.393871,1.94882][0.0442888,0.777224,0][-0.756392,0.397625,-1.40926][2.369,-0.466821,2.28121][0.0346324,0.763506,0][-0.726615,0.665345,-1.3854][0.633948,-0.298304,0.71353][0.0366366,0.737824,0][-0.230876,1.5917,0.156537][0.16561,-0.955698,-0.243339][0.163244,0.64918,0][-0.453859,1.53628,0.109965][0.396969,-0.900563,-0.177204][0.159415,0.65449,0][-0.392886,1.59169,-0.215359][0.330976,-0.943617,-0.00651218][0.132748,0.649124,0][-0.30144,1.46466,0.477084][0.182675,-0.887195,-0.423693][0.189507,0.661417,0][-0.453859,1.53628,0.109965][0.396969,-0.900563,-0.177204][0.159415,0.65449,0][-0.230876,1.5917,0.156537][0.16561,-0.955698,-0.243339][0.163244,0.64918,0][-1.12828,0.127598,-0.992093][0.650356,1.29461,-0.777057][0.0205004,0.512578,0][-1.05725,0.296292,-1.10501][0.797057,-0.0214232,0.603524][0.0297599,0.528764,0][-1.08995,0.127337,-0.960453][0.0669417,0.10667,-0.0579969][0.0179058,0.512553,0][-1.45264,-1.902,-0.634672][3.03242,-0.874477,1.02648][0.097743,0.984258,0][-1.20103,-1.47024,-0.786779][0.914596,-0.205296,0.348378][0.0853463,0.94281,0][-1.30359,-1.59783,-0.56091][0.906114,-0.391148,0.161125][0.103846,0.955085,0][1.04713,0.287471,-1.0947][-2.2889,-1.36327,0.161969][0.0289146,0.527917,0][0.889183,0.471525,-1.27878][-0.566807,-1.28535,-0.370825][0.0440098,0.545576,0][0.92448,0.466982,-1.31699][-0.708564,-0.0294966,0.70503][0.0471429,0.54514,0][0.425993,0.540753,-1.60039][-1.57577,-0.977867,4.85647][0.0189842,0.749745,0][0.552174,0.520108,-1.54192][-1.77784,-0.863742,2.75859][0.0237758,0.751735,0][0.623194,0.81072,-1.40515][-0.547819,-0.373812,0.748438][0.0350424,0.723873,0][0.976494,1.08116,-0.688706][-0.750917,-0.582749,0.310688][0.373055,0.933308,0][1.05375,1.08112,-0.312364][-0.83283,-0.552048,0.0404778][0.403895,0.932152,0][0.907676,1.24027,-0.470294][-0.700313,-0.70177,0.130693][0.391524,0.947894,0][-0.305454,0.241868,-1.67971][0.277799,-0.0585637,0.958853][0.0768871,0.523542,0][-0.0924451,0.113845,-1.7214][0.130681,0.0122148,0.991349][0.0803062,0.511259,0][-0.292901,0.241608,-1.62486][-0.101598,-0.235662,0.10092][0.0723896,0.523517,0][0.930012,-1.95035,-1.35086][-1.9101,-0.370746,2.37258][0.30793,0.644686,0][1.15866,-1.95057,-1.09313][-2.56491,0.00868478,1.83079][0.329049,0.643875,0][1.08735,-1.77282,-1.18532][-0.592789,-0.341677,0.729286][0.322131,0.661199,0][1.08735,-1.77282,-1.18532][-0.592789,-0.341677,0.729286][0.322131,0.661199,0][1.15866,-1.95057,-1.09313][-2.56491,0.00868478,1.83079][0.329049,0.643875,0][1.45261,-1.90205,-0.634775][-3.14117,-0.824124,1.24725][0.366783,0.647123,0][-0.956475,0.079258,-1.20167][3.93946,-0.158509,2.41843][0.0515987,0.794083,0][-0.979438,-1.39538,-1.1851][0.784769,-0.0963249,0.612258][0.0526964,0.935567,0][-0.894063,0.00292468,-1.27975][2.09673,-0.0103883,1.73776][0.0451828,0.801395,0][0.978129,0.762864,-1.04686][-0.793025,-0.338094,0.506758][0.342565,0.903888,0][0.766468,1.03843,-1.11205][-0.652515,-0.544367,0.527152][0.338211,0.930509,0][0.887831,0.565875,-1.25412][-0.748207,-0.184149,0.637397][0.324875,0.885637,0][0.887831,0.565875,-1.25412][-0.748207,-0.184149,0.637397][0.324875,0.885637,0][1.11876,0.565783,-0.882248][-0.917477,-0.127336,0.376857][0.355348,0.884489,0][0.978129,0.762864,-1.04686][-0.793025,-0.338094,0.506758][0.342565,0.903888,0][-1.04322,0.714265,-0.96337][0.850504,-0.248764,0.463421][0.0712529,0.733194,0][-1.22755,0.515663,-0.560166][0.971754,-0.134603,0.193843][0.104282,0.75231,0][-1.17445,0.384638,-0.784634][0.926772,-0.0739498,0.368272][0.0858512,0.764847,0][-1.20103,-1.47024,-0.786779][0.914596,-0.205296,0.348378][0.0853463,0.94281,0][-1.17445,0.384638,-0.784634][0.926772,-0.0739498,0.368272][0.0858512,0.764847,0][-1.22755,0.515663,-0.560166][0.971754,-0.134603,0.193843][0.104282,0.75231,0][0.540199,-0.395566,-1.60422][-0.101397,0.000163203,0.994846][0.127518,0.585885,0][0.345548,-0.656717,-1.62401][-0.0653807,0.000105233,0.641474][0.124321,0.610789,0][0.524499,-0.395324,-1.55125][-1.16429,0.894287,-0.349183][0.123259,0.585032,0][0.524499,-0.395324,-1.55125][-1.16429,0.894287,-0.349183][0.123259,0.585032,0][0.345162,-0.440003,-1.62409][-0.181693,0.000292442,1.78265][0.128302,0.590381,0][0.540199,-0.395566,-1.60422][-0.101397,0.000163203,0.994846][0.127518,0.585885,0][0.466651,-1.84287,1.47745][-0.946507,-1.20877,-2.14106][0.270954,0.978905,0][-0.0151412,-1.88017,1.56868][0.0140452,-1.19199,-2.54806][0.278429,0.982498,0][2.5443e-006,-1.53609,1.4078][-0.00166245,-0.342834,-0.939394][0.265297,0.949461,0][0.0993363,-0.125097,-1.66684][-0.953846,-1.33896,-0.0255489][0.0758316,0.488334,0][0.1425,-1.92159,-1.66353][-0.0427129,0.333413,-0.0159563][0.0755608,0.315972,0][0.10128,-0.125411,-1.72292][-0.11045,-0.000881485,0.993881][0.0804309,0.488304,0][-0.141308,1.01246,0.70275][1.03375,1.31015,-2.35421][0.648142,0.0143266,0][-0.374652,1.12249,0.488433][0.812581,0.53383,-0.610657][0.668082,0.0190922,0][-0.328092,1.28756,0.694698][0.818974,0.289199,-0.495626][0.656731,0.0392935,0][-0.328092,1.28756,0.694698][0.818974,0.289199,-0.495626][0.656731,0.0392935,0][0.0937166,1.21076,0.853741][-0.186563,0.420177,-0.888057][0.642074,0.0362007,0][-0.141308,1.01246,0.70275][1.03375,1.31015,-2.35421][0.648142,0.0143266,0][0.199884,1.32179,0.136182][-1.321,-1.06602,1.53378][0.701389,0.0286137,0][0.347552,1.18174,0.403118][-2.93708,0.243877,0.265497][0.676467,0.0224034,0][0.276471,1.49685,0.323817][-0.772997,-0.20615,0.599981][0.691783,0.0492679,0][0.276471,1.49685,0.323817][-0.772997,-0.20615,0.599981][0.691783,0.0492679,0][-0.259463,1.54598,0.21354][0.430239,-0.501821,0.75038][0.701827,0.0510345,0][0.199884,1.32179,0.136182][-1.321,-1.06602,1.53378][0.701389,0.0286137,0][0.359232,1.33583,0.628751][-0.945636,0.163328,-0.28124][0.727866,0.0342833,0][0.276471,1.49685,0.323817][-0.772997,-0.20615,0.599981][0.727225,0.0636697,0][0.347552,1.18174,0.403118][-2.93708,0.243877,0.265497][0.705396,0.041765,0][0.347552,1.18174,0.403118][-2.93708,0.243877,0.265497][0.705396,0.041765,0][0.190661,1.03958,0.66349][-1.7551,1.6082,-1.86333][0.705568,0.0164295,0][0.359232,1.33583,0.628751][-0.945636,0.163328,-0.28124][0.727866,0.0342833,0][0.00663798,1.70495,0.739417][-0.071787,-0.84627,-0.527895][0.66531,0.0785812,0][-0.138364,1.77028,0.310757][0.275825,-2.47059,-0.469813][0.700715,0.0739572,0][0.0895654,1.77215,0.315953][0.0163219,-1.38406,-0.216447][0.700363,0.0742572,0][0.190661,1.03958,0.66349][-1.7551,1.6082,-1.86333][0.651996,0.0158372,0][-0.141308,1.01246,0.70275][1.03375,1.31015,-2.35421][0.648142,0.0143266,0][0.0937166,1.21076,0.853741][-0.186563,0.420177,-0.888057][0.642074,0.0362007,0][0.0937166,1.21076,0.853741][-0.186563,0.420177,-0.888057][0.642074,0.0362007,0][0.359232,1.33583,0.628751][-0.945636,0.163328,-0.28124][0.663283,0.0420778,0][0.190661,1.03958,0.66349][-1.7551,1.6082,-1.86333][0.651996,0.0158372,0][-0.325054,1.70591,0.425586][0.735064,-2.3774,-0.521191][0.689875,0.0709088,0][-0.165758,1.71843,0.68129][0.177217,-0.92695,-0.330692][0.670245,0.0783764,0][-0.399306,1.60235,0.615397][0.630959,-1.07622,-0.340402][0.672038,0.0661282,0][-0.371123,1.23029,0.286853][1.74643,-0.423908,0.834603][0.686962,0.0239695,0][-0.233826,1.31841,0.126725][1.27548,-0.226066,0.969217][0.702031,0.028071,0][-0.259463,1.54598,0.21354][0.430239,-0.501821,0.75038][0.701827,0.0510345,0][-0.259463,1.54598,0.21354][0.430239,-0.501821,0.75038][0.701827,0.0510345,0][-0.395298,1.38985,0.501614][0.981595,-0.163048,-0.0994324][0.674786,0.0438756,0][-0.371123,1.23029,0.286853][1.74643,-0.423908,0.834603][0.686962,0.0239695,0][0.199884,1.32179,0.136182][-1.321,-1.06602,1.53378][0.701389,0.0286137,0][-0.233826,1.31841,0.126725][1.27548,-0.226066,0.969217][0.702031,0.028071,0][-0.0580593,1.07962,0.279315][0.0144567,0.84651,0.532176][0.683192,0.01,0][-0.259463,1.54598,0.21354][0.430239,-0.501821,0.75038][0.701827,0.0510345,0][-0.233826,1.31841,0.126725][1.27548,-0.226066,0.969217][0.702031,0.028071,0][0.199884,1.32179,0.136182][-1.321,-1.06602,1.53378][0.701389,0.0286137,0][0.00663798,1.70495,0.739417][-0.071787,-0.84627,-0.527895][0.66531,0.0785812,0][0.339319,1.60848,0.631673][-0.961681,-2.08293,-1.10427][0.670943,0.0670915,0][0.265496,1.50541,0.821586][-0.528327,-0.991519,-0.743483][0.653112,0.0623592,0][0.00663798,1.70495,0.739417][-0.071787,-0.84627,-0.527895][0.66531,0.0785812,0][0.0785537,1.44058,0.935981][0.11084,-0.697678,-0.978903][0.642293,0.0592579,0][-0.251211,1.46308,0.882611][0.546738,-1.60039,-1.91143][0.647116,0.0599957,0][0.190661,1.03958,0.66349][-1.7551,1.6082,-1.86333][0.651996,0.0158372,0][0.347552,1.18174,0.403118][-2.93708,0.243877,0.265497][0.676467,0.0224034,0][-0.0580593,1.07962,0.279315][0.0144567,0.84651,0.532176][0.683192,0.01,0][-0.374652,1.12249,0.488433][0.812581,0.53383,-0.610657][0.668082,0.0190922,0][-0.141308,1.01246,0.70275][1.03375,1.31015,-2.35421][0.648142,0.0143266,0][-0.0580593,1.07962,0.279315][0.0144567,0.84651,0.532176][0.683192,0.01,0][0.339319,1.60848,0.631673][-0.961681,-2.08293,-1.10427][0.670943,0.0670915,0][0.00663798,1.70495,0.739417][-0.071787,-0.84627,-0.527895][0.66531,0.0785812,0][0.272298,1.71027,0.438563][-0.400022,-0.965855,-0.370294][0.688986,0.071628,0][-0.165758,1.71843,0.68129][0.177217,-0.92695,-0.330692][0.670245,0.0783764,0][0.00663798,1.70495,0.739417][-0.071787,-0.84627,-0.527895][0.66531,0.0785812,0][-0.251211,1.46308,0.882611][0.546738,-1.60039,-1.91143][0.647116,0.0599957,0][-0.251211,1.46308,0.882611][0.546738,-1.60039,-1.91143][0.647116,0.0599957,0][-0.332106,1.50084,0.808423][0.551009,-1.09924,-1.16038][0.654009,0.0616158,0][-0.165758,1.71843,0.68129][0.177217,-0.92695,-0.330692][0.670245,0.0783764,0][-0.399306,1.60235,0.615397][0.630959,-1.07622,-0.340402][0.672038,0.0661282,0][-0.332106,1.50084,0.808423][0.551009,-1.09924,-1.16038][0.654009,0.0616158,0][-0.273542,1.34185,0.850393][0.577341,0.466054,-0.670426][0.646128,0.0481092,0][-0.273542,1.34185,0.850393][0.577341,0.466054,-0.670426][0.646128,0.0481092,0][-0.353234,1.60884,0.347958][0.820543,-0.268377,0.504662][0.693136,0.0601093,0][-0.399306,1.60235,0.615397][0.630959,-1.07622,-0.340402][0.672038,0.0661282,0][0.00663798,1.70495,0.739417][-0.071787,-0.84627,-0.527895][0.66531,0.0785812,0][-0.165758,1.71843,0.68129][0.177217,-0.92695,-0.330692][0.670245,0.0783764,0][-0.325054,1.70591,0.425586][0.735064,-2.3774,-0.521191][0.689875,0.0709088,0][-0.325054,1.70591,0.425586][0.735064,-2.3774,-0.521191][0.689875,0.0709088,0][-0.138364,1.77028,0.310757][0.275825,-2.47059,-0.469813][0.700715,0.0739572,0][0.00663798,1.70495,0.739417][-0.071787,-0.84627,-0.527895][0.66531,0.0785812,0][-0.138364,1.77028,0.310757][0.275825,-2.47059,-0.469813][0.700715,0.0739572,0][-0.325054,1.70591,0.425586][0.735064,-2.3774,-0.521191][0.689875,0.0709088,0][-0.353234,1.60884,0.347958][0.820543,-0.268377,0.504662][0.693136,0.0601093,0][-0.353234,1.60884,0.347958][0.820543,-0.268377,0.504662][0.693136,0.0601093,0][0.216287,1.6554,0.280575][-0.502986,-0.29126,0.81374][0.699751,0.0627023,0][-0.138364,1.77028,0.310757][0.275825,-2.47059,-0.469813][0.700715,0.0739572,0][0.265496,1.50541,0.821586][-0.528327,-0.991519,-0.743483][0.750121,0.0298675,0][0.339319,1.60848,0.631673][-0.961681,-2.08293,-1.10427][0.749945,0.0483143,0][0.37909,1.5016,0.574933][-0.998663,-0.0498204,0.0137622][0.73881,0.0466396,0][0.37909,1.5016,0.574933][-0.998663,-0.0498204,0.0137622][0.73881,0.0466396,0][0.20614,1.34511,0.862014][-0.559286,0.318419,-0.765381][0.73902,0.0187183,0][0.265496,1.50541,0.821586][-0.528327,-0.991519,-0.743483][0.750121,0.0298675,0][0.0785537,1.44058,0.935981][0.11084,-0.697678,-0.978903][0.642293,0.0592579,0][0.265496,1.50541,0.821586][-0.528327,-0.991519,-0.743483][0.653112,0.0623592,0][0.20614,1.34511,0.862014][-0.559286,0.318419,-0.765381][0.645314,0.0486949,0][0.20614,1.34511,0.862014][-0.559286,0.318419,-0.765381][0.645314,0.0486949,0][-0.273542,1.34185,0.850393][0.577341,0.466054,-0.670426][0.646128,0.0481092,0][0.0785537,1.44058,0.935981][0.11084,-0.697678,-0.978903][0.642293,0.0592579,0][-0.273542,1.34185,0.850393][0.577341,0.466054,-0.670426][0.646128,0.0481092,0][0.20614,1.34511,0.862014][-0.559286,0.318419,-0.765381][0.645314,0.0486949,0][0.0937166,1.21076,0.853741][-0.186563,0.420177,-0.888057][0.642074,0.0362007,0][0.0937166,1.21076,0.853741][-0.186563,0.420177,-0.888057][0.642074,0.0362007,0][-0.328092,1.28756,0.694698][0.818974,0.289199,-0.495626][0.656731,0.0392935,0][-0.273542,1.34185,0.850393][0.577341,0.466054,-0.670426][0.646128,0.0481092,0][-0.395298,1.38985,0.501614][0.981595,-0.163048,-0.0994324][0.674786,0.0438756,0][-0.259463,1.54598,0.21354][0.430239,-0.501821,0.75038][0.701827,0.0510345,0][-0.353234,1.60884,0.347958][0.820543,-0.268377,0.504662][0.693136,0.0601093,0][-0.353234,1.60884,0.347958][0.820543,-0.268377,0.504662][0.693136,0.0601093,0][-0.273542,1.34185,0.850393][0.577341,0.466054,-0.670426][0.646128,0.0481092,0][-0.395298,1.38985,0.501614][0.981595,-0.163048,-0.0994324][0.674786,0.0438756,0][0.339319,1.60848,0.631673][-0.961681,-2.08293,-1.10427][0.749945,0.0483143,0][0.272298,1.71027,0.438563][-0.400022,-0.965855,-0.370294][0.749524,0.0669147,0][0.37909,1.5016,0.574933][-0.998663,-0.0498204,0.0137622][0.73881,0.0466396,0][0.0895654,1.77215,0.315953][0.0163219,-1.38406,-0.216447][0.700363,0.0742572,0][-0.138364,1.77028,0.310757][0.275825,-2.47059,-0.469813][0.700715,0.0739572,0][0.216287,1.6554,0.280575][-0.502986,-0.29126,0.81374][0.699751,0.0627023,0][0.272298,1.71027,0.438563][-0.400022,-0.965855,-0.370294][0.749524,0.0669147,0][0.0895654,1.77215,0.315953][0.0163219,-1.38406,-0.216447][0.749036,0.0785812,0][0.216287,1.6554,0.280575][-0.502986,-0.29126,0.81374][0.738059,0.074921,0][0.216287,1.6554,0.280575][-0.502986,-0.29126,0.81374][0.738059,0.074921,0][0.37909,1.5016,0.574933][-0.998663,-0.0498204,0.0137622][0.73881,0.0466396,0][0.272298,1.71027,0.438563][-0.400022,-0.965855,-0.370294][0.749524,0.0669147,0][0.347552,1.18174,0.403118][-2.93708,0.243877,0.265497][0.676467,0.0224034,0][0.199884,1.32179,0.136182][-1.321,-1.06602,1.53378][0.701389,0.0286137,0][-0.0580593,1.07962,0.279315][0.0144567,0.84651,0.532176][0.683192,0.01,0][-0.259463,1.54598,0.21354][0.430239,-0.501821,0.75038][0.701827,0.0510345,0][0.276471,1.49685,0.323817][-0.772997,-0.20615,0.599981][0.691783,0.0492679,0][0.216287,1.6554,0.280575][-0.502986,-0.29126,0.81374][0.699751,0.0627023,0][0.216287,1.6554,0.280575][-0.502986,-0.29126,0.81374][0.699751,0.0627023,0][-0.353234,1.60884,0.347958][0.820543,-0.268377,0.504662][0.693136,0.0601093,0][-0.259463,1.54598,0.21354][0.430239,-0.501821,0.75038][0.701827,0.0510345,0][-0.233826,1.31841,0.126725][1.27548,-0.226066,0.969217][0.702031,0.028071,0][-0.371123,1.23029,0.286853][1.74643,-0.423908,0.834603][0.686962,0.0239695,0][-0.0580593,1.07962,0.279315][0.0144567,0.84651,0.532176][0.683192,0.01,0][-0.165758,1.71843,0.68129][0.177217,-0.92695,-0.330692][0.670245,0.0783764,0][-0.332106,1.50084,0.808423][0.551009,-1.09924,-1.16038][0.654009,0.0616158,0][-0.399306,1.60235,0.615397][0.630959,-1.07622,-0.340402][0.672038,0.0661282,0][0.00663798,1.70495,0.739417][-0.071787,-0.84627,-0.527895][0.66531,0.0785812,0][0.265496,1.50541,0.821586][-0.528327,-0.991519,-0.743483][0.653112,0.0623592,0][0.0785537,1.44058,0.935981][0.11084,-0.697678,-0.978903][0.642293,0.0592579,0][0.00663798,1.70495,0.739417][-0.071787,-0.84627,-0.527895][0.66531,0.0785812,0][0.0895654,1.77215,0.315953][0.0163219,-1.38406,-0.216447][0.700363,0.0742572,0][0.272298,1.71027,0.438563][-0.400022,-0.965855,-0.370294][0.688986,0.071628,0][-0.251211,1.46308,0.882611][0.546738,-1.60039,-1.91143][0.647116,0.0599957,0][0.0785537,1.44058,0.935981][0.11084,-0.697678,-0.978903][0.642293,0.0592579,0][-0.273542,1.34185,0.850393][0.577341,0.466054,-0.670426][0.646128,0.0481092,0][-0.332106,1.50084,0.808423][0.551009,-1.09924,-1.16038][0.654009,0.0616158,0][-0.251211,1.46308,0.882611][0.546738,-1.60039,-1.91143][0.647116,0.0599957,0][-0.273542,1.34185,0.850393][0.577341,0.466054,-0.670426][0.646128,0.0481092,0][-0.141308,1.01246,0.70275][1.03375,1.31015,-2.35421][0.648142,0.0143266,0][0.190661,1.03958,0.66349][-1.7551,1.6082,-1.86333][0.651996,0.0158372,0][-0.0580593,1.07962,0.279315][0.0144567,0.84651,0.532176][0.683192,0.01,0][-0.325054,1.70591,0.425586][0.735064,-2.3774,-0.521191][0.689875,0.0709088,0][-0.399306,1.60235,0.615397][0.630959,-1.07622,-0.340402][0.672038,0.0661282,0][-0.353234,1.60884,0.347958][0.820543,-0.268377,0.504662][0.693136,0.0601093,0][0.37909,1.5016,0.574933][-0.998663,-0.0498204,0.0137622][0.73881,0.0466396,0][0.216287,1.6554,0.280575][-0.502986,-0.29126,0.81374][0.738059,0.074921,0][0.276471,1.49685,0.323817][-0.772997,-0.20615,0.599981][0.727225,0.0636697,0][0.276471,1.49685,0.323817][-0.772997,-0.20615,0.599981][0.727225,0.0636697,0][0.359232,1.33583,0.628751][-0.945636,0.163328,-0.28124][0.727866,0.0342833,0][0.37909,1.5016,0.574933][-0.998663,-0.0498204,0.0137622][0.73881,0.0466396,0][0.359232,1.33583,0.628751][-0.945636,0.163328,-0.28124][0.727866,0.0342833,0][0.0937166,1.21076,0.853741][-0.186563,0.420177,-0.888057][0.727836,0.0122748,0][0.20614,1.34511,0.862014][-0.559286,0.318419,-0.765381][0.73902,0.0187183,0][0.20614,1.34511,0.862014][-0.559286,0.318419,-0.765381][0.73902,0.0187183,0][0.37909,1.5016,0.574933][-0.998663,-0.0498204,0.0137622][0.73881,0.0466396,0][0.359232,1.33583,0.628751][-0.945636,0.163328,-0.28124][0.727866,0.0342833,0][-0.250429,1.46456,0.880318][-0.0767995,-0.898584,0.100184][0.156081,0.183838,0][-0.11197,1.43835,0.751453][-0.137668,-1.61077,0.179586][0.168551,0.195355,0][0.0785175,1.44237,0.933529][-0.051425,-0.601693,0.0670833][0.156583,0.215695,0][0.0782024,1.43869,0.934092][0.0514252,0.601693,-0.0670831][0.156053,0.578936,0][-0.112285,1.43467,0.752015][0.137668,1.61077,-0.179585][0.168773,0.598814,0][-0.250744,1.46087,0.88088][0.0767998,0.898585,-0.100184][0.156741,0.610789,0][-0.371123,1.23029,0.286853][1.74643,-0.423908,0.834603][0.686962,0.0239695,0][-0.374652,1.12249,0.488433][0.812581,0.53383,-0.610657][0.668082,0.0190922,0][-0.0580593,1.07962,0.279315][0.0144567,0.84651,0.532176][0.683192,0.01,0][-0.395298,1.38985,0.501614][0.981595,-0.163048,-0.0994324][0.674786,0.0438756,0][-0.328092,1.28756,0.694698][0.818974,0.289199,-0.495626][0.656731,0.0392935,0][-0.374652,1.12249,0.488433][0.812581,0.53383,-0.610657][0.668082,0.0190922,0][-0.374652,1.12249,0.488433][0.812581,0.53383,-0.610657][0.668082,0.0190922,0][-0.371123,1.23029,0.286853][1.74643,-0.423908,0.834603][0.686962,0.0239695,0][-0.395298,1.38985,0.501614][0.981595,-0.163048,-0.0994324][0.674786,0.0438756,0][-0.273542,1.34185,0.850393][0.577341,0.466054,-0.670426][0.646128,0.0481092,0][-0.328092,1.28756,0.694698][0.818974,0.289199,-0.495626][0.656731,0.0392935,0][-0.395298,1.38985,0.501614][0.981595,-0.163048,-0.0994324][0.674786,0.0438756,0][0.33705,1.60868,0.632235][0.662946,-0.967799,-0.741805][0.128448,0.371568,0][0.18008,1.52358,0.602984][0.483622,-0.706015,-0.541151][0.135492,0.376344,0][0.270198,1.71014,0.440118][0.353993,-0.516776,-0.396102][0.134416,0.354037,0][0.271893,1.70767,0.437521][-0.353993,0.516776,0.396102][0.16875,0.330076,0][0.181775,1.5211,0.600388][-0.483622,0.706015,0.541151][0.146539,0.327736,0][0.338745,1.60621,0.629638][-0.662945,0.967799,0.741805][0.152334,0.321503,0][-0.330056,1.50223,0.807415][-0.499785,-1.42901,-0.189964][0.0148506,0.145257,0][-0.208869,1.4774,0.675372][-0.189736,-0.542505,-0.0721171][0.0124682,0.156085,0][-0.249977,1.46445,0.880916][-0.339551,-0.970864,-0.12906][0.011226,0.13923,0][-0.251196,1.46097,0.880282][0.339551,0.970863,0.12906][0.0617211,0.21765,0][-0.210088,1.47392,0.674738][0.189736,0.542505,0.072117][0.0604789,0.200795,0][-0.331275,1.49875,0.806781][0.499786,1.42902,0.189964][0.0580966,0.211623,0][-0.137534,1.76986,0.313877][-0.366194,-0.816937,-1.06062][0.140213,0.410286,0][-0.0734951,1.62583,0.402709][-0.267141,-0.59596,-0.773731][0.140614,0.394669,0][-0.323473,1.70546,0.427682][-0.195536,-0.43622,-0.566341][0.145837,0.400609,0][-0.324366,1.70346,0.424141][0.195536,0.43622,0.566341][0.0330886,0.0413689,0][-0.0743881,1.62383,0.399169][0.26714,0.59596,0.773731][0.0383123,0.0473085,0][-0.138427,1.76787,0.310337][0.366194,0.816937,1.06062][0.0387127,0.031692,0][0.263428,1.50648,0.820688][0.656462,-1.16383,-0.375464][0.0125636,0.396981,0][0.128286,1.4669,0.707071][0.478892,-0.849018,-0.273903][0.0149108,0.410286,0][0.337027,1.60899,0.631618][0.350531,-0.621449,-0.200486][0.0182472,0.38629,0][0.338769,1.6059,0.630255][-0.350531,0.621449,0.200486][0.0710908,0.196492,0][0.130028,1.46382,0.705708][-0.478892,0.849018,0.273903][0.0714542,0.220716,0][0.265169,1.50339,0.819325][-0.656462,1.16383,0.375464][0.0671047,0.207925,0][-0.323135,1.70571,0.427253][-0.615624,-0.977351,-0.769545][0.0457196,0.610679,0][-0.185094,1.59329,0.459594][-0.449101,-0.712983,-0.561387][0.0565051,0.608027,0][-0.396734,1.6032,0.616323][-0.328725,-0.521876,-0.410914][0.0555548,0.595174,0][-0.398303,1.60071,0.613639][0.328725,0.521876,0.410914][0.167847,0.559027,0][-0.186663,1.5908,0.45691][0.449101,0.712983,0.561387][0.168797,0.57188,0][-0.324703,1.70322,0.424569][0.615624,0.977352,0.769544][0.158012,0.574532,0][0.0778132,1.44231,0.933966][0.407032,-1.32424,-0.0843845][0.102387,0.236588,0][0.0166732,1.43436,0.763858][0.296932,-0.96604,-0.0615589][0.116336,0.235825,0][0.263752,1.50671,0.820161][0.217342,-0.707104,-0.0450587][0.111719,0.242767,0][0.264845,1.50316,0.819851][-0.217342,0.707104,0.0450591][0.0228094,0.352173,0][0.0177667,1.4308,0.763547][-0.296931,0.966041,0.0615594][0.0297516,0.35679,0][0.0789067,1.43875,0.933656][-0.407031,1.32424,0.0843851][0.0289886,0.34284,0][1.11709,0.565558,-0.881316][0.917468,0.127344,-0.376877][0.0779551,0.747474,0][1.14602,-1.39554,-0.89222][0.904011,0.111016,-0.412843][0.076713,0.935627,0][0.954958,0.0791984,-1.2004][3.81441,0.104506,-2.43555][0.0517026,0.794089,0][0.954958,0.0791984,-1.2004][3.81441,0.104506,-2.43555][0.0517026,0.794089,0][0.886525,0.565558,-1.2526][0.748199,0.184125,-0.637413][0.0475083,0.747418,0][1.11709,0.565558,-0.881316][0.917468,0.127344,-0.376877][0.0779551,0.747474,0][-1.14602,-1.39554,0.462622][-0.90226,0.139945,0.407852][0.458525,0.692323,0][-0.843096,-1.47062,0.975845][-0.753399,0.174591,0.633962][0.500313,0.683553,0][-1.06153,0.61539,0.545724][-0.874327,0.178976,0.451132][0.472542,0.88487,0][-1.11709,0.949146,-0.00836398][-0.894515,0.438394,0.0874851][0.428334,0.918567,0][-0.886525,1.27545,-0.379653][-0.727042,0.682979,-0.0703577][0.399077,0.950989,0][-1.19237,0.762257,-0.436329][-0.936248,0.331264,-0.117062][0.392594,0.90196,0][0.129083,-0.024897,-1.72026][0.108588,-0.00245584,-0.994084][0.0802122,0.497948,0][0.0558956,0.0930728,-1.72359][0.0463178,0.0201841,-0.998723][0.0804857,0.509266,0][0.317536,0.234107,-1.68452][0.278028,0.00168939,-0.960572][0.0772816,0.522797,0][0.317536,0.234107,-1.68452][0.278028,0.00168939,-0.960572][0.0772816,0.522797,0][0.0695438,0.515303,-1.71718][0.0819578,0.0337311,-0.996065][0.07996,0.549776,0][0.421326,0.261204,-1.65165][0.347855,0.0011092,-0.937548][0.0745863,0.525397,0][0.129083,-0.024897,-1.72026][0.108588,-0.00245584,-0.994084][0.0802122,0.497948,0][0.317536,0.234107,-1.68452][0.278028,0.00168939,-0.960572][0.0772816,0.522797,0][0.421326,0.261204,-1.65165][0.347855,0.0011092,-0.937548][0.0745863,0.525397,0][0.668312,-1.30789,1.11335][0.621901,0.151649,0.768272][0.241192,0.927521,0][0.987144,-1.47062,0.778274][0.805856,0.151512,0.572399][0.213685,0.943084,0][1.07482,0.515415,0.555256][0.859226,0.152764,0.488256][0.195749,0.752503,0][1.07482,0.515415,0.555256][0.859226,0.152764,0.488256][0.195749,0.752503,0][0.709623,0.762257,0.927383][0.614272,0.30776,0.726604][0.226309,0.728876,0][0.668312,-1.30789,1.11335][0.621901,0.151649,0.768272][0.241192,0.927521,0][-1.20379,0.457538,0.242258][-0.952724,0.100491,0.286738][0.447109,0.870666,0][-1.2633,-1.30789,0.0178562][-0.98115,0.0888929,0.171591][0.422393,0.70209,0][-1.06153,0.61539,0.545724][-0.874327,0.178976,0.451132][0.472542,0.88487,0][0.709623,0.762257,0.927383][0.614272,0.30776,0.726604][0.226309,0.728876,0][0.574612,0.457538,1.10409][0.549827,0.113056,0.827592][0.240745,0.758139,0][0.668312,-1.30789,1.11335][0.621901,0.151649,0.768272][0.241192,0.927521,0][0.18502,1.63643,-0.105072][0.165361,0.98504,0.0484885][0.141799,0.644849,0][0.210176,1.61733,-0.461277][0.189364,0.972738,-0.133871][0.112586,0.646627,0][-0.165298,1.64263,-0.246002][-0.114563,0.993273,-0.016859][0.130244,0.644232,0][0.559599,1.31053,-0.981967][0.480523,0.765284,-0.428297][0.0698336,0.675984,0][0.0901499,1.51252,-0.881316][0.0821835,0.895653,-0.437094][0.0781231,0.65662,0][0.34514,1.53461,-0.68818][0.305776,0.909114,-0.282867][0.0939648,0.654529,0][-0.0989002,0.515414,-1.6857][-0.0622502,0.151186,-0.986543][0.011984,0.752163,0][-0.183456,0.857221,-1.57058][-0.164795,0.422913,-0.89106][0.0214852,0.719386,0][0.188853,0.762256,-1.61045][0.158608,0.326544,-0.931779][0.0181991,0.728492,0][-0.886525,0.565558,0.821863][-0.734191,0.163537,0.658953][0.494992,0.879247,0][-0.665815,-0.960855,1.06853][-0.545446,0.0706754,0.835161][0.509735,0.732144,0][-0.574612,0.457538,1.10409][-0.522203,0.113175,0.845278][0.517732,0.868026,0][-0.655073,1.46305,-0.336763][-0.535206,0.844258,-0.027996][0.403265,0.968845,0][-0.603642,1.40682,0.297757][-0.522172,0.806132,0.278366][0.455059,0.96151,0][-0.453125,1.53461,0.109511][-0.396968,0.900566,0.177194][0.440091,0.974338,0][-1.04169,0.713815,-0.962241][-0.850501,0.248749,-0.463434][0.349324,0.898926,0][-0.915042,0.949146,-0.993207][-0.727358,0.458521,-0.510598][0.34763,0.921584,0][-0.725524,0.664834,-1.38373][-0.633957,0.298261,-0.71354][0.314609,0.895522,0][-1.19936,-1.47062,-0.785914][-0.914613,0.20532,-0.348321][0.355944,0.68895,0][-0.954957,0.0791987,-1.20041][-3.93823,0.158458,-2.4179][0.327533,0.838811,0][-0.97806,-1.39554,-1.18364][-0.784773,0.0963052,-0.612255][0.323621,0.697366,0][0.906379,1.23895,-0.469969][0.700312,0.701761,-0.130745][0.111806,0.682928,0][0.765307,1.03746,-1.11078][0.652511,0.544355,-0.52717][0.0592221,0.702163,0][0.709623,1.40682,-0.485138][0.564542,0.806987,-0.17339][0.110592,0.66682,0][1.20379,0.457538,0.242258][0.962191,0.112527,0.248045][0.170072,0.758008,0][1.07482,0.515415,0.555256][0.859226,0.152764,0.488256][0.195749,0.752503,0][0.987144,-1.47062,0.778274][0.805856,0.151512,0.572399][0.213685,0.943084,0][0.987144,-1.47062,0.778274][0.805856,0.151512,0.572399][0.213685,0.943084,0][1.19936,-1.47062,0.355173][0.918058,0.207787,0.337629][0.17899,0.94302,0][1.20379,0.457538,0.242258][0.962191,0.112527,0.248045][0.170072,0.758008,0][0.901887,-1.2068,-1.26959][0.741243,0.0222385,-0.670869][0.0458011,0.917461,0][0.954958,0.0791984,-1.2004][3.81441,0.104506,-2.43555][0.0517026,0.794089,0][1.14602,-1.39554,-0.89222][0.904011,0.111016,-0.412843][0.076713,0.935627,0][1.14602,-1.39554,-0.89222][0.904011,0.111016,-0.412843][0.076713,0.935627,0][0.928957,-1.95055,-1.34907][1.90952,0.3705,-2.37198][0.0391514,0.988807,0][0.901887,-1.2068,-1.26959][0.741243,0.0222385,-0.670869][0.0458011,0.917461,0][-1.04169,0.713815,-0.962241][-0.850501,0.248749,-0.463434][0.349324,0.898926,0][-0.725524,0.664834,-1.38373][-0.633957,0.298261,-0.71354][0.314609,0.895522,0][-0.879328,0.254629,-1.28982][-2.76362,0.393553,-1.94857][0.320834,0.855905,0][-1.19936,-1.47062,-0.785914][-0.914613,0.20532,-0.348321][0.355944,0.68895,0][-1.17276,0.384507,-0.783719][-0.926772,0.0739221,-0.368279][0.362773,0.866807,0][-0.954957,0.0791987,-1.20041][-3.93823,0.158458,-2.4179][0.327533,0.838811,0][-0.467529,0.713816,1.10524][-0.419679,0.30748,0.854005][0.240885,0.733551,0][-0.258551,0.993789,1.04463][-0.211134,0.506121,0.83622][0.235965,0.70668,0][-0.664817,0.949146,0.855229][-0.564462,0.472642,0.676751][0.220425,0.710935,0][0.278018,0.810083,1.13951][0.256452,0.416966,0.871993][0.243712,0.72432,0][0.709623,0.762257,0.927383][0.614272,0.30776,0.726604][0.226309,0.728876,0][0.603641,1.12163,0.756713][0.514156,0.588463,0.623984][0.212377,0.694371,0][1.0522,1.08009,-0.312255][0.832823,0.552058,-0.0404729][0.124711,0.698194,0][0.576301,1.51252,-0.215371][0.471986,0.881603,-0.00242745][0.132733,0.65672,0][0.853678,1.27545,0.10916][0.675585,0.720989,0.154141][0.159303,0.679515,0][0.438571,1.40682,0.49089][0.293449,0.850597,0.436316][0.190629,0.666968,0][0.708802,1.23895,0.492913][0.577664,0.694636,0.428702][0.190765,0.683074,0][0.601306,1.43576,0.215755][0.48341,0.842473,0.237812][0.168073,0.66415,0][-1.53723e-007,-1.2068,1.32024][-0.0246463,0.15666,0.987345][0.258175,0.917854,0][0.199339,-0.960855,1.2707][0.265623,0.0658334,0.961826][0.254156,0.89425,0][0.197998,0.457538,1.24726][0.195256,0.110682,0.974487][0.252485,0.75816,0][0.845162,0.272476,-1.39535][0.663919,0.0110992,-0.747722][0.0535688,0.526479,0][0.527763,0.520885,-1.60166][0.465405,0.171897,-0.868245][0.0704864,0.550312,0][0.744198,0.588435,-1.46747][0.544623,0.0353089,-0.837937][0.0594829,0.556793,0][0.744198,0.588435,-1.46747][0.544623,0.0353089,-0.837937][0.0594829,0.556793,0][0.92306,0.46588,-1.3164][0.707661,0.0284128,-0.70598][0.047095,0.545035,0][0.845162,0.272476,-1.39535][0.663919,0.0110992,-0.747722][0.0535688,0.526479,0][0.92306,0.46588,-1.3164][0.707661,0.0284128,-0.70598][0.047095,0.545035,0][0.985658,-0.0941957,-1.25234][0.800239,-0.000220815,-0.599682][0.0418413,0.491299,0][0.931362,0.0792687,-1.31303][0.740933,0.00701685,-0.671543][0.0468181,0.507942,0][-0.0989002,0.515414,-1.6857][-0.0622502,0.151186,-0.986543][0.011984,0.752163,0][0.188853,0.762256,-1.61045][0.158608,0.326544,-0.931779][0.0181991,0.728492,0][0.182355,-0.00790024,-1.69001][0.507689,0.167811,-3.32629][0.0115377,0.802371,0][0.182355,-0.00790024,-1.69001][0.507689,0.167811,-3.32629][0.0115377,0.802371,0][0,-0.138337,-1.7063][0.00635774,0.0606179,-1.8934][0.0101789,0.814883,0][-0.0989002,0.515414,-1.6857][-0.0622502,0.151186,-0.986543][0.011984,0.752163,0][0.201152,1.31053,-1.19565][0.151392,0.783779,-0.602305][0.0523107,0.675951,0][0.0901499,1.51252,-0.881316][0.0821835,0.895653,-0.437094][0.0781231,0.65662,0][0.559599,1.31053,-0.981967][0.480523,0.765284,-0.428297][0.0698336,0.675984,0][0.559599,1.31053,-0.981967][0.480523,0.765284,-0.428297][0.0698336,0.675984,0][0.520863,1.16198,-1.20983][0.42542,0.647839,-0.631919][0.0511217,0.690201,0][0.201152,1.31053,-1.19565][0.151392,0.783779,-0.602305][0.0523107,0.675951,0][-0.830841,1.12162,-0.921631][-0.671899,0.612839,-0.415909][0.354113,0.937901,0][-1.0757,0.949146,-0.624304][-0.856923,0.467479,-0.217132][0.37786,0.920454,0][-0.886525,1.27545,-0.379653][-0.727042,0.682979,-0.0703577][0.399077,0.950989,0][0.218309,-0.21511,-1.6835][1.13525,0.0583396,-3.63349][0.0120355,0.822252,0][0.835631,-0.151484,-1.34036][2.61439,0.0496708,-2.89224][0.0401849,0.8162,0][0.442024,-1.95055,-1.63335][1.20103,0.107985,-2.84137][0.01584,0.988764,0][-0.54738,-1.95055,-1.5928][-1.35396,0.0188586,-2.76505][0.0191653,0.988771,0][-0.667848,-0.153423,-1.48499][-1.65244,0.0142631,-2.48172][0.0283243,0.816364,0][-0.23211,-0.21948,-1.68029][-1.0488,0.0429016,-3.67859][0.0122979,0.822672,0][-0.23211,-0.21948,-1.68029][-1.0488,0.0429016,-3.67859][0.0122979,0.822672,0][-0.140038,-1.95055,-1.69825][-0.387915,-0.00494817,-1.51144][0.0105177,0.988755,0][-0.54738,-1.95055,-1.5928][-1.35396,0.0188586,-2.76505][0.0191653,0.988771,0][0.409081,0.260971,-1.59882][0.83451,1.20657,0.198732][0.0702537,0.525375,0][0.421326,0.261204,-1.65165][0.347855,0.0011092,-0.937548][0.0745863,0.525397,0][0.0695438,0.515303,-1.71718][0.0819578,0.0337311,-0.996065][0.07996,0.549776,0][0.0695438,0.515303,-1.71718][0.0819578,0.0337311,-0.996065][0.07996,0.549776,0][0.0677575,0.514101,-1.66235][1.00796,1.37495,0.0629682][0.0754638,0.549661,0][0.409081,0.260971,-1.59882][0.83451,1.20657,0.198732][0.0702537,0.525375,0][0.438571,1.40682,0.49089][0.293449,0.850597,0.436316][0.190629,0.666968,0][0.601306,1.43576,0.215755][0.48341,0.842473,0.237812][0.168073,0.66415,0][0.285337,1.57334,0.175512][0.194176,0.937164,0.289862][0.164797,0.650944,0][-0.128962,1.34415,0.737283][0.041644,0.891549,0.451006][0.210823,0.673018,0][-0.301104,1.46305,0.476041][-0.182689,0.887215,0.423643][0.189422,0.661571,0][-0.527602,1.27545,0.634262][-0.448899,0.72726,0.519213][0.202363,0.679595,0][-0.527602,1.27545,0.634262][-0.448899,0.72726,0.519213][0.202363,0.679595,0][-0.381481,1.16198,0.862181][-0.337618,0.65766,0.673422][0.221033,0.690515,0][-0.128962,1.34415,0.737283][0.041644,0.891549,0.451006][0.210823,0.673018,0][0.148846,-1.9205,-1.71794][0.172416,-4.30427e-005,-0.985024][0.0800219,0.316077,0][0.201374,-0.216788,-1.70998][0.16782,0.0107713,-0.985759][0.0793694,0.479537,0][0.277334,-0.888854,-1.69524][0.274336,0.00650612,-0.961612][0.0781606,0.415056,0][0.349515,0.949146,-1.47394][0.301318,0.507443,-0.807285][0.0294265,0.710581,0][0.201152,1.31053,-1.19565][0.151392,0.783779,-0.602305][0.0523107,0.675951,0][0.520863,1.16198,-1.20983][0.42542,0.647839,-0.631919][0.0511217,0.690201,0][0.622258,0.810082,-1.40342][0.547812,0.373794,-0.748452][0.0351845,0.723934,0][0.745543,0.404775,-1.41597][2.32874,0.472058,-2.50008][0.0340835,0.762819,0][0.551291,0.519684,-1.54006][1.77744,0.863066,-2.75739][0.0239281,0.751775,0][-0.266332,-0.888854,-1.68814][-0.301919,0.013551,-0.953237][0.0775783,0.415056,0][-0.266332,-0.361261,-1.68814][-0.282174,-0.0103642,-0.959307][0.0775783,0.465676,0][-0.185813,-1.92095,-1.7068][-0.208744,0.00312582,-0.977965][0.0791089,0.316033,0][-0.185813,-1.92095,-1.7068][-0.208744,0.00312582,-0.977965][0.0791089,0.316033,0][-0.329274,-1.1417,-1.67056][-0.291855,0.00691306,-0.956438][0.0761369,0.390797,0][-0.266332,-0.888854,-1.68814][-0.301919,0.013551,-0.953237][0.0775783,0.415056,0][1.14602,-1.39554,-0.89222][0.904011,0.111016,-0.412843][0.076713,0.935627,0][1.24115,0.61539,-0.329653][0.982965,0.169541,-0.0709662][0.123202,0.742777,0][1.27038,-1.39554,-0.448597][0.978182,0.159181,-0.133496][0.113091,0.935695,0][-1.27512,-1.30789,-0.332342][-0.99212,0.0976699,-0.0784719][0.393695,0.703163,0][-1.22575,0.515414,-0.559679][-0.971755,0.134591,-0.193849][0.381601,0.878671,0][-1.19936,-1.47062,-0.785914][-0.914613,0.20532,-0.348321][0.355944,0.68895,0][-1.19936,-1.47062,-0.785914][-0.914613,0.20532,-0.348321][0.355944,0.68895,0][-1.3019,-1.59856,-0.560514][-0.906117,0.391241,-0.160878][0.373956,0.675993,0][-1.27512,-1.30789,-0.332342][-0.99212,0.0976699,-0.0784719][0.393695,0.703163,0][-0.568149,0.520887,-1.55908][-0.540621,0.166238,-0.824678][0.111803,0.550312,0][-0.836444,0.33521,-1.36397][-0.726954,0.0346823,-0.685809][0.127802,0.532498,0][-0.799524,0.544465,-1.39246][-0.632545,0.0480461,-0.773032][0.125466,0.552574,0][-0.799524,0.544465,-1.39246][-0.632545,0.0480461,-0.773032][0.125466,0.552574,0][-0.389216,0.757745,-1.61611][-0.402092,0.143537,-0.904278][0.107126,0.573037,0][-0.568149,0.520887,-1.55908][-0.540621,0.166238,-0.824678][0.111803,0.550312,0][0.197998,0.457538,1.24726][0.195256,0.110682,0.974487][0.252485,0.75816,0][-0.197998,0.457538,1.24726][-0.189695,0.119407,0.974555][0.252485,0.75816,0][-1.53723e-007,-1.2068,1.32024][-0.0246463,0.15666,0.987345][0.258175,0.917854,0][-1.40315e-007,0.664835,1.2288][-0.0176502,0.299814,0.953834][0.251009,0.738269,0][-0.258551,0.993789,1.04463][-0.211134,0.506121,0.83622][0.235965,0.70668,0][-0.467529,0.713816,1.10524][-0.419679,0.30748,0.854005][0.240885,0.733551,0][-0.185813,-1.92095,-1.7068][-0.208744,0.00312582,-0.977965][0.0791089,0.316033,0][-0.337363,-1.90415,-1.67125][-0.228041,0.00329983,-0.973646][0.0761935,0.317645,0][-0.329274,-1.1417,-1.67056][-0.291855,0.00691306,-0.956438][0.0761369,0.390797,0][0.442024,-1.95055,-1.63335][1.20103,0.107985,-2.84137][0.01584,0.988764,0][0.835631,-0.151484,-1.34036][2.61439,0.0496708,-2.89224][0.0401849,0.8162,0][0.901887,-1.2068,-1.26959][0.741243,0.0222385,-0.670869][0.0458011,0.917461,0][0.901887,-1.2068,-1.26959][0.741243,0.0222385,-0.670869][0.0458011,0.917461,0][0.928957,-1.95055,-1.34907][1.90952,0.3705,-2.37198][0.0391514,0.988807,0][0.442024,-1.95055,-1.63335][1.20103,0.107985,-2.84137][0.01584,0.988764,0][0.985658,-0.0941957,-1.25234][0.800239,-0.000220815,-0.599682][0.0418413,0.491299,0][0.92306,0.46588,-1.3164][0.707661,0.0284128,-0.70598][0.047095,0.545035,0][1.14502,0.127779,-1.03168][0.800397,0.0209273,-0.599105][0.0237463,0.512596,0][0.902002,-0.254767,-1.3424][0.688534,-0.014281,-0.725064][0.0492264,0.475893,0][0.810913,-0.151484,-1.42545][0.634781,0.00915966,-0.772638][0.0560367,0.485802,0][0.868767,0.002985,-1.37412][0.691269,0.000206061,-0.722597][0.0518277,0.500623,0][0.868767,0.002985,-1.37412][0.691269,0.000206061,-0.722597][0.0518277,0.500623,0][0.931362,0.0792687,-1.31303][0.740933,0.00701685,-0.671543][0.0468181,0.507942,0][0.902002,-0.254767,-1.3424][0.688534,-0.014281,-0.725064][0.0492264,0.475893,0][0.278018,0.810083,1.13951][0.256452,0.416966,0.871993][0.243712,0.72432,0][0.35671,1.23895,0.79221][0.275175,0.710963,0.647156][0.215309,0.68312,0][-0.0782103,1.16198,0.947367][-0.0257431,0.635438,0.771723][0.228018,0.690528,0][0,1.27545,0.834833][0.0603418,0.782973,0.619123][0.21881,0.679625,0][0.438571,1.40682,0.49089][0.293449,0.850597,0.436316][0.190629,0.666968,0][-0.301104,1.46305,0.476041][-0.182689,0.887215,0.423643][0.189422,0.661571,0][-0.725524,0.664834,-1.38373][-0.633957,0.298261,-0.71354][0.0367732,0.737873,0][-0.605371,1.23895,-1.04467][-0.497559,0.699469,-0.513009][0.0646791,0.682841,0][-0.42383,0.993788,-1.41254][-0.397785,0.527427,-0.750725][0.0344688,0.706308,0][-0.42383,0.993788,-1.41254][-0.397785,0.527427,-0.750725][0.0344688,0.706308,0][-0.425496,0.540444,-1.59832][-1.78316,1.12352,-4.83777][0.0191541,0.749775,0][-0.725524,0.664834,-1.38373][-0.633957,0.298261,-0.71354][0.0367732,0.737873,0][-0.124063,1.53461,-0.819974][-0.14293,0.906599,-0.39705][0.0831573,0.654509,0][0.201152,1.31053,-1.19565][0.151392,0.783779,-0.602305][0.0523107,0.675951,0][-0.329739,1.31053,-1.14677][-0.255084,0.784099,-0.565792][0.0563193,0.675959,0][1.19237,0.762257,0.00558761][0.94047,0.3047,0.150578][0.150719,0.728737,0][1.0522,1.08009,-0.312255][0.832823,0.552058,-0.0404729][0.124711,0.698194,0][1.02629,1.08009,0.0729092][0.829945,0.52948,0.175617][0.156296,0.698252,0][1.14602,-1.39554,-0.89222][0.904011,0.111016,-0.412843][0.076713,0.935627,0][1.11709,0.565558,-0.881316][0.917468,0.127344,-0.376877][0.0779551,0.747474,0][1.24115,0.61539,-0.329653][0.982965,0.169541,-0.0709662][0.123202,0.742777,0][-1.11709,0.949146,-0.00836398][-0.894515,0.438394,0.0874851][0.428334,0.918567,0][-1.2567,0.515414,-0.0996576][-0.987368,0.143972,0.0661575][0.419298,0.877262,0][-1.06503,0.9036,0.30077][-0.86787,0.391969,0.305226][0.453503,0.913253,0][-0.664817,0.949146,0.855229][-0.564462,0.472642,0.676751][0.220425,0.710935,0][-0.381481,1.16198,0.862181][-0.337618,0.65766,0.673422][0.221033,0.690515,0][-0.527602,1.27545,0.634262][-0.448899,0.72726,0.519213][0.202363,0.679595,0][-1.05575,0.2952,-1.10523][-0.796014,0.0198565,-0.604952][0.149019,0.528659,0][-0.799524,0.544465,-1.39246][-0.632545,0.0480461,-0.773032][0.125466,0.552574,0][-0.836444,0.33521,-1.36397][-0.726954,0.0346823,-0.685809][0.127802,0.532498,0][-0.836444,0.33521,-1.36397][-0.726954,0.0346823,-0.685809][0.127802,0.532498,0][-0.970973,0.0792687,-1.22213][-0.787815,0.0132186,-0.61577][0.139434,0.507942,0][-1.05575,0.2952,-1.10523][-0.796014,0.0198565,-0.604952][0.149019,0.528659,0][-0.950325,-0.675313,-1.24664][-0.780205,-0.0574984,-0.622876][0.137423,0.435544,0][-1.17988,-0.0865495,-0.892462][-0.844336,-0.00690649,-0.53577][0.166467,0.492032,0][-0.967543,-0.0941957,-1.227][-0.775779,-0.000707881,-0.631004][0.139034,0.491299,0][-0.967543,-0.0941957,-1.227][-0.775779,-0.000707881,-0.631004][0.139034,0.491299,0][-1.05575,0.2952,-1.10523][-0.796014,0.0198565,-0.604952][0.149019,0.528659,0][-0.970973,0.0792687,-1.22213][-0.787815,0.0132186,-0.61577][0.139434,0.507942,0][-0.967543,-0.0941957,-1.227][-0.775779,-0.000707881,-0.631004][0.139034,0.491299,0][-0.970973,0.0792687,-1.22213][-0.787815,0.0132186,-0.61577][0.139434,0.507942,0][-0.957686,-0.247122,-1.23837][-0.730974,-0.00466953,-0.682389][0.138102,0.476626,0][-0.950325,-0.675313,-1.24664][-0.780205,-0.0574984,-0.622876][0.137423,0.435544,0][-0.967543,-0.0941957,-1.227][-0.775779,-0.000707881,-0.631004][0.139034,0.491299,0][-0.957686,-0.247122,-1.23837][-0.730974,-0.00466953,-0.682389][0.138102,0.476626,0][-0.931616,-1.22584,-1.26863][-0.760015,0.0371588,-0.648843][0.0476877,0.191069,0][-0.904951,-1.50984,-1.31574][-0.796126,0.025529,-0.604593][0.0400482,0.217508,0][-1.07967,-1.1785,-1.07167][-0.816312,0.00156151,-0.577609][0.0348145,0.180309,0][-1.07967,-1.1785,-1.07167][-0.816312,0.00156151,-0.577609][0.0348145,0.180309,0][-1.04053,-0.870016,-1.13098][-0.788633,0.0367732,-0.613763][0.0513768,0.155302,0][-0.931616,-1.22584,-1.26863][-0.760015,0.0371588,-0.648843][0.0476877,0.191069,0][-0.443772,0.542797,-1.62][-0.400896,0.080194,-0.912607][0.071991,0.552414,0][-0.400714,0.261204,-1.64488][-0.383376,0.0186134,-0.923405][0.0740306,0.525397,0][-0.567254,0.136491,-1.56593][-0.418207,-0.0129691,-0.908259][0.0675566,0.513432,0][-0.0926661,0.112939,-1.71951][-0.130881,-0.0103008,-0.991345][0.0801512,0.511172,0][0.0558956,0.0930728,-1.72359][0.0463178,0.0201841,-0.998723][0.0804857,0.509266,0][-0.0203447,-0.138337,-1.72363][-0.0663737,-0.013537,-0.997703][0.0804889,0.487064,0][0.744198,0.588435,-1.46747][0.544623,0.0353089,-0.837937][0.0594829,0.556793,0][0.527763,0.520885,-1.60166][0.465405,0.171897,-0.868245][0.0704864,0.550312,0][0.297059,0.730659,-1.66287][0.376901,0.0788602,-0.922891][0.0755064,0.570438,0][0.297059,0.730659,-1.66287][0.376901,0.0788602,-0.922891][0.0755064,0.570438,0][0.409829,0.757745,-1.62288][0.360009,-0.136205,-0.922953][0.0722271,0.573037,0][0.744198,0.588435,-1.46747][0.544623,0.0353089,-0.837937][0.0594829,0.556793,0][-0.39227,1.58993,-0.215371][-0.330983,0.943614,0.00652332][0.132746,0.649293,0][-0.655073,1.46305,-0.336763][-0.535206,0.844258,-0.027996][0.122769,0.661448,0][-0.453125,1.53461,0.109511][-0.396968,0.900566,0.177194][0.159378,0.65465,0][-0.664792,1.40682,-0.611683][-0.521735,0.808796,-0.271369][0.100215,0.666801,0][-0.334088,1.57334,-0.549215][-0.291905,0.928869,-0.228023][0.105367,0.650834,0][-0.329739,1.31053,-1.14677][-0.255084,0.784099,-0.565792][0.0563193,0.675959,0][-0.329739,1.31053,-1.14677][-0.255084,0.784099,-0.565792][0.0563193,0.675959,0][-0.605371,1.23895,-1.04467][-0.497559,0.699469,-0.513009][0.0646791,0.682841,0][-0.664792,1.40682,-0.611683][-0.521735,0.808796,-0.271369][0.100215,0.666801,0][0.929007,0.713816,0.712956][0.772972,0.226121,0.592776][0.208716,0.733491,0][1.19237,0.762257,0.00558761][0.94047,0.3047,0.150578][0.150719,0.728737,0][0.899918,1.08009,0.429854][0.760961,0.514674,0.39503][0.185566,0.698306,0][0.929007,0.713816,0.712956][0.772972,0.226121,0.592776][0.208716,0.733491,0][0.899918,1.08009,0.429854][0.760961,0.514674,0.39503][0.185566,0.698306,0][0.603641,1.12163,0.756713][0.514156,0.588463,0.623984][0.212377,0.694371,0][-0.182354,-0.00790024,-1.69001][-0.559181,0.0740068,-3.3287][0.0115377,0.802371,0][-0.550355,0.136258,-1.55787][-0.607102,-0.00162684,-1.68885][0.0223999,0.78856,0][-0.52004,0.384507,-1.569][-0.88268,0.0290473,-2.55732][0.0215307,0.76474,0][-0.957686,-0.247122,-1.23837][-0.730974,-0.00466953,-0.682389][0.138102,0.476626,0][-0.970973,0.0792687,-1.22213][-0.787815,0.0132186,-0.61577][0.139434,0.507942,0][-0.900366,-0.0152253,-1.30268][-0.743356,-0.00177014,-0.668894][0.132828,0.498875,0][-0.85092,-0.151484,-1.35264][-0.696516,-1.98515e-005,-0.717542][0.128731,0.485802,0][-0.707625,-0.53337,-1.47636][-0.492583,0.00496175,-0.870251][0.118586,0.449163,0][-0.957686,-0.247122,-1.23837][-0.730974,-0.00466953,-0.682389][0.138102,0.476626,0][1.10853,-1.1785,-1.08945][0.831665,0.00708704,-0.555233][0.165938,0.373228,0][0.930797,-1.51031,-1.32977][0.789365,0.0215482,-0.613545][0.159552,0.41012,0][0.960476,-1.22584,-1.2816][0.753124,0.0381948,-0.656769][0.153019,0.383328,0][0.425497,0.540444,-1.59832][1.57668,0.977978,-4.85774][0.0191541,0.749775,0][0.550355,0.136258,-1.55786][0.658674,0.0199167,-1.83386][0.0223999,0.78856,0][0.182355,-0.00790024,-1.69001][0.507689,0.167811,-3.32629][0.0115377,0.802371,0][0.182355,-0.00790024,-1.69001][0.507689,0.167811,-3.32629][0.0115377,0.802371,0][0.188853,0.762256,-1.61045][0.158608,0.326544,-0.931779][0.0181991,0.728492,0][0.425497,0.540444,-1.59832][1.57668,0.977978,-4.85774][0.0191541,0.749775,0][-0.393785,-0.960855,1.21614][-0.351293,0.0835046,0.932534][0.249682,0.894241,0][-0.574612,0.457538,1.10409][-0.522203,0.113175,0.845278][0.240745,0.758139,0][-0.665815,-0.960855,1.06853][-0.545446,0.0706754,0.835161][0.237577,0.894219,0][-0.665815,-0.960855,1.06853][-0.545446,0.0706754,0.835161][0.237577,0.894219,0][-0.597841,-1.53525,1.21851][-0.559085,0.269748,0.784003][0.249775,0.949351,0][-0.393785,-0.960855,1.21614][-0.351293,0.0835046,0.932534][0.249682,0.894241,0][-1.53723e-007,-1.2068,1.32024][-0.0246463,0.15666,0.987345][0.258175,0.917854,0][-1.64645e-007,-1.53665,1.40572][0.00165261,0.342864,0.939384][0.265126,0.949514,0][0.303057,-1.47062,1.3408][0.229393,0.275822,0.933435][0.259814,0.943169,0][0.970938,-0.675312,-1.26888][0.775812,-0.0559282,-0.62848][0.0431981,0.435544,0][0.985658,-0.0941957,-1.25234][0.800239,-0.000220815,-0.599682][0.0418413,0.491299,0][1.16109,-0.0865493,-0.905183][0.101687,-0.391809,-0.91441][0.0133736,0.492032,0][-0.892723,0.00291789,-1.27823][-2.0967,0.0103755,-1.73816][0.320882,0.831736,0][-0.83563,-0.151484,-1.34036][-2.95217,-0.0374501,-2.9802][0.315237,0.817123,0][-0.97806,-1.39554,-1.18364][-0.784773,0.0963052,-0.612255][0.323621,0.697366,0][-0.019755,1.628,0.0770893][-0.00310701,0.973733,0.227673][0.156736,0.645685,0][-0.301104,1.46305,0.476041][-0.182689,0.887215,0.423643][0.189422,0.661571,0][0.438571,1.40682,0.49089][0.293449,0.850597,0.436316][0.190629,0.666968,0][-0.230571,1.58993,0.155932][-0.16558,0.955701,0.243351][0.163194,0.64935,0][-0.019755,1.628,0.0770893][-0.00310701,0.973733,0.227673][0.156736,0.645685,0][-0.165298,1.64263,-0.246002][-0.114563,0.993273,-0.016859][0.130244,0.644232,0][1.33753,-1.60048,-0.104088][0.915702,0.397816,0.0568504][0.141306,0.955409,0][1.53999,-1.8949,-0.21537][2.51739,1.05214,-0.165581][0.132128,0.98364,0][1.33109,-1.65917,-0.556154][0.88749,0.395908,-0.235836][0.104225,0.960971,0][-0.337254,0.575008,-1.65821][-0.349364,0.0864362,-0.932992][0.0751244,0.555505,0][-0.400714,0.261204,-1.64488][-0.383376,0.0186134,-0.923405][0.0740306,0.525397,0][-0.443772,0.542797,-1.62][-0.400896,0.080194,-0.912607][0.071991,0.552414,0][-0.443772,0.542797,-1.62][-0.400896,0.080194,-0.912607][0.071991,0.552414,0][-0.389216,0.757745,-1.61611][-0.402092,0.143537,-0.904278][0.0716715,0.573037,0][-0.337254,0.575008,-1.65821][-0.349364,0.0864362,-0.932992][0.0751244,0.555505,0][-1.2567,0.515414,-0.0996576][-0.987368,0.143972,0.0661575][0.419298,0.877262,0][-1.11709,0.949146,-0.00836398][-0.894515,0.438394,0.0874851][0.428334,0.918567,0][-1.19237,0.762257,-0.436329][-0.936248,0.331264,-0.117062][0.392594,0.90196,0][-1.27512,-1.30789,-0.332342][-0.99212,0.0976699,-0.0784719][0.393695,0.703163,0][-1.2567,0.515414,-0.0996576][-0.987368,0.143972,0.0661575][0.419298,0.877262,0][-1.22575,0.515414,-0.559679][-0.971755,0.134591,-0.193849][0.381601,0.878671,0][-0.210105,1.47079,-1.02556][-2.80156e-007,0.069283,0.997597][0.421416,0.286097,0][-7.87606e-007,1.10775,-1.00034][-2.80156e-007,0.069283,0.997597][0.386585,0.265939,0][0.210103,1.47079,-1.02556][-2.80156e-007,0.069283,0.997597][0.421416,0.24578,0][-6.9002e-007,1.56803,-1.37623][2.8301e-007,-0.069283,-0.997597][0.264756,0.458185,0][0.210103,1.20499,-1.35102][2.8301e-007,-0.069283,-0.997597][0.244598,0.423354,0][-0.210105,1.20499,-1.35102][2.8301e-007,-0.069283,-0.997597][0.284914,0.423354,0][-0.707625,-0.53337,-1.47636][-0.492583,0.00496175,-0.870251][0.0602115,0.449163,0][-0.716874,-0.254214,-1.46898][-0.582963,0.0505666,-0.810924][0.0596065,0.475946,0][-0.266332,-0.888854,-1.68814][-0.301919,0.013551,-0.953237][0.0775783,0.415056,0][-1.33753,-1.60048,-0.104089][-0.918716,0.388766,0.0694387][0.411351,0.674411,0][-1.3019,-1.59856,-0.560514][-0.906117,0.391241,-0.160878][0.373956,0.675993,0][-1.53999,-1.8949,-0.21537][-2.40996,1.16764,-0.124181][0.401177,0.646524,0][-1.53999,-1.8949,-0.21537][-2.40996,1.16764,-0.124181][0.401177,0.646524,0][-1.3695,-1.75141,0.244966][-2.80691,1.44126,0.724182][0.439414,0.658871,0][-1.33753,-1.60048,-0.104089][-0.918716,0.388766,0.0694387][0.411351,0.674411,0][-1.45095,-1.90245,-0.633891][-3.02135,0.8758,-1.02251][0.366854,0.647081,0][-1.19936,-1.47062,-0.785914][-0.914613,0.20532,-0.348321][0.355944,0.68895,0][-1.15578,-1.7734,-1.09173][-0.802455,0.146532,-0.578441][0.329798,0.660857,0][-1.15578,-1.7734,-1.09173][-0.802455,0.146532,-0.578441][0.329798,0.660857,0][-1.08768,-1.95055,-1.18364][-2.22337,0.106328,-2.14946][0.321632,0.644154,0][-1.45095,-1.90245,-0.633891][-3.02135,0.8758,-1.02251][0.366854,0.647081,0][0.901887,-1.2068,-1.26959][0.741243,0.0222385,-0.670869][0.0458011,0.917461,0][0.835631,-0.151484,-1.34036][2.61439,0.0496708,-2.89224][0.0401849,0.8162,0][0.954958,0.0791984,-1.2004][3.81441,0.104506,-2.43555][0.0517026,0.794089,0][0.000386313,0.646422,-1.70947][-0.0369996,0.105853,-0.993693][0.0793273,0.562356,0][0.0839317,0.775773,-1.68615][0.293189,0.142425,-0.945386][0.0774155,0.574767,0][0.0695438,0.515303,-1.71718][0.0819578,0.0337311,-0.996065][0.07996,0.549776,0][0.0695438,0.515303,-1.71718][0.0819578,0.0337311,-0.996065][0.07996,0.549776,0][0.317536,0.234107,-1.68452][0.278028,0.00168939,-0.960572][0.0772816,0.522797,0][0.00516976,0.464464,-1.72036][-0.0132704,-0.000881838,-0.999912][0.0802206,0.544899,0][0.000386313,0.646422,-1.70947][-0.0369996,0.105853,-0.993693][0.0793273,0.562356,0][0.0695438,0.515303,-1.71718][0.0819578,0.0337311,-0.996065][0.07996,0.549776,0][0.00516976,0.464464,-1.72036][-0.0132704,-0.000881838,-0.999912][0.0802206,0.544899,0][-0.843096,-1.47062,0.975845][-0.753399,0.174591,0.633962][0.500313,0.683553,0][-1.1074,-1.7113,0.724028][-2.55656,1.33606,1.40643][0.478815,0.661249,0][-0.832704,-1.74362,1.10423][-2.17945,0.927834,2.14423][0.509855,0.656985,0][-0.957686,-0.247122,-1.23837][-0.730974,-0.00466953,-0.682389][0.138102,0.476626,0][-0.815146,-0.889408,-1.38694][-0.59718,0.019692,-0.801865][0.125919,0.415003,0][-0.950325,-0.675313,-1.24664][-0.780205,-0.0574984,-0.622876][0.137423,0.435544,0][-0.950325,-0.675313,-1.24664][-0.780205,-0.0574984,-0.622876][0.137423,0.435544,0][-0.815146,-0.889408,-1.38694][-0.59718,0.019692,-0.801865][0.125919,0.415003,0][-1.17252,-0.751775,-0.908443][-0.826936,-0.0665344,-0.558346][0.165156,0.428208,0][0.210103,1.2149,0.971305][0.816497,-0.465236,-0.34189][0.0981982,0.180786,0][-1.28613e-006,1.09988,0.626048][0.816497,-0.465236,-0.34189][0.118356,0.169751,0][0.210103,1.46373,0.632697][0.816497,-0.465236,-0.34189][0.0981982,0.20466,0][-0.210105,1.2149,0.971305][5.67288e-007,-0.0182704,0.999833][0.349185,0.396458,0][0.210103,1.2149,0.971305][0.816497,-0.465236,-0.34189][0.349185,0.356142,0][-1.34454e-006,1.57875,0.977954][5.67288e-007,-0.0182704,0.999833][0.384094,0.3763,0][0.210102,-0.327795,1.29921][0,-0.812566,-0.582869][0.360105,0.525694,0][-0.210105,-0.327795,1.29921][0,-0.812566,-0.582869][0.360105,0.485378,0][-1.40256e-006,-0.115683,1.00351][0,-0.812566,-0.582869][0.380456,0.505536,0][0.210102,0.0924033,1.30206][0.816497,-0.00391161,0.577337][0.607918,0.19229,0][-1.54833e-006,-0.119708,1.59776][0.816497,-0.0039116,0.577337][0.58367,0.212448,0][0.210102,-0.327795,1.29921][0,-0.812566,-0.582869][0.608152,0.19229,0][-1.54833e-006,-0.119708,1.59776][0.816497,-0.0039116,0.577337][0.58367,0.212448,0][0.210102,0.0924033,1.30206][0.816497,-0.00391161,0.577337][0.607918,0.19229,0][-0.210105,0.0924033,1.30206][0,0.812567,0.582868][0.607918,0.232606,0][-1.40256e-006,-0.115683,1.00351][0,-0.812566,-0.582869][0.380456,0.505536,0][-0.210105,-0.327795,1.29921][0,-0.812566,-0.582869][0.360105,0.485378,0][-0.210105,0.0924033,1.30206][0,0.812567,0.582868][0.40042,0.485378,0][-0.210105,-0.860437,1.27708][-0.816497,-0.0167123,0.577108][0.343508,0.0634313,0][-1.54637e-006,-0.659022,1.58017][-0.816497,-0.0167123,0.577108][0.368362,0.0432732,0][-0.210105,-0.440405,1.28924][-0.816497,-0.0167123,0.577108][0.344505,0.0634313,0][0.210102,-0.860437,1.27708][0,-0.799442,-0.600744][0.30248,0.458185,0][-0.210105,-0.860437,1.27708][-0.816497,-0.0167123,0.577108][0.30248,0.417868,0][-1.43559e-006,-0.64182,0.986154][0,-0.799442,-0.600744][0.323455,0.438027,0][-1.41037e-006,-0.372275,0.996635][-0.816496,0.0229908,-0.576893][0.486541,0.178469,0][-0.210105,-0.594044,1.28516][-0.816496,0.0229908,-0.576893][0.517334,0.174232,0][-0.210105,-0.17417,1.3019][-0.816496,0.0229908,-0.576893][0.518248,0.173208,0][-1.55676e-006,-0.395939,1.59043][-3.45766e-007,0.792859,0.609406][0.386585,0.0695535,0][0.210102,-0.17417,1.3019][-3.45766e-007,0.792858,0.609406][0.387293,0.0384784,0][-0.210105,-0.17417,1.3019][-0.816496,0.0229908,-0.576893][0.417378,0.0653168,0][-0.210105,-0.0610455,1.30681][-3.53691e-007,-0.781924,0.623373][0.486541,0.072838,0][0.210102,-0.0610455,1.30681][-3.53691e-007,-0.781924,0.623373][0.486541,0.0325217,0][-1.52776e-006,0.165807,1.59136][-3.53691e-007,-0.781924,0.623373][0.508306,0.0526799,0][-0.210105,0.358466,1.28263][-0.816496,-0.0332191,-0.576394][0.226613,0.293659,0][-1.40129e-006,0.131614,0.998082][-0.816496,-0.0332191,-0.576394][0.204848,0.313817,0][-0.210105,-0.0610455,1.30681][-3.53691e-007,-0.781924,0.623373][0.186364,0.293659,0][-1.40129e-006,0.131614,0.998082][-0.816496,-0.0332191,-0.576394][0.204848,0.313817,0][-0.210105,0.358466,1.28263][-0.816496,-0.0332191,-0.576394][0.226613,0.293659,0][0.210102,0.358466,1.28263][0,0.781924,-0.623373][0.226613,0.333975,0][-1.52776e-006,0.165807,1.59136][-3.53691e-007,-0.781924,0.623373][0.0562788,0.0792783,0][0.210102,-0.0610455,1.30681][-3.53691e-007,-0.781924,0.623373][0.0796128,0.0591201,0][0.210102,0.358466,1.28263][0,0.781924,-0.623373][0.0815955,0.0591201,0][-1.54637e-006,-0.659022,1.58017][-0.816497,-0.0167123,0.577108][0.0318667,0.59063,0][0.210102,-0.440405,1.28924][0,0.799442,0.600744][0.0108918,0.610789,0][-0.210105,-0.440405,1.28924][-0.816497,-0.0167123,0.577108][0.0108918,0.570472,0][-1.43559e-006,-0.64182,0.986154][0,-0.799442,-0.600744][0.323455,0.438027,0][0.210102,-0.440405,1.28924][0,0.799442,0.600744][0.34278,0.458185,0][0.210102,-0.860437,1.27708][0,-0.799442,-0.600744][0.30248,0.458185,0][0.210102,-0.594044,1.28516][0,-0.792858,-0.609406][0.487249,0.147394,0][-0.210105,-0.594044,1.28516][-0.816496,0.0229908,-0.576893][0.517334,0.174232,0][-1.41037e-006,-0.372275,0.996635][-0.816496,0.0229908,-0.576893][0.486541,0.178469,0][0.210102,-0.17417,1.3019][-3.45766e-007,0.792858,0.609406][0.488163,0.14637,0][-1.55676e-006,-0.395939,1.59043][-3.45766e-007,0.792859,0.609406][0.518956,0.142133,0][0.210102,-0.594044,1.28516][0,-0.792858,-0.609406][0.487249,0.147394,0][-1.43754e-006,-0.932444,0.987457][4.4545e-007,0.785096,-0.619374][0.263233,0.3763,0][-0.210105,-0.707047,1.27316][4.4545e-007,0.785096,-0.619374][0.284859,0.356142,0][0.210102,-0.707047,1.27316][4.4545e-007,0.785096,-0.619374][0.284859,0.396458,0][-1.56416e-006,-0.90128,1.5809][-0.816496,0.0302773,0.576556][0.437402,0.103137,0][-0.210105,-0.707047,1.27316][4.4545e-007,0.785096,-0.619374][0.462638,0.123296,0][-0.210105,-1.12668,1.2952][-0.816496,0.0302773,0.576556][0.460831,0.123296,0][-0.210105,-1.12668,1.2952][-0.816496,0.0302773,0.576556][0.587672,0.396458,0][0.210102,-1.12668,1.2952][0,-0.785096,0.619374][0.587672,0.356142,0][-1.56416e-006,-0.90128,1.5809][-0.816496,0.0302773,0.576556][0.609298,0.3763,0][-0.210105,-0.707047,1.27316][4.4545e-007,0.785096,-0.619374][0.284859,0.356142,0][-1.43754e-006,-0.932444,0.987457][4.4545e-007,0.785096,-0.619374][0.263233,0.3763,0][-0.210105,-1.12668,1.2952][-0.816496,0.0302773,0.576556][0.244598,0.356142,0][-1.51081e-006,0.457819,1.56175][-0.816496,0.0855733,0.570973][0.520364,0.59063,0][-0.210105,0.621562,1.23675][-0.816496,0.0855733,0.570973][0.536074,0.610789,0][-0.210105,0.205996,1.29904][-0.816496,0.0855733,0.570973][0.496203,0.610789,0][-1.38749e-006,0.369739,0.974046][0,0.721905,-0.691992][0.244598,0.0417748,0][-0.210105,0.621562,1.23675][-0.816496,0.0855733,0.570973][0.250779,0.01,0][0.210102,0.621562,1.23675][0,0.721905,-0.691992][0.250779,0.01,0][-1.61832e-006,-1.54832,1.72363][-0.816497,0.279528,0.505171][0.458479,0.56815,0][-0.210105,-1.50834,1.36192][-0.816497,0.279528,0.505171][0.438321,0.597811,0][-0.210105,-1.87602,1.56537][-0.816497,0.279528,0.505171][0.438321,0.581127,0][-1.51681e-006,-1.83604,1.20366][2.4675e-007,0.434891,-0.900483][0.458479,0.610789,0][-0.210105,-1.50834,1.36192][-0.816497,0.279528,0.505171][0.438321,0.597811,0][0.210102,-1.50834,1.36192][2.4675e-007,0.434891,-0.900483][0.478637,0.597811,0][-1.44619e-006,1.04216,1.40105][0.816496,0.224715,0.531824][0.264404,0.480806,0][0.210102,0.732977,1.20913][0.816496,0.224715,0.531824][0.284562,0.496544,0][0.210102,1.12005,1.04558][0.816496,0.224715,0.531824][0.284562,0.509956,0][-1.35445e-006,0.810864,0.85365][0,0.527398,-0.849618][0.264404,0.525694,0][-0.210105,1.12005,1.04558][0,0.527398,-0.849618][0.244246,0.509956,0][0.210102,1.12005,1.04558][0.816496,0.224715,0.531824][0.284562,0.509956,0][-0.210105,-1.64575,1.42447][0,-0.664931,0.746904][0.565487,0.362571,0][0.210102,-1.64575,1.42447][0,-0.664931,0.746904][0.536426,0.390514,0][-1.59969e-006,-1.37394,1.66645][0,-0.664931,0.746904][0.537203,0.362239,0][-0.210105,-1.23641,1.32953][-0.816497,-0.13045,-0.56242][0.571306,0.521052,0][-1.47994e-006,-1.50822,1.08755][-0.816497,-0.13045,-0.56242][0.599208,0.525694,0][-0.210105,-1.64575,1.42447][0,-0.664931,0.746904][0.566829,0.514682,0][-1.47994e-006,-1.50822,1.08755][-0.816497,-0.13045,-0.56242][0.599208,0.525694,0][-0.210105,-1.23641,1.32953][-0.816497,-0.13045,-0.56242][0.571306,0.521052,0][0.210102,-1.23641,1.32953][0,0.664931,-0.746905][0.60429,0.497869,0][-1.59969e-006,-1.37394,1.66645][0,-0.664931,0.746904][0.571911,0.486857,0][0.210102,-1.64575,1.42447][0,-0.664931,0.746904][0.599813,0.491499,0][0.210102,-1.23641,1.32953][0,0.664931,-0.746905][0.60429,0.497869,0][-1.217e-006,1.85469,0.411332][2.60466e-007,0.790789,-0.612088][0.343508,0.303663,0][0.210103,1.63194,0.123555][2.60466e-007,0.790789,-0.612088][0.372851,0.305096,0][-0.210105,1.63194,0.123555][2.60466e-007,0.790789,-0.612088][0.34379,0.33304,0][-0.210105,1.50912,0.525412][-2.69391e-007,0.313486,0.949593][0.186364,0.380617,0][0.210103,1.50912,0.525413][-2.69391e-007,0.313486,0.949593][0.219348,0.357434,0][-1.217e-006,1.85469,0.411332][2.60466e-007,0.790789,-0.612088][0.221921,0.396151,0][-0.210105,0.205996,1.29904][-0.816496,0.0855733,0.570973][0.496203,0.610789,0][0.210102,0.205996,1.29904][0,-0.721905,0.691993][0.496203,0.570472,0][-1.51081e-006,0.457819,1.56175][-0.816496,0.0855733,0.570973][0.520364,0.59063,0][0.210102,0.205996,1.29904][0,-0.721905,0.691993][0.275534,0.0416698,0][-1.38749e-006,0.369739,0.974046][0,0.721905,-0.691992][0.244598,0.0417748,0][0.210102,0.621562,1.23675][0,0.721905,-0.691992][0.250779,0.01,0][1.33109,-1.65917,-0.556154][0.88749,0.395908,-0.235836][0.104225,0.960971,0][1.45096,-1.90245,-0.633891][3.12732,0.825249,-1.24073][0.0978069,0.984301,0][1.08631,-1.7734,-1.18364][0.594338,0.340087,-0.728769][0.052749,0.971836,0][1.53999,-1.8949,-0.21537][2.51739,1.05214,-0.165581][0.132128,0.98364,0][1.45096,-1.90245,-0.633891][3.12732,0.825249,-1.24073][0.0978069,0.984301,0][1.33109,-1.65917,-0.556154][0.88749,0.395908,-0.235836][0.104225,0.960971,0][-0.210105,-1.38605,1.36455][-4.14561e-007,-0.682746,0.730656][0.567114,0.0908815,0][0.210102,-1.38605,1.36455][-4.14561e-007,-0.682746,0.730656][0.538053,0.118825,0][-1.57014e-006,-1.12016,1.61301][-4.14561e-007,-0.682746,0.730656][0.538462,0.0901667,0][0.210102,-1.38605,1.36455][-4.14561e-007,-0.682746,0.730656][0.217478,0.0230592,0][-1.46694e-006,-1.24044,1.03104][0.816497,-0.116852,-0.565401][0.219312,0.0569845,0][0.210102,-0.974544,1.2795][0.816497,-0.116852,-0.565401][0.221913,0.0284415,0][-1.46694e-006,-1.24044,1.03104][0.816497,-0.116852,-0.565401][0.219312,0.0569845,0][-0.210105,-0.974544,1.2795][0,0.682747,-0.730655][0.190799,0.0540798,0][0.210102,-0.974544,1.2795][0.816497,-0.116852,-0.565401][0.221913,0.0284415,0][-1.57014e-006,-1.12016,1.61301][-4.14561e-007,-0.682746,0.730656][0.188964,0.0201545,0][0.210102,-1.38605,1.36455][-4.14561e-007,-0.682746,0.730656][0.217478,0.0230592,0][0.210102,-0.974544,1.2795][0.816497,-0.116852,-0.565401][0.221913,0.0284415,0][-0.210105,1.59597,0.27234][0,-0.710279,0.70392][0.186436,0.268937,0][-1.14566e-006,1.3398,0.0138621][0,-0.710279,0.70392][0.186364,0.23715,0][0.210103,1.59597,0.27234][0,-0.710279,0.70392][0.21755,0.243299,0][-1.14566e-006,1.3398,0.0138621][0,-0.710279,0.70392][0.549249,0.567454,0][-0.210105,1.66889,-0.141492][3.84812e-007,-0.426902,-0.904298][0.584884,0.579002,0][0.210103,1.66889,-0.141492][3.84812e-007,-0.426902,-0.904298][0.55377,0.60464,0][-1.05048e-006,1.36087,-0.424789][2.07332e-007,-0.682553,-0.730836][0.549263,0.525694,0][-0.210105,1.62683,-0.673177][2.07332e-007,-0.682553,-0.730836][0.51969,0.511857,0][0.210103,1.62683,-0.673177][2.07332e-007,-0.682553,-0.730836][0.51969,0.511857,0][-0.210105,1.6837,-0.256836][-2.43613e-007,-0.461521,0.887129][0.547871,0.491825,0][-1.05048e-006,1.36087,-0.424789][2.07332e-007,-0.682553,-0.730836][0.549263,0.525694,0][0.210103,1.6837,-0.256836][-2.43613e-007,-0.461521,0.887129][0.547871,0.491825,0][-0.266332,-0.361261,-1.68814][-0.282174,-0.0103642,-0.959307][0.0775783,0.465676,0][-0.716874,-0.254214,-1.46898][-0.582963,0.0505666,-0.810924][0.0596065,0.475946,0][-0.513709,-0.174527,-1.59637][-0.461702,-0.113027,-0.879804][0.0700532,0.483592,0][-0.716874,-0.254214,-1.46898][-0.582963,0.0505666,-0.810924][0.119191,0.475946,0][-0.707625,-0.53337,-1.47636][-0.492583,0.00496175,-0.870251][0.118586,0.449163,0][-0.85092,-0.151484,-1.35264][-0.696516,-1.98515e-005,-0.717542][0.128731,0.485802,0][-0.85092,-0.151484,-1.35264][-0.696516,-1.98515e-005,-0.717542][0.128731,0.485802,0][-0.513709,-0.174527,-1.59637][-0.461702,-0.113027,-0.879804][0.108744,0.483591,0][-0.716874,-0.254214,-1.46898][-0.582963,0.0505666,-0.810924][0.119191,0.475946,0][-1.36021e-006,0.597212,0.92676][0,0.638047,-0.769998][0.431465,0.342967,0][-0.210105,0.877423,1.15895][0,0.638047,-0.769998][0.404024,0.338981,0][0.210102,0.877423,1.15895][0,0.638047,-0.769998][0.437009,0.315798,0][-1.49583e-006,0.751914,1.50053][0.816496,0.150298,0.557444][0.40441,0.304473,0][0.210102,0.471703,1.26834][0.816496,0.150298,0.557444][0.431851,0.308459,0][0.210102,0.877423,1.15895][0,0.638047,-0.769998][0.437009,0.315798,0][-0.210105,0.471703,1.26834][0,-0.638046,0.769998][0.515603,0.0904041,0][0.210102,0.471703,1.26834][0.816496,0.150298,0.557444][0.486541,0.118348,0][-1.49583e-006,0.751914,1.50053][0.816496,0.150298,0.557444][0.487875,0.0906508,0][-0.210105,0.877423,1.15895][0,0.638047,-0.769998][0.404024,0.338981,0][-1.36021e-006,0.597212,0.92676][0,0.638047,-0.769998][0.431465,0.342967,0][-0.210105,0.471703,1.26834][0,-0.638046,0.769998][0.398866,0.331642,0][-1.53723e-007,-1.2068,1.32024][-0.0246463,0.15666,0.987345][0.258175,0.917854,0][0.303057,-1.47062,1.3408][0.229393,0.275822,0.933435][0.259814,0.943169,0][0.199339,-0.960855,1.2707][0.265623,0.0658334,0.961826][0.254156,0.89425,0][0.668312,-1.30789,1.11335][0.621901,0.151649,0.768272][0.241192,0.927521,0][0.627881,-1.78759,1.30145][1.93259,1.04121,2.37078][0.256531,0.973574,0][0.987144,-1.47062,0.778274][0.805856,0.151512,0.572399][0.213685,0.943084,0][-0.210105,1.65057,0.0105852][-1.2073e-007,0.524947,0.851135][0.343963,0.252506,0][0.210103,1.65057,0.0105853][-1.2073e-007,0.524947,0.851135][0.343963,0.252506,0][-1.08136e-006,1.96031,-0.180449][-1.2073e-007,0.524947,0.851135][0.343508,0.286097,0][-1.08136e-006,1.96031,-0.180449][-1.2073e-007,0.524947,0.851135][0.343508,0.286097,0][0.210103,1.67695,-0.408793][2.20893e-007,0.627475,-0.778637][0.372955,0.271177,0][-0.210105,1.67695,-0.408794][2.20893e-007,0.627475,-0.778637][0.372955,0.271177,0][-1.09481e-006,1.36721,-0.21776][2.4146e-007,-0.524947,-0.851135][0.37341,0.237587,0][-0.210105,1.67695,-0.408794][2.20893e-007,0.627475,-0.778637][0.372955,0.271177,0][0.210103,1.67695,-0.408793][2.20893e-007,0.627475,-0.778637][0.372955,0.271177,0][-0.210105,1.65057,0.0105852][-1.2073e-007,0.524947,0.851135][0.343963,0.252506,0][-1.09481e-006,1.36721,-0.21776][2.4146e-007,-0.524947,-0.851135][0.37341,0.237587,0][0.210103,1.65057,0.0105853][-1.2073e-007,0.524947,0.851135][0.343963,0.252506,0][-0.210105,0.732977,1.20913][0,-0.527398,0.849618][0.244246,0.496544,0][0.210102,0.732977,1.20913][0.816496,0.224715,0.531824][0.284562,0.496544,0][-1.44619e-006,1.04216,1.40105][0.816496,0.224715,0.531824][0.264404,0.480806,0][-0.210105,1.12005,1.04558][0,0.527398,-0.849618][0.244246,0.509956,0][-1.35445e-006,0.810864,0.85365][0,0.527398,-0.849618][0.264404,0.525694,0][-0.210105,0.732977,1.20913][0,-0.527398,0.849618][0.244246,0.496544,0][-1.01183e-006,1.94966,-0.505224][2.51671e-007,0.461521,-0.887129][0.518298,0.477987,0][0.210103,1.62683,-0.673177][2.07332e-007,-0.682553,-0.730836][0.51969,0.511857,0][-0.210105,1.62683,-0.673177][2.07332e-007,-0.682553,-0.730836][0.51969,0.511857,0][-0.210105,1.6837,-0.256836][-2.43613e-007,-0.461521,0.887129][0.547871,0.491825,0][0.210103,1.6837,-0.256836][-2.43613e-007,-0.461521,0.887129][0.547871,0.491825,0][-1.01183e-006,1.94966,-0.505224][2.51671e-007,0.461521,-0.887129][0.518298,0.477987,0][-1.28613e-006,1.09988,0.626048][0.816497,-0.465236,-0.34189][0.118356,0.169751,0][-0.210105,1.46373,0.632697][0,0.01827,-0.999833][0.138514,0.20466,0][0.210103,1.46373,0.632697][0.816497,-0.465236,-0.34189][0.0981982,0.20466,0][-1.34454e-006,1.57875,0.977954][5.67288e-007,-0.0182704,0.999833][0.118356,0.215695,0][-0.210105,1.46373,0.632697][0,0.01827,-0.999833][0.138514,0.20466,0][-0.210105,1.2149,0.971305][5.67288e-007,-0.0182704,0.999833][0.138514,0.180786,0][-0.210105,1.59597,0.27234][0,-0.710279,0.70392][0.186436,0.268937,0][0.210103,1.59597,0.27234][0,-0.710279,0.70392][0.21755,0.243299,0][-1.14666e-006,1.92505,0.116986][-1.28271e-007,0.426903,0.904298][0.222071,0.280485,0][-1.14666e-006,1.92505,0.116986][-1.28271e-007,0.426903,0.904298][0.584956,0.610789,0][0.210103,1.66889,-0.141492][3.84812e-007,-0.426902,-0.904298][0.55377,0.60464,0][-0.210105,1.66889,-0.141492][3.84812e-007,-0.426902,-0.904298][0.584884,0.579002,0][-0.210105,1.58788,-0.783464][-5.66401e-007,-0.111878,0.993722][0.279294,0.0952657,0][-9.69379e-007,1.22625,-0.824178][-5.66401e-007,-0.111878,0.993722][0.244598,0.0751076,0][0.210103,1.58788,-0.783464][-5.66401e-007,-0.111878,0.993722][0.279294,0.0549494,0][-9.69379e-007,1.22625,-0.824178][-5.66401e-007,-0.111878,0.993722][0.206522,0.475751,0][-0.210105,1.38518,-1.15155][2.47787e-007,-0.899597,-0.43672][0.22668,0.490999,0][0.210103,1.38518,-1.15155][2.47787e-007,-0.899597,-0.43672][0.186364,0.490999,0][-8.88817e-007,1.74681,-1.11084][5.63821e-007,0.111878,-0.993722][0.206522,0.525694,0][0.210103,1.38518,-1.15155][2.47787e-007,-0.899597,-0.43672][0.186364,0.490999,0][-0.210105,1.38518,-1.15155][2.47787e-007,-0.899597,-0.43672][0.22668,0.490999,0][-0.210105,1.58788,-0.783464][-5.66401e-007,-0.111878,0.993722][0.22668,0.510446,0][0.210103,1.58788,-0.783464][-5.66401e-007,-0.111878,0.993722][0.186364,0.510446,0][-8.88817e-007,1.74681,-1.11084][5.63821e-007,0.111878,-0.993722][0.206522,0.525694,0][-1.19134e-006,1.28637,0.237636][4.04087e-007,-0.313486,-0.949593][0.3813,0.342967,0][-0.210105,1.63194,0.123555][2.60466e-007,0.790789,-0.612088][0.34379,0.33304,0][0.210103,1.63194,0.123555][2.60466e-007,0.790789,-0.612088][0.372851,0.305096,0][-0.210105,1.50912,0.525412][-2.69391e-007,0.313486,0.949593][0.186364,0.380617,0][-1.19134e-006,1.28637,0.237636][4.04087e-007,-0.313486,-0.949593][0.190567,0.351541,0][0.210103,1.50912,0.525413][-2.69391e-007,0.313486,0.949593][0.219348,0.357434,0][-9.46953e-007,1.87537,-0.819132][5.43788e-007,0.285376,-0.958416][0.186364,0.128298,0][0.210103,1.52659,-0.922983][5.43788e-007,0.285376,-0.958416][0.224088,0.138447,0][-0.210105,1.52659,-0.922983][5.43788e-007,0.285376,-0.958416][0.195026,0.166391,0][-0.210105,1.6612,-0.524918][0,0.808478,0.588527][0.309554,0.520474,0][0.210103,1.6612,-0.524918][0,0.808478,0.588527][0.342539,0.497292,0][-9.46953e-007,1.87537,-0.819132][5.43788e-007,0.285376,-0.958416][0.337862,0.525694,0][-0.210105,1.6612,-0.524918][0,0.808478,0.588527][0.309554,0.520474,0][-1.00832e-006,1.31242,-0.628769][-4.87227e-007,-0.285376,0.958416][0.306805,0.481506,0][0.210103,1.6612,-0.524918][0,0.808478,0.588527][0.342539,0.497292,0][-1.00832e-006,1.31242,-0.628769][-4.87227e-007,-0.285376,0.958416][0.223799,0.167231,0][-0.210105,1.52659,-0.922983][5.43788e-007,0.285376,-0.958416][0.195026,0.166391,0][0.210103,1.52659,-0.922983][5.43788e-007,0.285376,-0.958416][0.224088,0.138447,0][-0.210105,-1.87602,1.56537][-0.816497,0.279528,0.505171][0.438321,0.581127,0][0.210102,-1.87602,1.56537][0,-0.434891,0.900483][0.478637,0.581127,0][-1.61832e-006,-1.54832,1.72363][-0.816497,0.279528,0.505171][0.458479,0.56815,0][0.210102,-1.87602,1.56537][0,-0.434891,0.900483][0.478637,0.581127,0][-1.51681e-006,-1.83604,1.20366][2.4675e-007,0.434891,-0.900483][0.458479,0.610789,0][0.210102,-1.50834,1.36192][2.4675e-007,0.434891,-0.900483][0.478637,0.597811,0][-0.210105,0.99302,1.1268][0,-0.274533,0.961578][0.306226,0.396458,0][0.210102,0.99302,1.1268][0,-0.274533,0.961578][0.306226,0.356142,0][-1.40663e-006,1.34295,1.22671][0,-0.274533,0.961578][0.298033,0.3763,0][0.210102,0.99302,1.1268][0,-0.274533,0.961578][0.306226,0.356142,0][-1.32042e-006,0.970569,0.763587][0.816497,-0.361781,-0.449942][0.336011,0.3763,0][0.210103,1.3205,0.863493][0.816497,-0.361781,-0.449942][0.327818,0.356142,0][-1.32042e-006,0.970569,0.763587][0.816497,-0.361781,-0.449942][0.336011,0.3763,0][-0.210105,1.3205,0.863493][0,0.274533,-0.961578][0.327818,0.396458,0][0.210103,1.3205,0.863493][0.816497,-0.361781,-0.449942][0.327818,0.356142,0][-1.40663e-006,1.34295,1.22671][0,-0.274533,0.961578][0.298033,0.3763,0][0.210102,0.99302,1.1268][0,-0.274533,0.961578][0.306226,0.356142,0][0.210103,1.3205,0.863493][0.816497,-0.361781,-0.449942][0.327818,0.356142,0][0.277334,-0.361262,-1.69524][0.242798,-0.0120844,-0.970002][0.0781606,0.465676,0][0.201374,-0.216788,-1.70998][0.16782,0.0107713,-0.985759][0.0793694,0.479537,0][0.436691,-0.181058,-1.64758][0.406421,-0.0849116,-0.909732][0.0742525,0.482965,0][0.436691,-0.181058,-1.64758][0.406421,-0.0849116,-0.909732][0.0742525,0.482965,0][0.724857,-0.254213,-1.49213][0.545002,0.0367707,-0.837628][0.0615049,0.475946,0][0.277334,-0.361262,-1.69524][0.242798,-0.0120844,-0.970002][0.0781606,0.465676,0][0.277334,-0.888854,-1.69524][0.274336,0.00650612,-0.961612][0.0781606,0.415056,0][0.201374,-0.216788,-1.70998][0.16782,0.0107713,-0.985759][0.0793694,0.479537,0][0.277334,-0.361262,-1.69524][0.242798,-0.0120844,-0.970002][0.0781606,0.465676,0][0.976712,0.762257,-1.04563][0.793027,0.338086,-0.50676][0.0645158,0.728577,0][0.975111,1.08009,-0.687935][0.750978,0.582682,-0.310667][0.0939042,0.698137,0][1.14819,0.762257,-0.651864][0.920034,0.306793,-0.243753][0.0968057,0.728637,0][1.14819,0.762257,-0.651864][0.920034,0.306793,-0.243753][0.0968057,0.728637,0][1.0522,1.08009,-0.312255][0.832823,0.552058,-0.0404729][0.124711,0.698194,0][1.24115,0.61539,-0.329653][0.982965,0.169541,-0.0709662][0.123202,0.742777,0][0.277334,-0.888854,-1.69524][0.274336,0.00650612,-0.961612][0.0781606,0.415056,0][0.724857,-0.254213,-1.49213][0.545002,0.0367707,-0.837628][0.0615049,0.475946,0][0.301358,-1.14172,-1.68946][0.282284,0.00729514,-0.959303][0.0776865,0.390796,0][0.306985,-1.90065,-1.68998][0.175271,1.54719e-005,-0.98452][0.0777291,0.317981,0][0.277334,-0.888854,-1.69524][0.274336,0.00650612,-0.961612][0.0781606,0.415056,0][0.301358,-1.14172,-1.68946][0.282284,0.00729514,-0.959303][0.0776865,0.390796,0][0.209227,0.971228,-1.61253][0.108941,0.322667,-0.940222][0.071378,0.593519,0][0.0695438,0.515303,-1.71718][0.0819578,0.0337311,-0.996065][0.07996,0.549776,0][0.0839317,0.775773,-1.68615][0.293189,0.142425,-0.945386][0.0774155,0.574767,0][0.000498793,1.03381,-1.6026][-0.0139399,0.411202,-0.911438][0.0705637,0.599524,0][0.209227,0.971228,-1.61253][0.108941,0.322667,-0.940222][0.071378,0.593519,0][0.0839317,0.775773,-1.68615][0.293189,0.142425,-0.945386][0.0774155,0.574767,0][-0.915042,0.949146,-0.993207][-0.727358,0.458521,-0.510598][0.34763,0.921584,0][-1.04169,0.713815,-0.962241][-0.850501,0.248749,-0.463434][0.349324,0.898926,0][-1.0757,0.949146,-0.624304][-0.856923,0.467479,-0.217132][0.37786,0.920454,0][-1.19237,0.762257,-0.436329][-0.936248,0.331264,-0.117062][0.392594,0.90196,0][-1.22575,0.515414,-0.559679][-0.971755,0.134591,-0.193849][0.381601,0.878671,0][-1.2567,0.515414,-0.0996576][-0.987368,0.143972,0.0661575][0.419298,0.877262,0][1.53999,-1.8949,-0.21537][2.51739,1.05214,-0.165581][0.132128,0.98364,0][1.33753,-1.60048,-0.104088][0.915702,0.397816,0.0568504][0.141306,0.955409,0][1.3695,-1.75141,0.244967][2.7948,1.47213,0.711385][0.169903,0.969943,0][0.559599,1.31053,-0.981967][0.480523,0.765284,-0.428297][0.0698336,0.675984,0][0.34514,1.53461,-0.68818][0.305776,0.909114,-0.282867][0.0939648,0.654529,0][0.709623,1.40682,-0.485138][0.564542,0.806987,-0.17339][0.110592,0.66682,0][0.709623,1.40682,-0.485138][0.564542,0.806987,-0.17339][0.110592,0.66682,0][0.765307,1.03746,-1.11078][0.652511,0.544355,-0.52717][0.0592221,0.702163,0][0.559599,1.31053,-0.981967][0.480523,0.765284,-0.428297][0.0698336,0.675984,0][0.210176,1.61733,-0.461277][0.189364,0.972738,-0.133871][0.112586,0.646627,0][0.18502,1.63643,-0.105072][0.165361,0.98504,0.0484885][0.141799,0.644849,0][0.576301,1.51252,-0.215371][0.471986,0.881603,-0.00242745][0.132733,0.65672,0][0.902002,-0.254767,-1.3424][0.688534,-0.014281,-0.725064][0.0492264,0.475893,0][0.652455,-0.62263,-1.54127][0.356479,0.0537462,-0.932756][0.0655346,0.440599,0][0.810913,-0.151484,-1.42545][0.634781,0.00915966,-0.772638][0.0560367,0.485802,0][0.947636,-0.247121,-1.22031][-1.002,0.676313,-0.762346][0.0716234,0.295415,0][0.978298,-0.247121,-1.26061][-1.13922,0.768931,-0.866746][0.0716233,0.298356,0][0.781344,-0.751776,-1.44944][-0.0613434,0.0414044,-0.0466714][0.023205,0.27946,0][0.781344,-0.751776,-1.44944][-0.0613434,0.0414044,-0.0466714][0.023205,0.27946,0][0.756265,-0.751776,-1.40379][-1.32208,0.765431,-0.726326][0.023205,0.277054,0][0.947636,-0.247121,-1.22031][-1.002,0.676313,-0.762346][0.0716234,0.295415,0][-0.527602,1.27545,0.634262][-0.448899,0.72726,0.519213][0.202363,0.679595,0][-0.301104,1.46305,0.476041][-0.182689,0.887215,0.423643][0.189422,0.661571,0][-0.603642,1.40682,0.297757][-0.522172,0.806132,0.278366][0.174792,0.666939,0][-0.603642,1.40682,0.297757][-0.522172,0.806132,0.278366][0.174792,0.666939,0][-0.830841,1.12162,0.490889][-0.664287,0.611697,0.429592][0.190579,0.694331,0][-0.527602,1.27545,0.634262][-0.448899,0.72726,0.519213][0.202363,0.679595,0][-0.976713,1.12162,0.155932][-0.748037,0.635433,0.191483][0.442415,0.934601,0][-1.06503,0.9036,0.30077][-0.86787,0.391969,0.305226][0.453503,0.913253,0][-0.830841,1.12162,0.490889][-0.664287,0.611697,0.429592][0.469864,0.933574,0][0.832867,-0.889408,-1.40763][0.725168,-0.0374215,-0.687554][0.0545756,0.415003,0][0.970938,-0.675312,-1.26888][0.775812,-0.0559282,-0.62848][0.0431981,0.435544,0][1.19129,-0.751775,-0.949062][0.814342,-0.0653707,-0.576691][0.0169718,0.428208,0][0.832867,-0.889408,-1.40763][0.725168,-0.0374215,-0.687554][0.0545756,0.415003,0][0.978298,-0.247121,-1.26061][-1.13922,0.768931,-0.866746][0.0425197,0.476627,0][0.970938,-0.675312,-1.26888][0.775812,-0.0559282,-0.62848][0.0431981,0.435544,0][-1.14602,-1.39554,0.462622][-0.90226,0.139945,0.407852][0.458525,0.692323,0][-1.06153,0.61539,0.545724][-0.874327,0.178976,0.451132][0.472542,0.88487,0][-1.2633,-1.30789,0.0178562][-0.98115,0.0888929,0.171591][0.422393,0.70209,0][-1.2633,-1.30789,0.0178562][-0.98115,0.0888929,0.171591][0.422393,0.70209,0][-1.33753,-1.60048,-0.104089][-0.918716,0.388766,0.0694387][0.411351,0.674411,0][-1.14602,-1.39554,0.462622][-0.90226,0.139945,0.407852][0.458525,0.692323,0][0.349515,0.949146,-1.47394][0.301318,0.507443,-0.807285][0.0294265,0.710581,0][0.520863,1.16198,-1.20983][0.42542,0.647839,-0.631919][0.0511217,0.690201,0][0.622258,0.810082,-1.40342][0.547812,0.373794,-0.748452][0.0351845,0.723934,0][0.622258,0.810082,-1.40342][0.547812,0.373794,-0.748452][0.0351845,0.723934,0][0.425497,0.540444,-1.59832][1.57668,0.977978,-4.85774][0.0191541,0.749775,0][0.349515,0.949146,-1.47394][0.301318,0.507443,-0.807285][0.0294265,0.710581,0][-0.188415,0.979806,-1.60595][-0.0996072,0.35741,-0.928621][0.0708382,0.594342,0][0.000498793,1.03381,-1.6026][-0.0139399,0.411202,-0.911438][0.0705637,0.599524,0][-0.0907039,0.818194,-1.67327][-0.145956,0.206629,-0.967472][0.076359,0.578837,0][-0.0907039,0.818194,-1.67327][-0.145956,0.206629,-0.967472][0.076359,0.578837,0][-0.200866,0.839915,-1.65094][-0.145531,0.245696,-0.95836][0.0745277,0.580921,0][-0.188415,0.979806,-1.60595][-0.0996072,0.35741,-0.928621][0.0708382,0.594342,0][-0.0907039,0.818194,-1.67327][-0.145956,0.206629,-0.967472][0.076359,0.578837,0][0.000386313,0.646422,-1.70947][-0.0369996,0.105853,-0.993693][0.0793273,0.562356,0][-0.200866,0.839915,-1.65094][-0.145531,0.245696,-0.95836][0.0745277,0.580921,0][-1.53999,-1.8949,-0.21537][-2.40996,1.16764,-0.124181][0.401177,0.646524,0][-1.3019,-1.59856,-0.560514][-0.906117,0.391241,-0.160878][0.373956,0.675993,0][-1.45095,-1.90245,-0.633891][-3.02135,0.8758,-1.02251][0.366854,0.647081,0][-1.06153,0.61539,0.545724][-0.874327,0.178976,0.451132][0.472542,0.88487,0][-0.843096,-1.47062,0.975845][-0.753399,0.174591,0.633962][0.500313,0.683553,0][-0.886525,0.565558,0.821863][-0.734191,0.163537,0.658953][0.494992,0.879247,0][-0.886525,0.565558,0.821863][-0.734191,0.163537,0.658953][0.494992,0.879247,0][-0.876582,0.9036,0.66057][-0.721913,0.43478,0.538339][0.482987,0.912151,0][-1.06153,0.61539,0.545724][-0.874327,0.178976,0.451132][0.472542,0.88487,0][-0.266332,-0.361261,-1.68814][-0.282174,-0.0103642,-0.959307][0.0775783,0.465676,0][-0.513709,-0.174527,-1.59637][-0.461702,-0.113027,-0.879804][0.0700532,0.483592,0][-0.22381,-0.208561,-1.69841][0.107567,0.0189329,-0.994018][0.0784206,0.480326,0][-0.185813,-1.92095,-1.7068][-0.208744,0.00312582,-0.977965][0.0791089,0.316033,0][-0.266332,-0.361261,-1.68814][-0.282174,-0.0103642,-0.959307][0.0775783,0.465676,0][-0.22381,-0.208561,-1.69841][0.107567,0.0189329,-0.994018][0.0784206,0.480326,0][0.0901499,1.51252,-0.881316][0.0821835,0.895653,-0.437094][0.0781231,0.65662,0][-0.0464976,1.61733,-0.558854][-0.0285929,0.980008,-0.196892][0.104585,0.646612,0][0.210176,1.61733,-0.461277][0.189364,0.972738,-0.133871][0.112586,0.646627,0][-0.329739,1.31053,-1.14677][-0.255084,0.784099,-0.565792][0.0563193,0.675959,0][-0.334088,1.57334,-0.549215][-0.291905,0.928869,-0.228023][0.105367,0.650834,0][-0.124063,1.53461,-0.819974][-0.14293,0.906599,-0.39705][0.0831573,0.654509,0][0.277334,-0.888854,-1.69524][0.274336,0.00650612,-0.961612][0.0781606,0.415056,0][0.306985,-1.90065,-1.68998][0.175271,1.54719e-005,-0.98452][0.0777291,0.317981,0][0.148846,-1.9205,-1.71794][0.172416,-4.30427e-005,-0.985024][0.0800219,0.316077,0][-0.667848,-0.153423,-1.48499][-1.65244,0.0142631,-2.48172][0.303378,0.81738,0][-0.678299,-1.47062,-1.48658][-0.646744,0.0269421,-0.762231][0.298527,0.691096,0][-0.97806,-1.39554,-1.18364][-0.784773,0.0963052,-0.612255][0.323621,0.697366,0][0.92306,0.46588,-1.3164][0.707661,0.0284128,-0.70598][0.047095,0.545035,0][0.931362,0.0792687,-1.31303][0.740933,0.00701685,-0.671543][0.0468181,0.507942,0][0.845162,0.272476,-1.39535][0.663919,0.0110992,-0.747722][0.0535688,0.526479,0][1.08093,-0.864996,-1.13098][0.842632,0.0515964,-0.536012][0.151541,0.3466,0][1.10853,-1.1785,-1.08945][0.831665,0.00708704,-0.555233][0.165938,0.373228,0][0.960476,-1.22584,-1.2816][0.753124,0.0381948,-0.656769][0.153019,0.383328,0][-0.567254,0.136491,-1.56593][-0.418207,-0.0129691,-0.908259][0.0675566,0.513432,0][-0.400714,0.261204,-1.64488][-0.383376,0.0186134,-0.923405][0.0740306,0.525397,0][-0.301387,0.0341731,-1.6795][-0.255286,-0.0160438,-0.966733][0.07687,0.503615,0][-1.07967,-1.1785,-1.07167][-0.816312,0.00156151,-0.577609][0.0348145,0.180309,0][-0.874601,-1.51324,-1.27528][-0.0584025,-0.0724345,0.0602609][0.0368884,0.216447,0][-1.04422,-1.1788,-1.03767][-0.779948,-0.967341,0.804765][0.0322593,0.179193,0][-1.04422,-1.1788,-1.03767][-0.779948,-0.967341,0.804765][0.0322593,0.179193,0][-1.17969,-0.811621,-0.892877][-0.0716096,-0.0556704,0.0741758][0.0358607,0.142192,0][-1.07967,-1.1785,-1.07167][-0.816312,0.00156151,-0.577609][0.0348145,0.180309,0][-1.04053,-0.870016,-1.13098][-0.788633,0.0367732,-0.613763][0.0513768,0.155302,0][-1.07967,-1.1785,-1.07167][-0.816312,0.00156151,-0.577609][0.0348145,0.180309,0][-1.17969,-0.811621,-0.892877][-0.0716096,-0.0556704,0.0741758][0.0358607,0.142192,0][-0.551291,0.519685,-1.54006][-1.66428,0.99427,-2.77807][0.301278,0.882084,0][-0.755158,0.397383,-1.40765][-2.36935,0.466597,-2.28204][0.31169,0.869952,0][-0.725524,0.664834,-1.38373][-0.633957,0.298261,-0.71354][0.314609,0.895522,0][-0.85342,-0.254767,-1.28033][0.68849,-0.967541,1.88716][0.134661,0.475893,0][-0.957686,-0.247122,-1.23837][-0.730974,-0.00466953,-0.682389][0.138102,0.476626,0][-0.707625,-0.53337,-1.47636][-0.492583,0.00496175,-0.870251][0.118586,0.449163,0][-0.927024,-0.247121,-1.19807][1.0617,0.706197,-0.80777][0.0716234,0.115553,0][-0.735653,-0.751776,-1.38773][0.0623177,0.0414511,-0.0474131][0.023205,0.133914,0][-0.957686,-0.247122,-1.23837][-0.730974,-0.00466953,-0.682389][0.0716233,0.112611,0][-0.957686,-0.247122,-1.23837][-0.730974,-0.00466953,-0.682389][0.0716233,0.112611,0][-0.85342,-0.254767,-1.28033][0.68849,-0.967541,1.88716][0.0708898,0.122615,0][-0.927024,-0.247121,-1.19807][1.0617,0.706197,-0.80777][0.0716234,0.115553,0][-1.40256e-006,-0.115683,1.00351][0,-0.812566,-0.582869][0.380456,0.505536,0][0.210102,0.0924033,1.30206][0.816497,-0.00391161,0.577337][0.40042,0.525694,0][0.210102,-0.327795,1.29921][0,-0.812566,-0.582869][0.360105,0.525694,0][-1.40256e-006,-0.115683,1.00351][0,-0.812566,-0.582869][0.380456,0.505536,0][-0.210105,0.0924033,1.30206][0,0.812567,0.582868][0.40042,0.485378,0][0.210102,0.0924033,1.30206][0.816497,-0.00391161,0.577337][0.40042,0.525694,0][0.210102,-0.327795,1.29921][0,-0.812566,-0.582869][0.587804,0.138153,0][-1.54833e-006,-0.119708,1.59776][0.816497,-0.0039116,0.577337][0.612286,0.158311,0][-0.210105,-0.327795,1.29921][0,-0.812566,-0.582869][0.587804,0.178469,0][-0.210105,-0.327795,1.29921][0,-0.812566,-0.582869][0.608152,0.232606,0][-1.54833e-006,-0.119708,1.59776][0.816497,-0.0039116,0.577337][0.58367,0.212448,0][-0.210105,0.0924033,1.30206][0,0.812567,0.582868][0.607918,0.232606,0][0.210102,-0.860437,1.27708][0,-0.799442,-0.600744][0.343508,0.0231151,0][-1.54637e-006,-0.659022,1.58017][-0.816497,-0.0167123,0.577108][0.368362,0.0432732,0][-0.210105,-0.860437,1.27708][-0.816497,-0.0167123,0.577108][0.343508,0.0634313,0][0.210102,-0.440405,1.28924][0,0.799442,0.600744][0.344505,0.0231151,0][-1.54637e-006,-0.659022,1.58017][-0.816497,-0.0167123,0.577108][0.368362,0.0432732,0][0.210102,-0.860437,1.27708][0,-0.799442,-0.600744][0.343508,0.0231151,0][-1.43559e-006,-0.64182,0.986154][0,-0.799442,-0.600744][0.323455,0.438027,0][-0.210105,-0.860437,1.27708][-0.816497,-0.0167123,0.577108][0.30248,0.417868,0][-0.210105,-0.440405,1.28924][-0.816497,-0.0167123,0.577108][0.34278,0.417868,0][-1.43559e-006,-0.64182,0.986154][0,-0.799442,-0.600744][0.323455,0.438027,0][-0.210105,-0.440405,1.28924][-0.816497,-0.0167123,0.577108][0.34278,0.417868,0][0.210102,-0.440405,1.28924][0,0.799442,0.600744][0.34278,0.458185,0][-1.41037e-006,-0.372275,0.996635][-0.816496,0.0229908,-0.576893][0.486541,0.178469,0][0.210102,-0.17417,1.3019][-3.45766e-007,0.792858,0.609406][0.488163,0.14637,0][0.210102,-0.594044,1.28516][0,-0.792858,-0.609406][0.487249,0.147394,0][-1.41037e-006,-0.372275,0.996635][-0.816496,0.0229908,-0.576893][0.418999,0.0332178,0][-0.210105,-0.17417,1.3019][-0.816496,0.0229908,-0.576893][0.417378,0.0653168,0][0.210102,-0.17417,1.3019][-3.45766e-007,0.792858,0.609406][0.387293,0.0384784,0][0.210102,-0.594044,1.28516][0,-0.792858,-0.609406][0.487249,0.147394,0][-1.55676e-006,-0.395939,1.59043][-3.45766e-007,0.792859,0.609406][0.518956,0.142133,0][-0.210105,-0.594044,1.28516][-0.816496,0.0229908,-0.576893][0.517334,0.174232,0][-0.210105,-0.594044,1.28516][-0.816496,0.0229908,-0.576893][0.517334,0.174232,0][-1.55676e-006,-0.395939,1.59043][-3.45766e-007,0.792859,0.609406][0.518956,0.142133,0][-0.210105,-0.17417,1.3019][-0.816496,0.0229908,-0.576893][0.518248,0.173208,0][-0.210105,-1.12668,1.2952][-0.816496,0.0302773,0.576556][0.244598,0.356142,0][-1.43754e-006,-0.932444,0.987457][4.4545e-007,0.785096,-0.619374][0.263233,0.3763,0][0.210102,-1.12668,1.2952][0,-0.785096,0.619374][0.244598,0.396458,0][0.210102,-1.12668,1.2952][0,-0.785096,0.619374][0.244598,0.396458,0][-1.43754e-006,-0.932444,0.987457][4.4545e-007,0.785096,-0.619374][0.263233,0.3763,0][0.210102,-0.707047,1.27316][4.4545e-007,0.785096,-0.619374][0.284859,0.396458,0][-1.56416e-006,-0.90128,1.5809][-0.816496,0.0302773,0.576556][0.437402,0.103137,0][0.210102,-1.12668,1.2952][0,-0.785096,0.619374][0.460831,0.0829793,0][0.210102,-0.707047,1.27316][4.4545e-007,0.785096,-0.619374][0.462638,0.0829793,0][-1.56416e-006,-0.90128,1.5809][-0.816496,0.0302773,0.576556][0.437402,0.103137,0][0.210102,-0.707047,1.27316][4.4545e-007,0.785096,-0.619374][0.462638,0.0829793,0][-0.210105,-0.707047,1.27316][4.4545e-007,0.785096,-0.619374][0.462638,0.123296,0][-1.52776e-006,0.165807,1.59136][-3.53691e-007,-0.781924,0.623373][0.0562788,0.0792783,0][-0.210105,0.358466,1.28263][-0.816496,-0.0332191,-0.576394][0.0815955,0.0994364,0][-0.210105,-0.0610455,1.30681][-3.53691e-007,-0.781924,0.623373][0.0796129,0.0994364,0][-1.52776e-006,0.165807,1.59136][-3.53691e-007,-0.781924,0.623373][0.0562788,0.0792783,0][0.210102,0.358466,1.28263][0,0.781924,-0.623373][0.0815955,0.0591201,0][-0.210105,0.358466,1.28263][-0.816496,-0.0332191,-0.576394][0.0815955,0.0994364,0][-0.210105,-0.0610455,1.30681][-3.53691e-007,-0.781924,0.623373][0.186364,0.293659,0][-1.40129e-006,0.131614,0.998082][-0.816496,-0.0332191,-0.576394][0.204848,0.313817,0][0.210102,-0.0610455,1.30681][-3.53691e-007,-0.781924,0.623373][0.186364,0.333975,0][0.210102,-0.0610455,1.30681][-3.53691e-007,-0.781924,0.623373][0.186364,0.333975,0][-1.40129e-006,0.131614,0.998082][-0.816496,-0.0332191,-0.576394][0.204848,0.313817,0][0.210102,0.358466,1.28263][0,0.781924,-0.623373][0.226613,0.333975,0][0.35671,1.23895,0.79221][0.275175,0.710963,0.647156][0.215309,0.68312,0][0,1.27545,0.834833][0.0603418,0.782973,0.619123][0.21881,0.679625,0][-0.0782103,1.16198,0.947367][-0.0257431,0.635438,0.771723][0.228018,0.690528,0][0.970938,-0.675312,-1.26888][0.775812,-0.0559282,-0.62848][0.0431981,0.435544,0][1.16921,-0.614142,-0.989255][0.818914,-0.0358892,-0.572793][0.0202678,0.441413,0][1.19129,-0.751775,-0.949062][0.814342,-0.0653707,-0.576691][0.0169718,0.428208,0][-0.210105,0.205996,1.29904][-0.816496,0.0855733,0.570973][0.275534,0.0416698,0][-1.38749e-006,0.369739,0.974046][0,0.721905,-0.691992][0.244598,0.0417748,0][0.210102,0.205996,1.29904][0,-0.721905,0.691993][0.275534,0.0416698,0][-0.210105,0.621562,1.23675][-0.816496,0.0855733,0.570973][0.607175,0.253726,0][-1.38749e-006,0.369739,0.974046][0,0.721905,-0.691992][0.607167,0.286097,0][-0.210105,0.205996,1.29904][-0.816496,0.0855733,0.570973][0.576821,0.280079,0][-1.51081e-006,0.457819,1.56175][-0.816496,0.0855733,0.570973][0.520364,0.59063,0][0.210102,0.205996,1.29904][0,-0.721905,0.691993][0.496203,0.570472,0][0.210102,0.621562,1.23675][0,0.721905,-0.691992][0.536074,0.570472,0][-1.51081e-006,0.457819,1.56175][-0.816496,0.0855733,0.570973][0.520364,0.59063,0][0.210102,0.621562,1.23675][0,0.721905,-0.691992][0.536074,0.570472,0][-0.210105,0.621562,1.23675][-0.816496,0.0855733,0.570973][0.536074,0.610789,0][-0.210105,-1.38605,1.36455][-4.14561e-007,-0.682746,0.730656][0.567114,0.0908815,0][-1.46694e-006,-1.24044,1.03104][0.816497,-0.116852,-0.565401][0.571539,0.124567,0][0.210102,-1.38605,1.36455][-4.14561e-007,-0.682746,0.730656][0.538053,0.118825,0][-0.210105,-0.974544,1.2795][0,0.682747,-0.730655][0.190799,0.0540798,0][-1.46694e-006,-1.24044,1.03104][0.816497,-0.116852,-0.565401][0.219312,0.0569845,0][-0.210105,-1.38605,1.36455][-4.14561e-007,-0.682746,0.730656][0.186364,0.0486975,0][-1.57014e-006,-1.12016,1.61301][-4.14561e-007,-0.682746,0.730656][0.188964,0.0201545,0][-0.210105,-0.974544,1.2795][0,0.682747,-0.730655][0.190799,0.0540798,0][-0.210105,-1.38605,1.36455][-4.14561e-007,-0.682746,0.730656][0.186364,0.0486975,0][-1.57014e-006,-1.12016,1.61301][-4.14561e-007,-0.682746,0.730656][0.188964,0.0201545,0][0.210102,-0.974544,1.2795][0.816497,-0.116852,-0.565401][0.221913,0.0284415,0][-0.210105,-0.974544,1.2795][0,0.682747,-0.730655][0.190799,0.0540798,0][-1.59969e-006,-1.37394,1.66645][0,-0.664931,0.746904][0.571911,0.486857,0][-0.210105,-1.23641,1.32953][-0.816497,-0.13045,-0.56242][0.571306,0.521052,0][-0.210105,-1.64575,1.42447][0,-0.664931,0.746904][0.566829,0.514682,0][-1.59969e-006,-1.37394,1.66645][0,-0.664931,0.746904][0.571911,0.486857,0][0.210102,-1.23641,1.32953][0,0.664931,-0.746905][0.60429,0.497869,0][-0.210105,-1.23641,1.32953][-0.816497,-0.13045,-0.56242][0.571306,0.521052,0][-0.210105,-1.64575,1.42447][0,-0.664931,0.746904][0.565487,0.362571,0][-1.47994e-006,-1.50822,1.08755][-0.816497,-0.13045,-0.56242][0.570106,0.396458,0][0.210102,-1.64575,1.42447][0,-0.664931,0.746904][0.536426,0.390514,0][0.210102,-1.64575,1.42447][0,-0.664931,0.746904][0.599813,0.491499,0][-1.47994e-006,-1.50822,1.08755][-0.816497,-0.13045,-0.56242][0.599208,0.525694,0][0.210102,-1.23641,1.32953][0,0.664931,-0.746905][0.60429,0.497869,0][-0.210105,0.471703,1.26834][0,-0.638046,0.769998][0.515603,0.0904041,0][-1.36021e-006,0.597212,0.92676][0,0.638047,-0.769998][0.520487,0.124567,0][0.210102,0.471703,1.26834][0.816496,0.150298,0.557444][0.486541,0.118348,0][0.210102,0.471703,1.26834][0.816496,0.150298,0.557444][0.431851,0.308459,0][-1.36021e-006,0.597212,0.92676][0,0.638047,-0.769998][0.431465,0.342967,0][0.210102,0.877423,1.15895][0,0.638047,-0.769998][0.437009,0.315798,0][-1.49583e-006,0.751914,1.50053][0.816496,0.150298,0.557444][0.40441,0.304473,0][-0.210105,0.877423,1.15895][0,0.638047,-0.769998][0.404024,0.338981,0][-0.210105,0.471703,1.26834][0,-0.638046,0.769998][0.398866,0.331642,0][-1.49583e-006,0.751914,1.50053][0.816496,0.150298,0.557444][0.40441,0.304473,0][0.210102,0.877423,1.15895][0,0.638047,-0.769998][0.437009,0.315798,0][-0.210105,0.877423,1.15895][0,0.638047,-0.769998][0.404024,0.338981,0][-6.9002e-007,1.56803,-1.37623][2.8301e-007,-0.069283,-0.997597][0.264756,0.458185,0][0.210103,1.47079,-1.02556][-2.80156e-007,0.069283,0.997597][0.244598,0.448855,0][0.210103,1.20499,-1.35102][2.8301e-007,-0.069283,-0.997597][0.244598,0.423354,0][0.210103,1.47079,-1.02556][-2.80156e-007,0.069283,0.997597][0.244598,0.448855,0][-7.87606e-007,1.10775,-1.00034][-2.80156e-007,0.069283,0.997597][0.264756,0.414024,0][0.210103,1.20499,-1.35102][2.8301e-007,-0.069283,-0.997597][0.244598,0.423354,0][-0.210105,0.732977,1.20913][0,-0.527398,0.849618][0.372658,0.116922,0][-1.35445e-006,0.810864,0.85365][0,0.527398,-0.849618][0.343508,0.096764,0][0.210102,0.732977,1.20913][0.816496,0.224715,0.531824][0.372658,0.0766059,0][0.210102,0.732977,1.20913][0.816496,0.224715,0.531824][0.284562,0.496544,0][-1.35445e-006,0.810864,0.85365][0,0.527398,-0.849618][0.264404,0.525694,0][0.210102,1.12005,1.04558][0.816496,0.224715,0.531824][0.284562,0.509956,0][-1.44619e-006,1.04216,1.40105][0.816496,0.224715,0.531824][0.264404,0.480806,0][-0.210105,1.12005,1.04558][0,0.527398,-0.849618][0.244246,0.509956,0][-0.210105,0.732977,1.20913][0,-0.527398,0.849618][0.244246,0.496544,0][-1.44619e-006,1.04216,1.40105][0.816496,0.224715,0.531824][0.264404,0.480806,0][0.210102,1.12005,1.04558][0.816496,0.224715,0.531824][0.284562,0.509956,0][-0.210105,1.12005,1.04558][0,0.527398,-0.849618][0.244246,0.509956,0][-0.0489317,0.515303,-1.71623][-0.0911335,0.0397218,-0.995046][0.079882,0.549776,0][-0.200866,0.839915,-1.65094][-0.145531,0.245696,-0.95836][0.0745277,0.580921,0][0.000386313,0.646422,-1.70947][-0.0369996,0.105853,-0.993693][0.0793273,0.562356,0][-0.324371,0.959774,-1.57758][-0.417674,0.358435,-0.834909][0.166053,0.26895,0][-0.491162,0.805436,-1.5604][-0.417674,0.358435,-0.834909][0.169536,0.284632,0][-0.614057,0.880945,-1.4665][-0.417674,0.358435,-0.834909][0.16575,0.298196,0][-1.34454e-006,1.57875,0.977954][5.67288e-007,-0.0182704,0.999833][0.118356,0.215695,0][0.210103,1.2149,0.971305][0.816497,-0.465236,-0.34189][0.0981982,0.180786,0][0.210103,1.46373,0.632697][0.816497,-0.465236,-0.34189][0.0981982,0.20466,0][-1.34454e-006,1.57875,0.977954][5.67288e-007,-0.0182704,0.999833][0.118356,0.215695,0][0.210103,1.46373,0.632697][0.816497,-0.465236,-0.34189][0.0981982,0.20466,0][-0.210105,1.46373,0.632697][0,0.01827,-0.999833][0.138514,0.20466,0][-0.210105,1.2149,0.971305][5.67288e-007,-0.0182704,0.999833][0.138514,0.180786,0][-1.28613e-006,1.09988,0.626048][0.816497,-0.465236,-0.34189][0.118356,0.169751,0][0.210103,1.2149,0.971305][0.816497,-0.465236,-0.34189][0.0981982,0.180786,0][-0.210105,1.46373,0.632697][0,0.01827,-0.999833][0.138514,0.20466,0][-1.28613e-006,1.09988,0.626048][0.816497,-0.465236,-0.34189][0.118356,0.169751,0][-0.210105,1.2149,0.971305][5.67288e-007,-0.0182704,0.999833][0.138514,0.180786,0][-6.9002e-007,1.56803,-1.37623][2.8301e-007,-0.069283,-0.997597][0.264756,0.458185,0][-0.210105,1.20499,-1.35102][2.8301e-007,-0.069283,-0.997597][0.284914,0.423354,0][-0.210105,1.47079,-1.02556][-2.80156e-007,0.069283,0.997597][0.284914,0.448855,0][-0.210105,1.47079,-1.02556][-2.80156e-007,0.069283,0.997597][0.284914,0.448855,0][0.210103,1.47079,-1.02556][-2.80156e-007,0.069283,0.997597][0.244598,0.448855,0][-6.9002e-007,1.56803,-1.37623][2.8301e-007,-0.069283,-0.997597][0.264756,0.458185,0][-7.87606e-007,1.10775,-1.00034][-2.80156e-007,0.069283,0.997597][0.264756,0.414024,0][-0.210105,1.20499,-1.35102][2.8301e-007,-0.069283,-0.997597][0.284914,0.423354,0][0.210103,1.20499,-1.35102][2.8301e-007,-0.069283,-0.997597][0.244598,0.423354,0][-0.210105,1.20499,-1.35102][2.8301e-007,-0.069283,-0.997597][0.284914,0.423354,0][-7.87606e-007,1.10775,-1.00034][-2.80156e-007,0.069283,0.997597][0.264756,0.414024,0][-0.210105,1.47079,-1.02556][-2.80156e-007,0.069283,0.997597][0.284914,0.448855,0][-1.61832e-006,-1.54832,1.72363][-0.816497,0.279528,0.505171][0.458479,0.56815,0][0.210102,-1.87602,1.56537][0,-0.434891,0.900483][0.478637,0.581127,0][0.210102,-1.50834,1.36192][2.4675e-007,0.434891,-0.900483][0.478637,0.597811,0][-1.61832e-006,-1.54832,1.72363][-0.816497,0.279528,0.505171][0.458479,0.56815,0][0.210102,-1.50834,1.36192][2.4675e-007,0.434891,-0.900483][0.478637,0.597811,0][-0.210105,-1.50834,1.36192][-0.816497,0.279528,0.505171][0.438321,0.597811,0][-0.210105,-1.87602,1.56537][-0.816497,0.279528,0.505171][0.580081,0.342967,0][-1.51681e-006,-1.83604,1.20366][2.4675e-007,0.434891,-0.900483][0.55042,0.322809,0][0.210102,-1.87602,1.56537][0,-0.434891,0.900483][0.580081,0.302651,0][-0.210105,-1.50834,1.36192][-0.816497,0.279528,0.505171][0.438321,0.597811,0][-1.51681e-006,-1.83604,1.20366][2.4675e-007,0.434891,-0.900483][0.458479,0.610789,0][-0.210105,-1.87602,1.56537][-0.816497,0.279528,0.505171][0.438321,0.581127,0][-1.40663e-006,1.34295,1.22671][0,-0.274533,0.961578][0.298033,0.3763,0][-0.210105,1.3205,0.863493][0,0.274533,-0.961578][0.327818,0.396458,0][-0.210105,0.99302,1.1268][0,-0.274533,0.961578][0.306226,0.396458,0][-1.40663e-006,1.34295,1.22671][0,-0.274533,0.961578][0.298033,0.3763,0][0.210103,1.3205,0.863493][0.816497,-0.361781,-0.449942][0.327818,0.356142,0][-0.210105,1.3205,0.863493][0,0.274533,-0.961578][0.327818,0.396458,0][-0.210105,0.99302,1.1268][0,-0.274533,0.961578][0.427054,0.396458,0][-1.32042e-006,0.970569,0.763587][0.816497,-0.361781,-0.449942][0.397269,0.3763,0][0.210102,0.99302,1.1268][0,-0.274533,0.961578][0.427054,0.356142,0][-0.210105,1.3205,0.863493][0,0.274533,-0.961578][0.327818,0.396458,0][-1.32042e-006,0.970569,0.763587][0.816497,-0.361781,-0.449942][0.336011,0.3763,0][-0.210105,0.99302,1.1268][0,-0.274533,0.961578][0.306226,0.396458,0][-8.88817e-007,1.74681,-1.11084][5.63821e-007,0.111878,-0.993722][0.206522,0.525694,0][0.210103,1.58788,-0.783464][-5.66401e-007,-0.111878,0.993722][0.186364,0.510446,0][0.210103,1.38518,-1.15155][2.47787e-007,-0.899597,-0.43672][0.186364,0.490999,0][0.210103,1.58788,-0.783464][-5.66401e-007,-0.111878,0.993722][0.186364,0.510446,0][-9.69379e-007,1.22625,-0.824178][-5.66401e-007,-0.111878,0.993722][0.206522,0.475751,0][0.210103,1.38518,-1.15155][2.47787e-007,-0.899597,-0.43672][0.186364,0.490999,0][-8.88817e-007,1.74681,-1.11084][5.63821e-007,0.111878,-0.993722][0.206522,0.525694,0][-0.210105,1.38518,-1.15155][2.47787e-007,-0.899597,-0.43672][0.22668,0.490999,0][-0.210105,1.58788,-0.783464][-5.66401e-007,-0.111878,0.993722][0.22668,0.510446,0][-0.210105,1.38518,-1.15155][2.47787e-007,-0.899597,-0.43672][0.22668,0.490999,0][-9.69379e-007,1.22625,-0.824178][-5.66401e-007,-0.111878,0.993722][0.206522,0.475751,0][-0.210105,1.58788,-0.783464][-5.66401e-007,-0.111878,0.993722][0.22668,0.510446,0][-9.46953e-007,1.87537,-0.819132][5.43788e-007,0.285376,-0.958416][0.337862,0.525694,0][0.210103,1.6612,-0.524918][0,0.808478,0.588527][0.342539,0.497292,0][0.210103,1.52659,-0.922983][5.43788e-007,0.285376,-0.958416][0.335112,0.486726,0][0.210103,1.6612,-0.524918][0,0.808478,0.588527][0.342539,0.497292,0][-1.00832e-006,1.31242,-0.628769][-4.87227e-007,-0.285376,0.958416][0.306805,0.481506,0][0.210103,1.52659,-0.922983][5.43788e-007,0.285376,-0.958416][0.335112,0.486726,0][-9.46953e-007,1.87537,-0.819132][5.43788e-007,0.285376,-0.958416][0.337862,0.525694,0][-0.210105,1.52659,-0.922983][5.43788e-007,0.285376,-0.958416][0.302128,0.509909,0][-0.210105,1.6612,-0.524918][0,0.808478,0.588527][0.309554,0.520474,0][-0.210105,1.52659,-0.922983][5.43788e-007,0.285376,-0.958416][0.302128,0.509909,0][-1.00832e-006,1.31242,-0.628769][-4.87227e-007,-0.285376,0.958416][0.306805,0.481506,0][-0.210105,1.6612,-0.524918][0,0.808478,0.588527][0.309554,0.520474,0][-1.217e-006,1.85469,0.411332][2.60466e-007,0.790789,-0.612088][0.221921,0.396151,0][-0.210105,1.63194,0.123555][2.60466e-007,0.790789,-0.612088][0.19314,0.390258,0][-0.210105,1.50912,0.525412][-2.69391e-007,0.313486,0.949593][0.186364,0.380617,0][-0.210105,1.63194,0.123555][2.60466e-007,0.790789,-0.612088][0.19314,0.390258,0][-1.19134e-006,1.28637,0.237636][4.04087e-007,-0.313486,-0.949593][0.190567,0.351541,0][-0.210105,1.50912,0.525412][-2.69391e-007,0.313486,0.949593][0.186364,0.380617,0][-1.217e-006,1.85469,0.411332][2.60466e-007,0.790789,-0.612088][0.221921,0.396151,0][0.210103,1.50912,0.525413][-2.69391e-007,0.313486,0.949593][0.219348,0.357434,0][0.210103,1.63194,0.123555][2.60466e-007,0.790789,-0.612088][0.226124,0.367075,0][0.210103,1.50912,0.525413][-2.69391e-007,0.313486,0.949593][0.219348,0.357434,0][-1.19134e-006,1.28637,0.237636][4.04087e-007,-0.313486,-0.949593][0.190567,0.351541,0][0.210103,1.63194,0.123555][2.60466e-007,0.790789,-0.612088][0.226124,0.367075,0][-0.389216,0.757745,-1.61611][-0.402092,0.143537,-0.904278][0.0716715,0.573037,0][-0.680374,0.59738,-1.41985][-0.0475846,0.123473,0.0302966][0.0555775,0.557651,0][-0.377156,0.749624,-1.56407][-0.641091,1.66351,0.408176][0.0674043,0.572258,0][0.35671,1.23895,0.79221][0.275175,0.710963,0.647156][0.215309,0.68312,0][0.438571,1.40682,0.49089][0.293449,0.850597,0.436316][0.190629,0.666968,0][0,1.27545,0.834833][0.0603418,0.782973,0.619123][0.21881,0.679625,0][0.708802,1.23895,0.492913][0.577664,0.694636,0.428702][0.190765,0.683074,0][0.438571,1.40682,0.49089][0.293449,0.850597,0.436316][0.190629,0.666968,0][0.603641,1.12163,0.756713][0.514156,0.588463,0.623984][0.212377,0.694371,0][-1.14666e-006,1.92505,0.116986][-1.28271e-007,0.426903,0.904298][0.222071,0.280485,0][-0.210105,1.66889,-0.141492][3.84812e-007,-0.426902,-0.904298][0.190885,0.274336,0][-0.210105,1.59597,0.27234][0,-0.710279,0.70392][0.186436,0.268937,0][-0.210105,1.66889,-0.141492][3.84812e-007,-0.426902,-0.904298][0.190885,0.274336,0][-1.14566e-006,1.3398,0.0138621][0,-0.710279,0.70392][0.186364,0.23715,0][-0.210105,1.59597,0.27234][0,-0.710279,0.70392][0.186436,0.268937,0][-1.14666e-006,1.92505,0.116986][-1.28271e-007,0.426903,0.904298][0.222071,0.280485,0][0.210103,1.59597,0.27234][0,-0.710279,0.70392][0.21755,0.243299,0][0.210103,1.66889,-0.141492][3.84812e-007,-0.426902,-0.904298][0.221999,0.248698,0][0.210103,1.59597,0.27234][0,-0.710279,0.70392][0.21755,0.243299,0][-1.14566e-006,1.3398,0.0138621][0,-0.710279,0.70392][0.186364,0.23715,0][0.210103,1.66889,-0.141492][3.84812e-007,-0.426902,-0.904298][0.221999,0.248698,0][-1.01183e-006,1.94966,-0.505224][2.51671e-007,0.461521,-0.887129][0.273759,0.112832,0][-0.210105,1.62683,-0.673177][2.07332e-007,-0.682553,-0.730836][0.273633,0.14673,0][-0.210105,1.6837,-0.256836][-2.43613e-007,-0.461521,0.887129][0.244724,0.127764,0][-0.210105,1.62683,-0.673177][2.07332e-007,-0.682553,-0.730836][0.273633,0.14673,0][-1.05048e-006,1.36087,-0.424789][2.07332e-007,-0.682553,-0.730836][0.244598,0.161662,0][-0.210105,1.6837,-0.256836][-2.43613e-007,-0.461521,0.887129][0.244724,0.127764,0][-1.01183e-006,1.94966,-0.505224][2.51671e-007,0.461521,-0.887129][0.518298,0.477987,0][0.210103,1.6837,-0.256836][-2.43613e-007,-0.461521,0.887129][0.547871,0.491825,0][0.210103,1.62683,-0.673177][2.07332e-007,-0.682553,-0.730836][0.51969,0.511857,0][0.210103,1.6837,-0.256836][-2.43613e-007,-0.461521,0.887129][0.547871,0.491825,0][-1.05048e-006,1.36087,-0.424789][2.07332e-007,-0.682553,-0.730836][0.549263,0.525694,0][0.210103,1.62683,-0.673177][2.07332e-007,-0.682553,-0.730836][0.51969,0.511857,0][-1.08136e-006,1.96031,-0.180449][-1.2073e-007,0.524947,0.851135][0.296887,0.225801,0][-0.210105,1.67695,-0.408794][2.20893e-007,0.627475,-0.778637][0.325726,0.241863,0][-0.210105,1.65057,0.0105852][-1.2073e-007,0.524947,0.851135][0.296025,0.259383,0][-0.210105,1.67695,-0.408794][2.20893e-007,0.627475,-0.778637][0.325726,0.241863,0][-1.09481e-006,1.36721,-0.21776][2.4146e-007,-0.524947,-0.851135][0.324865,0.275445,0][-0.210105,1.65057,0.0105852][-1.2073e-007,0.524947,0.851135][0.296025,0.259383,0][-1.08136e-006,1.96031,-0.180449][-1.2073e-007,0.524947,0.851135][0.343508,0.286097,0][0.210103,1.65057,0.0105853][-1.2073e-007,0.524947,0.851135][0.343963,0.252506,0][0.210103,1.67695,-0.408793][2.20893e-007,0.627475,-0.778637][0.372955,0.271177,0][0.210103,1.65057,0.0105853][-1.2073e-007,0.524947,0.851135][0.343963,0.252506,0][-1.09481e-006,1.36721,-0.21776][2.4146e-007,-0.524947,-0.851135][0.37341,0.237587,0][0.210103,1.67695,-0.408793][2.20893e-007,0.627475,-0.778637][0.372955,0.271177,0][1.10853,-1.1785,-1.08945][0.831665,0.00708704,-0.555233][0.165938,0.373228,0][1.09776,-1.09956,-1.01646][0.161917,-0.310894,0.360144][0.16866,0.363967,0][0.903458,-1.51324,-1.28621][0.0382748,-0.0734911,0.0851331][0.16297,0.409047,0][1.08093,-0.864996,-1.13098][0.842632,0.0515964,-0.536012][0.151541,0.3466,0][1.16914,-0.811621,-0.890524][0.250818,-0.460219,-0.851639][0.167918,0.334483,0][1.10853,-1.1785,-1.08945][0.831665,0.00708704,-0.555233][0.165938,0.373228,0][-0.400714,0.261204,-1.64488][-0.383376,0.0186134,-0.923405][0.0740306,0.525397,0][-0.0489317,0.515303,-1.71623][-0.0911335,0.0397218,-0.995046][0.079882,0.549776,0][-0.305585,0.241738,-1.67754][-0.27869,0.0602456,-0.95849][0.076709,0.52353,0][-0.0926661,0.112939,-1.71951][-0.130881,-0.0103008,-0.991345][0.0801512,0.511172,0][-0.0203447,-0.138337,-1.72363][-0.0663737,-0.013537,-0.997703][0.0804889,0.487064,0][-0.301387,0.0341731,-1.6795][-0.255286,-0.0160438,-0.966733][0.07687,0.503615,0][-0.301387,0.0341731,-1.6795][-0.255286,-0.0160438,-0.966733][0.07687,0.503615,0][-0.400714,0.261204,-1.64488][-0.383376,0.0186134,-0.923405][0.0740306,0.525397,0][-0.305585,0.241738,-1.67754][-0.27869,0.0602456,-0.95849][0.076709,0.52353,0][-0.0926661,0.112939,-1.71951][-0.130881,-0.0103008,-0.991345][0.0801512,0.511172,0][-0.301387,0.0341731,-1.6795][-0.255286,-0.0160438,-0.966733][0.07687,0.503615,0][-0.305585,0.241738,-1.67754][-0.27869,0.0602456,-0.95849][0.076709,0.52353,0][0.0558956,0.0930728,-1.72359][0.0463178,0.0201841,-0.998723][0.0804857,0.509266,0][0.129083,-0.024897,-1.72026][0.108588,-0.00245584,-0.994084][0.0802122,0.497948,0][-0.0203447,-0.138337,-1.72363][-0.0663737,-0.013537,-0.997703][0.0804889,0.487064,0][0.987144,-1.47062,0.778274][0.805856,0.151512,0.572399][0.213685,0.943084,0][1.13606,-1.71132,0.681109][2.63112,0.979469,1.59478][0.205675,0.966162,0][1.19936,-1.47062,0.355173][0.918058,0.207787,0.337629][0.17899,0.94302,0][0.987144,-1.47062,0.778274][0.805856,0.151512,0.572399][0.213685,0.943084,0][0.627881,-1.78759,1.30145][1.93259,1.04121,2.37078][0.256531,0.973574,0][1.13606,-1.71132,0.681109][2.63112,0.979469,1.59478][0.205675,0.966162,0][0.574612,0.457538,1.10409][0.549827,0.113056,0.827592][0.240745,0.758139,0][0.709623,0.762257,0.927383][0.614272,0.30776,0.726604][0.226309,0.728876,0][0.278018,0.810083,1.13951][0.256452,0.416966,0.871993][0.243712,0.72432,0][-1.40315e-007,0.664835,1.2288][-0.0176502,0.299814,0.953834][0.251009,0.738269,0][-0.197998,0.457538,1.24726][-0.189695,0.119407,0.974555][0.252485,0.75816,0][0.197998,0.457538,1.24726][0.195256,0.110682,0.974487][0.252485,0.75816,0][-0.707625,-0.53337,-1.47636][-0.492583,0.00496175,-0.870251][0.0602115,0.449163,0][-0.266332,-0.888854,-1.68814][-0.301919,0.013551,-0.953237][0.0775783,0.415056,0][-0.329274,-1.1417,-1.67056][-0.291855,0.00691306,-0.956438][0.0761369,0.390797,0][0.00869353,1.14941,-1.54433][-0.00531039,0.450404,-0.892809][0.0657853,0.610615,0][0.209227,0.971228,-1.61253][0.108941,0.322667,-0.940222][0.071378,0.593519,0][0.000498793,1.03381,-1.6026][-0.0139399,0.411202,-0.911438][0.0705637,0.599524,0][0.000498793,1.03381,-1.6026][-0.0139399,0.411202,-0.911438][0.0705637,0.599524,0][-0.188415,0.979806,-1.60595][-0.0996072,0.35741,-0.928621][0.0708382,0.594342,0][0.00869353,1.14941,-1.54433][-0.00531039,0.450404,-0.892809][0.0657853,0.610615,0][-1.17252,-0.751775,-0.908443][-0.826936,-0.0665344,-0.558346][0.165156,0.428208,0][-1.14859,-0.614142,-0.953236][-0.831481,-0.0358541,-0.554395][0.161483,0.441413,0][-0.950325,-0.675313,-1.24664][-0.780205,-0.0574984,-0.622876][0.137423,0.435544,0][0.781344,-0.751776,-1.44944][-0.0613434,0.0414044,-0.0466714][0.0580046,0.428208,0][0.978298,-0.247121,-1.26061][-1.13922,0.768931,-0.866746][0.0425197,0.476627,0][0.832867,-0.889408,-1.40763][0.725168,-0.0374215,-0.687554][0.0545756,0.415003,0][0.902002,-0.254767,-1.3424][0.688534,-0.014281,-0.725064][0.0492264,0.475893,0][0.931362,0.0792687,-1.31303][0.740933,0.00701685,-0.671543][0.0468181,0.507942,0][0.985658,-0.0941957,-1.25234][0.800239,-0.000220815,-0.599682][0.0418413,0.491299,0][0.985658,-0.0941957,-1.25234][0.800239,-0.000220815,-0.599682][0.0418413,0.491299,0][0.970938,-0.675312,-1.26888][0.775812,-0.0559282,-0.62848][0.0431981,0.435544,0][0.978298,-0.247121,-1.26061][-1.13922,0.768931,-0.866746][0.0425197,0.476627,0][0.902002,-0.254767,-1.3424][0.688534,-0.014281,-0.725064][0.0492264,0.475893,0][0.985658,-0.0941957,-1.25234][0.800239,-0.000220815,-0.599682][0.0418413,0.491299,0][0.978298,-0.247121,-1.26061][-1.13922,0.768931,-0.866746][0.0425197,0.476627,0][-0.967543,-0.0941957,-1.227][-0.775779,-0.000707881,-0.631004][0.0397633,0.491299,0][-0.934385,-0.0941957,-1.18973][-0.841674,-1.35491,0.748916][0.0367075,0.491299,0][-1.08895,0.127547,-0.962279][-0.0640958,-0.10318,0.0570321][0.0180556,0.512574,0][-1.08895,0.127547,-0.962279][-0.0640958,-0.10318,0.0570321][0.0180556,0.512574,0][-1.12651,0.127779,-0.99276][-0.642231,-1.28463,0.781519][0.0205551,0.512596,0][-0.967543,-0.0941957,-1.227][-0.775779,-0.000707881,-0.631004][0.0397633,0.491299,0][-0.934385,-0.0941957,-1.18973][-0.841674,-1.35491,0.748916][0.0367075,0.491299,0][-0.967543,-0.0941957,-1.227][-0.775779,-0.000707881,-0.631004][0.0397633,0.491299,0][-1.17988,-0.0865495,-0.892462][-0.844336,-0.00690649,-0.53577][0.0123304,0.492032,0][0.532012,0.805437,-1.5602][0.418058,0.358621,-0.834637][0.157853,0.0809644,0][0.365221,0.959774,-1.57743][0.418058,0.358621,-0.834637][0.167146,0.0612416,0][0.654907,0.880945,-1.4662][0.418058,0.358621,-0.834637][0.168316,0.090022,0][-0.725524,0.664834,-1.38373][-0.633957,0.298261,-0.71354][0.314609,0.895522,0][-0.915042,0.949146,-0.993207][-0.727358,0.458521,-0.510598][0.34763,0.921584,0][-0.605371,1.23895,-1.04467][-0.497559,0.699469,-0.513009][0.344451,0.949528,0][-0.605371,1.23895,-1.04467][-0.497559,0.699469,-0.513009][0.344451,0.949528,0][-0.830841,1.12162,-0.921631][-0.671899,0.612839,-0.415909][0.354113,0.937901,0][-0.664792,1.40682,-0.611683][-0.521735,0.808796,-0.271369][0.380534,0.964296,0][-1.64645e-007,-1.53665,1.40572][0.00165261,0.342864,0.939384][0.265126,0.949514,0][-0.303057,-1.47062,1.3408][-0.253008,0.301003,0.919448][0.259814,0.943169,0][-0.454886,-1.8455,1.48065][-0.918267,1.11989,2.30241][0.271216,0.979158,0][-0.454886,-1.8455,1.48065][-0.918267,1.11989,2.30241][0.271216,0.979158,0][-0.0151328,-1.88087,1.56666][-0.0140414,1.19196,2.5481][0.278262,0.982564,0][-1.64645e-007,-1.53665,1.40572][0.00165261,0.342864,0.939384][0.265126,0.949514,0][0.886525,0.565558,-1.2526][0.748199,0.184125,-0.637413][0.0475083,0.747418,0][0.745543,0.404775,-1.41597][2.32874,0.472058,-2.50008][0.0340835,0.762819,0][0.622258,0.810082,-1.40342][0.547812,0.373794,-0.748452][0.0351845,0.723934,0][0.622258,0.810082,-1.40342][0.547812,0.373794,-0.748452][0.0351845,0.723934,0][0.765307,1.03746,-1.11078][0.652511,0.544355,-0.52717][0.0592221,0.702163,0][0.886525,0.565558,-1.2526][0.748199,0.184125,-0.637413][0.0475083,0.747418,0][0.975111,1.08009,-0.687935][0.750978,0.582682,-0.310667][0.0939042,0.698137,0][0.976712,0.762257,-1.04563][0.793027,0.338086,-0.50676][0.0645158,0.728577,0][0.765307,1.03746,-1.11078][0.652511,0.544355,-0.52717][0.0592221,0.702163,0][0.765307,1.03746,-1.11078][0.652511,0.544355,-0.52717][0.0592221,0.702163,0][0.906379,1.23895,-0.469969][0.700312,0.701761,-0.130745][0.111806,0.682928,0][0.975111,1.08009,-0.687935][0.750978,0.582682,-0.310667][0.0939042,0.698137,0][1.20379,0.457538,0.242258][0.962191,0.112527,0.248045][0.170072,0.758008,0][1.2633,-1.30789,0.0178565][0.989202,0.0835524,0.120406][0.151358,0.927355,0][1.24115,0.61539,-0.329653][0.982965,0.169541,-0.0709662][0.123202,0.742777,0][1.24115,0.61539,-0.329653][0.982965,0.169541,-0.0709662][0.123202,0.742777,0][1.0522,1.08009,-0.312255][0.832823,0.552058,-0.0404729][0.124711,0.698194,0][1.19237,0.762257,0.00558761][0.94047,0.3047,0.150578][0.150719,0.728737,0][1.19237,0.762257,0.00558761][0.94047,0.3047,0.150578][0.150719,0.728737,0][1.20379,0.457538,0.242258][0.962191,0.112527,0.248045][0.170072,0.758008,0][1.24115,0.61539,-0.329653][0.982965,0.169541,-0.0709662][0.123202,0.742777,0][-0.54924,0.519684,-1.50925][0.767173,-1.45125,-0.326148][0.0629087,0.550197,0][-0.836444,0.33521,-1.36397][-0.726954,0.0346823,-0.685809][0.0509952,0.532498,0][-0.568149,0.520887,-1.55908][-0.540621,0.166238,-0.824678][0.0669948,0.550312,0][-0.443772,0.542797,-1.62][-0.400896,0.080194,-0.912607][0.106806,0.552414,0][-0.548077,0.302959,-1.51497][-0.158988,0.0921429,0.0525194][0.115419,0.529403,0][-0.428148,0.540443,-1.56858][-1.38901,0.805012,0.458839][0.111024,0.552188,0][-1.17276,0.384507,-0.783719][-0.926772,0.0739221,-0.368279][0.362773,0.866807,0][-1.04169,0.713815,-0.962241][-0.850501,0.248749,-0.463434][0.349324,0.898926,0][-0.954957,0.0791987,-1.20041][-3.93823,0.158458,-2.4179][0.327533,0.838811,0][-1.0757,0.949146,-0.624304][-0.856923,0.467479,-0.217132][0.37786,0.920454,0][-1.04169,0.713815,-0.962241][-0.850501,0.248749,-0.463434][0.349324,0.898926,0][-1.22575,0.515414,-0.559679][-0.971755,0.134591,-0.193849][0.381601,0.878671,0][-1.22575,0.515414,-0.559679][-0.971755,0.134591,-0.193849][0.381601,0.878671,0][-1.19237,0.762257,-0.436329][-0.936248,0.331264,-0.117062][0.392594,0.90196,0][-1.0757,0.949146,-0.624304][-0.856923,0.467479,-0.217132][0.37786,0.920454,0][0.148846,-1.9205,-1.71794][0.172416,-4.30427e-005,-0.985024][0.0800219,0.316077,0][0.101934,-0.126777,-1.72165][0.117458,0.00101689,-0.993077][0.0803263,0.488173,0][0.201374,-0.216788,-1.70998][0.16782,0.0107713,-0.985759][0.0793694,0.479537,0][-0.954957,0.0791987,-1.20041][-3.93823,0.158458,-2.4179][0.327533,0.838811,0][-1.04169,0.713815,-0.962241][-0.850501,0.248749,-0.463434][0.349324,0.898926,0][-0.879328,0.254629,-1.28982][-2.76362,0.393553,-1.94857][0.320834,0.855905,0][0.601306,1.43576,0.215755][0.48341,0.842473,0.237812][0.168073,0.66415,0][0.708802,1.23895,0.492913][0.577664,0.694636,0.428702][0.190765,0.683074,0][0.853678,1.27545,0.10916][0.675585,0.720989,0.154141][0.159303,0.679515,0][1.19237,0.762257,0.00558761][0.94047,0.3047,0.150578][0.150719,0.728737,0][1.02629,1.08009,0.0729092][0.829945,0.52948,0.175617][0.156296,0.698252,0][0.899918,1.08009,0.429854][0.760961,0.514674,0.39503][0.185566,0.698306,0][-0.886525,1.27545,-0.379653][-0.727042,0.682979,-0.0703577][0.399077,0.950989,0][-0.976713,1.12162,0.155932][-0.748037,0.635433,0.191483][0.442415,0.934601,0][-0.603642,1.40682,0.297757][-0.522172,0.806132,0.278366][0.455059,0.96151,0][-0.830841,1.12162,0.490889][-0.664287,0.611697,0.429592][0.469864,0.933574,0][-0.603642,1.40682,0.297757][-0.522172,0.806132,0.278366][0.455059,0.96151,0][-0.976713,1.12162,0.155932][-0.748037,0.635433,0.191483][0.442415,0.934601,0][0.576301,1.51252,-0.215371][0.471986,0.881603,-0.00242745][0.132733,0.65672,0][0.906379,1.23895,-0.469969][0.700312,0.701761,-0.130745][0.111806,0.682928,0][0.709623,1.40682,-0.485138][0.564542,0.806987,-0.17339][0.110592,0.66682,0][0.709623,1.40682,-0.485138][0.564542,0.806987,-0.17339][0.110592,0.66682,0][0.210176,1.61733,-0.461277][0.189364,0.972738,-0.133871][0.112586,0.646627,0][0.576301,1.51252,-0.215371][0.471986,0.881603,-0.00242745][0.132733,0.65672,0][0,1.12162,-1.41693][-0.00681115,0.647141,-0.76234][0.0341316,0.694042,0][0.188853,0.762256,-1.61045][0.158608,0.326544,-0.931779][0.0181991,0.728492,0][-0.183456,0.857221,-1.57058][-0.164795,0.422913,-0.89106][0.0214852,0.719386,0][0,1.12162,-1.41693][-0.00681115,0.647141,-0.76234][0.0341316,0.694042,0][-0.42383,0.993788,-1.41254][-0.397785,0.527427,-0.750725][0.0344688,0.706308,0][-0.329739,1.31053,-1.14677][-0.255084,0.784099,-0.565792][0.0563193,0.675959,0][-0.932128,0.409477,-1.18822][-1.79323,2.10434,0.226558][0.0365831,0.539623,0][-0.799524,0.544465,-1.39246][-0.632545,0.0480461,-0.773032][0.0533314,0.552574,0][-1.05575,0.2952,-1.10523][-0.796014,0.0198565,-0.604952][0.0297784,0.528659,0][-1.05575,0.2952,-1.10523][-0.796014,0.0198565,-0.604952][0.0297784,0.528659,0][-1.08895,0.127547,-0.962279][-0.0640958,-0.10318,0.0570321][0.0180556,0.512574,0][-0.932128,0.409477,-1.18822][-1.79323,2.10434,0.226558][0.0365831,0.539623,0][-0.39227,1.58993,-0.215371][-0.330983,0.943614,0.00652332][0.132746,0.649293,0][-0.230571,1.58993,0.155932][-0.16558,0.955701,0.243351][0.163194,0.64935,0][-0.165298,1.64263,-0.246002][-0.114563,0.993273,-0.016859][0.130244,0.644232,0][-0.334088,1.57334,-0.549215][-0.291905,0.928869,-0.228023][0.105367,0.650834,0][-0.0464976,1.61733,-0.558854][-0.0285929,0.980008,-0.196892][0.104585,0.646612,0][-0.124063,1.53461,-0.819974][-0.14293,0.906599,-0.39705][0.0831573,0.654509,0][-0.389216,0.757745,-1.61611][-0.402092,0.143537,-0.904278][0.0716715,0.573037,0][-0.276441,0.730662,-1.65809][-0.319519,0.125567,-0.939223][0.0751145,0.570439,0][-0.337254,0.575008,-1.65821][-0.349364,0.0864362,-0.932992][0.0751244,0.555505,0][1.45096,-1.90245,-0.633891][3.12732,0.825249,-1.24073][0.0978069,0.984301,0][1.53999,-1.8949,-0.21537][2.51739,1.05214,-0.165581][0.132128,0.98364,0][1.44725,-1.96011,-0.355266][1.62103,-1.62872,-0.31546][0.120645,0.989875,0][0.886525,0.565558,-1.2526][0.748199,0.184125,-0.637413][0.0475083,0.747418,0][0.954958,0.0791984,-1.2004][3.81441,0.104506,-2.43555][0.0517026,0.794089,0][0.745543,0.404775,-1.41597][2.32874,0.472058,-2.50008][0.0340835,0.762819,0][0.652455,-0.62263,-1.54127][0.356479,0.0537462,-0.932756][0.0655346,0.440599,0][0.725337,-0.481583,-1.42889][0.290322,-0.216433,0.0833629][0.0563196,0.454131,0][0.292558,-1.14174,-1.63562][0.0865752,-0.0645411,0.0248592][0.0732716,0.390794,0][0.292558,-1.14174,-1.63562][0.0865752,-0.0645411,0.0248592][0.0732716,0.390794,0][0.301358,-1.14172,-1.68946][0.282284,0.00729514,-0.959303][0.0776865,0.390796,0][0.652455,-0.62263,-1.54127][0.356479,0.0537462,-0.932756][0.0655346,0.440599,0][0.874032,-0.254768,-1.2993][0.890796,-0.916833,0.578126][0.0456925,0.475893,0][0.652455,-0.62263,-1.54127][0.356479,0.0537462,-0.932756][0.0655346,0.440599,0][0.902002,-0.254767,-1.3424][0.688534,-0.014281,-0.725064][0.0492264,0.475893,0][0.403262,0.542796,-1.65141][0.359976,0.115553,-0.925778][0.0745668,0.552414,0][0.513866,0.290041,-1.5545][0.172926,0.00373118,-0.984928][0.0666193,0.528164,0][0.526867,0.136491,-1.6082][0.482666,0.0126202,-0.875714][0.0710234,0.513432,0][0.511223,0.136258,-1.55671][0.513474,-1.36962,0.149819][0.0668009,0.513409,0][0.129083,-0.024897,-1.72026][0.108588,-0.00245584,-0.994084][0.0802122,0.497948,0][0.526867,0.136491,-1.6082][0.482666,0.0126202,-0.875714][0.0710234,0.513432,0][0.526867,0.136491,-1.6082][0.482666,0.0126202,-0.875714][0.0710234,0.513432,0][0.513866,0.290041,-1.5545][0.172926,0.00373118,-0.984928][0.0666193,0.528164,0][0.511223,0.136258,-1.55671][0.513474,-1.36962,0.149819][0.0668009,0.513409,0][0.652455,-0.62263,-1.54127][0.356479,0.0537462,-0.932756][0.0655346,0.440599,0][0.301358,-1.14172,-1.68946][0.282284,0.00729514,-0.959303][0.0776865,0.390796,0][0.724857,-0.254213,-1.49213][0.545002,0.0367707,-0.837628][0.0615049,0.475946,0][0.724857,-0.254213,-1.49213][0.545002,0.0367707,-0.837628][0.0615049,0.475946,0][0.436691,-0.181058,-1.64758][0.406421,-0.0849116,-0.909732][0.0742525,0.482965,0][0.810913,-0.151484,-1.42545][0.634781,0.00915966,-0.772638][0.0560367,0.485802,0][0.652455,-0.62263,-1.54127][0.356479,0.0537462,-0.932756][0.0655346,0.440599,0][0.724857,-0.254213,-1.49213][0.545002,0.0367707,-0.837628][0.0615049,0.475946,0][0.810913,-0.151484,-1.42545][0.634781,0.00915966,-0.772638][0.0560367,0.485802,0][-0.0471455,0.514102,-1.6614][-1.41572,-0.668955,0.0314588][0.103412,0.549661,0][-0.200866,0.839915,-1.65094][-0.145531,0.245696,-0.95836][0.10427,0.580921,0][-0.0489317,0.515303,-1.71623][-0.0911335,0.0397218,-0.995046][0.0989155,0.549776,0][-0.0471455,0.514102,-1.6614][-1.41572,-0.668955,0.0314588][0.103412,0.549661,0][-0.0489317,0.515303,-1.71623][-0.0911335,0.0397218,-0.995046][0.0989155,0.549776,0][-0.400714,0.261204,-1.64488][-0.383376,0.0186134,-0.923405][0.104767,0.525397,0][-0.400714,0.261204,-1.64488][-0.383376,0.0186134,-0.923405][0.104767,0.525397,0][-0.388469,0.260971,-1.59204][-0.909879,1.28622,0.216544][0.109099,0.525375,0][-0.0471455,0.514102,-1.6614][-1.41572,-0.668955,0.0314588][0.103412,0.549661,0][0.409081,0.260971,-1.59882][0.83451,1.20657,0.198732][0.108544,0.525375,0][0.357385,0.455024,-1.67036][-0.236877,-0.0834793,-0.0552684][0.102677,0.543993,0][0.421326,0.261204,-1.65165][0.347855,0.0011092,-0.937548][0.104211,0.525397,0][0.928957,-1.95055,-1.34907][1.90952,0.3705,-2.37198][0.0391514,0.988807,0][1.14602,-1.39554,-0.89222][0.904011,0.111016,-0.412843][0.076713,0.935627,0][1.08631,-1.7734,-1.18364][0.594338,0.340087,-0.728769][0.052749,0.971836,0][0.278018,0.810083,1.13951][0.256452,0.416966,0.871993][0.243712,0.72432,0][0.197998,0.457538,1.24726][0.195256,0.110682,0.974487][0.252485,0.75816,0][0.574612,0.457538,1.10409][0.549827,0.113056,0.827592][0.240745,0.758139,0][0.574612,0.457538,1.10409][0.549827,0.113056,0.827592][0.240745,0.758139,0][0.197998,0.457538,1.24726][0.195256,0.110682,0.974487][0.252485,0.75816,0][0.668312,-1.30789,1.11335][0.621901,0.151649,0.768272][0.241192,0.927521,0][-1.14602,-1.39554,0.462622][-0.90226,0.139945,0.407852][0.458525,0.692323,0][-1.3695,-1.75141,0.244966][-2.80691,1.44126,0.724182][0.439414,0.658871,0][-0.843096,-1.47062,0.975845][-0.753399,0.174591,0.633962][0.500313,0.683553,0][-1.3695,-1.75141,0.244966][-2.80691,1.44126,0.724182][0.439414,0.658871,0][-1.14602,-1.39554,0.462622][-0.90226,0.139945,0.407852][0.458525,0.692323,0][-1.33753,-1.60048,-0.104089][-0.918716,0.388766,0.0694387][0.411351,0.674411,0][-0.664792,1.40682,-0.611683][-0.521735,0.808796,-0.271369][0.380534,0.964296,0][-0.830841,1.12162,-0.921631][-0.671899,0.612839,-0.415909][0.354113,0.937901,0][-0.886525,1.27545,-0.379653][-0.727042,0.682979,-0.0703577][0.399077,0.950989,0][-0.655073,1.46305,-0.336763][-0.535206,0.844258,-0.027996][0.403265,0.968845,0][-0.886525,1.27545,-0.379653][-0.727042,0.682979,-0.0703577][0.399077,0.950989,0][-0.603642,1.40682,0.297757][-0.522172,0.806132,0.278366][0.455059,0.96151,0][-0.967543,-0.0941957,-1.227][-0.775779,-0.000707881,-0.631004][0.139034,0.491299,0][-1.12651,0.127779,-0.99276][-0.642231,-1.28463,0.781519][0.158242,0.512596,0][-1.05575,0.2952,-1.10523][-0.796014,0.0198565,-0.604952][0.149019,0.528659,0][0.527763,0.520885,-1.60166][0.465405,0.171897,-0.868245][0.0704864,0.550312,0][0.724192,0.383126,-1.42662][-0.0320952,-0.205084,-0.125394][0.0561333,0.537095,0][0.391032,0.540443,-1.59865][-0.0717869,-0.458709,-0.280466][0.0702396,0.552188,0][0.391032,0.540443,-1.59865][-0.0717869,-0.458709,-0.280466][0.0702396,0.552188,0][0.403262,0.542796,-1.65141][0.359976,0.115553,-0.925778][0.0745668,0.552414,0][0.527763,0.520885,-1.60166][0.465405,0.171897,-0.868245][0.0704864,0.550312,0][0.391032,0.540443,-1.59865][-0.0717869,-0.458709,-0.280466][0.0702396,0.552188,0][0.513866,0.290041,-1.5545][0.172926,0.00373118,-0.984928][0.0666193,0.528164,0][0.403262,0.542796,-1.65141][0.359976,0.115553,-0.925778][0.0745668,0.552414,0][0.0695438,0.515303,-1.71718][0.0819578,0.0337311,-0.996065][0.07996,0.549776,0][0.218954,0.892174,-1.5821][0.117749,-0.0476817,0.00279122][0.068883,0.585935,0][0.0677575,0.514101,-1.66235][1.00796,1.37495,0.0629682][0.0754638,0.549661,0][-0.56699,0.303508,-1.56481][-0.419597,0.00671379,-0.907686][0.0674653,0.529456,0][-0.443772,0.542797,-1.62][-0.400896,0.080194,-0.912607][0.071991,0.552414,0][-0.567254,0.136491,-1.56593][-0.418207,-0.0129691,-0.908259][0.0675566,0.513432,0][-0.886525,0.565558,0.821863][-0.734191,0.163537,0.658953][0.494992,0.879247,0][-0.574612,0.457538,1.10409][-0.522203,0.113175,0.845278][0.517732,0.868026,0][-0.664817,0.949146,0.855229][-0.564462,0.472642,0.676751][0.499101,0.915922,0][-0.664817,0.949146,0.855229][-0.564462,0.472642,0.676751][0.499101,0.915922,0][-0.876582,0.9036,0.66057][-0.721913,0.43478,0.538339][0.482987,0.912151,0][-0.886525,0.565558,0.821863][-0.734191,0.163537,0.658953][0.494992,0.879247,0][-0.823787,-0.949254,-1.30874][-0.960982,-0.24708,-0.124362][0.0615595,0.168209,0][-0.931616,-1.22584,-1.26863][-0.760015,0.0371588,-0.648843][0.0476877,0.191069,0][-1.04053,-0.870016,-1.13098][-0.788633,0.0367732,-0.613763][0.0513768,0.155302,0][-1.04053,-0.870016,-1.13098][-0.788633,0.0367732,-0.613763][0.0513768,0.155302,0][-1.14029,-0.811621,-0.866066][0.0661345,0.247346,-0.0296186][0.033855,0.141292,0][-0.823787,-0.949254,-1.30874][-0.960982,-0.24708,-0.124362][0.0615595,0.168209,0][-0.678299,-1.47062,-1.48658][-0.646744,0.0269421,-0.762231][0.298527,0.691096,0][-1.08768,-1.95055,-1.18364][-2.22337,0.106328,-2.14946][0.321632,0.644154,0][-1.15578,-1.7734,-1.09173][-0.802455,0.146532,-0.578441][0.329798,0.660857,0][-1.15578,-1.7734,-1.09173][-0.802455,0.146532,-0.578441][0.329798,0.660857,0][-0.97806,-1.39554,-1.18364][-0.784773,0.0963052,-0.612255][0.323621,0.697366,0][-0.678299,-1.47062,-1.48658][-0.646744,0.0269421,-0.762231][0.298527,0.691096,0][0.297059,0.730659,-1.66287][0.376901,0.0788602,-0.922891][0.103291,0.570438,0][0.344424,0.582217,-1.61205][-0.409955,-0.0641087,0.194836][0.107458,0.556196,0][0.326615,0.745343,-1.59585][-1.18814,-0.185801,0.564677][0.108787,0.571847,0][-0.957686,-0.247122,-1.23837][-0.730974,-0.00466953,-0.682389][0.138102,0.476626,0][-0.735653,-0.751776,-1.38773][0.0623177,0.0414511,-0.0474131][0.125853,0.428208,0][-0.815146,-0.889408,-1.38694][-0.59718,0.019692,-0.801865][0.125919,0.415003,0][0.929007,0.713816,0.712956][0.772972,0.226121,0.592776][0.208716,0.733491,0][1.07482,0.515415,0.555256][0.859226,0.152764,0.488256][0.195749,0.752503,0][1.19237,0.762257,0.00558761][0.94047,0.3047,0.150578][0.150719,0.728737,0][-0.0926661,0.112939,-1.71951][-0.130881,-0.0103008,-0.991345][0.0801512,0.511172,0][-0.294692,0.241506,-1.62427][0.0987647,0.228062,-0.0983586][0.0723407,0.523507,0][0.0163865,0.0869783,-1.6702][0.217759,0.502838,-0.216864][0.0761077,0.508681,0][0.0163865,0.0869783,-1.6702][0.217759,0.502838,-0.216864][0.0761077,0.508681,0][0.0558956,0.0930728,-1.72359][0.0463178,0.0201841,-0.998723][0.0804857,0.509266,0][-0.0926661,0.112939,-1.71951][-0.130881,-0.0103008,-0.991345][0.0801512,0.511172,0][-0.305585,0.241738,-1.67754][-0.27869,0.0602456,-0.95849][0.076709,0.52353,0][0.00695591,0.463263,-1.66553][0.0820369,-0.114807,-0.0172763][0.0757243,0.544783,0][-0.294692,0.241506,-1.62427][0.0987647,0.228062,-0.0983586][0.0723407,0.523507,0][1.24115,0.61539,-0.329653][0.982965,0.169541,-0.0709662][0.123202,0.742777,0][1.11709,0.565558,-0.881316][0.917468,0.127344,-0.376877][0.0779551,0.747474,0][1.14819,0.762257,-0.651864][0.920034,0.306793,-0.243753][0.0968057,0.728637,0][0.976712,0.762257,-1.04563][0.793027,0.338086,-0.50676][0.0645158,0.728577,0][1.14819,0.762257,-0.651864][0.920034,0.306793,-0.243753][0.0968057,0.728637,0][1.11709,0.565558,-0.881316][0.917468,0.127344,-0.376877][0.0779551,0.747474,0][0.345064,-0.656466,-1.62193][0.0613267,-3.5239e-007,-0.639179][0.0256565,0.330441,0][0.345064,-0.440239,-1.62193][0.17121,-9.83789e-007,-1.78444][0.045857,0.325717,0][0.538686,-0.396368,-1.60335][0.0955074,-5.48796e-007,-0.995429][0.0503026,0.326241,0][0.960476,-1.22584,-1.2816][0.753124,0.0381948,-0.656769][0.121239,0.359952,0][0.917063,-1.12576,-1.25486][-2.36611,-0.95789,-0.256417][0.123053,0.369632,0][0.852644,-0.949254,-1.31981][-0.189866,-0.076865,-0.0205759][0.117067,0.386345,0][0.960476,-1.22584,-1.2816][0.753124,0.0381948,-0.656769][0.153019,0.383328,0][0.903458,-1.51324,-1.28621][0.0382748,-0.0734911,0.0851331][0.16297,0.409047,0][0.917063,-1.12576,-1.25486][-2.36611,-0.95789,-0.256417][0.151465,0.373603,0][-0.454886,-1.8455,1.48065][-0.918267,1.11989,2.30241][0.271216,0.979158,0][-0.303057,-1.47062,1.3408][-0.253008,0.301003,0.919448][0.259814,0.943169,0][-0.597841,-1.53525,1.21851][-0.559085,0.269748,0.784003][0.249775,0.949351,0][-0.51204,-0.396367,-1.5369][-0.27511,-7.58116e-007,-0.653162][0.130255,0.323944,0][-0.334062,-0.440239,-1.61186][-0.696448,-1.91919e-006,-1.65349][0.135484,0.32925,0][-0.334062,-0.656466,-1.61186][-0.247916,-6.83177e-007,-0.588598][0.131518,0.349613,0][0.218954,0.892174,-1.5821][0.117749,-0.0476817,0.00279122][0.068883,0.585935,0][0.0695438,0.515303,-1.71718][0.0819578,0.0337311,-0.996065][0.07996,0.549776,0][0.209227,0.971228,-1.61253][0.108941,0.322667,-0.940222][0.071378,0.593519,0][0.209227,0.971228,-1.61253][0.108941,0.322667,-0.940222][0.071378,0.593519,0][0.116855,1.06853,-1.52309][0.300109,0.110109,0.190148][0.0640435,0.602855,0][0.218954,0.892174,-1.5821][0.117749,-0.0476817,0.00279122][0.068883,0.585935,0][-1.64645e-007,-1.53665,1.40572][0.00165261,0.342864,0.939384][0.265126,0.949514,0][0.46603,-1.84364,1.4756][0.945553,1.20764,2.1402][0.270802,0.978978,0][0.303057,-1.47062,1.3408][0.229393,0.275822,0.933435][0.259814,0.943169,0][-0.019755,1.628,0.0770893][-0.00310701,0.973733,0.227673][0.156736,0.645685,0][0.18502,1.63643,-0.105072][0.165361,0.98504,0.0484885][0.141799,0.644849,0][-0.165298,1.64263,-0.246002][-0.114563,0.993273,-0.016859][0.130244,0.644232,0][0.18502,1.63643,-0.105072][0.165361,0.98504,0.0484885][0.141799,0.644849,0][0.285337,1.57334,0.175512][0.194176,0.937164,0.289862][0.164797,0.650944,0][0.576301,1.51252,-0.215371][0.471986,0.881603,-0.00242745][0.132733,0.65672,0][1.19936,-1.47062,0.355173][0.918058,0.207787,0.337629][0.17899,0.94302,0][1.3695,-1.75141,0.244967][2.7948,1.47213,0.711385][0.169903,0.969943,0][1.33753,-1.60048,-0.104088][0.915702,0.397816,0.0568504][0.141306,0.955409,0][1.2633,-1.30789,0.0178565][0.989202,0.0835524,0.120406][0.151358,0.927355,0][1.27038,-1.39554,-0.448597][0.978182,0.159181,-0.133496][0.113091,0.935695,0][1.24115,0.61539,-0.329653][0.982965,0.169541,-0.0709662][0.123202,0.742777,0][0.218309,-0.21511,-1.6835][1.13525,0.0583396,-3.63349][0.0120355,0.822252,0][0.442024,-1.95055,-1.63335][1.20103,0.107985,-2.84137][0.01584,0.988764,0][0.140038,-1.95055,-1.69825][0.326341,-0.00174545,-1.52593][0.0105178,0.988755,0][0.00695591,0.463263,-1.66553][0.0820369,-0.114807,-0.0172763][0.103073,0.544783,0][0.00516976,0.464464,-1.72036][-0.0132704,-0.000881838,-0.999912][0.0985769,0.544899,0][0.317536,0.234107,-1.68452][0.278028,0.00168939,-0.960572][0.101516,0.522797,0][0.317536,0.234107,-1.68452][0.278028,0.00168939,-0.960572][0.101516,0.522797,0][0.308734,0.233875,-1.63068][-0.954936,-1.28085,-0.161664][0.105931,0.522775,0][0.00695591,0.463263,-1.66553][0.0820369,-0.114807,-0.0172763][0.103073,0.544783,0][0.00695591,0.463263,-1.66553][0.0820369,-0.114807,-0.0172763][0.0757243,0.544783,0][-0.305585,0.241738,-1.67754][-0.27869,0.0602456,-0.95849][0.076709,0.52353,0][0.00516976,0.464464,-1.72036][-0.0132704,-0.000881838,-0.999912][0.0802206,0.544899,0][0.116855,1.06853,-1.52309][0.300109,0.110109,0.190148][0.0640435,0.602855,0][0.209227,0.971228,-1.61253][0.108941,0.322667,-0.940222][0.071378,0.593519,0][0.00869353,1.14941,-1.54433][-0.00531039,0.450404,-0.892809][0.0657853,0.610615,0][0.00869353,1.14941,-1.54433][-0.00531039,0.450404,-0.892809][0.0657853,0.610615,0][0.0103061,1.12921,-1.49483][0.834142,1.24143,0.479554][0.0617261,0.608677,0][0.116855,1.06853,-1.52309][0.300109,0.110109,0.190148][0.0640435,0.602855,0][0.00869353,1.14941,-1.54433][-0.00531039,0.450404,-0.892809][0.113012,0.610615,0][-0.139449,1.02832,-1.53355][-0.165414,0.210492,0.0913073][0.113896,0.598997,0][0.0103061,1.12921,-1.49483][0.834142,1.24143,0.479554][0.117071,0.608677,0][-0.185813,-1.92095,-1.7068][-0.208744,0.00312582,-0.977965][0.0791089,0.316033,0][-0.22381,-0.208561,-1.69841][0.107567,0.0189329,-0.994018][0.0784206,0.480326,0][-0.137263,-0.126777,-1.65812][-0.140813,-0.726713,-0.672354][0.0751168,0.488173,0][-0.664817,0.949146,0.855229][-0.564462,0.472642,0.676751][0.499101,0.915922,0][-0.527602,1.27545,0.634262][-0.448899,0.72726,0.519213][0.482164,0.947883,0][-0.876582,0.9036,0.66057][-0.721913,0.43478,0.538339][0.482987,0.912151,0][-0.393785,-0.960855,1.21614][-0.351293,0.0835046,0.932534][0.249682,0.894241,0][-0.597841,-1.53525,1.21851][-0.559085,0.269748,0.784003][0.249775,0.949351,0][-0.303057,-1.47062,1.3408][-0.253008,0.301003,0.919448][0.259814,0.943169,0][-0.393785,-0.960855,1.21614][-0.351293,0.0835046,0.932534][0.249682,0.894241,0][-1.53723e-007,-1.2068,1.32024][-0.0246463,0.15666,0.987345][0.258175,0.917854,0][-0.197998,0.457538,1.24726][-0.189695,0.119407,0.974555][0.252485,0.75816,0][-0.425496,0.540444,-1.59832][-1.78316,1.12352,-4.83777][0.0191541,0.749775,0][-0.183456,0.857221,-1.57058][-0.164795,0.422913,-0.89106][0.0214852,0.719386,0][-0.0989002,0.515414,-1.6857][-0.0622502,0.151186,-0.986543][0.011984,0.752163,0][-0.425496,0.540444,-1.59832][-1.78316,1.12352,-4.83777][0.0191541,0.749775,0][-0.0989002,0.515414,-1.6857][-0.0622502,0.151186,-0.986543][0.011984,0.752163,0][-0.182354,-0.00790024,-1.69001][-0.559181,0.0740068,-3.3287][0.0115377,0.802371,0][-0.182354,-0.00790024,-1.69001][-0.559181,0.0740068,-3.3287][0.0115377,0.802371,0][-0.52004,0.384507,-1.569][-0.88268,0.0290473,-2.55732][0.0215307,0.76474,0][-0.425496,0.540444,-1.59832][-1.78316,1.12352,-4.83777][0.0191541,0.749775,0][-0.197998,0.457538,1.24726][-0.189695,0.119407,0.974555][0.252485,0.75816,0][-0.574612,0.457538,1.10409][-0.522203,0.113175,0.845278][0.240745,0.758139,0][-0.393785,-0.960855,1.21614][-0.351293,0.0835046,0.932534][0.249682,0.894241,0][-1.40315e-007,0.664835,1.2288][-0.0176502,0.299814,0.953834][0.251009,0.738269,0][-0.467529,0.713816,1.10524][-0.419679,0.30748,0.854005][0.240885,0.733551,0][-0.197998,0.457538,1.24726][-0.189695,0.119407,0.974555][0.252485,0.75816,0][1.07482,0.515415,0.555256][0.859226,0.152764,0.488256][0.195749,0.752503,0][1.20379,0.457538,0.242258][0.962191,0.112527,0.248045][0.170072,0.758008,0][1.19237,0.762257,0.00558761][0.94047,0.3047,0.150578][0.150719,0.728737,0][0.978298,-0.247121,-1.26061][-1.13922,0.768931,-0.866746][0.0425197,0.476627,0][0.947636,-0.247121,-1.22031][-1.002,0.676313,-0.762346][0.0392149,0.476627,0][0.874032,-0.254768,-1.2993][0.890796,-0.916833,0.578126][0.0456925,0.475893,0][0.874032,-0.254768,-1.2993][0.890796,-0.916833,0.578126][0.0456925,0.475893,0][0.902002,-0.254767,-1.3424][0.688534,-0.014281,-0.725064][0.0492264,0.475893,0][0.978298,-0.247121,-1.26061][-1.13922,0.768931,-0.866746][0.0425197,0.476627,0][1.08093,-0.864996,-1.13098][0.842632,0.0515964,-0.536012][0.151541,0.3466,0][0.974457,-0.896282,-1.19016][-0.0981094,0.458203,-0.0657169][0.148161,0.351197,0][1.16914,-0.811621,-0.890524][0.250818,-0.460219,-0.851639][0.167918,0.334483,0][0.852644,-0.949254,-1.31981][-0.189866,-0.076865,-0.0205759][0.140198,0.359884,0][1.08093,-0.864996,-1.13098][0.842632,0.0515964,-0.536012][0.151541,0.3466,0][0.960476,-1.22584,-1.2816][0.753124,0.0381948,-0.656769][0.153019,0.383328,0][0.868767,0.002985,-1.37412][0.691269,0.000206061,-0.722597][0.12697,0.500623,0][0.785834,-0.151484,-1.3798][-0.318033,0.171813,-0.0289812][0.126504,0.485802,0][0.9007,0.0791981,-1.27273][-0.434827,0.23491,-0.0396242][0.135284,0.507935,0][0.9007,0.0791981,-1.27273][-0.434827,0.23491,-0.0396242][0.135284,0.507935,0][0.931362,0.0792687,-1.31303][0.740933,0.00701685,-0.671543][0.131979,0.507942,0][0.868767,0.002985,-1.37412][0.691269,0.000206061,-0.722597][0.12697,0.500623,0][0.9007,0.0791981,-1.27273][-0.434827,0.23491,-0.0396242][0.135284,0.507935,0][0.845162,0.272476,-1.39535][0.663919,0.0110992,-0.747722][0.125229,0.526479,0][0.931362,0.0792687,-1.31303][0.740933,0.00701685,-0.671543][0.131979,0.507942,0][-0.453125,1.53461,0.109511][-0.396968,0.900566,0.177194][0.159378,0.65465,0][-0.603642,1.40682,0.297757][-0.522172,0.806132,0.278366][0.174792,0.666939,0][-0.301104,1.46305,0.476041][-0.182689,0.887215,0.423643][0.189422,0.661571,0][-0.301104,1.46305,0.476041][-0.182689,0.887215,0.423643][0.189422,0.661571,0][-0.019755,1.628,0.0770893][-0.00310701,0.973733,0.227673][0.156736,0.645685,0][-0.230571,1.58993,0.155932][-0.16558,0.955701,0.243351][0.163194,0.64935,0][-0.900366,-0.0152253,-1.30268][-0.743356,-0.00177014,-0.668894][0.0459698,0.498876,0][-0.884789,0.0153021,-1.24535][0.692488,0.414005,-0.408604][0.0412686,0.501804,0][-0.82295,-0.151484,-1.30954][0.261319,0.15623,-0.154191][0.0465322,0.485802,0][-0.82295,-0.151484,-1.30954][0.261319,0.15623,-0.154191][0.0465322,0.485802,0][-0.85092,-0.151484,-1.35264][-0.696516,-1.98515e-005,-0.717542][0.0500662,0.485802,0][-0.900366,-0.0152253,-1.30268][-0.743356,-0.00177014,-0.668894][0.0459698,0.498876,0][-0.85092,-0.151484,-1.35264][-0.696516,-1.98515e-005,-0.717542][0.0500662,0.485802,0][-0.82295,-0.151484,-1.30954][0.261319,0.15623,-0.154191][0.0465322,0.485802,0][-0.496243,-0.174527,-1.54575][0.00609616,0.126989,-0.00395649][0.0659022,0.483592,0][-0.496243,-0.174527,-1.54575][0.00609616,0.126989,-0.00395649][0.0659022,0.483592,0][-0.513709,-0.174527,-1.59637][-0.461702,-0.113027,-0.879804][0.0700532,0.483592,0][-0.85092,-0.151484,-1.35264][-0.696516,-1.98515e-005,-0.717542][0.0500662,0.485802,0][0.0913505,0.825793,-1.61749][-1.80994,-0.84876,0.813872][0.107012,0.579566,0][0.000498793,1.03381,-1.6026][-0.0139399,0.411202,-0.911438][0.108234,0.599524,0][0.0839317,0.775773,-1.68615][0.293189,0.142425,-0.945386][0.101382,0.574767,0][0.0839317,0.775773,-1.68615][0.293189,0.142425,-0.945386][0.101382,0.574767,0][0.00216625,0.642283,-1.65483][-0.332497,0.181131,-0.0960264][0.10395,0.561959,0][0.0913505,0.825793,-1.61749][-1.80994,-0.84876,0.813872][0.107012,0.579566,0][-0.919664,-0.675313,-1.20634][0.250275,1.72454,-0.190415][0.140728,0.435544,0][-0.950325,-0.675313,-1.24664][-0.780205,-0.0574984,-0.622876][0.137423,0.435544,0][-1.14859,-0.614142,-0.953236][-0.831481,-0.0358541,-0.554395][0.161483,0.441413,0][-1.14859,-0.614142,-0.953236][-0.831481,-0.0358541,-0.554395][0.161483,0.441413,0][-1.11104,-0.614142,-0.922754][0.165222,1.46069,-0.203577][0.163983,0.441413,0][-0.919664,-0.675313,-1.20634][0.250275,1.72454,-0.190415][0.140728,0.435544,0][-0.950325,-0.675313,-1.24664][-0.780205,-0.0574984,-0.622876][0.137423,0.435544,0][-0.919664,-0.675313,-1.20634][0.250275,1.72454,-0.190415][0.140728,0.435544,0][-1.14048,-0.0865495,-0.865651][-0.0456967,-0.0372564,0.034767][0.168666,0.492032,0][-1.14048,-0.0865495,-0.865651][-0.0456967,-0.0372564,0.034767][0.168666,0.492032,0][-1.17988,-0.0865495,-0.892462][-0.844336,-0.00690649,-0.53577][0.166467,0.492032,0][-0.950325,-0.675313,-1.24664][-0.780205,-0.0574984,-0.622876][0.137423,0.435544,0][-1.53999,-1.8949,-0.21537][-2.40996,1.16764,-0.124181][0.401177,0.646524,0][-1.45095,-1.90245,-0.633891][-3.02135,0.8758,-1.02251][0.366854,0.647081,0][-1.44711,-1.95117,-0.416354][-1.78853,-1.70267,-0.349761][0.384505,0.641744,0][0.000498793,1.03381,-1.6026][-0.0139399,0.411202,-0.911438][0.0705637,0.599524,0][0.0913505,0.825793,-1.61749][-1.80994,-0.84876,0.813872][0.071785,0.579566,0][0.00216621,1.01695,-1.55141][-1.43565,-0.615843,-0.156105][0.0663665,0.597906,0][0.00216621,1.01695,-1.55141][-1.43565,-0.615843,-0.156105][0.0663665,0.597906,0][-0.0907039,0.818194,-1.67327][-0.145956,0.206629,-0.967472][0.076359,0.578837,0][0.000498793,1.03381,-1.6026][-0.0139399,0.411202,-0.911438][0.0705637,0.599524,0][0.437242,-0.6423,-1.59037][-2.0823,1.82645,-1.1189][0.109237,0.438712,0][0.724857,-0.254213,-1.49213][0.545002,0.0367707,-0.837628][0.117293,0.475946,0][0.277334,-0.888854,-1.69524][0.274336,0.00650612,-0.961612][0.100637,0.415056,0][0.277334,-0.888854,-1.69524][0.274336,0.00650612,-0.961612][0.100637,0.415056,0][0.268532,-0.888854,-1.6414][-1.32634,0.952462,-0.216854][0.105052,0.415056,0][0.437242,-0.6423,-1.59037][-2.0823,1.82645,-1.1189][0.109237,0.438712,0][0.277334,-0.888854,-1.69524][0.274336,0.00650612,-0.961612][0.0781606,0.415056,0][0.268532,-0.361262,-1.6414][0.101683,0,0.0166251][0.0737457,0.465676,0][0.268532,-0.888854,-1.6414][-1.32634,0.952462,-0.216854][0.0737457,0.415056,0][0.536644,-0.295171,-1.54575][0.513296,-2.83267,0.361967][0.0659022,0.472017,0][0.277334,-0.361262,-1.69524][0.242798,-0.0120844,-0.970002][0.0781606,0.465676,0][0.724857,-0.254213,-1.49213][0.545002,0.0367707,-0.837628][0.0615049,0.475946,0][0.724857,-0.254213,-1.49213][0.545002,0.0367707,-0.837628][0.0615049,0.475946,0][0.702797,-0.254214,-1.44423][0.2741,-1.42484,0.126226][0.0575772,0.475946,0][0.536644,-0.295171,-1.54575][0.513296,-2.83267,0.361967][0.0659022,0.472017,0][0.268532,-0.361262,-1.6414][0.101683,0,0.0166251][0.0737457,0.465676,0][0.277334,-0.888854,-1.69524][0.274336,0.00650612,-0.961612][0.0781606,0.415056,0][0.277334,-0.361262,-1.69524][0.242798,-0.0120844,-0.970002][0.0781606,0.465676,0][0.35671,1.23895,0.79221][0.275175,0.710963,0.647156][0.215309,0.68312,0][0.278018,0.810083,1.13951][0.256452,0.416966,0.871993][0.243712,0.72432,0][0.603641,1.12163,0.756713][0.514156,0.588463,0.623984][0.212377,0.694371,0][0.603641,1.12163,0.756713][0.514156,0.588463,0.623984][0.212377,0.694371,0][0.438571,1.40682,0.49089][0.293449,0.850597,0.436316][0.190629,0.666968,0][0.35671,1.23895,0.79221][0.275175,0.710963,0.647156][0.215309,0.68312,0][0.970938,-0.675312,-1.26888][0.775812,-0.0559282,-0.62848][0.0431981,0.435544,0][1.16109,-0.0865493,-0.905183][0.101687,-0.391809,-0.91441][0.0133736,0.492032,0][0.940276,-0.675312,-1.22858][1.17553,-0.932138,0.894365][0.0398933,0.435544,0][0.970938,-0.675312,-1.26888][0.775812,-0.0559282,-0.62848][0.0431981,0.435544,0][0.940276,-0.675312,-1.22858][1.17553,-0.932138,0.894365][0.0398933,0.435544,0][1.13165,-0.614142,-0.958774][-0.0207313,0.13443,-0.0157728][0.0177682,0.441413,0][1.13165,-0.614142,-0.958774][-0.0207313,0.13443,-0.0157728][0.0177682,0.441413,0][1.16921,-0.614142,-0.989255][0.818914,-0.0358892,-0.572793][0.0202678,0.441413,0][0.970938,-0.675312,-1.26888][0.775812,-0.0559282,-0.62848][0.0431981,0.435544,0][0,1.12162,-1.41693][-0.00681115,0.647141,-0.76234][0.0341316,0.694042,0][-0.329739,1.31053,-1.14677][-0.255084,0.784099,-0.565792][0.0563193,0.675959,0][0.201152,1.31053,-1.19565][0.151392,0.783779,-0.602305][0.0523107,0.675951,0][0,1.12162,-1.41693][-0.00681115,0.647141,-0.76234][0.0341316,0.694042,0][0.201152,1.31053,-1.19565][0.151392,0.783779,-0.602305][0.0523107,0.675951,0][0.349515,0.949146,-1.47394][0.301318,0.507443,-0.807285][0.0294265,0.710581,0][0.210176,1.61733,-0.461277][0.189364,0.972738,-0.133871][0.112586,0.646627,0][0.709623,1.40682,-0.485138][0.564542,0.806987,-0.17339][0.110592,0.66682,0][0.34514,1.53461,-0.68818][0.305776,0.909114,-0.282867][0.0939648,0.654529,0][0.34514,1.53461,-0.68818][0.305776,0.909114,-0.282867][0.0939648,0.654529,0][0.0901499,1.51252,-0.881316][0.0821835,0.895653,-0.437094][0.0781231,0.65662,0][0.210176,1.61733,-0.461277][0.189364,0.972738,-0.133871][0.112586,0.646627,0][-0.185813,-1.92095,-1.7068][-0.208744,0.00312582,-0.977965][0.0791089,0.316033,0][-0.137263,-0.126777,-1.65812][-0.140813,-0.726713,-0.672354][0.0751168,0.488173,0][-0.180811,-1.92016,-1.65226][1.57714,-0.0387675,-0.14409][0.074636,0.316109,0][-0.185813,-1.92095,-1.7068][-0.208744,0.00312582,-0.977965][0.0791089,0.316033,0][-0.180811,-1.92016,-1.65226][1.57714,-0.0387675,-0.14409][0.074636,0.316109,0][-0.325633,-1.90225,-1.61829][-0.0387792,-0.329414,0.00832994][0.0718506,0.317827,0][-0.325633,-1.90225,-1.61829][-0.0387792,-0.329414,0.00832994][0.0718506,0.317827,0][-0.337363,-1.90415,-1.67125][-0.228041,0.00329983,-0.973646][0.0761935,0.317645,0][-0.185813,-1.92095,-1.7068][-0.208744,0.00312582,-0.977965][0.0791089,0.316033,0][-0.400714,0.261204,-1.64488][-0.383376,0.0186134,-0.923405][0.0740306,0.525397,0][-0.325626,0.563767,-1.60578][0.165287,-0.0360494,-0.0384662][0.0708249,0.554426,0][-0.388469,0.260971,-1.59204][-0.909879,1.28622,0.216544][0.0696981,0.525375,0][-0.680374,0.59738,-1.41985][-0.0475846,0.123473,0.0302966][0.0555775,0.557651,0][-0.389216,0.757745,-1.61611][-0.402092,0.143537,-0.904278][0.0716715,0.573037,0][-0.799524,0.544465,-1.39246][-0.632545,0.0480461,-0.773032][0.0533314,0.552574,0][-0.799524,0.544465,-1.39246][-0.632545,0.0480461,-0.773032][0.0533314,0.552574,0][-0.932128,0.409477,-1.18822][-1.79323,2.10434,0.226558][0.0365831,0.539623,0][-0.680374,0.59738,-1.41985][-0.0475846,0.123473,0.0302966][0.0555775,0.557651,0][-1.2633,-1.30789,0.0178562][-0.98115,0.0888929,0.171591][0.422393,0.70209,0][-1.2567,0.515414,-0.0996576][-0.987368,0.143972,0.0661575][0.419298,0.877262,0][-1.27512,-1.30789,-0.332342][-0.99212,0.0976699,-0.0784719][0.393695,0.703163,0][0.668312,-1.30789,1.11335][0.621901,0.151649,0.768272][0.241192,0.927521,0][0.199339,-0.960855,1.2707][0.265623,0.0658334,0.961826][0.254156,0.89425,0][0.627881,-1.78759,1.30145][1.93259,1.04121,2.37078][0.256531,0.973574,0][0.197998,0.457538,1.24726][0.195256,0.110682,0.974487][0.252485,0.75816,0][0.199339,-0.960855,1.2707][0.265623,0.0658334,0.961826][0.254156,0.89425,0][0.668312,-1.30789,1.11335][0.621901,0.151649,0.768272][0.241192,0.927521,0][0.845162,0.272476,-1.39535][0.663919,0.0110992,-0.747722][0.125229,0.526479,0][0.9007,0.0791981,-1.27273][-0.434827,0.23491,-0.0396242][0.135284,0.507935,0][0.724192,0.383126,-1.42662][-0.0320952,-0.205084,-0.125394][0.122664,0.537095,0][0.724192,0.383126,-1.42662][-0.0320952,-0.205084,-0.125394][0.122664,0.537095,0][0.527763,0.520885,-1.60166][0.465405,0.171897,-0.868245][0.108311,0.550312,0][0.845162,0.272476,-1.39535][0.663919,0.0110992,-0.747722][0.125229,0.526479,0][1.04556,0.286451,-1.09473][2.28532,1.37186,-0.15253][0.0289171,0.527819,0][1.14502,0.127779,-1.03168][0.800397,0.0209273,-0.599105][0.0237463,0.512596,0][0.92306,0.46588,-1.3164][0.707661,0.0284128,-0.70598][0.047095,0.545035,0][0.888396,0.469973,-1.27957][0.5622,1.29524,0.385139][0.0440743,0.545427,0][0.92306,0.46588,-1.3164][0.707661,0.0284128,-0.70598][0.047095,0.545035,0][0.744198,0.588435,-1.46747][0.544623,0.0353089,-0.837937][0.0594829,0.556793,0][0.744198,0.588435,-1.46747][0.544623,0.0353089,-0.837937][0.0594829,0.556793,0][0.630722,0.636935,-1.47679][0.185628,0.463032,0.149463][0.060247,0.561446,0][0.888396,0.469973,-1.27957][0.5622,1.29524,0.385139][0.0440743,0.545427,0][0.459408,0.876874,-1.51143][-1.50501,-1.61284,0.121968][0.162288,0.072256,0][0.365221,0.959774,-1.57743][0.418058,0.358621,-0.834637][0.167146,0.0612416,0][0.532012,0.805437,-1.5602][0.418058,0.358621,-0.834637][0.157853,0.0809644,0][0.532012,0.805437,-1.5602][0.418058,0.358621,-0.834637][0.157853,0.0809644,0][0.51672,0.795535,-1.50987][-1.20156,-0.856904,-0.533631][0.156505,0.079852,0][0.459408,0.876874,-1.51143][-1.50501,-1.61284,0.121968][0.162288,0.072256,0][0.426991,0.939864,-1.50304][0.588066,2.36533,0.144758][0.167112,0.0674682,0][0.654907,0.880945,-1.4662][0.418058,0.358621,-0.834637][0.168316,0.090022,0][0.365221,0.959774,-1.57743][0.418058,0.358621,-0.834637][0.167146,0.0612416,0][0.365221,0.959774,-1.57743][0.418058,0.358621,-0.834637][0.167146,0.0612416,0][0.459408,0.876874,-1.51143][-1.50501,-1.61284,0.121968][0.162288,0.072256,0][0.426991,0.939864,-1.50304][0.588066,2.36533,0.144758][0.167112,0.0674682,0][-1.40315e-007,0.664835,1.2288][-0.0176502,0.299814,0.953834][0.251009,0.738269,0][0.278018,0.810083,1.13951][0.256452,0.416966,0.871993][0.243712,0.72432,0][-0.0782103,1.16198,0.947367][-0.0257431,0.635438,0.771723][0.228018,0.690528,0][0.278018,0.810083,1.13951][0.256452,0.416966,0.871993][0.243712,0.72432,0][-1.40315e-007,0.664835,1.2288][-0.0176502,0.299814,0.953834][0.251009,0.738269,0][0.197998,0.457538,1.24726][0.195256,0.110682,0.974487][0.252485,0.75816,0][1.0522,1.08009,-0.312255][0.832823,0.552058,-0.0404729][0.124711,0.698194,0][1.14819,0.762257,-0.651864][0.920034,0.306793,-0.243753][0.0968057,0.728637,0][0.975111,1.08009,-0.687935][0.750978,0.582682,-0.310667][0.0939042,0.698137,0][1.0522,1.08009,-0.312255][0.832823,0.552058,-0.0404729][0.124711,0.698194,0][0.906379,1.23895,-0.469969][0.700312,0.701761,-0.130745][0.111806,0.682928,0][0.576301,1.51252,-0.215371][0.471986,0.881603,-0.00242745][0.132733,0.65672,0][0.231293,0.0250083,-1.65024][0.19195,-0.249806,-0.102155][0.0744706,0.502736,0][-0.0203447,-0.138337,-1.72363][-0.0663737,-0.013537,-0.997703][0.0804889,0.487064,0][0.129083,-0.024897,-1.72026][0.108588,-0.00245584,-0.994084][0.0802122,0.497948,0][0.129083,-0.024897,-1.72026][0.108588,-0.00245584,-0.994084][0.0802122,0.497948,0][0.511223,0.136258,-1.55671][0.513474,-1.36962,0.149819][0.0668009,0.513409,0][0.231293,0.0250083,-1.65024][0.19195,-0.249806,-0.102155][0.0744706,0.502736,0][-0.266332,-0.888854,-1.68814][-0.301919,0.013551,-0.953237][0.0775783,0.415056,0][-0.691795,-0.254213,-1.42333][0.0530263,0.0391663,-0.00866961][0.0558631,0.475946,0][-0.25753,-0.888854,-1.6343][1.39157,1.02784,-0.227517][0.0731635,0.415056,0][-0.25753,-0.888854,-1.6343][1.39157,1.02784,-0.227517][0.105634,0.415056,0][-0.266332,-0.361261,-1.68814][-0.282174,-0.0103642,-0.959307][0.101219,0.465676,0][-0.266332,-0.888854,-1.68814][-0.301919,0.013551,-0.953237][0.101219,0.415056,0][-0.691795,-0.254213,-1.42333][0.0530263,0.0391663,-0.00866961][0.0558631,0.475946,0][-0.266332,-0.888854,-1.68814][-0.301919,0.013551,-0.953237][0.0775783,0.415056,0][-0.716874,-0.254214,-1.46898][-0.582963,0.0505666,-0.810924][0.0596065,0.475946,0][-0.691795,-0.254213,-1.42333][0.0530263,0.0391663,-0.00866961][0.0558631,0.475946,0][-0.716874,-0.254214,-1.46898][-0.582963,0.0505666,-0.810924][0.0596065,0.475946,0][-0.266332,-0.361261,-1.68814][-0.282174,-0.0103642,-0.959307][0.0775783,0.465676,0][-0.266332,-0.361261,-1.68814][-0.282174,-0.0103642,-0.959307][0.0775783,0.465676,0][-0.25753,-0.361261,-1.6343][-0.412465,-1.80617,0.0674362][0.0731635,0.465676,0][-0.691795,-0.254213,-1.42333][0.0530263,0.0391663,-0.00866961][0.0558631,0.475946,0][0.520863,1.16198,-1.20983][0.42542,0.647839,-0.631919][0.0511217,0.690201,0][0.559599,1.31053,-0.981967][0.480523,0.765284,-0.428297][0.0698336,0.675984,0][0.765307,1.03746,-1.11078][0.652511,0.544355,-0.52717][0.0592221,0.702163,0][0.765307,1.03746,-1.11078][0.652511,0.544355,-0.52717][0.0592221,0.702163,0][0.622258,0.810082,-1.40342][0.547812,0.373794,-0.748452][0.0351845,0.723934,0][0.520863,1.16198,-1.20983][0.42542,0.647839,-0.631919][0.0511217,0.690201,0][-1.20379,0.457538,0.242258][-0.952724,0.100491,0.286738][0.447109,0.870666,0][-1.06153,0.61539,0.545724][-0.874327,0.178976,0.451132][0.472542,0.88487,0][-1.06503,0.9036,0.30077][-0.86787,0.391969,0.305226][0.453503,0.913253,0][-1.06153,0.61539,0.545724][-0.874327,0.178976,0.451132][0.472542,0.88487,0][-0.876582,0.9036,0.66057][-0.721913,0.43478,0.538339][0.482987,0.912151,0][-1.06503,0.9036,0.30077][-0.86787,0.391969,0.305226][0.453503,0.913253,0][0.630722,0.636935,-1.47679][0.185628,0.463032,0.149463][0.060247,0.561446,0][0.744198,0.588435,-1.46747][0.544623,0.0353089,-0.837937][0.0594829,0.556793,0][0.409829,0.757745,-1.62288][0.360009,-0.136205,-0.922953][0.0722271,0.573037,0][0.409829,0.757745,-1.62288][0.360009,-0.136205,-0.922953][0.0722271,0.573037,0][0.326615,0.745343,-1.59585][-1.18814,-0.185801,0.564677][0.0700104,0.571847,0][0.630722,0.636935,-1.47679][0.185628,0.463032,0.149463][0.060247,0.561446,0][-0.198775,0.872418,-1.58388][-1.81289,0.169619,-0.0256722][0.109769,0.584039,0][-0.188415,0.979806,-1.60595][-0.0996072,0.35741,-0.928621][0.107959,0.594342,0][-0.200866,0.839915,-1.65094][-0.145531,0.245696,-0.95836][0.10427,0.580921,0][-0.200866,0.839915,-1.65094][-0.145531,0.245696,-0.95836][0.10427,0.580921,0][-0.0471455,0.514102,-1.6614][-1.41572,-0.668955,0.0314588][0.103412,0.549661,0][-0.198775,0.872418,-1.58388][-1.81289,0.169619,-0.0256722][0.109769,0.584039,0][0.985658,-0.0941957,-1.25234][0.800239,-0.000220815,-0.599682][0.0418413,0.491299,0][0.954997,-0.0941957,-1.21204][-0.0330391,1.89924,-0.0251369][0.0385365,0.491299,0][1.16109,-0.0865493,-0.905183][0.101687,-0.391809,-0.91441][0.0133736,0.492032,0][0.985658,-0.0941957,-1.25234][0.800239,-0.000220815,-0.599682][0.0418413,0.491299,0][1.10957,0.127546,-0.99768][0.0722469,-0.103497,0.054967][0.0209586,0.512574,0][0.954997,-0.0941957,-1.21204][-0.0330391,1.89924,-0.0251369][0.0385365,0.491299,0][1.07482,0.515415,0.555256][0.859226,0.152764,0.488256][0.195749,0.752503,0][0.929007,0.713816,0.712956][0.772972,0.226121,0.592776][0.208716,0.733491,0][0.709623,0.762257,0.927383][0.614272,0.30776,0.726604][0.226309,0.728876,0][0.929007,0.713816,0.712956][0.772972,0.226121,0.592776][0.208716,0.733491,0][0.603641,1.12163,0.756713][0.514156,0.588463,0.623984][0.212377,0.694371,0][0.709623,0.762257,0.927383][0.614272,0.30776,0.726604][0.226309,0.728876,0][0.0558956,0.0930728,-1.72359][0.0463178,0.0201841,-0.998723][0.0804857,0.509266,0][0.0163865,0.0869783,-1.6702][0.217759,0.502838,-0.216864][0.0761077,0.508681,0][0.308734,0.233875,-1.63068][-0.954936,-1.28085,-0.161664][0.0728668,0.522775,0][0.308734,0.233875,-1.63068][-0.954936,-1.28085,-0.161664][0.0728668,0.522775,0][0.317536,0.234107,-1.68452][0.278028,0.00168939,-0.960572][0.0772816,0.522797,0][0.0558956,0.0930728,-1.72359][0.0463178,0.0201841,-0.998723][0.0804857,0.509266,0][-0.294815,0.0348555,-1.62512][-0.704353,-1.17303,0.099842][0.106387,0.50368,0][-0.301387,0.0341731,-1.6795][-0.255286,-0.0160438,-0.966733][0.101927,0.503615,0][-0.0203447,-0.138337,-1.72363][-0.0663737,-0.013537,-0.997703][0.0983085,0.487064,0][-0.301387,0.0341731,-1.6795][-0.255286,-0.0160438,-0.966733][0.07687,0.503615,0][-0.294815,0.0348555,-1.62512][-0.704353,-1.17303,0.099842][0.0724108,0.50368,0][-0.548339,0.136258,-1.51608][-0.0593493,-0.158231,0.00915801][0.0634692,0.513409,0][-0.548339,0.136258,-1.51608][-0.0593493,-0.158231,0.00915801][0.0634692,0.513409,0][-0.567254,0.136491,-1.56593][-0.418207,-0.0129691,-0.908259][0.0675566,0.513432,0][-0.301387,0.0341731,-1.6795][-0.255286,-0.0160438,-0.966733][0.07687,0.503615,0][-0.884789,0.0153021,-1.24535][0.692488,0.414005,-0.408604][0.0412686,0.501804,0][-0.900366,-0.0152253,-1.30268][-0.743356,-0.00177014,-0.668894][0.0459698,0.498876,0][-0.970973,0.0792687,-1.22213][-0.787815,0.0132186,-0.61577][0.0393638,0.507942,0][-0.970973,0.0792687,-1.22213][-0.787815,0.0132186,-0.61577][0.0393638,0.507942,0][-0.937816,0.0791981,-1.18486][0.689644,1.1512,-0.611403][0.0363077,0.507935,0][-0.884789,0.0153021,-1.24535][0.692488,0.414005,-0.408604][0.0412686,0.501804,0][-0.937816,0.0791981,-1.18486][0.689644,1.1512,-0.611403][0.0363077,0.507935,0][-0.970973,0.0792687,-1.22213][-0.787815,0.0132186,-0.61577][0.0393638,0.507942,0][-0.836444,0.33521,-1.36397][-0.726954,0.0346823,-0.685809][0.0509952,0.532498,0][-0.836444,0.33521,-1.36397][-0.726954,0.0346823,-0.685809][0.0509952,0.532498,0][-0.820355,0.320185,-1.30974][1.54728,-1.15837,-0.780014][0.0465483,0.531056,0][-0.937816,0.0791981,-1.18486][0.689644,1.1512,-0.611403][0.0363077,0.507935,0][0.298342,-1.8989,-1.63614][1.51348,0.0110563,0.242604][0.0733143,0.318149,0][0.306985,-1.90065,-1.68998][0.175271,1.54719e-005,-0.98452][0.0777291,0.317981,0][0.301358,-1.14172,-1.68946][0.282284,0.00729514,-0.959303][0.0776865,0.390796,0][0.301358,-1.14172,-1.68946][0.282284,0.00729514,-0.959303][0.0776865,0.390796,0][0.292558,-1.14174,-1.63562][0.0865752,-0.0645411,0.0248592][0.0732716,0.390794,0][0.298342,-1.8989,-1.63614][1.51348,0.0110563,0.242604][0.0733143,0.318149,0][0.306985,-1.90065,-1.68998][0.175271,1.54719e-005,-0.98452][0.0777291,0.317981,0][0.298342,-1.8989,-1.63614][1.51348,0.0110563,0.242604][0.0733143,0.318149,0][0.143695,-1.92016,-1.66341][0.0423288,-0.330419,0.0175369][0.0755502,0.316109,0][0.143695,-1.92016,-1.66341][0.0423288,-0.330419,0.0175369][0.0755502,0.316109,0][0.148846,-1.9205,-1.71794][0.172416,-4.30427e-005,-0.985024][0.0800219,0.316077,0][0.306985,-1.90065,-1.68998][0.175271,1.54719e-005,-0.98452][0.0777291,0.317981,0][-0.377156,0.749624,-1.56407][-0.641091,1.66351,0.408176][0.0674043,0.572258,0][-0.276441,0.730662,-1.65809][-0.319519,0.125567,-0.939223][0.0751145,0.570439,0][-0.389216,0.757745,-1.61611][-0.402092,0.143537,-0.904278][0.0716715,0.573037,0][-0.267749,0.723681,-1.60485][1.19793,-0.467832,-0.256897][0.0707485,0.569769,0][-0.337254,0.575008,-1.65821][-0.349364,0.0864362,-0.932992][0.0751244,0.555505,0][-0.276441,0.730662,-1.65809][-0.319519,0.125567,-0.939223][0.0751145,0.570439,0][-0.0989002,0.515414,-1.6857][-0.0622502,0.151186,-0.986543][0.011984,0.752163,0][0,-0.138337,-1.7063][0.00635774,0.0606179,-1.8934][0.0101789,0.814883,0][-0.182354,-0.00790024,-1.69001][-0.559181,0.0740068,-3.3287][0.0115377,0.802371,0][0.724857,-0.254213,-1.49213][0.545002,0.0367707,-0.837628][0.117293,0.475946,0][0.437242,-0.6423,-1.59037][-2.0823,1.82645,-1.1189][0.109237,0.438712,0][0.702797,-0.254214,-1.44423][0.2741,-1.42484,0.126226][0.12122,0.475946,0][0.143695,-1.92016,-1.66341][0.0423288,-0.330419,0.0175369][0.103247,0.316109,0][0.101934,-0.126777,-1.72165][0.117458,0.00101689,-0.993077][0.0984711,0.488173,0][0.148846,-1.9205,-1.71794][0.172416,-4.30427e-005,-0.985024][0.0987755,0.316077,0][-0.0782103,1.16198,0.947367][-0.0257431,0.635438,0.771723][0.228018,0.690528,0][-0.128962,1.34415,0.737283][0.041644,0.891549,0.451006][0.210823,0.673018,0][-0.381481,1.16198,0.862181][-0.337618,0.65766,0.673422][0.221033,0.690515,0][-0.258551,0.993789,1.04463][-0.211134,0.506121,0.83622][0.235965,0.70668,0][-1.40315e-007,0.664835,1.2288][-0.0176502,0.299814,0.953834][0.251009,0.738269,0][-0.0782103,1.16198,0.947367][-0.0257431,0.635438,0.771723][0.228018,0.690528,0][0.000386313,0.646422,-1.70947][-0.0369996,0.105853,-0.993693][0.0793273,0.562356,0][-0.0870179,0.825793,-1.61532][0.224546,0.108926,0.000936167][0.0716068,0.579566,0][0.00216625,0.642283,-1.65483][-0.332497,0.181131,-0.0960264][0.0748472,0.561959,0][0.00216625,0.642283,-1.65483][-0.332497,0.181131,-0.0960264][0.10395,0.561959,0][0.0839317,0.775773,-1.68615][0.293189,0.142425,-0.945386][0.101382,0.574767,0][0.000386313,0.646422,-1.70947][-0.0369996,0.105853,-0.993693][0.0994701,0.562356,0][-0.443772,0.542797,-1.62][-0.400896,0.080194,-0.912607][0.071991,0.552414,0][-0.428148,0.540443,-1.56858][-1.38901,0.805012,0.458839][0.0677738,0.552188,0][-0.54924,0.519684,-1.50925][0.767173,-1.45125,-0.326148][0.0629087,0.550197,0][-0.54924,0.519684,-1.50925][0.767173,-1.45125,-0.326148][0.0629087,0.550197,0][-0.568149,0.520887,-1.55908][-0.540621,0.166238,-0.824678][0.0669948,0.550312,0][-0.443772,0.542797,-1.62][-0.400896,0.080194,-0.912607][0.071991,0.552414,0][-0.329274,-1.1417,-1.67056][-0.291855,0.00691306,-0.956438][0.10266,0.390797,0][-0.31703,-1.14174,-1.61773][-1.37232,-0.917678,0.317484][0.106993,0.390794,0][-0.59247,-0.686272,-1.49181][-0.0793306,-0.0530488,0.018353][0.117319,0.434493,0][-0.59247,-0.686272,-1.49181][-0.0793306,-0.0530488,0.018353][0.117319,0.434493,0][-0.707625,-0.53337,-1.47636][-0.492583,0.00496175,-0.870251][0.118586,0.449163,0][-0.329274,-1.1417,-1.67056][-0.291855,0.00691306,-0.956438][0.10266,0.390797,0][-0.329274,-1.1417,-1.67056][-0.291855,0.00691306,-0.956438][0.10266,0.390797,0][-0.325633,-1.90225,-1.61829][-0.0387792,-0.329414,0.00832994][0.106947,0.317827,0][-0.31703,-1.14174,-1.61773][-1.37232,-0.917678,0.317484][0.106993,0.390794,0][0.576301,1.51252,-0.215371][0.471986,0.881603,-0.00242745][0.132733,0.65672,0][0.601306,1.43576,0.215755][0.48341,0.842473,0.237812][0.168073,0.66415,0][0.853678,1.27545,0.10916][0.675585,0.720989,0.154141][0.159303,0.679515,0][0.576301,1.51252,-0.215371][0.471986,0.881603,-0.00242745][0.132733,0.65672,0][0.285337,1.57334,0.175512][0.194176,0.937164,0.289862][0.164797,0.650944,0][0.601306,1.43576,0.215755][0.48341,0.842473,0.237812][0.168073,0.66415,0][-1.19237,0.762257,-0.436329][-0.936248,0.331264,-0.117062][0.392594,0.90196,0][-0.886525,1.27545,-0.379653][-0.727042,0.682979,-0.0703577][0.399077,0.950989,0][-1.0757,0.949146,-0.624304][-0.856923,0.467479,-0.217132][0.37786,0.920454,0][1.14502,0.127779,-1.03168][0.800397,0.0209273,-0.599105][0.0237463,0.512596,0][1.04556,0.286451,-1.09473][2.28532,1.37186,-0.15253][0.0289171,0.527819,0][1.10957,0.127546,-0.99768][0.0722469,-0.103497,0.054967][0.0209586,0.512574,0][1.10957,0.127546,-0.99768][0.0722469,-0.103497,0.054967][0.0209586,0.512574,0][0.985658,-0.0941957,-1.25234][0.800239,-0.000220815,-0.599682][0.0418413,0.491299,0][1.14502,0.127779,-1.03168][0.800397,0.0209273,-0.599105][0.0237463,0.512596,0][-0.931616,-1.22584,-1.26863][-0.760015,0.0371588,-0.648843][0.023859,0.168706,0][-0.823787,-0.949254,-1.30874][-0.960982,-0.24708,-0.124362][0.0271478,0.195243,0][-0.893916,-1.1568,-1.23571][2.15437,-0.918374,-0.541168][0.0211595,0.17533,0][-0.931616,-1.22584,-1.26863][-0.760015,0.0371588,-0.648843][0.023859,0.168706,0][-0.893916,-1.1568,-1.23571][2.15437,-0.918374,-0.541168][0.0211595,0.17533,0][-0.874601,-1.51324,-1.27528][-0.0584025,-0.0724345,0.0602609][0.0244044,0.141132,0][-0.874601,-1.51324,-1.27528][-0.0584025,-0.0724345,0.0602609][0.0244044,0.141132,0][-0.904951,-1.50984,-1.31574][-0.796126,0.025529,-0.604593][0.0277217,0.141458,0][-0.931616,-1.22584,-1.26863][-0.760015,0.0371588,-0.648843][0.023859,0.168706,0][-1.13312,-0.751775,-0.881632][-0.194207,-1.49663,0.285439][0.167355,0.428208,0][-1.17252,-0.751775,-0.908443][-0.826936,-0.0665344,-0.558346][0.165156,0.428208,0][-0.815146,-0.889408,-1.38694][-0.59718,0.019692,-0.801865][0.125919,0.415003,0][-0.815146,-0.889408,-1.38694][-0.59718,0.019692,-0.801865][0.125919,0.415003,0][-0.787176,-0.889408,-1.34384][-0.395155,-1.85449,0.256462][0.129453,0.415003,0][-1.13312,-0.751775,-0.881632][-0.194207,-1.49663,0.285439][0.167355,0.428208,0][-1.17252,-0.751775,-0.908443][-0.826936,-0.0665344,-0.558346][0.165156,0.428208,0][-1.13312,-0.751775,-0.881632][-0.194207,-1.49663,0.285439][0.167355,0.428208,0][-1.11104,-0.614142,-0.922754][0.165222,1.46069,-0.203577][0.163983,0.441413,0][-1.11104,-0.614142,-0.922754][0.165222,1.46069,-0.203577][0.163983,0.441413,0][-1.14859,-0.614142,-0.953236][-0.831481,-0.0358541,-0.554395][0.161483,0.441413,0][-1.17252,-0.751775,-0.908443][-0.826936,-0.0665344,-0.558346][0.165156,0.428208,0][-0.324371,0.959774,-1.57758][-0.417674,0.358435,-0.834909][0.0628932,0.323596,0][-0.312782,0.944623,-1.52758][1.02134,-1.1873,-0.596466][0.0671278,0.323939,0][-0.47587,0.795535,-1.51007][0.140193,-0.162973,-0.0818732][0.0631792,0.339148,0][-0.47587,0.795535,-1.51007][0.140193,-0.162973,-0.0818732][0.0631792,0.339148,0][-0.491162,0.805436,-1.5604][-0.417674,0.358435,-0.834909][0.0587988,0.33913,0][-0.324371,0.959774,-1.57758][-0.417674,0.358435,-0.834909][0.0628932,0.323596,0][-0.324371,0.959774,-1.57758][-0.417674,0.358435,-0.834909][0.166053,0.26895,0][-0.59269,0.869279,-1.42011][-0.0214507,0.152836,0.0512812][0.161504,0.297389,0][-0.312782,0.944623,-1.52758][1.02134,-1.1873,-0.596466][0.161808,0.269126,0][1.14602,-1.39554,-0.89222][0.904011,0.111016,-0.412843][0.076713,0.935627,0][1.27038,-1.39554,-0.448597][0.978182,0.159181,-0.133496][0.113091,0.935695,0][1.33109,-1.65917,-0.556154][0.88749,0.395908,-0.235836][0.104225,0.960971,0][1.33109,-1.65917,-0.556154][0.88749,0.395908,-0.235836][0.104225,0.960971,0][1.08631,-1.7734,-1.18364][0.594338,0.340087,-0.728769][0.052749,0.971836,0][1.14602,-1.39554,-0.89222][0.904011,0.111016,-0.412843][0.076713,0.935627,0][-0.707625,-0.53337,-1.47636][-0.492583,0.00496175,-0.870251][0.118586,0.449163,0][-0.59247,-0.686272,-1.49181][-0.0793306,-0.0530488,0.018353][0.117319,0.434493,0][-0.85342,-0.254767,-1.28033][0.68849,-0.967541,1.88716][0.134661,0.475893,0][-0.567254,0.136491,-1.56593][-0.418207,-0.0129691,-0.908259][0.111241,0.513432,0][-0.548339,0.136258,-1.51608][-0.0593493,-0.158231,0.00915801][0.115328,0.513409,0][-0.548077,0.302959,-1.51497][-0.158988,0.0921429,0.0525194][0.115419,0.529403,0][-0.548077,0.302959,-1.51497][-0.158988,0.0921429,0.0525194][0.115419,0.529403,0][-0.56699,0.303508,-1.56481][-0.419597,0.00671379,-0.907686][0.111332,0.529456,0][-0.567254,0.136491,-1.56593][-0.418207,-0.0129691,-0.908259][0.111241,0.513432,0][0.234772,-0.223823,-1.64956][0.467786,0.490669,-0.201428][0.0744144,0.478862,0][0.201374,-0.216788,-1.70998][0.16782,0.0107713,-0.985759][0.0793694,0.479537,0][0.101934,-0.126777,-1.72165][0.117458,0.00101689,-0.993077][0.0803263,0.488173,0][0.101934,-0.126777,-1.72165][0.117458,0.00101689,-0.993077][0.0803263,0.488173,0][0.100148,-0.126777,-1.6668][0.960832,1.33844,0.0313003][0.0758286,0.488173,0][0.234772,-0.223823,-1.64956][0.467786,0.490669,-0.201428][0.0744144,0.478862,0][0.234772,-0.223823,-1.64956][0.467786,0.490669,-0.201428][0.0744144,0.478862,0][0.436691,-0.181058,-1.64758][0.406421,-0.0849116,-0.909732][0.0742525,0.482965,0][0.201374,-0.216788,-1.70998][0.16782,0.0107713,-0.985759][0.0793694,0.479537,0][0.436691,-0.181058,-1.64758][0.406421,-0.0849116,-0.909732][0.0742525,0.482965,0][0.553043,-0.15992,-1.53656][0.787629,2.51992,-1.30523][0.0651483,0.484993,0][0.785834,-0.151484,-1.3798][-0.318033,0.171813,-0.0289812][0.0522933,0.485802,0][0.785834,-0.151484,-1.3798][-0.318033,0.171813,-0.0289812][0.0522933,0.485802,0][0.810913,-0.151484,-1.42545][0.634781,0.00915966,-0.772638][0.0560367,0.485802,0][0.436691,-0.181058,-1.64758][0.406421,-0.0849116,-0.909732][0.0742525,0.482965,0][0.436691,-0.181058,-1.64758][0.406421,-0.0849116,-0.909732][0.0742525,0.482965,0][0.234772,-0.223823,-1.64956][0.467786,0.490669,-0.201428][0.0744144,0.478862,0][0.553043,-0.15992,-1.53656][0.787629,2.51992,-1.30523][0.0651483,0.484993,0][-0.188415,0.979806,-1.60595][-0.0996072,0.35741,-0.928621][0.107959,0.594342,0][-0.198775,0.872418,-1.58388][-1.81289,0.169619,-0.0256722][0.109769,0.584039,0][-0.139449,1.02832,-1.53355][-0.165414,0.210492,0.0913073][0.113896,0.598997,0][-0.139449,1.02832,-1.53355][-0.165414,0.210492,0.0913073][0.113896,0.598997,0][0.00869353,1.14941,-1.54433][-0.00531039,0.450404,-0.892809][0.113012,0.610615,0][-0.188415,0.979806,-1.60595][-0.0996072,0.35741,-0.928621][0.107959,0.594342,0][0.199339,-0.960855,1.2707][0.265623,0.0658334,0.961826][0.254156,0.89425,0][0.303057,-1.47062,1.3408][0.229393,0.275822,0.933435][0.259814,0.943169,0][0.627881,-1.78759,1.30145][1.93259,1.04121,2.37078][0.256531,0.973574,0][0.46603,-1.84364,1.4756][0.945553,1.20764,2.1402][0.270802,0.978978,0][0.627881,-1.78759,1.30145][1.93259,1.04121,2.37078][0.256531,0.973574,0][0.303057,-1.47062,1.3408][0.229393,0.275822,0.933435][0.259814,0.943169,0][-0.224189,-0.213192,-1.64235][0.249334,1.69813,0.141983][0.0738238,0.479882,0][-0.22381,-0.208561,-1.69841][0.107567,0.0189329,-0.994018][0.0784206,0.480326,0][-0.513709,-0.174527,-1.59637][-0.461702,-0.113027,-0.879804][0.0700532,0.483592,0][-0.513709,-0.174527,-1.59637][-0.461702,-0.113027,-0.879804][0.0700532,0.483592,0][-0.496243,-0.174527,-1.54575][0.00609616,0.126989,-0.00395649][0.0659022,0.483592,0][-0.224189,-0.213192,-1.64235][0.249334,1.69813,0.141983][0.0738238,0.479882,0][-0.22381,-0.208561,-1.69841][0.107567,0.0189329,-0.994018][0.100377,0.480326,0][-0.224189,-0.213192,-1.64235][0.249334,1.69813,0.141983][0.104974,0.479882,0][-0.137263,-0.126777,-1.65812][-0.140813,-0.726713,-0.672354][0.103681,0.488173,0][-0.0907039,0.818194,-1.67327][-0.145956,0.206629,-0.967472][0.076359,0.578837,0][0.00216621,1.01695,-1.55141][-1.43565,-0.615843,-0.156105][0.0663665,0.597906,0][-0.0870179,0.825793,-1.61532][0.224546,0.108926,0.000936167][0.0716068,0.579566,0][-0.0870179,0.825793,-1.61532][0.224546,0.108926,0.000936167][0.0716068,0.579566,0][0.000386313,0.646422,-1.70947][-0.0369996,0.105853,-0.993693][0.0793273,0.562356,0][-0.0907039,0.818194,-1.67327][-0.145956,0.206629,-0.967472][0.076359,0.578837,0][-0.667848,-0.153423,-1.48499][-1.65244,0.0142631,-2.48172][0.303378,0.81738,0][-0.97806,-1.39554,-1.18364][-0.784773,0.0963052,-0.612255][0.323621,0.697366,0][-0.83563,-0.151484,-1.34036][-2.95217,-0.0374501,-2.9802][0.315237,0.817123,0][-0.0203447,-0.138337,-1.72363][-0.0663737,-0.013537,-0.997703][0.0804889,0.487064,0][0.231293,0.0250083,-1.65024][0.19195,-0.249806,-0.102155][0.0744706,0.502736,0][-0.018558,-0.138337,-1.66878][0.909801,-1.38825,-0.0296382][0.0759912,0.487064,0][-0.0203447,-0.138337,-1.72363][-0.0663737,-0.013537,-0.997703][0.0983085,0.487064,0][-0.018558,-0.138337,-1.66878][0.909801,-1.38825,-0.0296382][0.102806,0.487064,0][-0.294815,0.0348555,-1.62512][-0.704353,-1.17303,0.099842][0.106387,0.50368,0][-0.266332,-0.361261,-1.68814][-0.282174,-0.0103642,-0.959307][0.101219,0.465676,0][-0.25753,-0.888854,-1.6343][1.39157,1.02784,-0.227517][0.105634,0.415056,0][-0.25753,-0.361261,-1.6343][-0.412465,-1.80617,0.0674362][0.105634,0.465676,0][-0.329739,1.31053,-1.14677][-0.255084,0.784099,-0.565792][0.0563193,0.675959,0][-0.42383,0.993788,-1.41254][-0.397785,0.527427,-0.750725][0.0344688,0.706308,0][-0.605371,1.23895,-1.04467][-0.497559,0.699469,-0.513009][0.0646791,0.682841,0][-0.467529,0.713816,1.10524][-0.419679,0.30748,0.854005][0.518745,0.892593,0][-0.664817,0.949146,0.855229][-0.564462,0.472642,0.676751][0.499101,0.915922,0][-0.574612,0.457538,1.10409][-0.522203,0.113175,0.845278][0.517732,0.868026,0][-0.467529,0.713816,1.10524][-0.419679,0.30748,0.854005][0.240885,0.733551,0][-0.574612,0.457538,1.10409][-0.522203,0.113175,0.845278][0.240745,0.758139,0][-0.197998,0.457538,1.24726][-0.189695,0.119407,0.974555][0.252485,0.75816,0][0.18502,1.63643,-0.105072][0.165361,0.98504,0.0484885][0.141799,0.644849,0][-0.019755,1.628,0.0770893][-0.00310701,0.973733,0.227673][0.156736,0.645685,0][0.285337,1.57334,0.175512][0.194176,0.937164,0.289862][0.164797,0.650944,0][-0.019755,1.628,0.0770893][-0.00310701,0.973733,0.227673][0.156736,0.645685,0][0.438571,1.40682,0.49089][0.293449,0.850597,0.436316][0.190629,0.666968,0][0.285337,1.57334,0.175512][0.194176,0.937164,0.289862][0.164797,0.650944,0][0.349515,0.949146,-1.47394][0.301318,0.507443,-0.807285][0.0294265,0.710581,0][0.188853,0.762256,-1.61045][0.158608,0.326544,-0.931779][0.0181991,0.728492,0][0,1.12162,-1.41693][-0.00681115,0.647141,-0.76234][0.0341316,0.694042,0][0.188853,0.762256,-1.61045][0.158608,0.326544,-0.931779][0.0181991,0.728492,0][0.349515,0.949146,-1.47394][0.301318,0.507443,-0.807285][0.0294265,0.710581,0][0.425497,0.540444,-1.59832][1.57668,0.977978,-4.85774][0.0191541,0.749775,0][0.853678,1.27545,0.10916][0.675585,0.720989,0.154141][0.159303,0.679515,0][0.708802,1.23895,0.492913][0.577664,0.694636,0.428702][0.190765,0.683074,0][0.899918,1.08009,0.429854][0.760961,0.514674,0.39503][0.185566,0.698306,0][0.899918,1.08009,0.429854][0.760961,0.514674,0.39503][0.185566,0.698306,0][0.708802,1.23895,0.492913][0.577664,0.694636,0.428702][0.190765,0.683074,0][0.603641,1.12163,0.756713][0.514156,0.588463,0.623984][0.212377,0.694371,0][-0.876582,0.9036,0.66057][-0.721913,0.43478,0.538339][0.482987,0.912151,0][-0.830841,1.12162,0.490889][-0.664287,0.611697,0.429592][0.469864,0.933574,0][-1.06503,0.9036,0.30077][-0.86787,0.391969,0.305226][0.453503,0.913253,0][-0.876582,0.9036,0.66057][-0.721913,0.43478,0.538339][0.482987,0.912151,0][-0.527602,1.27545,0.634262][-0.448899,0.72726,0.519213][0.482164,0.947883,0][-0.830841,1.12162,0.490889][-0.664287,0.611697,0.429592][0.469864,0.933574,0][0.357385,0.455024,-1.67036][-0.236877,-0.0834793,-0.0552684][0.102677,0.543993,0][0.409081,0.260971,-1.59882][0.83451,1.20657,0.198732][0.108544,0.525375,0][0.344424,0.582217,-1.61205][-0.409955,-0.0641087,0.194836][0.107458,0.556196,0][0.344424,0.582217,-1.61205][-0.409955,-0.0641087,0.194836][0.107458,0.556196,0][0.297059,0.730659,-1.66287][0.376901,0.0788602,-0.922891][0.103291,0.570438,0][0.357385,0.455024,-1.67036][-0.236877,-0.0834793,-0.0552684][0.102677,0.543993,0][-0.836444,0.33521,-1.36397][-0.726954,0.0346823,-0.685809][0.0509952,0.532498,0][-0.54924,0.519684,-1.50925][0.767173,-1.45125,-0.326148][0.0629087,0.550197,0][-0.820355,0.320185,-1.30974][1.54728,-1.15837,-0.780014][0.0465483,0.531056,0][1.13606,-1.71132,0.681109][2.63112,0.979469,1.59478][0.205675,0.966162,0][1.3695,-1.75141,0.244967][2.7948,1.47213,0.711385][0.169903,0.969943,0][1.19936,-1.47062,0.355173][0.918058,0.207787,0.337629][0.17899,0.94302,0][-0.59269,0.869279,-1.42011][-0.0214507,0.152836,0.0512812][0.161504,0.297389,0][-0.324371,0.959774,-1.57758][-0.417674,0.358435,-0.834909][0.166053,0.26895,0][-0.614057,0.880945,-1.4665][-0.417674,0.358435,-0.834909][0.16575,0.298196,0][-0.59269,0.869279,-1.42011][-0.0214507,0.152836,0.0512812][0.0663237,0.352192,0][-0.614057,0.880945,-1.4665][-0.417674,0.358435,-0.834909][0.0620499,0.352832,0][-0.491162,0.805436,-1.5604][-0.417674,0.358435,-0.834909][0.0587988,0.33913,0][-0.491162,0.805436,-1.5604][-0.417674,0.358435,-0.834909][0.0587988,0.33913,0][-0.47587,0.795535,-1.51007][0.140193,-0.162973,-0.0818732][0.0631792,0.339148,0][-0.59269,0.869279,-1.42011][-0.0214507,0.152836,0.0512812][0.0663237,0.352192,0][-1.17988,-0.0865495,-0.892462][-0.844336,-0.00690649,-0.53577][0.0123304,0.492032,0][-1.14048,-0.0865495,-0.865651][-0.0456967,-0.0372564,0.034767][0.0101318,0.492032,0][-0.934385,-0.0941957,-1.18973][-0.841674,-1.35491,0.748916][0.0367075,0.491299,0][0.807788,-0.889408,-1.36198][0.410856,-1.82196,0.225708][0.0508322,0.415003,0][0.832867,-0.889408,-1.40763][0.725168,-0.0374215,-0.687554][0.0545756,0.415003,0][1.19129,-0.751775,-0.949062][0.814342,-0.0653707,-0.576691][0.0169718,0.428208,0][1.19129,-0.751775,-0.949062][0.814342,-0.0653707,-0.576691][0.0169718,0.428208,0][1.15373,-0.751775,-0.91858][0.23255,-1.50762,0.286535][0.0144722,0.428208,0][0.807788,-0.889408,-1.36198][0.410856,-1.82196,0.225708][0.0508322,0.415003,0][0.807788,-0.889408,-1.36198][0.410856,-1.82196,0.225708][0.01,0.281997,0][0.781344,-0.751776,-1.44944][-0.0613434,0.0414044,-0.0466714][0.023205,0.27946,0][0.832867,-0.889408,-1.40763][0.725168,-0.0374215,-0.687554][0.0100001,0.284403,0][-0.325626,0.563767,-1.60578][0.165287,-0.0360494,-0.0384662][0.0708249,0.554426,0][-0.400714,0.261204,-1.64488][-0.383376,0.0186134,-0.923405][0.0740306,0.525397,0][-0.337254,0.575008,-1.65821][-0.349364,0.0864362,-0.932992][0.0751244,0.555505,0][-0.337254,0.575008,-1.65821][-0.349364,0.0864362,-0.932992][0.0751244,0.555505,0][-0.267749,0.723681,-1.60485][1.19793,-0.467832,-0.256897][0.0707485,0.569769,0][-0.325626,0.563767,-1.60578][0.165287,-0.0360494,-0.0384662][0.0708249,0.554426,0][1.15373,-0.751775,-0.91858][0.23255,-1.50762,0.286535][0.0144722,0.428208,0][1.19129,-0.751775,-0.949062][0.814342,-0.0653707,-0.576691][0.0169718,0.428208,0][1.16921,-0.614142,-0.989255][0.818914,-0.0358892,-0.572793][0.0202678,0.441413,0][1.16921,-0.614142,-0.989255][0.818914,-0.0358892,-0.572793][0.0202678,0.441413,0][1.13165,-0.614142,-0.958774][-0.0207313,0.13443,-0.0157728][0.0177682,0.441413,0][1.15373,-0.751775,-0.91858][0.23255,-1.50762,0.286535][0.0144722,0.428208,0][-0.165298,1.64263,-0.246002][-0.114563,0.993273,-0.016859][0.130244,0.644232,0][-0.334088,1.57334,-0.549215][-0.291905,0.928869,-0.228023][0.105367,0.650834,0][-0.39227,1.58993,-0.215371][-0.330983,0.943614,0.00652332][0.132746,0.649293,0][-0.655073,1.46305,-0.336763][-0.535206,0.844258,-0.027996][0.122769,0.661448,0][-0.39227,1.58993,-0.215371][-0.330983,0.943614,0.00652332][0.132746,0.649293,0][-0.334088,1.57334,-0.549215][-0.291905,0.928869,-0.228023][0.105367,0.650834,0][-1.3695,-1.75141,0.244966][-2.80691,1.44126,0.724182][0.439414,0.658871,0][-1.1074,-1.7113,0.724028][-2.55656,1.33606,1.40643][0.478815,0.661249,0][-0.843096,-1.47062,0.975845][-0.753399,0.174591,0.633962][0.500313,0.683553,0][-0.443772,0.542797,-1.62][-0.400896,0.080194,-0.912607][0.071991,0.552414,0][-0.568149,0.520887,-1.55908][-0.540621,0.166238,-0.824678][0.0669948,0.550312,0][-0.389216,0.757745,-1.61611][-0.402092,0.143537,-0.904278][0.0716715,0.573037,0][0.425497,0.540444,-1.59832][1.57668,0.977978,-4.85774][0.0191541,0.749775,0][0.553101,0.290041,-1.55428][0.926427,0.0406548,-2.45303][0.0227212,0.773806,0][0.550355,0.136258,-1.55786][0.658674,0.0199167,-1.83386][0.0223999,0.78856,0][1.45096,-1.90245,-0.633891][3.12732,0.825249,-1.24073][0.0978069,0.984301,0][1.37447,-1.96031,-0.687927][1.73107,-1.38728,-0.964807][0.0933655,0.989844,0][1.15723,-1.95055,-1.09173][2.56359,-0.0105732,-1.83025][0.0602544,0.988846,0][-0.655073,1.46305,-0.336763][-0.535206,0.844258,-0.027996][0.403265,0.968845,0][-0.334088,1.57334,-0.549215][-0.291905,0.928869,-0.228023][0.38625,0.98007,0][-0.664792,1.40682,-0.611683][-0.521735,0.808796,-0.271369][0.380534,0.964296,0][-0.664792,1.40682,-0.611683][-0.521735,0.808796,-0.271369][0.380534,0.964296,0][-0.886525,1.27545,-0.379653][-0.727042,0.682979,-0.0703577][0.399077,0.950989,0][-0.655073,1.46305,-0.336763][-0.535206,0.844258,-0.027996][0.403265,0.968845,0][-0.915042,0.949146,-0.993207][-0.727358,0.458521,-0.510598][0.34763,0.921584,0][-1.0757,0.949146,-0.624304][-0.856923,0.467479,-0.217132][0.37786,0.920454,0][-0.830841,1.12162,-0.921631][-0.671899,0.612839,-0.415909][0.354113,0.937901,0][-0.605371,1.23895,-1.04467][-0.497559,0.699469,-0.513009][0.344451,0.949528,0][-0.915042,0.949146,-0.993207][-0.727358,0.458521,-0.510598][0.34763,0.921584,0][-0.830841,1.12162,-0.921631][-0.671899,0.612839,-0.415909][0.354113,0.937901,0][1.19936,-1.47062,0.355173][0.918058,0.207787,0.337629][0.17899,0.94302,0][1.33753,-1.60048,-0.104088][0.915702,0.397816,0.0568504][0.141306,0.955409,0][1.2633,-1.30789,0.0178565][0.989202,0.0835524,0.120406][0.151358,0.927355,0][1.20379,0.457538,0.242258][0.962191,0.112527,0.248045][0.170072,0.758008,0][1.19936,-1.47062,0.355173][0.918058,0.207787,0.337629][0.17899,0.94302,0][1.2633,-1.30789,0.0178565][0.989202,0.0835524,0.120406][0.151358,0.927355,0][-0.678299,-1.47062,-1.48658][-0.646744,0.0269421,-0.762231][0.298527,0.691096,0][-0.54738,-1.95055,-1.5928][-1.35396,0.0188586,-2.76505][0.288103,0.645407,0][-1.08768,-1.95055,-1.18364][-2.22337,0.106328,-2.14946][0.321632,0.644154,0][-0.667848,-0.153423,-1.48499][-1.65244,0.0142631,-2.48172][0.303378,0.81738,0][-0.54738,-1.95055,-1.5928][-1.35396,0.0188586,-2.76505][0.288103,0.645407,0][-0.678299,-1.47062,-1.48658][-0.646744,0.0269421,-0.762231][0.298527,0.691096,0][-0.183456,0.857221,-1.57058][-0.164795,0.422913,-0.89106][0.0214852,0.719386,0][-0.425496,0.540444,-1.59832][-1.78316,1.12352,-4.83777][0.0191541,0.749775,0][-0.42383,0.993788,-1.41254][-0.397785,0.527427,-0.750725][0.0344688,0.706308,0][-0.42383,0.993788,-1.41254][-0.397785,0.527427,-0.750725][0.0344688,0.706308,0][0,1.12162,-1.41693][-0.00681115,0.647141,-0.76234][0.0341316,0.694042,0][-0.183456,0.857221,-1.57058][-0.164795,0.422913,-0.89106][0.0214852,0.719386,0][0.326615,0.745343,-1.59585][-1.18814,-0.185801,0.564677][0.0700104,0.571847,0][0.409829,0.757745,-1.62288][0.360009,-0.136205,-0.922953][0.0722271,0.573037,0][0.297059,0.730659,-1.66287][0.376901,0.0788602,-0.922891][0.0755064,0.570438,0][-1.11709,0.949146,-0.00836398][-0.894515,0.438394,0.0874851][0.428334,0.918567,0][-0.976713,1.12162,0.155932][-0.748037,0.635433,0.191483][0.442415,0.934601,0][-0.886525,1.27545,-0.379653][-0.727042,0.682979,-0.0703577][0.399077,0.950989,0][-1.06503,0.9036,0.30077][-0.86787,0.391969,0.305226][0.453503,0.913253,0][-0.976713,1.12162,0.155932][-0.748037,0.635433,0.191483][0.442415,0.934601,0][-1.11709,0.949146,-0.00836398][-0.894515,0.438394,0.0874851][0.428334,0.918567,0][1.09776,-1.09956,-1.01646][0.161917,-0.310894,0.360144][0.16866,0.363967,0][1.10853,-1.1785,-1.08945][0.831665,0.00708704,-0.555233][0.165938,0.373228,0][1.16914,-0.811621,-0.890524][0.250818,-0.460219,-0.851639][0.167918,0.334483,0][-1.2567,0.515414,-0.0996576][-0.987368,0.143972,0.0661575][0.419298,0.877262,0][-1.20379,0.457538,0.242258][-0.952724,0.100491,0.286738][0.447109,0.870666,0][-1.06503,0.9036,0.30077][-0.86787,0.391969,0.305226][0.453503,0.913253,0][-1.2567,0.515414,-0.0996576][-0.987368,0.143972,0.0661575][0.419298,0.877262,0][-1.2633,-1.30789,0.0178562][-0.98115,0.0888929,0.171591][0.422393,0.70209,0][-1.20379,0.457538,0.242258][-0.952724,0.100491,0.286738][0.447109,0.870666,0][0.785834,-0.151484,-1.3798][-0.318033,0.171813,-0.0289812][0.126504,0.485802,0][0.868767,0.002985,-1.37412][0.691269,0.000206061,-0.722597][0.12697,0.500623,0][0.810913,-0.151484,-1.42545][0.634781,0.00915966,-0.772638][0.122761,0.485802,0][-0.787176,-0.889408,-1.34384][-0.395155,-1.85449,0.256462][0.01,0.12897,0][-0.815146,-0.889408,-1.38694][-0.59718,0.019692,-0.801865][0.01,0.126287,0][-0.735653,-0.751776,-1.38773][0.0623177,0.0414511,-0.0474131][0.023205,0.133914,0][-1.33753,-1.60048,-0.104089][-0.918716,0.388766,0.0694387][0.411351,0.674411,0][-1.2633,-1.30789,0.0178562][-0.98115,0.0888929,0.171591][0.422393,0.70209,0][-1.27512,-1.30789,-0.332342][-0.99212,0.0976699,-0.0784719][0.393695,0.703163,0][-1.33753,-1.60048,-0.104089][-0.918716,0.388766,0.0694387][0.411351,0.674411,0][-1.27512,-1.30789,-0.332342][-0.99212,0.0976699,-0.0784719][0.393695,0.703163,0][-1.3019,-1.59856,-0.560514][-0.906117,0.391241,-0.160878][0.373956,0.675993,0][0.0901499,1.51252,-0.881316][0.0821835,0.895653,-0.437094][0.0781231,0.65662,0][0.201152,1.31053,-1.19565][0.151392,0.783779,-0.602305][0.0523107,0.675951,0][-0.124063,1.53461,-0.819974][-0.14293,0.906599,-0.39705][0.0831573,0.654509,0][-0.0464976,1.61733,-0.558854][-0.0285929,0.980008,-0.196892][0.104585,0.646612,0][0.0901499,1.51252,-0.881316][0.0821835,0.895653,-0.437094][0.0781231,0.65662,0][-0.124063,1.53461,-0.819974][-0.14293,0.906599,-0.39705][0.0831573,0.654509,0][0.403262,0.542796,-1.65141][0.359976,0.115553,-0.925778][0.0745668,0.552414,0][0.297059,0.730659,-1.66287][0.376901,0.0788602,-0.922891][0.0755064,0.570438,0][0.527763,0.520885,-1.60166][0.465405,0.171897,-0.868245][0.0704864,0.550312,0][0.218309,-0.21511,-1.6835][1.13525,0.0583396,-3.63349][0.0120355,0.822252,0][0.140038,-1.95055,-1.69825][0.326341,-0.00174545,-1.52593][0.0105178,0.988755,0][0.157911,-0.171166,-1.69365][0.159581,0.00084,-0.945383][0.0112104,0.818035,0][-0.97806,-1.39554,-1.18364][-0.784773,0.0963052,-0.612255][0.323621,0.697366,0][-1.15578,-1.7734,-1.09173][-0.802455,0.146532,-0.578441][0.329798,0.660857,0][-1.19936,-1.47062,-0.785914][-0.914613,0.20532,-0.348321][0.355944,0.68895,0][0.357385,0.455024,-1.67036][-0.236877,-0.0834793,-0.0552684][0.0761202,0.543993,0][0.297059,0.730659,-1.66287][0.376901,0.0788602,-0.922891][0.0755064,0.570438,0][0.403262,0.542796,-1.65141][0.359976,0.115553,-0.925778][0.0745668,0.552414,0][0.526867,0.136491,-1.6082][0.482666,0.0126202,-0.875714][0.0710234,0.513432,0][0.129083,-0.024897,-1.72026][0.108588,-0.00245584,-0.994084][0.0802122,0.497948,0][0.421326,0.261204,-1.65165][0.347855,0.0011092,-0.937548][0.0745863,0.525397,0][0.403262,0.542796,-1.65141][0.359976,0.115553,-0.925778][0.0745668,0.552414,0][0.526867,0.136491,-1.6082][0.482666,0.0126202,-0.875714][0.0710234,0.513432,0][0.421326,0.261204,-1.65165][0.347855,0.0011092,-0.937548][0.0745863,0.525397,0][0.357385,0.455024,-1.67036][-0.236877,-0.0834793,-0.0552684][0.0761202,0.543993,0][0.403262,0.542796,-1.65141][0.359976,0.115553,-0.925778][0.0745668,0.552414,0][0.421326,0.261204,-1.65165][0.347855,0.0011092,-0.937548][0.0745863,0.525397,0][-0.258551,0.993789,1.04463][-0.211134,0.506121,0.83622][0.235965,0.70668,0][-0.381481,1.16198,0.862181][-0.337618,0.65766,0.673422][0.221033,0.690515,0][-0.664817,0.949146,0.855229][-0.564462,0.472642,0.676751][0.220425,0.710935,0][-0.258551,0.993789,1.04463][-0.211134,0.506121,0.83622][0.235965,0.70668,0][-0.0782103,1.16198,0.947367][-0.0257431,0.635438,0.771723][0.228018,0.690528,0][-0.381481,1.16198,0.862181][-0.337618,0.65766,0.673422][0.221033,0.690515,0][-0.276441,0.730662,-1.65809][-0.319519,0.125567,-0.939223][0.0751145,0.570439,0][-0.377156,0.749624,-1.56407][-0.641091,1.66351,0.408176][0.0674043,0.572258,0][-0.267749,0.723681,-1.60485][1.19793,-0.467832,-0.256897][0.0707485,0.569769,0][0.51672,0.795535,-1.50987][-1.20156,-0.856904,-0.533631][0.156505,0.079852,0][0.532012,0.805437,-1.5602][0.418058,0.358621,-0.834637][0.157853,0.0809644,0][0.654907,0.880945,-1.4662][0.418058,0.358621,-0.834637][0.168316,0.090022,0][0.654907,0.880945,-1.4662][0.418058,0.358621,-0.834637][0.168316,0.090022,0][0.63354,0.86928,-1.41981][0.76717,-1.25989,0.0365217][0.166631,0.0884049,0][0.51672,0.795535,-1.50987][-1.20156,-0.856904,-0.533631][0.156505,0.079852,0][-0.325633,-1.90225,-1.61829][-0.0387792,-0.329414,0.00832994][0.106947,0.317827,0][-0.329274,-1.1417,-1.67056][-0.291855,0.00691306,-0.956438][0.10266,0.390797,0][-0.337363,-1.90415,-1.67125][-0.228041,0.00329983,-0.973646][0.102604,0.317645,0][-0.843096,-1.47062,0.975845][-0.753399,0.174591,0.633962][0.500313,0.683553,0][-0.597841,-1.53525,1.21851][-0.559085,0.269748,0.784003][0.519967,0.676614,0][-0.665815,-0.960855,1.06853][-0.545446,0.0706754,0.835161][0.509735,0.732144,0][-0.886525,0.565558,0.821863][-0.734191,0.163537,0.658953][0.494992,0.879247,0][-0.843096,-1.47062,0.975845][-0.753399,0.174591,0.633962][0.500313,0.683553,0][-0.665815,-0.960855,1.06853][-0.545446,0.0706754,0.835161][0.509735,0.732144,0][-0.23211,-0.21948,-1.68029][-1.0488,0.0429016,-3.67859][0.0122979,0.822672,0][-0.15791,-0.171166,-1.69365][-0.179752,0.000765993,-0.995144][0.0112104,0.818035,0][-0.140038,-1.95055,-1.69825][-0.387915,-0.00494817,-1.51144][0.0105177,0.988755,0][-1.45095,-1.90245,-0.633891][-3.02135,0.8758,-1.02251][0.366854,0.647081,0][-1.08768,-1.95055,-1.18364][-2.22337,0.106328,-2.14946][0.321632,0.644154,0][-1.3336,-1.95352,-0.78607][-2.26941,-1.0093,-1.41135][0.3542,0.642652,0][0.277334,-0.361262,-1.69524][0.242798,-0.0120844,-0.970002][0.0781606,0.465676,0][0.536644,-0.295171,-1.54575][0.513296,-2.83267,0.361967][0.0659022,0.472017,0][0.268532,-0.361262,-1.6414][0.101683,0,0.0166251][0.0737457,0.465676,0][-1.64645e-007,-1.53665,1.40572][0.00165261,0.342864,0.939384][0.265126,0.949514,0][-1.53723e-007,-1.2068,1.32024][-0.0246463,0.15666,0.987345][0.258175,0.917854,0][-0.303057,-1.47062,1.3408][-0.253008,0.301003,0.919448][0.259814,0.943169,0][-1.53723e-007,-1.2068,1.32024][-0.0246463,0.15666,0.987345][0.258175,0.917854,0][-0.393785,-0.960855,1.21614][-0.351293,0.0835046,0.932534][0.249682,0.894241,0][-0.303057,-1.47062,1.3408][-0.253008,0.301003,0.919448][0.259814,0.943169,0][-1.14029,-0.811621,-0.866066][0.0661345,0.247346,-0.0296186][0.033855,0.141292,0][-1.04053,-0.870016,-1.13098][-0.788633,0.0367732,-0.613763][0.0513768,0.155302,0][-1.17969,-0.811621,-0.892877][-0.0716096,-0.0556704,0.0741758][0.0358607,0.142192,0][-1.17969,-0.811621,-0.892877][-0.0716096,-0.0556704,0.0741758][0.0358607,0.142192,0][-1.04422,-1.1788,-1.03767][-0.779948,-0.967341,0.804765][0.0322593,0.179193,0][-1.14029,-0.811621,-0.866066][0.0661345,0.247346,-0.0296186][0.033855,0.141292,0][-0.454886,-1.8455,1.48065][-0.918267,1.11989,2.30241][0.540336,0.646064,0][-0.597841,-1.53525,1.21851][-0.559085,0.269748,0.784003][0.519967,0.676614,0][-0.832704,-1.74362,1.10423][-2.17945,0.927834,2.14423][0.509855,0.656985,0][-0.843096,-1.47062,0.975845][-0.753399,0.174591,0.633962][0.500313,0.683553,0][-0.832704,-1.74362,1.10423][-2.17945,0.927834,2.14423][0.509855,0.656985,0][-0.597841,-1.53525,1.21851][-0.559085,0.269748,0.784003][0.519967,0.676614,0][-0.957686,-0.247122,-1.23837][-0.730974,-0.00466953,-0.682389][0.138102,0.476626,0][-0.900366,-0.0152253,-1.30268][-0.743356,-0.00177014,-0.668894][0.132828,0.498875,0][-0.85092,-0.151484,-1.35264][-0.696516,-1.98515e-005,-0.717542][0.128731,0.485802,0][0.210176,1.61733,-0.461277][0.189364,0.972738,-0.133871][0.112586,0.646627,0][-0.0464976,1.61733,-0.558854][-0.0285929,0.980008,-0.196892][0.104585,0.646612,0][-0.165298,1.64263,-0.246002][-0.114563,0.993273,-0.016859][0.130244,0.644232,0][-0.334088,1.57334,-0.549215][-0.291905,0.928869,-0.228023][0.105367,0.650834,0][-0.165298,1.64263,-0.246002][-0.114563,0.993273,-0.016859][0.130244,0.644232,0][-0.0464976,1.61733,-0.558854][-0.0285929,0.980008,-0.196892][0.104585,0.646612,0][0.853678,1.27545,0.10916][0.675585,0.720989,0.154141][0.159303,0.679515,0][0.899918,1.08009,0.429854][0.760961,0.514674,0.39503][0.185566,0.698306,0][1.02629,1.08009,0.0729092][0.829945,0.52948,0.175617][0.156296,0.698252,0][1.0522,1.08009,-0.312255][0.832823,0.552058,-0.0404729][0.124711,0.698194,0][0.853678,1.27545,0.10916][0.675585,0.720989,0.154141][0.159303,0.679515,0][1.02629,1.08009,0.0729092][0.829945,0.52948,0.175617][0.156296,0.698252,0][0.781344,-0.751776,-1.44944][-0.0613434,0.0414044,-0.0466714][0.023205,0.27946,0][0.807788,-0.889408,-1.36198][0.410856,-1.82196,0.225708][0.01,0.281997,0][0.756265,-0.751776,-1.40379][-1.32208,0.765431,-0.726326][0.023205,0.277054,0][0,1.27545,0.834833][0.0603418,0.782973,0.619123][0.21881,0.679625,0][-0.301104,1.46305,0.476041][-0.182689,0.887215,0.423643][0.189422,0.661571,0][-0.128962,1.34415,0.737283][0.041644,0.891549,0.451006][0.210823,0.673018,0][0,1.27545,0.834833][0.0603418,0.782973,0.619123][0.21881,0.679625,0][-0.128962,1.34415,0.737283][0.041644,0.891549,0.451006][0.210823,0.673018,0][-0.0782103,1.16198,0.947367][-0.0257431,0.635438,0.771723][0.228018,0.690528,0][-0.548077,0.302959,-1.51497][-0.158988,0.0921429,0.0525194][0.115419,0.529403,0][-0.443772,0.542797,-1.62][-0.400896,0.080194,-0.912607][0.106806,0.552414,0][-0.56699,0.303508,-1.56481][-0.419597,0.00671379,-0.907686][0.111332,0.529456,0][-0.425496,0.540444,-1.59832][-1.78316,1.12352,-4.83777][0.0191541,0.749775,0][-0.551291,0.519685,-1.54006][-1.66428,0.99427,-2.77807][0.0239281,0.751775,0][-0.725524,0.664834,-1.38373][-0.633957,0.298261,-0.71354][0.0367732,0.737873,0][1.27038,-1.39554,-0.448597][0.978182,0.159181,-0.133496][0.113091,0.935695,0][1.2633,-1.30789,0.0178565][0.989202,0.0835524,0.120406][0.151358,0.927355,0][1.33753,-1.60048,-0.104088][0.915702,0.397816,0.0568504][0.141306,0.955409,0][1.33753,-1.60048,-0.104088][0.915702,0.397816,0.0568504][0.141306,0.955409,0][1.33109,-1.65917,-0.556154][0.88749,0.395908,-0.235836][0.104225,0.960971,0][1.27038,-1.39554,-0.448597][0.978182,0.159181,-0.133496][0.113091,0.935695,0][-0.874601,-1.51324,-1.27528][-0.0584025,-0.0724345,0.0602609][0.0368884,0.216447,0][-1.07967,-1.1785,-1.07167][-0.816312,0.00156151,-0.577609][0.0348145,0.180309,0][-0.904951,-1.50984,-1.31574][-0.796126,0.025529,-0.604593][0.0400482,0.217508,0][0.654907,0.880945,-1.4662][0.418058,0.358621,-0.834637][0.168316,0.090022,0][0.426991,0.939864,-1.50304][0.588066,2.36533,0.144758][0.167112,0.0674682,0][0.63354,0.86928,-1.41981][0.76717,-1.25989,0.0365217][0.166631,0.0884049,0][0.652455,-0.62263,-1.54127][0.356479,0.0537462,-0.932756][0.0655346,0.440599,0][0.874032,-0.254768,-1.2993][0.890796,-0.916833,0.578126][0.0456925,0.475893,0][0.725337,-0.481583,-1.42889][0.290322,-0.216433,0.0833629][0.0563196,0.454131,0][0.000386313,0.646422,-1.70947][-0.0369996,0.105853,-0.993693][0.0793273,0.562356,0][0.00516976,0.464464,-1.72036][-0.0132704,-0.000881838,-0.999912][0.0802206,0.544899,0][-0.0489317,0.515303,-1.71623][-0.0911335,0.0397218,-0.995046][0.079882,0.549776,0][-0.305585,0.241738,-1.67754][-0.27869,0.0602456,-0.95849][0.076709,0.52353,0][-0.0489317,0.515303,-1.71623][-0.0911335,0.0397218,-0.995046][0.079882,0.549776,0][0.00516976,0.464464,-1.72036][-0.0132704,-0.000881838,-0.999912][0.0802206,0.544899,0][0.974457,-0.896282,-1.19016][-0.0981094,0.458203,-0.0657169][0.148161,0.351197,0][1.08093,-0.864996,-1.13098][0.842632,0.0515964,-0.536012][0.151541,0.3466,0][0.852644,-0.949254,-1.31981][-0.189866,-0.076865,-0.0205759][0.140198,0.359884,0][0.903458,-1.51324,-1.28621][0.0382748,-0.0734911,0.0851331][0.121941,0.332384,0][0.960476,-1.22584,-1.2816][0.753124,0.0381948,-0.656769][0.121239,0.359952,0][0.930797,-1.51031,-1.32977][0.789365,0.0215482,-0.613545][0.118361,0.332525,0][0.903458,-1.51324,-1.28621][0.0382748,-0.0734911,0.0851331][0.16297,0.409047,0][0.930797,-1.51031,-1.32977][0.789365,0.0215482,-0.613545][0.159552,0.41012,0][1.10853,-1.1785,-1.08945][0.831665,0.00708704,-0.555233][0.165938,0.373228,0][-0.725524,0.664834,-1.38373][-0.633957,0.298261,-0.71354][0.314609,0.895522,0][-0.755158,0.397383,-1.40765][-2.36935,0.466597,-2.28204][0.31169,0.869952,0][-0.879328,0.254629,-1.28982][-2.76362,0.393553,-1.94857][0.320834,0.855905,0][-0.39227,1.58993,-0.215371][-0.330983,0.943614,0.00652332][0.132746,0.649293,0][-0.453125,1.53461,0.109511][-0.396968,0.900566,0.177194][0.159378,0.65465,0][-0.230571,1.58993,0.155932][-0.16558,0.955701,0.243351][0.163194,0.64935,0][-0.230571,1.58993,0.155932][-0.16558,0.955701,0.243351][0.163194,0.64935,0][-0.453125,1.53461,0.109511][-0.396968,0.900566,0.177194][0.159378,0.65465,0][-0.301104,1.46305,0.476041][-0.182689,0.887215,0.423643][0.189422,0.661571,0][-1.08895,0.127547,-0.962279][-0.0640958,-0.10318,0.0570321][0.0180556,0.512574,0][-1.05575,0.2952,-1.10523][-0.796014,0.0198565,-0.604952][0.0297784,0.528659,0][-1.12651,0.127779,-0.99276][-0.642231,-1.28463,0.781519][0.0205551,0.512596,0][-1.3019,-1.59856,-0.560514][-0.906117,0.391241,-0.160878][0.373956,0.675993,0][-1.19936,-1.47062,-0.785914][-0.914613,0.20532,-0.348321][0.355944,0.68895,0][-1.45095,-1.90245,-0.633891][-3.02135,0.8758,-1.02251][0.366854,0.647081,0][0.92306,0.46588,-1.3164][0.707661,0.0284128,-0.70598][0.047095,0.545035,0][0.888396,0.469973,-1.27957][0.5622,1.29524,0.385139][0.0440743,0.545427,0][1.04556,0.286451,-1.09473][2.28532,1.37186,-0.15253][0.0289171,0.527819,0][0.622258,0.810082,-1.40342][0.547812,0.373794,-0.748452][0.0351845,0.723934,0][0.551291,0.519684,-1.54006][1.77744,0.863066,-2.75739][0.0239281,0.751775,0][0.425497,0.540444,-1.59832][1.57668,0.977978,-4.85774][0.0191541,0.749775,0][0.906379,1.23895,-0.469969][0.700312,0.701761,-0.130745][0.111806,0.682928,0][1.0522,1.08009,-0.312255][0.832823,0.552058,-0.0404729][0.124711,0.698194,0][0.975111,1.08009,-0.687935][0.750978,0.582682,-0.310667][0.0939042,0.698137,0][-0.294692,0.241506,-1.62427][0.0987647,0.228062,-0.0983586][0.0723407,0.523507,0][-0.0926661,0.112939,-1.71951][-0.130881,-0.0103008,-0.991345][0.0801512,0.511172,0][-0.305585,0.241738,-1.67754][-0.27869,0.0602456,-0.95849][0.076709,0.52353,0][1.08631,-1.7734,-1.18364][0.594338,0.340087,-0.728769][0.052749,0.971836,0][1.15723,-1.95055,-1.09173][2.56359,-0.0105732,-1.83025][0.0602544,0.988846,0][0.928957,-1.95055,-1.34907][1.90952,0.3705,-2.37198][0.0391514,0.988807,0][1.45096,-1.90245,-0.633891][3.12732,0.825249,-1.24073][0.0978069,0.984301,0][1.15723,-1.95055,-1.09173][2.56359,-0.0105732,-1.83025][0.0602544,0.988846,0][1.08631,-1.7734,-1.18364][0.594338,0.340087,-0.728769][0.052749,0.971836,0][-0.892723,0.00291789,-1.27823][-2.0967,0.0103755,-1.73816][0.320882,0.831736,0][-0.97806,-1.39554,-1.18364][-0.784773,0.0963052,-0.612255][0.323621,0.697366,0][-0.954957,0.0791987,-1.20041][-3.93823,0.158458,-2.4179][0.327533,0.838811,0][0.886525,0.565558,-1.2526][0.748199,0.184125,-0.637413][0.0475083,0.747418,0][0.765307,1.03746,-1.11078][0.652511,0.544355,-0.52717][0.0592221,0.702163,0][0.976712,0.762257,-1.04563][0.793027,0.338086,-0.50676][0.0645158,0.728577,0][0.976712,0.762257,-1.04563][0.793027,0.338086,-0.50676][0.0645158,0.728577,0][1.11709,0.565558,-0.881316][0.917468,0.127344,-0.376877][0.0779551,0.747474,0][0.886525,0.565558,-1.2526][0.748199,0.184125,-0.637413][0.0475083,0.747418,0][-1.17276,0.384507,-0.783719][-0.926772,0.0739221,-0.368279][0.362773,0.866807,0][-1.22575,0.515414,-0.559679][-0.971755,0.134591,-0.193849][0.381601,0.878671,0][-1.04169,0.713815,-0.962241][-0.850501,0.248749,-0.463434][0.349324,0.898926,0][-1.22575,0.515414,-0.559679][-0.971755,0.134591,-0.193849][0.381601,0.878671,0][-1.17276,0.384507,-0.783719][-0.926772,0.0739221,-0.368279][0.362773,0.866807,0][-1.19936,-1.47062,-0.785914][-0.914613,0.20532,-0.348321][0.355944,0.68895,0][0.523042,-0.396367,-1.55186][1.17557,-0.900623,0.357159][0.0512642,0.330353,0][0.345064,-0.656466,-1.62193][0.0613267,-3.5239e-007,-0.639179][0.0256565,0.330441,0][0.538686,-0.396368,-1.60335][0.0955074,-5.48796e-007,-0.995429][0.0503026,0.326241,0][0.538686,-0.396368,-1.60335][0.0955074,-5.48796e-007,-0.995429][0.0503026,0.326241,0][0.345064,-0.440239,-1.62193][0.17121,-9.83789e-007,-1.78444][0.045857,0.325717,0][0.523042,-0.396367,-1.55186][1.17557,-0.900623,0.357159][0.0512642,0.330353,0][-1.64645e-007,-1.53665,1.40572][0.00165261,0.342864,0.939384][0.265126,0.949514,0][-0.0151328,-1.88087,1.56666][-0.0140414,1.19196,2.5481][0.278262,0.982564,0][0.46603,-1.84364,1.4756][0.945553,1.20764,2.1402][0.270802,0.978978,0][0.101934,-0.126777,-1.72165][0.117458,0.00101689,-0.993077][0.0984711,0.488173,0][0.143695,-1.92016,-1.66341][0.0423288,-0.330419,0.0175369][0.103247,0.316109,0][0.100148,-0.126777,-1.6668][0.960832,1.33844,0.0313003][0.102969,0.488173,0][-0.326614,1.28808,0.69351][-0.818753,-0.28965,0.495729][0.231789,0.571398,0][-0.373192,1.12365,0.488397][-0.812857,-0.532835,0.611742][0.219765,0.55172,0][-0.140794,1.01401,0.701705][-1.03344,-1.30596,2.35464][0.239423,0.546227,0][-0.140794,1.01401,0.701705][-1.03344,-1.30596,2.35464][0.239423,0.546227,0][0.0933846,1.21147,0.851758][0.186934,-0.420565,0.887796][0.246252,0.56776,0][-0.326614,1.28808,0.69351][-0.818753,-0.28965,0.495729][0.231789,0.571398,0][0.275096,1.49649,0.325232][0.772687,0.206115,-0.600393][0.197361,0.582651,0][0.346,1.18262,0.403761][2.93683,-0.2422,-0.264317][0.211571,0.555331,0][0.199068,1.32186,0.138143][1.32094,1.06672,-1.5325][0.187023,0.562422,0][0.199068,1.32186,0.138143][1.32094,1.06672,-1.5325][0.187023,0.562422,0][-0.258705,1.54512,0.215264][-0.430789,0.500512,-0.750939][0.187428,0.584752,0][0.275096,1.49649,0.325232][0.772687,0.206115,-0.600393][0.197361,0.582651,0][0.346,1.18262,0.403761][2.93683,-0.2422,-0.264317][0.0990208,0.268186,0][0.275096,1.49649,0.325232][0.772687,0.206115,-0.600393][0.121622,0.247269,0][0.357476,1.33611,0.628094][0.945746,-0.163339,0.280863][0.121077,0.27648,0][0.357476,1.33611,0.628094][0.945746,-0.163339,0.280863][0.121077,0.27648,0][0.189783,1.04112,0.662802][1.75421,-1.60613,1.86508][0.0981982,0.293382,0][0.346,1.18262,0.403761][2.93683,-0.2422,-0.264317][0.0990208,0.268186,0][0.0892758,1.77056,0.317037][-0.0150436,1.38229,0.217414][0.189726,0.607822,0][-0.13798,1.76886,0.312107][-0.276552,2.47229,0.473517][0.189379,0.607558,0][0.00651449,1.70342,0.738178][0.0716392,0.846168,0.528079][0.224731,0.610789,0][0.0933846,1.21147,0.851758][0.186934,-0.420565,0.887796][0.246252,0.56776,0][-0.140794,1.01401,0.701705][-1.03344,-1.30596,2.35464][0.239423,0.546227,0][0.189783,1.04112,0.662802][1.75421,-1.60613,1.86508][0.235657,0.547887,0][0.189783,1.04112,0.662802][1.75421,-1.60613,1.86508][0.235657,0.547887,0][0.357476,1.33611,0.628094][0.945746,-0.163339,0.280863][0.225393,0.574415,0][0.0933846,1.21147,0.851758][0.186934,-0.420565,0.887796][0.246252,0.56776,0][-0.397518,1.60195,0.614981][-0.630362,1.08033,0.340352][0.217578,0.598719,0][-0.165456,1.71672,0.680498][-0.177315,0.926503,0.331889][0.219832,0.610761,0][-0.323919,1.70446,0.425911][-0.733141,2.37405,0.521658][0.200018,0.60408,0][-0.258705,1.54512,0.215264][-0.430789,0.500512,-0.750939][0.187428,0.584752,0][-0.233198,1.31863,0.128765][-1.27612,0.226297,-0.968814][0.186364,0.561919,0][-0.369646,1.23088,0.287995][-1.74591,0.423551,-0.833165][0.201189,0.557272,0][-0.369646,1.23088,0.287995][-1.74591,0.423551,-0.833165][0.201189,0.557272,0][-0.393467,1.38954,0.501393][-0.981935,0.161496,0.0986031][0.214014,0.576597,0][-0.258705,1.54512,0.215264][-0.430789,0.500512,-0.750939][0.187428,0.584752,0][-0.0580326,1.08115,0.280564][-0.0144792,-0.846423,-0.532315][0.204418,0.543261,0][-0.233198,1.31863,0.128765][-1.27612,0.226297,-0.968814][0.186364,0.561919,0][0.199068,1.32186,0.138143][1.32094,1.06672,-1.5325][0.187023,0.562422,0][0.199068,1.32186,0.138143][1.32094,1.06672,-1.5325][0.187023,0.562422,0][-0.233198,1.31863,0.128765][-1.27612,0.226297,-0.968814][0.186364,0.561919,0][-0.258705,1.54512,0.215264][-0.430789,0.500512,-0.750939][0.187428,0.584752,0][0.264299,1.50493,0.820006][0.52816,0.992556,0.743741][0.23626,0.594213,0][0.337898,1.60744,0.630937][0.96031,2.08183,1.10424][0.2187,0.599574,0][0.00651449,1.70342,0.738178][0.0716392,0.846168,0.528079][0.224731,0.610789,0][-0.250586,1.46271,0.880599][-0.544139,1.59838,1.91013][0.242127,0.591628,0][0.0783599,1.44053,0.933811][-0.111232,0.697742,0.978478][0.246899,0.590735,0][0.00651449,1.70342,0.738178][0.0716392,0.846168,0.528079][0.224731,0.610789,0][-0.0580326,1.08115,0.280564][-0.0144792,-0.846423,-0.532315][0.204418,0.543261,0][0.346,1.18262,0.403761][2.93683,-0.2422,-0.264317][0.211571,0.555331,0][0.189783,1.04112,0.662802][1.75421,-1.60613,1.86508][0.235657,0.547887,0][-0.0580326,1.08115,0.280564][-0.0144792,-0.846423,-0.532315][0.204418,0.543261,0][-0.140794,1.01401,0.701705][-1.03344,-1.30596,2.35464][0.239423,0.546227,0][-0.373192,1.12365,0.488397][-0.812857,-0.532835,0.611742][0.219765,0.55172,0][0.271045,1.7089,0.43882][0.40008,0.966553,0.371236][0.200925,0.604773,0][0.00651449,1.70342,0.738178][0.0716392,0.846168,0.528079][0.224731,0.610789,0][0.337898,1.60744,0.630937][0.96031,2.08183,1.10424][0.2187,0.599574,0][-0.250586,1.46271,0.880599][-0.544139,1.59838,1.91013][0.242127,0.591628,0][0.00651449,1.70342,0.738178][0.0716392,0.846168,0.528079][0.224731,0.610789,0][-0.165456,1.71672,0.680498][-0.177315,0.926503,0.331889][0.219832,0.610761,0][-0.165456,1.71672,0.680498][-0.177315,0.926503,0.331889][0.219832,0.610761,0][-0.330665,1.50049,0.807098][-0.549099,1.1012,1.16423][0.235353,0.59352,0][-0.250586,1.46271,0.880599][-0.544139,1.59838,1.91013][0.242127,0.591628,0][-0.2725,1.34266,0.848852][-0.577606,-0.465142,0.670831][0.242678,0.579831,0][-0.330665,1.50049,0.807098][-0.549099,1.1012,1.16423][0.235353,0.59352,0][-0.397518,1.60195,0.614981][-0.630362,1.08033,0.340352][0.217578,0.598719,0][-0.397518,1.60195,0.614981][-0.630362,1.08033,0.340352][0.217578,0.598719,0][-0.35173,1.60838,0.349128][-0.820346,0.269399,-0.504438][0.196398,0.59352,0][-0.2725,1.34266,0.848852][-0.577606,-0.465142,0.670831][0.242678,0.579831,0][-0.323919,1.70446,0.425911][-0.733141,2.37405,0.521658][0.200018,0.60408,0][-0.165456,1.71672,0.680498][-0.177315,0.926503,0.331889][0.219832,0.610761,0][0.00651449,1.70342,0.738178][0.0716392,0.846168,0.528079][0.224731,0.610789,0][0.00651449,1.70342,0.738178][0.0716392,0.846168,0.528079][0.224731,0.610789,0][-0.13798,1.76886,0.312107][-0.276552,2.47229,0.473517][0.189379,0.607558,0][-0.323919,1.70446,0.425911][-0.733141,2.37405,0.521658][0.200018,0.60408,0][-0.35173,1.60838,0.349128][-0.820346,0.269399,-0.504438][0.196398,0.59352,0][-0.323919,1.70446,0.425911][-0.733141,2.37405,0.521658][0.200018,0.60408,0][-0.13798,1.76886,0.312107][-0.276552,2.47229,0.473517][0.189379,0.607558,0][-0.13798,1.76886,0.312107][-0.276552,2.47229,0.473517][0.189379,0.607558,0][0.215389,1.65488,0.282388][0.503492,0.292012,-0.813157][0.189936,0.596367,0][-0.35173,1.60838,0.349128][-0.820346,0.269399,-0.504438][0.196398,0.59352,0][0.377226,1.50152,0.574952][0.998663,0.0499558,-0.0132982][0.132495,0.264628,0][0.337898,1.60744,0.630937][0.96031,2.08183,1.10424][0.143577,0.263384,0][0.264299,1.50493,0.820006][0.52816,0.992556,0.743741][0.14304,0.281737,0][0.264299,1.50493,0.820006][0.52816,0.992556,0.743741][0.14304,0.281737,0][0.205161,1.34566,0.860271][0.559039,-0.318011,0.765732][0.131589,0.292381,0][0.377226,1.50152,0.574952][0.998663,0.0499558,-0.0132982][0.132495,0.264628,0][0.205161,1.34566,0.860271][0.559039,-0.318011,0.765732][0.243504,0.580358,0][0.264299,1.50493,0.820006][0.52816,0.992556,0.743741][0.23626,0.594213,0][0.0783599,1.44053,0.933811][-0.111232,0.697742,0.978478][0.246899,0.590735,0][0.0783599,1.44053,0.933811][-0.111232,0.697742,0.978478][0.246899,0.590735,0][-0.2725,1.34266,0.848852][-0.577606,-0.465142,0.670831][0.242678,0.579831,0][0.205161,1.34566,0.860271][0.559039,-0.318011,0.765732][0.243504,0.580358,0][0.0933846,1.21147,0.851758][0.186934,-0.420565,0.887796][0.246252,0.56776,0][0.205161,1.34566,0.860271][0.559039,-0.318011,0.765732][0.243504,0.580358,0][-0.2725,1.34266,0.848852][-0.577606,-0.465142,0.670831][0.242678,0.579831,0][-0.2725,1.34266,0.848852][-0.577606,-0.465142,0.670831][0.242678,0.579831,0][-0.326614,1.28808,0.69351][-0.818753,-0.28965,0.495729][0.231789,0.571398,0][0.0933846,1.21147,0.851758][0.186934,-0.420565,0.887796][0.246252,0.56776,0][-0.35173,1.60838,0.349128][-0.820346,0.269399,-0.504438][0.196398,0.59352,0][-0.258705,1.54512,0.215264][-0.430789,0.500512,-0.750939][0.187428,0.584752,0][-0.393467,1.38954,0.501393][-0.981935,0.161496,0.0986031][0.214014,0.576597,0][-0.393467,1.38954,0.501393][-0.981935,0.161496,0.0986031][0.214014,0.576597,0][-0.2725,1.34266,0.848852][-0.577606,-0.465142,0.670831][0.242678,0.579831,0][-0.35173,1.60838,0.349128][-0.820346,0.269399,-0.504438][0.196398,0.59352,0][0.377226,1.50152,0.574952][0.998663,0.0499558,-0.0132982][0.132495,0.264628,0][0.271045,1.7089,0.43882][0.40008,0.966553,0.371236][0.1439,0.244868,0][0.337898,1.60744,0.630937][0.96031,2.08183,1.10424][0.143577,0.263384,0][0.215389,1.65488,0.282388][0.503492,0.292012,-0.813157][0.189936,0.596367,0][-0.13798,1.76886,0.312107][-0.276552,2.47229,0.473517][0.189379,0.607558,0][0.0892758,1.77056,0.317037][-0.0150436,1.38229,0.217414][0.189726,0.607822,0][0.215389,1.65488,0.282388][0.503492,0.292012,-0.813157][0.132892,0.236487,0][0.0892758,1.77056,0.317037][-0.0150436,1.38229,0.217414][0.143885,0.233261,0][0.271045,1.7089,0.43882][0.40008,0.966553,0.371236][0.1439,0.244868,0][0.271045,1.7089,0.43882][0.40008,0.966553,0.371236][0.1439,0.244868,0][0.377226,1.50152,0.574952][0.998663,0.0499558,-0.0132982][0.132495,0.264628,0][0.215389,1.65488,0.282388][0.503492,0.292012,-0.813157][0.132892,0.236487,0][-0.0580326,1.08115,0.280564][-0.0144792,-0.846423,-0.532315][0.204418,0.543261,0][0.199068,1.32186,0.138143][1.32094,1.06672,-1.5325][0.187023,0.562422,0][0.346,1.18262,0.403761][2.93683,-0.2422,-0.264317][0.211571,0.555331,0][0.215389,1.65488,0.282388][0.503492,0.292012,-0.813157][0.189936,0.596367,0][0.275096,1.49649,0.325232][0.772687,0.206115,-0.600393][0.197361,0.582651,0][-0.258705,1.54512,0.215264][-0.430789,0.500512,-0.750939][0.187428,0.584752,0][-0.258705,1.54512,0.215264][-0.430789,0.500512,-0.750939][0.187428,0.584752,0][-0.35173,1.60838,0.349128][-0.820346,0.269399,-0.504438][0.196398,0.59352,0][0.215389,1.65488,0.282388][0.503492,0.292012,-0.813157][0.189936,0.596367,0][-0.0580326,1.08115,0.280564][-0.0144792,-0.846423,-0.532315][0.204418,0.543261,0][-0.369646,1.23088,0.287995][-1.74591,0.423551,-0.833165][0.201189,0.557272,0][-0.233198,1.31863,0.128765][-1.27612,0.226297,-0.968814][0.186364,0.561919,0][-0.397518,1.60195,0.614981][-0.630362,1.08033,0.340352][0.217578,0.598719,0][-0.330665,1.50049,0.807098][-0.549099,1.1012,1.16423][0.235353,0.59352,0][-0.165456,1.71672,0.680498][-0.177315,0.926503,0.331889][0.219832,0.610761,0][0.0783599,1.44053,0.933811][-0.111232,0.697742,0.978478][0.246899,0.590735,0][0.264299,1.50493,0.820006][0.52816,0.992556,0.743741][0.23626,0.594213,0][0.00651449,1.70342,0.738178][0.0716392,0.846168,0.528079][0.224731,0.610789,0][0.271045,1.7089,0.43882][0.40008,0.966553,0.371236][0.200925,0.604773,0][0.0892758,1.77056,0.317037][-0.0150436,1.38229,0.217414][0.189726,0.607822,0][0.00651449,1.70342,0.738178][0.0716392,0.846168,0.528079][0.224731,0.610789,0][-0.2725,1.34266,0.848852][-0.577606,-0.465142,0.670831][0.242678,0.579831,0][0.0783599,1.44053,0.933811][-0.111232,0.697742,0.978478][0.246899,0.590735,0][-0.250586,1.46271,0.880599][-0.544139,1.59838,1.91013][0.242127,0.591628,0][-0.2725,1.34266,0.848852][-0.577606,-0.465142,0.670831][0.242678,0.579831,0][-0.250586,1.46271,0.880599][-0.544139,1.59838,1.91013][0.242127,0.591628,0][-0.330665,1.50049,0.807098][-0.549099,1.1012,1.16423][0.235353,0.59352,0][-0.0580326,1.08115,0.280564][-0.0144792,-0.846423,-0.532315][0.204418,0.543261,0][0.189783,1.04112,0.662802][1.75421,-1.60613,1.86508][0.235657,0.547887,0][-0.140794,1.01401,0.701705][-1.03344,-1.30596,2.35464][0.239423,0.546227,0][-0.35173,1.60838,0.349128][-0.820346,0.269399,-0.504438][0.196398,0.59352,0][-0.397518,1.60195,0.614981][-0.630362,1.08033,0.340352][0.217578,0.598719,0][-0.323919,1.70446,0.425911][-0.733141,2.37405,0.521658][0.200018,0.60408,0][0.275096,1.49649,0.325232][0.772687,0.206115,-0.600393][0.121622,0.247269,0][0.215389,1.65488,0.282388][0.503492,0.292012,-0.813157][0.132892,0.236487,0][0.377226,1.50152,0.574952][0.998663,0.0499558,-0.0132982][0.132495,0.264628,0][0.377226,1.50152,0.574952][0.998663,0.0499558,-0.0132982][0.132495,0.264628,0][0.357476,1.33611,0.628094][0.945746,-0.163339,0.280863][0.121077,0.27648,0][0.275096,1.49649,0.325232][0.772687,0.206115,-0.600393][0.121622,0.247269,0][0.205161,1.34566,0.860271][0.559039,-0.318011,0.765732][0.131589,0.292381,0][0.0933846,1.21147,0.851758][0.186934,-0.420565,0.887796][0.120163,0.298356,0][0.357476,1.33611,0.628094][0.945746,-0.163339,0.280863][0.121077,0.27648,0][0.357476,1.33611,0.628094][0.945746,-0.163339,0.280863][0.121077,0.27648,0][0.377226,1.50152,0.574952][0.998663,0.0499558,-0.0132982][0.132495,0.264628,0][0.205161,1.34566,0.860271][0.559039,-0.318011,0.765732][0.131589,0.292381,0][0.0783599,1.44053,0.933811][0.0514252,0.601693,-0.0670831][0.136556,0.578936,0][-0.112127,1.43651,0.751734][0.137668,1.61077,-0.179586][0.149275,0.598814,0][-0.250586,1.46271,0.880599][0.0767998,0.898584,-0.100184][0.137244,0.610789,0][-0.250586,1.46271,0.880599][-0.0767997,-0.898584,0.100184][0.156337,0.120328,0][-0.112127,1.43651,0.751734][-0.137668,-1.61077,0.179586][0.168807,0.131845,0][0.0783599,1.44053,0.933811][-0.0514252,-0.601692,0.0670831][0.156839,0.152185,0][-0.0580326,1.08115,0.280564][-0.0144792,-0.846423,-0.532315][0.204418,0.543261,0][-0.373192,1.12365,0.488397][-0.812857,-0.532835,0.611742][0.219765,0.55172,0][-0.369646,1.23088,0.287995][-1.74591,0.423551,-0.833165][0.201189,0.557272,0][-0.373192,1.12365,0.488397][-0.812857,-0.532835,0.611742][0.219765,0.55172,0][-0.326614,1.28808,0.69351][-0.818753,-0.28965,0.495729][0.231789,0.571398,0][-0.393467,1.38954,0.501393][-0.981935,0.161496,0.0986031][0.214014,0.576597,0][-0.393467,1.38954,0.501393][-0.981935,0.161496,0.0986031][0.214014,0.576597,0][-0.369646,1.23088,0.287995][-1.74591,0.423551,-0.833165][0.201189,0.557272,0][-0.373192,1.12365,0.488397][-0.812857,-0.532835,0.611742][0.219765,0.55172,0][-0.393467,1.38954,0.501393][-0.981935,0.161496,0.0986031][0.214014,0.576597,0][-0.326614,1.28808,0.69351][-0.818753,-0.28965,0.495729][0.231789,0.571398,0][-0.2725,1.34266,0.848852][-0.577606,-0.465142,0.670831][0.242678,0.579831,0][0.271045,1.7089,0.43882][-0.353993,0.516776,0.396102][0.134573,0.354061,0][0.180928,1.52234,0.601686][-0.483623,0.706015,0.541152][0.135649,0.376368,0][0.337898,1.60744,0.630937][-0.662945,0.967799,0.741805][0.128606,0.371592,0][0.337898,1.60744,0.630937][0.662945,-0.967799,-0.741805][0.152382,0.321351,0][0.180928,1.52234,0.601686][0.483623,-0.706015,-0.541152][0.146587,0.327584,0][0.271045,1.7089,0.43882][0.353993,-0.516776,-0.396102][0.168797,0.329923,0][-0.250586,1.46271,0.880599][0.339551,0.970864,0.12906][0.0110588,0.139256,0][-0.209479,1.47566,0.675055][0.189736,0.542505,0.072117][0.012301,0.156111,0][-0.330665,1.50049,0.807098][0.499785,1.42901,0.189964][0.0146834,0.145283,0][-0.330665,1.50049,0.807098][-0.499785,-1.42901,-0.189964][0.0579294,0.211649,0][-0.209479,1.47566,0.675055][-0.189736,-0.542505,-0.072117][0.0603118,0.200821,0][-0.250586,1.46271,0.880599][-0.339551,-0.970864,-0.12906][0.0615539,0.217676,0][-0.323919,1.70446,0.425911][0.195536,0.43622,0.566341][0.145665,0.400588,0][-0.0739416,1.62483,0.400939][0.26714,0.59596,0.773731][0.140441,0.394648,0][-0.13798,1.76886,0.312107][0.366194,0.816937,1.06062][0.140041,0.410265,0][-0.13798,1.76886,0.312107][-0.366194,-0.816937,-1.06062][0.0385402,0.0316707,0][-0.0739416,1.62483,0.400939][-0.26714,-0.59596,-0.773731][0.0381398,0.0472872,0][-0.323919,1.70446,0.425911][-0.195536,-0.43622,-0.566341][0.0329161,0.0413477,0][0.337898,1.60744,0.630937][-0.350531,0.621449,0.200486][0.0180774,0.386281,0][0.129157,1.46536,0.706389][-0.478892,0.849018,0.273902][0.014741,0.410277,0][0.264299,1.50493,0.820006][-0.656461,1.16383,0.375463][0.0123938,0.396972,0][0.264299,1.50493,0.820006][0.656461,-1.16383,-0.375463][0.0672739,0.207908,0][0.129157,1.46536,0.706389][0.478892,-0.849018,-0.273902][0.0716234,0.220699,0][0.337898,1.60744,0.630937][0.350531,-0.621449,-0.200486][0.07126,0.196475,0][-0.397518,1.60195,0.614981][0.328725,0.521876,0.410914][0.0556742,0.595284,0][-0.185879,1.59205,0.458252][0.449101,0.712983,0.561387][0.0566245,0.608137,0][-0.323919,1.70446,0.425911][0.615624,0.977351,0.769545][0.0458391,0.610789,0][-0.323919,1.70446,0.425911][-0.615624,-0.977351,-0.769545][0.157892,0.574422,0][-0.185879,1.59205,0.458252][-0.449101,-0.712983,-0.561387][0.168678,0.57177,0][-0.397518,1.60195,0.614981][-0.328725,-0.521876,-0.410914][0.167728,0.558917,0][0.264299,1.50493,0.820006][-0.217342,0.707104,0.0450592][0.111732,0.242596,0][0.0172199,1.43258,0.763703][-0.296932,0.96604,0.0615596][0.116349,0.235654,0][0.0783599,1.44053,0.933811][-0.407032,1.32424,0.0843855][0.102399,0.236417,0][0.0783599,1.44053,0.933811][0.407032,-1.32424,-0.0843855][0.0288179,0.342828,0][0.0172199,1.43258,0.763703][0.296932,-0.96604,-0.0615596][0.0295809,0.356777,0][0.264299,1.50493,0.820006][0.217342,-0.707104,-0.0450592][0.0226387,0.35216,0][0,-0.138337,-1.7063][0.00635774,0.0606179,-1.8934][0.285297,0.819504,0][0.182355,-0.00790024,-1.69001][0.507689,0.167811,-3.32629][0.287099,0.83196,0][0.182597,-0.00782073,-1.69218][-0.507695,-0.167971,3.32618][0.286922,0.831975,0][0.182597,-0.00782073,-1.69218][-0.507695,-0.167971,3.32618][0.286922,0.831975,0][5.45281e-006,-0.138286,-1.70848][-0.0063484,-0.0607006,1.89467][0.285118,0.819516,0][0,-0.138337,-1.7063][0.00635774,0.0606179,-1.8934][0.285297,0.819504,0][0.835631,-0.151484,-1.34036][2.61439,0.0496708,-2.89224][0.0401849,0.8162,0][0.218309,-0.21511,-1.6835][1.13525,0.0583396,-3.63349][0.0120355,0.822252,0][0.218794,-0.215085,-1.6856][-1.13543,-0.0583497,3.63134][0.0118627,0.82225,0][0.218794,-0.215085,-1.6856][-1.13543,-0.0583497,3.63134][0.0118627,0.82225,0][0.836778,-0.151463,-1.34208][-2.61345,-0.0497003,2.89133][0.0400438,0.816198,0][0.835631,-0.151484,-1.34036][2.61439,0.0496708,-2.89224][0.0401849,0.8162,0][-0.54738,-1.95055,-1.5928][-1.35396,0.0188586,-2.76505][0.0191653,0.988771,0][-0.140038,-1.95055,-1.69825][-0.387915,-0.00494817,-1.51144][0.0105177,0.988755,0][-0.140438,-1.95056,-1.70038][0.388046,0.00495428,1.51143][0.0103429,0.988755,0][-0.140438,-1.95056,-1.70038][0.388046,0.00495428,1.51143][0.0103429,0.988755,0][-0.548107,-1.95054,-1.59481][1.35401,-0.0187908,2.76504][0.0190005,0.988769,0][-0.54738,-1.95055,-1.5928][-1.35396,0.0188586,-2.76505][0.0191653,0.988771,0][-0.23211,-0.21948,-1.68029][-1.0488,0.0429016,-3.67859][0.0122979,0.822672,0][-0.667848,-0.153423,-1.48499][-1.65244,0.0142631,-2.48172][0.0283243,0.816364,0][-0.668774,-0.153416,-1.48689][1.65246,-0.0142481,2.4818][0.028169,0.816363,0][-0.668774,-0.153416,-1.48689][1.65246,-0.0142481,2.4818][0.028169,0.816363,0][-0.232554,-0.219462,-1.68241][1.04877,-0.0429011,3.67726][0.012124,0.82267,0][-0.23211,-0.21948,-1.68029][-1.0488,0.0429016,-3.67859][0.0122979,0.822672,0][0.409081,0.260971,-1.59882][0.83451,1.20657,0.198732][0.0702537,0.525375,0][0.0677575,0.514101,-1.66235][1.00796,1.37495,0.0629682][0.0754638,0.549661,0][0.0695526,0.514603,-1.66226][-1.02051,-1.38069,-0.0404388][0.075456,0.549709,0][0.0695526,0.514603,-1.66226][-1.02051,-1.38069,-0.0404388][0.075456,0.549709,0][0.40807,0.262538,-1.59888][-0.850486,-1.2232,-0.18646][0.0702589,0.525525,0][0.409081,0.260971,-1.59882][0.83451,1.20657,0.198732][0.0702537,0.525375,0][0.551291,0.519684,-1.54006][1.77744,0.863066,-2.75739][0.0239281,0.751775,0][0.745543,0.404775,-1.41597][2.32874,0.472058,-2.50008][0.0340835,0.762819,0][0.746702,0.405002,-1.41766][-2.3283,-0.472131,2.49949][0.0339449,0.762797,0][0.746702,0.405002,-1.41766][-2.3283,-0.472131,2.49949][0.0339449,0.762797,0][0.552174,0.520108,-1.54192][-1.77784,-0.863742,2.75859][0.0237758,0.751735,0][0.551291,0.519684,-1.54006][1.77744,0.863066,-2.75739][0.0239281,0.751775,0][0.442024,-1.95055,-1.63335][1.20103,0.107985,-2.84137][0.01584,0.988764,0][0.928957,-1.95055,-1.34907][1.90952,0.3705,-2.37198][0.0391514,0.988807,0][0.930012,-1.95035,-1.35086][-1.9101,-0.370746,2.37258][0.0390051,0.988788,0][0.930012,-1.95035,-1.35086][-1.9101,-0.370746,2.37258][0.0390051,0.988788,0][0.442662,-1.95049,-1.6354][-1.20115,-0.107983,2.84127][0.0156719,0.988758,0][0.442024,-1.95055,-1.63335][1.20103,0.107985,-2.84137][0.01584,0.988764,0][-0.52004,0.384507,-1.569][-0.88268,0.0290473,-2.55732][0.0215307,0.76474,0][-0.550355,0.136258,-1.55787][-0.607102,-0.00162684,-1.68885][0.0223999,0.78856,0][-0.550903,0.136257,-1.55995][0.606858,0.00163911,1.68851][0.0222288,0.78856,0][-0.550903,0.136257,-1.55995][0.606858,0.00163911,1.68851][0.0222288,0.78856,0][-0.520567,0.384525,-1.5711][0.882727,-0.0292485,2.5586][0.021359,0.764738,0][-0.52004,0.384507,-1.569][-0.88268,0.0290473,-2.55732][0.0215307,0.76474,0][-0.550355,0.136258,-1.55787][-0.607102,-0.00162684,-1.68885][0.0223999,0.78856,0][-0.182354,-0.00790024,-1.69001][-0.559181,0.0740068,-3.3287][0.0115377,0.802371,0][-0.18262,-0.00786519,-1.69217][0.559162,-0.0741016,3.32826][0.0113606,0.802367,0][-0.18262,-0.00786519,-1.69217][0.559162,-0.0741016,3.32826][0.0113606,0.802367,0][-0.550903,0.136257,-1.55995][0.606858,0.00163911,1.68851][0.0222288,0.78856,0][-0.550355,0.136258,-1.55787][-0.607102,-0.00162684,-1.68885][0.0223999,0.78856,0][0.182355,-0.00790024,-1.69001][0.507689,0.167811,-3.32629][0.0115377,0.802371,0][0.550355,0.136258,-1.55786][0.658674,0.0199167,-1.83386][0.0223999,0.78856,0][0.550903,0.136275,-1.55995][-0.658398,-0.0199783,1.83372][0.0222288,0.788558,0][0.550903,0.136275,-1.55995][-0.658398,-0.0199783,1.83372][0.0222288,0.788558,0][0.182597,-0.00782073,-1.69218][-0.507695,-0.167971,3.32618][0.0113604,0.802363,0][0.182355,-0.00790024,-1.69001][0.507689,0.167811,-3.32629][0.0115377,0.802371,0][-0.83563,-0.151484,-1.34036][-2.95217,-0.0374501,-2.9802][0.315237,0.817123,0][-0.892723,0.00291789,-1.27823][-2.0967,0.0103755,-1.73816][0.320882,0.831736,0][-0.894063,0.00292468,-1.27975][2.09673,-0.0103883,1.73776][0.320757,0.831741,0][-0.894063,0.00292468,-1.27975][2.09673,-0.0103883,1.73776][0.320757,0.831741,0][-0.836837,-0.151499,-1.34203][2.95151,0.0375536,2.97968][0.315101,0.817126,0][-0.83563,-0.151484,-1.34036][-2.95217,-0.0374501,-2.9802][0.315237,0.817123,0][-1.3695,-1.75141,0.244966][-2.80691,1.44126,0.724182][0.169903,0.969943,0][-1.53999,-1.8949,-0.21537][-2.40996,1.16764,-0.124181][0.132128,0.98364,0][-1.54168,-1.89413,-0.215504][2.41848,-1.16726,0.125839][0.132117,0.983566,0][-1.54168,-1.89413,-0.215504][2.41848,-1.16726,0.125839][0.132117,0.983566,0][-1.3711,-1.75058,0.245532][2.80661,-1.44171,-0.723883][0.169949,0.969863,0][-1.3695,-1.75141,0.244966][-2.80691,1.44126,0.724182][0.169903,0.969943,0][0.954958,0.0791984,-1.2004][3.81441,0.104506,-2.43555][0.0517026,0.794089,0][0.835631,-0.151484,-1.34036][2.61439,0.0496708,-2.89224][0.0401849,0.8162,0][0.836778,-0.151463,-1.34208][-2.61345,-0.0497003,2.89133][0.0400438,0.816198,0][0.836778,-0.151463,-1.34208][-2.61345,-0.0497003,2.89133][0.0400438,0.816198,0][0.956458,0.0792385,-1.2017][-3.81603,-0.104615,2.43667][0.0515963,0.794085,0][0.954958,0.0791984,-1.2004][3.81441,0.104506,-2.43555][0.0517026,0.794089,0][-0.832704,-1.74362,1.10423][-2.17945,0.927834,2.14423][0.240366,0.969326,0][-1.1074,-1.7113,0.724028][-2.55656,1.33606,1.40643][0.209194,0.966167,0][-1.10884,-1.71055,0.725112][2.55621,-1.33775,-1.40567][0.209283,0.966095,0][-1.10884,-1.71055,0.725112][2.55621,-1.33775,-1.40567][0.209283,0.966095,0][-0.833889,-1.74312,1.10581][2.1786,-0.927476,-2.14355][0.240496,0.969278,0][-0.832704,-1.74362,1.10423][-2.17945,0.927834,2.14423][0.240366,0.969326,0][1.53999,-1.8949,-0.21537][2.51739,1.05214,-0.165581][0.132128,0.98364,0][1.3695,-1.75141,0.244967][2.7948,1.47213,0.711385][0.169903,0.969943,0][1.3711,-1.75056,0.245521][-2.79523,-1.47268,-0.711299][0.169948,0.969862,0][1.3711,-1.75056,0.245521][-2.79523,-1.47268,-0.711299][0.169948,0.969862,0][1.54172,-1.89423,-0.215538][-2.52714,-1.05173,0.167591][0.132115,0.983575,0][1.53999,-1.8949,-0.21537][2.51739,1.05214,-0.165581][0.132128,0.98364,0][0.947636,-0.247121,-1.22031][-1.002,0.676313,-0.762346][0.0392149,0.476627,0][0.756265,-0.751776,-1.40379][-1.32208,0.765431,-0.726326][0.0542612,0.428208,0][0.754696,-0.751742,-1.40497][1.31079,-0.766955,0.735277][0.054358,0.428211,0][0.754696,-0.751742,-1.40497][1.31079,-0.766955,0.735277][0.054358,0.428211,0][0.946455,-0.248131,-1.22152][1.00227,-0.690085,0.789146][0.039314,0.47653,0][0.947636,-0.247121,-1.22031][-1.002,0.676313,-0.762346][0.0392149,0.476627,0][-1.04422,-1.1788,-1.03767][-0.779948,-0.967341,0.804765][0.0322593,0.179193,0][-0.874601,-1.51324,-1.27528][-0.0584025,-0.0724345,0.0602609][0.0368884,0.216447,0][-0.874299,-1.51499,-1.27594][0.0606326,0.0744063,-0.0608155][0.0368687,0.216623,0][-0.874299,-1.51499,-1.27594][0.0606326,0.0744063,-0.0608155][0.0368687,0.216623,0][-1.04522,-1.17979,-1.03624][0.788349,0.967435,-0.790726][0.0321132,0.179232,0][-1.04422,-1.1788,-1.03767][-0.779948,-0.967341,0.804765][0.0322593,0.179193,0][-0.755158,0.397383,-1.40765][-2.36935,0.466597,-2.28204][0.0347645,0.76353,0][-0.551291,0.519685,-1.54006][-1.66428,0.99427,-2.77807][0.0239281,0.751775,0][-0.552115,0.52017,-1.54193][1.66429,-0.995906,2.77892][0.0237745,0.751729,0][-0.552115,0.52017,-1.54193][1.66429,-0.995906,2.77892][0.0237745,0.751729,0][-0.756392,0.397625,-1.40926][2.369,-0.466821,2.28121][0.0346324,0.763506,0][-0.755158,0.397383,-1.40765][-2.36935,0.466597,-2.28204][0.0347645,0.76353,0][-0.927024,-0.247121,-1.19807][1.0617,0.706197,-0.80777][0.141406,0.476627,0][-0.85342,-0.254767,-1.28033][0.68849,-0.967541,1.88716][0.134661,0.475893,0][-0.85307,-0.255798,-1.27855][-0.59816,1.02678,-1.87115][0.134806,0.475794,0][-0.85307,-0.255798,-1.27855][-0.59816,1.02678,-1.87115][0.134806,0.475794,0][-0.925849,-0.248123,-1.19929][-1.0606,-0.717667,0.838592][0.141306,0.476531,0][-0.927024,-0.247121,-1.19807][1.0617,0.706197,-0.80777][0.141406,0.476627,0][-0.735653,-0.751776,-1.38773][0.0623177,0.0414511,-0.0474131][0.125853,0.428208,0][-0.927024,-0.247121,-1.19807][1.0617,0.706197,-0.80777][0.141406,0.476627,0][-0.925849,-0.248123,-1.19929][-1.0606,-0.717667,0.838592][0.141306,0.476531,0][-0.925849,-0.248123,-1.19929][-1.0606,-0.717667,0.838592][0.141306,0.476531,0][-0.735864,-0.751608,-1.38989][-0.0636562,-0.0430736,0.0503315][0.125676,0.428224,0][-0.735653,-0.751776,-1.38773][0.0623177,0.0414511,-0.0474131][0.125853,0.428208,0][-0.377156,0.749624,-1.56407][-0.641091,1.66351,0.408176][0.0674043,0.572258,0][-0.680374,0.59738,-1.41985][-0.0475846,0.123473,0.0302966][0.0555775,0.557651,0][-0.681015,0.599054,-1.41924][0.0493325,-0.126776,-0.0300258][0.0555278,0.557812,0][-0.681015,0.599054,-1.41924][0.0493325,-0.126776,-0.0300258][0.0555278,0.557812,0][-0.377273,0.75145,-1.56364][0.646266,-1.66079,-0.393344][0.0673694,0.572433,0][-0.377156,0.749624,-1.56407][-0.641091,1.66351,0.408176][0.0674043,0.572258,0][0.903458,-1.51324,-1.28621][0.0382748,-0.0734911,0.0851331][0.16297,0.409047,0][1.09776,-1.09956,-1.01646][0.161917,-0.310894,0.360144][0.16866,0.363967,0][1.09892,-1.10037,-1.01504][-0.16748,0.316428,-0.362223][0.168797,0.363995,0][1.09892,-1.10037,-1.01504][-0.16748,0.316428,-0.362223][0.168797,0.363995,0][0.903172,-1.51503,-1.28676][-0.039682,0.0749731,-0.0858235][0.162992,0.409223,0][0.903458,-1.51324,-1.28621][0.0382748,-0.0734911,0.0851331][0.16297,0.409047,0][1.13606,-1.71132,0.681109][2.63112,0.979469,1.59478][0.205675,0.966162,0][0.627881,-1.78759,1.30145][1.93259,1.04121,2.37078][0.256531,0.973574,0][0.628911,-1.78704,1.30316][-1.93143,-1.04055,-2.37011][0.256671,0.973521,0][0.628911,-1.78704,1.30316][-1.93143,-1.04055,-2.37011][0.256671,0.973521,0][1.13752,-1.71078,0.682316][-2.63041,-0.979403,-1.59417][0.205774,0.96611,0][1.13606,-1.71132,0.681109][2.63112,0.979469,1.59478][0.205675,0.966162,0][-1.08895,0.127547,-0.962279][-0.0640958,-0.10318,0.0570321][0.160742,0.512574,0][-0.934385,-0.0941957,-1.18973][-0.841674,-1.35491,0.748916][0.14209,0.491299,0][-0.935565,-0.0934324,-1.1883][0.865912,1.3798,-0.750208][0.142208,0.491372,0][-0.935565,-0.0934324,-1.1883][0.865912,1.3798,-0.750208][0.142208,0.491372,0][-1.08995,0.127337,-0.960453][0.0669417,0.10667,-0.0579969][0.160892,0.512553,0][-1.08895,0.127547,-0.962279][-0.0640958,-0.10318,0.0570321][0.160742,0.512574,0][-0.0151328,-1.88087,1.56666][-0.0140414,1.19196,2.5481][0.278262,0.982564,0][-0.454886,-1.8455,1.48065][-0.918267,1.11989,2.30241][0.271216,0.979158,0][-0.455465,-1.84482,1.48257][0.918575,-1.12019,-2.30282][0.271373,0.979093,0][-0.455465,-1.84482,1.48257][0.918575,-1.12019,-2.30282][0.271373,0.979093,0][-0.0151412,-1.88017,1.56868][0.0140452,-1.19199,-2.54806][0.278429,0.982498,0][-0.0151328,-1.88087,1.56666][-0.0140414,1.19196,2.5481][0.278262,0.982564,0][-0.428148,0.540443,-1.56858][-1.38901,0.805012,0.458839][0.0677738,0.552188,0][-0.548077,0.302959,-1.51497][-0.158988,0.0921429,0.0525194][0.0633781,0.529403,0][-0.549728,0.303423,-1.51411][0.165005,-0.0959871,-0.0523891][0.0633078,0.529448,0][-0.549728,0.303423,-1.51411][0.165005,-0.0959871,-0.0523891][0.0633078,0.529448,0][-0.429598,0.539363,-1.56804][1.41204,-0.821415,-0.448323][0.0677299,0.552085,0][-0.428148,0.540443,-1.56858][-1.38901,0.805012,0.458839][0.0677738,0.552188,0][-0.954957,0.0791987,-1.20041][-3.93823,0.158458,-2.4179][0.0517026,0.794089,0][-0.879328,0.254629,-1.28982][-2.76362,0.393553,-1.94857][0.0444016,0.777244,0][-0.880763,0.254829,-1.29119][2.7641,-0.393871,1.94882][0.0442888,0.777224,0][-0.880763,0.254829,-1.29119][2.7641,-0.393871,1.94882][0.0442888,0.777224,0][-0.956475,0.079258,-1.20167][3.93946,-0.158509,2.41843][0.0515987,0.794083,0][-0.954957,0.0791987,-1.20041][-3.93823,0.158458,-2.4179][0.0517026,0.794089,0][-0.932128,0.409477,-1.18822][-1.79323,2.10434,0.226558][0.142214,0.539623,0][-1.08895,0.127547,-0.962279][-0.0640958,-0.10318,0.0570321][0.160742,0.512574,0][-1.08995,0.127337,-0.960453][0.0669417,0.10667,-0.0579969][0.160892,0.512553,0][-1.08995,0.127337,-0.960453][0.0669417,0.10667,-0.0579969][0.160892,0.512553,0][-0.933237,0.410933,-1.1878][1.79232,-2.09838,-0.220999][0.142249,0.539763,0][-0.932128,0.409477,-1.18822][-1.79323,2.10434,0.226558][0.142214,0.539623,0][1.44725,-1.96011,-0.355266][1.62103,-1.62872,-0.31546][0.120645,0.989875,0][1.53999,-1.8949,-0.21537][2.51739,1.05214,-0.165581][0.132128,0.98364,0][1.54172,-1.89423,-0.215538][-2.52714,-1.05173,0.167591][0.132115,0.983575,0][1.54172,-1.89423,-0.215538][-2.52714,-1.05173,0.167591][0.132115,0.983575,0][1.44855,-1.96141,-0.355612][-1.63087,1.60133,0.316768][0.120616,0.99,0][1.44725,-1.96011,-0.355266][1.62103,-1.62872,-0.31546][0.120645,0.989875,0][1.45096,-1.90245,-0.633891][3.12732,0.825249,-1.24073][0.0978069,0.984301,0][1.44725,-1.96011,-0.355266][1.62103,-1.62872,-0.31546][0.120645,0.989875,0][1.44855,-1.96141,-0.355612][-1.63087,1.60133,0.316768][0.120616,0.99,0][1.44855,-1.96141,-0.355612][-1.63087,1.60133,0.316768][0.120616,0.99,0][1.45261,-1.90205,-0.634775][-3.14117,-0.824124,1.24725][0.0977345,0.984262,0][1.45096,-1.90245,-0.633891][3.12732,0.825249,-1.24073][0.0978069,0.984301,0][0.745543,0.404775,-1.41597][2.32874,0.472058,-2.50008][0.0340835,0.762819,0][0.954958,0.0791984,-1.2004][3.81441,0.104506,-2.43555][0.0517026,0.794089,0][0.956458,0.0792385,-1.2017][-3.81603,-0.104615,2.43667][0.0515963,0.794085,0][0.956458,0.0792385,-1.2017][-3.81603,-0.104615,2.43667][0.0515963,0.794085,0][0.746702,0.405002,-1.41766][-2.3283,-0.472131,2.49949][0.0339449,0.762797,0][0.745543,0.404775,-1.41597][2.32874,0.472058,-2.50008][0.0340835,0.762819,0][0.292558,-1.14174,-1.63562][0.0865752,-0.0645411,0.0248592][0.0732716,0.390794,0][0.725337,-0.481583,-1.42889][0.290322,-0.216433,0.0833629][0.0563196,0.454131,0][0.72654,-0.482756,-1.42795][-0.298243,0.221424,-0.082639][0.0562418,0.454019,0][0.72654,-0.482756,-1.42795][-0.298243,0.221424,-0.082639][0.0562418,0.454019,0][0.294298,-1.14232,-1.63522][-0.0892706,0.066277,-0.0247357][0.0732391,0.390738,0][0.292558,-1.14174,-1.63562][0.0865752,-0.0645411,0.0248592][0.0732716,0.390794,0][0.511223,0.136258,-1.55671][0.513474,-1.36962,0.149819][0.0668009,0.513409,0][0.513866,0.290041,-1.5545][0.172926,0.00373118,-0.984928][0.0666193,0.528164,0][0.515549,0.290442,-1.55531][-0.876961,-0.266928,-0.39961][0.0666863,0.528202,0][0.515549,0.290442,-1.55531][-0.876961,-0.266928,-0.39961][0.0666863,0.528202,0][0.512653,0.135175,-1.55611][-0.512003,1.36251,-0.139512][0.0667519,0.513305,0][0.511223,0.136258,-1.55671][0.513474,-1.36962,0.149819][0.0668009,0.513409,0][-0.0471455,0.514102,-1.6614][-1.41572,-0.668955,0.0314588][0.0753857,0.549661,0][-0.388469,0.260971,-1.59204][-0.909879,1.28622,0.216544][0.0696981,0.525375,0][-0.387567,0.262587,-1.59232][0.929803,-1.30569,-0.205394][0.0697208,0.52553,0][-0.387567,0.262587,-1.59232][0.929803,-1.30569,-0.205394][0.0697208,0.52553,0][-0.0489483,0.514567,-1.66127][1.42295,0.671789,-0.0106998][0.0753746,0.549706,0][-0.0471455,0.514102,-1.6614][-1.41572,-0.668955,0.0314588][0.0753857,0.549661,0][0.391032,0.540443,-1.59865][-0.0717869,-0.458709,-0.280466][0.0702396,0.552188,0][0.724192,0.383126,-1.42662][-0.0320952,-0.205084,-0.125394][0.0561333,0.537095,0][0.722955,0.381744,-1.4264][0.0341838,0.209969,0.126442][0.0561146,0.536962,0][0.722955,0.381744,-1.4264][0.0341838,0.209969,0.126442][0.0561146,0.536962,0][0.392477,0.539263,-1.59863][0.0774377,0.47565,0.286434][0.070238,0.552075,0][0.391032,0.540443,-1.59865][-0.0717869,-0.458709,-0.280466][0.0702396,0.552188,0][0.513866,0.290041,-1.5545][0.172926,0.00373118,-0.984928][0.0666193,0.528164,0][0.391032,0.540443,-1.59865][-0.0717869,-0.458709,-0.280466][0.0702396,0.552188,0][0.392477,0.539263,-1.59863][0.0774377,0.47565,0.286434][0.070238,0.552075,0][0.392477,0.539263,-1.59863][0.0774377,0.47565,0.286434][0.070238,0.552075,0][0.515549,0.290442,-1.55531][-0.876961,-0.266928,-0.39961][0.0666863,0.528202,0][0.513866,0.290041,-1.5545][0.172926,0.00373118,-0.984928][0.0666193,0.528164,0][0.0677575,0.514101,-1.66235][1.00796,1.37495,0.0629682][0.0754638,0.549661,0][0.218954,0.892174,-1.5821][0.117749,-0.0476817,0.00279122][0.068883,0.585935,0][0.220655,0.892095,-1.58299][-0.12183,0.0489963,-0.00109661][0.068956,0.585927,0][0.220655,0.892095,-1.58299][-0.12183,0.0489963,-0.00109661][0.068956,0.585927,0][0.0695526,0.514603,-1.66226][-1.02051,-1.38069,-0.0404388][0.075456,0.549709,0][0.0677575,0.514101,-1.66235][1.00796,1.37495,0.0629682][0.0754638,0.549661,0][-0.823787,-0.949254,-1.30874][-0.960982,-0.24708,-0.124362][0.0615595,0.168209,0][-1.14029,-0.811621,-0.866066][0.0661345,0.247346,-0.0296186][0.033855,0.141292,0][-1.14091,-0.810324,-0.864678][-0.0677784,-0.247391,0.0287461][0.0338022,0.141132,0][-1.14091,-0.810324,-0.864678][-0.0677784,-0.247391,0.0287461][0.0338022,0.141132,0][-0.824535,-0.948826,-1.31067][-0.302198,-0.35721,0.883786][0.0617211,0.168237,0][-0.823787,-0.949254,-1.30874][-0.960982,-0.24708,-0.124362][0.0615595,0.168209,0][0.326615,0.745343,-1.59585][-1.18814,-0.185801,0.564677][0.0700104,0.571847,0][0.344424,0.582217,-1.61205][-0.409955,-0.0641087,0.194836][0.0713391,0.556196,0][0.34269,0.581846,-1.61138][0.418378,0.0624941,-0.195767][0.0712835,0.556161,0][0.34269,0.581846,-1.61138][0.418378,0.0624941,-0.195767][0.0712835,0.556161,0][0.325628,0.746817,-1.59518][1.18639,0.177215,-0.555138][0.069955,0.571989,0][0.326615,0.745343,-1.59585][-1.18814,-0.185801,0.564677][0.0700104,0.571847,0][0.0163865,0.0869783,-1.6702][0.217759,0.502838,-0.216864][0.0761077,0.508681,0][-0.294692,0.241506,-1.62427][0.0987647,0.228062,-0.0983586][0.0723407,0.523507,0][-0.292901,0.241608,-1.62486][-0.101598,-0.235662,0.10092][0.0723896,0.523517,0][-0.292901,0.241608,-1.62486][-0.101598,-0.235662,0.10092][0.0723896,0.523517,0][0.0164048,0.0888438,-1.6702][-0.222821,-0.516844,0.221334][0.0761076,0.50886,0][0.0163865,0.0869783,-1.6702][0.217759,0.502838,-0.216864][0.0761077,0.508681,0][-0.294692,0.241506,-1.62427][0.0987647,0.228062,-0.0983586][0.0723407,0.523507,0][0.00695591,0.463263,-1.66553][0.0820369,-0.114807,-0.0172763][0.0757243,0.544783,0][0.00691974,0.461399,-1.66561][-0.0845973,0.119095,0.0199284][0.0757305,0.544605,0][0.00691974,0.461399,-1.66561][-0.0845973,0.119095,0.0199284][0.0757305,0.544605,0][-0.292901,0.241608,-1.62486][-0.101598,-0.235662,0.10092][0.0723896,0.523517,0][-0.294692,0.241506,-1.62427][0.0987647,0.228062,-0.0983586][0.0723407,0.523507,0][0.345064,-0.440239,-1.62193][0.17121,-9.83789e-007,-1.78444][0.045857,0.325717,0][0.345064,-0.656466,-1.62193][0.0613267,-3.5239e-007,-0.639179][0.0256565,0.330441,0][0.345548,-0.656717,-1.62401][-0.0653807,0.000105233,0.641474][0.0255941,0.33028,0][0.345548,-0.656717,-1.62401][-0.0653807,0.000105233,0.641474][0.0255941,0.33028,0][0.345162,-0.440003,-1.62409][-0.181693,0.000292442,1.78265][0.0458387,0.325539,0][0.345064,-0.440239,-1.62193][0.17121,-9.83789e-007,-1.78444][0.045857,0.325717,0][0.852644,-0.949254,-1.31981][-0.189866,-0.076865,-0.0205759][0.140198,0.359884,0][0.917063,-1.12576,-1.25486][-2.36611,-0.95789,-0.256417][0.151465,0.373603,0][0.915373,-1.12639,-1.25543][2.32361,0.955597,0.386829][0.151444,0.373675,0][0.915373,-1.12639,-1.25543][2.32361,0.955597,0.386829][0.151444,0.373675,0][0.853453,-0.948978,-1.32175][0.196073,0.0806361,0.0326418][0.140041,0.359918,0][0.852644,-0.949254,-1.31981][-0.189866,-0.076865,-0.0205759][0.140198,0.359884,0][0.917063,-1.12576,-1.25486][-2.36611,-0.95789,-0.256417][0.151465,0.373603,0][0.903458,-1.51324,-1.28621][0.0382748,-0.0734911,0.0851331][0.16297,0.409047,0][0.903172,-1.51503,-1.28676][-0.039682,0.0749731,-0.0858235][0.162992,0.409223,0][0.903172,-1.51503,-1.28676][-0.039682,0.0749731,-0.0858235][0.162992,0.409223,0][0.915373,-1.12639,-1.25543][2.32361,0.955597,0.386829][0.151444,0.373675,0][0.917063,-1.12576,-1.25486][-2.36611,-0.95789,-0.256417][0.151465,0.373603,0][-0.334062,-0.656466,-1.61186][-0.247916,-6.83177e-007,-0.588598][0.131518,0.349613,0][-0.334062,-0.440239,-1.61186][-0.696448,-1.91919e-006,-1.65349][0.135484,0.32925,0][-0.334694,-0.440239,-1.61391][0.696448,1.91919e-006,1.65349][0.135649,0.329283,0][-0.334694,-0.440239,-1.61391][0.696448,1.91919e-006,1.65349][0.135649,0.329283,0][-0.334694,-0.656466,-1.61391][0.247916,6.83177e-007,0.588598][0.131683,0.349645,0][-0.334062,-0.656466,-1.61186][-0.247916,-6.83177e-007,-0.588598][0.131518,0.349613,0][-0.334062,-0.440239,-1.61186][-0.696448,-1.91919e-006,-1.65349][0.135484,0.32925,0][-0.51204,-0.396367,-1.5369][-0.27511,-7.58116e-007,-0.653162][0.130255,0.323944,0][-0.512672,-0.396367,-1.53895][0.275111,7.58116e-007,0.653162][0.13042,0.323976,0][-0.512672,-0.396367,-1.53895][0.275111,7.58116e-007,0.653162][0.13042,0.323976,0][-0.334694,-0.440239,-1.61391][0.696448,1.91919e-006,1.65349][0.135649,0.329283,0][-0.334062,-0.440239,-1.61186][-0.696448,-1.91919e-006,-1.65349][0.135484,0.32925,0][-0.51204,-0.396367,-1.5369][-0.27511,-7.58116e-007,-0.653162][0.0148506,0.18716,0][-0.334062,-0.656466,-1.61186][-0.247916,-6.83177e-007,-0.588598][0.0145475,0.212859,0][-0.334694,-0.656466,-1.61391][0.247916,6.83177e-007,0.588598][0.0143836,0.212897,0][-0.334694,-0.656466,-1.61391][0.247916,6.83177e-007,0.588598][0.0143836,0.212897,0][-0.512672,-0.396367,-1.53895][0.275111,7.58116e-007,0.653162][0.0146866,0.187199,0][-0.51204,-0.396367,-1.5369][-0.27511,-7.58116e-007,-0.653162][0.0148506,0.18716,0][0.218954,0.892174,-1.5821][0.117749,-0.0476817,0.00279122][0.068883,0.585935,0][0.116855,1.06853,-1.52309][0.300109,0.110109,0.190148][0.0640435,0.602855,0][0.118075,1.06994,-1.52327][-0.30051,-0.109533,-0.189999][0.0640586,0.60299,0][0.118075,1.06994,-1.52327][-0.30051,-0.109533,-0.189999][0.0640586,0.60299,0][0.220655,0.892095,-1.58299][-0.12183,0.0489963,-0.00109661][0.068956,0.585927,0][0.218954,0.892174,-1.5821][0.117749,-0.0476817,0.00279122][0.068883,0.585935,0][0.140038,-1.95055,-1.69825][0.326341,-0.00174545,-1.52593][0.0105178,0.988755,0][0.442024,-1.95055,-1.63335][1.20103,0.107985,-2.84137][0.01584,0.988764,0][0.442662,-1.95049,-1.6354][-1.20115,-0.107983,2.84127][0.0156719,0.988758,0][0.442662,-1.95049,-1.6354][-1.20115,-0.107983,2.84127][0.0156719,0.988758,0][0.140374,-1.95055,-1.7004][-0.326463,0.00174575,1.52574][0.0103417,0.988754,0][0.140038,-1.95055,-1.69825][0.326341,-0.00174545,-1.52593][0.0105178,0.988755,0][0.00695591,0.463263,-1.66553][0.0820369,-0.114807,-0.0172763][0.0757243,0.544783,0][0.308734,0.233875,-1.63068][-0.954936,-1.28085,-0.161664][0.0728668,0.522775,0][0.306913,0.234023,-1.63112][0.962852,1.29841,0.184984][0.072903,0.522789,0][0.306913,0.234023,-1.63112][0.962852,1.29841,0.184984][0.072903,0.522789,0][0.00691974,0.461399,-1.66561][-0.0845973,0.119095,0.0199284][0.0757305,0.544605,0][0.00695591,0.463263,-1.66553][0.0820369,-0.114807,-0.0172763][0.0757243,0.544783,0][0.116855,1.06853,-1.52309][0.300109,0.110109,0.190148][0.0640435,0.602855,0][0.0103061,1.12921,-1.49483][0.834142,1.24143,0.479554][0.0617261,0.608677,0][0.0102552,1.13089,-1.49388][-0.826216,-1.23633,-0.466936][0.0616489,0.608838,0][0.0102552,1.13089,-1.49388][-0.826216,-1.23633,-0.466936][0.0616489,0.608838,0][0.118075,1.06994,-1.52327][-0.30051,-0.109533,-0.189999][0.0640586,0.60299,0][0.116855,1.06853,-1.52309][0.300109,0.110109,0.190148][0.0640435,0.602855,0][0.0103061,1.12921,-1.49483][0.834142,1.24143,0.479554][0.0617261,0.608677,0][-0.139449,1.02832,-1.53355][-0.165414,0.210492,0.0913073][0.0649013,0.598997,0][-0.14078,1.02962,-1.53342][0.168463,-0.21561,-0.0912978][0.064891,0.599122,0][-0.14078,1.02962,-1.53342][0.168463,-0.21561,-0.0912978][0.064891,0.599122,0][0.0102552,1.13089,-1.49388][-0.826216,-1.23633,-0.466936][0.0616489,0.608838,0][0.0103061,1.12921,-1.49483][0.834142,1.24143,0.479554][0.0617261,0.608677,0][-0.425496,0.540444,-1.59832][-1.78316,1.12352,-4.83777][0.0191541,0.749775,0][-0.52004,0.384507,-1.569][-0.88268,0.0290473,-2.55732][0.0215307,0.76474,0][-0.520567,0.384525,-1.5711][0.882727,-0.0292485,2.5586][0.021359,0.764738,0][-0.520567,0.384525,-1.5711][0.882727,-0.0292485,2.5586][0.021359,0.764738,0][-0.426051,0.540795,-1.60036][1.78187,-1.12351,4.8356][0.0189866,0.749741,0][-0.425496,0.540444,-1.59832][-1.78316,1.12352,-4.83777][0.0191541,0.749775,0][0.874032,-0.254768,-1.2993][0.890796,-0.916833,0.578126][0.0456925,0.475893,0][0.947636,-0.247121,-1.22031][-1.002,0.676313,-0.762346][0.0392149,0.476627,0][0.946455,-0.248131,-1.22152][1.00227,-0.690085,0.789146][0.039314,0.47653,0][0.946455,-0.248131,-1.22152][1.00227,-0.690085,0.789146][0.039314,0.47653,0][0.874702,-0.256433,-1.2987][-0.902686,0.917728,-0.56376][0.0456436,0.475733,0][0.874032,-0.254768,-1.2993][0.890796,-0.916833,0.578126][0.0456925,0.475893,0][1.16914,-0.811621,-0.890524][0.250818,-0.460219,-0.851639][0.167918,0.334483,0][0.974457,-0.896282,-1.19016][-0.0981094,0.458203,-0.0657169][0.148161,0.351197,0][0.974191,-0.894515,-1.19079][0.0969204,-0.46312,0.0652297][0.14805,0.351059,0][0.974191,-0.894515,-1.19079][0.0969204,-0.46312,0.0652297][0.14805,0.351059,0][1.17083,-0.811179,-0.891297][-0.727896,-0.536326,-0.427227][0.167844,0.334467,0][1.16914,-0.811621,-0.890524][0.250818,-0.460219,-0.851639][0.167918,0.334483,0][0.9007,0.0791981,-1.27273][-0.434827,0.23491,-0.0396242][0.0435133,0.507935,0][0.785834,-0.151484,-1.3798][-0.318033,0.171813,-0.0289812][0.0522933,0.485802,0][0.784927,-0.149938,-1.3804][0.323135,-0.176168,0.032541][0.0523429,0.485951,0][0.784927,-0.149938,-1.3804][0.323135,-0.176168,0.032541][0.0523429,0.485951,0][0.899249,0.0793976,-1.27408][0.442111,-0.241031,0.0445222][0.0436242,0.507954,0][0.9007,0.0791981,-1.27273][-0.434827,0.23491,-0.0396242][0.0435133,0.507935,0][-0.82295,-0.151484,-1.30954][0.261319,0.15623,-0.154191][0.132265,0.485802,0][-0.884789,0.0153021,-1.24535][0.692488,0.414005,-0.408604][0.137529,0.501804,0][-0.883828,0.0165256,-1.24656][-0.693301,-0.417551,0.419568][0.13743,0.501922,0][-0.883828,0.0165256,-1.24656][-0.693301,-0.417551,0.419568][0.13743,0.501922,0][-0.822131,-0.149924,-1.31026][-0.266276,-0.160369,0.161143][0.132207,0.485952,0][-0.82295,-0.151484,-1.30954][0.261319,0.15623,-0.154191][0.132265,0.485802,0][-0.496243,-0.174527,-1.54575][0.00609616,0.126989,-0.00395649][0.112895,0.483591,0][-0.82295,-0.151484,-1.30954][0.261319,0.15623,-0.154191][0.132265,0.485802,0][-0.822131,-0.149924,-1.31026][-0.266276,-0.160369,0.161143][0.132207,0.485952,0][-0.822131,-0.149924,-1.31026][-0.266276,-0.160369,0.161143][0.132207,0.485952,0][-0.496077,-0.17267,-1.54583][-0.00511773,-0.131381,0.00560248][0.112889,0.48377,0][-0.496243,-0.174527,-1.54575][0.00609616,0.126989,-0.00395649][0.112895,0.483591,0][0.0913505,0.825793,-1.61749][-1.80994,-0.84876,0.813872][0.071785,0.579566,0][0.00216625,0.642283,-1.65483][-0.332497,0.181131,-0.0960264][0.0748472,0.561959,0][0.00223007,0.644148,-1.65481][0.349755,-0.189396,0.0996408][0.0748452,0.562138,0][0.00223007,0.644148,-1.65481][0.349755,-0.189396,0.0996408][0.0748452,0.562138,0][0.0895901,0.825402,-1.61693][1.83021,0.823974,-0.730439][0.0717391,0.579528,0][0.0913505,0.825793,-1.61749][-1.80994,-0.84876,0.813872][0.071785,0.579566,0][-0.919664,-0.675313,-1.20634][0.250275,1.72454,-0.190415][0.140728,0.435544,0][-1.11104,-0.614142,-0.922754][0.165222,1.46069,-0.203577][0.163983,0.441413,0][-1.11155,-0.612522,-0.921854][-0.158783,-1.4541,0.209508][0.164057,0.441569,0][-1.11155,-0.612522,-0.921854][-0.158783,-1.4541,0.209508][0.164057,0.441569,0][-0.920776,-0.674178,-1.2052][-0.233389,-1.7449,0.212423][0.140822,0.435653,0][-0.919664,-0.675313,-1.20634][0.250275,1.72454,-0.190415][0.140728,0.435544,0][-1.14048,-0.0865495,-0.865651][-0.0456967,-0.0372564,0.034767][0.168666,0.492032,0][-0.919664,-0.675313,-1.20634][0.250275,1.72454,-0.190415][0.140728,0.435544,0][-0.920776,-0.674178,-1.2052][-0.233389,-1.7449,0.212423][0.140822,0.435653,0][-0.920776,-0.674178,-1.2052][-0.233389,-1.7449,0.212423][0.140822,0.435653,0][-1.1413,-0.0855916,-0.864044][0.0475226,0.0384456,-0.0356107][0.168797,0.492124,0][-1.14048,-0.0865495,-0.865651][-0.0456967,-0.0372564,0.034767][0.168666,0.492032,0][-1.44711,-1.95117,-0.416354][-1.78853,-1.70267,-0.349761][0.115637,0.989008,0][-1.45095,-1.90245,-0.633891][-3.02135,0.8758,-1.02251][0.097807,0.984301,0][-1.45264,-1.902,-0.634672][3.03242,-0.874477,1.02648][0.097743,0.984258,0][-1.45264,-1.902,-0.634672][3.03242,-0.874477,1.02648][0.097743,0.984258,0][-1.44845,-1.95244,-0.416711][1.80238,1.66871,0.351524][0.115607,0.98913,0][-1.44711,-1.95117,-0.416354][-1.78853,-1.70267,-0.349761][0.115637,0.989008,0][-1.53999,-1.8949,-0.21537][-2.40996,1.16764,-0.124181][0.132128,0.98364,0][-1.44711,-1.95117,-0.416354][-1.78853,-1.70267,-0.349761][0.115637,0.989008,0][-1.44845,-1.95244,-0.416711][1.80238,1.66871,0.351524][0.115607,0.98913,0][-1.44845,-1.95244,-0.416711][1.80238,1.66871,0.351524][0.115607,0.98913,0][-1.54168,-1.89413,-0.215504][2.41848,-1.16726,0.125839][0.132117,0.983566,0][-1.53999,-1.8949,-0.21537][-2.40996,1.16764,-0.124181][0.132128,0.98364,0][0.00216621,1.01695,-1.55141][-1.43565,-0.615843,-0.156105][0.0663665,0.597906,0][0.0913505,0.825793,-1.61749][-1.80994,-0.84876,0.813872][0.071785,0.579566,0][0.0895901,0.825402,-1.61693][1.83021,0.823974,-0.730439][0.0717391,0.579528,0][0.0895901,0.825402,-1.61693][1.83021,0.823974,-0.730439][0.0717391,0.579528,0][0.0021643,1.01519,-1.55215][1.46429,0.614943,0.174513][0.0664264,0.597737,0][0.00216621,1.01695,-1.55141][-1.43565,-0.615843,-0.156105][0.0663665,0.597906,0][0.437242,-0.6423,-1.59037][-2.0823,1.82645,-1.1189][0.0695607,0.438712,0][0.268532,-0.888854,-1.6414][-1.32634,0.952462,-0.216854][0.0737457,0.415056,0][0.269022,-0.887057,-1.64129][1.34441,-0.96141,0.238876][0.0737368,0.415229,0][0.269022,-0.887057,-1.64129][1.34441,-0.96141,0.238876][0.0737368,0.415229,0][0.435959,-0.641187,-1.59127][2.00926,-1.81459,1.23834][0.0696348,0.438819,0][0.437242,-0.6423,-1.59037][-2.0823,1.82645,-1.1189][0.0695607,0.438712,0][0.268532,-0.888854,-1.6414][-1.32634,0.952462,-0.216854][0.0737457,0.415056,0][0.268532,-0.361262,-1.6414][0.101683,0,0.0166251][0.0737457,0.465676,0][0.26994,-0.362455,-1.64109][-0.106036,0.00019223,-0.0167984][0.0737199,0.465561,0][0.26994,-0.362455,-1.64109][-0.106036,0.00019223,-0.0167984][0.0737199,0.465561,0][0.269022,-0.887057,-1.64129][1.34441,-0.96141,0.238876][0.0737368,0.415229,0][0.268532,-0.888854,-1.6414][-1.32634,0.952462,-0.216854][0.0737457,0.415056,0][0.536644,-0.295171,-1.54575][0.513296,-2.83267,0.361967][0.0659022,0.472017,0][0.702797,-0.254214,-1.44423][0.2741,-1.42484,0.126226][0.0575772,0.475946,0][0.701399,-0.255193,-1.44511][-0.295649,1.45022,-0.119613][0.0576495,0.475852,0][0.701399,-0.255193,-1.44511][-0.295649,1.45022,-0.119613][0.0576495,0.475852,0][0.536979,-0.296988,-1.54545][-0.578224,2.81634,-0.217316][0.0658776,0.471842,0][0.536644,-0.295171,-1.54575][0.513296,-2.83267,0.361967][0.0659022,0.472017,0][0.940276,-0.675312,-1.22858][1.17553,-0.932138,0.894365][0.0398933,0.435544,0][1.16109,-0.0865493,-0.905183][0.101687,-0.391809,-0.91441][0.0133736,0.492032,0][1.16273,-0.0863862,-0.906193][-0.833988,-0.408639,-0.37078][0.0134564,0.492048,0][1.16273,-0.0863862,-0.906193][-0.833988,-0.408639,-0.37078][0.0134564,0.492048,0][0.941377,-0.674167,-1.22744][-1.20073,0.942928,-0.897898][0.0397993,0.435654,0][0.940276,-0.675312,-1.22858][1.17553,-0.932138,0.894365][0.0398933,0.435544,0][1.13165,-0.614142,-0.958774][-0.0207313,0.13443,-0.0157728][0.0177682,0.441413,0][0.940276,-0.675312,-1.22858][1.17553,-0.932138,0.894365][0.0398933,0.435544,0][0.941377,-0.674167,-1.22744][-1.20073,0.942928,-0.897898][0.0397993,0.435654,0][0.941377,-0.674167,-1.22744][-1.20073,0.942928,-0.897898][0.0397993,0.435654,0][1.13217,-0.612526,-0.957875][0.0197542,-0.13853,0.017696][0.0176945,0.441568,0][1.13165,-0.614142,-0.958774][-0.0207313,0.13443,-0.0157728][0.0177682,0.441413,0][-0.180811,-1.92016,-1.65226][1.57714,-0.0387675,-0.14409][0.104161,0.316109,0][-0.137263,-0.126777,-1.65812][-0.140813,-0.726713,-0.672354][0.103681,0.488173,0][-0.137155,-0.1261,-1.66015][-0.650623,-0.662822,0.370616][0.103514,0.488238,0][-0.137155,-0.1261,-1.66015][-0.650623,-0.662822,0.370616][0.103514,0.488238,0][-0.179631,-1.9216,-1.65238][-1.5701,0.037793,0.150066][0.104152,0.315971,0][-0.180811,-1.92016,-1.65226][1.57714,-0.0387675,-0.14409][0.104161,0.316109,0][-0.325633,-1.90225,-1.61829][-0.0387792,-0.329414,0.00832994][0.0718506,0.317827,0][-0.180811,-1.92016,-1.65226][1.57714,-0.0387675,-0.14409][0.074636,0.316109,0][-0.179631,-1.9216,-1.65238][-1.5701,0.037793,0.150066][0.0746458,0.315971,0][-0.179631,-1.9216,-1.65238][-1.5701,0.037793,0.150066][0.0746458,0.315971,0][-0.326973,-1.90349,-1.61783][0.0392327,0.332056,-0.00675139][0.0718132,0.317708,0][-0.325633,-1.90225,-1.61829][-0.0387792,-0.329414,0.00832994][0.0718506,0.317827,0][-0.388469,0.260971,-1.59204][-0.909879,1.28622,0.216544][0.0696981,0.525375,0][-0.325626,0.563767,-1.60578][0.165287,-0.0360494,-0.0384662][0.0708249,0.554426,0][-0.323912,0.563291,-1.60644][-0.171119,0.038182,0.0417106][0.0708787,0.554381,0][-0.323912,0.563291,-1.60644][-0.171119,0.038182,0.0417106][0.0708787,0.554381,0][-0.387567,0.262587,-1.59232][0.929803,-1.30569,-0.205394][0.0697208,0.52553,0][-0.388469,0.260971,-1.59204][-0.909879,1.28622,0.216544][0.0696981,0.525375,0][-0.680374,0.59738,-1.41985][-0.0475846,0.123473,0.0302966][0.12322,0.557651,0][-0.932128,0.409477,-1.18822][-1.79323,2.10434,0.226558][0.142214,0.539623,0][-0.933237,0.410933,-1.1878][1.79232,-2.09838,-0.220999][0.142249,0.539763,0][-0.933237,0.410933,-1.1878][1.79232,-2.09838,-0.220999][0.142249,0.539763,0][-0.681015,0.599054,-1.41924][0.0493325,-0.126776,-0.0300258][0.12327,0.557812,0][-0.680374,0.59738,-1.41985][-0.0475846,0.123473,0.0302966][0.12322,0.557651,0][0.724192,0.383126,-1.42662][-0.0320952,-0.205084,-0.125394][0.0561333,0.537095,0][0.9007,0.0791981,-1.27273][-0.434827,0.23491,-0.0396242][0.0435133,0.507935,0][0.899249,0.0793976,-1.27408][0.442111,-0.241031,0.0445222][0.0436242,0.507954,0][0.899249,0.0793976,-1.27408][0.442111,-0.241031,0.0445222][0.0436242,0.507954,0][0.722955,0.381744,-1.4264][0.0341838,0.209969,0.126442][0.0561146,0.536962,0][0.724192,0.383126,-1.42662][-0.0320952,-0.205084,-0.125394][0.0561333,0.537095,0][0.888396,0.469973,-1.27957][0.5622,1.29524,0.385139][0.0440743,0.545427,0][0.630722,0.636935,-1.47679][0.185628,0.463032,0.149463][0.060247,0.561446,0][0.631378,0.638611,-1.47622][-0.193205,-0.473503,-0.148436][0.0602001,0.561607,0][0.631378,0.638611,-1.47622][-0.193205,-0.473503,-0.148436][0.0602001,0.561607,0][0.889183,0.471525,-1.27878][-0.566807,-1.28535,-0.370825][0.0440098,0.545576,0][0.888396,0.469973,-1.27957][0.5622,1.29524,0.385139][0.0440743,0.545427,0][0.459408,0.876874,-1.51143][-1.50501,-1.61284,0.121968][0.162288,0.072256,0][0.51672,0.795535,-1.50987][-1.20156,-0.856904,-0.533631][0.156505,0.079852,0][0.516486,0.793749,-1.51043][1.19975,0.861582,0.543457][0.156335,0.0798823,0][0.516486,0.793749,-1.51043][1.19975,0.861582,0.543457][0.156335,0.0798823,0][0.458051,0.875609,-1.51121][1.49724,1.60678,-0.069556][0.162133,0.0721685,0][0.459408,0.876874,-1.51143][-1.50501,-1.61284,0.121968][0.162288,0.072256,0][0.426991,0.939864,-1.50304][0.588066,2.36533,0.144758][0.167112,0.0674682,0][0.459408,0.876874,-1.51143][-1.50501,-1.61284,0.121968][0.162288,0.072256,0][0.458051,0.875609,-1.51121][1.49724,1.60678,-0.069556][0.162133,0.0721685,0][0.458051,0.875609,-1.51121][1.49724,1.60678,-0.069556][0.162133,0.0721685,0][0.426357,0.94124,-1.50176][-0.594261,-2.34919,-0.108109][0.16722,0.0673703,0][0.426991,0.939864,-1.50304][0.588066,2.36533,0.144758][0.167112,0.0674682,0][0.231293,0.0250083,-1.65024][0.19195,-0.249806,-0.102155][0.0744706,0.502736,0][0.511223,0.136258,-1.55671][0.513474,-1.36962,0.149819][0.0668009,0.513409,0][0.512653,0.135175,-1.55611][-0.512003,1.36251,-0.139512][0.0667519,0.513305,0][0.512653,0.135175,-1.55611][-0.512003,1.36251,-0.139512][0.0667519,0.513305,0][0.231909,0.0232928,-1.64978][-0.198634,0.258665,0.105371][0.0744326,0.502571,0][0.231293,0.0250083,-1.65024][0.19195,-0.249806,-0.102155][0.0744706,0.502736,0][-0.25753,-0.888854,-1.6343][1.39157,1.02784,-0.227517][0.105634,0.415056,0][-0.691795,-0.254213,-1.42333][0.0530263,0.0391663,-0.00866961][0.122934,0.475946,0][-0.690514,-0.255304,-1.42427][-0.0547175,-0.0407824,0.00996068][0.122857,0.475841,0][-0.690514,-0.255304,-1.42427][-0.0547175,-0.0407824,0.00996068][0.122857,0.475841,0][-0.257893,-0.887026,-1.63422][-1.40237,-1.04522,0.255284][0.105641,0.415232,0][-0.25753,-0.888854,-1.6343][1.39157,1.02784,-0.227517][0.105634,0.415056,0][-0.691795,-0.254213,-1.42333][0.0530263,0.0391663,-0.00866961][0.0558631,0.475946,0][-0.25753,-0.361261,-1.6343][-0.412465,-1.80617,0.0674362][0.0731635,0.465676,0][-0.258909,-0.362489,-1.63399][0.429519,1.8111,-0.0416756][0.0731382,0.465558,0][-0.258909,-0.362489,-1.63399][0.429519,1.8111,-0.0416756][0.0731382,0.465558,0][-0.690514,-0.255304,-1.42427][-0.0547175,-0.0407824,0.00996068][0.0559403,0.475841,0][-0.691795,-0.254213,-1.42333][0.0530263,0.0391663,-0.00866961][0.0558631,0.475946,0][0.630722,0.636935,-1.47679][0.185628,0.463032,0.149463][0.060247,0.561446,0][0.326615,0.745343,-1.59585][-1.18814,-0.185801,0.564677][0.0700104,0.571847,0][0.325628,0.746817,-1.59518][1.18639,0.177215,-0.555138][0.069955,0.571989,0][0.325628,0.746817,-1.59518][1.18639,0.177215,-0.555138][0.069955,0.571989,0][0.631378,0.638611,-1.47622][-0.193205,-0.473503,-0.148436][0.0602001,0.561607,0][0.630722,0.636935,-1.47679][0.185628,0.463032,0.149463][0.060247,0.561446,0][-0.198775,0.872418,-1.58388][-1.81289,0.169619,-0.0256722][0.0690288,0.584039,0][-0.0471455,0.514102,-1.6614][-1.41572,-0.668955,0.0314588][0.0753857,0.549661,0][-0.0489483,0.514567,-1.66127][1.42295,0.671789,-0.0106998][0.0753746,0.549706,0][-0.0489483,0.514567,-1.66127][1.42295,0.671789,-0.0106998][0.0753746,0.549706,0][-0.200617,0.872341,-1.58355][1.7957,-0.170201,0.0338176][0.0690015,0.584032,0][-0.198775,0.872418,-1.58388][-1.81289,0.169619,-0.0256722][0.0690288,0.584039,0][1.16109,-0.0865493,-0.905183][0.101687,-0.391809,-0.91441][0.0133736,0.492032,0][0.954997,-0.0941957,-1.21204][-0.0330391,1.89924,-0.0251369][0.0385365,0.491299,0][0.956256,-0.0933958,-1.21073][0.00782082,-1.91823,0.0388505][0.038429,0.491376,0][0.956256,-0.0933958,-1.21073][0.00782082,-1.91823,0.0388505][0.038429,0.491376,0][1.16273,-0.0863862,-0.906193][-0.833988,-0.408639,-0.37078][0.0134564,0.492048,0][1.16109,-0.0865493,-0.905183][0.101687,-0.391809,-0.91441][0.0133736,0.492032,0][0.954997,-0.0941957,-1.21204][-0.0330391,1.89924,-0.0251369][0.0385365,0.491299,0][1.10957,0.127546,-0.99768][0.0722469,-0.103497,0.054967][0.0209586,0.512574,0][1.11075,0.127292,-0.996016][-0.0747673,0.106877,-0.0560552][0.0208222,0.512549,0][1.11075,0.127292,-0.996016][-0.0747673,0.106877,-0.0560552][0.0208222,0.512549,0][0.956256,-0.0933958,-1.21073][0.00782082,-1.91823,0.0388505][0.038429,0.491376,0][0.954997,-0.0941957,-1.21204][-0.0330391,1.89924,-0.0251369][0.0385365,0.491299,0][0.308734,0.233875,-1.63068][-0.954936,-1.28085,-0.161664][0.0728668,0.522775,0][0.0163865,0.0869783,-1.6702][0.217759,0.502838,-0.216864][0.0761077,0.508681,0][0.0164048,0.0888438,-1.6702][-0.222821,-0.516844,0.221334][0.0761076,0.50886,0][0.0164048,0.0888438,-1.6702][-0.222821,-0.516844,0.221334][0.0761076,0.50886,0][0.306913,0.234023,-1.63112][0.962852,1.29841,0.184984][0.072903,0.522789,0][0.308734,0.233875,-1.63068][-0.954936,-1.28085,-0.161664][0.0728668,0.522775,0][-0.548339,0.136258,-1.51608][-0.0593493,-0.158231,0.00915801][0.0634692,0.513409,0][-0.294815,0.0348555,-1.62512][-0.704353,-1.17303,0.099842][0.0724108,0.50368,0][-0.295616,0.0331757,-1.62497][0.705837,1.17256,-0.0855443][0.0723981,0.503519,0][-0.295616,0.0331757,-1.62497][0.705837,1.17256,-0.0855443][0.0723981,0.503519,0][-0.549727,0.135166,-1.51538][0.0616908,0.161862,-0.00759193][0.0634116,0.513305,0][-0.548339,0.136258,-1.51608][-0.0593493,-0.158231,0.00915801][0.0634692,0.513409,0][-0.884789,0.0153021,-1.24535][0.692488,0.414005,-0.408604][0.137529,0.501804,0][-0.937816,0.0791981,-1.18486][0.689644,1.1512,-0.611403][0.14249,0.507935,0][-0.936514,0.079422,-1.1864][-0.67608,-1.16891,0.629999][0.142363,0.507956,0][-0.936514,0.079422,-1.1864][-0.67608,-1.16891,0.629999][0.142363,0.507956,0][-0.883828,0.0165256,-1.24656][-0.693301,-0.417551,0.419568][0.13743,0.501922,0][-0.884789,0.0153021,-1.24535][0.692488,0.414005,-0.408604][0.137529,0.501804,0][-0.937816,0.0791981,-1.18486][0.689644,1.1512,-0.611403][0.14249,0.507935,0][-0.820355,0.320185,-1.30974][1.54728,-1.15837,-0.780014][0.132249,0.531056,0][-0.819225,0.318933,-1.31067][-1.51541,1.16099,0.80734][0.132173,0.530936,0][-0.819225,0.318933,-1.31067][-1.51541,1.16099,0.80734][0.132173,0.530936,0][-0.936514,0.079422,-1.1864][-0.67608,-1.16891,0.629999][0.142363,0.507956,0][-0.937816,0.0791981,-1.18486][0.689644,1.1512,-0.611403][0.14249,0.507935,0][0.298342,-1.8989,-1.63614][1.51348,0.0110563,0.242604][0.0733143,0.318149,0][0.292558,-1.14174,-1.63562][0.0865752,-0.0645411,0.0248592][0.0732716,0.390794,0][0.294298,-1.14232,-1.63522][-0.0892706,0.066277,-0.0247357][0.0732391,0.390738,0][0.294298,-1.14232,-1.63522][-0.0892706,0.066277,-0.0247357][0.0732391,0.390738,0][0.299723,-1.90012,-1.63578][-1.50813,-0.0109499,-0.233677][0.0732849,0.318032,0][0.298342,-1.8989,-1.63614][1.51348,0.0110563,0.242604][0.0733143,0.318149,0][0.143695,-1.92016,-1.66341][0.0423288,-0.330419,0.0175369][0.0755502,0.316109,0][0.298342,-1.8989,-1.63614][1.51348,0.0110563,0.242604][0.0733143,0.318149,0][0.299723,-1.90012,-1.63578][-1.50813,-0.0109499,-0.233677][0.0732849,0.318032,0][0.299723,-1.90012,-1.63578][-1.50813,-0.0109499,-0.233677][0.0732849,0.318032,0][0.1425,-1.92159,-1.66353][-0.0427129,0.333413,-0.0159563][0.0755608,0.315972,0][0.143695,-1.92016,-1.66341][0.0423288,-0.330419,0.0175369][0.0755502,0.316109,0][-0.182354,-0.00790024,-1.69001][-0.559181,0.0740068,-3.3287][0.0115377,0.802371,0][0,-0.138337,-1.7063][0.00635774,0.0606179,-1.8934][0.0101789,0.814883,0][5.45281e-006,-0.138286,-1.70848][-0.0063484,-0.0607006,1.89467][0.01,0.814878,0][5.45281e-006,-0.138286,-1.70848][-0.0063484,-0.0607006,1.89467][0.01,0.814878,0][-0.18262,-0.00786519,-1.69217][0.559162,-0.0741016,3.32826][0.0113606,0.802367,0][-0.182354,-0.00790024,-1.69001][-0.559181,0.0740068,-3.3287][0.0115377,0.802371,0][0.702797,-0.254214,-1.44423][0.2741,-1.42484,0.126226][0.0575772,0.475946,0][0.437242,-0.6423,-1.59037][-2.0823,1.82645,-1.1189][0.0695607,0.438712,0][0.435959,-0.641187,-1.59127][2.00926,-1.81459,1.23834][0.0696348,0.438819,0][0.435959,-0.641187,-1.59127][2.00926,-1.81459,1.23834][0.0696348,0.438819,0][0.701399,-0.255193,-1.44511][-0.295649,1.45022,-0.119613][0.0576495,0.475852,0][0.702797,-0.254214,-1.44423][0.2741,-1.42484,0.126226][0.0575772,0.475946,0][0.00216625,0.642283,-1.65483][-0.332497,0.181131,-0.0960264][0.0748472,0.561959,0][-0.0870179,0.825793,-1.61532][0.224546,0.108926,0.000936167][0.0716068,0.579566,0][-0.08516,0.825654,-1.61543][-0.232973,-0.112569,0.00184402][0.0716162,0.579553,0][-0.08516,0.825654,-1.61543][-0.232973,-0.112569,0.00184402][0.0716162,0.579553,0][0.00223007,0.644148,-1.65481][0.349755,-0.189396,0.0996408][0.0748452,0.562138,0][0.00216625,0.642283,-1.65483][-0.332497,0.181131,-0.0960264][0.0748472,0.561959,0][-0.54924,0.519684,-1.50925][0.767173,-1.45125,-0.326148][0.0629087,0.550197,0][-0.428148,0.540443,-1.56858][-1.38901,0.805012,0.458839][0.0677738,0.552188,0][-0.429598,0.539363,-1.56804][1.41204,-0.821415,-0.448323][0.0677299,0.552085,0][-0.429598,0.539363,-1.56804][1.41204,-0.821415,-0.448323][0.0677299,0.552085,0][-0.548675,0.517935,-1.50962][-0.75142,1.45028,0.346032][0.0629394,0.550029,0][-0.54924,0.519684,-1.50925][0.767173,-1.45125,-0.326148][0.0629087,0.550197,0][-0.59247,-0.686272,-1.49181][-0.0793306,-0.0530488,0.018353][0.0614786,0.434493,0][-0.31703,-1.14174,-1.61773][-1.37232,-0.917678,0.317484][0.0718043,0.390794,0][-0.318757,-1.14226,-1.61718][1.38192,0.918104,-0.298015][0.0717595,0.390743,0][-0.318757,-1.14226,-1.61718][1.38192,0.918104,-0.298015][0.0717595,0.390743,0][-0.593759,-0.687313,-1.4908][0.0822221,0.0546257,-0.0177314][0.0613963,0.434393,0][-0.59247,-0.686272,-1.49181][-0.0793306,-0.0530488,0.018353][0.0614786,0.434493,0][-0.31703,-1.14174,-1.61773][-1.37232,-0.917678,0.317484][0.0718043,0.390794,0][-0.325633,-1.90225,-1.61829][-0.0387792,-0.329414,0.00832994][0.0718506,0.317827,0][-0.326973,-1.90349,-1.61783][0.0392327,0.332056,-0.00675139][0.0718132,0.317708,0][-0.326973,-1.90349,-1.61783][0.0392327,0.332056,-0.00675139][0.0718132,0.317708,0][-0.318757,-1.14226,-1.61718][1.38192,0.918104,-0.298015][0.0717595,0.390743,0][-0.31703,-1.14174,-1.61773][-1.37232,-0.917678,0.317484][0.0718043,0.390794,0][1.10957,0.127546,-0.99768][0.0722469,-0.103497,0.054967][0.0209586,0.512574,0][1.04556,0.286451,-1.09473][2.28532,1.37186,-0.15253][0.0289171,0.527819,0][1.04713,0.287471,-1.0947][-2.2889,-1.36327,0.161969][0.0289146,0.527917,0][1.04713,0.287471,-1.0947][-2.2889,-1.36327,0.161969][0.0289146,0.527917,0][1.11075,0.127292,-0.996016][-0.0747673,0.106877,-0.0560552][0.0208222,0.512549,0][1.10957,0.127546,-0.99768][0.0722469,-0.103497,0.054967][0.0209586,0.512574,0][-0.893916,-1.1568,-1.23571][2.15437,-0.918374,-0.541168][0.047939,0.183921,0][-0.823787,-0.949254,-1.30874][-0.960982,-0.24708,-0.124362][0.0615595,0.168209,0][-0.824535,-0.948826,-1.31067][-0.302198,-0.35721,0.883786][0.0617211,0.168237,0][-0.824535,-0.948826,-1.31067][-0.302198,-0.35721,0.883786][0.0617211,0.168237,0][-0.892309,-1.15736,-1.2366][-2.10751,0.908192,0.628539][0.047983,0.184,0][-0.893916,-1.1568,-1.23571][2.15437,-0.918374,-0.541168][0.047939,0.183921,0][-0.874601,-1.51324,-1.27528][-0.0584025,-0.0724345,0.0602609][0.0368884,0.216447,0][-0.893916,-1.1568,-1.23571][2.15437,-0.918374,-0.541168][0.047939,0.183921,0][-0.892309,-1.15736,-1.2366][-2.10751,0.908192,0.628539][0.047983,0.184,0][-0.892309,-1.15736,-1.2366][-2.10751,0.908192,0.628539][0.047983,0.184,0][-0.874299,-1.51499,-1.27594][0.0606326,0.0744063,-0.0608155][0.0368687,0.216623,0][-0.874601,-1.51324,-1.27528][-0.0584025,-0.0724345,0.0602609][0.0368884,0.216447,0][-1.13312,-0.751775,-0.881632][-0.194207,-1.49663,0.285439][0.167355,0.428208,0][-0.787176,-0.889408,-1.34384][-0.395155,-1.85449,0.256462][0.129453,0.415003,0][-0.78661,-0.891133,-1.34434][0.407154,1.8499,-0.246687][0.129411,0.414838,0][-0.78661,-0.891133,-1.34434][0.407154,1.8499,-0.246687][0.129411,0.414838,0][-1.13391,-0.752779,-0.880045][0.201245,1.48895,-0.277785][0.167485,0.428112,0][-1.13312,-0.751775,-0.881632][-0.194207,-1.49663,0.285439][0.167355,0.428208,0][-1.11104,-0.614142,-0.922754][0.165222,1.46069,-0.203577][0.163983,0.441413,0][-1.13312,-0.751775,-0.881632][-0.194207,-1.49663,0.285439][0.167355,0.428208,0][-1.13391,-0.752779,-0.880045][0.201245,1.48895,-0.277785][0.167485,0.428112,0][-1.13391,-0.752779,-0.880045][0.201245,1.48895,-0.277785][0.167485,0.428112,0][-1.11155,-0.612522,-0.921854][-0.158783,-1.4541,0.209508][0.164057,0.441569,0][-1.11104,-0.614142,-0.922754][0.165222,1.46069,-0.203577][0.163983,0.441413,0][-0.47587,0.795535,-1.51007][0.140193,-0.162973,-0.0818732][0.165158,0.284478,0][-0.312782,0.944623,-1.52758][1.02134,-1.1873,-0.596466][0.161808,0.269126,0][-0.311141,0.9455,-1.52774][-1.02229,1.17635,0.594713][0.161773,0.268972,0][-0.311141,0.9455,-1.52774][-1.02229,1.17635,0.594713][0.161773,0.268972,0][-0.475813,0.793724,-1.51059][-0.142711,0.164218,0.0830215][0.165197,0.28446,0][-0.47587,0.795535,-1.51007][0.140193,-0.162973,-0.0818732][0.165158,0.284478,0][-0.312782,0.944623,-1.52758][1.02134,-1.1873,-0.596466][0.161808,0.269126,0][-0.59269,0.869279,-1.42011][-0.0214507,0.152836,0.0512812][0.161504,0.297389,0][-0.59429,0.869537,-1.41903][0.0218206,-0.155108,-0.0515518][0.161466,0.297562,0][-0.59429,0.869537,-1.41903][0.0218206,-0.155108,-0.0515518][0.161466,0.297562,0][-0.311141,0.9455,-1.52774][-1.02229,1.17635,0.594713][0.161773,0.268972,0][-0.312782,0.944623,-1.52758][1.02134,-1.1873,-0.596466][0.161808,0.269126,0][-0.85342,-0.254767,-1.28033][0.68849,-0.967541,1.88716][0.134661,0.475893,0][-0.59247,-0.686272,-1.49181][-0.0793306,-0.0530488,0.018353][0.117319,0.434493,0][-0.593759,-0.687313,-1.4908][0.0822221,0.0546257,-0.0177314][0.117401,0.434393,0][-0.593759,-0.687313,-1.4908][0.0822221,0.0546257,-0.0177314][0.117401,0.434393,0][-0.85307,-0.255798,-1.27855][-0.59816,1.02678,-1.87115][0.134806,0.475794,0][-0.85342,-0.254767,-1.28033][0.68849,-0.967541,1.88716][0.134661,0.475893,0][-0.548077,0.302959,-1.51497][-0.158988,0.0921429,0.0525194][0.0633781,0.529403,0][-0.548339,0.136258,-1.51608][-0.0593493,-0.158231,0.00915801][0.0634692,0.513409,0][-0.549727,0.135166,-1.51538][0.0616908,0.161862,-0.00759193][0.0634116,0.513305,0][-0.549727,0.135166,-1.51538][0.0616908,0.161862,-0.00759193][0.0634116,0.513305,0][-0.549728,0.303423,-1.51411][0.165005,-0.0959871,-0.0523891][0.0633078,0.529448,0][-0.548077,0.302959,-1.51497][-0.158988,0.0921429,0.0525194][0.0633781,0.529403,0][0.234772,-0.223823,-1.64956][0.467786,0.490669,-0.201428][0.0744144,0.478862,0][0.100148,-0.126777,-1.6668][0.960832,1.33844,0.0313003][0.0758286,0.488173,0][0.0993363,-0.125097,-1.66684][-0.953846,-1.33896,-0.0255489][0.0758316,0.488334,0][0.0993363,-0.125097,-1.66684][-0.953846,-1.33896,-0.0255489][0.0758316,0.488334,0][0.234853,-0.221971,-1.64931][-0.478349,-0.507031,0.202907][0.0743945,0.47904,0][0.234772,-0.223823,-1.64956][0.467786,0.490669,-0.201428][0.0744144,0.478862,0][0.785834,-0.151484,-1.3798][-0.318033,0.171813,-0.0289812][0.0522933,0.485802,0][0.553043,-0.15992,-1.53656][0.787629,2.51992,-1.30523][0.0651483,0.484993,0][0.553435,-0.158301,-1.53754][-0.811092,-2.50105,1.32796][0.065229,0.485148,0][0.553435,-0.158301,-1.53754][-0.811092,-2.50105,1.32796][0.065229,0.485148,0][0.784927,-0.149938,-1.3804][0.323135,-0.176168,0.032541][0.0523429,0.485951,0][0.785834,-0.151484,-1.3798][-0.318033,0.171813,-0.0289812][0.0522933,0.485802,0][0.553043,-0.15992,-1.53656][0.787629,2.51992,-1.30523][0.0651483,0.484993,0][0.234772,-0.223823,-1.64956][0.467786,0.490669,-0.201428][0.0744144,0.478862,0][0.234853,-0.221971,-1.64931][-0.478349,-0.507031,0.202907][0.0743945,0.47904,0][0.234853,-0.221971,-1.64931][-0.478349,-0.507031,0.202907][0.0743945,0.47904,0][0.553435,-0.158301,-1.53754][-0.811092,-2.50105,1.32796][0.065229,0.485148,0][0.553043,-0.15992,-1.53656][0.787629,2.51992,-1.30523][0.0651483,0.484993,0][-0.139449,1.02832,-1.53355][-0.165414,0.210492,0.0913073][0.0649013,0.598997,0][-0.198775,0.872418,-1.58388][-1.81289,0.169619,-0.0256722][0.0690288,0.584039,0][-0.200617,0.872341,-1.58355][1.7957,-0.170201,0.0338176][0.0690015,0.584032,0][-0.200617,0.872341,-1.58355][1.7957,-0.170201,0.0338176][0.0690015,0.584032,0][-0.14078,1.02962,-1.53342][0.168463,-0.21561,-0.0912978][0.064891,0.599122,0][-0.139449,1.02832,-1.53355][-0.165414,0.210492,0.0913073][0.0649013,0.598997,0][0.627881,-1.78759,1.30145][1.93259,1.04121,2.37078][0.256531,0.973574,0][0.46603,-1.84364,1.4756][0.945553,1.20764,2.1402][0.270802,0.978978,0][0.466651,-1.84287,1.47745][-0.946507,-1.20877,-2.14106][0.270954,0.978905,0][0.466651,-1.84287,1.47745][-0.946507,-1.20877,-2.14106][0.270954,0.978905,0][0.628911,-1.78704,1.30316][-1.93143,-1.04055,-2.37011][0.256671,0.973521,0][0.627881,-1.78759,1.30145][1.93259,1.04121,2.37078][0.256531,0.973574,0][-0.224189,-0.213192,-1.64235][0.249334,1.69813,0.141983][0.0738238,0.479882,0][-0.496243,-0.174527,-1.54575][0.00609616,0.126989,-0.00395649][0.0659022,0.483592,0][-0.496077,-0.17267,-1.54583][-0.00511773,-0.131381,0.00560248][0.0659087,0.48377,0][-0.496077,-0.17267,-1.54583][-0.00511773,-0.131381,0.00560248][0.0659087,0.48377,0][-0.22464,-0.211389,-1.64217][-0.241451,-1.70237,-0.115187][0.0738089,0.480055,0][-0.224189,-0.213192,-1.64235][0.249334,1.69813,0.141983][0.0738238,0.479882,0][-0.137263,-0.126777,-1.65812][-0.140813,-0.726713,-0.672354][0.0751168,0.488173,0][-0.224189,-0.213192,-1.64235][0.249334,1.69813,0.141983][0.0738238,0.479882,0][-0.22464,-0.211389,-1.64217][-0.241451,-1.70237,-0.115187][0.0738089,0.480055,0][-0.22464,-0.211389,-1.64217][-0.241451,-1.70237,-0.115187][0.0738089,0.480055,0][-0.137155,-0.1261,-1.66015][-0.650623,-0.662822,0.370616][0.0752833,0.488238,0][-0.137263,-0.126777,-1.65812][-0.140813,-0.726713,-0.672354][0.0751168,0.488173,0][-0.0870179,0.825793,-1.61532][0.224546,0.108926,0.000936167][0.0716068,0.579566,0][0.00216621,1.01695,-1.55141][-1.43565,-0.615843,-0.156105][0.0663665,0.597906,0][0.0021643,1.01519,-1.55215][1.46429,0.614943,0.174513][0.0664264,0.597737,0][0.0021643,1.01519,-1.55215][1.46429,0.614943,0.174513][0.0664264,0.597737,0][-0.08516,0.825654,-1.61543][-0.232973,-0.112569,0.00184402][0.0716162,0.579553,0][-0.0870179,0.825793,-1.61532][0.224546,0.108926,0.000936167][0.0716068,0.579566,0][-0.667848,-0.153423,-1.48499][-1.65244,0.0142631,-2.48172][0.0283243,0.816364,0][-0.83563,-0.151484,-1.34036][-2.95217,-0.0374501,-2.9802][0.0401849,0.8162,0][-0.836837,-0.151499,-1.34203][2.95151,0.0375536,2.97968][0.0400484,0.816201,0][-0.836837,-0.151499,-1.34203][2.95151,0.0375536,2.97968][0.0400484,0.816201,0][-0.668774,-0.153416,-1.48689][1.65246,-0.0142481,2.4818][0.028169,0.816363,0][-0.667848,-0.153423,-1.48499][-1.65244,0.0142631,-2.48172][0.0283243,0.816364,0][-0.018558,-0.138337,-1.66878][0.909801,-1.38825,-0.0296382][0.0759912,0.487064,0][0.231293,0.0250083,-1.65024][0.19195,-0.249806,-0.102155][0.0744706,0.502736,0][0.231909,0.0232928,-1.64978][-0.198634,0.258665,0.105371][0.0744326,0.502571,0][0.231909,0.0232928,-1.64978][-0.198634,0.258665,0.105371][0.0744326,0.502571,0][-0.0185359,-0.140203,-1.66878][-0.908049,1.38638,0.0394794][0.0759913,0.486885,0][-0.018558,-0.138337,-1.66878][0.909801,-1.38825,-0.0296382][0.0759912,0.487064,0][-0.294815,0.0348555,-1.62512][-0.704353,-1.17303,0.099842][0.0724108,0.50368,0][-0.018558,-0.138337,-1.66878][0.909801,-1.38825,-0.0296382][0.0759912,0.487064,0][-0.0185359,-0.140203,-1.66878][-0.908049,1.38638,0.0394794][0.0759913,0.486885,0][-0.0185359,-0.140203,-1.66878][-0.908049,1.38638,0.0394794][0.0759913,0.486885,0][-0.295616,0.0331757,-1.62497][0.705837,1.17256,-0.0855443][0.0723981,0.503519,0][-0.294815,0.0348555,-1.62512][-0.704353,-1.17303,0.099842][0.0724108,0.50368,0][-0.25753,-0.361261,-1.6343][-0.412465,-1.80617,0.0674362][0.0731635,0.465676,0][-0.25753,-0.888854,-1.6343][1.39157,1.02784,-0.227517][0.0731635,0.415056,0][-0.257893,-0.887026,-1.63422][-1.40237,-1.04522,0.255284][0.0731568,0.415232,0][-0.257893,-0.887026,-1.63422][-1.40237,-1.04522,0.255284][0.0731568,0.415232,0][-0.258909,-0.362489,-1.63399][0.429519,1.8111,-0.0416756][0.0731382,0.465558,0][-0.25753,-0.361261,-1.6343][-0.412465,-1.80617,0.0674362][0.0731635,0.465676,0][0.344424,0.582217,-1.61205][-0.409955,-0.0641087,0.194836][0.0713391,0.556196,0][0.409081,0.260971,-1.59882][0.83451,1.20657,0.198732][0.0702537,0.525375,0][0.40807,0.262538,-1.59888][-0.850486,-1.2232,-0.18646][0.0702589,0.525525,0][0.40807,0.262538,-1.59888][-0.850486,-1.2232,-0.18646][0.0702589,0.525525,0][0.34269,0.581846,-1.61138][0.418378,0.0624941,-0.195767][0.0712835,0.556161,0][0.344424,0.582217,-1.61205][-0.409955,-0.0641087,0.194836][0.0713391,0.556196,0][-0.820355,0.320185,-1.30974][1.54728,-1.15837,-0.780014][0.132249,0.531056,0][-0.54924,0.519684,-1.50925][0.767173,-1.45125,-0.326148][0.115889,0.550197,0][-0.548675,0.517935,-1.50962][-0.75142,1.45028,0.346032][0.115858,0.550029,0][-0.548675,0.517935,-1.50962][-0.75142,1.45028,0.346032][0.115858,0.550029,0][-0.819225,0.318933,-1.31067][-1.51541,1.16099,0.80734][0.132173,0.530936,0][-0.820355,0.320185,-1.30974][1.54728,-1.15837,-0.780014][0.132249,0.531056,0][1.3695,-1.75141,0.244967][2.7948,1.47213,0.711385][0.169903,0.969943,0][1.13606,-1.71132,0.681109][2.63112,0.979469,1.59478][0.205675,0.966162,0][1.13752,-1.71078,0.682316][-2.63041,-0.979403,-1.59417][0.205774,0.96611,0][1.13752,-1.71078,0.682316][-2.63041,-0.979403,-1.59417][0.205774,0.96611,0][1.3711,-1.75056,0.245521][-2.79523,-1.47268,-0.711299][0.169948,0.969862,0][1.3695,-1.75141,0.244967][2.7948,1.47213,0.711385][0.169903,0.969943,0][-0.59269,0.869279,-1.42011][-0.0214507,0.152836,0.0512812][0.161504,0.297389,0][-0.47587,0.795535,-1.51007][0.140193,-0.162973,-0.0818732][0.165158,0.284478,0][-0.475813,0.793724,-1.51059][-0.142711,0.164218,0.0830215][0.165197,0.28446,0][-0.475813,0.793724,-1.51059][-0.142711,0.164218,0.0830215][0.165197,0.28446,0][-0.59429,0.869537,-1.41903][0.0218206,-0.155108,-0.0515518][0.161466,0.297562,0][-0.59269,0.869279,-1.42011][-0.0214507,0.152836,0.0512812][0.161504,0.297389,0][-0.934385,-0.0941957,-1.18973][-0.841674,-1.35491,0.748916][0.14209,0.491299,0][-1.14048,-0.0865495,-0.865651][-0.0456967,-0.0372564,0.034767][0.168666,0.492032,0][-1.1413,-0.0855916,-0.864044][0.0475226,0.0384456,-0.0356107][0.168797,0.492124,0][-1.1413,-0.0855916,-0.864044][0.0475226,0.0384456,-0.0356107][0.168797,0.492124,0][-0.935565,-0.0934324,-1.1883][0.865912,1.3798,-0.750208][0.142208,0.491372,0][-0.934385,-0.0941957,-1.18973][-0.841674,-1.35491,0.748916][0.14209,0.491299,0][0.807788,-0.889408,-1.36198][0.410856,-1.82196,0.225708][0.0508322,0.415003,0][1.15373,-0.751775,-0.91858][0.23255,-1.50762,0.286535][0.0144722,0.428208,0][1.15463,-0.752755,-0.917054][-0.239208,1.50202,-0.280132][0.014347,0.428114,0][1.15463,-0.752755,-0.917054][-0.239208,1.50202,-0.280132][0.014347,0.428114,0][0.80721,-0.891144,-1.3624][-0.419384,1.81476,-0.216942][0.0508672,0.414837,0][0.807788,-0.889408,-1.36198][0.410856,-1.82196,0.225708][0.0508322,0.415003,0][-0.325626,0.563767,-1.60578][0.165287,-0.0360494,-0.0384662][0.0708249,0.554426,0][-0.267749,0.723681,-1.60485][1.19793,-0.467832,-0.256897][0.0707485,0.569769,0][-0.26611,0.724549,-1.60509][-1.18577,0.461533,0.260238][0.0707679,0.569852,0][-0.26611,0.724549,-1.60509][-1.18577,0.461533,0.260238][0.0707679,0.569852,0][-0.323912,0.563291,-1.60644][-0.171119,0.038182,0.0417106][0.0708787,0.554381,0][-0.325626,0.563767,-1.60578][0.165287,-0.0360494,-0.0384662][0.0708249,0.554426,0][1.15373,-0.751775,-0.91858][0.23255,-1.50762,0.286535][0.0144722,0.428208,0][1.13165,-0.614142,-0.958774][-0.0207313,0.13443,-0.0157728][0.0177682,0.441413,0][1.13217,-0.612526,-0.957875][0.0197542,-0.13853,0.017696][0.0176945,0.441568,0][1.13217,-0.612526,-0.957875][0.0197542,-0.13853,0.017696][0.0176945,0.441568,0][1.15463,-0.752755,-0.917054][-0.239208,1.50202,-0.280132][0.014347,0.428114,0][1.15373,-0.751775,-0.91858][0.23255,-1.50762,0.286535][0.0144722,0.428208,0][-1.1074,-1.7113,0.724028][-2.55656,1.33606,1.40643][0.209194,0.966167,0][-1.3695,-1.75141,0.244966][-2.80691,1.44126,0.724182][0.169903,0.969943,0][-1.3711,-1.75058,0.245532][2.80661,-1.44171,-0.723883][0.169949,0.969863,0][-1.3711,-1.75058,0.245532][2.80661,-1.44171,-0.723883][0.169949,0.969863,0][-1.10884,-1.71055,0.725112][2.55621,-1.33775,-1.40567][0.209283,0.966095,0][-1.1074,-1.7113,0.724028][-2.55656,1.33606,1.40643][0.209194,0.966167,0][0.550355,0.136258,-1.55786][0.658674,0.0199167,-1.83386][0.298445,0.845377,0][0.553101,0.290041,-1.55428][0.926427,0.0406548,-2.45303][0.29929,0.86011,0][0.553674,0.290066,-1.55636][-0.925983,-0.0406657,2.45328][0.29912,0.860119,0][0.553674,0.290066,-1.55636][-0.925983,-0.0406657,2.45328][0.29912,0.860119,0][0.550903,0.136275,-1.55995][-0.658398,-0.0199783,1.83372][0.298274,0.845385,0][0.550355,0.136258,-1.55786][0.658674,0.0199167,-1.83386][0.298445,0.845377,0][0.553101,0.290041,-1.55428][0.926427,0.0406548,-2.45303][0.29929,0.86011,0][0.425497,0.540444,-1.59832][1.57668,0.977978,-4.85774][0.296578,0.884253,0][0.425993,0.540753,-1.60039][-1.57577,-0.977867,4.85647][0.296409,0.884289,0][0.425993,0.540753,-1.60039][-1.57577,-0.977867,4.85647][0.296409,0.884289,0][0.553674,0.290066,-1.55636][-0.925983,-0.0406657,2.45328][0.29912,0.860119,0][0.553101,0.290041,-1.55428][0.926427,0.0406548,-2.45303][0.29929,0.86011,0][1.15723,-1.95055,-1.09173][2.56359,-0.0105732,-1.83025][0.0602544,0.988846,0][1.37447,-1.96031,-0.687927][1.73107,-1.38728,-0.964807][0.0933655,0.989844,0][1.37577,-1.96135,-0.688917][-1.73429,1.36371,0.967883][0.0932841,0.989943,0][1.37577,-1.96135,-0.688917][-1.73429,1.36371,0.967883][0.0932841,0.989943,0][1.15866,-1.95057,-1.09313][-2.56491,0.00868478,1.83079][0.0601395,0.988848,0][1.15723,-1.95055,-1.09173][2.56359,-0.0105732,-1.83025][0.0602544,0.988846,0][1.37447,-1.96031,-0.687927][1.73107,-1.38728,-0.964807][0.0933655,0.989844,0][1.45096,-1.90245,-0.633891][3.12732,0.825249,-1.24073][0.0978069,0.984301,0][1.45261,-1.90205,-0.634775][-3.14117,-0.824124,1.24725][0.0977345,0.984262,0][1.45261,-1.90205,-0.634775][-3.14117,-0.824124,1.24725][0.0977345,0.984262,0][1.37577,-1.96135,-0.688917][-1.73429,1.36371,0.967883][0.0932841,0.989943,0][1.37447,-1.96031,-0.687927][1.73107,-1.38728,-0.964807][0.0933655,0.989844,0][-1.08768,-1.95055,-1.18364][-2.22337,0.106328,-2.14946][0.0527176,0.988833,0][-0.54738,-1.95055,-1.5928][-1.35396,0.0188586,-2.76505][0.0191653,0.988771,0][-0.548107,-1.95054,-1.59481][1.35401,-0.0187908,2.76504][0.0190005,0.988769,0][-0.548107,-1.95054,-1.59481][1.35401,-0.0187908,2.76504][0.0190005,0.988769,0][-1.08892,-1.9505,-1.18526][2.22472,-0.106432,2.15013][0.0525842,0.988827,0][-1.08768,-1.95055,-1.18364][-2.22337,0.106328,-2.14946][0.0527176,0.988833,0][1.09776,-1.09956,-1.01646][0.161917,-0.310894,0.360144][0.16866,0.363967,0][1.16914,-0.811621,-0.890524][0.250818,-0.460219,-0.851639][0.167918,0.334483,0][1.17083,-0.811179,-0.891297][-0.727896,-0.536326,-0.427227][0.167844,0.334467,0][1.17083,-0.811179,-0.891297][-0.727896,-0.536326,-0.427227][0.167844,0.334467,0][1.09892,-1.10037,-1.01504][-0.16748,0.316428,-0.362223][0.168797,0.363995,0][1.09776,-1.09956,-1.01646][0.161917,-0.310894,0.360144][0.16866,0.363967,0][-0.787176,-0.889408,-1.34384][-0.395155,-1.85449,0.256462][0.129453,0.415003,0][-0.735653,-0.751776,-1.38773][0.0623177,0.0414511,-0.0474131][0.125853,0.428208,0][-0.735864,-0.751608,-1.38989][-0.0636562,-0.0430736,0.0503315][0.125676,0.428224,0][-0.735864,-0.751608,-1.38989][-0.0636562,-0.0430736,0.0503315][0.125676,0.428224,0][-0.78661,-0.891133,-1.34434][0.407154,1.8499,-0.246687][0.129411,0.414838,0][-0.787176,-0.889408,-1.34384][-0.395155,-1.85449,0.256462][0.129453,0.415003,0][0.157911,-0.171166,-1.69365][0.159581,0.00084,-0.945383][0.0112104,0.818035,0][0.140038,-1.95055,-1.69825][0.326341,-0.00174545,-1.52593][0.0105178,0.988755,0][0.140374,-1.95055,-1.7004][-0.326463,0.00174575,1.52574][0.0103417,0.988754,0][0.140374,-1.95055,-1.7004][-0.326463,0.00174575,1.52574][0.0103417,0.988754,0][0.158177,-0.171165,-1.69581][-0.160145,-0.000838439,0.947264][0.0110333,0.818034,0][0.157911,-0.171166,-1.69365][0.159581,0.00084,-0.945383][0.0112104,0.818035,0][0.218309,-0.21511,-1.6835][1.13525,0.0583396,-3.63349][0.286891,0.812074,0][0.157911,-0.171166,-1.69365][0.159581,0.00084,-0.945383][0.286216,0.816318,0][0.158177,-0.171165,-1.69581][-0.160145,-0.000838439,0.947264][0.286039,0.816325,0][0.158177,-0.171165,-1.69581][-0.160145,-0.000838439,0.947264][0.286039,0.816325,0][0.218794,-0.215085,-1.6856][-1.13543,-0.0583497,3.63134][0.286718,0.812083,0][0.218309,-0.21511,-1.6835][1.13525,0.0583396,-3.63349][0.286891,0.812074,0][-0.267749,0.723681,-1.60485][1.19793,-0.467832,-0.256897][0.0707485,0.569769,0][-0.377156,0.749624,-1.56407][-0.641091,1.66351,0.408176][0.0674043,0.572258,0][-0.377273,0.75145,-1.56364][0.646266,-1.66079,-0.393344][0.0673694,0.572433,0][-0.377273,0.75145,-1.56364][0.646266,-1.66079,-0.393344][0.0673694,0.572433,0][-0.26611,0.724549,-1.60509][-1.18577,0.461533,0.260238][0.0707679,0.569852,0][-0.267749,0.723681,-1.60485][1.19793,-0.467832,-0.256897][0.0707485,0.569769,0][0.51672,0.795535,-1.50987][-1.20156,-0.856904,-0.533631][0.156505,0.079852,0][0.63354,0.86928,-1.41981][0.76717,-1.25989,0.0365217][0.166631,0.0884049,0][0.635154,0.86945,-1.41873][-0.769861,1.25079,-0.0363003][0.166693,0.0885476,0][0.635154,0.86945,-1.41873][-0.769861,1.25079,-0.0363003][0.166693,0.0885476,0][0.516486,0.793749,-1.51043][1.19975,0.861582,0.543457][0.156335,0.0798823,0][0.51672,0.795535,-1.50987][-1.20156,-0.856904,-0.533631][0.156505,0.079852,0][-0.140038,-1.95055,-1.69825][-0.387915,-0.00494817,-1.51144][0.279461,0.64573,0][-0.15791,-0.171166,-1.69365][-0.179752,0.000765993,-0.995144][0.286216,0.816318,0][-0.158195,-0.171165,-1.69581][0.18005,-0.000763385,0.99618][0.286039,0.816325,0][-0.158195,-0.171165,-1.69581][0.18005,-0.000763385,0.99618][0.286039,0.816325,0][-0.140438,-1.95056,-1.70038][0.388046,0.00495428,1.51143][0.279287,0.645736,0][-0.140038,-1.95055,-1.69825][-0.387915,-0.00494817,-1.51144][0.279461,0.64573,0][-0.15791,-0.171166,-1.69365][-0.179752,0.000765993,-0.995144][0.0112104,0.818035,0][-0.23211,-0.21948,-1.68029][-1.0488,0.0429016,-3.67859][0.0122979,0.822672,0][-0.232554,-0.219462,-1.68241][1.04877,-0.0429011,3.67726][0.012124,0.82267,0][-0.232554,-0.219462,-1.68241][1.04877,-0.0429011,3.67726][0.012124,0.82267,0][-0.158195,-0.171165,-1.69581][0.18005,-0.000763385,0.99618][0.0110335,0.818034,0][-0.15791,-0.171166,-1.69365][-0.179752,0.000765993,-0.995144][0.0112104,0.818035,0][-1.3336,-1.95352,-0.78607][-2.26941,-1.0093,-1.41135][0.0853187,0.989178,0][-1.08768,-1.95055,-1.18364][-2.22337,0.106328,-2.14946][0.0527176,0.988833,0][-1.08892,-1.9505,-1.18526][2.22472,-0.106432,2.15013][0.0525842,0.988827,0][-1.08892,-1.9505,-1.18526][2.22472,-0.106432,2.15013][0.0525842,0.988827,0][-1.33502,-1.95415,-0.787279][2.27124,0.986018,1.41352][0.0852195,0.989238,0][-1.3336,-1.95352,-0.78607][-2.26941,-1.0093,-1.41135][0.0853187,0.989178,0][-1.45095,-1.90245,-0.633891][-3.02135,0.8758,-1.02251][0.097807,0.984301,0][-1.3336,-1.95352,-0.78607][-2.26941,-1.0093,-1.41135][0.0853187,0.989178,0][-1.33502,-1.95415,-0.787279][2.27124,0.986018,1.41352][0.0852195,0.989238,0][-1.33502,-1.95415,-0.787279][2.27124,0.986018,1.41352][0.0852195,0.989238,0][-1.45264,-1.902,-0.634672][3.03242,-0.874477,1.02648][0.097743,0.984258,0][-1.45095,-1.90245,-0.633891][-3.02135,0.8758,-1.02251][0.097807,0.984301,0][0.268532,-0.361262,-1.6414][0.101683,0,0.0166251][0.0737457,0.465676,0][0.536644,-0.295171,-1.54575][0.513296,-2.83267,0.361967][0.0659022,0.472017,0][0.536979,-0.296988,-1.54545][-0.578224,2.81634,-0.217316][0.0658776,0.471842,0][0.536979,-0.296988,-1.54545][-0.578224,2.81634,-0.217316][0.0658776,0.471842,0][0.26994,-0.362455,-1.64109][-0.106036,0.00019223,-0.0167984][0.0737199,0.465561,0][0.268532,-0.361262,-1.6414][0.101683,0,0.0166251][0.0737457,0.465676,0][-1.14029,-0.811621,-0.866066][0.0661345,0.247346,-0.0296186][0.033855,0.141292,0][-1.04422,-1.1788,-1.03767][-0.779948,-0.967341,0.804765][0.0322593,0.179193,0][-1.04522,-1.17979,-1.03624][0.788349,0.967435,-0.790726][0.0321132,0.179232,0][-1.04522,-1.17979,-1.03624][0.788349,0.967435,-0.790726][0.0321132,0.179232,0][-1.14091,-0.810324,-0.864678][-0.0677784,-0.247391,0.0287461][0.0338022,0.141132,0][-1.14029,-0.811621,-0.866066][0.0661345,0.247346,-0.0296186][0.033855,0.141292,0][-0.454886,-1.8455,1.48065][-0.918267,1.11989,2.30241][0.271216,0.979158,0][-0.832704,-1.74362,1.10423][-2.17945,0.927834,2.14423][0.240366,0.969326,0][-0.833889,-1.74312,1.10581][2.1786,-0.927476,-2.14355][0.240496,0.969278,0][-0.833889,-1.74312,1.10581][2.1786,-0.927476,-2.14355][0.240496,0.969278,0][-0.455465,-1.84482,1.48257][0.918575,-1.12019,-2.30282][0.271373,0.979093,0][-0.454886,-1.8455,1.48065][-0.918267,1.11989,2.30241][0.271216,0.979158,0][0.756265,-0.751776,-1.40379][-1.32208,0.765431,-0.726326][0.0542612,0.428208,0][0.807788,-0.889408,-1.36198][0.410856,-1.82196,0.225708][0.0508322,0.415003,0][0.80721,-0.891144,-1.3624][-0.419384,1.81476,-0.216942][0.0508672,0.414837,0][0.80721,-0.891144,-1.3624][-0.419384,1.81476,-0.216942][0.0508672,0.414837,0][0.754696,-0.751742,-1.40497][1.31079,-0.766955,0.735277][0.054358,0.428211,0][0.756265,-0.751776,-1.40379][-1.32208,0.765431,-0.726326][0.0542612,0.428208,0][-0.551291,0.519685,-1.54006][-1.66428,0.99427,-2.77807][0.0239281,0.751775,0][-0.425496,0.540444,-1.59832][-1.78316,1.12352,-4.83777][0.0191541,0.749775,0][-0.426051,0.540795,-1.60036][1.78187,-1.12351,4.8356][0.0189866,0.749741,0][-0.426051,0.540795,-1.60036][1.78187,-1.12351,4.8356][0.0189866,0.749741,0][-0.552115,0.52017,-1.54193][1.66429,-0.995906,2.77892][0.0237745,0.751729,0][-0.551291,0.519685,-1.54006][-1.66428,0.99427,-2.77807][0.0239281,0.751775,0][0.63354,0.86928,-1.41981][0.76717,-1.25989,0.0365217][0.166631,0.0884049,0][0.426991,0.939864,-1.50304][0.588066,2.36533,0.144758][0.167112,0.0674682,0][0.426357,0.94124,-1.50176][-0.594261,-2.34919,-0.108109][0.16722,0.0673703,0][0.426357,0.94124,-1.50176][-0.594261,-2.34919,-0.108109][0.16722,0.0673703,0][0.635154,0.86945,-1.41873][-0.769861,1.25079,-0.0363003][0.166693,0.0885476,0][0.63354,0.86928,-1.41981][0.76717,-1.25989,0.0365217][0.166631,0.0884049,0][0.725337,-0.481583,-1.42889][0.290322,-0.216433,0.0833629][0.0563196,0.454131,0][0.874032,-0.254768,-1.2993][0.890796,-0.916833,0.578126][0.0456925,0.475893,0][0.874702,-0.256433,-1.2987][-0.902686,0.917728,-0.56376][0.0456436,0.475733,0][0.874702,-0.256433,-1.2987][-0.902686,0.917728,-0.56376][0.0456436,0.475733,0][0.72654,-0.482756,-1.42795][-0.298243,0.221424,-0.082639][0.0562418,0.454019,0][0.725337,-0.481583,-1.42889][0.290322,-0.216433,0.0833629][0.0563196,0.454131,0][0.974457,-0.896282,-1.19016][-0.0981094,0.458203,-0.0657169][0.148161,0.351197,0][0.852644,-0.949254,-1.31981][-0.189866,-0.076865,-0.0205759][0.140198,0.359884,0][0.853453,-0.948978,-1.32175][0.196073,0.0806361,0.0326418][0.140041,0.359918,0][0.853453,-0.948978,-1.32175][0.196073,0.0806361,0.0326418][0.140041,0.359918,0][0.974191,-0.894515,-1.19079][0.0969204,-0.46312,0.0652297][0.14805,0.351059,0][0.974457,-0.896282,-1.19016][-0.0981094,0.458203,-0.0657169][0.148161,0.351197,0][-0.879328,0.254629,-1.28982][-2.76362,0.393553,-1.94857][0.0444016,0.777244,0][-0.755158,0.397383,-1.40765][-2.36935,0.466597,-2.28204][0.0347645,0.76353,0][-0.756392,0.397625,-1.40926][2.369,-0.466821,2.28121][0.0346324,0.763506,0][-0.756392,0.397625,-1.40926][2.369,-0.466821,2.28121][0.0346324,0.763506,0][-0.880763,0.254829,-1.29119][2.7641,-0.393871,1.94882][0.0442888,0.777224,0][-0.879328,0.254629,-1.28982][-2.76362,0.393553,-1.94857][0.0444016,0.777244,0][1.04556,0.286451,-1.09473][2.28532,1.37186,-0.15253][0.0289171,0.527819,0][0.888396,0.469973,-1.27957][0.5622,1.29524,0.385139][0.0440743,0.545427,0][0.889183,0.471525,-1.27878][-0.566807,-1.28535,-0.370825][0.0440098,0.545576,0][0.889183,0.471525,-1.27878][-0.566807,-1.28535,-0.370825][0.0440098,0.545576,0][1.04713,0.287471,-1.0947][-2.2889,-1.36327,0.161969][0.0289146,0.527917,0][1.04556,0.286451,-1.09473][2.28532,1.37186,-0.15253][0.0289171,0.527819,0][0.425497,0.540444,-1.59832][1.57668,0.977978,-4.85774][0.0191541,0.749775,0][0.551291,0.519684,-1.54006][1.77744,0.863066,-2.75739][0.0239281,0.751775,0][0.552174,0.520108,-1.54192][-1.77784,-0.863742,2.75859][0.0237758,0.751735,0][0.552174,0.520108,-1.54192][-1.77784,-0.863742,2.75859][0.0237758,0.751735,0][0.425993,0.540753,-1.60039][-1.57577,-0.977867,4.85647][0.0189842,0.749745,0][0.425497,0.540444,-1.59832][1.57668,0.977978,-4.85774][0.0191541,0.749775,0][0.928957,-1.95055,-1.34907][1.90952,0.3705,-2.37198][0.0391514,0.988807,0][1.15723,-1.95055,-1.09173][2.56359,-0.0105732,-1.83025][0.0602544,0.988846,0][1.15866,-1.95057,-1.09313][-2.56491,0.00868478,1.83079][0.0601395,0.988848,0][1.15866,-1.95057,-1.09313][-2.56491,0.00868478,1.83079][0.0601395,0.988848,0][0.930012,-1.95035,-1.35086][-1.9101,-0.370746,2.37258][0.0390051,0.988788,0][0.928957,-1.95055,-1.34907][1.90952,0.3705,-2.37198][0.0391514,0.988807,0][-0.892723,0.00291789,-1.27823][-2.0967,0.0103755,-1.73816][0.0453072,0.801396,0][-0.954957,0.0791987,-1.20041][-3.93823,0.158458,-2.4179][0.0517026,0.794089,0][-0.956475,0.079258,-1.20167][3.93946,-0.158509,2.41843][0.0515987,0.794083,0][-0.956475,0.079258,-1.20167][3.93946,-0.158509,2.41843][0.0515987,0.794083,0][-0.894063,0.00292468,-1.27975][2.09673,-0.0103883,1.73776][0.0451828,0.801395,0][-0.892723,0.00291789,-1.27823][-2.0967,0.0103755,-1.73816][0.0453072,0.801396,0][0.523042,-0.396367,-1.55186][1.17557,-0.900623,0.357159][0.0512642,0.330353,0][0.345064,-0.440239,-1.62193][0.17121,-9.83789e-007,-1.78444][0.045857,0.325717,0][0.345162,-0.440003,-1.62409][-0.181693,0.000292442,1.78265][0.0458387,0.325539,0][0.345162,-0.440003,-1.62409][-0.181693,0.000292442,1.78265][0.0458387,0.325539,0][0.524499,-0.395324,-1.55125][-1.16429,0.894287,-0.349183][0.0513729,0.330379,0][0.523042,-0.396367,-1.55186][1.17557,-0.900623,0.357159][0.0512642,0.330353,0][0.345064,-0.656466,-1.62193][0.0613267,-3.5239e-007,-0.639179][0.124158,0.610732,0][0.523042,-0.396367,-1.55186][1.17557,-0.900623,0.357159][0.123289,0.585139,0][0.524499,-0.395324,-1.55125][-1.16429,0.894287,-0.349183][0.123259,0.585032,0][0.524499,-0.395324,-1.55125][-1.16429,0.894287,-0.349183][0.123259,0.585032,0][0.345548,-0.656717,-1.62401][-0.0653807,0.000105233,0.641474][0.124321,0.610789,0][0.345064,-0.656466,-1.62193][0.0613267,-3.5239e-007,-0.639179][0.124158,0.610732,0][0.46603,-1.84364,1.4756][0.945553,1.20764,2.1402][0.270802,0.978978,0][-0.0151328,-1.88087,1.56666][-0.0140414,1.19196,2.5481][0.278262,0.982564,0][-0.0151412,-1.88017,1.56868][0.0140452,-1.19199,-2.54806][0.278429,0.982498,0][-0.0151412,-1.88017,1.56868][0.0140452,-1.19199,-2.54806][0.278429,0.982498,0][0.466651,-1.84287,1.47745][-0.946507,-1.20877,-2.14106][0.270954,0.978905,0][0.46603,-1.84364,1.4756][0.945553,1.20764,2.1402][0.270802,0.978978,0][0.100148,-0.126777,-1.6668][0.960832,1.33844,0.0313003][0.0758286,0.488173,0][0.143695,-1.92016,-1.66341][0.0423288,-0.330419,0.0175369][0.0755502,0.316109,0][0.1425,-1.92159,-1.66353][-0.0427129,0.333413,-0.0159563][0.0755608,0.315972,0][0.1425,-1.92159,-1.66353][-0.0427129,0.333413,-0.0159563][0.0755608,0.315972,0][0.0993363,-0.125097,-1.66684][-0.953846,-1.33896,-0.0255489][0.0758316,0.488334,0][0.100148,-0.126777,-1.6668][0.960832,1.33844,0.0313003][0.0758286,0.488173,0][-0.250586,1.46271,0.880599][0.0767998,0.898584,-0.100184][0.137244,0.610789,0][-0.112127,1.43651,0.751734][0.137668,1.61077,-0.179586][0.149275,0.598814,0][-0.11197,1.43835,0.751453][-0.137668,-1.61077,0.179586][0.1493,0.598802,0][-0.11197,1.43835,0.751453][-0.137668,-1.61077,0.179586][0.1493,0.598802,0][-0.250429,1.46456,0.880318][-0.0767995,-0.898584,0.100184][0.137268,0.610776,0][-0.250586,1.46271,0.880599][0.0767998,0.898584,-0.100184][0.137244,0.610789,0][-0.112127,1.43651,0.751734][0.137668,1.61077,-0.179586][0.149275,0.598814,0][0.0783599,1.44053,0.933811][0.0514252,0.601693,-0.0670831][0.136556,0.578936,0][0.0785175,1.44237,0.933529][-0.051425,-0.601693,0.0670833][0.13658,0.578923,0][0.0785175,1.44237,0.933529][-0.051425,-0.601693,0.0670833][0.13658,0.578923,0][-0.11197,1.43835,0.751453][-0.137668,-1.61077,0.179586][0.1493,0.598802,0][-0.112127,1.43651,0.751734][0.137668,1.61077,-0.179586][0.149275,0.598814,0][0.0783599,1.44053,0.933811][0.0514252,0.601693,-0.0670831][0.136556,0.578936,0][-0.250586,1.46271,0.880599][0.0767998,0.898584,-0.100184][0.137244,0.610789,0][-0.250429,1.46456,0.880318][-0.0767995,-0.898584,0.100184][0.137268,0.610776,0][-0.250429,1.46456,0.880318][-0.0767995,-0.898584,0.100184][0.137268,0.610776,0][0.0785175,1.44237,0.933529][-0.051425,-0.601693,0.0670833][0.13658,0.578923,0][0.0783599,1.44053,0.933811][0.0514252,0.601693,-0.0670831][0.136556,0.578936,0][0.0783599,1.44053,0.933811][-0.0514252,-0.601692,0.0670831][0.156078,0.578923,0][-0.112127,1.43651,0.751734][-0.137668,-1.61077,0.179586][0.168797,0.598802,0][-0.112285,1.43467,0.752015][0.137668,1.61077,-0.179585][0.168773,0.598814,0][-0.112285,1.43467,0.752015][0.137668,1.61077,-0.179585][0.168773,0.598814,0][0.0782024,1.43869,0.934092][0.0514252,0.601693,-0.0670831][0.156053,0.578936,0][0.0783599,1.44053,0.933811][-0.0514252,-0.601692,0.0670831][0.156078,0.578923,0][-0.112127,1.43651,0.751734][-0.137668,-1.61077,0.179586][0.168797,0.598802,0][-0.250586,1.46271,0.880599][-0.0767997,-0.898584,0.100184][0.156766,0.610776,0][-0.250744,1.46087,0.88088][0.0767998,0.898585,-0.100184][0.156741,0.610789,0][-0.250744,1.46087,0.88088][0.0767998,0.898585,-0.100184][0.156741,0.610789,0][-0.112285,1.43467,0.752015][0.137668,1.61077,-0.179585][0.168773,0.598814,0][-0.112127,1.43651,0.751734][-0.137668,-1.61077,0.179586][0.168797,0.598802,0][-0.250586,1.46271,0.880599][-0.0767997,-0.898584,0.100184][0.156766,0.610776,0][0.0783599,1.44053,0.933811][-0.0514252,-0.601692,0.0670831][0.156078,0.578923,0][0.0782024,1.43869,0.934092][0.0514252,0.601693,-0.0670831][0.156053,0.578936,0][0.0782024,1.43869,0.934092][0.0514252,0.601693,-0.0670831][0.156053,0.578936,0][-0.250744,1.46087,0.88088][0.0767998,0.898585,-0.100184][0.156741,0.610789,0][-0.250586,1.46271,0.880599][-0.0767997,-0.898584,0.100184][0.156766,0.610776,0][0.337898,1.60744,0.630937][-0.662945,0.967799,0.741805][0.128606,0.371592,0][0.180928,1.52234,0.601686][-0.483623,0.706015,0.541152][0.135649,0.376368,0][0.18008,1.52358,0.602984][0.483622,-0.706015,-0.541151][0.135492,0.376344,0][0.18008,1.52358,0.602984][0.483622,-0.706015,-0.541151][0.135492,0.376344,0][0.33705,1.60868,0.632235][0.662946,-0.967799,-0.741805][0.128448,0.371568,0][0.337898,1.60744,0.630937][-0.662945,0.967799,0.741805][0.128606,0.371592,0][0.180928,1.52234,0.601686][-0.483623,0.706015,0.541152][0.0127425,0.182769,0][0.271045,1.7089,0.43882][-0.353993,0.516776,0.396102][0.0146921,0.160521,0][0.270198,1.71014,0.440118][0.353993,-0.516776,-0.396102][0.0148506,0.160503,0][0.270198,1.71014,0.440118][0.353993,-0.516776,-0.396102][0.0148506,0.160503,0][0.18008,1.52358,0.602984][0.483622,-0.706015,-0.541151][0.012901,0.182751,0][0.180928,1.52234,0.601686][-0.483623,0.706015,0.541152][0.0127425,0.182769,0][0.271045,1.7089,0.43882][-0.353993,0.516776,0.396102][0.134573,0.354061,0][0.337898,1.60744,0.630937][-0.662945,0.967799,0.741805][0.128606,0.371592,0][0.33705,1.60868,0.632235][0.662946,-0.967799,-0.741805][0.128448,0.371568,0][0.33705,1.60868,0.632235][0.662946,-0.967799,-0.741805][0.128448,0.371568,0][0.270198,1.71014,0.440118][0.353993,-0.516776,-0.396102][0.134416,0.354037,0][0.271045,1.7089,0.43882][-0.353993,0.516776,0.396102][0.134573,0.354061,0][0.271045,1.7089,0.43882][0.353993,-0.516776,-0.396102][0.0148506,0.217289,0][0.180928,1.52234,0.601686][0.483623,-0.706015,-0.541152][0.0146087,0.239621,0][0.181775,1.5211,0.600388][-0.483622,0.706015,0.541151][0.0144521,0.239651,0][0.181775,1.5211,0.600388][-0.483622,0.706015,0.541151][0.0144521,0.239651,0][0.271893,1.70767,0.437521][-0.353993,0.516776,0.396102][0.0146939,0.217319,0][0.271045,1.7089,0.43882][0.353993,-0.516776,-0.396102][0.0148506,0.217289,0][0.180928,1.52234,0.601686][0.483623,-0.706015,-0.541152][0.146587,0.327584,0][0.337898,1.60744,0.630937][0.662945,-0.967799,-0.741805][0.152382,0.321351,0][0.338745,1.60621,0.629638][-0.662945,0.967799,0.741805][0.152334,0.321503,0][0.338745,1.60621,0.629638][-0.662945,0.967799,0.741805][0.152334,0.321503,0][0.181775,1.5211,0.600388][-0.483622,0.706015,0.541151][0.146539,0.327736,0][0.180928,1.52234,0.601686][0.483623,-0.706015,-0.541152][0.146587,0.327584,0][0.337898,1.60744,0.630937][0.662945,-0.967799,-0.741805][0.152382,0.321351,0][0.271045,1.7089,0.43882][0.353993,-0.516776,-0.396102][0.168797,0.329923,0][0.271893,1.70767,0.437521][-0.353993,0.516776,0.396102][0.16875,0.330076,0][0.271893,1.70767,0.437521][-0.353993,0.516776,0.396102][0.16875,0.330076,0][0.338745,1.60621,0.629638][-0.662945,0.967799,0.741805][0.152334,0.321503,0][0.337898,1.60744,0.630937][0.662945,-0.967799,-0.741805][0.152382,0.321351,0][-0.330665,1.50049,0.807098][0.499785,1.42901,0.189964][0.0276062,0.199634,0][-0.209479,1.47566,0.675055][0.189736,0.542505,0.072117][0.0277217,0.211502,0][-0.208869,1.4774,0.675372][-0.189736,-0.542505,-0.0721171][0.0275464,0.211528,0][-0.208869,1.4774,0.675372][-0.189736,-0.542505,-0.0721171][0.0275464,0.211528,0][-0.330056,1.50223,0.807415][-0.499785,-1.42901,-0.189964][0.0274309,0.199659,0][-0.330665,1.50049,0.807098][0.499785,1.42901,0.189964][0.0276062,0.199634,0][-0.209479,1.47566,0.675055][0.189736,0.542505,0.072117][0.012301,0.156111,0][-0.250586,1.46271,0.880599][0.339551,0.970864,0.12906][0.0110588,0.139256,0][-0.249977,1.46445,0.880916][-0.339551,-0.970864,-0.12906][0.011226,0.13923,0][-0.249977,1.46445,0.880916][-0.339551,-0.970864,-0.12906][0.011226,0.13923,0][-0.208869,1.4774,0.675372][-0.189736,-0.542505,-0.0721171][0.0124682,0.156085,0][-0.209479,1.47566,0.675055][0.189736,0.542505,0.072117][0.012301,0.156111,0][-0.250586,1.46271,0.880599][0.339551,0.970864,0.12906][0.0230394,0.199634,0][-0.330665,1.50049,0.807098][0.499785,1.42901,0.189964][0.0225478,0.208115,0][-0.330056,1.50223,0.807415][-0.499785,-1.42901,-0.189964][0.0223709,0.208123,0][-0.330056,1.50223,0.807415][-0.499785,-1.42901,-0.189964][0.0223709,0.208123,0][-0.249977,1.46445,0.880916][-0.339551,-0.970864,-0.12906][0.0228625,0.199642,0][-0.250586,1.46271,0.880599][0.339551,0.970864,0.12906][0.0230394,0.199634,0][-0.250586,1.46271,0.880599][-0.339551,-0.970864,-0.12906][0.0615539,0.217676,0][-0.209479,1.47566,0.675055][-0.189736,-0.542505,-0.072117][0.0603118,0.200821,0][-0.210088,1.47392,0.674738][0.189736,0.542505,0.072117][0.0604789,0.200795,0][-0.210088,1.47392,0.674738][0.189736,0.542505,0.072117][0.0604789,0.200795,0][-0.251196,1.46097,0.880282][0.339551,0.970863,0.12906][0.0617211,0.21765,0][-0.250586,1.46271,0.880599][-0.339551,-0.970864,-0.12906][0.0615539,0.217676,0][-0.209479,1.47566,0.675055][-0.189736,-0.542505,-0.072117][0.0714481,0.237001,0][-0.330665,1.50049,0.807098][-0.499785,-1.42901,-0.189964][0.0713326,0.225133,0][-0.331275,1.49875,0.806781][0.499786,1.42902,0.189964][0.0715079,0.225107,0][-0.331275,1.49875,0.806781][0.499786,1.42902,0.189964][0.0715079,0.225107,0][-0.210088,1.47392,0.674738][0.189736,0.542505,0.072117][0.0716234,0.236975,0][-0.209479,1.47566,0.675055][-0.189736,-0.542505,-0.072117][0.0714481,0.237001,0][-0.330665,1.50049,0.807098][-0.499785,-1.42901,-0.189964][0.168639,0.539429,0][-0.250586,1.46271,0.880599][-0.339551,-0.970864,-0.12906][0.168797,0.547923,0][-0.251196,1.46097,0.880282][0.339551,0.970863,0.12906][0.168622,0.547944,0][-0.251196,1.46097,0.880282][0.339551,0.970863,0.12906][0.168622,0.547944,0][-0.331275,1.49875,0.806781][0.499786,1.42902,0.189964][0.168463,0.539451,0][-0.330665,1.50049,0.807098][-0.499785,-1.42901,-0.189964][0.168639,0.539429,0][-0.13798,1.76886,0.312107][0.366194,0.816937,1.06062][0.140041,0.410265,0][-0.0739416,1.62483,0.400939][0.26714,0.59596,0.773731][0.140441,0.394648,0][-0.0734951,1.62583,0.402709][-0.267141,-0.59596,-0.773731][0.140614,0.394669,0][-0.0734951,1.62583,0.402709][-0.267141,-0.59596,-0.773731][0.140614,0.394669,0][-0.137534,1.76986,0.313877][-0.366194,-0.816937,-1.06062][0.140213,0.410286,0][-0.13798,1.76886,0.312107][0.366194,0.816937,1.06062][0.140041,0.410265,0][-0.0739416,1.62483,0.400939][0.26714,0.59596,0.773731][0.140441,0.394648,0][-0.323919,1.70446,0.425911][0.195536,0.43622,0.566341][0.145665,0.400588,0][-0.323473,1.70546,0.427682][-0.195536,-0.43622,-0.566341][0.145837,0.400609,0][-0.323473,1.70546,0.427682][-0.195536,-0.43622,-0.566341][0.145837,0.400609,0][-0.0734951,1.62583,0.402709][-0.267141,-0.59596,-0.773731][0.140614,0.394669,0][-0.0739416,1.62483,0.400939][0.26714,0.59596,0.773731][0.140441,0.394648,0][-0.323919,1.70446,0.425911][0.195536,0.43622,0.566341][0.145665,0.400588,0][-0.13798,1.76886,0.312107][0.366194,0.816937,1.06062][0.140041,0.410265,0][-0.137534,1.76986,0.313877][-0.366194,-0.816937,-1.06062][0.140213,0.410286,0][-0.137534,1.76986,0.313877][-0.366194,-0.816937,-1.06062][0.140213,0.410286,0][-0.323473,1.70546,0.427682][-0.195536,-0.43622,-0.566341][0.145837,0.400609,0][-0.323919,1.70446,0.425911][0.195536,0.43622,0.566341][0.145665,0.400588,0][-0.323919,1.70446,0.425911][-0.195536,-0.43622,-0.566341][0.0329161,0.0413477,0][-0.0739416,1.62483,0.400939][-0.26714,-0.59596,-0.773731][0.0381398,0.0472872,0][-0.0743881,1.62383,0.399169][0.26714,0.59596,0.773731][0.0383123,0.0473085,0][-0.0743881,1.62383,0.399169][0.26714,0.59596,0.773731][0.0383123,0.0473085,0][-0.324366,1.70346,0.424141][0.195536,0.43622,0.566341][0.0330886,0.0413689,0][-0.323919,1.70446,0.425911][-0.195536,-0.43622,-0.566341][0.0329161,0.0413477,0][-0.0739416,1.62483,0.400939][-0.26714,-0.59596,-0.773731][0.0381398,0.0472872,0][-0.13798,1.76886,0.312107][-0.366194,-0.816937,-1.06062][0.0385402,0.0316707,0][-0.138427,1.76787,0.310337][0.366194,0.816937,1.06062][0.0387127,0.031692,0][-0.138427,1.76787,0.310337][0.366194,0.816937,1.06062][0.0387127,0.031692,0][-0.0743881,1.62383,0.399169][0.26714,0.59596,0.773731][0.0383123,0.0473085,0][-0.0739416,1.62483,0.400939][-0.26714,-0.59596,-0.773731][0.0381398,0.0472872,0][-0.13798,1.76886,0.312107][-0.366194,-0.816937,-1.06062][0.0385402,0.0316707,0][-0.323919,1.70446,0.425911][-0.195536,-0.43622,-0.566341][0.0329161,0.0413477,0][-0.324366,1.70346,0.424141][0.195536,0.43622,0.566341][0.0330886,0.0413689,0][-0.324366,1.70346,0.424141][0.195536,0.43622,0.566341][0.0330886,0.0413689,0][-0.138427,1.76787,0.310337][0.366194,0.816937,1.06062][0.0387127,0.031692,0][-0.13798,1.76886,0.312107][-0.366194,-0.816937,-1.06062][0.0385402,0.0316707,0][0.264299,1.50493,0.820006][-0.656461,1.16383,0.375463][0.0670433,0.180797,0][0.129157,1.46536,0.706389][-0.478892,0.849018,0.273902][0.0709118,0.167853,0][0.128286,1.4669,0.707071][0.478892,-0.849018,-0.273903][0.0710816,0.167863,0][0.128286,1.4669,0.707071][0.478892,-0.849018,-0.273903][0.0710816,0.167863,0][0.263428,1.50648,0.820688][0.656462,-1.16383,-0.375464][0.067213,0.180808,0][0.264299,1.50493,0.820006][-0.656461,1.16383,0.375463][0.0670433,0.180797,0][0.129157,1.46536,0.706389][-0.478892,0.849018,0.273902][0.014741,0.410277,0][0.337898,1.60744,0.630937][-0.350531,0.621449,0.200486][0.0180774,0.386281,0][0.337027,1.60899,0.631618][0.350531,-0.621449,-0.200486][0.0182472,0.38629,0][0.337027,1.60899,0.631618][0.350531,-0.621449,-0.200486][0.0182472,0.38629,0][0.128286,1.4669,0.707071][0.478892,-0.849018,-0.273903][0.0149108,0.410286,0][0.129157,1.46536,0.706389][-0.478892,0.849018,0.273902][0.014741,0.410277,0][0.337898,1.60744,0.630937][-0.350531,0.621449,0.200486][0.0714536,0.192073,0][0.264299,1.50493,0.820006][-0.656461,1.16383,0.375463][0.0670433,0.180797,0][0.263428,1.50648,0.820688][0.656462,-1.16383,-0.375464][0.067213,0.180808,0][0.263428,1.50648,0.820688][0.656462,-1.16383,-0.375464][0.067213,0.180808,0][0.337027,1.60899,0.631618][0.350531,-0.621449,-0.200486][0.0716234,0.192084,0][0.337898,1.60744,0.630937][-0.350531,0.621449,0.200486][0.0714536,0.192073,0][0.337898,1.60744,0.630937][0.350531,-0.621449,-0.200486][0.07126,0.196475,0][0.129157,1.46536,0.706389][0.478892,-0.849018,-0.273902][0.0716234,0.220699,0][0.130028,1.46382,0.705708][-0.478892,0.849018,0.273903][0.0714542,0.220716,0][0.130028,1.46382,0.705708][-0.478892,0.849018,0.273903][0.0714542,0.220716,0][0.338769,1.6059,0.630255][-0.350531,0.621449,0.200486][0.0710908,0.196492,0][0.337898,1.60744,0.630937][0.350531,-0.621449,-0.200486][0.07126,0.196475,0][0.129157,1.46536,0.706389][0.478892,-0.849018,-0.273902][0.0710816,0.139241,0][0.264299,1.50493,0.820006][0.656461,-1.16383,-0.375463][0.067213,0.152185,0][0.265169,1.50339,0.819325][-0.656462,1.16383,0.375464][0.0670433,0.152175,0][0.265169,1.50339,0.819325][-0.656462,1.16383,0.375464][0.0670433,0.152175,0][0.130028,1.46382,0.705708][-0.478892,0.849018,0.273903][0.0709118,0.13923,0][0.129157,1.46536,0.706389][0.478892,-0.849018,-0.273902][0.0710816,0.139241,0][0.264299,1.50493,0.820006][0.656461,-1.16383,-0.375463][0.067213,0.152185,0][0.337898,1.60744,0.630937][0.350531,-0.621449,-0.200486][0.0716234,0.163461,0][0.338769,1.6059,0.630255][-0.350531,0.621449,0.200486][0.0714536,0.163451,0][0.338769,1.6059,0.630255][-0.350531,0.621449,0.200486][0.0714536,0.163451,0][0.265169,1.50339,0.819325][-0.656462,1.16383,0.375464][0.0670433,0.152175,0][0.264299,1.50493,0.820006][0.656461,-1.16383,-0.375463][0.067213,0.152185,0][-0.323919,1.70446,0.425911][0.615624,0.977351,0.769545][0.0458391,0.610789,0][-0.185879,1.59205,0.458252][0.449101,0.712983,0.561387][0.0566245,0.608137,0][-0.185094,1.59329,0.459594][-0.449101,-0.712983,-0.561387][0.0565051,0.608027,0][-0.185094,1.59329,0.459594][-0.449101,-0.712983,-0.561387][0.0565051,0.608027,0][-0.323135,1.70571,0.427253][-0.615624,-0.977351,-0.769545][0.0457196,0.610679,0][-0.323919,1.70446,0.425911][0.615624,0.977351,0.769545][0.0458391,0.610789,0][-0.185879,1.59205,0.458252][0.449101,0.712983,0.561387][0.0566245,0.608137,0][-0.397518,1.60195,0.614981][0.328725,0.521876,0.410914][0.0556742,0.595284,0][-0.396734,1.6032,0.616323][-0.328725,-0.521876,-0.410914][0.0555548,0.595174,0][-0.396734,1.6032,0.616323][-0.328725,-0.521876,-0.410914][0.0555548,0.595174,0][-0.185094,1.59329,0.459594][-0.449101,-0.712983,-0.561387][0.0565051,0.608027,0][-0.185879,1.59205,0.458252][0.449101,0.712983,0.561387][0.0566245,0.608137,0][-0.397518,1.60195,0.614981][0.328725,0.521876,0.410914][0.0556742,0.595284,0][-0.323919,1.70446,0.425911][0.615624,0.977351,0.769545][0.0458391,0.610789,0][-0.323135,1.70571,0.427253][-0.615624,-0.977351,-0.769545][0.0457196,0.610679,0][-0.323135,1.70571,0.427253][-0.615624,-0.977351,-0.769545][0.0457196,0.610679,0][-0.396734,1.6032,0.616323][-0.328725,-0.521876,-0.410914][0.0555548,0.595174,0][-0.397518,1.60195,0.614981][0.328725,0.521876,0.410914][0.0556742,0.595284,0][-0.397518,1.60195,0.614981][-0.328725,-0.521876,-0.410914][0.167728,0.558917,0][-0.185879,1.59205,0.458252][-0.449101,-0.712983,-0.561387][0.168678,0.57177,0][-0.186663,1.5908,0.45691][0.449101,0.712983,0.561387][0.168797,0.57188,0][-0.186663,1.5908,0.45691][0.449101,0.712983,0.561387][0.168797,0.57188,0][-0.398303,1.60071,0.613639][0.328725,0.521876,0.410914][0.167847,0.559027,0][-0.397518,1.60195,0.614981][-0.328725,-0.521876,-0.410914][0.167728,0.558917,0][-0.185879,1.59205,0.458252][-0.449101,-0.712983,-0.561387][0.168678,0.57177,0][-0.323919,1.70446,0.425911][-0.615624,-0.977351,-0.769545][0.157892,0.574422,0][-0.324703,1.70322,0.424569][0.615624,0.977352,0.769544][0.158012,0.574532,0][-0.324703,1.70322,0.424569][0.615624,0.977352,0.769544][0.158012,0.574532,0][-0.186663,1.5908,0.45691][0.449101,0.712983,0.561387][0.168797,0.57188,0][-0.185879,1.59205,0.458252][-0.449101,-0.712983,-0.561387][0.168678,0.57177,0][-0.323919,1.70446,0.425911][-0.615624,-0.977351,-0.769545][0.157892,0.574422,0][-0.397518,1.60195,0.614981][-0.328725,-0.521876,-0.410914][0.167728,0.558917,0][-0.398303,1.60071,0.613639][0.328725,0.521876,0.410914][0.167847,0.559027,0][-0.398303,1.60071,0.613639][0.328725,0.521876,0.410914][0.167847,0.559027,0][-0.324703,1.70322,0.424569][0.615624,0.977352,0.769544][0.158012,0.574532,0][-0.323919,1.70446,0.425911][-0.615624,-0.977351,-0.769545][0.157892,0.574422,0][0.0783599,1.44053,0.933811][-0.407032,1.32424,0.0843855][0.102399,0.236417,0][0.0172199,1.43258,0.763703][-0.296932,0.96604,0.0615596][0.116349,0.235654,0][0.0166732,1.43436,0.763858][0.296932,-0.96604,-0.0615589][0.116336,0.235825,0][0.0166732,1.43436,0.763858][0.296932,-0.96604,-0.0615589][0.116336,0.235825,0][0.0778132,1.44231,0.933966][0.407032,-1.32424,-0.0843845][0.102387,0.236588,0][0.0783599,1.44053,0.933811][-0.407032,1.32424,0.0843855][0.102399,0.236417,0][0.0172199,1.43258,0.763703][-0.296932,0.96604,0.0615596][0.116349,0.235654,0][0.264299,1.50493,0.820006][-0.217342,0.707104,0.0450592][0.111732,0.242596,0][0.263752,1.50671,0.820161][0.217342,-0.707104,-0.0450587][0.111719,0.242767,0][0.263752,1.50671,0.820161][0.217342,-0.707104,-0.0450587][0.111719,0.242767,0][0.0166732,1.43436,0.763858][0.296932,-0.96604,-0.0615589][0.116336,0.235825,0][0.0172199,1.43258,0.763703][-0.296932,0.96604,0.0615596][0.116349,0.235654,0][0.264299,1.50493,0.820006][-0.217342,0.707104,0.0450592][0.111732,0.242596,0][0.0783599,1.44053,0.933811][-0.407032,1.32424,0.0843855][0.102399,0.236417,0][0.0778132,1.44231,0.933966][0.407032,-1.32424,-0.0843845][0.102387,0.236588,0][0.0778132,1.44231,0.933966][0.407032,-1.32424,-0.0843845][0.102387,0.236588,0][0.263752,1.50671,0.820161][0.217342,-0.707104,-0.0450587][0.111719,0.242767,0][0.264299,1.50493,0.820006][-0.217342,0.707104,0.0450592][0.111732,0.242596,0][0.264299,1.50493,0.820006][0.217342,-0.707104,-0.0450592][0.0226387,0.35216,0][0.0172199,1.43258,0.763703][0.296932,-0.96604,-0.0615596][0.0295809,0.356777,0][0.0177667,1.4308,0.763547][-0.296931,0.966041,0.0615594][0.0297516,0.35679,0][0.0177667,1.4308,0.763547][-0.296931,0.966041,0.0615594][0.0297516,0.35679,0][0.264845,1.50316,0.819851][-0.217342,0.707104,0.0450591][0.0228094,0.352173,0][0.264299,1.50493,0.820006][0.217342,-0.707104,-0.0450592][0.0226387,0.35216,0][0.0172199,1.43258,0.763703][0.296932,-0.96604,-0.0615596][0.0295809,0.356777,0][0.0783599,1.44053,0.933811][0.407032,-1.32424,-0.0843855][0.0288179,0.342828,0][0.0789067,1.43875,0.933656][-0.407031,1.32424,0.0843851][0.0289886,0.34284,0][0.0789067,1.43875,0.933656][-0.407031,1.32424,0.0843851][0.0289886,0.34284,0][0.0177667,1.4308,0.763547][-0.296931,0.966041,0.0615594][0.0297516,0.35679,0][0.0172199,1.43258,0.763703][0.296932,-0.96604,-0.0615596][0.0295809,0.356777,0][0.0783599,1.44053,0.933811][0.407032,-1.32424,-0.0843855][0.0288179,0.342828,0][0.264299,1.50493,0.820006][0.217342,-0.707104,-0.0450592][0.0226387,0.35216,0][0.264845,1.50316,0.819851][-0.217342,0.707104,0.0450591][0.0228094,0.352173,0][0.264845,1.50316,0.819851][-0.217342,0.707104,0.0450591][0.0228094,0.352173,0][0.0789067,1.43875,0.933656][-0.407031,1.32424,0.0843851][0.0289886,0.34284,0][0.0783599,1.44053,0.933811][0.407032,-1.32424,-0.0843855][0.0288179,0.342828,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/CrownOfWarlords.mesh b/shareddata/charcustom/hats/fonts/CrownOfWarlords.mesh deleted file mode 100644 index 9e74724..0000000 --- a/shareddata/charcustom/hats/fonts/CrownOfWarlords.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -1567 -[-2.3928,1.69957,0.580873][0.833379,-0.551743,-0.0325554][0.042085,0.870539,0.134398][-2.81833,0.735268,0.436089][0.949303,-0.310623,-0.0483396][0.0438394,0.928207,0.130162][-2.79713,0.781839,-0.0815954][0.76379,-0.340178,0.548548][0.0753488,0.927829,0.127744][-2.79713,0.781839,-0.0815954][0.76379,-0.340178,0.548548][0.0753488,0.927829,0.127744][-2.32583,1.74739,0.035439][0.553635,-0.480632,0.680059][0.0761542,0.869171,0.130493][-2.3928,1.69957,0.580873][0.833379,-0.551743,-0.0325554][0.042085,0.870539,0.134398][-2.79436,0.781803,-0.136677][-0.53464,0.306317,-0.787611][0.0799988,0.928217,0.126004][-2.84863,0.746112,0.437211][-0.94997,0.311733,0.0195098][0.0438394,0.928207,0.130162][-2.42022,1.71639,0.582329][-0.850573,0.52476,0.0339516][0.042085,0.870539,0.134398][-2.42022,1.71639,0.582329][-0.850573,0.52476,0.0339516][0.042085,0.870539,0.134398][-2.33814,1.75914,0.00809491][-0.450909,0.399869,-0.797989][0.0761542,0.869171,0.130493][-2.79436,0.781803,-0.136677][-0.53464,0.306317,-0.787611][0.0799988,0.928217,0.126004][2.96562,-0.552073,1.34694][-0.444876,-0.879371,-0.169681][0.384694,0.615901,0.442003][3.12289,-0.435547,0.252102][-0.546384,-0.83288,-0.0881776][0.383687,0.562068,0.42789][3.19251,-1.65715,0.0636978][-0.733463,0.675548,0.075272][0.322214,0.558969,0.408911][3.19251,-1.65715,0.0636978][-0.733463,0.675548,0.075272][0.322214,0.558969,0.408911][3.09359,-1.77933,1.21278][-0.730706,0.680531,-0.0542743][0.322234,0.61464,0.42559][2.96562,-0.552073,1.34694][-0.444876,-0.879371,-0.169681][0.384694,0.615901,0.442003][3.21699,-1.67795,0.0613367][0.685443,-0.722914,-0.0869679][0.322214,0.558969,0.408911][3.12796,-0.403904,0.255315][0.441823,0.893485,0.0804775][0.383687,0.562068,0.42789][3.02034,-0.553093,1.35968][0.785288,0.581227,0.213305][0.377067,0.615868,0.433021][3.02034,-0.553093,1.35968][0.785288,0.581227,0.213305][0.377067,0.615868,0.433021][3.11795,-1.80029,1.21483][0.676711,-0.734825,0.0457509][0.322234,0.61464,0.42559][3.21699,-1.67795,0.0613367][0.685443,-0.722914,-0.0869679][0.322214,0.558969,0.408911][1.58532,-0.0898803,-2.98698][-0.29748,-0.811049,0.503691][0.250954,0.953223,0.517177][0.815441,-0.042188,-3.21226][-0.112431,-0.887659,0.446566][0.258187,0.904681,0.550114][0.835487,-1.09715,-3.40408][-0.140334,0.581736,0.80118][0.192975,0.900754,0.569808][0.835487,-1.09715,-3.40408][-0.140334,0.581736,0.80118][0.192975,0.900754,0.569808][1.64956,-1.11582,-3.17676][-0.329698,0.535863,0.777271][0.192992,0.950333,0.524503][1.58532,-0.0898803,-2.98698][-0.29748,-0.811049,0.503691][0.250954,0.953223,0.517177][0.840384,-1.11437,-3.43086][0.125892,-0.644232,-0.754398][0.192975,0.900754,0.569808][0.816881,-0.0101729,-3.21547][0.0973907,0.931307,-0.350973][0.258187,0.904681,0.550114][1.59817,-0.0713798,-3.00999][0.287548,0.823813,-0.488517][0.250954,0.953223,0.517177][1.59817,-0.0713798,-3.00999][0.287548,0.823813,-0.488517][0.250954,0.953223,0.517177][1.66053,-1.1317,-3.20254][0.312431,-0.590899,-0.743791][0.192992,0.950333,0.524503][0.840384,-1.11437,-3.43086][0.125892,-0.644232,-0.754398][0.192975,0.900754,0.569808][0.376661,3.01448,1.31762][-0.145831,-0.659647,-0.737292][0.00701091,0.690099,0.138929][0.0304894,3.04079,1.31793][-0.00724323,-0.687524,-0.726125][0.00722128,0.709595,0.139612][0.377115,3.11162,0.775657][-0.157958,-0.983003,-0.0935691][0.0417376,0.690107,0.144003][0.878626,2.88462,1.32258][0.275729,0.554785,0.784976][0.00776204,0.660754,0.137261][0.959791,2.96343,0.753194][0.418425,0.90524,0.0738976][0.041317,0.656892,0.142305][0.383666,3.14302,0.778576][0.148918,0.983252,0.105069][0.0417376,0.690107,0.144003][0.383666,3.14302,0.778576][0.148918,0.983252,0.105069][0.0417376,0.690107,0.144003][0.380894,3.03245,1.34402][0.106297,0.601347,0.791885][0.00701091,0.690099,0.138929][0.878626,2.88462,1.32258][0.275729,0.554785,0.784976][0.00776204,0.660754,0.137261][1.74965,2.46013,0.68489][-0.674872,-0.737,-0.0371245][0.0402491,0.605687,0.138784][0.946507,2.9342,0.750628][-0.416431,-0.905913,-0.0768578][0.041317,0.656892,0.142305][0.861871,2.96253,0.205041][-0.253869,-0.689402,0.678436][0.0777165,0.659474,0.134888][0.861871,2.96253,0.205041][-0.253869,-0.689402,0.678436][0.0777165,0.659474,0.134888][1.69068,2.49196,0.139967][-0.444137,-0.605327,0.660546][0.0738473,0.606249,0.133647][1.74965,2.46013,0.68489][-0.674872,-0.737,-0.0371245][0.0402491,0.605687,0.138784][0.867454,2.97932,0.17813][0.184963,0.576482,-0.7959][0.0777165,0.659474,0.134888][0.959791,2.96343,0.753194][0.418425,0.90524,0.0738976][0.041317,0.656892,0.142305][1.77067,2.48445,0.686847][0.652163,0.756492,0.0490256][0.0402491,0.605687,0.138784][1.77067,2.48445,0.686847][0.652163,0.756492,0.0490256][0.0402491,0.605687,0.138784][1.70011,2.50711,0.113156][0.365128,0.544584,-0.755056][0.0738473,0.606249,0.133647][0.867454,2.97932,0.17813][0.184963,0.576482,-0.7959][0.0777165,0.659474,0.134888][-1.63774,-0.830994,3.61152][0.323996,-0.674543,-0.663339][0.37715,0.939914,0.498308][-0.833231,-0.848123,3.86821][0.116224,-0.777373,-0.61821][0.383367,0.894106,0.446805][-0.85447,-2.10549,3.85424][0.160766,0.767337,-0.620764][0.322069,0.893345,0.421182][-0.85447,-2.10549,3.85424][0.160766,0.767337,-0.620764][0.322069,0.893345,0.421182][-1.643,-2.06209,3.5653][0.375957,0.740412,-0.557178][0.321781,0.941173,0.478093][-1.63774,-0.830994,3.61152][0.323996,-0.674543,-0.663339][0.37715,0.939914,0.498308][-0.860166,-2.12888,3.87563][-0.149097,-0.799249,0.582212][0.322069,0.893345,0.421182][-0.83448,-0.817458,3.87798][-0.100242,0.837595,0.537016][0.383367,0.894106,0.446805][-1.65155,-0.818388,3.63774][-0.315644,0.688747,0.652684][0.37715,0.939914,0.498308][-1.65155,-0.818388,3.63774][-0.315644,0.688747,0.652684][0.37715,0.939914,0.498308][-1.65541,-2.08495,3.58428][-0.357753,-0.779702,0.513885][0.321781,0.941173,0.478093][-0.860166,-2.12888,3.87563][-0.149097,-0.799249,0.582212][0.322069,0.893345,0.421182][-0.00214219,0.350078,3.76955][-0.00296997,-0.251391,-0.967881][0.122458,0.932611,0.112923][-0.00196266,1.39878,3.3865][-0.00591267,-0.474388,-0.880296][0.121619,0.876369,0.121958][0.439281,1.39697,3.32895][-0.697975,-0.342573,-0.628868][0.0938145,0.875172,0.116321][0.439281,1.39697,3.32895][-0.697975,-0.342573,-0.628868][0.0938145,0.875172,0.116321][0.427526,0.343717,3.72083][-0.702273,-0.182872,-0.688019][0.0951734,0.932288,0.108864][-0.00214219,0.350078,3.76955][-0.00296997,-0.251391,-0.967881][0.122458,0.932611,0.112923][0.466362,1.40517,3.34433][0.808777,0.279408,0.517505][0.0938145,0.875172,0.116321][-0.00189996,1.41405,3.41486][0.00986744,0.474724,0.88008][0.121619,0.876369,0.121958][-0.00209498,0.358101,3.80074][0.0107588,0.243431,0.969859][0.122458,0.932611,0.112923][-0.00209498,0.358101,3.80074][0.0107588,0.243431,0.969859][0.122458,0.932611,0.112923][0.454425,0.347943,3.73803][0.818266,0.140712,0.557352][0.0951734,0.932288,0.108864][0.466362,1.40517,3.34433][0.808777,0.279408,0.517505][0.0938145,0.875172,0.116321][-2.70881,-0.202313,-1.77396][-0.405372,0.908736,-0.0993579][0.257829,0.667917,0.501381][-2.78546,-1.49566,-2.03946][-0.588031,-0.688154,-0.425046][0.193505,0.669388,0.509431][-3.10166,-1.58622,-1.06967][-0.677434,-0.703791,-0.213919][0.193322,0.618734,0.569352][-3.10166,-1.58622,-1.06967][-0.677434,-0.703791,-0.213919][0.193322,0.618734,0.569352][-3.0004,-0.331249,-0.845752][-0.791769,0.60178,-0.104703][0.25087,0.61752,0.560029][-2.70881,-0.202313,-1.77396][-0.405372,0.908736,-0.0993579][0.257829,0.667917,0.501381][-3.07718,-1.56647,-1.06275][0.73216,0.647491,0.211419][0.193322,0.618734,0.569352][-2.76442,-1.47588,-2.02521][0.627952,0.643277,0.438031][0.193505,0.669388,0.509431][-2.704,-0.234124,-1.77544][0.498908,-0.856982,0.129123][0.257829,0.667917,0.501381][-2.704,-0.234124,-1.77544][0.498908,-0.856982,0.129123][0.257829,0.667917,0.501381][-2.94606,-0.334375,-0.831519][0.417122,-0.908712,-0.0158592][0.25969,0.617588,0.542134][-3.07718,-1.56647,-1.06275][0.73216,0.647491,0.211419][0.193322,0.618734,0.569352][-1.62534,-1.17191,-3.17812][0.309429,0.583664,0.750726][0.193588,0.742966,0.52371][-0.85182,-1.13182,-3.40515][0.123717,0.59331,0.79541][0.193383,0.792499,0.569308][-0.832448,-0.0544917,-3.2127][0.122126,-0.883862,0.451523][0.258246,0.797908,0.550007][-0.832448,-0.0544917,-3.2127][0.122126,-0.883862,0.451523][0.258246,0.797908,0.550007][-1.5883,-0.0939654,-2.9611][0.258856,-0.883818,0.389691][0.258835,0.749551,0.515636][-1.62534,-1.17191,-3.17812][0.309429,0.583664,0.750726][0.193588,0.742966,0.52371][-0.834296,-0.0224978,-3.21591][-0.105047,0.924991,-0.365181][0.258246,0.797908,0.550007][-0.85611,-1.1495,-3.43173][-0.113288,-0.653134,-0.74872][0.193383,0.792499,0.569308][-1.63588,-1.18914,-3.20321][-0.291786,-0.624158,-0.724768][0.193588,0.742966,0.52371][-1.63588,-1.18914,-3.20321][-0.291786,-0.624158,-0.724768][0.193588,0.742966,0.52371][-1.59149,-0.0619634,-2.96284][-0.223516,0.923333,-0.312244][0.258835,0.749551,0.515636][-0.834296,-0.0224978,-3.21591][-0.105047,0.924991,-0.365181][0.258246,0.797908,0.550007][3.09359,-1.77933,1.21278][-0.730706,0.680531,-0.0542743][0.322234,0.61464,0.42559][2.79373,-1.89101,2.23773][-0.676399,0.700124,-0.228717][0.322283,0.66427,0.483168][2.72963,-0.657087,2.32229][-0.495624,-0.812932,-0.305777][0.383471,0.663334,0.490304][2.72963,-0.657087,2.32229][-0.495624,-0.812932,-0.305777][0.383471,0.663334,0.490304][2.96562,-0.552073,1.34694][-0.444876,-0.879371,-0.169681][0.384694,0.615901,0.442003][3.09359,-1.77933,1.21278][-0.730706,0.680531,-0.0542743][0.322234,0.61464,0.42559][2.73444,-0.625693,2.32764][0.418176,0.859901,0.292745][0.383471,0.663334,0.490304][2.81623,-1.9127,2.24553][0.639048,-0.740895,0.20662][0.322283,0.66427,0.483168][3.11795,-1.80029,1.21483][0.676711,-0.734825,0.0457509][0.322234,0.61464,0.42559][3.11795,-1.80029,1.21483][0.676711,-0.734825,0.0457509][0.322234,0.61464,0.42559][3.02034,-0.553093,1.35968][0.785288,0.581227,0.213305][0.377067,0.615868,0.433021][2.73444,-0.625693,2.32764][0.418176,0.859901,0.292745][0.383471,0.663334,0.490304][0.817475,-0.817466,3.87799][0.102643,0.829556,0.548909][0.383216,0.79224,0.446754][0.843079,-2.12904,3.87564][0.161161,-0.795555,0.584055][0.322237,0.79058,0.42118][1.63834,-2.08587,3.58436][0.355331,-0.770133,0.52975][0.322116,0.742747,0.47808][1.63834,-2.08587,3.58436][0.355331,-0.770133,0.52975][0.322116,0.742747,0.47808][1.58654,-0.778515,3.59757][0.229224,0.830205,0.50815][0.383076,0.745452,0.496512][0.817475,-0.817466,3.87799][0.102643,0.829556,0.548909][0.383216,0.79224,0.446754][1.62586,-2.06311,3.56529][-0.373386,0.733312,-0.568188][0.322116,0.742747,0.47808][0.837331,-2.10567,3.85424][-0.169088,0.76506,-0.621363][0.322237,0.79058,0.42118][0.816182,-0.848128,3.86822][-0.126393,-0.762551,-0.634461][0.383216,0.79224,0.446754][0.816182,-0.848128,3.86822][-0.126393,-0.762551,-0.634461][0.383216,0.79224,0.446754][1.58385,-0.80939,3.5888][-0.266428,-0.776867,-0.570521][0.383076,0.745452,0.496512][1.62586,-2.06311,3.56529][-0.373386,0.733312,-0.568188][0.322116,0.742747,0.47808][0.431952,3.0518,1.25842][-0.518977,-0.826353,-0.218642][0.0917645,0.736037,0.140006][-0.00156569,3.0927,1.25499][0.014065,-0.967749,-0.251524][0.122579,0.735383,0.149037][-0.00156116,3.17429,0.291697][-0.00228979,-0.997948,0.0639822][0.123202,0.68665,0.14987][-0.00156116,3.17429,0.291697][-0.00228979,-0.997948,0.0639822][0.123202,0.68665,0.14987][0.455706,3.11552,0.283657][-0.693855,-0.718912,0.0416145][0.0894926,0.686264,0.137714][0.431952,3.0518,1.25842][-0.518977,-0.826353,-0.218642][0.0917645,0.736037,0.140006][-0.00139141,3.20641,0.289352][-0.00523484,0.997903,-0.0645084][0.123202,0.68665,0.14987][-0.00164604,3.1239,1.263][-0.0142893,0.964754,0.262766][0.122579,0.735383,0.149037][0.47516,3.13784,0.777249][0.647909,0.759703,0.0553591][0.090419,0.711349,0.139879][0.47516,3.13784,0.777249][0.647909,0.759703,0.0553591][0.090419,0.711349,0.139879][0.482024,3.13394,0.281348][0.803506,0.590801,-0.0730293][0.0894926,0.686264,0.137714][-0.00139141,3.20641,0.289352][-0.00523484,0.997903,-0.0645084][0.123202,0.68665,0.14987][-0.00167966,2.26915,2.77135][0.0106729,0.7275,0.686024][0.12207,0.822804,0.13162][0.476759,2.25482,2.6961][0.782534,0.461023,0.418447][0.0920814,0.820628,0.125005][0.483384,2.7941,1.82954][0.81431,0.501022,0.293045][0.0894868,0.768472,0.130641][0.483384,2.7941,1.82954][0.81431,0.501022,0.293045][0.0894868,0.768472,0.130641][-0.00143552,2.82005,1.91828][0.0080464,0.872436,0.488661][0.122661,0.771398,0.140757][-0.00167966,2.26915,2.77135][0.0106729,0.7275,0.686024][0.12207,0.822804,0.13162][-0.00164342,2.79191,1.90262][-0.00562702,-0.873403,-0.486966][0.122661,0.771398,0.140757][-0.0017848,2.24573,2.74924][-0.0069299,-0.727292,-0.686293][0.12207,0.822804,0.13162][-0.454735,2.24451,2.68668][0.614082,-0.582497,-0.532543][0.152111,0.820493,0.124768][-0.454735,2.24451,2.68668][0.614082,-0.582497,-0.532543][0.152111,0.820493,0.124768][-0.460707,2.78207,1.82331][0.609843,-0.703015,-0.36587][0.154656,0.769061,0.131067][-0.00164342,2.79191,1.90262][-0.00562702,-0.873403,-0.486966][0.122661,0.771398,0.140757][2.69258,-0.185545,-1.77303][0.404858,0.911755,-0.0692282][0.383707,0.463359,0.499289][2.77053,-1.45035,-2.0378][0.596249,-0.682022,-0.423478][0.32202,0.457906,0.491649][2.27599,-1.25024,-2.75618][0.480866,-0.608663,-0.631108][0.321822,0.423564,0.585454][2.27599,-1.25024,-2.75618][0.480866,-0.608663,-0.631108][0.321822,0.423564,0.585454][2.21111,-0.101282,-2.491][0.350282,0.916655,-0.192472][0.258692,0.994633,0.522975][2.69258,-0.185545,-1.77303][0.404858,0.911755,-0.0692282][0.383707,0.463359,0.499289][2.2589,-1.23306,-2.73496][-0.511954,0.56409,0.647846][0.321822,0.423564,0.585454][2.74904,-1.43093,-2.02371][-0.633009,0.643723,0.430023][0.32202,0.457906,0.491649][2.68785,-0.217359,-1.7747][-0.49831,-0.858197,0.123231][0.383707,0.463359,0.499289][2.68785,-0.217359,-1.7747][-0.49831,-0.858197,0.123231][0.383707,0.463359,0.499289][2.20706,-0.133235,-2.49112][-0.404123,-0.877742,0.257399][0.258692,0.994633,0.522975][2.2589,-1.23306,-2.73496][-0.511954,0.56409,0.647846][0.321822,0.423564,0.585454][2.41117,1.71095,0.578469][0.852218,0.522503,0.0267448][0.0396574,0.551183,0.134063][2.36657,1.64622,1.15334][0.583652,0.253493,0.771422][0.00691238,0.553027,0.130052][2.799,0.661845,1.00933][0.606394,0.110545,0.787443][0.00582637,0.493984,0.124887][2.799,0.661845,1.00933][0.606394,0.110545,0.787443][0.00582637,0.493984,0.124887][2.84577,0.735718,0.43226][0.940362,0.339967,0.0119401][0.0400176,0.492572,0.12781][2.41117,1.71095,0.578469][0.852218,0.522503,0.0267448][0.0396574,0.551183,0.134063][2.34718,1.63774,1.12907][-0.684109,-0.336338,-0.647203][0.00691238,0.553027,0.130052][2.81556,0.724563,0.431494][-0.941628,-0.336653,-0.00148159][0.0400176,0.492572,0.12781][2.7754,0.655928,0.988232][-0.691129,-0.149169,-0.70717][0.00582637,0.493984,0.124887][-2.22326,-0.153952,-2.4919][0.40865,-0.869772,0.276589][0.257941,0.707751,0.433948][-2.704,-0.234124,-1.77544][0.498908,-0.856982,0.129123][0.257829,0.667917,0.501381][-2.76442,-1.47588,-2.02521][0.627952,0.643277,0.438031][0.193505,0.669388,0.509431][-2.76442,-1.47588,-2.02521][0.627952,0.643277,0.438031][0.193505,0.669388,0.509431][-2.2742,-1.25979,-2.73697][0.505109,0.572924,0.645463][0.193985,0.706203,0.434827][-2.22326,-0.153952,-2.4919][0.40865,-0.869772,0.276589][0.257941,0.707751,0.433948][-2.78546,-1.49566,-2.03946][-0.588031,-0.688154,-0.425046][0.193505,0.669388,0.509431][-2.70881,-0.202313,-1.77396][-0.405372,0.908736,-0.0993579][0.257829,0.667917,0.501381][-2.22736,-0.122006,-2.49193][-0.341956,0.917319,-0.20394][0.257941,0.707751,0.433948][-2.22736,-0.122006,-2.49193][-0.341956,0.917319,-0.20394][0.257941,0.707751,0.433948][-2.2913,-1.27689,-2.75825][-0.482728,-0.606848,-0.631434][0.193985,0.706203,0.434827][-2.78546,-1.49566,-2.03946][-0.588031,-0.688154,-0.425046][0.193505,0.669388,0.509431][-0.00179911,3.06307,-0.410851][0.00468728,0.964557,-0.263834][0.123175,0.651055,0.14272][0.479169,3.02527,-0.326255][0.808161,0.569296,-0.150923][0.0899263,0.654763,0.132036][0.470977,2.68841,-1.34096][0.786656,0.545298,-0.28952][0.0928212,0.60054,0.126884][0.470977,2.68841,-1.34096][0.786656,0.545298,-0.28952][0.0928212,0.60054,0.126884][-0.00181651,2.72465,-1.40212][0.00533243,0.877296,-0.47992][0.122609,0.598443,0.133925][-0.00179911,3.06307,-0.410851][0.00468728,0.964557,-0.263834][0.123175,0.651055,0.14272][0.452196,3.00821,-0.321939][-0.684564,-0.700337,0.20224][0.0899263,0.654763,0.132036][0.455706,3.11552,0.283657][-0.693855,-0.718912,0.0416145][0.0894926,0.686264,0.137714][-0.00156116,3.17429,0.291697][-0.00228979,-0.997948,0.0639822][0.123202,0.68665,0.14987][-0.00156116,3.17429,0.291697][-0.00228979,-0.997948,0.0639822][0.123202,0.68665,0.14987][-0.456639,3.01185,-0.322905][0.575622,-0.786026,0.225438][0.155669,0.654518,0.132195][0.452196,3.00821,-0.321939][-0.684564,-0.700337,0.20224][0.0899263,0.654763,0.132036][-0.439659,2.00212,-2.21749][0.570681,-0.562051,0.598683][0.151383,0.543717,0.118201][-0.431157,1.07976,-2.84368][0.558562,-0.388376,0.732921][0.150123,0.487028,0.110712][0.425388,1.07971,-2.84008][-0.671995,-0.343795,0.655918][0.0933338,0.487511,0.11073][0.425388,1.07971,-2.84008][-0.671995,-0.343795,0.655918][0.0933338,0.487511,0.11073][0.434317,1.99962,-2.21485][-0.663085,-0.510984,0.547004][0.092968,0.543982,0.118273][-0.439659,2.00212,-2.21749][0.570681,-0.562051,0.598683][0.151383,0.543717,0.118201][-0.00194788,2.03588,-2.28594][-0.00820846,0.669748,-0.742543][0.122414,0.542694,0.12427][0.46134,2.01152,-2.22771][0.793735,0.411086,-0.448323][0.092968,0.543982,0.118273][0.409481,1.10514,-2.88667][0.620142,0.363519,-0.695181][0.0958445,0.487544,0.111807][-2.83335,-1.91494,2.24536][-0.642591,-0.739103,0.201997][0.193062,0.444638,0.518192][-2.75157,-0.626635,2.32732][-0.426626,0.864279,0.266481][0.257148,0.450117,0.504235][-3.00277,-0.532609,1.35064][-0.394637,0.9022,0.17406][0.259061,0.501074,0.546282][-3.00277,-0.532609,1.35064][-0.394637,0.9022,0.17406][0.259061,0.501074,0.546282][-3.13456,-1.8074,1.21504][-0.682504,-0.72855,0.0583348][0.19303,0.498712,0.575772][-2.83335,-1.91494,2.24536][-0.642591,-0.739103,0.201997][0.193062,0.444638,0.518192][-2.99753,-0.564103,1.3464][0.514663,-0.835736,-0.191488][0.259061,0.501074,0.546282][-2.74674,-0.658047,2.3221][0.511003,-0.805543,-0.299959][0.257148,0.450117,0.504235][-2.81071,-1.89335,2.23768][0.680268,0.697797,-0.22431][0.193062,0.444638,0.518192][-2.81071,-1.89335,2.23768][0.680268,0.697797,-0.22431][0.193062,0.444638,0.518192][-3.11038,-1.78627,1.21251][0.725283,0.684898,-0.06985][0.19303,0.498712,0.575772][-2.99753,-0.564103,1.3464][0.514663,-0.835736,-0.191488][0.259061,0.501074,0.546282][-2.3097,-1.98528,3.03424][0.558024,0.718447,-0.415262][0.194565,0.423759,0.434748][-2.81071,-1.89335,2.23768][0.680268,0.697797,-0.22431][0.193062,0.444638,0.518192][-2.74674,-0.658047,2.3221][0.511003,-0.805543,-0.299959][0.257148,0.450117,0.504235][-2.74674,-0.658047,2.3221][0.511003,-0.805543,-0.299959][0.257148,0.450117,0.504235][-2.25528,-0.745193,3.08003][0.417457,-0.787716,-0.453027][0.383983,0.981571,0.57919][-2.3097,-1.98528,3.03424][0.558024,0.718447,-0.415262][0.194565,0.423759,0.434748][-2.75157,-0.626635,2.32732][-0.426626,0.864279,0.266481][0.257148,0.450117,0.504235][-2.83335,-1.91494,2.24536][-0.642591,-0.739103,0.201997][0.193062,0.444638,0.518192][-2.32843,-2.00732,3.0484][-0.536184,-0.748444,0.390305][0.194565,0.423759,0.434748][-2.32843,-2.00732,3.0484][-0.536184,-0.748444,0.390305][0.194565,0.423759,0.434748][-2.25922,-0.714024,3.08712][-0.353589,0.84978,0.390959][0.383983,0.981571,0.57919][-2.75157,-0.626635,2.32732][-0.426626,0.864279,0.266481][0.257148,0.450117,0.504235][-2.81833,0.735268,0.436089][0.949303,-0.310623,-0.0483396][0.0438394,0.928207,0.130162][-2.3928,1.69957,0.580873][0.833379,-0.551743,-0.0325554][0.042085,0.870539,0.134398][-2.34627,1.6415,1.13234][0.670654,-0.339395,-0.659572][0.00874363,0.867728,0.130848][-2.34627,1.6415,1.13234][0.670654,-0.339395,-0.659572][0.00874363,0.867728,0.130848][-2.77263,0.657628,1.02393][0.943354,-0.303205,-0.134718][0.00815627,0.927675,0.126937][-2.81833,0.735268,0.436089][0.949303,-0.310623,-0.0483396][0.0438394,0.928207,0.130162][2.31143,-2.00692,3.04841][0.539527,-0.744597,0.393048][0.322417,0.702797,0.579277][2.24217,-0.713833,3.08728][0.35036,0.842454,0.409291][0.383305,0.705474,0.579042][1.58654,-0.778515,3.59757][0.229224,0.830205,0.50815][0.383076,0.745452,0.496512][1.58654,-0.778515,3.59757][0.229224,0.830205,0.50815][0.383076,0.745452,0.496512][1.63834,-2.08587,3.58436][0.355331,-0.770133,0.52975][0.322116,0.742747,0.47808][2.31143,-2.00692,3.04841][0.539527,-0.744597,0.393048][0.322417,0.702797,0.579277][1.58385,-0.80939,3.5888][-0.266428,-0.776867,-0.570521][0.383076,0.745452,0.496512][2.23823,-0.744978,3.08008][-0.406118,-0.791608,-0.456536][0.383305,0.705474,0.579042][2.29264,-1.98494,3.03423][-0.566986,0.707131,-0.422483][0.322417,0.702797,0.579277][2.29264,-1.98494,3.03423][-0.566986,0.707131,-0.422483][0.322417,0.702797,0.579277][1.62586,-2.06311,3.56529][-0.373386,0.733312,-0.568188][0.322116,0.742747,0.47808][1.58385,-0.80939,3.5888][-0.266428,-0.776867,-0.570521][0.383076,0.745452,0.496512][-1.69086,2.41628,1.23559][0.532131,-0.560318,-0.634729][0.00980827,0.812917,0.134722][-0.933068,2.94113,0.752344][0.399055,-0.913696,-0.0769105][0.0420242,0.764193,0.14154][-0.867971,2.8661,1.29781][0.296417,-0.647669,-0.701899][0.00708411,0.761234,0.136735][-1.76404,2.5002,0.689386][-0.648453,0.758796,0.0611345][0.0420333,0.815362,0.138389][-1.70596,2.43214,1.25921][-0.465267,0.475843,0.746392][0.00980827,0.812917,0.134722][-0.87676,2.88501,1.32236][-0.273056,0.561724,0.780965][0.00708411,0.761234,0.136735][-0.87676,2.88501,1.32236][-0.273056,0.561724,0.780965][0.00708411,0.761234,0.136735][-0.945829,2.97056,0.755175][-0.395988,0.915134,0.0756457][0.0420242,0.764193,0.14154][-1.76404,2.5002,0.689386][-0.648453,0.758796,0.0611345][0.0420333,0.815362,0.138389][2.84577,0.735718,0.43226][0.940362,0.339967,0.0119401][0.0400176,0.492572,0.12781][2.7689,0.76547,-0.140449][0.902694,0.389607,-0.182621][0.0757113,0.49159,0.124314][2.33963,1.74815,0.00488892][0.459934,0.402086,-0.791699][0.0733595,0.551285,0.129571][2.33963,1.74815,0.00488892][0.459934,0.402086,-0.791699][0.0733595,0.551285,0.129571][2.41117,1.71095,0.578469][0.852218,0.522503,0.0267448][0.0396574,0.551183,0.134063][2.84577,0.735718,0.43226][0.940362,0.339967,0.0119401][0.0400176,0.492572,0.12781][2.32701,1.7364,0.0320902][-0.587686,-0.47177,0.657312][0.0733595,0.551285,0.129571][2.94517,0.218093,-0.172862][-0.775814,-0.248336,0.580037][0.0717128,0.459842,-0.0563793][2.81556,0.724563,0.431494][-0.941628,-0.336653,-0.00148159][0.0400176,0.492572,0.12781][2.81556,0.724563,0.431494][-0.941628,-0.336653,-0.00148159][0.0400176,0.492572,0.12781][2.34718,1.63774,1.12907][-0.684109,-0.336338,-0.647203][0.00691238,0.553027,0.130052][2.32701,1.7364,0.0320902][-0.587686,-0.47177,0.657312][0.0733595,0.551285,0.129571][-0.0017848,2.24573,2.74924][-0.0069299,-0.727292,-0.686293][0.12207,0.822804,0.13162][-0.00164342,2.79191,1.90262][-0.00562702,-0.873403,-0.486966][0.122661,0.771398,0.140757][0.456222,2.77878,1.8215][-0.718723,-0.608507,-0.336386][0.0894868,0.768472,0.130641][0.456222,2.77878,1.8215][-0.718723,-0.608507,-0.336386][0.0894868,0.768472,0.130641][0.449665,2.242,2.68431][-0.695915,-0.532774,-0.481513][0.0920814,0.820628,0.125005][-0.0017848,2.24573,2.74924][-0.0069299,-0.727292,-0.686293][0.12207,0.822804,0.13162][-0.40208,-0.887851,3.91155][0.560039,-0.123456,-0.819216][0.152785,0.995797,0.101235][-0.433397,0.344945,3.72479][0.603869,-0.1913,-0.773787][0.152196,0.931278,0.108863][-0.00214219,0.350078,3.76955][-0.00296997,-0.251391,-0.967881][0.122458,0.932611,0.112923][-0.00214219,0.350078,3.76955][-0.00296997,-0.251391,-0.967881][0.122458,0.932611,0.112923][-0.00229836,-0.894591,3.97655][0.334526,-0.716162,0.612539][0.122272,0.995171,0.103444][-0.40208,-0.887851,3.91155][0.560039,-0.123456,-0.819216][0.152785,0.995797,0.101235][-0.00209498,0.358101,3.80074][0.0107588,0.243431,0.969859][0.122458,0.932611,0.112923][-0.456378,0.350473,3.74667][-0.736745,0.158208,0.657402][0.152196,0.931278,0.108863][-0.439831,-0.896627,3.92995][-0.731186,0.0905333,0.676144][0.153903,0.995877,0.101092][-0.439831,-0.896627,3.92995][-0.731186,0.0905333,0.676144][0.153903,0.995877,0.101092][-0.00229836,-0.894591,3.97655][0.334526,-0.716162,0.612539][0.122272,0.995171,0.103444][-0.00209498,0.358101,3.80074][0.0107588,0.243431,0.969859][0.122458,0.932611,0.112923][-1.67621,2.5202,0.142718][0.455063,-0.619057,0.640067][0.0752269,0.813367,0.134259][-0.860013,2.96343,0.205665][0.261027,-0.705626,0.658754][0.0776681,0.761643,0.134545][-0.933068,2.94113,0.752344][0.399055,-0.913696,-0.0769105][0.0420242,0.764193,0.14154][-0.933068,2.94113,0.752344][0.399055,-0.913696,-0.0769105][0.0420242,0.764193,0.14154][-1.69086,2.41628,1.23559][0.532131,-0.560318,-0.634729][0.00980827,0.812917,0.134722][-1.67621,2.5202,0.142718][0.455063,-0.619057,0.640067][0.0752269,0.813367,0.134259][-0.945829,2.97056,0.755175][-0.395988,0.915134,0.0756457][0.0420242,0.764193,0.14154][-0.865412,2.98065,0.178993][-0.210076,0.595897,-0.775097][0.0776681,0.761643,0.134545][-1.6856,2.5355,0.115976][-0.362392,0.549636,-0.75271][0.0752269,0.813367,0.134259][-1.6856,2.5355,0.115976][-0.362392,0.549636,-0.75271][0.0752269,0.813367,0.134259][-1.76404,2.5002,0.689386][-0.648453,0.758796,0.0611345][0.0420333,0.815362,0.138389][-0.945829,2.97056,0.755175][-0.395988,0.915134,0.0756457][0.0420242,0.764193,0.14154][0.409481,1.10514,-2.88667][0.620142,0.363519,-0.695181][0.0958445,0.487544,0.111807][0.402035,0.161815,-3.24697][0.524593,0.236144,-0.817947][0.095475,0.437005,0.104914][-0.402864,0.158239,-3.23982][-0.425444,0.261331,-0.866431][0.146513,0.436358,0.104856][-0.402864,0.158239,-3.23982][-0.425444,0.261331,-0.866431][0.146513,0.436358,0.104856][-0.454151,1.08998,-2.86378][-0.70478,0.334538,-0.625595][0.150123,0.487028,0.110712][0.409481,1.10514,-2.88667][0.620142,0.363519,-0.695181][0.0958445,0.487544,0.111807][-0.00798893,-0.0822014,-3.31388][-0.00131288,-0.935468,-0.353408][0.121196,0.424907,0.104133][0.418454,0.145341,-3.19675][-0.716423,-0.234001,0.657253][0.0930802,0.436953,0.104294][0.425388,1.07971,-2.84008][-0.671995,-0.343795,0.655918][0.0933338,0.487511,0.11073][0.425388,1.07971,-2.84008][-0.671995,-0.343795,0.655918][0.0933338,0.487511,0.11073][-0.431157,1.07976,-2.84368][0.558562,-0.388376,0.732921][0.150123,0.487028,0.110712][-0.00798893,-0.0822014,-3.31388][-0.00131288,-0.935468,-0.353408][0.121196,0.424907,0.104133][-0.83448,-0.817458,3.87798][-0.100242,0.837595,0.537016][0.383367,0.894106,0.446805][-0.860166,-2.12888,3.87563][-0.149097,-0.799249,0.582212][0.322069,0.893345,0.421182][-0.00853968,-2.1428,3.96566][0.000479795,-0.80452,0.593925][0.322221,0.841962,0.403517][-0.00853968,-2.1428,3.96566][0.000479795,-0.80452,0.593925][0.322221,0.841962,0.403517][-0.00852442,-0.830411,3.96564][0.00139332,0.825683,0.564133][0.38324,0.84356,0.431525][-0.83448,-0.817458,3.87798][-0.100242,0.837595,0.537016][0.383367,0.894106,0.446805][-0.00854182,-2.1192,3.94374][-0.000322372,0.773597,-0.633678][0.322221,0.841962,0.403517][-0.85447,-2.10549,3.85424][0.160766,0.767337,-0.620764][0.322069,0.893345,0.421182][-0.833231,-0.848123,3.86821][0.116224,-0.777373,-0.61821][0.383367,0.894106,0.446805][-0.833231,-0.848123,3.86821][0.116224,-0.777373,-0.61821][0.383367,0.894106,0.446805][-0.00853395,-0.860981,3.9555][0.000541321,-0.767921,-0.640544][0.38324,0.84356,0.431525][-0.00854182,-2.1192,3.94374][-0.000322372,0.773597,-0.633678][0.322221,0.841962,0.403517][-0.00827026,-1.10476,-3.47189][-0.0134104,0.608666,0.793314][0.193133,0.846615,0.583032][0.835487,-1.09715,-3.40408][-0.140334,0.581736,0.80118][0.192975,0.900754,0.569808][0.815441,-0.042188,-3.21226][-0.112431,-0.887659,0.446566][0.258187,0.904681,0.550114][0.815441,-0.042188,-3.21226][-0.112431,-0.887659,0.446566][0.258187,0.904681,0.550114][-0.0086174,-0.0364635,-3.28992][0.004942,-0.881343,0.472452][0.258321,0.85161,0.561643][-0.00827026,-1.10476,-3.47189][-0.0134104,0.608666,0.793314][0.193133,0.846615,0.583032][0.816881,-0.0101729,-3.21547][0.0973907,0.931307,-0.350973][0.258187,0.904681,0.550114][0.840384,-1.11437,-3.43086][0.125892,-0.644232,-0.754398][0.192975,0.900754,0.569808][-0.00783968,-1.12236,-3.49886][0.0156311,-0.657932,-0.752915][0.193133,0.846615,0.583032][-0.00783968,-1.12236,-3.49886][0.0156311,-0.657932,-0.752915][0.193133,0.846615,0.583032][-0.00886393,-0.00448745,-3.29376][-0.00518041,0.923767,-0.38292][0.258321,0.85161,0.561643][0.816881,-0.0101729,-3.21547][0.0973907,0.931307,-0.350973][0.258187,0.904681,0.550114][-3.11038,-1.78627,1.21251][0.725283,0.684898,-0.06985][0.19303,0.498712,0.575772][-3.20187,-1.67345,0.0631728][0.723821,0.68398,0.0908571][0.193135,0.559355,0.592401][-3.13281,-0.441696,0.251909][0.534784,-0.842301,-0.0673421][0.257899,0.559585,0.564092][-3.13281,-0.441696,0.251909][0.534784,-0.842301,-0.0673421][0.257899,0.559585,0.564092][-2.99753,-0.564103,1.3464][0.514663,-0.835736,-0.191488][0.259061,0.501074,0.546282][-3.11038,-1.78627,1.21251][0.725283,0.684898,-0.06985][0.19303,0.498712,0.575772][-3.13786,-0.410046,0.255091][-0.447402,0.88939,0.0938962][0.257899,0.559585,0.564092][-3.2264,-1.69414,0.0604048][-0.683266,-0.724887,-0.0876666][0.193135,0.559355,0.592401][-3.13456,-1.8074,1.21504][-0.682504,-0.72855,0.0583348][0.19303,0.498712,0.575772][-3.13456,-1.8074,1.21504][-0.682504,-0.72855,0.0583348][0.19303,0.498712,0.575772][-3.00277,-0.532609,1.35064][-0.394637,0.9022,0.17406][0.259061,0.501074,0.546282][-3.13786,-0.410046,0.255091][-0.447402,0.88939,0.0938962][0.257899,0.559585,0.564092][3.12796,-0.403904,0.255315][0.441823,0.893485,0.0804775][0.383687,0.562068,0.42789][3.21699,-1.67795,0.0613367][0.685443,-0.722914,-0.0869679][0.322214,0.558969,0.408911][3.08534,-1.5573,-1.06963][0.674018,-0.703197,-0.226307][0.322159,0.504439,0.431856][3.08534,-1.5573,-1.06963][0.674018,-0.703197,-0.226307][0.322159,0.504439,0.431856][3.00581,-0.319696,-0.845777][0.501144,0.865236,-0.0148743][0.377083,0.50913,0.438865][3.12796,-0.403904,0.255315][0.441823,0.893485,0.0804775][0.383687,0.562068,0.42789][3.06109,-1.53754,-1.06193][-0.723827,0.648413,0.235871][0.322159,0.504439,0.431856][3.19251,-1.65715,0.0636978][-0.733463,0.675548,0.075272][0.322214,0.558969,0.408911][3.12289,-0.435547,0.252102][-0.546384,-0.83288,-0.0881776][0.383687,0.562068,0.42789][3.12289,-0.435547,0.252102][-0.546384,-0.83288,-0.0881776][0.383687,0.562068,0.42789][2.96618,-0.332327,-0.835826][-0.437738,-0.899039,-0.0107191][0.382133,0.509298,0.445981][3.06109,-1.53754,-1.06193][-0.723827,0.648413,0.235871][0.322159,0.504439,0.431856][-0.459684,3.11999,0.283386][0.556191,-0.83008,0.0402472][0.155502,0.686294,0.137325][-0.00156116,3.17429,0.291697][-0.00228979,-0.997948,0.0639822][0.123202,0.68665,0.14987][-0.00156569,3.0927,1.25499][0.014065,-0.967749,-0.251524][0.122579,0.735383,0.149037][-0.00156569,3.0927,1.25499][0.014065,-0.967749,-0.251524][0.122579,0.735383,0.149037][-0.461793,3.03361,1.25569][0.354295,-0.872468,-0.336564][0.155439,0.737856,0.137559][-0.459684,3.11999,0.283386][0.556191,-0.83008,0.0402472][0.155502,0.686294,0.137325][-0.00164604,3.1239,1.263][-0.0142893,0.964754,0.262766][0.122579,0.735383,0.149037][-0.00139141,3.20641,0.289352][-0.00523484,0.997903,-0.0645084][0.123202,0.68665,0.14987][-0.481091,3.14388,0.280484][-0.684298,0.727551,-0.0490481][0.155502,0.686294,0.137325][-0.481091,3.14388,0.280484][-0.684298,0.727551,-0.0490481][0.155502,0.686294,0.137325][-0.4757,3.14389,0.778739][-0.590632,0.806597,0.0235671][0.156581,0.713373,0.138639][-0.00164604,3.1239,1.263][-0.0142893,0.964754,0.262766][0.122579,0.735383,0.149037][-0.85611,-1.1495,-3.43173][-0.113288,-0.653134,-0.74872][0.193383,0.792499,0.569308][-0.834296,-0.0224978,-3.21591][-0.105047,0.924991,-0.365181][0.258246,0.797908,0.550007][-0.00886393,-0.00448745,-3.29376][-0.00518041,0.923767,-0.38292][0.258321,0.85161,0.561643][-0.00886393,-0.00448745,-3.29376][-0.00518041,0.923767,-0.38292][0.258321,0.85161,0.561643][-0.00783968,-1.12236,-3.49886][0.0156311,-0.657932,-0.752915][0.193133,0.846615,0.583032][-0.85611,-1.1495,-3.43173][-0.113288,-0.653134,-0.74872][0.193383,0.792499,0.569308][-0.0086174,-0.0364635,-3.28992][0.004942,-0.881343,0.472452][0.258321,0.85161,0.561643][-0.832448,-0.0544917,-3.2127][0.122126,-0.883862,0.451523][0.258246,0.797908,0.550007][-0.85182,-1.13182,-3.40515][0.123717,0.59331,0.79541][0.193383,0.792499,0.569308][-0.85182,-1.13182,-3.40515][0.123717,0.59331,0.79541][0.193383,0.792499,0.569308][-0.00827026,-1.10476,-3.47189][-0.0134104,0.608666,0.793314][0.193133,0.846615,0.583032][-0.0086174,-0.0364635,-3.28992][0.004942,-0.881343,0.472452][0.258321,0.85161,0.561643][0.434317,1.99962,-2.21485][-0.663085,-0.510984,0.547004][0.092968,0.543982,0.118273][0.443845,2.67313,-1.33274][-0.663639,-0.658855,0.35425][0.0928212,0.60054,0.126884][-0.448826,2.67612,-1.33442][0.575637,-0.72089,0.385953][0.152244,0.600114,0.126707][-0.448826,2.67612,-1.33442][0.575637,-0.72089,0.385953][0.152244,0.600114,0.126707][-0.439659,2.00212,-2.21749][0.570681,-0.562051,0.598683][0.151383,0.543717,0.118201][0.434317,1.99962,-2.21485][-0.663085,-0.510984,0.547004][0.092968,0.543982,0.118273][-0.00181651,2.72465,-1.40212][0.00533243,0.877296,-0.47992][0.122609,0.598443,0.133925][0.470977,2.68841,-1.34096][0.786656,0.545298,-0.28952][0.0928212,0.60054,0.126884][0.46134,2.01152,-2.22771][0.793735,0.411086,-0.448323][0.092968,0.543982,0.118273][0.46134,2.01152,-2.22771][0.793735,0.411086,-0.448323][0.092968,0.543982,0.118273][-0.00194788,2.03588,-2.28594][-0.00820846,0.669748,-0.742543][0.122414,0.542694,0.12427][-0.00181651,2.72465,-1.40212][0.00533243,0.877296,-0.47992][0.122609,0.598443,0.133925][-3.2264,-1.69414,0.0604048][-0.683266,-0.724887,-0.0876666][0.193135,0.559355,0.592401][-3.13786,-0.410046,0.255091][-0.447402,0.88939,0.0938962][0.257899,0.559585,0.564092][-3.0004,-0.331249,-0.845752][-0.791769,0.60178,-0.104703][0.25087,0.61752,0.560029][-3.0004,-0.331249,-0.845752][-0.791769,0.60178,-0.104703][0.25087,0.61752,0.560029][-3.10166,-1.58622,-1.06967][-0.677434,-0.703791,-0.213919][0.193322,0.618734,0.569352][-3.2264,-1.69414,0.0604048][-0.683266,-0.724887,-0.0876666][0.193135,0.559355,0.592401][0.380698,3.16312,0.243216][0.109249,0.805216,-0.582831][0.0757006,0.689107,0.137835][0.383666,3.14302,0.778576][0.148918,0.983252,0.105069][0.0417376,0.690107,0.144003][0.959791,2.96343,0.753194][0.418425,0.90524,0.0738976][0.041317,0.656892,0.142305][0.959791,2.96343,0.753194][0.418425,0.90524,0.0738976][0.041317,0.656892,0.142305][0.867454,2.97932,0.17813][0.184963,0.576482,-0.7959][0.0777165,0.659474,0.134888][0.380698,3.16312,0.243216][0.109249,0.805216,-0.582831][0.0757006,0.689107,0.137835][0.946507,2.9342,0.750628][-0.416431,-0.905913,-0.0768578][0.041317,0.656892,0.142305][0.377115,3.11162,0.775657][-0.157958,-0.983003,-0.0935691][0.0417376,0.690107,0.144003][0.375495,3.13283,0.252832][-0.12153,-0.840139,0.52858][0.0757006,0.689107,0.137835][0.375495,3.13283,0.252832][-0.12153,-0.840139,0.52858][0.0757006,0.689107,0.137835][0.861871,2.96253,0.205041][-0.253869,-0.689402,0.678436][0.0777165,0.659474,0.134888][0.946507,2.9342,0.750628][-0.416431,-0.905913,-0.0768578][0.041317,0.656892,0.142305][-0.456639,3.01185,-0.322905][0.575622,-0.786026,0.225438][0.155669,0.654518,0.132195][-0.448826,2.67612,-1.33442][0.575637,-0.72089,0.385953][0.152244,0.600114,0.126707][0.443845,2.67313,-1.33274][-0.663639,-0.658855,0.35425][0.0928212,0.60054,0.126884][0.443845,2.67313,-1.33274][-0.663639,-0.658855,0.35425][0.0928212,0.60054,0.126884][0.452196,3.00821,-0.321939][-0.684564,-0.700337,0.20224][0.0899263,0.654763,0.132036][-0.456639,3.01185,-0.322905][0.575622,-0.786026,0.225438][0.155669,0.654518,0.132195][0.449665,2.242,2.68431][-0.695915,-0.532774,-0.481513][0.0920814,0.820628,0.125005][0.439281,1.39697,3.32895][-0.697975,-0.342573,-0.628868][0.0938145,0.875172,0.116321][-0.00196266,1.39878,3.3865][-0.00591267,-0.474388,-0.880296][0.121619,0.876369,0.121958][-0.00196266,1.39878,3.3865][-0.00591267,-0.474388,-0.880296][0.121619,0.876369,0.121958][-0.0017848,2.24573,2.74924][-0.0069299,-0.727292,-0.686293][0.12207,0.822804,0.13162][0.449665,2.242,2.68431][-0.695915,-0.532774,-0.481513][0.0920814,0.820628,0.125005][-0.00189996,1.41405,3.41486][0.00986744,0.474724,0.88008][0.121619,0.876369,0.121958][0.466362,1.40517,3.34433][0.808777,0.279408,0.517505][0.0938145,0.875172,0.116321][0.476759,2.25482,2.6961][0.782534,0.461023,0.418447][0.0920814,0.820628,0.125005][0.476759,2.25482,2.6961][0.782534,0.461023,0.418447][0.0920814,0.820628,0.125005][-0.00167966,2.26915,2.77135][0.0106729,0.7275,0.686024][0.12207,0.822804,0.13162][-0.00189996,1.41405,3.41486][0.00986744,0.474724,0.88008][0.121619,0.876369,0.121958][2.77053,-1.45035,-2.0378][0.596249,-0.682022,-0.423478][0.32202,0.457906,0.491649][2.69258,-0.185545,-1.77303][0.404858,0.911755,-0.0692282][0.383707,0.463359,0.499289][3.00581,-0.319696,-0.845777][0.501144,0.865236,-0.0148743][0.377083,0.50913,0.438865][3.00581,-0.319696,-0.845777][0.501144,0.865236,-0.0148743][0.377083,0.50913,0.438865][3.08534,-1.5573,-1.06963][0.674018,-0.703197,-0.226307][0.322159,0.504439,0.431856][2.77053,-1.45035,-2.0378][0.596249,-0.682022,-0.423478][0.32202,0.457906,0.491649][0.843079,-2.12904,3.87564][0.161161,-0.795555,0.584055][0.322237,0.79058,0.42118][0.817475,-0.817466,3.87799][0.102643,0.829556,0.548909][0.383216,0.79224,0.446754][-0.00852442,-0.830411,3.96564][0.00139332,0.825683,0.564133][0.38324,0.84356,0.431525][-0.00852442,-0.830411,3.96564][0.00139332,0.825683,0.564133][0.38324,0.84356,0.431525][-0.00853968,-2.1428,3.96566][0.000479795,-0.80452,0.593925][0.322221,0.841962,0.403517][0.843079,-2.12904,3.87564][0.161161,-0.795555,0.584055][0.322237,0.79058,0.42118][-0.00853395,-0.860981,3.9555][0.000541321,-0.767921,-0.640544][0.38324,0.84356,0.431525][0.816182,-0.848128,3.86822][-0.126393,-0.762551,-0.634461][0.383216,0.79224,0.446754][0.837331,-2.10567,3.85424][-0.169088,0.76506,-0.621363][0.322237,0.79058,0.42118][0.837331,-2.10567,3.85424][-0.169088,0.76506,-0.621363][0.322237,0.79058,0.42118][-0.00854182,-2.1192,3.94374][-0.000322372,0.773597,-0.633678][0.322221,0.841962,0.403517][-0.00853395,-0.860981,3.9555][0.000541321,-0.767921,-0.640544][0.38324,0.84356,0.431525][2.24217,-0.713833,3.08728][0.35036,0.842454,0.409291][0.383305,0.705474,0.579042][2.31143,-2.00692,3.04841][0.539527,-0.744597,0.393048][0.322417,0.702797,0.579277][2.81623,-1.9127,2.24553][0.639048,-0.740895,0.20662][0.322283,0.66427,0.483168][2.81623,-1.9127,2.24553][0.639048,-0.740895,0.20662][0.322283,0.66427,0.483168][2.73444,-0.625693,2.32764][0.418176,0.859901,0.292745][0.383471,0.663334,0.490304][2.24217,-0.713833,3.08728][0.35036,0.842454,0.409291][0.383305,0.705474,0.579042][2.79373,-1.89101,2.23773][-0.676399,0.700124,-0.228717][0.322283,0.66427,0.483168][2.29264,-1.98494,3.03423][-0.566986,0.707131,-0.422483][0.322417,0.702797,0.579277][2.23823,-0.744978,3.08008][-0.406118,-0.791608,-0.456536][0.383305,0.705474,0.579042][2.23823,-0.744978,3.08008][-0.406118,-0.791608,-0.456536][0.383305,0.705474,0.579042][2.72963,-0.657087,2.32229][-0.495624,-0.812932,-0.305777][0.383471,0.663334,0.490304][2.79373,-1.89101,2.23773][-0.676399,0.700124,-0.228717][0.322283,0.66427,0.483168][0.383666,3.14302,0.778576][0.148918,0.983252,0.105069][0.0417376,0.690107,0.144003][0.380698,3.16312,0.243216][0.109249,0.805216,-0.582831][0.0757006,0.689107,0.137835][-0.311614,3.1317,0.199353][-0.0839285,0.772469,-0.629482][0.0784967,0.729083,0.134711][-0.311614,3.1317,0.199353][-0.0839285,0.772469,-0.629482][0.0784967,0.729083,0.134711][-0.307573,3.15821,0.779807][-0.12741,0.988654,0.0795647][0.0420557,0.727795,0.143515][0.383666,3.14302,0.778576][0.148918,0.983252,0.105069][0.0417376,0.690107,0.144003][-0.303747,3.06351,0.186486][0.137847,-0.881639,-0.451343][0.0816959,0.729808,0.130355][-0.311614,3.1317,0.199353][-0.0839285,0.772469,-0.629482][0.0784967,0.729083,0.134711][0.380698,3.16312,0.243216][0.109249,0.805216,-0.582831][0.0757006,0.689107,0.137835][0.380698,3.16312,0.243216][0.109249,0.805216,-0.582831][0.0757006,0.689107,0.137835][0.198387,3.07086,0.223695][0.102126,-0.97233,-0.210105][0.0824755,0.698878,0.131107][-0.303747,3.06351,0.186486][0.137847,-0.881639,-0.451343][0.0816959,0.729808,0.130355][-2.32583,1.74739,0.035439][0.553635,-0.480632,0.680059][0.0761542,0.869171,0.130493][-1.67621,2.5202,0.142718][0.455063,-0.619057,0.640067][0.0752269,0.813367,0.134259][-1.69086,2.41628,1.23559][0.532131,-0.560318,-0.634729][0.00980827,0.812917,0.134722][-1.69086,2.41628,1.23559][0.532131,-0.560318,-0.634729][0.00980827,0.812917,0.134722][-2.3928,1.69957,0.580873][0.833379,-0.551743,-0.0325554][0.042085,0.870539,0.134398][-2.32583,1.74739,0.035439][0.553635,-0.480632,0.680059][0.0761542,0.869171,0.130493][-1.76404,2.5002,0.689386][-0.648453,0.758796,0.0611345][0.0420333,0.815362,0.138389][-1.6856,2.5355,0.115976][-0.362392,0.549636,-0.75271][0.0752269,0.813367,0.134259][-2.33814,1.75914,0.00809491][-0.450909,0.399869,-0.797989][0.0761542,0.869171,0.130493][-2.33814,1.75914,0.00809491][-0.450909,0.399869,-0.797989][0.0761542,0.869171,0.130493][-2.42022,1.71639,0.582329][-0.850573,0.52476,0.0339516][0.042085,0.870539,0.134398][-1.76404,2.5002,0.689386][-0.648453,0.758796,0.0611345][0.0420333,0.815362,0.138389][1.69068,2.49196,0.139967][-0.444137,-0.605327,0.660546][0.0738473,0.606249,0.133647][2.32701,1.7364,0.0320902][-0.587686,-0.47177,0.657312][0.0733595,0.551285,0.129571][2.34718,1.63774,1.12907][-0.684109,-0.336338,-0.647203][0.00691238,0.553027,0.130052][2.34718,1.63774,1.12907][-0.684109,-0.336338,-0.647203][0.00691238,0.553027,0.130052][1.74965,2.46013,0.68489][-0.674872,-0.737,-0.0371245][0.0402491,0.605687,0.138784][1.69068,2.49196,0.139967][-0.444137,-0.605327,0.660546][0.0738473,0.606249,0.133647][2.41117,1.71095,0.578469][0.852218,0.522503,0.0267448][0.0396574,0.551183,0.134063][2.33963,1.74815,0.00488892][0.459934,0.402086,-0.791699][0.0733595,0.551285,0.129571][1.70011,2.50711,0.113156][0.365128,0.544584,-0.755056][0.0738473,0.606249,0.133647][1.70011,2.50711,0.113156][0.365128,0.544584,-0.755056][0.0738473,0.606249,0.133647][1.77067,2.48445,0.686847][0.652163,0.756492,0.0490256][0.0402491,0.605687,0.138784][2.41117,1.71095,0.578469][0.852218,0.522503,0.0267448][0.0396574,0.551183,0.134063][2.98927,-0.46587,-0.292313][-0.0201717,0.00355392,-0.0580878][0.0778442,0.422099,-0.161739][2.69962,0.737612,-0.118097][-0.546647,0.0963103,-1.57416][0.0763672,0.491627,0.12415][2.7689,0.76547,-0.140449][0.902694,0.389607,-0.182621][0.0757113,0.49159,0.124314][3.13047,-0.505293,0.252063][0.98362,0.180199,-0.00448259][0.0404217,0.423585,-0.166594][3.05612,-0.460252,-0.318511][0.406221,-0.303561,-0.861879][0.0732388,0.422476,-0.159868][2.9735,0.22733,-0.185076][0.812115,0.268752,-0.51792][0.0717128,0.459842,-0.0563793][-0.309127,3.11315,0.225567][0.10384,-0.895479,0.432821][0.0784967,0.729083,0.134711][0.375495,3.13283,0.252832][-0.12153,-0.840139,0.52858][0.0757006,0.689107,0.137835][0.377115,3.11162,0.775657][-0.157958,-0.983003,-0.0935691][0.0417376,0.690107,0.144003][0.377115,3.11162,0.775657][-0.157958,-0.983003,-0.0935691][0.0417376,0.690107,0.144003][-0.302092,3.12661,0.776934][0.134953,-0.988056,-0.0743873][0.0420557,0.727795,0.143515][-0.309127,3.11315,0.225567][0.10384,-0.895479,0.432821][0.0784967,0.729083,0.134711][-0.309127,3.11315,0.225567][0.10384,-0.895479,0.432821][0.0784967,0.729083,0.134711][0.198387,3.07086,0.223695][0.102126,-0.97233,-0.210105][0.0824755,0.698878,0.131107][0.375495,3.13283,0.252832][-0.12153,-0.840139,0.52858][0.0757006,0.689107,0.137835][-2.77263,0.657628,1.02393][0.943354,-0.303205,-0.134718][0.00815627,0.927675,0.126937][-3.09563,-0.564367,0.78642][0.756943,-0.589363,-0.282293][0.014992,0.996242,0.122372][-3.12069,-0.510653,0.252348][0.258091,-0.814999,-0.518812][0.0467371,0.996794,0.123721][-3.12069,-0.510653,0.252348][0.258091,-0.814999,-0.518812][0.0467371,0.996794,0.123721][-2.81833,0.735268,0.436089][0.949303,-0.310623,-0.0483396][0.0438394,0.928207,0.130162][-2.77263,0.657628,1.02393][0.943354,-0.303205,-0.134718][0.00815627,0.927675,0.126937][-2.84863,0.746112,0.437211][-0.94997,0.311733,0.0195098][0.0438394,0.928207,0.130162][-2.79436,0.781803,-0.136677][-0.53464,0.306317,-0.787611][0.0799988,0.928217,0.126004][-3.08272,-0.449443,-0.31754][-0.557003,0.131026,-0.820109][0.0795617,0.9968,0.122028][-3.08272,-0.449443,-0.31754][-0.557003,0.131026,-0.820109][0.0795617,0.9968,0.122028][-3.12069,-0.510653,0.252348][0.258091,-0.814999,-0.518812][0.0467371,0.996794,0.123721][-2.84863,0.746112,0.437211][-0.94997,0.311733,0.0195098][0.0438394,0.928207,0.130162][-3.01469,-0.209125,-0.265301][0.585708,-0.243549,0.773065][0.0794311,0.984106,0.123822][-2.79713,0.781839,-0.0815954][0.76379,-0.340178,0.548548][0.0753488,0.927829,0.127744][-2.81833,0.735268,0.436089][0.949303,-0.310623,-0.0483396][0.0438394,0.928207,0.130162][-2.81833,0.735268,0.436089][0.949303,-0.310623,-0.0483396][0.0438394,0.928207,0.130162][-3.12069,-0.510653,0.252348][0.258091,-0.814999,-0.518812][0.0467371,0.996794,0.123721][-3.01469,-0.209125,-0.265301][0.585708,-0.243549,0.773065][0.0794311,0.984106,0.123822][2.21111,-0.101282,-2.491][0.350282,0.916655,-0.192472][0.251847,0.994899,0.523867][2.27599,-1.25024,-2.75618][0.480866,-0.608663,-0.631108][0.193157,0.991832,0.435635][1.66053,-1.1317,-3.20254][0.312431,-0.590899,-0.743791][0.192992,0.950333,0.524503][1.66053,-1.1317,-3.20254][0.312431,-0.590899,-0.743791][0.192992,0.950333,0.524503][1.59817,-0.0713798,-3.00999][0.287548,0.823813,-0.488517][0.250954,0.953223,0.517177][2.21111,-0.101282,-2.491][0.350282,0.916655,-0.192472][0.251847,0.994899,0.523867][1.64956,-1.11582,-3.17676][-0.329698,0.535863,0.777271][0.192992,0.950333,0.524503][2.2589,-1.23306,-2.73496][-0.511954,0.56409,0.647846][0.193157,0.991832,0.435635][2.20706,-0.133235,-2.49112][-0.404123,-0.877742,0.257399][0.251847,0.994899,0.523867][2.20706,-0.133235,-2.49112][-0.404123,-0.877742,0.257399][0.251847,0.994899,0.523867][1.58532,-0.0898803,-2.98698][-0.29748,-0.811049,0.503691][0.250954,0.953223,0.517177][1.64956,-1.11582,-3.17676][-0.329698,0.535863,0.777271][0.192992,0.950333,0.524503][-0.463233,2.0171,-2.23353][-0.704027,0.476535,-0.526556][0.151383,0.543717,0.118201][-0.00194788,2.03588,-2.28594][-0.00820846,0.669748,-0.742543][0.122414,0.542694,0.12427][0.409481,1.10514,-2.88667][0.620142,0.363519,-0.695181][0.0958445,0.487544,0.111807][0.409481,1.10514,-2.88667][0.620142,0.363519,-0.695181][0.0958445,0.487544,0.111807][-0.454151,1.08998,-2.86378][-0.70478,0.334538,-0.625595][0.150123,0.487028,0.110712][-0.463233,2.0171,-2.23353][-0.704027,0.476535,-0.526556][0.151383,0.543717,0.118201][-0.302092,3.12661,0.776934][0.134953,-0.988056,-0.0743873][0.0420557,0.727795,0.143515][-0.311952,3.01821,1.31869][0.124513,-0.673731,-0.728411][0.00688569,0.728919,0.138369][-0.867971,2.8661,1.29781][0.296417,-0.647669,-0.701899][0.00708411,0.761234,0.136735][-0.867971,2.8661,1.29781][0.296417,-0.647669,-0.701899][0.00708411,0.761234,0.136735][-0.933068,2.94113,0.752344][0.399055,-0.913696,-0.0769105][0.0420242,0.764193,0.14154][-0.302092,3.12661,0.776934][0.134953,-0.988056,-0.0743873][0.0420557,0.727795,0.143515][0.200206,2.92314,1.32681][-0.0634017,-0.997417,-0.0337685][0.00440507,0.699851,0.13783][0.847507,2.77224,1.30796][-0.373294,-0.927629,0.0124912][0.00523073,0.661115,0.135878][0.878626,2.88462,1.32258][0.275729,0.554785,0.784976][0.00776204,0.660754,0.137261][0.878626,2.88462,1.32258][0.275729,0.554785,0.784976][0.00776204,0.660754,0.137261][0.380894,3.03245,1.34402][0.106297,0.601347,0.791885][0.00701091,0.690099,0.138929][0.200206,2.92314,1.32681][-0.0634017,-0.997417,-0.0337685][0.00440507,0.699851,0.13783][-2.25922,-0.714024,3.08712][-0.353589,0.84978,0.390959][0.377727,0.981655,0.596296][-2.32843,-2.00732,3.0484][-0.536184,-0.748444,0.390305][0.322174,0.981567,0.582554][-1.65541,-2.08495,3.58428][-0.357753,-0.779702,0.513885][0.321781,0.941173,0.478093][-1.65541,-2.08495,3.58428][-0.357753,-0.779702,0.513885][0.321781,0.941173,0.478093][-1.65155,-0.818388,3.63774][-0.315644,0.688747,0.652684][0.37715,0.939914,0.498308][-2.25922,-0.714024,3.08712][-0.353589,0.84978,0.390959][0.377727,0.981655,0.596296][-1.643,-2.06209,3.5653][0.375957,0.740412,-0.557178][0.321781,0.941173,0.478093][-2.3097,-1.98528,3.03424][0.558024,0.718447,-0.415262][0.322174,0.981567,0.582554][-2.25528,-0.745193,3.08003][0.417457,-0.787716,-0.453027][0.377727,0.981655,0.596296][-2.25528,-0.745193,3.08003][0.417457,-0.787716,-0.453027][0.377727,0.981655,0.596296][-1.63774,-0.830994,3.61152][0.323996,-0.674543,-0.663339][0.37715,0.939914,0.498308][-1.643,-2.06209,3.5653][0.375957,0.740412,-0.557178][0.321781,0.941173,0.478093][3.09297,-0.520461,0.251376][-0.973758,-0.227578,0.00209325][0.0404217,0.423585,-0.166594][3.05367,-0.57213,0.853356][-0.300727,-0.693052,0.655165][0.00516924,0.425311,-0.17623][2.93512,0.101586,0.912421][-0.900426,-0.269413,0.341539][0.00613039,0.461805,-0.0741024][2.93512,0.101586,0.912421][-0.900426,-0.269413,0.341539][0.00613039,0.461805,-0.0741024][2.81556,0.724563,0.431494][-0.941628,-0.336653,-0.00148159][0.0400176,0.492572,0.12781][3.09297,-0.520461,0.251376][-0.973758,-0.227578,0.00209325][0.0404217,0.423585,-0.166594][2.97632,0.111856,0.923296][0.847062,0.114363,0.519045][0.00613039,0.461805,-0.0741024][3.09281,-0.564706,0.823021][0.776241,-0.545382,0.316241][0.00695475,0.425374,-0.175446][3.13047,-0.505293,0.252063][0.98362,0.180199,-0.00448259][0.0404217,0.423585,-0.166594][3.13047,-0.505293,0.252063][0.98362,0.180199,-0.00448259][0.0404217,0.423585,-0.166594][2.84577,0.735718,0.43226][0.940362,0.339967,0.0119401][0.0400176,0.492572,0.12781][2.97632,0.111856,0.923296][0.847062,0.114363,0.519045][0.00613039,0.461805,-0.0741024][-0.00229836,-0.894591,3.97655][0.334526,-0.716162,0.612539][0.122272,0.995171,0.103444][0.437303,-0.897446,3.92177][0.676883,0.0983242,0.729494][0.0987607,0.997265,0.101244][0.454425,0.347943,3.73803][0.818266,0.140712,0.557352][0.0951734,0.932288,0.108864][0.454425,0.347943,3.73803][0.818266,0.140712,0.557352][0.0951734,0.932288,0.108864][-0.00209498,0.358101,3.80074][0.0107588,0.243431,0.969859][0.122458,0.932611,0.112923][-0.00229836,-0.894591,3.97655][0.334526,-0.716162,0.612539][0.122272,0.995171,0.103444][0.427526,0.343717,3.72083][-0.702273,-0.182872,-0.688019][0.0951734,0.932288,0.108864][0.392683,-0.909738,3.90964][-0.42733,-0.12304,-0.895684][0.100267,0.997298,0.101403][-0.00229836,-0.894591,3.97655][0.334526,-0.716162,0.612539][0.122272,0.995171,0.103444][-0.00229836,-0.894591,3.97655][0.334526,-0.716162,0.612539][0.122272,0.995171,0.103444][-0.00214219,0.350078,3.76955][-0.00296997,-0.251391,-0.967881][0.122458,0.932611,0.112923][0.427526,0.343717,3.72083][-0.702273,-0.182872,-0.688019][0.0951734,0.932288,0.108864][-1.5883,-0.0939654,-2.9611][0.258856,-0.883818,0.389691][0.258835,0.749551,0.515636][-2.22326,-0.153952,-2.4919][0.40865,-0.869772,0.276589][0.257941,0.707751,0.433948][-2.2742,-1.25979,-2.73697][0.505109,0.572924,0.645463][0.193985,0.706203,0.434827][-2.2742,-1.25979,-2.73697][0.505109,0.572924,0.645463][0.193985,0.706203,0.434827][-1.62534,-1.17191,-3.17812][0.309429,0.583664,0.750726][0.193588,0.742966,0.52371][-1.5883,-0.0939654,-2.9611][0.258856,-0.883818,0.389691][0.258835,0.749551,0.515636][-2.2913,-1.27689,-2.75825][-0.482728,-0.606848,-0.631434][0.193985,0.706203,0.434827][-2.22736,-0.122006,-2.49193][-0.341956,0.917319,-0.20394][0.257941,0.707751,0.433948][-1.59149,-0.0619634,-2.96284][-0.223516,0.923333,-0.312244][0.258835,0.749551,0.515636][-1.59149,-0.0619634,-2.96284][-0.223516,0.923333,-0.312244][0.258835,0.749551,0.515636][-1.63588,-1.18914,-3.20321][-0.291786,-0.624158,-0.724768][0.193588,0.742966,0.52371][-2.2913,-1.27689,-2.75825][-0.482728,-0.606848,-0.631434][0.193985,0.706203,0.434827][-0.311614,3.1317,0.199353][-0.0839285,0.772469,-0.629482][0.0784967,0.729083,0.134711][-0.865412,2.98065,0.178993][-0.210076,0.595897,-0.775097][0.0776681,0.761643,0.134545][-0.945829,2.97056,0.755175][-0.395988,0.915134,0.0756457][0.0420242,0.764193,0.14154][-0.945829,2.97056,0.755175][-0.395988,0.915134,0.0756457][0.0420242,0.764193,0.14154][-0.307573,3.15821,0.779807][-0.12741,0.988654,0.0795647][0.0420557,0.727795,0.143515][-0.311614,3.1317,0.199353][-0.0839285,0.772469,-0.629482][0.0784967,0.729083,0.134711][-0.933068,2.94113,0.752344][0.399055,-0.913696,-0.0769105][0.0420242,0.764193,0.14154][-0.860013,2.96343,0.205665][0.261027,-0.705626,0.658754][0.0776681,0.761643,0.134545][-0.309127,3.11315,0.225567][0.10384,-0.895479,0.432821][0.0784967,0.729083,0.134711][-0.309127,3.11315,0.225567][0.10384,-0.895479,0.432821][0.0784967,0.729083,0.134711][-0.302092,3.12661,0.776934][0.134953,-0.988056,-0.0743873][0.0420557,0.727795,0.143515][-0.933068,2.94113,0.752344][0.399055,-0.913696,-0.0769105][0.0420242,0.764193,0.14154][0.483384,2.7941,1.82954][0.81431,0.501022,0.293045][0.0894868,0.768472,0.130641][0.476759,2.25482,2.6961][0.782534,0.461023,0.418447][0.0920814,0.820628,0.125005][0.452207,2.17869,2.62367][-0.112133,-0.745176,-0.657373][0.0878517,0.820596,0.120894][0.452207,2.17869,2.62367][-0.112133,-0.745176,-0.657373][0.0878517,0.820596,0.120894][0.45961,2.71281,1.77945][-0.105971,-0.891537,-0.440377][0.0838801,0.768362,0.124392][0.483384,2.7941,1.82954][0.81431,0.501022,0.293045][0.0894868,0.768472,0.130641][0.499896,2.9954,1.24153][0.927644,0.357271,0.10878][0.0849246,0.736146,0.132211][0.46227,3.04973,0.287716][-0.0752053,-0.997166,0.00209714][0.0839047,0.685861,0.130238][0.482024,3.13394,0.281348][0.803506,0.590801,-0.0730293][0.0894926,0.686264,0.137714][0.482024,3.13394,0.281348][0.803506,0.590801,-0.0730293][0.0894926,0.686264,0.137714][0.47516,3.13784,0.777249][0.647909,0.759703,0.0553591][0.090419,0.711349,0.139879][0.499896,2.9954,1.24153][0.927644,0.357271,0.10878][0.0849246,0.736146,0.132211][2.69962,0.737612,-0.118097][-0.546647,0.0963103,-1.57416][0.0763672,0.491627,0.12415][2.98927,-0.46587,-0.292313][-0.0201717,0.00355392,-0.0580878][0.0778442,0.422099,-0.161739][2.94517,0.218093,-0.172862][-0.775814,-0.248336,0.580037][0.0717128,0.459842,-0.0563793][2.81556,0.724563,0.431494][-0.941628,-0.336653,-0.00148159][0.0400176,0.492572,0.12781][2.94517,0.218093,-0.172862][-0.775814,-0.248336,0.580037][0.0717128,0.459842,-0.0563793][3.04974,-0.477258,-0.273646][-0.71303,-0.648551,0.266402][0.0720777,0.422551,-0.159653][3.04974,-0.477258,-0.273646][-0.71303,-0.648551,0.266402][0.0720777,0.422551,-0.159653][3.09297,-0.520461,0.251376][-0.973758,-0.227578,0.00209325][0.0404217,0.423585,-0.166594][2.81556,0.724563,0.431494][-0.941628,-0.336653,-0.00148159][0.0400176,0.492572,0.12781][-0.87676,2.88501,1.32236][-0.273056,0.561724,0.780965][0.00708411,0.761234,0.136735][-0.315745,3.03723,1.3444][-0.0898071,0.598904,0.79577][0.00688569,0.728919,0.138369][-0.307573,3.15821,0.779807][-0.12741,0.988654,0.0795647][0.0420557,0.727795,0.143515][-0.307573,3.15821,0.779807][-0.12741,0.988654,0.0795647][0.0420557,0.727795,0.143515][-0.945829,2.97056,0.755175][-0.395988,0.915134,0.0756457][0.0420242,0.764193,0.14154][-0.87676,2.88501,1.32236][-0.273056,0.561724,0.780965][0.00708411,0.761234,0.136735][-0.315745,3.03723,1.3444][-0.0898071,0.598904,0.79577][0.00688569,0.728919,0.138369][-0.87676,2.88501,1.32236][-0.273056,0.561724,0.780965][0.00708411,0.761234,0.136735][-0.846627,2.7787,1.30935][0.37786,-0.925584,0.0227064][0.00487898,0.761205,0.135367][-0.846627,2.7787,1.30935][0.37786,-0.925584,0.0227064][0.00487898,0.761205,0.135367][-0.30839,2.92075,1.32657][0.141919,-0.98952,-0.0266249][0.00497893,0.729009,0.136981][-0.315745,3.03723,1.3444][-0.0898071,0.598904,0.79577][0.00688569,0.728919,0.138369][0.452207,2.17869,2.62367][-0.112133,-0.745176,-0.657373][0.0878517,0.820596,0.120894][0.456222,2.77878,1.8215][-0.718723,-0.608507,-0.336386][0.0894868,0.768472,0.130641][0.45961,2.71281,1.77945][-0.105971,-0.891537,-0.440377][0.0838801,0.768362,0.124392][0.46227,3.04973,0.287716][-0.0752053,-0.997166,0.00209714][0.0839047,0.685861,0.130238][0.499896,2.9954,1.24153][0.927644,0.357271,0.10878][0.0849246,0.736146,0.132211][0.461541,3,1.24382][-0.184995,-1.50383,-0.078372][0.0849246,0.736146,0.132211][-0.00156569,3.0927,1.25499][0.014065,-0.967749,-0.251524][0.122579,0.735383,0.149037][-0.00164342,2.79191,1.90262][-0.00562702,-0.873403,-0.486966][0.122661,0.771398,0.140757][-0.460707,2.78207,1.82331][0.609843,-0.703015,-0.36587][0.154656,0.769061,0.131067][-0.460707,2.78207,1.82331][0.609843,-0.703015,-0.36587][0.154656,0.769061,0.131067][-0.461793,3.03361,1.25569][0.354295,-0.872468,-0.336564][0.155439,0.737856,0.137559][-0.00156569,3.0927,1.25499][0.014065,-0.967749,-0.251524][0.122579,0.735383,0.149037][-0.484089,2.80172,1.83353][-0.746785,0.585678,0.315108][0.154656,0.769061,0.131067][-0.00143552,2.82005,1.91828][0.0080464,0.872436,0.488661][0.122661,0.771398,0.140757][-0.00164604,3.1239,1.263][-0.0142893,0.964754,0.262766][0.122579,0.735383,0.149037][-0.00164604,3.1239,1.263][-0.0142893,0.964754,0.262766][0.122579,0.735383,0.149037][-0.483643,3.05596,1.26345][-0.562865,0.761451,0.321521][0.155439,0.737856,0.137559][-0.484089,2.80172,1.83353][-0.746785,0.585678,0.315108][0.154656,0.769061,0.131067][-0.479764,3.03359,-0.328363][-0.714966,0.676283,-0.177383][0.155669,0.654518,0.132195][-0.472692,2.6952,-1.34462][-0.711081,0.620949,-0.329827][0.152244,0.600114,0.126707][-0.472804,2.60069,-1.29064][-0.150539,-0.876742,0.456794][0.156105,0.600231,0.122471][-0.472804,2.60069,-1.29064][-0.150539,-0.876742,0.456794][0.156105,0.600231,0.122471][-0.483153,2.93813,-0.299717][-0.187308,-0.949245,0.252686][0.160825,0.654458,0.125885][-0.479764,3.03359,-0.328363][-0.714966,0.676283,-0.177383][0.155669,0.654518,0.132195][-0.491399,3.05702,0.28588][-0.314657,-0.948156,0.0446294][0.160265,0.686312,0.129896][-0.516735,3.01197,1.25209][-0.918244,-0.377663,0.119157][0.159754,0.739506,0.131104][-0.4757,3.14389,0.778739][-0.590632,0.806597,0.0235671][0.156581,0.713373,0.138639][-0.4757,3.14389,0.778739][-0.590632,0.806597,0.0235671][0.156581,0.713373,0.138639][-0.481091,3.14388,0.280484][-0.684298,0.727551,-0.0490481][0.155502,0.686294,0.137325][-0.491399,3.05702,0.28588][-0.314657,-0.948156,0.0446294][0.160265,0.686312,0.129896][-0.846627,2.7787,1.30935][0.37786,-0.925584,0.0227064][0.00487898,0.761205,0.135367][-0.867971,2.8661,1.29781][0.296417,-0.647669,-0.701899][0.00708411,0.761234,0.136735][-0.311952,3.01821,1.31869][0.124513,-0.673731,-0.728411][0.00688569,0.728919,0.138369][-0.311952,3.01821,1.31869][0.124513,-0.673731,-0.728411][0.00688569,0.728919,0.138369][-0.30839,2.92075,1.32657][0.141919,-0.98952,-0.0266249][0.00497893,0.729009,0.136981][-0.846627,2.7787,1.30935][0.37786,-0.925584,0.0227064][0.00487898,0.761205,0.135367][0.200206,2.92314,1.32681][-0.0634017,-0.997417,-0.0337685][0.00440507,0.699851,0.13783][0.0304894,3.04079,1.31793][-0.00724323,-0.687524,-0.726125][0.00722128,0.709595,0.139612][0.376661,3.01448,1.31762][-0.145831,-0.659647,-0.737292][0.00701091,0.690099,0.138929][-0.00816154,-0.0902408,-3.1894][0.00361498,-0.577863,0.816126][0.287255,0.851844,0.489866][0.791391,-0.0984463,-3.11518][-0.0979443,-0.589578,0.801751][0.286771,0.903369,0.495953][0.816881,-0.0101729,-3.21547][0.0973907,0.931307,-0.350973][0.258187,0.904681,0.550114][0.816881,-0.0101729,-3.21547][0.0973907,0.931307,-0.350973][0.258187,0.904681,0.550114][-0.00886393,-0.00448745,-3.29376][-0.00518041,0.923767,-0.38292][0.258321,0.85161,0.561643][-0.00816154,-0.0902408,-3.1894][0.00361498,-0.577863,0.816126][0.287255,0.851844,0.489866][-0.834296,-0.0224978,-3.21591][-0.105047,0.924991,-0.365181][0.258246,0.797908,0.550007][-1.59149,-0.0619634,-2.96284][-0.223516,0.923333,-0.312244][0.258835,0.749551,0.515636][-1.53793,-0.153617,-2.87482][0.379346,-0.637782,0.670321][0.287071,0.7488,0.508177][-1.53793,-0.153617,-2.87482][0.379346,-0.637782,0.670321][0.287071,0.7488,0.508177][-0.807592,-0.110238,-3.11549][0.187304,-0.596969,0.780093][0.287185,0.796752,0.496143][-0.834296,-0.0224978,-3.21591][-0.105047,0.924991,-0.365181][0.258246,0.797908,0.550007][0.383666,3.14302,0.778576][0.148918,0.983252,0.105069][0.0417376,0.690107,0.144003][-0.315745,3.03723,1.3444][-0.0898071,0.598904,0.79577][0.00688569,0.728919,0.138369][0.380894,3.03245,1.34402][0.106297,0.601347,0.791885][0.00701091,0.690099,0.138929][0.380894,3.03245,1.34402][0.106297,0.601347,0.791885][0.00701091,0.690099,0.138929][-0.315745,3.03723,1.3444][-0.0898071,0.598904,0.79577][0.00688569,0.728919,0.138369][-0.30839,2.92075,1.32657][0.141919,-0.98952,-0.0266249][0.00497893,0.729009,0.136981][-2.94606,-0.334375,-0.831519][0.417122,-0.908712,-0.0158592][0.25969,0.617588,0.542134][-3.13281,-0.441696,0.251909][0.534784,-0.842301,-0.0673421][0.257899,0.559585,0.564092][-3.20187,-1.67345,0.0631728][0.723821,0.68398,0.0908571][0.193135,0.559355,0.592401][-3.20187,-1.67345,0.0631728][0.723821,0.68398,0.0908571][0.193135,0.559355,0.592401][-3.07718,-1.56647,-1.06275][0.73216,0.647491,0.211419][0.193322,0.618734,0.569352][-2.94606,-0.334375,-0.831519][0.417122,-0.908712,-0.0158592][0.25969,0.617588,0.542134][-2.97966,-1.56214,-1.05325][0.966065,0.118404,0.229564][0.166089,0.617567,0.502787][-3.07708,-1.66078,0.0442361][0.987251,0.157137,0.0253564][0.166655,0.560098,0.488487][-3.2264,-1.69414,0.0604048][-0.683266,-0.724887,-0.0876666][0.193135,0.559355,0.592401][-3.2264,-1.69414,0.0604048][-0.683266,-0.724887,-0.0876666][0.193135,0.559355,0.592401][-3.10166,-1.58622,-1.06967][-0.677434,-0.703791,-0.213919][0.193322,0.618734,0.569352][-2.97966,-1.56214,-1.05325][0.966065,0.118404,0.229564][0.166089,0.617567,0.502787][2.99337,-1.77022,1.18164][-0.974918,0.155389,-0.15934][0.293042,0.617819,0.487457][3.08781,-1.65178,0.070114][-0.990048,0.138129,0.0269264][0.292759,0.56041,0.488051][3.21699,-1.67795,0.0613367][0.685443,-0.722914,-0.0869679][0.322214,0.558969,0.408911][3.21699,-1.67795,0.0613367][0.685443,-0.722914,-0.0869679][0.322214,0.558969,0.408911][3.11795,-1.80029,1.21483][0.676711,-0.734825,0.0457509][0.322234,0.61464,0.42559][2.99337,-1.77022,1.18164][-0.974918,0.155389,-0.15934][0.293042,0.617819,0.487457][2.8996,-0.387976,-0.815273][0.754851,0.60749,-0.247297][0.410509,0.51015,0.488322][3.03994,-0.477158,0.246131][-0.809467,-0.585978,-0.037313][0.410417,0.561223,0.480222][3.12796,-0.403904,0.255315][0.441823,0.893485,0.0804775][0.383687,0.562068,0.42789][3.12796,-0.403904,0.255315][0.441823,0.893485,0.0804775][0.383687,0.562068,0.42789][3.00581,-0.319696,-0.845777][0.501144,0.865236,-0.0148743][0.377083,0.50913,0.438865][2.8996,-0.387976,-0.815273][0.754851,0.60749,-0.247297][0.410509,0.51015,0.488322][3.12289,-0.435547,0.252102][-0.546384,-0.83288,-0.0881776][0.383687,0.562068,0.42789][3.03994,-0.477158,0.246131][-0.809467,-0.585978,-0.037313][0.410417,0.561223,0.480222][2.8996,-0.387976,-0.815273][0.754851,0.60749,-0.247297][0.410509,0.51015,0.488322][2.8996,-0.387976,-0.815273][0.754851,0.60749,-0.247297][0.410509,0.51015,0.488322][2.96618,-0.332327,-0.835826][-0.437738,-0.899039,-0.0107191][0.382133,0.509298,0.445981][3.12289,-0.435547,0.252102][-0.546384,-0.83288,-0.0881776][0.383687,0.562068,0.42789][2.96618,-0.332327,-0.835826][-0.437738,-0.899039,-0.0107191][0.382133,0.509298,0.445981][2.68785,-0.217359,-1.7747][-0.49831,-0.858197,0.123231][0.383707,0.463359,0.499289][2.74904,-1.43093,-2.02371][-0.633009,0.643723,0.430023][0.32202,0.457906,0.491649][2.74904,-1.43093,-2.02371][-0.633009,0.643723,0.430023][0.32202,0.457906,0.491649][3.06109,-1.53754,-1.06193][-0.723827,0.648413,0.235871][0.322159,0.504439,0.431856][2.96618,-0.332327,-0.835826][-0.437738,-0.899039,-0.0107191][0.382133,0.509298,0.445981][2.95834,-1.53401,-1.05254][-0.967753,0.100921,0.230801][0.293305,0.505914,0.501109][2.63623,-1.4278,-1.95791][-0.889532,0.0607325,0.452818][0.293298,0.461873,0.519316][2.77053,-1.45035,-2.0378][0.596249,-0.682022,-0.423478][0.32202,0.457906,0.491649][2.77053,-1.45035,-2.0378][0.596249,-0.682022,-0.423478][0.32202,0.457906,0.491649][3.08534,-1.5573,-1.06963][0.674018,-0.703197,-0.226307][0.322159,0.504439,0.431856][2.95834,-1.53401,-1.05254][-0.967753,0.100921,0.230801][0.293305,0.505914,0.501109][-0.472804,2.60069,-1.29064][-0.150539,-0.876742,0.456794][0.156105,0.600231,0.122471][-0.448826,2.67612,-1.33442][0.575637,-0.72089,0.385953][0.152244,0.600114,0.126707][-0.456639,3.01185,-0.322905][0.575622,-0.786026,0.225438][0.155669,0.654518,0.132195][-0.456639,3.01185,-0.322905][0.575622,-0.786026,0.225438][0.155669,0.654518,0.132195][-0.483153,2.93813,-0.299717][-0.187308,-0.949245,0.252686][0.160825,0.654458,0.125885][-0.472804,2.60069,-1.29064][-0.150539,-0.876742,0.456794][0.156105,0.600231,0.122471][-0.00139141,3.20641,0.289352][-0.00523484,0.997903,-0.0645084][0.123202,0.68665,0.14987][0.482024,3.13394,0.281348][0.803506,0.590801,-0.0730293][0.0894926,0.686264,0.137714][0.479169,3.02527,-0.326255][0.808161,0.569296,-0.150923][0.0899263,0.654763,0.132036][0.479169,3.02527,-0.326255][0.808161,0.569296,-0.150923][0.0899263,0.654763,0.132036][-0.00179911,3.06307,-0.410851][0.00468728,0.964557,-0.263834][0.123175,0.651055,0.14272][-0.00139141,3.20641,0.289352][-0.00523484,0.997903,-0.0645084][0.123202,0.68665,0.14987][-0.479764,3.03359,-0.328363][-0.714966,0.676283,-0.177383][0.155669,0.654518,0.132195][-0.483153,2.93813,-0.299717][-0.187308,-0.949245,0.252686][0.160825,0.654458,0.125885][-0.491399,3.05702,0.28588][-0.314657,-0.948156,0.0446294][0.160265,0.686312,0.129896][-0.491399,3.05702,0.28588][-0.314657,-0.948156,0.0446294][0.160265,0.686312,0.129896][-0.481091,3.14388,0.280484][-0.684298,0.727551,-0.0490481][0.155502,0.686294,0.137325][-0.479764,3.03359,-0.328363][-0.714966,0.676283,-0.177383][0.155669,0.654518,0.132195][0.456222,2.77878,1.8215][-0.718723,-0.608507,-0.336386][0.0894868,0.768472,0.130641][0.461541,3,1.24382][-0.184995,-1.50383,-0.078372][0.0849246,0.736146,0.132211][0.460429,2.88724,1.3229][-0.236939,-0.928692,-0.28529][0.0831434,0.741504,0.128777][0.815441,-0.042188,-3.21226][-0.112431,-0.887659,0.446566][0.258187,0.904681,0.550114][0.791391,-0.0984463,-3.11518][-0.0979443,-0.589578,0.801751][0.286771,0.903369,0.495953][-0.00816154,-0.0902408,-3.1894][0.00361498,-0.577863,0.816126][0.287255,0.851844,0.489866][-0.00816154,-0.0902408,-3.1894][0.00361498,-0.577863,0.816126][0.287255,0.851844,0.489866][-0.0086174,-0.0364635,-3.28992][0.004942,-0.881343,0.472452][0.258321,0.85161,0.561643][0.815441,-0.042188,-3.21226][-0.112431,-0.887659,0.446566][0.258187,0.904681,0.550114][-1.53793,-0.153617,-2.87482][0.379346,-0.637782,0.670321][0.287071,0.7488,0.508177][-1.5883,-0.0939654,-2.9611][0.258856,-0.883818,0.389691][0.258835,0.749551,0.515636][-0.832448,-0.0544917,-3.2127][0.122126,-0.883862,0.451523][0.258246,0.797908,0.550007][-0.832448,-0.0544917,-3.2127][0.122126,-0.883862,0.451523][0.258246,0.797908,0.550007][-0.807592,-0.110238,-3.11549][0.187304,-0.596969,0.780093][0.287185,0.796752,0.496143][-1.53793,-0.153617,-2.87482][0.379346,-0.637782,0.670321][0.287071,0.7488,0.508177][0.377115,3.11162,0.775657][-0.157958,-0.983003,-0.0935691][0.0417376,0.690107,0.144003][0.946507,2.9342,0.750628][-0.416431,-0.905913,-0.0768578][0.041317,0.656892,0.142305][0.869822,2.86654,1.29742][-0.301187,-0.637407,-0.709224][0.00776204,0.660754,0.137261][0.869822,2.86654,1.29742][-0.301187,-0.637407,-0.709224][0.00776204,0.660754,0.137261][0.376661,3.01448,1.31762][-0.145831,-0.659647,-0.737292][0.00701091,0.690099,0.138929][0.377115,3.11162,0.775657][-0.157958,-0.983003,-0.0935691][0.0417376,0.690107,0.144003][0.869822,2.86654,1.29742][-0.301187,-0.637407,-0.709224][0.00776204,0.660754,0.137261][0.847507,2.77224,1.30796][-0.373294,-0.927629,0.0124912][0.00523073,0.661115,0.135878][0.200206,2.92314,1.32681][-0.0634017,-0.997417,-0.0337685][0.00440507,0.699851,0.13783][0.200206,2.92314,1.32681][-0.0634017,-0.997417,-0.0337685][0.00440507,0.699851,0.13783][0.376661,3.01448,1.31762][-0.145831,-0.659647,-0.737292][0.00701091,0.690099,0.138929][0.869822,2.86654,1.29742][-0.301187,-0.637407,-0.709224][0.00776204,0.660754,0.137261][0.45586,2.93359,-0.298418][-0.101184,-0.961939,0.253843][0.084306,0.654715,0.125546][0.446341,2.59728,-1.28872][-0.113399,-0.878018,0.465001][0.0885639,0.600705,0.122528][0.470977,2.68841,-1.34096][0.786656,0.545298,-0.28952][0.0928212,0.60054,0.126884][0.470977,2.68841,-1.34096][0.786656,0.545298,-0.28952][0.0928212,0.60054,0.126884][0.479169,3.02527,-0.326255][0.808161,0.569296,-0.150923][0.0899263,0.654763,0.132036][0.45586,2.93359,-0.298418][-0.101184,-0.961939,0.253843][0.084306,0.654715,0.125546][3.03994,-0.477158,0.246131][-0.809467,-0.585978,-0.037313][0.410417,0.561223,0.480222][2.88555,-0.605537,1.3152][-0.619873,-0.755794,-0.211029][0.410311,0.61596,0.475015][3.12796,-0.403904,0.255315][0.441823,0.893485,0.0804775][0.383687,0.562068,0.42789][3.00581,-0.319696,-0.845777][0.501144,0.865236,-0.0148743][0.377083,0.50913,0.438865][2.69258,-0.185545,-1.77303][0.404858,0.911755,-0.0692282][0.383707,0.463359,0.499289][2.61431,-0.263864,-1.73845][-0.687011,-0.627919,0.365695][0.410631,0.464681,0.504308][2.61431,-0.263864,-1.73845][-0.687011,-0.627919,0.365695][0.410631,0.464681,0.504308][2.8996,-0.387976,-0.815273][0.754851,0.60749,-0.247297][0.410509,0.51015,0.488322][3.00581,-0.319696,-0.845777][0.501144,0.865236,-0.0148743][0.377083,0.50913,0.438865][2.69258,-0.185545,-1.77303][0.404858,0.911755,-0.0692282][0.383707,0.463359,0.499289][2.21111,-0.101282,-2.491][0.350282,0.916655,-0.192472][0.384386,0.42798,0.577259][2.13356,-0.195173,-2.42439][-0.594014,-0.655807,0.465902][0.410746,0.427765,0.512716][2.13356,-0.195173,-2.42439][-0.594014,-0.655807,0.465902][0.410746,0.427765,0.512716][2.61431,-0.263864,-1.73845][-0.687011,-0.627919,0.365695][0.410631,0.464681,0.504308][2.69258,-0.185545,-1.77303][0.404858,0.911755,-0.0692282][0.383707,0.463359,0.499289][-3.10166,-1.58622,-1.06967][-0.677434,-0.703791,-0.213919][0.193322,0.618734,0.569352][-2.78546,-1.49566,-2.03946][-0.588031,-0.688154,-0.425046][0.193505,0.669388,0.509431][-2.67092,-1.4758,-1.96947][0.893494,0.035385,0.447679][0.165807,0.671669,0.519913][-2.67092,-1.4758,-1.96947][0.893494,0.035385,0.447679][0.165807,0.671669,0.519913][-2.97966,-1.56214,-1.05325][0.966065,0.118404,0.229564][0.166089,0.617567,0.502787][-3.10166,-1.58622,-1.06967][-0.677434,-0.703791,-0.213919][0.193322,0.618734,0.569352][-2.78546,-1.49566,-2.03946][-0.588031,-0.688154,-0.425046][0.193505,0.669388,0.509431][-2.2913,-1.27689,-2.75825][-0.482728,-0.606848,-0.631434][0.193985,0.706203,0.434827][-2.18137,-1.25872,-2.64914][0.688612,0.114971,0.715958][0.165242,0.710303,0.52906][-2.18137,-1.25872,-2.64914][0.688612,0.114971,0.715958][0.165242,0.710303,0.52906][-2.67092,-1.4758,-1.96947][0.893494,0.035385,0.447679][0.165807,0.671669,0.519913][-2.78546,-1.49566,-2.03946][-0.588031,-0.688154,-0.425046][0.193505,0.669388,0.509431][3.08534,-1.5573,-1.06963][0.674018,-0.703197,-0.226307][0.322159,0.504439,0.431856][3.21699,-1.67795,0.0613367][0.685443,-0.722914,-0.0869679][0.322214,0.558969,0.408911][3.08781,-1.65178,0.070114][-0.990048,0.138129,0.0269264][0.292759,0.56041,0.488051][3.08781,-1.65178,0.070114][-0.990048,0.138129,0.0269264][0.292759,0.56041,0.488051][2.95834,-1.53401,-1.05254][-0.967753,0.100921,0.230801][0.293305,0.505914,0.501109][3.08534,-1.5573,-1.06963][0.674018,-0.703197,-0.226307][0.322159,0.504439,0.431856][2.99337,-1.77022,1.18164][-0.974918,0.155389,-0.15934][0.293042,0.617819,0.487457][3.11795,-1.80029,1.21483][0.676711,-0.734825,0.0457509][0.322234,0.61464,0.42559][2.81623,-1.9127,2.24553][0.639048,-0.740895,0.20662][0.322283,0.66427,0.483168][2.81623,-1.9127,2.24553][0.639048,-0.740895,0.20662][0.322283,0.66427,0.483168][2.69975,-1.87904,2.1847][-0.905774,0.185949,-0.380784][0.293049,0.66748,0.497524][2.99337,-1.77022,1.18164][-0.974918,0.155389,-0.15934][0.293042,0.617819,0.487457][2.81623,-1.9127,2.24553][0.639048,-0.740895,0.20662][0.322283,0.66427,0.483168][2.31143,-2.00692,3.04841][0.539527,-0.744597,0.393048][0.322417,0.702797,0.579277][2.21425,-1.96968,2.95229][-0.750969,0.209592,-0.626192][0.293057,0.704731,0.502749][2.21425,-1.96968,2.95229][-0.750969,0.209592,-0.626192][0.293057,0.704731,0.502749][2.69975,-1.87904,2.1847][-0.905774,0.185949,-0.380784][0.293049,0.66748,0.497524][2.81623,-1.9127,2.24553][0.639048,-0.740895,0.20662][0.322283,0.66427,0.483168][-0.00853968,-2.1428,3.96566][0.000479795,-0.80452,0.593925][0.322221,0.841962,0.403517][-0.860166,-2.12888,3.87563][-0.149097,-0.799249,0.582212][0.322069,0.893345,0.421182][-0.822136,-2.07591,3.74047][0.21336,0.315364,-0.924674][0.293922,0.895258,0.488995][-0.822136,-2.07591,3.74047][0.21336,0.315364,-0.924674][0.293922,0.895258,0.488995][-0.00853729,-2.08886,3.82953][0.00229836,0.325407,-0.945571][0.293074,0.842354,0.483754][-0.00853968,-2.1428,3.96566][0.000479795,-0.80452,0.593925][0.322221,0.841962,0.403517][-0.860166,-2.12888,3.87563][-0.149097,-0.799249,0.582212][0.322069,0.893345,0.421182][-1.65541,-2.08495,3.58428][-0.357753,-0.779702,0.513885][0.321781,0.941173,0.478093][-1.58848,-2.04297,3.47355][0.504085,0.257874,-0.824257][0.293916,0.938612,0.499227][-1.58848,-2.04297,3.47355][0.504085,0.257874,-0.824257][0.293916,0.938612,0.499227][-0.822136,-2.07591,3.74047][0.21336,0.315364,-0.924674][0.293922,0.895258,0.488995][-0.860166,-2.12888,3.87563][-0.149097,-0.799249,0.582212][0.322069,0.893345,0.421182][-3.03217,-0.496513,0.24553][0.799342,-0.597353,-0.0649773][0.286218,0.5591,0.480351][-2.87343,-0.392379,-0.814655][0.597139,-0.799986,0.0587166][0.286297,0.617867,0.483469][-3.13786,-0.410046,0.255091][-0.447402,0.88939,0.0938962][0.257899,0.559585,0.564092][-3.13786,-0.410046,0.255091][-0.447402,0.88939,0.0938962][0.257899,0.559585,0.564092][-3.00277,-0.532609,1.35064][-0.394637,0.9022,0.17406][0.259061,0.501074,0.546282][-2.93322,-0.593645,1.32023][0.804186,-0.553375,-0.216934][0.284773,0.500446,0.478299][-2.93322,-0.593645,1.32023][0.804186,-0.553375,-0.216934][0.284773,0.500446,0.478299][-3.03217,-0.496513,0.24553][0.799342,-0.597353,-0.0649773][0.286218,0.5591,0.480351][-3.13786,-0.410046,0.255091][-0.447402,0.88939,0.0938962][0.257899,0.559585,0.564092][-0.00143552,2.82005,1.91828][0.0080464,0.872436,0.488661][0.122661,0.771398,0.140757][0.483384,2.7941,1.82954][0.81431,0.501022,0.293045][0.0894868,0.768472,0.130641][0.444246,3.08039,1.26673][0.493314,0.833681,0.248229][0.0917645,0.736037,0.140006][0.444246,3.08039,1.26673][0.493314,0.833681,0.248229][0.0917645,0.736037,0.140006][-0.00164604,3.1239,1.263][-0.0142893,0.964754,0.262766][0.122579,0.735383,0.149037][-0.00143552,2.82005,1.91828][0.0080464,0.872436,0.488661][0.122661,0.771398,0.140757][0.380698,3.16312,0.243216][0.109249,0.805216,-0.582831][0.0757006,0.689107,0.137835][0.867454,2.97932,0.17813][0.184963,0.576482,-0.7959][0.0777165,0.659474,0.134888][0.836603,2.90363,0.202256][-0.459716,-0.879495,0.123083][0.0821754,0.659373,0.130842][0.836603,2.90363,0.202256][-0.459716,-0.879495,0.123083][0.0821754,0.659373,0.130842][0.198387,3.07086,0.223695][0.102126,-0.97233,-0.210105][0.0824755,0.698878,0.131107][0.380698,3.16312,0.243216][0.109249,0.805216,-0.582831][0.0757006,0.689107,0.137835][0.836603,2.90363,0.202256][-0.459716,-0.879495,0.123083][0.0821754,0.659373,0.130842][0.861871,2.96253,0.205041][-0.253869,-0.689402,0.678436][0.0777165,0.659474,0.134888][0.375495,3.13283,0.252832][-0.12153,-0.840139,0.52858][0.0757006,0.689107,0.137835][0.375495,3.13283,0.252832][-0.12153,-0.840139,0.52858][0.0757006,0.689107,0.137835][0.198387,3.07086,0.223695][0.102126,-0.97233,-0.210105][0.0824755,0.698878,0.131107][0.836603,2.90363,0.202256][-0.459716,-0.879495,0.123083][0.0821754,0.659373,0.130842][-0.00853729,-2.08886,3.82953][0.00229836,0.325407,-0.945571][0.293074,0.842354,0.483754][0.805009,-2.07614,3.74046][-0.22318,0.312453,-0.923344][0.293072,0.790218,0.488674][0.843079,-2.12904,3.87564][0.161161,-0.795555,0.584055][0.322237,0.79058,0.42118][0.843079,-2.12904,3.87564][0.161161,-0.795555,0.584055][0.322237,0.79058,0.42118][-0.00853968,-2.1428,3.96566][0.000479795,-0.80452,0.593925][0.322221,0.841962,0.403517][-0.00853729,-2.08886,3.82953][0.00229836,0.325407,-0.945571][0.293074,0.842354,0.483754][0.805009,-2.07614,3.74046][-0.22318,0.312453,-0.923344][0.293072,0.790218,0.488674][1.57132,-2.04421,3.47351][-0.479782,0.25342,-0.839993][0.293067,0.746818,0.498621][1.63834,-2.08587,3.58436][0.355331,-0.770133,0.52975][0.322116,0.742747,0.47808][1.63834,-2.08587,3.58436][0.355331,-0.770133,0.52975][0.322116,0.742747,0.47808][0.843079,-2.12904,3.87564][0.161161,-0.795555,0.584055][0.322237,0.79058,0.42118][0.805009,-2.07614,3.74046][-0.22318,0.312453,-0.923344][0.293072,0.790218,0.488674][-0.482633,2.88066,1.31299][-0.0779933,-0.849787,-0.521324][0.159722,0.745496,0.13014][-0.480911,2.73628,1.7906][-0.168886,-0.90458,-0.391424][0.158592,0.768314,0.125307][-0.484089,2.80172,1.83353][-0.746785,0.585678,0.315108][0.154656,0.769061,0.131067][-0.484089,2.80172,1.83353][-0.746785,0.585678,0.315108][0.154656,0.769061,0.131067][-0.483643,3.05596,1.26345][-0.562865,0.761451,0.321521][0.155439,0.737856,0.137559][-0.482633,2.88066,1.31299][-0.0779933,-0.849787,-0.521324][0.159722,0.745496,0.13014][-0.491399,3.05702,0.28588][-0.314657,-0.948156,0.0446294][0.160265,0.686312,0.129896][-0.483153,2.93813,-0.299717][-0.187308,-0.949245,0.252686][0.160825,0.654458,0.125885][-0.456639,3.01185,-0.322905][0.575622,-0.786026,0.225438][0.155669,0.654518,0.132195][-0.456639,3.01185,-0.322905][0.575622,-0.786026,0.225438][0.155669,0.654518,0.132195][-0.459684,3.11999,0.283386][0.556191,-0.83008,0.0402472][0.155502,0.686294,0.137325][-0.491399,3.05702,0.28588][-0.314657,-0.948156,0.0446294][0.160265,0.686312,0.129896][-0.461793,3.03361,1.25569][0.354295,-0.872468,-0.336564][0.155439,0.737856,0.137559][-0.516735,3.01197,1.25209][-0.918244,-0.377663,0.119157][0.159754,0.739506,0.131104][-0.491399,3.05702,0.28588][-0.314657,-0.948156,0.0446294][0.160265,0.686312,0.129896][-0.491399,3.05702,0.28588][-0.314657,-0.948156,0.0446294][0.160265,0.686312,0.129896][-0.459684,3.11999,0.283386][0.556191,-0.83008,0.0402472][0.155502,0.686294,0.137325][-0.461793,3.03361,1.25569][0.354295,-0.872468,-0.336564][0.155439,0.737856,0.137559][0.837331,-2.10567,3.85424][-0.169088,0.76506,-0.621363][0.322237,0.79058,0.42118][0.805009,-2.07614,3.74046][-0.22318,0.312453,-0.923344][0.293072,0.790218,0.488674][-0.00853729,-2.08886,3.82953][0.00229836,0.325407,-0.945571][0.293074,0.842354,0.483754][-0.00853729,-2.08886,3.82953][0.00229836,0.325407,-0.945571][0.293074,0.842354,0.483754][-0.00854182,-2.1192,3.94374][-0.000322372,0.773597,-0.633678][0.322221,0.841962,0.403517][0.837331,-2.10567,3.85424][-0.169088,0.76506,-0.621363][0.322237,0.79058,0.42118][1.62586,-2.06311,3.56529][-0.373386,0.733312,-0.568188][0.322116,0.742747,0.47808][1.57132,-2.04421,3.47351][-0.479782,0.25342,-0.839993][0.293067,0.746818,0.498621][0.805009,-2.07614,3.74046][-0.22318,0.312453,-0.923344][0.293072,0.790218,0.488674][0.805009,-2.07614,3.74046][-0.22318,0.312453,-0.923344][0.293072,0.790218,0.488674][0.837331,-2.10567,3.85424][-0.169088,0.76506,-0.621363][0.322237,0.79058,0.42118][1.62586,-2.06311,3.56529][-0.373386,0.733312,-0.568188][0.322116,0.742747,0.47808][2.88555,-0.605537,1.3152][-0.619873,-0.755794,-0.211029][0.410311,0.61596,0.475015][2.63965,-0.707261,2.26404][-0.729086,-0.568584,-0.38098][0.410198,0.662422,0.490742][2.73444,-0.625693,2.32764][0.418176,0.859901,0.292745][0.383471,0.663334,0.490304][2.73444,-0.625693,2.32764][0.418176,0.859901,0.292745][0.383471,0.663334,0.490304][3.12796,-0.403904,0.255315][0.441823,0.893485,0.0804775][0.383687,0.562068,0.42789][2.88555,-0.605537,1.3152][-0.619873,-0.755794,-0.211029][0.410311,0.61596,0.475015][2.63965,-0.707261,2.26404][-0.729086,-0.568584,-0.38098][0.410198,0.662422,0.490742][2.1652,-0.791087,2.99658][-0.595738,-0.527462,-0.605706][0.410088,0.7056,0.49456][2.24217,-0.713833,3.08728][0.35036,0.842454,0.409291][0.383305,0.705474,0.579042][2.24217,-0.713833,3.08728][0.35036,0.842454,0.409291][0.383305,0.705474,0.579042][2.73444,-0.625693,2.32764][0.418176,0.859901,0.292745][0.383471,0.663334,0.490304][2.63965,-0.707261,2.26404][-0.729086,-0.568584,-0.38098][0.410198,0.662422,0.490742][2.9735,0.22733,-0.185076][0.812115,0.268752,-0.51792][0.0717128,0.459842,-0.0563793][3.05612,-0.460252,-0.318511][0.406221,-0.303561,-0.861879][0.0732388,0.422476,-0.159868][2.7689,0.76547,-0.140449][0.902694,0.389607,-0.182621][0.0757113,0.49159,0.124314][-3.01469,-0.209125,-0.265301][0.585708,-0.243549,0.773065][0.0794311,0.984106,0.123822][-3.00441,-0.478979,-0.290267][0.882494,-0.355911,0.307459][0.0830268,0.996991,0.121645][-2.72181,0.743731,-0.114189][0.955415,-0.295143,-0.00855851][0.080887,0.928314,0.1256][-2.95054,-0.227685,-0.298605][-0.103987,0.151619,-0.982954][0.0830021,0.984371,0.12289][-3.00441,-0.478979,-0.290267][0.882494,-0.355911,0.307459][0.0830268,0.996991,0.121645][-3.08272,-0.449443,-0.31754][-0.557003,0.131026,-0.820109][0.0795617,0.9968,0.122028][-3.08272,-0.449443,-0.31754][-0.557003,0.131026,-0.820109][0.0795617,0.9968,0.122028][-2.79436,0.781803,-0.136677][-0.53464,0.306317,-0.787611][0.0799988,0.928217,0.126004][-2.95054,-0.227685,-0.298605][-0.103987,0.151619,-0.982954][0.0830021,0.984371,0.12289][-2.21523,-1.96299,2.93884][0.732619,0.236269,-0.638316][0.293058,0.981674,0.503596][-1.58848,-2.04297,3.47355][0.504085,0.257874,-0.824257][0.293916,0.938612,0.499227][-1.65541,-2.08495,3.58428][-0.357753,-0.779702,0.513885][0.321781,0.941173,0.478093][-1.65541,-2.08495,3.58428][-0.357753,-0.779702,0.513885][0.321781,0.941173,0.478093][-2.32843,-2.00732,3.0484][-0.536184,-0.748444,0.390305][0.322174,0.981567,0.582554][-2.21523,-1.96299,2.93884][0.732619,0.236269,-0.638316][0.293058,0.981674,0.503596][-2.32843,-2.00732,3.0484][-0.536184,-0.748444,0.390305][0.194565,0.423759,0.434748][-2.83335,-1.91494,2.24536][-0.642591,-0.739103,0.201997][0.193062,0.444638,0.518192][-2.71763,-1.88177,2.18669][0.90581,0.186524,-0.380417][0.164462,0.446785,0.498826][-2.71763,-1.88177,2.18669][0.90581,0.186524,-0.380417][0.164462,0.446785,0.498826][-2.21523,-1.96299,2.93884][0.732619,0.236269,-0.638316][0.165433,0.426003,0.523188][-2.32843,-2.00732,3.0484][-0.536184,-0.748444,0.390305][0.194565,0.423759,0.434748][-3.11979,-0.552263,0.824183][-0.746534,-0.283734,0.601815][0.012572,0.995999,0.122212][-3.05617,-0.569792,0.831412][0.623602,-0.719988,0.304529][0.0126909,0.995973,0.122209][-2.81092,0.671623,1.0189][-0.944584,0.30114,0.130672][0.00868174,0.927606,0.127083][2.63623,-1.4278,-1.95791][-0.889532,0.0607325,0.452818][0.293298,0.461873,0.519316][2.18088,-1.23765,-2.66352][-0.717598,0.0531077,0.69443][0.293291,0.422831,0.528748][2.27599,-1.25024,-2.75618][0.480866,-0.608663,-0.631108][0.321822,0.423564,0.585454][2.27599,-1.25024,-2.75618][0.480866,-0.608663,-0.631108][0.321822,0.423564,0.585454][2.77053,-1.45035,-2.0378][0.596249,-0.682022,-0.423478][0.32202,0.457906,0.491649][2.63623,-1.4278,-1.95791][-0.889532,0.0607325,0.452818][0.293298,0.461873,0.519316][2.72963,-0.657087,2.32229][-0.495624,-0.812932,-0.305777][0.383471,0.663334,0.490304][2.63965,-0.707261,2.26404][-0.729086,-0.568584,-0.38098][0.410198,0.662422,0.490742][2.88555,-0.605537,1.3152][-0.619873,-0.755794,-0.211029][0.410311,0.61596,0.475015][2.88555,-0.605537,1.3152][-0.619873,-0.755794,-0.211029][0.410311,0.61596,0.475015][2.96562,-0.552073,1.34694][-0.444876,-0.879371,-0.169681][0.384694,0.615901,0.442003][2.72963,-0.657087,2.32229][-0.495624,-0.812932,-0.305777][0.383471,0.663334,0.490304][2.23823,-0.744978,3.08008][-0.406118,-0.791608,-0.456536][0.383305,0.705474,0.579042][2.1652,-0.791087,2.99658][-0.595738,-0.527462,-0.605706][0.410088,0.7056,0.49456][2.63965,-0.707261,2.26404][-0.729086,-0.568584,-0.38098][0.410198,0.662422,0.490742][2.63965,-0.707261,2.26404][-0.729086,-0.568584,-0.38098][0.410198,0.662422,0.490742][2.72963,-0.657087,2.32229][-0.495624,-0.812932,-0.305777][0.383471,0.663334,0.490304][2.23823,-0.744978,3.08008][-0.406118,-0.791608,-0.456536][0.383305,0.705474,0.579042][-2.87343,-0.392379,-0.814655][0.597139,-0.799986,0.0587166][0.286297,0.617867,0.483469][-2.63042,-0.280368,-1.73888][0.734956,-0.628415,0.254821][0.286379,0.668699,0.505096][-2.70881,-0.202313,-1.77396][-0.405372,0.908736,-0.0993579][0.257829,0.667917,0.501381][-2.70881,-0.202313,-1.77396][-0.405372,0.908736,-0.0993579][0.257829,0.667917,0.501381][-3.13786,-0.410046,0.255091][-0.447402,0.88939,0.0938962][0.257899,0.559585,0.564092][-2.87343,-0.392379,-0.814655][0.597139,-0.799986,0.0587166][0.286297,0.617867,0.483469][-2.63042,-0.280368,-1.73888][0.734956,-0.628415,0.254821][0.286379,0.668699,0.505096][-2.1629,-0.201457,-2.43576][0.590285,-0.644891,0.485467][0.286475,0.706425,0.513275][-2.22736,-0.122006,-2.49193][-0.341956,0.917319,-0.20394][0.257941,0.707751,0.433948][-2.22736,-0.122006,-2.49193][-0.341956,0.917319,-0.20394][0.257941,0.707751,0.433948][-2.70881,-0.202313,-1.77396][-0.405372,0.908736,-0.0993579][0.257829,0.667917,0.501381][-2.63042,-0.280368,-1.73888][0.734956,-0.628415,0.254821][0.286379,0.668699,0.505096][-2.2913,-1.27689,-2.75825][-0.482728,-0.606848,-0.631434][0.193985,0.706203,0.434827][-1.63588,-1.18914,-3.20321][-0.291786,-0.624158,-0.724768][0.193588,0.742966,0.52371][-1.56171,-1.17332,-3.0794][0.430419,0.0671924,0.900125][0.166285,0.747848,0.523432][-1.56171,-1.17332,-3.0794][0.430419,0.0671924,0.900125][0.166285,0.747848,0.523432][-2.18137,-1.25872,-2.64914][0.688612,0.114971,0.715958][0.165242,0.710303,0.52906][-2.2913,-1.27689,-2.75825][-0.482728,-0.606848,-0.631434][0.193985,0.706203,0.434827][-3.07708,-1.66078,0.0442361][0.987251,0.157137,0.0253564][0.166655,0.560098,0.488487][-3.00793,-1.77726,1.17988][0.97793,0.150853,-0.144553][0.164457,0.498396,0.488211][-3.13456,-1.8074,1.21504][-0.682504,-0.72855,0.0583348][0.19303,0.498712,0.575772][-3.13456,-1.8074,1.21504][-0.682504,-0.72855,0.0583348][0.19303,0.498712,0.575772][-3.2264,-1.69414,0.0604048][-0.683266,-0.724887,-0.0876666][0.193135,0.559355,0.592401][-3.07708,-1.66078,0.0442361][0.987251,0.157137,0.0253564][0.166655,0.560098,0.488487][-0.0083065,-1.10808,-3.37272][0.00936681,0.0505806,0.998676][0.167135,0.851459,0.502238][-0.824322,-1.1364,-3.32685][0.157036,0.0327541,0.98705][0.167135,0.793364,0.509409][-0.85611,-1.1495,-3.43173][-0.113288,-0.653134,-0.74872][0.193383,0.792499,0.569308][-0.85611,-1.1495,-3.43173][-0.113288,-0.653134,-0.74872][0.193383,0.792499,0.569308][-0.00783968,-1.12236,-3.49886][0.0156311,-0.657932,-0.752915][0.193133,0.846615,0.583032][-0.0083065,-1.10808,-3.37272][0.00936681,0.0505806,0.998676][0.167135,0.851459,0.502238][0.840384,-1.11437,-3.43086][0.125892,-0.644232,-0.754398][0.192975,0.900754,0.569808][1.66053,-1.1317,-3.20254][0.312431,-0.590899,-0.743791][0.192992,0.950333,0.524503][1.59469,-1.12385,-3.09802][-0.424546,0.0257558,0.90504][0.165435,0.954207,0.526256][1.59469,-1.12385,-3.09802][-0.424546,0.0257558,0.90504][0.165435,0.954207,0.526256][0.80819,-1.10361,-3.32592][-0.171244,0.0213277,0.984998][0.166002,0.902851,0.509372][0.840384,-1.11437,-3.43086][0.125892,-0.644232,-0.754398][0.192975,0.900754,0.569808][-0.822136,-2.07591,3.74047][0.21336,0.315364,-0.924674][0.293922,0.895258,0.488995][-0.85447,-2.10549,3.85424][0.160766,0.767337,-0.620764][0.322069,0.893345,0.421182][-0.00854182,-2.1192,3.94374][-0.000322372,0.773597,-0.633678][0.322221,0.841962,0.403517][-0.00854182,-2.1192,3.94374][-0.000322372,0.773597,-0.633678][0.322221,0.841962,0.403517][-0.00853729,-2.08886,3.82953][0.00229836,0.325407,-0.945571][0.293074,0.842354,0.483754][-0.822136,-2.07591,3.74047][0.21336,0.315364,-0.924674][0.293922,0.895258,0.488995][-1.58848,-2.04297,3.47355][0.504085,0.257874,-0.824257][0.293916,0.938612,0.499227][-1.643,-2.06209,3.5653][0.375957,0.740412,-0.557178][0.321781,0.941173,0.478093][-0.85447,-2.10549,3.85424][0.160766,0.767337,-0.620764][0.322069,0.893345,0.421182][-0.85447,-2.10549,3.85424][0.160766,0.767337,-0.620764][0.322069,0.893345,0.421182][-0.822136,-2.07591,3.74047][0.21336,0.315364,-0.924674][0.293922,0.895258,0.488995][-1.58848,-2.04297,3.47355][0.504085,0.257874,-0.824257][0.293916,0.938612,0.499227][1.53064,-0.120875,-2.88941][-0.585782,-0.333819,0.738529][0.286696,0.951359,0.507811][2.13356,-0.195173,-2.42439][-0.594014,-0.655807,0.465902][0.286586,0.993177,0.512716][2.21111,-0.101282,-2.491][0.350282,0.916655,-0.192472][0.258692,0.994633,0.522975][2.21111,-0.101282,-2.491][0.350282,0.916655,-0.192472][0.258692,0.994633,0.522975][1.59817,-0.0713798,-3.00999][0.287548,0.823813,-0.488517][0.250954,0.953223,0.517177][1.53064,-0.120875,-2.88941][-0.585782,-0.333819,0.738529][0.286696,0.951359,0.507811][1.59817,-0.0713798,-3.00999][0.287548,0.823813,-0.488517][0.250954,0.953223,0.517177][0.816881,-0.0101729,-3.21547][0.0973907,0.931307,-0.350973][0.258187,0.904681,0.550114][0.791391,-0.0984463,-3.11518][-0.0979443,-0.589578,0.801751][0.286771,0.903369,0.495953][0.791391,-0.0984463,-3.11518][-0.0979443,-0.589578,0.801751][0.286771,0.903369,0.495953][1.53064,-0.120875,-2.88941][-0.585782,-0.333819,0.738529][0.286696,0.951359,0.507811][1.59817,-0.0713798,-3.00999][0.287548,0.823813,-0.488517][0.250954,0.953223,0.517177][-1.58473,-0.839903,3.50473][0.614776,-0.171893,-0.769743][0.409996,0.940396,0.488537][-2.19558,-0.780207,3.0103][0.606834,-0.518029,-0.602826][0.410693,0.981161,0.495406][-2.25922,-0.714024,3.08712][-0.353589,0.84978,0.390959][0.383983,0.981571,0.57919][-2.25922,-0.714024,3.08712][-0.353589,0.84978,0.390959][0.383983,0.981571,0.57919][-1.65155,-0.818388,3.63774][-0.315644,0.688747,0.652684][0.37715,0.939914,0.498308][-1.58473,-0.839903,3.50473][0.614776,-0.171893,-0.769743][0.409996,0.940396,0.488537][-1.65155,-0.818388,3.63774][-0.315644,0.688747,0.652684][0.37715,0.939914,0.498308][-0.83448,-0.817458,3.87798][-0.100242,0.837595,0.537016][0.383367,0.894106,0.446805][-0.809315,-0.88331,3.75715][0.107031,-0.404035,-0.90846][0.410543,0.894226,0.476979][-0.809315,-0.88331,3.75715][0.107031,-0.404035,-0.90846][0.410543,0.894226,0.476979][-1.58473,-0.839903,3.50473][0.614776,-0.171893,-0.769743][0.409996,0.940396,0.488537][-1.65155,-0.818388,3.63774][-0.315644,0.688747,0.652684][0.37715,0.939914,0.498308][-2.704,-0.234124,-1.77544][0.498908,-0.856982,0.129123][0.257829,0.667917,0.501381][-2.63042,-0.280368,-1.73888][0.734956,-0.628415,0.254821][0.286379,0.668699,0.505096][-2.87343,-0.392379,-0.814655][0.597139,-0.799986,0.0587166][0.286297,0.617867,0.483469][-2.87343,-0.392379,-0.814655][0.597139,-0.799986,0.0587166][0.286297,0.617867,0.483469][-2.94606,-0.334375,-0.831519][0.417122,-0.908712,-0.0158592][0.25969,0.617588,0.542134][-2.704,-0.234124,-1.77544][0.498908,-0.856982,0.129123][0.257829,0.667917,0.501381][-2.22326,-0.153952,-2.4919][0.40865,-0.869772,0.276589][0.257941,0.707751,0.433948][-2.1629,-0.201457,-2.43576][0.590285,-0.644891,0.485467][0.286475,0.706425,0.513275][-2.63042,-0.280368,-1.73888][0.734956,-0.628415,0.254821][0.286379,0.668699,0.505096][-2.63042,-0.280368,-1.73888][0.734956,-0.628415,0.254821][0.286379,0.668699,0.505096][-2.704,-0.234124,-1.77544][0.498908,-0.856982,0.129123][0.257829,0.667917,0.501381][-2.22326,-0.153952,-2.4919][0.40865,-0.869772,0.276589][0.257941,0.707751,0.433948][0.431952,3.0518,1.25842][-0.518977,-0.826353,-0.218642][0.0917645,0.736037,0.140006][0.456222,2.77878,1.8215][-0.718723,-0.608507,-0.336386][0.0894868,0.768472,0.130641][-0.00164342,2.79191,1.90262][-0.00562702,-0.873403,-0.486966][0.122661,0.771398,0.140757][-0.00164342,2.79191,1.90262][-0.00562702,-0.873403,-0.486966][0.122661,0.771398,0.140757][-0.00156569,3.0927,1.25499][0.014065,-0.967749,-0.251524][0.122579,0.735383,0.149037][0.431952,3.0518,1.25842][-0.518977,-0.826353,-0.218642][0.0917645,0.736037,0.140006][0.428498,1.0397,-2.77128][-0.094296,0.535673,-0.839144][0.0897063,0.487346,0.108393][0.41958,-0.118264,-3.19475][-0.0685409,-0.953446,0.29367][0.0894086,0.425327,0.100977][0.430814,-0.0882957,-3.26782][0.481576,-0.820918,-0.306885][0.0929308,0.425598,0.101544][0.430814,-0.0882957,-3.26782][0.481576,-0.820918,-0.306885][0.0929308,0.425598,0.101544][0.409481,1.10514,-2.88667][0.620142,0.363519,-0.695181][0.0958445,0.487544,0.111807][0.428498,1.0397,-2.77128][-0.094296,0.535673,-0.839144][0.0897063,0.487346,0.108393][0.409481,1.10514,-2.88667][0.620142,0.363519,-0.695181][0.0958445,0.487544,0.111807][0.46134,2.01152,-2.22771][0.793735,0.411086,-0.448323][0.092968,0.543982,0.118273][0.43713,1.94013,-2.15364][-0.10347,-0.746824,0.656923][0.0889033,0.543941,0.114691][0.43713,1.94013,-2.15364][-0.10347,-0.746824,0.656923][0.0889033,0.543941,0.114691][0.428498,1.0397,-2.77128][-0.094296,0.535673,-0.839144][0.0897063,0.487346,0.108393][0.409481,1.10514,-2.88667][0.620142,0.363519,-0.695181][0.0958445,0.487544,0.111807][-0.303747,3.06351,0.186486][0.137847,-0.881639,-0.451343][0.0816959,0.729808,0.130355][-0.835991,2.9054,0.202866][0.377105,-0.911755,0.162771][0.0814811,0.761747,0.130636][-0.865412,2.98065,0.178993][-0.210076,0.595897,-0.775097][0.0776681,0.761643,0.134545][-0.865412,2.98065,0.178993][-0.210076,0.595897,-0.775097][0.0776681,0.761643,0.134545][-0.311614,3.1317,0.199353][-0.0839285,0.772469,-0.629482][0.0784967,0.729083,0.134711][-0.303747,3.06351,0.186486][0.137847,-0.881639,-0.451343][0.0816959,0.729808,0.130355][2.31143,-2.00692,3.04841][0.539527,-0.744597,0.393048][0.322417,0.702797,0.579277][1.63834,-2.08587,3.58436][0.355331,-0.770133,0.52975][0.322116,0.742747,0.47808][1.57132,-2.04421,3.47351][-0.479782,0.25342,-0.839993][0.293067,0.746818,0.498621][1.57132,-2.04421,3.47351][-0.479782,0.25342,-0.839993][0.293067,0.746818,0.498621][2.21425,-1.96968,2.95229][-0.750969,0.209592,-0.626192][0.293057,0.704731,0.502749][2.31143,-2.00692,3.04841][0.539527,-0.744597,0.393048][0.322417,0.702797,0.579277][0.847507,2.77224,1.30796][-0.373294,-0.927629,0.0124912][0.00523073,0.661115,0.135878][1.66796,2.31101,1.24668][-0.657686,-0.749595,0.0745348][0.00639072,0.608195,0.133647][1.72017,2.41108,1.25718][0.467869,0.4664,0.750713][0.00865765,0.607435,0.134529][1.72017,2.41108,1.25718][0.467869,0.4664,0.750713][0.00865765,0.607435,0.134529][0.878626,2.88462,1.32258][0.275729,0.554785,0.784976][0.00776204,0.660754,0.137261][0.847507,2.77224,1.30796][-0.373294,-0.927629,0.0124912][0.00523073,0.661115,0.135878][-3.12069,-0.510653,0.252348][0.258091,-0.814999,-0.518812][0.0467371,0.996794,0.123721][-3.11979,-0.552263,0.824183][-0.746534,-0.283734,0.601815][0.012572,0.995999,0.122212][-2.81092,0.671623,1.0189][-0.944584,0.30114,0.130672][0.00868174,0.927606,0.127083][-2.81092,0.671623,1.0189][-0.944584,0.30114,0.130672][0.00868174,0.927606,0.127083][-2.84863,0.746112,0.437211][-0.94997,0.311733,0.0195098][0.0438394,0.928207,0.130162][-3.12069,-0.510653,0.252348][0.258091,-0.814999,-0.518812][0.0467371,0.996794,0.123721][-2.3661,1.65051,1.15606][-0.574966,0.260604,0.775564][0.00874363,0.867728,0.130848][-2.42022,1.71639,0.582329][-0.850573,0.52476,0.0339516][0.042085,0.870539,0.134398][-2.84863,0.746112,0.437211][-0.94997,0.311733,0.0195098][0.0438394,0.928207,0.130162][-2.84863,0.746112,0.437211][-0.94997,0.311733,0.0195098][0.0438394,0.928207,0.130162][-2.81092,0.671623,1.0189][-0.944584,0.30114,0.130672][0.00868174,0.927606,0.127083][-2.3661,1.65051,1.15606][-0.574966,0.260604,0.775564][0.00874363,0.867728,0.130848][-1.63588,-1.18914,-3.20321][-0.291786,-0.624158,-0.724768][0.193588,0.742966,0.52371][-0.85611,-1.1495,-3.43173][-0.113288,-0.653134,-0.74872][0.193383,0.792499,0.569308][-0.824322,-1.1364,-3.32685][0.157036,0.0327541,0.98705][0.167135,0.793364,0.509409][-0.824322,-1.1364,-3.32685][0.157036,0.0327541,0.98705][0.167135,0.793364,0.509409][-1.56171,-1.17332,-3.0794][0.430419,0.0671924,0.900125][0.166285,0.747848,0.523432][-1.63588,-1.18914,-3.20321][-0.291786,-0.624158,-0.724768][0.193588,0.742966,0.52371][1.53443,-0.849928,3.48717][-0.402936,-0.475145,-0.782227][0.409996,0.744939,0.487929][0.796391,-0.874184,3.7769][-0.207418,-0.41571,-0.88553][0.409937,0.789667,0.476657][0.817475,-0.817466,3.87799][0.102643,0.829556,0.548909][0.383216,0.79224,0.446754][0.817475,-0.817466,3.87799][0.102643,0.829556,0.548909][0.383216,0.79224,0.446754][1.58654,-0.778515,3.59757][0.229224,0.830205,0.50815][0.383076,0.745452,0.496512][1.53443,-0.849928,3.48717][-0.402936,-0.475145,-0.782227][0.409996,0.744939,0.487929][1.58654,-0.778515,3.59757][0.229224,0.830205,0.50815][0.383076,0.745452,0.496512][2.24217,-0.713833,3.08728][0.35036,0.842454,0.409291][0.383305,0.705474,0.579042][2.1652,-0.791087,2.99658][-0.595738,-0.527462,-0.605706][0.410088,0.7056,0.49456][2.1652,-0.791087,2.99658][-0.595738,-0.527462,-0.605706][0.410088,0.7056,0.49456][1.53443,-0.849928,3.48717][-0.402936,-0.475145,-0.782227][0.409996,0.744939,0.487929][1.58654,-0.778515,3.59757][0.229224,0.830205,0.50815][0.383076,0.745452,0.496512][-0.83448,-0.817458,3.87798][-0.100242,0.837595,0.537016][0.383367,0.894106,0.446805][-0.00852442,-0.830411,3.96564][0.00139332,0.825683,0.564133][0.38324,0.84356,0.431525][-0.00852823,-0.893894,3.84185][0.0143629,-0.402269,-0.915409][0.409917,0.844198,0.471265][-0.00852823,-0.893894,3.84185][0.0143629,-0.402269,-0.915409][0.409917,0.844198,0.471265][-0.809315,-0.88331,3.75715][0.107031,-0.404035,-0.90846][0.410543,0.894226,0.476979][-0.83448,-0.817458,3.87798][-0.100242,0.837595,0.537016][0.383367,0.894106,0.446805][-3.03217,-0.496513,0.24553][0.799342,-0.597353,-0.0649773][0.286218,0.5591,0.480351][-3.13281,-0.441696,0.251909][0.534784,-0.842301,-0.0673421][0.257899,0.559585,0.564092][-2.94606,-0.334375,-0.831519][0.417122,-0.908712,-0.0158592][0.25969,0.617588,0.542134][-2.94606,-0.334375,-0.831519][0.417122,-0.908712,-0.0158592][0.25969,0.617588,0.542134][-2.87343,-0.392379,-0.814655][0.597139,-0.799986,0.0587166][0.286297,0.617867,0.483469][-3.03217,-0.496513,0.24553][0.799342,-0.597353,-0.0649773][0.286218,0.5591,0.480351][-2.93322,-0.593645,1.32023][0.804186,-0.553375,-0.216934][0.284773,0.500446,0.478299][-2.99753,-0.564103,1.3464][0.514663,-0.835736,-0.191488][0.259061,0.501074,0.546282][-3.13281,-0.441696,0.251909][0.534784,-0.842301,-0.0673421][0.257899,0.559585,0.564092][-3.13281,-0.441696,0.251909][0.534784,-0.842301,-0.0673421][0.257899,0.559585,0.564092][-3.03217,-0.496513,0.24553][0.799342,-0.597353,-0.0649773][0.286218,0.5591,0.480351][-2.93322,-0.593645,1.32023][0.804186,-0.553375,-0.216934][0.284773,0.500446,0.478299][0.443845,2.67313,-1.33274][-0.663639,-0.658855,0.35425][0.0928212,0.60054,0.126884][0.446341,2.59728,-1.28872][-0.113399,-0.878018,0.465001][0.0885639,0.600705,0.122528][0.45586,2.93359,-0.298418][-0.101184,-0.961939,0.253843][0.084306,0.654715,0.125546][0.45586,2.93359,-0.298418][-0.101184,-0.961939,0.253843][0.084306,0.654715,0.125546][0.452196,3.00821,-0.321939][-0.684564,-0.700337,0.20224][0.0899263,0.654763,0.132036][0.443845,2.67313,-1.33274][-0.663639,-0.658855,0.35425][0.0928212,0.60054,0.126884][0.461541,3,1.24382][-0.184995,-1.50383,-0.078372][0.0849246,0.736146,0.132211][0.431952,3.0518,1.25842][-0.518977,-0.826353,-0.218642][0.0917645,0.736037,0.140006][0.455706,3.11552,0.283657][-0.693855,-0.718912,0.0416145][0.0894926,0.686264,0.137714][0.455706,3.11552,0.283657][-0.693855,-0.718912,0.0416145][0.0894926,0.686264,0.137714][0.46227,3.04973,0.287716][-0.0752053,-0.997166,0.00209714][0.0839047,0.685861,0.130238][0.461541,3,1.24382][-0.184995,-1.50383,-0.078372][0.0849246,0.736146,0.132211][-0.469529,1.35618,3.25999][-0.16548,-0.478178,-0.862532][0.155172,0.874621,0.113052][-0.453764,0.326726,3.67029][-0.168568,-0.240512,-0.955897][0.15561,0.93142,0.106817][-0.456378,0.350473,3.74667][-0.736745,0.158208,0.657402][0.152196,0.931278,0.108863][-0.456378,0.350473,3.74667][-0.736745,0.158208,0.657402][0.152196,0.931278,0.108863][-0.468346,1.40921,3.35146][-0.716711,0.33343,0.612494][0.151436,0.874535,0.116303][-0.469529,1.35618,3.25999][-0.16548,-0.478178,-0.862532][0.155172,0.874621,0.113052][-0.468346,1.40921,3.35146][-0.716711,0.33343,0.612494][0.151436,0.874535,0.116303][-0.478561,2.26047,2.70134][-0.710866,0.520053,0.473514][0.152111,0.820493,0.124768][-0.478742,2.1815,2.62643][-0.153833,-0.723221,-0.673266][0.155972,0.820304,0.120868][-0.478742,2.1815,2.62643][-0.153833,-0.723221,-0.673266][0.155972,0.820304,0.120868][-0.469529,1.35618,3.25999][-0.16548,-0.478178,-0.862532][0.155172,0.874621,0.113052][-0.468346,1.40921,3.35146][-0.716711,0.33343,0.612494][0.151436,0.874535,0.116303][-0.835991,2.9054,0.202866][0.377105,-0.911755,0.162771][0.0814811,0.761747,0.130636][-1.62245,2.45226,0.141653][0.627165,-0.765092,0.14594][0.0787803,0.813288,0.13201][-1.6856,2.5355,0.115976][-0.362392,0.549636,-0.75271][0.0752269,0.813367,0.134259][-1.6856,2.5355,0.115976][-0.362392,0.549636,-0.75271][0.0752269,0.813367,0.134259][-0.865412,2.98065,0.178993][-0.210076,0.595897,-0.775097][0.0776681,0.761643,0.134545][-0.835991,2.9054,0.202866][0.377105,-0.911755,0.162771][0.0814811,0.761747,0.130636][0.428498,1.0397,-2.77128][-0.094296,0.535673,-0.839144][0.0897063,0.487346,0.108393][0.418454,0.145341,-3.19675][-0.716423,-0.234001,0.657253][0.0930802,0.436953,0.104294][0.41958,-0.118264,-3.19475][-0.0685409,-0.953446,0.29367][0.0894086,0.425327,0.100977][2.20706,-0.133235,-2.49112][-0.404123,-0.877742,0.257399][0.258692,0.994633,0.522975][2.13356,-0.195173,-2.42439][-0.594014,-0.655807,0.465902][0.286586,0.993177,0.512716][1.53064,-0.120875,-2.88941][-0.585782,-0.333819,0.738529][0.286696,0.951359,0.507811][1.53064,-0.120875,-2.88941][-0.585782,-0.333819,0.738529][0.286696,0.951359,0.507811][1.58532,-0.0898803,-2.98698][-0.29748,-0.811049,0.503691][0.250954,0.953223,0.517177][2.20706,-0.133235,-2.49112][-0.404123,-0.877742,0.257399][0.258692,0.994633,0.522975][0.791391,-0.0984463,-3.11518][-0.0979443,-0.589578,0.801751][0.286771,0.903369,0.495953][0.815441,-0.042188,-3.21226][-0.112431,-0.887659,0.446566][0.258187,0.904681,0.550114][1.58532,-0.0898803,-2.98698][-0.29748,-0.811049,0.503691][0.250954,0.953223,0.517177][1.58532,-0.0898803,-2.98698][-0.29748,-0.811049,0.503691][0.250954,0.953223,0.517177][1.53064,-0.120875,-2.88941][-0.585782,-0.333819,0.738529][0.286696,0.951359,0.507811][0.791391,-0.0984463,-3.11518][-0.0979443,-0.589578,0.801751][0.286771,0.903369,0.495953][-0.00852442,-0.830411,3.96564][0.00139332,0.825683,0.564133][0.38324,0.84356,0.431525][0.817475,-0.817466,3.87799][0.102643,0.829556,0.548909][0.383216,0.79224,0.446754][0.796391,-0.874184,3.7769][-0.207418,-0.41571,-0.88553][0.409937,0.789667,0.476657][0.796391,-0.874184,3.7769][-0.207418,-0.41571,-0.88553][0.409937,0.789667,0.476657][-0.00852823,-0.893894,3.84185][0.0143629,-0.402269,-0.915409][0.409917,0.844198,0.471265][-0.00852442,-0.830411,3.96564][0.00139332,0.825683,0.564133][0.38324,0.84356,0.431525][-2.71763,-1.88177,2.18669][0.90581,0.186524,-0.380417][0.164462,0.446785,0.498826][-2.83335,-1.91494,2.24536][-0.642591,-0.739103,0.201997][0.193062,0.444638,0.518192][-3.13456,-1.8074,1.21504][-0.682504,-0.72855,0.0583348][0.19303,0.498712,0.575772][-3.13456,-1.8074,1.21504][-0.682504,-0.72855,0.0583348][0.19303,0.498712,0.575772][-3.00793,-1.77726,1.17988][0.97793,0.150853,-0.144553][0.164457,0.498396,0.488211][-2.71763,-1.88177,2.18669][0.90581,0.186524,-0.380417][0.164462,0.446785,0.498826][-2.25528,-0.745193,3.08003][0.417457,-0.787716,-0.453027][0.383983,0.981571,0.57919][-2.19558,-0.780207,3.0103][0.606834,-0.518029,-0.602826][0.410693,0.981161,0.495406][-1.58473,-0.839903,3.50473][0.614776,-0.171893,-0.769743][0.409996,0.940396,0.488537][-1.58473,-0.839903,3.50473][0.614776,-0.171893,-0.769743][0.409996,0.940396,0.488537][-1.63774,-0.830994,3.61152][0.323996,-0.674543,-0.663339][0.37715,0.939914,0.498308][-2.25528,-0.745193,3.08003][0.417457,-0.787716,-0.453027][0.383983,0.981571,0.57919][-0.809315,-0.88331,3.75715][0.107031,-0.404035,-0.90846][0.410543,0.894226,0.476979][-0.833231,-0.848123,3.86821][0.116224,-0.777373,-0.61821][0.383367,0.894106,0.446805][-1.63774,-0.830994,3.61152][0.323996,-0.674543,-0.663339][0.37715,0.939914,0.498308][-1.63774,-0.830994,3.61152][0.323996,-0.674543,-0.663339][0.37715,0.939914,0.498308][-1.58473,-0.839903,3.50473][0.614776,-0.171893,-0.769743][0.409996,0.940396,0.488537][-0.809315,-0.88331,3.75715][0.107031,-0.404035,-0.90846][0.410543,0.894226,0.476979][1.66796,2.31101,1.24668][-0.657686,-0.749595,0.0745348][0.00639072,0.608195,0.133647][2.28261,1.61662,1.13997][-0.826602,-0.562283,-0.0237907][0.00472157,0.553403,0.129295][2.36657,1.64622,1.15334][0.583652,0.253493,0.771422][0.00691238,0.553027,0.130052][2.36657,1.64622,1.15334][0.583652,0.253493,0.771422][0.00691238,0.553027,0.130052][1.72017,2.41108,1.25718][0.467869,0.4664,0.750713][0.00865765,0.607435,0.134529][1.66796,2.31101,1.24668][-0.657686,-0.749595,0.0745348][0.00639072,0.608195,0.133647][3.03994,-0.477158,0.246131][-0.809467,-0.585978,-0.037313][0.410417,0.561223,0.480222][3.12289,-0.435547,0.252102][-0.546384,-0.83288,-0.0881776][0.383687,0.562068,0.42789][2.96562,-0.552073,1.34694][-0.444876,-0.879371,-0.169681][0.384694,0.615901,0.442003][2.96562,-0.552073,1.34694][-0.444876,-0.879371,-0.169681][0.384694,0.615901,0.442003][2.88555,-0.605537,1.3152][-0.619873,-0.755794,-0.211029][0.410311,0.61596,0.475015][3.03994,-0.477158,0.246131][-0.809467,-0.585978,-0.037313][0.410417,0.561223,0.480222][-0.00886393,-0.00448745,-3.29376][-0.00518041,0.923767,-0.38292][0.258321,0.85161,0.561643][-0.834296,-0.0224978,-3.21591][-0.105047,0.924991,-0.365181][0.258246,0.797908,0.550007][-0.807592,-0.110238,-3.11549][0.187304,-0.596969,0.780093][0.287185,0.796752,0.496143][-0.807592,-0.110238,-3.11549][0.187304,-0.596969,0.780093][0.287185,0.796752,0.496143][-0.00816154,-0.0902408,-3.1894][0.00361498,-0.577863,0.816126][0.287255,0.851844,0.489866][-0.00886393,-0.00448745,-3.29376][-0.00518041,0.923767,-0.38292][0.258321,0.85161,0.561643][-0.807592,-0.110238,-3.11549][0.187304,-0.596969,0.780093][0.287185,0.796752,0.496143][-0.832448,-0.0544917,-3.2127][0.122126,-0.883862,0.451523][0.258246,0.797908,0.550007][-0.0086174,-0.0364635,-3.28992][0.004942,-0.881343,0.472452][0.258321,0.85161,0.561643][-0.0086174,-0.0364635,-3.28992][0.004942,-0.881343,0.472452][0.258321,0.85161,0.561643][-0.00816154,-0.0902408,-3.1894][0.00361498,-0.577863,0.816126][0.287255,0.851844,0.489866][-0.807592,-0.110238,-3.11549][0.187304,-0.596969,0.780093][0.287185,0.796752,0.496143][2.18088,-1.23765,-2.66352][-0.717598,0.0531077,0.69443][0.165488,0.99445,0.528748][1.59469,-1.12385,-3.09802][-0.424546,0.0257558,0.90504][0.165435,0.954207,0.526256][1.66053,-1.1317,-3.20254][0.312431,-0.590899,-0.743791][0.192992,0.950333,0.524503][1.66053,-1.1317,-3.20254][0.312431,-0.590899,-0.743791][0.192992,0.950333,0.524503][2.27599,-1.25024,-2.75618][0.480866,-0.608663,-0.631108][0.193157,0.991832,0.435635][2.18088,-1.23765,-2.66352][-0.717598,0.0531077,0.69443][0.165488,0.99445,0.528748][-0.431157,1.07976,-2.84368][0.558562,-0.388376,0.732921][0.150123,0.487028,0.110712][-0.451187,1.04984,-2.79456][-0.153242,-0.445003,0.88232][0.15353,0.486812,0.108339][-0.471092,-0.115415,-3.21802][-0.252618,-0.95316,0.166341][0.151754,0.424436,0.100976][-0.471092,-0.115415,-3.21802][-0.252618,-0.95316,0.166341][0.151754,0.424436,0.100976][-0.439177,-0.0931484,-3.27349][-0.493955,-0.837058,-0.235249][0.147548,0.424847,0.101693][-0.431157,1.07976,-2.84368][0.558562,-0.388376,0.732921][0.150123,0.487028,0.110712][-0.471092,-0.115415,-3.21802][-0.252618,-0.95316,0.166341][0.151754,0.424436,0.100976][-0.451187,1.04984,-2.79456][-0.153242,-0.445003,0.88232][0.15353,0.486812,0.108339][-0.454151,1.08998,-2.86378][-0.70478,0.334538,-0.625595][0.150123,0.487028,0.110712][-0.454151,1.08998,-2.86378][-0.70478,0.334538,-0.625595][0.150123,0.487028,0.110712][-0.439177,-0.0931484,-3.27349][-0.493955,-0.837058,-0.235249][0.147548,0.424847,0.101693][-0.471092,-0.115415,-3.21802][-0.252618,-0.95316,0.166341][0.151754,0.424436,0.100976][2.61431,-0.263864,-1.73845][-0.687011,-0.627919,0.365695][0.410631,0.464681,0.504308][2.68785,-0.217359,-1.7747][-0.49831,-0.858197,0.123231][0.383707,0.463359,0.499289][2.96618,-0.332327,-0.835826][-0.437738,-0.899039,-0.0107191][0.382133,0.509298,0.445981][2.96618,-0.332327,-0.835826][-0.437738,-0.899039,-0.0107191][0.382133,0.509298,0.445981][2.8996,-0.387976,-0.815273][0.754851,0.60749,-0.247297][0.410509,0.51015,0.488322][2.61431,-0.263864,-1.73845][-0.687011,-0.627919,0.365695][0.410631,0.464681,0.504308][2.13356,-0.195173,-2.42439][-0.594014,-0.655807,0.465902][0.410746,0.427765,0.512716][2.20706,-0.133235,-2.49112][-0.404123,-0.877742,0.257399][0.384386,0.42798,0.577259][2.68785,-0.217359,-1.7747][-0.49831,-0.858197,0.123231][0.383707,0.463359,0.499289][2.68785,-0.217359,-1.7747][-0.49831,-0.858197,0.123231][0.383707,0.463359,0.499289][2.61431,-0.263864,-1.73845][-0.687011,-0.627919,0.365695][0.410631,0.464681,0.504308][2.13356,-0.195173,-2.42439][-0.594014,-0.655807,0.465902][0.410746,0.427765,0.512716][-1.59149,-0.0619634,-2.96284][-0.223516,0.923333,-0.312244][0.258835,0.749551,0.515636][-2.22736,-0.122006,-2.49193][-0.341956,0.917319,-0.20394][0.257941,0.707751,0.433948][-2.1629,-0.201457,-2.43576][0.590285,-0.644891,0.485467][0.286475,0.706425,0.513275][-2.1629,-0.201457,-2.43576][0.590285,-0.644891,0.485467][0.286475,0.706425,0.513275][-1.53793,-0.153617,-2.87482][0.379346,-0.637782,0.670321][0.287071,0.7488,0.508177][-1.59149,-0.0619634,-2.96284][-0.223516,0.923333,-0.312244][0.258835,0.749551,0.515636][2.98927,-0.46587,-0.292313][-0.0201717,0.00355392,-0.0580878][0.0778442,0.422099,-0.161739][3.05612,-0.460252,-0.318511][0.406221,-0.303561,-0.861879][0.0732388,0.422476,-0.159868][3.04974,-0.477258,-0.273646][-0.71303,-0.648551,0.266402][0.0720777,0.422551,-0.159653][3.04974,-0.477258,-0.273646][-0.71303,-0.648551,0.266402][0.0720777,0.422551,-0.159653][2.94517,0.218093,-0.172862][-0.775814,-0.248336,0.580037][0.0717128,0.459842,-0.0563793][2.98927,-0.46587,-0.292313][-0.0201717,0.00355392,-0.0580878][0.0778442,0.422099,-0.161739][3.05612,-0.460252,-0.318511][0.406221,-0.303561,-0.861879][0.0732388,0.422476,-0.159868][2.98927,-0.46587,-0.292313][-0.0201717,0.00355392,-0.0580878][0.0778442,0.422099,-0.161739][2.7689,0.76547,-0.140449][0.902694,0.389607,-0.182621][0.0757113,0.49159,0.124314][-0.478561,2.26047,2.70134][-0.710866,0.520053,0.473514][0.152111,0.820493,0.124768][-0.484089,2.80172,1.83353][-0.746785,0.585678,0.315108][0.154656,0.769061,0.131067][-0.480911,2.73628,1.7906][-0.168886,-0.90458,-0.391424][0.158592,0.768314,0.125307][-0.480911,2.73628,1.7906][-0.168886,-0.90458,-0.391424][0.158592,0.768314,0.125307][-0.478742,2.1815,2.62643][-0.153833,-0.723221,-0.673266][0.155972,0.820304,0.120868][-0.478561,2.26047,2.70134][-0.710866,0.520053,0.473514][0.152111,0.820493,0.124768][-0.315745,3.03723,1.3444][-0.0898071,0.598904,0.79577][0.00688569,0.728919,0.138369][0.383666,3.14302,0.778576][0.148918,0.983252,0.105069][0.0417376,0.690107,0.144003][-0.307573,3.15821,0.779807][-0.12741,0.988654,0.0795647][0.0420557,0.727795,0.143515][-0.85182,-1.13182,-3.40515][0.123717,0.59331,0.79541][0.193383,0.792499,0.569308][-0.824322,-1.1364,-3.32685][0.157036,0.0327541,0.98705][0.167135,0.793364,0.509409][-0.0083065,-1.10808,-3.37272][0.00936681,0.0505806,0.998676][0.167135,0.851459,0.502238][-0.0083065,-1.10808,-3.37272][0.00936681,0.0505806,0.998676][0.167135,0.851459,0.502238][-0.00827026,-1.10476,-3.47189][-0.0134104,0.608666,0.793314][0.193133,0.846615,0.583032][-0.85182,-1.13182,-3.40515][0.123717,0.59331,0.79541][0.193383,0.792499,0.569308][1.59469,-1.12385,-3.09802][-0.424546,0.0257558,0.90504][0.165435,0.954207,0.526256][1.64956,-1.11582,-3.17676][-0.329698,0.535863,0.777271][0.192992,0.950333,0.524503][0.835487,-1.09715,-3.40408][-0.140334,0.581736,0.80118][0.192975,0.900754,0.569808][0.835487,-1.09715,-3.40408][-0.140334,0.581736,0.80118][0.192975,0.900754,0.569808][0.80819,-1.10361,-3.32592][-0.171244,0.0213277,0.984998][0.166002,0.902851,0.509372][1.59469,-1.12385,-3.09802][-0.424546,0.0257558,0.90504][0.165435,0.954207,0.526256][-0.472692,2.6952,-1.34462][-0.711081,0.620949,-0.329827][0.152244,0.600114,0.126707][-0.463233,2.0171,-2.23353][-0.704027,0.476535,-0.526556][0.151383,0.543717,0.118201][-0.464232,1.94297,-2.15678][-0.1621,-0.688074,0.707303][0.155201,0.543621,0.114582][-0.464232,1.94297,-2.15678][-0.1621,-0.688074,0.707303][0.155201,0.543621,0.114582][-0.472804,2.60069,-1.29064][-0.150539,-0.876742,0.456794][0.156105,0.600231,0.122471][-0.472692,2.6952,-1.34462][-0.711081,0.620949,-0.329827][0.152244,0.600114,0.126707][2.28261,1.61662,1.13997][-0.826602,-0.562283,-0.0237907][0.00472157,0.553403,0.129295][2.93512,0.101586,0.912421][-0.900426,-0.269413,0.341539][0.00613039,0.461805,-0.0741024][2.799,0.661845,1.00933][0.606394,0.110545,0.787443][0.00582637,0.493984,0.124887][2.799,0.661845,1.00933][0.606394,0.110545,0.787443][0.00582637,0.493984,0.124887][2.36657,1.64622,1.15334][0.583652,0.253493,0.771422][0.00691238,0.553027,0.130052][2.28261,1.61662,1.13997][-0.826602,-0.562283,-0.0237907][0.00472157,0.553403,0.129295][-0.460707,2.78207,1.82331][0.609843,-0.703015,-0.36587][0.154656,0.769061,0.131067][-0.480911,2.73628,1.7906][-0.168886,-0.90458,-0.391424][0.158592,0.768314,0.125307][-0.482633,2.88066,1.31299][-0.0779933,-0.849787,-0.521324][0.159722,0.745496,0.13014][-0.482633,2.88066,1.31299][-0.0779933,-0.849787,-0.521324][0.159722,0.745496,0.13014][-0.461793,3.03361,1.25569][0.354295,-0.872468,-0.336564][0.155439,0.737856,0.137559][-0.460707,2.78207,1.82331][0.609843,-0.703015,-0.36587][0.154656,0.769061,0.131067][0.816182,-0.848128,3.86822][-0.126393,-0.762551,-0.634461][0.383216,0.79224,0.446754][0.796391,-0.874184,3.7769][-0.207418,-0.41571,-0.88553][0.409937,0.789667,0.476657][1.53443,-0.849928,3.48717][-0.402936,-0.475145,-0.782227][0.409996,0.744939,0.487929][1.53443,-0.849928,3.48717][-0.402936,-0.475145,-0.782227][0.409996,0.744939,0.487929][1.58385,-0.80939,3.5888][-0.266428,-0.776867,-0.570521][0.383076,0.745452,0.496512][0.816182,-0.848128,3.86822][-0.126393,-0.762551,-0.634461][0.383216,0.79224,0.446754][2.1652,-0.791087,2.99658][-0.595738,-0.527462,-0.605706][0.410088,0.7056,0.49456][2.23823,-0.744978,3.08008][-0.406118,-0.791608,-0.456536][0.383305,0.705474,0.579042][1.58385,-0.80939,3.5888][-0.266428,-0.776867,-0.570521][0.383076,0.745452,0.496512][1.58385,-0.80939,3.5888][-0.266428,-0.776867,-0.570521][0.383076,0.745452,0.496512][1.53443,-0.849928,3.48717][-0.402936,-0.475145,-0.782227][0.409996,0.744939,0.487929][2.1652,-0.791087,2.99658][-0.595738,-0.527462,-0.605706][0.410088,0.7056,0.49456][-0.463233,2.0171,-2.23353][-0.704027,0.476535,-0.526556][0.151383,0.543717,0.118201][-0.454151,1.08998,-2.86378][-0.70478,0.334538,-0.625595][0.150123,0.487028,0.110712][-0.451187,1.04984,-2.79456][-0.153242,-0.445003,0.88232][0.15353,0.486812,0.108339][-0.451187,1.04984,-2.79456][-0.153242,-0.445003,0.88232][0.15353,0.486812,0.108339][-0.464232,1.94297,-2.15678][-0.1621,-0.688074,0.707303][0.155201,0.543621,0.114582][-0.463233,2.0171,-2.23353][-0.704027,0.476535,-0.526556][0.151383,0.543717,0.118201][-0.00852823,-0.893894,3.84185][0.0143629,-0.402269,-0.915409][0.409917,0.844198,0.471265][-0.00853395,-0.860981,3.9555][0.000541321,-0.767921,-0.640544][0.38324,0.84356,0.431525][-0.833231,-0.848123,3.86821][0.116224,-0.777373,-0.61821][0.383367,0.894106,0.446805][-0.833231,-0.848123,3.86821][0.116224,-0.777373,-0.61821][0.383367,0.894106,0.446805][-0.809315,-0.88331,3.75715][0.107031,-0.404035,-0.90846][0.410543,0.894226,0.476979][-0.00852823,-0.893894,3.84185][0.0143629,-0.402269,-0.915409][0.409917,0.844198,0.471265][-0.453764,0.326726,3.67029][-0.168568,-0.240512,-0.955897][0.15561,0.93142,0.106817][-0.44437,-0.912737,3.84721][-0.47164,-0.128111,-0.872435][0.156535,0.996239,0.10057][-0.439831,-0.896627,3.92995][-0.731186,0.0905333,0.676144][0.153903,0.995877,0.101092][-0.439831,-0.896627,3.92995][-0.731186,0.0905333,0.676144][0.153903,0.995877,0.101092][-0.456378,0.350473,3.74667][-0.736745,0.158208,0.657402][0.152196,0.931278,0.108863][-0.453764,0.326726,3.67029][-0.168568,-0.240512,-0.955897][0.15561,0.93142,0.106817][-2.81092,0.671623,1.0189][-0.944584,0.30114,0.130672][0.00868174,0.927606,0.127083][-2.2914,1.62007,1.14389][0.819685,-0.572106,-0.028481][0.00699386,0.866369,0.130008][-2.3661,1.65051,1.15606][-0.574966,0.260604,0.775564][0.00874363,0.867728,0.130848][-2.2914,1.62007,1.14389][0.819685,-0.572106,-0.028481][0.00699386,0.866369,0.130008][-1.65356,2.34181,1.25049][0.633292,-0.768523,0.0911763][0.00773463,0.812957,0.133883][-1.70596,2.43214,1.25921][-0.465267,0.475843,0.746392][0.00980827,0.812917,0.134722][-1.70596,2.43214,1.25921][-0.465267,0.475843,0.746392][0.00980827,0.812917,0.134722][-2.3661,1.65051,1.15606][-0.574966,0.260604,0.775564][0.00874363,0.867728,0.130848][-2.2914,1.62007,1.14389][0.819685,-0.572106,-0.028481][0.00699386,0.866369,0.130008][-1.65356,2.34181,1.25049][0.633292,-0.768523,0.0911763][0.00773463,0.812957,0.133883][-0.846627,2.7787,1.30935][0.37786,-0.925584,0.0227064][0.00487898,0.761205,0.135367][-0.87676,2.88501,1.32236][-0.273056,0.561724,0.780965][0.00708411,0.761234,0.136735][-0.87676,2.88501,1.32236][-0.273056,0.561724,0.780965][0.00708411,0.761234,0.136735][-1.70596,2.43214,1.25921][-0.465267,0.475843,0.746392][0.00980827,0.812917,0.134722][-1.65356,2.34181,1.25049][0.633292,-0.768523,0.0911763][0.00773463,0.812957,0.133883][-0.00179911,3.06307,-0.410851][0.00468728,0.964557,-0.263834][0.123175,0.651055,0.14272][-0.479764,3.03359,-0.328363][-0.714966,0.676283,-0.177383][0.155669,0.654518,0.132195][-0.481091,3.14388,0.280484][-0.684298,0.727551,-0.0490481][0.155502,0.686294,0.137325][-0.481091,3.14388,0.280484][-0.684298,0.727551,-0.0490481][0.155502,0.686294,0.137325][-0.00139141,3.20641,0.289352][-0.00523484,0.997903,-0.0645084][0.123202,0.68665,0.14987][-0.00179911,3.06307,-0.410851][0.00468728,0.964557,-0.263834][0.123175,0.651055,0.14272][-2.19558,-0.780207,3.0103][0.606834,-0.518029,-0.602826][0.283202,0.424873,0.475696][-2.67313,-0.696173,2.27258][0.738088,-0.558697,-0.378265][0.28467,0.450491,0.491779][-2.75157,-0.626635,2.32732][-0.426626,0.864279,0.266481][0.257148,0.450117,0.504235][-2.75157,-0.626635,2.32732][-0.426626,0.864279,0.266481][0.257148,0.450117,0.504235][-2.25922,-0.714024,3.08712][-0.353589,0.84978,0.390959][0.25683,0.423441,0.435402][-2.19558,-0.780207,3.0103][0.606834,-0.518029,-0.602826][0.283202,0.424873,0.475696][0.796391,-0.874184,3.7769][-0.207418,-0.41571,-0.88553][0.409937,0.789667,0.476657][0.816182,-0.848128,3.86822][-0.126393,-0.762551,-0.634461][0.383216,0.79224,0.446754][-0.00853395,-0.860981,3.9555][0.000541321,-0.767921,-0.640544][0.38324,0.84356,0.431525][-0.00853395,-0.860981,3.9555][0.000541321,-0.767921,-0.640544][0.38324,0.84356,0.431525][-0.00852823,-0.893894,3.84185][0.0143629,-0.402269,-0.915409][0.409917,0.844198,0.471265][0.796391,-0.874184,3.7769][-0.207418,-0.41571,-0.88553][0.409937,0.789667,0.476657][-2.67313,-0.696173,2.27258][0.738088,-0.558697,-0.378265][0.28467,0.450491,0.491779][-2.93322,-0.593645,1.32023][0.804186,-0.553375,-0.216934][0.284773,0.500446,0.478299][-3.00277,-0.532609,1.35064][-0.394637,0.9022,0.17406][0.259061,0.501074,0.546282][-3.00277,-0.532609,1.35064][-0.394637,0.9022,0.17406][0.259061,0.501074,0.546282][-2.75157,-0.626635,2.32732][-0.426626,0.864279,0.266481][0.257148,0.450117,0.504235][-2.67313,-0.696173,2.27258][0.738088,-0.558697,-0.378265][0.28467,0.450491,0.491779][-0.44437,-0.912737,3.84721][-0.47164,-0.128111,-0.872435][0.156535,0.996239,0.10057][-0.453764,0.326726,3.67029][-0.168568,-0.240512,-0.955897][0.15561,0.93142,0.106817][-0.40208,-0.887851,3.91155][0.560039,-0.123456,-0.819216][0.152785,0.995797,0.101235][-3.01469,-0.209125,-0.265301][0.585708,-0.243549,0.773065][0.0794311,0.984106,0.123822][-2.72181,0.743731,-0.114189][0.955415,-0.295143,-0.00855851][0.080887,0.928314,0.1256][-2.79713,0.781839,-0.0815954][0.76379,-0.340178,0.548548][0.0753488,0.927829,0.127744][-2.32583,1.74739,0.035439][0.553635,-0.480632,0.680059][0.0761542,0.869171,0.130493][-2.79713,0.781839,-0.0815954][0.76379,-0.340178,0.548548][0.0753488,0.927829,0.127744][-2.72181,0.743731,-0.114189][0.955415,-0.295143,-0.00855851][0.080887,0.928314,0.1256][-0.302092,3.12661,0.776934][0.134953,-0.988056,-0.0743873][0.0420557,0.727795,0.143515][0.377115,3.11162,0.775657][-0.157958,-0.983003,-0.0935691][0.0417376,0.690107,0.144003][0.0304894,3.04079,1.31793][-0.00724323,-0.687524,-0.726125][0.00722128,0.709595,0.139612][0.380894,3.03245,1.34402][0.106297,0.601347,0.791885][0.00701091,0.690099,0.138929][-0.30839,2.92075,1.32657][0.141919,-0.98952,-0.0266249][0.00497893,0.729009,0.136981][0.200206,2.92314,1.32681][-0.0634017,-0.997417,-0.0337685][0.00440507,0.699851,0.13783][0.200206,2.92314,1.32681][-0.0634017,-0.997417,-0.0337685][0.00440507,0.699851,0.13783][-0.30839,2.92075,1.32657][0.141919,-0.98952,-0.0266249][0.00497893,0.729009,0.136981][0.0304894,3.04079,1.31793][-0.00724323,-0.687524,-0.726125][0.00722128,0.709595,0.139612][-2.1629,-0.201457,-2.43576][0.590285,-0.644891,0.485467][0.286475,0.706425,0.513275][-2.22326,-0.153952,-2.4919][0.40865,-0.869772,0.276589][0.257941,0.707751,0.433948][-1.5883,-0.0939654,-2.9611][0.258856,-0.883818,0.389691][0.258835,0.749551,0.515636][-1.5883,-0.0939654,-2.9611][0.258856,-0.883818,0.389691][0.258835,0.749551,0.515636][-1.53793,-0.153617,-2.87482][0.379346,-0.637782,0.670321][0.287071,0.7488,0.508177][-2.1629,-0.201457,-2.43576][0.590285,-0.644891,0.485467][0.286475,0.706425,0.513275][2.28261,1.61662,1.13997][-0.826602,-0.562283,-0.0237907][0.00472157,0.553403,0.129295][2.34718,1.63774,1.12907][-0.684109,-0.336338,-0.647203][0.00691238,0.553027,0.130052][2.7754,0.655928,0.988232][-0.691129,-0.149169,-0.70717][0.00582637,0.493984,0.124887][2.7754,0.655928,0.988232][-0.691129,-0.149169,-0.70717][0.00582637,0.493984,0.124887][2.93512,0.101586,0.912421][-0.900426,-0.269413,0.341539][0.00613039,0.461805,-0.0741024][2.28261,1.61662,1.13997][-0.826602,-0.562283,-0.0237907][0.00472157,0.553403,0.129295][2.81556,0.724563,0.431494][-0.941628,-0.336653,-0.00148159][0.0400176,0.492572,0.12781][2.93512,0.101586,0.912421][-0.900426,-0.269413,0.341539][0.00613039,0.461805,-0.0741024][2.7754,0.655928,0.988232][-0.691129,-0.149169,-0.70717][0.00582637,0.493984,0.124887][0.483384,2.7941,1.82954][0.81431,0.501022,0.293045][0.0894868,0.768472,0.130641][0.45961,2.71281,1.77945][-0.105971,-0.891537,-0.440377][0.0838801,0.768362,0.124392][0.460429,2.88724,1.3229][-0.236939,-0.928692,-0.28529][0.0831434,0.741504,0.128777][0.460429,2.88724,1.3229][-0.236939,-0.928692,-0.28529][0.0831434,0.741504,0.128777][0.499896,2.9954,1.24153][0.927644,0.357271,0.10878][0.0849246,0.736146,0.132211][0.483384,2.7941,1.82954][0.81431,0.501022,0.293045][0.0894868,0.768472,0.130641][0.460429,2.88724,1.3229][-0.236939,-0.928692,-0.28529][0.0831434,0.741504,0.128777][0.461541,3,1.24382][-0.184995,-1.50383,-0.078372][0.0849246,0.736146,0.132211][0.499896,2.9954,1.24153][0.927644,0.357271,0.10878][0.0849246,0.736146,0.132211][1.70526,2.39575,1.23309][-0.513109,-0.538241,-0.668592][0.00865765,0.607435,0.134529][1.66796,2.31101,1.24668][-0.657686,-0.749595,0.0745348][0.00639072,0.608195,0.133647][0.847507,2.77224,1.30796][-0.373294,-0.927629,0.0124912][0.00523073,0.661115,0.135878][0.847507,2.77224,1.30796][-0.373294,-0.927629,0.0124912][0.00523073,0.661115,0.135878][0.869822,2.86654,1.29742][-0.301187,-0.637407,-0.709224][0.00776204,0.660754,0.137261][1.70526,2.39575,1.23309][-0.513109,-0.538241,-0.668592][0.00865765,0.607435,0.134529][0.427526,0.343717,3.72083][-0.702273,-0.182872,-0.688019][0.0951734,0.932288,0.108864][0.431235,0.325729,3.66629][-0.134553,-0.247279,-0.959557][0.0907639,0.932315,0.10684][0.450688,-0.907651,3.85564][0.370198,-0.128725,-0.919991][0.0924601,0.99688,0.100557][0.450688,-0.907651,3.85564][0.370198,-0.128725,-0.919991][0.0924601,0.99688,0.100557][0.392683,-0.909738,3.90964][-0.42733,-0.12304,-0.895684][0.100267,0.997298,0.101403][0.427526,0.343717,3.72083][-0.702273,-0.182872,-0.688019][0.0951734,0.932288,0.108864][0.450688,-0.907651,3.85564][0.370198,-0.128725,-0.919991][0.0924601,0.99688,0.100557][0.431235,0.325729,3.66629][-0.134553,-0.247279,-0.959557][0.0907639,0.932315,0.10684][0.454425,0.347943,3.73803][0.818266,0.140712,0.557352][0.0951734,0.932288,0.108864][0.454425,0.347943,3.73803][0.818266,0.140712,0.557352][0.0951734,0.932288,0.108864][0.437303,-0.897446,3.92177][0.676883,0.0983242,0.729494][0.0987607,0.997265,0.101244][0.450688,-0.907651,3.85564][0.370198,-0.128725,-0.919991][0.0924601,0.99688,0.100557][2.27555,1.69963,0.0310851][-0.0225968,0.000753547,-0.0690943][0.0770709,0.551131,0.127382][2.7689,0.76547,-0.140449][0.902694,0.389607,-0.182621][0.0757113,0.49159,0.124314][2.69962,0.737612,-0.118097][-0.546647,0.0963103,-1.57416][0.0763672,0.491627,0.12415][2.32701,1.7364,0.0320902][-0.587686,-0.47177,0.657312][0.0733595,0.551285,0.129571][2.69962,0.737612,-0.118097][-0.546647,0.0963103,-1.57416][0.0763672,0.491627,0.12415][2.94517,0.218093,-0.172862][-0.775814,-0.248336,0.580037][0.0717128,0.459842,-0.0563793][-0.433397,0.344945,3.72479][0.603869,-0.1913,-0.773787][0.152196,0.931278,0.108863][-0.453764,0.326726,3.67029][-0.168568,-0.240512,-0.955897][0.15561,0.93142,0.106817][-0.469529,1.35618,3.25999][-0.16548,-0.478178,-0.862532][0.155172,0.874621,0.113052][-0.469529,1.35618,3.25999][-0.16548,-0.478178,-0.862532][0.155172,0.874621,0.113052][-0.44475,1.39878,3.33218][0.616759,-0.377874,-0.690521][0.151436,0.874535,0.116303][-0.433397,0.344945,3.72479][0.603869,-0.1913,-0.773787][0.152196,0.931278,0.108863][-0.478742,2.1815,2.62643][-0.153833,-0.723221,-0.673266][0.155972,0.820304,0.120868][-0.454735,2.24451,2.68668][0.614082,-0.582497,-0.532543][0.152111,0.820493,0.124768][-0.44475,1.39878,3.33218][0.616759,-0.377874,-0.690521][0.151436,0.874535,0.116303][-0.44475,1.39878,3.33218][0.616759,-0.377874,-0.690521][0.151436,0.874535,0.116303][-0.469529,1.35618,3.25999][-0.16548,-0.478178,-0.862532][0.155172,0.874621,0.113052][-0.478742,2.1815,2.62643][-0.153833,-0.723221,-0.673266][0.155972,0.820304,0.120868][2.34718,1.63774,1.12907][-0.684109,-0.336338,-0.647203][0.00691238,0.553027,0.130052][2.28261,1.61662,1.13997][-0.826602,-0.562283,-0.0237907][0.00472157,0.553403,0.129295][1.66796,2.31101,1.24668][-0.657686,-0.749595,0.0745348][0.00639072,0.608195,0.133647][1.66796,2.31101,1.24668][-0.657686,-0.749595,0.0745348][0.00639072,0.608195,0.133647][1.70526,2.39575,1.23309][-0.513109,-0.538241,-0.668592][0.00865765,0.607435,0.134529][2.34718,1.63774,1.12907][-0.684109,-0.336338,-0.647203][0.00691238,0.553027,0.130052][-0.456639,3.01185,-0.322905][0.575622,-0.786026,0.225438][0.155669,0.654518,0.132195][-0.00156116,3.17429,0.291697][-0.00228979,-0.997948,0.0639822][0.123202,0.68665,0.14987][-0.459684,3.11999,0.283386][0.556191,-0.83008,0.0402472][0.155502,0.686294,0.137325][-2.74674,-0.658047,2.3221][0.511003,-0.805543,-0.299959][0.257148,0.450117,0.504235][-2.67313,-0.696173,2.27258][0.738088,-0.558697,-0.378265][0.28467,0.450491,0.491779][-2.19558,-0.780207,3.0103][0.606834,-0.518029,-0.602826][0.283202,0.424873,0.475696][-2.19558,-0.780207,3.0103][0.606834,-0.518029,-0.602826][0.283202,0.424873,0.475696][-2.25528,-0.745193,3.08003][0.417457,-0.787716,-0.453027][0.25683,0.423441,0.435402][-2.74674,-0.658047,2.3221][0.511003,-0.805543,-0.299959][0.257148,0.450117,0.504235][-1.643,-2.06209,3.5653][0.375957,0.740412,-0.557178][0.321781,0.941173,0.478093][-1.58848,-2.04297,3.47355][0.504085,0.257874,-0.824257][0.293916,0.938612,0.499227][-2.21523,-1.96299,2.93884][0.732619,0.236269,-0.638316][0.293058,0.981674,0.503596][-2.21523,-1.96299,2.93884][0.732619,0.236269,-0.638316][0.293058,0.981674,0.503596][-2.3097,-1.98528,3.03424][0.558024,0.718447,-0.415262][0.322174,0.981567,0.582554][-1.643,-2.06209,3.5653][0.375957,0.740412,-0.557178][0.321781,0.941173,0.478093][-2.71763,-1.88177,2.18669][0.90581,0.186524,-0.380417][0.164462,0.446785,0.498826][-2.81071,-1.89335,2.23768][0.680268,0.697797,-0.22431][0.193062,0.444638,0.518192][-2.3097,-1.98528,3.03424][0.558024,0.718447,-0.415262][0.194565,0.423759,0.434748][-2.3097,-1.98528,3.03424][0.558024,0.718447,-0.415262][0.194565,0.423759,0.434748][-2.21523,-1.96299,2.93884][0.732619,0.236269,-0.638316][0.165433,0.426003,0.523188][-2.71763,-1.88177,2.18669][0.90581,0.186524,-0.380417][0.164462,0.446785,0.498826][-0.303747,3.06351,0.186486][0.137847,-0.881639,-0.451343][0.0816959,0.729808,0.130355][0.198387,3.07086,0.223695][0.102126,-0.97233,-0.210105][0.0824755,0.698878,0.131107][-0.309127,3.11315,0.225567][0.10384,-0.895479,0.432821][0.0784967,0.729083,0.134711][-0.860013,2.96343,0.205665][0.261027,-0.705626,0.658754][0.0776681,0.761643,0.134545][-0.835991,2.9054,0.202866][0.377105,-0.911755,0.162771][0.0814811,0.761747,0.130636][-0.303747,3.06351,0.186486][0.137847,-0.881639,-0.451343][0.0816959,0.729808,0.130355][-0.303747,3.06351,0.186486][0.137847,-0.881639,-0.451343][0.0816959,0.729808,0.130355][-0.309127,3.11315,0.225567][0.10384,-0.895479,0.432821][0.0784967,0.729083,0.134711][-0.860013,2.96343,0.205665][0.261027,-0.705626,0.658754][0.0776681,0.761643,0.134545][0.499896,2.9954,1.24153][0.927644,0.357271,0.10878][0.0849246,0.736146,0.132211][0.444246,3.08039,1.26673][0.493314,0.833681,0.248229][0.0917645,0.736037,0.140006][0.483384,2.7941,1.82954][0.81431,0.501022,0.293045][0.0894868,0.768472,0.130641][-0.464232,1.94297,-2.15678][-0.1621,-0.688074,0.707303][0.155201,0.543621,0.114582][-0.439659,2.00212,-2.21749][0.570681,-0.562051,0.598683][0.151383,0.543717,0.118201][-0.448826,2.67612,-1.33442][0.575637,-0.72089,0.385953][0.152244,0.600114,0.126707][-0.448826,2.67612,-1.33442][0.575637,-0.72089,0.385953][0.152244,0.600114,0.126707][-0.472804,2.60069,-1.29064][-0.150539,-0.876742,0.456794][0.156105,0.600231,0.122471][-0.464232,1.94297,-2.15678][-0.1621,-0.688074,0.707303][0.155201,0.543621,0.114582][-0.480911,2.73628,1.7906][-0.168886,-0.90458,-0.391424][0.158592,0.768314,0.125307][-0.460707,2.78207,1.82331][0.609843,-0.703015,-0.36587][0.154656,0.769061,0.131067][-0.454735,2.24451,2.68668][0.614082,-0.582497,-0.532543][0.152111,0.820493,0.124768][-0.454735,2.24451,2.68668][0.614082,-0.582497,-0.532543][0.152111,0.820493,0.124768][-0.478742,2.1815,2.62643][-0.153833,-0.723221,-0.673266][0.155972,0.820304,0.120868][-0.480911,2.73628,1.7906][-0.168886,-0.90458,-0.391424][0.158592,0.768314,0.125307][-2.99753,-0.564103,1.3464][0.514663,-0.835736,-0.191488][0.259061,0.501074,0.546282][-2.93322,-0.593645,1.32023][0.804186,-0.553375,-0.216934][0.284773,0.500446,0.478299][-2.67313,-0.696173,2.27258][0.738088,-0.558697,-0.378265][0.28467,0.450491,0.491779][-2.67313,-0.696173,2.27258][0.738088,-0.558697,-0.378265][0.28467,0.450491,0.491779][-2.74674,-0.658047,2.3221][0.511003,-0.805543,-0.299959][0.257148,0.450117,0.504235][-2.99753,-0.564103,1.3464][0.514663,-0.835736,-0.191488][0.259061,0.501074,0.546282][0.446341,2.59728,-1.28872][-0.113399,-0.878018,0.465001][0.0885639,0.600705,0.122528][0.43713,1.94013,-2.15364][-0.10347,-0.746824,0.656923][0.0889033,0.543941,0.114691][0.46134,2.01152,-2.22771][0.793735,0.411086,-0.448323][0.092968,0.543982,0.118273][0.46134,2.01152,-2.22771][0.793735,0.411086,-0.448323][0.092968,0.543982,0.118273][0.470977,2.68841,-1.34096][0.786656,0.545298,-0.28952][0.0928212,0.60054,0.126884][0.446341,2.59728,-1.28872][-0.113399,-0.878018,0.465001][0.0885639,0.600705,0.122528][-3.12069,-0.510653,0.252348][0.258091,-0.814999,-0.518812][0.0467371,0.996794,0.123721][-3.09563,-0.564367,0.78642][0.756943,-0.589363,-0.282293][0.014992,0.996242,0.122372][-3.11979,-0.552263,0.824183][-0.746534,-0.283734,0.601815][0.012572,0.995999,0.122212][1.63608,2.42484,0.138991][-0.612805,-0.77679,0.145149][0.077828,0.606065,0.130821][0.836603,2.90363,0.202256][-0.459716,-0.879495,0.123083][0.0821754,0.659373,0.130842][0.867454,2.97932,0.17813][0.184963,0.576482,-0.7959][0.0777165,0.659474,0.134888][0.867454,2.97932,0.17813][0.184963,0.576482,-0.7959][0.0777165,0.659474,0.134888][1.70011,2.50711,0.113156][0.365128,0.544584,-0.755056][0.0738473,0.606249,0.133647][1.63608,2.42484,0.138991][-0.612805,-0.77679,0.145149][0.077828,0.606065,0.130821][1.70011,2.50711,0.113156][0.365128,0.544584,-0.755056][0.0738473,0.606249,0.133647][2.33963,1.74815,0.00488892][0.459934,0.402086,-0.791699][0.0733595,0.551285,0.129571][2.27555,1.69963,0.0310851][-0.0225968,0.000753547,-0.0690943][0.0770709,0.551131,0.127382][2.27555,1.69963,0.0310851][-0.0225968,0.000753547,-0.0690943][0.0770709,0.551131,0.127382][1.63608,2.42484,0.138991][-0.612805,-0.77679,0.145149][0.077828,0.606065,0.130821][1.70011,2.50711,0.113156][0.365128,0.544584,-0.755056][0.0738473,0.606249,0.133647][-1.62245,2.45226,0.141653][0.627165,-0.765092,0.14594][0.0787803,0.813288,0.13201][-2.27496,1.70976,0.0346396][0.806881,-0.561256,0.184214][0.0801129,0.869215,0.128383][-2.33814,1.75914,0.00809491][-0.450909,0.399869,-0.797989][0.0761542,0.869171,0.130493][-2.33814,1.75914,0.00809491][-0.450909,0.399869,-0.797989][0.0761542,0.869171,0.130493][-1.6856,2.5355,0.115976][-0.362392,0.549636,-0.75271][0.0752269,0.813367,0.134259][-1.62245,2.45226,0.141653][0.627165,-0.765092,0.14594][0.0787803,0.813288,0.13201][0.476759,2.25482,2.6961][0.782534,0.461023,0.418447][0.0920814,0.820628,0.125005][0.466362,1.40517,3.34433][0.808777,0.279408,0.517505][0.0938145,0.875172,0.116321][0.442819,1.36504,3.2755][-0.126499,-0.477407,-0.869529][0.0889576,0.875123,0.11303][0.442819,1.36504,3.2755][-0.126499,-0.477407,-0.869529][0.0889576,0.875123,0.11303][0.452207,2.17869,2.62367][-0.112133,-0.745176,-0.657373][0.0878517,0.820596,0.120894][0.476759,2.25482,2.6961][0.782534,0.461023,0.418447][0.0920814,0.820628,0.125005][2.9735,0.22733,-0.185076][0.812115,0.268752,-0.51792][0.0717128,0.459842,-0.0563793][2.7689,0.76547,-0.140449][0.902694,0.389607,-0.182621][0.0757113,0.49159,0.124314][2.84577,0.735718,0.43226][0.940362,0.339967,0.0119401][0.0400176,0.492572,0.12781][2.84577,0.735718,0.43226][0.940362,0.339967,0.0119401][0.0400176,0.492572,0.12781][3.13047,-0.505293,0.252063][0.98362,0.180199,-0.00448259][0.0404217,0.423585,-0.166594][2.9735,0.22733,-0.185076][0.812115,0.268752,-0.51792][0.0717128,0.459842,-0.0563793][2.2589,-1.23306,-2.73496][-0.511954,0.56409,0.647846][0.321822,0.423564,0.585454][2.18088,-1.23765,-2.66352][-0.717598,0.0531077,0.69443][0.293291,0.422831,0.528748][2.63623,-1.4278,-1.95791][-0.889532,0.0607325,0.452818][0.293298,0.461873,0.519316][2.63623,-1.4278,-1.95791][-0.889532,0.0607325,0.452818][0.293298,0.461873,0.519316][2.74904,-1.43093,-2.02371][-0.633009,0.643723,0.430023][0.32202,0.457906,0.491649][2.2589,-1.23306,-2.73496][-0.511954,0.56409,0.647846][0.321822,0.423564,0.585454][2.95834,-1.53401,-1.05254][-0.967753,0.100921,0.230801][0.293305,0.505914,0.501109][3.06109,-1.53754,-1.06193][-0.723827,0.648413,0.235871][0.322159,0.504439,0.431856][2.74904,-1.43093,-2.02371][-0.633009,0.643723,0.430023][0.32202,0.457906,0.491649][2.74904,-1.43093,-2.02371][-0.633009,0.643723,0.430023][0.32202,0.457906,0.491649][2.63623,-1.4278,-1.95791][-0.889532,0.0607325,0.452818][0.293298,0.461873,0.519316][2.95834,-1.53401,-1.05254][-0.967753,0.100921,0.230801][0.293305,0.505914,0.501109][2.93512,0.101586,0.912421][-0.900426,-0.269413,0.341539][0.00613039,0.461805,-0.0741024][3.05367,-0.57213,0.853356][-0.300727,-0.693052,0.655165][0.00516924,0.425311,-0.17623][2.97632,0.111856,0.923296][0.847062,0.114363,0.519045][0.00613039,0.461805,-0.0741024][0.430814,-0.0882957,-3.26782][0.481576,-0.820918,-0.306885][0.0929308,0.425598,0.101544][0.402035,0.161815,-3.24697][0.524593,0.236144,-0.817947][0.095475,0.437005,0.104914][0.409481,1.10514,-2.88667][0.620142,0.363519,-0.695181][0.0958445,0.487544,0.111807][0.402035,0.161815,-3.24697][0.524593,0.236144,-0.817947][0.095475,0.437005,0.104914][0.430814,-0.0882957,-3.26782][0.481576,-0.820918,-0.306885][0.0929308,0.425598,0.101544][-0.00798893,-0.0822014,-3.31388][-0.00131288,-0.935468,-0.353408][0.121196,0.424907,0.104133][-0.451187,1.04984,-2.79456][-0.153242,-0.445003,0.88232][0.15353,0.486812,0.108339][-0.431157,1.07976,-2.84368][0.558562,-0.388376,0.732921][0.150123,0.487028,0.110712][-0.439659,2.00212,-2.21749][0.570681,-0.562051,0.598683][0.151383,0.543717,0.118201][-0.439659,2.00212,-2.21749][0.570681,-0.562051,0.598683][0.151383,0.543717,0.118201][-0.464232,1.94297,-2.15678][-0.1621,-0.688074,0.707303][0.155201,0.543621,0.114582][-0.451187,1.04984,-2.79456][-0.153242,-0.445003,0.88232][0.15353,0.486812,0.108339][-2.76442,-1.47588,-2.02521][0.627952,0.643277,0.438031][0.193505,0.669388,0.509431][-2.67092,-1.4758,-1.96947][0.893494,0.035385,0.447679][0.165807,0.671669,0.519913][-2.18137,-1.25872,-2.64914][0.688612,0.114971,0.715958][0.165242,0.710303,0.52906][-2.18137,-1.25872,-2.64914][0.688612,0.114971,0.715958][0.165242,0.710303,0.52906][-2.2742,-1.25979,-2.73697][0.505109,0.572924,0.645463][0.193985,0.706203,0.434827][-2.76442,-1.47588,-2.02521][0.627952,0.643277,0.438031][0.193505,0.669388,0.509431][-1.56171,-1.17332,-3.0794][0.430419,0.0671924,0.900125][0.166285,0.747848,0.523432][-1.62534,-1.17191,-3.17812][0.309429,0.583664,0.750726][0.193588,0.742966,0.52371][-2.2742,-1.25979,-2.73697][0.505109,0.572924,0.645463][0.193985,0.706203,0.434827][-2.2742,-1.25979,-2.73697][0.505109,0.572924,0.645463][0.193985,0.706203,0.434827][-2.18137,-1.25872,-2.64914][0.688612,0.114971,0.715958][0.165242,0.710303,0.52906][-1.56171,-1.17332,-3.0794][0.430419,0.0671924,0.900125][0.166285,0.747848,0.523432][-3.11038,-1.78627,1.21251][0.725283,0.684898,-0.06985][0.19303,0.498712,0.575772][-3.00793,-1.77726,1.17988][0.97793,0.150853,-0.144553][0.164457,0.498396,0.488211][-3.07708,-1.66078,0.0442361][0.987251,0.157137,0.0253564][0.166655,0.560098,0.488487][-3.07708,-1.66078,0.0442361][0.987251,0.157137,0.0253564][0.166655,0.560098,0.488487][-3.20187,-1.67345,0.0631728][0.723821,0.68398,0.0908571][0.193135,0.559355,0.592401][-3.11038,-1.78627,1.21251][0.725283,0.684898,-0.06985][0.19303,0.498712,0.575772][-2.97966,-1.56214,-1.05325][0.966065,0.118404,0.229564][0.166089,0.617567,0.502787][-3.07718,-1.56647,-1.06275][0.73216,0.647491,0.211419][0.193322,0.618734,0.569352][-3.20187,-1.67345,0.0631728][0.723821,0.68398,0.0908571][0.193135,0.559355,0.592401][-3.20187,-1.67345,0.0631728][0.723821,0.68398,0.0908571][0.193135,0.559355,0.592401][-3.07708,-1.66078,0.0442361][0.987251,0.157137,0.0253564][0.166655,0.560098,0.488487][-2.97966,-1.56214,-1.05325][0.966065,0.118404,0.229564][0.166089,0.617567,0.502787][-0.482633,2.88066,1.31299][-0.0779933,-0.849787,-0.521324][0.159722,0.745496,0.13014][-0.516735,3.01197,1.25209][-0.918244,-0.377663,0.119157][0.159754,0.739506,0.131104][-0.461793,3.03361,1.25569][0.354295,-0.872468,-0.336564][0.155439,0.737856,0.137559][-0.483643,3.05596,1.26345][-0.562865,0.761451,0.321521][0.155439,0.737856,0.137559][-0.516735,3.01197,1.25209][-0.918244,-0.377663,0.119157][0.159754,0.739506,0.131104][-0.482633,2.88066,1.31299][-0.0779933,-0.849787,-0.521324][0.159722,0.745496,0.13014][-2.2914,1.62007,1.14389][0.819685,-0.572106,-0.028481][0.00699386,0.866369,0.130008][-2.34627,1.6415,1.13234][0.670654,-0.339395,-0.659572][0.00874363,0.867728,0.130848][-1.69086,2.41628,1.23559][0.532131,-0.560318,-0.634729][0.00980827,0.812917,0.134722][-1.69086,2.41628,1.23559][0.532131,-0.560318,-0.634729][0.00980827,0.812917,0.134722][-1.65356,2.34181,1.25049][0.633292,-0.768523,0.0911763][0.00773463,0.812957,0.133883][-2.2914,1.62007,1.14389][0.819685,-0.572106,-0.028481][0.00699386,0.866369,0.130008][-0.867971,2.8661,1.29781][0.296417,-0.647669,-0.701899][0.00708411,0.761234,0.136735][-0.846627,2.7787,1.30935][0.37786,-0.925584,0.0227064][0.00487898,0.761205,0.135367][-1.65356,2.34181,1.25049][0.633292,-0.768523,0.0911763][0.00773463,0.812957,0.133883][-1.65356,2.34181,1.25049][0.633292,-0.768523,0.0911763][0.00773463,0.812957,0.133883][-1.69086,2.41628,1.23559][0.532131,-0.560318,-0.634729][0.00980827,0.812917,0.134722][-0.867971,2.8661,1.29781][0.296417,-0.647669,-0.701899][0.00708411,0.761234,0.136735][3.02034,-0.553093,1.35968][0.785288,0.581227,0.213305][0.377067,0.615868,0.433021][3.12796,-0.403904,0.255315][0.441823,0.893485,0.0804775][0.383687,0.562068,0.42789][2.73444,-0.625693,2.32764][0.418176,0.859901,0.292745][0.383471,0.663334,0.490304][-1.62534,-1.17191,-3.17812][0.309429,0.583664,0.750726][0.193588,0.742966,0.52371][-1.56171,-1.17332,-3.0794][0.430419,0.0671924,0.900125][0.166285,0.747848,0.523432][-0.824322,-1.1364,-3.32685][0.157036,0.0327541,0.98705][0.167135,0.793364,0.509409][-0.824322,-1.1364,-3.32685][0.157036,0.0327541,0.98705][0.167135,0.793364,0.509409][-0.85182,-1.13182,-3.40515][0.123717,0.59331,0.79541][0.193383,0.792499,0.569308][-1.62534,-1.17191,-3.17812][0.309429,0.583664,0.750726][0.193588,0.742966,0.52371][-1.67621,2.5202,0.142718][0.455063,-0.619057,0.640067][0.0752269,0.813367,0.134259][-1.62245,2.45226,0.141653][0.627165,-0.765092,0.14594][0.0787803,0.813288,0.13201][-0.835991,2.9054,0.202866][0.377105,-0.911755,0.162771][0.0814811,0.761747,0.130636][-0.835991,2.9054,0.202866][0.377105,-0.911755,0.162771][0.0814811,0.761747,0.130636][-0.860013,2.96343,0.205665][0.261027,-0.705626,0.658754][0.0776681,0.761643,0.134545][-1.67621,2.5202,0.142718][0.455063,-0.619057,0.640067][0.0752269,0.813367,0.134259][2.7689,0.76547,-0.140449][0.902694,0.389607,-0.182621][0.0757113,0.49159,0.124314][2.27555,1.69963,0.0310851][-0.0225968,0.000753547,-0.0690943][0.0770709,0.551131,0.127382][2.33963,1.74815,0.00488892][0.459934,0.402086,-0.791699][0.0733595,0.551285,0.129571][-2.27496,1.70976,0.0346396][0.806881,-0.561256,0.184214][0.0801129,0.869215,0.128383][-2.72181,0.743731,-0.114189][0.955415,-0.295143,-0.00855851][0.080887,0.928314,0.1256][-2.79436,0.781803,-0.136677][-0.53464,0.306317,-0.787611][0.0799988,0.928217,0.126004][-2.79436,0.781803,-0.136677][-0.53464,0.306317,-0.787611][0.0799988,0.928217,0.126004][-2.33814,1.75914,0.00809491][-0.450909,0.399869,-0.797989][0.0761542,0.869171,0.130493][-2.27496,1.70976,0.0346396][0.806881,-0.561256,0.184214][0.0801129,0.869215,0.128383][-0.00783968,-1.12236,-3.49886][0.0156311,-0.657932,-0.752915][0.193133,0.846615,0.583032][0.840384,-1.11437,-3.43086][0.125892,-0.644232,-0.754398][0.192975,0.900754,0.569808][0.80819,-1.10361,-3.32592][-0.171244,0.0213277,0.984998][0.166002,0.902851,0.509372][0.80819,-1.10361,-3.32592][-0.171244,0.0213277,0.984998][0.166002,0.902851,0.509372][-0.0083065,-1.10808,-3.37272][0.00936681,0.0505806,0.998676][0.167135,0.851459,0.502238][-0.00783968,-1.12236,-3.49886][0.0156311,-0.657932,-0.752915][0.193133,0.846615,0.583032][0.80819,-1.10361,-3.32592][-0.171244,0.0213277,0.984998][0.166002,0.902851,0.509372][0.835487,-1.09715,-3.40408][-0.140334,0.581736,0.80118][0.192975,0.900754,0.569808][-0.00827026,-1.10476,-3.47189][-0.0134104,0.608666,0.793314][0.193133,0.846615,0.583032][-0.00827026,-1.10476,-3.47189][-0.0134104,0.608666,0.793314][0.193133,0.846615,0.583032][-0.0083065,-1.10808,-3.37272][0.00936681,0.0505806,0.998676][0.167135,0.851459,0.502238][0.80819,-1.10361,-3.32592][-0.171244,0.0213277,0.984998][0.166002,0.902851,0.509372][-0.453764,0.326726,3.67029][-0.168568,-0.240512,-0.955897][0.15561,0.93142,0.106817][-0.433397,0.344945,3.72479][0.603869,-0.1913,-0.773787][0.152196,0.931278,0.108863][-0.40208,-0.887851,3.91155][0.560039,-0.123456,-0.819216][0.152785,0.995797,0.101235][-0.00798893,-0.0822014,-3.31388][-0.00131288,-0.935468,-0.353408][0.121196,0.424907,0.104133][-0.439177,-0.0931484,-3.27349][-0.493955,-0.837058,-0.235249][0.147548,0.424847,0.101693][-0.402864,0.158239,-3.23982][-0.425444,0.261331,-0.866431][0.146513,0.436358,0.104856][-0.402864,0.158239,-3.23982][-0.425444,0.261331,-0.866431][0.146513,0.436358,0.104856][0.402035,0.161815,-3.24697][0.524593,0.236144,-0.817947][0.095475,0.437005,0.104914][-0.00798893,-0.0822014,-3.31388][-0.00131288,-0.935468,-0.353408][0.121196,0.424907,0.104133][-0.439177,-0.0931484,-3.27349][-0.493955,-0.837058,-0.235249][0.147548,0.424847,0.101693][-0.00798893,-0.0822014,-3.31388][-0.00131288,-0.935468,-0.353408][0.121196,0.424907,0.104133][-0.431157,1.07976,-2.84368][0.558562,-0.388376,0.732921][0.150123,0.487028,0.110712][-2.79436,0.781803,-0.136677][-0.53464,0.306317,-0.787611][0.0799988,0.928217,0.126004][-2.72181,0.743731,-0.114189][0.955415,-0.295143,-0.00855851][0.080887,0.928314,0.1256][-2.95054,-0.227685,-0.298605][-0.103987,0.151619,-0.982954][0.0830021,0.984371,0.12289][0.466362,1.40517,3.34433][0.808777,0.279408,0.517505][0.0938145,0.875172,0.116321][0.454425,0.347943,3.73803][0.818266,0.140712,0.557352][0.0951734,0.932288,0.108864][0.431235,0.325729,3.66629][-0.134553,-0.247279,-0.959557][0.0907639,0.932315,0.10684][0.431235,0.325729,3.66629][-0.134553,-0.247279,-0.959557][0.0907639,0.932315,0.10684][0.442819,1.36504,3.2755][-0.126499,-0.477407,-0.869529][0.0889576,0.875123,0.11303][0.466362,1.40517,3.34433][0.808777,0.279408,0.517505][0.0938145,0.875172,0.116321][2.79373,-1.89101,2.23773][-0.676399,0.700124,-0.228717][0.322283,0.66427,0.483168][2.69975,-1.87904,2.1847][-0.905774,0.185949,-0.380784][0.293049,0.66748,0.497524][2.21425,-1.96968,2.95229][-0.750969,0.209592,-0.626192][0.293057,0.704731,0.502749][2.21425,-1.96968,2.95229][-0.750969,0.209592,-0.626192][0.293057,0.704731,0.502749][2.29264,-1.98494,3.03423][-0.566986,0.707131,-0.422483][0.322417,0.702797,0.579277][2.79373,-1.89101,2.23773][-0.676399,0.700124,-0.228717][0.322283,0.66427,0.483168][1.57132,-2.04421,3.47351][-0.479782,0.25342,-0.839993][0.293067,0.746818,0.498621][1.62586,-2.06311,3.56529][-0.373386,0.733312,-0.568188][0.322116,0.742747,0.47808][2.29264,-1.98494,3.03423][-0.566986,0.707131,-0.422483][0.322417,0.702797,0.579277][2.29264,-1.98494,3.03423][-0.566986,0.707131,-0.422483][0.322417,0.702797,0.579277][2.21425,-1.96968,2.95229][-0.750969,0.209592,-0.626192][0.293057,0.704731,0.502749][1.57132,-2.04421,3.47351][-0.479782,0.25342,-0.839993][0.293067,0.746818,0.498621][0.434317,1.99962,-2.21485][-0.663085,-0.510984,0.547004][0.092968,0.543982,0.118273][0.43713,1.94013,-2.15364][-0.10347,-0.746824,0.656923][0.0889033,0.543941,0.114691][0.446341,2.59728,-1.28872][-0.113399,-0.878018,0.465001][0.0885639,0.600705,0.122528][0.446341,2.59728,-1.28872][-0.113399,-0.878018,0.465001][0.0885639,0.600705,0.122528][0.443845,2.67313,-1.33274][-0.663639,-0.658855,0.35425][0.0928212,0.60054,0.126884][0.434317,1.99962,-2.21485][-0.663085,-0.510984,0.547004][0.092968,0.543982,0.118273][3.09297,-0.520461,0.251376][-0.973758,-0.227578,0.00209325][0.0404217,0.423585,-0.166594][3.09281,-0.564706,0.823021][0.776241,-0.545382,0.316241][0.00695475,0.425374,-0.175446][3.05367,-0.57213,0.853356][-0.300727,-0.693052,0.655165][0.00516924,0.425311,-0.17623][2.97632,0.111856,0.923296][0.847062,0.114363,0.519045][0.00613039,0.461805,-0.0741024][3.05367,-0.57213,0.853356][-0.300727,-0.693052,0.655165][0.00516924,0.425311,-0.17623][3.09281,-0.564706,0.823021][0.776241,-0.545382,0.316241][0.00695475,0.425374,-0.175446][-2.34627,1.6415,1.13234][0.670654,-0.339395,-0.659572][0.00874363,0.867728,0.130848][-2.2914,1.62007,1.14389][0.819685,-0.572106,-0.028481][0.00699386,0.866369,0.130008][-2.77263,0.657628,1.02393][0.943354,-0.303205,-0.134718][0.00815627,0.927675,0.126937][0.861871,2.96253,0.205041][-0.253869,-0.689402,0.678436][0.0777165,0.659474,0.134888][0.836603,2.90363,0.202256][-0.459716,-0.879495,0.123083][0.0821754,0.659373,0.130842][1.63608,2.42484,0.138991][-0.612805,-0.77679,0.145149][0.077828,0.606065,0.130821][1.63608,2.42484,0.138991][-0.612805,-0.77679,0.145149][0.077828,0.606065,0.130821][1.69068,2.49196,0.139967][-0.444137,-0.605327,0.660546][0.0738473,0.606249,0.133647][0.861871,2.96253,0.205041][-0.253869,-0.689402,0.678436][0.0777165,0.659474,0.134888][2.27555,1.69963,0.0310851][-0.0225968,0.000753547,-0.0690943][0.0770709,0.551131,0.127382][2.32701,1.7364,0.0320902][-0.587686,-0.47177,0.657312][0.0733595,0.551285,0.129571][1.69068,2.49196,0.139967][-0.444137,-0.605327,0.660546][0.0738473,0.606249,0.133647][1.69068,2.49196,0.139967][-0.444137,-0.605327,0.660546][0.0738473,0.606249,0.133647][1.63608,2.42484,0.138991][-0.612805,-0.77679,0.145149][0.077828,0.606065,0.130821][2.27555,1.69963,0.0310851][-0.0225968,0.000753547,-0.0690943][0.0770709,0.551131,0.127382][-2.32583,1.74739,0.035439][0.553635,-0.480632,0.680059][0.0761542,0.869171,0.130493][-2.27496,1.70976,0.0346396][0.806881,-0.561256,0.184214][0.0801129,0.869215,0.128383][-1.62245,2.45226,0.141653][0.627165,-0.765092,0.14594][0.0787803,0.813288,0.13201][-1.62245,2.45226,0.141653][0.627165,-0.765092,0.14594][0.0787803,0.813288,0.13201][-1.67621,2.5202,0.142718][0.455063,-0.619057,0.640067][0.0752269,0.813367,0.134259][-2.32583,1.74739,0.035439][0.553635,-0.480632,0.680059][0.0761542,0.869171,0.130493][0.425388,1.07971,-2.84008][-0.671995,-0.343795,0.655918][0.0933338,0.487511,0.11073][0.428498,1.0397,-2.77128][-0.094296,0.535673,-0.839144][0.0897063,0.487346,0.108393][0.43713,1.94013,-2.15364][-0.10347,-0.746824,0.656923][0.0889033,0.543941,0.114691][0.43713,1.94013,-2.15364][-0.10347,-0.746824,0.656923][0.0889033,0.543941,0.114691][0.434317,1.99962,-2.21485][-0.663085,-0.510984,0.547004][0.092968,0.543982,0.118273][0.425388,1.07971,-2.84008][-0.671995,-0.343795,0.655918][0.0933338,0.487511,0.11073][0.442819,1.36504,3.2755][-0.126499,-0.477407,-0.869529][0.0889576,0.875123,0.11303][0.439281,1.39697,3.32895][-0.697975,-0.342573,-0.628868][0.0938145,0.875172,0.116321][0.449665,2.242,2.68431][-0.695915,-0.532774,-0.481513][0.0920814,0.820628,0.125005][0.449665,2.242,2.68431][-0.695915,-0.532774,-0.481513][0.0920814,0.820628,0.125005][0.452207,2.17869,2.62367][-0.112133,-0.745176,-0.657373][0.0878517,0.820596,0.120894][0.442819,1.36504,3.2755][-0.126499,-0.477407,-0.869529][0.0889576,0.875123,0.11303][0.452207,2.17869,2.62367][-0.112133,-0.745176,-0.657373][0.0878517,0.820596,0.120894][0.449665,2.242,2.68431][-0.695915,-0.532774,-0.481513][0.0920814,0.820628,0.125005][0.456222,2.77878,1.8215][-0.718723,-0.608507,-0.336386][0.0894868,0.768472,0.130641][-3.07718,-1.56647,-1.06275][0.73216,0.647491,0.211419][0.193322,0.618734,0.569352][-2.97966,-1.56214,-1.05325][0.966065,0.118404,0.229564][0.166089,0.617567,0.502787][-2.67092,-1.4758,-1.96947][0.893494,0.035385,0.447679][0.165807,0.671669,0.519913][-2.67092,-1.4758,-1.96947][0.893494,0.035385,0.447679][0.165807,0.671669,0.519913][-2.76442,-1.47588,-2.02521][0.627952,0.643277,0.438031][0.193505,0.669388,0.509431][-3.07718,-1.56647,-1.06275][0.73216,0.647491,0.211419][0.193322,0.618734,0.569352][-2.71763,-1.88177,2.18669][0.90581,0.186524,-0.380417][0.164462,0.446785,0.498826][-3.00793,-1.77726,1.17988][0.97793,0.150853,-0.144553][0.164457,0.498396,0.488211][-3.11038,-1.78627,1.21251][0.725283,0.684898,-0.06985][0.19303,0.498712,0.575772][-3.11038,-1.78627,1.21251][0.725283,0.684898,-0.06985][0.19303,0.498712,0.575772][-2.81071,-1.89335,2.23768][0.680268,0.697797,-0.22431][0.193062,0.444638,0.518192][-2.71763,-1.88177,2.18669][0.90581,0.186524,-0.380417][0.164462,0.446785,0.498826][-2.2914,1.62007,1.14389][0.819685,-0.572106,-0.028481][0.00699386,0.866369,0.130008][-2.81092,0.671623,1.0189][-0.944584,0.30114,0.130672][0.00868174,0.927606,0.127083][-2.77263,0.657628,1.02393][0.943354,-0.303205,-0.134718][0.00815627,0.927675,0.126937][-3.05617,-0.569792,0.831412][0.623602,-0.719988,0.304529][0.0126909,0.995973,0.122209][-2.77263,0.657628,1.02393][0.943354,-0.303205,-0.134718][0.00815627,0.927675,0.126937][-2.81092,0.671623,1.0189][-0.944584,0.30114,0.130672][0.00868174,0.927606,0.127083][3.19251,-1.65715,0.0636978][-0.733463,0.675548,0.075272][0.322214,0.558969,0.408911][3.08781,-1.65178,0.070114][-0.990048,0.138129,0.0269264][0.292759,0.56041,0.488051][2.99337,-1.77022,1.18164][-0.974918,0.155389,-0.15934][0.293042,0.617819,0.487457][2.99337,-1.77022,1.18164][-0.974918,0.155389,-0.15934][0.293042,0.617819,0.487457][3.09359,-1.77933,1.21278][-0.730706,0.680531,-0.0542743][0.322234,0.61464,0.42559][3.19251,-1.65715,0.0636978][-0.733463,0.675548,0.075272][0.322214,0.558969,0.408911][2.99337,-1.77022,1.18164][-0.974918,0.155389,-0.15934][0.293042,0.617819,0.487457][2.69975,-1.87904,2.1847][-0.905774,0.185949,-0.380784][0.293049,0.66748,0.497524][2.79373,-1.89101,2.23773][-0.676399,0.700124,-0.228717][0.322283,0.66427,0.483168][2.79373,-1.89101,2.23773][-0.676399,0.700124,-0.228717][0.322283,0.66427,0.483168][3.09359,-1.77933,1.21278][-0.730706,0.680531,-0.0542743][0.322234,0.61464,0.42559][2.99337,-1.77022,1.18164][-0.974918,0.155389,-0.15934][0.293042,0.617819,0.487457][0.46227,3.04973,0.287716][-0.0752053,-0.997166,0.00209714][0.0839047,0.685861,0.130238][0.45586,2.93359,-0.298418][-0.101184,-0.961939,0.253843][0.084306,0.654715,0.125546][0.479169,3.02527,-0.326255][0.808161,0.569296,-0.150923][0.0899263,0.654763,0.132036][0.479169,3.02527,-0.326255][0.808161,0.569296,-0.150923][0.0899263,0.654763,0.132036][0.482024,3.13394,0.281348][0.803506,0.590801,-0.0730293][0.0894926,0.686264,0.137714][0.46227,3.04973,0.287716][-0.0752053,-0.997166,0.00209714][0.0839047,0.685861,0.130238][1.64956,-1.11582,-3.17676][-0.329698,0.535863,0.777271][0.192992,0.950333,0.524503][1.59469,-1.12385,-3.09802][-0.424546,0.0257558,0.90504][0.165435,0.954207,0.526256][2.18088,-1.23765,-2.66352][-0.717598,0.0531077,0.69443][0.165488,0.99445,0.528748][2.18088,-1.23765,-2.66352][-0.717598,0.0531077,0.69443][0.165488,0.99445,0.528748][2.2589,-1.23306,-2.73496][-0.511954,0.56409,0.647846][0.193157,0.991832,0.435635][1.64956,-1.11582,-3.17676][-0.329698,0.535863,0.777271][0.192992,0.950333,0.524503][-3.0004,-0.331249,-0.845752][-0.791769,0.60178,-0.104703][0.25087,0.61752,0.560029][-3.13786,-0.410046,0.255091][-0.447402,0.88939,0.0938962][0.257899,0.559585,0.564092][-2.70881,-0.202313,-1.77396][-0.405372,0.908736,-0.0993579][0.257829,0.667917,0.501381][3.06109,-1.53754,-1.06193][-0.723827,0.648413,0.235871][0.322159,0.504439,0.431856][2.95834,-1.53401,-1.05254][-0.967753,0.100921,0.230801][0.293305,0.505914,0.501109][3.08781,-1.65178,0.070114][-0.990048,0.138129,0.0269264][0.292759,0.56041,0.488051][3.08781,-1.65178,0.070114][-0.990048,0.138129,0.0269264][0.292759,0.56041,0.488051][3.19251,-1.65715,0.0636978][-0.733463,0.675548,0.075272][0.322214,0.558969,0.408911][3.06109,-1.53754,-1.06193][-0.723827,0.648413,0.235871][0.322159,0.504439,0.431856][0.428498,1.0397,-2.77128][-0.094296,0.535673,-0.839144][0.0897063,0.487346,0.108393][0.425388,1.07971,-2.84008][-0.671995,-0.343795,0.655918][0.0933338,0.487511,0.11073][0.418454,0.145341,-3.19675][-0.716423,-0.234001,0.657253][0.0930802,0.436953,0.104294][0.45961,2.71281,1.77945][-0.105971,-0.891537,-0.440377][0.0838801,0.768362,0.124392][0.456222,2.77878,1.8215][-0.718723,-0.608507,-0.336386][0.0894868,0.768472,0.130641][0.460429,2.88724,1.3229][-0.236939,-0.928692,-0.28529][0.0831434,0.741504,0.128777][2.799,0.661845,1.00933][0.606394,0.110545,0.787443][0.00582637,0.493984,0.124887][2.93512,0.101586,0.912421][-0.900426,-0.269413,0.341539][0.00613039,0.461805,-0.0741024][2.97632,0.111856,0.923296][0.847062,0.114363,0.519045][0.00613039,0.461805,-0.0741024][2.799,0.661845,1.00933][0.606394,0.110545,0.787443][0.00582637,0.493984,0.124887][2.97632,0.111856,0.923296][0.847062,0.114363,0.519045][0.00613039,0.461805,-0.0741024][2.84577,0.735718,0.43226][0.940362,0.339967,0.0119401][0.0400176,0.492572,0.12781][-0.478561,2.26047,2.70134][-0.710866,0.520053,0.473514][0.152111,0.820493,0.124768][-0.00167966,2.26915,2.77135][0.0106729,0.7275,0.686024][0.12207,0.822804,0.13162][-0.00143552,2.82005,1.91828][0.0080464,0.872436,0.488661][0.122661,0.771398,0.140757][-0.00143552,2.82005,1.91828][0.0080464,0.872436,0.488661][0.122661,0.771398,0.140757][-0.484089,2.80172,1.83353][-0.746785,0.585678,0.315108][0.154656,0.769061,0.131067][-0.478561,2.26047,2.70134][-0.710866,0.520053,0.473514][0.152111,0.820493,0.124768][0.452196,3.00821,-0.321939][-0.684564,-0.700337,0.20224][0.0899263,0.654763,0.132036][0.45586,2.93359,-0.298418][-0.101184,-0.961939,0.253843][0.084306,0.654715,0.125546][0.46227,3.04973,0.287716][-0.0752053,-0.997166,0.00209714][0.0839047,0.685861,0.130238][0.46227,3.04973,0.287716][-0.0752053,-0.997166,0.00209714][0.0839047,0.685861,0.130238][0.455706,3.11552,0.283657][-0.693855,-0.718912,0.0416145][0.0894926,0.686264,0.137714][0.452196,3.00821,-0.321939][-0.684564,-0.700337,0.20224][0.0899263,0.654763,0.132036][-3.12069,-0.510653,0.252348][0.258091,-0.814999,-0.518812][0.0467371,0.996794,0.123721][-3.07693,-0.467529,-0.272631][0.761933,-0.20099,0.615679][0.0795617,0.9968,0.122028][-3.01469,-0.209125,-0.265301][0.585708,-0.243549,0.773065][0.0794311,0.984106,0.123822][-3.00441,-0.478979,-0.290267][0.882494,-0.355911,0.307459][0.0830268,0.996991,0.121645][-3.01469,-0.209125,-0.265301][0.585708,-0.243549,0.773065][0.0794311,0.984106,0.123822][-3.07693,-0.467529,-0.272631][0.761933,-0.20099,0.615679][0.0795617,0.9968,0.122028][2.32701,1.7364,0.0320902][-0.587686,-0.47177,0.657312][0.0733595,0.551285,0.129571][2.27555,1.69963,0.0310851][-0.0225968,0.000753547,-0.0690943][0.0770709,0.551131,0.127382][2.69962,0.737612,-0.118097][-0.546647,0.0963103,-1.57416][0.0763672,0.491627,0.12415][-0.456378,0.350473,3.74667][-0.736745,0.158208,0.657402][0.152196,0.931278,0.108863][-0.00209498,0.358101,3.80074][0.0107588,0.243431,0.969859][0.122458,0.932611,0.112923][-0.00189996,1.41405,3.41486][0.00986744,0.474724,0.88008][0.121619,0.876369,0.121958][-0.00189996,1.41405,3.41486][0.00986744,0.474724,0.88008][0.121619,0.876369,0.121958][-0.468346,1.40921,3.35146][-0.716711,0.33343,0.612494][0.151436,0.874535,0.116303][-0.456378,0.350473,3.74667][-0.736745,0.158208,0.657402][0.152196,0.931278,0.108863][-0.00167966,2.26915,2.77135][0.0106729,0.7275,0.686024][0.12207,0.822804,0.13162][-0.478561,2.26047,2.70134][-0.710866,0.520053,0.473514][0.152111,0.820493,0.124768][-0.468346,1.40921,3.35146][-0.716711,0.33343,0.612494][0.151436,0.874535,0.116303][-0.468346,1.40921,3.35146][-0.716711,0.33343,0.612494][0.151436,0.874535,0.116303][-0.00189996,1.41405,3.41486][0.00986744,0.474724,0.88008][0.121619,0.876369,0.121958][-0.00167966,2.26915,2.77135][0.0106729,0.7275,0.686024][0.12207,0.822804,0.13162][1.72017,2.41108,1.25718][0.467869,0.4664,0.750713][0.00865765,0.607435,0.134529][1.77067,2.48445,0.686847][0.652163,0.756492,0.0490256][0.0402491,0.605687,0.138784][0.959791,2.96343,0.753194][0.418425,0.90524,0.0738976][0.041317,0.656892,0.142305][0.959791,2.96343,0.753194][0.418425,0.90524,0.0738976][0.041317,0.656892,0.142305][0.878626,2.88462,1.32258][0.275729,0.554785,0.784976][0.00776204,0.660754,0.137261][1.72017,2.41108,1.25718][0.467869,0.4664,0.750713][0.00865765,0.607435,0.134529][-2.72181,0.743731,-0.114189][0.955415,-0.295143,-0.00855851][0.080887,0.928314,0.1256][-2.27496,1.70976,0.0346396][0.806881,-0.561256,0.184214][0.0801129,0.869215,0.128383][-2.32583,1.74739,0.035439][0.553635,-0.480632,0.680059][0.0761542,0.869171,0.130493][0.431235,0.325729,3.66629][-0.134553,-0.247279,-0.959557][0.0907639,0.932315,0.10684][0.427526,0.343717,3.72083][-0.702273,-0.182872,-0.688019][0.0951734,0.932288,0.108864][0.439281,1.39697,3.32895][-0.697975,-0.342573,-0.628868][0.0938145,0.875172,0.116321][0.439281,1.39697,3.32895][-0.697975,-0.342573,-0.628868][0.0938145,0.875172,0.116321][0.442819,1.36504,3.2755][-0.126499,-0.477407,-0.869529][0.0889576,0.875123,0.11303][0.431235,0.325729,3.66629][-0.134553,-0.247279,-0.959557][0.0907639,0.932315,0.10684][-1.70596,2.43214,1.25921][-0.465267,0.475843,0.746392][0.00980827,0.812917,0.134722][-1.76404,2.5002,0.689386][-0.648453,0.758796,0.0611345][0.0420333,0.815362,0.138389][-2.42022,1.71639,0.582329][-0.850573,0.52476,0.0339516][0.042085,0.870539,0.134398][-2.42022,1.71639,0.582329][-0.850573,0.52476,0.0339516][0.042085,0.870539,0.134398][-2.3661,1.65051,1.15606][-0.574966,0.260604,0.775564][0.00874363,0.867728,0.130848][-1.70596,2.43214,1.25921][-0.465267,0.475843,0.746392][0.00980827,0.812917,0.134722][3.05612,-0.460252,-0.318511][0.406221,-0.303561,-0.861879][0.0732388,0.422476,-0.159868][3.13047,-0.505293,0.252063][0.98362,0.180199,-0.00448259][0.0404217,0.423585,-0.166594][3.09297,-0.520461,0.251376][-0.973758,-0.227578,0.00209325][0.0404217,0.423585,-0.166594][3.09297,-0.520461,0.251376][-0.973758,-0.227578,0.00209325][0.0404217,0.423585,-0.166594][3.04974,-0.477258,-0.273646][-0.71303,-0.648551,0.266402][0.0720777,0.422551,-0.159653][3.05612,-0.460252,-0.318511][0.406221,-0.303561,-0.861879][0.0732388,0.422476,-0.159868][2.36657,1.64622,1.15334][0.583652,0.253493,0.771422][0.00691238,0.553027,0.130052][2.41117,1.71095,0.578469][0.852218,0.522503,0.0267448][0.0396574,0.551183,0.134063][1.77067,2.48445,0.686847][0.652163,0.756492,0.0490256][0.0402491,0.605687,0.138784][1.77067,2.48445,0.686847][0.652163,0.756492,0.0490256][0.0402491,0.605687,0.138784][1.72017,2.41108,1.25718][0.467869,0.4664,0.750713][0.00865765,0.607435,0.134529][2.36657,1.64622,1.15334][0.583652,0.253493,0.771422][0.00691238,0.553027,0.130052][-0.00229836,-0.894591,3.97655][0.334526,-0.716162,0.612539][0.122272,0.995171,0.103444][-0.439831,-0.896627,3.92995][-0.731186,0.0905333,0.676144][0.153903,0.995877,0.101092][-0.40208,-0.887851,3.91155][0.560039,-0.123456,-0.819216][0.152785,0.995797,0.101235][-0.44437,-0.912737,3.84721][-0.47164,-0.128111,-0.872435][0.156535,0.996239,0.10057][-0.40208,-0.887851,3.91155][0.560039,-0.123456,-0.819216][0.152785,0.995797,0.101235][-0.439831,-0.896627,3.92995][-0.731186,0.0905333,0.676144][0.153903,0.995877,0.101092][-0.479764,3.03359,-0.328363][-0.714966,0.676283,-0.177383][0.155669,0.654518,0.132195][-0.00179911,3.06307,-0.410851][0.00468728,0.964557,-0.263834][0.123175,0.651055,0.14272][-0.00181651,2.72465,-1.40212][0.00533243,0.877296,-0.47992][0.122609,0.598443,0.133925][-0.00181651,2.72465,-1.40212][0.00533243,0.877296,-0.47992][0.122609,0.598443,0.133925][-0.472692,2.6952,-1.34462][-0.711081,0.620949,-0.329827][0.152244,0.600114,0.126707][-0.479764,3.03359,-0.328363][-0.714966,0.676283,-0.177383][0.155669,0.654518,0.132195][-0.00194788,2.03588,-2.28594][-0.00820846,0.669748,-0.742543][0.122414,0.542694,0.12427][-0.463233,2.0171,-2.23353][-0.704027,0.476535,-0.526556][0.151383,0.543717,0.118201][-0.472692,2.6952,-1.34462][-0.711081,0.620949,-0.329827][0.152244,0.600114,0.126707][-0.472692,2.6952,-1.34462][-0.711081,0.620949,-0.329827][0.152244,0.600114,0.126707][-0.00181651,2.72465,-1.40212][0.00533243,0.877296,-0.47992][0.122609,0.598443,0.133925][-0.00194788,2.03588,-2.28594][-0.00820846,0.669748,-0.742543][0.122414,0.542694,0.12427][-0.4757,3.14389,0.778739][-0.590632,0.806597,0.0235671][0.156581,0.713373,0.138639][-0.483643,3.05596,1.26345][-0.562865,0.761451,0.321521][0.155439,0.737856,0.137559][-0.00164604,3.1239,1.263][-0.0142893,0.964754,0.262766][0.122579,0.735383,0.149037][-0.483643,3.05596,1.26345][-0.562865,0.761451,0.321521][0.155439,0.737856,0.137559][-0.4757,3.14389,0.778739][-0.590632,0.806597,0.0235671][0.156581,0.713373,0.138639][-0.516735,3.01197,1.25209][-0.918244,-0.377663,0.119157][0.159754,0.739506,0.131104][0.456222,2.77878,1.8215][-0.718723,-0.608507,-0.336386][0.0894868,0.768472,0.130641][0.431952,3.0518,1.25842][-0.518977,-0.826353,-0.218642][0.0917645,0.736037,0.140006][0.461541,3,1.24382][-0.184995,-1.50383,-0.078372][0.0849246,0.736146,0.132211][-3.09563,-0.564367,0.78642][0.756943,-0.589363,-0.282293][0.014992,0.996242,0.122372][-2.77263,0.657628,1.02393][0.943354,-0.303205,-0.134718][0.00815627,0.927675,0.126937][-3.05617,-0.569792,0.831412][0.623602,-0.719988,0.304529][0.0126909,0.995973,0.122209][-3.05617,-0.569792,0.831412][0.623602,-0.719988,0.304529][0.0126909,0.995973,0.122209][-3.11979,-0.552263,0.824183][-0.746534,-0.283734,0.601815][0.012572,0.995999,0.122212][-3.09563,-0.564367,0.78642][0.756943,-0.589363,-0.282293][0.014992,0.996242,0.122372][-0.402864,0.158239,-3.23982][-0.425444,0.261331,-0.866431][0.146513,0.436358,0.104856][-0.439177,-0.0931484,-3.27349][-0.493955,-0.837058,-0.235249][0.147548,0.424847,0.101693][-0.454151,1.08998,-2.86378][-0.70478,0.334538,-0.625595][0.150123,0.487028,0.110712][-0.00798893,-0.0822014,-3.31388][-0.00131288,-0.935468,-0.353408][0.121196,0.424907,0.104133][0.430814,-0.0882957,-3.26782][0.481576,-0.820918,-0.306885][0.0929308,0.425598,0.101544][0.418454,0.145341,-3.19675][-0.716423,-0.234001,0.657253][0.0930802,0.436953,0.104294][0.430814,-0.0882957,-3.26782][0.481576,-0.820918,-0.306885][0.0929308,0.425598,0.101544][0.41958,-0.118264,-3.19475][-0.0685409,-0.953446,0.29367][0.0894086,0.425327,0.100977][0.418454,0.145341,-3.19675][-0.716423,-0.234001,0.657253][0.0930802,0.436953,0.104294][-0.00196266,1.39878,3.3865][-0.00591267,-0.474388,-0.880296][0.121619,0.876369,0.121958][-0.00214219,0.350078,3.76955][-0.00296997,-0.251391,-0.967881][0.122458,0.932611,0.112923][-0.433397,0.344945,3.72479][0.603869,-0.1913,-0.773787][0.152196,0.931278,0.108863][-0.433397,0.344945,3.72479][0.603869,-0.1913,-0.773787][0.152196,0.931278,0.108863][-0.44475,1.39878,3.33218][0.616759,-0.377874,-0.690521][0.151436,0.874535,0.116303][-0.00196266,1.39878,3.3865][-0.00591267,-0.474388,-0.880296][0.121619,0.876369,0.121958][-0.44475,1.39878,3.33218][0.616759,-0.377874,-0.690521][0.151436,0.874535,0.116303][-0.454735,2.24451,2.68668][0.614082,-0.582497,-0.532543][0.152111,0.820493,0.124768][-0.0017848,2.24573,2.74924][-0.0069299,-0.727292,-0.686293][0.12207,0.822804,0.13162][-0.0017848,2.24573,2.74924][-0.0069299,-0.727292,-0.686293][0.12207,0.822804,0.13162][-0.00196266,1.39878,3.3865][-0.00591267,-0.474388,-0.880296][0.121619,0.876369,0.121958][-0.44475,1.39878,3.33218][0.616759,-0.377874,-0.690521][0.151436,0.874535,0.116303][-0.00229836,-0.894591,3.97655][0.334526,-0.716162,0.612539][0.122272,0.995171,0.103444][0.392683,-0.909738,3.90964][-0.42733,-0.12304,-0.895684][0.100267,0.997298,0.101403][0.437303,-0.897446,3.92177][0.676883,0.0983242,0.729494][0.0987607,0.997265,0.101244][0.450688,-0.907651,3.85564][0.370198,-0.128725,-0.919991][0.0924601,0.99688,0.100557][0.437303,-0.897446,3.92177][0.676883,0.0983242,0.729494][0.0987607,0.997265,0.101244][0.392683,-0.909738,3.90964][-0.42733,-0.12304,-0.895684][0.100267,0.997298,0.101403][0.946507,2.9342,0.750628][-0.416431,-0.905913,-0.0768578][0.041317,0.656892,0.142305][1.74965,2.46013,0.68489][-0.674872,-0.737,-0.0371245][0.0402491,0.605687,0.138784][1.70526,2.39575,1.23309][-0.513109,-0.538241,-0.668592][0.00865765,0.607435,0.134529][1.70526,2.39575,1.23309][-0.513109,-0.538241,-0.668592][0.00865765,0.607435,0.134529][0.869822,2.86654,1.29742][-0.301187,-0.637407,-0.709224][0.00776204,0.660754,0.137261][0.946507,2.9342,0.750628][-0.416431,-0.905913,-0.0768578][0.041317,0.656892,0.142305][-2.72181,0.743731,-0.114189][0.955415,-0.295143,-0.00855851][0.080887,0.928314,0.1256][-3.00441,-0.478979,-0.290267][0.882494,-0.355911,0.307459][0.0830268,0.996991,0.121645][-2.95054,-0.227685,-0.298605][-0.103987,0.151619,-0.982954][0.0830021,0.984371,0.12289][3.09281,-0.564706,0.823021][0.776241,-0.545382,0.316241][0.00695475,0.425374,-0.175446][3.09297,-0.520461,0.251376][-0.973758,-0.227578,0.00209325][0.0404217,0.423585,-0.166594][3.13047,-0.505293,0.252063][0.98362,0.180199,-0.00448259][0.0404217,0.423585,-0.166594][-1.69086,2.41628,1.23559][0.532131,-0.560318,-0.634729][0.00980827,0.812917,0.134722][-2.34627,1.6415,1.13234][0.670654,-0.339395,-0.659572][0.00874363,0.867728,0.130848][-2.3928,1.69957,0.580873][0.833379,-0.551743,-0.0325554][0.042085,0.870539,0.134398][0.444246,3.08039,1.26673][0.493314,0.833681,0.248229][0.0917645,0.736037,0.140006][0.47516,3.13784,0.777249][0.647909,0.759703,0.0553591][0.090419,0.711349,0.139879][-0.00164604,3.1239,1.263][-0.0142893,0.964754,0.262766][0.122579,0.735383,0.149037][0.444246,3.08039,1.26673][0.493314,0.833681,0.248229][0.0917645,0.736037,0.140006][0.499896,2.9954,1.24153][0.927644,0.357271,0.10878][0.0849246,0.736146,0.132211][0.47516,3.13784,0.777249][0.647909,0.759703,0.0553591][0.090419,0.711349,0.139879][-3.12069,-0.510653,0.252348][0.258091,-0.814999,-0.518812][0.0467371,0.996794,0.123721][-3.08272,-0.449443,-0.31754][-0.557003,0.131026,-0.820109][0.0795617,0.9968,0.122028][-3.07693,-0.467529,-0.272631][0.761933,-0.20099,0.615679][0.0795617,0.9968,0.122028][-3.00441,-0.478979,-0.290267][0.882494,-0.355911,0.307459][0.0830268,0.996991,0.121645][-3.07693,-0.467529,-0.272631][0.761933,-0.20099,0.615679][0.0795617,0.9968,0.122028][-3.08272,-0.449443,-0.31754][-0.557003,0.131026,-0.820109][0.0795617,0.9968,0.122028][2.34718,1.63774,1.12907][-0.684109,-0.336338,-0.647203][0.00691238,0.553027,0.130052][1.70526,2.39575,1.23309][-0.513109,-0.538241,-0.668592][0.00865765,0.607435,0.134529][1.74965,2.46013,0.68489][-0.674872,-0.737,-0.0371245][0.0402491,0.605687,0.138784][-0.302092,3.12661,0.776934][0.134953,-0.988056,-0.0743873][0.0420557,0.727795,0.143515][0.0304894,3.04079,1.31793][-0.00724323,-0.687524,-0.726125][0.00722128,0.709595,0.139612][-0.311952,3.01821,1.31869][0.124513,-0.673731,-0.728411][0.00688569,0.728919,0.138369][-0.30839,2.92075,1.32657][0.141919,-0.98952,-0.0266249][0.00497893,0.729009,0.136981][-0.311952,3.01821,1.31869][0.124513,-0.673731,-0.728411][0.00688569,0.728919,0.138369][0.0304894,3.04079,1.31793][-0.00724323,-0.687524,-0.726125][0.00722128,0.709595,0.139612][3.16245,-0.193023,1.10314][0.103053,-0.0571536,0.993032][0.4735,0.222163,0.00724751][3.28751,-0.75581,0.823869][0.311789,-0.697337,0.645375][0.474126,0.184079,0.00741243][4.70805,-0.180133,0.761892][0.450012,-0.633642,0.629275][0.604781,0.182592,0.0200284][4.70805,-0.180133,0.761892][0.450012,-0.633642,0.629275][0.604781,0.182592,0.0200284][4.513,0.245758,0.993617][0.1216,-0.0607661,0.990717][0.604596,0.216351,0.0178264][3.16245,-0.193023,1.10314][0.103053,-0.0571536,0.993032][0.4735,0.222163,0.00724751][3.05296,0.472765,-0.290691][-0.101179,0.734384,-0.671151][0.473853,0.0360003,0.00650288][2.9966,0.675711,0.315024][-0.187225,0.980583,0.0583383][0.473882,0.0069463,0.00500213][4.23715,0.907259,0.328623][-0.384613,0.921749,0.0495081][0.606304,0.00894279,0.00938938][4.23715,0.907259,0.328623][-0.384613,0.921749,0.0495081][0.606304,0.00894279,0.00938938][4.31794,0.755371,-0.178552][-0.227038,0.690725,-0.686551][0.60546,0.0478285,0.0141253][3.05296,0.472765,-0.290691][-0.101179,0.734384,-0.671151][0.473853,0.0360003,0.00650288][-3.16624,-0.105619,-0.568352][-0.100731,0.0604779,-0.993074][0.473518,0.221525,0.00727404][-3.29577,-0.696823,-0.35845][-0.316459,-0.612137,-0.724667][0.47417,0.18345,0.00746164][-4.70805,-0.121264,-0.230806][-0.451936,-0.55278,-0.700134][0.604781,0.182592,0.0200284][-4.70805,-0.121264,-0.230806][-0.451936,-0.55278,-0.700134][0.604781,0.182592,0.0200284][-4.513,0.32903,-0.410569][-0.119842,0.056547,-0.991181][0.604596,0.216351,0.0178264][-3.16624,-0.105619,-0.568352][-0.100731,0.0604779,-0.993074][0.473518,0.221525,0.00727404][-5.15793,0.851207,0.924052][-0.121985,0.0107069,0.992474][0.658844,0.0895022,0.0219155][-4.8572,1.11404,0.762663][0.471563,0.478946,0.740431][0.659369,0.0538543,0.0167634][-5.19498,1.70821,0.714823][0.648736,0.220697,0.728309][0.712309,0.062217,0.0182116][-5.19498,1.70821,0.714823][0.648736,0.220697,0.728309][0.712309,0.062217,0.0182116][-5.51132,1.62023,0.857095][-0.090717,0.0447077,0.994873][0.711785,0.0969971,0.0239803][-5.15793,0.851207,0.924052][-0.121985,0.0107069,0.992474][0.658844,0.0895022,0.0219155][2.98619,-4.68904,-0.771734][0.987202,-0.110392,-0.115086][0.124068,0.261863,-0.263313][3.19298,-2.80708,-0.118732][0.995024,-0.0352288,-0.0931991][0.100444,0.357683,-0.50923][2.96559,-4.12324,1.02356][0.942946,-0.098535,0.318031][0.0358001,0.297542,-0.238815][2.96559,-4.12324,1.02356][0.942946,-0.098535,0.318031][0.0358001,0.297542,-0.238815][2.88787,-5.30344,0.186743][-0.0324824,-0.6279,0.777616][0.0736977,0.233628,-0.14639][2.98619,-4.68904,-0.771734][0.987202,-0.110392,-0.115086][0.124068,0.261863,-0.263313][3.17341,-1.87193,0.0839391][-0.949987,0.311955,-0.0144509][0.0962978,0.383773,-0.48595][2.91726,-4.68853,-0.767122][-0.988635,0.10191,0.110525][0.114553,0.276892,-0.181344][2.96559,-4.12324,1.02356][0.942946,-0.098535,0.318031][0.0599757,0.303046,-0.238815][-5.31324,4.13174,0.494445][-0.970718,0.240211,-0.00210943][0.843277,0.158478,0.0219367][-5.24624,4.13818,0.316446][-0.659918,0.282811,-0.696079][0.843082,0.175901,0.0211341][-5.72089,2.63512,0.121232][-0.679799,0.237583,-0.69385][0.763851,0.179044,0.0274823][-5.72089,2.63512,0.121232][-0.679799,0.237583,-0.69385][0.763851,0.179044,0.0274823][-5.82576,2.63611,0.406242][-0.975425,0.220034,0.0114066][0.764064,0.15536,0.0288229][-5.31324,4.13174,0.494445][-0.970718,0.240211,-0.00210943][0.843277,0.158478,0.0219367][-4.92272,4.09765,0.670812][0.749749,-0.0236406,0.6613][0.844083,0.0988885,0.0151171][-5.08448,4.10309,0.745019][0.137458,0.025754,0.990173][0.84371,0.122161,0.0187372][-5.51132,1.62023,0.857095][-0.090717,0.0447077,0.994873][0.711785,0.0969971,0.0239803][-5.51132,1.62023,0.857095][-0.090717,0.0447077,0.994873][0.711785,0.0969971,0.0239803][-5.21454,2.51595,0.684107][0.852107,-0.0935088,0.514947][0.765147,0.0739738,0.0182901][-4.92272,4.09765,0.670812][0.749749,-0.0236406,0.6613][0.844083,0.0988885,0.0151171][-3.06691,0.390758,0.895123][0.10566,0.647912,0.754351][0.474849,0.0366291,0.00660406][-3.00441,0.663417,0.318058][0.197263,0.978643,0.057839][0.474837,0.00738667,0.00506944][-4.23715,0.907297,0.32795][0.390028,0.918885,0.0594052][0.6072,0.00895063,0.00938938][-4.23715,0.907297,0.32795][0.390028,0.918885,0.0594052][0.6072,0.00895063,0.00938938][-4.31794,0.696529,0.813618][0.229942,0.604654,0.762575][0.606356,0.0478364,0.0141253][-3.06691,0.390758,0.895123][0.10566,0.647912,0.754351][0.474849,0.0366291,0.00660406][-3.00612,-4.68904,-0.771735][-0.988328,-0.103369,-0.111905][0.123817,0.262462,0.216448][-2.98552,-4.12324,1.02355][-0.0331568,0.898722,-0.437263][0.0350987,0.298534,0.193652][-2.96659,-3.05885,1.42943][0.0667029,-0.97572,0.208615][0.0190287,0.354144,0.172703][-2.96659,-3.05885,1.42943][0.0667029,-0.97572,0.208615][0.0190287,0.354144,0.172703][-3.26235,-1.87166,0.0793811][-0.768366,0.637356,0.0582235][0.0939961,0.405381,0.5][-3.00612,-4.68904,-0.771735][-0.988328,-0.103369,-0.111905][0.123817,0.262462,0.216448][-2.98552,-4.12324,1.02355][-0.0331568,0.898722,-0.437263][0.0579905,0.304893,0.193652][-2.9078,-5.30345,0.186741][0.0324842,-0.627899,0.777617][0.0813267,0.258432,0.107646][-2.93719,-4.68853,-0.767123][0.987686,0.103336,0.117462][0.112837,0.278258,0.140172][-2.93719,-4.68853,-0.767123][0.987686,0.103336,0.117462][0.112837,0.278258,0.140172][-3.14402,-2.80509,-0.114077][0.997861,0.0532763,0.0378728][0.0979276,0.348572,0.369049][-2.98552,-4.12324,1.02355][-0.0331568,0.898722,-0.437263][0.0579905,0.304893,0.193652][-3.00796,0.0881785,-0.564143][-0.443639,0.33727,-0.830322][0.368001,0.379352,-0.015287][-3.16597,-0.565829,-0.505289][-0.584404,-0.277704,-0.762464][0.316602,0.379355,-0.015287][-3.39719,-0.178446,-0.593959][-0.677158,0.0953606,-0.729632][0.342074,0.367135,0.114454][-3.39719,-0.178446,-0.593959][-0.677158,0.0953606,-0.729632][0.342074,0.367135,0.114454][-3.25642,0.440587,-0.397948][-0.575771,0.594901,-0.560874][0.377303,0.352428,0.115127][-3.00796,0.0881785,-0.564143][-0.443639,0.33727,-0.830322][0.368001,0.379352,-0.015287][5.82766,1.58966,0.0296642][0.756554,-0.0191559,-0.65365][0.711428,0.126118,0.0283872][5.95869,1.53565,0.382457][0.992503,-0.121974,-0.00776398][0.711148,0.15334,0.0301388][5.58324,0.529146,0.310602][0.8505,-0.524981,-0.0323151][0.65814,0.151351,0.0273196][5.58324,0.529146,0.310602][0.8505,-0.524981,-0.0323151][0.65814,0.151351,0.0273196][5.45867,0.659082,-0.108715][0.658249,-0.323399,-0.679795][0.658453,0.121065,0.0257743][5.82766,1.58966,0.0296642][0.756554,-0.0191559,-0.65365][0.711428,0.126118,0.0283872][4.92272,4.11577,0.365243][-0.749749,0.0546872,-0.659459][0.844081,0.0988727,0.015113][5.08448,4.12994,0.292199][-0.137458,0.142606,-0.980188][0.843702,0.122062,0.0187149][5.51132,1.67774,-0.112549][0.0907156,0.161982,-0.982615][0.711785,0.0969971,0.0239803][5.51132,1.67774,-0.112549][0.0907156,0.161982,-0.982615][0.711785,0.0969971,0.0239803][5.21454,2.54673,0.165095][-0.852107,-0.0319907,-0.522389][0.765147,0.0739738,0.0182901][4.92272,4.11577,0.365243][-0.749749,0.0546872,-0.659459][0.844081,0.0988727,0.015113][5.15793,0.922018,-0.269931][0.121984,0.127936,-0.984252][0.658844,0.0895022,0.0219155][4.85719,1.16393,-0.0786076][-0.471564,0.563104,-0.678632][0.659369,0.0538543,0.0167634][5.19498,1.74829,0.0391242][-0.648737,0.305231,-0.697119][0.712309,0.062217,0.0182116][5.19498,1.74829,0.0391242][-0.648737,0.305231,-0.697119][0.712309,0.062217,0.0182116][5.51132,1.67774,-0.112549][0.0907156,0.161982,-0.982615][0.711785,0.0969971,0.0239803][5.15793,0.922018,-0.269931][0.121984,0.127936,-0.984252][0.658844,0.0895022,0.0219155][4.31794,0.69617,0.814151][-0.241593,0.600115,0.762558][0.60453,0.251678,0.0143556][3.16245,-0.193023,1.10314][0.103053,-0.0571536,0.993032][0.4735,0.222163,0.00724751][4.513,0.245758,0.993617][0.1216,-0.0607661,0.990717][0.604596,0.216351,0.0178264][4.92272,4.09457,0.720749][-0.744978,-0.0197103,0.666798][0.842896,0.217857,0.0151668][4.85572,4.10112,0.542754][-0.999709,-0.0240643,-0.00140045][0.843072,0.248705,0.0109409][5.10967,2.51205,0.447989][-0.998913,-0.0465508,-0.00226598][0.763879,0.278354,0.0125382][5.10967,2.51205,0.447989][-0.998913,-0.0465508,-0.00226598][0.763879,0.278354,0.0125382][5.21454,2.51286,0.732999][-0.800421,-0.0706706,0.595257][0.763665,0.23621,0.0184236][4.92272,4.09457,0.720749][-0.744978,-0.0197103,0.666798][0.842896,0.217857,0.0151668][-5.45647,0.661512,-0.118469][-0.652749,-0.328941,-0.682435][0.657892,0.18174,0.0259767][-5.58324,0.529704,0.301153][-0.850697,-0.524744,-0.0309695][0.65814,0.151351,0.0273196][-5.95869,1.53764,0.348764][-0.99253,-0.121687,-0.0087485][0.711148,0.15334,0.0301388][-5.95869,1.53764,0.348764][-0.99253,-0.121687,-0.0087485][0.711148,0.15334,0.0301388][-5.82546,1.59357,-0.00428489][-0.751034,-0.0262374,-0.659742][0.710918,0.180597,0.0285748][-5.45647,0.661512,-0.118469][-0.652749,-0.328941,-0.682435][0.657892,0.18174,0.0259767][-5.82766,1.54958,0.705468][-0.756555,-0.0962793,0.646804][0.711428,0.126118,0.0283872][-5.95869,1.53764,0.348764][-0.99253,-0.121687,-0.0087485][0.711148,0.15334,0.0301388][-5.58324,0.529704,0.301153][-0.850697,-0.524744,-0.0309695][0.65814,0.151351,0.0273196][-5.58324,0.529704,0.301153][-0.850697,-0.524744,-0.0309695][0.65814,0.151351,0.0273196][-5.45867,0.609169,0.732889][-0.658249,-0.40148,0.636806][0.658453,0.121065,0.0257743][-5.82766,1.54958,0.705468][-0.756555,-0.0962793,0.646804][0.711428,0.126118,0.0283872][3.24986,-1.01843,0.516626][0.678114,-0.655488,0.33241][0.27996,0.343354,-0.0203513][3.2656,-1.05351,0.166076][0.686279,-0.711212,-0.152312][0.274765,0.317457,-0.0210752][3.5934,-0.972328,0.173629][0.890245,-0.438075,-0.124715][0.292504,0.317151,0.11675][3.5934,-0.972328,0.173629][0.890245,-0.438075,-0.124715][0.292504,0.317151,0.11675][3.57389,-0.937782,0.519022][0.866681,-0.400183,0.297856][0.296196,0.336222,0.115872][3.24986,-1.01843,0.516626][0.678114,-0.655488,0.33241][0.27996,0.343354,-0.0203513][3.54125,-0.656244,-0.430386][0.8552,-0.221412,-0.468626][0.307049,0.282014,0.118373][3.5934,-0.972328,0.173629][0.890245,-0.438075,-0.124715][0.292504,0.317151,0.11675][3.213,-0.732774,-0.446893][0.64408,-0.40271,-0.650373][0.294441,0.26963,-0.019301][3.213,-0.732774,-0.446893][0.64408,-0.40271,-0.650373][0.294441,0.26963,-0.019301][3.08873,-0.0790543,-0.653874][0.457085,0.162641,-0.874426][0.341843,0.250542,-0.0112353][3.54125,-0.656244,-0.430386][0.8552,-0.221412,-0.468626][0.307049,0.282014,0.118373][2.70884,-3.13298,-2.07522][-0.0685756,0.900323,-0.429786][0.161812,0.329557,0.0665095][2.79197,-4.07398,-1.71164][-0.134167,-0.351475,-0.926534][0.14741,0.295551,-0.0323412][2.91726,-4.68853,-0.767122][-0.988635,0.10191,0.110525][0.114553,0.276892,-0.181344][2.88787,-5.30344,0.186743][-0.0324824,-0.6279,0.777616][0.0736977,0.233628,-0.14639][2.70453,-5.73675,-1.09491][-0.685573,-0.682636,0.252977][0.137968,0.205824,0.0716335][2.77354,-5.73659,-1.0995][0.650601,-0.759398,-0.00573382][0.136071,0.208681,-0.010432][2.77354,-5.73659,-1.0995][0.650601,-0.759398,-0.00573382][0.136071,0.208681,-0.010432][2.98619,-4.68904,-0.771734][0.987202,-0.110392,-0.115086][0.124068,0.261863,-0.263313][2.88787,-5.30344,0.186743][-0.0324824,-0.6279,0.777616][0.0736977,0.233628,-0.14639][5.31324,4.12878,0.544404][0.970718,0.238279,0.03049][0.84328,0.158473,0.0219386][5.24624,4.11413,0.721915][0.660006,0.198885,0.724456][0.843082,0.175901,0.0211341][5.72089,2.59854,0.738109][0.680205,0.154774,0.716496][0.763851,0.179044,0.0274823][5.72089,2.59854,0.738109][0.680205,0.154774,0.716496][0.763851,0.179044,0.0274823][5.82576,2.63321,0.455214][0.975344,0.220216,0.014429][0.764064,0.15536,0.0288229][5.31324,4.12878,0.544404][0.970718,0.238279,0.03049][0.84328,0.158473,0.0219386][5.45858,0.611222,0.74239][0.653775,-0.408449,0.636983][0.657892,0.18174,0.0259767][5.58324,0.529146,0.310602][0.8505,-0.524981,-0.0323151][0.65814,0.151351,0.0273196][5.95869,1.53565,0.382457][0.992503,-0.121974,-0.00776398][0.711148,0.15334,0.0301388][5.95869,1.53565,0.382457][0.992503,-0.121974,-0.00776398][0.711148,0.15334,0.0301388][5.82757,1.55024,0.739169][0.754064,-0.104395,0.648451][0.710918,0.180597,0.0285748][5.45858,0.611222,0.74239][0.653775,-0.408449,0.636983][0.657892,0.18174,0.0259767][-4.31794,0.755074,-0.179125][0.247684,0.684652,-0.685496][0.60453,0.251678,0.0143556][-3.16624,-0.105619,-0.568352][-0.100731,0.0604779,-0.993074][0.473518,0.221525,0.00727404][-4.513,0.32903,-0.410569][-0.119842,0.056547,-0.991181][0.604596,0.216351,0.0178264][-4.92272,4.11862,0.315293][0.744978,0.0592387,-0.664453][0.842896,0.217857,0.0151668][-4.85572,4.10408,0.492814][0.999709,-0.0240607,-0.00145258][0.843072,0.248705,0.0109409][-5.10967,2.51495,0.399097][0.998913,-0.0464911,-0.00325174][0.763879,0.278354,0.0125382][-5.10967,2.51495,0.399097][0.998913,-0.0464911,-0.00325174][0.763879,0.278354,0.0125382][-5.21454,2.54944,0.11618][0.811426,-0.00178613,-0.584452][0.763665,0.23621,0.0184236][-4.92272,4.11862,0.315293][0.744978,0.0592387,-0.664453][0.842896,0.217857,0.0151668][-2.75349,0.301999,1.26673][-0.689545,0.469925,0.551088][0.378338,0.229624,-0.116671][-2.70246,0.640911,0.987364][-0.792409,0.483772,0.371554][0.408968,0.250511,-0.101615][-2.90947,0.657514,0.524244][-0.368972,0.896339,0.245838][0.403852,0.291035,-0.0125361][-2.90947,0.657514,0.524244][-0.368972,0.896339,0.245838][0.403852,0.291035,-0.0125361][-3.00796,0.23934,1.03384][-0.365278,0.562204,0.741956][0.367963,0.254776,-0.0188441][-2.75349,0.301999,1.26673][-0.689545,0.469925,0.551088][0.378338,0.229624,-0.116671][-3.06826,-0.92583,1.14288][-0.844945,-0.224976,0.485235][0.273659,0.249297,-0.10684][-3.07569,-0.528458,1.34755][-0.435698,-0.273054,0.857676][0.308898,0.238803,-0.068413][-3.10646,-0.0813934,1.12908][-0.446552,0.165432,0.879331][0.341843,0.250542,-0.0112353][-3.10646,-0.0813934,1.12908][-0.446552,0.165432,0.879331][0.341843,0.250542,-0.0112353][-3.23073,-0.709523,0.930197][-0.633251,-0.40604,0.658881][0.294441,0.26963,-0.019301][-3.06826,-0.92583,1.14288][-0.844945,-0.224976,0.485235][0.273659,0.249297,-0.10684][-2.90067,-2.55944,-1.58775][0.0454891,0.772366,-0.633546][0.176305,0.366047,0.0997553][-2.72877,-3.13298,-2.07522][0.232899,0.134511,-0.963154][0.198774,0.334894,-0.0904668][-3.00612,-4.68904,-0.771735][-0.988328,-0.103369,-0.111905][0.123817,0.262462,0.216448][-3.00612,-4.68904,-0.771735][-0.988328,-0.103369,-0.111905][0.123817,0.262462,0.216448][-3.26235,-1.87166,0.0793811][-0.768366,0.637356,0.0582235][0.0939961,0.405381,0.5][-2.90067,-2.55944,-1.58775][0.0454891,0.772366,-0.633546][0.176305,0.366047,0.0997553][-2.93719,-4.68853,-0.767123][0.987686,0.103336,0.117462][0.112837,0.278258,0.140172][-2.81189,-4.07398,-1.71164][0.118189,-0.227387,-0.966606][0.14514,0.297849,0.00151819][-2.72877,-3.13298,-2.07522][0.232899,0.134511,-0.963154][0.159326,0.33155,-0.0904668][-2.72877,-3.13298,-2.07522][0.232899,0.134511,-0.963154][0.159326,0.33155,-0.0904668][-3.14402,-2.80509,-0.114077][0.997861,0.0532763,0.0378728][0.0979276,0.348572,0.369049][-2.93719,-4.68853,-0.767123][0.987686,0.103336,0.117462][0.112837,0.278258,0.140172][-3.54412,-0.750179,-0.290791][-0.811331,-0.352333,-0.46648][0.306915,0.352444,0.115127][-3.39719,-0.178446,-0.593959][-0.677158,0.0953606,-0.729632][0.342074,0.367135,0.114454][-3.16597,-0.565829,-0.505289][-0.584404,-0.277704,-0.762464][0.316602,0.379355,-0.015287][-3.16597,-0.565829,-0.505289][-0.584404,-0.277704,-0.762464][0.316602,0.379355,-0.015287][-3.26759,-0.983996,0.00439465][-0.685599,-0.658438,-0.310506][0.27996,0.343354,-0.0203513][-3.54412,-0.750179,-0.290791][-0.811331,-0.352333,-0.46648][0.306915,0.352444,0.115127][-3.23073,-0.709523,0.930197][-0.633251,-0.40604,0.658881][0.294441,0.26963,-0.019301][-3.10646,-0.0813934,1.12908][-0.446552,0.165432,0.879331][0.341843,0.250542,-0.0112353][-3.55898,-0.635989,0.914336][-0.842494,-0.23509,0.484703][0.307049,0.282014,0.118373][-3.55898,-0.635989,0.914336][-0.842494,-0.23509,0.484703][0.307049,0.282014,0.118373][-3.61113,-0.9397,0.333965][-0.880883,-0.465461,0.0859727][0.292504,0.317151,0.11675][-3.23073,-0.709523,0.930197][-0.633251,-0.40604,0.658881][0.294441,0.26963,-0.019301][-2.90947,0.657514,0.524244][-0.368972,0.896339,0.245838][0.403852,0.291035,-0.0125361][-2.89391,0.594925,-0.137692][-0.446947,0.804286,-0.391615][0.404492,0.342951,-0.0172494][-3.20426,0.744297,0.182423][-0.543972,0.835235,-0.0804739][0.392751,0.316798,0.11675][-3.20426,0.744297,0.182423][-0.543972,0.835235,-0.0804739][0.392751,0.316798,0.11675][-3.27128,0.554777,0.807179][-0.603209,0.67702,0.421644][0.376589,0.282556,0.118374][-2.90947,0.657514,0.524244][-0.368972,0.896339,0.245838][0.403852,0.291035,-0.0125361][-3.25642,0.440587,-0.397948][-0.575771,0.594901,-0.560874][0.377303,0.352428,0.115127][-3.20426,0.744297,0.182423][-0.543972,0.835235,-0.0804739][0.392751,0.316798,0.11675][-2.89391,0.594925,-0.137692][-0.446947,0.804286,-0.391615][0.404492,0.342951,-0.0172494][-2.89391,0.594925,-0.137692][-0.446947,0.804286,-0.391615][0.404492,0.342951,-0.0172494][-3.00796,0.0881785,-0.564143][-0.443639,0.33727,-0.830322][0.368001,0.379352,-0.015287][-3.25642,0.440587,-0.397948][-0.575771,0.594901,-0.560874][0.377303,0.352428,0.115127][4.78884,-0.332022,0.254717][0.572386,-0.818478,-0.049681][0.605047,0.14937,0.0207236][3.29852,-0.682979,-0.359188][0.313696,-0.61902,-0.720007][0.474807,0.105132,0.00737042][4.70805,-0.120933,-0.230812][0.4541,-0.549953,-0.70096][0.605397,0.116359,0.0198825][4.31794,0.755371,-0.178552][-0.227038,0.690725,-0.686551][0.60546,0.0478285,0.0141253][4.513,0.32948,-0.410278][0.132654,0.064108,-0.989087][0.605823,0.0830497,0.0176432][3.17802,-0.0900232,-0.569958][0.104526,0.0601351,-0.992702][0.474815,0.0686146,0.00715622][3.17802,-0.0900232,-0.569958][0.104526,0.0601351,-0.992702][0.474815,0.0686146,0.00715622][3.05296,0.472765,-0.290691][-0.101179,0.734384,-0.671151][0.473853,0.0360003,0.00650288][4.31794,0.755371,-0.178552][-0.227038,0.690725,-0.686551][0.60546,0.0478285,0.0141253][5.51078,1.63528,0.890842][0.0836786,0.0357453,0.995851][0.710747,0.209705,0.0242248][5.72089,2.59854,0.738109][0.680205,0.154774,0.716496][0.763851,0.179044,0.0274823][5.24624,4.11413,0.721915][0.660006,0.198885,0.724456][0.843082,0.175901,0.0211341][5.24624,4.11413,0.721915][0.660006,0.198885,0.724456][0.843082,0.175901,0.0211341][5.08448,4.09996,0.794959][-0.0115925,0.0574563,0.998281][0.842916,0.194804,0.018781][5.51078,1.63528,0.890842][0.0836786,0.0357453,0.995851][0.710747,0.209705,0.0242248][-5.49811,1.6923,-0.147658][-0.0732751,0.155547,-0.985107][0.710747,0.209705,0.0242248][-5.72089,2.63512,0.121232][-0.679799,0.237583,-0.69385][0.763851,0.179044,0.0274823][-5.24624,4.13818,0.316446][-0.659918,0.282811,-0.696079][0.843082,0.175901,0.0211341][-5.24624,4.13818,0.316446][-0.659918,0.282811,-0.696079][0.843082,0.175901,0.0211341][-5.08448,4.13274,0.242239][0.0113769,0.17485,-0.984529][0.842916,0.194804,0.018781][-5.49811,1.6923,-0.147658][-0.0732751,0.155547,-0.985107][0.710747,0.209705,0.0242248][-4.78884,-0.332032,0.254862][-0.576482,-0.815709,-0.0478325][0.605047,0.14937,0.0207236][-3.31712,-0.763877,0.824807][-0.323359,-0.698736,0.638128][0.47492,0.105588,0.00750809][-4.70805,-0.179809,0.761937][-0.458004,-0.625932,0.631223][0.605397,0.116359,0.0198825][-4.31794,0.696529,0.813618][0.229942,0.604654,0.762575][0.606356,0.0478364,0.0141253][-4.513,0.246234,0.993381][-0.133641,-0.0513295,0.9897][0.605823,0.0830497,0.0176432][-3.19644,-0.200447,1.10503][-0.109158,-0.0594046,0.992248][0.474936,0.0693703,0.00729461][-3.19644,-0.200447,1.10503][-0.109158,-0.0594046,0.992248][0.474936,0.0693703,0.00729461][-3.06691,0.390758,0.895123][0.10566,0.647912,0.754351][0.474849,0.0366291,0.00660406][-4.31794,0.696529,0.813618][0.229942,0.604654,0.762575][0.606356,0.0478364,0.0141253][-2.81189,-4.07398,-1.71164][0.118189,-0.227387,-0.966606][0.175862,0.288926,0.00151819][-2.67127,-4.97235,-1.88991][0.140971,0.358752,-0.922726][0.180983,0.242717,-0.154096][-2.79347,-5.73659,-1.0995][-0.651596,-0.75854,-0.00630638][0.135463,0.209272,-0.01887][-2.79347,-5.73659,-1.0995][-0.651596,-0.75854,-0.00630638][0.135463,0.209272,-0.01887][-3.00612,-4.68904,-0.771735][-0.988328,-0.103369,-0.111905][0.123817,0.262462,0.216448][-2.81189,-4.07398,-1.71164][0.118189,-0.227387,-0.966606][0.175862,0.288926,0.00151819][-2.72446,-5.73674,-1.09491][0.684082,-0.684028,0.253256][0.120893,0.238215,-0.0952359][-2.67127,-4.97235,-1.88991][0.140971,0.358752,-0.922726][0.148311,0.263971,-0.154096][-2.81189,-4.07398,-1.71164][0.118189,-0.227387,-0.966606][0.14514,0.297849,0.00151819][-2.81189,-4.07398,-1.71164][0.118189,-0.227387,-0.966606][0.14514,0.297849,0.00151819][-2.93719,-4.68853,-0.767123][0.987686,0.103336,0.117462][0.112837,0.278258,0.140172][-2.72446,-5.73674,-1.09491][0.684082,-0.684028,0.253256][0.120893,0.238215,-0.0952359][3.198,0.681412,0.664733][0.581263,0.742588,0.332711][0.388244,0.336033,0.115872][3.20604,0.745729,-0.0140474][0.591933,0.778387,-0.209115][0.388361,0.298114,0.117629][2.87618,0.624817,0.664502][0.480649,0.793519,0.373234][0.404492,0.342951,-0.0172494][2.87618,0.624817,0.664502][0.480649,0.793519,0.373234][0.404492,0.342951,-0.0172494][2.99023,0.0974257,1.10833][0.466357,0.324172,0.823058][0.368001,0.379352,-0.015287][3.198,0.681412,0.664733][0.581263,0.742588,0.332711][0.388244,0.336033,0.115872][2.89174,0.689956,-0.0244017][0.390808,0.885913,-0.249856][0.403852,0.291035,-0.0125361][2.87618,0.624817,0.664502][0.480649,0.793519,0.373234][0.404492,0.342951,-0.0172494][3.20604,0.745729,-0.0140474][0.591933,0.778387,-0.209115][0.388361,0.298114,0.117629][3.20604,0.745729,-0.0140474][0.591933,0.778387,-0.209115][0.388361,0.298114,0.117629][3.22374,0.512052,-0.259601][0.14182,0.726021,-0.67289][0.378057,0.28098,0.116433][2.89174,0.689956,-0.0244017][0.390808,0.885913,-0.249856][0.403852,0.291035,-0.0125361][3.45811,-0.50901,1.04167][0.788739,-0.128536,0.60114][0.323024,0.363309,0.114629][3.30241,0.161682,1.10203][0.650115,0.356047,0.671253][0.36117,0.363355,0.114629][3.14824,-0.583226,1.04707][0.599233,-0.274659,0.751986][0.316602,0.379355,-0.015287][3.14824,-0.583226,1.04707][0.599233,-0.274659,0.751986][0.316602,0.379355,-0.015287][3.24986,-1.01843,0.516626][0.678114,-0.655488,0.33241][0.27996,0.343354,-0.0203513][3.45811,-0.50901,1.04167][0.788739,-0.128536,0.60114][0.323024,0.363309,0.114629][2.99023,0.0974257,1.10833][0.466357,0.324172,0.823058][0.368001,0.379352,-0.015287][3.14824,-0.583226,1.04707][0.599233,-0.274659,0.751986][0.316602,0.379355,-0.015287][3.30241,0.161682,1.10203][0.650115,0.356047,0.671253][0.36117,0.363355,0.114629][3.30241,0.161682,1.10203][0.650115,0.356047,0.671253][0.36117,0.363355,0.114629][3.198,0.681412,0.664733][0.581263,0.742588,0.332711][0.388244,0.336033,0.115872][2.99023,0.0974257,1.10833][0.466357,0.324172,0.823058][0.368001,0.379352,-0.015287][3.2656,-1.05351,0.166076][0.686279,-0.711212,-0.152312][0.274765,0.317457,-0.0210752][3.213,-0.732774,-0.446893][0.64408,-0.40271,-0.650373][0.294441,0.26963,-0.019301][3.5934,-0.972328,0.173629][0.890245,-0.438075,-0.124715][0.292504,0.317151,0.11675][3.19298,-2.80708,-0.118732][0.995024,-0.0352288,-0.0931991][0.100444,0.357683,-0.50923][2.98619,-4.68904,-0.771734][0.987202,-0.110392,-0.115086][0.124068,0.261863,-0.263313][2.79197,-4.07398,-1.71164][-0.134167,-0.351475,-0.926534][0.177373,0.287876,-0.0323412][2.79197,-4.07398,-1.71164][-0.134167,-0.351475,-0.926534][0.177373,0.287876,-0.0323412][2.70884,-3.13298,-2.07522][-0.0685756,0.900323,-0.429786][0.200426,0.334247,0.0665095][3.19298,-2.80708,-0.118732][0.995024,-0.0352288,-0.0931991][0.100444,0.357683,-0.50923][2.88074,-2.55944,-1.58775][-0.191417,-0.432908,-0.880881][0.147698,0.352599,-0.13791][2.70884,-3.13298,-2.07522][-0.0685756,0.900323,-0.429786][0.161812,0.329557,0.0665095][2.91726,-4.68853,-0.767122][-0.988635,0.10191,0.110525][0.114553,0.276892,-0.181344][2.91726,-4.68853,-0.767122][-0.988635,0.10191,0.110525][0.114553,0.276892,-0.181344][3.17341,-1.87193,0.0839391][-0.949987,0.311955,-0.0144509][0.0962978,0.383773,-0.48595][2.88074,-2.55944,-1.58775][-0.191417,-0.432908,-0.880881][0.147698,0.352599,-0.13791][2.70453,-5.73675,-1.09491][-0.685573,-0.682636,0.252977][0.123132,0.236119,0.0716335][2.88787,-5.30344,0.186743][-0.0324824,-0.6279,0.777616][0.0834026,0.256407,-0.14639][2.91726,-4.68853,-0.767122][-0.988635,0.10191,0.110525][0.114553,0.276892,-0.181344][2.91726,-4.68853,-0.767122][-0.988635,0.10191,0.110525][0.114553,0.276892,-0.181344][2.65134,-4.97235,-1.8899][-0.14145,0.400178,-0.905455][0.150623,0.261369,0.134888][2.70453,-5.73675,-1.09491][-0.685573,-0.682636,0.252977][0.123132,0.236119,0.0716335][2.65134,-4.97235,-1.8899][-0.14145,0.400178,-0.905455][0.182515,0.241267,0.134888][2.79197,-4.07398,-1.71164][-0.134167,-0.351475,-0.926534][0.177373,0.287876,-0.0323412][2.98619,-4.68904,-0.771734][0.987202,-0.110392,-0.115086][0.124068,0.261863,-0.263313][2.98619,-4.68904,-0.771734][0.987202,-0.110392,-0.115086][0.124068,0.261863,-0.263313][2.77354,-5.73659,-1.0995][0.650601,-0.759398,-0.00573382][0.136071,0.208681,-0.010432][2.65134,-4.97235,-1.8899][-0.14145,0.400178,-0.905455][0.182515,0.241267,0.134888][-4.31794,0.755074,-0.179125][0.247684,0.684652,-0.685496][0.60453,0.251678,0.0143556][-4.23715,0.907297,0.32795][0.390028,0.918885,0.0594052][0.6048,0.289563,0.00960654][-3.00441,0.663417,0.318058][0.197263,0.978643,0.057839][0.47237,0.287603,0.00526855][-3.00441,0.663417,0.318058][0.197263,0.978643,0.057839][0.47237,0.287603,0.00526855][-3.04555,0.457811,-0.288134][0.112038,0.727706,-0.676676][0.472871,0.256407,0.00669697][-4.31794,0.755074,-0.179125][0.247684,0.684652,-0.685496][0.60453,0.251678,0.0143556][4.31794,0.69617,0.814151][-0.241593,0.600115,0.762558][0.60453,0.251678,0.0143556][4.23715,0.907259,0.328623][-0.384613,0.921749,0.0495081][0.6048,0.289563,0.00960654][2.9966,0.675711,0.315024][-0.187225,0.980583,0.0583383][0.472309,0.287463,0.00524664][2.9966,0.675711,0.315024][-0.187225,0.980583,0.0583383][0.472309,0.287463,0.00524664][3.04195,0.399933,0.892366][-0.103229,0.644637,0.757487][0.472849,0.256644,0.00667374][4.31794,0.69617,0.814151][-0.241593,0.600115,0.762558][0.60453,0.251678,0.0143556][4.31794,0.755371,-0.178552][-0.227038,0.690725,-0.686551][0.60546,0.0478285,0.0141253][4.23715,0.907259,0.328623][-0.384613,0.921749,0.0495081][0.606304,0.00894279,0.00938938][4.73263,1.24311,0.35318][-0.717514,0.695719,0.0338867][0.660113,0.0109538,0.0109937][4.73263,1.24311,0.35318][-0.717514,0.695719,0.0338867][0.660113,0.0109538,0.0109937][4.85719,1.16393,-0.0786076][-0.471564,0.563104,-0.678632][0.659369,0.0538543,0.0167634][4.31794,0.755371,-0.178552][-0.227038,0.690725,-0.686551][0.60546,0.0478285,0.0141253][4.73263,1.24311,0.35318][-0.717514,0.695719,0.0338867][0.65772,0.290729,0.0111769][4.85711,1.11607,0.772496][-0.489412,0.474004,0.731981][0.657636,0.24888,0.0169635][5.19489,1.70887,0.748628][-0.655984,0.210679,0.724775][0.710679,0.243952,0.0183825][5.19489,1.70887,0.748628][-0.655984,0.210679,0.724775][0.710679,0.243952,0.0183825][5.06395,1.75999,0.395836][-0.950222,0.311147,0.0163032][0.710732,0.287162,0.0122121][4.73263,1.24311,0.35318][-0.717514,0.695719,0.0338867][0.65772,0.290729,0.0111769][-4.31794,0.696529,0.813618][0.229942,0.604654,0.762575][0.606356,0.0478364,0.0141253][-4.23715,0.907297,0.32795][0.390028,0.918885,0.0594052][0.6072,0.00895063,0.00938938][-4.73263,1.2437,0.34326][0.717757,0.694504,0.0498875][0.660113,0.0109538,0.0109937][-4.73263,1.2437,0.34326][0.717757,0.694504,0.0498875][0.660113,0.0109538,0.0109937][-4.8572,1.11404,0.762663][0.471563,0.478946,0.740431][0.659369,0.0538543,0.0167634][-4.31794,0.696529,0.813618][0.229942,0.604654,0.762575][0.606356,0.0478364,0.0141253][-4.73263,1.2437,0.34326][0.717757,0.694504,0.0498875][0.65772,0.290729,0.0111769][-4.85499,1.16638,-0.0886952][0.49405,0.558526,-0.666306][0.657636,0.24888,0.0169635][-5.19278,1.75221,0.00507081][0.664062,0.296416,-0.68641][0.710679,0.243952,0.0183825][-5.19278,1.75221,0.00507081][0.664062,0.296416,-0.68641][0.710679,0.243952,0.0183825][-5.06395,1.76199,0.361995][0.950159,0.310929,0.0228196][0.710732,0.287162,0.0122121][-4.73263,1.2437,0.34326][0.717757,0.694504,0.0498875][0.65772,0.290729,0.0111769][3.08873,-0.0790543,-0.653874][0.457085,0.162641,-0.874426][0.341843,0.250542,-0.0112353][2.99023,0.254745,-0.554757][0.43229,0.580119,-0.690353][0.367963,0.254776,-0.0188441][3.40048,-0.011992,-0.634383][0.753889,0.208722,-0.622966][0.342019,0.267525,0.119046][3.40048,-0.011992,-0.634383][0.753889,0.208722,-0.622966][0.342019,0.267525,0.119046][3.54125,-0.656244,-0.430386][0.8552,-0.221412,-0.468626][0.307049,0.282014,0.118373][3.08873,-0.0790543,-0.653874][0.457085,0.162641,-0.874426][0.341843,0.250542,-0.0112353][3.22374,0.512052,-0.259601][0.14182,0.726021,-0.67289][0.378057,0.28098,0.116433][3.40048,-0.011992,-0.634383][0.753889,0.208722,-0.622966][0.342019,0.267525,0.119046][2.99023,0.254745,-0.554757][0.43229,0.580119,-0.690353][0.367963,0.254776,-0.0188441][2.99023,0.254745,-0.554757][0.43229,0.580119,-0.690353][0.367963,0.254776,-0.0188441][2.89174,0.689956,-0.0244017][0.390808,0.885913,-0.249856][0.403852,0.291035,-0.0125361][3.22374,0.512052,-0.259601][0.14182,0.726021,-0.67289][0.378057,0.28098,0.116433][-2.72877,-3.13298,-2.07522][0.232899,0.134511,-0.963154][0.198774,0.334894,-0.0904668][-2.81189,-4.07398,-1.71164][0.118189,-0.227387,-0.966606][0.175862,0.288926,0.00151819][-3.00612,-4.68904,-0.771735][-0.988328,-0.103369,-0.111905][0.123817,0.262462,0.216448][3.05053,-0.957892,-0.668238][0.854494,-0.218667,-0.471195][0.273659,0.249297,-0.10684][3.05796,-0.544332,-0.881247][0.428498,-0.276704,-0.86013][0.308898,0.238803,-0.068413][3.08873,-0.0790543,-0.653874][0.457085,0.162641,-0.874426][0.341843,0.250542,-0.0112353][3.08873,-0.0790543,-0.653874][0.457085,0.162641,-0.874426][0.341843,0.250542,-0.0112353][3.213,-0.732774,-0.446893][0.64408,-0.40271,-0.650373][0.294441,0.26963,-0.019301][3.05053,-0.957892,-0.668238][0.854494,-0.218667,-0.471195][0.273659,0.249297,-0.10684][-3.30946,0.257023,0.938119][-0.695291,-0.189751,-0.693228][0.361209,0.270314,0.116359][-3.41821,-0.0169562,1.11035][-0.74381,0.187013,0.641696][0.342019,0.267525,0.119046][-3.27128,0.554777,0.807179][-0.603209,0.67702,0.421644][0.376589,0.282556,0.118374][-3.27128,0.554777,0.807179][-0.603209,0.67702,0.421644][0.376589,0.282556,0.118374][-3.20873,0.627159,0.487315][-0.770805,-0.582174,-0.258716][0.389391,0.297687,0.116547][-3.30946,0.257023,0.938119][-0.695291,-0.189751,-0.693228][0.361209,0.270314,0.116359][-3.28333,-1.01771,0.341222][-0.676396,-0.720153,0.154493][0.274765,0.317457,-0.0210752][-3.23073,-0.709523,0.930197][-0.633251,-0.40604,0.658881][0.294441,0.26963,-0.019301][-3.61113,-0.9397,0.333965][-0.880883,-0.465461,0.0859727][0.292504,0.317151,0.11675][2.9351,-1.73018,-1.41566][-0.0967559,0.764942,-0.63679][0.172697,0.408723,-0.202553][3.17341,-1.87193,0.0839391][-0.949987,0.311955,-0.0144509][0.0945582,0.40817,-0.48595][3.19298,-2.80708,-0.118732][0.995024,-0.0352288,-0.0931991][0.100444,0.357683,-0.50923][3.19298,-2.80708,-0.118732][0.995024,-0.0352288,-0.0931991][0.100444,0.357683,-0.50923][2.88074,-2.55944,-1.58775][-0.191417,-0.432908,-0.880881][0.177833,0.365666,-0.13791][2.9351,-1.73018,-1.41566][-0.0967559,0.764942,-0.63679][0.172697,0.408723,-0.202553][2.9351,-1.73018,-1.41566][-0.0967559,0.764942,-0.63679][0.144489,0.384176,-0.202553][2.88074,-2.55944,-1.58775][-0.191417,-0.432908,-0.880881][0.147698,0.352599,-0.13791][3.17341,-1.87193,0.0839391][-0.949987,0.311955,-0.0144509][0.0962978,0.383773,-0.48595][-3.07569,-0.528458,1.34755][-0.435698,-0.273054,0.857676][0.308898,0.238803,-0.068413][-2.85028,-0.114796,1.37717][-0.575412,0.289431,0.764938][0.341832,0.223502,-0.119046][-3.10646,-0.0813934,1.12908][-0.446552,0.165432,0.879331][0.341843,0.250542,-0.0112353][-3.30274,0.125354,-0.47545][-0.771829,-0.0259282,0.635301][0.361406,0.363746,0.117026][-3.25642,0.440587,-0.397948][-0.575771,0.594901,-0.560874][0.377303,0.352428,0.115127][-3.39719,-0.178446,-0.593959][-0.677158,0.0953606,-0.729632][0.342074,0.367135,0.114454][-3.39719,-0.178446,-0.593959][-0.677158,0.0953606,-0.729632][0.342074,0.367135,0.114454][-3.44241,-0.452638,-0.423437][-0.702016,0.462362,0.541659][0.32285,0.363912,0.117036][-3.30274,0.125354,-0.47545][-0.771829,-0.0259282,0.635301][0.361406,0.363746,0.117026][5.08448,4.09996,0.794959][-0.0115925,0.0574563,0.998281][0.842916,0.194804,0.018781][5.28062,4.5742,0.570967][0.995357,-0.0798035,0.0538043][0.86966,0.159523,0.0187788][5.49387,5.75963,0.641661][0.332565,0.941298,0.0579487][0.935721,0.16096,0.00736807][4.96776,4.62079,0.430886][-0.706348,0.258944,-0.658802][0.870338,0.108648,0.0132663][4.91408,4.61884,0.573628][-0.946949,0.247441,0.205086][0.870908,0.0840487,0.00971874][5.09248,5.10302,0.602503][-0.869323,0.486016,0.0898156][0.898873,0.10316,0.00855463][-5.08448,4.13274,0.242239][0.0113769,0.17485,-0.984529][0.842916,0.194804,0.018781][-5.28062,4.57718,0.520714][-0.995358,-0.072884,-0.0628592][0.869649,0.15954,0.0187711][-5.49387,5.76265,0.590625][-0.332564,0.94155,0.0537093][0.936352,0.164008,0.00737162][-4.96776,4.60689,0.665319][0.70635,0.179262,0.684788][0.870346,0.108711,0.0132825][-4.91408,4.62182,0.523347][0.946949,0.269945,-0.174404][0.870908,0.0840487,0.00971874][-5.09248,5.10602,0.551902][0.869323,0.493224,-0.0317421][0.898871,0.103342,0.00857268][4.91408,4.61884,0.573628][-0.946949,0.247441,0.205086][0.869594,0.234832,0.00969973][4.92272,4.09457,0.720749][-0.744978,-0.0197103,0.666798][0.842896,0.217857,0.0151668][5.09248,5.10302,0.602503][-0.869323,0.486016,0.0898156][0.897679,0.218378,0.00852809][-4.91408,4.62182,0.523347][0.946949,0.269945,-0.174404][0.869594,0.234832,0.00969973][-4.92272,4.11862,0.315293][0.744978,0.0592387,-0.664453][0.842896,0.217857,0.0151668][-5.09248,5.10602,0.551902][0.869323,0.493224,-0.0317421][0.897707,0.218508,0.00852][4.78884,-0.332022,0.254717][0.572386,-0.818478,-0.049681][0.605047,0.14937,0.0207236][4.70805,-0.120933,-0.230812][0.4541,-0.549953,-0.70096][0.605397,0.116359,0.0198825][5.45867,0.659082,-0.108715][0.658249,-0.323399,-0.679795][0.658453,0.121065,0.0257743][5.45867,0.659082,-0.108715][0.658249,-0.323399,-0.679795][0.658453,0.121065,0.0257743][5.58324,0.529146,0.310602][0.8505,-0.524981,-0.0323151][0.65814,0.151351,0.0273196][4.78884,-0.332022,0.254717][0.572386,-0.818478,-0.049681][0.605047,0.14937,0.0207236][5.45858,0.611222,0.74239][0.653775,-0.408449,0.636983][0.657892,0.18174,0.0259767][5.15739,0.867616,0.933712][0.105552,0.0027505,0.99441][0.657712,0.213462,0.0221678][4.513,0.245758,0.993617][0.1216,-0.0607661,0.990717][0.604596,0.216351,0.0178264][4.513,0.245758,0.993617][0.1216,-0.0607661,0.990717][0.604596,0.216351,0.0178264][4.70805,-0.180133,0.761892][0.450012,-0.633642,0.629275][0.604781,0.182592,0.0200284][5.45858,0.611222,0.74239][0.653775,-0.408449,0.636983][0.657892,0.18174,0.0259767][-4.78884,-0.332032,0.254862][-0.576482,-0.815709,-0.0478325][0.605047,0.14937,0.0207236][-4.70805,-0.179809,0.761937][-0.458004,-0.625932,0.631223][0.605397,0.116359,0.0198825][-5.45867,0.609169,0.732889][-0.658249,-0.40148,0.636806][0.658453,0.121065,0.0257743][-5.45867,0.609169,0.732889][-0.658249,-0.40148,0.636806][0.658453,0.121065,0.0257743][-5.58324,0.529704,0.301153][-0.850697,-0.524744,-0.0309695][0.65814,0.151351,0.0273196][-4.78884,-0.332032,0.254862][-0.576482,-0.815709,-0.0478325][0.605047,0.14937,0.0207236][-5.45647,0.661512,-0.118469][-0.652749,-0.328941,-0.682435][0.657892,0.18174,0.0259767][-5.14472,0.935087,-0.280961][-0.100674,0.123366,-0.987241][0.657712,0.213462,0.0221678][-4.513,0.32903,-0.410569][-0.119842,0.056547,-0.991181][0.604596,0.216351,0.0178264][-4.513,0.32903,-0.410569][-0.119842,0.056547,-0.991181][0.604596,0.216351,0.0178264][-4.70805,-0.121264,-0.230806][-0.451936,-0.55278,-0.700134][0.604781,0.182592,0.0200284][-5.45647,0.661512,-0.118469][-0.652749,-0.328941,-0.682435][0.657892,0.18174,0.0259767][-3.54412,-0.750179,-0.290791][-0.811331,-0.352333,-0.46648][0.306915,0.352444,0.115127][-3.5024,-0.68219,-0.235555][-0.892802,0.423861,0.15247][0.306301,0.35318,0.116962][-3.44241,-0.452638,-0.423437][-0.702016,0.462362,0.541659][0.32285,0.363912,0.117036][-3.44241,-0.452638,-0.423437][-0.702016,0.462362,0.541659][0.32285,0.363912,0.117036][-3.39719,-0.178446,-0.593959][-0.677158,0.0953606,-0.729632][0.342074,0.367135,0.114454][-3.54412,-0.750179,-0.290791][-0.811331,-0.352333,-0.46648][0.306915,0.352444,0.115127][-3.26759,-0.983996,0.00439465][-0.685599,-0.658438,-0.310506][0.27996,0.343354,-0.0203513][-3.28333,-1.01771,0.341222][-0.676396,-0.720153,0.154493][0.274765,0.317457,-0.0210752][-3.61113,-0.9397,0.333965][-0.880883,-0.465461,0.0859727][0.292504,0.317151,0.11675][-3.61113,-0.9397,0.333965][-0.880883,-0.465461,0.0859727][0.292504,0.317151,0.11675][-3.54412,-0.750179,-0.290791][-0.811331,-0.352333,-0.46648][0.306915,0.352444,0.115127][-3.26759,-0.983996,0.00439465][-0.685599,-0.658438,-0.310506][0.27996,0.343354,-0.0203513][-3.26235,-1.87166,0.0793811][-0.768366,0.637356,0.0582235][0.0939961,0.405381,0.5][-2.96659,-3.05885,1.42943][0.0667029,-0.97572,0.208615][0.0190287,0.354144,0.172703][-2.93819,-2.01491,1.61484][0.144946,0.485897,0.861914][0.0141943,0.407744,0.141281][-3.14402,-2.80509,-0.114077][0.997861,0.0532763,0.0378728][0.0979276,0.348572,0.369049][-3.19334,-1.87193,0.0839393][0.646201,0.760689,0.0614526][0.0941477,0.385296,0.423624][-2.93819,-2.01491,1.61484][0.144946,0.485897,0.861914][0.0450481,0.384961,0.141281][-2.93819,-2.01491,1.61484][0.144946,0.485897,0.861914][0.0450481,0.384961,0.141281][-2.96659,-3.05885,1.42943][0.0667029,-0.97572,0.208615][0.0480412,0.345663,0.172703][-3.14402,-2.80509,-0.114077][0.997861,0.0532763,0.0378728][0.0979276,0.348572,0.369049][-3.20426,0.744297,0.182423][-0.543972,0.835235,-0.0804739][0.392751,0.316798,0.11675][-3.20594,0.57262,-0.0982037][-0.797861,-0.501689,0.334254][0.388781,0.336288,0.116823][-3.20873,0.627159,0.487315][-0.770805,-0.582174,-0.258716][0.389391,0.297687,0.116547][-3.20873,0.627159,0.487315][-0.770805,-0.582174,-0.258716][0.389391,0.297687,0.116547][-3.27128,0.554777,0.807179][-0.603209,0.67702,0.421644][0.376589,0.282556,0.118374][-3.20426,0.744297,0.182423][-0.543972,0.835235,-0.0804739][0.392751,0.316798,0.11675][3.17341,-1.87193,0.0839391][1,0,0][0.0945582,0.40817,-0.48595][2.91827,-2.01491,1.61484][1,0,0][0.014796,0.407695,-0.182536][2.94666,-3.05885,1.42943][1,0,0][0.0196481,0.35363,-0.216302][2.94666,-3.05885,1.42943][1,0,0][0.0499911,0.343974,-0.216302][2.91827,-2.01491,1.61484][1,0,0][0.0469917,0.383426,-0.182536][3.17341,-1.87193,0.0839391][1,0,0][0.0962978,0.383773,-0.48595][-3.31712,-0.763877,0.824807][-0.323359,-0.698736,0.638128][0.47492,0.105588,0.00750809][-4.78884,-0.332032,0.254862][-0.576482,-0.815709,-0.0478325][0.605047,0.14937,0.0207236][-3.35827,-0.969482,0.218615][-0.407536,-0.911034,-0.0627004][0.474664,0.14414,0.0075057][3.29852,-0.682979,-0.359188][0.313696,-0.61902,-0.720007][0.474807,0.105132,0.00737042][4.78884,-0.332022,0.254717][0.572386,-0.818478,-0.049681][0.605047,0.14937,0.0207236][3.34387,-0.958757,0.218155][0.398485,-0.915787,-0.0504421][0.474583,0.144293,0.00740781][2.68608,0.865562,0.794139][0.81474,0.529328,0.236664][0.433456,0.354032,-0.0694444][2.70616,0.533254,1.14925][0.771043,0.461343,0.438925][0.409625,0.385123,-0.0879813][2.99023,0.0974257,1.10833][0.466357,0.324172,0.823058][0.368001,0.379352,-0.015287][2.99023,0.0974257,1.10833][0.466357,0.324172,0.823058][0.368001,0.379352,-0.015287][2.87618,0.624817,0.664502][0.480649,0.793519,0.373234][0.404492,0.342951,-0.0172494][2.68608,0.865562,0.794139][0.81474,0.529328,0.236664][0.433456,0.354032,-0.0694444][-2.68411,0.826246,-0.262255][-0.772205,0.565632,-0.289413][0.433456,0.354032,-0.0694444][-2.689,0.506946,-0.603461][-0.716982,0.500547,-0.48517][0.409625,0.385123,-0.0879813][-3.00796,0.0881785,-0.564143][-0.443639,0.33727,-0.830322][0.368001,0.379352,-0.015287][-3.00796,0.0881785,-0.564143][-0.443639,0.33727,-0.830322][0.368001,0.379352,-0.015287][-2.89391,0.594925,-0.137692][-0.446947,0.804286,-0.391615][0.404492,0.342951,-0.0172494][-2.68411,0.826246,-0.262255][-0.772205,0.565632,-0.289413][0.433456,0.354032,-0.0694444][-2.95502,-1.73018,-1.41566][0.126119,0.633823,-0.763127][0.142248,0.385687,0.159909][-3.19334,-1.87193,0.0839393][0.646201,0.760689,0.0614526][0.0941477,0.385296,0.423624][-3.14402,-2.80509,-0.114077][0.997861,0.0532763,0.0378728][0.0979276,0.348572,0.369049][-3.14402,-2.80509,-0.114077][0.997861,0.0532763,0.0378728][0.0979276,0.348572,0.369049][-2.90067,-2.55944,-1.58775][0.0454891,0.772366,-0.633546][0.145415,0.35439,0.0997553][-2.95502,-1.73018,-1.41566][0.126119,0.633823,-0.763127][0.142248,0.385687,0.159909][-3.26235,-1.87166,0.0793811][-0.768366,0.637356,0.0582235][0.0939961,0.405381,0.5][-2.95502,-1.73018,-1.41566][0.126119,0.633823,-0.763127][0.171191,0.408735,0.159909][-2.90067,-2.55944,-1.58775][0.0454891,0.772366,-0.633546][0.176305,0.366047,0.0997553][-5.51132,1.62023,0.857095][-0.090717,0.0447077,0.994873][0.711785,0.0969971,0.0239803][-5.82766,1.54958,0.705468][-0.756555,-0.0962793,0.646804][0.711428,0.126118,0.0283872][-5.45867,0.609169,0.732889][-0.658249,-0.40148,0.636806][0.658453,0.121065,0.0257743][-5.45867,0.609169,0.732889][-0.658249,-0.40148,0.636806][0.658453,0.121065,0.0257743][-5.15793,0.851207,0.924052][-0.121985,0.0107069,0.992474][0.658844,0.0895022,0.0219155][-5.51132,1.62023,0.857095][-0.090717,0.0447077,0.994873][0.711785,0.0969971,0.0239803][-3.31712,-0.763877,0.824807][-0.323359,-0.698736,0.638128][0.47492,0.105588,0.00750809][-3.19644,-0.200447,1.10503][-0.109158,-0.0594046,0.992248][0.474936,0.0693703,0.00729461][-4.513,0.246234,0.993381][-0.133641,-0.0513295,0.9897][0.605823,0.0830497,0.0176432][-4.513,0.246234,0.993381][-0.133641,-0.0513295,0.9897][0.605823,0.0830497,0.0176432][-4.70805,-0.179809,0.761937][-0.458004,-0.625932,0.631223][0.605397,0.116359,0.0198825][-3.31712,-0.763877,0.824807][-0.323359,-0.698736,0.638128][0.47492,0.105588,0.00750809][5.51132,1.67774,-0.112549][0.0907156,0.161982,-0.982615][0.711785,0.0969971,0.0239803][5.82766,1.58966,0.0296642][0.756554,-0.0191559,-0.65365][0.711428,0.126118,0.0283872][5.45867,0.659082,-0.108715][0.658249,-0.323399,-0.679795][0.658453,0.121065,0.0257743][5.45867,0.659082,-0.108715][0.658249,-0.323399,-0.679795][0.658453,0.121065,0.0257743][5.15793,0.922018,-0.269931][0.121984,0.127936,-0.984252][0.658844,0.0895022,0.0219155][5.51132,1.67774,-0.112549][0.0907156,0.161982,-0.982615][0.711785,0.0969971,0.0239803][3.29852,-0.682979,-0.359188][0.313696,-0.61902,-0.720007][0.474807,0.105132,0.00737042][3.17802,-0.0900232,-0.569958][0.104526,0.0601351,-0.992702][0.474815,0.0686146,0.00715622][4.513,0.32948,-0.410278][0.132654,0.064108,-0.989087][0.605823,0.0830497,0.0176432][4.513,0.32948,-0.410278][0.132654,0.064108,-0.989087][0.605823,0.0830497,0.0176432][4.70805,-0.120933,-0.230812][0.4541,-0.549953,-0.70096][0.605397,0.116359,0.0198825][3.29852,-0.682979,-0.359188][0.313696,-0.61902,-0.720007][0.474807,0.105132,0.00737042][-3.27128,0.554777,0.807179][-0.603209,0.67702,0.421644][0.376589,0.282556,0.118374][-3.41821,-0.0169562,1.11035][-0.74381,0.187013,0.641696][0.342019,0.267525,0.119046][-3.00796,0.23934,1.03384][-0.365278,0.562204,0.741956][0.367963,0.254776,-0.0188441][-3.00796,0.23934,1.03384][-0.365278,0.562204,0.741956][0.367963,0.254776,-0.0188441][-2.90947,0.657514,0.524244][-0.368972,0.896339,0.245838][0.403852,0.291035,-0.0125361][-3.27128,0.554777,0.807179][-0.603209,0.67702,0.421644][0.376589,0.282556,0.118374][-5.49811,1.6923,-0.147658][-0.0732751,0.155547,-0.985107][0.710747,0.209705,0.0242248][-5.19278,1.75221,0.00507081][0.664062,0.296416,-0.68641][0.710679,0.243952,0.0183825][-4.85499,1.16638,-0.0886952][0.49405,0.558526,-0.666306][0.657636,0.24888,0.0169635][-4.85499,1.16638,-0.0886952][0.49405,0.558526,-0.666306][0.657636,0.24888,0.0169635][-5.14472,0.935087,-0.280961][-0.100674,0.123366,-0.987241][0.657712,0.213462,0.0221678][-5.49811,1.6923,-0.147658][-0.0732751,0.155547,-0.985107][0.710747,0.209705,0.0242248][5.51078,1.63528,0.890842][0.0836786,0.0357453,0.995851][0.710747,0.209705,0.0242248][5.19489,1.70887,0.748628][-0.655984,0.210679,0.724775][0.710679,0.243952,0.0183825][4.85711,1.11607,0.772496][-0.489412,0.474004,0.731981][0.657636,0.24888,0.0169635][4.85711,1.11607,0.772496][-0.489412,0.474004,0.731981][0.657636,0.24888,0.0169635][5.15739,0.867616,0.933712][0.105552,0.0027505,0.99441][0.657712,0.213462,0.0221678][5.51078,1.63528,0.890842][0.0836786,0.0357453,0.995851][0.710747,0.209705,0.0242248][-5.82576,2.63611,0.406242][-0.975425,0.220034,0.0114066][0.764064,0.15536,0.0288229][-5.72089,2.60162,0.689159][-0.695908,0.15246,0.701761][0.76431,0.131677,0.0273909][-5.09735,4.58763,0.723355][-0.00905644,0.0563556,0.99837][0.870054,0.12844,0.0162832][-5.09735,4.58763,0.723355][-0.00905644,0.0563556,0.99837][0.870054,0.12844,0.0162832][-5.31324,4.13174,0.494445][-0.970718,0.240211,-0.00210943][0.843277,0.158478,0.0219367][-5.82576,2.63611,0.406242][-0.975425,0.220034,0.0114066][0.764064,0.15536,0.0288229][-5.22694,4.57532,0.663458][-0.67244,-0.136762,0.727406][0.869827,0.144452,0.0181136][-5.09735,4.58763,0.723355][-0.00905644,0.0563556,0.99837][0.870054,0.12844,0.0162832][-5.49387,5.76265,0.590625][-0.332564,0.94155,0.0537093][0.936352,0.164008,0.00737162][5.82576,2.63321,0.455214][0.975344,0.220216,0.014429][0.764064,0.15536,0.0288229][5.72089,2.6324,0.170204][0.695908,0.234336,-0.678822][0.76431,0.131677,0.0273909][5.09735,4.60853,0.37098][0.00905765,0.173962,-0.984711][0.870022,0.128045,0.0161937][5.09735,4.60853,0.37098][0.00905765,0.173962,-0.984711][0.870022,0.128045,0.0161937][5.31324,4.12878,0.544404][0.970718,0.238279,0.03049][0.84328,0.158473,0.0219386][5.82576,2.63321,0.455214][0.975344,0.220216,0.014429][0.764064,0.15536,0.0288229][5.22694,4.58923,0.429004][0.672442,-0.0498288,-0.73847][0.869884,0.144287,0.0181435][5.09735,4.60853,0.37098][0.00905765,0.173962,-0.984711][0.870022,0.128045,0.0161937][5.49387,5.75963,0.641661][0.332565,0.941298,0.0579487][0.935721,0.16096,0.00736807][2.87122,-0.311092,1.4116][0.845779,0.196598,0.49599][0.342481,0.412437,-0.0966456][3.00976,-0.744666,1.23792][0.865556,-0.10341,0.49002][0.306243,0.40387,-0.0830313][3.14824,-0.583226,1.04707][0.599233,-0.274659,0.751986][0.316602,0.379355,-0.015287][-2.88895,-0.304347,-0.855549][-0.835969,0.202394,-0.51009][0.342481,0.412437,-0.0966456][-3.02749,-0.72095,-0.688661][-0.856606,-0.105927,-0.50498][0.306243,0.40387,-0.0830313][-3.16597,-0.565829,-0.505289][-0.584404,-0.277704,-0.762464][0.316602,0.379355,-0.015287][-2.79347,-5.73659,-1.0995][-0.651596,-0.75854,-0.00630638][0.135463,0.209272,-0.01887][-2.67127,-4.97235,-1.88991][0.140971,0.358752,-0.922726][0.180983,0.242717,-0.154096][-2.35869,-5.76265,-2.44908][0.320356,-0.312419,-0.894297][0.206163,0.200287,-0.500001][-2.35869,-5.76265,-2.44908][0.320356,-0.312419,-0.894297][0.1639,0.232863,-0.500001][-2.67127,-4.97235,-1.88991][0.140971,0.358752,-0.922726][0.148311,0.263971,-0.154096][-2.72446,-5.73674,-1.09491][0.684082,-0.684028,0.253256][0.120893,0.238215,-0.0952359][2.87618,0.624817,0.664502][0.480649,0.793519,0.373234][0.404492,0.342951,-0.0172494][2.89174,0.689956,-0.0244017][0.390808,0.885913,-0.249856][0.403852,0.291035,-0.0125361][2.65881,0.922593,-0.101893][0.759498,0.632491,-0.152045][0.431927,0.281322,-0.0847342][2.65881,0.922593,-0.101893][0.759498,0.632491,-0.152045][0.431927,0.281322,-0.0847342][2.66916,0.972622,0.354801][0.869183,0.493782,-0.0264615][0.438967,0.3178,-0.0711285][2.87618,0.624817,0.664502][0.480649,0.793519,0.373234][0.404492,0.342951,-0.0172494][2.89174,0.689956,-0.0244017][0.390808,0.885913,-0.249856][0.403852,0.291035,-0.0125361][2.99023,0.254745,-0.554757][0.43229,0.580119,-0.690353][0.367963,0.254776,-0.0188441][2.73576,0.319957,-0.797141][0.703337,0.46054,-0.541498][0.378338,0.229624,-0.116671][2.73576,0.319957,-0.797141][0.703337,0.46054,-0.541498][0.378338,0.229624,-0.116671][2.68472,0.672677,-0.506389][0.804207,0.471154,-0.362304][0.408968,0.250511,-0.101615][2.89174,0.689956,-0.0244017][0.390808,0.885913,-0.249856][0.403852,0.291035,-0.0125361][3.05796,-0.544332,-0.881247][0.428498,-0.276704,-0.86013][0.308898,0.238803,-0.068413][2.83255,-0.113818,-0.912072][0.591541,0.285909,-0.75388][0.341832,0.223502,-0.119046][3.08873,-0.0790543,-0.653874][0.457085,0.162641,-0.874426][0.341843,0.250542,-0.0112353][3.28751,-0.75581,0.823869][0.311789,-0.697337,0.645375][0.474126,0.184079,0.00741243][3.34387,-0.958757,0.218155][0.398485,-0.915787,-0.0504421][0.474583,0.144293,0.00740781][4.78884,-0.332022,0.254717][0.572386,-0.818478,-0.049681][0.605047,0.14937,0.0207236][4.78884,-0.332022,0.254717][0.572386,-0.818478,-0.049681][0.605047,0.14937,0.0207236][4.70805,-0.180133,0.761892][0.450012,-0.633642,0.629275][0.604781,0.182592,0.0200284][3.28751,-0.75581,0.823869][0.311789,-0.697337,0.645375][0.474126,0.184079,0.00741243][5.58324,0.529146,0.310602][0.8505,-0.524981,-0.0323151][0.65814,0.151351,0.0273196][5.45858,0.611222,0.74239][0.653775,-0.408449,0.636983][0.657892,0.18174,0.0259767][4.70805,-0.180133,0.761892][0.450012,-0.633642,0.629275][0.604781,0.182592,0.0200284][4.70805,-0.180133,0.761892][0.450012,-0.633642,0.629275][0.604781,0.182592,0.0200284][4.78884,-0.332022,0.254717][0.572386,-0.818478,-0.049681][0.605047,0.14937,0.0207236][5.58324,0.529146,0.310602][0.8505,-0.524981,-0.0323151][0.65814,0.151351,0.0273196][-2.89391,0.594925,-0.137692][-0.446947,0.804286,-0.391615][0.404492,0.342951,-0.0172494][-2.90947,0.657514,0.524244][-0.368972,0.896339,0.245838][0.403852,0.291035,-0.0125361][-2.67654,0.881044,0.598703][-0.747017,0.646356,0.155528][0.431927,0.281322,-0.0847342][-2.67654,0.881044,0.598703][-0.747017,0.646356,0.155528][0.431927,0.281322,-0.0847342][-2.68689,0.929116,0.159885][-0.855881,0.51696,0.0148488][0.438967,0.3178,-0.0711285][-2.89391,0.594925,-0.137692][-0.446947,0.804286,-0.391615][0.404492,0.342951,-0.0172494][-3.29577,-0.696823,-0.35845][-0.316459,-0.612137,-0.724667][0.47417,0.18345,0.00746164][-3.35827,-0.969482,0.218615][-0.407536,-0.911034,-0.0627004][0.474664,0.14414,0.0075057][-4.78884,-0.332032,0.254862][-0.576482,-0.815709,-0.0478325][0.605047,0.14937,0.0207236][-4.78884,-0.332032,0.254862][-0.576482,-0.815709,-0.0478325][0.605047,0.14937,0.0207236][-4.70805,-0.121264,-0.230806][-0.451936,-0.55278,-0.700134][0.604781,0.182592,0.0200284][-3.29577,-0.696823,-0.35845][-0.316459,-0.612137,-0.724667][0.47417,0.18345,0.00746164][-5.58324,0.529704,0.301153][-0.850697,-0.524744,-0.0309695][0.65814,0.151351,0.0273196][-5.45647,0.661512,-0.118469][-0.652749,-0.328941,-0.682435][0.657892,0.18174,0.0259767][-4.70805,-0.121264,-0.230806][-0.451936,-0.55278,-0.700134][0.604781,0.182592,0.0200284][-4.70805,-0.121264,-0.230806][-0.451936,-0.55278,-0.700134][0.604781,0.182592,0.0200284][-4.78884,-0.332032,0.254862][-0.576482,-0.815709,-0.0478325][0.605047,0.14937,0.0207236][-5.58324,0.529704,0.301153][-0.850697,-0.524744,-0.0309695][0.65814,0.151351,0.0273196][2.65134,-4.97235,-1.8899][-0.14145,0.400178,-0.905455][0.182515,0.241267,0.134888][2.77354,-5.73659,-1.0995][0.650601,-0.759398,-0.00573382][0.136071,0.208681,-0.010432][2.33876,-5.76265,-2.44908][-0.320354,-0.312441,-0.894289][0.207832,0.198474,0.506608][2.70453,-5.73675,-1.09491][-0.685573,-0.682636,0.252977][0.123132,0.236119,0.0716335][2.65134,-4.97235,-1.8899][-0.14145,0.400178,-0.905455][0.150623,0.261369,0.134888][2.33876,-5.76265,-2.44908][-0.320354,-0.312441,-0.894289][0.166439,0.229986,0.506608][-4.8572,1.11404,0.762663][0.471563,0.478946,0.740431][0.659369,0.0538543,0.0167634][-5.15793,0.851207,0.924052][-0.121985,0.0107069,0.992474][0.658844,0.0895022,0.0219155][-4.513,0.246234,0.993381][-0.133641,-0.0513295,0.9897][0.605823,0.0830497,0.0176432][-4.513,0.246234,0.993381][-0.133641,-0.0513295,0.9897][0.605823,0.0830497,0.0176432][-4.31794,0.696529,0.813618][0.229942,0.604654,0.762575][0.606356,0.0478364,0.0141253][-4.8572,1.11404,0.762663][0.471563,0.478946,0.740431][0.659369,0.0538543,0.0167634][4.85719,1.16393,-0.0786076][-0.471564,0.563104,-0.678632][0.659369,0.0538543,0.0167634][5.15793,0.922018,-0.269931][0.121984,0.127936,-0.984252][0.658844,0.0895022,0.0219155][4.513,0.32948,-0.410278][0.132654,0.064108,-0.989087][0.605823,0.0830497,0.0176432][4.513,0.32948,-0.410278][0.132654,0.064108,-0.989087][0.605823,0.0830497,0.0176432][4.31794,0.755371,-0.178552][-0.227038,0.690725,-0.686551][0.60546,0.0478285,0.0141253][4.85719,1.16393,-0.0786076][-0.471564,0.563104,-0.678632][0.659369,0.0538543,0.0167634][-3.55898,-0.635989,0.914336][-0.842494,-0.23509,0.484703][0.307049,0.282014,0.118373][-3.50755,-0.581415,0.846344][-0.851557,0.431448,-0.297831][0.306015,0.28121,0.116452][-3.54593,-0.768236,0.612886][-0.570706,0.747647,-0.339586][0.295121,0.29777,0.116571][-3.54593,-0.768236,0.612886][-0.570706,0.747647,-0.339586][0.295121,0.29777,0.116571][-3.61113,-0.9397,0.333965][-0.880883,-0.465461,0.0859727][0.292504,0.317151,0.11675][-3.55898,-0.635989,0.914336][-0.842494,-0.23509,0.484703][0.307049,0.282014,0.118373][-3.61113,-0.9397,0.333965][-0.880883,-0.465461,0.0859727][0.292504,0.317151,0.11675][-3.55843,-0.85299,0.325299][-0.85567,0.51494,-0.0516253][0.291056,0.317253,0.116711][-3.54314,-0.822775,0.0273661][-0.617644,0.768449,0.167339][0.29504,0.336819,0.116848][-3.54314,-0.822775,0.0273661][-0.617644,0.768449,0.167339][0.29504,0.336819,0.116848][-3.54412,-0.750179,-0.290791][-0.811331,-0.352333,-0.46648][0.306915,0.352444,0.115127][-3.61113,-0.9397,0.333965][-0.880883,-0.465461,0.0859727][0.292504,0.317151,0.11675][-3.25642,0.440587,-0.397948][-0.575771,0.594901,-0.560874][0.377303,0.352428,0.115127][-3.30274,0.125354,-0.47545][-0.771829,-0.0259282,0.635301][0.361406,0.363746,0.117026][-3.20594,0.57262,-0.0982037][-0.797861,-0.501689,0.334254][0.388781,0.336288,0.116823][-3.20594,0.57262,-0.0982037][-0.797861,-0.501689,0.334254][0.388781,0.336288,0.116823][-3.20426,0.744297,0.182423][-0.543972,0.835235,-0.0804739][0.392751,0.316798,0.11675][-3.25642,0.440587,-0.397948][-0.575771,0.594901,-0.560874][0.377303,0.352428,0.115127][4.85572,4.10112,0.542754][-0.999709,-0.0240643,-0.00140045][0.844646,0.0675734,0.0109381][4.92272,4.11577,0.365243][-0.749749,0.0546872,-0.659459][0.844081,0.0988727,0.015113][5.21454,2.54673,0.165095][-0.852107,-0.0319907,-0.522389][0.765147,0.0739738,0.0182901][5.21454,2.54673,0.165095][-0.852107,-0.0319907,-0.522389][0.765147,0.0739738,0.0182901][5.10967,2.51205,0.447989][-0.998913,-0.0465508,-0.00226598][0.766042,0.030472,0.0124368][4.85572,4.10112,0.542754][-0.999709,-0.0240643,-0.00140045][0.844646,0.0675734,0.0109381][5.06395,1.75999,0.395836][-0.950222,0.311147,0.0163032][0.71309,0.0171664,0.012067][5.19498,1.74829,0.0391242][-0.648737,0.305231,-0.697119][0.712309,0.062217,0.0182116][4.85719,1.16393,-0.0786076][-0.471564,0.563104,-0.678632][0.659369,0.0538543,0.0167634][4.85719,1.16393,-0.0786076][-0.471564,0.563104,-0.678632][0.659369,0.0538543,0.0167634][4.73263,1.24311,0.35318][-0.717514,0.695719,0.0338867][0.660113,0.0109538,0.0109937][5.06395,1.75999,0.395836][-0.950222,0.311147,0.0163032][0.71309,0.0171664,0.012067][-4.85572,4.10408,0.492814][0.999709,-0.0240607,-0.00145258][0.844646,0.0675734,0.0109381][-4.92272,4.09765,0.670812][0.749749,-0.0236406,0.6613][0.844083,0.0988885,0.0151171][-5.21454,2.51595,0.684107][0.852107,-0.0935088,0.514947][0.765147,0.0739738,0.0182901][-5.21454,2.51595,0.684107][0.852107,-0.0935088,0.514947][0.765147,0.0739738,0.0182901][-5.10967,2.51495,0.399097][0.998913,-0.0464911,-0.00325174][0.766042,0.030472,0.0124368][-4.85572,4.10408,0.492814][0.999709,-0.0240607,-0.00145258][0.844646,0.0675734,0.0109381][-5.06395,1.76199,0.361995][0.950159,0.310929,0.0228196][0.71309,0.0171664,0.012067][-5.19498,1.70821,0.714823][0.648736,0.220697,0.728309][0.712309,0.062217,0.0182116][-4.8572,1.11404,0.762663][0.471563,0.478946,0.740431][0.659369,0.0538543,0.0167634][-4.8572,1.11404,0.762663][0.471563,0.478946,0.740431][0.659369,0.0538543,0.0167634][-4.73263,1.2437,0.34326][0.717757,0.694504,0.0498875][0.660113,0.0109538,0.0109937][-5.06395,1.76199,0.361995][0.950159,0.310929,0.0228196][0.71309,0.0171664,0.012067][3.00976,-0.744666,1.23792][0.865556,-0.10341,0.49002][0.306243,0.40387,-0.0830313][3.06723,-1.09737,0.987424][0.929476,-0.155596,0.33446][0.274394,0.383914,-0.0950961][3.24986,-1.01843,0.516626][0.678114,-0.655488,0.33241][0.27996,0.343354,-0.0203513][3.24986,-1.01843,0.516626][0.678114,-0.655488,0.33241][0.27996,0.343354,-0.0203513][3.14824,-0.583226,1.04707][0.599233,-0.274659,0.751986][0.316602,0.379355,-0.015287][3.00976,-0.744666,1.23792][0.865556,-0.10341,0.49002][0.306243,0.40387,-0.0830313][3.06723,-1.09737,0.987424][0.929476,-0.155596,0.33446][0.274394,0.383914,-0.0950961][3.11741,-1.31539,0.582935][0.912426,-0.365557,0.183976][0.253515,0.352858,-0.0994169][3.24986,-1.01843,0.516626][0.678114,-0.655488,0.33241][0.27996,0.343354,-0.0203513][-3.02749,-0.72095,-0.688661][-0.856606,-0.105927,-0.50498][0.306243,0.40387,-0.0830313][-3.08496,-1.05985,-0.447974][-0.924265,-0.160997,-0.346141][0.274394,0.383914,-0.0950961][-3.26759,-0.983996,0.00439465][-0.685599,-0.658438,-0.310506][0.27996,0.343354,-0.0203513][-3.26759,-0.983996,0.00439465][-0.685599,-0.658438,-0.310506][0.27996,0.343354,-0.0203513][-3.16597,-0.565829,-0.505289][-0.584404,-0.277704,-0.762464][0.316602,0.379355,-0.015287][-3.02749,-0.72095,-0.688661][-0.856606,-0.105927,-0.50498][0.306243,0.40387,-0.0830313][-3.08496,-1.05985,-0.447974][-0.924265,-0.160997,-0.346141][0.274394,0.383914,-0.0950961][-3.13514,-1.26934,-0.0593187][-0.906125,-0.377791,-0.190295][0.253515,0.352858,-0.0994169][-3.26759,-0.983996,0.00439465][-0.685599,-0.658438,-0.310506][0.27996,0.343354,-0.0203513][-3.10646,-0.0813934,1.12908][-0.446552,0.165432,0.879331][0.341843,0.250542,-0.0112353][-3.00796,0.23934,1.03384][-0.365278,0.562204,0.741956][0.367963,0.254776,-0.0188441][-3.41821,-0.0169562,1.11035][-0.74381,0.187013,0.641696][0.342019,0.267525,0.119046][-3.41821,-0.0169562,1.11035][-0.74381,0.187013,0.641696][0.342019,0.267525,0.119046][-3.55898,-0.635989,0.914336][-0.842494,-0.23509,0.484703][0.307049,0.282014,0.118373][-3.10646,-0.0813934,1.12908][-0.446552,0.165432,0.879331][0.341843,0.250542,-0.0112353][2.94666,-3.05885,1.42943][0.987819,-0.012929,0.155068][0.0196481,0.35363,-0.216302][3.19298,-2.80708,-0.118732][0.987819,-0.012929,0.155068][0.100444,0.357683,-0.50923][3.17341,-1.87193,0.0839391][0.987819,-0.012929,0.155068][0.0945582,0.40817,-0.48595][-3.41821,-0.0169562,1.11035][-0.74381,0.187013,0.641696][0.342019,0.267525,0.119046][-3.30946,0.257023,0.938119][-0.695291,-0.189751,-0.693228][0.361209,0.270314,0.116359][-3.44913,-0.320969,0.990132][-0.605262,0.356245,-0.711862][0.322571,0.270298,0.116369][-3.44913,-0.320969,0.990132][-0.605262,0.356245,-0.711862][0.322571,0.270298,0.116369][-3.55898,-0.635989,0.914336][-0.842494,-0.23509,0.484703][0.307049,0.282014,0.118373][-3.41821,-0.0169562,1.11035][-0.74381,0.187013,0.641696][0.342019,0.267525,0.119046][-3.00612,-4.68904,-0.771735][-0.988328,-0.103369,-0.111905][0.123817,0.262462,0.216448][-2.9078,-5.30345,0.186741][0.0324842,-0.627899,0.777617][0.072791,0.235163,0.107646][-2.98552,-4.12324,1.02355][-0.0331568,0.898722,-0.437263][0.0350987,0.298534,0.193652][-2.9078,-5.30345,0.186741][0.0324842,-0.627899,0.777617][0.072791,0.235163,0.107646][-3.00612,-4.68904,-0.771735][-0.988328,-0.103369,-0.111905][0.123817,0.262462,0.216448][-2.79347,-5.73659,-1.0995][-0.651596,-0.75854,-0.00630638][0.135463,0.209272,-0.01887][2.65134,-4.97235,-1.8899][-0.14145,0.400178,-0.905455][0.150623,0.261369,0.134888][2.91726,-4.68853,-0.767122][-0.988635,0.10191,0.110525][0.114553,0.276892,-0.181344][2.79197,-4.07398,-1.71164][-0.134167,-0.351475,-0.926534][0.14741,0.295551,-0.0323412][-5.14472,0.935087,-0.280961][-0.100674,0.123366,-0.987241][0.657712,0.213462,0.0221678][-5.45647,0.661512,-0.118469][-0.652749,-0.328941,-0.682435][0.657892,0.18174,0.0259767][-5.82546,1.59357,-0.00428489][-0.751034,-0.0262374,-0.659742][0.710918,0.180597,0.0285748][-5.82546,1.59357,-0.00428489][-0.751034,-0.0262374,-0.659742][0.710918,0.180597,0.0285748][-5.49811,1.6923,-0.147658][-0.0732751,0.155547,-0.985107][0.710747,0.209705,0.0242248][-5.14472,0.935087,-0.280961][-0.100674,0.123366,-0.987241][0.657712,0.213462,0.0221678][3.213,-0.732774,-0.446893][0.64408,-0.40271,-0.650373][0.294441,0.26963,-0.019301][3.2656,-1.05351,0.166076][0.686279,-0.711212,-0.152312][0.274765,0.317457,-0.0210752][3.13659,-1.36543,0.126245][0.933169,-0.351825,-0.0735853][0.246896,0.316368,-0.101282][3.13659,-1.36543,0.126245][0.933169,-0.351825,-0.0735853][0.246896,0.316368,-0.101282][3.09878,-1.23991,-0.313101][0.941324,-0.266605,-0.206958][0.253283,0.280009,-0.109587][3.213,-0.732774,-0.446893][0.64408,-0.40271,-0.650373][0.294441,0.26963,-0.019301][-2.72877,-3.13298,-2.07522][0.232899,0.134511,-0.963154][0.159326,0.33155,-0.0904668][-2.90067,-2.55944,-1.58775][0.0454891,0.772366,-0.633546][0.145415,0.35439,0.0997553][-3.14402,-2.80509,-0.114077][0.997861,0.0532763,0.0378728][0.0979276,0.348572,0.369049][5.15739,0.867616,0.933712][0.105552,0.0027505,0.99441][0.657712,0.213462,0.0221678][5.45858,0.611222,0.74239][0.653775,-0.408449,0.636983][0.657892,0.18174,0.0259767][5.82757,1.55024,0.739169][0.754064,-0.104395,0.648451][0.710918,0.180597,0.0285748][5.82757,1.55024,0.739169][0.754064,-0.104395,0.648451][0.710918,0.180597,0.0285748][5.51078,1.63528,0.890842][0.0836786,0.0357453,0.995851][0.710747,0.209705,0.0242248][5.15739,0.867616,0.933712][0.105552,0.0027505,0.99441][0.657712,0.213462,0.0221678][-3.23073,-0.709523,0.930197][-0.633251,-0.40604,0.658881][0.294441,0.26963,-0.019301][-3.28333,-1.01771,0.341222][-0.676396,-0.720153,0.154493][0.274765,0.317457,-0.0210752][-3.15432,-1.31742,0.379494][-0.92823,-0.364121,0.0761861][0.246896,0.316368,-0.101282][-3.15432,-1.31742,0.379494][-0.92823,-0.364121,0.0761861][0.246896,0.316368,-0.101282][-3.11651,-1.19681,0.801642][-0.936851,-0.276195,0.21454][0.253283,0.280009,-0.109587][-3.23073,-0.709523,0.930197][-0.633251,-0.40604,0.658881][0.294441,0.26963,-0.019301][2.70884,-3.13298,-2.07522][-0.0685756,0.900323,-0.429786][0.200426,0.334247,0.0665095][2.88074,-2.55944,-1.58775][-0.191417,-0.432908,-0.880881][0.177833,0.365666,-0.13791][3.19298,-2.80708,-0.118732][0.995024,-0.0352288,-0.0931991][0.100444,0.357683,-0.50923][-5.22694,4.57532,0.663458][-0.67244,-0.136762,0.727406][0.869827,0.144452,0.0181136][-5.28062,4.57718,0.520714][-0.995358,-0.072884,-0.0628592][0.869649,0.15954,0.0187711][-5.31324,4.13174,0.494445][-0.970718,0.240211,-0.00210943][0.843277,0.158478,0.0219367][-5.31324,4.13174,0.494445][-0.970718,0.240211,-0.00210943][0.843277,0.158478,0.0219367][-5.09735,4.58763,0.723355][-0.00905644,0.0563556,0.99837][0.870054,0.12844,0.0162832][-5.22694,4.57532,0.663458][-0.67244,-0.136762,0.727406][0.869827,0.144452,0.0181136][-5.24624,4.13818,0.316446][-0.659918,0.282811,-0.696079][0.843082,0.175901,0.0211341][-5.31324,4.13174,0.494445][-0.970718,0.240211,-0.00210943][0.843277,0.158478,0.0219367][-5.28062,4.57718,0.520714][-0.995358,-0.072884,-0.0628592][0.869649,0.15954,0.0187711][-5.28062,4.57718,0.520714][-0.995358,-0.072884,-0.0628592][0.869649,0.15954,0.0187711][-5.08448,4.13274,0.242239][0.0113769,0.17485,-0.984529][0.842916,0.194804,0.018781][-5.24624,4.13818,0.316446][-0.659918,0.282811,-0.696079][0.843082,0.175901,0.0211341][5.22694,4.58923,0.429004][0.672442,-0.0498288,-0.73847][0.869884,0.144287,0.0181435][5.28062,4.5742,0.570967][0.995357,-0.0798035,0.0538043][0.86966,0.159523,0.0187788][5.31324,4.12878,0.544404][0.970718,0.238279,0.03049][0.84328,0.158473,0.0219386][5.31324,4.12878,0.544404][0.970718,0.238279,0.03049][0.84328,0.158473,0.0219386][5.09735,4.60853,0.37098][0.00905765,0.173962,-0.984711][0.870022,0.128045,0.0161937][5.22694,4.58923,0.429004][0.672442,-0.0498288,-0.73847][0.869884,0.144287,0.0181435][5.24624,4.11413,0.721915][0.660006,0.198885,0.724456][0.843082,0.175901,0.0211341][5.31324,4.12878,0.544404][0.970718,0.238279,0.03049][0.84328,0.158473,0.0219386][5.28062,4.5742,0.570967][0.995357,-0.0798035,0.0538043][0.86966,0.159523,0.0187788][5.28062,4.5742,0.570967][0.995357,-0.0798035,0.0538043][0.86966,0.159523,0.0187788][5.08448,4.09996,0.794959][-0.0115925,0.0574563,0.998281][0.842916,0.194804,0.018781][5.24624,4.11413,0.721915][0.660006,0.198885,0.724456][0.843082,0.175901,0.0211341][5.08448,4.12994,0.292199][-0.137458,0.142606,-0.980188][0.843702,0.122062,0.0187149][5.09735,4.60853,0.37098][0.00905765,0.173962,-0.984711][0.870022,0.128045,0.0161937][5.72089,2.6324,0.170204][0.695908,0.234336,-0.678822][0.76431,0.131677,0.0273909][5.72089,2.6324,0.170204][0.695908,0.234336,-0.678822][0.76431,0.131677,0.0273909][5.51132,1.67774,-0.112549][0.0907156,0.161982,-0.982615][0.711785,0.0969971,0.0239803][5.08448,4.12994,0.292199][-0.137458,0.142606,-0.980188][0.843702,0.122062,0.0187149][-5.08448,4.10309,0.745019][0.137458,0.025754,0.990173][0.84371,0.122161,0.0187372][-5.09735,4.58763,0.723355][-0.00905644,0.0563556,0.99837][0.870054,0.12844,0.0162832][-5.72089,2.60162,0.689159][-0.695908,0.15246,0.701761][0.76431,0.131677,0.0273909][-5.72089,2.60162,0.689159][-0.695908,0.15246,0.701761][0.76431,0.131677,0.0273909][-5.51132,1.62023,0.857095][-0.090717,0.0447077,0.994873][0.711785,0.0969971,0.0239803][-5.08448,4.10309,0.745019][0.137458,0.025754,0.990173][0.84371,0.122161,0.0187372][2.76848,0.1377,1.36609][0.767035,0.295719,0.569392][0.379108,0.405506,-0.0969923][2.87122,-0.311092,1.4116][0.845779,0.196598,0.49599][0.342481,0.412437,-0.0966456][3.14824,-0.583226,1.04707][0.599233,-0.274659,0.751986][0.316602,0.379355,-0.015287][3.14824,-0.583226,1.04707][0.599233,-0.274659,0.751986][0.316602,0.379355,-0.015287][2.99023,0.0974257,1.10833][0.466357,0.324172,0.823058][0.368001,0.379352,-0.015287][2.76848,0.1377,1.36609][0.767035,0.295719,0.569392][0.379108,0.405506,-0.0969923][-2.78622,0.126876,-0.811821][-0.748636,0.332892,-0.573347][0.379108,0.405506,-0.0969923][-2.88895,-0.304347,-0.855549][-0.835969,0.202394,-0.51009][0.342481,0.412437,-0.0966456][-3.16597,-0.565829,-0.505289][-0.584404,-0.277704,-0.762464][0.316602,0.379355,-0.015287][-3.16597,-0.565829,-0.505289][-0.584404,-0.277704,-0.762464][0.316602,0.379355,-0.015287][-3.00796,0.0881785,-0.564143][-0.443639,0.33727,-0.830322][0.368001,0.379352,-0.015287][-2.78622,0.126876,-0.811821][-0.748636,0.332892,-0.573347][0.379108,0.405506,-0.0969923][5.08448,4.09996,0.794959][-0.0115925,0.0574563,0.998281][0.842916,0.194804,0.018781][4.92272,4.09457,0.720749][-0.744978,-0.0197103,0.666798][0.842896,0.217857,0.0151668][5.21454,2.51286,0.732999][-0.800421,-0.0706706,0.595257][0.763665,0.23621,0.0184236][5.21454,2.51286,0.732999][-0.800421,-0.0706706,0.595257][0.763665,0.23621,0.0184236][5.51078,1.63528,0.890842][0.0836786,0.0357453,0.995851][0.710747,0.209705,0.0242248][5.08448,4.09996,0.794959][-0.0115925,0.0574563,0.998281][0.842916,0.194804,0.018781][-5.08448,4.13274,0.242239][0.0113769,0.17485,-0.984529][0.842916,0.194804,0.018781][-4.92272,4.11862,0.315293][0.744978,0.0592387,-0.664453][0.842896,0.217857,0.0151668][-5.21454,2.54944,0.11618][0.811426,-0.00178613,-0.584452][0.763665,0.23621,0.0184236][-5.21454,2.54944,0.11618][0.811426,-0.00178613,-0.584452][0.763665,0.23621,0.0184236][-5.49811,1.6923,-0.147658][-0.0732751,0.155547,-0.985107][0.710747,0.209705,0.0242248][-5.08448,4.13274,0.242239][0.0113769,0.17485,-0.984529][0.842916,0.194804,0.018781][3.42341,-0.32839,-0.50927][0.564338,0.351696,0.746881][0.322571,0.270298,0.116369][3.54125,-0.656244,-0.430386][0.8552,-0.221412,-0.468626][0.307049,0.282014,0.118373][3.40048,-0.011992,-0.634383][0.753889,0.208722,-0.622966][0.342019,0.267525,0.119046][3.40048,-0.011992,-0.634383][0.753889,0.208722,-0.622966][0.342019,0.267525,0.119046][3.28374,0.273149,-0.455138][-0.515771,-0.597266,0.61421][0.361209,0.270314,0.116359][3.42341,-0.32839,-0.50927][0.564338,0.351696,0.746881][0.322571,0.270298,0.116369][3.57389,-0.937782,0.519022][0.866681,-0.400183,0.297856][0.296196,0.336222,0.115872][3.45811,-0.50901,1.04167][0.788739,-0.128536,0.60114][0.323024,0.363309,0.114629][3.24986,-1.01843,0.516626][0.678114,-0.655488,0.33241][0.27996,0.343354,-0.0203513][3.34658,-0.170299,1.04956][0.660698,0.212318,-0.719999][0.342154,0.367642,0.117058][3.30241,0.161682,1.10203][0.650115,0.356047,0.671253][0.36117,0.363355,0.114629][3.45811,-0.50901,1.04167][0.788739,-0.128536,0.60114][0.323024,0.363309,0.114629][3.45811,-0.50901,1.04167][0.788739,-0.128536,0.60114][0.323024,0.363309,0.114629][3.41669,-0.465423,0.961888][0.894682,0.355807,-0.270084][0.32285,0.363912,0.117036][3.34658,-0.170299,1.04956][0.660698,0.212318,-0.719999][0.342154,0.367642,0.117058][-4.92272,4.11862,0.315293][0.744978,0.0592387,-0.664453][0.842896,0.217857,0.0151668][-5.08448,4.13274,0.242239][0.0113769,0.17485,-0.984529][0.842916,0.194804,0.018781][-5.09735,4.61137,0.320705][0.315101,0.249237,-0.915747][0.869278,0.190936,0.0162356][-5.09735,4.61137,0.320705][0.315101,0.249237,-0.915747][0.869278,0.190936,0.0162356][-5.09248,5.10602,0.551902][0.869323,0.493224,-0.0317421][0.897707,0.218508,0.00852][-4.92272,4.11862,0.315293][0.744978,0.0592387,-0.664453][0.842896,0.217857,0.0151668][4.92272,4.09457,0.720749][-0.744978,-0.0197103,0.666798][0.842896,0.217857,0.0151668][5.08448,4.09996,0.794959][-0.0115925,0.0574563,0.998281][0.842916,0.194804,0.018781][5.09735,4.58451,0.773615][-0.315099,0.139254,0.938787][0.869278,0.190936,0.0162356][5.09735,4.58451,0.773615][-0.315099,0.139254,0.938787][0.869278,0.190936,0.0162356][5.09248,5.10302,0.602503][-0.869323,0.486016,0.0898156][0.897679,0.218378,0.00852809][4.92272,4.09457,0.720749][-0.744978,-0.0197103,0.666798][0.842896,0.217857,0.0151668][-4.70805,-0.179809,0.761937][-0.458004,-0.625932,0.631223][0.605397,0.116359,0.0198825][-4.513,0.246234,0.993381][-0.133641,-0.0513295,0.9897][0.605823,0.0830497,0.0176432][-5.15793,0.851207,0.924052][-0.121985,0.0107069,0.992474][0.658844,0.0895022,0.0219155][-5.15793,0.851207,0.924052][-0.121985,0.0107069,0.992474][0.658844,0.0895022,0.0219155][-5.45867,0.609169,0.732889][-0.658249,-0.40148,0.636806][0.658453,0.121065,0.0257743][-4.70805,-0.179809,0.761937][-0.458004,-0.625932,0.631223][0.605397,0.116359,0.0198825][4.70805,-0.120933,-0.230812][0.4541,-0.549953,-0.70096][0.605397,0.116359,0.0198825][4.513,0.32948,-0.410278][0.132654,0.064108,-0.989087][0.605823,0.0830497,0.0176432][5.15793,0.922018,-0.269931][0.121984,0.127936,-0.984252][0.658844,0.0895022,0.0219155][5.15793,0.922018,-0.269931][0.121984,0.127936,-0.984252][0.658844,0.0895022,0.0219155][5.45867,0.659082,-0.108715][0.658249,-0.323399,-0.679795][0.658453,0.121065,0.0257743][4.70805,-0.120933,-0.230812][0.4541,-0.549953,-0.70096][0.605397,0.116359,0.0198825][2.88787,-5.30344,0.186743][-0.0324824,-0.6279,0.777616][0.0834026,0.256407,-0.14639][2.96559,-4.12324,1.02356][0.942946,-0.098535,0.318031][0.0599757,0.303046,-0.238815][2.91726,-4.68853,-0.767122][-0.988635,0.10191,0.110525][0.114553,0.276892,-0.181344][3.09878,-1.23991,-0.313101][0.941324,-0.266605,-0.206958][0.253283,0.280009,-0.109587][3.05053,-0.957892,-0.668238][0.854494,-0.218667,-0.471195][0.273659,0.249297,-0.10684][3.213,-0.732774,-0.446893][0.64408,-0.40271,-0.650373][0.294441,0.26963,-0.019301][3.16245,-0.193023,1.10314][0.103053,-0.0571536,0.993032][0.4735,0.222163,0.00724751][4.31794,0.69617,0.814151][-0.241593,0.600115,0.762558][0.60453,0.251678,0.0143556][3.04195,0.399933,0.892366][-0.103229,0.644637,0.757487][0.472849,0.256644,0.00667374][-3.16624,-0.105619,-0.568352][-0.100731,0.0604779,-0.993074][0.473518,0.221525,0.00727404][-4.31794,0.755074,-0.179125][0.247684,0.684652,-0.685496][0.60453,0.251678,0.0143556][-3.04555,0.457811,-0.288134][0.112038,0.727706,-0.676676][0.472871,0.256407,0.00669697][-3.11651,-1.19681,0.801642][-0.936851,-0.276195,0.21454][0.253283,0.280009,-0.109587][-3.06826,-0.92583,1.14288][-0.844945,-0.224976,0.485235][0.273659,0.249297,-0.10684][-3.23073,-0.709523,0.930197][-0.633251,-0.40604,0.658881][0.294441,0.26963,-0.019301][3.54125,-0.656244,-0.430386][0.8552,-0.221412,-0.468626][0.307049,0.282014,0.118373][3.48183,-0.599446,-0.359624][0.828207,0.449545,0.334637][0.306015,0.28121,0.116452][3.52021,-0.793878,-0.116655][0.524792,0.772111,0.358383][0.295121,0.29777,0.116571][3.52021,-0.793878,-0.116655][0.524792,0.772111,0.358383][0.295121,0.29777,0.116571][3.5934,-0.972328,0.173629][0.890245,-0.438075,-0.124715][0.292504,0.317151,0.11675][3.54125,-0.656244,-0.430386][0.8552,-0.221412,-0.468626][0.307049,0.282014,0.118373][3.5934,-0.972328,0.173629][0.890245,-0.438075,-0.124715][0.292504,0.317151,0.11675][3.53271,-0.882085,0.182648][0.831058,0.553472,0.0548788][0.291056,0.317253,0.116711][3.51742,-0.850639,0.492719][0.846214,0.527007,-0.0786489][0.29504,0.336819,0.116848][3.51742,-0.850639,0.492719][0.846214,0.527007,-0.0786489][0.29504,0.336819,0.116848][3.57389,-0.937782,0.519022][0.866681,-0.400183,0.297856][0.296196,0.336222,0.115872][3.5934,-0.972328,0.173629][0.890245,-0.438075,-0.124715][0.292504,0.317151,0.11675][3.2186,0.407171,0.866374][0.722377,-0.354713,-0.593591][0.377832,0.352882,0.116943][3.198,0.681412,0.664733][0.581263,0.742588,0.332711][0.388244,0.336033,0.115872][3.30241,0.161682,1.10203][0.650115,0.356047,0.671253][0.36117,0.363355,0.114629][3.30241,0.161682,1.10203][0.650115,0.356047,0.671253][0.36117,0.363355,0.114629][3.34658,-0.170299,1.04956][0.660698,0.212318,-0.719999][0.342154,0.367642,0.117058][3.2186,0.407171,0.866374][0.722377,-0.354713,-0.593591][0.377832,0.352882,0.116943][3.16772,0.689811,0.324101][0.730265,-0.680854,-0.0561261][0.392649,0.317045,0.116684][3.20604,0.745729,-0.0140474][0.591933,0.778387,-0.209115][0.388361,0.298114,0.117629][3.198,0.681412,0.664733][0.581263,0.742588,0.332711][0.388244,0.336033,0.115872][3.198,0.681412,0.664733][0.581263,0.742588,0.332711][0.388244,0.336033,0.115872][3.2186,0.407171,0.866374][0.722377,-0.354713,-0.593591][0.377832,0.352882,0.116943][3.16772,0.689811,0.324101][0.730265,-0.680854,-0.0561261][0.392649,0.317045,0.116684][2.94666,-3.05885,1.42943][0.987778,-0.0398873,0.150677][0.0196481,0.35363,-0.216302][2.96559,-4.12324,1.02356][0.942946,-0.098535,0.318031][0.0358001,0.297542,-0.238815][3.19298,-2.80708,-0.118732][0.995024,-0.0352288,-0.0931991][0.100444,0.357683,-0.50923][2.96559,-4.12324,1.02356][-0.990045,0.0344314,-0.136474][0.0599757,0.303046,-0.238815][2.94666,-3.05885,1.42943][-0.990045,0.0344314,-0.136474][0.0499911,0.343974,-0.216302][3.17341,-1.87193,0.0839391][-0.990045,0.0344314,-0.136474][0.0962978,0.383773,-0.48595][3.20604,0.745729,-0.0140474][0.591933,0.778387,-0.209115][0.388361,0.298114,0.117629][3.16772,0.689811,0.324101][0.730265,-0.680854,-0.0561261][0.392649,0.317045,0.116684][3.22374,0.512052,-0.259601][0.14182,0.726021,-0.67289][0.378057,0.28098,0.116433][-3.14402,-2.80509,-0.114077][0.997861,0.0532763,0.0378728][0.0979276,0.348572,0.369049][-2.96659,-3.05885,1.42943][0.0667029,-0.97572,0.208615][0.0480412,0.345663,0.172703][-2.98552,-4.12324,1.02355][-0.0331568,0.898722,-0.437263][0.0579905,0.304893,0.193652][4.92272,4.11577,0.365243][-0.749749,0.0546872,-0.659459][0.844081,0.0988727,0.015113][4.85572,4.10112,0.542754][-0.999709,-0.0240643,-0.00140045][0.844646,0.0675734,0.0109381][4.91408,4.61884,0.573628][-0.946949,0.247441,0.205086][0.870908,0.0840487,0.00971874][4.91408,4.61884,0.573628][-0.946949,0.247441,0.205086][0.870908,0.0840487,0.00971874][4.96776,4.62079,0.430886][-0.706348,0.258944,-0.658802][0.870338,0.108648,0.0132663][4.92272,4.11577,0.365243][-0.749749,0.0546872,-0.659459][0.844081,0.0988727,0.015113][4.23715,0.907259,0.328623][-0.384613,0.921749,0.0495081][0.6048,0.289563,0.00960654][4.31794,0.69617,0.814151][-0.241593,0.600115,0.762558][0.60453,0.251678,0.0143556][4.85711,1.11607,0.772496][-0.489412,0.474004,0.731981][0.657636,0.24888,0.0169635][4.85711,1.11607,0.772496][-0.489412,0.474004,0.731981][0.657636,0.24888,0.0169635][4.73263,1.24311,0.35318][-0.717514,0.695719,0.0338867][0.65772,0.290729,0.0111769][4.23715,0.907259,0.328623][-0.384613,0.921749,0.0495081][0.6048,0.289563,0.00960654][-4.92272,4.09765,0.670812][0.749749,-0.0236406,0.6613][0.844083,0.0988885,0.0151171][-4.85572,4.10408,0.492814][0.999709,-0.0240607,-0.00145258][0.844646,0.0675734,0.0109381][-4.91408,4.62182,0.523347][0.946949,0.269945,-0.174404][0.870908,0.0840487,0.00971874][-4.91408,4.62182,0.523347][0.946949,0.269945,-0.174404][0.870908,0.0840487,0.00971874][-4.96776,4.60689,0.665319][0.70635,0.179262,0.684788][0.870346,0.108711,0.0132825][-4.92272,4.09765,0.670812][0.749749,-0.0236406,0.6613][0.844083,0.0988885,0.0151171][-5.95869,1.53764,0.348764][-0.99253,-0.121687,-0.0087485][0.711148,0.15334,0.0301388][-5.82766,1.54958,0.705468][-0.756555,-0.0962793,0.646804][0.711428,0.126118,0.0283872][-5.72089,2.60162,0.689159][-0.695908,0.15246,0.701761][0.76431,0.131677,0.0273909][-5.72089,2.60162,0.689159][-0.695908,0.15246,0.701761][0.76431,0.131677,0.0273909][-5.82576,2.63611,0.406242][-0.975425,0.220034,0.0114066][0.764064,0.15536,0.0288229][-5.95869,1.53764,0.348764][-0.99253,-0.121687,-0.0087485][0.711148,0.15334,0.0301388][-5.82576,2.63611,0.406242][-0.975425,0.220034,0.0114066][0.764064,0.15536,0.0288229][-5.72089,2.63512,0.121232][-0.679799,0.237583,-0.69385][0.763851,0.179044,0.0274823][-5.82546,1.59357,-0.00428489][-0.751034,-0.0262374,-0.659742][0.710918,0.180597,0.0285748][-5.82546,1.59357,-0.00428489][-0.751034,-0.0262374,-0.659742][0.710918,0.180597,0.0285748][-5.95869,1.53764,0.348764][-0.99253,-0.121687,-0.0087485][0.711148,0.15334,0.0301388][-5.82576,2.63611,0.406242][-0.975425,0.220034,0.0114066][0.764064,0.15536,0.0288229][5.95869,1.53565,0.382457][0.992503,-0.121974,-0.00776398][0.711148,0.15334,0.0301388][5.82766,1.58966,0.0296642][0.756554,-0.0191559,-0.65365][0.711428,0.126118,0.0283872][5.72089,2.6324,0.170204][0.695908,0.234336,-0.678822][0.76431,0.131677,0.0273909][5.72089,2.6324,0.170204][0.695908,0.234336,-0.678822][0.76431,0.131677,0.0273909][5.82576,2.63321,0.455214][0.975344,0.220216,0.014429][0.764064,0.15536,0.0288229][5.95869,1.53565,0.382457][0.992503,-0.121974,-0.00776398][0.711148,0.15334,0.0301388][5.82576,2.63321,0.455214][0.975344,0.220216,0.014429][0.764064,0.15536,0.0288229][5.72089,2.59854,0.738109][0.680205,0.154774,0.716496][0.763851,0.179044,0.0274823][5.82757,1.55024,0.739169][0.754064,-0.104395,0.648451][0.710918,0.180597,0.0285748][5.82757,1.55024,0.739169][0.754064,-0.104395,0.648451][0.710918,0.180597,0.0285748][5.95869,1.53565,0.382457][0.992503,-0.121974,-0.00776398][0.711148,0.15334,0.0301388][5.82576,2.63321,0.455214][0.975344,0.220216,0.014429][0.764064,0.15536,0.0288229][-4.23715,0.907297,0.32795][0.390028,0.918885,0.0594052][0.6048,0.289563,0.00960654][-4.31794,0.755074,-0.179125][0.247684,0.684652,-0.685496][0.60453,0.251678,0.0143556][-4.85499,1.16638,-0.0886952][0.49405,0.558526,-0.666306][0.657636,0.24888,0.0169635][-4.85499,1.16638,-0.0886952][0.49405,0.558526,-0.666306][0.657636,0.24888,0.0169635][-4.73263,1.2437,0.34326][0.717757,0.694504,0.0498875][0.65772,0.290729,0.0111769][-4.23715,0.907297,0.32795][0.390028,0.918885,0.0594052][0.6048,0.289563,0.00960654][-5.19498,1.70821,0.714823][0.648736,0.220697,0.728309][0.712309,0.062217,0.0182116][-5.06395,1.76199,0.361995][0.950159,0.310929,0.0228196][0.71309,0.0171664,0.012067][-5.10967,2.51495,0.399097][0.998913,-0.0464911,-0.00325174][0.766042,0.030472,0.0124368][-5.10967,2.51495,0.399097][0.998913,-0.0464911,-0.00325174][0.766042,0.030472,0.0124368][-5.21454,2.51595,0.684107][0.852107,-0.0935088,0.514947][0.765147,0.0739738,0.0182901][-5.19498,1.70821,0.714823][0.648736,0.220697,0.728309][0.712309,0.062217,0.0182116][-5.51132,1.62023,0.857095][-0.090717,0.0447077,0.994873][0.711785,0.0969971,0.0239803][-5.19498,1.70821,0.714823][0.648736,0.220697,0.728309][0.712309,0.062217,0.0182116][-5.21454,2.51595,0.684107][0.852107,-0.0935088,0.514947][0.765147,0.0739738,0.0182901][5.19498,1.74829,0.0391242][-0.648737,0.305231,-0.697119][0.712309,0.062217,0.0182116][5.06395,1.75999,0.395836][-0.950222,0.311147,0.0163032][0.71309,0.0171664,0.012067][5.10967,2.51205,0.447989][-0.998913,-0.0465508,-0.00226598][0.766042,0.030472,0.0124368][5.10967,2.51205,0.447989][-0.998913,-0.0465508,-0.00226598][0.766042,0.030472,0.0124368][5.21454,2.54673,0.165095][-0.852107,-0.0319907,-0.522389][0.765147,0.0739738,0.0182901][5.19498,1.74829,0.0391242][-0.648737,0.305231,-0.697119][0.712309,0.062217,0.0182116][5.51132,1.67774,-0.112549][0.0907156,0.161982,-0.982615][0.711785,0.0969971,0.0239803][5.19498,1.74829,0.0391242][-0.648737,0.305231,-0.697119][0.712309,0.062217,0.0182116][5.21454,2.54673,0.165095][-0.852107,-0.0319907,-0.522389][0.765147,0.0739738,0.0182901][2.99023,0.254745,-0.554757][0.43229,0.580119,-0.690353][0.367963,0.254776,-0.0188441][3.08873,-0.0790543,-0.653874][0.457085,0.162641,-0.874426][0.341843,0.250542,-0.0112353][2.83255,-0.113818,-0.912072][0.591541,0.285909,-0.75388][0.341832,0.223502,-0.119046][2.83255,-0.113818,-0.912072][0.591541,0.285909,-0.75388][0.341832,0.223502,-0.119046][2.73576,0.319957,-0.797141][0.703337,0.46054,-0.541498][0.378338,0.229624,-0.116671][2.99023,0.254745,-0.554757][0.43229,0.580119,-0.690353][0.367963,0.254776,-0.0188441][3.2656,-1.05351,0.166076][0.686279,-0.711212,-0.152312][0.274765,0.317457,-0.0210752][3.24986,-1.01843,0.516626][0.678114,-0.655488,0.33241][0.27996,0.343354,-0.0203513][3.11741,-1.31539,0.582935][0.912426,-0.365557,0.183976][0.253515,0.352858,-0.0994169][3.11741,-1.31539,0.582935][0.912426,-0.365557,0.183976][0.253515,0.352858,-0.0994169][3.13659,-1.36543,0.126245][0.933169,-0.351825,-0.0735853][0.246896,0.316368,-0.101282][3.2656,-1.05351,0.166076][0.686279,-0.711212,-0.152312][0.274765,0.317457,-0.0210752][3.28374,0.273149,-0.455138][-0.515771,-0.597266,0.61421][0.361209,0.270314,0.116359][3.40048,-0.011992,-0.634383][0.753889,0.208722,-0.622966][0.342019,0.267525,0.119046][3.22374,0.512052,-0.259601][0.14182,0.726021,-0.67289][0.378057,0.28098,0.116433][-3.28333,-1.01771,0.341222][-0.676396,-0.720153,0.154493][0.274765,0.317457,-0.0210752][-3.26759,-0.983996,0.00439465][-0.685599,-0.658438,-0.310506][0.27996,0.343354,-0.0203513][-3.13514,-1.26934,-0.0593187][-0.906125,-0.377791,-0.190295][0.253515,0.352858,-0.0994169][-3.13514,-1.26934,-0.0593187][-0.906125,-0.377791,-0.190295][0.253515,0.352858,-0.0994169][-3.15432,-1.31742,0.379494][-0.92823,-0.364121,0.0761861][0.246896,0.316368,-0.101282][-3.28333,-1.01771,0.341222][-0.676396,-0.720153,0.154493][0.274765,0.317457,-0.0210752][-3.00796,0.23934,1.03384][-0.365278,0.562204,0.741956][0.367963,0.254776,-0.0188441][-3.10646,-0.0813934,1.12908][-0.446552,0.165432,0.879331][0.341843,0.250542,-0.0112353][-2.85028,-0.114796,1.37717][-0.575412,0.289431,0.764938][0.341832,0.223502,-0.119046][-2.85028,-0.114796,1.37717][-0.575412,0.289431,0.764938][0.341832,0.223502,-0.119046][-2.75349,0.301999,1.26673][-0.689545,0.469925,0.551088][0.378338,0.229624,-0.116671][-3.00796,0.23934,1.03384][-0.365278,0.562204,0.741956][0.367963,0.254776,-0.0188441][2.68472,0.672677,-0.506389][0.804207,0.471154,-0.362304][0.408968,0.250511,-0.101615][2.65881,0.922593,-0.101893][0.759498,0.632491,-0.152045][0.431927,0.281322,-0.0847342][2.89174,0.689956,-0.0244017][0.390808,0.885913,-0.249856][0.403852,0.291035,-0.0125361][-5.09735,4.58763,0.723355][-0.00905644,0.0563556,0.99837][0.870054,0.12844,0.0162832][-4.96776,4.60689,0.665319][0.70635,0.179262,0.684788][0.870346,0.108711,0.0132825][-5.49387,5.76265,0.590625][-0.332564,0.94155,0.0537093][0.936352,0.164008,0.00737162][5.09735,4.60853,0.37098][0.00905765,0.173962,-0.984711][0.870022,0.128045,0.0161937][4.96776,4.62079,0.430886][-0.706348,0.258944,-0.658802][0.870338,0.108648,0.0132663][5.49387,5.75963,0.641661][0.332565,0.941298,0.0579487][0.935721,0.16096,0.00736807][-2.70246,0.640911,0.987364][-0.792409,0.483772,0.371554][0.408968,0.250511,-0.101615][-2.67654,0.881044,0.598703][-0.747017,0.646356,0.155528][0.431927,0.281322,-0.0847342][-2.90947,0.657514,0.524244][-0.368972,0.896339,0.245838][0.403852,0.291035,-0.0125361][-2.68689,0.929116,0.159885][-0.855881,0.51696,0.0148488][0.438967,0.3178,-0.0711285][-2.68411,0.826246,-0.262255][-0.772205,0.565632,-0.289413][0.433456,0.354032,-0.0694444][-2.89391,0.594925,-0.137692][-0.446947,0.804286,-0.391615][0.404492,0.342951,-0.0172494][-3.11002,-1.71753,-1.01583][-0.127729,-0.417173,-0.899807][0.536523,0.535322,-0.0129754][-3.22904,-1.73572,-0.481915][-0.821288,-0.426205,0.379256][0.512412,0.536465,-0.38632][-3.19039,-1.65727,-0.466881][-0.233758,0.762697,0.603034][0.51209,0.540496,-0.280413][-3.19039,-1.65727,-0.466881][-0.233758,0.762697,0.603034][0.51209,0.540496,-0.280413][-3.05536,-1.6066,-0.994568][0.372397,0.596938,-0.710624][0.536068,0.541022,0.136799][-3.11002,-1.71753,-1.01583][-0.127729,-0.417173,-0.899807][0.536523,0.535322,-0.0129754][-3.05536,-1.6066,-0.994568][0.372397,0.596938,-0.710624][0.536068,0.541022,0.136799][-3.19039,-1.65727,-0.466881][-0.233758,0.762697,0.603034][0.51209,0.540496,-0.280413][-3.11501,-1.74518,-0.463319][0.625314,-0.428087,0.652475][0.51157,0.536461,-0.0225623][-3.11501,-1.74518,-0.463319][0.625314,-0.428087,0.652475][0.51157,0.536461,-0.0225623][-3.11002,-1.71753,-1.01583][-0.127729,-0.417173,-0.899807][0.536523,0.535322,-0.0129754][-3.05536,-1.6066,-0.994568][0.372397,0.596938,-0.710624][0.536068,0.541022,0.136799][-3.11002,-1.71753,-1.01583][-0.127729,-0.417173,-0.899807][0.536523,0.535322,-0.0129754][-3.11501,-1.74518,-0.463319][0.625314,-0.428087,0.652475][0.51157,0.536461,-0.0225623][-3.22904,-1.73572,-0.481915][-0.821288,-0.426205,0.379256][0.512412,0.536465,-0.38632][2.66916,0.972622,0.354801][0.869183,0.493782,-0.0264615][0.438967,0.3178,-0.0711285][2.68608,0.865562,0.794139][0.81474,0.529328,0.236664][0.433456,0.354032,-0.0694444][2.87618,0.624817,0.664502][0.480649,0.793519,0.373234][0.404492,0.342951,-0.0172494][3.09432,-1.70957,-1.01583][0.296681,-0.346128,-0.890043][0.486047,0.571048,0.0113732][3.04093,-1.60121,-0.994567][-0.758231,0.336991,-0.558142][0.486511,0.576654,0.171058][3.12668,-1.65454,-0.459178][0.276154,0.506283,0.816956][0.510477,0.576268,-0.110787][3.12668,-1.65454,-0.459178][0.276154,0.506283,0.816956][0.510477,0.576268,-0.110787][3.18007,-1.76289,-0.480438][0.357074,-0.652776,0.668119][0.510013,0.570663,-0.270472][3.09432,-1.70957,-1.01583][0.296681,-0.346128,-0.890043][0.486047,0.571048,0.0113732][3.04093,-1.60121,-0.994567][-0.758231,0.336991,-0.558142][0.486511,0.576654,0.171058][3.18007,-1.76289,-0.480438][0.357074,-0.652776,0.668119][0.510013,0.570663,-0.270472][3.12668,-1.65454,-0.459178][0.276154,0.506283,0.816956][0.510477,0.576268,-0.110787][3.04093,-1.60121,-0.994567][-0.758231,0.336991,-0.558142][0.486511,0.576654,0.171058][3.09432,-1.70957,-1.01583][0.296681,-0.346128,-0.890043][0.486047,0.571048,0.0113732][3.18007,-1.76289,-0.480438][0.357074,-0.652776,0.668119][0.510013,0.570663,-0.270472][-3.09676,-1.8243,1.29992][-0.055996,0.439802,0.896348][0.486008,0.540741,0.0568969][-3.16892,-1.76534,0.762986][-0.205429,0.887665,-0.412128][0.51038,0.541014,-0.190809][-3.20262,-1.84495,0.75835][-0.768718,-0.381167,-0.513599][0.510223,0.536892,-0.282946][-3.20262,-1.84495,0.75835][-0.768718,-0.381167,-0.513599][0.510223,0.536892,-0.282946][-3.05164,-1.93645,1.27969][0.355081,-0.587499,0.727161][0.48643,0.535183,0.22799][-3.09676,-1.8243,1.29992][-0.055996,0.439802,0.896348][0.486008,0.540741,0.0568969][-3.05164,-1.93645,1.27969][0.355081,-0.587499,0.727161][0.48643,0.535183,0.22799][-3.09063,-1.84442,0.741852][0.708803,-0.223031,-0.66922][0.511001,0.53722,0.0808698][-3.16892,-1.76534,0.762986][-0.205429,0.887665,-0.412128][0.51038,0.541014,-0.190809][-3.16892,-1.76534,0.762986][-0.205429,0.887665,-0.412128][0.51038,0.541014,-0.190809][-3.09676,-1.8243,1.29992][-0.055996,0.439802,0.896348][0.486008,0.540741,0.0568969][-3.05164,-1.93645,1.27969][0.355081,-0.587499,0.727161][0.48643,0.535183,0.22799][-3.05164,-1.93645,1.27969][0.355081,-0.587499,0.727161][0.48643,0.535183,0.22799][-3.20262,-1.84495,0.75835][-0.768718,-0.381167,-0.513599][0.510223,0.536892,-0.282946][-3.09063,-1.84442,0.741852][0.708803,-0.223031,-0.66922][0.511001,0.53722,0.0808698][2.99582,-1.85618,1.28433][-0.829651,0.27183,0.487635][0.535963,0.574815,0.28936][3.10727,-1.8567,1.30083][0.598815,0.390671,0.69914][0.536686,0.574645,-0.0753545][3.17908,-1.79803,0.763898][0.628477,0.319002,-0.709404][0.512611,0.574998,-0.307966][3.17908,-1.79803,0.763898][0.628477,0.319002,-0.709404][0.512611,0.574998,-0.307966][3.06815,-1.84382,0.741853][-0.412096,-0.113987,-0.903982][0.51185,0.572818,0.0609789][2.99582,-1.85618,1.28433][-0.829651,0.27183,0.487635][0.535963,0.574815,0.28936][3.06815,-1.84382,0.741853][-0.412096,-0.113987,-0.903982][0.51185,0.572818,0.0609789][3.17908,-1.79803,0.763898][0.628477,0.319002,-0.709404][0.512611,0.574998,-0.307966][3.07552,-1.93562,1.28653][0.106946,-0.86329,0.493247][0.536409,0.570685,0.03869][3.06815,-1.84382,0.741853][-0.412096,-0.113987,-0.903982][0.51185,0.572818,0.0609789][3.07552,-1.93562,1.28653][0.106946,-0.86329,0.493247][0.536409,0.570685,0.03869][2.99582,-1.85618,1.28433][-0.829651,0.27183,0.487635][0.535963,0.574815,0.28936][-2.689,0.506946,-0.603461][-0.716982,0.500547,-0.48517][0.409625,0.385123,-0.0879813][-2.78622,0.126876,-0.811821][-0.748636,0.332892,-0.573347][0.379108,0.405506,-0.0969923][-3.00796,0.0881785,-0.564143][-0.443639,0.33727,-0.830322][0.368001,0.379352,-0.015287][2.70616,0.533254,1.14925][0.771043,0.461343,0.438925][0.409625,0.385123,-0.0879813][2.76848,0.1377,1.36609][0.767035,0.295719,0.569392][0.379108,0.405506,-0.0969923][2.99023,0.0974257,1.10833][0.466357,0.324172,0.823058][0.368001,0.379352,-0.015287][3.47668,-0.704327,0.766351][0.586844,0.684651,-0.43228][0.306301,0.35318,0.116962][3.45811,-0.50901,1.04167][0.788739,-0.128536,0.60114][0.323024,0.363309,0.114629][3.57389,-0.937782,0.519022][0.866681,-0.400183,0.297856][0.296196,0.336222,0.115872][3.57389,-0.937782,0.519022][0.866681,-0.400183,0.297856][0.296196,0.336222,0.115872][3.51742,-0.850639,0.492719][0.846214,0.527007,-0.0786489][0.29504,0.336819,0.116848][3.47668,-0.704327,0.766351][0.586844,0.684651,-0.43228][0.306301,0.35318,0.116962][4.31794,0.69617,0.814151][-0.241593,0.600115,0.762558][0.60453,0.251678,0.0143556][4.513,0.245758,0.993617][0.1216,-0.0607661,0.990717][0.604596,0.216351,0.0178264][5.15739,0.867616,0.933712][0.105552,0.0027505,0.99441][0.657712,0.213462,0.0221678][5.15739,0.867616,0.933712][0.105552,0.0027505,0.99441][0.657712,0.213462,0.0221678][4.85711,1.11607,0.772496][-0.489412,0.474004,0.731981][0.657636,0.24888,0.0169635][4.31794,0.69617,0.814151][-0.241593,0.600115,0.762558][0.60453,0.251678,0.0143556][-2.9078,-5.30345,0.186741][0.0324842,-0.627899,0.777617][0.0813267,0.258432,0.107646][-2.79347,-5.73659,-1.0995][-0.651596,-0.75854,-0.00630638][0.120889,0.238663,-0.0928026][-2.72446,-5.73674,-1.09491][0.684082,-0.684028,0.253256][0.120893,0.238215,-0.0952359][-2.72446,-5.73674,-1.09491][0.684082,-0.684028,0.253256][0.120893,0.238215,-0.0952359][-2.93719,-4.68853,-0.767123][0.987686,0.103336,0.117462][0.112837,0.278258,0.140172][-2.9078,-5.30345,0.186741][0.0324842,-0.627899,0.777617][0.0813267,0.258432,0.107646][-5.49811,1.6923,-0.147658][-0.0732751,0.155547,-0.985107][0.710747,0.209705,0.0242248][-5.82546,1.59357,-0.00428489][-0.751034,-0.0262374,-0.659742][0.710918,0.180597,0.0285748][-5.72089,2.63512,0.121232][-0.679799,0.237583,-0.69385][0.763851,0.179044,0.0274823][-4.31794,0.755074,-0.179125][0.247684,0.684652,-0.685496][0.60453,0.251678,0.0143556][-4.513,0.32903,-0.410569][-0.119842,0.056547,-0.991181][0.604596,0.216351,0.0178264][-5.14472,0.935087,-0.280961][-0.100674,0.123366,-0.987241][0.657712,0.213462,0.0221678][-5.14472,0.935087,-0.280961][-0.100674,0.123366,-0.987241][0.657712,0.213462,0.0221678][-4.85499,1.16638,-0.0886952][0.49405,0.558526,-0.666306][0.657636,0.24888,0.0169635][-4.31794,0.755074,-0.179125][0.247684,0.684652,-0.685496][0.60453,0.251678,0.0143556][5.51078,1.63528,0.890842][0.0836786,0.0357453,0.995851][0.710747,0.209705,0.0242248][5.82757,1.55024,0.739169][0.754064,-0.104395,0.648451][0.710918,0.180597,0.0285748][5.72089,2.59854,0.738109][0.680205,0.154774,0.716496][0.763851,0.179044,0.0274823][5.09248,5.10302,0.602503][-0.869323,0.486016,0.0898156][0.897679,0.218378,0.00852809][5.09735,4.58451,0.773615][-0.315099,0.139254,0.938787][0.869278,0.190936,0.0162356][5.49387,5.75963,0.641661][0.332565,0.941298,0.0579487][0.935721,0.16096,0.00736807][4.96776,4.62079,0.430886][-0.706348,0.258944,-0.658802][0.870338,0.108648,0.0132663][5.09248,5.10302,0.602503][-0.869323,0.486016,0.0898156][0.898873,0.10316,0.00855463][5.49387,5.75963,0.641661][0.332565,0.941298,0.0579487][0.935721,0.16096,0.00736807][-5.09248,5.10602,0.551902][0.869323,0.493224,-0.0317421][0.897707,0.218508,0.00852][-5.09735,4.61137,0.320705][0.315101,0.249237,-0.915747][0.869278,0.190936,0.0162356][-5.49387,5.76265,0.590625][-0.332564,0.94155,0.0537093][0.936352,0.164008,0.00737162][-4.96776,4.60689,0.665319][0.70635,0.179262,0.684788][0.870346,0.108711,0.0132825][-5.09248,5.10602,0.551902][0.869323,0.493224,-0.0317421][0.898871,0.103342,0.00857268][-5.49387,5.76265,0.590625][-0.332564,0.94155,0.0537093][0.936352,0.164008,0.00737162][2.83255,-0.113818,-0.912072][0.591541,0.285909,-0.75388][0.341832,0.223502,-0.119046][3.05796,-0.544332,-0.881247][0.428498,-0.276704,-0.86013][0.308898,0.238803,-0.068413][3.05053,-0.957892,-0.668238][0.854494,-0.218667,-0.471195][0.273659,0.249297,-0.10684][-2.85028,-0.114796,1.37717][-0.575412,0.289431,0.764938][0.341832,0.223502,-0.119046][-3.07569,-0.528458,1.34755][-0.435698,-0.273054,0.857676][0.308898,0.238803,-0.068413][-3.06826,-0.92583,1.14288][-0.844945,-0.224976,0.485235][0.273659,0.249297,-0.10684][5.06395,1.75999,0.395836][-0.950222,0.311147,0.0163032][0.710732,0.287162,0.0122121][5.19489,1.70887,0.748628][-0.655984,0.210679,0.724775][0.710679,0.243952,0.0183825][5.21454,2.51286,0.732999][-0.800421,-0.0706706,0.595257][0.763665,0.23621,0.0184236][5.21454,2.51286,0.732999][-0.800421,-0.0706706,0.595257][0.763665,0.23621,0.0184236][5.10967,2.51205,0.447989][-0.998913,-0.0465508,-0.00226598][0.763879,0.278354,0.0125382][5.06395,1.75999,0.395836][-0.950222,0.311147,0.0163032][0.710732,0.287162,0.0122121][-5.06395,1.76199,0.361995][0.950159,0.310929,0.0228196][0.710732,0.287162,0.0122121][-5.19278,1.75221,0.00507081][0.664062,0.296416,-0.68641][0.710679,0.243952,0.0183825][-5.21454,2.54944,0.11618][0.811426,-0.00178613,-0.584452][0.763665,0.23621,0.0184236][-5.21454,2.54944,0.11618][0.811426,-0.00178613,-0.584452][0.763665,0.23621,0.0184236][-5.10967,2.51495,0.399097][0.998913,-0.0464911,-0.00325174][0.763879,0.278354,0.0125382][-5.06395,1.76199,0.361995][0.950159,0.310929,0.0228196][0.710732,0.287162,0.0122121][3.5934,-0.972328,0.173629][0.890245,-0.438075,-0.124715][0.292504,0.317151,0.11675][3.52021,-0.793878,-0.116655][0.524792,0.772111,0.358383][0.295121,0.29777,0.116571][3.53271,-0.882085,0.182648][0.831058,0.553472,0.0548788][0.291056,0.317253,0.116711][5.09735,4.58451,0.773615][-0.315099,0.139254,0.938787][0.869278,0.190936,0.0162356][5.08448,4.09996,0.794959][-0.0115925,0.0574563,0.998281][0.842916,0.194804,0.018781][5.49387,5.75963,0.641661][0.332565,0.941298,0.0579487][0.935721,0.16096,0.00736807][-5.09735,4.61137,0.320705][0.315101,0.249237,-0.915747][0.869278,0.190936,0.0162356][-5.08448,4.13274,0.242239][0.0113769,0.17485,-0.984529][0.842916,0.194804,0.018781][-5.49387,5.76265,0.590625][-0.332564,0.94155,0.0537093][0.936352,0.164008,0.00737162][5.51132,1.67774,-0.112549][0.0907156,0.161982,-0.982615][0.711785,0.0969971,0.0239803][5.72089,2.6324,0.170204][0.695908,0.234336,-0.678822][0.76431,0.131677,0.0273909][5.82766,1.58966,0.0296642][0.756554,-0.0191559,-0.65365][0.711428,0.126118,0.0283872][-5.51132,1.62023,0.857095][-0.090717,0.0447077,0.994873][0.711785,0.0969971,0.0239803][-5.72089,2.60162,0.689159][-0.695908,0.15246,0.701761][0.76431,0.131677,0.0273909][-5.82766,1.54958,0.705468][-0.756555,-0.0962793,0.646804][0.711428,0.126118,0.0283872][5.28062,4.5742,0.570967][0.995357,-0.0798035,0.0538043][0.86966,0.159523,0.0187788][5.22694,4.58923,0.429004][0.672442,-0.0498288,-0.73847][0.869884,0.144287,0.0181435][5.49387,5.75963,0.641661][0.332565,0.941298,0.0579487][0.935721,0.16096,0.00736807][-5.28062,4.57718,0.520714][-0.995358,-0.072884,-0.0628592][0.869649,0.15954,0.0187711][-5.22694,4.57532,0.663458][-0.67244,-0.136762,0.727406][0.869827,0.144452,0.0181136][-5.49387,5.76265,0.590625][-0.332564,0.94155,0.0537093][0.936352,0.164008,0.00737162][-2.35869,-5.76265,-2.44908][0.320356,-0.312419,-0.894297][0.206163,0.200287,-0.500001][-2.72446,-5.73674,-1.09491][0.684082,-0.684028,0.253256][0.136698,0.207586,-0.0952359][-2.79347,-5.73659,-1.0995][-0.651596,-0.75854,-0.00630638][0.135463,0.209272,-0.01887][-4.96776,4.60689,0.665319][0.70635,0.179262,0.684788][0.870346,0.108711,0.0132825][-5.09735,4.58763,0.723355][-0.00905644,0.0563556,0.99837][0.870054,0.12844,0.0162832][-5.08448,4.10309,0.745019][0.137458,0.025754,0.990173][0.84371,0.122161,0.0187372][-5.08448,4.10309,0.745019][0.137458,0.025754,0.990173][0.84371,0.122161,0.0187372][-4.92272,4.09765,0.670812][0.749749,-0.0236406,0.6613][0.844083,0.0988885,0.0151171][-4.96776,4.60689,0.665319][0.70635,0.179262,0.684788][0.870346,0.108711,0.0132825][4.96776,4.62079,0.430886][-0.706348,0.258944,-0.658802][0.870338,0.108648,0.0132663][5.09735,4.60853,0.37098][0.00905765,0.173962,-0.984711][0.870022,0.128045,0.0161937][5.08448,4.12994,0.292199][-0.137458,0.142606,-0.980188][0.843702,0.122062,0.0187149][5.08448,4.12994,0.292199][-0.137458,0.142606,-0.980188][0.843702,0.122062,0.0187149][4.92272,4.11577,0.365243][-0.749749,0.0546872,-0.659459][0.844081,0.0988727,0.015113][4.96776,4.62079,0.430886][-0.706348,0.258944,-0.658802][0.870338,0.108648,0.0132663][-5.49811,1.6923,-0.147658][-0.0732751,0.155547,-0.985107][0.710747,0.209705,0.0242248][-5.21454,2.54944,0.11618][0.811426,-0.00178613,-0.584452][0.763665,0.23621,0.0184236][-5.19278,1.75221,0.00507081][0.664062,0.296416,-0.68641][0.710679,0.243952,0.0183825][5.51078,1.63528,0.890842][0.0836786,0.0357453,0.995851][0.710747,0.209705,0.0242248][5.21454,2.51286,0.732999][-0.800421,-0.0706706,0.595257][0.763665,0.23621,0.0184236][5.19489,1.70887,0.748628][-0.655984,0.210679,0.724775][0.710679,0.243952,0.0183825][-4.92272,4.11862,0.315293][0.744978,0.0592387,-0.664453][0.842896,0.217857,0.0151668][-4.91408,4.62182,0.523347][0.946949,0.269945,-0.174404][0.869594,0.234832,0.00969973][-4.85572,4.10408,0.492814][0.999709,-0.0240607,-0.00145258][0.843072,0.248705,0.0109409][4.92272,4.09457,0.720749][-0.744978,-0.0197103,0.666798][0.842896,0.217857,0.0151668][4.91408,4.61884,0.573628][-0.946949,0.247441,0.205086][0.869594,0.234832,0.00969973][4.85572,4.10112,0.542754][-0.999709,-0.0240643,-0.00140045][0.843072,0.248705,0.0109409][2.99582,-1.85618,1.28433][-0.829651,0.27183,0.487635][0.535963,0.574815,0.28936][3.07552,-1.93562,1.28653][0.106946,-0.86329,0.493247][0.536409,0.570685,0.03869][3.10727,-1.8567,1.30083][0.598815,0.390671,0.69914][0.536686,0.574645,-0.0753545][3.10727,-1.8567,1.30083][0.598815,0.390671,0.69914][0.536686,0.574645,-0.0753545][3.07552,-1.93562,1.28653][0.106946,-0.86329,0.493247][0.536409,0.570685,0.03869][3.17908,-1.79803,0.763898][0.628477,0.319002,-0.709404][0.512611,0.574998,-0.307966][-2.95502,-1.73018,-1.41566][0.126119,0.633823,-0.763127][0.171191,0.408735,0.159909][-3.26235,-1.87166,0.0793811][-0.768366,0.637356,0.0582235][0.0939961,0.405381,0.5][-3.19334,-1.87193,0.0839393][0.646201,0.760689,0.0614526][0.0934994,0.408201,0.423624][-3.19334,-1.87193,0.0839393][0.646201,0.760689,0.0614526][0.0934994,0.408201,0.423624][-3.26235,-1.87166,0.0793811][-0.768366,0.637356,0.0582235][0.0939961,0.405381,0.5][-2.93819,-2.01491,1.61484][0.144946,0.485897,0.861914][0.0141943,0.407744,0.141281][-3.22904,-1.73572,-0.481915][-0.821288,-0.426205,0.379256][0.512412,0.536465,-0.38632][-3.11501,-1.74518,-0.463319][0.625314,-0.428087,0.652475][0.51157,0.536461,-0.0225623][-3.19039,-1.65727,-0.466881][-0.233758,0.762697,0.603034][0.51209,0.540496,-0.280413][2.33876,-5.76265,-2.44908][-0.320354,-0.312441,-0.894289][0.207832,0.198474,0.506608][2.77354,-5.73659,-1.0995][0.650601,-0.759398,-0.00573382][0.136071,0.208681,-0.010432][2.70453,-5.73675,-1.09491][-0.685573,-0.682636,0.252977][0.137968,0.205824,0.0716335][-3.16892,-1.76534,0.762986][-0.205429,0.887665,-0.412128][0.51038,0.541014,-0.190809][-3.09063,-1.84442,0.741852][0.708803,-0.223031,-0.66922][0.511001,0.53722,0.0808698][-3.20262,-1.84495,0.75835][-0.768718,-0.381167,-0.513599][0.510223,0.536892,-0.282946][-3.61113,-0.9397,0.333965][-0.880883,-0.465461,0.0859727][0.292504,0.317151,0.11675][-3.54593,-0.768236,0.612886][-0.570706,0.747647,-0.339586][0.295121,0.29777,0.116571][-3.55843,-0.85299,0.325299][-0.85567,0.51494,-0.0516253][0.291056,0.317253,0.116711][3.54125,-0.656244,-0.430386][0.8552,-0.221412,-0.468626][0.307049,0.282014,0.118373][3.42341,-0.32839,-0.50927][0.564338,0.351696,0.746881][0.322571,0.270298,0.116369][3.48183,-0.599446,-0.359624][0.828207,0.449545,0.334637][0.306015,0.28121,0.116452][3.45811,-0.50901,1.04167][0.788739,-0.128536,0.60114][0.323024,0.363309,0.114629][3.47668,-0.704327,0.766351][0.586844,0.684651,-0.43228][0.306301,0.35318,0.116962][3.41669,-0.465423,0.961888][0.894682,0.355807,-0.270084][0.32285,0.363912,0.117036][-3.54412,-0.750179,-0.290791][-0.811331,-0.352333,-0.46648][0.306915,0.352444,0.115127][-3.54314,-0.822775,0.0273661][-0.617644,0.768449,0.167339][0.29504,0.336819,0.116848][-3.5024,-0.68219,-0.235555][-0.892802,0.423861,0.15247][0.306301,0.35318,0.116962][-3.55898,-0.635989,0.914336][-0.842494,-0.23509,0.484703][0.307049,0.282014,0.118373][-3.44913,-0.320969,0.990132][-0.605262,0.356245,-0.711862][0.322571,0.270298,0.116369][-3.50755,-0.581415,0.846344][-0.851557,0.431448,-0.297831][0.306015,0.28121,0.116452][-2.42226,0.887744,-1.36636][0.844541,-0.395959,0.360509][0.517122,0.917467,0.439802][-2.69967,0.797945,-0.521207][0.911584,-0.399031,0.0989356][0.541767,0.91445,0.442907][-2.95788,-0.340352,-0.815387][0.969388,-0.151702,0.193065][0.536547,0.875986,0.492742][-2.95788,-0.340352,-0.815387][0.969388,-0.151702,0.193065][0.536547,0.875986,0.492742][-2.65614,-0.24403,-1.7441][0.891341,-0.189022,0.412047][0.512432,0.879232,0.496875][-2.42226,0.887744,-1.36636][0.844541,-0.395959,0.360509][0.517122,0.917467,0.439802][-2.98908,-0.335302,-0.821583][-0.970915,0.139357,-0.194687][0.536547,0.875986,0.492742][-2.72937,0.809228,-0.526463][-0.912973,0.383089,-0.140443][0.541767,0.91445,0.442907][-2.44946,0.900497,-1.37797][-0.84449,0.39599,-0.360595][0.517122,0.917467,0.439802][-2.44946,0.900497,-1.37797][-0.84449,0.39599,-0.360595][0.517122,0.917467,0.439802][-2.68483,-0.237788,-1.75733][-0.892732,0.176463,-0.414597][0.512432,0.879232,0.496875][-2.98908,-0.335302,-0.821583][-0.970915,0.139357,-0.194687][0.536547,0.875986,0.492742][-0.752537,0.354617,3.67385][-0.150052,0.288392,0.945682][0.682233,0.8992,0.457578][-0.0085578,-0.858232,3.94886][0.0168336,0.154895,0.987788][0.706165,0.858398,0.477533][0.808338,-0.845302,3.86088][0.208299,0.161845,0.964582][0.731061,0.85883,0.484014][0.808338,-0.845302,3.86088][0.208299,0.161845,0.964582][0.731061,0.85883,0.484014][1.42884,0.38992,3.40178][0.399926,0.284393,0.871309][0.752939,0.900369,0.466782][-0.752537,0.354617,3.67385][-0.150052,0.288392,0.945682][0.682233,0.8992,0.457578][2.18956,-0.136777,-2.47504][0.721743,0.224261,-0.654824][0.921986,0.882576,0.494126][1.99236,0.984008,-2.0549][0.689996,0.448383,-0.568206][0.91861,0.920222,0.433673][2.43268,0.905912,-1.37778][0.857545,0.408663,-0.312427][0.8952,0.917647,0.439838][2.43268,0.905912,-1.37778][0.857545,0.408663,-0.312427][0.8952,0.917647,0.439838][2.66852,-0.221047,-1.75679][0.888406,0.188255,-0.418683][0.899874,0.879791,0.496951][2.18956,-0.136777,-2.47504][0.721743,0.224261,-0.654824][0.921986,0.882576,0.494126][0.800952,-0.847973,3.82964][-0.207987,-0.165157,-0.964087][0.731061,0.85883,0.484014][0.870744,-5.18836,4.1793][0.213488,-0.969762,0.11826][0.730766,0.712153,0.532185][-0.008497,-5.31969,4.2633][0.00627822,-0.992315,0.123581][0.706165,0.708455,0.524354][-0.008497,-5.31969,4.2633][0.00627822,-0.992315,0.123581][0.706165,0.708455,0.524354][-0.00853252,-0.860809,3.91676][-0.0167725,-0.158229,-0.98726][0.706165,0.858398,0.477533][0.800952,-0.847973,3.82964][-0.207987,-0.165157,-0.964087][0.731061,0.85883,0.484014][2.40552,0.893093,-1.36614][-0.857599,-0.408616,0.312341][0.8952,0.917647,0.439838][1.97012,0.969811,-2.03643][-0.690093,-0.448288,0.568164][0.91861,0.920222,0.433673][2.16637,-0.14457,-2.4541][-0.720524,-0.237504,0.651488][0.921986,0.882576,0.494126][2.16637,-0.14457,-2.4541][-0.720524,-0.237504,0.651488][0.921986,0.882576,0.494126][2.63991,-0.227493,-1.74348][-0.886798,-0.200754,0.416278][0.899874,0.879791,0.496951][2.40552,0.893093,-1.36614][-0.857599,-0.408616,0.312341][0.8952,0.917647,0.439838][-0.00936389,-3.12177,-4.23109][0.219977,-0.149409,0.963995][0.703683,0.461663,-0.484362][0.433262,-3.04053,-4.12744][0.540463,-0.609879,-0.57961][0.66121,0.469354,-0.430137][0.313026,-1.89965,-3.67878][0.247188,-0.219164,0.943857][0.670892,0.569552,-0.270567][0.313026,-1.89965,-3.67878][0.247188,-0.219164,0.943857][0.670892,0.569552,-0.270567][-0.00856781,-0.799415,-3.5027][-0.05723,-0.650516,0.757334][0.703707,0.666717,-0.182178][-0.00936389,-3.12177,-4.23109][0.219977,-0.149409,0.963995][0.703683,0.461663,-0.484362][0.324858,-1.57256,-3.68592][0.431786,0.0798375,-0.898436][0.671107,0.597524,-0.244351][0.433262,-3.04053,-4.12744][0.540463,-0.609879,-0.57961][0.66121,0.469354,-0.430137][-0.00925016,-3.12142,-4.2633][0.00187032,-0.0583768,-0.998293][0.703683,0.461663,-0.484362][-0.00925016,-3.12142,-4.2633][0.00187032,-0.0583768,-0.998293][0.703683,0.461663,-0.484362][-0.00879216,-1.873,-3.84724][0.000610863,0.307222,-0.951638][0.703608,0.570518,-0.311791][0.324858,-1.57256,-3.68592][0.431786,0.0798375,-0.898436][0.671107,0.597524,-0.244351][-3.0727,-0.448252,0.249189][0.991073,-0.133318,0.000904361][0.562608,0.872353,0.491754][-2.95788,-0.340352,-0.815387][0.969388,-0.151702,0.193065][0.536547,0.875986,0.492742][-2.69967,0.797945,-0.521207][0.911584,-0.399031,0.0989356][0.541767,0.91445,0.442907][-2.69967,0.797945,-0.521207][0.911584,-0.399031,0.0989356][0.541767,0.91445,0.442907][-2.72322,0.602955,1.37705][0.930523,-0.32532,-0.168206][0.592342,0.907871,0.459991][-3.0727,-0.448252,0.249189][0.991073,-0.133318,0.000904361][0.562608,0.872353,0.491754][0.800952,-0.847973,3.82964][-0.207987,-0.165157,-0.964087][0.731061,0.85883,0.484014][-0.00853252,-0.860809,3.91676][-0.0167725,-0.158229,-0.98726][0.706165,0.858398,0.477533][-0.745212,0.346337,3.6436][0.149944,-0.288075,-0.945796][0.682233,0.8992,0.457578][-0.745212,0.346337,3.6436][0.149944,-0.288075,-0.945796][0.682233,0.8992,0.457578][1.41373,0.381135,3.37473][-0.39969,-0.284206,-0.871478][0.752939,0.900369,0.466782][0.800952,-0.847973,3.82964][-0.207987,-0.165157,-0.964087][0.731061,0.85883,0.484014][2.04417,1.86183,-0.914016][0.770592,0.582752,-0.258046][0.889179,0.949713,0.357601][2.43268,0.905912,-1.37778][0.857545,0.408663,-0.312427][0.8952,0.917647,0.439838][1.99236,0.984008,-2.0549][0.689996,0.448383,-0.568206][0.91861,0.920222,0.433673][1.99236,0.984008,-2.0549][0.689996,0.448383,-0.568206][0.91861,0.920222,0.433673][1.18211,1.97678,-1.92108][0.424607,0.680012,-0.59774][0.939162,0.953496,0.335839][2.04417,1.86183,-0.914016][0.770592,0.582752,-0.258046][0.889179,0.949713,0.357601][-0.4613,2.26894,2.66558][-0.162781,0.721001,0.673543][0.685493,0.963279,0.32045][-0.258091,2.82501,1.77359][-0.114628,0.899521,0.421571][0.688975,0.983359,0.211932][-0.936937,2.90772,1.0315][-0.386277,0.907688,0.163991][0.619233,0.986152,0.180661][-0.936937,2.90772,1.0315][-0.386277,0.907688,0.163991][0.619233,0.986152,0.180661][-1.24244,2.32306,2.16433][-0.451176,0.757693,0.471531][0.645073,0.965103,0.315777][-0.4613,2.26894,2.66558][-0.162781,0.721001,0.673543][0.685493,0.963279,0.32045][-1.71075,1.48994,2.63546][-0.640589,0.512318,0.571992][0.64041,0.937263,0.410006][-2.03792,0.446905,2.92548][-0.692792,0.288049,0.661111][0.637575,0.902276,0.472791][-1.44585,0.389938,3.40179][-0.467592,0.274157,0.840354][0.659392,0.900368,0.466782][-1.44585,0.389938,3.40179][-0.467592,0.274157,0.840354][0.659392,0.900368,0.466782][-1.21441,1.44321,3.04849][-0.3597,0.497184,0.789572][0.661633,0.935698,0.40906][-1.71075,1.48994,2.63546][-0.640589,0.512318,0.571992][0.64041,0.937263,0.410006][-2.45634,0.513142,2.22759][0.847694,-0.306635,-0.432885][0.615645,0.904831,0.470097][-2.0156,0.437629,2.90419][0.69284,-0.287989,-0.661086][0.637575,0.902276,0.472791][-2.21458,-0.745888,3.03476][0.740967,-0.1218,-0.660403][0.635435,0.862282,0.507168][-2.21458,-0.745888,3.03476][0.740967,-0.1218,-0.660403][0.635435,0.862282,0.507168][-2.69739,-0.66026,2.28405][0.900102,-0.0883682,-0.426623][0.612908,0.865182,0.506761][-2.45634,0.513142,2.22759][0.847694,-0.306635,-0.432885][0.615645,0.904831,0.470097][2.94143,-0.329275,-0.814954][-0.973524,-0.170958,0.151738][0.875769,0.876361,0.492822][2.97057,-0.555304,1.32523][-0.981903,-0.0986961,-0.161633][0.823672,0.868735,0.498509][2.78671,0.702665,0.426951][-0.927946,-0.371651,0.0281278][0.844981,0.911239,0.449152][2.78671,0.702665,0.426951][-0.927946,-0.371651,0.0281278][0.844981,0.911239,0.449152][2.40552,0.893093,-1.36614][-0.857599,-0.408616,0.312341][0.8952,0.917647,0.439838][2.94143,-0.329275,-0.814954][-0.973524,-0.170958,0.151738][0.875769,0.876361,0.492822][-1.65549,2.50733,0.13517][0.638826,-0.766999,0.0601139][0.557718,0.972136,0.264383][-1.66408,2.39462,1.23249][0.637496,-0.74226,-0.206516][0.603812,0.968333,0.295174][-2.28832,1.60788,1.34955][0.839317,-0.511108,-0.185244][0.596786,0.941804,0.393107][-2.28832,1.60788,1.34955][0.839317,-0.511108,-0.185244][0.596786,0.941804,0.393107][-2.03704,1.84167,-0.904638][0.759174,-0.607627,0.233335][0.52315,0.949679,0.357594][-1.65549,2.50733,0.13517][0.638826,-0.766999,0.0601139][0.557718,0.972136,0.264383][-2.31507,1.62432,1.35672][-0.822298,0.529142,0.209367][0.596786,0.941804,0.393107][-1.68465,2.41844,1.2393][-0.637519,0.74223,0.206554][0.603812,0.968333,0.295174][-1.67598,2.5321,0.133207][-0.638717,0.767085,-0.060177][0.557718,0.972136,0.264383][-1.67598,2.5321,0.133207][-0.638717,0.767085,-0.060177][0.557718,0.972136,0.264383][-2.06121,1.86076,-0.914043][-0.753349,0.611697,-0.24144][0.52315,0.949679,0.357594][-2.31507,1.62432,1.35672][-0.822298,0.529142,0.209367][0.596786,0.941804,0.393107][1.18211,1.97678,-1.92108][0.424607,0.680012,-0.59774][0.939162,0.953496,0.335839][0.854599,2.66898,-1.13019][0.328856,0.852093,-0.407176][0.93334,0.976636,0.222818][1.48498,2.58631,-0.378302][0.576043,0.796121,-0.185382][0.879595,0.973926,0.249417][1.48498,2.58631,-0.378302][0.576043,0.796121,-0.185382][0.879595,0.973926,0.249417][2.04417,1.86183,-0.914016][0.770592,0.582752,-0.258046][0.889179,0.949713,0.357601][1.18211,1.97678,-1.92108][0.424607,0.680012,-0.59774][0.939162,0.953496,0.335839][0.908015,2.87838,1.02556][-0.38203,-0.911552,-0.152072][0.793098,0.986152,0.180661][0.659445,2.99388,-0.0049752][-0.303885,-0.944993,0.121004][0.882272,0.990041,0.114093][1.19598,2.6064,-0.798711][-0.433228,-0.839823,0.327125][0.905727,0.97546,0.235415][1.19598,2.6064,-0.798711][-0.433228,-0.839823,0.327125][0.905727,0.97546,0.235415][1.63843,2.50743,0.135175][-0.63704,-0.76867,0.0576683][0.854613,0.97214,0.264384][0.908015,2.87838,1.02556][-0.38203,-0.911552,-0.152072][0.793098,0.986152,0.180661][-0.255197,2.79585,1.76021][0.114768,-0.899523,-0.42153][0.688975,0.983359,0.211932][0.664329,2.82583,1.4959][-0.238599,-0.894407,-0.378294][0.757663,0.984374,0.202294][1.21034,2.29928,2.14866][-0.439818,-0.750921,-0.492623][0.767258,0.965103,0.315777][1.21034,2.29928,2.14866][-0.439818,-0.750921,-0.492623][0.767258,0.965103,0.315777][0.438879,2.24533,2.64434][-0.173261,-0.743249,-0.64619][0.726838,0.963279,0.32045][-0.255197,2.79585,1.76021][0.114768,-0.899523,-0.42153][0.688975,0.983359,0.211932][2.72368,-1.91083,2.14969][0.288438,-0.781782,-0.55283][0.802678,0.820159,0.50546][2.98228,-1.8101,1.17919][0.0748322,-0.9924,-0.0976818][0.827102,0.827363,0.497846][3.00196,-0.551801,1.33149][0.983242,0.0861862,0.160644][0.823672,0.868735,0.498509][3.00196,-0.551801,1.33149][0.983242,0.0861862,0.160644][0.823672,0.868735,0.498509][2.70933,-0.655958,2.29781][0.899826,0.0813286,0.428601][0.799424,0.865216,0.506771][2.72368,-1.91083,2.14969][0.288438,-0.781782,-0.55283][0.802678,0.820159,0.50546][1.41373,0.381135,3.37473][-0.39969,-0.284206,-0.871478][0.752939,0.900369,0.466782][1.99854,0.43775,2.9042][-0.693526,-0.287965,-0.660376][0.774756,0.90228,0.472792][2.19752,-0.745633,3.03476][-0.741082,-0.120016,-0.660601][0.776896,0.862291,0.50717][2.19752,-0.745633,3.03476][-0.741082,-0.120016,-0.660601][0.776896,0.862291,0.50717][1.55476,-0.809377,3.54699][-0.484256,-0.128817,-0.865391][0.754567,0.860132,0.497506][1.41373,0.381135,3.37473][-0.39969,-0.284206,-0.871478][0.752939,0.900369,0.466782][-0.00853658,1.99548,-2.2333][0.00455787,-0.689794,0.723991][0.417959,0.954904,0.32082][-1.18519,1.95443,-1.90145][0.38228,-0.664419,0.642191][0.473167,0.953462,0.335839][-0.00854754,1.06991,-2.85347][0.0593711,-0.453352,0.889352][0.417959,0.924165,0.40137][-0.00854754,1.06991,-2.85347][0.0593711,-0.453352,0.889352][0.417959,0.924165,0.40137][0.723007,1.06006,-2.76797][-0.226942,-0.455555,0.860795][0.386566,0.928436,0.383788][-0.00853658,1.99548,-2.2333][0.00455787,-0.689794,0.723991][0.417959,0.954904,0.32082][-0.00848675,1.08447,-2.8822][-0.0594006,0.453391,-0.88933][0.417959,0.924165,0.40137][-1.19916,1.97582,-1.92106][-0.382286,0.664487,-0.642117][0.473167,0.953462,0.335839][-0.00848317,2.01722,-2.25707][-0.015346,0.680426,-0.732656][0.417959,0.954904,0.32082][-0.00848317,2.01722,-2.25707][-0.015346,0.680426,-0.732656][0.417959,0.954904,0.32082][0.73041,1.07477,-2.79565][0.227024,0.45557,-0.860765][0.386626,0.928454,0.383751][-0.00848675,1.08447,-2.8822][-0.0594006,0.453391,-0.88933][0.417959,0.924165,0.40137][1.10628,-0.513962,-3.23725][-0.164452,0.79659,0.581722][0.589987,0.692542,-0.0777362][1.08057,-1.2029,-3.44999][-0.197916,-0.292845,0.935452][0.594789,0.63095,-0.159194][1.81245,-1.2805,-3.15422][-0.428559,-0.681017,0.593762][0.522162,0.624156,-0.0361435][1.81245,-1.2805,-3.15422][-0.428559,-0.681017,0.593762][0.522162,0.624156,-0.0361435][2.00537,-0.658583,-2.86796][-0.570297,0.236533,0.786647][0.502088,0.67918,0.0819121][1.10628,-0.513962,-3.23725][-0.164452,0.79659,0.581722][0.589987,0.692542,-0.0777362][1.82628,-1.29085,-3.18141][0.334053,-0.701415,-0.629624][0.522162,0.624156,-0.0361435][1.36942,-1.19623,-3.39371][0.303365,-0.256407,-0.917728][0.567099,0.632445,-0.123709][1.1271,-0.544049,-3.30849][0.227165,0.654164,-0.721433][0.590659,0.687583,-0.0911573][1.1271,-0.544049,-3.30849][0.227165,0.654164,-0.721433][0.590659,0.687583,-0.0911573][2.01737,-0.63714,-2.88878][0.302402,0.886103,-0.351248][0.502088,0.67918,0.0819121][1.82628,-1.29085,-3.18141][0.334053,-0.701415,-0.629624][0.522162,0.624156,-0.0361435][-2.72937,0.809228,-0.526463][-0.912973,0.383089,-0.140443][0.541767,0.91445,0.442907][-2.98908,-0.335302,-0.821583][-0.970915,0.139357,-0.194687][0.536547,0.875986,0.492742][-3.10467,-0.444316,0.24907][-0.994477,0.10484,-0.00499579][0.562608,0.872353,0.491754][-3.10467,-0.444316,0.24907][-0.994477,0.10484,-0.00499579][0.562608,0.872353,0.491754][-2.83416,0.710693,0.427515][-0.933227,0.359152,0.00984636][0.567348,0.911166,0.449126][-2.72937,0.809228,-0.526463][-0.912973,0.383089,-0.140443][0.541767,0.91445,0.442907][-1.5875,-0.806385,3.57499][-0.483829,0.125383,0.866135][0.657764,0.860131,0.497508][-1.44585,0.389938,3.40179][-0.467592,0.274157,0.840354][0.659392,0.900368,0.466782][-2.03792,0.446905,2.92548][-0.692792,0.288049,0.661111][0.637575,0.902276,0.472791][-2.03792,0.446905,2.92548][-0.692792,0.288049,0.661111][0.637575,0.902276,0.472791][-2.23831,-0.742827,3.05632][-0.743371,0.115351,0.658857][0.635435,0.862282,0.507168][-1.5875,-0.806385,3.57499][-0.483829,0.125383,0.866135][0.657764,0.860131,0.497508][-0.92508,2.87837,1.02556][0.386356,-0.907664,-0.163936][0.619233,0.986152,0.180661][-0.255197,2.79585,1.76021][0.114768,-0.899523,-0.42153][0.688975,0.983359,0.211932][-0.455945,2.24533,2.64434][0.162732,-0.721127,-0.67342][0.685493,0.963279,0.32045][-0.455945,2.24533,2.64434][0.162732,-0.721127,-0.67342][0.685493,0.963279,0.32045][-1.2274,2.29927,2.14866][0.451215,-0.757735,-0.471426][0.645073,0.965103,0.315777][-0.92508,2.87837,1.02556][0.386356,-0.907664,-0.163936][0.619233,0.986152,0.180661][-1.57183,-0.809415,3.54701][0.483101,-0.129478,-0.865938][0.657764,0.860131,0.497508][-2.21458,-0.745888,3.03476][0.740967,-0.1218,-0.660403][0.635435,0.862282,0.507168][-2.0156,0.437629,2.90419][0.69284,-0.287989,-0.661086][0.637575,0.902276,0.472791][-2.0156,0.437629,2.90419][0.69284,-0.287989,-0.661086][0.637575,0.902276,0.472791][-1.4308,0.38111,3.37473][0.467549,-0.274087,-0.840402][0.659392,0.900368,0.466782][-1.57183,-0.809415,3.54701][0.483101,-0.129478,-0.865938][0.657764,0.860131,0.497508][3.00196,-0.551801,1.33149][0.983242,0.0861862,0.160644][0.823672,0.868735,0.498509][2.73615,0.613696,1.38403][0.928861,0.300919,0.216023][0.819989,0.907907,0.460004][2.46674,0.523013,2.24157][0.851974,0.293591,0.433525][0.796686,0.904845,0.470102][2.46674,0.523013,2.24157][0.851974,0.293591,0.433525][0.796686,0.904845,0.470102][2.70933,-0.655958,2.29781][0.899826,0.0813286,0.428601][0.799424,0.865216,0.506771][3.00196,-0.551801,1.33149][0.983242,0.0861862,0.160644][0.823672,0.868735,0.498509][1.22534,2.32315,2.16424][0.457694,0.752152,0.474114][0.767258,0.965103,0.315777][1.69374,1.49,2.6354][0.581599,0.508555,0.634913][0.771921,0.937265,0.410007][2.069,1.55159,2.06121][0.749511,0.527883,0.399465][0.793218,0.939346,0.404553][-0.00848675,1.08447,-2.8822][-0.0594006,0.453391,-0.88933][0.417959,0.924165,0.40137][-0.00859284,-0.0422886,-3.28971][-0.0102989,0.23396,-0.972192][0.418545,0.885783,0.454015][-1.57275,-0.0979437,-2.95235][-0.427708,0.240304,-0.871389][0.468385,0.883883,0.480213][-1.57275,-0.0979437,-2.95235][-0.427708,0.240304,-0.871389][0.468385,0.883883,0.480213][-1.43029,1.03538,-2.52641][-0.41572,0.465541,-0.781312][0.47029,0.921933,0.421389][-0.00848675,1.08447,-2.8822][-0.0594006,0.453391,-0.88933][0.417959,0.924165,0.40137][-1.55765,-0.105826,-2.92501][0.42674,-0.254021,0.867967][0.468385,0.883883,0.480213][-0.00855684,-0.0499884,-3.25844][0.010488,-0.247791,0.968757][0.418545,0.885783,0.454015][-0.00854754,1.06991,-2.85347][0.0593711,-0.453352,0.889352][0.417959,0.924165,0.40137][-0.00854754,1.06991,-2.85347][0.0593711,-0.453352,0.889352][0.417959,0.924165,0.40137][-1.4151,1.02057,-2.50218][0.41565,-0.465469,0.781392][0.47029,0.921933,0.421389][-1.55765,-0.105826,-2.92501][0.42674,-0.254021,0.867967][0.468385,0.883883,0.480213][-0.86097,2.6414,-1.11724][0.346937,-0.852416,0.391181][0.478991,0.976632,0.222818][-0.00853372,2.67096,-1.37827][-0.0543431,-0.863813,0.500873][0.418545,0.977623,0.209848][-0.252964,3.0251,-0.276615][0.0559354,-0.975231,0.213998][0.483224,0.990919,0.0836956][-0.252964,3.0251,-0.276615][0.0559354,-0.975231,0.213998][0.483224,0.990919,0.0836956][-0.67651,2.99387,-0.00497636][0.315261,-0.943841,0.0988625][0.519327,0.991989,0.0752363][-0.86097,2.6414,-1.11724][0.346937,-0.852416,0.391181][0.478991,0.976632,0.222818][-2.07647,-1.32677,-2.98906][-0.556518,-0.824993,0.0983586][0.908356,0.621142,0.0416103][-2.53264,-1.31582,-2.40027][-0.178485,-0.968674,0.172665][0.96449,0.621165,0.270905][-2.48008,-0.456403,-2.45134][-0.423771,0.804162,-0.416824][0.949377,0.69505,0.261321][-2.48008,-0.456403,-2.45134][-0.423771,0.804162,-0.416824][0.949377,0.69505,0.261321][-2.02749,-0.637553,-2.88438][-0.258801,0.887514,-0.381237][0.904492,0.67918,0.0836054][-2.07647,-1.32677,-2.98906][-0.556518,-0.824993,0.0983586][0.908356,0.621142,0.0416103][-2.46373,-0.479227,-2.43556][0.441725,-0.779746,0.443706][0.949377,0.69505,0.261321][-2.53264,-1.31582,-2.40027][-0.178485,-0.968674,0.172665][0.96449,0.621165,0.270905][-2.07647,-1.32677,-2.98906][-0.556518,-0.824993,0.0983586][0.908356,0.621142,0.0416103][-2.07647,-1.32677,-2.98906][-0.556518,-0.824993,0.0983586][0.908356,0.621142,0.0416103][-2.01459,-0.658714,-2.86381][0.550908,0.262175,0.792316][0.904492,0.67918,0.0836054][-2.46373,-0.479227,-2.43556][0.441725,-0.779746,0.443706][0.949377,0.69505,0.261321][-0.00925016,-3.12142,-4.2633][0.00187032,-0.0583768,-0.998293][0.703683,0.461663,-0.484362][-0.451937,-3.03884,-4.13036][-0.758851,-0.288884,-0.583688][0.74612,0.469344,-0.43131][-0.341943,-1.57247,-3.68638][-0.944786,0.326683,-0.025629][0.736048,0.597552,-0.244576][-0.341943,-1.57247,-3.68638][-0.944786,0.326683,-0.025629][0.736048,0.597552,-0.244576][-0.00879216,-1.873,-3.84724][0.000610863,0.307222,-0.951638][0.703608,0.570518,-0.311791][-0.00925016,-3.12142,-4.2633][0.00187032,-0.0583768,-0.998293][0.703683,0.461663,-0.484362][-0.354728,-1.89111,-3.7113][-0.509955,-0.190196,0.838911][0.735696,0.570659,-0.271042][-0.541291,-2.87331,-3.97814][-0.885305,-0.0583656,0.461334][0.756682,0.485789,-0.393863][-0.00936389,-3.12177,-4.23109][0.219977,-0.149409,0.963995][0.703683,0.461663,-0.484362][-0.00936389,-3.12177,-4.23109][0.219977,-0.149409,0.963995][0.703683,0.461663,-0.484362][-0.00856781,-0.799415,-3.5027][-0.05723,-0.650516,0.757334][0.703707,0.666717,-0.182178][-0.354728,-1.89111,-3.7113][-0.509955,-0.190196,0.838911][0.735696,0.570659,-0.271042][-0.256057,3.05646,-0.283245][-0.0559598,0.975236,-0.21397][0.483224,0.990919,0.0836956][-0.00851035,2.69909,-1.39395][0.007939,0.870726,-0.491705][0.418545,0.977623,0.209848][-0.871634,2.66893,-1.13011][-0.346904,0.852363,-0.391325][0.478991,0.976632,0.222818][-0.871634,2.66893,-1.13011][-0.346904,0.852363,-0.391325][0.478991,0.976632,0.222818][-0.685187,3.02461,-0.00905514][-0.31525,0.943844,-0.0988721][0.519338,0.991987,0.0752613][-0.256057,3.05646,-0.283245][-0.0559598,0.975236,-0.21397][0.483224,0.990919,0.0836956][-2.42346,-4.4535,3.25287][-0.493792,-0.827457,-0.267366][0.635153,0.737567,0.552435][-1.7219,-4.94565,3.82787][-0.373306,-0.927113,-0.0332379][0.657654,0.721041,0.542805][-1.5875,-0.806385,3.57499][-0.483829,0.125383,0.866135][0.657764,0.860131,0.497508][-1.5875,-0.806385,3.57499][-0.483829,0.125383,0.866135][0.657764,0.860131,0.497508][-2.23831,-0.742827,3.05632][-0.743371,0.115351,0.658857][0.635435,0.862282,0.507168][-2.42346,-4.4535,3.25287][-0.493792,-0.827457,-0.267366][0.635153,0.737567,0.552435][-1.7219,-4.94565,3.82787][-0.373306,-0.927113,-0.0332379][0.657654,0.721041,0.542805][-1.57183,-0.809415,3.54701][0.483101,-0.129478,-0.865938][0.657764,0.860131,0.497508][-0.818018,-0.847975,3.82964][0.228139,-0.121896,-0.965968][0.68127,0.85883,0.484014][-0.818018,-0.847975,3.82964][0.228139,-0.121896,-0.965968][0.68127,0.85883,0.484014][-0.891549,-5.20984,4.17554][-0.217624,-0.96973,0.110744][0.681568,0.712153,0.532181][-1.7219,-4.94565,3.82787][-0.373306,-0.927113,-0.0332379][0.657654,0.721041,0.542805][2.98228,-1.8101,1.17919][0.0748322,-0.9924,-0.0976818][0.827102,0.827363,0.497846][2.99716,-1.57644,-1.05316][0.140279,-0.980848,-0.135129][0.880729,0.834851,0.506853][3.00196,-0.551801,1.33149][0.983242,0.0861862,0.160644][0.823672,0.868735,0.498509][-2.03118,-2.04742,-3.17521][0.539991,0.812782,-0.218622][0.913798,0.415907,-0.0480802][-2.35775,-2.61402,-3.05478][0.501833,-0.629167,-0.59356][0.948136,0.366334,-0.000633851][-1.72522,-2.26719,-3.44731][0.536945,0.830073,-0.150563][0.880084,0.396735,-0.150355][-1.77481,-3.27874,-3.64147][-0.239074,-0.968747,-0.0661302][0.887846,0.306096,-0.242448][-2.35775,-2.61402,-3.05478][0.501833,-0.629167,-0.59356][0.948136,0.366334,-0.000633851][-2.52615,-1.86143,-2.7503][-0.765508,0.191772,-0.614183][0.95832,0.432872,0.139074][-2.52615,-1.86143,-2.7503][-0.765508,0.191772,-0.614183][0.95832,0.432872,0.139074][-1.71271,-2.77812,-3.62941][-0.484717,0.1672,-0.858541][0.877604,0.350909,-0.222478][-1.77481,-3.27874,-3.64147][-0.239074,-0.968747,-0.0661302][0.887846,0.306096,-0.242448][2.02003,1.8427,-0.904589][-0.776274,-0.57616,0.255811][0.889179,0.949713,0.357601][2.27127,1.60816,1.34956][-0.83891,-0.518996,-0.163931][0.815545,0.941813,0.39311][1.63843,2.50743,0.135175][-0.63704,-0.76867,0.0576683][0.854613,0.97214,0.264384][1.63843,2.50743,0.135175][-0.63704,-0.76867,0.0576683][0.854613,0.97214,0.264384][1.19598,2.6064,-0.798711][-0.433228,-0.839823,0.327125][0.905727,0.97546,0.235415][2.02003,1.8427,-0.904589][-0.776274,-0.57616,0.255811][0.889179,0.949713,0.357601][0.723007,1.06006,-2.76797][-0.226942,-0.455555,0.860795][0.967031,0.923273,0.407571][1.39823,1.02645,-2.50196][-0.471706,-0.46173,0.751199][0.942032,0.92213,0.421385][1.16815,1.95546,-1.9014][-0.400364,-0.702589,0.588284][0.939162,0.953496,0.335839][1.16815,1.95546,-1.9014][-0.400364,-0.702589,0.588284][0.939162,0.953496,0.335839][-0.00853658,1.99548,-2.2333][0.00455787,-0.689794,0.723991][0.993787,0.954847,0.32082][0.723007,1.06006,-2.76797][-0.226942,-0.455555,0.860795][0.967031,0.923273,0.407571][-1.21441,1.44321,3.04849][-0.3597,0.497184,0.789572][0.661633,0.935698,0.40906][-1.44585,0.389938,3.40179][-0.467592,0.274157,0.840354][0.659392,0.900368,0.466782][-0.752537,0.354617,3.67385][-0.150052,0.288392,0.945682][0.682233,0.8992,0.457578][-0.752537,0.354617,3.67385][-0.150052,0.288392,0.945682][0.682233,0.8992,0.457578][0.615982,1.41402,3.29278][0.178987,0.4545,0.872579][0.728786,0.934731,0.405194][-1.21441,1.44321,3.04849][-0.3597,0.497184,0.789572][0.661633,0.935698,0.40906][0.444174,2.26902,2.66551][0.173335,0.743267,0.64615][0.726838,0.963279,0.32045][0.615982,1.41402,3.29278][0.178987,0.4545,0.872579][0.728786,0.934731,0.405194][1.69374,1.49,2.6354][0.581599,0.508555,0.634913][0.771921,0.937265,0.410007][1.69374,1.49,2.6354][0.581599,0.508555,0.634913][0.771921,0.937265,0.410007][1.22534,2.32315,2.16424][0.457694,0.752152,0.474114][0.767258,0.965103,0.315777][0.444174,2.26902,2.66551][0.173335,0.743267,0.64615][0.726838,0.963279,0.32045][2.40259,-1.68555,-2.73483][0.352773,-0.39046,0.850348][0.461055,0.448516,0.140444][1.77322,-2.27824,-3.37575][-0.691214,0.684591,-0.231429][0.525166,0.395634,-0.135005][2.42353,-2.64406,-2.96341][0.5471,-0.739539,0.392126][0.458855,0.364514,0.0318297][1.36428,-2.90099,-3.73586][-0.609698,-0.779951,-0.141224][0.567266,0.340085,-0.281055][0.0112598,-3.0023,-4.02092][0.163571,-0.940429,-0.298057][0.705606,0.33136,-0.400037][1.08363,-2.55392,-3.82303][0.249001,0.255424,-0.934215][0.598167,0.370689,-0.302142][1.77322,-2.27824,-3.37575][-0.691214,0.684591,-0.231429][0.525166,0.395634,-0.135005][2.31656,-2.33834,-3.10279][0.684311,0.181116,-0.70634][0.475594,0.390395,-0.0061792][1.76659,-2.79431,-3.58592][0.494291,0.190966,-0.848062][0.530095,0.349588,-0.204385][1.36428,-2.90099,-3.73586][-0.609698,-0.779951,-0.141224][0.567266,0.340085,-0.281055][1.75176,-2.80025,-3.55795][-0.497188,-0.218758,0.839612][0.530095,0.349588,-0.204385][1.07545,-2.56283,-3.79318][-0.238928,-0.250553,0.938156][0.598167,0.370689,-0.302142][1.07545,-2.56283,-3.79318][-0.238928,-0.250553,0.938156][0.598167,0.370689,-0.302142][0.0112598,-3.0023,-4.02092][0.163571,-0.940429,-0.298057][0.705606,0.33136,-0.400037][1.36428,-2.90099,-3.73586][-0.609698,-0.779951,-0.141224][0.567266,0.340085,-0.281055][-2.72636,-0.657215,2.2978][-0.90153,0.0759814,0.425993][0.612908,0.865182,0.506761][-2.48376,0.522623,2.24158][-0.8476,0.306749,0.432989][0.615645,0.904831,0.470097][-2.75316,0.612632,1.38395][-0.929328,0.301052,0.213818][0.592342,0.907871,0.459991][-2.75316,0.612632,1.38395][-0.929328,0.301052,0.213818][0.592342,0.907871,0.459991][-3.01888,-0.554783,1.33142][-0.977118,0.0856493,0.194692][0.588658,0.868638,0.498481][-2.72636,-0.657215,2.2978][-0.90153,0.0759814,0.425993][0.612908,0.865182,0.506761][-2.72322,0.602955,1.37705][0.930523,-0.32532,-0.168206][0.592342,0.907871,0.459991][-2.45634,0.513142,2.22759][0.847694,-0.306635,-0.432885][0.615645,0.904831,0.470097][-2.69739,-0.66026,2.28405][0.900102,-0.0883682,-0.426623][0.612908,0.865182,0.506761][-2.69739,-0.66026,2.28405][0.900102,-0.0883682,-0.426623][0.612908,0.865182,0.506761][-2.98748,-0.558146,1.3251][0.975787,-0.0987669,-0.195151][0.588658,0.868638,0.498481][-2.72322,0.602955,1.37705][0.930523,-0.32532,-0.168206][0.592342,0.907871,0.459991][1.22534,2.32315,2.16424][0.457694,0.752152,0.474114][0.767258,0.965103,0.315777][0.672723,2.85499,1.50668][0.23229,0.89561,0.379374][0.757663,0.984374,0.202294][-0.258091,2.82501,1.77359][-0.114628,0.899521,0.421571][0.688975,0.983359,0.211932][-0.258091,2.82501,1.77359][-0.114628,0.899521,0.421571][0.688975,0.983359,0.211932][0.444174,2.26902,2.66551][0.173335,0.743267,0.64615][0.726838,0.963279,0.32045][1.22534,2.32315,2.16424][0.457694,0.752152,0.474114][0.767258,0.965103,0.315777][-0.00853252,3.15891,0.769311][-0.00138386,0.993782,0.111335][0.706166,0.993053,0.0869679][0.919976,2.90768,1.03153][0.391902,0.905988,0.159996][0.793098,0.986152,0.180661][0.66806,3.02465,-0.00901499][0.269422,0.955691,-0.118599][0.882272,0.990041,0.114093][-0.341943,-1.57247,-3.68638][-0.944786,0.326683,-0.025629][0.736048,0.597552,-0.244576][-0.354728,-1.89111,-3.7113][-0.509955,-0.190196,0.838911][0.735696,0.570659,-0.271042][-0.00856781,-0.799415,-3.5027][-0.05723,-0.650516,0.757334][0.703707,0.666717,-0.182178][-0.00856781,-0.799415,-3.5027][-0.05723,-0.650516,0.757334][0.703707,0.666717,-0.182178][-0.54234,-0.61218,-3.43384][-0.78383,0.589005,0.196683][0.757514,0.681655,-0.142525][-0.341943,-1.57247,-3.68638][-0.944786,0.326683,-0.025629][0.736048,0.597552,-0.244576][-0.00879645,-0.779034,-3.52763][-0.00136541,0.730209,-0.683223][0.703707,0.666717,-0.182178][-0.00879216,-1.873,-3.84724][0.000610863,0.307222,-0.951638][0.703608,0.570518,-0.311791][-0.341943,-1.57247,-3.68638][-0.944786,0.326683,-0.025629][0.736048,0.597552,-0.244576][-0.341943,-1.57247,-3.68638][-0.944786,0.326683,-0.025629][0.736048,0.597552,-0.244576][-0.54234,-0.61218,-3.43384][-0.78383,0.589005,0.196683][0.757514,0.681655,-0.142525][-0.00879645,-0.779034,-3.52763][-0.00136541,0.730209,-0.683223][0.703707,0.666717,-0.182178][-0.008497,-5.31969,4.2633][0.00627822,-0.992315,0.123581][0.706165,0.708455,0.524354][0.870744,-5.18836,4.1793][0.213488,-0.969762,0.11826][0.730766,0.712153,0.532185][0.808338,-0.845302,3.86088][0.208299,0.161845,0.964582][0.731061,0.85883,0.484014][0.808338,-0.845302,3.86088][0.208299,0.161845,0.964582][0.731061,0.85883,0.484014][-0.0085578,-0.858232,3.94886][0.0168336,0.154895,0.987788][0.706165,0.858398,0.477533][-0.008497,-5.31969,4.2633][0.00627822,-0.992315,0.123581][0.706165,0.708455,0.524354][-0.825413,-0.845228,3.86087][-0.228552,0.11813,0.966338][0.68127,0.85883,0.484014][-1.5875,-0.806385,3.57499][-0.483829,0.125383,0.866135][0.657764,0.860131,0.497508][-1.7219,-4.94565,3.82787][-0.373306,-0.927113,-0.0332379][0.657654,0.721041,0.542805][-1.7219,-4.94565,3.82787][-0.373306,-0.927113,-0.0332379][0.657654,0.721041,0.542805][-0.891549,-5.20984,4.17554][-0.217624,-0.96973,0.110744][0.681568,0.712153,0.532181][-0.825413,-0.845228,3.86087][-0.228552,0.11813,0.966338][0.68127,0.85883,0.484014][2.97057,-0.555304,1.32523][-0.981903,-0.0986961,-0.161633][0.823672,0.868735,0.498509][2.68037,-0.659257,2.28409][-0.898331,-0.0938876,-0.429169][0.799424,0.865216,0.506771][2.4393,0.513558,2.22761][-0.852029,-0.293564,-0.433435][0.796686,0.904845,0.470102][2.4393,0.513558,2.22761][-0.852029,-0.293564,-0.433435][0.796686,0.904845,0.470102][2.70622,0.604022,1.3771][-0.928893,-0.300885,-0.215932][0.819989,0.907907,0.460004][2.97057,-0.555304,1.32523][-0.981903,-0.0986961,-0.161633][0.823672,0.868735,0.498509][1.67382,1.47381,2.61594][-0.581608,-0.508438,-0.634998][0.771921,0.937265,0.410007][0.609165,1.39859,3.26534][-0.178996,-0.454592,-0.872529][0.728786,0.934731,0.405194][0.438879,2.24533,2.64434][-0.173261,-0.743249,-0.64619][0.726838,0.963279,0.32045][0.438879,2.24533,2.64434][-0.173261,-0.743249,-0.64619][0.726838,0.963279,0.32045][1.21034,2.29928,2.14866][-0.439818,-0.750921,-0.492623][0.767258,0.965103,0.315777][1.67382,1.47381,2.61594][-0.581608,-0.508438,-0.634998][0.771921,0.937265,0.410007][2.63919,-1.45666,-1.95596][0.043749,-0.979846,-0.194904][0.904015,0.838595,0.513207][2.16726,-1.26241,-2.65097][0.0536263,-0.963231,-0.26327][0.92511,0.841307,0.51403][2.18956,-0.136777,-2.47504][0.721743,0.224261,-0.654824][0.921986,0.882576,0.494126][2.18956,-0.136777,-2.47504][0.721743,0.224261,-0.654824][0.921986,0.882576,0.494126][2.66852,-0.221047,-1.75679][0.888406,0.188255,-0.418683][0.899874,0.879791,0.496951][2.63919,-1.45666,-1.95596][0.043749,-0.979846,-0.194904][0.904015,0.838595,0.513207][1.54126,-1.19368,-3.08928][0.0286226,-0.974136,-0.22414][0.945874,0.846984,0.50027][0.800955,-1.15171,-3.32259][0.02711,-0.975358,-0.218955][0.968682,0.847664,0.481541][1.55617,-0.0781624,-2.95156][0.435901,0.238118,-0.867923][0.943923,0.884533,0.480188][-1.4308,0.38111,3.37473][0.467549,-0.274087,-0.840402][0.659392,0.900368,0.466782][-2.0156,0.437629,2.90419][0.69284,-0.287989,-0.661086][0.637575,0.902276,0.472791][-1.69089,1.47376,2.61594][0.640702,-0.512259,-0.571919][0.64041,0.937263,0.410006][-1.69089,1.47376,2.61594][0.640702,-0.512259,-0.571919][0.64041,0.937263,0.410006][-1.2007,1.42739,3.02401][0.359604,-0.497046,-0.789703][0.661633,0.935698,0.40906][-1.4308,0.38111,3.37473][0.467549,-0.274087,-0.840402][0.659392,0.900368,0.466782][-0.745212,0.346337,3.6436][0.149944,-0.288075,-0.945796][0.682233,0.8992,0.457578][-1.4308,0.38111,3.37473][0.467549,-0.274087,-0.840402][0.659392,0.900368,0.466782][-1.2007,1.42739,3.02401][0.359604,-0.497046,-0.789703][0.661633,0.935698,0.40906][-1.2007,1.42739,3.02401][0.359604,-0.497046,-0.789703][0.661633,0.935698,0.40906][0.609165,1.39859,3.26534][-0.178996,-0.454592,-0.872529][0.728786,0.934731,0.405194][-0.745212,0.346337,3.6436][0.149944,-0.288075,-0.945796][0.682233,0.8992,0.457578][2.01737,-0.63714,-2.88878][0.302402,0.886103,-0.351248][0.502088,0.67918,0.0819121][2.30603,-1.35544,-2.67871][0.0133269,0.998873,0.0455621][0.469625,0.616293,0.146916][1.82628,-1.29085,-3.18141][0.334053,-0.701415,-0.629624][0.522162,0.624156,-0.0361435][1.81245,-1.2805,-3.15422][-0.428559,-0.681017,0.593762][0.522162,0.624156,-0.0361435][2.30603,-1.35544,-2.67871][0.0133269,0.998873,0.0455621][0.469625,0.616293,0.146916][2.29048,-0.893622,-2.74052][-0.685749,-0.153075,0.711559][0.47529,0.658035,0.135558][1.08057,-1.2029,-3.44999][-0.197916,-0.292845,0.935452][0.594789,0.63095,-0.159194][1.10628,-0.513962,-3.23725][-0.164452,0.79659,0.581722][0.589987,0.692542,-0.0777362][0.516769,-0.579279,-3.36165][-0.266468,0.888542,0.37348][0.649125,0.686795,-0.12839][0.516769,-0.579279,-3.36165][-0.266468,0.888542,0.37348][0.649125,0.686795,-0.12839][0.38228,-1.6276,-3.59829][0.531269,-0.671463,0.516616][0.664199,0.594115,-0.232697][1.08057,-1.2029,-3.44999][-0.197916,-0.292845,0.935452][0.594789,0.63095,-0.159194][1.36942,-1.19623,-3.39371][0.303365,-0.256407,-0.917728][0.567099,0.632445,-0.123709][0.324858,-1.57256,-3.68592][0.431786,0.0798375,-0.898436][0.671107,0.597524,-0.244351][1.1271,-0.544049,-3.30849][0.227165,0.654164,-0.721433][0.590659,0.687583,-0.0911573][0.0112598,-3.0023,-4.02092][0.163571,-0.940429,-0.298057][0.705606,0.33136,-0.400037][1.07545,-2.56283,-3.79318][-0.238928,-0.250553,0.938156][0.598167,0.370689,-0.302142][-0.350996,-2.02697,-3.69518][-0.300215,0.8934,0.334226][0.741539,0.419236,-0.272425][0.0105414,-1.9484,-3.66334][0.135934,0.934926,0.327773][0.705465,0.427719,-0.253798][1.08363,-2.55392,-3.82303][0.249001,0.255424,-0.934215][0.598167,0.370689,-0.302142][-0.344459,-2.47907,-3.92886][-0.0605202,0.300318,-0.951917][0.741064,0.377229,-0.345873][-0.816,-1.20604,-3.32152][-0.00926227,-0.977562,-0.210442][0.443632,0.846568,0.481662][-1.55971,-1.22356,-3.09222][-0.0483982,-0.97204,-0.229772][0.46641,0.845228,0.500385][-1.57275,-0.0979437,-2.95235][-0.427708,0.240304,-0.871389][0.468385,0.883883,0.480213][-1.57275,-0.0979437,-2.95235][-0.427708,0.240304,-0.871389][0.468385,0.883883,0.480213][-0.00859284,-0.0422886,-3.28971][-0.0102989,0.23396,-0.972192][0.418545,0.885783,0.454015][-0.816,-1.20604,-3.32152][-0.00926227,-0.977562,-0.210442][0.443632,0.846568,0.481662][0.800955,-1.15171,-3.32259][0.02711,-0.975358,-0.218955][0.968682,0.847664,0.481541][-0.00833535,-1.15829,-3.39294][0.0329048,-0.985969,-0.163651][0.993787,0.847443,0.472719][-0.00859284,-0.0422886,-3.28971][-0.0102989,0.23396,-0.972192][0.993787,0.885419,0.454015][-0.00859284,-0.0422886,-3.28971][-0.0102989,0.23396,-0.972192][0.993787,0.885419,0.454015][1.55617,-0.0781624,-2.95156][0.435901,0.238118,-0.867923][0.943923,0.884533,0.480188][0.800955,-1.15171,-3.32259][0.02711,-0.975358,-0.218955][0.968682,0.847664,0.481541][-0.67651,2.99387,-0.00497636][0.315261,-0.943841,0.0988625][0.530059,0.99004,0.114093][-0.252964,3.0251,-0.276615][0.0559354,-0.975231,0.213998][0.461387,0.991088,0.0868737][-0.00853252,3.1269,0.76574][0.00139843,-0.993784,-0.111314][0.706166,0.993053,0.0869679][2.22117,-0.742448,3.05639][0.743611,0.113681,0.658877][0.776896,0.862291,0.50717][2.3948,-4.50273,3.27422][0.482599,-0.843249,-0.236706][0.776682,0.735948,0.553191][2.65932,-4.00608,2.72783][0.416272,-0.640717,-0.645135][0.790576,0.752053,0.538167][2.65932,-4.00608,2.72783][0.416272,-0.640717,-0.645135][0.790576,0.752053,0.538167][2.72368,-1.91083,2.14969][0.288438,-0.781782,-0.55283][0.802678,0.820159,0.50546][2.22117,-0.742448,3.05639][0.743611,0.113681,0.658877][0.776896,0.862291,0.50717][-0.341943,-1.57247,-3.68638][-0.159574,0.219793,-0.962407][0.736048,0.597552,-0.244576][-1.10756,-1.21289,-3.47731][-0.159574,0.219793,-0.962407][0.812286,0.631101,-0.158534][-0.54234,-0.61218,-3.43384][-0.159574,0.219793,-0.962407][0.757514,0.681655,-0.142525][-0.54234,-0.61218,-3.43384][0.198702,-0.210269,0.957238][0.757514,0.681655,-0.142525][-1.0976,-1.20293,-3.44835][0.198702,-0.210269,0.957238][0.812286,0.631101,-0.158534][-0.341943,-1.57247,-3.68638][0.198702,-0.210269,0.957238][0.736048,0.597552,-0.244576][-0.00853252,3.15891,0.769311][-0.00138386,0.993782,0.111335][0.706166,0.993053,0.0869679][-0.256057,3.05646,-0.283245][-0.0559598,0.975236,-0.21397][0.461387,0.991088,0.0868737][-0.685187,3.02461,-0.00905514][-0.31525,0.943844,-0.0988721][0.530059,0.99004,0.114093][2.81724,0.712898,0.427679][0.927939,0.371671,-0.0281015][0.844981,0.911239,0.449152][3.00196,-0.551801,1.33149][0.983242,0.0861862,0.160644][0.823672,0.868735,0.498509][2.97265,-0.324133,-0.821012][0.975332,0.158585,-0.153549][0.875769,0.876361,0.492822][2.97265,-0.324133,-0.821012][0.975332,0.158585,-0.153549][0.875769,0.876361,0.492822][2.43268,0.905912,-1.37778][0.857545,0.408663,-0.312427][0.8952,0.917647,0.439838][2.81724,0.712898,0.427679][0.927939,0.371671,-0.0281015][0.844981,0.911239,0.449152][2.04417,1.86183,-0.914016][0.770592,0.582752,-0.258046][0.889179,0.949713,0.357601][1.48498,2.58631,-0.378302][0.576043,0.796121,-0.185382][0.879595,0.973926,0.249417][1.72152,2.47488,0.687547][0.67252,0.736309,0.074606][0.830857,0.97023,0.280058][1.72152,2.47488,0.687547][0.67252,0.736309,0.074606][0.830857,0.97023,0.280058][2.29803,1.62458,1.35675][0.822898,0.540065,0.176546][0.815545,0.941813,0.39311][2.04417,1.86183,-0.914016][0.770592,0.582752,-0.258046][0.889179,0.949713,0.357601][2.16637,-0.14457,-2.4541][-0.720524,-0.237504,0.651488][0.921986,0.882576,0.494126][2.16726,-1.26241,-2.65097][0.0536263,-0.963231,-0.26327][0.92511,0.841307,0.51403][2.63919,-1.45666,-1.95596][0.043749,-0.979846,-0.194904][0.904015,0.838595,0.513207][2.63919,-1.45666,-1.95596][0.043749,-0.979846,-0.194904][0.904015,0.838595,0.513207][2.63991,-0.227493,-1.74348][-0.886798,-0.200754,0.416278][0.899874,0.879791,0.496951][2.16637,-0.14457,-2.4541][-0.720524,-0.237504,0.651488][0.921986,0.882576,0.494126][1.54115,-0.086579,-2.92434][-0.434902,-0.252006,0.864496][0.943923,0.884533,0.480188][0.800955,-1.15171,-3.32259][0.02711,-0.975358,-0.218955][0.968682,0.847664,0.481541][1.54126,-1.19368,-3.08928][0.0286226,-0.974136,-0.22414][0.945874,0.846984,0.50027][-0.871634,2.66893,-1.13011][-0.346904,0.852363,-0.391325][0.478991,0.976632,0.222818][-1.68764,1.9261,-1.49761][-0.617116,0.649973,-0.443513][0.498383,0.951824,0.347492][-2.06121,1.86076,-0.914043][-0.753349,0.611697,-0.24144][0.52315,0.949679,0.357594][-2.06121,1.86076,-0.914043][-0.753349,0.611697,-0.24144][0.52315,0.949679,0.357594][-1.67598,2.5321,0.133207][-0.638717,0.767085,-0.060177][0.557718,0.972136,0.264383][-0.871634,2.66893,-1.13011][-0.346904,0.852363,-0.391325][0.478991,0.976632,0.222818][-2.0092,0.977614,-2.05507][-0.693371,0.439152,-0.571298][0.493709,0.920009,0.433654][-2.20578,-0.157306,-2.47586][-0.722728,0.213219,-0.65742][0.490315,0.881891,0.494094][-2.68483,-0.237788,-1.75733][-0.892732,0.176463,-0.414597][0.512432,0.879232,0.496875][-2.68483,-0.237788,-1.75733][-0.892732,0.176463,-0.414597][0.512432,0.879232,0.496875][-2.44946,0.900497,-1.37797][-0.84449,0.39599,-0.360595][0.517122,0.917467,0.439802][-2.0092,0.977614,-2.05507][-0.693371,0.439152,-0.571298][0.493709,0.920009,0.433654][-2.03704,1.84167,-0.904638][0.759174,-0.607627,0.233335][0.52315,0.949679,0.357594][-1.66769,1.90565,-1.48274][0.617197,-0.649815,0.443632][0.498383,0.951824,0.347492][-0.86097,2.6414,-1.11724][0.346937,-0.852416,0.391181][0.478991,0.976632,0.222818][-0.86097,2.6414,-1.11724][0.346937,-0.852416,0.391181][0.478991,0.976632,0.222818][-1.65549,2.50733,0.13517][0.638826,-0.766999,0.0601139][0.557718,0.972136,0.264383][-2.03704,1.84167,-0.904638][0.759174,-0.607627,0.233335][0.52315,0.949679,0.357594][-2.65614,-0.24403,-1.7441][0.891341,-0.189022,0.412047][0.512432,0.879232,0.496875][-2.18258,-0.16481,-2.45482][0.721399,-0.226725,0.654355][0.490315,0.881891,0.494094][-1.98687,0.963471,-2.03667][0.693404,-0.439133,0.571273][0.493709,0.920009,0.433654][-1.98687,0.963471,-2.03667][0.693404,-0.439133,0.571273][0.493709,0.920009,0.433654][-2.42226,0.887744,-1.36636][0.844541,-0.395959,0.360509][0.517122,0.917467,0.439802][-2.65614,-0.24403,-1.7441][0.891341,-0.189022,0.412047][0.512432,0.879232,0.496875][-1.55765,-0.105826,-2.92501][0.42674,-0.254021,0.867967][0.468385,0.883883,0.480213][-1.55971,-1.22356,-3.09222][-0.0483982,-0.97204,-0.229772][0.46641,0.845228,0.500385][-0.816,-1.20604,-3.32152][-0.00926227,-0.977562,-0.210442][0.443632,0.846568,0.481662][-0.816,-1.20604,-3.32152][-0.00926227,-0.977562,-0.210442][0.443632,0.846568,0.481662][-0.00855684,-0.0499884,-3.25844][0.010488,-0.247791,0.968757][0.418545,0.885783,0.454015][-1.55765,-0.105826,-2.92501][0.42674,-0.254021,0.867967][0.468385,0.883883,0.480213][-0.00855684,-0.0499884,-3.25844][0.010488,-0.247791,0.968757][0.993787,0.885419,0.454015][-0.00833535,-1.15829,-3.39294][0.0329048,-0.985969,-0.163651][0.993787,0.847443,0.472719][0.800955,-1.15171,-3.32259][0.02711,-0.975358,-0.218955][0.968682,0.847664,0.481541][0.800955,-1.15171,-3.32259][0.02711,-0.975358,-0.218955][0.968682,0.847664,0.481541][1.54115,-0.086579,-2.92434][-0.434902,-0.252006,0.864496][0.943923,0.884533,0.480188][-0.00855684,-0.0499884,-3.25844][0.010488,-0.247791,0.968757][0.993787,0.885419,0.454015][0.0112598,-3.0023,-4.02092][0.163571,-0.940429,-0.298057][0.705606,0.33136,-0.400037][-0.350996,-2.02697,-3.69518][-0.300215,0.8934,0.334226][0.741539,0.419236,-0.272425][-1.01799,-2.85904,-3.86573][-0.0347092,-0.973351,-0.226676][0.810463,0.344236,-0.335731][-0.344459,-2.47907,-3.92886][-0.0605202,0.300318,-0.951917][0.741064,0.377229,-0.345873][1.08363,-2.55392,-3.82303][0.249001,0.255424,-0.934215][0.598167,0.370689,-0.302142][0.0112598,-3.0023,-4.02092][0.163571,-0.940429,-0.298057][0.705606,0.33136,-0.400037][2.22117,-0.742448,3.05639][0.743611,0.113681,0.658877][0.776896,0.862291,0.50717][1.57047,-0.80641,3.57496][0.484869,0.124989,0.865609][0.754567,0.860132,0.497506][1.70448,-4.94586,3.82809][0.346794,-0.937678,-0.0222227][0.75468,0.721042,0.542812][1.70448,-4.94586,3.82809][0.346794,-0.937678,-0.0222227][0.75468,0.721042,0.542812][2.3948,-4.50273,3.27422][0.482599,-0.843249,-0.236706][0.776682,0.735948,0.553191][2.22117,-0.742448,3.05639][0.743611,0.113681,0.658877][0.776896,0.862291,0.50717][1.70448,-4.94586,3.82809][0.346794,-0.937678,-0.0222227][0.75468,0.721042,0.542812][1.55476,-0.809377,3.54699][-0.484256,-0.128817,-0.865391][0.754567,0.860132,0.497506][2.19752,-0.745633,3.03476][-0.741082,-0.120016,-0.660601][0.776896,0.862291,0.50717][2.19752,-0.745633,3.03476][-0.741082,-0.120016,-0.660601][0.776896,0.862291,0.50717][2.3948,-4.50273,3.27422][0.482599,-0.843249,-0.236706][0.776682,0.735948,0.553191][1.70448,-4.94586,3.82809][0.346794,-0.937678,-0.0222227][0.75468,0.721042,0.542812][-0.00853252,3.15891,0.769311][-0.00138386,0.993782,0.111335][0.706166,0.993053,0.0869679][0.66806,3.02465,-0.00901499][0.269422,0.955691,-0.118599][0.882272,0.990041,0.114093][-0.256057,3.05646,-0.283245][-0.0559598,0.975236,-0.21397][0.993787,0.991226,0.0825045][1.18211,1.97678,-1.92108][0.424607,0.680012,-0.59774][0.939162,0.953496,0.335839][1.41337,1.04126,-2.52622][0.471747,0.461754,-0.751158][0.942032,0.92213,0.421385][0.73041,1.07477,-2.79565][0.227024,0.45557,-0.860765][0.967031,0.923273,0.407571][0.73041,1.07477,-2.79565][0.227024,0.45557,-0.860765][0.967031,0.923273,0.407571][-0.00848317,2.01722,-2.25707][-0.015346,0.680426,-0.732656][0.993787,0.954847,0.32082][1.18211,1.97678,-1.92108][0.424607,0.680012,-0.59774][0.939162,0.953496,0.335839][2.42353,-2.64406,-2.96341][0.5471,-0.739539,0.392126][0.458855,0.364514,0.0318297][1.82332,-3.30817,-3.62292][0.170394,-0.976164,-0.134426][0.52203,0.303943,-0.222936][1.76659,-2.79431,-3.58592][0.494291,0.190966,-0.848062][0.530095,0.349588,-0.204385][1.76659,-2.79431,-3.58592][0.494291,0.190966,-0.848062][0.530095,0.349588,-0.204385][2.31656,-2.33834,-3.10279][0.684311,0.181116,-0.70634][0.475594,0.390395,-0.0061792][2.42353,-2.64406,-2.96341][0.5471,-0.739539,0.392126][0.458855,0.364514,0.0318297][1.75176,-2.80025,-3.55795][-0.497188,-0.218758,0.839612][0.530095,0.349588,-0.204385][2.42353,-2.64406,-2.96341][0.5471,-0.739539,0.392126][0.458855,0.364514,0.0318297][1.77322,-2.27824,-3.37575][-0.691214,0.684591,-0.231429][0.525166,0.395634,-0.135005][-0.00856781,-0.799415,-3.5027][-0.05723,-0.650516,0.757334][0.703707,0.666717,-0.182178][0.313026,-1.89965,-3.67878][0.247188,-0.219164,0.943857][0.670892,0.569552,-0.270567][0.38228,-1.6276,-3.59829][0.531269,-0.671463,0.516616][0.664199,0.594115,-0.232697][0.38228,-1.6276,-3.59829][0.531269,-0.671463,0.516616][0.664199,0.594115,-0.232697][0.516769,-0.579279,-3.36165][-0.266468,0.888542,0.37348][0.649125,0.686795,-0.12839][-0.00856781,-0.799415,-3.5027][-0.05723,-0.650516,0.757334][0.703707,0.666717,-0.182178][1.1271,-0.544049,-3.30849][0.227165,0.654164,-0.721433][0.590659,0.687583,-0.0911573][0.324858,-1.57256,-3.68592][0.431786,0.0798375,-0.898436][0.671107,0.597524,-0.244351][-0.00879645,-0.779034,-3.52763][-0.00136541,0.730209,-0.683223][0.703707,0.666717,-0.182178][1.21034,2.29928,2.14866][-0.439818,-0.750921,-0.492623][0.767258,0.965103,0.315777][1.64701,2.39466,1.23249][-0.636222,-0.743469,-0.206095][0.808519,0.968335,0.295174][2.04463,1.53529,2.04787][-0.753816,-0.511203,-0.412836][0.793218,0.939346,0.404553][2.04463,1.53529,2.04787][-0.753816,-0.511203,-0.412836][0.793218,0.939346,0.404553][1.67382,1.47381,2.61594][-0.581608,-0.508438,-0.634998][0.771921,0.937265,0.410007][1.21034,2.29928,2.14866][-0.439818,-0.750921,-0.492623][0.767258,0.965103,0.315777][1.19598,2.6064,-0.798711][-0.433228,-0.839823,0.327125][0.905727,0.97546,0.235415][-0.00853372,2.67096,-1.37827][-0.0543431,-0.863813,0.500873][0.993787,0.977623,0.209848][-0.00853658,1.99548,-2.2333][0.00455787,-0.689794,0.723991][0.993787,0.954847,0.32082][-0.00853658,1.99548,-2.2333][0.00455787,-0.689794,0.723991][0.993787,0.954847,0.32082][1.16815,1.95546,-1.9014][-0.400364,-0.702589,0.588284][0.939162,0.953496,0.335839][1.19598,2.6064,-0.798711][-0.433228,-0.839823,0.327125][0.905727,0.97546,0.235415][-0.252964,3.0251,-0.276615][0.0559354,-0.975231,0.213998][0.993787,0.991226,0.0825045][0.659445,2.99388,-0.0049752][-0.303885,-0.944993,0.121004][0.882272,0.990041,0.114093][-0.00853252,3.1269,0.76574][0.00139843,-0.993784,-0.111314][0.706166,0.993053,0.0869679][-2.98908,-0.335302,-0.821583][-0.970915,0.139357,-0.194687][0.536547,0.875986,0.492742][-2.68483,-0.237788,-1.75733][-0.892732,0.176463,-0.414597][0.512432,0.879232,0.496875][-2.65481,-1.50004,-1.95748][-0.0526979,-0.976424,-0.20933][0.508263,0.837125,0.513127][-2.65481,-1.50004,-1.95748][-0.0526979,-0.976424,-0.20933][0.508263,0.837125,0.513127][-2.97508,-1.60785,-1.04641][-0.0923388,-0.988834,-0.116964][0.531577,0.834215,0.506725][-2.98908,-0.335302,-0.821583][-0.970915,0.139357,-0.194687][0.536547,0.875986,0.492742][-2.99994,-1.81761,1.18484][-0.0620366,-0.99313,-0.0992225][0.585356,0.827108,0.498112][-3.01888,-0.554783,1.33142][-0.977118,0.0856493,0.194692][0.588658,0.868638,0.498481][-3.10467,-0.444316,0.24907][-0.994477,0.10484,-0.00499579][0.562608,0.872353,0.491754][-3.10467,-0.444316,0.24907][-0.994477,0.10484,-0.00499579][0.562608,0.872353,0.491754][-3.07552,-1.69118,0.0617105][-0.0450416,-0.993893,-0.100738][0.558104,0.830667,0.494434][-2.99994,-1.81761,1.18484][-0.0620366,-0.99313,-0.0992225][0.585356,0.827108,0.498112][-1.71075,1.48994,2.63546][-0.640589,0.512318,0.571992][0.64041,0.937263,0.410006][-1.24244,2.32306,2.16433][-0.451176,0.757693,0.471531][0.645073,0.965103,0.315777][-1.68465,2.41844,1.2393][-0.637519,0.74223,0.206554][0.603812,0.968333,0.295174][-1.68465,2.41844,1.2393][-0.637519,0.74223,0.206554][0.603812,0.968333,0.295174][-2.31507,1.62432,1.35672][-0.822298,0.529142,0.209367][0.596786,0.941804,0.393107][-1.71075,1.48994,2.63546][-0.640589,0.512318,0.571992][0.64041,0.937263,0.410006][-1.66408,2.39462,1.23249][0.637496,-0.74226,-0.206516][0.603812,0.968333,0.295174][-1.2274,2.29927,2.14866][0.451215,-0.757735,-0.471426][0.645073,0.965103,0.315777][-1.69089,1.47376,2.61594][0.640702,-0.512259,-0.571919][0.64041,0.937263,0.410006][-1.69089,1.47376,2.61594][0.640702,-0.512259,-0.571919][0.64041,0.937263,0.410006][-2.28832,1.60788,1.34955][0.839317,-0.511108,-0.185244][0.596786,0.941804,0.393107][-1.66408,2.39462,1.23249][0.637496,-0.74226,-0.206516][0.603812,0.968333,0.295174][1.42884,0.38992,3.40178][0.399926,0.284393,0.871309][0.752939,0.900369,0.466782][1.57047,-0.80641,3.57496][0.484869,0.124989,0.865609][0.754567,0.860132,0.497506][2.22117,-0.742448,3.05639][0.743611,0.113681,0.658877][0.776896,0.862291,0.50717][2.22117,-0.742448,3.05639][0.743611,0.113681,0.658877][0.776896,0.862291,0.50717][2.02092,0.446976,2.92544][0.693512,0.287993,0.66038][0.774756,0.90228,0.472792][1.42884,0.38992,3.40178][0.399926,0.284393,0.871309][0.752939,0.900369,0.466782][-2.39159,-0.649818,-2.34245][0.38408,0.914376,-0.128059][0.955472,0.541704,0.29347][-2.65754,-0.678815,-1.99][-0.338608,0.588721,0.733997][0.981651,0.540721,0.463605][-2.66108,-2.06808,-2.53478][-0.571019,-0.469978,0.673096][0.979391,0.414819,0.215246][-2.66108,-2.06808,-2.53478][-0.571019,-0.469978,0.673096][0.979391,0.414819,0.215246][-2.26939,-1.68594,-2.8756][0.720393,0.399187,-0.567172][0.936429,0.448807,0.0779663][-2.39159,-0.649818,-2.34245][0.38408,0.914376,-0.128059][0.955472,0.541704,0.29347][-2.66108,-2.06808,-2.53478][-0.571019,-0.469978,0.673096][0.979391,0.414819,0.215246][-2.71528,-1.37538,-2.07228][0.329612,0.208238,-0.920865][0.989368,0.476671,0.396884][-2.52615,-1.86143,-2.7503][-0.765508,0.191772,-0.614183][0.95832,0.432872,0.139074][2.29048,-0.893622,-2.74052][-0.685749,-0.153075,0.711559][0.47529,0.658035,0.135558][2.30603,-1.35544,-2.67871][0.0133269,0.998873,0.0455621][0.469625,0.616293,0.146916][2.72924,-1.19449,-2.21078][-0.609625,0.279337,-0.741841][0.429566,0.632723,0.349147][2.72924,-1.19449,-2.21078][-0.609625,0.279337,-0.741841][0.429566,0.632723,0.349147][2.56995,-0.458316,-2.24247][-0.28177,-0.901522,-0.328425][0.445719,0.696845,0.341031][2.29048,-0.893622,-2.74052][-0.685749,-0.153075,0.711559][0.47529,0.658035,0.135558][2.72924,-1.19449,-2.21078][-0.609625,0.279337,-0.741841][0.429566,0.632723,0.349147][2.30603,-1.35544,-2.67871][0.0133269,0.998873,0.0455621][0.469625,0.616293,0.146916][2.01737,-0.63714,-2.88878][0.302402,0.886103,-0.351248][0.502088,0.67918,0.0819121][2.01737,-0.63714,-2.88878][0.302402,0.886103,-0.351248][0.502088,0.67918,0.0819121][2.69688,-0.489116,-2.05596][0.711256,0.698164,0.0817465][0.433539,0.692548,0.415502][2.72924,-1.19449,-2.21078][-0.609625,0.279337,-0.741841][0.429566,0.632723,0.349147][-1.77481,-3.27874,-3.64147][-0.239074,-0.968747,-0.0661302][0.887846,0.306096,-0.242448][-1.72522,-2.26719,-3.44731][0.536945,0.830073,-0.150563][0.880084,0.396735,-0.150355][-2.35775,-2.61402,-3.05478][0.501833,-0.629167,-0.59356][0.948136,0.366334,-0.000633851][1.22534,2.32315,2.16424][0.457694,0.752152,0.474114][0.767258,0.965103,0.315777][2.069,1.55159,2.06121][0.749511,0.527883,0.399465][0.793218,0.939346,0.404553][2.29803,1.62458,1.35675][0.822898,0.540065,0.176546][0.815545,0.941813,0.39311][2.29803,1.62458,1.35675][0.822898,0.540065,0.176546][0.815545,0.941813,0.39311][1.72152,2.47488,0.687547][0.67252,0.736309,0.074606][0.830857,0.97023,0.280058][1.22534,2.32315,2.16424][0.457694,0.752152,0.474114][0.767258,0.965103,0.315777][0.919976,2.90768,1.03153][0.391902,0.905988,0.159996][0.793098,0.986152,0.180661][1.72152,2.47488,0.687547][0.67252,0.736309,0.074606][0.830857,0.97023,0.280058][1.48498,2.58631,-0.378302][0.576043,0.796121,-0.185382][0.879595,0.973926,0.249417][1.48498,2.58631,-0.378302][0.576043,0.796121,-0.185382][0.879595,0.973926,0.249417][0.66806,3.02465,-0.00901499][0.269422,0.955691,-0.118599][0.882272,0.990041,0.114093][0.919976,2.90768,1.03153][0.391902,0.905988,0.159996][0.793098,0.986152,0.180661][-2.21458,-0.745888,3.03476][0.740967,-0.1218,-0.660403][0.635435,0.862282,0.507168][-2.42346,-4.4535,3.25287][-0.493792,-0.827457,-0.267366][0.635153,0.737567,0.552435][-2.74511,-3.71309,2.59996][-0.45359,-0.576736,-0.679435][0.618353,0.76195,0.537211][-2.74511,-3.71309,2.59996][-0.45359,-0.576736,-0.679435][0.618353,0.76195,0.537211][-2.74914,-1.93981,2.12654][-0.286129,-0.763695,-0.578706][0.609378,0.820276,0.505838][-2.21458,-0.745888,3.03476][0.740967,-0.1218,-0.660403][0.635435,0.862282,0.507168][2.97057,-0.555304,1.32523][-0.981903,-0.0986961,-0.161633][0.823672,0.868735,0.498509][2.99716,-1.57644,-1.05316][0.140279,-0.980848,-0.135129][0.880729,0.834851,0.506853][2.98228,-1.8101,1.17919][0.0748322,-0.9924,-0.0976818][0.827102,0.827363,0.497846][-1.3911,-0.563359,-3.23442][-0.323608,0.689153,-0.648341][0.840834,0.685836,-0.061528][-1.38259,-1.19644,-3.38862][-0.356726,-0.335673,-0.87182][0.839695,0.632546,-0.121737][-2.02749,-0.637553,-2.88438][-0.258801,0.887514,-0.381237][0.904492,0.67918,0.0836054][-2.01459,-0.658714,-2.86381][0.550908,0.262175,0.792316][0.904492,0.67918,0.0836054][-1.0976,-1.20293,-3.44835][1.52705,0.623518,2.35205][0.812286,0.631101,-0.158534][-1.12369,-0.513987,-3.23739][0.346405,0.864826,0.363429][0.818113,0.692542,-0.0778196][-2.20578,-0.157306,-2.47586][-0.722728,0.213219,-0.65742][0.490315,0.881891,0.494094][-1.57275,-0.0979437,-2.95235][-0.427708,0.240304,-0.871389][0.468385,0.883883,0.480213][-1.55971,-1.22356,-3.09222][-0.0483982,-0.97204,-0.229772][0.46641,0.845228,0.500385][-1.55971,-1.22356,-3.09222][-0.0483982,-0.97204,-0.229772][0.46641,0.845228,0.500385][-2.1785,-1.30823,-2.65368][-0.0568976,-0.9655,-0.25411][0.48716,0.83948,0.514043][-2.20578,-0.157306,-2.47586][-0.722728,0.213219,-0.65742][0.490315,0.881891,0.494094][-1.31003,-2.93717,-3.77549][0.276259,-0.92815,-0.249437][0.841493,0.33884,-0.297][-1.77481,-3.27874,-3.64147][-0.239074,-0.968747,-0.0661302][0.887846,0.306096,-0.242448][-1.71271,-2.77812,-3.62941][-0.484717,0.1672,-0.858541][0.877604,0.350909,-0.222478][-1.72522,-2.26719,-3.44731][0.536945,0.830073,-0.150563][0.880084,0.396735,-0.150355][-1.77481,-3.27874,-3.64147][-0.239074,-0.968747,-0.0661302][0.887846,0.306096,-0.242448][-1.31003,-2.93717,-3.77549][0.276259,-0.92815,-0.249437][0.841493,0.33884,-0.297][-0.999486,-2.27842,-3.68824][-0.101564,0.920665,0.376909][0.807591,0.396811,-0.270254][-1.01799,-2.85904,-3.86573][-0.0347092,-0.973351,-0.226676][0.810463,0.344236,-0.335731][-0.350996,-2.02697,-3.69518][-0.300215,0.8934,0.334226][0.741539,0.419236,-0.272425][-0.344459,-2.47907,-3.92886][-0.0605202,0.300318,-0.951917][0.741064,0.377229,-0.345873][-1.02685,-2.55621,-3.85317][-0.246048,0.282436,-0.927195][0.809225,0.370456,-0.314677][-0.999486,-2.27842,-3.68824][-0.101564,0.920665,0.376909][0.807591,0.396811,-0.270254][-0.999486,-2.27842,-3.68824][-0.101564,0.920665,0.376909][0.807591,0.396811,-0.270254][-0.350996,-2.02697,-3.69518][-0.300215,0.8934,0.334226][0.741539,0.419236,-0.272425][-0.344459,-2.47907,-3.92886][-0.0605202,0.300318,-0.951917][0.741064,0.377229,-0.345873][-0.00833535,-1.15829,-3.39294][0.0329048,-0.985969,-0.163651][0.418545,0.847443,0.472719][-0.816,-1.20604,-3.32152][-0.00926227,-0.977562,-0.210442][0.443632,0.846568,0.481662][-0.00859284,-0.0422886,-3.28971][-0.0102989,0.23396,-0.972192][0.418545,0.885783,0.454015][-0.00855684,-0.0499884,-3.25844][0.010488,-0.247791,0.968757][0.418545,0.885783,0.454015][-0.816,-1.20604,-3.32152][-0.00926227,-0.977562,-0.210442][0.443632,0.846568,0.481662][-0.00833535,-1.15829,-3.39294][0.0329048,-0.985969,-0.163651][0.418545,0.847443,0.472719][-2.65481,-1.50004,-1.95748][-0.0526979,-0.976424,-0.20933][0.508263,0.837125,0.513127][-2.65614,-0.24403,-1.7441][0.891341,-0.189022,0.412047][0.512432,0.879232,0.496875][-2.95788,-0.340352,-0.815387][0.969388,-0.151702,0.193065][0.536547,0.875986,0.492742][-2.95788,-0.340352,-0.815387][0.969388,-0.151702,0.193065][0.536547,0.875986,0.492742][-2.97508,-1.60785,-1.04641][-0.0923388,-0.988834,-0.116964][0.531577,0.834215,0.506725][-2.65481,-1.50004,-1.95748][-0.0526979,-0.976424,-0.20933][0.508263,0.837125,0.513127][-3.0727,-0.448252,0.249189][0.991073,-0.133318,0.000904361][0.562608,0.872353,0.491754][-2.98748,-0.558146,1.3251][0.975787,-0.0987669,-0.195151][0.588658,0.868638,0.498481][-2.99994,-1.81761,1.18484][-0.0620366,-0.99313,-0.0992225][0.585356,0.827108,0.498112][-2.99994,-1.81761,1.18484][-0.0620366,-0.99313,-0.0992225][0.585356,0.827108,0.498112][-3.07552,-1.69118,0.0617105][-0.0450416,-0.993893,-0.100738][0.558104,0.830667,0.494434][-3.0727,-0.448252,0.249189][0.991073,-0.133318,0.000904361][0.562608,0.872353,0.491754][-0.685187,3.02461,-0.00905514][-0.31525,0.943844,-0.0988721][0.530059,0.99004,0.114093][-0.871634,2.66893,-1.13011][-0.346904,0.852363,-0.391325][0.478991,0.976632,0.222818][-1.67598,2.5321,0.133207][-0.638717,0.767085,-0.060177][0.557718,0.972136,0.264383][-0.936937,2.90772,1.0315][-0.386277,0.907688,0.163991][0.619233,0.986152,0.180661][-1.68465,2.41844,1.2393][-0.637519,0.74223,0.206554][0.603812,0.968333,0.295174][-1.24244,2.32306,2.16433][-0.451176,0.757693,0.471531][0.645073,0.965103,0.315777][-1.65549,2.50733,0.13517][0.638826,-0.766999,0.0601139][0.557718,0.972136,0.264383][-0.86097,2.6414,-1.11724][0.346937,-0.852416,0.391181][0.478991,0.976632,0.222818][-0.67651,2.99387,-0.00497636][0.315261,-0.943841,0.0988625][0.530059,0.99004,0.114093][-1.2274,2.29927,2.14866][0.451215,-0.757735,-0.471426][0.645073,0.965103,0.315777][-1.66408,2.39462,1.23249][0.637496,-0.74226,-0.206516][0.603812,0.968333,0.295174][-0.92508,2.87837,1.02556][0.386356,-0.907664,-0.163936][0.619233,0.986152,0.180661][0.659445,2.99388,-0.0049752][-0.303885,-0.944993,0.121004][0.882272,0.990041,0.114093][0.908015,2.87838,1.02556][-0.38203,-0.911552,-0.152072][0.793098,0.986152,0.180661][-0.00853252,3.1269,0.76574][0.00139843,-0.993784,-0.111314][0.706166,0.993053,0.0869679][1.50694,-2.32273,-3.50154][-0.0298552,0.927169,0.373452][0.552797,0.391963,-0.190058][1.77322,-2.27824,-3.37575][-0.691214,0.684591,-0.231429][0.525166,0.395634,-0.135005][1.76659,-2.79431,-3.58592][0.494291,0.190966,-0.848062][0.530095,0.349588,-0.204385][1.76659,-2.79431,-3.58592][0.494291,0.190966,-0.848062][0.530095,0.349588,-0.204385][1.08363,-2.55392,-3.82303][0.249001,0.255424,-0.934215][0.598167,0.370689,-0.302142][1.50694,-2.32273,-3.50154][-0.0298552,0.927169,0.373452][0.552797,0.391963,-0.190058][1.75176,-2.80025,-3.55795][-0.497188,-0.218758,0.839612][0.530095,0.349588,-0.204385][1.77322,-2.27824,-3.37575][-0.691214,0.684591,-0.231429][0.525166,0.395634,-0.135005][1.50694,-2.32273,-3.50154][-0.0298552,0.927169,0.373452][0.552797,0.391963,-0.190058][1.50694,-2.32273,-3.50154][-0.0298552,0.927169,0.373452][0.552797,0.391963,-0.190058][1.07545,-2.56283,-3.79318][-0.238928,-0.250553,0.938156][0.598167,0.370689,-0.302142][1.75176,-2.80025,-3.55795][-0.497188,-0.218758,0.839612][0.530095,0.349588,-0.204385][-2.99994,-1.81761,1.18484][-0.0620366,-0.99313,-0.0992225][0.585356,0.827108,0.498112][-2.74914,-1.93981,2.12654][-0.286129,-0.763695,-0.578706][0.609378,0.820276,0.505838][-2.72636,-0.657215,2.2978][-0.90153,0.0759814,0.425993][0.612908,0.865182,0.506761][-2.72636,-0.657215,2.2978][-0.90153,0.0759814,0.425993][0.612908,0.865182,0.506761][-3.01888,-0.554783,1.33142][-0.977118,0.0856493,0.194692][0.588658,0.868638,0.498481][-2.99994,-1.81761,1.18484][-0.0620366,-0.99313,-0.0992225][0.585356,0.827108,0.498112][-2.74511,-3.71309,2.59996][-0.45359,-0.576736,-0.679435][0.618353,0.76195,0.537211][-2.42346,-4.4535,3.25287][-0.493792,-0.827457,-0.267366][0.635153,0.737567,0.552435][-2.23831,-0.742827,3.05632][-0.743371,0.115351,0.658857][0.635435,0.862282,0.507168][-2.23831,-0.742827,3.05632][-0.743371,0.115351,0.658857][0.635435,0.862282,0.507168][-2.74914,-1.93981,2.12654][-0.286129,-0.763695,-0.578706][0.609378,0.820276,0.505838][-2.74511,-3.71309,2.59996][-0.45359,-0.576736,-0.679435][0.618353,0.76195,0.537211][-0.00851035,2.69909,-1.39395][0.007939,0.870726,-0.491705][0.418545,0.977623,0.209848][-0.00848317,2.01722,-2.25707][-0.015346,0.680426,-0.732656][0.417959,0.954904,0.32082][-1.19916,1.97582,-1.92106][-0.382286,0.664487,-0.642117][0.473167,0.953462,0.335839][-1.19916,1.97582,-1.92106][-0.382286,0.664487,-0.642117][0.473167,0.953462,0.335839][-0.871634,2.66893,-1.13011][-0.346904,0.852363,-0.391325][0.478991,0.976632,0.222818][-0.00851035,2.69909,-1.39395][0.007939,0.870726,-0.491705][0.418545,0.977623,0.209848][-0.871634,2.66893,-1.13011][-0.346904,0.852363,-0.391325][0.478991,0.976632,0.222818][-1.19916,1.97582,-1.92106][-0.382286,0.664487,-0.642117][0.473167,0.953462,0.335839][-1.68764,1.9261,-1.49761][-0.617116,0.649973,-0.443513][0.498383,0.951824,0.347492][-1.18519,1.95443,-1.90145][0.38228,-0.664419,0.642191][0.473167,0.953462,0.335839][-0.00853658,1.99548,-2.2333][0.00455787,-0.689794,0.723991][0.417959,0.954904,0.32082][-0.00853372,2.67096,-1.37827][-0.0543431,-0.863813,0.500873][0.418545,0.977623,0.209848][-0.00853372,2.67096,-1.37827][-0.0543431,-0.863813,0.500873][0.418545,0.977623,0.209848][-0.86097,2.6414,-1.11724][0.346937,-0.852416,0.391181][0.478991,0.976632,0.222818][-1.18519,1.95443,-1.90145][0.38228,-0.664419,0.642191][0.473167,0.953462,0.335839][-1.66769,1.90565,-1.48274][0.617197,-0.649815,0.443632][0.498383,0.951824,0.347492][-1.18519,1.95443,-1.90145][0.38228,-0.664419,0.642191][0.473167,0.953462,0.335839][-0.86097,2.6414,-1.11724][0.346937,-0.852416,0.391181][0.478991,0.976632,0.222818][0.919976,2.90768,1.03153][0.391902,0.905988,0.159996][0.793098,0.986152,0.180661][1.22534,2.32315,2.16424][0.457694,0.752152,0.474114][0.767258,0.965103,0.315777][1.72152,2.47488,0.687547][0.67252,0.736309,0.074606][0.830857,0.97023,0.280058][-1.0976,-1.20293,-3.44835][1.52705,0.623518,2.35205][0.812286,0.631101,-0.158534][-2.01459,-0.658714,-2.86381][0.550908,0.262175,0.792316][0.904492,0.67918,0.0836054][-2.07647,-1.32677,-2.98906][-0.556518,-0.824993,0.0983586][0.908356,0.621142,0.0416103][-2.07647,-1.32677,-2.98906][-0.556518,-0.824993,0.0983586][0.908356,0.621142,0.0416103][-2.02749,-0.637553,-2.88438][-0.258801,0.887514,-0.381237][0.904492,0.67918,0.0836054][-1.38259,-1.19644,-3.38862][-0.356726,-0.335673,-0.87182][0.839695,0.632546,-0.121737][2.97057,-0.555304,1.32523][-0.981903,-0.0986961,-0.161633][0.823672,0.868735,0.498509][2.98228,-1.8101,1.17919][0.0748322,-0.9924,-0.0976818][0.827102,0.827363,0.497846][2.72368,-1.91083,2.14969][0.288438,-0.781782,-0.55283][0.802678,0.820159,0.50546][2.72368,-1.91083,2.14969][0.288438,-0.781782,-0.55283][0.802678,0.820159,0.50546][2.68037,-0.659257,2.28409][-0.898331,-0.0938876,-0.429169][0.799424,0.865216,0.506771][2.97057,-0.555304,1.32523][-0.981903,-0.0986961,-0.161633][0.823672,0.868735,0.498509][2.65932,-4.00608,2.72783][0.416272,-0.640717,-0.645135][0.790576,0.752053,0.538167][2.3948,-4.50273,3.27422][0.482599,-0.843249,-0.236706][0.776682,0.735948,0.553191][2.19752,-0.745633,3.03476][-0.741082,-0.120016,-0.660601][0.776896,0.862291,0.50717][2.19752,-0.745633,3.03476][-0.741082,-0.120016,-0.660601][0.776896,0.862291,0.50717][2.72368,-1.91083,2.14969][0.288438,-0.781782,-0.55283][0.802678,0.820159,0.50546][2.65932,-4.00608,2.72783][0.416272,-0.640717,-0.645135][0.790576,0.752053,0.538167][1.08363,-2.55392,-3.82303][0.249001,0.255424,-0.934215][0.598167,0.370689,-0.302142][1.76659,-2.79431,-3.58592][0.494291,0.190966,-0.848062][0.530095,0.349588,-0.204385][1.82332,-3.30817,-3.62292][0.170394,-0.976164,-0.134426][0.52203,0.303943,-0.222936][1.82332,-3.30817,-3.62292][0.170394,-0.976164,-0.134426][0.52203,0.303943,-0.222936][1.36428,-2.90099,-3.73586][-0.609698,-0.779951,-0.141224][0.567266,0.340085,-0.281055][1.08363,-2.55392,-3.82303][0.249001,0.255424,-0.934215][0.598167,0.370689,-0.302142][2.72924,-1.19449,-2.21078][-0.609625,0.279337,-0.741841][0.429566,0.632723,0.349147][2.71515,-0.775836,-1.87877][0.16578,-0.339718,0.925802][0.418994,0.672379,0.47748][2.56995,-0.458316,-2.24247][-0.28177,-0.901522,-0.328425][0.445719,0.696845,0.341031][2.69688,-0.489116,-2.05596][0.711256,0.698164,0.0817465][0.433539,0.692548,0.415502][2.71515,-0.775836,-1.87877][0.16578,-0.339718,0.925802][0.418994,0.672379,0.47748][2.72924,-1.19449,-2.21078][-0.609625,0.279337,-0.741841][0.429566,0.632723,0.349147][-2.01459,-0.658714,-2.86381][0.550908,0.262175,0.792316][0.904492,0.67918,0.0836054][-2.02749,-0.637553,-2.88438][-0.258801,0.887514,-0.381237][0.904492,0.67918,0.0836054][-2.48008,-0.456403,-2.45134][-0.423771,0.804162,-0.416824][0.949377,0.69505,0.261321][-2.48008,-0.456403,-2.45134][-0.423771,0.804162,-0.416824][0.949377,0.69505,0.261321][-2.49686,-0.452954,-2.15139][0.686545,0.513537,0.514718][0.966079,0.701377,0.359263][-2.01459,-0.658714,-2.86381][0.550908,0.262175,0.792316][0.904492,0.67918,0.0836054][-2.48008,-0.456403,-2.45134][-0.423771,0.804162,-0.416824][0.949377,0.69505,0.261321][-2.70329,-0.778047,-1.87574][-0.223362,-0.0916652,0.970416][0.98626,0.673033,0.470142][-2.60006,-0.502148,-1.98217][-0.0612945,0.574386,0.816286][0.97609,0.696874,0.427518][-1.55971,-1.22356,-3.09222][-0.0483982,-0.97204,-0.229772][0.46641,0.845228,0.500385][-1.55765,-0.105826,-2.92501][0.42674,-0.254021,0.867967][0.468385,0.883883,0.480213][-2.18258,-0.16481,-2.45482][0.721399,-0.226725,0.654355][0.490315,0.881891,0.494094][-2.18258,-0.16481,-2.45482][0.721399,-0.226725,0.654355][0.490315,0.881891,0.494094][-2.1785,-1.30823,-2.65368][-0.0568976,-0.9655,-0.25411][0.48716,0.83948,0.514043][-1.55971,-1.22356,-3.09222][-0.0483982,-0.97204,-0.229772][0.46641,0.845228,0.500385][1.18211,1.97678,-1.92108][0.424607,0.680012,-0.59774][0.939162,0.953496,0.335839][1.99236,0.984008,-2.0549][0.689996,0.448383,-0.568206][0.91861,0.920222,0.433673][1.41337,1.04126,-2.52622][0.471747,0.461754,-0.751158][0.942032,0.92213,0.421385][2.16726,-1.26241,-2.65097][0.0536263,-0.963231,-0.26327][0.92511,0.841307,0.51403][1.54126,-1.19368,-3.08928][0.0286226,-0.974136,-0.22414][0.945874,0.846984,0.50027][1.55617,-0.0781624,-2.95156][0.435901,0.238118,-0.867923][0.943923,0.884533,0.480188][1.55617,-0.0781624,-2.95156][0.435901,0.238118,-0.867923][0.943923,0.884533,0.480188][2.18956,-0.136777,-2.47504][0.721743,0.224261,-0.654824][0.921986,0.882576,0.494126][2.16726,-1.26241,-2.65097][0.0536263,-0.963231,-0.26327][0.92511,0.841307,0.51403][1.39823,1.02645,-2.50196][-0.471706,-0.46173,0.751199][0.942032,0.92213,0.421385][1.97012,0.969811,-2.03643][-0.690093,-0.448288,0.568164][0.91861,0.920222,0.433673][1.16815,1.95546,-1.9014][-0.400364,-0.702589,0.588284][0.939162,0.953496,0.335839][1.54115,-0.086579,-2.92434][-0.434902,-0.252006,0.864496][0.943923,0.884533,0.480188][1.54126,-1.19368,-3.08928][0.0286226,-0.974136,-0.22414][0.945874,0.846984,0.50027][2.16726,-1.26241,-2.65097][0.0536263,-0.963231,-0.26327][0.92511,0.841307,0.51403][2.16726,-1.26241,-2.65097][0.0536263,-0.963231,-0.26327][0.92511,0.841307,0.51403][2.16637,-0.14457,-2.4541][-0.720524,-0.237504,0.651488][0.921986,0.882576,0.494126][1.54115,-0.086579,-2.92434][-0.434902,-0.252006,0.864496][0.943923,0.884533,0.480188][-1.21441,1.44321,3.04849][-0.3597,0.497184,0.789572][0.661633,0.935698,0.40906][-0.4613,2.26894,2.66558][-0.162781,0.721001,0.673543][0.685493,0.963279,0.32045][-1.24244,2.32306,2.16433][-0.451176,0.757693,0.471531][0.645073,0.965103,0.315777][-1.24244,2.32306,2.16433][-0.451176,0.757693,0.471531][0.645073,0.965103,0.315777][-1.71075,1.48994,2.63546][-0.640589,0.512318,0.571992][0.64041,0.937263,0.410006][-1.21441,1.44321,3.04849][-0.3597,0.497184,0.789572][0.661633,0.935698,0.40906][-0.00851035,2.69909,-1.39395][0.007939,0.870726,-0.491705][0.993787,0.977623,0.209848][-0.256057,3.05646,-0.283245][-0.0559598,0.975236,-0.21397][0.993787,0.991226,0.0825045][0.66806,3.02465,-0.00901499][0.269422,0.955691,-0.118599][0.882272,0.990041,0.114093][0.66806,3.02465,-0.00901499][0.269422,0.955691,-0.118599][0.882272,0.990041,0.114093][0.854599,2.66898,-1.13019][0.328856,0.852093,-0.407176][0.93334,0.976636,0.222818][-0.00851035,2.69909,-1.39395][0.007939,0.870726,-0.491705][0.993787,0.977623,0.209848][0.66806,3.02465,-0.00901499][0.269422,0.955691,-0.118599][0.882272,0.990041,0.114093][1.48498,2.58631,-0.378302][0.576043,0.796121,-0.185382][0.879595,0.973926,0.249417][0.854599,2.66898,-1.13019][0.328856,0.852093,-0.407176][0.93334,0.976636,0.222818][-1.2274,2.29927,2.14866][0.451215,-0.757735,-0.471426][0.645073,0.965103,0.315777][-0.455945,2.24533,2.64434][0.162732,-0.721127,-0.67342][0.685493,0.963279,0.32045][-1.2007,1.42739,3.02401][0.359604,-0.497046,-0.789703][0.661633,0.935698,0.40906][-1.2007,1.42739,3.02401][0.359604,-0.497046,-0.789703][0.661633,0.935698,0.40906][-1.69089,1.47376,2.61594][0.640702,-0.512259,-0.571919][0.64041,0.937263,0.410006][-1.2274,2.29927,2.14866][0.451215,-0.757735,-0.471426][0.645073,0.965103,0.315777][2.66852,-0.221047,-1.75679][0.888406,0.188255,-0.418683][0.899874,0.879791,0.496951][2.97265,-0.324133,-0.821012][0.975332,0.158585,-0.153549][0.875769,0.876361,0.492822][2.99716,-1.57644,-1.05316][0.140279,-0.980848,-0.135129][0.880729,0.834851,0.506853][2.99716,-1.57644,-1.05316][0.140279,-0.980848,-0.135129][0.880729,0.834851,0.506853][2.63919,-1.45666,-1.95596][0.043749,-0.979846,-0.194904][0.904015,0.838595,0.513207][2.66852,-0.221047,-1.75679][0.888406,0.188255,-0.418683][0.899874,0.879791,0.496951][2.97265,-0.324133,-0.821012][0.975332,0.158585,-0.153549][0.875769,0.876361,0.492822][3.00196,-0.551801,1.33149][0.983242,0.0861862,0.160644][0.823672,0.868735,0.498509][2.99716,-1.57644,-1.05316][0.140279,-0.980848,-0.135129][0.880729,0.834851,0.506853][1.97012,0.969811,-2.03643][-0.690093,-0.448288,0.568164][0.91861,0.920222,0.433673][2.40552,0.893093,-1.36614][-0.857599,-0.408616,0.312341][0.8952,0.917647,0.439838][2.02003,1.8427,-0.904589][-0.776274,-0.57616,0.255811][0.889179,0.949713,0.357601][2.02003,1.8427,-0.904589][-0.776274,-0.57616,0.255811][0.889179,0.949713,0.357601][1.16815,1.95546,-1.9014][-0.400364,-0.702589,0.588284][0.939162,0.953496,0.335839][1.97012,0.969811,-2.03643][-0.690093,-0.448288,0.568164][0.91861,0.920222,0.433673][1.16815,1.95546,-1.9014][-0.400364,-0.702589,0.588284][0.939162,0.953496,0.335839][2.02003,1.8427,-0.904589][-0.776274,-0.57616,0.255811][0.889179,0.949713,0.357601][1.19598,2.6064,-0.798711][-0.433228,-0.839823,0.327125][0.905727,0.97546,0.235415][-2.46373,-0.479227,-2.43556][0.441725,-0.779746,0.443706][0.949377,0.69505,0.261321][-2.70329,-0.778047,-1.87574][-0.223362,-0.0916652,0.970416][0.98626,0.673033,0.470142][-2.77773,-1.05607,-2.02741][-0.508767,-0.656727,0.556656][0.98263,0.64573,0.419591][-2.77773,-1.05607,-2.02741][-0.508767,-0.656727,0.556656][0.98263,0.64573,0.419591][-2.53264,-1.31582,-2.40027][-0.178485,-0.968674,0.172665][0.96449,0.621165,0.270905][-2.46373,-0.479227,-2.43556][0.441725,-0.779746,0.443706][0.949377,0.69505,0.261321][-2.77773,-1.05607,-2.02741][-0.508767,-0.656727,0.556656][0.98263,0.64573,0.419591][-2.70329,-0.778047,-1.87574][-0.223362,-0.0916652,0.970416][0.98626,0.673033,0.470142][-2.48008,-0.456403,-2.45134][-0.423771,0.804162,-0.416824][0.949377,0.69505,0.261321][-2.48008,-0.456403,-2.45134][-0.423771,0.804162,-0.416824][0.949377,0.69505,0.261321][-2.53264,-1.31582,-2.40027][-0.178485,-0.968674,0.172665][0.96449,0.621165,0.270905][-2.77773,-1.05607,-2.02741][-0.508767,-0.656727,0.556656][0.98263,0.64573,0.419591][0.664329,2.82583,1.4959][-0.238599,-0.894407,-0.378294][0.757663,0.984374,0.202294][0.908015,2.87838,1.02556][-0.38203,-0.911552,-0.152072][0.793098,0.986152,0.180661][1.64701,2.39466,1.23249][-0.636222,-0.743469,-0.206095][0.808519,0.968335,0.295174][1.64701,2.39466,1.23249][-0.636222,-0.743469,-0.206095][0.808519,0.968335,0.295174][1.21034,2.29928,2.14866][-0.439818,-0.750921,-0.492623][0.767258,0.965103,0.315777][0.664329,2.82583,1.4959][-0.238599,-0.894407,-0.378294][0.757663,0.984374,0.202294][2.74422,-1.39798,-2.02273][0.435759,-0.3743,0.818543][0.421632,0.475878,0.418399][2.71752,-0.711894,-1.95759][0.0779948,0.933064,0.351152][0.426962,0.54843,0.466785][2.40259,-1.68555,-2.73483][0.352773,-0.39046,0.850348][0.461055,0.448516,0.140444][2.40259,-1.68555,-2.73483][0.352773,-0.39046,0.850348][0.461055,0.448516,0.140444][2.67438,-2.09719,-2.41025][-0.00417445,0.94831,0.317318][0.428226,0.413868,0.251971][2.74422,-1.39798,-2.02273][0.435759,-0.3743,0.818543][0.421632,0.475878,0.418399][2.31656,-2.33834,-3.10279][0.684311,0.181116,-0.70634][0.475594,0.390395,-0.0061792][2.71752,-0.711894,-1.95759][0.0779948,0.933064,0.351152][0.426962,0.54843,0.466785][2.74422,-1.39798,-2.02273][0.435759,-0.3743,0.818543][0.421632,0.475878,0.418399][2.74422,-1.39798,-2.02273][0.435759,-0.3743,0.818543][0.421632,0.475878,0.418399][2.67438,-2.09719,-2.41025][-0.00417445,0.94831,0.317318][0.428226,0.413868,0.251971][2.31656,-2.33834,-3.10279][0.684311,0.181116,-0.70634][0.475594,0.390395,-0.0061792][2.40259,-1.68555,-2.73483][0.352773,-0.39046,0.850348][0.461055,0.448516,0.140444][2.71752,-0.711894,-1.95759][0.0779948,0.933064,0.351152][0.426962,0.54843,0.466785][2.47801,-1.23335,-2.39438][0.877187,-0.468452,0.105334][0.450726,0.489908,0.271664][2.31656,-2.33834,-3.10279][0.684311,0.181116,-0.70634][0.475594,0.390395,-0.0061792][2.40259,-1.68555,-2.73483][0.352773,-0.39046,0.850348][0.461055,0.448516,0.140444][2.47801,-1.23335,-2.39438][0.877187,-0.468452,0.105334][0.450726,0.489908,0.271664][2.47801,-1.23335,-2.39438][0.877187,-0.468452,0.105334][0.450726,0.489908,0.271664][2.71752,-0.711894,-1.95759][0.0779948,0.933064,0.351152][0.426962,0.54843,0.466785][2.31656,-2.33834,-3.10279][0.684311,0.181116,-0.70634][0.475594,0.390395,-0.0061792][-1.02685,-2.55621,-3.85317][-0.246048,0.282436,-0.927195][0.809225,0.370456,-0.314677][-0.344459,-2.47907,-3.92886][-0.0605202,0.300318,-0.951917][0.741064,0.377229,-0.345873][0.0112598,-3.0023,-4.02092][0.163571,-0.940429,-0.298057][0.705606,0.33136,-0.400037][0.0112598,-3.0023,-4.02092][0.163571,-0.940429,-0.298057][0.705606,0.33136,-0.400037][-1.01799,-2.85904,-3.86573][-0.0347092,-0.973351,-0.226676][0.810463,0.344236,-0.335731][-1.02685,-2.55621,-3.85317][-0.246048,0.282436,-0.927195][0.809225,0.370456,-0.314677][-1.31003,-2.93717,-3.77549][0.276259,-0.92815,-0.249437][0.841493,0.33884,-0.297][-1.71271,-2.77812,-3.62941][-0.484717,0.1672,-0.858541][0.877604,0.350909,-0.222478][-1.02685,-2.55621,-3.85317][-0.246048,0.282436,-0.927195][0.809225,0.370456,-0.314677][0.854599,2.66898,-1.13019][0.328856,0.852093,-0.407176][0.93334,0.976636,0.222818][1.18211,1.97678,-1.92108][0.424607,0.680012,-0.59774][0.939162,0.953496,0.335839][-0.00848317,2.01722,-2.25707][-0.015346,0.680426,-0.732656][0.993787,0.954847,0.32082][-0.00848317,2.01722,-2.25707][-0.015346,0.680426,-0.732656][0.993787,0.954847,0.32082][-0.00851035,2.69909,-1.39395][0.007939,0.870726,-0.491705][0.993787,0.977623,0.209848][0.854599,2.66898,-1.13019][0.328856,0.852093,-0.407176][0.93334,0.976636,0.222818][-2.39159,-0.649818,-2.34245][0.38408,0.914376,-0.128059][0.955472,0.541704,0.29347][-2.26939,-1.68594,-2.8756][0.720393,0.399187,-0.567172][0.936429,0.448807,0.0779663][-2.52615,-1.86143,-2.7503][-0.765508,0.191772,-0.614183][0.95832,0.432872,0.139074][-2.52615,-1.86143,-2.7503][-0.765508,0.191772,-0.614183][0.95832,0.432872,0.139074][-2.65754,-0.678815,-1.99][-0.338608,0.588721,0.733997][0.981651,0.540721,0.463605][-2.39159,-0.649818,-2.34245][0.38408,0.914376,-0.128059][0.955472,0.541704,0.29347][-1.4308,0.38111,3.37473][0.467549,-0.274087,-0.840402][0.659392,0.900368,0.466782][-0.745212,0.346337,3.6436][0.149944,-0.288075,-0.945796][0.682233,0.8992,0.457578][-0.818018,-0.847975,3.82964][0.228139,-0.121896,-0.965968][0.68127,0.85883,0.484014][-0.818018,-0.847975,3.82964][0.228139,-0.121896,-0.965968][0.68127,0.85883,0.484014][-1.57183,-0.809415,3.54701][0.483101,-0.129478,-0.865938][0.657764,0.860131,0.497508][-1.4308,0.38111,3.37473][0.467549,-0.274087,-0.840402][0.659392,0.900368,0.466782][0.615982,1.41402,3.29278][0.178987,0.4545,0.872579][0.728786,0.934731,0.405194][0.444174,2.26902,2.66551][0.173335,0.743267,0.64615][0.726838,0.963279,0.32045][-0.4613,2.26894,2.66558][-0.162781,0.721001,0.673543][0.685493,0.963279,0.32045][-0.4613,2.26894,2.66558][-0.162781,0.721001,0.673543][0.685493,0.963279,0.32045][-1.21441,1.44321,3.04849][-0.3597,0.497184,0.789572][0.661633,0.935698,0.40906][0.615982,1.41402,3.29278][0.178987,0.4545,0.872579][0.728786,0.934731,0.405194][-0.455945,2.24533,2.64434][0.162732,-0.721127,-0.67342][0.685493,0.963279,0.32045][0.438879,2.24533,2.64434][-0.173261,-0.743249,-0.64619][0.726838,0.963279,0.32045][0.609165,1.39859,3.26534][-0.178996,-0.454592,-0.872529][0.728786,0.934731,0.405194][0.609165,1.39859,3.26534][-0.178996,-0.454592,-0.872529][0.728786,0.934731,0.405194][-1.2007,1.42739,3.02401][0.359604,-0.497046,-0.789703][0.661633,0.935698,0.40906][-0.455945,2.24533,2.64434][0.162732,-0.721127,-0.67342][0.685493,0.963279,0.32045][-2.42346,-4.4535,3.25287][-0.493792,-0.827457,-0.267366][0.635153,0.737567,0.552435][-2.21458,-0.745888,3.03476][0.740967,-0.1218,-0.660403][0.635435,0.862282,0.507168][-1.57183,-0.809415,3.54701][0.483101,-0.129478,-0.865938][0.657764,0.860131,0.497508][-1.57183,-0.809415,3.54701][0.483101,-0.129478,-0.865938][0.657764,0.860131,0.497508][-1.7219,-4.94565,3.82787][-0.373306,-0.927113,-0.0332379][0.657654,0.721041,0.542805][-2.42346,-4.4535,3.25287][-0.493792,-0.827457,-0.267366][0.635153,0.737567,0.552435][-2.01459,-0.658714,-2.86381][0.550908,0.262175,0.792316][0.904492,0.67918,0.0836054][-2.49686,-0.452954,-2.15139][0.686545,0.513537,0.514718][0.966079,0.701377,0.359263][-2.46373,-0.479227,-2.43556][0.441725,-0.779746,0.443706][0.949377,0.69505,0.261321][-2.60006,-0.502148,-1.98217][-0.0612945,0.574386,0.816286][0.97609,0.696874,0.427518][-2.70329,-0.778047,-1.87574][-0.223362,-0.0916652,0.970416][0.98626,0.673033,0.470142][-2.46373,-0.479227,-2.43556][0.441725,-0.779746,0.443706][0.949377,0.69505,0.261321][0.659445,2.99388,-0.0049752][-0.303885,-0.944993,0.121004][0.882272,0.990041,0.114093][-0.252964,3.0251,-0.276615][0.0559354,-0.975231,0.213998][0.993787,0.991226,0.0825045][-0.00853372,2.67096,-1.37827][-0.0543431,-0.863813,0.500873][0.993787,0.977623,0.209848][-0.00853372,2.67096,-1.37827][-0.0543431,-0.863813,0.500873][0.993787,0.977623,0.209848][1.19598,2.6064,-0.798711][-0.433228,-0.839823,0.327125][0.905727,0.97546,0.235415][0.659445,2.99388,-0.0049752][-0.303885,-0.944993,0.121004][0.882272,0.990041,0.114093][-0.00853252,3.15891,0.769311][-0.00138386,0.993782,0.111335][0.706166,0.993053,0.0869679][-0.258091,2.82501,1.77359][-0.114628,0.899521,0.421571][0.688975,0.983359,0.211932][0.672723,2.85499,1.50668][0.23229,0.89561,0.379374][0.757663,0.984374,0.202294][-0.00853252,3.15891,0.769311][-0.00138386,0.993782,0.111335][0.706166,0.993053,0.0869679][-0.936937,2.90772,1.0315][-0.386277,0.907688,0.163991][0.619233,0.986152,0.180661][-0.258091,2.82501,1.77359][-0.114628,0.899521,0.421571][0.688975,0.983359,0.211932][0.664329,2.82583,1.4959][-0.238599,-0.894407,-0.378294][0.757663,0.984374,0.202294][-0.255197,2.79585,1.76021][0.114768,-0.899523,-0.42153][0.688975,0.983359,0.211932][-0.00853252,3.1269,0.76574][0.00139843,-0.993784,-0.111314][0.706166,0.993053,0.0869679][-0.255197,2.79585,1.76021][0.114768,-0.899523,-0.42153][0.688975,0.983359,0.211932][-0.92508,2.87837,1.02556][0.386356,-0.907664,-0.163936][0.619233,0.986152,0.180661][-0.00853252,3.1269,0.76574][0.00139843,-0.993784,-0.111314][0.706166,0.993053,0.0869679][2.99716,-1.57644,-1.05316][0.140279,-0.980848,-0.135129][0.880729,0.834851,0.506853][2.94143,-0.329275,-0.814954][-0.973524,-0.170958,0.151738][0.875769,0.876361,0.492822][2.63991,-0.227493,-1.74348][-0.886798,-0.200754,0.416278][0.899874,0.879791,0.496951][2.63991,-0.227493,-1.74348][-0.886798,-0.200754,0.416278][0.899874,0.879791,0.496951][2.63919,-1.45666,-1.95596][0.043749,-0.979846,-0.194904][0.904015,0.838595,0.513207][2.99716,-1.57644,-1.05316][0.140279,-0.980848,-0.135129][0.880729,0.834851,0.506853][2.99716,-1.57644,-1.05316][0.140279,-0.980848,-0.135129][0.880729,0.834851,0.506853][2.97057,-0.555304,1.32523][-0.981903,-0.0986961,-0.161633][0.823672,0.868735,0.498509][2.94143,-0.329275,-0.814954][-0.973524,-0.170958,0.151738][0.875769,0.876361,0.492822][-0.00859284,-0.0422886,-3.28971][-0.0102989,0.23396,-0.972192][0.993787,0.885419,0.454015][-0.00848675,1.08447,-2.8822][-0.0594006,0.453391,-0.88933][0.993787,0.92361,0.40137][0.73041,1.07477,-2.79565][0.227024,0.45557,-0.860765][0.967031,0.923273,0.407571][0.73041,1.07477,-2.79565][0.227024,0.45557,-0.860765][0.967031,0.923273,0.407571][1.55617,-0.0781624,-2.95156][0.435901,0.238118,-0.867923][0.943923,0.884533,0.480188][-0.00859284,-0.0422886,-3.28971][-0.0102989,0.23396,-0.972192][0.993787,0.885419,0.454015][1.99236,0.984008,-2.0549][0.689996,0.448383,-0.568206][0.91861,0.920222,0.433673][2.18956,-0.136777,-2.47504][0.721743,0.224261,-0.654824][0.921986,0.882576,0.494126][1.55617,-0.0781624,-2.95156][0.435901,0.238118,-0.867923][0.943923,0.884533,0.480188][1.55617,-0.0781624,-2.95156][0.435901,0.238118,-0.867923][0.943923,0.884533,0.480188][1.41337,1.04126,-2.52622][0.471747,0.461754,-0.751158][0.942032,0.92213,0.421385][1.99236,0.984008,-2.0549][0.689996,0.448383,-0.568206][0.91861,0.920222,0.433673][0.723007,1.06006,-2.76797][-0.226942,-0.455555,0.860795][0.967031,0.923273,0.407571][-0.00854754,1.06991,-2.85347][0.0593711,-0.453352,0.889352][0.993787,0.92361,0.40137][-0.00855684,-0.0499884,-3.25844][0.010488,-0.247791,0.968757][0.993787,0.885419,0.454015][-0.00855684,-0.0499884,-3.25844][0.010488,-0.247791,0.968757][0.993787,0.885419,0.454015][1.54115,-0.086579,-2.92434][-0.434902,-0.252006,0.864496][0.943923,0.884533,0.480188][0.723007,1.06006,-2.76797][-0.226942,-0.455555,0.860795][0.967031,0.923273,0.407571][1.54115,-0.086579,-2.92434][-0.434902,-0.252006,0.864496][0.943923,0.884533,0.480188][2.16637,-0.14457,-2.4541][-0.720524,-0.237504,0.651488][0.921986,0.882576,0.494126][1.97012,0.969811,-2.03643][-0.690093,-0.448288,0.568164][0.91861,0.920222,0.433673][1.97012,0.969811,-2.03643][-0.690093,-0.448288,0.568164][0.91861,0.920222,0.433673][1.39823,1.02645,-2.50196][-0.471706,-0.46173,0.751199][0.942032,0.92213,0.421385][1.54115,-0.086579,-2.92434][-0.434902,-0.252006,0.864496][0.943923,0.884533,0.480188][-0.685187,3.02461,-0.00905514][-0.31525,0.943844,-0.0988721][0.530059,0.99004,0.114093][-1.67598,2.5321,0.133207][-0.638717,0.767085,-0.060177][0.557718,0.972136,0.264383][-1.68465,2.41844,1.2393][-0.637519,0.74223,0.206554][0.603812,0.968333,0.295174][-1.68465,2.41844,1.2393][-0.637519,0.74223,0.206554][0.603812,0.968333,0.295174][-0.936937,2.90772,1.0315][-0.386277,0.907688,0.163991][0.619233,0.986152,0.180661][-0.685187,3.02461,-0.00905514][-0.31525,0.943844,-0.0988721][0.530059,0.99004,0.114093][-0.00853252,3.15891,0.769311][-0.00138386,0.993782,0.111335][0.706166,0.993053,0.0869679][-0.685187,3.02461,-0.00905514][-0.31525,0.943844,-0.0988721][0.530059,0.99004,0.114093][-0.936937,2.90772,1.0315][-0.386277,0.907688,0.163991][0.619233,0.986152,0.180661][-1.66408,2.39462,1.23249][0.637496,-0.74226,-0.206516][0.603812,0.968333,0.295174][-1.65549,2.50733,0.13517][0.638826,-0.766999,0.0601139][0.557718,0.972136,0.264383][-0.67651,2.99387,-0.00497636][0.315261,-0.943841,0.0988625][0.530059,0.99004,0.114093][-0.67651,2.99387,-0.00497636][0.315261,-0.943841,0.0988625][0.530059,0.99004,0.114093][-0.92508,2.87837,1.02556][0.386356,-0.907664,-0.163936][0.619233,0.986152,0.180661][-1.66408,2.39462,1.23249][0.637496,-0.74226,-0.206516][0.603812,0.968333,0.295174][-0.92508,2.87837,1.02556][0.386356,-0.907664,-0.163936][0.619233,0.986152,0.180661][-0.67651,2.99387,-0.00497636][0.315261,-0.943841,0.0988625][0.530059,0.99004,0.114093][-0.00853252,3.1269,0.76574][0.00139843,-0.993784,-0.111314][0.706166,0.993053,0.0869679][1.69374,1.49,2.6354][0.581599,0.508555,0.634913][0.771921,0.937265,0.410007][2.02092,0.446976,2.92544][0.693512,0.287993,0.66038][0.774756,0.90228,0.472792][2.46674,0.523013,2.24157][0.851974,0.293591,0.433525][0.796686,0.904845,0.470102][2.46674,0.523013,2.24157][0.851974,0.293591,0.433525][0.796686,0.904845,0.470102][2.069,1.55159,2.06121][0.749511,0.527883,0.399465][0.793218,0.939346,0.404553][1.69374,1.49,2.6354][0.581599,0.508555,0.634913][0.771921,0.937265,0.410007][1.69374,1.49,2.6354][0.581599,0.508555,0.634913][0.771921,0.937265,0.410007][1.42884,0.38992,3.40178][0.399926,0.284393,0.871309][0.752939,0.900369,0.466782][2.02092,0.446976,2.92544][0.693512,0.287993,0.66038][0.774756,0.90228,0.472792][-1.19916,1.97582,-1.92106][-0.382286,0.664487,-0.642117][0.473167,0.953462,0.335839][-0.00848675,1.08447,-2.8822][-0.0594006,0.453391,-0.88933][0.417959,0.924165,0.40137][-1.43029,1.03538,-2.52641][-0.41572,0.465541,-0.781312][0.47029,0.921933,0.421389][-1.19916,1.97582,-1.92106][-0.382286,0.664487,-0.642117][0.473167,0.953462,0.335839][-1.43029,1.03538,-2.52641][-0.41572,0.465541,-0.781312][0.47029,0.921933,0.421389][-2.0092,0.977614,-2.05507][-0.693371,0.439152,-0.571298][0.493709,0.920009,0.433654][-2.0092,0.977614,-2.05507][-0.693371,0.439152,-0.571298][0.493709,0.920009,0.433654][-1.68764,1.9261,-1.49761][-0.617116,0.649973,-0.443513][0.498383,0.951824,0.347492][-1.19916,1.97582,-1.92106][-0.382286,0.664487,-0.642117][0.473167,0.953462,0.335839][-1.4151,1.02057,-2.50218][0.41565,-0.465469,0.781392][0.47029,0.921933,0.421389][-0.00854754,1.06991,-2.85347][0.0593711,-0.453352,0.889352][0.417959,0.924165,0.40137][-1.18519,1.95443,-1.90145][0.38228,-0.664419,0.642191][0.473167,0.953462,0.335839][-1.98687,0.963471,-2.03667][0.693404,-0.439133,0.571273][0.493709,0.920009,0.433654][-1.4151,1.02057,-2.50218][0.41565,-0.465469,0.781392][0.47029,0.921933,0.421389][-1.18519,1.95443,-1.90145][0.38228,-0.664419,0.642191][0.473167,0.953462,0.335839][-1.18519,1.95443,-1.90145][0.38228,-0.664419,0.642191][0.473167,0.953462,0.335839][-1.66769,1.90565,-1.48274][0.617197,-0.649815,0.443632][0.498383,0.951824,0.347492][-1.98687,0.963471,-2.03667][0.693404,-0.439133,0.571273][0.493709,0.920009,0.433654][2.4393,0.513558,2.22761][-0.852029,-0.293564,-0.433435][0.796686,0.904845,0.470102][1.99854,0.43775,2.9042][-0.693526,-0.287965,-0.660376][0.774756,0.90228,0.472792][1.67382,1.47381,2.61594][-0.581608,-0.508438,-0.634998][0.771921,0.937265,0.410007][1.67382,1.47381,2.61594][-0.581608,-0.508438,-0.634998][0.771921,0.937265,0.410007][2.04463,1.53529,2.04787][-0.753816,-0.511203,-0.412836][0.793218,0.939346,0.404553][2.4393,0.513558,2.22761][-0.852029,-0.293564,-0.433435][0.796686,0.904845,0.470102][1.99854,0.43775,2.9042][-0.693526,-0.287965,-0.660376][0.774756,0.90228,0.472792][1.41373,0.381135,3.37473][-0.39969,-0.284206,-0.871478][0.752939,0.900369,0.466782][1.67382,1.47381,2.61594][-0.581608,-0.508438,-0.634998][0.771921,0.937265,0.410007][-2.44946,0.900497,-1.37797][-0.84449,0.39599,-0.360595][0.517122,0.917467,0.439802][-2.06121,1.86076,-0.914043][-0.753349,0.611697,-0.24144][0.52315,0.949679,0.357594][-1.68764,1.9261,-1.49761][-0.617116,0.649973,-0.443513][0.498383,0.951824,0.347492][-1.68764,1.9261,-1.49761][-0.617116,0.649973,-0.443513][0.498383,0.951824,0.347492][-2.0092,0.977614,-2.05507][-0.693371,0.439152,-0.571298][0.493709,0.920009,0.433654][-2.44946,0.900497,-1.37797][-0.84449,0.39599,-0.360595][0.517122,0.917467,0.439802][-2.83416,0.710693,0.427515][-0.933227,0.359152,0.00984636][0.567348,0.911166,0.449126][-2.31507,1.62432,1.35672][-0.822298,0.529142,0.209367][0.596786,0.941804,0.393107][-2.06121,1.86076,-0.914043][-0.753349,0.611697,-0.24144][0.52315,0.949679,0.357594][-2.06121,1.86076,-0.914043][-0.753349,0.611697,-0.24144][0.52315,0.949679,0.357594][-2.72937,0.809228,-0.526463][-0.912973,0.383089,-0.140443][0.541767,0.91445,0.442907][-2.83416,0.710693,0.427515][-0.933227,0.359152,0.00984636][0.567348,0.911166,0.449126][-1.66769,1.90565,-1.48274][0.617197,-0.649815,0.443632][0.498383,0.951824,0.347492][-2.03704,1.84167,-0.904638][0.759174,-0.607627,0.233335][0.52315,0.949679,0.357594][-2.42226,0.887744,-1.36636][0.844541,-0.395959,0.360509][0.517122,0.917467,0.439802][-2.42226,0.887744,-1.36636][0.844541,-0.395959,0.360509][0.517122,0.917467,0.439802][-1.98687,0.963471,-2.03667][0.693404,-0.439133,0.571273][0.493709,0.920009,0.433654][-1.66769,1.90565,-1.48274][0.617197,-0.649815,0.443632][0.498383,0.951824,0.347492][-2.03704,1.84167,-0.904638][0.759174,-0.607627,0.233335][0.52315,0.949679,0.357594][-2.28832,1.60788,1.34955][0.839317,-0.511108,-0.185244][0.596786,0.941804,0.393107][-2.72322,0.602955,1.37705][0.930523,-0.32532,-0.168206][0.592342,0.907871,0.459991][-2.72322,0.602955,1.37705][0.930523,-0.32532,-0.168206][0.592342,0.907871,0.459991][-2.69967,0.797945,-0.521207][0.911584,-0.399031,0.0989356][0.541767,0.91445,0.442907][-2.03704,1.84167,-0.904638][0.759174,-0.607627,0.233335][0.52315,0.949679,0.357594][2.73615,0.613696,1.38403][0.928861,0.300919,0.216023][0.819989,0.907907,0.460004][2.29803,1.62458,1.35675][0.822898,0.540065,0.176546][0.815545,0.941813,0.39311][2.069,1.55159,2.06121][0.749511,0.527883,0.399465][0.793218,0.939346,0.404553][2.069,1.55159,2.06121][0.749511,0.527883,0.399465][0.793218,0.939346,0.404553][2.46674,0.523013,2.24157][0.851974,0.293591,0.433525][0.796686,0.904845,0.470102][2.73615,0.613696,1.38403][0.928861,0.300919,0.216023][0.819989,0.907907,0.460004][2.43268,0.905912,-1.37778][0.857545,0.408663,-0.312427][0.8952,0.917647,0.439838][2.04417,1.86183,-0.914016][0.770592,0.582752,-0.258046][0.889179,0.949713,0.357601][2.29803,1.62458,1.35675][0.822898,0.540065,0.176546][0.815545,0.941813,0.39311][2.29803,1.62458,1.35675][0.822898,0.540065,0.176546][0.815545,0.941813,0.39311][2.81724,0.712898,0.427679][0.927939,0.371671,-0.0281015][0.844981,0.911239,0.449152][2.43268,0.905912,-1.37778][0.857545,0.408663,-0.312427][0.8952,0.917647,0.439838][-0.54234,-0.61218,-3.43384][0.766352,0.621087,-0.16418][0.757514,0.681655,-0.142525][-1.10756,-1.21289,-3.47731][-0.333309,-0.651848,-0.681175][0.812286,0.631101,-0.158534][-1.3911,-0.563359,-3.23442][-0.323608,0.689153,-0.648341][0.840834,0.685836,-0.061528][-1.12369,-0.513987,-3.23739][0.346405,0.864826,0.363429][0.818113,0.692542,-0.0778196][-1.0976,-1.20293,-3.44835][1.52705,0.623518,2.35205][0.812286,0.631101,-0.158534][-0.54234,-0.61218,-3.43384][0.766352,0.621087,-0.16418][0.757514,0.681655,-0.142525][-0.825413,-0.845228,3.86087][-0.228552,0.11813,0.966338][0.68127,0.85883,0.484014][-0.752537,0.354617,3.67385][-0.150052,0.288392,0.945682][0.682233,0.8992,0.457578][-1.44585,0.389938,3.40179][-0.467592,0.274157,0.840354][0.659392,0.900368,0.466782][-1.44585,0.389938,3.40179][-0.467592,0.274157,0.840354][0.659392,0.900368,0.466782][-1.5875,-0.806385,3.57499][-0.483829,0.125383,0.866135][0.657764,0.860131,0.497508][-0.825413,-0.845228,3.86087][-0.228552,0.11813,0.966338][0.68127,0.85883,0.484014][2.04463,1.53529,2.04787][-0.753816,-0.511203,-0.412836][0.793218,0.939346,0.404553][2.27127,1.60816,1.34956][-0.83891,-0.518996,-0.163931][0.815545,0.941813,0.39311][2.70622,0.604022,1.3771][-0.928893,-0.300885,-0.215932][0.819989,0.907907,0.460004][2.70622,0.604022,1.3771][-0.928893,-0.300885,-0.215932][0.819989,0.907907,0.460004][2.4393,0.513558,2.22761][-0.852029,-0.293564,-0.433435][0.796686,0.904845,0.470102][2.04463,1.53529,2.04787][-0.753816,-0.511203,-0.412836][0.793218,0.939346,0.404553][2.27127,1.60816,1.34956][-0.83891,-0.518996,-0.163931][0.815545,0.941813,0.39311][2.02003,1.8427,-0.904589][-0.776274,-0.57616,0.255811][0.889179,0.949713,0.357601][2.40552,0.893093,-1.36614][-0.857599,-0.408616,0.312341][0.8952,0.917647,0.439838][2.40552,0.893093,-1.36614][-0.857599,-0.408616,0.312341][0.8952,0.917647,0.439838][2.78671,0.702665,0.426951][-0.927946,-0.371651,0.0281278][0.844981,0.911239,0.449152][2.27127,1.60816,1.34956][-0.83891,-0.518996,-0.163931][0.815545,0.941813,0.39311][1.42884,0.38992,3.40178][0.399926,0.284393,0.871309][0.752939,0.900369,0.466782][1.69374,1.49,2.6354][0.581599,0.508555,0.634913][0.771921,0.937265,0.410007][0.615982,1.41402,3.29278][0.178987,0.4545,0.872579][0.728786,0.934731,0.405194][0.615982,1.41402,3.29278][0.178987,0.4545,0.872579][0.728786,0.934731,0.405194][-0.752537,0.354617,3.67385][-0.150052,0.288392,0.945682][0.682233,0.8992,0.457578][1.42884,0.38992,3.40178][0.399926,0.284393,0.871309][0.752939,0.900369,0.466782][0.609165,1.39859,3.26534][-0.178996,-0.454592,-0.872529][0.728786,0.934731,0.405194][1.67382,1.47381,2.61594][-0.581608,-0.508438,-0.634998][0.771921,0.937265,0.410007][1.41373,0.381135,3.37473][-0.39969,-0.284206,-0.871478][0.752939,0.900369,0.466782][1.41373,0.381135,3.37473][-0.39969,-0.284206,-0.871478][0.752939,0.900369,0.466782][-0.745212,0.346337,3.6436][0.149944,-0.288075,-0.945796][0.682233,0.8992,0.457578][0.609165,1.39859,3.26534][-0.178996,-0.454592,-0.872529][0.728786,0.934731,0.405194][0.516769,-0.579279,-3.36165][-0.266468,0.888542,0.37348][0.649125,0.686795,-0.12839][1.1271,-0.544049,-3.30849][0.227165,0.654164,-0.721433][0.590659,0.687583,-0.0911573][-0.00879645,-0.779034,-3.52763][-0.00136541,0.730209,-0.683223][0.703707,0.666717,-0.182178][-0.00879645,-0.779034,-3.52763][-0.00136541,0.730209,-0.683223][0.703707,0.666717,-0.182178][-0.00882626,-0.792769,-3.42502][-0.0482227,-0.248738,0.96737][0.704067,0.670886,-0.158765][0.516769,-0.579279,-3.36165][-0.266468,0.888542,0.37348][0.649125,0.686795,-0.12839][-0.54234,-0.61218,-3.43384][-0.78383,0.589005,0.196683][0.757514,0.681655,-0.142525][-0.00856781,-0.799415,-3.5027][-0.05723,-0.650516,0.757334][0.703707,0.666717,-0.182178][-0.00882626,-0.792769,-3.42502][-0.0482227,-0.248738,0.96737][0.704067,0.670886,-0.158765][-0.00882626,-0.792769,-3.42502][-0.0482227,-0.248738,0.96737][0.704067,0.670886,-0.158765][-0.00879645,-0.779034,-3.52763][-0.00136541,0.730209,-0.683223][0.703707,0.666717,-0.182178][-0.54234,-0.61218,-3.43384][-0.78383,0.589005,0.196683][0.757514,0.681655,-0.142525][-2.31507,1.62432,1.35672][-0.822298,0.529142,0.209367][0.596786,0.941804,0.393107][-2.75316,0.612632,1.38395][-0.929328,0.301052,0.213818][0.592342,0.907871,0.459991][-2.48376,0.522623,2.24158][-0.8476,0.306749,0.432989][0.615645,0.904831,0.470097][-2.48376,0.522623,2.24158][-0.8476,0.306749,0.432989][0.615645,0.904831,0.470097][-1.71075,1.48994,2.63546][-0.640589,0.512318,0.571992][0.64041,0.937263,0.410006][-2.31507,1.62432,1.35672][-0.822298,0.529142,0.209367][0.596786,0.941804,0.393107][0.433262,-3.04053,-4.12744][0.540463,-0.609879,-0.57961][0.66121,0.469354,-0.430137][-0.00851846,-3.25077,-4.21405][0.357428,-0.608537,-0.708468][0.703639,0.450858,-0.478583][-0.00925016,-3.12142,-4.2633][0.00187032,-0.0583768,-0.998293][0.703683,0.461663,-0.484362][-0.00851846,-3.25077,-4.21405][0.357428,-0.608537,-0.708468][0.703639,0.450858,-0.478583][-0.451937,-3.03884,-4.13036][-0.758851,-0.288884,-0.583688][0.74612,0.469344,-0.43131][-0.00925016,-3.12142,-4.2633][0.00187032,-0.0583768,-0.998293][0.703683,0.461663,-0.484362][-2.45634,0.513142,2.22759][0.847694,-0.306635,-0.432885][0.615645,0.904831,0.470097][-2.72322,0.602955,1.37705][0.930523,-0.32532,-0.168206][0.592342,0.907871,0.459991][-2.28832,1.60788,1.34955][0.839317,-0.511108,-0.185244][0.596786,0.941804,0.393107][-2.28832,1.60788,1.34955][0.839317,-0.511108,-0.185244][0.596786,0.941804,0.393107][-1.69089,1.47376,2.61594][0.640702,-0.512259,-0.571919][0.64041,0.937263,0.410006][-2.45634,0.513142,2.22759][0.847694,-0.306635,-0.432885][0.615645,0.904831,0.470097][-2.69739,-0.66026,2.28405][0.900102,-0.0883682,-0.426623][0.612908,0.865182,0.506761][-2.74914,-1.93981,2.12654][-0.286129,-0.763695,-0.578706][0.609378,0.820276,0.505838][-2.99994,-1.81761,1.18484][-0.0620366,-0.99313,-0.0992225][0.585356,0.827108,0.498112][-2.99994,-1.81761,1.18484][-0.0620366,-0.99313,-0.0992225][0.585356,0.827108,0.498112][-2.98748,-0.558146,1.3251][0.975787,-0.0987669,-0.195151][0.588658,0.868638,0.498481][-2.69739,-0.66026,2.28405][0.900102,-0.0883682,-0.426623][0.612908,0.865182,0.506761][-1.4386,-2.33309,-3.55296][-0.590573,0.642313,0.488525][0.852164,0.393124,-0.207344][-0.999486,-2.27842,-3.68824][-0.101564,0.920665,0.376909][0.807591,0.396811,-0.270254][-1.02685,-2.55621,-3.85317][-0.246048,0.282436,-0.927195][0.809225,0.370456,-0.314677][-1.02685,-2.55621,-3.85317][-0.246048,0.282436,-0.927195][0.809225,0.370456,-0.314677][-1.71271,-2.77812,-3.62941][-0.484717,0.1672,-0.858541][0.877604,0.350909,-0.222478][-1.4386,-2.33309,-3.55296][-0.590573,0.642313,0.488525][0.852164,0.393124,-0.207344][-1.01799,-2.85904,-3.86573][-0.0347092,-0.973351,-0.226676][0.810463,0.344236,-0.335731][-0.999486,-2.27842,-3.68824][-0.101564,0.920665,0.376909][0.807591,0.396811,-0.270254][-1.4386,-2.33309,-3.55296][-0.590573,0.642313,0.488525][0.852164,0.393124,-0.207344][-1.4386,-2.33309,-3.55296][-0.590573,0.642313,0.488525][0.852164,0.393124,-0.207344][-1.72522,-2.26719,-3.44731][0.536945,0.830073,-0.150563][0.880084,0.396735,-0.150355][-1.01799,-2.85904,-3.86573][-0.0347092,-0.973351,-0.226676][0.810463,0.344236,-0.335731][-0.0085578,-0.858232,3.94886][0.0168336,0.154895,0.987788][0.706165,0.858398,0.477533][-0.825413,-0.845228,3.86087][-0.228552,0.11813,0.966338][0.68127,0.85883,0.484014][-0.891549,-5.20984,4.17554][-0.217624,-0.96973,0.110744][0.681568,0.712153,0.532181][-0.891549,-5.20984,4.17554][-0.217624,-0.96973,0.110744][0.681568,0.712153,0.532181][-0.008497,-5.31969,4.2633][0.00627822,-0.992315,0.123581][0.706165,0.708455,0.524354][-0.0085578,-0.858232,3.94886][0.0168336,0.154895,0.987788][0.706165,0.858398,0.477533][-0.891549,-5.20984,4.17554][-0.217624,-0.96973,0.110744][0.681568,0.712153,0.532181][-0.818018,-0.847975,3.82964][0.228139,-0.121896,-0.965968][0.68127,0.85883,0.484014][-0.00853252,-0.860809,3.91676][-0.0167725,-0.158229,-0.98726][0.706165,0.858398,0.477533][-0.00853252,-0.860809,3.91676][-0.0167725,-0.158229,-0.98726][0.706165,0.858398,0.477533][-0.008497,-5.31969,4.2633][0.00627822,-0.992315,0.123581][0.706165,0.708455,0.524354][-0.891549,-5.20984,4.17554][-0.217624,-0.96973,0.110744][0.681568,0.712153,0.532181][-2.52615,-1.86143,-2.7503][-0.765508,0.191772,-0.614183][0.95832,0.432872,0.139074][-2.71528,-1.37538,-2.07228][0.329612,0.208238,-0.920865][0.989368,0.476671,0.396884][-2.65754,-0.678815,-1.99][-0.338608,0.588721,0.733997][0.981651,0.540721,0.463605][-2.65754,-0.678815,-1.99][-0.338608,0.588721,0.733997][0.981651,0.540721,0.463605][-2.71528,-1.37538,-2.07228][0.329612,0.208238,-0.920865][0.989368,0.476671,0.396884][-2.66108,-2.06808,-2.53478][-0.571019,-0.469978,0.673096][0.979391,0.414819,0.215246][2.67438,-2.09719,-2.41025][-0.00417445,0.94831,0.317318][0.428226,0.413868,0.251971][2.40259,-1.68555,-2.73483][0.352773,-0.39046,0.850348][0.461055,0.448516,0.140444][2.42353,-2.64406,-2.96341][0.5471,-0.739539,0.392126][0.458855,0.364514,0.0318297][2.67438,-2.09719,-2.41025][-0.00417445,0.94831,0.317318][0.428226,0.413868,0.251971][2.42353,-2.64406,-2.96341][0.5471,-0.739539,0.392126][0.458855,0.364514,0.0318297][2.31656,-2.33834,-3.10279][0.684311,0.181116,-0.70634][0.475594,0.390395,-0.0061792][-2.20578,-0.157306,-2.47586][-0.722728,0.213219,-0.65742][0.490315,0.881891,0.494094][-2.0092,0.977614,-2.05507][-0.693371,0.439152,-0.571298][0.493709,0.920009,0.433654][-1.43029,1.03538,-2.52641][-0.41572,0.465541,-0.781312][0.47029,0.921933,0.421389][-1.43029,1.03538,-2.52641][-0.41572,0.465541,-0.781312][0.47029,0.921933,0.421389][-1.57275,-0.0979437,-2.95235][-0.427708,0.240304,-0.871389][0.468385,0.883883,0.480213][-2.20578,-0.157306,-2.47586][-0.722728,0.213219,-0.65742][0.490315,0.881891,0.494094][-1.4151,1.02057,-2.50218][0.41565,-0.465469,0.781392][0.47029,0.921933,0.421389][-1.98687,0.963471,-2.03667][0.693404,-0.439133,0.571273][0.493709,0.920009,0.433654][-2.18258,-0.16481,-2.45482][0.721399,-0.226725,0.654355][0.490315,0.881891,0.494094][-2.18258,-0.16481,-2.45482][0.721399,-0.226725,0.654355][0.490315,0.881891,0.494094][-1.55765,-0.105826,-2.92501][0.42674,-0.254021,0.867967][0.468385,0.883883,0.480213][-1.4151,1.02057,-2.50218][0.41565,-0.465469,0.781392][0.47029,0.921933,0.421389][1.06144,-2.28415,-3.6594][0.119432,0.88506,0.449893][0.599048,0.395685,-0.258285][1.50694,-2.32273,-3.50154][-0.0298552,0.927169,0.373452][0.552797,0.391963,-0.190058][1.08363,-2.55392,-3.82303][0.249001,0.255424,-0.934215][0.598167,0.370689,-0.302142][1.08363,-2.55392,-3.82303][0.249001,0.255424,-0.934215][0.598167,0.370689,-0.302142][0.0105414,-1.9484,-3.66334][0.135934,0.934926,0.327773][0.705465,0.427719,-0.253798][1.06144,-2.28415,-3.6594][0.119432,0.88506,0.449893][0.599048,0.395685,-0.258285][-2.68483,-0.237788,-1.75733][-0.892732,0.176463,-0.414597][0.512432,0.879232,0.496875][-2.20578,-0.157306,-2.47586][-0.722728,0.213219,-0.65742][0.490315,0.881891,0.494094][-2.1785,-1.30823,-2.65368][-0.0568976,-0.9655,-0.25411][0.48716,0.83948,0.514043][-2.1785,-1.30823,-2.65368][-0.0568976,-0.9655,-0.25411][0.48716,0.83948,0.514043][-2.65481,-1.50004,-1.95748][-0.0526979,-0.976424,-0.20933][0.508263,0.837125,0.513127][-2.68483,-0.237788,-1.75733][-0.892732,0.176463,-0.414597][0.512432,0.879232,0.496875][-2.1785,-1.30823,-2.65368][-0.0568976,-0.9655,-0.25411][0.48716,0.83948,0.514043][-2.18258,-0.16481,-2.45482][0.721399,-0.226725,0.654355][0.490315,0.881891,0.494094][-2.65614,-0.24403,-1.7441][0.891341,-0.189022,0.412047][0.512432,0.879232,0.496875][-2.65614,-0.24403,-1.7441][0.891341,-0.189022,0.412047][0.512432,0.879232,0.496875][-2.65481,-1.50004,-1.95748][-0.0526979,-0.976424,-0.20933][0.508263,0.837125,0.513127][-2.1785,-1.30823,-2.65368][-0.0568976,-0.9655,-0.25411][0.48716,0.83948,0.514043][-2.23831,-0.742827,3.05632][-0.743371,0.115351,0.658857][0.635435,0.862282,0.507168][-2.72636,-0.657215,2.2978][-0.90153,0.0759814,0.425993][0.612908,0.865182,0.506761][-2.74914,-1.93981,2.12654][-0.286129,-0.763695,-0.578706][0.609378,0.820276,0.505838][-2.23831,-0.742827,3.05632][-0.743371,0.115351,0.658857][0.635435,0.862282,0.507168][-2.03792,0.446905,2.92548][-0.692792,0.288049,0.661111][0.637575,0.902276,0.472791][-2.48376,0.522623,2.24158][-0.8476,0.306749,0.432989][0.615645,0.904831,0.470097][-2.48376,0.522623,2.24158][-0.8476,0.306749,0.432989][0.615645,0.904831,0.470097][-2.72636,-0.657215,2.2978][-0.90153,0.0759814,0.425993][0.612908,0.865182,0.506761][-2.23831,-0.742827,3.05632][-0.743371,0.115351,0.658857][0.635435,0.862282,0.507168][-0.541291,-2.87331,-3.97814][-0.885305,-0.0583656,0.461334][0.756682,0.485789,-0.393863][-0.295752,-3.21019,-4.08101][-0.125485,-0.899291,0.418963][0.739159,0.457706,-0.430589][-0.00936389,-3.12177,-4.23109][0.219977,-0.149409,0.963995][0.703683,0.461663,-0.484362][-0.295752,-3.21019,-4.08101][-0.125485,-0.899291,0.418963][0.739159,0.457706,-0.430589][-0.451937,-3.03884,-4.13036][-0.758851,-0.288884,-0.583688][0.74612,0.469344,-0.43131][-0.00851846,-3.25077,-4.21405][0.357428,-0.608537,-0.708468][0.703639,0.450858,-0.478583][-2.98908,-0.335302,-0.821583][-0.970915,0.139357,-0.194687][0.536547,0.875986,0.492742][-2.97508,-1.60785,-1.04641][-0.0923388,-0.988834,-0.116964][0.531577,0.834215,0.506725][-3.07552,-1.69118,0.0617105][-0.0450416,-0.993893,-0.100738][0.558104,0.830667,0.494434][-3.07552,-1.69118,0.0617105][-0.0450416,-0.993893,-0.100738][0.558104,0.830667,0.494434][-3.10467,-0.444316,0.24907][-0.994477,0.10484,-0.00499579][0.562608,0.872353,0.491754][-2.98908,-0.335302,-0.821583][-0.970915,0.139357,-0.194687][0.536547,0.875986,0.492742][-3.07552,-1.69118,0.0617105][-0.0450416,-0.993893,-0.100738][0.558104,0.830667,0.494434][-2.97508,-1.60785,-1.04641][-0.0923388,-0.988834,-0.116964][0.531577,0.834215,0.506725][-2.95788,-0.340352,-0.815387][0.969388,-0.151702,0.193065][0.536547,0.875986,0.492742][-2.95788,-0.340352,-0.815387][0.969388,-0.151702,0.193065][0.536547,0.875986,0.492742][-3.0727,-0.448252,0.249189][0.991073,-0.133318,0.000904361][0.562608,0.872353,0.491754][-3.07552,-1.69118,0.0617105][-0.0450416,-0.993893,-0.100738][0.558104,0.830667,0.494434][-2.03118,-2.04742,-3.17521][0.539991,0.812782,-0.218622][0.913798,0.415907,-0.0480802][-1.72522,-2.26719,-3.44731][0.536945,0.830073,-0.150563][0.880084,0.396735,-0.150355][-1.71271,-2.77812,-3.62941][-0.484717,0.1672,-0.858541][0.877604,0.350909,-0.222478][-1.71271,-2.77812,-3.62941][-0.484717,0.1672,-0.858541][0.877604,0.350909,-0.222478][-2.52615,-1.86143,-2.7503][-0.765508,0.191772,-0.614183][0.95832,0.432872,0.139074][-2.03118,-2.04742,-3.17521][0.539991,0.812782,-0.218622][0.913798,0.415907,-0.0480802][1.57047,-0.80641,3.57496][0.484869,0.124989,0.865609][0.754567,0.860132,0.497506][0.808338,-0.845302,3.86088][0.208299,0.161845,0.964582][0.731061,0.85883,0.484014][0.870744,-5.18836,4.1793][0.213488,-0.969762,0.11826][0.730766,0.712153,0.532185][0.870744,-5.18836,4.1793][0.213488,-0.969762,0.11826][0.730766,0.712153,0.532185][1.70448,-4.94586,3.82809][0.346794,-0.937678,-0.0222227][0.75468,0.721042,0.542812][1.57047,-0.80641,3.57496][0.484869,0.124989,0.865609][0.754567,0.860132,0.497506][0.870744,-5.18836,4.1793][0.213488,-0.969762,0.11826][0.730766,0.712153,0.532185][0.800952,-0.847973,3.82964][-0.207987,-0.165157,-0.964087][0.731061,0.85883,0.484014][1.55476,-0.809377,3.54699][-0.484256,-0.128817,-0.865391][0.754567,0.860132,0.497506][1.55476,-0.809377,3.54699][-0.484256,-0.128817,-0.865391][0.754567,0.860132,0.497506][1.70448,-4.94586,3.82809][0.346794,-0.937678,-0.0222227][0.75468,0.721042,0.542812][0.870744,-5.18836,4.1793][0.213488,-0.969762,0.11826][0.730766,0.712153,0.532185][0.433262,-3.04053,-4.12744][-0.439423,0.683001,0.583453][0.66121,0.469354,-0.430137][-0.00851846,-3.25077,-4.21405][-0.439423,0.683001,0.583453][0.703639,0.450858,-0.478583][0.25531,-3.21406,-4.05833][-0.439423,0.683001,0.583453][0.668114,0.458209,-0.429514][0.25531,-3.21406,-4.05833][0.439423,-0.683001,-0.583453][0.668114,0.458209,-0.429514][-0.00851846,-3.25077,-4.21405][0.357428,-0.608537,-0.708468][0.703639,0.450858,-0.478583][0.433262,-3.04053,-4.12744][0.540463,-0.609879,-0.57961][0.66121,0.469354,-0.430137][1.42884,0.38992,3.40178][0.399926,0.284393,0.871309][0.752939,0.900369,0.466782][0.808338,-0.845302,3.86088][0.208299,0.161845,0.964582][0.731061,0.85883,0.484014][1.57047,-0.80641,3.57496][0.484869,0.124989,0.865609][0.754567,0.860132,0.497506][1.55476,-0.809377,3.54699][-0.484256,-0.128817,-0.865391][0.754567,0.860132,0.497506][0.800952,-0.847973,3.82964][-0.207987,-0.165157,-0.964087][0.731061,0.85883,0.484014][1.41373,0.381135,3.37473][-0.39969,-0.284206,-0.871478][0.752939,0.900369,0.466782][2.56995,-0.458316,-2.24247][-0.28177,-0.901522,-0.328425][0.445719,0.696845,0.341031][2.71515,-0.775836,-1.87877][0.16578,-0.339718,0.925802][0.418994,0.672379,0.47748][2.58907,-0.50578,-1.99839][-0.659395,0.429546,0.616999][0.431264,0.696874,0.42883][2.01737,-0.63714,-2.88878][0.302402,0.886103,-0.351248][0.502088,0.67918,0.0819121][2.00537,-0.658583,-2.86796][-0.570297,0.236533,0.786647][0.502088,0.67918,0.0819121][2.56995,-0.458316,-2.24247][-0.28177,-0.901522,-0.328425][0.445719,0.696845,0.341031][2.56995,-0.458316,-2.24247][-0.28177,-0.901522,-0.328425][0.445719,0.696845,0.341031][2.69688,-0.489116,-2.05596][0.711256,0.698164,0.0817465][0.433539,0.692548,0.415502][2.01737,-0.63714,-2.88878][0.302402,0.886103,-0.351248][0.502088,0.67918,0.0819121][0.511302,-2.86769,-3.99195][0.763767,-0.502647,0.404977][0.650262,0.485009,-0.392409][0.433262,-3.04053,-4.12744][0.540463,-0.609879,-0.57961][0.66121,0.469354,-0.430137][0.324858,-1.57256,-3.68592][0.431786,0.0798375,-0.898436][0.671107,0.597524,-0.244351][0.324858,-1.57256,-3.68592][0.431786,0.0798375,-0.898436][0.671107,0.597524,-0.244351][0.313026,-1.89965,-3.67878][0.247188,-0.219164,0.943857][0.670892,0.569552,-0.270567][0.511302,-2.86769,-3.99195][0.763767,-0.502647,0.404977][0.650262,0.485009,-0.392409][1.08057,-1.2029,-3.44999][-0.197916,-0.292845,0.935452][0.594789,0.63095,-0.159194][0.38228,-1.6276,-3.59829][0.531269,-0.671463,0.516616][0.664199,0.594115,-0.232697][0.324858,-1.57256,-3.68592][0.431786,0.0798375,-0.898436][0.671107,0.597524,-0.244351][1.1271,-0.544049,-3.30849][0.227165,0.654164,-0.721433][0.590659,0.687583,-0.0911573][1.10628,-0.513962,-3.23725][-0.164452,0.79659,0.581722][0.589987,0.692542,-0.0777362][2.00537,-0.658583,-2.86796][-0.570297,0.236533,0.786647][0.502088,0.67918,0.0819121][2.00537,-0.658583,-2.86796][-0.570297,0.236533,0.786647][0.502088,0.67918,0.0819121][2.01737,-0.63714,-2.88878][0.302402,0.886103,-0.351248][0.502088,0.67918,0.0819121][1.1271,-0.544049,-3.30849][0.227165,0.654164,-0.721433][0.590659,0.687583,-0.0911573][-1.35003,-1.24169,-3.32712][0.576416,-1.79762,1.04366][0.839898,0.629905,-0.112328][-2.07647,-1.32677,-2.98906][-0.556518,-0.824993,0.0983586][0.908356,0.621142,0.0416103][-1.38259,-1.19644,-3.38862][-0.356726,-0.335673,-0.87182][0.839695,0.632546,-0.121737][-1.0976,-1.20293,-3.44835][1.52705,0.623518,2.35205][0.812286,0.631101,-0.158534][-2.07647,-1.32677,-2.98906][-0.556518,-0.824993,0.0983586][0.908356,0.621142,0.0416103][-1.35003,-1.24169,-3.32712][0.576416,-1.79762,1.04366][0.839898,0.629905,-0.112328][-2.74914,-1.93981,2.12654][-0.286129,-0.763695,-0.578706][0.609378,0.820276,0.505838][-2.69739,-0.66026,2.28405][0.900102,-0.0883682,-0.426623][0.612908,0.865182,0.506761][-2.21458,-0.745888,3.03476][0.740967,-0.1218,-0.660403][0.635435,0.862282,0.507168][-0.258091,2.82501,1.77359][-0.114628,0.899521,0.421571][0.688975,0.983359,0.211932][-0.4613,2.26894,2.66558][-0.162781,0.721001,0.673543][0.685493,0.963279,0.32045][0.444174,2.26902,2.66551][0.173335,0.743267,0.64615][0.726838,0.963279,0.32045][-2.35775,-2.61402,-3.05478][0.501833,-0.629167,-0.59356][0.948136,0.366334,-0.000633851][-2.03118,-2.04742,-3.17521][0.539991,0.812782,-0.218622][0.913798,0.415907,-0.0480802][-2.26939,-1.68594,-2.8756][0.720393,0.399187,-0.567172][0.936429,0.448807,0.0779663][-2.26939,-1.68594,-2.8756][0.720393,0.399187,-0.567172][0.936429,0.448807,0.0779663][-2.66108,-2.06808,-2.53478][-0.571019,-0.469978,0.673096][0.979391,0.414819,0.215246][-2.35775,-2.61402,-3.05478][0.501833,-0.629167,-0.59356][0.948136,0.366334,-0.000633851][-2.35775,-2.61402,-3.05478][0.501833,-0.629167,-0.59356][0.948136,0.366334,-0.000633851][-2.66108,-2.06808,-2.53478][-0.571019,-0.469978,0.673096][0.979391,0.414819,0.215246][-2.52615,-1.86143,-2.7503][-0.765508,0.191772,-0.614183][0.95832,0.432872,0.139074][2.27127,1.60816,1.34956][-0.83891,-0.518996,-0.163931][0.815545,0.941813,0.39311][2.04463,1.53529,2.04787][-0.753816,-0.511203,-0.412836][0.793218,0.939346,0.404553][1.64701,2.39466,1.23249][-0.636222,-0.743469,-0.206095][0.808519,0.968335,0.295174][1.64701,2.39466,1.23249][-0.636222,-0.743469,-0.206095][0.808519,0.968335,0.295174][1.63843,2.50743,0.135175][-0.63704,-0.76867,0.0576683][0.854613,0.97214,0.264384][2.27127,1.60816,1.34956][-0.83891,-0.518996,-0.163931][0.815545,0.941813,0.39311][1.63843,2.50743,0.135175][-0.63704,-0.76867,0.0576683][0.854613,0.97214,0.264384][1.64701,2.39466,1.23249][-0.636222,-0.743469,-0.206095][0.808519,0.968335,0.295174][0.908015,2.87838,1.02556][-0.38203,-0.911552,-0.152072][0.793098,0.986152,0.180661][0.438879,2.24533,2.64434][-0.173261,-0.743249,-0.64619][0.726838,0.963279,0.32045][-0.455945,2.24533,2.64434][0.162732,-0.721127,-0.67342][0.685493,0.963279,0.32045][-0.255197,2.79585,1.76021][0.114768,-0.899523,-0.42153][0.688975,0.983359,0.211932][-0.00936389,-3.12177,-4.23109][-0.247957,0.125291,0.960635][0.703683,0.461663,-0.484362][-0.00851846,-3.25077,-4.21405][-0.247957,0.125291,0.960635][0.703639,0.450858,-0.478583][0.433262,-3.04053,-4.12744][-0.247957,0.125291,0.960635][0.66121,0.469354,-0.430137][-0.00936389,-3.12177,-4.23109][0.219977,-0.149409,0.963995][0.703683,0.461663,-0.484362][-0.295752,-3.21019,-4.08101][-0.125485,-0.899291,0.418963][0.739159,0.457706,-0.430589][-0.00851846,-3.25077,-4.21405][0.357428,-0.608537,-0.708468][0.703639,0.450858,-0.478583][0.516769,-0.579279,-3.36165][-0.266468,0.888542,0.37348][0.649125,0.686795,-0.12839][-0.00882626,-0.792769,-3.42502][-0.0482227,-0.248738,0.96737][0.704067,0.670886,-0.158765][-0.00856781,-0.799415,-3.5027][-0.05723,-0.650516,0.757334][0.703707,0.666717,-0.182178][2.22117,-0.742448,3.05639][0.743611,0.113681,0.658877][0.776896,0.862291,0.50717][2.72368,-1.91083,2.14969][0.288438,-0.781782,-0.55283][0.802678,0.820159,0.50546][2.70933,-0.655958,2.29781][0.899826,0.0813286,0.428601][0.799424,0.865216,0.506771][2.70933,-0.655958,2.29781][0.899826,0.0813286,0.428601][0.799424,0.865216,0.506771][2.46674,0.523013,2.24157][0.851974,0.293591,0.433525][0.796686,0.904845,0.470102][2.02092,0.446976,2.92544][0.693512,0.287993,0.66038][0.774756,0.90228,0.472792][2.02092,0.446976,2.92544][0.693512,0.287993,0.66038][0.774756,0.90228,0.472792][2.22117,-0.742448,3.05639][0.743611,0.113681,0.658877][0.776896,0.862291,0.50717][2.70933,-0.655958,2.29781][0.899826,0.0813286,0.428601][0.799424,0.865216,0.506771][2.68037,-0.659257,2.28409][-0.898331,-0.0938876,-0.429169][0.799424,0.865216,0.506771][2.72368,-1.91083,2.14969][0.288438,-0.781782,-0.55283][0.802678,0.820159,0.50546][2.19752,-0.745633,3.03476][-0.741082,-0.120016,-0.660601][0.776896,0.862291,0.50717][1.99854,0.43775,2.9042][-0.693526,-0.287965,-0.660376][0.774756,0.90228,0.472792][2.4393,0.513558,2.22761][-0.852029,-0.293564,-0.433435][0.796686,0.904845,0.470102][2.68037,-0.659257,2.28409][-0.898331,-0.0938876,-0.429169][0.799424,0.865216,0.506771][2.68037,-0.659257,2.28409][-0.898331,-0.0938876,-0.429169][0.799424,0.865216,0.506771][2.19752,-0.745633,3.03476][-0.741082,-0.120016,-0.660601][0.776896,0.862291,0.50717][1.99854,0.43775,2.9042][-0.693526,-0.287965,-0.660376][0.774756,0.90228,0.472792][-2.60006,-0.502148,-1.98217][-0.0612945,0.574386,0.816286][0.97609,0.696874,0.427518][-2.46373,-0.479227,-2.43556][0.441725,-0.779746,0.443706][0.949377,0.69505,0.261321][-2.49686,-0.452954,-2.15139][0.686545,0.513537,0.514718][0.966079,0.701377,0.359263][-2.49686,-0.452954,-2.15139][0.686545,0.513537,0.514718][0.966079,0.701377,0.359263][-2.48008,-0.456403,-2.45134][-0.423771,0.804162,-0.416824][0.949377,0.69505,0.261321][-2.60006,-0.502148,-1.98217][-0.0612945,0.574386,0.816286][0.97609,0.696874,0.427518][-0.752537,0.354617,3.67385][-0.150052,0.288392,0.945682][0.682233,0.8992,0.457578][-0.825413,-0.845228,3.86087][-0.228552,0.11813,0.966338][0.68127,0.85883,0.484014][-0.0085578,-0.858232,3.94886][0.0168336,0.154895,0.987788][0.706165,0.858398,0.477533][-0.00853252,-0.860809,3.91676][-0.0167725,-0.158229,-0.98726][0.706165,0.858398,0.477533][-0.818018,-0.847975,3.82964][0.228139,-0.121896,-0.965968][0.68127,0.85883,0.484014][-0.745212,0.346337,3.6436][0.149944,-0.288075,-0.945796][0.682233,0.8992,0.457578][-0.451937,-3.03884,-4.13036][-0.758851,-0.288884,-0.583688][0.74612,0.469344,-0.43131][-0.541291,-2.87331,-3.97814][-0.885305,-0.0583656,0.461334][0.756682,0.485789,-0.393863][-0.354728,-1.89111,-3.7113][-0.509955,-0.190196,0.838911][0.735696,0.570659,-0.271042][-0.354728,-1.89111,-3.7113][-0.509955,-0.190196,0.838911][0.735696,0.570659,-0.271042][-0.341943,-1.57247,-3.68638][-0.944786,0.326683,-0.025629][0.736048,0.597552,-0.244576][-0.451937,-3.03884,-4.13036][-0.758851,-0.288884,-0.583688][0.74612,0.469344,-0.43131][-0.295752,-3.21019,-4.08101][-0.125485,-0.899291,0.418963][0.739159,0.457706,-0.430589][-0.541291,-2.87331,-3.97814][-0.885305,-0.0583656,0.461334][0.756682,0.485789,-0.393863][-0.451937,-3.03884,-4.13036][-0.758851,-0.288884,-0.583688][0.74612,0.469344,-0.43131][2.68299,-1.07134,-1.95367][0.9532,-0.167517,0.251689][0.419279,0.643256,0.440694][2.72924,-1.19449,-2.21078][0.9532,-0.167517,0.251689][0.429566,0.632723,0.349147][2.71515,-0.775836,-1.87877][0.9532,-0.167517,0.251689][0.418994,0.672379,0.47748][2.71515,-0.775836,-1.87877][-0.9532,0.167517,-0.251689][0.418994,0.672379,0.47748][2.72924,-1.19449,-2.21078][-0.9532,0.167517,-0.251689][0.429566,0.632723,0.349147][2.68299,-1.07134,-1.95367][-0.9532,0.167517,-0.251689][0.419279,0.643256,0.440694][-1.3911,-0.563359,-3.23442][-0.323608,0.689153,-0.648341][0.840834,0.685836,-0.061528][-1.10756,-1.21289,-3.47731][-0.333309,-0.651848,-0.681175][0.812286,0.631101,-0.158534][-1.38259,-1.19644,-3.38862][-0.356726,-0.335673,-0.87182][0.839695,0.632546,-0.121737][-1.10756,-1.21289,-3.47731][-0.333309,-0.651848,-0.681175][0.812286,0.631101,-0.158534][-1.0739,-1.22838,-3.38344][0.138968,-1.40924,0.040526][0.812414,0.628594,-0.149145][-1.35003,-1.24169,-3.32712][0.576416,-1.79762,1.04366][0.839898,0.629905,-0.112328][-1.35003,-1.24169,-3.32712][0.576416,-1.79762,1.04366][0.839898,0.629905,-0.112328][-1.38259,-1.19644,-3.38862][-0.356726,-0.335673,-0.87182][0.839695,0.632546,-0.121737][-1.10756,-1.21289,-3.47731][-0.333309,-0.651848,-0.681175][0.812286,0.631101,-0.158534][2.71752,-0.711894,-1.95759][0.686166,0.255389,-0.681141][0.426962,0.54843,0.466785][2.47801,-1.23335,-2.39438][0.686166,0.255389,-0.681141][0.450726,0.489908,0.271664][2.56408,-0.517755,-2.03936][0.686166,0.255389,-0.681141][0.438368,0.55421,0.41502][2.56408,-0.517755,-2.03936][-0.686166,-0.255389,0.681141][0.438368,0.55421,0.41502][2.47801,-1.23335,-2.39438][-0.686166,-0.255389,0.681141][0.450726,0.489908,0.271664][2.71752,-0.711894,-1.95759][-0.686166,-0.255389,0.681141][0.426962,0.54843,0.466785][0.313026,-1.89965,-3.67878][0.247188,-0.219164,0.943857][0.670892,0.569552,-0.270567][0.433262,-3.04053,-4.12744][0.540463,-0.609879,-0.57961][0.66121,0.469354,-0.430137][0.511302,-2.86769,-3.99195][0.763767,-0.502647,0.404977][0.650262,0.485009,-0.392409][-1.01799,-2.85904,-3.86573][-0.0347092,-0.973351,-0.226676][0.810463,0.344236,-0.335731][-1.72522,-2.26719,-3.44731][0.536945,0.830073,-0.150563][0.880084,0.396735,-0.150355][-1.31003,-2.93717,-3.77549][0.276259,-0.92815,-0.249437][0.841493,0.33884,-0.297][-1.01799,-2.85904,-3.86573][-0.0347092,-0.973351,-0.226676][0.810463,0.344236,-0.335731][-1.31003,-2.93717,-3.77549][0.276259,-0.92815,-0.249437][0.841493,0.33884,-0.297][-1.02685,-2.55621,-3.85317][-0.246048,0.282436,-0.927195][0.809225,0.370456,-0.314677][0.324858,-1.57256,-3.68592][0.431786,0.0798375,-0.898436][0.671107,0.597524,-0.244351][0.38228,-1.6276,-3.59829][0.531269,-0.671463,0.516616][0.664199,0.594115,-0.232697][0.313026,-1.89965,-3.67878][0.247188,-0.219164,0.943857][0.670892,0.569552,-0.270567][2.43268,0.905912,-1.37778][0.857545,0.408663,-0.312427][0.8952,0.917647,0.439838][2.97265,-0.324133,-0.821012][0.975332,0.158585,-0.153549][0.875769,0.876361,0.492822][2.66852,-0.221047,-1.75679][0.888406,0.188255,-0.418683][0.899874,0.879791,0.496951][2.63991,-0.227493,-1.74348][-0.886798,-0.200754,0.416278][0.899874,0.879791,0.496951][2.94143,-0.329275,-0.814954][-0.973524,-0.170958,0.151738][0.875769,0.876361,0.492822][2.40552,0.893093,-1.36614][-0.857599,-0.408616,0.312341][0.8952,0.917647,0.439838][2.69688,-0.489116,-2.05596][0.711256,0.698164,0.0817465][0.433539,0.692548,0.415502][2.56995,-0.458316,-2.24247][-0.28177,-0.901522,-0.328425][0.445719,0.696845,0.341031][2.58907,-0.50578,-1.99839][-0.659395,0.429546,0.616999][0.431264,0.696874,0.42883][2.69688,-0.489116,-2.05596][0.711256,0.698164,0.0817465][0.433539,0.692548,0.415502][2.58907,-0.50578,-1.99839][-0.659395,0.429546,0.616999][0.431264,0.696874,0.42883][2.71515,-0.775836,-1.87877][0.16578,-0.339718,0.925802][0.418994,0.672379,0.47748][2.56995,-0.458316,-2.24247][-0.28177,-0.901522,-0.328425][0.445719,0.696845,0.341031][2.00537,-0.658583,-2.86796][-0.570297,0.236533,0.786647][0.502088,0.67918,0.0819121][2.29048,-0.893622,-2.74052][-0.685749,-0.153075,0.711559][0.47529,0.658035,0.135558][2.00537,-0.658583,-2.86796][-0.570297,0.236533,0.786647][0.502088,0.67918,0.0819121][1.81245,-1.2805,-3.15422][-0.428559,-0.681017,0.593762][0.522162,0.624156,-0.0361435][2.29048,-0.893622,-2.74052][-0.685749,-0.153075,0.711559][0.47529,0.658035,0.135558][-0.350996,-2.02697,-3.69518][-0.300215,0.8934,0.334226][0.741539,0.419236,-0.272425][1.07545,-2.56283,-3.79318][-0.238928,-0.250553,0.938156][0.598167,0.370689,-0.302142][0.0105414,-1.9484,-3.66334][0.135934,0.934926,0.327773][0.705465,0.427719,-0.253798][-0.350996,-2.02697,-3.69518][-0.300215,0.8934,0.334226][0.741539,0.419236,-0.272425][0.0105414,-1.9484,-3.66334][0.135934,0.934926,0.327773][0.705465,0.427719,-0.253798][-0.344459,-2.47907,-3.92886][-0.0605202,0.300318,-0.951917][0.741064,0.377229,-0.345873][-1.71075,1.48994,2.63546][-0.640589,0.512318,0.571992][0.64041,0.937263,0.410006][-2.48376,0.522623,2.24158][-0.8476,0.306749,0.432989][0.615645,0.904831,0.470097][-2.03792,0.446905,2.92548][-0.692792,0.288049,0.661111][0.637575,0.902276,0.472791][-0.341943,-1.57247,-3.68638][-0.256536,-0.885929,0.386419][0.736048,0.597552,-0.244576][-1.0976,-1.20293,-3.44835][1.52705,0.623518,2.35205][0.812286,0.631101,-0.158534][-1.0739,-1.22838,-3.38344][0.138968,-1.40924,0.040526][0.812414,0.628594,-0.149145][-1.0739,-1.22838,-3.38344][0.138968,-1.40924,0.040526][0.812414,0.628594,-0.149145][-1.10756,-1.21289,-3.47731][-0.333309,-0.651848,-0.681175][0.812286,0.631101,-0.158534][-0.341943,-1.57247,-3.68638][-0.256536,-0.885929,0.386419][0.736048,0.597552,-0.244576][-2.0156,0.437629,2.90419][0.69284,-0.287989,-0.661086][0.637575,0.902276,0.472791][-2.45634,0.513142,2.22759][0.847694,-0.306635,-0.432885][0.615645,0.904831,0.470097][-1.69089,1.47376,2.61594][0.640702,-0.512259,-0.571919][0.64041,0.937263,0.410006][1.07545,-2.56283,-3.79318][-0.238928,-0.250553,0.938156][0.598167,0.370689,-0.302142][1.50694,-2.32273,-3.50154][-0.0298552,0.927169,0.373452][0.552797,0.391963,-0.190058][1.06144,-2.28415,-3.6594][0.119432,0.88506,0.449893][0.599048,0.395685,-0.258285][1.06144,-2.28415,-3.6594][0.119432,0.88506,0.449893][0.599048,0.395685,-0.258285][0.0105414,-1.9484,-3.66334][0.135934,0.934926,0.327773][0.705465,0.427719,-0.253798][1.07545,-2.56283,-3.79318][-0.238928,-0.250553,0.938156][0.598167,0.370689,-0.302142][-2.26939,-1.68594,-2.8756][0.720393,0.399187,-0.567172][0.936429,0.448807,0.0779663][-2.03118,-2.04742,-3.17521][0.539991,0.812782,-0.218622][0.913798,0.415907,-0.0480802][-2.52615,-1.86143,-2.7503][-0.765508,0.191772,-0.614183][0.95832,0.432872,0.139074][1.08057,-1.2029,-3.44999][-0.197916,-0.292845,0.935452][0.594789,0.63095,-0.159194][1.36942,-1.19623,-3.39371][0.303365,-0.256407,-0.917728][0.567099,0.632445,-0.123709][1.82628,-1.29085,-3.18141][0.334053,-0.701415,-0.629624][0.522162,0.624156,-0.0361435][1.82628,-1.29085,-3.18141][0.334053,-0.701415,-0.629624][0.522162,0.624156,-0.0361435][1.81245,-1.2805,-3.15422][-0.428559,-0.681017,0.593762][0.522162,0.624156,-0.0361435][1.08057,-1.2029,-3.44999][-0.197916,-0.292845,0.935452][0.594789,0.63095,-0.159194][1.81245,-1.2805,-3.15422][-0.428559,-0.681017,0.593762][0.522162,0.624156,-0.0361435][1.82628,-1.29085,-3.18141][0.334053,-0.701415,-0.629624][0.522162,0.624156,-0.0361435][2.30603,-1.35544,-2.67871][0.0133269,0.998873,0.0455621][0.469625,0.616293,0.146916][-1.0739,-1.22838,-3.38344][0.138968,-1.40924,0.040526][0.812414,0.628594,-0.149145][-1.0976,-1.20293,-3.44835][1.52705,0.623518,2.35205][0.812286,0.631101,-0.158534][-1.35003,-1.24169,-3.32712][0.576416,-1.79762,1.04366][0.839898,0.629905,-0.112328][-1.12369,-0.513987,-3.23739][0.346405,0.864826,0.363429][0.818113,0.692542,-0.0778196][-1.3911,-0.563359,-3.23442][-0.323608,0.689153,-0.648341][0.840834,0.685836,-0.061528][-2.02749,-0.637553,-2.88438][-0.258801,0.887514,-0.381237][0.904492,0.67918,0.0836054][-2.02749,-0.637553,-2.88438][-0.258801,0.887514,-0.381237][0.904492,0.67918,0.0836054][-2.01459,-0.658714,-2.86381][0.550908,0.262175,0.792316][0.904492,0.67918,0.0836054][-1.12369,-0.513987,-3.23739][0.346405,0.864826,0.363429][0.818113,0.692542,-0.0778196][-1.71271,-2.77812,-3.62941][-0.484717,0.1672,-0.858541][0.877604,0.350909,-0.222478][-1.72522,-2.26719,-3.44731][0.536945,0.830073,-0.150563][0.880084,0.396735,-0.150355][-1.4386,-2.33309,-3.55296][-0.590573,0.642313,0.488525][0.852164,0.393124,-0.207344][1.36942,-1.19623,-3.39371][0.303365,-0.256407,-0.917728][0.567099,0.632445,-0.123709][1.08057,-1.2029,-3.44999][-0.197916,-0.292845,0.935452][0.594789,0.63095,-0.159194][0.324858,-1.57256,-3.68592][0.431786,0.0798375,-0.898436][0.671107,0.597524,-0.244351][-3.01888,-0.554783,1.33142][-0.977118,0.0856493,0.194692][0.588658,0.868638,0.498481][-2.75316,0.612632,1.38395][-0.929328,0.301052,0.213818][0.592342,0.907871,0.459991][-2.83416,0.710693,0.427515][-0.933227,0.359152,0.00984636][0.567348,0.911166,0.449126][-2.83416,0.710693,0.427515][-0.933227,0.359152,0.00984636][0.567348,0.911166,0.449126][-3.10467,-0.444316,0.24907][-0.994477,0.10484,-0.00499579][0.562608,0.872353,0.491754][-3.01888,-0.554783,1.33142][-0.977118,0.0856493,0.194692][0.588658,0.868638,0.498481][-2.98748,-0.558146,1.3251][0.975787,-0.0987669,-0.195151][0.588658,0.868638,0.498481][-3.0727,-0.448252,0.249189][0.991073,-0.133318,0.000904361][0.562608,0.872353,0.491754][-2.72322,0.602955,1.37705][0.930523,-0.32532,-0.168206][0.592342,0.907871,0.459991][1.55617,-0.0781624,-2.95156][0.435901,0.238118,-0.867923][0.943923,0.884533,0.480188][0.73041,1.07477,-2.79565][0.227024,0.45557,-0.860765][0.967031,0.923273,0.407571][1.41337,1.04126,-2.52622][0.471747,0.461754,-0.751158][0.942032,0.92213,0.421385][1.75176,-2.80025,-3.55795][-0.497188,-0.218758,0.839612][0.530095,0.349588,-0.204385][1.82332,-3.30817,-3.62292][0.170394,-0.976164,-0.134426][0.52203,0.303943,-0.222936][2.42353,-2.64406,-2.96341][0.5471,-0.739539,0.392126][0.458855,0.364514,0.0318297][1.75176,-2.80025,-3.55795][-0.497188,-0.218758,0.839612][0.530095,0.349588,-0.204385][1.36428,-2.90099,-3.73586][-0.609698,-0.779951,-0.141224][0.567266,0.340085,-0.281055][1.82332,-3.30817,-3.62292][0.170394,-0.976164,-0.134426][0.52203,0.303943,-0.222936][1.39823,1.02645,-2.50196][-0.471706,-0.46173,0.751199][0.942032,0.92213,0.421385][0.723007,1.06006,-2.76797][-0.226942,-0.455555,0.860795][0.967031,0.923273,0.407571][1.54115,-0.086579,-2.92434][-0.434902,-0.252006,0.864496][0.943923,0.884533,0.480188][0.324858,-1.57256,-3.68592][0.431786,0.0798375,-0.898436][0.671107,0.597524,-0.244351][-0.00879216,-1.873,-3.84724][0.000610863,0.307222,-0.951638][0.703608,0.570518,-0.311791][-0.00879645,-0.779034,-3.52763][-0.00136541,0.730209,-0.683223][0.703707,0.666717,-0.182178][2.31656,-2.33834,-3.10279][0.684311,0.181116,-0.70634][0.475594,0.390395,-0.0061792][1.77322,-2.27824,-3.37575][-0.691214,0.684591,-0.231429][0.525166,0.395634,-0.135005][2.40259,-1.68555,-2.73483][0.352773,-0.39046,0.850348][0.461055,0.448516,0.140444][1.22534,2.32315,2.16424][0.457694,0.752152,0.474114][0.767258,0.965103,0.315777][0.919976,2.90768,1.03153][0.391902,0.905988,0.159996][0.793098,0.986152,0.180661][0.672723,2.85499,1.50668][0.23229,0.89561,0.379374][0.757663,0.984374,0.202294][-0.00853252,3.15891,0.769311][-0.00138386,0.993782,0.111335][0.706166,0.993053,0.0869679][0.672723,2.85499,1.50668][0.23229,0.89561,0.379374][0.757663,0.984374,0.202294][0.919976,2.90768,1.03153][0.391902,0.905988,0.159996][0.793098,0.986152,0.180661][-1.12369,-0.513987,-3.23739][0.346405,0.864826,0.363429][0.818113,0.692542,-0.0778196][-0.54234,-0.61218,-3.43384][0.766352,0.621087,-0.16418][0.757514,0.681655,-0.142525][-1.3911,-0.563359,-3.23442][-0.323608,0.689153,-0.648341][0.840834,0.685836,-0.061528][-2.06121,1.86076,-0.914043][-0.753349,0.611697,-0.24144][0.52315,0.949679,0.357594][-2.44946,0.900497,-1.37797][-0.84449,0.39599,-0.360595][0.517122,0.917467,0.439802][-2.72937,0.809228,-0.526463][-0.912973,0.383089,-0.140443][0.541767,0.91445,0.442907][0.908015,2.87838,1.02556][-0.38203,-0.911552,-0.152072][0.793098,0.986152,0.180661][0.664329,2.82583,1.4959][-0.238599,-0.894407,-0.378294][0.757663,0.984374,0.202294][-0.00853252,3.1269,0.76574][0.00139843,-0.993784,-0.111314][0.706166,0.993053,0.0869679][3.00196,-0.551801,1.33149][0.983242,0.0861862,0.160644][0.823672,0.868735,0.498509][2.81724,0.712898,0.427679][0.927939,0.371671,-0.0281015][0.844981,0.911239,0.449152][2.73615,0.613696,1.38403][0.928861,0.300919,0.216023][0.819989,0.907907,0.460004][2.29803,1.62458,1.35675][0.822898,0.540065,0.176546][0.815545,0.941813,0.39311][2.73615,0.613696,1.38403][0.928861,0.300919,0.216023][0.819989,0.907907,0.460004][2.81724,0.712898,0.427679][0.927939,0.371671,-0.0281015][0.844981,0.911239,0.449152][-2.69967,0.797945,-0.521207][0.911584,-0.399031,0.0989356][0.541767,0.91445,0.442907][-2.42226,0.887744,-1.36636][0.844541,-0.395959,0.360509][0.517122,0.917467,0.439802][-2.03704,1.84167,-0.904638][0.759174,-0.607627,0.233335][0.52315,0.949679,0.357594][2.70622,0.604022,1.3771][-0.928893,-0.300885,-0.215932][0.819989,0.907907,0.460004][2.78671,0.702665,0.426951][-0.927946,-0.371651,0.0281278][0.844981,0.911239,0.449152][2.97057,-0.555304,1.32523][-0.981903,-0.0986961,-0.161633][0.823672,0.868735,0.498509][2.78671,0.702665,0.426951][-0.927946,-0.371651,0.0281278][0.844981,0.911239,0.449152][2.70622,0.604022,1.3771][-0.928893,-0.300885,-0.215932][0.819989,0.907907,0.460004][2.27127,1.60816,1.34956][-0.83891,-0.518996,-0.163931][0.815545,0.941813,0.39311][1.1271,-0.544049,-3.30849][0.227165,0.654164,-0.721433][0.590659,0.687583,-0.0911573][0.516769,-0.579279,-3.36165][-0.266468,0.888542,0.37348][0.649125,0.686795,-0.12839][1.10628,-0.513962,-3.23725][-0.164452,0.79659,0.581722][0.589987,0.692542,-0.0777362][-2.31507,1.62432,1.35672][-0.822298,0.529142,0.209367][0.596786,0.941804,0.393107][-2.83416,0.710693,0.427515][-0.933227,0.359152,0.00984636][0.567348,0.911166,0.449126][-2.75316,0.612632,1.38395][-0.929328,0.301052,0.213818][0.592342,0.907871,0.459991] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/DominoCrown.mesh b/shareddata/charcustom/hats/fonts/DominoCrown.mesh deleted file mode 100644 index 88e0ae1..0000000 --- a/shareddata/charcustom/hats/fonts/DominoCrown.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -164 -[-0.471288,-0.740504,-1.30199][-0.34202,1.76618e-007,-0.939693][0.106193,0.950739,0][-0.437624,-0.570027,-1.2095][-0.241633,0.707724,-0.663882][0.106193,0.9303,0][0.437624,-0.570027,-1.2095][0.241633,0.707724,-0.663882][0.2048,0.9303,0][0.437624,-0.570027,-1.2095][0.241633,0.707724,-0.663882][0.2048,0.9303,0][0.471288,-0.740504,-1.30199][0.34202,0,-0.939693][0.212386,0.950739,0][-0.471288,-0.740504,-1.30199][-0.34202,1.76618e-007,-0.939693][0.106193,0.950739,0][-0.437624,0.941274,-1.2095][0,1,0][0.784085,0.914096,0][-0.370297,0.941274,-1.02452][0,1,0][0.792079,0.89189,0][0.370297,0.941274,-1.02452][0,1,0][0.88087,0.891576,0][0.370297,0.941274,-1.02452][0,1,0][0.88087,0.891576,0][0.437624,0.941274,-1.2095][0,1,0][0.889021,0.913725,0][-0.437624,0.941274,-1.2095][0,1,0][0.784085,0.914096,0][-0.336634,-0.740504,-0.932033][0.444665,-0.187655,0.875819][0.460144,0.662413,0][-0.370297,-0.910982,-1.02452][0.139483,-0.913062,0.383226][0.456108,0.63916,0][0.370297,-0.910982,-1.02452][-0.139483,-0.913062,0.383225][0.5449,0.63916,0][0.370297,-0.910982,-1.02452][-0.139483,-0.913062,0.383225][0.5449,0.63916,0][0.336634,-0.740504,-0.932033][-0.444665,-0.187655,0.875819][0.540864,0.662413,0][-0.336634,-0.740504,-0.932033][0.444665,-0.187655,0.875819][0.460144,0.662413,0][-0.370297,-0.910982,-1.02452][0.139483,-0.913062,0.383226][0.151076,0.023601,0][-0.437624,-0.910982,-1.2095][-0.196359,-0.818774,-0.539493][0.151076,0,0][0.437624,-0.910982,-1.2095][0.196359,-0.818774,-0.539493][0.249683,0.0358902,0][0.437624,-0.910982,-1.2095][0.196359,-0.818774,-0.539493][0.249683,0.0358902,0][0.370297,-0.910982,-1.02452][-0.139483,-0.913062,0.383225][0.234513,0.0539696,0][-0.370297,-0.910982,-1.02452][0.139483,-0.913062,0.383226][0.151076,0.023601,0][-0.437624,-0.910982,-1.2095][-0.196359,-0.818774,-0.539493][0.106193,0.971178,0][-0.471288,-0.740504,-1.30199][-0.34202,1.76618e-007,-0.939693][0.106193,0.950739,0][0.471288,-0.740504,-1.30199][0.34202,0,-0.939693][0.212386,0.950739,0][0.471288,-0.740504,-1.30199][0.34202,0,-0.939693][0.212386,0.950739,0][0.437624,-0.910982,-1.2095][0.196359,-0.818774,-0.539493][0.2048,0.971178,0][-0.437624,-0.910982,-1.2095][-0.196359,-0.818774,-0.539493][0.106193,0.971178,0][0.471288,-0.740504,-1.30199][0.34202,0,-0.939693][0.913237,0.226709,0][0.437624,-0.570027,-1.2095][0.241633,0.707724,-0.663882][0.9092,0.249962,0][1.1081,-0.570027,-0.646903][0.497199,0.818774,-0.287058][0.804264,0.249962,0][1.1081,-0.570027,-0.646903][0.497199,0.818774,-0.287058][0.804264,0.249962,0][1.19334,-0.740504,-0.696115][0.866025,0,-0.5][0.800228,0.226709,0][0.471288,-0.740504,-1.30199][0.34202,0,-0.939693][0.913237,0.226709,0][0.437624,-0.570027,-1.2095][0.241633,0.707724,-0.663882][0.19717,0.889166,0][0.370297,-0.570027,-1.02452][-0.275942,0.903167,0.328855][0.181617,0.906917,0][0.937626,-0.570027,-0.548477][-0.353183,0.913062,0.20391][0.0988478,0.874772,0][0.937626,-0.570027,-0.548477][-0.353183,0.913062,0.20391][0.0988478,0.874772,0][1.1081,-0.570027,-0.646903][0.497199,0.818774,-0.287058][0.0993522,0.851176,0][0.437624,-0.570027,-1.2095][0.241633,0.707724,-0.663882][0.19717,0.889166,0][0.370297,-0.570027,-1.02452][-0.275942,0.903167,0.328855][0.795423,0.656136,0][0.336634,-0.740504,-0.932033][-0.444665,-0.187655,0.875819][0.787016,0.678188,0][0.852387,-0.740504,-0.499265][-0.866025,0,0.5][0.707785,0.662756,0][0.852387,-0.740504,-0.499265][-0.866025,0,0.5][0.707785,0.662756,0][0.937626,-0.570027,-0.548477][-0.353183,0.913062,0.20391][0.708269,0.63916,0][0.370297,-0.570027,-1.02452][-0.275942,0.903167,0.328855][0.795423,0.656136,0][0.336634,-0.740504,-0.932033][-0.444665,-0.187655,0.875819][0.540864,0.662413,0][0.370297,-0.910982,-1.02452][-0.139483,-0.913062,0.383225][0.5449,0.63916,0][0.937626,-0.910982,-0.548477][-0.353183,-0.913062,0.20391][0.612919,0.666377,0][0.937626,-0.910982,-0.548477][-0.353183,-0.913062,0.20391][0.612919,0.666377,0][0.852387,-0.740504,-0.499265][-0.866025,0,0.5][0.602699,0.687156,0][0.336634,-0.740504,-0.932033][-0.444665,-0.187655,0.875819][0.540864,0.662413,0][0.370297,-0.910982,-1.02452][-0.139483,-0.913062,0.383225][0.234513,0.0539696,0][0.437624,-0.910982,-1.2095][0.196359,-0.818774,-0.539493][0.249683,0.0358902,0][1.1081,-0.910982,-0.646903][0.497199,-0.818774,-0.287058][0.302151,0.126767,0][1.1081,-0.910982,-0.646903][0.497199,-0.818774,-0.287058][0.302151,0.126767,0][0.937626,-0.910982,-0.548477][-0.353183,-0.913062,0.20391][0.278909,0.130866,0][0.370297,-0.910982,-1.02452][-0.139483,-0.913062,0.383225][0.234513,0.0539696,0][0.437624,-0.910982,-1.2095][0.196359,-0.818774,-0.539493][0.786909,0.353109,0][0.471288,-0.740504,-1.30199][0.34202,0,-0.939693][0.790945,0.376363,0][1.19334,-0.740504,-0.696115][0.866025,0,-0.5][0.677937,0.376363,0][1.19334,-0.740504,-0.696115][0.866025,0,-0.5][0.677937,0.376363,0][1.1081,-0.910982,-0.646903][0.497199,-0.818774,-0.287058][0.681973,0.353109,0][0.437624,-0.910982,-1.2095][0.196359,-0.818774,-0.539493][0.786909,0.353109,0][1.19334,-0.740504,-0.696115][0.866025,0,-0.5][0.800228,0.226709,0][1.1081,-0.570027,-0.646903][0.497199,0.818774,-0.287058][0.804264,0.249962,0][1.26009,-0.570027,0.215049][0.695756,0.707724,0.122681][0.723879,0.282128,0][1.26009,-0.570027,0.215049][0.695756,0.707724,0.122681][0.723879,0.282128,0][1.35702,-0.740504,0.23214][0.984808,0,0.173648][0.713659,0.261349,0][1.19334,-0.740504,-0.696115][0.866025,0,-0.5][0.800228,0.226709,0][1.1081,-0.570027,-0.646903][0.497199,0.818774,-0.287058][0.0993522,0.851176,0][0.937626,-0.570027,-0.548477][-0.353183,0.913062,0.20391][0.0988478,0.874772,0][1.06623,-0.570027,0.180866][-0.422768,0.903167,0.0745454][0.0147805,0.90335,0][1.06623,-0.570027,0.180866][-0.422768,0.903167,0.0745454][0.0147805,0.90335,0][1.26009,-0.570027,0.215049][0.695756,0.707724,0.122681][0,0.884951,0][1.1081,-0.570027,-0.646903][0.497199,0.818774,-0.287058][0.0993522,0.851176,0][0.937626,-0.570027,-0.548477][-0.353183,0.913062,0.20391][0.708269,0.63916,0][0.852387,-0.740504,-0.499265][-0.866025,0,0.5][0.707785,0.662756,0][0.969299,-0.740504,0.163775][-0.980814,-0.187655,-0.0528183][0.64236,0.67522,0][0.969299,-0.740504,0.163775][-0.980814,-0.187655,-0.0528183][0.64236,0.67522,0][1.06623,-0.570027,0.180866][-0.422768,0.903167,0.0745454][0.636302,0.65287,0][0.937626,-0.570027,-0.548477][-0.353183,0.913062,0.20391][0.708269,0.63916,0][0.852387,-0.740504,-0.499265][-0.866025,0,0.5][0.539681,0.785298,0][0.937626,-0.910982,-0.548477][-0.353183,-0.913062,0.20391][0.547217,0.807664,0][1.06623,-0.910982,0.180866][-0.401625,-0.913062,-0.0708173][0.459464,0.82121,0][1.06623,-0.910982,0.180866][-0.401625,-0.913062,-0.0708173][0.459464,0.82121,0][0.969299,-0.740504,0.163775][-0.980814,-0.187655,-0.0528183][0.459906,0.797613,0][0.852387,-0.740504,-0.499265][-0.866025,0,0.5][0.539681,0.785298,0][0.937626,-0.910982,-0.548477][-0.353183,-0.913062,0.20391][0.278909,0.130866,0][1.1081,-0.910982,-0.646903][0.497199,-0.818774,-0.287058][0.302151,0.126767,0][1.26009,-0.910982,0.215049][0.565394,-0.818774,0.0996943][0.283929,0.230109,0][1.26009,-0.910982,0.215049][0.565394,-0.818774,0.0996943][0.283929,0.230109,0][1.06623,-0.910982,0.180866][-0.401625,-0.913062,-0.0708173][0.26349,0.218309,0][0.937626,-0.910982,-0.548477][-0.353183,-0.913062,0.20391][0.278909,0.130866,0][1.1081,-0.910982,-0.646903][0.497199,-0.818774,-0.287058][0.681973,0.353109,0][1.19334,-0.740504,-0.696115][0.866025,0,-0.5][0.677937,0.376363,0][1.35702,-0.740504,0.23214][0.984808,0,0.173648][0.591368,0.341723,0][1.35702,-0.740504,0.23214][0.984808,0,0.173648][0.591368,0.341723,0][1.26009,-0.910982,0.215049][0.565394,-0.818774,0.0996943][0.601587,0.320944,0][1.1081,-0.910982,-0.646903][0.497199,-0.818774,-0.287058][0.681973,0.353109,0][1.35702,-0.740504,0.23214][0.984808,0,0.173648][0.503295,0.973295,0][1.26009,-0.570027,0.215049][0.695756,0.707724,0.122681][0.507331,0.950042,0][0.822464,-0.570027,0.973036][0.454122,0.707724,0.541202][0.612267,0.950042,0][0.822464,-0.570027,0.973036][0.454122,0.707724,0.541202][0.612267,0.950042,0][0.885731,-0.740504,1.04843][0.642788,2.484e-007,0.766044][0.616303,0.973295,0][1.35702,-0.740504,0.23214][0.984808,0,0.173648][0.503295,0.973295,0][1.26009,0.941274,0.215049][0,1,0][0.530111,0.221131,0][1.06623,0.941274,0.180866][0,1,0][0.55055,0.20933,0][0.695931,0.941274,0.82224][0,1,0][0.618568,0.266405,0][0.695931,0.941274,0.82224][0,1,0][0.618568,0.266405,0][0.822464,0.941274,0.973036][0,1,0][0.610496,0.288582,0][1.26009,0.941274,0.215049][0,1,0][0.530111,0.221131,0][0.969299,-0.740504,0.163775][-0.980814,-0.187655,-0.0528183][0.459906,0.797613,0][1.06623,-0.910982,0.180866][-0.401625,-0.913062,-0.0708173][0.459464,0.82121,0][0.695931,-0.910982,0.82224][-0.262142,-0.913062,-0.312409][0.38809,0.804688,0][0.695931,-0.910982,0.82224][-0.262142,-0.913062,-0.312409][0.38809,0.804688,0][0.632665,-0.740504,0.746842][-0.536149,-0.187655,-0.823001][0.39502,0.782593,0][0.969299,-0.740504,0.163775][-0.980814,-0.187655,-0.0528183][0.459906,0.797613,0][1.06623,-0.910982,0.180866][-0.401625,-0.913062,-0.0708173][0.26349,0.218309,0][1.26009,-0.910982,0.215049][0.565394,-0.818774,0.0996943][0.283929,0.230109,0][0.822464,-0.910982,0.973036][0.369035,-0.818774,0.439799][0.203544,0.297561,0][0.822464,-0.910982,0.973036][0.369035,-0.818774,0.439799][0.203544,0.297561,0][0.695931,-0.910982,0.82224][-0.262142,-0.913062,-0.312409][0.195472,0.275383,0][1.06623,-0.910982,0.180866][-0.401625,-0.913062,-0.0708173][0.26349,0.218309,0][1.26009,-0.910982,0.215049][0.565394,-0.818774,0.0996943][0.953234,0.844593,0][1.35702,-0.740504,0.23214][0.984808,0,0.173648][0.95727,0.867846,0][0.885731,-0.740504,1.04843][0.642788,2.484e-007,0.766044][0.844262,0.867846,0][0.885731,-0.740504,1.04843][0.642788,2.484e-007,0.766044][0.844262,0.867846,0][0.822464,-0.910982,0.973036][0.369035,-0.818774,0.439799][0.848298,0.844593,0][1.26009,-0.910982,0.215049][0.565394,-0.818774,0.0996943][0.953234,0.844593,0][0.885731,-0.740504,1.04843][0.642788,2.484e-007,0.766044][0.333561,0.871615,0][0.822464,-0.570027,0.973036][0.454122,0.707724,0.541202][0.329525,0.892054,0][-2.02843e-007,-0.570027,1.27239][0,0.818774,0.574116][0.224589,0.892054,0][-2.02843e-007,-0.570027,1.27239][0,0.818774,0.574116][0.224589,0.892054,0][-2.05501e-007,-0.740504,1.37081][-1.60845e-007,0,1][0.220553,0.871615,0][0.885731,-0.740504,1.04843][0.642788,2.484e-007,0.766044][0.333561,0.871615,0][0.822464,-0.570027,0.973036][0.454122,0.707724,0.541202][0.788582,0.435287,0][0.695931,-0.570027,0.82224][-0.146826,0.903167,-0.403401][0.773475,0.453419,0][-1.79664e-007,-0.570027,1.07554][0,0.913062,-0.407821][0.689931,0.423346,0][-1.79664e-007,-0.570027,1.07554][0,0.913062,-0.407821][0.689931,0.423346,0][-2.02843e-007,-0.570027,1.27239][0,0.818774,0.574116][0.689848,0.399745,0][0.822464,-0.570027,0.973036][0.454122,0.707724,0.541202][0.788582,0.435287,0][0.695931,-0.570027,0.82224][-0.146826,0.903167,-0.403401][0.973449,0.337919,0][0.632665,-0.740504,0.746842][-0.536149,-0.187655,-0.823001][0.965042,0.359972,0][-1.51523e-007,-0.740504,0.977113][1.91905e-007,-1.49017e-007,-1][0.885811,0.34454,0][-1.51523e-007,-0.740504,0.977113][1.91905e-007,-1.49017e-007,-1][0.885811,0.34454,0][-1.79664e-007,-0.570027,1.07554][0,0.913062,-0.407821][0.886295,0.320944,0][0.695931,-0.570027,0.82224][-0.146826,0.903167,-0.403401][0.973449,0.337919,0][0.632665,-0.740504,0.746842][-0.536149,-0.187655,-0.823001][0.780017,0.713243,0][0.695931,-0.910982,0.82224][-0.262142,-0.913062,-0.312409][0.787553,0.735609,0][-1.74566e-007,-0.910982,1.07554][0,-0.913062,-0.40782][0.6998,0.749155,0][-1.74566e-007,-0.910982,1.07554][0,-0.913062,-0.40782][0.6998,0.749155,0][-1.51523e-007,-0.740504,0.977113][1.91905e-007,-1.49017e-007,-1][0.700241,0.725558,0][0.632665,-0.740504,0.746842][-0.536149,-0.187655,-0.823001][0.780017,0.713243,0][0.695931,-0.910982,0.82224][-0.262142,-0.913062,-0.312409][0.195472,0.275383,0][0.822464,-0.910982,0.973036][0.369035,-0.818774,0.439799][0.203544,0.297561,0][-2.25751e-007,-0.910982,1.27239][-1.80489e-007,-0.818774,0.574116][0.0986076,0.297561,0][-2.25751e-007,-0.910982,1.27239][-1.80489e-007,-0.818774,0.574116][0.0986076,0.297561,0][-1.74566e-007,-0.910982,1.07554][0,-0.913062,-0.40782][0.10668,0.275383,0][0.695931,-0.910982,0.82224][-0.262142,-0.913062,-0.312409][0.195472,0.275383,0][0.822464,-0.910982,0.973036][0.369035,-0.818774,0.439799][0.329525,0.851176,0][0.885731,-0.740504,1.04843][0.642788,2.484e-007,0.766044][0.333561,0.871615,0][-2.05501e-007,-0.740504,1.37081][-1.60845e-007,0,1][0.220553,0.871615,0][-2.05501e-007,-0.740504,1.37081][-1.60845e-007,0,1][0.220553,0.871615,0][-2.25751e-007,-0.910982,1.27239][-1.80489e-007,-0.818774,0.574116][0.224589,0.851176,0][0.822464,-0.910982,0.973036][0.369035,-0.818774,0.439799][0.329525,0.851176,0][-2.05501e-007,-0.740504,1.37081][-1.60845e-007,0,1][0.820879,0.844593,0][-2.02843e-007,-0.570027,1.27239][0,0.818774,0.574116][0.816843,0.867846,0][-0.822465,-0.570027,0.973036][-0.454122,0.707724,0.541202][0.711907,0.867846,0][-0.822465,-0.570027,0.973036][-0.454122,0.707724,0.541202][0.711907,0.867846,0][-0.885731,-0.740504,1.04843][-0.642788,0,0.766044][0.707871,0.844593,0][-2.05501e-007,-0.740504,1.37081][-1.60845e-007,0,1][0.820879,0.844593,0][-2.02843e-007,-0.570027,1.27239][0,0.818774,0.574116][0.689848,0.399745,0][-1.79664e-007,-0.570027,1.07554][0,0.913062,-0.407821][0.689931,0.423346,0][-0.695932,-0.570027,0.82224][0.146826,0.903167,-0.403401][0.606602,0.454009,0][-0.695932,-0.570027,0.82224][0.146826,0.903167,-0.403401][0.606602,0.454009,0][-0.822465,-0.570027,0.973036][-0.454122,0.707724,0.541202][0.591368,0.435984,0][-2.02843e-007,-0.570027,1.27239][0,0.818774,0.574116][0.689848,0.399745,0][-1.79664e-007,-0.570027,1.07554][0,0.913062,-0.407821][0.886295,0.320944,0][-1.51523e-007,-0.740504,0.977113][1.91905e-007,-1.49017e-007,-1][0.885811,0.34454,0][-0.632665,-0.740504,0.746842][0.536149,-0.187655,-0.823][0.820386,0.357004,0][-0.632665,-0.740504,0.746842][0.536149,-0.187655,-0.823][0.820386,0.357004,0][-0.695932,-0.570027,0.82224][0.146826,0.903167,-0.403401][0.814327,0.334654,0][-1.79664e-007,-0.570027,1.07554][0,0.913062,-0.407821][0.886295,0.320944,0][-1.51523e-007,-0.740504,0.977113][1.91905e-007,-1.49017e-007,-1][0.700241,0.725558,0][-1.74566e-007,-0.910982,1.07554][0,-0.913062,-0.40782][0.6998,0.749155,0][-0.695932,-0.910982,0.82224][0.262142,-0.913062,-0.312408][0.628426,0.732633,0][-0.695932,-0.910982,0.82224][0.262142,-0.913062,-0.312408][0.628426,0.732633,0][-0.632665,-0.740504,0.746842][0.536149,-0.187655,-0.823][0.635355,0.710538,0][-1.51523e-007,-0.740504,0.977113][1.91905e-007,-1.49017e-007,-1][0.700241,0.725558,0][-1.74566e-007,-0.910982,1.07554][0,-0.913062,-0.40782][0.10668,0.275383,0][-2.25751e-007,-0.910982,1.27239][-1.80489e-007,-0.818774,0.574116][0.0986076,0.297561,0][-0.822465,-0.910982,0.973036][-0.369035,-0.818774,0.439799][0.018222,0.230109,0][-0.822465,-0.910982,0.973036][-0.369035,-0.818774,0.439799][0.018222,0.230109,0][-0.695932,-0.910982,0.82224][0.262142,-0.913062,-0.312408][0.0386609,0.218309,0][-1.74566e-007,-0.910982,1.07554][0,-0.913062,-0.40782][0.10668,0.275383,0][-2.25751e-007,-0.910982,1.27239][-1.80489e-007,-0.818774,0.574116][0.756666,0.891576,0][-2.05501e-007,-0.740504,1.37081][-1.60845e-007,0,1][0.760702,0.914829,0][-0.885731,-0.740504,1.04843][-0.642788,0,0.766044][0.647695,0.914829,0][-0.885731,-0.740504,1.04843][-0.642788,0,0.766044][0.647695,0.914829,0][-0.822465,-0.910982,0.973036][-0.369035,-0.818774,0.439799][0.65173,0.891576,0][-2.25751e-007,-0.910982,1.27239][-1.80489e-007,-0.818774,0.574116][0.756666,0.891576,0][-0.885731,-0.740504,1.04843][-0.642788,0,0.766044][0.38809,0.730977,0][-0.822465,-0.570027,0.973036][-0.454122,0.707724,0.541202][0.39399,0.710538,0][-1.26009,-0.570027,0.215048][-0.695756,0.707724,0.12268][0.497332,0.710538,0][-1.26009,-0.570027,0.215048][-0.695756,0.707724,0.12268][0.497332,0.710538,0][-1.35702,-0.740504,0.23214][-0.984808,0,0.173648][0.499381,0.730977,0][-0.885731,-0.740504,1.04843][-0.642788,0,0.766044][0.38809,0.730977,0][-0.822465,0.941274,0.973036][0,1,0][0.647695,0.960212,0][-0.695932,0.941274,0.82224][0,1,0][0.656239,0.938212,0][-1.06623,0.941274,0.180866][0,1,0][0.74501,0.94011,0][-1.06623,0.941274,0.180866][0,1,0][0.74501,0.94011,0][-1.26009,0.941274,0.215048][0,1,0][0.752607,0.962455,0][-0.822465,0.941274,0.973036][0,1,0][0.647695,0.960212,0][-0.632665,-0.740504,0.746842][0.536149,-0.187655,-0.823][0.39399,0.479376,0][-0.695932,-0.910982,0.82224][0.262142,-0.913062,-0.312408][0.38809,0.458937,0][-1.06623,-0.910982,0.180866][0.401625,-0.913062,-0.0708171][0.475533,0.458937,0][-1.06623,-0.910982,0.180866][0.401625,-0.913062,-0.0708171][0.475533,0.458937,0][-0.969299,-0.740504,0.163774][0.980814,-0.187655,-0.0528181][0.473484,0.479376,0][-0.632665,-0.740504,0.746842][0.536149,-0.187655,-0.823][0.39399,0.479376,0][-0.695932,-0.910982,0.82224][0.262142,-0.913062,-0.312408][0.0386609,0.218309,0][-0.822465,-0.910982,0.973036][-0.369035,-0.818774,0.439799][0.018222,0.230109,0][-1.26009,-0.910982,0.215048][-0.565394,-0.818774,0.0996941][0,0.126767,0][-1.26009,-0.910982,0.215048][-0.565394,-0.818774,0.0996941][0,0.126767,0][-1.06623,-0.910982,0.180866][0.401625,-0.913062,-0.0708171][0.0232424,0.130866,0][-0.695932,-0.910982,0.82224][0.262142,-0.913062,-0.312408][0.0386609,0.218309,0][-0.822465,-0.910982,0.973036][-0.369035,-0.818774,0.439799][0.39399,0.751416,0][-0.885731,-0.740504,1.04843][-0.642788,0,0.766044][0.38809,0.730977,0][-1.35702,-0.740504,0.23214][-0.984808,0,0.173648][0.499381,0.730977,0][-1.35702,-0.740504,0.23214][-0.984808,0,0.173648][0.499381,0.730977,0][-1.26009,-0.910982,0.215048][-0.565394,-0.818774,0.0996941][0.497332,0.751416,0][-0.822465,-0.910982,0.973036][-0.369035,-0.818774,0.439799][0.39399,0.751416,0][-1.35702,-0.740504,0.23214][-0.984808,0,0.173648][0.499381,0.730977,0][-1.26009,-0.570027,0.215048][-0.695756,0.707724,0.12268][0.497332,0.710538,0][-1.1081,-0.570027,-0.646903][-0.497199,0.818774,-0.287058][0.588209,0.710538,0][-1.1081,-0.570027,-0.646903][-0.497199,0.818774,-0.287058][0.588209,0.710538,0][-1.19334,-0.740504,-0.696116][-0.866025,1.61575e-007,-0.5][0.597249,0.730977,0][-1.35702,-0.740504,0.23214][-0.984808,0,0.173648][0.499381,0.730977,0][-1.26009,-0.570027,0.215048][-0.695756,0.707724,0.12268][0.789874,0.569108,0][-1.06623,-0.570027,0.180866][0.422768,0.903167,0.0745454][0.774543,0.587051,0][-0.937626,-0.570027,-0.548478][0.353183,0.913062,0.20391][0.69138,0.55594,0][-0.937626,-0.570027,-0.548478][0.353183,0.913062,0.20391][0.69138,0.55594,0][-1.1081,-0.570027,-0.646903][-0.497199,0.818774,-0.287058][0.69159,0.53234,0][-1.26009,-0.570027,0.215048][-0.695756,0.707724,0.12268][0.789874,0.569108,0][-1.06623,-0.570027,0.180866][0.422768,0.903167,0.0745454][0.475533,0.499815,0][-0.969299,-0.740504,0.163774][0.980814,-0.187655,-0.0528181][0.473484,0.479376,0][-0.852387,-0.740504,-0.499265][0.866025,-1.9321e-007,0.5][0.543389,0.479376,0][-0.852387,-0.740504,-0.499265][0.866025,-1.9321e-007,0.5][0.543389,0.479376,0][-0.937626,-0.570027,-0.548478][0.353183,0.913062,0.20391][0.552429,0.499815,0][-1.06623,-0.570027,0.180866][0.422768,0.903167,0.0745454][0.475533,0.499815,0][-0.969299,-0.740504,0.163774][0.980814,-0.187655,-0.0528181][0.473484,0.479376,0][-1.06623,-0.910982,0.180866][0.401625,-0.913062,-0.0708171][0.475533,0.458937,0][-0.937626,-0.910982,-0.548478][0.353182,-0.913062,0.20391][0.552429,0.458937,0][-0.937626,-0.910982,-0.548478][0.353182,-0.913062,0.20391][0.552429,0.458937,0][-0.852387,-0.740504,-0.499265][0.866025,-1.9321e-007,0.5][0.543389,0.479376,0][-0.969299,-0.740504,0.163774][0.980814,-0.187655,-0.0528181][0.473484,0.479376,0][-1.06623,-0.910982,0.180866][0.401625,-0.913062,-0.0708171][0.0232424,0.130866,0][-1.26009,-0.910982,0.215048][-0.565394,-0.818774,0.0996941][0,0.126767,0][-1.1081,-0.910982,-0.646903][-0.497199,-0.818774,-0.287058][0.052468,0.0358902,0][-1.1081,-0.910982,-0.646903][-0.497199,-0.818774,-0.287058][0.052468,0.0358902,0][-0.937626,-0.910982,-0.548478][0.353182,-0.913062,0.20391][0.0676384,0.0539696,0][-1.06623,-0.910982,0.180866][0.401625,-0.913062,-0.0708171][0.0232424,0.130866,0][-1.26009,-0.910982,0.215048][-0.565394,-0.818774,0.0996941][0.497332,0.751416,0][-1.35702,-0.740504,0.23214][-0.984808,0,0.173648][0.499381,0.730977,0][-1.19334,-0.740504,-0.696116][-0.866025,1.61575e-007,-0.5][0.597249,0.730977,0][-1.19334,-0.740504,-0.696116][-0.866025,1.61575e-007,-0.5][0.597249,0.730977,0][-1.1081,-0.910982,-0.646903][-0.497199,-0.818774,-0.287058][0.588209,0.751416,0][-1.26009,-0.910982,0.215048][-0.565394,-0.818774,0.0996941][0.497332,0.751416,0][-1.19334,-0.740504,-0.696116][-0.866025,1.61575e-007,-0.5][0,0.950739,0][-1.1081,-0.570027,-0.646903][-0.497199,0.818774,-0.287058][0.00758519,0.9303,0][-0.437624,-0.570027,-1.2095][-0.241633,0.707724,-0.663882][0.106193,0.9303,0][-0.437624,-0.570027,-1.2095][-0.241633,0.707724,-0.663882][0.106193,0.9303,0][-0.471288,-0.740504,-1.30199][-0.34202,1.76618e-007,-0.939693][0.106193,0.950739,0][-1.19334,-0.740504,-0.696116][-0.866025,1.61575e-007,-0.5][0,0.950739,0][-1.1081,-0.570027,-0.646903][-0.497199,0.818774,-0.287058][0.69159,0.53234,0][-0.937626,-0.570027,-0.548478][0.353183,0.913062,0.20391][0.69138,0.55594,0][-0.370297,-0.570027,-1.02452][0.275942,0.903167,0.328855][0.607675,0.585563,0][-0.370297,-0.570027,-1.02452][0.275942,0.903167,0.328855][0.607675,0.585563,0][-0.437624,-0.570027,-1.2095][-0.241633,0.707724,-0.663882][0.592666,0.567349,0][-1.1081,-0.570027,-0.646903][-0.497199,0.818774,-0.287058][0.69159,0.53234,0][-0.937626,-0.570027,-0.548478][0.353183,0.913062,0.20391][0.38809,0.95585,0][-0.852387,-0.740504,-0.499265][0.866025,-1.9321e-007,0.5][0.392126,0.932597,0][-0.336634,-0.740504,-0.932033][0.444665,-0.187655,0.875819][0.472846,0.932597,0][-0.336634,-0.740504,-0.932033][0.444665,-0.187655,0.875819][0.472846,0.932597,0][-0.370297,-0.570027,-1.02452][0.275942,0.903167,0.328855][0.476882,0.95585,0][-0.937626,-0.570027,-0.548478][0.353183,0.913062,0.20391][0.38809,0.95585,0][-0.852387,-0.740504,-0.499265][0.866025,-1.9321e-007,0.5][0.398309,0.687156,0][-0.937626,-0.910982,-0.548478][0.353182,-0.913062,0.20391][0.38809,0.666377,0][-0.370297,-0.910982,-1.02452][0.139483,-0.913062,0.383226][0.456108,0.63916,0][-0.370297,-0.910982,-1.02452][0.139483,-0.913062,0.383226][0.456108,0.63916,0][-0.336634,-0.740504,-0.932033][0.444665,-0.187655,0.875819][0.460144,0.662413,0][-0.852387,-0.740504,-0.499265][0.866025,-1.9321e-007,0.5][0.398309,0.687156,0][-0.937626,-0.910982,-0.548478][0.353182,-0.913062,0.20391][0.0676384,0.0539696,0][-1.1081,-0.910982,-0.646903][-0.497199,-0.818774,-0.287058][0.052468,0.0358902,0][-0.437624,-0.910982,-1.2095][-0.196359,-0.818774,-0.539493][0.151076,0,0][-0.437624,-0.910982,-1.2095][-0.196359,-0.818774,-0.539493][0.151076,0,0][-0.370297,-0.910982,-1.02452][0.139483,-0.913062,0.383226][0.151076,0.023601,0][-0.937626,-0.910982,-0.548478][0.353182,-0.913062,0.20391][0.0676384,0.0539696,0][-1.1081,-0.910982,-0.646903][-0.497199,-0.818774,-0.287058][0.00758519,0.971178,0][-1.19334,-0.740504,-0.696116][-0.866025,1.61575e-007,-0.5][0,0.950739,0][-0.471288,-0.740504,-1.30199][-0.34202,1.76618e-007,-0.939693][0.106193,0.950739,0][-0.471288,-0.740504,-1.30199][-0.34202,1.76618e-007,-0.939693][0.106193,0.950739,0][-0.437624,-0.910982,-1.2095][-0.196359,-0.818774,-0.539493][0.106193,0.971178,0][-1.1081,-0.910982,-0.646903][-0.497199,-0.818774,-0.287058][0.00758519,0.971178,0][0.437624,-0.570027,-1.2095][0.241633,0.707724,-0.663882][0,0.707824,0][-0.437624,-0.570027,-1.2095][-0.241633,0.707724,-0.663882][6.45723e-007,0.53234,0][-0.437624,0.941274,-1.2095][0,1,0][0.356913,0.532341,0][-0.437624,0.941274,-1.2095][0,1,0][0.356913,0.532341,0][0.437624,0.941274,-1.2095][0,1,0][0.356912,0.707825,0][0.437624,-0.570027,-1.2095][0.241633,0.707724,-0.663882][0,0.707824,0][-0.437624,-0.570027,-1.2095][-0.241633,0.707724,-0.663882][0.684489,0.844593,0][-0.370297,-0.570027,-1.02452][0.275942,0.903167,0.328855][0.684489,0.868193,0][-0.370297,0.941274,-1.02452][0,1,0][0.503295,0.868193,0][-0.370297,0.941274,-1.02452][0,1,0][0.503295,0.868193,0][-0.437624,0.941274,-1.2095][0,1,0][0.503295,0.844593,0][-0.437624,-0.570027,-1.2095][-0.241633,0.707724,-0.663882][0.684489,0.844593,0][-0.370297,-0.570027,-1.02452][0.275942,0.903167,0.328855][0.569284,0.53234,0][0.370297,-0.570027,-1.02452][-0.275942,0.903167,0.328855][0.569284,0.615777,0][0.370297,0.941274,-1.02452][0,1,0][0.38809,0.615777,0][0.370297,0.941274,-1.02452][0,1,0][0.38809,0.615777,0][-0.370297,0.941274,-1.02452][0,1,0][0.38809,0.53234,0][-0.370297,-0.570027,-1.02452][0.275942,0.903167,0.328855][0.569284,0.53234,0][0.370297,-0.570027,-1.02452][-0.275942,0.903167,0.328855][0.751794,0.782593,0][0.437624,-0.570027,-1.2095][0.241633,0.707724,-0.663882][0.751794,0.806194,0][0.437624,0.941274,-1.2095][0,1,0][0.5706,0.806194,0][0.437624,0.941274,-1.2095][0,1,0][0.5706,0.806194,0][0.370297,0.941274,-1.02452][0,1,0][0.5706,0.782593,0][0.370297,-0.570027,-1.02452][-0.275942,0.903167,0.328855][0.751794,0.782593,0][1.26009,-0.570027,0.215049][0.695756,0.707724,0.122681][0.772562,0.477392,0][1.06623,-0.570027,0.180866][-0.422768,0.903167,0.0745454][0.772562,0.500993,0][1.06623,0.941274,0.180866][0,1,0][0.591368,0.500993,0][1.06623,0.941274,0.180866][0,1,0][0.591368,0.500993,0][1.26009,0.941274,0.215049][0,1,0][0.591368,0.477392,0][1.26009,-0.570027,0.215049][0.695756,0.707724,0.122681][0.772562,0.477392,0][1.06623,-0.570027,0.180866][-0.422768,0.903167,0.0745454][0.181194,0.739002,0][0.695931,-0.570027,0.82224][-0.146826,0.903167,-0.403401][0.181194,0.827794,0][0.695931,0.941274,0.82224][0,1,0][0,0.827794,0][0.695931,0.941274,0.82224][0,1,0][0,0.827794,0][1.06623,0.941274,0.180866][0,1,0][0,0.739002,0][1.06623,-0.570027,0.180866][-0.422768,0.903167,0.0745454][0.181194,0.739002,0][0.695931,-0.570027,0.82224][-0.146826,0.903167,-0.403401][0.99213,0.710538,0][0.822464,-0.570027,0.973036][0.454122,0.707724,0.541202][0.99213,0.734139,0][0.822464,0.941274,0.973036][0,1,0][0.810936,0.734139,0][0.822464,0.941274,0.973036][0,1,0][0.810936,0.734139,0][0.695931,0.941274,0.82224][0,1,0][0.810936,0.710538,0][0.695931,-0.570027,0.82224][-0.146826,0.903167,-0.403401][0.99213,0.710538,0][0.822464,-0.570027,0.973036][0.454122,0.707724,0.541202][0.325534,0.178152,0][1.26009,-0.570027,0.215049][0.695756,0.707724,0.122681][0.325534,0,0][1.26009,0.941274,0.215049][0,1,0][0.682482,1.34526e-006,0][1.26009,0.941274,0.215049][0,1,0][0.682482,1.34526e-006,0][0.822464,0.941274,0.973036][0,1,0][0.682482,0.178153,0][0.822464,-0.570027,0.973036][0.454122,0.707724,0.541202][0.325534,0.178152,0][-0.822465,-0.570027,0.973036][-0.454122,0.707724,0.541202][1,0.63916,0][-0.695932,-0.570027,0.82224][0.146826,0.903167,-0.403401][1,0.66276,0][-0.695932,0.941274,0.82224][0,1,0][0.818806,0.66276,0][-0.695932,0.941274,0.82224][0,1,0][0.818806,0.66276,0][-0.822465,0.941274,0.973036][0,1,0][0.818806,0.63916,0][-0.822465,-0.570027,0.973036][-0.454122,0.707724,0.541202][1,0.63916,0][-0.695932,-0.570027,0.82224][0.146826,0.903167,-0.403401][0.506728,0.20933,0][-1.06623,-0.570027,0.180866][0.422768,0.903167,0.0745454][0.506728,0.296773,0][-1.06623,0.941274,0.180866][0,1,0][0.325534,0.296773,0][-1.06623,0.941274,0.180866][0,1,0][0.325534,0.296773,0][-0.695932,0.941274,0.82224][0,1,0][0.325534,0.20933,0][-0.695932,-0.570027,0.82224][0.146826,0.903167,-0.403401][0.506728,0.20933,0][-1.06623,-0.570027,0.180866][0.422768,0.903167,0.0745454][0.956371,0.782593,0][-1.26009,-0.570027,0.215048][-0.695756,0.707724,0.12268][0.956371,0.805836,0][-1.26009,0.941274,0.215048][0,1,0][0.775177,0.805836,0][-1.26009,0.941274,0.215048][0,1,0][0.775177,0.805836,0][-1.06623,0.941274,0.180866][0,1,0][0.775177,0.782593,0][-1.06623,-0.570027,0.180866][0.422768,0.903167,0.0745454][0.956371,0.782593,0][-1.26009,-0.570027,0.215048][-0.695756,0.707724,0.12268][0,0.501162,0][-0.822465,-0.570027,0.973036][-0.454122,0.707724,0.541202][7.53343e-007,0.320944,0][-0.822465,0.941274,0.973036][0,1,0][0.356913,0.320945,0][-0.822465,0.941274,0.973036][0,1,0][0.356913,0.320945,0][-1.26009,0.941274,0.215048][0,1,0][0.356912,0.501163,0][-1.26009,-0.570027,0.215048][-0.695756,0.707724,0.12268][0,0.501162,0][0.370297,-0.570027,-1.02452][-0.275942,0.903167,0.328855][0.567985,0.333853,0][-0.370297,-0.570027,-1.02452][0.275942,0.903167,0.328855][0.567985,0.422645,0][-0.370297,-0.201507,-0.345263][0,0.67165,-0.364391][0.475333,0.422645,0][-0.370297,-0.201507,-0.345263][0,0.67165,-0.364391][0.475333,0.422645,0][0.370297,-0.201507,-0.345263][0,1.38069,-0.749067][0.475333,0.333853,0][0.370297,-0.570027,-1.02452][-0.275942,0.903167,0.328855][0.567985,0.333853,0][-0.370297,-0.570027,-1.02452][0.275942,0.903167,0.328855][0.981105,0.938212,0][-0.336634,-0.740504,-0.932033][0.444665,-0.187655,0.875819][0.981399,0.961811,0][-0.336634,-0.371985,-0.252774][-0.245749,-0.0374917,0.0203404][0.89304,0.962912,0][-0.336634,-0.371985,-0.252774][-0.245749,-0.0374917,0.0203404][0.89304,0.962912,0][-0.370297,-0.201507,-0.345263][0,0.67165,-0.364391][0.892746,0.939313,0][-0.370297,-0.570027,-1.02452][0.275942,0.903167,0.328855][0.981105,0.938212,0][-0.336634,-0.740504,-0.932033][0.444665,-0.187655,0.875819][0.946046,0.134152,0][0.336634,-0.740504,-0.932033][-0.444665,-0.187655,0.875819][0.904446,0.203326,0][0.336634,-0.371985,-0.252774][0,-0.629948,0.341767][0.834656,0.161355,0][0.336634,-0.371985,-0.252774][0,-0.629948,0.341767][0.834656,0.161355,0][-0.336634,-0.371985,-0.252774][-0.245749,-0.0374917,0.0203404][0.876256,0.0921809,0][-0.336634,-0.740504,-0.932033][0.444665,-0.187655,0.875819][0.946046,0.134152,0][0.336634,-0.740504,-0.932033][-0.444665,-0.187655,0.875819][0.906171,0.53234,0][0.370297,-0.570027,-1.02452][-0.275942,0.903167,0.328855][0.91521,0.552779,0][0.370297,-0.201507,-0.345263][0,1.38069,-0.749067][0.838683,0.596962,0][0.370297,-0.201507,-0.345263][0,1.38069,-0.749067][0.838683,0.596962,0][0.336634,-0.371985,-0.252774][0,-0.629948,0.341767][0.829644,0.576523,0][0.336634,-0.740504,-0.932033][-0.444665,-0.187655,0.875819][0.906171,0.53234,0][1.06623,-0.570027,0.180866][-0.422768,0.903167,0.0745454][0.776761,0.964831,0][0.969299,-0.740504,0.163775][-0.980814,-0.187655,-0.0528183][0.775989,0.941243,0][0.381043,-0.371985,-0.175855][0.105259,-0.0374916,-0.222995][0.868591,0.938212,0][0.381043,-0.371985,-0.175855][0.105259,-0.0374916,-0.222995][0.868591,0.938212,0][0.477973,-0.201507,-0.158764][0.662893,-0.236112,-1.40436][0.869363,0.9618,0][1.06623,-0.570027,0.180866][-0.422768,0.903167,0.0745454][0.776761,0.964831,0][0.969299,-0.740504,0.163775][-0.980814,-0.187655,-0.0528183][0.752766,0.20062,0][0.632665,-0.740504,0.746842][-0.536149,-0.187655,-0.823001][0.713659,0.130006,0][0.0444091,-0.371985,0.407212][-0.295978,-0.629948,-0.170883][0.784902,0.090551,0][0.0444091,-0.371985,0.407212][-0.295978,-0.629948,-0.170883][0.784902,0.090551,0][0.381043,-0.371985,-0.175855][0.105259,-0.0374916,-0.222995][0.824009,0.161165,0][0.969299,-0.740504,0.163775][-0.980814,-0.187655,-0.0528183][0.752766,0.20062,0][0.632665,-0.740504,0.746842][-0.536149,-0.187655,-0.823001][0.254946,0.995664,0][0.695931,-0.570027,0.82224][-0.146826,0.903167,-0.403401][0.243562,0.97499,0][0.107676,-0.201507,0.48261][-0.14049,-0.0374916,0.202655][0.324723,0.9303,0][0.107676,-0.201507,0.48261][-0.14049,-0.0374916,0.202655][0.324723,0.9303,0][0.0444091,-0.371985,0.407212][-0.295978,-0.629948,-0.170883][0.336107,0.950974,0][0.632665,-0.740504,0.746842][-0.536149,-0.187655,-0.823001][0.254946,0.995664,0][0.695931,-0.570027,0.82224][-0.146826,0.903167,-0.403401][0.297228,0.739002,0][1.06623,-0.570027,0.180866][-0.422768,0.903167,0.0745454][0.297228,0.827794,0][0.477973,-0.201507,-0.158764][0.662893,-0.236112,-1.40436][0.204577,0.827794,0][0.477973,-0.201507,-0.158764][0.662893,-0.236112,-1.40436][0.204577,0.827794,0][0.107676,-0.201507,0.48261][-0.14049,-0.0374916,0.202655][0.204577,0.739002,0][0.695931,-0.570027,0.82224][-0.146826,0.903167,-0.403401][0.297228,0.739002,0][-0.695932,-0.570027,0.82224][0.146826,0.903167,-0.403401][0.503295,0.914832,0][-0.632665,-0.740504,0.746842][0.536149,-0.187655,-0.823][0.50339,0.891981,0][-0.0444094,-0.371985,0.407212][0.14049,-0.0374917,0.202655][0.594867,0.896014,0][-0.0444094,-0.371985,0.407212][0.14049,-0.0374917,0.202655][0.594867,0.896014,0][-0.107676,-0.201507,0.48261][0.884764,-0.236111,1.27626][0.594772,0.918865,0][-0.695932,-0.570027,0.82224][0.146826,0.903167,-0.403401][0.503295,0.914832,0][-0.632665,-0.740504,0.746842][0.536149,-0.187655,-0.823][0.791843,0,0][-0.969299,-0.740504,0.163774][0.980814,-0.187655,-0.0528181][0.87255,0.00143996,0][-0.381043,-0.371985,-0.175855][0.295978,-0.629947,-0.170883][0.871097,0.0828653,0][-0.381043,-0.371985,-0.175855][0.295978,-0.629947,-0.170883][0.871097,0.0828653,0][-0.0444094,-0.371985,0.407212][0.14049,-0.0374917,0.202655][0.79039,0.0814254,0][-0.632665,-0.740504,0.746842][0.536149,-0.187655,-0.823][0.791843,0,0][-0.969299,-0.740504,0.163774][0.980814,-0.187655,-0.0528181][0.468291,0.844593,0][-1.06623,-0.570027,0.180866][0.422768,0.903167,0.0745454][0.479912,0.865032,0][-0.477973,-0.201507,-0.158764][-0.105259,-0.0374917,-0.222995][0.399711,0.909214,0][-0.477973,-0.201507,-0.158764][-0.105259,-0.0374917,-0.222995][0.399711,0.909214,0][-0.381043,-0.371985,-0.175855][0.295978,-0.629947,-0.170883][0.38809,0.888775,0][-0.969299,-0.740504,0.163774][0.980814,-0.187655,-0.0528181][0.468291,0.844593,0][-1.06623,-0.570027,0.180866][0.422768,0.903167,0.0745454][0.811964,0.488537,0][-0.695932,-0.570027,0.82224][0.146826,0.903167,-0.403401][0.811964,0.399745,0][-0.107676,-0.201507,0.48261][0.884764,-0.236111,1.27626][0.904616,0.399745,0][-0.107676,-0.201507,0.48261][0.884764,-0.236111,1.27626][0.904616,0.399745,0][-0.477973,-0.201507,-0.158764][-0.105259,-0.0374917,-0.222995][0.904616,0.488537,0][-1.06623,-0.570027,0.180866][0.422768,0.903167,0.0745454][0.811964,0.488537,0][-0.336634,-0.371985,-0.252774][-0.245749,-0.0374917,0.0203404][0.876256,0.0921809,0][0.336634,-0.371985,-0.252774][0,-0.629948,0.341767][0.834656,0.161355,0][0.381043,-0.371985,-0.175855][0.105259,-0.0374916,-0.222995][0.824009,0.161165,0][-0.336634,-0.371985,-0.252774][-0.245749,-0.0374917,0.0203404][0.876256,0.0921809,0][0.381043,-0.371985,-0.175855][0.105259,-0.0374916,-0.222995][0.824009,0.161165,0][0.0444091,-0.371985,0.407212][-0.295978,-0.629948,-0.170883][0.784902,0.090551,0][-0.336634,-0.371985,-0.252774][-0.245749,-0.0374917,0.0203404][0.876256,0.0921809,0][0.0444091,-0.371985,0.407212][-0.295978,-0.629948,-0.170883][0.784902,0.090551,0][-0.0444094,-0.371985,0.407212][0.14049,-0.0374917,0.202655][0.79039,0.0814254,0][-0.336634,-0.371985,-0.252774][-0.245749,-0.0374917,0.0203404][0.876256,0.0921809,0][-0.0444094,-0.371985,0.407212][0.14049,-0.0374917,0.202655][0.79039,0.0814254,0][-0.381043,-0.371985,-0.175855][0.295978,-0.629947,-0.170883][0.871097,0.0828653,0][0.336634,-0.371985,-0.252774][0,-0.629948,0.341767][0.829644,0.576523,0][0.370297,-0.201507,-0.345263][0,1.38069,-0.749067][0.838683,0.596962,0][0.477973,-0.201507,-0.158764][0.662893,-0.236112,-1.40436][0.813257,0.596962,0][0.477973,-0.201507,-0.158764][0.662893,-0.236112,-1.40436][0.813257,0.596962,0][0.381043,-0.371985,-0.175855][0.105259,-0.0374916,-0.222995][0.819157,0.576522,0][0.336634,-0.371985,-0.252774][0,-0.629948,0.341767][0.829644,0.576523,0][-0.477973,-0.201507,-0.158764][-0.105259,-0.0374917,-0.222995][0.455679,0.435555,0][-0.107676,-0.201507,0.48261][0.884764,-0.236111,1.27626][0.38809,0.391159,0][0.107676,-0.201507,0.48261][-0.14049,-0.0374916,0.202655][0.38809,0.36534,0][-0.370297,-0.201507,-0.345263][0,0.67165,-0.364391][0.475333,0.422645,0][-0.477973,-0.201507,-0.158764][-0.105259,-0.0374917,-0.222995][0.455679,0.435555,0][0.107676,-0.201507,0.48261][-0.14049,-0.0374916,0.202655][0.38809,0.36534,0][0.370297,-0.201507,-0.345263][0,1.38069,-0.749067][0.475333,0.333853,0][-0.370297,-0.201507,-0.345263][0,0.67165,-0.364391][0.475333,0.422645,0][0.107676,-0.201507,0.48261][-0.14049,-0.0374916,0.202655][0.38809,0.36534,0][0.370297,-0.201507,-0.345263][0,1.38069,-0.749067][0.475333,0.333853,0][0.107676,-0.201507,0.48261][-0.14049,-0.0374916,0.202655][0.38809,0.36534,0][0.477973,-0.201507,-0.158764][0.662893,-0.236112,-1.40436][0.455679,0.320944,0][-0.107676,-0.201507,0.48261][0.884764,-0.236111,1.27626][0.594772,0.918865,0][-0.0444094,-0.371985,0.407212][0.14049,-0.0374917,0.202655][0.594867,0.896014,0][0.0444091,-0.371985,0.407212][-0.295978,-0.629948,-0.170883][0.603836,0.891576,0][0.0444091,-0.371985,0.407212][-0.295978,-0.629948,-0.170883][0.603836,0.891576,0][0.107676,-0.201507,0.48261][-0.14049,-0.0374916,0.202655][0.616518,0.908105,0][-0.107676,-0.201507,0.48261][0.884764,-0.236111,1.27626][0.594772,0.918865,0][-0.381043,-0.371985,-0.175855][0.295978,-0.629947,-0.170883][0.977014,0.0223488,0][-0.477973,-0.201507,-0.158764][-0.105259,-0.0374917,-0.222995][0.969429,0,0][-0.370297,-0.201507,-0.345263][0,0.67165,-0.364391][0.995248,0,0][-0.370297,-0.201507,-0.345263][0,0.67165,-0.364391][0.995248,0,0][-0.336634,-0.371985,-0.252774][-0.245749,-0.0374917,0.0203404][0.987663,0.0223488,0][-0.381043,-0.371985,-0.175855][0.295978,-0.629947,-0.170883][0.977014,0.0223488,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/EvilDuck.mesh b/shareddata/charcustom/hats/fonts/EvilDuck.mesh deleted file mode 100644 index 2717d32..0000000 --- a/shareddata/charcustom/hats/fonts/EvilDuck.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -542 -[-0.348659,0.659819,-1.17757][-0.967017,0.150975,-0.205146][0.477403,0.711986,0][-0.327341,0.67095,-1.2617][-0.931343,0.119353,-0.344028][0.448424,0.697716,0][-0.319967,0.637842,-1.25861][-0.214388,-0.901732,-0.375389][0.455098,0.686845,0][-0.319967,0.637842,-1.25861][-0.214388,-0.901732,-0.375389][0.455098,0.686845,0][-0.341699,0.625833,-1.17292][-0.286804,-0.941894,-0.174872][0.485736,0.70184,0][-0.348659,0.659819,-1.17757][-0.967017,0.150975,-0.205146][0.477403,0.711986,0][-3.55952e-007,0.943441,-1.37696][0,0.999234,0.0391422][0.307344,0.781011,0][-3.47187e-007,0.955515,-1.47722][0,0.726258,-0.687422][0.283719,0.753836,0][-0.174654,0.881225,-1.45414][-0.533467,0.518757,-0.66806][0.339651,0.722533,0][-0.174654,0.881225,-1.45414][-0.533467,0.518757,-0.66806][0.339651,0.722533,0][-0.190045,0.862544,-1.34867][-0.649555,0.759658,-0.0315798][0.369535,0.741707,0][-3.55952e-007,0.943441,-1.37696][0,0.999234,0.0391422][0.307344,0.781011,0][-0.17556,0.597216,-1.2894][0.0449138,-0.9311,-0.361989][0.162754,0.954271,0][-3.60903e-007,0.631063,-1.32033][0,-0.894386,-0.447295][0.106178,0.915713,0][-3.78136e-007,0.602192,-1.12321][0,-0.995409,-0.0957087][0.159149,0.866801,0][-3.78136e-007,0.602192,-1.12321][0,-0.995409,-0.0957087][0.159149,0.866801,0][-0.203675,0.583716,-1.08037][0.1086,-0.99364,-0.0297462][0.223852,0.910068,0][-0.17556,0.597216,-1.2894][0.0449138,-0.9311,-0.361989][0.162754,0.954271,0][-0.177633,0.80717,-1.4409][0.0453383,-0.604805,-0.795082][0.346879,0.699533,0][-0.250894,0.711799,-1.38142][-0.00839236,-0.758996,-0.651041][0.39417,0.684252,0][-0.262168,0.748564,-1.38197][-0.824853,0.162233,-0.54157][0.391306,0.6979,0][-0.262168,0.748564,-1.38197][-0.824853,0.162233,-0.54157][0.391306,0.6979,0][-0.174654,0.881225,-1.45414][-0.533467,0.518757,-0.66806][0.339651,0.722533,0][-0.177633,0.80717,-1.4409][0.0453383,-0.604805,-0.795082][0.346879,0.699533,0][-0.222343,0.932088,-0.991346][-0.648718,0.730804,-0.212345][0.459104,0.841016,0][-3.89664e-007,1.03146,-0.991346][1.59787e-006,0.964114,-0.26549][0.391525,0.899385,0][-3.63256e-007,0.94828,-1.29341][3.8547e-007,0.986888,-0.161405][0.326295,0.804822,0][-3.63256e-007,0.94828,-1.29341][3.8547e-007,0.986888,-0.161405][0.326295,0.804822,0][-0.20287,0.861877,-1.26077][-0.661667,0.731091,-0.166441][0.394649,0.761286,0][-0.222343,0.932088,-0.991346][-0.648718,0.730804,-0.212345][0.459104,0.841016,0][-0.389567,0.631039,-0.953195][-0.980475,0.0959888,-0.171624][0.552042,0.753156,0][-0.348659,0.659819,-1.17757][-0.967017,0.150975,-0.205146][0.477403,0.711986,0][-0.341699,0.625833,-1.17292][-0.286804,-0.941894,-0.174872][0.485736,0.70184,0][-0.341699,0.625833,-1.17292][-0.286804,-0.941894,-0.174872][0.485736,0.70184,0][-0.384603,0.59381,-0.946376][-0.797653,-0.459826,-0.390268][0.562596,0.743023,0][-0.389567,0.631039,-0.953195][-0.980475,0.0959888,-0.171624][0.552042,0.753156,0][-0.222343,0.932088,-0.991346][-0.648718,0.730804,-0.212345][0.459104,0.841016,0][-0.20287,0.861877,-1.26077][-0.661667,0.731091,-0.166441][0.394649,0.761286,0][-0.348659,0.659819,-1.17757][-0.967017,0.150975,-0.205146][0.477403,0.711986,0][-0.348659,0.659819,-1.17757][-0.967017,0.150975,-0.205146][0.477403,0.711986,0][-0.389567,0.631039,-0.953195][-0.980475,0.0959888,-0.171624][0.552042,0.753156,0][-0.222343,0.932088,-0.991346][-0.648718,0.730804,-0.212345][0.459104,0.841016,0][-0.26351,0.580873,-1.25261][-0.390454,-0.839178,-0.378585][0.1933,0.968039,0][-0.17556,0.597216,-1.2894][0.0449138,-0.9311,-0.361989][0.162754,0.954271,0][-0.203675,0.583716,-1.08037][0.1086,-0.99364,-0.0297462][0.223852,0.910068,0][-0.203675,0.583716,-1.08037][0.1086,-0.99364,-0.0297462][0.223852,0.910068,0][-0.322582,0.570023,-1.06238][-0.411178,-0.893772,-0.179176][0.258229,0.937961,0][-0.26351,0.580873,-1.25261][-0.390454,-0.839178,-0.378585][0.1933,0.968039,0][-0.209418,0.58175,-0.970713][0.101719,-0.994812,0.00169727][0.255228,0.884333,0][-0.363599,0.568341,-0.937437][-0.42367,-0.893125,-0.1511][0.302887,0.918243,0][-0.322582,0.570023,-1.06238][-0.411178,-0.893772,-0.179176][0.258229,0.937961,0][-0.322582,0.570023,-1.06238][-0.411178,-0.893772,-0.179176][0.258229,0.937961,0][-0.203675,0.583716,-1.08037][0.1086,-0.99364,-0.0297462][0.223852,0.910068,0][-0.209418,0.58175,-0.970713][0.101719,-0.994812,0.00169727][0.255228,0.884333,0][-0.174654,0.881225,-1.45414][-0.533467,0.518757,-0.66806][0.339651,0.722533,0][-3.47187e-007,0.955515,-1.47722][0,0.726258,-0.687422][0.283719,0.753836,0][-3.48603e-007,0.888992,-1.46102][0,-0.638133,-0.769926][0.283719,0.729492,0][-3.48603e-007,0.888992,-1.46102][0,-0.638133,-0.769926][0.283719,0.729492,0][-0.177633,0.80717,-1.4409][0.0453383,-0.604805,-0.795082][0.346879,0.699533,0][-0.174654,0.881225,-1.45414][-0.533467,0.518757,-0.66806][0.339651,0.722533,0][-0.168874,0.641442,-1.35103][-0.171278,-0.633,-0.754966][0.140737,0.968933,0][-3.5624e-007,0.678217,-1.37367][0,-0.5905,-0.807038][0.084712,0.931287,0][-3.60903e-007,0.631063,-1.32033][0,-0.894386,-0.447295][0.106178,0.915713,0][-3.60903e-007,0.631063,-1.32033][0,-0.894386,-0.447295][0.106178,0.915713,0][-0.17556,0.597216,-1.2894][0.0449138,-0.9311,-0.361989][0.162754,0.954271,0][-0.168874,0.641442,-1.35103][-0.171278,-0.633,-0.754966][0.140737,0.968933,0][-0.26351,0.580873,-1.25261][-0.390454,-0.839178,-0.378585][0.1933,0.968039,0][-0.168874,0.641442,-1.35103][-0.171278,-0.633,-0.754966][0.140737,0.968933,0][-0.17556,0.597216,-1.2894][0.0449138,-0.9311,-0.361989][0.162754,0.954271,0][-0.26351,0.580873,-1.25261][-0.390454,-0.839178,-0.378585][0.1933,0.968039,0][-0.322582,0.570023,-1.06238][-0.411178,-0.893772,-0.179176][0.258229,0.937961,0][-0.337563,0.598778,-1.0691][-0.899764,0.330921,-0.284458][0.262244,0.949752,0][-0.337563,0.598778,-1.0691][-0.899764,0.330921,-0.284458][0.262244,0.949752,0][-0.276593,0.61707,-1.26685][-0.851659,0.236835,-0.467532][0.191286,0.982369,0][-0.26351,0.580873,-1.25261][-0.390454,-0.839178,-0.378585][0.1933,0.968039,0][-0.322582,0.570023,-1.06238][-0.411178,-0.893772,-0.179176][0.258229,0.937961,0][-0.363599,0.568341,-0.937437][-0.42367,-0.893125,-0.1511][0.302887,0.918243,0][-0.384603,0.59381,-0.946376][-0.797653,-0.459826,-0.390268][0.307281,0.930221,0][-0.384603,0.59381,-0.946376][-0.797653,-0.459826,-0.390268][0.307281,0.930221,0][-0.337563,0.598778,-1.0691][-0.899764,0.330921,-0.284458][0.262244,0.949752,0][-0.322582,0.570023,-1.06238][-0.411178,-0.893772,-0.179176][0.258229,0.937961,0][-3.5624e-007,0.678217,-1.37367][0,-0.5905,-0.807038][0.084712,0.931287,0][-0.168874,0.641442,-1.35103][-0.171278,-0.633,-0.754966][0.140737,0.968933,0][-0.176716,0.68439,-1.37314][-0.483172,0.434662,-0.760009][0.12885,0.982369,0][-0.176716,0.68439,-1.37314][-0.483172,0.434662,-0.760009][0.12885,0.982369,0][-3.5416e-007,0.724529,-1.39747][0,0.595368,-0.803453][0.067901,0.941797,0][-3.5624e-007,0.678217,-1.37367][0,-0.5905,-0.807038][0.084712,0.931287,0][-0.168874,0.641442,-1.35103][-0.171278,-0.633,-0.754966][0.140737,0.968933,0][-0.26351,0.580873,-1.25261][-0.390454,-0.839178,-0.378585][0.1933,0.968039,0][-0.276593,0.61707,-1.26685][-0.851659,0.236835,-0.467532][0.191286,0.982369,0][-0.276593,0.61707,-1.26685][-0.851659,0.236835,-0.467532][0.191286,0.982369,0][-0.176716,0.68439,-1.37314][-0.483172,0.434662,-0.760009][0.12885,0.982369,0][-0.168874,0.641442,-1.35103][-0.171278,-0.633,-0.754966][0.140737,0.968933,0][-3.76288e-007,0.854014,-1.14435][0,-0.991063,-0.133394][0.162654,0.728833,0][-0.147566,0.772715,-1.1311][0.523845,-0.846723,-0.092989][0.203695,0.774415,0][-0.163189,0.790618,-1.29208][0.570563,-0.81207,-0.122475][0.158257,0.811764,0][-0.163189,0.790618,-1.29208][0.570563,-0.81207,-0.122475][0.158257,0.811764,0][-3.61187e-007,0.873094,-1.31708][0,-0.992724,-0.120414][0.110997,0.76449,0][-3.76288e-007,0.854014,-1.14435][0,-0.991063,-0.133394][0.162654,0.728833,0][-3.78501e-007,0.702976,-1.11904][0,0.997407,0.0719607][0.459353,0.861769,0][-3.5416e-007,0.724529,-1.39747][0,0.595368,-0.803453][0.528767,0.935062,0][-0.176716,0.68439,-1.37314][-0.483172,0.434662,-0.760009][0.471157,0.974949,0][-0.176716,0.68439,-1.37314][-0.483172,0.434662,-0.760009][0.471157,0.974949,0][-0.146649,0.672131,-1.1065][-0.311933,0.949095,0.0437685][0.412709,0.897418,0][-3.78501e-007,0.702976,-1.11904][0,0.997407,0.0719607][0.459353,0.861769,0][-0.146649,0.672131,-1.1065][-0.311933,0.949095,0.0437685][0.412709,0.897418,0][-0.176716,0.68439,-1.37314][-0.483172,0.434662,-0.760009][0.471157,0.974949,0][-0.276593,0.61707,-1.26685][-0.851659,0.236835,-0.467532][0.413091,0.974949,0][-0.276593,0.61707,-1.26685][-0.851659,0.236835,-0.467532][0.413091,0.974949,0][-0.232148,0.638993,-1.08543][-0.363603,0.931016,-0.031665][0.383008,0.913985,0][-0.146649,0.672131,-1.1065][-0.311933,0.949095,0.0437685][0.412709,0.897418,0][-0.319967,0.637842,-1.25861][-0.214388,-0.901732,-0.375389][0.217925,0.865435,0][-0.245328,0.714701,-1.27329][0.678936,-0.733194,-0.0383772][0.189296,0.838732,0][-0.236003,0.719266,-1.0901][0.597623,-0.80129,0.0279436][0.238612,0.794226,0][-0.319967,0.637842,-1.25861][-0.214388,-0.901732,-0.375389][0.217925,0.865435,0][-0.236003,0.719266,-1.0901][0.597623,-0.80129,0.0279436][0.238612,0.794226,0][-0.301829,0.672016,-1.04176][0.657279,-0.753321,0.022186][0.270661,0.805859,0][-0.319967,0.637842,-1.25861][-0.214388,-0.901732,-0.375389][0.217925,0.865435,0][-0.301829,0.672016,-1.04176][0.657279,-0.753321,0.022186][0.270661,0.805859,0][-0.341699,0.625833,-1.17292][-0.286804,-0.941894,-0.174872][0.247419,0.852681,0][-0.232148,0.638993,-1.08543][-0.363603,0.931016,-0.031665][0.383008,0.913985,0][-0.276593,0.61707,-1.26685][-0.851659,0.236835,-0.467532][0.413091,0.974949,0][-0.337563,0.598778,-1.0691][-0.899764,0.330921,-0.284458][0.348518,0.93662,0][-0.337563,0.598778,-1.0691][-0.899764,0.330921,-0.284458][0.348518,0.93662,0][-0.319188,0.610465,-1.0196][-0.369423,0.922954,-0.108086][0.342437,0.91804,0][-0.232148,0.638993,-1.08543][-0.363603,0.931016,-0.031665][0.383008,0.913985,0][-0.301829,0.672016,-1.04176][0.657279,-0.753321,0.022186][0.270661,0.805859,0][-0.342842,0.615878,-0.95402][-0.0643933,-0.215641,-0.974347][0.311078,0.804144,0][-0.384603,0.59381,-0.946376][-0.797653,-0.459826,-0.390268][0.323301,0.816375,0][-0.384603,0.59381,-0.946376][-0.797653,-0.459826,-0.390268][0.323301,0.816375,0][-0.341699,0.625833,-1.17292][-0.286804,-0.941894,-0.174872][0.247419,0.852681,0][-0.301829,0.672016,-1.04176][0.657279,-0.753321,0.022186][0.270661,0.805859,0][-0.319188,0.610465,-1.0196][-0.369423,0.922954,-0.108086][0.342437,0.91804,0][-0.337563,0.598778,-1.0691][-0.899764,0.330921,-0.284458][0.348518,0.93662,0][-0.384603,0.59381,-0.946376][-0.797653,-0.459826,-0.390268][0.306454,0.914462,0][-0.384603,0.59381,-0.946376][-0.797653,-0.459826,-0.390268][0.306454,0.914462,0][-0.342842,0.615878,-0.95402][-0.0643933,-0.215641,-0.974347][0.320856,0.904885,0][-0.319188,0.610465,-1.0196][-0.369423,0.922954,-0.108086][0.342437,0.91804,0][-0.190045,0.862544,-1.34867][-0.649555,0.759658,-0.0315798][0.369535,0.741707,0][-0.174654,0.881225,-1.45414][-0.533467,0.518757,-0.66806][0.339651,0.722533,0][-0.262168,0.748564,-1.38197][-0.824853,0.162233,-0.54157][0.391306,0.6979,0][-0.262168,0.748564,-1.38197][-0.824853,0.162233,-0.54157][0.391306,0.6979,0][-0.327341,0.67095,-1.2617][-0.931343,0.119353,-0.344028][0.448424,0.697716,0][-0.190045,0.862544,-1.34867][-0.649555,0.759658,-0.0315798][0.369535,0.741707,0][-0.147566,0.772715,-1.1311][0.523845,-0.846723,-0.092989][0.203695,0.774415,0][-0.236003,0.719266,-1.0901][0.597623,-0.80129,0.0279436][0.238612,0.794226,0][-0.245328,0.714701,-1.27329][0.678936,-0.733194,-0.0383772][0.189296,0.838732,0][-0.245328,0.714701,-1.27329][0.678936,-0.733194,-0.0383772][0.189296,0.838732,0][-0.163189,0.790618,-1.29208][0.570563,-0.81207,-0.122475][0.158257,0.811764,0][-0.147566,0.772715,-1.1311][0.523845,-0.846723,-0.092989][0.203695,0.774415,0][-0.250894,0.711799,-1.38142][-0.00839236,-0.758996,-0.651041][0.39417,0.684252,0][-0.319967,0.637842,-1.25861][-0.214388,-0.901732,-0.375389][0.455098,0.686845,0][-0.327341,0.67095,-1.2617][-0.931343,0.119353,-0.344028][0.448424,0.697716,0][-0.327341,0.67095,-1.2617][-0.931343,0.119353,-0.344028][0.448424,0.697716,0][-0.262168,0.748564,-1.38197][-0.824853,0.162233,-0.54157][0.391306,0.6979,0][-0.250894,0.711799,-1.38142][-0.00839236,-0.758996,-0.651041][0.39417,0.684252,0][-0.245328,0.714701,-1.27329][0.678936,-0.733194,-0.0383772][0.189296,0.838732,0][-0.319967,0.637842,-1.25861][-0.214388,-0.901732,-0.375389][0.217925,0.865435,0][-0.250894,0.711799,-1.38142][-0.00839236,-0.758996,-0.651041][0.160583,0.865435,0][-0.20287,0.861877,-1.26077][-0.661667,0.731091,-0.166441][0.394649,0.761286,0][-0.190045,0.862544,-1.34867][-0.649555,0.759658,-0.0315798][0.369535,0.741707,0][-0.327341,0.67095,-1.2617][-0.931343,0.119353,-0.344028][0.448424,0.697716,0][-0.327341,0.67095,-1.2617][-0.931343,0.119353,-0.344028][0.448424,0.697716,0][-0.348659,0.659819,-1.17757][-0.967017,0.150975,-0.205146][0.477403,0.711986,0][-0.20287,0.861877,-1.26077][-0.661667,0.731091,-0.166441][0.394649,0.761286,0][-3.63256e-007,0.94828,-1.29341][3.8547e-007,0.986888,-0.161405][0.326295,0.804822,0][-3.55952e-007,0.943441,-1.37696][0,0.999234,0.0391422][0.307344,0.781011,0][-0.190045,0.862544,-1.34867][-0.649555,0.759658,-0.0315798][0.369535,0.741707,0][-0.190045,0.862544,-1.34867][-0.649555,0.759658,-0.0315798][0.369535,0.741707,0][-0.20287,0.861877,-1.26077][-0.661667,0.731091,-0.166441][0.394649,0.761286,0][-3.63256e-007,0.94828,-1.29341][3.8547e-007,0.986888,-0.161405][0.326295,0.804822,0][-0.163189,0.790618,-1.29208][0.570563,-0.81207,-0.122475][0.158257,0.811764,0][-0.245328,0.714701,-1.27329][0.678936,-0.733194,-0.0383772][0.189296,0.838732,0][-0.250894,0.711799,-1.38142][-0.00839236,-0.758996,-0.651041][0.160583,0.865435,0][-0.250894,0.711799,-1.38142][-0.00839236,-0.758996,-0.651041][0.160583,0.865435,0][-0.177633,0.80717,-1.4409][0.0453383,-0.604805,-0.795082][0.116166,0.846189,0][-0.163189,0.790618,-1.29208][0.570563,-0.81207,-0.122475][0.158257,0.811764,0][-3.61187e-007,0.873094,-1.31708][0,-0.992724,-0.120414][0.110997,0.76449,0][-0.163189,0.790618,-1.29208][0.570563,-0.81207,-0.122475][0.158257,0.811764,0][-0.177633,0.80717,-1.4409][0.0453383,-0.604805,-0.795082][0.116166,0.846189,0][-0.177633,0.80717,-1.4409][0.0453383,-0.604805,-0.795082][0.116166,0.846189,0][-3.48603e-007,0.888992,-1.46102][0,-0.638133,-0.769926][0.067901,0.794118,0][-3.61187e-007,0.873094,-1.31708][0,-0.992724,-0.120414][0.110997,0.76449,0][-0.384504,0.365691,-0.330469][-0.610443,-0.709328,0.352438][0.802455,0.521508,0][-0.208093,0.236979,-0.432321][-0.462599,-0.845382,0.26708][0.815984,0.448889,0][-0.120142,0.236979,-0.34437][-0.267082,-0.845382,0.462598][0.858503,0.449154,0][-0.120142,0.236979,-0.34437][-0.267082,-0.845382,0.462598][0.858503,0.449154,0][-0.221994,0.365691,-0.167958][-0.35244,-0.709328,0.610443][0.869923,0.523425,0][-0.384504,0.365691,-0.330469][-0.610443,-0.709328,0.352438][0.802455,0.521508,0][-0.221994,0.365691,-0.167958][-0.35244,-0.709328,0.610443][0.869923,0.523425,0][-0.120142,0.236979,-0.34437][-0.267082,-0.845382,0.462598][0.858503,0.449154,0][-4.49039e-007,0.236979,-0.312178][1.17432e-006,-0.845383,0.534161][0.896951,0.435719,0][-4.49039e-007,0.236979,-0.312178][1.17432e-006,-0.845383,0.534161][0.896951,0.435719,0][-4.66847e-007,0.365691,-0.108475][0,-0.709328,0.704878][0.938645,0.502704,0][-0.221994,0.365691,-0.167958][-0.35244,-0.709328,0.610443][0.869923,0.523425,0][-3.89218e-007,0.365691,-0.996451][1.93785e-006,-0.709329,-0.704878][0.623322,0.338746,0][-4.07026e-007,0.236979,-0.792747][6.22666e-006,-0.845383,-0.534161][0.702425,0.334379,0][-0.120142,0.236979,-0.760555][-0.26708,-0.845382,-0.462598][0.714303,0.375241,0][-0.120142,0.236979,-0.760555][-0.26708,-0.845382,-0.462598][0.714303,0.375241,0][-0.221994,0.365691,-0.936967][-0.35244,-0.709328,-0.610442][0.646018,0.407253,0][-3.89218e-007,0.365691,-0.996451][1.93785e-006,-0.709329,-0.704878][0.623322,0.338746,0][-0.221994,0.365691,-0.936967][-0.35244,-0.709328,-0.610442][0.646018,0.407253,0][-0.120142,0.236979,-0.760555][-0.26708,-0.845382,-0.462598][0.714303,0.375241,0][-0.208093,0.236979,-0.672605][-0.4626,-0.845381,-0.26708][0.73983,0.410089,0][-0.208093,0.236979,-0.672605][-0.4626,-0.845381,-0.26708][0.73983,0.410089,0][-0.384504,0.365691,-0.774457][-0.610443,-0.709328,-0.352439][0.686536,0.461374,0][-0.221994,0.365691,-0.936967][-0.35244,-0.709328,-0.610442][0.646018,0.407253,0][-0.384504,0.365691,-0.774457][-0.610443,-0.709328,-0.352439][0.686536,0.461374,0][-0.208093,0.236979,-0.672605][-0.4626,-0.845381,-0.26708][0.73983,0.410089,0][-0.240284,0.236979,-0.552463][-0.534163,-0.845381,-1.14281e-006][0.774996,0.435392,0][-0.240284,0.236979,-0.552463][-0.534163,-0.845381,-1.14281e-006][0.774996,0.435392,0][-0.443987,0.365691,-0.552463][-0.704878,-0.709329,-6.19105e-007][0.740018,0.500101,0][-0.384504,0.365691,-0.774457][-0.610443,-0.709328,-0.352439][0.686536,0.461374,0][-0.443987,0.365691,-0.552463][-0.704878,-0.709329,-6.19105e-007][0.740018,0.500101,0][-0.240284,0.236979,-0.552463][-0.534163,-0.845381,-1.14281e-006][0.774996,0.435392,0][-0.208093,0.236979,-0.432321][-0.462599,-0.845382,0.26708][0.815984,0.448889,0][-0.208093,0.236979,-0.432321][-0.462599,-0.845382,0.26708][0.815984,0.448889,0][-0.384504,0.365691,-0.330469][-0.610443,-0.709328,0.352438][0.802455,0.521508,0][-0.443987,0.365691,-0.552463][-0.704878,-0.709329,-6.19105e-007][0.740018,0.500101,0][-0.502379,0.558321,-0.262414][-0.798185,-0.387985,0.460833][0.789318,0.588049,0][-0.384504,0.365691,-0.330469][-0.610443,-0.709328,0.352438][0.802455,0.521508,0][-0.221994,0.365691,-0.167958][-0.35244,-0.709328,0.610443][0.869923,0.523425,0][-0.221994,0.365691,-0.167958][-0.35244,-0.709328,0.610443][0.869923,0.523425,0][-0.290049,0.558321,-0.050084][-0.460834,-0.387986,0.798185][0.876327,0.593507,0][-0.502379,0.558321,-0.262414][-0.798185,-0.387985,0.460833][0.789318,0.588049,0][-0.290049,0.558321,-0.050084][-0.460834,-0.387986,0.798185][0.876327,0.593507,0][-0.221994,0.365691,-0.167958][-0.35244,-0.709328,0.610443][0.869923,0.523425,0][-4.66847e-007,0.365691,-0.108475][0,-0.709328,0.704878][0.938645,0.502704,0][-4.66847e-007,0.365691,-0.108475][0,-0.709328,0.704878][0.938645,0.502704,0][-4.78746e-007,0.55832,0.027635][0,-0.387987,0.921665][0.968062,0.574789,0][-0.290049,0.558321,-0.050084][-0.460834,-0.387986,0.798185][0.876327,0.593507,0][-3.77318e-007,0.558321,-1.13256][2.31388e-007,-0.387986,-0.921665][0.548019,0.355783,0][-3.89218e-007,0.365691,-0.996451][1.93785e-006,-0.709329,-0.704878][0.623322,0.338746,0][-0.221994,0.365691,-0.936967][-0.35244,-0.709328,-0.610442][0.646018,0.407253,0][-0.221994,0.365691,-0.936967][-0.35244,-0.709328,-0.610442][0.646018,0.407253,0][-0.290049,0.558321,-1.05484][-0.460833,-0.387986,-0.798185][0.585313,0.441949,0][-3.77318e-007,0.558321,-1.13256][2.31388e-007,-0.387986,-0.921665][0.548019,0.355783,0][-0.290049,0.558321,-1.05484][-0.460833,-0.387986,-0.798185][0.585313,0.441949,0][-0.221994,0.365691,-0.936967][-0.35244,-0.709328,-0.610442][0.646018,0.407253,0][-0.384504,0.365691,-0.774457][-0.610443,-0.709328,-0.352439][0.686536,0.461374,0][-0.384504,0.365691,-0.774457][-0.610443,-0.709328,-0.352439][0.686536,0.461374,0][-0.502379,0.558321,-0.842512][-0.798185,-0.387986,-0.460833][0.639667,0.510144,0][-0.290049,0.558321,-1.05484][-0.460833,-0.387986,-0.798185][0.585313,0.441949,0][-0.502379,0.558321,-0.842512][-0.798185,-0.387986,-0.460833][0.639667,0.510144,0][-0.384504,0.365691,-0.774457][-0.610443,-0.709328,-0.352439][0.686536,0.461374,0][-0.443987,0.365691,-0.552463][-0.704878,-0.709329,-6.19105e-007][0.740018,0.500101,0][-0.443987,0.365691,-0.552463][-0.704878,-0.709329,-6.19105e-007][0.740018,0.500101,0][-0.580098,0.558321,-0.552463][-0.921665,-0.387987,-5.50189e-007][0.709002,0.559642,0][-0.502379,0.558321,-0.842512][-0.798185,-0.387986,-0.460833][0.639667,0.510144,0][-0.580098,0.558321,-0.552463][-0.921665,-0.387987,-5.50189e-007][0.709002,0.559642,0][-0.443987,0.365691,-0.552463][-0.704878,-0.709329,-6.19105e-007][0.740018,0.500101,0][-0.384504,0.365691,-0.330469][-0.610443,-0.709328,0.352438][0.802455,0.521508,0][-0.384504,0.365691,-0.330469][-0.610443,-0.709328,0.352438][0.802455,0.521508,0][-0.502379,0.558321,-0.262414][-0.798185,-0.387985,0.460833][0.789318,0.588049,0][-0.580098,0.558321,-0.552463][-0.921665,-0.387987,-5.50189e-007][0.709002,0.559642,0][-0.543772,0.785544,-0.238516][-0.866025,3.1121e-007,0.500001][0.774857,0.656789,0][-0.502379,0.558321,-0.262414][-0.798185,-0.387985,0.460833][0.789318,0.588049,0][-0.290049,0.558321,-0.050084][-0.460834,-0.387986,0.798185][0.876327,0.593507,0][-0.290049,0.558321,-0.050084][-0.460834,-0.387986,0.798185][0.876327,0.593507,0][-0.313947,0.785544,-0.00869099][-0.500001,3.83827e-007,0.866025][0.879397,0.665468,0][-0.543772,0.785544,-0.238516][-0.866025,3.1121e-007,0.500001][0.774857,0.656789,0][-0.313947,0.785544,-0.00869099][-0.500001,3.83827e-007,0.866025][0.879397,0.665468,0][-0.290049,0.558321,-0.050084][-0.460834,-0.387986,0.798185][0.876327,0.593507,0][-4.78746e-007,0.55832,0.027635][0,-0.387987,0.921665][0.968062,0.574789,0][-4.78746e-007,0.55832,0.027635][0,-0.387987,0.921665][0.968062,0.574789,0][-4.82924e-007,0.785544,0.075431][-1.63386e-007,1.08146e-006,1][0.98482,0.649459,0][-0.313947,0.785544,-0.00869099][-0.500001,3.83827e-007,0.866025][0.879397,0.665468,0][-3.7314e-007,0.785544,-1.18036][0,8.29896e-007,-1][0.477138,0.384967,0][-3.77318e-007,0.558321,-1.13256][2.31388e-007,-0.387986,-0.921665][0.548019,0.355783,0][-0.290049,0.558321,-1.05484][-0.460833,-0.387986,-0.798185][0.585313,0.441949,0][-0.290049,0.558321,-1.05484][-0.460833,-0.387986,-0.798185][0.585313,0.441949,0][-0.313947,0.785544,-1.09623][-0.500001,6.32794e-007,-0.866025][0.524748,0.481021,0][-3.7314e-007,0.785544,-1.18036][0,8.29896e-007,-1][0.477138,0.384967,0][-0.313947,0.785544,-1.09623][-0.500001,6.32794e-007,-0.866025][0.524748,0.481021,0][-0.290049,0.558321,-1.05484][-0.460833,-0.387986,-0.798185][0.585313,0.441949,0][-0.502379,0.558321,-0.842512][-0.798185,-0.387986,-0.460833][0.639667,0.510144,0][-0.502379,0.558321,-0.842512][-0.798185,-0.387986,-0.460833][0.639667,0.510144,0][-0.543771,0.785544,-0.86641][-0.866025,2.69716e-007,-0.500001][0.591998,0.561742,0][-0.313947,0.785544,-1.09623][-0.500001,6.32794e-007,-0.866025][0.524748,0.481021,0][-0.543771,0.785544,-0.86641][-0.866025,2.69716e-007,-0.500001][0.591998,0.561742,0][-0.502379,0.558321,-0.842512][-0.798185,-0.387986,-0.460833][0.639667,0.510144,0][-0.580098,0.558321,-0.552463][-0.921665,-0.387987,-5.50189e-007][0.709002,0.559642,0][-0.580098,0.558321,-0.552463][-0.921665,-0.387987,-5.50189e-007][0.709002,0.559642,0][-0.627894,0.785544,-0.552463][-1,4.20135e-007,0][0.677025,0.621617,0][-0.543771,0.785544,-0.86641][-0.866025,2.69716e-007,-0.500001][0.591998,0.561742,0][-0.627894,0.785544,-0.552463][-1,4.20135e-007,0][0.677025,0.621617,0][-0.580098,0.558321,-0.552463][-0.921665,-0.387987,-5.50189e-007][0.709002,0.559642,0][-0.502379,0.558321,-0.262414][-0.798185,-0.387985,0.460833][0.789318,0.588049,0][-0.502379,0.558321,-0.262414][-0.798185,-0.387985,0.460833][0.789318,0.588049,0][-0.543772,0.785544,-0.238516][-0.866025,3.1121e-007,0.500001][0.774857,0.656789,0][-0.627894,0.785544,-0.552463][-1,4.20135e-007,0][0.677025,0.621617,0][-0.502379,1.01277,-0.262414][-0.798186,0.387984,0.460833][0.400365,0.483857,0][-0.543772,0.785544,-0.238516][-0.866025,3.1121e-007,0.500001][0.451077,0.425801,0][-0.313947,0.785544,-0.00869099][-0.500001,3.83827e-007,0.866025][0.527316,0.512289,0][-0.313947,0.785544,-0.00869099][-0.500001,3.83827e-007,0.866025][0.527316,0.512289,0][-0.290049,1.01277,-0.050084][-0.460834,0.387984,0.798186][0.462074,0.557001,0][-0.502379,1.01277,-0.262414][-0.798186,0.387984,0.460833][0.400365,0.483857,0][-0.290049,1.01277,-0.050084][-0.460834,0.387984,0.798186][0.462074,0.557001,0][-0.313947,0.785544,-0.00869099][-0.500001,3.83827e-007,0.866025][0.527316,0.512289,0][-4.82924e-007,0.785544,0.075431][-1.63386e-007,1.08146e-006,1][0.582479,0.616197,0][-4.82924e-007,0.785544,0.075431][-1.63386e-007,1.08146e-006,1][0.582479,0.616197,0][-4.78746e-007,1.01277,0.027635][-4.57633e-007,0.387984,0.921666][0.50562,0.650379,0][-0.290049,1.01277,-0.050084][-0.460834,0.387984,0.798186][0.462074,0.557001,0][-3.77318e-007,1.01277,-1.13256][0,0.387984,-0.921666][0.038156,0.422989,0][-3.7314e-007,0.785544,-1.18036][0,8.29896e-007,-1][0.01749,0.341591,0][-0.313947,0.785544,-1.09623][-0.500001,6.32794e-007,-0.866025][0.132645,0.320807,0][-0.313947,0.785544,-1.09623][-0.500001,6.32794e-007,-0.866025][0.132645,0.320807,0][-0.290049,1.01277,-1.05484][-0.460834,0.387984,-0.798186][0.138213,0.399651,0][-3.77318e-007,1.01277,-1.13256][0,0.387984,-0.921666][0.038156,0.422989,0][-0.290049,1.01277,-1.05484][-0.460834,0.387984,-0.798186][0.138213,0.399651,0][-0.313947,0.785544,-1.09623][-0.500001,6.32794e-007,-0.866025][0.132645,0.320807,0][-0.543771,0.785544,-0.86641][-0.866025,2.69716e-007,-0.500001][0.247585,0.327131,0][-0.543771,0.785544,-0.86641][-0.866025,2.69716e-007,-0.500001][0.247585,0.327131,0][-0.502379,1.01277,-0.842512][-0.798186,0.387984,-0.460834][0.233824,0.402977,0][-0.290049,1.01277,-1.05484][-0.460834,0.387984,-0.798186][0.138213,0.399651,0][-0.502379,1.01277,-0.842512][-0.798186,0.387984,-0.460834][0.233824,0.402977,0][-0.543771,0.785544,-0.86641][-0.866025,2.69716e-007,-0.500001][0.247585,0.327131,0][-0.627894,0.785544,-0.552463][-1,4.20135e-007,0][0.355976,0.362721,0][-0.627894,0.785544,-0.552463][-1,4.20135e-007,0][0.355976,0.362721,0][-0.580098,1.01277,-0.552463][-0.921666,0.387985,3.70221e-007][0.322795,0.431682,0][-0.502379,1.01277,-0.842512][-0.798186,0.387984,-0.460834][0.233824,0.402977,0][-0.580098,1.01277,-0.552463][-0.921666,0.387985,3.70221e-007][0.322795,0.431682,0][-0.627894,0.785544,-0.552463][-1,4.20135e-007,0][0.355976,0.362721,0][-0.543772,0.785544,-0.238516][-0.866025,3.1121e-007,0.500001][0.451077,0.425801,0][-0.543772,0.785544,-0.238516][-0.866025,3.1121e-007,0.500001][0.451077,0.425801,0][-0.502379,1.01277,-0.262414][-0.798186,0.387984,0.460833][0.400365,0.483857,0][-0.580098,1.01277,-0.552463][-0.921666,0.387985,3.70221e-007][0.322795,0.431682,0][-0.384504,1.2054,-0.330469][-0.610444,0.709327,0.352439][0.350444,0.53879,0][-0.502379,1.01277,-0.262414][-0.798186,0.387984,0.460833][0.400365,0.483857,0][-0.290049,1.01277,-0.050084][-0.460834,0.387984,0.798186][0.462074,0.557001,0][-0.290049,1.01277,-0.050084][-0.460834,0.387984,0.798186][0.462074,0.557001,0][-0.221994,1.2054,-0.167958][-0.352441,0.709327,0.610443][0.396546,0.596918,0][-0.384504,1.2054,-0.330469][-0.610444,0.709327,0.352439][0.350444,0.53879,0][-0.221994,1.2054,-0.167958][-0.352441,0.709327,0.610443][0.396546,0.596918,0][-0.290049,1.01277,-0.050084][-0.460834,0.387984,0.798186][0.462074,0.557001,0][-4.78746e-007,1.01277,0.027635][-4.57633e-007,0.387984,0.921666][0.50562,0.650379,0][-4.78746e-007,1.01277,0.027635][-4.57633e-007,0.387984,0.921666][0.50562,0.650379,0][-4.66847e-007,1.2054,-0.108475][3.07037e-007,0.709328,0.704879][0.423537,0.671373,0][-0.221994,1.2054,-0.167958][-0.352441,0.709327,0.610443][0.396546,0.596918,0][-3.89218e-007,1.2054,-0.99645][0,0.709329,-0.704877][0.07263,0.501165,0][-3.77318e-007,1.01277,-1.13256][0,0.387984,-0.921666][0.038156,0.422989,0][-0.290049,1.01277,-1.05484][-0.460834,0.387984,-0.798186][0.138213,0.399651,0][-0.290049,1.01277,-1.05484][-0.460834,0.387984,-0.798186][0.138213,0.399651,0][-0.221994,1.2054,-0.936967][-0.35244,0.709328,-0.610442][0.147381,0.476332,0][-3.89218e-007,1.2054,-0.99645][0,0.709329,-0.704877][0.07263,0.501165,0][-0.221994,1.2054,-0.936967][-0.35244,0.709328,-0.610442][0.147381,0.476332,0][-0.290049,1.01277,-1.05484][-0.460834,0.387984,-0.798186][0.138213,0.399651,0][-0.502379,1.01277,-0.842512][-0.798186,0.387984,-0.460834][0.233824,0.402977,0][-0.502379,1.01277,-0.842512][-0.798186,0.387984,-0.460834][0.233824,0.402977,0][-0.384504,1.2054,-0.774457][-0.610443,0.709328,-0.35244][0.221448,0.476373,0][-0.221994,1.2054,-0.936967][-0.35244,0.709328,-0.610442][0.147381,0.476332,0][-0.384504,1.2054,-0.774457][-0.610443,0.709328,-0.35244][0.221448,0.476373,0][-0.502379,1.01277,-0.842512][-0.798186,0.387984,-0.460834][0.233824,0.402977,0][-0.580098,1.01277,-0.552463][-0.921666,0.387985,3.70221e-007][0.322795,0.431682,0][-0.580098,1.01277,-0.552463][-0.921666,0.387985,3.70221e-007][0.322795,0.431682,0][-0.443987,1.2054,-0.552463][-0.704878,0.709328,4.80688e-007][0.290593,0.497945,0][-0.384504,1.2054,-0.774457][-0.610443,0.709328,-0.35244][0.221448,0.476373,0][-0.443987,1.2054,-0.552463][-0.704878,0.709328,4.80688e-007][0.290593,0.497945,0][-0.580098,1.01277,-0.552463][-0.921666,0.387985,3.70221e-007][0.322795,0.431682,0][-0.502379,1.01277,-0.262414][-0.798186,0.387984,0.460833][0.400365,0.483857,0][-0.502379,1.01277,-0.262414][-0.798186,0.387984,0.460833][0.400365,0.483857,0][-0.384504,1.2054,-0.330469][-0.610444,0.709327,0.352439][0.350444,0.53879,0][-0.443987,1.2054,-0.552463][-0.704878,0.709328,4.80688e-007][0.290593,0.497945,0][-0.208093,1.33411,-0.432321][-0.339863,0.919778,0.196217][0.293552,0.596678,0][-0.384504,1.2054,-0.330469][-0.610444,0.709327,0.352439][0.350444,0.53879,0][-0.221994,1.2054,-0.167958][-0.352441,0.709327,0.610443][0.396546,0.596918,0][-0.221994,1.2054,-0.167958][-0.352441,0.709327,0.610443][0.396546,0.596918,0][-0.120142,1.33411,-0.34437][-0.196219,0.919779,0.339861][0.322621,0.634123,0][-0.208093,1.33411,-0.432321][-0.339863,0.919778,0.196217][0.293552,0.596678,0][-0.120142,1.33411,-0.34437][-0.196219,0.919779,0.339861][0.322621,0.634123,0][-0.221994,1.2054,-0.167958][-0.352441,0.709327,0.610443][0.396546,0.596918,0][-4.66847e-007,1.2054,-0.108475][3.07037e-007,0.709328,0.704879][0.423537,0.671373,0][-4.66847e-007,1.2054,-0.108475][3.07037e-007,0.709328,0.704879][0.423537,0.671373,0][-4.49039e-007,1.33411,-0.312178][3.51674e-006,0.919779,0.392438][0.3369,0.678582,0][-0.120142,1.33411,-0.34437][-0.196219,0.919779,0.339861][0.322621,0.634123,0][-4.07026e-007,1.33411,-0.792747][9.65811e-007,0.919779,-0.392437][0.120414,0.573369,0][-3.89218e-007,1.2054,-0.99645][0,0.709329,-0.704877][0.07263,0.501165,0][-0.221994,1.2054,-0.936967][-0.35244,0.709328,-0.610442][0.147381,0.476332,0][-0.221994,1.2054,-0.936967][-0.35244,0.709328,-0.610442][0.147381,0.476332,0][-0.120142,1.33411,-0.760555][-0.196218,0.919779,-0.339862][0.162179,0.557456,0][-4.07026e-007,1.33411,-0.792747][9.65811e-007,0.919779,-0.392437][0.120414,0.573369,0][-0.120142,1.33411,-0.760555][-0.196218,0.919779,-0.339862][0.162179,0.557456,0][-0.221994,1.2054,-0.936967][-0.35244,0.709328,-0.610442][0.147381,0.476332,0][-0.384504,1.2054,-0.774457][-0.610443,0.709328,-0.35244][0.221448,0.476373,0][-0.384504,1.2054,-0.774457][-0.610443,0.709328,-0.35244][0.221448,0.476373,0][-0.208093,1.33411,-0.672605][-0.339862,0.919778,-0.196219][0.208828,0.556445,0][-0.120142,1.33411,-0.760555][-0.196218,0.919779,-0.339862][0.162179,0.557456,0][-0.208093,1.33411,-0.672605][-0.339862,0.919778,-0.196219][0.208828,0.556445,0][-0.384504,1.2054,-0.774457][-0.610443,0.709328,-0.35244][0.221448,0.476373,0][-0.443987,1.2054,-0.552463][-0.704878,0.709328,4.80688e-007][0.290593,0.497945,0][-0.443987,1.2054,-0.552463][-0.704878,0.709328,4.80688e-007][0.290593,0.497945,0][-0.240284,1.33411,-0.552463][-0.392438,0.919779,6.73364e-007][0.254203,0.569997,0][-0.208093,1.33411,-0.672605][-0.339862,0.919778,-0.196219][0.208828,0.556445,0][-0.240284,1.33411,-0.552463][-0.392438,0.919779,6.73364e-007][0.254203,0.569997,0][-0.443987,1.2054,-0.552463][-0.704878,0.709328,4.80688e-007][0.290593,0.497945,0][-0.384504,1.2054,-0.330469][-0.610444,0.709327,0.352439][0.350444,0.53879,0][-0.384504,1.2054,-0.330469][-0.610444,0.709327,0.352439][0.350444,0.53879,0][-0.208093,1.33411,-0.432321][-0.339863,0.919778,0.196217][0.293552,0.596678,0][-0.240284,1.33411,-0.552463][-0.392438,0.919779,6.73364e-007][0.254203,0.569997,0][-0.208093,1.33411,-0.432321][-0.339863,0.919778,0.196217][0.293552,0.596678,0][-0.120142,1.33411,-0.34437][-0.196219,0.919779,0.339861][0.322621,0.634123,0][-4.28032e-007,1.37931,-0.552463][-8.17784e-007,1,4.70994e-007][0.2369,0.670661,0][-0.120142,1.33411,-0.34437][-0.196219,0.919779,0.339861][0.322621,0.634123,0][-4.49039e-007,1.33411,-0.312178][3.51674e-006,0.919779,0.392438][0.3369,0.678582,0][-4.28032e-007,1.37931,-0.552463][-8.17784e-007,1,4.70994e-007][0.245239,0.683499,0][-4.07026e-007,1.33411,-0.792747][9.65811e-007,0.919779,-0.392437][0.120414,0.573369,0][-0.120142,1.33411,-0.760555][-0.196218,0.919779,-0.339862][0.162179,0.557456,0][-4.28032e-007,1.37931,-0.552463][-8.17784e-007,1,4.70994e-007][0.17155,0.64481,0][-0.120142,1.33411,-0.760555][-0.196218,0.919779,-0.339862][0.162179,0.557456,0][-0.208093,1.33411,-0.672605][-0.339862,0.919778,-0.196219][0.208828,0.556445,0][-4.28032e-007,1.37931,-0.552463][-8.17784e-007,1,4.70994e-007][0.187424,0.645633,0][-0.208093,1.33411,-0.672605][-0.339862,0.919778,-0.196219][0.208828,0.556445,0][-0.240284,1.33411,-0.552463][-0.392438,0.919779,6.73364e-007][0.254203,0.569997,0][-4.28032e-007,1.37931,-0.552463][-8.17784e-007,1,4.70994e-007][0.205753,0.649482,0][-0.240284,1.33411,-0.552463][-0.392438,0.919779,6.73364e-007][0.254203,0.569997,0][-0.208093,1.33411,-0.432321][-0.339863,0.919778,0.196217][0.293552,0.596678,0][-4.28032e-007,1.37931,-0.552463][-8.17784e-007,1,4.70994e-007][0.223155,0.658145,0][-0.499972,-0.482685,-1.11404][-0.457122,-0.514994,-0.725135][0.158647,0.117501,0][-3.69293e-007,-0.482685,-1.22436][0,-0.527177,-0.849755][0.019926,0.085008,0][-3.89642e-007,-0.691277,-0.991598][0,-0.917044,-0.398786][0.059946,0,0][-3.89642e-007,-0.691277,-0.991598][0,-0.917044,-0.398786][0.059946,0,0][-0.407561,-0.691277,-0.901663][-0.243813,-0.90386,-0.351558][0.18279,0.035281,0][-0.499972,-0.482685,-1.11404][-0.457122,-0.514994,-0.725135][0.158647,0.117501,0][-3.62554e-007,-0.240388,-1.30145][0,-1.93712e-006,-1][0,0.160878,0][-3.69293e-007,-0.482685,-1.22436][0,-0.527177,-0.849755][0.019926,0.085008,0][-0.499972,-0.482685,-1.11404][-0.457122,-0.514994,-0.725135][0.158647,0.117501,0][-0.499972,-0.482685,-1.11404][-0.457122,-0.514994,-0.725135][0.158647,0.117501,0][-0.530576,-0.240387,-1.18437][-0.523633,-4.93715e-007,-0.851944][0.148749,0.179852,0][-3.62554e-007,-0.240388,-1.30145][0,-1.93712e-006,-1][0,0.160878,0][-3.69293e-007,0.00191212,-1.22436][-2.52248e-007,0.443391,-0.896328][0.00031,0.239113,0][-3.62554e-007,-0.240388,-1.30145][0,-1.93712e-006,-1][0,0.160878,0][-0.530576,-0.240387,-1.18437][-0.523633,-4.93715e-007,-0.851944][0.148749,0.179852,0][-0.530576,-0.240387,-1.18437][-0.523633,-4.93715e-007,-0.851944][0.148749,0.179852,0][-0.499972,0.00191212,-1.11404][-0.483344,0.447622,-0.752338][0.147258,0.244852,0][-3.69293e-007,0.00191212,-1.22436][-2.52248e-007,0.443391,-0.896328][0.00031,0.239113,0][-0.429374,0.164783,-1.01057][-0.351187,0.75361,-0.555644][0.143496,0.302722,0][-3.79668e-007,0.164783,-1.10569][-7.2928e-007,0.742707,-0.669617][0.00748,0.301032,0][-3.69293e-007,0.00191212,-1.22436][-2.52248e-007,0.443391,-0.896328][0.00031,0.239113,0][-3.69293e-007,0.00191212,-1.22436][-2.52248e-007,0.443391,-0.896328][0.00031,0.239113,0][-0.499972,0.00191212,-1.11404][-0.483344,0.447622,-0.752338][0.147258,0.244852,0][-0.429374,0.164783,-1.01057][-0.351187,0.75361,-0.555644][0.143496,0.302722,0][-4.02028e-007,0.297866,-0.849921][-2.01354e-007,0.938436,-0.345452][0.932082,0.825226,0][-3.79668e-007,0.164783,-1.10569][-7.2928e-007,0.742707,-0.669617][0.988246,0.830177,0][-0.429374,0.164783,-1.01057][-0.351187,0.75361,-0.555644][0.964636,0.912688,0][-0.429374,0.164783,-1.01057][-0.351187,0.75361,-0.555644][0.964636,0.912688,0][-0.328856,0.284886,-0.760842][-0.216858,0.937568,-0.271918][0.912807,0.888485,0][-4.02028e-007,0.297866,-0.849921][-2.01354e-007,0.938436,-0.345452][0.932082,0.825226,0][-0.323678,0.371453,0.347832][-0.178697,0.983319,0.0339278][0.698022,0.886122,0][-5.05368e-007,0.417315,0.332154][-1.0719e-006,0.999961,0.00885577][0.699519,0.822756,0][-4.70748e-007,0.402267,-0.063847][-3.13908e-007,0.999131,-0.0416883][0.776792,0.822001,0][-4.70748e-007,0.402267,-0.063847][-3.13908e-007,0.999131,-0.0416883][0.776792,0.822001,0][-0.347371,0.353996,-0.064479][-0.186734,0.981368,-0.0452472][0.7776,0.890066,0][-0.323678,0.371453,0.347832][-0.178697,0.983319,0.0339278][0.698022,0.886122,0][-5.05368e-007,0.417315,0.332154][-1.0719e-006,0.999961,0.00885577][0.699519,0.822756,0][-0.323678,0.371453,0.347832][-0.178697,0.983319,0.0339278][0.698022,0.886122,0][-0.379895,0.32655,0.680231][-0.352555,0.909336,0.220937][0.634145,0.900326,0][-0.379895,0.32655,0.680231][-0.352555,0.909336,0.220937][0.634145,0.900326,0][-5.49898e-007,0.409601,0.841523][5.41083e-007,0.999628,0.027274][0.600438,0.825981,0][-5.05368e-007,0.417315,0.332154][-1.0719e-006,0.999961,0.00885577][0.699519,0.822756,0][-5.83316e-007,0.453111,1.22377][2.81211e-007,0.802225,0.597022][0.984306,0.373164,0][-0.43611,0.205816,0.915824][-0.579041,0.748421,0.323383][0.807563,0.322664,0][-0.553428,0.00191212,1.05671][-0.64744,0.403072,0.646804][0.812325,0.242761,0][-5.92209e-007,-0.240388,1.3255][0,-0.0453881,0.998969][0.989042,0.1566,0][-5.89479e-007,0.00191212,1.29428][0,0.140633,0.990062][0.990064,0.233902,0][-0.553428,0.00191212,1.05671][-0.64744,0.403072,0.646804][0.812325,0.242761,0][-0.553428,0.00191212,1.05671][-0.64744,0.403072,0.646804][0.812325,0.242761,0][-0.587304,-0.240387,1.11925][-0.636191,0.00210412,0.771529][0.812186,0.17617,0][-5.92209e-007,-0.240388,1.3255][0,-0.0453881,0.998969][0.989042,0.1566,0][-5.86455e-007,-0.482687,1.25968][-4.93941e-007,-0.472318,0.881428][0.969027,0.079254,0][-5.92209e-007,-0.240388,1.3255][0,-0.0453881,0.998969][0.989042,0.1566,0][-0.587304,-0.240387,1.11925][-0.636191,0.00210412,0.771529][0.812186,0.17617,0][-0.587304,-0.240387,1.11925][-0.636191,0.00210412,0.771529][0.812186,0.17617,0][-0.553428,-0.482685,1.05671][-0.57317,-0.482791,0.66211][0.802336,0.111517,0][-5.86455e-007,-0.482687,1.25968][-4.93941e-007,-0.472318,0.881428][0.969027,0.079254,0][-5.69131e-007,-0.691277,1.06151][-6.4648e-007,-0.886631,0.462478][0.928433,0,0][-5.86455e-007,-0.482687,1.25968][-4.93941e-007,-0.472318,0.881428][0.969027,0.079254,0][-0.553428,-0.482685,1.05671][-0.57317,-0.482791,0.66211][0.802336,0.111517,0][-0.553428,-0.482685,1.05671][-0.57317,-0.482791,0.66211][0.802336,0.111517,0][-0.451136,-0.691277,0.867855][-0.321447,-0.892662,0.315954][0.779464,0.029921,0][-5.69131e-007,-0.691277,1.06151][-6.4648e-007,-0.886631,0.462478][0.928433,0,0][-5.10595e-007,-0.691277,0.391946][0,-1,0][0.718633,0.812007,0][-5.69131e-007,-0.691277,1.06151][-6.4648e-007,-0.886631,0.462478][0.588979,0.812006,0][-0.451136,-0.691277,0.867855][-0.321447,-0.892662,0.315954][0.626479,0.72465,0][-0.451136,-0.691277,0.867855][-0.321447,-0.892662,0.315954][0.626479,0.72465,0][-0.679465,-0.691277,0.391946][-0.426693,-0.897443,0.111936][0.718633,0.680437,0][-5.10595e-007,-0.691277,0.391946][0,-1,0][0.718633,0.812007,0][-4.70657e-007,-0.691277,-0.064895][0,-1,0][0.807094,0.812007,0][-5.10595e-007,-0.691277,0.391946][0,-1,0][0.718633,0.812007,0][-0.679465,-0.691277,0.391946][-0.426693,-0.897443,0.111936][0.718633,0.680437,0][-0.679465,-0.691277,0.391946][-0.426693,-0.897443,0.111936][0.718633,0.680437,0][-0.746653,-0.691277,-0.0648951][-0.46184,-0.886963,-0.000720518][0.807094,0.667427,0][-4.70657e-007,-0.691277,-0.064895][0,-1,0][0.807094,0.812007,0][-0.407561,-0.691277,-0.901663][-0.243813,-0.90386,-0.351558][0.969123,0.733088,0][-3.89642e-007,-0.691277,-0.991598][0,-0.917044,-0.398786][0.986538,0.812007,0][-4.31193e-007,-0.691277,-0.516304][0,-1,0][0.894503,0.812007,0][-4.31193e-007,-0.691277,-0.516304][0,-1,0][0.894503,0.812007,0][-0.678594,-0.691277,-0.516304][-0.420977,-0.8964,-0.138725][0.894503,0.680606,0][-0.407561,-0.691277,-0.901663][-0.243813,-0.90386,-0.351558][0.969123,0.733088,0][-0.833528,-0.482685,0.539991][-0.842796,-0.464227,0.272374][0.642439,0.116156,0][-0.679465,-0.691277,0.391946][-0.426693,-0.897443,0.111936][0.614797,0.033746,0][-0.451136,-0.691277,0.867855][-0.321447,-0.892662,0.315954][0.779464,0.029921,0][-0.451136,-0.691277,0.867855][-0.321447,-0.892662,0.315954][0.779464,0.029921,0][-0.553428,-0.482685,1.05671][-0.57317,-0.482791,0.66211][0.802336,0.111517,0][-0.833528,-0.482685,0.539991][-0.842796,-0.464227,0.272374][0.642439,0.116156,0][-0.915951,-0.482685,-0.0658511][-0.900844,-0.434144,-0.000271027][0.469108,0.117792,0][-0.746653,-0.691277,-0.0648951][-0.46184,-0.886963,-0.000720518][0.468852,0.038255,0][-0.679465,-0.691277,0.391946][-0.426693,-0.897443,0.111936][0.614797,0.033746,0][-0.679465,-0.691277,0.391946][-0.426693,-0.897443,0.111936][0.614797,0.033746,0][-0.833528,-0.482685,0.539991][-0.842796,-0.464227,0.272374][0.642439,0.116156,0][-0.915951,-0.482685,-0.0658511][-0.900844,-0.434144,-0.000271027][0.469108,0.117792,0][-0.83246,-0.482685,-0.682342][-0.809159,-0.482456,-0.335407][0.298707,0.123146,0][-0.499972,-0.482685,-1.11404][-0.457122,-0.514994,-0.725135][0.158647,0.117501,0][-0.407561,-0.691277,-0.901663][-0.243813,-0.90386,-0.351558][0.18279,0.035281,0][-0.407561,-0.691277,-0.901663][-0.243813,-0.90386,-0.351558][0.18279,0.035281,0][-0.678594,-0.691277,-0.516304][-0.420977,-0.8964,-0.138725][0.325927,0.041277,0][-0.83246,-0.482685,-0.682342][-0.809159,-0.482456,-0.335407][0.298707,0.123146,0][-0.884549,-0.240387,0.589019][-0.945986,-4.62303e-007,0.324208][0.652545,0.184563,0][-0.833528,-0.482685,0.539991][-0.842796,-0.464227,0.272374][0.642439,0.116156,0][-0.553428,-0.482685,1.05671][-0.57317,-0.482791,0.66211][0.802336,0.111517,0][-0.553428,-0.482685,1.05671][-0.57317,-0.482791,0.66211][0.802336,0.111517,0][-0.587304,-0.240387,1.11925][-0.636191,0.00210412,0.771529][0.812186,0.17617,0][-0.884549,-0.240387,0.589019][-0.945986,-4.62303e-007,0.324208][0.652545,0.184563,0][-0.972017,-0.240387,-0.0661681][-1,-4.10573e-007,0.000291893][0.469923,0.187939,0][-0.915951,-0.482685,-0.0658511][-0.900844,-0.434144,-0.000271027][0.469108,0.117792,0][-0.833528,-0.482685,0.539991][-0.842796,-0.464227,0.272374][0.642439,0.116156,0][-0.833528,-0.482685,0.539991][-0.842796,-0.464227,0.272374][0.642439,0.116156,0][-0.884549,-0.240387,0.589019][-0.945986,-4.62303e-007,0.324208][0.652545,0.184563,0][-0.972017,-0.240387,-0.0661681][-1,-4.10573e-007,0.000291893][0.469923,0.187939,0][-0.883416,-0.240387,-0.737329][-0.915259,-5.06868e-007,-0.402865][0.289458,0.187739,0][-0.530576,-0.240387,-1.18437][-0.523633,-4.93715e-007,-0.851944][0.148749,0.179852,0][-0.499972,-0.482685,-1.11404][-0.457122,-0.514994,-0.725135][0.158647,0.117501,0][-0.499972,-0.482685,-1.11404][-0.457122,-0.514994,-0.725135][0.158647,0.117501,0][-0.83246,-0.482685,-0.682342][-0.809159,-0.482456,-0.335407][0.298707,0.123146,0][-0.883416,-0.240387,-0.737329][-0.915259,-5.06868e-007,-0.402865][0.289458,0.187739,0][-0.553428,0.00191212,1.05671][-0.64744,0.403072,0.646804][0.812325,0.242761,0][-0.833528,0.00191212,0.539991][-0.860776,0.421298,0.285608][0.647,0.254393,0][-0.884549,-0.240387,0.589019][-0.945986,-4.62303e-007,0.324208][0.652545,0.184563,0][-0.884549,-0.240387,0.589019][-0.945986,-4.62303e-007,0.324208][0.652545,0.184563,0][-0.587304,-0.240387,1.11925][-0.636191,0.00210412,0.771529][0.812186,0.17617,0][-0.553428,0.00191212,1.05671][-0.64744,0.403072,0.646804][0.812325,0.242761,0][-0.833528,0.00191212,0.539991][-0.860776,0.421298,0.285608][0.647,0.254393,0][-0.915951,0.00191212,-0.0658511][-0.916098,0.400947,-0.00228306][0.470082,0.258416,0][-0.972017,-0.240387,-0.0661681][-1,-4.10573e-007,0.000291893][0.469923,0.187939,0][-0.972017,-0.240387,-0.0661681][-1,-4.10573e-007,0.000291893][0.469923,0.187939,0][-0.884549,-0.240387,0.589019][-0.945986,-4.62303e-007,0.324208][0.652545,0.184563,0][-0.833528,0.00191212,0.539991][-0.860776,0.421298,0.285608][0.647,0.254393,0][-0.499972,0.00191212,-1.11404][-0.483344,0.447622,-0.752338][0.147258,0.244852,0][-0.530576,-0.240387,-1.18437][-0.523633,-4.93715e-007,-0.851944][0.148749,0.179852,0][-0.883416,-0.240387,-0.737329][-0.915259,-5.06868e-007,-0.402865][0.289458,0.187739,0][-0.883416,-0.240387,-0.737329][-0.915259,-5.06868e-007,-0.402865][0.289458,0.187739,0][-0.83246,0.00191212,-0.682342][-0.833757,0.436037,-0.338706][0.294551,0.253712,0][-0.499972,0.00191212,-1.11404][-0.483344,0.447622,-0.752338][0.147258,0.244852,0][-0.43611,0.205816,0.915824][-0.579041,0.748421,0.323383][0.807563,0.322664,0][-0.718596,0.189738,0.460671][-0.683474,0.695588,0.221405][0.638082,0.323364,0][-0.833528,0.00191212,0.539991][-0.860776,0.421298,0.285608][0.647,0.254393,0][-0.833528,0.00191212,0.539991][-0.860776,0.421298,0.285608][0.647,0.254393,0][-0.553428,0.00191212,1.05671][-0.64744,0.403072,0.646804][0.812325,0.242761,0][-0.43611,0.205816,0.915824][-0.579041,0.748421,0.323383][0.807563,0.322664,0][-0.718596,0.189738,0.460671][-0.683474,0.695588,0.221405][0.638082,0.323364,0][-0.789654,0.181943,-0.0655121][-0.688883,0.724588,-0.0202997][0.469315,0.324285,0][-0.915951,0.00191212,-0.0658511][-0.916098,0.400947,-0.00228306][0.470082,0.258416,0][-0.915951,0.00191212,-0.0658511][-0.916098,0.400947,-0.00228306][0.470082,0.258416,0][-0.833528,0.00191212,0.539991][-0.860776,0.421298,0.285608][0.647,0.254393,0][-0.718596,0.189738,0.460671][-0.683474,0.695588,0.221405][0.638082,0.323364,0][-0.429374,0.164783,-1.01057][-0.351187,0.75361,-0.555644][0.143496,0.302722,0][-0.499972,0.00191212,-1.11404][-0.483344,0.447622,-0.752338][0.147258,0.244852,0][-0.83246,0.00191212,-0.682342][-0.833757,0.436037,-0.338706][0.294551,0.253712,0][-0.83246,0.00191212,-0.682342][-0.833757,0.436037,-0.338706][0.294551,0.253712,0][-0.717676,0.17459,-0.606862][-0.610789,0.753622,-0.242881][0.29819,0.316682,0][-0.429374,0.164783,-1.01057][-0.351187,0.75361,-0.555644][0.143496,0.302722,0][-0.717676,0.17459,-0.606862][-0.610789,0.753622,-0.242881][0.884865,0.967652,0][-0.529325,0.279366,-0.529761][-0.340625,0.926868,-0.157766][0.867963,0.926576,0][-0.328856,0.284886,-0.760842][-0.216858,0.937568,-0.271918][0.912807,0.888485,0][-0.328856,0.284886,-0.760842][-0.216858,0.937568,-0.271918][0.912807,0.888485,0][-0.429374,0.164783,-1.01057][-0.351187,0.75361,-0.555644][0.964636,0.912688,0][-0.717676,0.17459,-0.606862][-0.610789,0.753622,-0.242881][0.884865,0.967652,0][-0.789654,0.181943,-0.0655121][-0.688883,0.724588,-0.0202997][0.779396,0.982912,0][-0.718596,0.189738,0.460671][-0.683474,0.695588,0.221405][0.676461,0.971346,0][-0.554203,0.316204,0.395136][-0.4138,0.903736,0.109683][0.689958,0.931647,0][-0.554203,0.316204,0.395136][-0.4138,0.903736,0.109683][0.689958,0.931647,0][-0.595328,0.295017,-0.065042][-0.380703,0.923505,-0.046937][0.778306,0.939277,0][-0.789654,0.181943,-0.0655121][-0.688883,0.724588,-0.0202997][0.779396,0.982912,0][-0.718596,0.189738,0.460671][-0.683474,0.695588,0.221405][0.676461,0.971346,0][-0.43611,0.205816,0.915824][-0.579041,0.748421,0.323383][0.58549,0.919903,0][-0.379895,0.32655,0.680231][-0.352555,0.909336,0.220937][0.634145,0.900326,0][-0.379895,0.32655,0.680231][-0.352555,0.909336,0.220937][0.634145,0.900326,0][-0.554203,0.316204,0.395136][-0.4138,0.903736,0.109683][0.689958,0.931647,0][-0.718596,0.189738,0.460671][-0.683474,0.695588,0.221405][0.676461,0.971346,0][-0.554203,0.316204,0.395136][-0.4138,0.903736,0.109683][0.689958,0.931647,0][-0.379895,0.32655,0.680231][-0.352555,0.909336,0.220937][0.634145,0.900326,0][-0.323678,0.371453,0.347832][-0.178697,0.983319,0.0339278][0.698022,0.886122,0][-0.595328,0.295017,-0.065042][-0.380703,0.923505,-0.046937][0.778306,0.939277,0][-0.554203,0.316204,0.395136][-0.4138,0.903736,0.109683][0.689958,0.931647,0][-0.323678,0.371453,0.347832][-0.178697,0.983319,0.0339278][0.698022,0.886122,0][-0.323678,0.371453,0.347832][-0.178697,0.983319,0.0339278][0.698022,0.886122,0][-0.347371,0.353996,-0.064479][-0.186734,0.981368,-0.0452472][0.7776,0.890066,0][-0.595328,0.295017,-0.065042][-0.380703,0.923505,-0.046937][0.778306,0.939277,0][-0.308571,0.337533,-0.456515][-0.185714,0.977363,-0.101353][0.853425,0.882687,0][-0.328856,0.284886,-0.760842][-0.216858,0.937568,-0.271918][0.912807,0.888485,0][-0.529325,0.279366,-0.529761][-0.340625,0.926868,-0.157766][0.867963,0.926576,0][-4.36948e-007,0.388076,-0.450479][0,0.993618,-0.1128][0.852241,0.821973,0][-4.02028e-007,0.297866,-0.849921][-2.01354e-007,0.938436,-0.345452][0.932082,0.825226,0][-0.328856,0.284886,-0.760842][-0.216858,0.937568,-0.271918][0.912807,0.888485,0][-0.328856,0.284886,-0.760842][-0.216858,0.937568,-0.271918][0.912807,0.888485,0][-0.308571,0.337533,-0.456515][-0.185714,0.977363,-0.101353][0.853425,0.882687,0][-4.36948e-007,0.388076,-0.450479][0,0.993618,-0.1128][0.852241,0.821973,0][-0.43611,0.205816,0.915824][-0.579041,0.748421,0.323383][0.58549,0.919903,0][-5.83316e-007,0.453111,1.22377][2.81211e-007,0.802225,0.597022][0.525402,0.821973,0][-5.49898e-007,0.409601,0.841523][5.41083e-007,0.999628,0.027274][0.600438,0.825981,0][-5.49898e-007,0.409601,0.841523][5.41083e-007,0.999628,0.027274][0.600438,0.825981,0][-0.379895,0.32655,0.680231][-0.352555,0.909336,0.220937][0.634145,0.900326,0][-0.43611,0.205816,0.915824][-0.579041,0.748421,0.323383][0.58549,0.919903,0][-4.70748e-007,0.402267,-0.063847][-3.13908e-007,0.999131,-0.0416883][0.776792,0.822001,0][-4.36948e-007,0.388076,-0.450479][0,0.993618,-0.1128][0.852241,0.821973,0][-0.308571,0.337533,-0.456515][-0.185714,0.977363,-0.101353][0.853425,0.882687,0][-0.308571,0.337533,-0.456515][-0.185714,0.977363,-0.101353][0.853425,0.882687,0][-0.347371,0.353996,-0.064479][-0.186734,0.981368,-0.0452472][0.7776,0.890066,0][-4.70748e-007,0.402267,-0.063847][-3.13908e-007,0.999131,-0.0416883][0.776792,0.822001,0][-0.308571,0.337533,-0.456515][-0.185714,0.977363,-0.101353][0.853425,0.882687,0][-0.529325,0.279366,-0.529761][-0.340625,0.926868,-0.157766][0.867963,0.926576,0][-0.595328,0.295017,-0.065042][-0.380703,0.923505,-0.046937][0.778306,0.939277,0][-0.595328,0.295017,-0.065042][-0.380703,0.923505,-0.046937][0.778306,0.939277,0][-0.347371,0.353996,-0.064479][-0.186734,0.981368,-0.0452472][0.7776,0.890066,0][-0.308571,0.337533,-0.456515][-0.185714,0.977363,-0.101353][0.853425,0.882687,0][-0.529325,0.279366,-0.529761][-0.340625,0.926868,-0.157766][0.867963,0.926576,0][-0.717676,0.17459,-0.606862][-0.610789,0.753622,-0.242881][0.884865,0.967652,0][-0.789654,0.181943,-0.0655121][-0.688883,0.724588,-0.0202997][0.779396,0.982912,0][-0.789654,0.181943,-0.0655121][-0.688883,0.724588,-0.0202997][0.779396,0.982912,0][-0.595328,0.295017,-0.065042][-0.380703,0.923505,-0.046937][0.778306,0.939277,0][-0.529325,0.279366,-0.529761][-0.340625,0.926868,-0.157766][0.867963,0.926576,0][-0.717676,0.17459,-0.606862][-0.610789,0.753622,-0.242881][0.29819,0.316682,0][-0.83246,0.00191212,-0.682342][-0.833757,0.436037,-0.338706][0.294551,0.253712,0][-0.915951,0.00191212,-0.0658511][-0.916098,0.400947,-0.00228306][0.470082,0.258416,0][-0.915951,0.00191212,-0.0658511][-0.916098,0.400947,-0.00228306][0.470082,0.258416,0][-0.789654,0.181943,-0.0655121][-0.688883,0.724588,-0.0202997][0.469315,0.324285,0][-0.717676,0.17459,-0.606862][-0.610789,0.753622,-0.242881][0.29819,0.316682,0][-0.83246,0.00191212,-0.682342][-0.833757,0.436037,-0.338706][0.294551,0.253712,0][-0.883416,-0.240387,-0.737329][-0.915259,-5.06868e-007,-0.402865][0.289458,0.187739,0][-0.972017,-0.240387,-0.0661681][-1,-4.10573e-007,0.000291893][0.469923,0.187939,0][-0.972017,-0.240387,-0.0661681][-1,-4.10573e-007,0.000291893][0.469923,0.187939,0][-0.915951,0.00191212,-0.0658511][-0.916098,0.400947,-0.00228306][0.470082,0.258416,0][-0.83246,0.00191212,-0.682342][-0.833757,0.436037,-0.338706][0.294551,0.253712,0][-0.972017,-0.240387,-0.0661681][-1,-4.10573e-007,0.000291893][0.469923,0.187939,0][-0.883416,-0.240387,-0.737329][-0.915259,-5.06868e-007,-0.402865][0.289458,0.187739,0][-0.83246,-0.482685,-0.682342][-0.809159,-0.482456,-0.335407][0.298707,0.123146,0][-0.83246,-0.482685,-0.682342][-0.809159,-0.482456,-0.335407][0.298707,0.123146,0][-0.915951,-0.482685,-0.0658511][-0.900844,-0.434144,-0.000271027][0.469108,0.117792,0][-0.972017,-0.240387,-0.0661681][-1,-4.10573e-007,0.000291893][0.469923,0.187939,0][-0.915951,-0.482685,-0.0658511][-0.900844,-0.434144,-0.000271027][0.469108,0.117792,0][-0.83246,-0.482685,-0.682342][-0.809159,-0.482456,-0.335407][0.298707,0.123146,0][-0.678594,-0.691277,-0.516304][-0.420977,-0.8964,-0.138725][0.325927,0.041277,0][-0.678594,-0.691277,-0.516304][-0.420977,-0.8964,-0.138725][0.325927,0.041277,0][-0.746653,-0.691277,-0.0648951][-0.46184,-0.886963,-0.000720518][0.468852,0.038255,0][-0.915951,-0.482685,-0.0658511][-0.900844,-0.434144,-0.000271027][0.469108,0.117792,0][-0.678594,-0.691277,-0.516304][-0.420977,-0.8964,-0.138725][0.894503,0.680606,0][-4.31193e-007,-0.691277,-0.516304][0,-1,0][0.894503,0.812007,0][-4.70657e-007,-0.691277,-0.064895][0,-1,0][0.807094,0.812007,0][-4.70657e-007,-0.691277,-0.064895][0,-1,0][0.807094,0.812007,0][-0.746653,-0.691277,-0.0648951][-0.46184,-0.886963,-0.000720518][0.807094,0.667427,0][-0.678594,-0.691277,-0.516304][-0.420977,-0.8964,-0.138725][0.894503,0.680606,0][-5.83316e-007,0.453111,1.22377][2.81211e-007,0.802225,0.597022][0.984306,0.373164,0][-0.553428,0.00191212,1.05671][-0.64744,0.403072,0.646804][0.812325,0.242761,0][-5.89479e-007,0.00191212,1.29428][0,0.140633,0.990062][0.990064,0.233902,0][0.319967,0.637841,-1.25861][0.214388,-0.901732,-0.375389][0.455098,0.686845,0][0.327341,0.67095,-1.2617][0.931343,0.119357,-0.344027][0.448424,0.697716,0][0.348659,0.659819,-1.17757][0.967017,0.150976,-0.205144][0.477403,0.711986,0][0.348659,0.659819,-1.17757][0.967017,0.150976,-0.205144][0.477403,0.711986,0][0.341699,0.625833,-1.17292][0.286809,-0.941893,-0.174866][0.485736,0.70184,0][0.319967,0.637841,-1.25861][0.214388,-0.901732,-0.375389][0.455098,0.686845,0][0.174654,0.881225,-1.45414][0.533467,0.518757,-0.66806][0.339651,0.722533,0][-3.47187e-007,0.955515,-1.47722][0,0.726258,-0.687422][0.283719,0.753836,0][-3.55952e-007,0.943441,-1.37696][0,0.999234,0.0391422][0.307344,0.781011,0][-3.55952e-007,0.943441,-1.37696][0,0.999234,0.0391422][0.307344,0.781011,0][0.190045,0.862544,-1.34867][0.649555,0.759658,-0.0315796][0.369535,0.741707,0][0.174654,0.881225,-1.45414][0.533467,0.518757,-0.66806][0.339651,0.722533,0][-3.78136e-007,0.602192,-1.12321][0,-0.995409,-0.0957087][0.159149,0.866801,0][-3.60903e-007,0.631063,-1.32033][0,-0.894386,-0.447295][0.106178,0.915713,0][0.17556,0.597216,-1.2894][-0.0449138,-0.9311,-0.361989][0.162754,0.954271,0][0.17556,0.597216,-1.2894][-0.0449138,-0.9311,-0.361989][0.162754,0.954271,0][0.203675,0.583716,-1.08037][-0.1086,-0.99364,-0.0297462][0.223852,0.910068,0][-3.78136e-007,0.602192,-1.12321][0,-0.995409,-0.0957087][0.159149,0.866801,0][0.262168,0.748564,-1.38197][0.824853,0.162232,-0.54157][0.391306,0.6979,0][0.250894,0.711799,-1.38142][0.00839223,-0.758995,-0.651042][0.39417,0.684252,0][0.177633,0.80717,-1.4409][-0.0453384,-0.604805,-0.795082][0.346879,0.699533,0][0.177633,0.80717,-1.4409][-0.0453384,-0.604805,-0.795082][0.346879,0.699533,0][0.174654,0.881225,-1.45414][0.533467,0.518757,-0.66806][0.339651,0.722533,0][0.262168,0.748564,-1.38197][0.824853,0.162232,-0.54157][0.391306,0.6979,0][0.222343,0.932087,-0.991346][0.64872,0.730803,-0.212343][0.459104,0.841016,0][0.20287,0.861877,-1.26077][0.661667,0.731092,-0.166439][0.394649,0.761286,0][-3.63256e-007,0.94828,-1.29341][3.8547e-007,0.986888,-0.161405][0.326295,0.804822,0][-3.63256e-007,0.94828,-1.29341][3.8547e-007,0.986888,-0.161405][0.326295,0.804822,0][-3.89664e-007,1.03146,-0.991346][1.59787e-006,0.964114,-0.26549][0.391525,0.899385,0][0.222343,0.932087,-0.991346][0.64872,0.730803,-0.212343][0.459104,0.841016,0][0.341699,0.625833,-1.17292][0.286809,-0.941893,-0.174866][0.485736,0.70184,0][0.348659,0.659819,-1.17757][0.967017,0.150976,-0.205144][0.477403,0.711986,0][0.389567,0.631038,-0.953195][0.980476,0.0959854,-0.171623][0.552042,0.753156,0][0.389567,0.631038,-0.953195][0.980476,0.0959854,-0.171623][0.552042,0.753156,0][0.384603,0.59381,-0.946376][0.797652,-0.459828,-0.390268][0.562596,0.743023,0][0.341699,0.625833,-1.17292][0.286809,-0.941893,-0.174866][0.485736,0.70184,0][0.348659,0.659819,-1.17757][0.967017,0.150976,-0.205144][0.477403,0.711986,0][0.20287,0.861877,-1.26077][0.661667,0.731092,-0.166439][0.394649,0.761286,0][0.222343,0.932087,-0.991346][0.64872,0.730803,-0.212343][0.459104,0.841016,0][0.222343,0.932087,-0.991346][0.64872,0.730803,-0.212343][0.459104,0.841016,0][0.389567,0.631038,-0.953195][0.980476,0.0959854,-0.171623][0.552042,0.753156,0][0.348659,0.659819,-1.17757][0.967017,0.150976,-0.205144][0.477403,0.711986,0][0.203675,0.583716,-1.08037][-0.1086,-0.99364,-0.0297462][0.223852,0.910068,0][0.17556,0.597216,-1.2894][-0.0449138,-0.9311,-0.361989][0.162754,0.954271,0][0.26351,0.580873,-1.25261][0.390454,-0.839178,-0.378585][0.1933,0.968039,0][0.26351,0.580873,-1.25261][0.390454,-0.839178,-0.378585][0.1933,0.968039,0][0.322582,0.570023,-1.06238][0.411178,-0.893772,-0.179176][0.258229,0.937961,0][0.203675,0.583716,-1.08037][-0.1086,-0.99364,-0.0297462][0.223852,0.910068,0][0.322582,0.570023,-1.06238][0.411178,-0.893772,-0.179176][0.258229,0.937961,0][0.363599,0.568341,-0.937437][0.42367,-0.893125,-0.1511][0.302887,0.918243,0][0.209418,0.58175,-0.970713][-0.101719,-0.994812,0.00169728][0.255228,0.884333,0][0.209418,0.58175,-0.970713][-0.101719,-0.994812,0.00169728][0.255228,0.884333,0][0.203675,0.583716,-1.08037][-0.1086,-0.99364,-0.0297462][0.223852,0.910068,0][0.322582,0.570023,-1.06238][0.411178,-0.893772,-0.179176][0.258229,0.937961,0][-3.48603e-007,0.888992,-1.46102][0,-0.638133,-0.769926][0.283719,0.729492,0][-3.47187e-007,0.955515,-1.47722][0,0.726258,-0.687422][0.283719,0.753836,0][0.174654,0.881225,-1.45414][0.533467,0.518757,-0.66806][0.339651,0.722533,0][0.174654,0.881225,-1.45414][0.533467,0.518757,-0.66806][0.339651,0.722533,0][0.177633,0.80717,-1.4409][-0.0453384,-0.604805,-0.795082][0.346879,0.699533,0][-3.48603e-007,0.888992,-1.46102][0,-0.638133,-0.769926][0.283719,0.729492,0][-3.60903e-007,0.631063,-1.32033][0,-0.894386,-0.447295][0.106178,0.915713,0][-3.5624e-007,0.678217,-1.37367][0,-0.5905,-0.807038][0.084712,0.931287,0][0.168874,0.641442,-1.35103][0.171278,-0.633,-0.754966][0.140737,0.968933,0][0.168874,0.641442,-1.35103][0.171278,-0.633,-0.754966][0.140737,0.968933,0][0.17556,0.597216,-1.2894][-0.0449138,-0.9311,-0.361989][0.162754,0.954271,0][-3.60903e-007,0.631063,-1.32033][0,-0.894386,-0.447295][0.106178,0.915713,0][0.26351,0.580873,-1.25261][0.390454,-0.839178,-0.378585][0.1933,0.968039,0][0.17556,0.597216,-1.2894][-0.0449138,-0.9311,-0.361989][0.162754,0.954271,0][0.168874,0.641442,-1.35103][0.171278,-0.633,-0.754966][0.140737,0.968933,0][0.26351,0.580873,-1.25261][0.390454,-0.839178,-0.378585][0.1933,0.968039,0][0.276593,0.61707,-1.26685][0.851659,0.236835,-0.467532][0.191286,0.982369,0][0.337563,0.598778,-1.0691][0.899764,0.330921,-0.284458][0.262244,0.949752,0][0.337563,0.598778,-1.0691][0.899764,0.330921,-0.284458][0.262244,0.949752,0][0.322582,0.570023,-1.06238][0.411178,-0.893772,-0.179176][0.258229,0.937961,0][0.26351,0.580873,-1.25261][0.390454,-0.839178,-0.378585][0.1933,0.968039,0][0.322582,0.570023,-1.06238][0.411178,-0.893772,-0.179176][0.258229,0.937961,0][0.337563,0.598778,-1.0691][0.899764,0.330921,-0.284458][0.262244,0.949752,0][0.384603,0.59381,-0.946376][0.797652,-0.459828,-0.390268][0.307281,0.930221,0][0.384603,0.59381,-0.946376][0.797652,-0.459828,-0.390268][0.307281,0.930221,0][0.363599,0.568341,-0.937437][0.42367,-0.893125,-0.1511][0.302887,0.918243,0][0.322582,0.570023,-1.06238][0.411178,-0.893772,-0.179176][0.258229,0.937961,0][-3.5624e-007,0.678217,-1.37367][0,-0.5905,-0.807038][0.084712,0.931287,0][-3.5416e-007,0.724529,-1.39747][0,0.595368,-0.803453][0.067901,0.941797,0][0.176716,0.68439,-1.37314][0.483172,0.434662,-0.760009][0.12885,0.982369,0][0.176716,0.68439,-1.37314][0.483172,0.434662,-0.760009][0.12885,0.982369,0][0.168874,0.641442,-1.35103][0.171278,-0.633,-0.754966][0.140737,0.968933,0][-3.5624e-007,0.678217,-1.37367][0,-0.5905,-0.807038][0.084712,0.931287,0][0.168874,0.641442,-1.35103][0.171278,-0.633,-0.754966][0.140737,0.968933,0][0.176716,0.68439,-1.37314][0.483172,0.434662,-0.760009][0.12885,0.982369,0][0.276593,0.61707,-1.26685][0.851659,0.236835,-0.467532][0.191286,0.982369,0][0.276593,0.61707,-1.26685][0.851659,0.236835,-0.467532][0.191286,0.982369,0][0.26351,0.580873,-1.25261][0.390454,-0.839178,-0.378585][0.1933,0.968039,0][0.168874,0.641442,-1.35103][0.171278,-0.633,-0.754966][0.140737,0.968933,0][-3.76288e-007,0.854014,-1.14435][0,-0.991063,-0.133394][0.162654,0.728833,0][-3.61187e-007,0.873094,-1.31708][0,-0.992724,-0.120414][0.110997,0.76449,0][0.163189,0.790618,-1.29208][-0.570563,-0.81207,-0.122475][0.158257,0.811764,0][0.163189,0.790618,-1.29208][-0.570563,-0.81207,-0.122475][0.158257,0.811764,0][0.147566,0.772715,-1.1311][-0.523845,-0.846723,-0.0929891][0.203695,0.774415,0][-3.76288e-007,0.854014,-1.14435][0,-0.991063,-0.133394][0.162654,0.728833,0][0.176716,0.68439,-1.37314][0.483172,0.434662,-0.760009][0.471157,0.974949,0][-3.5416e-007,0.724529,-1.39747][0,0.595368,-0.803453][0.528767,0.935062,0][-3.78501e-007,0.702976,-1.11904][0,0.997407,0.0719607][0.459353,0.861769,0][-3.78501e-007,0.702976,-1.11904][0,0.997407,0.0719607][0.459353,0.861769,0][0.146649,0.672131,-1.1065][0.311933,0.949095,0.0437686][0.412709,0.897418,0][0.176716,0.68439,-1.37314][0.483172,0.434662,-0.760009][0.471157,0.974949,0][0.276593,0.61707,-1.26685][0.851659,0.236835,-0.467532][0.413091,0.974949,0][0.176716,0.68439,-1.37314][0.483172,0.434662,-0.760009][0.471157,0.974949,0][0.146649,0.672131,-1.1065][0.311933,0.949095,0.0437686][0.412709,0.897418,0][0.146649,0.672131,-1.1065][0.311933,0.949095,0.0437686][0.412709,0.897418,0][0.232148,0.638993,-1.08543][0.363603,0.931016,-0.0316649][0.383008,0.913985,0][0.276593,0.61707,-1.26685][0.851659,0.236835,-0.467532][0.413091,0.974949,0][0.236003,0.719266,-1.0901][-0.597624,-0.801289,0.0279448][0.238612,0.794226,0][0.245328,0.714701,-1.27329][-0.678938,-0.733192,-0.0383776][0.189296,0.838732,0][0.319967,0.637841,-1.25861][0.214388,-0.901732,-0.375389][0.217925,0.865435,0][0.319967,0.637841,-1.25861][0.214388,-0.901732,-0.375389][0.217925,0.865435,0][0.341699,0.625833,-1.17292][0.286809,-0.941893,-0.174866][0.247419,0.852681,0][0.301829,0.672016,-1.04176][-0.657279,-0.753321,0.0221874][0.270661,0.805859,0][0.236003,0.719266,-1.0901][-0.597624,-0.801289,0.0279448][0.238612,0.794226,0][0.319967,0.637841,-1.25861][0.214388,-0.901732,-0.375389][0.217925,0.865435,0][0.301829,0.672016,-1.04176][-0.657279,-0.753321,0.0221874][0.270661,0.805859,0][0.337563,0.598778,-1.0691][0.899764,0.330921,-0.284458][0.348518,0.93662,0][0.276593,0.61707,-1.26685][0.851659,0.236835,-0.467532][0.413091,0.974949,0][0.232148,0.638993,-1.08543][0.363603,0.931016,-0.0316649][0.383008,0.913985,0][0.232148,0.638993,-1.08543][0.363603,0.931016,-0.0316649][0.383008,0.913985,0][0.319188,0.610465,-1.0196][0.369423,0.922954,-0.108086][0.342437,0.91804,0][0.337563,0.598778,-1.0691][0.899764,0.330921,-0.284458][0.348518,0.93662,0][0.301829,0.672016,-1.04176][-0.657279,-0.753321,0.0221874][0.270661,0.805859,0][0.341699,0.625833,-1.17292][0.286809,-0.941893,-0.174866][0.247419,0.852681,0][0.384603,0.59381,-0.946376][0.797652,-0.459828,-0.390268][0.323301,0.816375,0][0.384603,0.59381,-0.946376][0.797652,-0.459828,-0.390268][0.323301,0.816375,0][0.342842,0.615878,-0.95402][0.0643929,-0.215642,-0.974347][0.311078,0.804144,0][0.301829,0.672016,-1.04176][-0.657279,-0.753321,0.0221874][0.270661,0.805859,0][0.384603,0.59381,-0.946376][0.797652,-0.459828,-0.390268][0.306454,0.914462,0][0.337563,0.598778,-1.0691][0.899764,0.330921,-0.284458][0.348518,0.93662,0][0.319188,0.610465,-1.0196][0.369423,0.922954,-0.108086][0.342437,0.91804,0][0.319188,0.610465,-1.0196][0.369423,0.922954,-0.108086][0.342437,0.91804,0][0.342842,0.615878,-0.95402][0.0643929,-0.215642,-0.974347][0.320856,0.904885,0][0.384603,0.59381,-0.946376][0.797652,-0.459828,-0.390268][0.306454,0.914462,0][0.190045,0.862544,-1.34867][0.649555,0.759658,-0.0315796][0.369535,0.741707,0][0.327341,0.67095,-1.2617][0.931343,0.119357,-0.344027][0.448424,0.697716,0][0.262168,0.748564,-1.38197][0.824853,0.162232,-0.54157][0.391306,0.6979,0][0.262168,0.748564,-1.38197][0.824853,0.162232,-0.54157][0.391306,0.6979,0][0.174654,0.881225,-1.45414][0.533467,0.518757,-0.66806][0.339651,0.722533,0][0.190045,0.862544,-1.34867][0.649555,0.759658,-0.0315796][0.369535,0.741707,0][0.147566,0.772715,-1.1311][-0.523845,-0.846723,-0.0929891][0.203695,0.774415,0][0.163189,0.790618,-1.29208][-0.570563,-0.81207,-0.122475][0.158257,0.811764,0][0.245328,0.714701,-1.27329][-0.678938,-0.733192,-0.0383776][0.189296,0.838732,0][0.245328,0.714701,-1.27329][-0.678938,-0.733192,-0.0383776][0.189296,0.838732,0][0.236003,0.719266,-1.0901][-0.597624,-0.801289,0.0279448][0.238612,0.794226,0][0.147566,0.772715,-1.1311][-0.523845,-0.846723,-0.0929891][0.203695,0.774415,0][0.250894,0.711799,-1.38142][0.00839223,-0.758995,-0.651042][0.39417,0.684252,0][0.262168,0.748564,-1.38197][0.824853,0.162232,-0.54157][0.391306,0.6979,0][0.327341,0.67095,-1.2617][0.931343,0.119357,-0.344027][0.448424,0.697716,0][0.327341,0.67095,-1.2617][0.931343,0.119357,-0.344027][0.448424,0.697716,0][0.319967,0.637841,-1.25861][0.214388,-0.901732,-0.375389][0.455098,0.686845,0][0.250894,0.711799,-1.38142][0.00839223,-0.758995,-0.651042][0.39417,0.684252,0][0.245328,0.714701,-1.27329][-0.678938,-0.733192,-0.0383776][0.189296,0.838732,0][0.250894,0.711799,-1.38142][0.00839223,-0.758995,-0.651042][0.160583,0.865435,0][0.319967,0.637841,-1.25861][0.214388,-0.901732,-0.375389][0.217925,0.865435,0][0.327341,0.67095,-1.2617][0.931343,0.119357,-0.344027][0.448424,0.697716,0][0.190045,0.862544,-1.34867][0.649555,0.759658,-0.0315796][0.369535,0.741707,0][0.20287,0.861877,-1.26077][0.661667,0.731092,-0.166439][0.394649,0.761286,0][0.20287,0.861877,-1.26077][0.661667,0.731092,-0.166439][0.394649,0.761286,0][0.348659,0.659819,-1.17757][0.967017,0.150976,-0.205144][0.477403,0.711986,0][0.327341,0.67095,-1.2617][0.931343,0.119357,-0.344027][0.448424,0.697716,0][0.190045,0.862544,-1.34867][0.649555,0.759658,-0.0315796][0.369535,0.741707,0][-3.55952e-007,0.943441,-1.37696][0,0.999234,0.0391422][0.307344,0.781011,0][-3.63256e-007,0.94828,-1.29341][3.8547e-007,0.986888,-0.161405][0.326295,0.804822,0][-3.63256e-007,0.94828,-1.29341][3.8547e-007,0.986888,-0.161405][0.326295,0.804822,0][0.20287,0.861877,-1.26077][0.661667,0.731092,-0.166439][0.394649,0.761286,0][0.190045,0.862544,-1.34867][0.649555,0.759658,-0.0315796][0.369535,0.741707,0][0.250894,0.711799,-1.38142][0.00839223,-0.758995,-0.651042][0.160583,0.865435,0][0.245328,0.714701,-1.27329][-0.678938,-0.733192,-0.0383776][0.189296,0.838732,0][0.163189,0.790618,-1.29208][-0.570563,-0.81207,-0.122475][0.158257,0.811764,0][0.163189,0.790618,-1.29208][-0.570563,-0.81207,-0.122475][0.158257,0.811764,0][0.177633,0.80717,-1.4409][-0.0453384,-0.604805,-0.795082][0.116166,0.846189,0][0.250894,0.711799,-1.38142][0.00839223,-0.758995,-0.651042][0.160583,0.865435,0][-3.61187e-007,0.873094,-1.31708][0,-0.992724,-0.120414][0.110997,0.76449,0][-3.48603e-007,0.888992,-1.46102][0,-0.638133,-0.769926][0.067901,0.794118,0][0.177633,0.80717,-1.4409][-0.0453384,-0.604805,-0.795082][0.116166,0.846189,0][0.177633,0.80717,-1.4409][-0.0453384,-0.604805,-0.795082][0.116166,0.846189,0][0.163189,0.790618,-1.29208][-0.570563,-0.81207,-0.122475][0.158257,0.811764,0][-3.61187e-007,0.873094,-1.31708][0,-0.992724,-0.120414][0.110997,0.76449,0][0.120142,0.23698,-0.34437][0.267084,-0.845383,0.462594][0.858503,0.449154,0][0.208093,0.23698,-0.432321][0.462598,-0.845382,0.267081][0.815984,0.448889,0][0.384504,0.365692,-0.330469][0.610442,-0.709329,0.352438][0.802455,0.521508,0][0.384504,0.365692,-0.330469][0.610442,-0.709329,0.352438][0.802455,0.521508,0][0.221994,0.365691,-0.167958][0.35244,-0.709329,0.610441][0.869923,0.523425,0][0.120142,0.23698,-0.34437][0.267084,-0.845383,0.462594][0.858503,0.449154,0][-4.49039e-007,0.236979,-0.312178][1.17432e-006,-0.845383,0.534161][0.896951,0.435719,0][0.120142,0.23698,-0.34437][0.267084,-0.845383,0.462594][0.858503,0.449154,0][0.221994,0.365691,-0.167958][0.35244,-0.709329,0.610441][0.869923,0.523425,0][0.221994,0.365691,-0.167958][0.35244,-0.709329,0.610441][0.869923,0.523425,0][-4.66847e-007,0.365691,-0.108475][0,-0.709328,0.704878][0.938645,0.502704,0][-4.49039e-007,0.236979,-0.312178][1.17432e-006,-0.845383,0.534161][0.896951,0.435719,0][0.120142,0.236981,-0.760555][0.26708,-0.845383,-0.462597][0.714303,0.375241,0][-4.07026e-007,0.236979,-0.792747][6.22666e-006,-0.845383,-0.534161][0.702425,0.334379,0][-3.89218e-007,0.365691,-0.996451][1.93785e-006,-0.709329,-0.704878][0.623322,0.338746,0][-3.89218e-007,0.365691,-0.996451][1.93785e-006,-0.709329,-0.704878][0.623322,0.338746,0][0.221994,0.365692,-0.936967][0.352439,-0.70933,-0.610441][0.646018,0.407253,0][0.120142,0.236981,-0.760555][0.26708,-0.845383,-0.462597][0.714303,0.375241,0][0.208093,0.23698,-0.672605][0.462596,-0.845384,-0.26708][0.73983,0.410089,0][0.120142,0.236981,-0.760555][0.26708,-0.845383,-0.462597][0.714303,0.375241,0][0.221994,0.365692,-0.936967][0.352439,-0.70933,-0.610441][0.646018,0.407253,0][0.221994,0.365692,-0.936967][0.352439,-0.70933,-0.610441][0.646018,0.407253,0][0.384504,0.365691,-0.774457][0.610441,-0.70933,-0.352439][0.686536,0.461374,0][0.208093,0.23698,-0.672605][0.462596,-0.845384,-0.26708][0.73983,0.410089,0][0.240284,0.23698,-0.552463][0.53416,-0.845383,-1.19323e-006][0.774996,0.435392,0][0.208093,0.23698,-0.672605][0.462596,-0.845384,-0.26708][0.73983,0.410089,0][0.384504,0.365691,-0.774457][0.610441,-0.70933,-0.352439][0.686536,0.461374,0][0.384504,0.365691,-0.774457][0.610441,-0.70933,-0.352439][0.686536,0.461374,0][0.443987,0.365691,-0.552463][0.704877,-0.70933,6.9964e-007][0.740018,0.500101,0][0.240284,0.23698,-0.552463][0.53416,-0.845383,-1.19323e-006][0.774996,0.435392,0][0.208093,0.23698,-0.432321][0.462598,-0.845382,0.267081][0.815984,0.448889,0][0.240284,0.23698,-0.552463][0.53416,-0.845383,-1.19323e-006][0.774996,0.435392,0][0.443987,0.365691,-0.552463][0.704877,-0.70933,6.9964e-007][0.740018,0.500101,0][0.443987,0.365691,-0.552463][0.704877,-0.70933,6.9964e-007][0.740018,0.500101,0][0.384504,0.365692,-0.330469][0.610442,-0.709329,0.352438][0.802455,0.521508,0][0.208093,0.23698,-0.432321][0.462598,-0.845382,0.267081][0.815984,0.448889,0][0.221994,0.365691,-0.167958][0.35244,-0.709329,0.610441][0.869923,0.523425,0][0.384504,0.365692,-0.330469][0.610442,-0.709329,0.352438][0.802455,0.521508,0][0.502379,0.558321,-0.262414][0.798185,-0.387986,0.460833][0.789318,0.588049,0][0.502379,0.558321,-0.262414][0.798185,-0.387986,0.460833][0.789318,0.588049,0][0.290049,0.558321,-0.050084][0.460834,-0.387986,0.798185][0.876327,0.593507,0][0.221994,0.365691,-0.167958][0.35244,-0.709329,0.610441][0.869923,0.523425,0][-4.66847e-007,0.365691,-0.108475][0,-0.709328,0.704878][0.938645,0.502704,0][0.221994,0.365691,-0.167958][0.35244,-0.709329,0.610441][0.869923,0.523425,0][0.290049,0.558321,-0.050084][0.460834,-0.387986,0.798185][0.876327,0.593507,0][0.290049,0.558321,-0.050084][0.460834,-0.387986,0.798185][0.876327,0.593507,0][-4.78746e-007,0.55832,0.027635][0,-0.387987,0.921665][0.968062,0.574789,0][-4.66847e-007,0.365691,-0.108475][0,-0.709328,0.704878][0.938645,0.502704,0][0.221994,0.365692,-0.936967][0.352439,-0.70933,-0.610441][0.646018,0.407253,0][-3.89218e-007,0.365691,-0.996451][1.93785e-006,-0.709329,-0.704878][0.623322,0.338746,0][-3.77318e-007,0.558321,-1.13256][2.31388e-007,-0.387986,-0.921665][0.548019,0.355783,0][-3.77318e-007,0.558321,-1.13256][2.31388e-007,-0.387986,-0.921665][0.548019,0.355783,0][0.290049,0.558321,-1.05484][0.460833,-0.387986,-0.798185][0.585313,0.441949,0][0.221994,0.365692,-0.936967][0.352439,-0.70933,-0.610441][0.646018,0.407253,0][0.384504,0.365691,-0.774457][0.610441,-0.70933,-0.352439][0.686536,0.461374,0][0.221994,0.365692,-0.936967][0.352439,-0.70933,-0.610441][0.646018,0.407253,0][0.290049,0.558321,-1.05484][0.460833,-0.387986,-0.798185][0.585313,0.441949,0][0.290049,0.558321,-1.05484][0.460833,-0.387986,-0.798185][0.585313,0.441949,0][0.502379,0.558321,-0.842512][0.798185,-0.387986,-0.460833][0.639667,0.510144,0][0.384504,0.365691,-0.774457][0.610441,-0.70933,-0.352439][0.686536,0.461374,0][0.443987,0.365691,-0.552463][0.704877,-0.70933,6.9964e-007][0.740018,0.500101,0][0.384504,0.365691,-0.774457][0.610441,-0.70933,-0.352439][0.686536,0.461374,0][0.502379,0.558321,-0.842512][0.798185,-0.387986,-0.460833][0.639667,0.510144,0][0.502379,0.558321,-0.842512][0.798185,-0.387986,-0.460833][0.639667,0.510144,0][0.580098,0.558321,-0.552463][0.921665,-0.387987,-1.28549e-007][0.709002,0.559642,0][0.443987,0.365691,-0.552463][0.704877,-0.70933,6.9964e-007][0.740018,0.500101,0][0.384504,0.365692,-0.330469][0.610442,-0.709329,0.352438][0.802455,0.521508,0][0.443987,0.365691,-0.552463][0.704877,-0.70933,6.9964e-007][0.740018,0.500101,0][0.580098,0.558321,-0.552463][0.921665,-0.387987,-1.28549e-007][0.709002,0.559642,0][0.580098,0.558321,-0.552463][0.921665,-0.387987,-1.28549e-007][0.709002,0.559642,0][0.502379,0.558321,-0.262414][0.798185,-0.387986,0.460833][0.789318,0.588049,0][0.384504,0.365692,-0.330469][0.610442,-0.709329,0.352438][0.802455,0.521508,0][0.290049,0.558321,-0.050084][0.460834,-0.387986,0.798185][0.876327,0.593507,0][0.502379,0.558321,-0.262414][0.798185,-0.387986,0.460833][0.789318,0.588049,0][0.543771,0.785544,-0.238516][0.866025,3.24177e-007,0.500001][0.774857,0.656789,0][0.543771,0.785544,-0.238516][0.866025,3.24177e-007,0.500001][0.774857,0.656789,0][0.313947,0.785544,-0.00869094][0.500001,0,0.866025][0.879397,0.665468,0][0.290049,0.558321,-0.050084][0.460834,-0.387986,0.798185][0.876327,0.593507,0][-4.78746e-007,0.55832,0.027635][0,-0.387987,0.921665][0.968062,0.574789,0][0.290049,0.558321,-0.050084][0.460834,-0.387986,0.798185][0.876327,0.593507,0][0.313947,0.785544,-0.00869094][0.500001,0,0.866025][0.879397,0.665468,0][0.313947,0.785544,-0.00869094][0.500001,0,0.866025][0.879397,0.665468,0][-4.82924e-007,0.785544,0.075431][-1.63386e-007,1.08146e-006,1][0.98482,0.649459,0][-4.78746e-007,0.55832,0.027635][0,-0.387987,0.921665][0.968062,0.574789,0][0.290049,0.558321,-1.05484][0.460833,-0.387986,-0.798185][0.585313,0.441949,0][-3.77318e-007,0.558321,-1.13256][2.31388e-007,-0.387986,-0.921665][0.548019,0.355783,0][-3.7314e-007,0.785544,-1.18036][0,8.29896e-007,-1][0.477138,0.384967,0][-3.7314e-007,0.785544,-1.18036][0,8.29896e-007,-1][0.477138,0.384967,0][0.313947,0.785544,-1.09623][0.500001,6.17234e-007,-0.866025][0.524748,0.481021,0][0.290049,0.558321,-1.05484][0.460833,-0.387986,-0.798185][0.585313,0.441949,0][0.502379,0.558321,-0.842512][0.798185,-0.387986,-0.460833][0.639667,0.510144,0][0.290049,0.558321,-1.05484][0.460833,-0.387986,-0.798185][0.585313,0.441949,0][0.313947,0.785544,-1.09623][0.500001,6.17234e-007,-0.866025][0.524748,0.481021,0][0.313947,0.785544,-1.09623][0.500001,6.17234e-007,-0.866025][0.524748,0.481021,0][0.543771,0.785544,-0.86641][0.866025,2.69716e-007,-0.500001][0.591998,0.561742,0][0.502379,0.558321,-0.842512][0.798185,-0.387986,-0.460833][0.639667,0.510144,0][0.580098,0.558321,-0.552463][0.921665,-0.387987,-1.28549e-007][0.709002,0.559642,0][0.502379,0.558321,-0.842512][0.798185,-0.387986,-0.460833][0.639667,0.510144,0][0.543771,0.785544,-0.86641][0.866025,2.69716e-007,-0.500001][0.591998,0.561742,0][0.543771,0.785544,-0.86641][0.866025,2.69716e-007,-0.500001][0.591998,0.561742,0][0.627894,0.785544,-0.552463][1,4.04574e-007,1.60792e-007][0.677025,0.621617,0][0.580098,0.558321,-0.552463][0.921665,-0.387987,-1.28549e-007][0.709002,0.559642,0][0.502379,0.558321,-0.262414][0.798185,-0.387986,0.460833][0.789318,0.588049,0][0.580098,0.558321,-0.552463][0.921665,-0.387987,-1.28549e-007][0.709002,0.559642,0][0.627894,0.785544,-0.552463][1,4.04574e-007,1.60792e-007][0.677025,0.621617,0][0.627894,0.785544,-0.552463][1,4.04574e-007,1.60792e-007][0.677025,0.621617,0][0.543771,0.785544,-0.238516][0.866025,3.24177e-007,0.500001][0.774857,0.656789,0][0.502379,0.558321,-0.262414][0.798185,-0.387986,0.460833][0.789318,0.588049,0][0.313947,0.785544,-0.00869094][0.500001,0,0.866025][0.527316,0.512289,0][0.543771,0.785544,-0.238516][0.866025,3.24177e-007,0.500001][0.451077,0.425801,0][0.502379,1.01277,-0.262414][0.798186,0.387984,0.460833][0.400365,0.483857,0][0.502379,1.01277,-0.262414][0.798186,0.387984,0.460833][0.400365,0.483857,0][0.290049,1.01277,-0.0500839][0.460834,0.387985,0.798185][0.462074,0.557001,0][0.313947,0.785544,-0.00869094][0.500001,0,0.866025][0.527316,0.512289,0][-4.82924e-007,0.785544,0.075431][-1.63386e-007,1.08146e-006,1][0.582479,0.616197,0][0.313947,0.785544,-0.00869094][0.500001,0,0.866025][0.527316,0.512289,0][0.290049,1.01277,-0.0500839][0.460834,0.387985,0.798185][0.462074,0.557001,0][0.290049,1.01277,-0.0500839][0.460834,0.387985,0.798185][0.462074,0.557001,0][-4.78746e-007,1.01277,0.027635][-4.57633e-007,0.387984,0.921666][0.50562,0.650379,0][-4.82924e-007,0.785544,0.075431][-1.63386e-007,1.08146e-006,1][0.582479,0.616197,0][0.313947,0.785544,-1.09623][0.500001,6.17234e-007,-0.866025][0.132645,0.320807,0][-3.7314e-007,0.785544,-1.18036][0,8.29896e-007,-1][0.01749,0.341591,0][-3.77318e-007,1.01277,-1.13256][0,0.387984,-0.921666][0.038156,0.422989,0][-3.77318e-007,1.01277,-1.13256][0,0.387984,-0.921666][0.038156,0.422989,0][0.290049,1.01277,-1.05484][0.460834,0.387984,-0.798186][0.138213,0.399651,0][0.313947,0.785544,-1.09623][0.500001,6.17234e-007,-0.866025][0.132645,0.320807,0][0.543771,0.785544,-0.86641][0.866025,2.69716e-007,-0.500001][0.247585,0.327131,0][0.313947,0.785544,-1.09623][0.500001,6.17234e-007,-0.866025][0.132645,0.320807,0][0.290049,1.01277,-1.05484][0.460834,0.387984,-0.798186][0.138213,0.399651,0][0.290049,1.01277,-1.05484][0.460834,0.387984,-0.798186][0.138213,0.399651,0][0.502379,1.01277,-0.842512][0.798186,0.387984,-0.460834][0.233824,0.402977,0][0.543771,0.785544,-0.86641][0.866025,2.69716e-007,-0.500001][0.247585,0.327131,0][0.627894,0.785544,-0.552463][1,4.04574e-007,1.60792e-007][0.355976,0.362721,0][0.543771,0.785544,-0.86641][0.866025,2.69716e-007,-0.500001][0.247585,0.327131,0][0.502379,1.01277,-0.842512][0.798186,0.387984,-0.460834][0.233824,0.402977,0][0.502379,1.01277,-0.842512][0.798186,0.387984,-0.460834][0.233824,0.402977,0][0.580098,1.01277,-0.552463][0.921666,0.387985,4.67918e-007][0.322795,0.431682,0][0.627894,0.785544,-0.552463][1,4.04574e-007,1.60792e-007][0.355976,0.362721,0][0.543771,0.785544,-0.238516][0.866025,3.24177e-007,0.500001][0.451077,0.425801,0][0.627894,0.785544,-0.552463][1,4.04574e-007,1.60792e-007][0.355976,0.362721,0][0.580098,1.01277,-0.552463][0.921666,0.387985,4.67918e-007][0.322795,0.431682,0][0.580098,1.01277,-0.552463][0.921666,0.387985,4.67918e-007][0.322795,0.431682,0][0.502379,1.01277,-0.262414][0.798186,0.387984,0.460833][0.400365,0.483857,0][0.543771,0.785544,-0.238516][0.866025,3.24177e-007,0.500001][0.451077,0.425801,0][0.290049,1.01277,-0.0500839][0.460834,0.387985,0.798185][0.462074,0.557001,0][0.502379,1.01277,-0.262414][0.798186,0.387984,0.460833][0.400365,0.483857,0][0.384504,1.2054,-0.330469][0.610443,0.709327,0.35244][0.350444,0.53879,0][0.384504,1.2054,-0.330469][0.610443,0.709327,0.35244][0.350444,0.53879,0][0.221994,1.2054,-0.167958][0.35244,0.709328,0.610442][0.396546,0.596918,0][0.290049,1.01277,-0.0500839][0.460834,0.387985,0.798185][0.462074,0.557001,0][-4.78746e-007,1.01277,0.027635][-4.57633e-007,0.387984,0.921666][0.50562,0.650379,0][0.290049,1.01277,-0.0500839][0.460834,0.387985,0.798185][0.462074,0.557001,0][0.221994,1.2054,-0.167958][0.35244,0.709328,0.610442][0.396546,0.596918,0][0.221994,1.2054,-0.167958][0.35244,0.709328,0.610442][0.396546,0.596918,0][-4.66847e-007,1.2054,-0.108475][3.07037e-007,0.709328,0.704879][0.423537,0.671373,0][-4.78746e-007,1.01277,0.027635][-4.57633e-007,0.387984,0.921666][0.50562,0.650379,0][0.290049,1.01277,-1.05484][0.460834,0.387984,-0.798186][0.138213,0.399651,0][-3.77318e-007,1.01277,-1.13256][0,0.387984,-0.921666][0.038156,0.422989,0][-3.89218e-007,1.2054,-0.99645][0,0.709329,-0.704877][0.07263,0.501165,0][-3.89218e-007,1.2054,-0.99645][0,0.709329,-0.704877][0.07263,0.501165,0][0.221994,1.2054,-0.936967][0.35244,0.709328,-0.610442][0.147381,0.476332,0][0.290049,1.01277,-1.05484][0.460834,0.387984,-0.798186][0.138213,0.399651,0][0.502379,1.01277,-0.842512][0.798186,0.387984,-0.460834][0.233824,0.402977,0][0.290049,1.01277,-1.05484][0.460834,0.387984,-0.798186][0.138213,0.399651,0][0.221994,1.2054,-0.936967][0.35244,0.709328,-0.610442][0.147381,0.476332,0][0.221994,1.2054,-0.936967][0.35244,0.709328,-0.610442][0.147381,0.476332,0][0.384504,1.2054,-0.774456][0.610443,0.709328,-0.35244][0.221448,0.476373,0][0.502379,1.01277,-0.842512][0.798186,0.387984,-0.460834][0.233824,0.402977,0][0.580098,1.01277,-0.552463][0.921666,0.387985,4.67918e-007][0.322795,0.431682,0][0.502379,1.01277,-0.842512][0.798186,0.387984,-0.460834][0.233824,0.402977,0][0.384504,1.2054,-0.774456][0.610443,0.709328,-0.35244][0.221448,0.476373,0][0.384504,1.2054,-0.774456][0.610443,0.709328,-0.35244][0.221448,0.476373,0][0.443987,1.2054,-0.552463][0.704879,0.709328,1.24073e-006][0.290593,0.497945,0][0.580098,1.01277,-0.552463][0.921666,0.387985,4.67918e-007][0.322795,0.431682,0][0.502379,1.01277,-0.262414][0.798186,0.387984,0.460833][0.400365,0.483857,0][0.580098,1.01277,-0.552463][0.921666,0.387985,4.67918e-007][0.322795,0.431682,0][0.443987,1.2054,-0.552463][0.704879,0.709328,1.24073e-006][0.290593,0.497945,0][0.443987,1.2054,-0.552463][0.704879,0.709328,1.24073e-006][0.290593,0.497945,0][0.384504,1.2054,-0.330469][0.610443,0.709327,0.35244][0.350444,0.53879,0][0.502379,1.01277,-0.262414][0.798186,0.387984,0.460833][0.400365,0.483857,0][0.221994,1.2054,-0.167958][0.35244,0.709328,0.610442][0.396546,0.596918,0][0.384504,1.2054,-0.330469][0.610443,0.709327,0.35244][0.350444,0.53879,0][0.208093,1.33411,-0.432321][0.339859,0.919778,0.196222][0.293552,0.596678,0][0.208093,1.33411,-0.432321][0.339859,0.919778,0.196222][0.293552,0.596678,0][0.120142,1.33411,-0.34437][0.196218,0.919778,0.339862][0.322621,0.634123,0][0.221994,1.2054,-0.167958][0.35244,0.709328,0.610442][0.396546,0.596918,0][-4.66847e-007,1.2054,-0.108475][3.07037e-007,0.709328,0.704879][0.423537,0.671373,0][0.221994,1.2054,-0.167958][0.35244,0.709328,0.610442][0.396546,0.596918,0][0.120142,1.33411,-0.34437][0.196218,0.919778,0.339862][0.322621,0.634123,0][0.120142,1.33411,-0.34437][0.196218,0.919778,0.339862][0.322621,0.634123,0][-4.49039e-007,1.33411,-0.312178][3.51674e-006,0.919779,0.392438][0.3369,0.678582,0][-4.66847e-007,1.2054,-0.108475][3.07037e-007,0.709328,0.704879][0.423537,0.671373,0][0.221994,1.2054,-0.936967][0.35244,0.709328,-0.610442][0.147381,0.476332,0][-3.89218e-007,1.2054,-0.99645][0,0.709329,-0.704877][0.07263,0.501165,0][-4.07026e-007,1.33411,-0.792747][9.65811e-007,0.919779,-0.392437][0.120414,0.573369,0][-4.07026e-007,1.33411,-0.792747][9.65811e-007,0.919779,-0.392437][0.120414,0.573369,0][0.120142,1.33411,-0.760554][0.196217,0.919779,-0.339862][0.162179,0.557456,0][0.221994,1.2054,-0.936967][0.35244,0.709328,-0.610442][0.147381,0.476332,0][0.384504,1.2054,-0.774456][0.610443,0.709328,-0.35244][0.221448,0.476373,0][0.221994,1.2054,-0.936967][0.35244,0.709328,-0.610442][0.147381,0.476332,0][0.120142,1.33411,-0.760554][0.196217,0.919779,-0.339862][0.162179,0.557456,0][0.120142,1.33411,-0.760554][0.196217,0.919779,-0.339862][0.162179,0.557456,0][0.208093,1.33411,-0.672605][0.339859,0.919779,-0.196223][0.208828,0.556445,0][0.384504,1.2054,-0.774456][0.610443,0.709328,-0.35244][0.221448,0.476373,0][0.443987,1.2054,-0.552463][0.704879,0.709328,1.24073e-006][0.290593,0.497945,0][0.384504,1.2054,-0.774456][0.610443,0.709328,-0.35244][0.221448,0.476373,0][0.208093,1.33411,-0.672605][0.339859,0.919779,-0.196223][0.208828,0.556445,0][0.208093,1.33411,-0.672605][0.339859,0.919779,-0.196223][0.208828,0.556445,0][0.240284,1.33411,-0.552463][0.392436,0.919779,3.70719e-006][0.254203,0.569997,0][0.443987,1.2054,-0.552463][0.704879,0.709328,1.24073e-006][0.290593,0.497945,0][0.384504,1.2054,-0.330469][0.610443,0.709327,0.35244][0.350444,0.53879,0][0.443987,1.2054,-0.552463][0.704879,0.709328,1.24073e-006][0.290593,0.497945,0][0.240284,1.33411,-0.552463][0.392436,0.919779,3.70719e-006][0.254203,0.569997,0][0.240284,1.33411,-0.552463][0.392436,0.919779,3.70719e-006][0.254203,0.569997,0][0.208093,1.33411,-0.432321][0.339859,0.919778,0.196222][0.293552,0.596678,0][0.384504,1.2054,-0.330469][0.610443,0.709327,0.35244][0.350444,0.53879,0][0.208093,1.33411,-0.432321][0.339859,0.919778,0.196222][0.293552,0.596678,0][-4.28032e-007,1.37931,-0.552463][-8.17784e-007,1,4.70994e-007][0.2369,0.670661,0][0.120142,1.33411,-0.34437][0.196218,0.919778,0.339862][0.322621,0.634123,0][0.120142,1.33411,-0.34437][0.196218,0.919778,0.339862][0.322621,0.634123,0][-4.28032e-007,1.37931,-0.552463][-8.17784e-007,1,4.70994e-007][0.245239,0.683499,0][-4.49039e-007,1.33411,-0.312178][3.51674e-006,0.919779,0.392438][0.3369,0.678582,0][-4.07026e-007,1.33411,-0.792747][9.65811e-007,0.919779,-0.392437][0.120414,0.573369,0][-4.28032e-007,1.37931,-0.552463][-8.17784e-007,1,4.70994e-007][0.17155,0.64481,0][0.120142,1.33411,-0.760554][0.196217,0.919779,-0.339862][0.162179,0.557456,0][0.120142,1.33411,-0.760554][0.196217,0.919779,-0.339862][0.162179,0.557456,0][-4.28032e-007,1.37931,-0.552463][-8.17784e-007,1,4.70994e-007][0.187424,0.645633,0][0.208093,1.33411,-0.672605][0.339859,0.919779,-0.196223][0.208828,0.556445,0][0.208093,1.33411,-0.672605][0.339859,0.919779,-0.196223][0.208828,0.556445,0][-4.28032e-007,1.37931,-0.552463][-8.17784e-007,1,4.70994e-007][0.205753,0.649482,0][0.240284,1.33411,-0.552463][0.392436,0.919779,3.70719e-006][0.254203,0.569997,0][0.240284,1.33411,-0.552463][0.392436,0.919779,3.70719e-006][0.254203,0.569997,0][-4.28032e-007,1.37931,-0.552463][-8.17784e-007,1,4.70994e-007][0.223155,0.658145,0][0.208093,1.33411,-0.432321][0.339859,0.919778,0.196222][0.293552,0.596678,0][0.499972,-0.482685,-1.11404][0.457122,-0.514994,-0.725135][0.158647,0.117501,0][0.407561,-0.691277,-0.901663][0.243813,-0.90386,-0.351557][0.18279,0.035281,0][-3.89642e-007,-0.691277,-0.991598][0,-0.917044,-0.398786][0.059946,0,0][-3.89642e-007,-0.691277,-0.991598][0,-0.917044,-0.398786][0.059946,0,0][-3.69293e-007,-0.482685,-1.22436][0,-0.527177,-0.849755][0.019926,0.085008,0][0.499972,-0.482685,-1.11404][0.457122,-0.514994,-0.725135][0.158647,0.117501,0][0.499972,-0.482685,-1.11404][0.457122,-0.514994,-0.725135][0.158647,0.117501,0][-3.69293e-007,-0.482685,-1.22436][0,-0.527177,-0.849755][0.019926,0.085008,0][-3.62554e-007,-0.240388,-1.30145][0,-1.93712e-006,-1][0,0.160878,0][-3.62554e-007,-0.240388,-1.30145][0,-1.93712e-006,-1][0,0.160878,0][0.530576,-0.240387,-1.18437][0.523633,-5.27378e-007,-0.851944][0.148749,0.179852,0][0.499972,-0.482685,-1.11404][0.457122,-0.514994,-0.725135][0.158647,0.117501,0][0.530576,-0.240387,-1.18437][0.523633,-5.27378e-007,-0.851944][0.148749,0.179852,0][-3.62554e-007,-0.240388,-1.30145][0,-1.93712e-006,-1][0,0.160878,0][-3.69293e-007,0.00191212,-1.22436][-2.52248e-007,0.443391,-0.896328][0.00031,0.239113,0][-3.69293e-007,0.00191212,-1.22436][-2.52248e-007,0.443391,-0.896328][0.00031,0.239113,0][0.499972,0.00191212,-1.11404][0.483344,0.447621,-0.752339][0.147258,0.244852,0][0.530576,-0.240387,-1.18437][0.523633,-5.27378e-007,-0.851944][0.148749,0.179852,0][0.429374,0.164783,-1.01057][0.351187,0.753609,-0.555645][0.143496,0.302722,0][0.499972,0.00191212,-1.11404][0.483344,0.447621,-0.752339][0.147258,0.244852,0][-3.69293e-007,0.00191212,-1.22436][-2.52248e-007,0.443391,-0.896328][0.00031,0.239113,0][-3.69293e-007,0.00191212,-1.22436][-2.52248e-007,0.443391,-0.896328][0.00031,0.239113,0][-3.79668e-007,0.164783,-1.10569][-7.2928e-007,0.742707,-0.669617][0.00748,0.301032,0][0.429374,0.164783,-1.01057][0.351187,0.753609,-0.555645][0.143496,0.302722,0][0.429374,0.164783,-1.01057][0.351187,0.753609,-0.555645][0.964636,0.912688,0][-3.79668e-007,0.164783,-1.10569][-7.2928e-007,0.742707,-0.669617][0.988246,0.830177,0][-4.02028e-007,0.297866,-0.849921][-2.01354e-007,0.938436,-0.345452][0.932082,0.825226,0][-4.02028e-007,0.297866,-0.849921][-2.01354e-007,0.938436,-0.345452][0.932082,0.825226,0][0.328856,0.284886,-0.760842][0.216858,0.937568,-0.271918][0.912807,0.888485,0][0.429374,0.164783,-1.01057][0.351187,0.753609,-0.555645][0.964636,0.912688,0][0.323677,0.371454,0.347832][0.178697,0.983319,0.0339288][0.698022,0.886122,0][0.347371,0.353996,-0.064479][0.186734,0.981368,-0.0452483][0.7776,0.890066,0][-4.70748e-007,0.402267,-0.063847][-3.13908e-007,0.999131,-0.0416883][0.776792,0.822001,0][-4.70748e-007,0.402267,-0.063847][-3.13908e-007,0.999131,-0.0416883][0.776792,0.822001,0][-5.05368e-007,0.417315,0.332154][-1.0719e-006,0.999961,0.00885577][0.699519,0.822756,0][0.323677,0.371454,0.347832][0.178697,0.983319,0.0339288][0.698022,0.886122,0][-5.05368e-007,0.417315,0.332154][-1.0719e-006,0.999961,0.00885577][0.699519,0.822756,0][-5.49898e-007,0.409601,0.841523][5.41083e-007,0.999628,0.027274][0.600438,0.825981,0][0.379893,0.32655,0.680231][0.352555,0.909335,0.220939][0.634145,0.900326,0][0.379893,0.32655,0.680231][0.352555,0.909335,0.220939][0.634145,0.900326,0][0.323677,0.371454,0.347832][0.178697,0.983319,0.0339288][0.698022,0.886122,0][-5.05368e-007,0.417315,0.332154][-1.0719e-006,0.999961,0.00885577][0.699519,0.822756,0][-5.83316e-007,0.453111,1.22377][2.81211e-007,0.802225,0.597022][0.984306,0.373164,0][0.553426,0.00191212,1.05671][0.647439,0.403073,0.646803][0.812325,0.242761,0][0.436108,0.205815,0.915824][0.579041,0.748421,0.323383][0.807563,0.322664,0][0.553426,0.00191212,1.05671][0.647439,0.403073,0.646803][0.812325,0.242761,0][-5.89479e-007,0.00191212,1.29428][0,0.140633,0.990062][0.990064,0.233902,0][-5.92209e-007,-0.240388,1.3255][0,-0.0453881,0.998969][0.989042,0.1566,0][-5.92209e-007,-0.240388,1.3255][0,-0.0453881,0.998969][0.989042,0.1566,0][0.587302,-0.240387,1.11925][0.63619,0.00210496,0.771529][0.812186,0.17617,0][0.553426,0.00191212,1.05671][0.647439,0.403073,0.646803][0.812325,0.242761,0][0.587302,-0.240387,1.11925][0.63619,0.00210496,0.771529][0.812186,0.17617,0][-5.92209e-007,-0.240388,1.3255][0,-0.0453881,0.998969][0.989042,0.1566,0][-5.86455e-007,-0.482687,1.25968][-4.93941e-007,-0.472318,0.881428][0.969027,0.079254,0][-5.86455e-007,-0.482687,1.25968][-4.93941e-007,-0.472318,0.881428][0.969027,0.079254,0][0.553426,-0.482687,1.05671][0.573169,-0.482792,0.66211][0.802336,0.111517,0][0.587302,-0.240387,1.11925][0.63619,0.00210496,0.771529][0.812186,0.17617,0][0.553426,-0.482687,1.05671][0.573169,-0.482792,0.66211][0.802336,0.111517,0][-5.86455e-007,-0.482687,1.25968][-4.93941e-007,-0.472318,0.881428][0.969027,0.079254,0][-5.69131e-007,-0.691277,1.06151][-6.4648e-007,-0.886631,0.462478][0.928433,0,0][-5.69131e-007,-0.691277,1.06151][-6.4648e-007,-0.886631,0.462478][0.928433,0,0][0.451134,-0.691277,0.867855][0.321446,-0.892662,0.315953][0.779464,0.029921,0][0.553426,-0.482687,1.05671][0.573169,-0.482792,0.66211][0.802336,0.111517,0][0.451134,-0.691277,0.867855][0.321446,-0.892662,0.315953][0.626479,0.72465,0][-5.69131e-007,-0.691277,1.06151][-6.4648e-007,-0.886631,0.462478][0.588979,0.812006,0][-5.10595e-007,-0.691277,0.391946][0,-1,0][0.718633,0.812007,0][-5.10595e-007,-0.691277,0.391946][0,-1,0][0.718633,0.812007,0][0.679463,-0.691277,0.391946][0.426693,-0.897443,0.111936][0.718633,0.680437,0][0.451134,-0.691277,0.867855][0.321446,-0.892662,0.315953][0.626479,0.72465,0][0.679463,-0.691277,0.391946][0.426693,-0.897443,0.111936][0.718633,0.680437,0][-5.10595e-007,-0.691277,0.391946][0,-1,0][0.718633,0.812007,0][-4.70657e-007,-0.691277,-0.064895][0,-1,0][0.807094,0.812007,0][-4.70657e-007,-0.691277,-0.064895][0,-1,0][0.807094,0.812007,0][0.746653,-0.691277,-0.064895][0.46184,-0.886963,-0.000720402][0.807094,0.667427,0][0.679463,-0.691277,0.391946][0.426693,-0.897443,0.111936][0.718633,0.680437,0][0.407561,-0.691277,-0.901663][0.243813,-0.90386,-0.351557][0.969123,0.733088,0][0.678594,-0.691277,-0.516304][0.420977,-0.8964,-0.138725][0.894503,0.680606,0][-4.31193e-007,-0.691277,-0.516304][0,-1,0][0.894503,0.812007,0][-4.31193e-007,-0.691277,-0.516304][0,-1,0][0.894503,0.812007,0][-3.89642e-007,-0.691277,-0.991598][0,-0.917044,-0.398786][0.986538,0.812007,0][0.407561,-0.691277,-0.901663][0.243813,-0.90386,-0.351557][0.969123,0.733088,0][0.451134,-0.691277,0.867855][0.321446,-0.892662,0.315953][0.779464,0.029921,0][0.679463,-0.691277,0.391946][0.426693,-0.897443,0.111936][0.614797,0.033746,0][0.833526,-0.482685,0.539991][0.842796,-0.464227,0.272374][0.642439,0.116156,0][0.833526,-0.482685,0.539991][0.842796,-0.464227,0.272374][0.642439,0.116156,0][0.553426,-0.482687,1.05671][0.573169,-0.482792,0.66211][0.802336,0.111517,0][0.451134,-0.691277,0.867855][0.321446,-0.892662,0.315953][0.779464,0.029921,0][0.679463,-0.691277,0.391946][0.426693,-0.897443,0.111936][0.614797,0.033746,0][0.746653,-0.691277,-0.064895][0.46184,-0.886963,-0.000720402][0.468852,0.038255,0][0.915951,-0.482685,-0.0658509][0.900844,-0.434144,-0.00027083][0.469108,0.117792,0][0.915951,-0.482685,-0.0658509][0.900844,-0.434144,-0.00027083][0.469108,0.117792,0][0.833526,-0.482685,0.539991][0.842796,-0.464227,0.272374][0.642439,0.116156,0][0.679463,-0.691277,0.391946][0.426693,-0.897443,0.111936][0.614797,0.033746,0][0.83246,-0.482685,-0.682342][0.809159,-0.482456,-0.335407][0.298707,0.123146,0][0.678594,-0.691277,-0.516304][0.420977,-0.8964,-0.138725][0.325927,0.041277,0][0.407561,-0.691277,-0.901663][0.243813,-0.90386,-0.351557][0.18279,0.035281,0][0.407561,-0.691277,-0.901663][0.243813,-0.90386,-0.351557][0.18279,0.035281,0][0.499972,-0.482685,-1.11404][0.457122,-0.514994,-0.725135][0.158647,0.117501,0][0.83246,-0.482685,-0.682342][0.809159,-0.482456,-0.335407][0.298707,0.123146,0][0.553426,-0.482687,1.05671][0.573169,-0.482792,0.66211][0.802336,0.111517,0][0.833526,-0.482685,0.539991][0.842796,-0.464227,0.272374][0.642439,0.116156,0][0.884547,-0.240387,0.589019][0.945986,-3.18476e-007,0.324208][0.652545,0.184563,0][0.884547,-0.240387,0.589019][0.945986,-3.18476e-007,0.324208][0.652545,0.184563,0][0.587302,-0.240387,1.11925][0.63619,0.00210496,0.771529][0.812186,0.17617,0][0.553426,-0.482687,1.05671][0.573169,-0.482792,0.66211][0.802336,0.111517,0][0.833526,-0.482685,0.539991][0.842796,-0.464227,0.272374][0.642439,0.116156,0][0.915951,-0.482685,-0.0658509][0.900844,-0.434144,-0.00027083][0.469108,0.117792,0][0.972017,-0.240387,-0.0661679][1,-4.84426e-007,0.000292138][0.469923,0.187939,0][0.972017,-0.240387,-0.0661679][1,-4.84426e-007,0.000292138][0.469923,0.187939,0][0.884547,-0.240387,0.589019][0.945986,-3.18476e-007,0.324208][0.652545,0.184563,0][0.833526,-0.482685,0.539991][0.842796,-0.464227,0.272374][0.642439,0.116156,0][0.883416,-0.240387,-0.737329][0.915259,-9.07026e-007,-0.402865][0.289458,0.187739,0][0.83246,-0.482685,-0.682342][0.809159,-0.482456,-0.335407][0.298707,0.123146,0][0.499972,-0.482685,-1.11404][0.457122,-0.514994,-0.725135][0.158647,0.117501,0][0.499972,-0.482685,-1.11404][0.457122,-0.514994,-0.725135][0.158647,0.117501,0][0.530576,-0.240387,-1.18437][0.523633,-5.27378e-007,-0.851944][0.148749,0.179852,0][0.883416,-0.240387,-0.737329][0.915259,-9.07026e-007,-0.402865][0.289458,0.187739,0][0.553426,0.00191212,1.05671][0.647439,0.403073,0.646803][0.812325,0.242761,0][0.587302,-0.240387,1.11925][0.63619,0.00210496,0.771529][0.812186,0.17617,0][0.884547,-0.240387,0.589019][0.945986,-3.18476e-007,0.324208][0.652545,0.184563,0][0.884547,-0.240387,0.589019][0.945986,-3.18476e-007,0.324208][0.652545,0.184563,0][0.833526,0.00191212,0.539991][0.860776,0.421298,0.285608][0.647,0.254393,0][0.553426,0.00191212,1.05671][0.647439,0.403073,0.646803][0.812325,0.242761,0][0.833526,0.00191212,0.539991][0.860776,0.421298,0.285608][0.647,0.254393,0][0.884547,-0.240387,0.589019][0.945986,-3.18476e-007,0.324208][0.652545,0.184563,0][0.972017,-0.240387,-0.0661679][1,-4.84426e-007,0.000292138][0.469923,0.187939,0][0.972017,-0.240387,-0.0661679][1,-4.84426e-007,0.000292138][0.469923,0.187939,0][0.915951,0.00191212,-0.0658509][0.916098,0.400947,-0.00228272][0.470082,0.258416,0][0.833526,0.00191212,0.539991][0.860776,0.421298,0.285608][0.647,0.254393,0][0.883416,-0.240387,-0.737329][0.915259,-9.07026e-007,-0.402865][0.289458,0.187739,0][0.530576,-0.240387,-1.18437][0.523633,-5.27378e-007,-0.851944][0.148749,0.179852,0][0.499972,0.00191212,-1.11404][0.483344,0.447621,-0.752339][0.147258,0.244852,0][0.499972,0.00191212,-1.11404][0.483344,0.447621,-0.752339][0.147258,0.244852,0][0.83246,0.00191307,-0.682342][0.833757,0.436037,-0.338705][0.294551,0.253712,0][0.883416,-0.240387,-0.737329][0.915259,-9.07026e-007,-0.402865][0.289458,0.187739,0][0.436108,0.205815,0.915824][0.579041,0.748421,0.323383][0.807563,0.322664,0][0.553426,0.00191212,1.05671][0.647439,0.403073,0.646803][0.812325,0.242761,0][0.833526,0.00191212,0.539991][0.860776,0.421298,0.285608][0.647,0.254393,0][0.833526,0.00191212,0.539991][0.860776,0.421298,0.285608][0.647,0.254393,0][0.718594,0.189738,0.460671][0.683474,0.695588,0.221405][0.638082,0.323364,0][0.436108,0.205815,0.915824][0.579041,0.748421,0.323383][0.807563,0.322664,0][0.718594,0.189738,0.460671][0.683474,0.695588,0.221405][0.638082,0.323364,0][0.833526,0.00191212,0.539991][0.860776,0.421298,0.285608][0.647,0.254393,0][0.915951,0.00191212,-0.0658509][0.916098,0.400947,-0.00228272][0.470082,0.258416,0][0.915951,0.00191212,-0.0658509][0.916098,0.400947,-0.00228272][0.470082,0.258416,0][0.789654,0.181943,-0.0655119][0.688883,0.724588,-0.0202995][0.469315,0.324285,0][0.718594,0.189738,0.460671][0.683474,0.695588,0.221405][0.638082,0.323364,0][0.83246,0.00191307,-0.682342][0.833757,0.436037,-0.338705][0.294551,0.253712,0][0.499972,0.00191212,-1.11404][0.483344,0.447621,-0.752339][0.147258,0.244852,0][0.429374,0.164783,-1.01057][0.351187,0.753609,-0.555645][0.143496,0.302722,0][0.429374,0.164783,-1.01057][0.351187,0.753609,-0.555645][0.143496,0.302722,0][0.717676,0.17459,-0.606862][0.610788,0.753623,-0.24288][0.29819,0.316682,0][0.83246,0.00191307,-0.682342][0.833757,0.436037,-0.338705][0.294551,0.253712,0][0.717676,0.17459,-0.606862][0.610788,0.753623,-0.24288][0.884865,0.967652,0][0.429374,0.164783,-1.01057][0.351187,0.753609,-0.555645][0.964636,0.912688,0][0.328856,0.284886,-0.760842][0.216858,0.937568,-0.271918][0.912807,0.888485,0][0.328856,0.284886,-0.760842][0.216858,0.937568,-0.271918][0.912807,0.888485,0][0.529325,0.279366,-0.529761][0.340625,0.926868,-0.157765][0.867963,0.926576,0][0.717676,0.17459,-0.606862][0.610788,0.753623,-0.24288][0.884865,0.967652,0][0.789654,0.181943,-0.0655119][0.688883,0.724588,-0.0202995][0.779396,0.982912,0][0.595327,0.295017,-0.0650419][0.380703,0.923505,-0.0469372][0.778306,0.939277,0][0.554201,0.316204,0.395136][0.413802,0.903735,0.109684][0.689958,0.931647,0][0.554201,0.316204,0.395136][0.413802,0.903735,0.109684][0.689958,0.931647,0][0.718594,0.189738,0.460671][0.683474,0.695588,0.221405][0.676461,0.971346,0][0.789654,0.181943,-0.0655119][0.688883,0.724588,-0.0202995][0.779396,0.982912,0][0.379893,0.32655,0.680231][0.352555,0.909335,0.220939][0.634145,0.900326,0][0.436108,0.205815,0.915824][0.579041,0.748421,0.323383][0.58549,0.919903,0][0.718594,0.189738,0.460671][0.683474,0.695588,0.221405][0.676461,0.971346,0][0.718594,0.189738,0.460671][0.683474,0.695588,0.221405][0.676461,0.971346,0][0.554201,0.316204,0.395136][0.413802,0.903735,0.109684][0.689958,0.931647,0][0.379893,0.32655,0.680231][0.352555,0.909335,0.220939][0.634145,0.900326,0][0.554201,0.316204,0.395136][0.413802,0.903735,0.109684][0.689958,0.931647,0][0.323677,0.371454,0.347832][0.178697,0.983319,0.0339288][0.698022,0.886122,0][0.379893,0.32655,0.680231][0.352555,0.909335,0.220939][0.634145,0.900326,0][0.595327,0.295017,-0.0650419][0.380703,0.923505,-0.0469372][0.778306,0.939277,0][0.347371,0.353996,-0.064479][0.186734,0.981368,-0.0452483][0.7776,0.890066,0][0.323677,0.371454,0.347832][0.178697,0.983319,0.0339288][0.698022,0.886122,0][0.323677,0.371454,0.347832][0.178697,0.983319,0.0339288][0.698022,0.886122,0][0.554201,0.316204,0.395136][0.413802,0.903735,0.109684][0.689958,0.931647,0][0.595327,0.295017,-0.0650419][0.380703,0.923505,-0.0469372][0.778306,0.939277,0][0.308571,0.337533,-0.456515][0.185714,0.977363,-0.101353][0.853425,0.882687,0][0.529325,0.279366,-0.529761][0.340625,0.926868,-0.157765][0.867963,0.926576,0][0.328856,0.284886,-0.760842][0.216858,0.937568,-0.271918][0.912807,0.888485,0][0.328856,0.284886,-0.760842][0.216858,0.937568,-0.271918][0.912807,0.888485,0][-4.02028e-007,0.297866,-0.849921][-2.01354e-007,0.938436,-0.345452][0.932082,0.825226,0][-4.36948e-007,0.388076,-0.450479][0,0.993618,-0.1128][0.852241,0.821973,0][-4.36948e-007,0.388076,-0.450479][0,0.993618,-0.1128][0.852241,0.821973,0][0.308571,0.337533,-0.456515][0.185714,0.977363,-0.101353][0.853425,0.882687,0][0.328856,0.284886,-0.760842][0.216858,0.937568,-0.271918][0.912807,0.888485,0][0.436108,0.205815,0.915824][0.579041,0.748421,0.323383][0.58549,0.919903,0][0.379893,0.32655,0.680231][0.352555,0.909335,0.220939][0.634145,0.900326,0][-5.49898e-007,0.409601,0.841523][5.41083e-007,0.999628,0.027274][0.600438,0.825981,0][-5.49898e-007,0.409601,0.841523][5.41083e-007,0.999628,0.027274][0.600438,0.825981,0][-5.83316e-007,0.453111,1.22377][2.81211e-007,0.802225,0.597022][0.525402,0.821973,0][0.436108,0.205815,0.915824][0.579041,0.748421,0.323383][0.58549,0.919903,0][0.308571,0.337533,-0.456515][0.185714,0.977363,-0.101353][0.853425,0.882687,0][-4.36948e-007,0.388076,-0.450479][0,0.993618,-0.1128][0.852241,0.821973,0][-4.70748e-007,0.402267,-0.063847][-3.13908e-007,0.999131,-0.0416883][0.776792,0.822001,0][-4.70748e-007,0.402267,-0.063847][-3.13908e-007,0.999131,-0.0416883][0.776792,0.822001,0][0.347371,0.353996,-0.064479][0.186734,0.981368,-0.0452483][0.7776,0.890066,0][0.308571,0.337533,-0.456515][0.185714,0.977363,-0.101353][0.853425,0.882687,0][0.308571,0.337533,-0.456515][0.185714,0.977363,-0.101353][0.853425,0.882687,0][0.347371,0.353996,-0.064479][0.186734,0.981368,-0.0452483][0.7776,0.890066,0][0.595327,0.295017,-0.0650419][0.380703,0.923505,-0.0469372][0.778306,0.939277,0][0.595327,0.295017,-0.0650419][0.380703,0.923505,-0.0469372][0.778306,0.939277,0][0.529325,0.279366,-0.529761][0.340625,0.926868,-0.157765][0.867963,0.926576,0][0.308571,0.337533,-0.456515][0.185714,0.977363,-0.101353][0.853425,0.882687,0][0.529325,0.279366,-0.529761][0.340625,0.926868,-0.157765][0.867963,0.926576,0][0.595327,0.295017,-0.0650419][0.380703,0.923505,-0.0469372][0.778306,0.939277,0][0.789654,0.181943,-0.0655119][0.688883,0.724588,-0.0202995][0.779396,0.982912,0][0.789654,0.181943,-0.0655119][0.688883,0.724588,-0.0202995][0.779396,0.982912,0][0.717676,0.17459,-0.606862][0.610788,0.753623,-0.24288][0.884865,0.967652,0][0.529325,0.279366,-0.529761][0.340625,0.926868,-0.157765][0.867963,0.926576,0][0.915951,0.00191212,-0.0658509][0.916098,0.400947,-0.00228272][0.470082,0.258416,0][0.83246,0.00191307,-0.682342][0.833757,0.436037,-0.338705][0.294551,0.253712,0][0.717676,0.17459,-0.606862][0.610788,0.753623,-0.24288][0.29819,0.316682,0][0.717676,0.17459,-0.606862][0.610788,0.753623,-0.24288][0.29819,0.316682,0][0.789654,0.181943,-0.0655119][0.688883,0.724588,-0.0202995][0.469315,0.324285,0][0.915951,0.00191212,-0.0658509][0.916098,0.400947,-0.00228272][0.470082,0.258416,0][0.972017,-0.240387,-0.0661679][1,-4.84426e-007,0.000292138][0.469923,0.187939,0][0.883416,-0.240387,-0.737329][0.915259,-9.07026e-007,-0.402865][0.289458,0.187739,0][0.83246,0.00191307,-0.682342][0.833757,0.436037,-0.338705][0.294551,0.253712,0][0.83246,0.00191307,-0.682342][0.833757,0.436037,-0.338705][0.294551,0.253712,0][0.915951,0.00191212,-0.0658509][0.916098,0.400947,-0.00228272][0.470082,0.258416,0][0.972017,-0.240387,-0.0661679][1,-4.84426e-007,0.000292138][0.469923,0.187939,0][0.972017,-0.240387,-0.0661679][1,-4.84426e-007,0.000292138][0.469923,0.187939,0][0.915951,-0.482685,-0.0658509][0.900844,-0.434144,-0.00027083][0.469108,0.117792,0][0.83246,-0.482685,-0.682342][0.809159,-0.482456,-0.335407][0.298707,0.123146,0][0.83246,-0.482685,-0.682342][0.809159,-0.482456,-0.335407][0.298707,0.123146,0][0.883416,-0.240387,-0.737329][0.915259,-9.07026e-007,-0.402865][0.289458,0.187739,0][0.972017,-0.240387,-0.0661679][1,-4.84426e-007,0.000292138][0.469923,0.187939,0][0.915951,-0.482685,-0.0658509][0.900844,-0.434144,-0.00027083][0.469108,0.117792,0][0.746653,-0.691277,-0.064895][0.46184,-0.886963,-0.000720402][0.468852,0.038255,0][0.678594,-0.691277,-0.516304][0.420977,-0.8964,-0.138725][0.325927,0.041277,0][0.678594,-0.691277,-0.516304][0.420977,-0.8964,-0.138725][0.325927,0.041277,0][0.83246,-0.482685,-0.682342][0.809159,-0.482456,-0.335407][0.298707,0.123146,0][0.915951,-0.482685,-0.0658509][0.900844,-0.434144,-0.00027083][0.469108,0.117792,0][0.678594,-0.691277,-0.516304][0.420977,-0.8964,-0.138725][0.894503,0.680606,0][0.746653,-0.691277,-0.064895][0.46184,-0.886963,-0.000720402][0.807094,0.667427,0][-4.70657e-007,-0.691277,-0.064895][0,-1,0][0.807094,0.812007,0][-4.70657e-007,-0.691277,-0.064895][0,-1,0][0.807094,0.812007,0][-4.31193e-007,-0.691277,-0.516304][0,-1,0][0.894503,0.812007,0][0.678594,-0.691277,-0.516304][0.420977,-0.8964,-0.138725][0.894503,0.680606,0][-5.83316e-007,0.453111,1.22377][2.81211e-007,0.802225,0.597022][0.984306,0.373164,0][-5.89479e-007,0.00191212,1.29428][0,0.140633,0.990062][0.990064,0.233902,0][0.553426,0.00191212,1.05671][0.647439,0.403073,0.646803][0.812325,0.242761,0][-0.602579,1.1662,-0.484518][-0.570511,-0.0764799,0.817721][0.100623,0.6074,0][-0.522833,1.04635,-0.462065][-0.55001,-0.224206,0.804501][0.058461,0.543991,0][-0.458367,1.12758,-0.462065][0.190636,0.434465,0.880283][0.024378,0.586971,0][-0.458367,1.12758,-0.462065][0.190636,0.434465,0.880283][0.024378,0.586971,0][-0.532541,1.20003,-0.484518][0.277617,0.406664,0.870375][0.063594,0.625299,0][-0.602579,1.1662,-0.484518][-0.570511,-0.0764799,0.817721][0.100623,0.6074,0][-0.532541,1.20003,-0.484518][0.277617,0.406664,0.870375][0.063594,0.625299,0][-0.458367,1.12758,-0.462065][0.190636,0.434465,0.880283][0.024378,0.586971,0][-0.426134,1.1682,-0.551879][0.587607,0.809146,0][0.007337,0.608461,0][-0.426134,1.1682,-0.551879][0.587607,0.809146,0][0.007337,0.608461,0][-0.497522,1.21695,-0.551879][0.736319,0.676635,0][0.04508,0.634249,0][-0.532541,1.20003,-0.484518][0.277617,0.406664,0.870375][0.063594,0.625299,0][-0.532541,1.20003,-0.61924][0.277617,0.406663,-0.870376][0.063594,0.625299,0][-0.497522,1.21695,-0.551879][0.736319,0.676635,0][0.04508,0.634249,0][-0.426134,1.1682,-0.551879][0.587607,0.809146,0][0.007337,0.608461,0][-0.426134,1.1682,-0.551879][0.587607,0.809146,0][0.007337,0.608461,0][-0.458367,1.12758,-0.641693][0.190636,0.434465,-0.880283][0.024378,0.586971,0][-0.532541,1.20003,-0.61924][0.277617,0.406663,-0.870376][0.063594,0.625299,0][-0.602579,1.1662,-0.61924][-0.570511,-0.07648,-0.817721][0.100623,0.6074,0][-0.532541,1.20003,-0.61924][0.277617,0.406663,-0.870376][0.063594,0.625299,0][-0.458367,1.12758,-0.641693][0.190636,0.434465,-0.880283][0.024378,0.586971,0][-0.458367,1.12758,-0.641693][0.190636,0.434465,-0.880283][0.024378,0.586971,0][-0.522833,1.04635,-0.641693][-0.55001,-0.224206,-0.804501][0.058461,0.543991,0][-0.602579,1.1662,-0.61924][-0.570511,-0.07648,-0.817721][0.100623,0.6074,0][-0.637599,1.14928,-0.551879][-0.95696,-0.29022,0][0.119137,0.598451,0][-0.602579,1.1662,-0.61924][-0.570511,-0.07648,-0.817721][0.100623,0.6074,0][-0.522833,1.04635,-0.641693][-0.55001,-0.224206,-0.804501][0.058461,0.543991,0][-0.522833,1.04635,-0.641693][-0.55001,-0.224206,-0.804501][0.058461,0.543991,0][-0.555066,1.00573,-0.551879][-0.866935,-0.498421,0][0.075503,0.522501,0][-0.637599,1.14928,-0.551879][-0.95696,-0.29022,0][0.119137,0.598451,0][-0.637599,1.14928,-0.551879][-0.95696,-0.29022,0][0.119137,0.598451,0][-0.555066,1.00573,-0.551879][-0.866935,-0.498421,0][0.075503,0.522501,0][-0.522833,1.04635,-0.462065][-0.55001,-0.224206,0.804501][0.058461,0.543991,0][-0.522833,1.04635,-0.462065][-0.55001,-0.224206,0.804501][0.058461,0.543991,0][-0.602579,1.1662,-0.484518][-0.570511,-0.0764799,0.817721][0.100623,0.6074,0][-0.637599,1.14928,-0.551879][-0.95696,-0.29022,0][0.119137,0.598451,0][-0.620965,1.30317,-0.506972][-0.545562,0.186998,0.816942][0.110343,0.679865,0][-0.602579,1.1662,-0.484518][-0.570511,-0.0764799,0.817721][0.100623,0.6074,0][-0.532541,1.20003,-0.484518][0.277617,0.406664,0.870375][0.063594,0.625299,0][-0.532541,1.20003,-0.484518][0.277617,0.406664,0.870375][0.063594,0.625299,0][-0.56911,1.30317,-0.506972][0.427581,0.236126,0.872594][0.082928,0.679865,0][-0.620965,1.30317,-0.506972][-0.545562,0.186998,0.816942][0.110343,0.679865,0][-0.56911,1.30317,-0.506972][0.427581,0.236126,0.872594][0.082928,0.679865,0][-0.532541,1.20003,-0.484518][0.277617,0.406664,0.870375][0.063594,0.625299,0][-0.497522,1.21695,-0.551879][0.736319,0.676635,0][0.04508,0.634249,0][-0.497522,1.21695,-0.551879][0.736319,0.676635,0][0.04508,0.634249,0][-0.543183,1.30317,-0.551879][0.965352,0.26095,2.89384e-007][0.06922,0.679865,0][-0.56911,1.30317,-0.506972][0.427581,0.236126,0.872594][0.082928,0.679865,0][-0.56911,1.30317,-0.596786][0.427581,0.236125,-0.872593][0.082928,0.679865,0][-0.543183,1.30317,-0.551879][0.965352,0.26095,2.89384e-007][0.06922,0.679865,0][-0.497522,1.21695,-0.551879][0.736319,0.676635,0][0.04508,0.634249,0][-0.497522,1.21695,-0.551879][0.736319,0.676635,0][0.04508,0.634249,0][-0.532541,1.20003,-0.61924][0.277617,0.406663,-0.870376][0.063594,0.625299,0][-0.56911,1.30317,-0.596786][0.427581,0.236125,-0.872593][0.082928,0.679865,0][-0.620965,1.30317,-0.596786][-0.545562,0.186998,-0.816942][0.110343,0.679865,0][-0.56911,1.30317,-0.596786][0.427581,0.236125,-0.872593][0.082928,0.679865,0][-0.532541,1.20003,-0.61924][0.277617,0.406663,-0.870376][0.063594,0.625299,0][-0.532541,1.20003,-0.61924][0.277617,0.406663,-0.870376][0.063594,0.625299,0][-0.602579,1.1662,-0.61924][-0.570511,-0.07648,-0.817721][0.100623,0.6074,0][-0.620965,1.30317,-0.596786][-0.545562,0.186998,-0.816942][0.110343,0.679865,0][-0.646892,1.30317,-0.551879][-0.98614,0.165918,1.9138e-007][0.12405,0.679865,0][-0.620965,1.30317,-0.596786][-0.545562,0.186998,-0.816942][0.110343,0.679865,0][-0.602579,1.1662,-0.61924][-0.570511,-0.07648,-0.817721][0.100623,0.6074,0][-0.602579,1.1662,-0.61924][-0.570511,-0.07648,-0.817721][0.100623,0.6074,0][-0.637599,1.14928,-0.551879][-0.95696,-0.29022,0][0.119137,0.598451,0][-0.646892,1.30317,-0.551879][-0.98614,0.165918,1.9138e-007][0.12405,0.679865,0][-0.646892,1.30317,-0.551879][-0.98614,0.165918,1.9138e-007][0.12405,0.679865,0][-0.637599,1.14928,-0.551879][-0.95696,-0.29022,0][0.119137,0.598451,0][-0.602579,1.1662,-0.484518][-0.570511,-0.0764799,0.817721][0.100623,0.6074,0][-0.602579,1.1662,-0.484518][-0.570511,-0.0764799,0.817721][0.100623,0.6074,0][-0.620965,1.30317,-0.506972][-0.545562,0.186998,0.816942][0.110343,0.679865,0][-0.646892,1.30317,-0.551879][-0.98614,0.165918,1.9138e-007][0.12405,0.679865,0][-0.555887,1.41758,-0.529425][0.484951,0.0196756,0.87432][0.075937,0.740397,0][-0.56911,1.30317,-0.506972][0.427581,0.236126,0.872594][0.082928,0.679865,0][-0.543183,1.30317,-0.551879][0.965352,0.26095,2.89384e-007][0.06922,0.679865,0][-0.543183,1.30317,-0.551879][0.965352,0.26095,2.89384e-007][0.06922,0.679865,0][-0.544214,1.41194,-0.551879][0.978405,-0.206699,6.21321e-007][0.069766,0.737414,0][-0.555887,1.41758,-0.529425][0.484951,0.0196756,0.87432][0.075937,0.740397,0][-0.555887,1.41758,-0.574333][0.484952,0.0196757,-0.87432][0.075937,0.740397,0][-0.544214,1.41194,-0.551879][0.978405,-0.206699,6.21321e-007][0.069766,0.737414,0][-0.543183,1.30317,-0.551879][0.965352,0.26095,2.89384e-007][0.06922,0.679865,0][-0.543183,1.30317,-0.551879][0.965352,0.26095,2.89384e-007][0.06922,0.679865,0][-0.56911,1.30317,-0.596786][0.427581,0.236125,-0.872593][0.082928,0.679865,0][-0.555887,1.41758,-0.574333][0.484952,0.0196757,-0.87432][0.075937,0.740397,0][-0.579233,1.42886,-0.574333][-0.404582,0.412506,-0.816181][0.08828,0.746363,0][-0.555887,1.41758,-0.574333][0.484952,0.0196757,-0.87432][0.075937,0.740397,0][-0.56911,1.30317,-0.596786][0.427581,0.236125,-0.872593][0.082928,0.679865,0][-0.56911,1.30317,-0.596786][0.427581,0.236125,-0.872593][0.082928,0.679865,0][-0.620965,1.30317,-0.596786][-0.545562,0.186998,-0.816942][0.110343,0.679865,0][-0.579233,1.42886,-0.574333][-0.404582,0.412506,-0.816181][0.08828,0.746363,0][-0.590907,1.4345,-0.551879][-0.808502,0.588493,5.14738e-007][0.094451,0.749346,0][-0.579233,1.42886,-0.574333][-0.404582,0.412506,-0.816181][0.08828,0.746363,0][-0.620965,1.30317,-0.596786][-0.545562,0.186998,-0.816942][0.110343,0.679865,0][-0.620965,1.30317,-0.596786][-0.545562,0.186998,-0.816942][0.110343,0.679865,0][-0.646892,1.30317,-0.551879][-0.98614,0.165918,1.9138e-007][0.12405,0.679865,0][-0.590907,1.4345,-0.551879][-0.808502,0.588493,5.14738e-007][0.094451,0.749346,0][-0.590907,1.4345,-0.551879][-0.808502,0.588493,5.14738e-007][0.094451,0.749346,0][-0.646892,1.30317,-0.551879][-0.98614,0.165918,1.9138e-007][0.12405,0.679865,0][-0.620965,1.30317,-0.506972][-0.545562,0.186998,0.816942][0.110343,0.679865,0][-0.620965,1.30317,-0.506972][-0.545562,0.186998,0.816942][0.110343,0.679865,0][-0.579233,1.42886,-0.529425][-0.404582,0.412506,0.816181][0.08828,0.746363,0][-0.590907,1.4345,-0.551879][-0.808502,0.588493,5.14738e-007][0.094451,0.749346,0][-0.579233,1.42886,-0.529425][-0.404582,0.412506,0.816181][0.08828,0.746363,0][-0.555887,1.41758,-0.529425][0.484951,0.0196756,0.87432][0.075937,0.740397,0][-0.4906,1.51937,-0.551879][0.618816,0.785536,8.91668e-007][0.04142,0.794248,0][-0.555887,1.41758,-0.529425][0.484951,0.0196756,0.87432][0.075937,0.740397,0][-0.544214,1.41194,-0.551879][0.978405,-0.206699,6.21321e-007][0.069766,0.737414,0][-0.4906,1.51937,-0.551879][0.618816,0.785536,8.91668e-007][0.04142,0.794248,0][-0.544214,1.41194,-0.551879][0.978405,-0.206699,6.21321e-007][0.069766,0.737414,0][-0.555887,1.41758,-0.574333][0.484952,0.0196757,-0.87432][0.075937,0.740397,0][-0.4906,1.51937,-0.551879][0.618816,0.785536,8.91668e-007][0.04142,0.794248,0][-0.555887,1.41758,-0.574333][0.484952,0.0196757,-0.87432][0.075937,0.740397,0][-0.579233,1.42886,-0.574333][-0.404582,0.412506,-0.816181][0.08828,0.746363,0][-0.4906,1.51937,-0.551879][0.618816,0.785536,8.91668e-007][0.04142,0.794248,0][-0.579233,1.42886,-0.574333][-0.404582,0.412506,-0.816181][0.08828,0.746363,0][-0.590907,1.4345,-0.551879][-0.808502,0.588493,5.14738e-007][0.094451,0.749346,0][-0.4906,1.51937,-0.551879][0.618816,0.785536,8.91668e-007][0.04142,0.794248,0][-0.590907,1.4345,-0.551879][-0.808502,0.588493,5.14738e-007][0.094451,0.749346,0][-0.579233,1.42886,-0.529425][-0.404582,0.412506,0.816181][0.08828,0.746363,0][-0.4906,1.51937,-0.551879][0.618816,0.785536,8.91668e-007][0.04142,0.794248,0][-0.579233,1.42886,-0.529425][-0.404582,0.412506,0.816181][0.08828,0.746363,0][-0.620965,1.30317,-0.506972][-0.545562,0.186998,0.816942][0.110343,0.679865,0][-0.56911,1.30317,-0.506972][0.427581,0.236126,0.872594][0.082928,0.679865,0][-0.56911,1.30317,-0.506972][0.427581,0.236126,0.872594][0.082928,0.679865,0][-0.555887,1.41758,-0.529425][0.484951,0.0196756,0.87432][0.075937,0.740397,0][-0.579233,1.42886,-0.529425][-0.404582,0.412506,0.816181][0.08828,0.746363,0][-0.191806,0.835087,-1.41328][-0.838356,0.47219,-0.272389][0.640972,0.697388,0][-0.177591,0.835087,-1.36954][-0.518127,0.472189,0.71315][0.621426,0.637231,0][-0.131592,0.835087,-1.36954][0.518136,0.472188,0.713144][0.558174,0.637231,0][-0.131592,0.835087,-1.36954][0.518136,0.472188,0.713144][0.558174,0.637231,0][-0.117378,0.835086,-1.41328][0.838363,0.472172,-0.2724][0.538628,0.697388,0][-0.154592,0.835087,-1.44032][1.26804e-006,0.47219,-0.881497][0.5898,0.734566,0][-0.191806,0.835087,-1.41328][-0.838356,0.47219,-0.272389][0.640972,0.697388,0][-0.131592,0.835087,-1.36954][0.518136,0.472188,0.713144][0.558174,0.637231,0][-0.154592,0.835087,-1.44032][1.26804e-006,0.47219,-0.881497][0.5898,0.734566,0][-0.117378,0.835086,-1.41328][0.838363,0.472172,-0.2724][0.538628,0.697388,0][-0.131592,0.835087,-1.36954][0.518136,0.472188,0.713144][0.558174,0.637231,0][-0.154592,0.719719,-1.40119][-1.98644e-006,-1,-4.32867e-006][0.5898,0.680761,0][-0.131592,0.835087,-1.36954][0.518136,0.472188,0.713144][0.558174,0.637231,0][-0.177591,0.835087,-1.36954][-0.518127,0.472189,0.71315][0.621426,0.637231,0][-0.154592,0.719719,-1.40119][-1.98644e-006,-1,-4.32867e-006][0.5898,0.680761,0][-0.177591,0.835087,-1.36954][-0.518127,0.472189,0.71315][0.621426,0.637231,0][-0.191806,0.835087,-1.41328][-0.838356,0.47219,-0.272389][0.640972,0.697388,0][-0.154592,0.719719,-1.40119][-1.98644e-006,-1,-4.32867e-006][0.5898,0.680761,0][-0.191806,0.835087,-1.41328][-0.838356,0.47219,-0.272389][0.640972,0.697388,0][-0.154592,0.835087,-1.44032][1.26804e-006,0.47219,-0.881497][0.5898,0.734566,0][-0.154592,0.719719,-1.40119][-1.98644e-006,-1,-4.32867e-006][0.5898,0.680761,0][-0.154592,0.835087,-1.44032][1.26804e-006,0.47219,-0.881497][0.5898,0.734566,0][-0.117378,0.835086,-1.41328][0.838363,0.472172,-0.2724][0.538628,0.697388,0][-0.154592,0.719719,-1.40119][-1.98644e-006,-1,-4.32867e-006][0.5898,0.680761,0][0.602579,1.1662,-0.61924][0.570511,-0.07648,-0.817721][0.100623,0.6074,0][0.522833,1.04635,-0.641693][0.55001,-0.224206,-0.804501][0.058461,0.543991,0][0.458367,1.12758,-0.641693][-0.190636,0.434465,-0.880283][0.024378,0.586971,0][0.458367,1.12758,-0.641693][-0.190636,0.434465,-0.880283][0.024378,0.586971,0][0.532541,1.20003,-0.61924][-0.277617,0.406663,-0.870376][0.063594,0.625299,0][0.602579,1.1662,-0.61924][0.570511,-0.07648,-0.817721][0.100623,0.6074,0][0.532541,1.20003,-0.61924][-0.277617,0.406663,-0.870376][0.063594,0.625299,0][0.458367,1.12758,-0.641693][-0.190636,0.434465,-0.880283][0.024378,0.586971,0][0.426134,1.1682,-0.551879][-0.587606,0.809147,-1.38229e-006][0.007337,0.608461,0][0.426134,1.1682,-0.551879][-0.587606,0.809147,-1.38229e-006][0.007337,0.608461,0][0.497522,1.21695,-0.551879][-0.736319,0.676635,0][0.04508,0.634249,0][0.532541,1.20003,-0.61924][-0.277617,0.406663,-0.870376][0.063594,0.625299,0][0.532541,1.20003,-0.484518][-0.277616,0.406668,0.870374][0.063594,0.625299,0][0.497522,1.21695,-0.551879][-0.736319,0.676635,0][0.04508,0.634249,0][0.426134,1.1682,-0.551879][-0.587606,0.809147,-1.38229e-006][0.007337,0.608461,0][0.426134,1.1682,-0.551879][-0.587606,0.809147,-1.38229e-006][0.007337,0.608461,0][0.458367,1.12758,-0.462064][-0.190631,0.43447,0.880282][0.024378,0.586971,0][0.532541,1.20003,-0.484518][-0.277616,0.406668,0.870374][0.063594,0.625299,0][0.602579,1.1662,-0.484518][0.570513,-0.0764774,0.81772][0.100623,0.6074,0][0.532541,1.20003,-0.484518][-0.277616,0.406668,0.870374][0.063594,0.625299,0][0.458367,1.12758,-0.462064][-0.190631,0.43447,0.880282][0.024378,0.586971,0][0.458367,1.12758,-0.462064][-0.190631,0.43447,0.880282][0.024378,0.586971,0][0.522833,1.04635,-0.462064][0.550013,-0.224203,0.804499][0.058461,0.543991,0][0.602579,1.1662,-0.484518][0.570513,-0.0764774,0.81772][0.100623,0.6074,0][0.637599,1.14928,-0.551879][0.95696,-0.290219,-4.90214e-007][0.119137,0.598451,0][0.602579,1.1662,-0.484518][0.570513,-0.0764774,0.81772][0.100623,0.6074,0][0.522833,1.04635,-0.462064][0.550013,-0.224203,0.804499][0.058461,0.543991,0][0.522833,1.04635,-0.462064][0.550013,-0.224203,0.804499][0.058461,0.543991,0][0.555066,1.00573,-0.551879][0.866935,-0.498421,-1.97786e-006][0.075503,0.522501,0][0.637599,1.14928,-0.551879][0.95696,-0.290219,-4.90214e-007][0.119137,0.598451,0][0.637599,1.14928,-0.551879][0.95696,-0.290219,-4.90214e-007][0.119137,0.598451,0][0.555066,1.00573,-0.551879][0.866935,-0.498421,-1.97786e-006][0.075503,0.522501,0][0.522833,1.04635,-0.641693][0.55001,-0.224206,-0.804501][0.058461,0.543991,0][0.522833,1.04635,-0.641693][0.55001,-0.224206,-0.804501][0.058461,0.543991,0][0.602579,1.1662,-0.61924][0.570511,-0.07648,-0.817721][0.100623,0.6074,0][0.637599,1.14928,-0.551879][0.95696,-0.290219,-4.90214e-007][0.119137,0.598451,0][0.620965,1.30317,-0.596786][0.545562,0.186998,-0.816942][0.110343,0.679865,0][0.602579,1.1662,-0.61924][0.570511,-0.07648,-0.817721][0.100623,0.6074,0][0.532541,1.20003,-0.61924][-0.277617,0.406663,-0.870376][0.063594,0.625299,0][0.532541,1.20003,-0.61924][-0.277617,0.406663,-0.870376][0.063594,0.625299,0][0.56911,1.30317,-0.596786][-0.427581,0.236125,-0.872594][0.082928,0.679865,0][0.620965,1.30317,-0.596786][0.545562,0.186998,-0.816942][0.110343,0.679865,0][0.56911,1.30317,-0.596786][-0.427581,0.236125,-0.872594][0.082928,0.679865,0][0.532541,1.20003,-0.61924][-0.277617,0.406663,-0.870376][0.063594,0.625299,0][0.497522,1.21695,-0.551879][-0.736319,0.676635,0][0.04508,0.634249,0][0.497522,1.21695,-0.551879][-0.736319,0.676635,0][0.04508,0.634249,0][0.543183,1.30317,-0.551879][-0.965352,0.26095,3.10055e-007][0.06922,0.679865,0][0.56911,1.30317,-0.596786][-0.427581,0.236125,-0.872594][0.082928,0.679865,0][0.56911,1.30317,-0.506972][-0.427581,0.236126,0.872594][0.082928,0.679865,0][0.543183,1.30317,-0.551879][-0.965352,0.26095,3.10055e-007][0.06922,0.679865,0][0.497522,1.21695,-0.551879][-0.736319,0.676635,0][0.04508,0.634249,0][0.497522,1.21695,-0.551879][-0.736319,0.676635,0][0.04508,0.634249,0][0.532541,1.20003,-0.484518][-0.277616,0.406668,0.870374][0.063594,0.625299,0][0.56911,1.30317,-0.506972][-0.427581,0.236126,0.872594][0.082928,0.679865,0][0.620965,1.30317,-0.506972][0.545562,0.186998,0.816942][0.110343,0.679865,0][0.56911,1.30317,-0.506972][-0.427581,0.236126,0.872594][0.082928,0.679865,0][0.532541,1.20003,-0.484518][-0.277616,0.406668,0.870374][0.063594,0.625299,0][0.532541,1.20003,-0.484518][-0.277616,0.406668,0.870374][0.063594,0.625299,0][0.602579,1.1662,-0.484518][0.570513,-0.0764774,0.81772][0.100623,0.6074,0][0.620965,1.30317,-0.506972][0.545562,0.186998,0.816942][0.110343,0.679865,0][0.646892,1.30317,-0.551879][0.98614,0.165918,2.39225e-007][0.12405,0.679865,0][0.620965,1.30317,-0.506972][0.545562,0.186998,0.816942][0.110343,0.679865,0][0.602579,1.1662,-0.484518][0.570513,-0.0764774,0.81772][0.100623,0.6074,0][0.602579,1.1662,-0.484518][0.570513,-0.0764774,0.81772][0.100623,0.6074,0][0.637599,1.14928,-0.551879][0.95696,-0.290219,-4.90214e-007][0.119137,0.598451,0][0.646892,1.30317,-0.551879][0.98614,0.165918,2.39225e-007][0.12405,0.679865,0][0.646892,1.30317,-0.551879][0.98614,0.165918,2.39225e-007][0.12405,0.679865,0][0.637599,1.14928,-0.551879][0.95696,-0.290219,-4.90214e-007][0.119137,0.598451,0][0.602579,1.1662,-0.61924][0.570511,-0.07648,-0.817721][0.100623,0.6074,0][0.602579,1.1662,-0.61924][0.570511,-0.07648,-0.817721][0.100623,0.6074,0][0.620965,1.30317,-0.596786][0.545562,0.186998,-0.816942][0.110343,0.679865,0][0.646892,1.30317,-0.551879][0.98614,0.165918,2.39225e-007][0.12405,0.679865,0][0.555887,1.41758,-0.574333][-0.484952,0.0196757,-0.874319][0.075937,0.740397,0][0.56911,1.30317,-0.596786][-0.427581,0.236125,-0.872594][0.082928,0.679865,0][0.543183,1.30317,-0.551879][-0.965352,0.26095,3.10055e-007][0.06922,0.679865,0][0.543183,1.30317,-0.551879][-0.965352,0.26095,3.10055e-007][0.06922,0.679865,0][0.544214,1.41194,-0.551879][-0.978405,-0.206699,6.42032e-007][0.069766,0.737414,0][0.555887,1.41758,-0.574333][-0.484952,0.0196757,-0.874319][0.075937,0.740397,0][0.555887,1.41758,-0.529425][-0.484951,0.0196756,0.87432][0.075937,0.740397,0][0.544214,1.41194,-0.551879][-0.978405,-0.206699,6.42032e-007][0.069766,0.737414,0][0.543183,1.30317,-0.551879][-0.965352,0.26095,3.10055e-007][0.06922,0.679865,0][0.543183,1.30317,-0.551879][-0.965352,0.26095,3.10055e-007][0.06922,0.679865,0][0.56911,1.30317,-0.506972][-0.427581,0.236126,0.872594][0.082928,0.679865,0][0.555887,1.41758,-0.529425][-0.484951,0.0196756,0.87432][0.075937,0.740397,0][0.579233,1.42886,-0.529425][0.404582,0.412506,0.816181][0.08828,0.746363,0][0.555887,1.41758,-0.529425][-0.484951,0.0196756,0.87432][0.075937,0.740397,0][0.56911,1.30317,-0.506972][-0.427581,0.236126,0.872594][0.082928,0.679865,0][0.56911,1.30317,-0.506972][-0.427581,0.236126,0.872594][0.082928,0.679865,0][0.620965,1.30317,-0.506972][0.545562,0.186998,0.816942][0.110343,0.679865,0][0.579233,1.42886,-0.529425][0.404582,0.412506,0.816181][0.08828,0.746363,0][0.590907,1.4345,-0.551879][0.808502,0.588493,4.30944e-007][0.094451,0.749346,0][0.579233,1.42886,-0.529425][0.404582,0.412506,0.816181][0.08828,0.746363,0][0.620965,1.30317,-0.506972][0.545562,0.186998,0.816942][0.110343,0.679865,0][0.620965,1.30317,-0.506972][0.545562,0.186998,0.816942][0.110343,0.679865,0][0.646892,1.30317,-0.551879][0.98614,0.165918,2.39225e-007][0.12405,0.679865,0][0.590907,1.4345,-0.551879][0.808502,0.588493,4.30944e-007][0.094451,0.749346,0][0.590907,1.4345,-0.551879][0.808502,0.588493,4.30944e-007][0.094451,0.749346,0][0.646892,1.30317,-0.551879][0.98614,0.165918,2.39225e-007][0.12405,0.679865,0][0.620965,1.30317,-0.596786][0.545562,0.186998,-0.816942][0.110343,0.679865,0][0.620965,1.30317,-0.596786][0.545562,0.186998,-0.816942][0.110343,0.679865,0][0.579233,1.42886,-0.574333][0.404582,0.412506,-0.816181][0.08828,0.746363,0][0.590907,1.4345,-0.551879][0.808502,0.588493,4.30944e-007][0.094451,0.749346,0][0.579233,1.42886,-0.574333][0.404582,0.412506,-0.816181][0.08828,0.746363,0][0.555887,1.41758,-0.574333][-0.484952,0.0196757,-0.874319][0.075937,0.740397,0][0.4906,1.51937,-0.551879][-0.618817,0.785535,-7.20194e-007][0.04142,0.794248,0][0.555887,1.41758,-0.574333][-0.484952,0.0196757,-0.874319][0.075937,0.740397,0][0.544214,1.41194,-0.551879][-0.978405,-0.206699,6.42032e-007][0.069766,0.737414,0][0.4906,1.51937,-0.551879][-0.618817,0.785535,-7.20194e-007][0.04142,0.794248,0][0.544214,1.41194,-0.551879][-0.978405,-0.206699,6.42032e-007][0.069766,0.737414,0][0.555887,1.41758,-0.529425][-0.484951,0.0196756,0.87432][0.075937,0.740397,0][0.4906,1.51937,-0.551879][-0.618817,0.785535,-7.20194e-007][0.04142,0.794248,0][0.555887,1.41758,-0.529425][-0.484951,0.0196756,0.87432][0.075937,0.740397,0][0.579233,1.42886,-0.529425][0.404582,0.412506,0.816181][0.08828,0.746363,0][0.4906,1.51937,-0.551879][-0.618817,0.785535,-7.20194e-007][0.04142,0.794248,0][0.579233,1.42886,-0.529425][0.404582,0.412506,0.816181][0.08828,0.746363,0][0.590907,1.4345,-0.551879][0.808502,0.588493,4.30944e-007][0.094451,0.749346,0][0.4906,1.51937,-0.551879][-0.618817,0.785535,-7.20194e-007][0.04142,0.794248,0][0.590907,1.4345,-0.551879][0.808502,0.588493,4.30944e-007][0.094451,0.749346,0][0.579233,1.42886,-0.574333][0.404582,0.412506,-0.816181][0.08828,0.746363,0][0.4906,1.51937,-0.551879][-0.618817,0.785535,-7.20194e-007][0.04142,0.794248,0][0.579233,1.42886,-0.574333][0.404582,0.412506,-0.816181][0.08828,0.746363,0][0.620965,1.30317,-0.596786][0.545562,0.186998,-0.816942][0.110343,0.679865,0][0.56911,1.30317,-0.596786][-0.427581,0.236125,-0.872594][0.082928,0.679865,0][0.56911,1.30317,-0.596786][-0.427581,0.236125,-0.872594][0.082928,0.679865,0][0.555887,1.41758,-0.574333][-0.484952,0.0196757,-0.874319][0.075937,0.740397,0][0.579233,1.42886,-0.574333][0.404582,0.412506,-0.816181][0.08828,0.746363,0][0.117786,0.835087,-1.41328][-0.838353,0.472191,-0.272397][0.640972,0.697388,0][0.132,0.835087,-1.36954][-0.518136,0.472186,0.713145][0.621426,0.637231,0][0.178,0.835087,-1.36954][0.518136,0.472188,0.713144][0.558174,0.637231,0][0.178,0.835087,-1.36954][0.518136,0.472188,0.713144][0.558174,0.637231,0][0.192214,0.835086,-1.41328][0.838362,0.472172,-0.2724][0.538628,0.697388,0][0.155,0.835087,-1.44032][1.36558e-006,0.47219,-0.881497][0.5898,0.734566,0][0.117786,0.835087,-1.41328][-0.838353,0.472191,-0.272397][0.640972,0.697388,0][0.178,0.835087,-1.36954][0.518136,0.472188,0.713144][0.558174,0.637231,0][0.155,0.835087,-1.44032][1.36558e-006,0.47219,-0.881497][0.5898,0.734566,0][0.192214,0.835086,-1.41328][0.838362,0.472172,-0.2724][0.538628,0.697388,0][0.178,0.835087,-1.36954][0.518136,0.472188,0.713144][0.558174,0.637231,0][0.155,0.719719,-1.40119][-6.52262e-007,-1,-5.0995e-006][0.5898,0.680761,0][0.178,0.835087,-1.36954][0.518136,0.472188,0.713144][0.558174,0.637231,0][0.132,0.835087,-1.36954][-0.518136,0.472186,0.713145][0.621426,0.637231,0][0.155,0.719719,-1.40119][-6.52262e-007,-1,-5.0995e-006][0.5898,0.680761,0][0.132,0.835087,-1.36954][-0.518136,0.472186,0.713145][0.621426,0.637231,0][0.117786,0.835087,-1.41328][-0.838353,0.472191,-0.272397][0.640972,0.697388,0][0.155,0.719719,-1.40119][-6.52262e-007,-1,-5.0995e-006][0.5898,0.680761,0][0.117786,0.835087,-1.41328][-0.838353,0.472191,-0.272397][0.640972,0.697388,0][0.155,0.835087,-1.44032][1.36558e-006,0.47219,-0.881497][0.5898,0.734566,0][0.155,0.719719,-1.40119][-6.52262e-007,-1,-5.0995e-006][0.5898,0.680761,0][0.155,0.835087,-1.44032][1.36558e-006,0.47219,-0.881497][0.5898,0.734566,0][0.192214,0.835086,-1.41328][0.838362,0.472172,-0.2724][0.538628,0.697388,0][0.155,0.719719,-1.40119][-6.52262e-007,-1,-5.0995e-006][0.5898,0.680761,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/ExtremeSkateHelmet.mesh b/shareddata/charcustom/hats/fonts/ExtremeSkateHelmet.mesh deleted file mode 100644 index efed666..0000000 --- a/shareddata/charcustom/hats/fonts/ExtremeSkateHelmet.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -952 -[-1.17102,-0.472496,-0.282737][0.983419,0.146089,0.107443][0.151258,0.925088,0][-1.13919,-0.59112,-0.412838][0.983419,0.146089,0.107443][0.186942,0.920498,0][-1.25839,0.270344,-0.493106][0.983419,0.146089,0.107443][0.065123,0.795989,0][-1.25839,0.270344,-0.493106][0.983419,0.146089,0.107443][0.065123,0.795989,0][-1.28785,0.189221,-0.348938][0.933669,0.194899,0.300459][0.057143,0.82856,0][-1.17102,-0.472496,-0.282737][0.983419,0.146089,0.107443][0.151258,0.925088,0][-1.16466,-0.656048,-0.280652][0.991097,0.0358251,0.12823][0.178476,0.949479,0][-1.17102,-0.472496,-0.282737][0.983419,0.146089,0.107443][0.151258,0.925088,0][-1.26283,-0.0371579,0.305196][0.991097,0.0358251,0.12823][0.007166,0.956419,0][-1.26283,-0.0371579,0.305196][0.991097,0.0358251,0.12823][0.007166,0.956419,0][-1.21701,-0.113126,0.447304][0.945025,0.291033,-0.149092][0.001027,0.989287,0][-1.16466,-0.656048,-0.280652][0.991097,0.0358251,0.12823][0.178476,0.949479,0][-1.13919,-0.59112,-0.412838][0.983419,0.146089,0.107443][0.186942,0.920498,0][-1.16466,-0.656048,-0.280652][0.991097,0.0358251,0.12823][0.178476,0.949479,0][-1.11742,-0.837039,-0.392118][0.965549,0.105502,0.237873][0.222039,0.955593,0][-1.11742,-0.837039,-0.392118][0.965549,0.105502,0.237873][0.222039,0.955593,0][-1.09676,-0.745232,-0.51035][0.962214,0.106287,0.250694][0.224322,0.925519,0][-1.13919,-0.59112,-0.412838][0.983419,0.146089,0.107443][0.186942,0.920498,0][-1.018,-1.01074,-0.539587][0.773982,0.487242,0.40441][0.268188,0.960671,0][-0.751813,-1.18523,-0.8388][0.773982,0.487242,0.40441][0.340493,0.955734,0][-0.750213,-1.08738,-0.959747][0.773982,0.487242,0.40441][0.339828,0.924686,0][-0.750213,-1.08738,-0.959747][0.773982,0.487242,0.40441][0.339828,0.924686,0][-1.00184,-0.917934,-0.706016][0.74804,0.546077,0.377143][0.270148,0.930262,0][-1.018,-1.01074,-0.539587][0.773982,0.487242,0.40441][0.268188,0.960671,0][-1.16466,-0.656048,-0.280652][0.991097,0.0358251,0.12823][0.178476,0.949479,0][-1.13919,-0.59112,-0.412838][0.983419,0.146089,0.107443][0.186942,0.920498,0][-1.17102,-0.472496,-0.282737][0.983419,0.146089,0.107443][0.151258,0.925088,0][-0.389798,-1.16472,-1.14456][0.440494,0.695102,0.568154][0.418013,0.916948,0][-0.750213,-1.08738,-0.959747][0.773982,0.487242,0.40441][0.339828,0.924686,0][-0.751813,-1.18523,-0.8388][0.773982,0.487242,0.40441][0.340493,0.955734,0][-0.751813,-1.18523,-0.8388][0.773982,0.487242,0.40441][0.340493,0.955734,0][-0.38287,-1.29459,-1.05917][0.550434,0.478961,0.683827][0.419833,0.947951,0][-0.389798,-1.16472,-1.14456][0.440494,0.695102,0.568154][0.418013,0.916948,0][-2.07834e-006,-1.17717,-1.1843][0.102058,0.550297,0.828708][0.496946,0.913716,0][-0.389798,-1.16472,-1.14456][0.440494,0.695102,0.568154][0.418013,0.916948,0][-0.38287,-1.29459,-1.05917][0.550434,0.478961,0.683827][0.419833,0.947951,0][-0.38287,-1.29459,-1.05917][0.550434,0.478961,0.683827][0.419833,0.947951,0][-2.11389e-006,-1.3087,-1.06229][0.0310059,0.679751,0.732787][0.49705,0.949531,0][-2.07834e-006,-1.17717,-1.1843][0.102058,0.550297,0.828708][0.496946,0.913716,0][1.17102,-0.472496,-0.282737][-0.933669,0.1949,0.300461][0.841105,0.924415,0][1.28785,0.18922,-0.348938][-0.933669,0.1949,0.300461][0.935676,0.82824,0][1.25839,0.270342,-0.493105][-0.933669,0.1949,0.300461][0.927831,0.795619,0][1.25839,0.270342,-0.493105][-0.933669,0.1949,0.300461][0.927831,0.795619,0][1.13944,-0.590196,-0.412471][-0.983489,0.145966,0.106977][0.805425,0.91967,0][1.17102,-0.472496,-0.282737][-0.933669,0.1949,0.300461][0.841105,0.924415,0][1.16491,-0.655124,-0.280284][-0.94503,0.291004,-0.149111][0.813771,0.948699,0][1.21701,-0.113126,0.447304][-0.94503,0.291004,-0.149111][0.991122,0.989287,0][1.26282,-0.0371583,0.305197][-0.94503,0.291004,-0.149111][0.985122,0.956379,0][1.26282,-0.0371583,0.305197][-0.94503,0.291004,-0.149111][0.985122,0.956379,0][1.17102,-0.472496,-0.282737][-0.933669,0.1949,0.300461][0.841105,0.924415,0][1.16491,-0.655124,-0.280284][-0.94503,0.291004,-0.149111][0.813771,0.948699,0][1.13944,-0.590196,-0.412471][-0.983489,0.145966,0.106977][0.805425,0.91967,0][1.02598,-0.852499,-0.592483][-0.920787,0.15168,0.359366][0.737355,0.925284,0][1.04214,-0.9453,-0.511903][-0.920787,0.15168,0.359366][0.739368,0.955699,0][1.04214,-0.9453,-0.511903][-0.920787,0.15168,0.359366][0.739368,0.955699,0][1.16491,-0.655124,-0.280284][-0.94503,0.291004,-0.149111][0.813771,0.948699,0][1.13944,-0.590196,-0.412471][-0.983489,0.145966,0.106977][0.805425,0.91967,0][1.04214,-0.9453,-0.511903][-0.920787,0.15168,0.359366][0.739368,0.955699,0][1.02598,-0.852499,-0.592483][-0.920787,0.15168,0.359366][0.737355,0.925284,0][0.749701,-1.0878,-0.960037][-0.844444,0.259712,0.46847][0.65414,0.923771,0][0.749701,-1.0878,-0.960037][-0.844444,0.259712,0.46847][0.65414,0.923771,0][0.751301,-1.18564,-0.83909][-0.804574,0.456442,0.379896][0.653655,0.954828,0][1.04214,-0.9453,-0.511903][-0.920787,0.15168,0.359366][0.739368,0.955699,0][1.16491,-0.655124,-0.280284][-0.94503,0.291004,-0.149111][0.813771,0.948699,0][1.17102,-0.472496,-0.282737][-0.933669,0.1949,0.300461][0.841105,0.924415,0][1.13944,-0.590196,-0.412471][-0.983489,0.145966,0.106977][0.805425,0.91967,0][0.389794,-1.16472,-1.14456][-0.550214,0.47903,0.683956][0.5759,0.916488,0][0.382867,-1.29459,-1.05917][-0.550214,0.47903,0.683956][0.574259,0.947504,0][0.751301,-1.18564,-0.83909][-0.804574,0.456442,0.379896][0.653655,0.954828,0][0.751301,-1.18564,-0.83909][-0.804574,0.456442,0.379896][0.653655,0.954828,0][0.749701,-1.0878,-0.960037][-0.844444,0.259712,0.46847][0.65414,0.923771,0][0.389794,-1.16472,-1.14456][-0.550214,0.47903,0.683956][0.5759,0.916488,0][-2.07834e-006,-1.17717,-1.1843][0.102058,0.550297,0.828708][0.496946,0.913716,0][-2.11389e-006,-1.3087,-1.06229][0.0310059,0.679751,0.732787][0.49705,0.949531,0][0.382867,-1.29459,-1.05917][-0.550214,0.47903,0.683956][0.574259,0.947504,0][0.382867,-1.29459,-1.05917][-0.550214,0.47903,0.683956][0.574259,0.947504,0][0.389794,-1.16472,-1.14456][-0.550214,0.47903,0.683956][0.5759,0.916488,0][-2.07834e-006,-1.17717,-1.1843][0.102058,0.550297,0.828708][0.496946,0.913716,0][-1.09676,-0.745232,-0.51035][0.962214,0.106287,0.250694][0.224322,0.925519,0][-1.11742,-0.837039,-0.392118][0.965549,0.105502,0.237873][0.222039,0.955593,0][-1.018,-1.01074,-0.539587][0.773982,0.487242,0.40441][0.268188,0.960671,0][-1.018,-1.01074,-0.539587][0.773982,0.487242,0.40441][0.268188,0.960671,0][-1.00184,-0.917934,-0.706016][0.74804,0.546077,0.377143][0.270148,0.930262,0][-1.09676,-0.745232,-0.51035][0.962214,0.106287,0.250694][0.224322,0.925519,0][-1.18839,-0.475625,-0.284204][-0.933434,-0.195541,-0.300772][0.151258,0.925088,0][-1.30508,0.186219,-0.352365][-0.933434,-0.195541,-0.300772][0.057143,0.82856,0][-1.27562,0.267342,-0.496533][-0.933434,-0.195541,-0.300772][0.065123,0.795989,0][-1.27562,0.267342,-0.496533][-0.933434,-0.195541,-0.300772][0.065123,0.795989,0][-1.15639,-0.59357,-0.416717][-0.983414,-0.14615,-0.107414][0.186942,0.920498,0][-1.18839,-0.475625,-0.284204][-0.933434,-0.195541,-0.300772][0.151258,0.925088,0][-1.18201,-0.658625,-0.28257][-0.944871,-0.291751,0.148659][0.178476,0.949479,0][-1.23452,-0.116382,0.447798][-0.944871,-0.291751,0.148659][0.001027,0.989287,0][-1.28034,-0.0404138,0.30569][-0.944871,-0.291751,0.148659][0.007166,0.956419,0][-1.28034,-0.0404138,0.30569][-0.944871,-0.291751,0.148659][0.007166,0.956419,0][-1.18839,-0.475625,-0.284204][-0.933434,-0.195541,-0.300772][0.151258,0.925088,0][-1.18201,-0.658625,-0.28257][-0.944871,-0.291751,0.148659][0.178476,0.949479,0][-1.15639,-0.59357,-0.416717][-0.983414,-0.14615,-0.107414][0.186942,0.920498,0][-1.1133,-0.748674,-0.515675][-0.961999,-0.107003,-0.251214][0.224322,0.925519,0][-1.13396,-0.840482,-0.397443][-0.961999,-0.107003,-0.251214][0.222039,0.955593,0][-1.13396,-0.840482,-0.397443][-0.961999,-0.107003,-0.251214][0.222039,0.955593,0][-1.18201,-0.658625,-0.28257][-0.944871,-0.291751,0.148659][0.178476,0.949479,0][-1.15639,-0.59357,-0.416717][-0.983414,-0.14615,-0.107414][0.186942,0.920498,0][-1.03195,-1.01818,-0.547101][-0.746915,-0.547242,-0.377683][0.268188,0.960671,0][-1.01578,-0.925375,-0.71353][-0.746915,-0.547242,-0.377683][0.270148,0.930262,0][-0.75934,-1.09895,-0.969174][-0.746915,-0.547242,-0.377683][0.339828,0.924686,0][-0.75934,-1.09895,-0.969174][-0.746915,-0.547242,-0.377683][0.339828,0.924686,0][-0.76094,-1.1968,-0.848227][-0.772573,-0.488587,-0.40548][0.340493,0.955734,0][-1.03195,-1.01818,-0.547101][-0.746915,-0.547242,-0.377683][0.268188,0.960671,0][-1.18201,-0.658625,-0.28257][-0.944871,-0.291751,0.148659][0.178476,0.949479,0][-1.18839,-0.475625,-0.284204][-0.933434,-0.195541,-0.300772][0.151258,0.925088,0][-1.15639,-0.59357,-0.416717][-0.983414,-0.14615,-0.107414][0.186942,0.920498,0][-0.393512,-1.17475,-1.15855][-0.549323,-0.479316,-0.684471][0.418013,0.916948,0][-0.386585,-1.30461,-1.07316][-0.549323,-0.479316,-0.684471][0.419833,0.947951,0][-0.76094,-1.1968,-0.848227][-0.772573,-0.488587,-0.40548][0.340493,0.955734,0][-0.76094,-1.1968,-0.848227][-0.772573,-0.488587,-0.40548][0.340493,0.955734,0][-0.75934,-1.09895,-0.969174][-0.746915,-0.547242,-0.377683][0.339828,0.924686,0][-0.393512,-1.17475,-1.15855][-0.549323,-0.479316,-0.684471][0.418013,0.916948,0][-2.07883e-006,-1.18824,-1.19822][-0.0324067,-0.679717,-0.732758][0.496946,0.913716,0][-2.11438e-006,-1.31977,-1.07621][-0.0324067,-0.679717,-0.732758][0.49705,0.949531,0][-0.386585,-1.30461,-1.07316][-0.549323,-0.479316,-0.684471][0.419833,0.947951,0][-0.386585,-1.30461,-1.07316][-0.549323,-0.479316,-0.684471][0.419833,0.947951,0][-0.393512,-1.17475,-1.15855][-0.549323,-0.479316,-0.684471][0.418013,0.916948,0][-2.07883e-006,-1.18824,-1.19822][-0.0324067,-0.679717,-0.732758][0.496946,0.913716,0][1.18839,-0.475625,-0.284204][0.983414,-0.14615,-0.107413][0.841105,0.924415,0][1.15639,-0.59357,-0.416717][0.983414,-0.14615,-0.107413][0.805425,0.91967,0][1.27561,0.26734,-0.496533][0.983414,-0.14615,-0.107413][0.927831,0.795619,0][1.27561,0.26734,-0.496533][0.983414,-0.14615,-0.107413][0.927831,0.795619,0][1.30507,0.186218,-0.352365][0.933434,-0.195542,-0.300772][0.935676,0.82824,0][1.18839,-0.475625,-0.284204][0.983414,-0.14615,-0.107413][0.841105,0.924415,0][1.182,-0.658625,-0.28257][0.991116,-0.0357465,-0.128109][0.813771,0.948699,0][1.18839,-0.475625,-0.284204][0.983414,-0.14615,-0.107413][0.841105,0.924415,0][1.28034,-0.0404142,0.305691][0.991116,-0.0357465,-0.128109][0.985122,0.956379,0][1.28034,-0.0404142,0.305691][0.991116,-0.0357465,-0.128109][0.985122,0.956379,0][1.23452,-0.116382,0.447798][0.944871,-0.291751,0.14866][0.991122,0.989287,0][1.182,-0.658625,-0.28257][0.991116,-0.0357465,-0.128109][0.813771,0.948699,0][1.15639,-0.59357,-0.416717][0.983414,-0.14615,-0.107413][0.805425,0.91967,0][1.182,-0.658625,-0.28257][0.991116,-0.0357465,-0.128109][0.813771,0.948699,0][1.05698,-0.951705,-0.518499][0.944751,-0.185421,-0.270304][0.739368,0.955699,0][1.05698,-0.951705,-0.518499][0.944751,-0.185421,-0.270304][0.739368,0.955699,0][1.04082,-0.858904,-0.599079][0.920089,-0.152903,-0.360635][0.737355,0.925284,0][1.15639,-0.59357,-0.416717][0.983414,-0.14615,-0.107413][0.805425,0.91967,0][1.05698,-0.951705,-0.518499][0.944751,-0.185421,-0.270304][0.739368,0.955699,0][0.760936,-1.1968,-0.848227][0.803308,-0.45778,-0.380965][0.653655,0.954828,0][0.759336,-1.09895,-0.969174][0.803308,-0.45778,-0.380965][0.65414,0.923771,0][0.759336,-1.09895,-0.969174][0.803308,-0.45778,-0.380965][0.65414,0.923771,0][1.04082,-0.858904,-0.599079][0.920089,-0.152903,-0.360635][0.737355,0.925284,0][1.05698,-0.951705,-0.518499][0.944751,-0.185421,-0.270304][0.739368,0.955699,0][1.182,-0.658625,-0.28257][0.991116,-0.0357465,-0.128109][0.813771,0.948699,0][1.15639,-0.59357,-0.416717][0.983414,-0.14615,-0.107413][0.805425,0.91967,0][1.18839,-0.475625,-0.284204][0.983414,-0.14615,-0.107413][0.841105,0.924415,0][0.393508,-1.17475,-1.15855][0.438575,-0.695844,-0.568729][0.5759,0.916488,0][0.759336,-1.09895,-0.969174][0.803308,-0.45778,-0.380965][0.65414,0.923771,0][0.760936,-1.1968,-0.848227][0.803308,-0.45778,-0.380965][0.653655,0.954828,0][0.760936,-1.1968,-0.848227][0.803308,-0.45778,-0.380965][0.653655,0.954828,0][0.386581,-1.30461,-1.07316][0.549323,-0.479316,-0.684471][0.574259,0.947504,0][0.393508,-1.17475,-1.15855][0.438575,-0.695844,-0.568729][0.5759,0.916488,0][-2.07883e-006,-1.18824,-1.19822][-0.0324067,-0.679717,-0.732758][0.496946,0.913716,0][0.393508,-1.17475,-1.15855][0.438575,-0.695844,-0.568729][0.5759,0.916488,0][0.386581,-1.30461,-1.07316][0.549323,-0.479316,-0.684471][0.574259,0.947504,0][0.386581,-1.30461,-1.07316][0.549323,-0.479316,-0.684471][0.574259,0.947504,0][-2.11438e-006,-1.31977,-1.07621][-0.0324067,-0.679717,-0.732758][0.49705,0.949531,0][-2.07883e-006,-1.18824,-1.19822][-0.0324067,-0.679717,-0.732758][0.496946,0.913716,0][-1.1133,-0.748674,-0.515675][-0.961999,-0.107003,-0.251214][0.224322,0.925519,0][-1.01578,-0.925375,-0.71353][-0.746915,-0.547242,-0.377683][0.270148,0.930262,0][-1.03195,-1.01818,-0.547101][-0.746915,-0.547242,-0.377683][0.268188,0.960671,0][-1.03195,-1.01818,-0.547101][-0.746915,-0.547242,-0.377683][0.268188,0.960671,0][-1.13396,-0.840482,-0.397443][-0.961999,-0.107003,-0.251214][0.222039,0.955593,0][-1.1133,-0.748674,-0.515675][-0.961999,-0.107003,-0.251214][0.224322,0.925519,0][-1.13919,-0.59112,-0.412838][0.983419,0.146089,0.107443][0.186942,0.920498,0][-1.15639,-0.59357,-0.416717][-0.983414,-0.14615,-0.107414][0.186942,0.920498,0][-1.27562,0.267342,-0.496533][-0.933434,-0.195541,-0.300772][0.065123,0.795989,0][-1.27562,0.267342,-0.496533][-0.933434,-0.195541,-0.300772][0.065123,0.795989,0][-1.25839,0.270344,-0.493106][0.983419,0.146089,0.107443][0.065123,0.795989,0][-1.13919,-0.59112,-0.412838][0.983419,0.146089,0.107443][0.186942,0.920498,0][-1.28785,0.189221,-0.348938][0.933669,0.194899,0.300459][0.057143,0.82856,0][-1.30508,0.186219,-0.352365][-0.933434,-0.195541,-0.300772][0.057143,0.82856,0][-1.18839,-0.475625,-0.284204][-0.933434,-0.195541,-0.300772][0.151258,0.925088,0][-1.18839,-0.475625,-0.284204][-0.933434,-0.195541,-0.300772][0.151258,0.925088,0][-1.17102,-0.472496,-0.282737][0.983419,0.146089,0.107443][0.151258,0.925088,0][-1.28785,0.189221,-0.348938][0.933669,0.194899,0.300459][0.057143,0.82856,0][-1.25839,0.270344,-0.493106][0.983419,0.146089,0.107443][0.065123,0.795989,0][-1.27562,0.267342,-0.496533][-0.933434,-0.195541,-0.300772][0.065123,0.795989,0][-1.30508,0.186219,-0.352365][-0.933434,-0.195541,-0.300772][0.057143,0.82856,0][-1.30508,0.186219,-0.352365][-0.933434,-0.195541,-0.300772][0.057143,0.82856,0][-1.28785,0.189221,-0.348938][0.933669,0.194899,0.300459][0.057143,0.82856,0][-1.25839,0.270344,-0.493106][0.983419,0.146089,0.107443][0.065123,0.795989,0][-1.17102,-0.472496,-0.282737][0.983419,0.146089,0.107443][0.151258,0.925088,0][-1.18839,-0.475625,-0.284204][-0.933434,-0.195541,-0.300772][0.151258,0.925088,0][-1.28034,-0.0404138,0.30569][-0.944871,-0.291751,0.148659][0.007166,0.956419,0][-1.28034,-0.0404138,0.30569][-0.944871,-0.291751,0.148659][0.007166,0.956419,0][-1.26283,-0.0371579,0.305196][0.991097,0.0358251,0.12823][0.007166,0.956419,0][-1.17102,-0.472496,-0.282737][0.983419,0.146089,0.107443][0.151258,0.925088,0][-1.21701,-0.113126,0.447304][0.945025,0.291033,-0.149092][0.001027,0.989287,0][-1.23452,-0.116382,0.447798][-0.944871,-0.291751,0.148659][0.001027,0.989287,0][-1.18201,-0.658625,-0.28257][-0.944871,-0.291751,0.148659][0.178476,0.949479,0][-1.18201,-0.658625,-0.28257][-0.944871,-0.291751,0.148659][0.178476,0.949479,0][-1.16466,-0.656048,-0.280652][0.991097,0.0358251,0.12823][0.178476,0.949479,0][-1.21701,-0.113126,0.447304][0.945025,0.291033,-0.149092][0.001027,0.989287,0][-1.26283,-0.0371579,0.305196][0.991097,0.0358251,0.12823][0.007166,0.956419,0][-1.28034,-0.0404138,0.30569][-0.944871,-0.291751,0.148659][0.007166,0.956419,0][-1.23452,-0.116382,0.447798][-0.944871,-0.291751,0.148659][0.001027,0.989287,0][-1.23452,-0.116382,0.447798][-0.944871,-0.291751,0.148659][0.001027,0.989287,0][-1.21701,-0.113126,0.447304][0.945025,0.291033,-0.149092][0.001027,0.989287,0][-1.26283,-0.0371579,0.305196][0.991097,0.0358251,0.12823][0.007166,0.956419,0][-1.16466,-0.656048,-0.280652][0.991097,0.0358251,0.12823][0.178476,0.949479,0][-1.18201,-0.658625,-0.28257][-0.944871,-0.291751,0.148659][0.178476,0.949479,0][-1.13396,-0.840482,-0.397443][-0.961999,-0.107003,-0.251214][0.222039,0.955593,0][-1.13396,-0.840482,-0.397443][-0.961999,-0.107003,-0.251214][0.222039,0.955593,0][-1.11742,-0.837039,-0.392118][0.965549,0.105502,0.237873][0.222039,0.955593,0][-1.16466,-0.656048,-0.280652][0.991097,0.0358251,0.12823][0.178476,0.949479,0][-1.09676,-0.745232,-0.51035][0.962214,0.106287,0.250694][0.224322,0.925519,0][-1.1133,-0.748674,-0.515675][-0.961999,-0.107003,-0.251214][0.224322,0.925519,0][-1.15639,-0.59357,-0.416717][-0.983414,-0.14615,-0.107414][0.186942,0.920498,0][-1.15639,-0.59357,-0.416717][-0.983414,-0.14615,-0.107414][0.186942,0.920498,0][-1.13919,-0.59112,-0.412838][0.983419,0.146089,0.107443][0.186942,0.920498,0][-1.09676,-0.745232,-0.51035][0.962214,0.106287,0.250694][0.224322,0.925519,0][-1.018,-1.01074,-0.539587][0.773982,0.487242,0.40441][0.268188,0.960671,0][-1.03195,-1.01818,-0.547101][-0.746915,-0.547242,-0.377683][0.268188,0.960671,0][-0.76094,-1.1968,-0.848227][-0.772573,-0.488587,-0.40548][0.340493,0.955734,0][-0.76094,-1.1968,-0.848227][-0.772573,-0.488587,-0.40548][0.340493,0.955734,0][-0.751813,-1.18523,-0.8388][0.773982,0.487242,0.40441][0.340493,0.955734,0][-1.018,-1.01074,-0.539587][0.773982,0.487242,0.40441][0.268188,0.960671,0][-0.750213,-1.08738,-0.959747][0.773982,0.487242,0.40441][0.339828,0.924686,0][-0.75934,-1.09895,-0.969174][-0.746915,-0.547242,-0.377683][0.339828,0.924686,0][-1.01578,-0.925375,-0.71353][-0.746915,-0.547242,-0.377683][0.270148,0.930262,0][-1.01578,-0.925375,-0.71353][-0.746915,-0.547242,-0.377683][0.270148,0.930262,0][-1.00184,-0.917934,-0.706016][0.74804,0.546077,0.377143][0.270148,0.930262,0][-0.750213,-1.08738,-0.959747][0.773982,0.487242,0.40441][0.339828,0.924686,0][-0.389798,-1.16472,-1.14456][0.440494,0.695102,0.568154][0.418013,0.916948,0][-0.393512,-1.17475,-1.15855][-0.549323,-0.479316,-0.684471][0.418013,0.916948,0][-0.75934,-1.09895,-0.969174][-0.746915,-0.547242,-0.377683][0.339828,0.924686,0][-0.75934,-1.09895,-0.969174][-0.746915,-0.547242,-0.377683][0.339828,0.924686,0][-0.750213,-1.08738,-0.959747][0.773982,0.487242,0.40441][0.339828,0.924686,0][-0.389798,-1.16472,-1.14456][0.440494,0.695102,0.568154][0.418013,0.916948,0][-0.751813,-1.18523,-0.8388][0.773982,0.487242,0.40441][0.340493,0.955734,0][-0.76094,-1.1968,-0.848227][-0.772573,-0.488587,-0.40548][0.340493,0.955734,0][-0.386585,-1.30461,-1.07316][-0.549323,-0.479316,-0.684471][0.419833,0.947951,0][-0.386585,-1.30461,-1.07316][-0.549323,-0.479316,-0.684471][0.419833,0.947951,0][-0.38287,-1.29459,-1.05917][0.550434,0.478961,0.683827][0.419833,0.947951,0][-0.751813,-1.18523,-0.8388][0.773982,0.487242,0.40441][0.340493,0.955734,0][-2.07834e-006,-1.17717,-1.1843][0.102058,0.550297,0.828708][0.496946,0.913716,0][-2.07883e-006,-1.18824,-1.19822][-0.0324067,-0.679717,-0.732758][0.496946,0.913716,0][-0.393512,-1.17475,-1.15855][-0.549323,-0.479316,-0.684471][0.418013,0.916948,0][-0.393512,-1.17475,-1.15855][-0.549323,-0.479316,-0.684471][0.418013,0.916948,0][-0.389798,-1.16472,-1.14456][0.440494,0.695102,0.568154][0.418013,0.916948,0][-2.07834e-006,-1.17717,-1.1843][0.102058,0.550297,0.828708][0.496946,0.913716,0][-0.38287,-1.29459,-1.05917][0.550434,0.478961,0.683827][0.419833,0.947951,0][-0.386585,-1.30461,-1.07316][-0.549323,-0.479316,-0.684471][0.419833,0.947951,0][-2.11438e-006,-1.31977,-1.07621][-0.0324067,-0.679717,-0.732758][0.49705,0.949531,0][-2.11438e-006,-1.31977,-1.07621][-0.0324067,-0.679717,-0.732758][0.49705,0.949531,0][-2.11389e-006,-1.3087,-1.06229][0.0310059,0.679751,0.732787][0.49705,0.949531,0][-0.38287,-1.29459,-1.05917][0.550434,0.478961,0.683827][0.419833,0.947951,0][1.28785,0.18922,-0.348938][-0.933669,0.1949,0.300461][0.935676,0.82824,0][1.30507,0.186218,-0.352365][0.933434,-0.195542,-0.300772][0.935676,0.82824,0][1.27561,0.26734,-0.496533][0.983414,-0.14615,-0.107413][0.927831,0.795619,0][1.27561,0.26734,-0.496533][0.983414,-0.14615,-0.107413][0.927831,0.795619,0][1.25839,0.270342,-0.493105][-0.933669,0.1949,0.300461][0.927831,0.795619,0][1.28785,0.18922,-0.348938][-0.933669,0.1949,0.300461][0.935676,0.82824,0][1.17102,-0.472496,-0.282737][-0.933669,0.1949,0.300461][0.841105,0.924415,0][1.18839,-0.475625,-0.284204][0.983414,-0.14615,-0.107413][0.841105,0.924415,0][1.30507,0.186218,-0.352365][0.933434,-0.195542,-0.300772][0.935676,0.82824,0][1.30507,0.186218,-0.352365][0.933434,-0.195542,-0.300772][0.935676,0.82824,0][1.28785,0.18922,-0.348938][-0.933669,0.1949,0.300461][0.935676,0.82824,0][1.17102,-0.472496,-0.282737][-0.933669,0.1949,0.300461][0.841105,0.924415,0][1.25839,0.270342,-0.493105][-0.933669,0.1949,0.300461][0.927831,0.795619,0][1.27561,0.26734,-0.496533][0.983414,-0.14615,-0.107413][0.927831,0.795619,0][1.15639,-0.59357,-0.416717][0.983414,-0.14615,-0.107413][0.805425,0.91967,0][1.15639,-0.59357,-0.416717][0.983414,-0.14615,-0.107413][0.805425,0.91967,0][1.13944,-0.590196,-0.412471][-0.983489,0.145966,0.106977][0.805425,0.91967,0][1.25839,0.270342,-0.493105][-0.933669,0.1949,0.300461][0.927831,0.795619,0][1.21701,-0.113126,0.447304][-0.94503,0.291004,-0.149111][0.991122,0.989287,0][1.23452,-0.116382,0.447798][0.944871,-0.291751,0.14866][0.991122,0.989287,0][1.28034,-0.0404142,0.305691][0.991116,-0.0357465,-0.128109][0.985122,0.956379,0][1.28034,-0.0404142,0.305691][0.991116,-0.0357465,-0.128109][0.985122,0.956379,0][1.26282,-0.0371583,0.305197][-0.94503,0.291004,-0.149111][0.985122,0.956379,0][1.21701,-0.113126,0.447304][-0.94503,0.291004,-0.149111][0.991122,0.989287,0][1.16491,-0.655124,-0.280284][-0.94503,0.291004,-0.149111][0.813771,0.948699,0][1.182,-0.658625,-0.28257][0.991116,-0.0357465,-0.128109][0.813771,0.948699,0][1.23452,-0.116382,0.447798][0.944871,-0.291751,0.14866][0.991122,0.989287,0][1.23452,-0.116382,0.447798][0.944871,-0.291751,0.14866][0.991122,0.989287,0][1.21701,-0.113126,0.447304][-0.94503,0.291004,-0.149111][0.991122,0.989287,0][1.16491,-0.655124,-0.280284][-0.94503,0.291004,-0.149111][0.813771,0.948699,0][1.26282,-0.0371583,0.305197][-0.94503,0.291004,-0.149111][0.985122,0.956379,0][1.28034,-0.0404142,0.305691][0.991116,-0.0357465,-0.128109][0.985122,0.956379,0][1.18839,-0.475625,-0.284204][0.983414,-0.14615,-0.107413][0.841105,0.924415,0][1.18839,-0.475625,-0.284204][0.983414,-0.14615,-0.107413][0.841105,0.924415,0][1.17102,-0.472496,-0.282737][-0.933669,0.1949,0.300461][0.841105,0.924415,0][1.26282,-0.0371583,0.305197][-0.94503,0.291004,-0.149111][0.985122,0.956379,0][1.13944,-0.590196,-0.412471][-0.983489,0.145966,0.106977][0.805425,0.91967,0][1.15639,-0.59357,-0.416717][0.983414,-0.14615,-0.107413][0.805425,0.91967,0][1.04082,-0.858904,-0.599079][0.920089,-0.152903,-0.360635][0.737355,0.925284,0][1.04082,-0.858904,-0.599079][0.920089,-0.152903,-0.360635][0.737355,0.925284,0][1.02598,-0.852499,-0.592483][-0.920787,0.15168,0.359366][0.737355,0.925284,0][1.13944,-0.590196,-0.412471][-0.983489,0.145966,0.106977][0.805425,0.91967,0][1.04214,-0.9453,-0.511903][-0.920787,0.15168,0.359366][0.739368,0.955699,0][1.05698,-0.951705,-0.518499][0.944751,-0.185421,-0.270304][0.739368,0.955699,0][1.182,-0.658625,-0.28257][0.991116,-0.0357465,-0.128109][0.813771,0.948699,0][1.182,-0.658625,-0.28257][0.991116,-0.0357465,-0.128109][0.813771,0.948699,0][1.16491,-0.655124,-0.280284][-0.94503,0.291004,-0.149111][0.813771,0.948699,0][1.04214,-0.9453,-0.511903][-0.920787,0.15168,0.359366][0.739368,0.955699,0][1.02598,-0.852499,-0.592483][-0.920787,0.15168,0.359366][0.737355,0.925284,0][1.04082,-0.858904,-0.599079][0.920089,-0.152903,-0.360635][0.737355,0.925284,0][0.759336,-1.09895,-0.969174][0.803308,-0.45778,-0.380965][0.65414,0.923771,0][0.759336,-1.09895,-0.969174][0.803308,-0.45778,-0.380965][0.65414,0.923771,0][0.749701,-1.0878,-0.960037][-0.844444,0.259712,0.46847][0.65414,0.923771,0][1.02598,-0.852499,-0.592483][-0.920787,0.15168,0.359366][0.737355,0.925284,0][0.751301,-1.18564,-0.83909][-0.804574,0.456442,0.379896][0.653655,0.954828,0][0.760936,-1.1968,-0.848227][0.803308,-0.45778,-0.380965][0.653655,0.954828,0][1.05698,-0.951705,-0.518499][0.944751,-0.185421,-0.270304][0.739368,0.955699,0][1.05698,-0.951705,-0.518499][0.944751,-0.185421,-0.270304][0.739368,0.955699,0][1.04214,-0.9453,-0.511903][-0.920787,0.15168,0.359366][0.739368,0.955699,0][0.751301,-1.18564,-0.83909][-0.804574,0.456442,0.379896][0.653655,0.954828,0][0.382867,-1.29459,-1.05917][-0.550214,0.47903,0.683956][0.574259,0.947504,0][0.386581,-1.30461,-1.07316][0.549323,-0.479316,-0.684471][0.574259,0.947504,0][0.760936,-1.1968,-0.848227][0.803308,-0.45778,-0.380965][0.653655,0.954828,0][0.760936,-1.1968,-0.848227][0.803308,-0.45778,-0.380965][0.653655,0.954828,0][0.751301,-1.18564,-0.83909][-0.804574,0.456442,0.379896][0.653655,0.954828,0][0.382867,-1.29459,-1.05917][-0.550214,0.47903,0.683956][0.574259,0.947504,0][0.749701,-1.0878,-0.960037][-0.844444,0.259712,0.46847][0.65414,0.923771,0][0.759336,-1.09895,-0.969174][0.803308,-0.45778,-0.380965][0.65414,0.923771,0][0.393508,-1.17475,-1.15855][0.438575,-0.695844,-0.568729][0.5759,0.916488,0][0.393508,-1.17475,-1.15855][0.438575,-0.695844,-0.568729][0.5759,0.916488,0][0.389794,-1.16472,-1.14456][-0.550214,0.47903,0.683956][0.5759,0.916488,0][0.749701,-1.0878,-0.960037][-0.844444,0.259712,0.46847][0.65414,0.923771,0][-2.11389e-006,-1.3087,-1.06229][0.0310059,0.679751,0.732787][0.49705,0.949531,0][-2.11438e-006,-1.31977,-1.07621][-0.0324067,-0.679717,-0.732758][0.49705,0.949531,0][0.386581,-1.30461,-1.07316][0.549323,-0.479316,-0.684471][0.574259,0.947504,0][0.386581,-1.30461,-1.07316][0.549323,-0.479316,-0.684471][0.574259,0.947504,0][0.382867,-1.29459,-1.05917][-0.550214,0.47903,0.683956][0.574259,0.947504,0][-2.11389e-006,-1.3087,-1.06229][0.0310059,0.679751,0.732787][0.49705,0.949531,0][0.389794,-1.16472,-1.14456][-0.550214,0.47903,0.683956][0.5759,0.916488,0][0.393508,-1.17475,-1.15855][0.438575,-0.695844,-0.568729][0.5759,0.916488,0][-2.07883e-006,-1.18824,-1.19822][-0.0324067,-0.679717,-0.732758][0.496946,0.913716,0][-2.07883e-006,-1.18824,-1.19822][-0.0324067,-0.679717,-0.732758][0.496946,0.913716,0][-2.07834e-006,-1.17717,-1.1843][0.102058,0.550297,0.828708][0.496946,0.913716,0][0.389794,-1.16472,-1.14456][-0.550214,0.47903,0.683956][0.5759,0.916488,0][-1.11742,-0.837039,-0.392118][0.965549,0.105502,0.237873][0.222039,0.955593,0][-1.13396,-0.840482,-0.397443][-0.961999,-0.107003,-0.251214][0.222039,0.955593,0][-1.03195,-1.01818,-0.547101][-0.746915,-0.547242,-0.377683][0.268188,0.960671,0][-1.03195,-1.01818,-0.547101][-0.746915,-0.547242,-0.377683][0.268188,0.960671,0][-1.018,-1.01074,-0.539587][0.773982,0.487242,0.40441][0.268188,0.960671,0][-1.11742,-0.837039,-0.392118][0.965549,0.105502,0.237873][0.222039,0.955593,0][-1.00184,-0.917934,-0.706016][0.74804,0.546077,0.377143][0.270148,0.930262,0][-1.01578,-0.925375,-0.71353][-0.746915,-0.547242,-0.377683][0.270148,0.930262,0][-1.1133,-0.748674,-0.515675][-0.961999,-0.107003,-0.251214][0.224322,0.925519,0][-1.1133,-0.748674,-0.515675][-0.961999,-0.107003,-0.251214][0.224322,0.925519,0][-1.09676,-0.745232,-0.51035][0.962214,0.106287,0.250694][0.224322,0.925519,0][-1.00184,-0.917934,-0.706016][0.74804,0.546077,0.377143][0.270148,0.930262,0][-1.12284,-0.792714,-0.334698][-0.112681,-0.588523,0.80059][0.72998,0.021911,0][-1.16965,-0.807468,-0.352133][-0.112681,-0.588523,0.80059][0.729979,0.007349,0][-1.14505,-0.851425,-0.380984][-0.112681,-0.588523,0.80059][0.746208,0.007348,0][-1.14505,-0.851425,-0.380984][-0.112681,-0.588523,0.80059][0.746208,0.007348,0][-1.09824,-0.836672,-0.363549][-0.112695,-0.588518,0.800591][0.746209,0.02191,0][-1.12284,-0.792714,-0.334698][-0.112681,-0.588523,0.80059][0.72998,0.021911,0][-1.12036,-0.779784,-0.352288][-0.423751,0.757244,0.497008][0.723838,0.021911,0][-1.16718,-0.794538,-0.369723][-0.423751,0.757244,0.497008][0.723838,0.00735,0][-1.16965,-0.807468,-0.352133][-0.112681,-0.588523,0.80059][0.729979,0.007349,0][-1.16965,-0.807468,-0.352133][-0.112681,-0.588523,0.80059][0.729979,0.007349,0][-1.12284,-0.792714,-0.334698][-0.112681,-0.588523,0.80059][0.72998,0.021911,0][-1.12036,-0.779784,-0.352288][-0.423751,0.757244,0.497008][0.723838,0.021911,0][-0.971482,-1.00753,-0.860722][0.551279,-0.758736,-0.347003][0.985303,0.005639,0][-0.924986,-0.984487,-0.837238][0.551279,-0.758736,-0.347003][0.985303,0.03282,0][-0.946965,-1.09928,-0.621155][0.551279,-0.758736,-0.347003][0.873602,0.03282,0][-0.946965,-1.09928,-0.621155][0.551279,-0.758736,-0.347003][0.873602,0.03282,0][-0.99346,-1.12232,-0.644638][0.551294,-0.758726,-0.347001][0.873601,0.00564,0][-0.971482,-1.00753,-0.860722][0.551279,-0.758736,-0.347003][0.985303,0.005639,0][-1.12036,-0.779784,-0.352288][-0.423751,0.757244,0.497008][0.886184,0.271029,0][-1.12284,-0.792714,-0.334698][-0.112681,-0.588523,0.80059][0.873602,0.27103,0][-1.09824,-0.836672,-0.363549][-0.112695,-0.588518,0.800591][0.873601,0.237786,0][-1.09824,-0.836672,-0.363549][-0.112695,-0.588518,0.800591][0.873601,0.237786,0][-1.09576,-0.823741,-0.381139][0.898753,0.283249,0.334684][0.886184,0.237787,0][-1.12036,-0.779784,-0.352288][-0.423751,0.757244,0.497008][0.886184,0.271029,0][-1.16965,-0.807468,-0.352133][-0.112681,-0.588523,0.80059][0.985552,0.27094,0][-1.16718,-0.794538,-0.369723][-0.423751,0.757244,0.497008][0.97297,0.270939,0][-1.14258,-0.838494,-0.398574][-0.898747,-0.283274,-0.33468][0.97297,0.237698,0][-1.14258,-0.838494,-0.398574][-0.898747,-0.283274,-0.33468][0.97297,0.237698,0][-1.14505,-0.851425,-0.380984][-0.112681,-0.588523,0.80059][0.985552,0.237698,0][-1.16965,-0.807468,-0.352133][-0.112681,-0.588523,0.80059][0.985552,0.27094,0][-1.12555,-0.749561,-0.519552][-0.898761,-0.283214,-0.334692][0.886433,0.237698,0][-1.11442,-0.756688,-0.543409][-0.898761,-0.283214,-0.334692][0.877178,0.225116,0][-1.13509,-0.864641,-0.396557][-0.898761,-0.283214,-0.334692][0.982224,0.225116,0][-1.13509,-0.864641,-0.396557][-0.898761,-0.283214,-0.334692][0.982224,0.225116,0][-1.14258,-0.838494,-0.398574][-0.898747,-0.283274,-0.33468][0.97297,0.237698,0][-1.12555,-0.749561,-0.519552][-0.898761,-0.283214,-0.334692][0.886433,0.237698,0][-1.13509,-0.864641,-0.396557][-0.898761,-0.283214,-0.334692][0.982224,0.225116,0][-1.14505,-0.851425,-0.380984][-0.112681,-0.588523,0.80059][0.985552,0.237698,0][-1.14258,-0.838494,-0.398574][-0.898747,-0.283274,-0.33468][0.97297,0.237698,0][-1.09824,-0.836672,-0.363549][-0.112695,-0.588518,0.800591][0.746209,0.02191,0][-1.14505,-0.851425,-0.380984][-0.112681,-0.588523,0.80059][0.746208,0.007348,0][-1.13509,-0.864641,-0.396557][-0.898761,-0.283214,-0.334692][0.752562,0.007346,0][-1.13509,-0.864641,-0.396557][-0.898761,-0.283214,-0.334692][0.752562,0.007346,0][-1.08828,-0.849889,-0.379122][-0.000589961,-0.762611,0.646857][0.752563,0.02191,0][-1.09824,-0.836672,-0.363549][-0.112695,-0.588518,0.800591][0.746209,0.02191,0][-1.08828,-0.849889,-0.379122][-0.000589961,-0.762611,0.646857][0.87693,0.225204,0][-1.09576,-0.823741,-0.381139][0.898753,0.283249,0.334684][0.886184,0.237787,0][-1.09824,-0.836672,-0.363549][-0.112695,-0.588518,0.800591][0.873601,0.237786,0][-1.06761,-0.741935,-0.525974][0.898743,0.283242,0.334717][0.981975,0.225204,0][-1.07874,-0.734808,-0.502117][0.898743,0.283242,0.334717][0.972721,0.237786,0][-1.09576,-0.823741,-0.381139][0.898753,0.283249,0.334684][0.886184,0.237787,0][-1.09576,-0.823741,-0.381139][0.898753,0.283249,0.334684][0.886184,0.237787,0][-1.08828,-0.849889,-0.379122][-0.000589961,-0.762611,0.646857][0.87693,0.225204,0][-1.06761,-0.741935,-0.525974][0.898743,0.283242,0.334717][0.981975,0.225204,0][-1.01419,-0.931209,-0.750702][-0.950979,-0.222408,-0.214879][0.873851,0.090547,0][-0.971482,-1.00753,-0.860722][0.551279,-0.758736,-0.347003][0.87385,0.032829,0][-0.99346,-1.12232,-0.644638][0.551294,-0.758726,-0.347001][0.985552,0.032828,0][-0.99346,-1.12232,-0.644638][0.551294,-0.758726,-0.347001][0.985552,0.032828,0][-1.03617,-1.046,-0.548255][-0.943983,-0.23241,-0.234268][0.985552,0.090547,0][-1.01419,-0.931209,-0.750702][-0.950979,-0.222408,-0.214879][0.873851,0.090547,0][-0.989355,-1.03125,-0.53082][0.0135795,-0.780965,0.624427][0.818287,0.021904,0][-1.03617,-1.046,-0.548255][-0.943983,-0.23241,-0.234268][0.818286,0.00734,0][-0.99346,-1.12232,-0.644638][0.551294,-0.758726,-0.347001][0.846467,0.007337,0][-0.99346,-1.12232,-0.644638][0.551294,-0.758726,-0.347001][0.846467,0.007337,0][-0.946965,-1.09928,-0.621155][0.551279,-0.758736,-0.347003][0.843835,0.023044,0][-0.989355,-1.03125,-0.53082][0.0135795,-0.780965,0.624427][0.818287,0.021904,0][-0.924986,-0.984487,-0.837238][0.551279,-0.758736,-0.347003][0.985303,0.03282,0][-0.967377,-0.916454,-0.733268][0.944394,0.231319,0.233689][0.985304,0.090636,0][-0.989355,-1.03125,-0.53082][0.0135795,-0.780965,0.624427][0.873602,0.090635,0][-0.989355,-1.03125,-0.53082][0.0135795,-0.780965,0.624427][0.873602,0.090635,0][-0.946965,-1.09928,-0.621155][0.551279,-0.758736,-0.347003][0.873602,0.03282,0][-0.924986,-0.984487,-0.837238][0.551279,-0.758736,-0.347003][0.985303,0.03282,0][-1.12036,-0.779784,-0.352288][-0.423751,0.757244,0.497008][0.723838,0.021911,0][-1.09576,-0.823741,-0.381139][0.898753,0.283249,0.334684][0.707612,0.02191,0][-1.14258,-0.838494,-0.398574][-0.898747,-0.283274,-0.33468][0.707612,0.007351,0][-1.14258,-0.838494,-0.398574][-0.898747,-0.283274,-0.33468][0.707612,0.007351,0][-1.16718,-0.794538,-0.369723][-0.423751,0.757244,0.497008][0.723838,0.00735,0][-1.12036,-0.779784,-0.352288][-0.423751,0.757244,0.497008][0.723838,0.021911,0][-1.07874,-0.734808,-0.502117][0.898743,0.283242,0.334717][0.665375,0.021909,0][-1.12555,-0.749561,-0.519552][-0.898761,-0.283214,-0.334692][0.665375,0.007351,0][-1.14258,-0.838494,-0.398574][-0.898747,-0.283274,-0.33468][0.707612,0.007351,0][-1.14258,-0.838494,-0.398574][-0.898747,-0.283274,-0.33468][0.707612,0.007351,0][-1.09576,-0.823741,-0.381139][0.898753,0.283249,0.334684][0.707612,0.02191,0][-1.07874,-0.734808,-0.502117][0.898743,0.283242,0.334717][0.665375,0.021909,0][-0.967377,-0.916454,-0.733268][0.944394,0.231319,0.233689][0.985304,0.090636,0][-1.06761,-0.741935,-0.525974][0.898743,0.283242,0.334717][0.981975,0.225204,0][-1.08828,-0.849889,-0.379122][-0.000589961,-0.762611,0.646857][0.87693,0.225204,0][-1.08828,-0.849889,-0.379122][-0.000589961,-0.762611,0.646857][0.87693,0.225204,0][-0.989355,-1.03125,-0.53082][0.0135795,-0.780965,0.624427][0.873602,0.090635,0][-0.967377,-0.916454,-0.733268][0.944394,0.231319,0.233689][0.985304,0.090636,0][-1.11442,-0.756688,-0.543409][-0.898761,-0.283214,-0.334692][0.877178,0.225116,0][-1.01419,-0.931209,-0.750702][-0.950979,-0.222408,-0.214879][0.873851,0.090547,0][-1.03617,-1.046,-0.548255][-0.943983,-0.23241,-0.234268][0.985552,0.090547,0][-1.03617,-1.046,-0.548255][-0.943983,-0.23241,-0.234268][0.985552,0.090547,0][-1.13509,-0.864641,-0.396557][-0.898761,-0.283214,-0.334692][0.982224,0.225116,0][-1.11442,-0.756688,-0.543409][-0.898761,-0.283214,-0.334692][0.877178,0.225116,0][-0.989355,-1.03125,-0.53082][0.0135795,-0.780965,0.624427][0.818287,0.021904,0][-1.08828,-0.849889,-0.379122][-0.000589961,-0.762611,0.646857][0.752563,0.02191,0][-1.13509,-0.864641,-0.396557][-0.898761,-0.283214,-0.334692][0.752562,0.007346,0][-1.13509,-0.864641,-0.396557][-0.898761,-0.283214,-0.334692][0.752562,0.007346,0][-1.03617,-1.046,-0.548255][-0.943983,-0.23241,-0.234268][0.818286,0.00734,0][-0.989355,-1.03125,-0.53082][0.0135795,-0.780965,0.624427][0.818287,0.021904,0][-1.10086,-0.67792,-0.490856][0.112683,0.588521,-0.800591][0.64301,0.021907,0][-1.07626,-0.721877,-0.519707][0.112683,0.588521,-0.800591][0.62679,0.021905,0][-1.12308,-0.736631,-0.537142][0.112683,0.588521,-0.800591][0.626791,0.00735,0][-1.12308,-0.736631,-0.537142][0.112683,0.588521,-0.800591][0.626791,0.00735,0][-1.14767,-0.692675,-0.508291][0.11268,0.588522,-0.800591][0.643012,0.007351,0][-1.10086,-0.67792,-0.490856][0.112683,0.588521,-0.800591][0.64301,0.021907,0][-1.10334,-0.690851,-0.473266][-0.423753,0.757237,0.497017][0.649151,0.021908,0][-1.10086,-0.67792,-0.490856][0.112683,0.588521,-0.800591][0.64301,0.021907,0][-1.14767,-0.692675,-0.508291][0.11268,0.588522,-0.800591][0.643012,0.007351,0][-1.14767,-0.692675,-0.508291][0.11268,0.588522,-0.800591][0.643012,0.007351,0][-1.15015,-0.705605,-0.490701][-0.423763,0.757222,0.49703][0.649152,0.007351,0][-1.10334,-0.690851,-0.473266][-0.423753,0.757237,0.497017][0.649151,0.021908,0][-1.10334,-0.690851,-0.473266][-0.423753,0.757237,0.497017][0.972721,0.271026,0][-1.07874,-0.734808,-0.502117][0.898743,0.283242,0.334717][0.972721,0.237786,0][-1.07626,-0.721877,-0.519707][0.112683,0.588521,-0.800591][0.985303,0.237786,0][-1.07626,-0.721877,-0.519707][0.112683,0.588521,-0.800591][0.985303,0.237786,0][-1.10086,-0.67792,-0.490856][0.112683,0.588521,-0.800591][0.985303,0.271026,0][-1.10334,-0.690851,-0.473266][-0.423753,0.757237,0.497017][0.972721,0.271026,0][-1.14767,-0.692675,-0.508291][0.11268,0.588522,-0.800591][0.87385,0.270941,0][-1.12308,-0.736631,-0.537142][0.112683,0.588521,-0.800591][0.87385,0.237698,0][-1.12555,-0.749561,-0.519552][-0.898761,-0.283214,-0.334692][0.886433,0.237698,0][-1.12555,-0.749561,-0.519552][-0.898761,-0.283214,-0.334692][0.886433,0.237698,0][-1.15015,-0.705605,-0.490701][-0.423763,0.757222,0.49703][0.886434,0.270941,0][-1.14767,-0.692675,-0.508291][0.11268,0.588522,-0.800591][0.87385,0.270941,0][-1.11442,-0.756688,-0.543409][-0.898761,-0.283214,-0.334692][0.877178,0.225116,0][-1.12555,-0.749561,-0.519552][-0.898761,-0.283214,-0.334692][0.886433,0.237698,0][-1.12308,-0.736631,-0.537142][0.112683,0.588521,-0.800591][0.87385,0.237698,0][-1.07626,-0.721877,-0.519707][0.112683,0.588521,-0.800591][0.62679,0.021905,0][-1.06761,-0.741935,-0.525974][0.898743,0.283242,0.334717][0.620439,0.021904,0][-1.11442,-0.756688,-0.543409][-0.898761,-0.283214,-0.334692][0.620441,0.007349,0][-1.11442,-0.756688,-0.543409][-0.898761,-0.283214,-0.334692][0.620441,0.007349,0][-1.12308,-0.736631,-0.537142][0.112683,0.588521,-0.800591][0.626791,0.00735,0][-1.07626,-0.721877,-0.519707][0.112683,0.588521,-0.800591][0.62679,0.021905,0][-1.06761,-0.741935,-0.525974][0.898743,0.283242,0.334717][0.981975,0.225204,0][-1.07626,-0.721877,-0.519707][0.112683,0.588521,-0.800591][0.985303,0.237786,0][-1.07874,-0.734808,-0.502117][0.898743,0.283242,0.334717][0.972721,0.237786,0][-0.967377,-0.916454,-0.733268][0.944394,0.231319,0.233689][0.554765,0.021894,0][-0.924986,-0.984487,-0.837238][0.551279,-0.758736,-0.347003][0.529236,0.023033,0][-0.971482,-1.00753,-0.860722][0.551279,-0.758736,-0.347003][0.526606,0.007337,0][-0.971482,-1.00753,-0.860722][0.551279,-0.758736,-0.347003][0.526606,0.007337,0][-1.01419,-0.931209,-0.750702][-0.950979,-0.222408,-0.214879][0.554767,0.007341,0][-0.967377,-0.916454,-0.733268][0.944394,0.231319,0.233689][0.554765,0.021894,0][-1.10334,-0.690851,-0.473266][-0.423753,0.757237,0.497017][0.649151,0.021908,0][-1.15015,-0.705605,-0.490701][-0.423763,0.757222,0.49703][0.649152,0.007351,0][-1.12555,-0.749561,-0.519552][-0.898761,-0.283214,-0.334692][0.665375,0.007351,0][-1.12555,-0.749561,-0.519552][-0.898761,-0.283214,-0.334692][0.665375,0.007351,0][-1.07874,-0.734808,-0.502117][0.898743,0.283242,0.334717][0.665375,0.021909,0][-1.10334,-0.690851,-0.473266][-0.423753,0.757237,0.497017][0.649151,0.021908,0][-0.967377,-0.916454,-0.733268][0.944394,0.231319,0.233689][0.554765,0.021894,0][-1.01419,-0.931209,-0.750702][-0.950979,-0.222408,-0.214879][0.554767,0.007341,0][-1.11442,-0.756688,-0.543409][-0.898761,-0.283214,-0.334692][0.620441,0.007349,0][-1.11442,-0.756688,-0.543409][-0.898761,-0.283214,-0.334692][0.620441,0.007349,0][-1.06761,-0.741935,-0.525974][0.898743,0.283242,0.334717][0.620439,0.021904,0][-0.967377,-0.916454,-0.733268][0.944394,0.231319,0.233689][0.554765,0.021894,0][-1.18584,-0.526323,-0.440417][0.131911,0.518738,-0.844696][0.607792,0.035876,0][-1.15434,-0.521102,-0.432291][0.131911,0.518738,-0.844696][0.607792,0.049005,0][-1.11778,-0.638405,-0.49862][0.131911,0.518738,-0.844696][0.552154,0.049005,0][-1.11778,-0.638405,-0.49862][0.131911,0.518738,-0.844696][0.552154,0.049005,0][-1.14929,-0.643626,-0.506746][0.131912,0.518738,-0.844695][0.552154,0.035876,0][-1.18584,-0.526323,-0.440417][0.131911,0.518738,-0.844696][0.607792,0.035876,0][-1.21844,-0.623905,-0.251324][-0.261777,0.84012,0.475049][0.696029,0.035873,0][-1.18694,-0.618685,-0.243197][-0.261777,0.84012,0.475049][0.69603,0.049003,0][-1.16079,-0.515837,-0.41067][-0.261777,0.84012,0.475049][0.617025,0.049005,0][-1.16079,-0.515837,-0.41067][-0.261777,0.84012,0.475049][0.617025,0.049005,0][-1.19229,-0.521059,-0.418796][-0.261809,0.840117,0.475036][0.617025,0.035876,0][-1.21844,-0.623905,-0.251324][-0.261777,0.84012,0.475049][0.696029,0.035873,0][-1.17976,-0.763472,-0.311598][-0.131922,-0.518737,0.844694][0.760901,0.035872,0][-1.14826,-0.758249,-0.303471][-0.131922,-0.518737,0.844694][0.7609,0.049002,0][-1.18482,-0.640945,-0.237142][-0.131922,-0.518737,0.844694][0.705262,0.049002,0][-1.18482,-0.640945,-0.237142][-0.131922,-0.518737,0.844694][0.705262,0.049002,0][-1.21632,-0.646167,-0.245268][-0.131912,-0.518738,0.844696][0.705262,0.035873,0][-1.17976,-0.763472,-0.311598][-0.131922,-0.518737,0.844694][0.760901,0.035872,0][-1.14716,-0.665889,-0.50069][0.261786,-0.84012,-0.475043][0.849136,0.035876,0][-1.11566,-0.660667,-0.492564][0.261786,-0.84012,-0.475043][0.849136,0.049005,0][-1.14181,-0.763514,-0.325091][0.261786,-0.84012,-0.475043][0.770132,0.049002,0][-1.14181,-0.763514,-0.325091][0.261786,-0.84012,-0.475043][0.770132,0.049002,0][-1.17331,-0.768737,-0.333218][0.261825,-0.840111,-0.475039][0.770133,0.035873,0][-1.14716,-0.665889,-0.50069][0.261786,-0.84012,-0.475043][0.849136,0.035876,0][-1.17976,-0.763472,-0.311598][-0.131922,-0.518737,0.844694][0.316649,0.893559,0][-1.21632,-0.646167,-0.245268][-0.131912,-0.518738,0.844696][0.316649,0.803761,0][-1.21844,-0.623905,-0.251324][-0.261777,0.84012,0.475049][0.327186,0.793225,0][-1.21844,-0.623905,-0.251324][-0.261777,0.84012,0.475049][0.327186,0.793225,0][-1.17331,-0.768737,-0.333218][0.261825,-0.840111,-0.475039][0.327185,0.904095,0][-1.17976,-0.763472,-0.311598][-0.131922,-0.518737,0.844694][0.316649,0.893559,0][-1.11778,-0.638405,-0.49862][0.131911,0.518738,-0.844696][0.472459,0.892887,0][-1.15434,-0.521102,-0.432291][0.131911,0.518738,-0.844696][0.472459,0.80309,0][-1.16079,-0.515837,-0.41067][-0.261777,0.84012,0.475049][0.482995,0.792554,0][-1.16079,-0.515837,-0.41067][-0.261777,0.84012,0.475049][0.482995,0.792554,0][-1.11566,-0.660667,-0.492564][0.261786,-0.84012,-0.475043][0.482995,0.903423,0][-1.11778,-0.638405,-0.49862][0.131911,0.518738,-0.844696][0.472459,0.892887,0][-1.14716,-0.665889,-0.50069][0.261786,-0.84012,-0.475043][0.849136,0.035876,0][-1.14929,-0.643626,-0.506746][0.131912,0.518738,-0.844695][0.858368,0.035876,0][-1.11778,-0.638405,-0.49862][0.131911,0.518738,-0.844696][0.858368,0.049005,0][-1.11778,-0.638405,-0.49862][0.131911,0.518738,-0.844696][0.858368,0.049005,0][-1.11566,-0.660667,-0.492564][0.261786,-0.84012,-0.475043][0.849136,0.049005,0][-1.14716,-0.665889,-0.50069][0.261786,-0.84012,-0.475043][0.849136,0.035876,0][-1.18584,-0.526323,-0.440417][0.131911,0.518738,-0.844696][0.607792,0.035876,0][-1.19229,-0.521059,-0.418796][-0.261809,0.840117,0.475036][0.617025,0.035876,0][-1.16079,-0.515837,-0.41067][-0.261777,0.84012,0.475049][0.617025,0.049005,0][-1.16079,-0.515837,-0.41067][-0.261777,0.84012,0.475049][0.617025,0.049005,0][-1.15434,-0.521102,-0.432291][0.131911,0.518738,-0.844696][0.607792,0.049005,0][-1.18584,-0.526323,-0.440417][0.131911,0.518738,-0.844696][0.607792,0.035876,0][-1.21844,-0.623905,-0.251324][-0.261777,0.84012,0.475049][0.696029,0.035873,0][-1.21632,-0.646167,-0.245268][-0.131912,-0.518738,0.844696][0.705262,0.035873,0][-1.18482,-0.640945,-0.237142][-0.131922,-0.518737,0.844694][0.705262,0.049002,0][-1.18482,-0.640945,-0.237142][-0.131922,-0.518737,0.844694][0.705262,0.049002,0][-1.18694,-0.618685,-0.243197][-0.261777,0.84012,0.475049][0.69603,0.049003,0][-1.21844,-0.623905,-0.251324][-0.261777,0.84012,0.475049][0.696029,0.035873,0][-1.17976,-0.763472,-0.311598][-0.131922,-0.518737,0.844694][0.760901,0.035872,0][-1.17331,-0.768737,-0.333218][0.261825,-0.840111,-0.475039][0.770133,0.035873,0][-1.14181,-0.763514,-0.325091][0.261786,-0.84012,-0.475043][0.770132,0.049002,0][-1.14181,-0.763514,-0.325091][0.261786,-0.84012,-0.475043][0.770132,0.049002,0][-1.14826,-0.758249,-0.303471][-0.131922,-0.518737,0.844694][0.7609,0.049002,0][-1.17976,-0.763472,-0.311598][-0.131922,-0.518737,0.844694][0.760901,0.035872,0][-1.19229,-0.521059,-0.418796][-0.261809,0.840117,0.475036][0.454693,0.793226,0][-1.18584,-0.526323,-0.440417][0.131911,0.518738,-0.844696][0.465229,0.803762,0][-1.14929,-0.643626,-0.506746][0.131912,0.518738,-0.844695][0.465229,0.893558,0][-1.14929,-0.643626,-0.506746][0.131912,0.518738,-0.844695][0.465229,0.893558,0][-1.14716,-0.665889,-0.50069][0.261786,-0.84012,-0.475043][0.454692,0.904095,0][-1.19229,-0.521059,-0.418796][-0.261809,0.840117,0.475036][0.454693,0.793226,0][-1.17331,-0.768737,-0.333218][0.261825,-0.840111,-0.475039][0.327185,0.904095,0][-1.21844,-0.623905,-0.251324][-0.261777,0.84012,0.475049][0.327186,0.793225,0][-1.19229,-0.521059,-0.418796][-0.261809,0.840117,0.475036][0.454693,0.793226,0][-1.19229,-0.521059,-0.418796][-0.261809,0.840117,0.475036][0.454693,0.793226,0][-1.14716,-0.665889,-0.50069][0.261786,-0.84012,-0.475043][0.454692,0.904095,0][-1.17331,-0.768737,-0.333218][0.261825,-0.840111,-0.475039][0.327185,0.904095,0][-1.11566,-0.660667,-0.492564][0.261786,-0.84012,-0.475043][0.482995,0.903423,0][-1.16079,-0.515837,-0.41067][-0.261777,0.84012,0.475049][0.482995,0.792554,0][-1.18694,-0.618685,-0.243197][-0.261777,0.84012,0.475049][0.610503,0.792554,0][-1.18694,-0.618685,-0.243197][-0.261777,0.84012,0.475049][0.610503,0.792554,0][-1.14181,-0.763514,-0.325091][0.261786,-0.84012,-0.475043][0.610503,0.903423,0][-1.11566,-0.660667,-0.492564][0.261786,-0.84012,-0.475043][0.482995,0.903423,0][-1.18694,-0.618685,-0.243197][-0.261777,0.84012,0.475049][0.610503,0.792554,0][-1.18482,-0.640945,-0.237142][-0.131922,-0.518737,0.844694][0.621038,0.80309,0][-1.14826,-0.758249,-0.303471][-0.131922,-0.518737,0.844694][0.621038,0.892888,0][-1.14826,-0.758249,-0.303471][-0.131922,-0.518737,0.844694][0.621038,0.892888,0][-1.14181,-0.763514,-0.325091][0.261786,-0.84012,-0.475043][0.610503,0.903423,0][-1.18694,-0.618685,-0.243197][-0.261777,0.84012,0.475049][0.610503,0.792554,0][1.18584,-0.526324,-0.440417][-0.131912,0.518738,-0.844695][0.607792,0.035876,0][1.14928,-0.643627,-0.506746][-0.131912,0.518738,-0.844695][0.552154,0.035876,0][1.11778,-0.638405,-0.49862][-0.131912,0.518738,-0.844695][0.552154,0.049005,0][1.11778,-0.638405,-0.49862][-0.131912,0.518738,-0.844695][0.552154,0.049005,0][1.15433,-0.521102,-0.432291][-0.131911,0.518738,-0.844696][0.607792,0.049005,0][1.18584,-0.526324,-0.440417][-0.131912,0.518738,-0.844695][0.607792,0.035876,0][1.21844,-0.623905,-0.251324][0.261809,0.840117,0.475036][0.696029,0.035873,0][1.19228,-0.521059,-0.418796][0.261809,0.840117,0.475036][0.617025,0.035876,0][1.16078,-0.515837,-0.41067][0.261809,0.840117,0.475036][0.617025,0.049005,0][1.16078,-0.515837,-0.41067][0.261809,0.840117,0.475036][0.617025,0.049005,0][1.18694,-0.618685,-0.243197][0.261777,0.84012,0.475049][0.69603,0.049003,0][1.21844,-0.623905,-0.251324][0.261809,0.840117,0.475036][0.696029,0.035873,0][1.17976,-0.763472,-0.311598][0.131912,-0.518738,0.844696][0.760901,0.035872,0][1.21631,-0.646167,-0.245268][0.131912,-0.518738,0.844696][0.705262,0.035873,0][1.18481,-0.640946,-0.237142][0.131912,-0.518738,0.844696][0.705262,0.049002,0][1.18481,-0.640946,-0.237142][0.131912,-0.518738,0.844696][0.705262,0.049002,0][1.14826,-0.75825,-0.303471][0.131922,-0.518737,0.844694][0.7609,0.049002,0][1.17976,-0.763472,-0.311598][0.131912,-0.518738,0.844696][0.760901,0.035872,0][1.14715,-0.665889,-0.50069][-0.261825,-0.840111,-0.475039][0.849136,0.035876,0][1.17331,-0.768737,-0.333218][-0.261825,-0.840111,-0.475039][0.770133,0.035873,0][1.14181,-0.763515,-0.325091][-0.261825,-0.840111,-0.475039][0.770132,0.049002,0][1.14181,-0.763515,-0.325091][-0.261825,-0.840111,-0.475039][0.770132,0.049002,0][1.11565,-0.660668,-0.492564][-0.261786,-0.84012,-0.475043][0.849136,0.049005,0][1.14715,-0.665889,-0.50069][-0.261825,-0.840111,-0.475039][0.849136,0.035876,0][1.17976,-0.763472,-0.311598][0.131912,-0.518738,0.844696][0.316649,0.893559,0][1.17331,-0.768737,-0.333218][-0.261825,-0.840111,-0.475039][0.327185,0.904095,0][1.21844,-0.623905,-0.251324][0.261809,0.840117,0.475036][0.327186,0.793225,0][1.21844,-0.623905,-0.251324][0.261809,0.840117,0.475036][0.327186,0.793225,0][1.21631,-0.646167,-0.245268][0.131912,-0.518738,0.844696][0.316649,0.803761,0][1.17976,-0.763472,-0.311598][0.131912,-0.518738,0.844696][0.316649,0.893559,0][1.11778,-0.638405,-0.49862][-0.131912,0.518738,-0.844695][0.472459,0.892887,0][1.11565,-0.660668,-0.492564][-0.261786,-0.84012,-0.475043][0.482995,0.903423,0][1.16078,-0.515837,-0.41067][0.261809,0.840117,0.475036][0.482995,0.792554,0][1.16078,-0.515837,-0.41067][0.261809,0.840117,0.475036][0.482995,0.792554,0][1.15433,-0.521102,-0.432291][-0.131911,0.518738,-0.844696][0.472459,0.80309,0][1.11778,-0.638405,-0.49862][-0.131912,0.518738,-0.844695][0.472459,0.892887,0][1.14715,-0.665889,-0.50069][-0.261825,-0.840111,-0.475039][0.849136,0.035876,0][1.11565,-0.660668,-0.492564][-0.261786,-0.84012,-0.475043][0.849136,0.049005,0][1.11778,-0.638405,-0.49862][-0.131912,0.518738,-0.844695][0.858368,0.049005,0][1.11778,-0.638405,-0.49862][-0.131912,0.518738,-0.844695][0.858368,0.049005,0][1.14928,-0.643627,-0.506746][-0.131912,0.518738,-0.844695][0.858368,0.035876,0][1.14715,-0.665889,-0.50069][-0.261825,-0.840111,-0.475039][0.849136,0.035876,0][1.18584,-0.526324,-0.440417][-0.131912,0.518738,-0.844695][0.607792,0.035876,0][1.15433,-0.521102,-0.432291][-0.131911,0.518738,-0.844696][0.607792,0.049005,0][1.16078,-0.515837,-0.41067][0.261809,0.840117,0.475036][0.617025,0.049005,0][1.16078,-0.515837,-0.41067][0.261809,0.840117,0.475036][0.617025,0.049005,0][1.19228,-0.521059,-0.418796][0.261809,0.840117,0.475036][0.617025,0.035876,0][1.18584,-0.526324,-0.440417][-0.131912,0.518738,-0.844695][0.607792,0.035876,0][1.21844,-0.623905,-0.251324][0.261809,0.840117,0.475036][0.696029,0.035873,0][1.18694,-0.618685,-0.243197][0.261777,0.84012,0.475049][0.69603,0.049003,0][1.18481,-0.640946,-0.237142][0.131912,-0.518738,0.844696][0.705262,0.049002,0][1.18481,-0.640946,-0.237142][0.131912,-0.518738,0.844696][0.705262,0.049002,0][1.21631,-0.646167,-0.245268][0.131912,-0.518738,0.844696][0.705262,0.035873,0][1.21844,-0.623905,-0.251324][0.261809,0.840117,0.475036][0.696029,0.035873,0][1.17976,-0.763472,-0.311598][0.131912,-0.518738,0.844696][0.760901,0.035872,0][1.14826,-0.75825,-0.303471][0.131922,-0.518737,0.844694][0.7609,0.049002,0][1.14181,-0.763515,-0.325091][-0.261825,-0.840111,-0.475039][0.770132,0.049002,0][1.14181,-0.763515,-0.325091][-0.261825,-0.840111,-0.475039][0.770132,0.049002,0][1.17331,-0.768737,-0.333218][-0.261825,-0.840111,-0.475039][0.770133,0.035873,0][1.17976,-0.763472,-0.311598][0.131912,-0.518738,0.844696][0.760901,0.035872,0][1.19228,-0.521059,-0.418796][0.261809,0.840117,0.475036][0.454693,0.793226,0][1.14715,-0.665889,-0.50069][-0.261825,-0.840111,-0.475039][0.454692,0.904095,0][1.14928,-0.643627,-0.506746][-0.131912,0.518738,-0.844695][0.465229,0.893558,0][1.14928,-0.643627,-0.506746][-0.131912,0.518738,-0.844695][0.465229,0.893558,0][1.18584,-0.526324,-0.440417][-0.131912,0.518738,-0.844695][0.465229,0.803762,0][1.19228,-0.521059,-0.418796][0.261809,0.840117,0.475036][0.454693,0.793226,0][1.17331,-0.768737,-0.333218][-0.261825,-0.840111,-0.475039][0.327185,0.904095,0][1.14715,-0.665889,-0.50069][-0.261825,-0.840111,-0.475039][0.454692,0.904095,0][1.19228,-0.521059,-0.418796][0.261809,0.840117,0.475036][0.454693,0.793226,0][1.19228,-0.521059,-0.418796][0.261809,0.840117,0.475036][0.454693,0.793226,0][1.21844,-0.623905,-0.251324][0.261809,0.840117,0.475036][0.327186,0.793225,0][1.17331,-0.768737,-0.333218][-0.261825,-0.840111,-0.475039][0.327185,0.904095,0][1.11565,-0.660668,-0.492564][-0.261786,-0.84012,-0.475043][0.482995,0.903423,0][1.14181,-0.763515,-0.325091][-0.261825,-0.840111,-0.475039][0.610503,0.903423,0][1.18694,-0.618685,-0.243197][0.261777,0.84012,0.475049][0.610503,0.792554,0][1.18694,-0.618685,-0.243197][0.261777,0.84012,0.475049][0.610503,0.792554,0][1.16078,-0.515837,-0.41067][0.261809,0.840117,0.475036][0.482995,0.792554,0][1.11565,-0.660668,-0.492564][-0.261786,-0.84012,-0.475043][0.482995,0.903423,0][1.18694,-0.618685,-0.243197][0.261777,0.84012,0.475049][0.610503,0.792554,0][1.14181,-0.763515,-0.325091][-0.261825,-0.840111,-0.475039][0.610503,0.903423,0][1.14826,-0.75825,-0.303471][0.131922,-0.518737,0.844694][0.621038,0.892888,0][1.14826,-0.75825,-0.303471][0.131922,-0.518737,0.844694][0.621038,0.892888,0][1.18481,-0.640946,-0.237142][0.131912,-0.518738,0.844696][0.621038,0.80309,0][1.18694,-0.618685,-0.243197][0.261777,0.84012,0.475049][0.610503,0.792554,0][-0.989355,0.407128,0.760617][0.898561,-0.0304409,-0.437791][0.82465,0.743756,0][-0.996001,0.188154,0.762202][0.898561,-0.0304409,-0.437791][0.830363,0.773449,0][-1.17052,0.184986,0.40423][0.898561,-0.0304409,-0.437791][0.775024,0.783431,0][-1.17052,0.184986,0.40423][0.898561,-0.0304409,-0.437791][0.775024,0.783431,0][-1.16359,0.406222,0.40535][0.897558,-0.0258589,-0.440137][0.771366,0.752739,0][-0.989355,0.407128,0.760617][0.898561,-0.0304409,-0.437791][0.82465,0.743756,0][-0.717712,0.407745,1.04396][0.715383,-0.0101506,-0.698659][0.876456,0.731217,0][-0.72193,0.189756,1.04281][0.715383,-0.0101506,-0.698659][0.883994,0.760431,0][-0.996001,0.188154,0.762202][0.898561,-0.0304409,-0.437791][0.830363,0.773449,0][-0.996001,0.188154,0.762202][0.898561,-0.0304409,-0.437791][0.830363,0.773449,0][-0.989355,0.407128,0.760617][0.898561,-0.0304409,-0.437791][0.82465,0.743756,0][-0.717712,0.407745,1.04396][0.715383,-0.0101506,-0.698659][0.876456,0.731217,0][-0.376723,0.408092,1.22521][0.470486,-0.00671872,-0.882382][0.92675,0.714961,0][-0.379126,0.190956,1.22558][0.470486,-0.00671872,-0.882382][0.93654,0.743765,0][-0.72193,0.189756,1.04281][0.715383,-0.0101506,-0.698659][0.883994,0.760431,0][-0.72193,0.189756,1.04281][0.715383,-0.0101506,-0.698659][0.883994,0.760431,0][-0.717712,0.407745,1.04396][0.715383,-0.0101506,-0.698659][0.876456,0.731217,0][-0.376723,0.408092,1.22521][0.470486,-0.00671872,-0.882382][0.92675,0.714961,0][-8.45925e-007,0.408092,1.28747][0.163047,-0.0035032,-0.986612][0.97691,0.694448,0][-8.78669e-007,0.191242,1.28824][0.163047,-0.0035032,-0.986612][0.988409,0.724003,0][-0.379126,0.190956,1.22558][0.470486,-0.00671872,-0.882382][0.93654,0.743765,0][-0.379126,0.190956,1.22558][0.470486,-0.00671872,-0.882382][0.93654,0.743765,0][-0.376723,0.408092,1.22521][0.470486,-0.00671872,-0.882382][0.92675,0.714961,0][-8.45925e-007,0.408092,1.28747][0.163047,-0.0035032,-0.986612][0.97691,0.694448,0][-8.4708e-007,0.400448,-1.2837][0.0788587,-0.91664,0.391857][0.300344,0.324656,0][-0.377544,0.395072,-1.2203][0.0788587,-0.91664,0.391857][0.224524,0.334308,0][-0.378296,0.393914,-1.22286][0.0788587,-0.91664,0.391857][0.224385,0.333746,0][-0.718645,0.398477,-1.03809][0.47033,-0.147811,0.870024][0.542414,0.74189,0][-0.721709,0.371606,-1.041][0.47033,-0.147811,0.870024][0.541402,0.745949,0][-0.378296,0.393914,-1.22286][0.0788587,-0.91664,0.391857][0.487091,0.723326,0][-0.378296,0.393914,-1.22286][0.0788587,-0.91664,0.391857][0.487091,0.723326,0][-0.377544,0.395072,-1.2203][0.0788587,-0.91664,0.391857][0.487319,0.722937,0][-0.718645,0.398477,-1.03809][0.47033,-0.147811,0.870024][0.542414,0.74189,0][-0.989847,0.40033,-0.754749][0.714665,-0.145898,0.684081][0.599573,0.753645,0][-1.00375,0.279103,-0.766078][0.714665,-0.145898,0.684081][0.5968,0.771747,0][-0.721709,0.371606,-1.041][0.47033,-0.147811,0.870024][0.541402,0.745949,0][-0.721709,0.371606,-1.041][0.47033,-0.147811,0.870024][0.541402,0.745949,0][-0.718645,0.398477,-1.03809][0.47033,-0.147811,0.870024][0.542414,0.74189,0][-0.989847,0.40033,-0.754749][0.714665,-0.145898,0.684081][0.599573,0.753645,0][-1.00375,0.279103,-0.766078][0.714665,-0.145898,0.684081][0.5968,0.771747,0][-0.989847,0.40033,-0.754749][0.714665,-0.145898,0.684081][0.599573,0.753645,0][-1.16387,0.402998,-0.399107][0.888617,-0.142657,0.435899][0.656836,0.75841,0][-1.00375,0.279103,-0.766078][0.714665,-0.145898,0.684081][0.5968,0.771747,0][-1.16387,0.402998,-0.399107][0.888617,-0.142657,0.435899][0.656836,0.75841,0][-1.17695,0.176163,-0.403767][0.907154,-0.0608635,0.416373][0.655301,0.791599,0][-1.00375,0.279103,-0.766078][0.714665,-0.145898,0.684081][0.5968,0.771747,0][-1.17695,0.176163,-0.403767][0.907154,-0.0608635,0.416373][0.655301,0.791599,0][-1.08998,0.1756,-0.594685][0.907635,-0.071085,0.413698][0.624111,0.789397,0][-1.20456,0.40492,0.00310092][0.990296,-0.0742887,0.117456][0.714828,0.757522,0][-1.22106,0.180927,0.000554926][0.990296,-0.0742887,0.117456][0.716523,0.790191,0][-1.2052,0.175816,-0.136346][0.990296,-0.0742887,0.117456][0.695614,0.791753,0][-1.2052,0.175816,-0.136346][0.990296,-0.0742887,0.117456][0.695614,0.791753,0][-1.18919,0.404144,-0.134313][0.991287,-0.0705157,0.111253][0.695105,0.758036,0][-1.20456,0.40492,0.00310092][0.990296,-0.0742887,0.117456][0.714828,0.757522,0][-1.16359,0.406222,0.40535][0.897558,-0.0258589,-0.440137][0.771366,0.752739,0][-1.17052,0.184986,0.40423][0.898561,-0.0304409,-0.437791][0.775024,0.783431,0][-1.22106,0.180927,0.000554926][0.990296,-0.0742887,0.117456][0.716523,0.790191,0][-1.22106,0.180927,0.000554926][0.990296,-0.0742887,0.117456][0.716523,0.790191,0][-1.20456,0.40492,0.00310092][0.990296,-0.0742887,0.117456][0.714828,0.757522,0][-1.16359,0.406222,0.40535][0.897558,-0.0258589,-0.440137][0.771366,0.752739,0][-0.923418,0.679504,0.710364][0.860598,-0.286072,-0.421347][0.816512,0.705694,0][-0.989355,0.407128,0.760617][0.898561,-0.0304409,-0.437791][0.82465,0.743756,0][-1.16359,0.406222,0.40535][0.897558,-0.0258589,-0.440137][0.771366,0.752739,0][-1.16359,0.406222,0.40535][0.897558,-0.0258589,-0.440137][0.771366,0.752739,0][-1.08562,0.680225,0.378831][0.86057,-0.285699,-0.421659][0.76626,0.713571,0][-0.923418,0.679504,0.710364][0.860598,-0.286072,-0.421347][0.816512,0.705694,0][-0.670004,0.678817,0.975157][0.691217,-0.289696,-0.662039][0.865425,0.694063,0][-0.717712,0.407745,1.04396][0.715383,-0.0101506,-0.698659][0.876456,0.731217,0][-0.989355,0.407128,0.760617][0.898561,-0.0304409,-0.437791][0.82465,0.743756,0][-0.989355,0.407128,0.760617][0.898561,-0.0304409,-0.437791][0.82465,0.743756,0][-0.923418,0.679504,0.710364][0.860598,-0.286072,-0.421347][0.816512,0.705694,0][-0.670004,0.678817,0.975157][0.691217,-0.289696,-0.662039][0.865425,0.694063,0][-0.35185,0.678248,1.14455][0.448943,-0.293329,-0.844043][0.912612,0.678421,0][-0.376723,0.408092,1.22521][0.470486,-0.00671872,-0.882382][0.92675,0.714961,0][-0.717712,0.407745,1.04396][0.715383,-0.0101506,-0.698659][0.876456,0.731217,0][-0.717712,0.407745,1.04396][0.715383,-0.0101506,-0.698659][0.876456,0.731217,0][-0.670004,0.678817,0.975157][0.691217,-0.289696,-0.662039][0.865425,0.694063,0][-0.35185,0.678248,1.14455][0.448943,-0.293329,-0.844043][0.912612,0.678421,0][-8.05166e-007,0.678027,1.20279][0.155754,-0.295657,-0.942511][0.958821,0.657559,0][-8.45925e-007,0.408092,1.28747][0.163047,-0.0035032,-0.986612][0.97691,0.694448,0][-0.376723,0.408092,1.22521][0.470486,-0.00671872,-0.882382][0.92675,0.714961,0][-0.376723,0.408092,1.22521][0.470486,-0.00671872,-0.882382][0.92675,0.714961,0][-0.35185,0.678248,1.14455][0.448943,-0.293329,-0.844043][0.912612,0.678421,0][-8.05166e-007,0.678027,1.20279][0.155754,-0.295657,-0.942511][0.958821,0.657559,0][-0.35185,0.678248,-1.13722][0.162465,-0.29134,0.942723][0.50512,0.682495,0][-0.377544,0.395072,-1.2203][0.0788587,-0.91664,0.391857][0.487319,0.722937,0][-8.4708e-007,0.400448,-1.2837][0.0788587,-0.91664,0.391857][0.435893,0.696109,0][-8.4708e-007,0.400448,-1.2837][0.0788587,-0.91664,0.391857][0.435893,0.696109,0][-8.05166e-007,0.678027,-1.19545][0.155624,-0.299298,0.941383][0.457869,0.657812,0][-0.35185,0.678248,-1.13722][0.162465,-0.29134,0.942723][0.50512,0.682495,0][-0.670003,0.678817,-0.967818][0.448701,-0.289775,0.845398][0.554851,0.700355,0][-0.718645,0.398477,-1.03809][0.47033,-0.147811,0.870024][0.542414,0.74189,0][-0.377544,0.395072,-1.2203][0.0788587,-0.91664,0.391857][0.487319,0.722937,0][-0.377544,0.395072,-1.2203][0.0788587,-0.91664,0.391857][0.487319,0.722937,0][-0.35185,0.678248,-1.13722][0.162465,-0.29134,0.942723][0.50512,0.682495,0][-0.670003,0.678817,-0.967818][0.448701,-0.289775,0.845398][0.554851,0.700355,0][-0.923417,0.679504,-0.703026][0.691016,-0.287316,0.663285][0.606815,0.711749,0][-0.989847,0.40033,-0.754749][0.714665,-0.145898,0.684081][0.599573,0.753645,0][-0.718645,0.398477,-1.03809][0.47033,-0.147811,0.870024][0.542414,0.74189,0][-0.718645,0.398477,-1.03809][0.47033,-0.147811,0.870024][0.542414,0.74189,0][-0.670003,0.678817,-0.967818][0.448701,-0.289775,0.845398][0.554851,0.700355,0][-0.923417,0.679504,-0.703026][0.691016,-0.287316,0.663285][0.606815,0.711749,0][-1.08562,0.680225,-0.371492][0.860148,-0.284933,0.423036][0.659469,0.717175,0][-1.16387,0.402998,-0.399107][0.888617,-0.142657,0.435899][0.656836,0.75841,0][-0.989847,0.40033,-0.754749][0.714665,-0.145898,0.684081][0.599573,0.753645,0][-0.989847,0.40033,-0.754749][0.714665,-0.145898,0.684081][0.599573,0.753645,0][-0.923417,0.679504,-0.703026][0.691016,-0.287316,0.663285][0.606815,0.711749,0][-1.08562,0.680225,-0.371492][0.860148,-0.284933,0.423036][0.659469,0.717175,0][-1.18919,0.404144,-0.134313][0.991287,-0.0705157,0.111253][0.695105,0.758036,0][-1.16387,0.402998,-0.399107][0.888617,-0.142657,0.435899][0.656836,0.75841,0][-1.08562,0.680225,-0.371492][0.860148,-0.284933,0.423036][0.659469,0.717175,0][-1.08562,0.680225,-0.371492][0.860148,-0.284933,0.423036][0.659469,0.717175,0][-1.10921,0.680483,-0.125022][0.955697,-0.27968,0.0917674][0.694883,0.716473,0][-1.18919,0.404144,-0.134313][0.991287,-0.0705157,0.111253][0.695105,0.758036,0][-1.08562,0.680225,0.378831][0.86057,-0.285699,-0.421659][0.76626,0.713571,0][-1.16359,0.406222,0.40535][0.897558,-0.0258589,-0.440137][0.771366,0.752739,0][-1.20456,0.40492,0.00310092][0.990296,-0.0742887,0.117456][0.714828,0.757522,0][-1.20456,0.40492,0.00310092][0.990296,-0.0742887,0.117456][0.714828,0.757522,0][-1.12351,0.680808,0.0036689][0.954998,-0.280344,-0.0968815][0.713264,0.716543,0][-1.08562,0.680225,0.378831][0.86057,-0.285699,-0.421659][0.76626,0.713571,0][-0.81242,0.884901,0.624828][0.746242,-0.555823,-0.366311][0.808662,0.671385,0][-0.923418,0.679504,0.710364][0.860598,-0.286072,-0.421347][0.816512,0.705694,0][-1.08562,0.680225,0.378831][0.86057,-0.285699,-0.421659][0.76626,0.713571,0][-1.08562,0.680225,0.378831][0.86057,-0.285699,-0.421659][0.76626,0.713571,0][-0.954644,0.885697,0.333014][0.745996,-0.556947,-0.365103][0.761446,0.678579,0][-0.81242,0.884901,0.624828][0.746242,-0.555823,-0.366311][0.808662,0.671385,0][-0.589759,0.884242,0.857962][0.59757,-0.560522,-0.573346][0.854643,0.660468,0][-0.670004,0.678817,0.975157][0.691217,-0.289696,-0.662039][0.865425,0.694063,0][-0.923418,0.679504,0.710364][0.860598,-0.286072,-0.421347][0.816512,0.705694,0][-0.923418,0.679504,0.710364][0.860598,-0.286072,-0.421347][0.816512,0.705694,0][-0.81242,0.884901,0.624828][0.746242,-0.555823,-0.366311][0.808662,0.671385,0][-0.589759,0.884242,0.857962][0.59757,-0.560522,-0.573346][0.854643,0.660468,0][-0.309838,0.883701,1.00731][0.386781,-0.56563,-0.728329][0.898666,0.645661,0][-0.35185,0.678248,1.14455][0.448943,-0.293329,-0.844043][0.912612,0.678421,0][-0.670004,0.678817,0.975157][0.691217,-0.289696,-0.662039][0.865425,0.694063,0][-0.670004,0.678817,0.975157][0.691217,-0.289696,-0.662039][0.865425,0.694063,0][-0.589759,0.884242,0.857962][0.59757,-0.560522,-0.573346][0.854643,0.660468,0][-0.309838,0.883701,1.00731][0.386781,-0.56563,-0.728329][0.898666,0.645661,0][-7.74142e-007,0.883492,1.0587][0.133932,-0.569009,-0.811351][0.940197,0.6261,0][-8.05166e-007,0.678027,1.20279][0.155754,-0.295657,-0.942511][0.958821,0.657559,0][-0.35185,0.678248,1.14455][0.448943,-0.293329,-0.844043][0.912612,0.678421,0][-0.35185,0.678248,1.14455][0.448943,-0.293329,-0.844043][0.912612,0.678421,0][-0.309838,0.883701,1.00731][0.386781,-0.56563,-0.728329][0.898666,0.645661,0][-7.74142e-007,0.883492,1.0587][0.133932,-0.569009,-0.811351][0.940197,0.6261,0][-0.309838,0.883702,-0.99997][0.133904,-0.56926,0.81118][0.520936,0.648598,0][-0.35185,0.678248,-1.13722][0.162465,-0.29134,0.942723][0.50512,0.682495,0][-8.05166e-007,0.678027,-1.19545][0.155624,-0.299298,0.941383][0.457869,0.657812,0][-8.05166e-007,0.678027,-1.19545][0.155624,-0.299298,0.941383][0.457869,0.657812,0][-7.74142e-007,0.883491,-1.05136][0.134172,-0.568992,0.811323][0.478937,0.6261,0][-0.309838,0.883702,-0.99997][0.133904,-0.56926,0.81118][0.520936,0.648598,0][-0.589758,0.884242,-0.850624][0.38657,-0.566286,0.727931][0.566178,0.665079,0][-0.670003,0.678817,-0.967818][0.448701,-0.289775,0.845398][0.554851,0.700355,0][-0.35185,0.678248,-1.13722][0.162465,-0.29134,0.942723][0.50512,0.682495,0][-0.35185,0.678248,-1.13722][0.162465,-0.29134,0.942723][0.50512,0.682495,0][-0.309838,0.883702,-0.99997][0.133904,-0.56926,0.81118][0.520936,0.648598,0][-0.589758,0.884242,-0.850624][0.38657,-0.566286,0.727931][0.566178,0.665079,0][-0.812419,0.884901,-0.61749][0.597173,-0.561327,0.572971][0.613697,0.675795,0][-0.923417,0.679504,-0.703026][0.691016,-0.287316,0.663285][0.606815,0.711749,0][-0.670003,0.678817,-0.967818][0.448701,-0.289775,0.845398][0.554851,0.700355,0][-0.670003,0.678817,-0.967818][0.448701,-0.289775,0.845398][0.554851,0.700355,0][-0.589758,0.884242,-0.850624][0.38657,-0.566286,0.727931][0.566178,0.665079,0][-0.812419,0.884901,-0.61749][0.597173,-0.561327,0.572971][0.613697,0.675795,0][-0.954643,0.885697,-0.325676][0.745599,-0.556892,0.365997][0.662188,0.681064,0][-1.08562,0.680225,-0.371492][0.860148,-0.284933,0.423036][0.659469,0.717175,0][-0.923417,0.679504,-0.703026][0.691016,-0.287316,0.663285][0.606815,0.711749,0][-0.923417,0.679504,-0.703026][0.691016,-0.287316,0.663285][0.606815,0.711749,0][-0.812419,0.884901,-0.61749][0.597173,-0.561327,0.572971][0.613697,0.675795,0][-0.954643,0.885697,-0.325676][0.745599,-0.556892,0.365997][0.662188,0.681064,0][-1.10921,0.680483,-0.125022][0.955697,-0.27968,0.0917674][0.694883,0.716473,0][-1.08562,0.680225,-0.371492][0.860148,-0.284933,0.423036][0.659469,0.717175,0][-0.954643,0.885697,-0.325676][0.745599,-0.556892,0.365997][0.662188,0.681064,0][-0.954643,0.885697,-0.325676][0.745599,-0.556892,0.365997][0.662188,0.681064,0][-0.976133,0.885228,-0.109452][0.832813,-0.54751,0.0815833][0.695095,0.680405,0][-1.10921,0.680483,-0.125022][0.955697,-0.27968,0.0917674][0.694883,0.716473,0][-0.954644,0.885697,0.333014][0.745996,-0.556947,-0.365103][0.761446,0.678579,0][-1.08562,0.680225,0.378831][0.86057,-0.285699,-0.421659][0.76626,0.713571,0][-1.12351,0.680808,0.0036689][0.954998,-0.280344,-0.0968815][0.713264,0.716543,0][-1.12351,0.680808,0.0036689][0.954998,-0.280344,-0.0968815][0.713264,0.716543,0][-0.988004,0.885996,0.0036689][0.831456,-0.549093,-0.0847175][0.712626,0.680728,0][-0.954644,0.885697,0.333014][0.745996,-0.556947,-0.365103][0.761446,0.678579,0][-0.648569,1.01873,0.498525][0.494249,-0.834619,-0.243164][0.335463,0.737854,0][-0.81242,0.884901,0.624828][0.746242,-0.555823,-0.366311][0.356952,0.769504,0][-0.954644,0.885697,0.333014][0.745996,-0.556947,-0.365103][0.310223,0.789899,0][-0.954644,0.885697,0.333014][0.745996,-0.556947,-0.365103][0.310223,0.789899,0][-0.761828,1.01915,0.265481][0.493677,-0.835461,-0.24143][0.29913,0.753672,0][-0.648569,1.01873,0.498525][0.494249,-0.834619,-0.243164][0.335463,0.737854,0][-0.471039,1.01842,0.684551][0.393821,-0.837642,-0.378498][0.36554,0.7124,0][-0.589759,0.884242,0.857962][0.59757,-0.560522,-0.573346][0.395653,0.736826,0][-0.81242,0.884901,0.624828][0.746242,-0.555823,-0.366311][0.356952,0.769504,0][-0.81242,0.884901,0.624828][0.746242,-0.555823,-0.366311][0.356952,0.769504,0][-0.648569,1.01873,0.498525][0.494249,-0.834619,-0.243164][0.335463,0.737854,0][-0.471039,1.01842,0.684551][0.393821,-0.837642,-0.378498][0.36554,0.7124,0][-0.247565,1.01816,0.80387][0.253495,-0.840887,-0.478173][0.386622,0.679545,0][-0.309838,0.883701,1.00731][0.386781,-0.56563,-0.728329][0.422786,0.694927,0][-0.589759,0.884242,0.857962][0.59757,-0.560522,-0.573346][0.395653,0.736826,0][-0.589759,0.884242,0.857962][0.59757,-0.560522,-0.573346][0.395653,0.736826,0][-0.471039,1.01842,0.684551][0.393821,-0.837642,-0.378498][0.36554,0.7124,0][-0.247565,1.01816,0.80387][0.253495,-0.840887,-0.478173][0.386622,0.679545,0][-7.53823e-007,1.01806,0.84496][0.0874597,-0.843001,-0.530754][0.39702,0.64174,0][-7.74142e-007,0.883492,1.0587][0.133932,-0.569009,-0.811351][0.436463,0.647318,0][-0.309838,0.883701,1.00731][0.386781,-0.56563,-0.728329][0.422786,0.694927,0][-0.309838,0.883701,1.00731][0.386781,-0.56563,-0.728329][0.422786,0.694927,0][-0.247565,1.01816,0.80387][0.253495,-0.840887,-0.478173][0.386622,0.679545,0][-7.53823e-007,1.01806,0.84496][0.0874597,-0.843001,-0.530754][0.39702,0.64174,0][-0.247565,1.01816,-0.796532][0.0874123,-0.84316,0.53051][0.134417,0.674657,0][-0.309838,0.883702,-0.99997][0.133904,-0.56926,0.81118][0.097675,0.688515,0][-7.74142e-007,0.883491,-1.05136][0.134172,-0.568992,0.811323][0.085903,0.640541,0][-7.74142e-007,0.883491,-1.05136][0.134172,-0.568992,0.811323][0.085903,0.640541,0][-7.53823e-007,1.01806,-0.837621][0.0877514,-0.842978,0.530743][0.125494,0.636491,0][-0.247565,1.01816,-0.796532][0.0874123,-0.84316,0.53051][0.134417,0.674657,0][-0.471039,1.01842,-0.677212][0.253194,-0.841301,0.477603][0.154172,0.708287,0][-0.589758,0.884242,-0.850624][0.38657,-0.566286,0.727931][0.123073,0.731389,0][-0.309838,0.883702,-0.99997][0.133904,-0.56926,0.81118][0.097675,0.688515,0][-0.309838,0.883702,-0.99997][0.133904,-0.56926,0.81118][0.097675,0.688515,0][-0.247565,1.01816,-0.796532][0.0874123,-0.84316,0.53051][0.134417,0.674657,0][-0.471039,1.01842,-0.677212][0.253194,-0.841301,0.477603][0.154172,0.708287,0][-0.648569,1.01873,-0.491187][0.393246,-0.83816,0.377949][0.18322,0.734893,0][-0.812419,0.884901,-0.61749][0.597173,-0.561327,0.572971][0.160388,0.765561,0][-0.589758,0.884242,-0.850624][0.38657,-0.566286,0.727931][0.123073,0.731389,0][-0.589758,0.884242,-0.850624][0.38657,-0.566286,0.727931][0.123073,0.731389,0][-0.471039,1.01842,-0.677212][0.253194,-0.841301,0.477603][0.154172,0.708287,0][-0.648569,1.01873,-0.491187][0.393246,-0.83816,0.377949][0.18322,0.734893,0][-0.761828,1.01915,-0.258143][0.4932,-0.835387,0.242655][0.218926,0.752121,0][-0.954643,0.885697,-0.325676][0.745599,-0.556892,0.365997][0.206222,0.787838,0][-0.812419,0.884901,-0.61749][0.597173,-0.561327,0.572971][0.160388,0.765561,0][-0.812419,0.884901,-0.61749][0.597173,-0.561327,0.572971][0.160388,0.765561,0][-0.648569,1.01873,-0.491187][0.393246,-0.83816,0.377949][0.18322,0.734893,0][-0.761828,1.01915,-0.258143][0.4932,-0.835387,0.242655][0.218926,0.752121,0][-0.976133,0.885228,-0.109452][0.832813,-0.54751,0.0815833][0.240257,0.792421,0][-0.954643,0.885697,-0.325676][0.745599,-0.556892,0.365997][0.206222,0.787838,0][-0.761828,1.01915,-0.258143][0.4932,-0.835387,0.242655][0.218926,0.752121,0][-0.761828,1.01915,-0.258143][0.4932,-0.835387,0.242655][0.218926,0.752121,0][-0.779892,1.01867,-0.0864971][0.556892,-0.828676,0.0562776][0.245139,0.755459,0][-0.976133,0.885228,-0.109452][0.832813,-0.54751,0.0815833][0.240257,0.792421,0][-0.761828,1.01915,0.265481][0.493677,-0.835461,-0.24143][0.29913,0.753672,0][-0.954644,0.885697,0.333014][0.745996,-0.556947,-0.365103][0.310223,0.789899,0][-0.988004,0.885996,0.0036689][0.831456,-0.549093,-0.0847175][0.2584,0.794384,0][-0.988004,0.885996,0.0036689][0.831456,-0.549093,-0.0847175][0.2584,0.794384,0][-0.788721,1.01919,0.00366889][0.554781,-0.830033,-0.0571286][0.258881,0.756959,0][-0.761828,1.01915,0.265481][0.493677,-0.835461,-0.24143][0.29913,0.753672,0][-0.42343,1.0977,0.326081][0.244936,-0.961988,-0.120771][0.309852,0.700645,0][-0.648569,1.01873,0.498525][0.494249,-0.834619,-0.243164][0.335463,0.737854,0][-0.761828,1.01915,0.265481][0.493677,-0.835461,-0.24143][0.29913,0.753672,0][-0.761828,1.01915,0.265481][0.493677,-0.835461,-0.24143][0.29913,0.753672,0][-0.49738,1.09781,0.173925][0.244775,-0.962171,-0.119634][0.285986,0.711094,0][-0.42343,1.0977,0.326081][0.244936,-0.961988,-0.120771][0.309852,0.700645,0][-0.307586,1.09763,0.447359][0.194662,-0.962804,-0.187391][0.329532,0.683771,0][-0.471039,1.01842,0.684551][0.393821,-0.837642,-0.378498][0.36554,0.7124,0][-0.648569,1.01873,0.498525][0.494249,-0.834619,-0.243164][0.335463,0.737854,0][-0.648569,1.01873,0.498525][0.494249,-0.834619,-0.243164][0.335463,0.737854,0][-0.42343,1.0977,0.326081][0.244936,-0.961988,-0.120771][0.309852,0.700645,0][-0.307586,1.09763,0.447359][0.194662,-0.962804,-0.187391][0.329532,0.683771,0][-0.161685,1.09757,0.525188][0.124947,-0.963666,-0.236086][0.343161,0.661932,0][-0.247565,1.01816,0.80387][0.253495,-0.840887,-0.478173][0.386622,0.679545,0][-0.471039,1.01842,0.684551][0.393821,-0.837642,-0.378498][0.36554,0.7124,0][-0.471039,1.01842,0.684551][0.393821,-0.837642,-0.378498][0.36554,0.7124,0][-0.307586,1.09763,0.447359][0.194662,-0.962804,-0.187391][0.329532,0.683771,0][-0.161685,1.09757,0.525188][0.124947,-0.963666,-0.236086][0.343161,0.661932,0][-7.41821e-007,1.09755,0.551998][0.0430339,-0.964215,-0.261606][0.349436,0.636901,0][-7.53823e-007,1.01806,0.84496][0.0874597,-0.843001,-0.530754][0.39702,0.64174,0][-0.247565,1.01816,0.80387][0.253495,-0.840887,-0.478173][0.386622,0.679545,0][-0.247565,1.01816,0.80387][0.253495,-0.840887,-0.478173][0.386622,0.679545,0][-0.161685,1.09757,0.525188][0.124947,-0.963666,-0.236086][0.343161,0.661932,0][-7.41821e-007,1.09755,0.551998][0.0430339,-0.964215,-0.261606][0.349436,0.636901,0][-0.247565,1.01816,-0.796532][0.0874123,-0.84316,0.53051][0.134417,0.674657,0][-7.53823e-007,1.01806,-0.837621][0.0877514,-0.842978,0.530743][0.125494,0.636491,0][-7.41821e-007,1.09755,-0.54466][0.0430334,-0.964215,0.261607][0.17321,0.633479,0][-7.41821e-007,1.09755,-0.54466][0.0430334,-0.964215,0.261607][0.17321,0.633479,0][-0.161684,1.09757,-0.51785][0.043215,-0.964252,0.26144][0.178517,0.658714,0][-0.247565,1.01816,-0.796532][0.0874123,-0.84316,0.53051][0.134417,0.674657,0][-0.307586,1.09763,-0.440021][0.124814,-0.963744,0.235836][0.19126,0.681045,0][-0.471039,1.01842,-0.677212][0.253194,-0.841301,0.477603][0.154172,0.708287,0][-0.247565,1.01816,-0.796532][0.0874123,-0.84316,0.53051][0.134417,0.674657,0][-0.247565,1.01816,-0.796532][0.0874123,-0.84316,0.53051][0.134417,0.674657,0][-0.161684,1.09757,-0.51785][0.043215,-0.964252,0.26144][0.178517,0.658714,0][-0.307586,1.09763,-0.440021][0.124814,-0.963744,0.235836][0.19126,0.681045,0][-0.42343,1.0977,-0.318743][0.194411,-0.962901,0.187153][0.210241,0.698683,0][-0.648569,1.01873,-0.491187][0.393246,-0.83816,0.377949][0.18322,0.734893,0][-0.471039,1.01842,-0.677212][0.253194,-0.841301,0.477603][0.154172,0.708287,0][-0.471039,1.01842,-0.677212][0.253194,-0.841301,0.477603][0.154172,0.708287,0][-0.307586,1.09763,-0.440021][0.124814,-0.963744,0.235836][0.19126,0.681045,0][-0.42343,1.0977,-0.318743][0.194411,-0.962901,0.187153][0.210241,0.698683,0][-0.49738,1.09781,-0.166587][0.244453,-0.96214,0.120536][0.233668,0.710079,0][-0.761828,1.01915,-0.258143][0.4932,-0.835387,0.242655][0.218926,0.752121,0][-0.648569,1.01873,-0.491187][0.393246,-0.83816,0.377949][0.18322,0.734893,0][-0.648569,1.01873,-0.491187][0.393246,-0.83816,0.377949][0.18322,0.734893,0][-0.42343,1.0977,-0.318743][0.194411,-0.962901,0.187153][0.210241,0.698683,0][-0.49738,1.09781,-0.166587][0.244453,-0.96214,0.120536][0.233668,0.710079,0][-0.509523,1.09764,-0.0551121][0.277431,-0.96038,0.0264968][0.250768,0.712182,0][-0.779892,1.01867,-0.0864971][0.556892,-0.828676,0.0562776][0.245139,0.755459,0][-0.761828,1.01915,-0.258143][0.4932,-0.835387,0.242655][0.218926,0.752121,0][-0.761828,1.01915,-0.258143][0.4932,-0.835387,0.242655][0.218926,0.752121,0][-0.49738,1.09781,-0.166587][0.244453,-0.96214,0.120536][0.233668,0.710079,0][-0.509523,1.09764,-0.0551121][0.277431,-0.96038,0.0264968][0.250768,0.712182,0][-0.49738,1.09781,0.173925][0.244775,-0.962171,-0.119634][0.285986,0.711094,0][-0.761828,1.01915,0.265481][0.493677,-0.835461,-0.24143][0.29913,0.753672,0][-0.788721,1.01919,0.00366889][0.554781,-0.830033,-0.0571286][0.258881,0.756959,0][-0.788721,1.01919,0.00366889][0.554781,-0.830033,-0.0571286][0.258881,0.756959,0][-0.515125,1.0978,0.00366889][0.276009,-0.960727,-0.0286972][0.259731,0.713176,0][-0.49738,1.09781,0.173925][0.244775,-0.962171,-0.119634][0.285986,0.711094,0][-0.211603,1.12882,0.0759899][0.0282572,-0.999503,-0.0139729][0.272113,0.666061,0][-7.36042e-007,1.13582,0.00366888][0.0282572,-0.999503,-0.0139729][0.261391,0.631762,0][-0.180135,1.12881,0.140719][0.0282572,-0.999503,-0.0139729][0.282543,0.661416,0][-0.180135,1.12881,0.140719][0.0282572,-0.999503,-0.0139729][0.282543,0.661416,0][-7.36042e-007,1.13582,0.00366888][0.0282572,-0.999503,-0.0139729][0.261391,0.631762,0][-0.130858,1.1288,0.192278][0.0224346,-0.999514,-0.0216265][0.291068,0.653916,0][-0.130858,1.1288,0.192278][0.0224346,-0.999514,-0.0216265][0.291068,0.653916,0][-7.36042e-007,1.13582,0.00366888][0.0282572,-0.999503,-0.0139729][0.261391,0.631762,0][-0.0687887,1.12879,0.225368][0.0143732,-0.999526,-0.02722][0.296834,0.644256,0][-0.0687887,1.12879,0.225368][0.0143732,-0.999526,-0.02722][0.296834,0.644256,0][-7.36042e-007,1.13582,0.00366888][0.0282572,-0.999503,-0.0139729][0.261391,0.631762,0][-7.37104e-007,1.12879,0.236768][0.00494071,-0.999533,-0.0301469][0.299266,0.633318,0][-7.37103e-007,1.12879,-0.22943][0.0049667,-0.999533,0.0301387][0.223543,0.631762,0][-7.36042e-007,1.13582,0.00366888][0.0282572,-0.999503,-0.0139729][0.261391,0.631762,0][-0.0687877,1.12879,-0.218031][0.0049667,-0.999533,0.0301387][0.225513,0.64274,0][-0.0687877,1.12879,-0.218031][0.0049667,-0.999533,0.0301387][0.225513,0.64274,0][-7.36042e-007,1.13582,0.00366888][0.0282572,-0.999503,-0.0139729][0.261391,0.631762,0][-0.130858,1.1288,-0.18494][0.0143733,-0.999526,0.0272199][0.23084,0.652608,0][-0.130858,1.1288,-0.18494][0.0143733,-0.999526,0.0272199][0.23084,0.652608,0][-7.36042e-007,1.13582,0.00366888][0.0282572,-0.999503,-0.0139729][0.261391,0.631762,0][-0.180135,1.12881,-0.133382][0.0224343,-0.999514,0.0216267][0.23901,0.660458,0][-0.180135,1.12881,-0.133382][0.0224343,-0.999514,0.0216267][0.23901,0.660458,0][-7.36042e-007,1.13582,0.00366888][0.0282572,-0.999503,-0.0139729][0.261391,0.631762,0][-0.211603,1.12882,-0.0686521][0.0282573,-0.999503,0.0139727][0.249212,0.665552,0][-7.36042e-007,1.13582,0.00366888][0.0282572,-0.999503,-0.0139729][0.261391,0.631762,0][-0.216842,1.12879,-0.0213231][0.0320336,-0.999483,0.00292158][0.256689,0.666514,0][-0.211603,1.12882,-0.0686521][0.0282573,-0.999503,0.0139727][0.249212,0.665552,0][-0.219196,1.12882,0.00367088][0.0319097,-0.999485,-0.0032844][0.260645,0.666969,0][-7.36042e-007,1.13582,0.00366888][0.0282572,-0.999503,-0.0139729][0.261391,0.631762,0][-0.211603,1.12882,0.0759899][0.0282572,-0.999503,-0.0139729][0.272113,0.666061,0][-1.14637,-0.0701255,0.308069][0.983867,0.170388,-0.0545352][0.767988,0.822736,0][-1.15883,0.0312014,0.399932][0.983867,0.170388,-0.0545353][0.778249,0.805317,0][-1.13432,-0.111768,0.395392][0.983867,0.170388,-0.0545353][0.782423,0.82626,0][-0.986833,0.0309935,0.753312][0.894633,0.139745,-0.424386][0.834604,0.795497,0][-0.972954,-0.0816335,0.745483][0.894633,0.139745,-0.424386][0.838174,0.811809,0][-1.13432,-0.111768,0.395392][0.983867,0.170388,-0.0545353][0.782423,0.82626,0][-1.13432,-0.111768,0.395392][0.983867,0.170388,-0.0545353][0.782423,0.82626,0][-1.15883,0.0312014,0.399932][0.983867,0.170388,-0.0545353][0.778249,0.805317,0][-0.986833,0.0309935,0.753312][0.894633,0.139745,-0.424386][0.834604,0.795497,0][-1.17052,0.184986,0.40423][0.898561,-0.0304409,-0.437791][0.775024,0.783431,0][-1.15883,0.0312014,0.399932][0.983867,0.170388,-0.0545353][0.778249,0.805317,0][-1.20482,0.121935,0.135191][0.986378,0.0790115,-0.144275][0.737187,0.797293,0][-1.20482,0.121935,0.135191][0.986378,0.0790115,-0.144275][0.737187,0.797293,0][-1.22106,0.180927,0.000554926][0.990296,-0.0742887,0.117456][0.716523,0.790191,0][-1.17052,0.184986,0.40423][0.898561,-0.0304409,-0.437791][0.775024,0.783431,0][-0.996001,0.188154,0.762202][0.898561,-0.0304409,-0.437791][0.830363,0.773449,0][-0.986833,0.0309935,0.753312][0.894633,0.139745,-0.424386][0.834604,0.795497,0][-1.15883,0.0312014,0.399932][0.983867,0.170388,-0.0545353][0.778249,0.805317,0][-1.15883,0.0312014,0.399932][0.983867,0.170388,-0.0545353][0.778249,0.805317,0][-1.17052,0.184986,0.40423][0.898561,-0.0304409,-0.437791][0.775024,0.783431,0][-0.996001,0.188154,0.762202][0.898561,-0.0304409,-0.437791][0.830363,0.773449,0][-0.996001,0.188154,0.762202][0.898561,-0.0304409,-0.437791][0.830363,0.773449,0][-0.72193,0.189756,1.04281][0.715383,-0.0101506,-0.698659][0.883994,0.760431,0][-0.715163,0.0316515,1.02885][0.712099,0.0919268,-0.696035][0.889592,0.782574,0][-0.715163,0.0316515,1.02885][0.712099,0.0919268,-0.696035][0.889592,0.782574,0][-0.986833,0.0309935,0.753312][0.894633,0.139745,-0.424386][0.834604,0.795497,0][-0.996001,0.188154,0.762202][0.898561,-0.0304409,-0.437791][0.830363,0.773449,0][-0.379126,0.190956,1.22558][0.470486,-0.00671872,-0.882382][0.93654,0.743765,0][-0.376981,0.0325003,1.21237][0.47529,0.0795157,-0.876229][0.943664,0.765648,0][-0.715163,0.0316515,1.02885][0.712099,0.0919268,-0.696035][0.889592,0.782574,0][-0.715163,0.0316515,1.02885][0.712099,0.0919268,-0.696035][0.889592,0.782574,0][-0.72193,0.189756,1.04281][0.715383,-0.0101506,-0.698659][0.883994,0.760431,0][-0.379126,0.190956,1.22558][0.470486,-0.00671872,-0.882382][0.93654,0.743765,0][-8.78669e-007,0.191242,1.28824][0.163047,-0.0035032,-0.986612][0.988409,0.724003,0][-9.0246e-007,0.0336837,1.27381][0.159931,0.0900164,-0.983015][0.996199,0.745907,0][-0.376981,0.0325003,1.21237][0.47529,0.0795157,-0.876229][0.943664,0.765648,0][-0.376981,0.0325003,1.21237][0.47529,0.0795157,-0.876229][0.943664,0.765648,0][-0.379126,0.190956,1.22558][0.470486,-0.00671872,-0.882382][0.93654,0.743765,0][-8.78669e-007,0.191242,1.28824][0.163047,-0.0035032,-0.986612][0.988409,0.724003,0][-0.986833,0.0309935,0.753312][0.894633,0.139745,-0.424386][0.834604,0.795497,0][-0.715163,0.0316515,1.02885][0.712099,0.0919268,-0.696035][0.889592,0.782574,0][-0.707571,-0.0215015,1.02415][0.702528,0.161678,-0.693047][0.89212,0.79017,0][-0.707571,-0.0215015,1.02415][0.702528,0.161678,-0.693047][0.89212,0.79017,0][-0.972954,-0.0816335,0.745483][0.894633,0.139745,-0.424386][0.838174,0.811809,0][-0.986833,0.0309935,0.753312][0.894633,0.139745,-0.424386][0.834604,0.795497,0][-0.707571,-0.0215015,1.02415][0.702528,0.161678,-0.693047][0.89212,0.79017,0][-0.715163,0.0316515,1.02885][0.712099,0.0919268,-0.696035][0.889592,0.782574,0][-0.376981,0.0325003,1.21237][0.47529,0.0795157,-0.876229][0.943664,0.765648,0][-1.14817,0.11718,-0.463195][0.890529,-0.0231668,0.454337][0.644946,0.799798,0][-1.17695,0.176163,-0.403767][0.907154,-0.0608635,0.416373][0.655301,0.791599,0][-1.17859,0.103488,-0.40427][0.890529,-0.0231668,0.454337][0.654915,0.802455,0][-1.2052,0.175816,-0.136346][0.990296,-0.0742887,0.117456][0.695614,0.791753,0][-1.18703,0.123258,-0.306033][0.994455,0.00473293,0.105055][0.669928,0.799682,0][-1.17695,0.176163,-0.403767][0.907154,-0.0608635,0.416373][0.655301,0.791599,0][-1.18703,0.123258,-0.306033][0.994455,0.00473293,0.105055][0.669928,0.799682,0][-1.17859,0.103488,-0.40427][0.890529,-0.0231668,0.454337][0.654915,0.802455,0][-1.17695,0.176163,-0.403767][0.907154,-0.0608635,0.416373][0.655301,0.791599,0][-1.08998,0.1756,-0.594685][0.907635,-0.071085,0.413698][0.624111,0.789397,0][-1.17695,0.176163,-0.403767][0.907154,-0.0608635,0.416373][0.655301,0.791599,0][-1.14817,0.11718,-0.463195][0.890529,-0.0231668,0.454337][0.644946,0.799798,0][-1.17648,0.0428143,0.230325][0.975907,0.199685,-0.0879305][0.753164,0.807584,0][-1.15883,0.0312014,0.399932][0.983867,0.170388,-0.0545353][0.778249,0.805317,0][-1.14637,-0.0701255,0.308069][0.983867,0.170388,-0.0545352][0.767988,0.822736,0][-1.17648,0.0428143,0.230325][0.975907,0.199685,-0.0879305][0.753164,0.807584,0][-1.20482,0.121935,0.135191][0.986378,0.0790115,-0.144275][0.737187,0.797293,0][-1.15883,0.0312014,0.399932][0.983867,0.170388,-0.0545353][0.778249,0.805317,0][-1.20456,0.40492,0.00310092][0.990296,-0.0742887,0.117456][0.714828,0.757522,0][-1.18919,0.404144,-0.134313][0.991287,-0.0705157,0.111253][0.695105,0.758036,0][-1.10921,0.680483,-0.125022][0.955697,-0.27968,0.0917674][0.694883,0.716473,0][-1.10921,0.680483,-0.125022][0.955697,-0.27968,0.0917674][0.694883,0.716473,0][-1.12351,0.680808,0.0036689][0.954998,-0.280344,-0.0968815][0.713264,0.716543,0][-1.20456,0.40492,0.00310092][0.990296,-0.0742887,0.117456][0.714828,0.757522,0][-1.12351,0.680808,0.0036689][0.954998,-0.280344,-0.0968815][0.713264,0.716543,0][-1.10921,0.680483,-0.125022][0.955697,-0.27968,0.0917674][0.694883,0.716473,0][-0.976133,0.885228,-0.109452][0.832813,-0.54751,0.0815833][0.695095,0.680405,0][-0.976133,0.885228,-0.109452][0.832813,-0.54751,0.0815833][0.695095,0.680405,0][-0.988004,0.885996,0.0036689][0.831456,-0.549093,-0.0847175][0.712626,0.680728,0][-1.12351,0.680808,0.0036689][0.954998,-0.280344,-0.0968815][0.713264,0.716543,0][-0.988004,0.885996,0.0036689][0.831456,-0.549093,-0.0847175][0.2584,0.794384,0][-0.976133,0.885228,-0.109452][0.832813,-0.54751,0.0815833][0.240257,0.792421,0][-0.779892,1.01867,-0.0864971][0.556892,-0.828676,0.0562776][0.245139,0.755459,0][-0.779892,1.01867,-0.0864971][0.556892,-0.828676,0.0562776][0.245139,0.755459,0][-0.788721,1.01919,0.00366889][0.554781,-0.830033,-0.0571286][0.258881,0.756959,0][-0.988004,0.885996,0.0036689][0.831456,-0.549093,-0.0847175][0.2584,0.794384,0][-0.515125,1.0978,0.00366889][0.276009,-0.960727,-0.0286972][0.259731,0.713176,0][-0.788721,1.01919,0.00366889][0.554781,-0.830033,-0.0571286][0.258881,0.756959,0][-0.779892,1.01867,-0.0864971][0.556892,-0.828676,0.0562776][0.245139,0.755459,0][-0.779892,1.01867,-0.0864971][0.556892,-0.828676,0.0562776][0.245139,0.755459,0][-0.509523,1.09764,-0.0551121][0.277431,-0.96038,0.0264968][0.250768,0.712182,0][-0.515125,1.0978,0.00366889][0.276009,-0.960727,-0.0286972][0.259731,0.713176,0][-1.16387,0.402998,-0.399107][0.888617,-0.142657,0.435899][0.656836,0.75841,0][-1.18919,0.404144,-0.134313][0.991287,-0.0705157,0.111253][0.695105,0.758036,0][-1.2052,0.175816,-0.136346][0.990296,-0.0742887,0.117456][0.695614,0.791753,0][-1.2052,0.175816,-0.136346][0.990296,-0.0742887,0.117456][0.695614,0.791753,0][-1.17695,0.176163,-0.403767][0.907154,-0.0608635,0.416373][0.655301,0.791599,0][-1.16387,0.402998,-0.399107][0.888617,-0.142657,0.435899][0.656836,0.75841,0][-7.36042e-007,1.13582,0.00366888][0.0282572,-0.999503,-0.0139729][0.261391,0.631762,0][-0.219196,1.12882,0.00367088][0.0319097,-0.999485,-0.0032844][0.260645,0.666969,0][-0.216842,1.12879,-0.0213231][0.0320336,-0.999483,0.00292158][0.256689,0.666514,0][-0.0687877,1.12879,-0.218031][0.0049667,-0.999533,0.0301387][0.225513,0.64274,0][-0.161684,1.09757,-0.51785][0.043215,-0.964252,0.26144][0.178517,0.658714,0][-7.41821e-007,1.09755,-0.54466][0.0430334,-0.964215,0.261607][0.17321,0.633479,0][-7.41821e-007,1.09755,-0.54466][0.0430334,-0.964215,0.261607][0.17321,0.633479,0][-7.37103e-007,1.12879,-0.22943][0.0049667,-0.999533,0.0301387][0.223543,0.631762,0][-0.0687877,1.12879,-0.218031][0.0049667,-0.999533,0.0301387][0.225513,0.64274,0][-0.130858,1.1288,-0.18494][0.0143733,-0.999526,0.0272199][0.23084,0.652608,0][-0.307586,1.09763,-0.440021][0.124814,-0.963744,0.235836][0.19126,0.681045,0][-0.161684,1.09757,-0.51785][0.043215,-0.964252,0.26144][0.178517,0.658714,0][-0.161684,1.09757,-0.51785][0.043215,-0.964252,0.26144][0.178517,0.658714,0][-0.0687877,1.12879,-0.218031][0.0049667,-0.999533,0.0301387][0.225513,0.64274,0][-0.130858,1.1288,-0.18494][0.0143733,-0.999526,0.0272199][0.23084,0.652608,0][-0.180135,1.12881,-0.133382][0.0224343,-0.999514,0.0216267][0.23901,0.660458,0][-0.42343,1.0977,-0.318743][0.194411,-0.962901,0.187153][0.210241,0.698683,0][-0.307586,1.09763,-0.440021][0.124814,-0.963744,0.235836][0.19126,0.681045,0][-0.307586,1.09763,-0.440021][0.124814,-0.963744,0.235836][0.19126,0.681045,0][-0.130858,1.1288,-0.18494][0.0143733,-0.999526,0.0272199][0.23084,0.652608,0][-0.180135,1.12881,-0.133382][0.0224343,-0.999514,0.0216267][0.23901,0.660458,0][-0.211603,1.12882,-0.0686521][0.0282573,-0.999503,0.0139727][0.249212,0.665552,0][-0.49738,1.09781,-0.166587][0.244453,-0.96214,0.120536][0.233668,0.710079,0][-0.42343,1.0977,-0.318743][0.194411,-0.962901,0.187153][0.210241,0.698683,0][-0.42343,1.0977,-0.318743][0.194411,-0.962901,0.187153][0.210241,0.698683,0][-0.180135,1.12881,-0.133382][0.0224343,-0.999514,0.0216267][0.23901,0.660458,0][-0.211603,1.12882,-0.0686521][0.0282573,-0.999503,0.0139727][0.249212,0.665552,0][-0.49738,1.09781,-0.166587][0.244453,-0.96214,0.120536][0.233668,0.710079,0][-0.211603,1.12882,-0.0686521][0.0282573,-0.999503,0.0139727][0.249212,0.665552,0][-0.216842,1.12879,-0.0213231][0.0320336,-0.999483,0.00292158][0.256689,0.666514,0][-0.216842,1.12879,-0.0213231][0.0320336,-0.999483,0.00292158][0.256689,0.666514,0][-0.509523,1.09764,-0.0551121][0.277431,-0.96038,0.0264968][0.250768,0.712182,0][-0.49738,1.09781,-0.166587][0.244453,-0.96214,0.120536][0.233668,0.710079,0][-0.509523,1.09764,-0.0551121][0.277431,-0.96038,0.0264968][0.250768,0.712182,0][-0.216842,1.12879,-0.0213231][0.0320336,-0.999483,0.00292158][0.256689,0.666514,0][-0.219196,1.12882,0.00367088][0.0319097,-0.999485,-0.0032844][0.260645,0.666969,0][-0.219196,1.12882,0.00367088][0.0319097,-0.999485,-0.0032844][0.260645,0.666969,0][-0.515125,1.0978,0.00366889][0.276009,-0.960727,-0.0286972][0.259731,0.713176,0][-0.509523,1.09764,-0.0551121][0.277431,-0.96038,0.0264968][0.250768,0.712182,0][-0.211603,1.12882,0.0759899][0.0282572,-0.999503,-0.0139729][0.272113,0.666061,0][-0.49738,1.09781,0.173925][0.244775,-0.962171,-0.119634][0.285986,0.711094,0][-0.515125,1.0978,0.00366889][0.276009,-0.960727,-0.0286972][0.259731,0.713176,0][-0.515125,1.0978,0.00366889][0.276009,-0.960727,-0.0286972][0.259731,0.713176,0][-0.219196,1.12882,0.00367088][0.0319097,-0.999485,-0.0032844][0.260645,0.666969,0][-0.211603,1.12882,0.0759899][0.0282572,-0.999503,-0.0139729][0.272113,0.666061,0][-0.180135,1.12881,0.140719][0.0282572,-0.999503,-0.0139729][0.282543,0.661416,0][-0.42343,1.0977,0.326081][0.244936,-0.961988,-0.120771][0.309852,0.700645,0][-0.49738,1.09781,0.173925][0.244775,-0.962171,-0.119634][0.285986,0.711094,0][-0.49738,1.09781,0.173925][0.244775,-0.962171,-0.119634][0.285986,0.711094,0][-0.211603,1.12882,0.0759899][0.0282572,-0.999503,-0.0139729][0.272113,0.666061,0][-0.180135,1.12881,0.140719][0.0282572,-0.999503,-0.0139729][0.282543,0.661416,0][-0.130858,1.1288,0.192278][0.0224346,-0.999514,-0.0216265][0.291068,0.653916,0][-0.307586,1.09763,0.447359][0.194662,-0.962804,-0.187391][0.329532,0.683771,0][-0.42343,1.0977,0.326081][0.244936,-0.961988,-0.120771][0.309852,0.700645,0][-0.42343,1.0977,0.326081][0.244936,-0.961988,-0.120771][0.309852,0.700645,0][-0.180135,1.12881,0.140719][0.0282572,-0.999503,-0.0139729][0.282543,0.661416,0][-0.130858,1.1288,0.192278][0.0224346,-0.999514,-0.0216265][0.291068,0.653916,0][-0.0687887,1.12879,0.225368][0.0143732,-0.999526,-0.02722][0.296834,0.644256,0][-0.161685,1.09757,0.525188][0.124947,-0.963666,-0.236086][0.343161,0.661932,0][-0.307586,1.09763,0.447359][0.194662,-0.962804,-0.187391][0.329532,0.683771,0][-0.307586,1.09763,0.447359][0.194662,-0.962804,-0.187391][0.329532,0.683771,0][-0.130858,1.1288,0.192278][0.0224346,-0.999514,-0.0216265][0.291068,0.653916,0][-0.0687887,1.12879,0.225368][0.0143732,-0.999526,-0.02722][0.296834,0.644256,0][-7.37104e-007,1.12879,0.236768][0.00494071,-0.999533,-0.0301469][0.299266,0.633318,0][-7.41821e-007,1.09755,0.551998][0.0430339,-0.964215,-0.261606][0.349436,0.636901,0][-0.161685,1.09757,0.525188][0.124947,-0.963666,-0.236086][0.343161,0.661932,0][-0.161685,1.09757,0.525188][0.124947,-0.963666,-0.236086][0.343161,0.661932,0][-0.0687887,1.12879,0.225368][0.0143732,-0.999526,-0.02722][0.296834,0.644256,0][-7.37104e-007,1.12879,0.236768][0.00494071,-0.999533,-0.0301469][0.299266,0.633318,0][-1.12521,0.434013,0.855891][-0.897945,0.0327008,0.438892][0.724785,0.303365,0][-1.32276,0.434013,0.451708][-0.897945,0.0327008,0.438892][0.650421,0.225969,0][-1.33158,0.183656,0.452322][-0.897945,0.0327008,0.438892][0.692454,0.180794,0][-1.33158,0.183656,0.452322][-0.897945,0.0327008,0.438892][0.692454,0.180794,0][-1.13345,0.183656,0.858867][-0.898385,0.0347735,0.437831][0.770652,0.263267,0][-1.12521,0.434013,0.855891][-0.897945,0.0327008,0.438892][0.724785,0.303365,0][-0.817514,0.434012,1.17665][-0.72128,0.0319645,0.691906][0.789198,0.387222,0][-1.12521,0.434013,0.855891][-0.897945,0.0327008,0.438892][0.724785,0.303365,0][-1.13345,0.183656,0.858867][-0.898385,0.0347735,0.437831][0.770652,0.263267,0][-1.13345,0.183656,0.858867][-0.898385,0.0347735,0.437831][0.770652,0.263267,0][-0.822766,0.183656,1.17717][-0.715517,0.016447,0.698401][0.839218,0.351503,0][-0.817514,0.434012,1.17665][-0.72128,0.0319645,0.691906][0.789198,0.387222,0][-0.429794,0.434012,1.38259][-0.469061,0.0116566,0.883089][0.844086,0.478369,0][-0.817514,0.434012,1.17665][-0.72128,0.0319645,0.691906][0.789198,0.387222,0][-0.822766,0.183656,1.17717][-0.715517,0.016447,0.698401][0.839218,0.351503,0][-0.822766,0.183656,1.17717][-0.715517,0.016447,0.698401][0.839218,0.351503,0][-0.432921,0.183656,1.38467][-0.469826,0.0132086,0.88266][0.898803,0.447238,0][-0.429794,0.434012,1.38259][-0.469061,0.0116566,0.883089][0.844086,0.478369,0][-8.42012e-007,0.434011,1.45355][-0.162895,0.0102392,0.98659][0.891269,0.579128,0][-0.429794,0.434012,1.38259][-0.469061,0.0116566,0.883089][0.844086,0.478369,0][-0.432921,0.183656,1.38467][-0.469826,0.0132086,0.88266][0.898803,0.447238,0][-0.432921,0.183656,1.38467][-0.469826,0.0132086,0.88266][0.898803,0.447238,0][-8.79815e-007,0.183655,1.45616][-0.162917,0.0102777,0.986586][0.9514,0.549833,0][-8.42012e-007,0.434011,1.45355][-0.162895,0.0102392,0.98659][0.891269,0.579128,0][-8.42012e-007,0.434012,-1.44622][-0.159623,0.199648,-0.966779][0.010041,0.01534,0][-0.430979,0.421578,-1.37763][-0.159623,0.199648,-0.966779][0.129552,0.003044,0][-0.429793,0.434012,-1.37525][-0.159623,0.199648,-0.966779][0.129436,0.006552,0][-0.817514,0.434012,-1.16931][-0.45878,0.208525,-0.863735][0.248166,0.016827,0][-0.429793,0.434012,-1.37525][-0.159623,0.199648,-0.966779][0.129436,0.006552,0][-0.430979,0.421578,-1.37763][-0.159623,0.199648,-0.966779][0.129552,0.003044,0][-0.430979,0.421578,-1.37763][-0.159623,0.199648,-0.966779][0.129552,0.003044,0][-0.821072,0.39309,-1.17231][-0.469177,0.104948,-0.876846][0.25047,0.005658,0][-0.817514,0.434012,-1.16931][-0.45878,0.208525,-0.863735][0.248166,0.016827,0][-1.12521,0.434012,-0.848552][-0.717056,0.112672,-0.687849][0.362323,0.047361,0][-0.817514,0.434012,-1.16931][-0.45878,0.208525,-0.863735][0.248166,0.016827,0][-0.821072,0.39309,-1.17231][-0.469177,0.104948,-0.876846][0.25047,0.005658,0][-0.821072,0.39309,-1.17231][-0.469177,0.104948,-0.876846][0.25047,0.005658,0][-1.1396,0.297493,-0.859448][-0.71438,0.13016,-0.687546][0.374842,0.012629,0][-1.12521,0.434012,-0.848552][-0.717056,0.112672,-0.687849][0.362323,0.047361,0][-1.1396,0.297493,-0.859448][-0.71438,0.13016,-0.687546][0.374842,0.012629,0][-1.24248,0.183285,-0.66452][-0.905894,0.125878,-0.404365][0.441384,0.009623,0][-1.33872,0.183285,-0.448908][-0.905894,0.125878,-0.404365][0.498534,0.03683,0][-1.1396,0.297493,-0.859448][-0.71438,0.13016,-0.687546][0.374842,0.012629,0][-1.33872,0.183285,-0.448908][-0.905894,0.125878,-0.404365][0.498534,0.03683,0][-1.32276,0.434012,-0.44437][-0.904838,0.0651983,-0.420734][0.467804,0.094817,0][-1.1396,0.297493,-0.859448][-0.71438,0.13016,-0.687546][0.374842,0.012629,0][-1.32276,0.434012,-0.44437][-0.904838,0.0651983,-0.420734][0.467804,0.094817,0][-1.12521,0.434012,-0.848552][-0.717056,0.112672,-0.687849][0.362323,0.047361,0][-1.37012,0.434013,0.00366892][-0.991736,0.0739917,-0.104813][0.56446,0.155913,0][-1.35369,0.434013,-0.151705][-0.991736,0.0739917,-0.104813][0.531716,0.133884,0][-1.3721,0.183656,-0.154313][-0.991736,0.0739917,-0.104813][0.567735,0.078271,0][-1.3721,0.183656,-0.154313][-0.991736,0.0739917,-0.104813][0.567735,0.078271,0][-1.38763,0.183656,0.00366893][-0.992796,0.0694649,-0.0976263][0.603999,0.103938,0][-1.37012,0.434013,0.00366892][-0.991736,0.0739917,-0.104813][0.56446,0.155913,0][-1.32276,0.434013,0.451708][-0.897945,0.0327008,0.438892][0.650421,0.225969,0][-1.37012,0.434013,0.00366892][-0.991736,0.0739917,-0.104813][0.56446,0.155913,0][-1.38763,0.183656,0.00366893][-0.992796,0.0694649,-0.0976263][0.603999,0.103938,0][-1.38763,0.183656,0.00366893][-0.992796,0.0694649,-0.0976263][0.603999,0.103938,0][-1.33158,0.183656,0.452322][-0.897945,0.0327008,0.438892][0.692454,0.180794,0][-1.32276,0.434013,0.451708][-0.897945,0.0327008,0.438892][0.650421,0.225969,0][-1.04797,0.751415,0.797387][-0.860634,0.286982,0.420655][0.665101,0.353667,0][-1.23196,0.751415,0.420951][-0.860634,0.286982,0.420655][0.59669,0.283718,0][-1.32276,0.434013,0.451708][-0.897945,0.0327008,0.438892][0.650421,0.225969,0][-1.32276,0.434013,0.451708][-0.897945,0.0327008,0.438892][0.650421,0.225969,0][-1.12521,0.434013,0.855891][-0.897945,0.0327008,0.438892][0.724785,0.303365,0][-1.04797,0.751415,0.797387][-0.860634,0.286982,0.420655][0.665101,0.353667,0][-0.761393,0.751415,1.09613][-0.6906,0.290174,0.662473][0.723477,0.430454,0][-1.04797,0.751415,0.797387][-0.860634,0.286982,0.420655][0.665101,0.353667,0][-1.12521,0.434013,0.855891][-0.897945,0.0327008,0.438892][0.724785,0.303365,0][-1.12521,0.434013,0.855891][-0.897945,0.0327008,0.438892][0.724785,0.303365,0][-0.817514,0.434012,1.17665][-0.72128,0.0319645,0.691906][0.789198,0.387222,0][-0.761393,0.751415,1.09613][-0.6906,0.290174,0.662473][0.723477,0.430454,0][-0.400289,0.751415,1.28793][-0.448436,0.293473,0.844262][0.771633,0.514908,0][-0.761393,0.751415,1.09613][-0.6906,0.290174,0.662473][0.723477,0.430454,0][-0.817514,0.434012,1.17665][-0.72128,0.0319645,0.691906][0.789198,0.387222,0][-0.817514,0.434012,1.17665][-0.72128,0.0319645,0.691906][0.789198,0.387222,0][-0.429794,0.434012,1.38259][-0.469061,0.0116566,0.883089][0.844086,0.478369,0][-0.400289,0.751415,1.28793][-0.448436,0.293473,0.844262][0.771633,0.514908,0][-7.94085e-007,0.751415,1.35402][-0.155625,0.295572,0.942559][0.80956,0.610093,0][-0.400289,0.751415,1.28793][-0.448436,0.293473,0.844262][0.771633,0.514908,0][-0.429794,0.434012,1.38259][-0.469061,0.0116566,0.883089][0.844086,0.478369,0][-0.429794,0.434012,1.38259][-0.469061,0.0116566,0.883089][0.844086,0.478369,0][-8.42012e-007,0.434011,1.45355][-0.162895,0.0102392,0.98659][0.891269,0.579128,0][-7.94085e-007,0.751415,1.35402][-0.155625,0.295572,0.942559][0.80956,0.610093,0][-0.400289,0.751415,-1.28059][-0.155625,0.29557,-0.94256][0.129997,0.095214,0][-7.94085e-007,0.751415,-1.34668][-0.155625,0.29557,-0.94256][0.021977,0.106116,0][-8.42012e-007,0.434012,-1.44622][-0.159623,0.199648,-0.966779][0.010041,0.01534,0][-8.42012e-007,0.434012,-1.44622][-0.159623,0.199648,-0.966779][0.010041,0.01534,0][-0.429793,0.434012,-1.37525][-0.159623,0.199648,-0.966779][0.129436,0.006552,0][-0.400289,0.751415,-1.28059][-0.155625,0.29557,-0.94256][0.129997,0.095214,0][-0.761393,0.751415,-1.08879][-0.448438,0.293474,-0.844261][0.234815,0.102692,0][-0.400289,0.751415,-1.28059][-0.155625,0.29557,-0.94256][0.129997,0.095214,0][-0.429793,0.434012,-1.37525][-0.159623,0.199648,-0.966779][0.129436,0.006552,0][-0.429793,0.434012,-1.37525][-0.159623,0.199648,-0.966779][0.129436,0.006552,0][-0.817514,0.434012,-1.16931][-0.45878,0.208525,-0.863735][0.248166,0.016827,0][-0.761393,0.751415,-1.08879][-0.448438,0.293474,-0.844261][0.234815,0.102692,0][-1.04797,0.751415,-0.790048][-0.6906,0.290174,-0.662473][0.335744,0.127843,0][-0.761393,0.751415,-1.08879][-0.448438,0.293474,-0.844261][0.234815,0.102692,0][-0.817514,0.434012,-1.16931][-0.45878,0.208525,-0.863735][0.248166,0.016827,0][-0.817514,0.434012,-1.16931][-0.45878,0.208525,-0.863735][0.248166,0.016827,0][-1.12521,0.434012,-0.848552][-0.717056,0.112672,-0.687849][0.362323,0.047361,0][-1.04797,0.751415,-0.790048][-0.6906,0.290174,-0.662473][0.335744,0.127843,0][-1.23196,0.751415,-0.413613][-0.860635,0.286979,-0.420654][0.430697,0.16834,0][-1.04797,0.751415,-0.790048][-0.6906,0.290174,-0.662473][0.335744,0.127843,0][-1.12521,0.434012,-0.848552][-0.717056,0.112672,-0.687849][0.362323,0.047361,0][-1.12521,0.434012,-0.848552][-0.717056,0.112672,-0.687849][0.362323,0.047361,0][-1.32276,0.434012,-0.44437][-0.904838,0.0651983,-0.420734][0.467804,0.094817,0][-1.23196,0.751415,-0.413613][-0.860635,0.286979,-0.420654][0.430697,0.16834,0][-1.35369,0.434013,-0.151705][-0.991736,0.0739917,-0.104813][0.531716,0.133884,0][-1.26077,0.751415,-0.141039][-0.953904,0.282671,-0.100817][0.487272,0.203922,0][-1.23196,0.751415,-0.413613][-0.860635,0.286979,-0.420654][0.430697,0.16834,0][-1.23196,0.751415,-0.413613][-0.860635,0.286979,-0.420654][0.430697,0.16834,0][-1.32276,0.434012,-0.44437][-0.904838,0.0651983,-0.420734][0.467804,0.094817,0][-1.35369,0.434013,-0.151705][-0.991736,0.0739917,-0.104813][0.531716,0.133884,0][-1.23196,0.751415,0.420951][-0.860634,0.286982,0.420655][0.59669,0.283718,0][-1.27606,0.751415,0.0036689][-0.953904,0.282671,0.100815][0.516811,0.22255,0][-1.37012,0.434013,0.00366892][-0.991736,0.0739917,-0.104813][0.56446,0.155913,0][-1.37012,0.434013,0.00366892][-0.991736,0.0739917,-0.104813][0.56446,0.155913,0][-1.32276,0.434013,0.451708][-0.897945,0.0327008,0.438892][0.650421,0.225969,0][-1.23196,0.751415,0.420951][-0.860634,0.286982,0.420655][0.59669,0.283718,0][-0.910315,1.00326,0.693131][-0.7454,0.558247,0.364333][0.609423,0.399554,0][-1.07014,1.00326,0.36614][-0.7454,0.558247,0.364333][0.547529,0.337087,0][-1.23196,0.751415,0.420951][-0.860634,0.286982,0.420655][0.59669,0.283718,0][-1.23196,0.751415,0.420951][-0.860634,0.286982,0.420655][0.59669,0.283718,0][-1.04797,0.751415,0.797387][-0.860634,0.286982,0.420655][0.665101,0.353667,0][-0.910315,1.00326,0.693131][-0.7454,0.558247,0.364333][0.609423,0.399554,0][-0.661383,1.00326,0.952632][-0.596468,0.562887,0.572175][0.661605,0.468758,0][-0.910315,1.00326,0.693131][-0.7454,0.558247,0.364333][0.609423,0.399554,0][-1.04797,0.751415,0.797387][-0.860634,0.286982,0.420655][0.665101,0.353667,0][-1.04797,0.751415,0.797387][-0.860634,0.286982,0.420655][0.665101,0.353667,0][-0.761393,0.751415,1.09613][-0.6906,0.290174,0.662473][0.723477,0.430454,0][-0.661383,1.00326,0.952632][-0.596468,0.562887,0.572175][0.661605,0.468758,0][-0.347711,1.00326,1.11924][-0.386191,0.567642,0.727075][0.702943,0.54507,0][-0.661383,1.00326,0.952632][-0.596468,0.562887,0.572175][0.661605,0.468758,0][-0.761393,0.751415,1.09613][-0.6906,0.290174,0.662473][0.723477,0.430454,0][-0.761393,0.751415,1.09613][-0.6906,0.290174,0.662473][0.723477,0.430454,0][-0.400289,0.751415,1.28793][-0.448436,0.293473,0.844262][0.771633,0.514908,0][-0.347711,1.00326,1.11924][-0.386191,0.567642,0.727075][0.702943,0.54507,0][-7.56058e-007,1.00326,1.17665][-0.133776,0.570643,0.810229][0.731101,0.630581,0][-0.347711,1.00326,1.11924][-0.386191,0.567642,0.727075][0.702943,0.54507,0][-0.400289,0.751415,1.28793][-0.448436,0.293473,0.844262][0.771633,0.514908,0][-0.400289,0.751415,1.28793][-0.448436,0.293473,0.844262][0.771633,0.514908,0][-7.94085e-007,0.751415,1.35402][-0.155625,0.295572,0.942559][0.80956,0.610093,0][-7.56058e-007,1.00326,1.17665][-0.133776,0.570643,0.810229][0.731101,0.630581,0][-0.347711,1.00326,-1.1119][-0.133776,0.570643,-0.810229][0.133393,0.175239,0][-7.56058e-007,1.00326,-1.16931][-0.133776,0.570643,-0.810229][0.04015,0.188989,0][-7.94085e-007,0.751415,-1.34668][-0.155625,0.29557,-0.94256][0.021977,0.106116,0][-7.94085e-007,0.751415,-1.34668][-0.155625,0.29557,-0.94256][0.021977,0.106116,0][-0.400289,0.751415,-1.28059][-0.155625,0.29557,-0.94256][0.129997,0.095214,0][-0.347711,1.00326,-1.1119][-0.133776,0.570643,-0.810229][0.133393,0.175239,0][-0.661383,1.00326,-0.945293][-0.386193,0.567642,-0.727074][0.224815,0.180035,0][-0.347711,1.00326,-1.1119][-0.133776,0.570643,-0.810229][0.133393,0.175239,0][-0.400289,0.751415,-1.28059][-0.155625,0.29557,-0.94256][0.129997,0.095214,0][-0.400289,0.751415,-1.28059][-0.155625,0.29557,-0.94256][0.129997,0.095214,0][-0.761393,0.751415,-1.08879][-0.448438,0.293474,-0.844261][0.234815,0.102692,0][-0.661383,1.00326,-0.945293][-0.386193,0.567642,-0.727074][0.224815,0.180035,0][-0.910315,1.00326,-0.685792][-0.596468,0.562886,-0.572175][0.313493,0.200873,0][-0.661383,1.00326,-0.945293][-0.386193,0.567642,-0.727074][0.224815,0.180035,0][-0.761393,0.751415,-1.08879][-0.448438,0.293474,-0.844261][0.234815,0.102692,0][-0.761393,0.751415,-1.08879][-0.448438,0.293474,-0.844261][0.234815,0.102692,0][-1.04797,0.751415,-0.790048][-0.6906,0.290174,-0.662473][0.335744,0.127843,0][-0.910315,1.00326,-0.685792][-0.596468,0.562886,-0.572175][0.313493,0.200873,0][-1.07014,1.00326,-0.358802][-0.7454,0.558249,-0.364332][0.397883,0.23553,0][-0.910315,1.00326,-0.685792][-0.596468,0.562886,-0.572175][0.313493,0.200873,0][-1.04797,0.751415,-0.790048][-0.6906,0.290174,-0.662473][0.335744,0.127843,0][-1.04797,0.751415,-0.790048][-0.6906,0.290174,-0.662473][0.335744,0.127843,0][-1.23196,0.751415,-0.413613][-0.860635,0.286979,-0.420654][0.430697,0.16834,0][-1.07014,1.00326,-0.358802][-0.7454,0.558249,-0.364332][0.397883,0.23553,0][-1.26077,0.751415,-0.141039][-0.953904,0.282671,-0.100817][0.487272,0.203922,0][-1.09516,1.00326,-0.122032][-0.829276,0.551923,-0.0876452][0.447731,0.268176,0][-1.07014,1.00326,-0.358802][-0.7454,0.558249,-0.364332][0.397883,0.23553,0][-1.07014,1.00326,-0.358802][-0.7454,0.558249,-0.364332][0.397883,0.23553,0][-1.23196,0.751415,-0.413613][-0.860635,0.286979,-0.420654][0.430697,0.16834,0][-1.26077,0.751415,-0.141039][-0.953904,0.282671,-0.100817][0.487272,0.203922,0][-1.07014,1.00326,0.36614][-0.7454,0.558247,0.364333][0.547529,0.337087,0][-1.10845,1.00326,0.00366889][-0.829277,0.551923,0.0876425][0.474656,0.284276,0][-1.27606,0.751415,0.0036689][-0.953904,0.282671,0.100815][0.516811,0.22255,0][-1.27606,0.751415,0.0036689][-0.953904,0.282671,0.100815][0.516811,0.22255,0][-1.23196,0.751415,0.420951][-0.860634,0.286982,0.420655][0.59669,0.283718,0][-1.07014,1.00326,0.36614][-0.7454,0.558247,0.364333][0.547529,0.337087,0][-0.70781,1.17054,0.539755][-0.500623,0.830363,0.244691][0.549451,0.44744,0][-0.83208,1.17054,0.285506][-0.500623,0.830363,0.244691][0.495446,0.393433,0][-1.07014,1.00326,0.36614][-0.7454,0.558247,0.364333][0.547529,0.337087,0][-1.07014,1.00326,0.36614][-0.7454,0.558247,0.364333][0.547529,0.337087,0][-0.910315,1.00326,0.693131][-0.7454,0.558247,0.364333][0.609423,0.399554,0][-0.70781,1.17054,0.539755][-0.500623,0.830363,0.244691][0.549451,0.44744,0][-0.514255,1.17054,0.741529][-0.398777,0.833454,0.382534][0.594588,0.507621,0][-0.70781,1.17054,0.539755][-0.500623,0.830363,0.244691][0.549451,0.44744,0][-0.910315,1.00326,0.693131][-0.7454,0.558247,0.364333][0.609423,0.399554,0][-0.910315,1.00326,0.693131][-0.7454,0.558247,0.364333][0.609423,0.399554,0][-0.661383,1.00326,0.952632][-0.596468,0.562887,0.572175][0.661605,0.468758,0][-0.514255,1.17054,0.741529][-0.398777,0.833454,0.382534][0.594588,0.507621,0][-0.270361,1.17054,0.871075][-0.25699,0.836578,0.483831][0.629166,0.573133,0][-0.514255,1.17054,0.741529][-0.398777,0.833454,0.382534][0.594588,0.507621,0][-0.661383,1.00326,0.952632][-0.596468,0.562887,0.572175][0.661605,0.468758,0][-0.661383,1.00326,0.952632][-0.596468,0.562887,0.572175][0.661605,0.468758,0][-0.347711,1.00326,1.11924][-0.386191,0.567642,0.727075][0.702943,0.54507,0][-0.270361,1.17054,0.871075][-0.25699,0.836578,0.483831][0.629166,0.573133,0][-7.30799e-007,1.17054,0.915714][-0.0887593,0.838528,0.53758][0.650195,0.643139,0][-0.270361,1.17054,0.871075][-0.25699,0.836578,0.483831][0.629166,0.573133,0][-0.347711,1.00326,1.11924][-0.386191,0.567642,0.727075][0.702943,0.54507,0][-0.347711,1.00326,1.11924][-0.386191,0.567642,0.727075][0.702943,0.54507,0][-7.56058e-007,1.00326,1.17665][-0.133776,0.570643,0.810229][0.731101,0.630581,0][-7.30799e-007,1.17054,0.915714][-0.0887593,0.838528,0.53758][0.650195,0.643139,0][-0.27036,1.17054,-0.863737][-0.0887578,0.838529,-0.537579][0.13997,0.257482,0][-7.30799e-007,1.17054,-0.908375][-0.0887577,0.838529,-0.537579][0.065813,0.270119,0][-7.56058e-007,1.00326,-1.16931][-0.133776,0.570643,-0.810229][0.04015,0.188989,0][-7.56058e-007,1.00326,-1.16931][-0.133776,0.570643,-0.810229][0.04015,0.188989,0][-0.347711,1.00326,-1.1119][-0.133776,0.570643,-0.810229][0.133393,0.175239,0][-0.27036,1.17054,-0.863737][-0.0887578,0.838529,-0.537579][0.13997,0.257482,0][-0.514254,1.17054,-0.73419][-0.256992,0.836579,-0.48383][0.216224,0.260519,0][-0.27036,1.17054,-0.863737][-0.0887578,0.838529,-0.537579][0.13997,0.257482,0][-0.347711,1.00326,-1.1119][-0.133776,0.570643,-0.810229][0.133393,0.175239,0][-0.347711,1.00326,-1.1119][-0.133776,0.570643,-0.810229][0.133393,0.175239,0][-0.661383,1.00326,-0.945293][-0.386193,0.567642,-0.727074][0.224815,0.180035,0][-0.514254,1.17054,-0.73419][-0.256992,0.836579,-0.48383][0.216224,0.260519,0][-0.70781,1.17054,-0.532417][-0.398775,0.833454,-0.382536][0.29153,0.277361,0][-0.514254,1.17054,-0.73419][-0.256992,0.836579,-0.48383][0.216224,0.260519,0][-0.661383,1.00326,-0.945293][-0.386193,0.567642,-0.727074][0.224815,0.180035,0][-0.661383,1.00326,-0.945293][-0.386193,0.567642,-0.727074][0.224815,0.180035,0][-0.910315,1.00326,-0.685792][-0.596468,0.562886,-0.572175][0.313493,0.200873,0][-0.70781,1.17054,-0.532417][-0.398775,0.833454,-0.382536][0.29153,0.277361,0][-0.83208,1.17054,-0.278168][-0.500625,0.830362,-0.244692][0.363734,0.306467,0][-0.70781,1.17054,-0.532417][-0.398775,0.833454,-0.382536][0.29153,0.277361,0][-0.910315,1.00326,-0.685792][-0.596468,0.562886,-0.572175][0.313493,0.200873,0][-0.910315,1.00326,-0.685792][-0.596468,0.562886,-0.572175][0.313493,0.200873,0][-1.07014,1.00326,-0.358802][-0.7454,0.558249,-0.364332][0.397883,0.23553,0][-0.83208,1.17054,-0.278168][-0.500625,0.830362,-0.244692][0.363734,0.306467,0][-1.09516,1.00326,-0.122032][-0.829276,0.551923,-0.0876452][0.447731,0.268176,0][-0.851537,1.17054,-0.0940691][-0.560433,0.826079,-0.059231][0.407219,0.33524,0][-0.83208,1.17054,-0.278168][-0.500625,0.830362,-0.244692][0.363734,0.306467,0][-0.83208,1.17054,-0.278168][-0.500625,0.830362,-0.244692][0.363734,0.306467,0][-1.07014,1.00326,-0.358802][-0.7454,0.558249,-0.364332][0.397883,0.23553,0][-1.09516,1.00326,-0.122032][-0.829276,0.551923,-0.0876452][0.447731,0.268176,0][-0.83208,1.17054,0.285506][-0.500623,0.830363,0.244691][0.495446,0.393433,0][-0.861867,1.17054,0.00366888][-0.560433,0.826079,0.0592315][0.432548,0.34956,0][-1.10845,1.00326,0.00366889][-0.829277,0.551923,0.0876425][0.474656,0.284276,0][-1.10845,1.00326,0.00366889][-0.829277,0.551923,0.0876425][0.474656,0.284276,0][-1.07014,1.00326,0.36614][-0.7454,0.558247,0.364333][0.547529,0.337087,0][-0.83208,1.17054,0.285506][-0.500623,0.830363,0.244691][0.495446,0.393433,0][-0.45075,1.26248,0.345061][-0.250644,0.960296,0.122508][0.415495,0.478982,0][-0.529888,1.26248,0.183149][-0.250644,0.960296,0.122508][0.370241,0.45683,0][-0.83208,1.17054,0.285506][-0.500623,0.830363,0.244691][0.400331,0.368523,0][-0.83208,1.17054,0.285506][-0.500623,0.830363,0.244691][0.400331,0.368523,0][-0.70781,1.17054,0.539755][-0.500623,0.830363,0.244691][0.471992,0.403555,0][-0.45075,1.26248,0.345061][-0.250644,0.960296,0.122508][0.415495,0.478982,0][-0.32749,1.26248,0.473554][-0.199097,0.961189,0.190989][0.451638,0.513296,0][-0.45075,1.26248,0.345061][-0.250644,0.960296,0.122508][0.415495,0.478982,0][-0.70781,1.17054,0.539755][-0.500623,0.830363,0.244691][0.471992,0.403555,0][-0.70781,1.17054,0.539755][-0.500623,0.830363,0.244691][0.471992,0.403555,0][-0.514255,1.17054,0.741529][-0.398777,0.833454,0.382534][0.529258,0.457746,0][-0.32749,1.26248,0.473554][-0.199097,0.961189,0.190989][0.451638,0.513296,0][-0.172172,1.26247,0.556052][-0.127946,0.962084,0.240883][0.47528,0.556615,0][-0.32749,1.26248,0.473554][-0.199097,0.961189,0.190989][0.451638,0.513296,0][-0.514255,1.17054,0.741529][-0.398777,0.833454,0.382534][0.529258,0.457746,0][-0.514255,1.17054,0.741529][-0.398777,0.833454,0.382534][0.529258,0.457746,0][-0.270361,1.17054,0.871075][-0.25699,0.836578,0.483831][0.566817,0.526033,0][-0.172172,1.26247,0.556052][-0.127946,0.962084,0.240883][0.47528,0.556615,0][-7.16917e-007,1.26247,0.584479][-0.0441129,0.962638,0.267174][0.484165,0.605001,0][-0.172172,1.26247,0.556052][-0.127946,0.962084,0.240883][0.47528,0.556615,0][-0.270361,1.17054,0.871075][-0.25699,0.836578,0.483831][0.566817,0.526033,0][-0.270361,1.17054,0.871075][-0.25699,0.836578,0.483831][0.566817,0.526033,0][-7.30799e-007,1.17054,0.915714][-0.0887593,0.838528,0.53758][0.581249,0.602099,0][-7.16917e-007,1.26247,0.584479][-0.0441129,0.962638,0.267174][0.484165,0.605001,0][-0.27036,1.17054,-0.863737][-0.0887578,0.838529,-0.537579][0.072187,0.521888,0][-0.172172,1.26247,-0.548714][-0.0441079,0.962638,-0.267176][0.163217,0.553961,0][-7.16917e-007,1.26247,-0.577141][-0.0441079,0.962638,-0.267176][0.153526,0.602193,0][-7.16917e-007,1.26247,-0.577141][-0.0441079,0.962638,-0.267176][0.153526,0.602193,0][-7.30799e-007,1.17054,-0.908375][-0.0887577,0.838529,-0.537579][0.056511,0.5977,0][-0.27036,1.17054,-0.863737][-0.0887578,0.838529,-0.537579][0.072187,0.521888,0][-0.327489,1.26247,-0.466216][-0.127947,0.962084,-0.240883][0.187597,0.511039,0][-0.172172,1.26247,-0.548714][-0.0441079,0.962638,-0.267176][0.163217,0.553961,0][-0.27036,1.17054,-0.863737][-0.0887578,0.838529,-0.537579][0.072187,0.521888,0][-0.27036,1.17054,-0.863737][-0.0887578,0.838529,-0.537579][0.072187,0.521888,0][-0.514254,1.17054,-0.73419][-0.256992,0.836579,-0.48383][0.110853,0.454266,0][-0.327489,1.26247,-0.466216][-0.127947,0.962084,-0.240883][0.187597,0.511039,0][-0.45075,1.26247,-0.337723][-0.199096,0.961189,-0.190989][0.22433,0.477332,0][-0.327489,1.26247,-0.466216][-0.127947,0.962084,-0.240883][0.187597,0.511039,0][-0.514254,1.17054,-0.73419][-0.256992,0.836579,-0.48383][0.110853,0.454266,0][-0.514254,1.17054,-0.73419][-0.256992,0.836579,-0.48383][0.110853,0.454266,0][-0.70781,1.17054,-0.532417][-0.398775,0.833454,-0.382536][0.168989,0.40103,0][-0.45075,1.26247,-0.337723][-0.199096,0.961189,-0.190989][0.22433,0.477332,0][-0.529888,1.26248,-0.175811][-0.250644,0.960297,-0.122508][0.269979,0.45594,0][-0.45075,1.26247,-0.337723][-0.199096,0.961189,-0.190989][0.22433,0.477332,0][-0.70781,1.17054,-0.532417][-0.398775,0.833454,-0.382536][0.168989,0.40103,0][-0.70781,1.17054,-0.532417][-0.398775,0.833454,-0.382536][0.168989,0.40103,0][-0.83208,1.17054,-0.278168][-0.500625,0.830362,-0.244692][0.241211,0.367161,0][-0.529888,1.26248,-0.175811][-0.250644,0.960297,-0.122508][0.269979,0.45594,0][-0.542278,1.26248,-0.0585731][-0.281677,0.959047,-0.0297683][0.302758,0.452823,0][-0.529888,1.26248,-0.175811][-0.250644,0.960297,-0.122508][0.269979,0.45594,0][-0.83208,1.17054,-0.278168][-0.500625,0.830362,-0.244692][0.241211,0.367161,0][-0.83208,1.17054,-0.278168][-0.500625,0.830362,-0.244692][0.241211,0.367161,0][-0.851537,1.17054,-0.0940691][-0.560433,0.826079,-0.059231][0.29324,0.362032,0][-0.542278,1.26248,-0.0585731][-0.281677,0.959047,-0.0297683][0.302758,0.452823,0][-0.529888,1.26248,0.183149][-0.250644,0.960296,0.122508][0.370241,0.45683,0][-0.548857,1.26248,0.00366888][-0.281676,0.959048,0.02977][0.320085,0.451176,0][-0.861867,1.17054,0.00366888][-0.560433,0.826079,0.0592315][0.320975,0.359448,0][-0.861867,1.17054,0.00366888][-0.560433,0.826079,0.0592315][0.320975,0.359448,0][-0.83208,1.17054,0.285506][-0.500623,0.830363,0.244691][0.400331,0.368523,0][-0.529888,1.26248,0.183149][-0.250644,0.960296,0.122508][0.370241,0.45683,0][-0.223277,1.29648,0.0792959][-0.0285437,0.999495,0.0139516][0.340659,0.543126,0][-0.189931,1.29648,0.147519][-0.0285437,0.999495,0.0139516][0.359891,0.552593,0][-7.1066e-007,1.30391,0.00366888][-0.0285437,0.999495,0.0139516][0.318836,0.606356,0][-0.189931,1.29648,0.147519][-0.0285437,0.999495,0.0139516][0.359891,0.552593,0][-0.137994,1.29648,0.201662][-0.0226529,0.999507,0.0217299][0.375205,0.567269,0][-7.1066e-007,1.30391,0.00366888][-0.0285437,0.999495,0.0139516][0.318836,0.606356,0][-0.137994,1.29648,0.201662][-0.0226529,0.999507,0.0217299][0.375205,0.567269,0][-0.0725477,1.29648,0.236424][-0.0145441,0.999519,0.0273819][0.385118,0.585777,0][-7.1066e-007,1.30391,0.00366888][-0.0285437,0.999495,0.0139516][0.318836,0.606356,0][-0.0725477,1.29648,0.236424][-0.0145441,0.999519,0.0273819][0.385118,0.585777,0][-7.11782e-007,1.29648,0.248402][-0.00502404,0.999527,0.0303495][0.388647,0.606356,0][-7.1066e-007,1.30391,0.00366888][-0.0285437,0.999495,0.0139516][0.318836,0.606356,0][-7.11782e-007,1.29648,-0.241064][-0.00503654,0.999527,-0.0303456][0.249077,0.605216,0][-0.0725477,1.29648,-0.229086][-0.00503654,0.999527,-0.0303456][0.252932,0.584732,0][-7.1066e-007,1.30391,0.00366888][-0.0285437,0.999495,0.0139516][0.318836,0.606356,0][-0.0725477,1.29648,-0.229086][-0.00503654,0.999527,-0.0303456][0.252932,0.584732,0][-0.137994,1.29648,-0.194324][-0.0145441,0.999519,-0.0273819][0.263119,0.566402,0][-7.1066e-007,1.30391,0.00366888][-0.0285437,0.999495,0.0139516][0.318836,0.606356,0][-0.137994,1.29648,-0.194324][-0.0145441,0.999519,-0.0273819][0.263119,0.566402,0][-0.189931,1.29648,-0.140181][-0.0226529,0.999507,-0.0217299][0.278644,0.551969,0][-7.1066e-007,1.30391,0.00366888][-0.0285437,0.999495,0.0139516][0.318836,0.606356,0][-0.189931,1.29648,-0.140181][-0.0226529,0.999507,-0.0217299][0.278644,0.551969,0][-0.223277,1.29648,-0.0719581][-0.0285437,0.999495,-0.0139516][0.298012,0.542799,0][-7.1066e-007,1.30391,0.00366888][-0.0285437,0.999495,0.0139516][0.318836,0.606356,0][-7.1066e-007,1.30391,0.00366888][-0.0285437,0.999495,0.0139516][0.318836,0.606356,0][-0.223277,1.29648,-0.0719581][-0.0285437,0.999495,-0.0139516][0.298012,0.542799,0][-0.228498,1.29648,-0.0225571][-0.0321189,0.999478,-0.00339452][0.311953,0.541456,0][-0.23127,1.29648,0.00366888][-0.0321189,0.999478,0.00339464][0.319349,0.540736,0][-0.223277,1.29648,0.0792959][-0.0285437,0.999495,0.0139516][0.340659,0.543126,0][-7.1066e-007,1.30391,0.00366888][-0.0285437,0.999495,0.0139516][0.318836,0.606356,0][-1.31062,-0.101346,0.325527][-0.977627,-0.183887,0.102134][0.723444,0.105069,0][-1.29109,-0.141644,0.439903][-0.977627,-0.183887,0.102134][0.753474,0.120863,0][-1.31884,0.00969039,0.446721][-0.977627,-0.183887,0.102134][0.72359,0.148738,0][-1.1232,0.00969038,0.849262][-0.884455,-0.181564,0.429854][0.804043,0.233935,0][-1.31884,0.00969039,0.446721][-0.977627,-0.183887,0.102134][0.72359,0.148738,0][-1.29109,-0.141644,0.439903][-0.977627,-0.183887,0.102134][0.753474,0.120863,0][-1.29109,-0.141644,0.439903][-0.977627,-0.183887,0.102134][0.753474,0.120863,0][-1.10641,-0.110037,0.839758][-0.891509,-0.158702,0.424295][0.828705,0.21331,0][-1.1232,0.00969038,0.849262][-0.884455,-0.181564,0.429854][0.804043,0.233935,0][-1.33158,0.183656,0.452322][-0.897945,0.0327008,0.438892][0.692454,0.180794,0][-1.38763,0.183656,0.00366893][-0.992796,0.0694649,-0.0976263][0.603999,0.103938,0][-1.36975,0.101276,0.15565][-0.992198,0.0133595,0.123957][0.649592,0.112793,0][-1.36975,0.101276,0.15565][-0.992198,0.0133595,0.123957][0.649592,0.112793,0][-1.31884,0.00969039,0.446721][-0.977627,-0.183887,0.102134][0.72359,0.148738,0][-1.33158,0.183656,0.452322][-0.897945,0.0327008,0.438892][0.692454,0.180794,0][-1.13345,0.183656,0.858867][-0.898385,0.0347735,0.437831][0.770652,0.263267,0][-1.33158,0.183656,0.452322][-0.897945,0.0327008,0.438892][0.692454,0.180794,0][-1.31884,0.00969039,0.446721][-0.977627,-0.183887,0.102134][0.72359,0.148738,0][-1.31884,0.00969039,0.446721][-0.977627,-0.183887,0.102134][0.72359,0.148738,0][-1.1232,0.00969038,0.849262][-0.884455,-0.181564,0.429854][0.804043,0.233935,0][-1.13345,0.183656,0.858867][-0.898385,0.0347735,0.437831][0.770652,0.263267,0][-1.13345,0.183656,0.858867][-0.898385,0.0347735,0.437831][0.770652,0.263267,0][-1.1232,0.00969038,0.849262][-0.884455,-0.181564,0.429854][0.804043,0.233935,0][-0.815428,0.00969034,1.16197][-0.7104,-0.0804519,0.699185][0.875731,0.324783,0][-0.815428,0.00969034,1.16197][-0.7104,-0.0804519,0.699185][0.875731,0.324783,0][-0.822766,0.183656,1.17717][-0.715517,0.016447,0.698401][0.839218,0.351503,0][-1.13345,0.183656,0.858867][-0.898385,0.0347735,0.437831][0.770652,0.263267,0][-0.432921,0.183656,1.38467][-0.469826,0.0132086,0.88266][0.898803,0.447238,0][-0.822766,0.183656,1.17717][-0.715517,0.016447,0.698401][0.839218,0.351503,0][-0.815428,0.00969034,1.16197][-0.7104,-0.0804519,0.699185][0.875731,0.324783,0][-0.815428,0.00969034,1.16197][-0.7104,-0.0804519,0.699185][0.875731,0.324783,0][-0.429524,0.00969029,1.36794][-0.468787,-0.0936421,0.878334][0.938284,0.423864,0][-0.432921,0.183656,1.38467][-0.469826,0.0132086,0.88266][0.898803,0.447238,0][-8.79815e-007,0.183655,1.45616][-0.162917,0.0102777,0.986586][0.9514,0.549833,0][-0.432921,0.183656,1.38467][-0.469826,0.0132086,0.88266][0.898803,0.447238,0][-0.429524,0.00969029,1.36794][-0.468787,-0.0936421,0.878334][0.938284,0.423864,0][-0.429524,0.00969029,1.36794][-0.468787,-0.0936421,0.878334][0.938284,0.423864,0][-9.0499e-007,0.0169239,1.43886][-0.160382,-0.101905,0.981781][0.990891,0.52825,0][-8.79815e-007,0.183655,1.45616][-0.162917,0.0102777,0.986586][0.9514,0.549833,0][-1.1232,0.00969038,0.849262][-0.884455,-0.181564,0.429854][0.804043,0.233935,0][-1.10641,-0.110037,0.839758][-0.891509,-0.158702,0.424295][0.828705,0.21331,0][-0.805416,-0.0499105,1.15554][-0.700502,-0.153558,0.696934][0.889682,0.316176,0][-0.805416,-0.0499105,1.15554][-0.700502,-0.153558,0.696934][0.889682,0.316176,0][-0.815428,0.00969034,1.16197][-0.7104,-0.0804519,0.699185][0.875731,0.324783,0][-1.1232,0.00969038,0.849262][-0.884455,-0.181564,0.429854][0.804043,0.233935,0][-0.805416,-0.0499105,1.15554][-0.700502,-0.153558,0.696934][0.889682,0.316176,0][-0.429524,0.00969029,1.36794][-0.468787,-0.0936421,0.878334][0.938284,0.423864,0][-0.815428,0.00969034,1.16197][-0.7104,-0.0804519,0.699185][0.875731,0.324783,0][-1.30164,0.117075,-0.531783][-0.912788,0,-0.408434][0.484607,0.010051,0][-1.33872,0.103488,-0.448908][-0.912788,0,-0.408434][0.508752,0.017872,0][-1.33872,0.183285,-0.448908][-0.905894,0.125878,-0.404365][0.498534,0.03683,0][-1.3721,0.183656,-0.154313][-0.991736,0.0739917,-0.104813][0.567735,0.078271,0][-1.33872,0.183285,-0.448908][-0.905894,0.125878,-0.404365][0.498534,0.03683,0][-1.35393,0.125071,-0.325805][-0.993408,0.0215676,-0.112581][0.535585,0.040112,0][-1.35393,0.125071,-0.325805][-0.993408,0.0215676,-0.112581][0.535585,0.040112,0][-1.33872,0.183285,-0.448908][-0.905894,0.125878,-0.404365][0.498534,0.03683,0][-1.33872,0.103488,-0.448908][-0.912788,0,-0.408434][0.508752,0.017872,0][-1.24248,0.183285,-0.66452][-0.905894,0.125878,-0.404365][0.441384,0.009623,0][-1.30164,0.117075,-0.531783][-0.912788,0,-0.408434][0.484607,0.010051,0][-1.33872,0.183285,-0.448908][-0.905894,0.125878,-0.404365][0.498534,0.03683,0][-1.34032,0.00969038,0.248039][-0.976558,-0.187577,0.105588][0.685856,0.111407,0][-1.31062,-0.101346,0.325527][-0.977627,-0.183887,0.102134][0.723444,0.105069,0][-1.31884,0.00969039,0.446721][-0.977627,-0.183887,0.102134][0.72359,0.148738,0][-1.34032,0.00969038,0.248039][-0.976558,-0.187577,0.105588][0.685856,0.111407,0][-1.31884,0.00969039,0.446721][-0.977627,-0.183887,0.102134][0.72359,0.148738,0][-1.36975,0.101276,0.15565][-0.992198,0.0133595,0.123957][0.649592,0.112793,0][-1.37012,0.434013,0.00366892][-0.991736,0.0739917,-0.104813][0.56446,0.155913,0][-1.27606,0.751415,0.0036689][-0.953904,0.282671,0.100815][0.516811,0.22255,0][-1.26077,0.751415,-0.141039][-0.953904,0.282671,-0.100817][0.487272,0.203922,0][-1.26077,0.751415,-0.141039][-0.953904,0.282671,-0.100817][0.487272,0.203922,0][-1.35369,0.434013,-0.151705][-0.991736,0.0739917,-0.104813][0.531716,0.133884,0][-1.37012,0.434013,0.00366892][-0.991736,0.0739917,-0.104813][0.56446,0.155913,0][-1.27606,0.751415,0.0036689][-0.953904,0.282671,0.100815][0.516811,0.22255,0][-1.10845,1.00326,0.00366889][-0.829277,0.551923,0.0876425][0.474656,0.284276,0][-1.09516,1.00326,-0.122032][-0.829276,0.551923,-0.0876452][0.447731,0.268176,0][-1.09516,1.00326,-0.122032][-0.829276,0.551923,-0.0876452][0.447731,0.268176,0][-1.26077,0.751415,-0.141039][-0.953904,0.282671,-0.100817][0.487272,0.203922,0][-1.27606,0.751415,0.0036689][-0.953904,0.282671,0.100815][0.516811,0.22255,0][-1.10845,1.00326,0.00366889][-0.829277,0.551923,0.0876425][0.474656,0.284276,0][-0.861867,1.17054,0.00366888][-0.560433,0.826079,0.0592315][0.432548,0.34956,0][-0.851537,1.17054,-0.0940691][-0.560433,0.826079,-0.059231][0.407219,0.33524,0][-0.851537,1.17054,-0.0940691][-0.560433,0.826079,-0.059231][0.407219,0.33524,0][-1.09516,1.00326,-0.122032][-0.829276,0.551923,-0.0876452][0.447731,0.268176,0][-1.10845,1.00326,0.00366889][-0.829277,0.551923,0.0876425][0.474656,0.284276,0][-0.548857,1.26248,0.00366888][-0.281676,0.959048,0.02977][0.320085,0.451176,0][-0.542278,1.26248,-0.0585731][-0.281677,0.959047,-0.0297683][0.302758,0.452823,0][-0.851537,1.17054,-0.0940691][-0.560433,0.826079,-0.059231][0.29324,0.362032,0][-0.851537,1.17054,-0.0940691][-0.560433,0.826079,-0.059231][0.29324,0.362032,0][-0.861867,1.17054,0.00366888][-0.560433,0.826079,0.0592315][0.320975,0.359448,0][-0.548857,1.26248,0.00366888][-0.281676,0.959048,0.02977][0.320085,0.451176,0][-1.32276,0.434012,-0.44437][-0.904838,0.0651983,-0.420734][0.467804,0.094817,0][-1.33872,0.183285,-0.448908][-0.905894,0.125878,-0.404365][0.498534,0.03683,0][-1.3721,0.183656,-0.154313][-0.991736,0.0739917,-0.104813][0.567735,0.078271,0][-1.3721,0.183656,-0.154313][-0.991736,0.0739917,-0.104813][0.567735,0.078271,0][-1.35369,0.434013,-0.151705][-0.991736,0.0739917,-0.104813][0.531716,0.133884,0][-1.32276,0.434012,-0.44437][-0.904838,0.0651983,-0.420734][0.467804,0.094817,0][-7.1066e-007,1.30391,0.00366888][-0.0285437,0.999495,0.0139516][0.318836,0.606356,0][-0.228498,1.29648,-0.0225571][-0.0321189,0.999478,-0.00339452][0.311953,0.541456,0][-0.23127,1.29648,0.00366888][-0.0321189,0.999478,0.00339464][0.319349,0.540736,0][-0.0725477,1.29648,-0.229086][-0.00503654,0.999527,-0.0303456][0.252932,0.584732,0][-7.11782e-007,1.29648,-0.241064][-0.00503654,0.999527,-0.0303456][0.249077,0.605216,0][-7.16917e-007,1.26247,-0.577141][-0.0441079,0.962638,-0.267176][0.153526,0.602193,0][-7.16917e-007,1.26247,-0.577141][-0.0441079,0.962638,-0.267176][0.153526,0.602193,0][-0.172172,1.26247,-0.548714][-0.0441079,0.962638,-0.267176][0.163217,0.553961,0][-0.0725477,1.29648,-0.229086][-0.00503654,0.999527,-0.0303456][0.252932,0.584732,0][-0.137994,1.29648,-0.194324][-0.0145441,0.999519,-0.0273819][0.263119,0.566402,0][-0.0725477,1.29648,-0.229086][-0.00503654,0.999527,-0.0303456][0.252932,0.584732,0][-0.172172,1.26247,-0.548714][-0.0441079,0.962638,-0.267176][0.163217,0.553961,0][-0.172172,1.26247,-0.548714][-0.0441079,0.962638,-0.267176][0.163217,0.553961,0][-0.327489,1.26247,-0.466216][-0.127947,0.962084,-0.240883][0.187597,0.511039,0][-0.137994,1.29648,-0.194324][-0.0145441,0.999519,-0.0273819][0.263119,0.566402,0][-0.189931,1.29648,-0.140181][-0.0226529,0.999507,-0.0217299][0.278644,0.551969,0][-0.137994,1.29648,-0.194324][-0.0145441,0.999519,-0.0273819][0.263119,0.566402,0][-0.327489,1.26247,-0.466216][-0.127947,0.962084,-0.240883][0.187597,0.511039,0][-0.327489,1.26247,-0.466216][-0.127947,0.962084,-0.240883][0.187597,0.511039,0][-0.45075,1.26247,-0.337723][-0.199096,0.961189,-0.190989][0.22433,0.477332,0][-0.189931,1.29648,-0.140181][-0.0226529,0.999507,-0.0217299][0.278644,0.551969,0][-0.223277,1.29648,-0.0719581][-0.0285437,0.999495,-0.0139516][0.298012,0.542799,0][-0.189931,1.29648,-0.140181][-0.0226529,0.999507,-0.0217299][0.278644,0.551969,0][-0.45075,1.26247,-0.337723][-0.199096,0.961189,-0.190989][0.22433,0.477332,0][-0.45075,1.26247,-0.337723][-0.199096,0.961189,-0.190989][0.22433,0.477332,0][-0.529888,1.26248,-0.175811][-0.250644,0.960297,-0.122508][0.269979,0.45594,0][-0.223277,1.29648,-0.0719581][-0.0285437,0.999495,-0.0139516][0.298012,0.542799,0][-0.529888,1.26248,-0.175811][-0.250644,0.960297,-0.122508][0.269979,0.45594,0][-0.542278,1.26248,-0.0585731][-0.281677,0.959047,-0.0297683][0.302758,0.452823,0][-0.228498,1.29648,-0.0225571][-0.0321189,0.999478,-0.00339452][0.311953,0.541456,0][-0.228498,1.29648,-0.0225571][-0.0321189,0.999478,-0.00339452][0.311953,0.541456,0][-0.223277,1.29648,-0.0719581][-0.0285437,0.999495,-0.0139516][0.298012,0.542799,0][-0.529888,1.26248,-0.175811][-0.250644,0.960297,-0.122508][0.269979,0.45594,0][-0.542278,1.26248,-0.0585731][-0.281677,0.959047,-0.0297683][0.302758,0.452823,0][-0.548857,1.26248,0.00366888][-0.281676,0.959048,0.02977][0.320085,0.451176,0][-0.23127,1.29648,0.00366888][-0.0321189,0.999478,0.00339464][0.319349,0.540736,0][-0.23127,1.29648,0.00366888][-0.0321189,0.999478,0.00339464][0.319349,0.540736,0][-0.228498,1.29648,-0.0225571][-0.0321189,0.999478,-0.00339452][0.311953,0.541456,0][-0.542278,1.26248,-0.0585731][-0.281677,0.959047,-0.0297683][0.302758,0.452823,0][-0.223277,1.29648,0.0792959][-0.0285437,0.999495,0.0139516][0.340659,0.543126,0][-0.23127,1.29648,0.00366888][-0.0321189,0.999478,0.00339464][0.319349,0.540736,0][-0.548857,1.26248,0.00366888][-0.281676,0.959048,0.02977][0.320085,0.451176,0][-0.548857,1.26248,0.00366888][-0.281676,0.959048,0.02977][0.320085,0.451176,0][-0.529888,1.26248,0.183149][-0.250644,0.960296,0.122508][0.370241,0.45683,0][-0.223277,1.29648,0.0792959][-0.0285437,0.999495,0.0139516][0.340659,0.543126,0][-0.189931,1.29648,0.147519][-0.0285437,0.999495,0.0139516][0.359891,0.552593,0][-0.223277,1.29648,0.0792959][-0.0285437,0.999495,0.0139516][0.340659,0.543126,0][-0.529888,1.26248,0.183149][-0.250644,0.960296,0.122508][0.370241,0.45683,0][-0.529888,1.26248,0.183149][-0.250644,0.960296,0.122508][0.370241,0.45683,0][-0.45075,1.26248,0.345061][-0.250644,0.960296,0.122508][0.415495,0.478982,0][-0.189931,1.29648,0.147519][-0.0285437,0.999495,0.0139516][0.359891,0.552593,0][-0.137994,1.29648,0.201662][-0.0226529,0.999507,0.0217299][0.375205,0.567269,0][-0.189931,1.29648,0.147519][-0.0285437,0.999495,0.0139516][0.359891,0.552593,0][-0.45075,1.26248,0.345061][-0.250644,0.960296,0.122508][0.415495,0.478982,0][-0.45075,1.26248,0.345061][-0.250644,0.960296,0.122508][0.415495,0.478982,0][-0.32749,1.26248,0.473554][-0.199097,0.961189,0.190989][0.451638,0.513296,0][-0.137994,1.29648,0.201662][-0.0226529,0.999507,0.0217299][0.375205,0.567269,0][-0.0725477,1.29648,0.236424][-0.0145441,0.999519,0.0273819][0.385118,0.585777,0][-0.137994,1.29648,0.201662][-0.0226529,0.999507,0.0217299][0.375205,0.567269,0][-0.32749,1.26248,0.473554][-0.199097,0.961189,0.190989][0.451638,0.513296,0][-0.32749,1.26248,0.473554][-0.199097,0.961189,0.190989][0.451638,0.513296,0][-0.172172,1.26247,0.556052][-0.127946,0.962084,0.240883][0.47528,0.556615,0][-0.0725477,1.29648,0.236424][-0.0145441,0.999519,0.0273819][0.385118,0.585777,0][-7.11782e-007,1.29648,0.248402][-0.00502404,0.999527,0.0303495][0.388647,0.606356,0][-0.0725477,1.29648,0.236424][-0.0145441,0.999519,0.0273819][0.385118,0.585777,0][-0.172172,1.26247,0.556052][-0.127946,0.962084,0.240883][0.47528,0.556615,0][-0.172172,1.26247,0.556052][-0.127946,0.962084,0.240883][0.47528,0.556615,0][-7.16917e-007,1.26247,0.584479][-0.0441129,0.962638,0.267174][0.484165,0.605001,0][-7.11782e-007,1.29648,0.248402][-0.00502404,0.999527,0.0303495][0.388647,0.606356,0][-0.378296,0.393914,-1.22286][0.0788587,-0.91664,0.391857][0.224385,0.333746,0][-0.430979,0.421578,-1.37763][-0.159623,0.199648,-0.966779][0.215155,0.301958,0][-8.42012e-007,0.434012,-1.44622][-0.159623,0.199648,-0.966779][0.301686,0.291556,0][-8.42012e-007,0.434012,-1.44622][-0.159623,0.199648,-0.966779][0.301686,0.291556,0][-8.4708e-007,0.400448,-1.2837][0.0788587,-0.91664,0.391857][0.300344,0.324656,0][-0.378296,0.393914,-1.22286][0.0788587,-0.91664,0.391857][0.224385,0.333746,0][-0.721709,0.371606,-1.041][0.47033,-0.147811,0.870024][0.154374,0.367454,0][-0.821072,0.39309,-1.17231][-0.469177,0.104948,-0.876846][0.135643,0.340102,0][-0.430979,0.421578,-1.37763][-0.159623,0.199648,-0.966779][0.215155,0.301958,0][-0.430979,0.421578,-1.37763][-0.159623,0.199648,-0.966779][0.215155,0.301958,0][-0.378296,0.393914,-1.22286][0.0788587,-0.91664,0.391857][0.224385,0.333746,0][-0.721709,0.371606,-1.041][0.47033,-0.147811,0.870024][0.154374,0.367454,0][-1.00375,0.279103,-0.766078][0.714665,-0.145898,0.684081][0.095321,0.422555,0][-1.1396,0.297493,-0.859448][-0.71438,0.13016,-0.687546][0.069074,0.402369,0][-0.821072,0.39309,-1.17231][-0.469177,0.104948,-0.876846][0.135643,0.340102,0][-0.821072,0.39309,-1.17231][-0.469177,0.104948,-0.876846][0.135643,0.340102,0][-0.721709,0.371606,-1.041][0.47033,-0.147811,0.870024][0.154374,0.367454,0][-1.00375,0.279103,-0.766078][0.714665,-0.145898,0.684081][0.095321,0.422555,0][-1.08998,0.1756,-0.594685][0.907635,-0.071085,0.413698][0.07509,0.461088,0][-1.24248,0.183285,-0.66452][-0.905894,0.125878,-0.404365][0.045247,0.445824,0][-1.1396,0.297493,-0.859448][-0.71438,0.13016,-0.687546][0.069074,0.402369,0][-1.1396,0.297493,-0.859448][-0.71438,0.13016,-0.687546][0.069074,0.402369,0][-1.00375,0.279103,-0.766078][0.714665,-0.145898,0.684081][0.095321,0.422555,0][-1.08998,0.1756,-0.594685][0.907635,-0.071085,0.413698][0.07509,0.461088,0][-1.22106,0.180927,0.000554926][0.990296,-0.0742887,0.117456][0.044292,0.583461,0][-1.38763,0.183656,0.00366893][-0.992796,0.0694649,-0.0976263][0.011021,0.583461,0][-1.3721,0.183656,-0.154313][-0.991736,0.0739917,-0.104813][0.014713,0.55198,0][-1.3721,0.183656,-0.154313][-0.991736,0.0739917,-0.104813][0.014713,0.55198,0][-1.2052,0.175816,-0.136346][0.990296,-0.0742887,0.117456][0.048001,0.556176,0][-1.22106,0.180927,0.000554926][0.990296,-0.0742887,0.117456][0.044292,0.583461,0][-1.13432,-0.111768,0.395392][0.983867,0.170388,-0.0545353][0.060176,0.684495,0][-1.29109,-0.141644,0.439903][-0.977627,-0.183887,0.102134][0.028961,0.695459,0][-1.31062,-0.101346,0.325527][-0.977627,-0.183887,0.102134][0.024613,0.671319,0][-1.31062,-0.101346,0.325527][-0.977627,-0.183887,0.102134][0.024613,0.671319,0][-1.14637,-0.0701255,0.308069][0.983867,0.170388,-0.0545352][0.057616,0.665196,0][-1.13432,-0.111768,0.395392][0.983867,0.170388,-0.0545353][0.060176,0.684495,0][-0.972954,-0.0816335,0.745483][0.894633,0.139745,-0.424386][0.097481,0.752095,0][-1.10641,-0.110037,0.839758][-0.891509,-0.158702,0.424295][0.071534,0.772677,0][-1.29109,-0.141644,0.439903][-0.977627,-0.183887,0.102134][0.028961,0.695459,0][-1.29109,-0.141644,0.439903][-0.977627,-0.183887,0.102134][0.028961,0.695459,0][-1.13432,-0.111768,0.395392][0.983867,0.170388,-0.0545353][0.060176,0.684495,0][-0.972954,-0.0816335,0.745483][0.894633,0.139745,-0.424386][0.097481,0.752095,0][-1.20482,0.121935,0.135191][0.986378,0.0790115,-0.144275][0.047224,0.612844,0][-1.36975,0.101276,0.15565][-0.992198,0.0133595,0.123957][0.014186,0.618018,0][-1.38763,0.183656,0.00366893][-0.992796,0.0694649,-0.0976263][0.011021,0.583461,0][-1.38763,0.183656,0.00366893][-0.992796,0.0694649,-0.0976263][0.011021,0.583461,0][-1.22106,0.180927,0.000554926][0.990296,-0.0742887,0.117456][0.044292,0.583461,0][-1.20482,0.121935,0.135191][0.986378,0.0790115,-0.144275][0.047224,0.612844,0][-9.0246e-007,0.0336837,1.27381][0.159931,0.0900164,-0.983015][0.300246,0.846245,0][-9.0499e-007,0.0169239,1.43886][-0.160382,-0.101905,0.981781][0.301686,0.879341,0][-0.429524,0.00969029,1.36794][-0.468787,-0.0936421,0.878334][0.215341,0.869138,0][-0.429524,0.00969029,1.36794][-0.468787,-0.0936421,0.878334][0.215341,0.869138,0][-0.376981,0.0325003,1.21237][0.47529,0.0795157,-0.876229][0.224498,0.837325,0][-9.0246e-007,0.0336837,1.27381][0.159931,0.0900164,-0.983015][0.300246,0.846245,0][-0.707571,-0.0215015,1.02415][0.702528,0.161678,-0.693047][0.155366,0.80404,0][-0.805416,-0.0499105,1.15554][-0.700502,-0.153558,0.696934][0.136827,0.831585,0][-1.10641,-0.110037,0.839758][-0.891509,-0.158702,0.424295][0.071534,0.772677,0][-1.10641,-0.110037,0.839758][-0.891509,-0.158702,0.424295][0.071534,0.772677,0][-0.972954,-0.0816335,0.745483][0.894633,0.139745,-0.424386][0.097481,0.752095,0][-0.707571,-0.0215015,1.02415][0.702528,0.161678,-0.693047][0.155366,0.80404,0][-0.376981,0.0325003,1.21237][0.47529,0.0795157,-0.876229][0.224498,0.837325,0][-0.429524,0.00969029,1.36794][-0.468787,-0.0936421,0.878334][0.215341,0.869138,0][-0.805416,-0.0499105,1.15554][-0.700502,-0.153558,0.696934][0.136827,0.831585,0][-0.805416,-0.0499105,1.15554][-0.700502,-0.153558,0.696934][0.136827,0.831585,0][-0.707571,-0.0215015,1.02415][0.702528,0.161678,-0.693047][0.155366,0.80404,0][-0.376981,0.0325003,1.21237][0.47529,0.0795157,-0.876229][0.224498,0.837325,0][-1.17859,0.103488,-0.40427][0.890529,-0.0231668,0.454337][0.055295,0.500929,0][-1.33872,0.103488,-0.448908][-0.912788,0,-0.408434][0.023586,0.491124,0][-1.30164,0.117075,-0.531783][-0.912788,0,-0.408434][0.031513,0.474596,0][-1.30164,0.117075,-0.531783][-0.912788,0,-0.408434][0.031513,0.474596,0][-1.14817,0.11718,-0.463195][0.890529,-0.0231668,0.454337][0.06179,0.489073,0][-1.17859,0.103488,-0.40427][0.890529,-0.0231668,0.454337][0.055295,0.500929,0][-1.2052,0.175816,-0.136346][0.990296,-0.0742887,0.117456][0.048001,0.556176,0][-1.3721,0.183656,-0.154313][-0.991736,0.0739917,-0.104813][0.014713,0.55198,0][-1.35393,0.125071,-0.325805][-0.993408,0.0215676,-0.112581][0.019744,0.515966,0][-1.35393,0.125071,-0.325805][-0.993408,0.0215676,-0.112581][0.019744,0.515966,0][-1.18703,0.123258,-0.306033][0.994455,0.00473293,0.105055][0.052943,0.520868,0][-1.2052,0.175816,-0.136346][0.990296,-0.0742887,0.117456][0.048001,0.556176,0][-1.18703,0.123258,-0.306033][0.994455,0.00473293,0.105055][0.052943,0.520868,0][-1.35393,0.125071,-0.325805][-0.993408,0.0215676,-0.112581][0.019744,0.515966,0][-1.33872,0.103488,-0.448908][-0.912788,0,-0.408434][0.023586,0.491124,0][-1.33872,0.103488,-0.448908][-0.912788,0,-0.408434][0.023586,0.491124,0][-1.17859,0.103488,-0.40427][0.890529,-0.0231668,0.454337][0.055295,0.500929,0][-1.18703,0.123258,-0.306033][0.994455,0.00473293,0.105055][0.052943,0.520868,0][-1.14817,0.11718,-0.463195][0.890529,-0.0231668,0.454337][0.06179,0.489073,0][-1.30164,0.117075,-0.531783][-0.912788,0,-0.408434][0.031513,0.474596,0][-1.24248,0.183285,-0.66452][-0.905894,0.125878,-0.404365][0.045247,0.445824,0][-1.24248,0.183285,-0.66452][-0.905894,0.125878,-0.404365][0.045247,0.445824,0][-1.08998,0.1756,-0.594685][0.907635,-0.071085,0.413698][0.07509,0.461088,0][-1.14817,0.11718,-0.463195][0.890529,-0.0231668,0.454337][0.06179,0.489073,0][-1.14637,-0.0701255,0.308069][0.983867,0.170388,-0.0545352][0.057616,0.665196,0][-1.31062,-0.101346,0.325527][-0.977627,-0.183887,0.102134][0.024613,0.671319,0][-1.34032,0.00969038,0.248039][-0.976558,-0.187577,0.105588][0.019494,0.644117,0][-1.34032,0.00969038,0.248039][-0.976558,-0.187577,0.105588][0.019494,0.644117,0][-1.17648,0.0428143,0.230325][0.975907,0.199685,-0.0879305][0.052429,0.637649,0][-1.14637,-0.0701255,0.308069][0.983867,0.170388,-0.0545352][0.057616,0.665196,0][-1.17648,0.0428143,0.230325][0.975907,0.199685,-0.0879305][0.052429,0.637649,0][-1.34032,0.00969038,0.248039][-0.976558,-0.187577,0.105588][0.019494,0.644117,0][-1.36975,0.101276,0.15565][-0.992198,0.0133595,0.123957][0.014186,0.618018,0][-1.36975,0.101276,0.15565][-0.992198,0.0133595,0.123957][0.014186,0.618018,0][-1.20482,0.121935,0.135191][0.986378,0.0790115,-0.144275][0.047224,0.612844,0][-1.17648,0.0428143,0.230325][0.975907,0.199685,-0.0879305][0.052429,0.637649,0][0.989353,0.407128,0.760617][-0.897558,-0.025858,-0.440137][0.82465,0.743756,0][1.16359,0.406222,0.40535][-0.897558,-0.025858,-0.440137][0.771366,0.752739,0][1.17052,0.184987,0.40423][-0.897558,-0.025858,-0.440137][0.775024,0.783431,0][1.17052,0.184987,0.40423][-0.897558,-0.025858,-0.440137][0.775024,0.783431,0][0.995999,0.188155,0.762202][-0.898561,-0.0304406,-0.437791][0.830363,0.773449,0][0.989353,0.407128,0.760617][-0.897558,-0.025858,-0.440137][0.82465,0.743756,0][0.71771,0.407745,1.04396][-0.721624,-0.0269088,-0.691762][0.876456,0.731217,0][0.989353,0.407128,0.760617][-0.897558,-0.025858,-0.440137][0.82465,0.743756,0][0.995999,0.188155,0.762202][-0.898561,-0.0304406,-0.437791][0.830363,0.773449,0][0.995999,0.188155,0.762202][-0.898561,-0.0304406,-0.437791][0.830363,0.773449,0][0.721928,0.189756,1.04281][-0.715383,-0.0101504,-0.698659][0.883994,0.760431,0][0.71771,0.407745,1.04396][-0.721624,-0.0269088,-0.691762][0.876456,0.731217,0][0.376721,0.408091,1.22521][-0.469355,-0.00441577,-0.882998][0.92675,0.714961,0][0.71771,0.407745,1.04396][-0.721624,-0.0269088,-0.691762][0.876456,0.731217,0][0.721928,0.189756,1.04281][-0.715383,-0.0101504,-0.698659][0.883994,0.760431,0][0.721928,0.189756,1.04281][-0.715383,-0.0101504,-0.698659][0.883994,0.760431,0][0.379124,0.190955,1.22558][-0.470486,-0.00671866,-0.882382][0.93654,0.743765,0][0.376721,0.408091,1.22521][-0.469355,-0.00441577,-0.882998][0.92675,0.714961,0][-8.45925e-007,0.408092,1.28747][0.163047,-0.0035032,-0.986612][0.97691,0.694448,0][0.376721,0.408091,1.22521][-0.469355,-0.00441577,-0.882998][0.92675,0.714961,0][0.379124,0.190955,1.22558][-0.470486,-0.00671866,-0.882382][0.93654,0.743765,0][0.379124,0.190955,1.22558][-0.470486,-0.00671866,-0.882382][0.93654,0.743765,0][-8.78669e-007,0.191242,1.28824][0.163047,-0.0035032,-0.986612][0.988409,0.724003,0][-8.45925e-007,0.408092,1.28747][0.163047,-0.0035032,-0.986612][0.97691,0.694448,0][-8.4708e-007,0.400448,-1.2837][0.0788587,-0.91664,0.391857][0.300344,0.324656,0][0.378294,0.393914,-1.22286][-0.078859,-0.91664,0.391857][0.224385,0.333746,0][0.377542,0.395072,-1.2203][-0.078859,-0.91664,0.391857][0.224524,0.334308,0][0.718643,0.398476,-1.03809][-0.183307,-0.91467,0.360247][0.542414,0.74189,0][0.377542,0.395072,-1.2203][-0.078859,-0.91664,0.391857][0.487319,0.722937,0][0.378294,0.393914,-1.22286][-0.078859,-0.91664,0.391857][0.487091,0.723326,0][0.378294,0.393914,-1.22286][-0.078859,-0.91664,0.391857][0.487091,0.723326,0][0.721707,0.371604,-1.041][-0.47033,-0.147807,0.870024][0.541402,0.745949,0][0.718643,0.398476,-1.03809][-0.183307,-0.91467,0.360247][0.542414,0.74189,0][0.989845,0.400328,-0.754749][-0.713141,-0.155312,0.683599][0.599573,0.753645,0][0.718643,0.398476,-1.03809][-0.183307,-0.91467,0.360247][0.542414,0.74189,0][0.721707,0.371604,-1.041][-0.47033,-0.147807,0.870024][0.541402,0.745949,0][0.721707,0.371604,-1.041][-0.47033,-0.147807,0.870024][0.541402,0.745949,0][1.00375,0.279103,-0.766078][-0.714665,-0.145899,0.684082][0.5968,0.771747,0][0.989845,0.400328,-0.754749][-0.713141,-0.155312,0.683599][0.599573,0.753645,0][1.00375,0.279103,-0.766078][-0.714665,-0.145899,0.684082][0.5968,0.771747,0][1.08998,0.1756,-0.594685][-0.907635,-0.071085,0.413698][0.624111,0.789397,0][1.17695,0.176162,-0.403767][-0.907635,-0.071085,0.413698][0.655301,0.791599,0][1.00375,0.279103,-0.766078][-0.714665,-0.145899,0.684082][0.5968,0.771747,0][1.17695,0.176162,-0.403767][-0.907635,-0.071085,0.413698][0.655301,0.791599,0][1.16387,0.402998,-0.399107][-0.907154,-0.0608625,0.416373][0.656836,0.75841,0][1.00375,0.279103,-0.766078][-0.714665,-0.145899,0.684082][0.5968,0.771747,0][1.16387,0.402998,-0.399107][-0.907154,-0.0608625,0.416373][0.656836,0.75841,0][0.989845,0.400328,-0.754749][-0.713141,-0.155312,0.683599][0.599573,0.753645,0][1.20455,0.404919,0.00310092][-0.991287,-0.0705151,0.111254][0.714828,0.757522,0][1.18919,0.404144,-0.134313][-0.991287,-0.0705151,0.111254][0.695105,0.758036,0][1.2052,0.175815,-0.136346][-0.991287,-0.0705151,0.111254][0.695614,0.791753,0][1.2052,0.175815,-0.136346][-0.991287,-0.0705151,0.111254][0.695614,0.791753,0][1.22106,0.180927,0.000554926][-0.990296,-0.0742876,0.117456][0.716523,0.790191,0][1.20455,0.404919,0.00310092][-0.991287,-0.0705151,0.111254][0.714828,0.757522,0][1.16359,0.406222,0.40535][-0.897558,-0.025858,-0.440137][0.771366,0.752739,0][1.20455,0.404919,0.00310092][-0.991287,-0.0705151,0.111254][0.714828,0.757522,0][1.22106,0.180927,0.000554926][-0.990296,-0.0742876,0.117456][0.716523,0.790191,0][1.22106,0.180927,0.000554926][-0.990296,-0.0742876,0.117456][0.716523,0.790191,0][1.17052,0.184987,0.40423][-0.897558,-0.025858,-0.440137][0.775024,0.783431,0][1.16359,0.406222,0.40535][-0.897558,-0.025858,-0.440137][0.771366,0.752739,0][0.923416,0.679503,0.710364][-0.860569,-0.2857,-0.421659][0.816512,0.705694,0][1.08562,0.680224,0.378831][-0.860569,-0.2857,-0.421659][0.76626,0.713571,0][1.16359,0.406222,0.40535][-0.897558,-0.025858,-0.440137][0.771366,0.752739,0][1.16359,0.406222,0.40535][-0.897558,-0.025858,-0.440137][0.771366,0.752739,0][0.989353,0.407128,0.760617][-0.897558,-0.025858,-0.440137][0.82465,0.743756,0][0.923416,0.679503,0.710364][-0.860569,-0.2857,-0.421659][0.816512,0.705694,0][0.670002,0.678817,0.975157][-0.69115,-0.28949,-0.662199][0.865425,0.694063,0][0.923416,0.679503,0.710364][-0.860569,-0.2857,-0.421659][0.816512,0.705694,0][0.989353,0.407128,0.760617][-0.897558,-0.025858,-0.440137][0.82465,0.743756,0][0.989353,0.407128,0.760617][-0.897558,-0.025858,-0.440137][0.82465,0.743756,0][0.71771,0.407745,1.04396][-0.721624,-0.0269088,-0.691762][0.876456,0.731217,0][0.670002,0.678817,0.975157][-0.69115,-0.28949,-0.662199][0.865425,0.694063,0][0.351848,0.678248,1.14455][-0.448903,-0.293258,-0.844089][0.912612,0.678421,0][0.670002,0.678817,0.975157][-0.69115,-0.28949,-0.662199][0.865425,0.694063,0][0.71771,0.407745,1.04396][-0.721624,-0.0269088,-0.691762][0.876456,0.731217,0][0.71771,0.407745,1.04396][-0.721624,-0.0269088,-0.691762][0.876456,0.731217,0][0.376721,0.408091,1.22521][-0.469355,-0.00441577,-0.882998][0.92675,0.714961,0][0.351848,0.678248,1.14455][-0.448903,-0.293258,-0.844089][0.912612,0.678421,0][-8.05166e-007,0.678027,1.20279][0.155754,-0.295657,-0.942511][0.958821,0.657559,0][0.351848,0.678248,1.14455][-0.448903,-0.293258,-0.844089][0.912612,0.678421,0][0.376721,0.408091,1.22521][-0.469355,-0.00441577,-0.882998][0.92675,0.714961,0][0.376721,0.408091,1.22521][-0.469355,-0.00441577,-0.882998][0.92675,0.714961,0][-8.45925e-007,0.408092,1.28747][0.163047,-0.0035032,-0.986612][0.97691,0.694448,0][-8.05166e-007,0.678027,1.20279][0.155754,-0.295657,-0.942511][0.958821,0.657559,0][0.351848,0.678248,-1.13722][-0.155624,-0.299298,0.941383][0.50512,0.682495,0][-8.05166e-007,0.678027,-1.19545][0.155624,-0.299298,0.941383][0.457869,0.657812,0][-8.4708e-007,0.400448,-1.2837][0.0788587,-0.91664,0.391857][0.435893,0.696109,0][-8.4708e-007,0.400448,-1.2837][0.0788587,-0.91664,0.391857][0.435893,0.696109,0][0.377542,0.395072,-1.2203][-0.078859,-0.91664,0.391857][0.487319,0.722937,0][0.351848,0.678248,-1.13722][-0.155624,-0.299298,0.941383][0.50512,0.682495,0][0.670001,0.678816,-0.967818][-0.449548,-0.288799,0.845282][0.554851,0.700355,0][0.351848,0.678248,-1.13722][-0.155624,-0.299298,0.941383][0.50512,0.682495,0][0.377542,0.395072,-1.2203][-0.078859,-0.91664,0.391857][0.487319,0.722937,0][0.377542,0.395072,-1.2203][-0.078859,-0.91664,0.391857][0.487319,0.722937,0][0.718643,0.398476,-1.03809][-0.183307,-0.91467,0.360247][0.542414,0.74189,0][0.670001,0.678816,-0.967818][-0.449548,-0.288799,0.845282][0.554851,0.700355,0][0.923415,0.679503,-0.703026][-0.691864,-0.286213,0.662878][0.606815,0.711749,0][0.670001,0.678816,-0.967818][-0.449548,-0.288799,0.845282][0.554851,0.700355,0][0.718643,0.398476,-1.03809][-0.183307,-0.91467,0.360247][0.542414,0.74189,0][0.718643,0.398476,-1.03809][-0.183307,-0.91467,0.360247][0.542414,0.74189,0][0.989845,0.400328,-0.754749][-0.713141,-0.155312,0.683599][0.599573,0.753645,0][0.923415,0.679503,-0.703026][-0.691864,-0.286213,0.662878][0.606815,0.711749,0][1.08562,0.680225,-0.371492][-0.861259,-0.28312,0.42199][0.659469,0.717175,0][0.923415,0.679503,-0.703026][-0.691864,-0.286213,0.662878][0.606815,0.711749,0][0.989845,0.400328,-0.754749][-0.713141,-0.155312,0.683599][0.599573,0.753645,0][0.989845,0.400328,-0.754749][-0.713141,-0.155312,0.683599][0.599573,0.753645,0][1.16387,0.402998,-0.399107][-0.907154,-0.0608625,0.416373][0.656836,0.75841,0][1.08562,0.680225,-0.371492][-0.861259,-0.28312,0.42199][0.659469,0.717175,0][1.18919,0.404144,-0.134313][-0.991287,-0.0705151,0.111254][0.695105,0.758036,0][1.10921,0.680483,-0.125022][-0.955698,-0.27968,0.0917674][0.694883,0.716473,0][1.08562,0.680225,-0.371492][-0.861259,-0.28312,0.42199][0.659469,0.717175,0][1.08562,0.680225,-0.371492][-0.861259,-0.28312,0.42199][0.659469,0.717175,0][1.16387,0.402998,-0.399107][-0.907154,-0.0608625,0.416373][0.656836,0.75841,0][1.18919,0.404144,-0.134313][-0.991287,-0.0705151,0.111254][0.695105,0.758036,0][1.08562,0.680224,0.378831][-0.860569,-0.2857,-0.421659][0.76626,0.713571,0][1.12351,0.680808,0.0036689][-0.954998,-0.280344,-0.0968824][0.713264,0.716543,0][1.20455,0.404919,0.00310092][-0.991287,-0.0705151,0.111254][0.714828,0.757522,0][1.20455,0.404919,0.00310092][-0.991287,-0.0705151,0.111254][0.714828,0.757522,0][1.16359,0.406222,0.40535][-0.897558,-0.025858,-0.440137][0.771366,0.752739,0][1.08562,0.680224,0.378831][-0.860569,-0.2857,-0.421659][0.76626,0.713571,0][0.812418,0.884901,0.624828][-0.745997,-0.556945,-0.365103][0.808662,0.671385,0][0.954642,0.885697,0.333014][-0.745997,-0.556945,-0.365103][0.761446,0.678579,0][1.08562,0.680224,0.378831][-0.860569,-0.2857,-0.421659][0.76626,0.713571,0][1.08562,0.680224,0.378831][-0.860569,-0.2857,-0.421659][0.76626,0.713571,0][0.923416,0.679503,0.710364][-0.860569,-0.2857,-0.421659][0.816512,0.705694,0][0.812418,0.884901,0.624828][-0.745997,-0.556945,-0.365103][0.808662,0.671385,0][0.589757,0.884242,0.857962][-0.597675,-0.561363,-0.572413][0.854643,0.660468,0][0.812418,0.884901,0.624828][-0.745997,-0.556945,-0.365103][0.808662,0.671385,0][0.923416,0.679503,0.710364][-0.860569,-0.2857,-0.421659][0.816512,0.705694,0][0.923416,0.679503,0.710364][-0.860569,-0.2857,-0.421659][0.816512,0.705694,0][0.670002,0.678817,0.975157][-0.69115,-0.28949,-0.662199][0.865425,0.694063,0][0.589757,0.884242,0.857962][-0.597675,-0.561363,-0.572413][0.854643,0.660468,0][0.309836,0.883701,1.00731][-0.387111,-0.566321,-0.727616][0.898666,0.645661,0][0.589757,0.884242,0.857962][-0.597675,-0.561363,-0.572413][0.854643,0.660468,0][0.670002,0.678817,0.975157][-0.69115,-0.28949,-0.662199][0.865425,0.694063,0][0.670002,0.678817,0.975157][-0.69115,-0.28949,-0.662199][0.865425,0.694063,0][0.351848,0.678248,1.14455][-0.448903,-0.293258,-0.844089][0.912612,0.678421,0][0.309836,0.883701,1.00731][-0.387111,-0.566321,-0.727616][0.898666,0.645661,0][-7.74142e-007,0.883492,1.0587][0.133932,-0.569009,-0.811351][0.940197,0.6261,0][0.309836,0.883701,1.00731][-0.387111,-0.566321,-0.727616][0.898666,0.645661,0][0.351848,0.678248,1.14455][-0.448903,-0.293258,-0.844089][0.912612,0.678421,0][0.351848,0.678248,1.14455][-0.448903,-0.293258,-0.844089][0.912612,0.678421,0][-8.05166e-007,0.678027,1.20279][0.155754,-0.295657,-0.942511][0.958821,0.657559,0][-7.74142e-007,0.883492,1.0587][0.133932,-0.569009,-0.811351][0.940197,0.6261,0][0.309836,0.883702,-0.99997][-0.134173,-0.568992,0.811323][0.520936,0.648598,0][-7.74142e-007,0.883491,-1.05136][0.134172,-0.568992,0.811323][0.478937,0.6261,0][-8.05166e-007,0.678027,-1.19545][0.155624,-0.299298,0.941383][0.457869,0.657812,0][-8.05166e-007,0.678027,-1.19545][0.155624,-0.299298,0.941383][0.457869,0.657812,0][0.351848,0.678248,-1.13722][-0.155624,-0.299298,0.941383][0.50512,0.682495,0][0.309836,0.883702,-0.99997][-0.134173,-0.568992,0.811323][0.520936,0.648598,0][0.589756,0.884242,-0.850624][-0.387358,-0.565569,0.72807][0.566178,0.665079,0][0.309836,0.883702,-0.99997][-0.134173,-0.568992,0.811323][0.520936,0.648598,0][0.351848,0.678248,-1.13722][-0.155624,-0.299298,0.941383][0.50512,0.682495,0][0.351848,0.678248,-1.13722][-0.155624,-0.299298,0.941383][0.50512,0.682495,0][0.670001,0.678816,-0.967818][-0.449548,-0.288799,0.845282][0.554851,0.700355,0][0.589756,0.884242,-0.850624][-0.387358,-0.565569,0.72807][0.566178,0.665079,0][0.812417,0.884901,-0.61749][-0.598126,-0.560445,0.572841][0.613697,0.675795,0][0.589756,0.884242,-0.850624][-0.387358,-0.565569,0.72807][0.566178,0.665079,0][0.670001,0.678816,-0.967818][-0.449548,-0.288799,0.845282][0.554851,0.700355,0][0.670001,0.678816,-0.967818][-0.449548,-0.288799,0.845282][0.554851,0.700355,0][0.923415,0.679503,-0.703026][-0.691864,-0.286213,0.662878][0.606815,0.711749,0][0.812417,0.884901,-0.61749][-0.598126,-0.560445,0.572841][0.613697,0.675795,0][0.954641,0.885696,-0.325676][-0.746732,-0.555728,0.365456][0.662188,0.681064,0][0.812417,0.884901,-0.61749][-0.598126,-0.560445,0.572841][0.613697,0.675795,0][0.923415,0.679503,-0.703026][-0.691864,-0.286213,0.662878][0.606815,0.711749,0][0.923415,0.679503,-0.703026][-0.691864,-0.286213,0.662878][0.606815,0.711749,0][1.08562,0.680225,-0.371492][-0.861259,-0.28312,0.42199][0.659469,0.717175,0][0.954641,0.885696,-0.325676][-0.746732,-0.555728,0.365456][0.662188,0.681064,0][1.10921,0.680483,-0.125022][-0.955698,-0.27968,0.0917674][0.694883,0.716473,0][0.976131,0.885227,-0.109452][-0.832811,-0.547512,0.0815832][0.695095,0.680405,0][0.954641,0.885696,-0.325676][-0.746732,-0.555728,0.365456][0.662188,0.681064,0][0.954641,0.885696,-0.325676][-0.746732,-0.555728,0.365456][0.662188,0.681064,0][1.08562,0.680225,-0.371492][-0.861259,-0.28312,0.42199][0.659469,0.717175,0][1.10921,0.680483,-0.125022][-0.955698,-0.27968,0.0917674][0.694883,0.716473,0][0.954642,0.885697,0.333014][-0.745997,-0.556945,-0.365103][0.761446,0.678579,0][0.988002,0.885996,0.0036689][-0.831456,-0.549093,-0.0847175][0.712626,0.680728,0][1.12351,0.680808,0.0036689][-0.954998,-0.280344,-0.0968824][0.713264,0.716543,0][1.12351,0.680808,0.0036689][-0.954998,-0.280344,-0.0968824][0.713264,0.716543,0][1.08562,0.680224,0.378831][-0.860569,-0.2857,-0.421659][0.76626,0.713571,0][0.954642,0.885697,0.333014][-0.745997,-0.556945,-0.365103][0.761446,0.678579,0][0.648567,1.01873,0.498525][-0.493678,-0.83546,-0.241428][0.335463,0.737854,0][0.761826,1.01915,0.265481][-0.493678,-0.83546,-0.241428][0.29913,0.753672,0][0.954642,0.885697,0.333014][-0.745997,-0.556945,-0.365103][0.310223,0.789899,0][0.954642,0.885697,0.333014][-0.745997,-0.556945,-0.365103][0.310223,0.789899,0][0.812418,0.884901,0.624828][-0.745997,-0.556945,-0.365103][0.356952,0.769504,0][0.648567,1.01873,0.498525][-0.493678,-0.83546,-0.241428][0.335463,0.737854,0][0.471037,1.01842,0.684551][-0.393823,-0.838204,-0.37725][0.36554,0.7124,0][0.648567,1.01873,0.498525][-0.493678,-0.83546,-0.241428][0.335463,0.737854,0][0.812418,0.884901,0.624828][-0.745997,-0.556945,-0.365103][0.356952,0.769504,0][0.812418,0.884901,0.624828][-0.745997,-0.556945,-0.365103][0.356952,0.769504,0][0.589757,0.884242,0.857962][-0.597675,-0.561363,-0.572413][0.395653,0.736826,0][0.471037,1.01842,0.684551][-0.393823,-0.838204,-0.37725][0.36554,0.7124,0][0.247563,1.01816,0.80387][-0.253825,-0.841339,-0.477202][0.386622,0.679545,0][0.471037,1.01842,0.684551][-0.393823,-0.838204,-0.37725][0.36554,0.7124,0][0.589757,0.884242,0.857962][-0.597675,-0.561363,-0.572413][0.395653,0.736826,0][0.589757,0.884242,0.857962][-0.597675,-0.561363,-0.572413][0.395653,0.736826,0][0.309836,0.883701,1.00731][-0.387111,-0.566321,-0.727616][0.422786,0.694927,0][0.247563,1.01816,0.80387][-0.253825,-0.841339,-0.477202][0.386622,0.679545,0][-7.53823e-007,1.01806,0.84496][0.0874597,-0.843001,-0.530754][0.39702,0.64174,0][0.247563,1.01816,0.80387][-0.253825,-0.841339,-0.477202][0.386622,0.679545,0][0.309836,0.883701,1.00731][-0.387111,-0.566321,-0.727616][0.422786,0.694927,0][0.309836,0.883701,1.00731][-0.387111,-0.566321,-0.727616][0.422786,0.694927,0][-7.74142e-007,0.883492,1.0587][0.133932,-0.569009,-0.811351][0.436463,0.647318,0][-7.53823e-007,1.01806,0.84496][0.0874597,-0.843001,-0.530754][0.39702,0.64174,0][0.247563,1.01816,-0.796532][-0.0877518,-0.842978,0.530743][0.134417,0.674657,0][-7.53823e-007,1.01806,-0.837621][0.0877514,-0.842978,0.530743][0.125494,0.636491,0][-7.74142e-007,0.883491,-1.05136][0.134172,-0.568992,0.811323][0.085903,0.640541,0][-7.74142e-007,0.883491,-1.05136][0.134172,-0.568992,0.811323][0.085903,0.640541,0][0.309836,0.883702,-0.99997][-0.134173,-0.568992,0.811323][0.097675,0.688515,0][0.247563,1.01816,-0.796532][-0.0877518,-0.842978,0.530743][0.134417,0.674657,0][0.471037,1.01842,-0.677212][-0.254203,-0.840823,0.47791][0.154172,0.708287,0][0.247563,1.01816,-0.796532][-0.0877518,-0.842978,0.530743][0.134417,0.674657,0][0.309836,0.883702,-0.99997][-0.134173,-0.568992,0.811323][0.097675,0.688515,0][0.309836,0.883702,-0.99997][-0.134173,-0.568992,0.811323][0.097675,0.688515,0][0.589756,0.884242,-0.850624][-0.387358,-0.565569,0.72807][0.123073,0.731389,0][0.471037,1.01842,-0.677212][-0.254203,-0.840823,0.47791][0.154172,0.708287,0][0.648567,1.01873,-0.491187][-0.394549,-0.837554,0.377936][0.18322,0.734893,0][0.471037,1.01842,-0.677212][-0.254203,-0.840823,0.47791][0.154172,0.708287,0][0.589756,0.884242,-0.850624][-0.387358,-0.565569,0.72807][0.123073,0.731389,0][0.589756,0.884242,-0.850624][-0.387358,-0.565569,0.72807][0.123073,0.731389,0][0.812417,0.884901,-0.61749][-0.598126,-0.560445,0.572841][0.160388,0.765561,0][0.648567,1.01873,-0.491187][-0.394549,-0.837554,0.377936][0.18322,0.734893,0][0.761826,1.01915,-0.258143][-0.494997,-0.834495,0.242067][0.218926,0.752121,0][0.648567,1.01873,-0.491187][-0.394549,-0.837554,0.377936][0.18322,0.734893,0][0.812417,0.884901,-0.61749][-0.598126,-0.560445,0.572841][0.160388,0.765561,0][0.812417,0.884901,-0.61749][-0.598126,-0.560445,0.572841][0.160388,0.765561,0][0.954641,0.885696,-0.325676][-0.746732,-0.555728,0.365456][0.206222,0.787838,0][0.761826,1.01915,-0.258143][-0.494997,-0.834495,0.242067][0.218926,0.752121,0][0.976131,0.885227,-0.109452][-0.832811,-0.547512,0.0815832][0.240257,0.792421,0][0.77989,1.01867,-0.0864971][-0.556892,-0.828676,0.0562777][0.245139,0.755459,0][0.761826,1.01915,-0.258143][-0.494997,-0.834495,0.242067][0.218926,0.752121,0][0.761826,1.01915,-0.258143][-0.494997,-0.834495,0.242067][0.218926,0.752121,0][0.954641,0.885696,-0.325676][-0.746732,-0.555728,0.365456][0.206222,0.787838,0][0.976131,0.885227,-0.109452][-0.832811,-0.547512,0.0815832][0.240257,0.792421,0][0.761826,1.01915,0.265481][-0.493678,-0.83546,-0.241428][0.29913,0.753672,0][0.788719,1.01919,0.00366889][-0.554779,-0.830034,-0.0571253][0.258881,0.756959,0][0.988002,0.885996,0.0036689][-0.831456,-0.549093,-0.0847175][0.2584,0.794384,0][0.988002,0.885996,0.0036689][-0.831456,-0.549093,-0.0847175][0.2584,0.794384,0][0.954642,0.885697,0.333014][-0.745997,-0.556945,-0.365103][0.310223,0.789899,0][0.761826,1.01915,0.265481][-0.493678,-0.83546,-0.241428][0.29913,0.753672,0][0.423428,1.0977,0.326081][-0.244775,-0.962171,-0.119633][0.309852,0.700645,0][0.497378,1.09781,0.173925][-0.244775,-0.962171,-0.119633][0.285986,0.711094,0][0.761826,1.01915,0.265481][-0.493678,-0.83546,-0.241428][0.29913,0.753672,0][0.761826,1.01915,0.265481][-0.493678,-0.83546,-0.241428][0.29913,0.753672,0][0.648567,1.01873,0.498525][-0.493678,-0.83546,-0.241428][0.335463,0.737854,0][0.423428,1.0977,0.326081][-0.244775,-0.962171,-0.119633][0.309852,0.700645,0][0.307584,1.09763,0.447359][-0.194798,-0.96292,-0.186653][0.329532,0.683771,0][0.423428,1.0977,0.326081][-0.244775,-0.962171,-0.119633][0.309852,0.700645,0][0.648567,1.01873,0.498525][-0.493678,-0.83546,-0.241428][0.335463,0.737854,0][0.648567,1.01873,0.498525][-0.493678,-0.83546,-0.241428][0.335463,0.737854,0][0.471037,1.01842,0.684551][-0.393823,-0.838204,-0.37725][0.36554,0.7124,0][0.307584,1.09763,0.447359][-0.194798,-0.96292,-0.186653][0.329532,0.683771,0][0.161683,1.09757,0.525188][-0.125251,-0.963759,-0.235543][0.343161,0.661932,0][0.307584,1.09763,0.447359][-0.194798,-0.96292,-0.186653][0.329532,0.683771,0][0.471037,1.01842,0.684551][-0.393823,-0.838204,-0.37725][0.36554,0.7124,0][0.471037,1.01842,0.684551][-0.393823,-0.838204,-0.37725][0.36554,0.7124,0][0.247563,1.01816,0.80387][-0.253825,-0.841339,-0.477202][0.386622,0.679545,0][0.161683,1.09757,0.525188][-0.125251,-0.963759,-0.235543][0.343161,0.661932,0][-7.41821e-007,1.09755,0.551998][0.0430339,-0.964215,-0.261606][0.349436,0.636901,0][0.161683,1.09757,0.525188][-0.125251,-0.963759,-0.235543][0.343161,0.661932,0][0.247563,1.01816,0.80387][-0.253825,-0.841339,-0.477202][0.386622,0.679545,0][0.247563,1.01816,0.80387][-0.253825,-0.841339,-0.477202][0.386622,0.679545,0][-7.53823e-007,1.01806,0.84496][0.0874597,-0.843001,-0.530754][0.39702,0.64174,0][-7.41821e-007,1.09755,0.551998][0.0430339,-0.964215,-0.261606][0.349436,0.636901,0][0.247563,1.01816,-0.796532][-0.0877518,-0.842978,0.530743][0.134417,0.674657,0][0.161682,1.09757,-0.51785][-0.0432101,-0.964251,0.261445][0.178517,0.658714,0][-7.41821e-007,1.09755,-0.54466][0.0430334,-0.964215,0.261607][0.17321,0.633479,0][-7.41821e-007,1.09755,-0.54466][0.0430334,-0.964215,0.261607][0.17321,0.633479,0][-7.53823e-007,1.01806,-0.837621][0.0877514,-0.842978,0.530743][0.125494,0.636491,0][0.247563,1.01816,-0.796532][-0.0877518,-0.842978,0.530743][0.134417,0.674657,0][0.307584,1.09763,-0.440021][-0.12546,-0.963639,0.235924][0.19126,0.681045,0][0.161682,1.09757,-0.51785][-0.0432101,-0.964251,0.261445][0.178517,0.658714,0][0.247563,1.01816,-0.796532][-0.0877518,-0.842978,0.530743][0.134417,0.674657,0][0.247563,1.01816,-0.796532][-0.0877518,-0.842978,0.530743][0.134417,0.674657,0][0.471037,1.01842,-0.677212][-0.254203,-0.840823,0.47791][0.154172,0.708287,0][0.307584,1.09763,-0.440021][-0.12546,-0.963639,0.235924][0.19126,0.681045,0][0.423428,1.0977,-0.318743][-0.195182,-0.962771,0.187019][0.210241,0.698683,0][0.307584,1.09763,-0.440021][-0.12546,-0.963639,0.235924][0.19126,0.681045,0][0.471037,1.01842,-0.677212][-0.254203,-0.840823,0.47791][0.154172,0.708287,0][0.471037,1.01842,-0.677212][-0.254203,-0.840823,0.47791][0.154172,0.708287,0][0.648567,1.01873,-0.491187][-0.394549,-0.837554,0.377936][0.18322,0.734893,0][0.423428,1.0977,-0.318743][-0.195182,-0.962771,0.187019][0.210241,0.698683,0][0.497378,1.09781,-0.166587][-0.245515,-0.961938,0.119993][0.233668,0.710079,0][0.423428,1.0977,-0.318743][-0.195182,-0.962771,0.187019][0.210241,0.698683,0][0.648567,1.01873,-0.491187][-0.394549,-0.837554,0.377936][0.18322,0.734893,0][0.648567,1.01873,-0.491187][-0.394549,-0.837554,0.377936][0.18322,0.734893,0][0.761826,1.01915,-0.258143][-0.494997,-0.834495,0.242067][0.218926,0.752121,0][0.497378,1.09781,-0.166587][-0.245515,-0.961938,0.119993][0.233668,0.710079,0][0.509521,1.09764,-0.0551121][-0.27589,-0.960765,0.028565][0.250768,0.712182,0][0.497378,1.09781,-0.166587][-0.245515,-0.961938,0.119993][0.233668,0.710079,0][0.761826,1.01915,-0.258143][-0.494997,-0.834495,0.242067][0.218926,0.752121,0][0.761826,1.01915,-0.258143][-0.494997,-0.834495,0.242067][0.218926,0.752121,0][0.77989,1.01867,-0.0864971][-0.556892,-0.828676,0.0562777][0.245139,0.755459,0][0.509521,1.09764,-0.0551121][-0.27589,-0.960765,0.028565][0.250768,0.712182,0][0.497378,1.09781,0.173925][-0.244775,-0.962171,-0.119633][0.285986,0.711094,0][0.515123,1.0978,0.00366889][-0.276012,-0.960726,-0.0286975][0.259731,0.713176,0][0.788719,1.01919,0.00366889][-0.554779,-0.830034,-0.0571253][0.258881,0.756959,0][0.788719,1.01919,0.00366889][-0.554779,-0.830034,-0.0571253][0.258881,0.756959,0][0.761826,1.01915,0.265481][-0.493678,-0.83546,-0.241428][0.29913,0.753672,0][0.497378,1.09781,0.173925][-0.244775,-0.962171,-0.119633][0.285986,0.711094,0][0.211601,1.12882,0.0759899][-0.0282572,-0.999503,-0.0139729][0.272113,0.666061,0][0.180133,1.12881,0.140719][-0.0282572,-0.999503,-0.0139729][0.282543,0.661416,0][-7.36042e-007,1.13582,0.00366888][0.0282572,-0.999503,-0.0139729][0.261391,0.631762,0][0.180133,1.12881,0.140719][-0.0282572,-0.999503,-0.0139729][0.282543,0.661416,0][0.130856,1.1288,0.192278][-0.0224346,-0.999514,-0.0216265][0.291068,0.653916,0][-7.36042e-007,1.13582,0.00366888][0.0282572,-0.999503,-0.0139729][0.261391,0.631762,0][0.130856,1.1288,0.192278][-0.0224346,-0.999514,-0.0216265][0.291068,0.653916,0][0.0687873,1.12879,0.225368][-0.0143844,-0.999526,-0.0272122][0.296834,0.644256,0][-7.36042e-007,1.13582,0.00366888][0.0282572,-0.999503,-0.0139729][0.261391,0.631762,0][0.0687873,1.12879,0.225368][-0.0143844,-0.999526,-0.0272122][0.296834,0.644256,0][-7.37104e-007,1.12879,0.236768][0.00494071,-0.999533,-0.0301469][0.299266,0.633318,0][-7.36042e-007,1.13582,0.00366888][0.0282572,-0.999503,-0.0139729][0.261391,0.631762,0][-7.37103e-007,1.12879,-0.22943][0.0049667,-0.999533,0.0301387][0.223543,0.631762,0][0.0687863,1.12879,-0.218031][-0.00495285,-0.999533,0.0301387][0.225513,0.64274,0][-7.36042e-007,1.13582,0.00366888][0.0282572,-0.999503,-0.0139729][0.261391,0.631762,0][0.0687863,1.12879,-0.218031][-0.00495285,-0.999533,0.0301387][0.225513,0.64274,0][0.130856,1.1288,-0.18494][-0.0143714,-0.999526,0.0272162][0.23084,0.652608,0][-7.36042e-007,1.13582,0.00366888][0.0282572,-0.999503,-0.0139729][0.261391,0.631762,0][0.130856,1.1288,-0.18494][-0.0143714,-0.999526,0.0272162][0.23084,0.652608,0][0.180133,1.12881,-0.133382][-0.0224425,-0.999514,0.021616][0.23901,0.660458,0][-7.36042e-007,1.13582,0.00366888][0.0282572,-0.999503,-0.0139729][0.261391,0.631762,0][0.180133,1.12881,-0.133382][-0.0224425,-0.999514,0.021616][0.23901,0.660458,0][0.211601,1.12882,-0.0686521][-0.0282491,-0.999503,0.0139834][0.249212,0.665552,0][-7.36042e-007,1.13582,0.00366888][0.0282572,-0.999503,-0.0139729][0.261391,0.631762,0][-7.36042e-007,1.13582,0.00366888][0.0282572,-0.999503,-0.0139729][0.261391,0.631762,0][0.211601,1.12882,-0.0686521][-0.0282491,-0.999503,0.0139834][0.249212,0.665552,0][0.21684,1.12879,-0.0213231][-0.0320359,-0.999483,0.0029017][0.256689,0.666514,0][0.219194,1.12882,0.00367088][-0.0319141,-0.999485,-0.00327168][0.260645,0.666969,0][0.211601,1.12882,0.0759899][-0.0282572,-0.999503,-0.0139729][0.272113,0.666061,0][-7.36042e-007,1.13582,0.00366888][0.0282572,-0.999503,-0.0139729][0.261391,0.631762,0][1.14637,-0.0701259,0.308069][-0.983867,0.170388,-0.0545366][0.767988,0.822736,0][1.13432,-0.111768,0.395392][-0.983867,0.170388,-0.0545366][0.782423,0.82626,0][1.15883,0.0312011,0.399932][-0.983867,0.170388,-0.0545366][0.778249,0.805317,0][0.986831,0.0309942,0.753312][-0.886762,0.165713,-0.4315][0.834604,0.795497,0][1.15883,0.0312011,0.399932][-0.983867,0.170388,-0.0545366][0.778249,0.805317,0][1.13432,-0.111768,0.395392][-0.983867,0.170388,-0.0545366][0.782423,0.82626,0][1.13432,-0.111768,0.395392][-0.983867,0.170388,-0.0545366][0.782423,0.82626,0][0.972952,-0.0816338,0.745483][-0.894633,0.139744,-0.424385][0.838174,0.811809,0][0.986831,0.0309942,0.753312][-0.886762,0.165713,-0.4315][0.834604,0.795497,0][1.17052,0.184987,0.40423][-0.897558,-0.025858,-0.440137][0.775024,0.783431,0][1.22106,0.180927,0.000554926][-0.990296,-0.0742876,0.117456][0.716523,0.790191,0][1.20482,0.121936,0.135191][-0.992215,-0.010151,-0.124123][0.737187,0.797293,0][1.20482,0.121936,0.135191][-0.992215,-0.010151,-0.124123][0.737187,0.797293,0][1.15883,0.0312011,0.399932][-0.983867,0.170388,-0.0545366][0.778249,0.805317,0][1.17052,0.184987,0.40423][-0.897558,-0.025858,-0.440137][0.775024,0.783431,0][0.995999,0.188155,0.762202][-0.898561,-0.0304406,-0.437791][0.830363,0.773449,0][1.17052,0.184987,0.40423][-0.897558,-0.025858,-0.440137][0.775024,0.783431,0][1.15883,0.0312011,0.399932][-0.983867,0.170388,-0.0545366][0.778249,0.805317,0][1.15883,0.0312011,0.399932][-0.983867,0.170388,-0.0545366][0.778249,0.805317,0][0.986831,0.0309942,0.753312][-0.886762,0.165713,-0.4315][0.834604,0.795497,0][0.995999,0.188155,0.762202][-0.898561,-0.0304406,-0.437791][0.830363,0.773449,0][0.995999,0.188155,0.762202][-0.898561,-0.0304406,-0.437791][0.830363,0.773449,0][0.986831,0.0309942,0.753312][-0.886762,0.165713,-0.4315][0.834604,0.795497,0][0.715161,0.0316513,1.02885][-0.709654,0.0809874,-0.69988][0.889592,0.782574,0][0.715161,0.0316513,1.02885][-0.709654,0.0809874,-0.69988][0.889592,0.782574,0][0.721928,0.189756,1.04281][-0.715383,-0.0101504,-0.698659][0.883994,0.760431,0][0.995999,0.188155,0.762202][-0.898561,-0.0304406,-0.437791][0.830363,0.773449,0][0.379124,0.190955,1.22558][-0.470486,-0.00671866,-0.882382][0.93654,0.743765,0][0.721928,0.189756,1.04281][-0.715383,-0.0101504,-0.698659][0.883994,0.760431,0][0.715161,0.0316513,1.02885][-0.709654,0.0809874,-0.69988][0.889592,0.782574,0][0.715161,0.0316513,1.02885][-0.709654,0.0809874,-0.69988][0.889592,0.782574,0][0.376979,0.0325001,1.21237][-0.47529,0.0795165,-0.876229][0.943664,0.765648,0][0.379124,0.190955,1.22558][-0.470486,-0.00671866,-0.882382][0.93654,0.743765,0][-8.78669e-007,0.191242,1.28824][0.163047,-0.0035032,-0.986612][0.988409,0.724003,0][0.379124,0.190955,1.22558][-0.470486,-0.00671866,-0.882382][0.93654,0.743765,0][0.376979,0.0325001,1.21237][-0.47529,0.0795165,-0.876229][0.943664,0.765648,0][0.376979,0.0325001,1.21237][-0.47529,0.0795165,-0.876229][0.943664,0.765648,0][-9.0246e-007,0.0336837,1.27381][0.159931,0.0900164,-0.983015][0.996199,0.745907,0][-8.78669e-007,0.191242,1.28824][0.163047,-0.0035032,-0.986612][0.988409,0.724003,0][0.986831,0.0309942,0.753312][-0.886762,0.165713,-0.4315][0.834604,0.795497,0][0.972952,-0.0816338,0.745483][-0.894633,0.139744,-0.424385][0.838174,0.811809,0][0.707569,-0.0215017,1.02415][-0.702782,0.135153,-0.698449][0.89212,0.79017,0][0.707569,-0.0215017,1.02415][-0.702782,0.135153,-0.698449][0.89212,0.79017,0][0.715161,0.0316513,1.02885][-0.709654,0.0809874,-0.69988][0.889592,0.782574,0][0.986831,0.0309942,0.753312][-0.886762,0.165713,-0.4315][0.834604,0.795497,0][0.707569,-0.0215017,1.02415][-0.702782,0.135153,-0.698449][0.89212,0.79017,0][0.376979,0.0325001,1.21237][-0.47529,0.0795165,-0.876229][0.943664,0.765648,0][0.715161,0.0316513,1.02885][-0.709654,0.0809874,-0.69988][0.889592,0.782574,0][1.14817,0.11718,-0.463195][-0.890529,-0.0231665,0.454336][0.644946,0.799798,0][1.17859,0.103487,-0.40427][-0.890529,-0.0231665,0.454336][0.654915,0.802455,0][1.17695,0.176162,-0.403767][-0.907635,-0.071085,0.413698][0.655301,0.791599,0][1.2052,0.175815,-0.136346][-0.991287,-0.0705151,0.111254][0.695614,0.791753,0][1.17695,0.176162,-0.403767][-0.907635,-0.071085,0.413698][0.655301,0.791599,0][1.18703,0.123256,-0.306033][-0.994455,0.00473283,0.105055][0.669928,0.799682,0][1.18703,0.123256,-0.306033][-0.994455,0.00473283,0.105055][0.669928,0.799682,0][1.17695,0.176162,-0.403767][-0.907635,-0.071085,0.413698][0.655301,0.791599,0][1.17859,0.103487,-0.40427][-0.890529,-0.0231665,0.454336][0.654915,0.802455,0][1.08998,0.1756,-0.594685][-0.907635,-0.071085,0.413698][0.624111,0.789397,0][1.14817,0.11718,-0.463195][-0.890529,-0.0231665,0.454336][0.644946,0.799798,0][1.17695,0.176162,-0.403767][-0.907635,-0.071085,0.413698][0.655301,0.791599,0][1.17648,0.042814,0.230325][-0.975907,0.199684,-0.0879306][0.753164,0.807584,0][1.14637,-0.0701259,0.308069][-0.983867,0.170388,-0.0545366][0.767988,0.822736,0][1.15883,0.0312011,0.399932][-0.983867,0.170388,-0.0545366][0.778249,0.805317,0][1.17648,0.042814,0.230325][-0.975907,0.199684,-0.0879306][0.753164,0.807584,0][1.15883,0.0312011,0.399932][-0.983867,0.170388,-0.0545366][0.778249,0.805317,0][1.20482,0.121936,0.135191][-0.992215,-0.010151,-0.124123][0.737187,0.797293,0][1.20455,0.404919,0.00310092][-0.991287,-0.0705151,0.111254][0.714828,0.757522,0][1.12351,0.680808,0.0036689][-0.954998,-0.280344,-0.0968824][0.713264,0.716543,0][1.10921,0.680483,-0.125022][-0.955698,-0.27968,0.0917674][0.694883,0.716473,0][1.10921,0.680483,-0.125022][-0.955698,-0.27968,0.0917674][0.694883,0.716473,0][1.18919,0.404144,-0.134313][-0.991287,-0.0705151,0.111254][0.695105,0.758036,0][1.20455,0.404919,0.00310092][-0.991287,-0.0705151,0.111254][0.714828,0.757522,0][1.12351,0.680808,0.0036689][-0.954998,-0.280344,-0.0968824][0.713264,0.716543,0][0.988002,0.885996,0.0036689][-0.831456,-0.549093,-0.0847175][0.712626,0.680728,0][0.976131,0.885227,-0.109452][-0.832811,-0.547512,0.0815832][0.695095,0.680405,0][0.976131,0.885227,-0.109452][-0.832811,-0.547512,0.0815832][0.695095,0.680405,0][1.10921,0.680483,-0.125022][-0.955698,-0.27968,0.0917674][0.694883,0.716473,0][1.12351,0.680808,0.0036689][-0.954998,-0.280344,-0.0968824][0.713264,0.716543,0][0.988002,0.885996,0.0036689][-0.831456,-0.549093,-0.0847175][0.2584,0.794384,0][0.788719,1.01919,0.00366889][-0.554779,-0.830034,-0.0571253][0.258881,0.756959,0][0.77989,1.01867,-0.0864971][-0.556892,-0.828676,0.0562777][0.245139,0.755459,0][0.77989,1.01867,-0.0864971][-0.556892,-0.828676,0.0562777][0.245139,0.755459,0][0.976131,0.885227,-0.109452][-0.832811,-0.547512,0.0815832][0.240257,0.792421,0][0.988002,0.885996,0.0036689][-0.831456,-0.549093,-0.0847175][0.2584,0.794384,0][0.515123,1.0978,0.00366889][-0.276012,-0.960726,-0.0286975][0.259731,0.713176,0][0.509521,1.09764,-0.0551121][-0.27589,-0.960765,0.028565][0.250768,0.712182,0][0.77989,1.01867,-0.0864971][-0.556892,-0.828676,0.0562777][0.245139,0.755459,0][0.77989,1.01867,-0.0864971][-0.556892,-0.828676,0.0562777][0.245139,0.755459,0][0.788719,1.01919,0.00366889][-0.554779,-0.830034,-0.0571253][0.258881,0.756959,0][0.515123,1.0978,0.00366889][-0.276012,-0.960726,-0.0286975][0.259731,0.713176,0][1.16387,0.402998,-0.399107][-0.907154,-0.0608625,0.416373][0.656836,0.75841,0][1.17695,0.176162,-0.403767][-0.907635,-0.071085,0.413698][0.655301,0.791599,0][1.2052,0.175815,-0.136346][-0.991287,-0.0705151,0.111254][0.695614,0.791753,0][1.2052,0.175815,-0.136346][-0.991287,-0.0705151,0.111254][0.695614,0.791753,0][1.18919,0.404144,-0.134313][-0.991287,-0.0705151,0.111254][0.695105,0.758036,0][1.16387,0.402998,-0.399107][-0.907154,-0.0608625,0.416373][0.656836,0.75841,0][-7.36042e-007,1.13582,0.00366888][0.0282572,-0.999503,-0.0139729][0.261391,0.631762,0][0.21684,1.12879,-0.0213231][-0.0320359,-0.999483,0.0029017][0.256689,0.666514,0][0.219194,1.12882,0.00367088][-0.0319141,-0.999485,-0.00327168][0.260645,0.666969,0][0.0687863,1.12879,-0.218031][-0.00495285,-0.999533,0.0301387][0.225513,0.64274,0][-7.37103e-007,1.12879,-0.22943][0.0049667,-0.999533,0.0301387][0.223543,0.631762,0][-7.41821e-007,1.09755,-0.54466][0.0430334,-0.964215,0.261607][0.17321,0.633479,0][-7.41821e-007,1.09755,-0.54466][0.0430334,-0.964215,0.261607][0.17321,0.633479,0][0.161682,1.09757,-0.51785][-0.0432101,-0.964251,0.261445][0.178517,0.658714,0][0.0687863,1.12879,-0.218031][-0.00495285,-0.999533,0.0301387][0.225513,0.64274,0][0.130856,1.1288,-0.18494][-0.0143714,-0.999526,0.0272162][0.23084,0.652608,0][0.0687863,1.12879,-0.218031][-0.00495285,-0.999533,0.0301387][0.225513,0.64274,0][0.161682,1.09757,-0.51785][-0.0432101,-0.964251,0.261445][0.178517,0.658714,0][0.161682,1.09757,-0.51785][-0.0432101,-0.964251,0.261445][0.178517,0.658714,0][0.307584,1.09763,-0.440021][-0.12546,-0.963639,0.235924][0.19126,0.681045,0][0.130856,1.1288,-0.18494][-0.0143714,-0.999526,0.0272162][0.23084,0.652608,0][0.180133,1.12881,-0.133382][-0.0224425,-0.999514,0.021616][0.23901,0.660458,0][0.130856,1.1288,-0.18494][-0.0143714,-0.999526,0.0272162][0.23084,0.652608,0][0.307584,1.09763,-0.440021][-0.12546,-0.963639,0.235924][0.19126,0.681045,0][0.307584,1.09763,-0.440021][-0.12546,-0.963639,0.235924][0.19126,0.681045,0][0.423428,1.0977,-0.318743][-0.195182,-0.962771,0.187019][0.210241,0.698683,0][0.180133,1.12881,-0.133382][-0.0224425,-0.999514,0.021616][0.23901,0.660458,0][0.211601,1.12882,-0.0686521][-0.0282491,-0.999503,0.0139834][0.249212,0.665552,0][0.180133,1.12881,-0.133382][-0.0224425,-0.999514,0.021616][0.23901,0.660458,0][0.423428,1.0977,-0.318743][-0.195182,-0.962771,0.187019][0.210241,0.698683,0][0.423428,1.0977,-0.318743][-0.195182,-0.962771,0.187019][0.210241,0.698683,0][0.497378,1.09781,-0.166587][-0.245515,-0.961938,0.119993][0.233668,0.710079,0][0.211601,1.12882,-0.0686521][-0.0282491,-0.999503,0.0139834][0.249212,0.665552,0][0.497378,1.09781,-0.166587][-0.245515,-0.961938,0.119993][0.233668,0.710079,0][0.509521,1.09764,-0.0551121][-0.27589,-0.960765,0.028565][0.250768,0.712182,0][0.21684,1.12879,-0.0213231][-0.0320359,-0.999483,0.0029017][0.256689,0.666514,0][0.21684,1.12879,-0.0213231][-0.0320359,-0.999483,0.0029017][0.256689,0.666514,0][0.211601,1.12882,-0.0686521][-0.0282491,-0.999503,0.0139834][0.249212,0.665552,0][0.497378,1.09781,-0.166587][-0.245515,-0.961938,0.119993][0.233668,0.710079,0][0.509521,1.09764,-0.0551121][-0.27589,-0.960765,0.028565][0.250768,0.712182,0][0.515123,1.0978,0.00366889][-0.276012,-0.960726,-0.0286975][0.259731,0.713176,0][0.219194,1.12882,0.00367088][-0.0319141,-0.999485,-0.00327168][0.260645,0.666969,0][0.219194,1.12882,0.00367088][-0.0319141,-0.999485,-0.00327168][0.260645,0.666969,0][0.21684,1.12879,-0.0213231][-0.0320359,-0.999483,0.0029017][0.256689,0.666514,0][0.509521,1.09764,-0.0551121][-0.27589,-0.960765,0.028565][0.250768,0.712182,0][0.211601,1.12882,0.0759899][-0.0282572,-0.999503,-0.0139729][0.272113,0.666061,0][0.219194,1.12882,0.00367088][-0.0319141,-0.999485,-0.00327168][0.260645,0.666969,0][0.515123,1.0978,0.00366889][-0.276012,-0.960726,-0.0286975][0.259731,0.713176,0][0.515123,1.0978,0.00366889][-0.276012,-0.960726,-0.0286975][0.259731,0.713176,0][0.497378,1.09781,0.173925][-0.244775,-0.962171,-0.119633][0.285986,0.711094,0][0.211601,1.12882,0.0759899][-0.0282572,-0.999503,-0.0139729][0.272113,0.666061,0][0.180133,1.12881,0.140719][-0.0282572,-0.999503,-0.0139729][0.282543,0.661416,0][0.211601,1.12882,0.0759899][-0.0282572,-0.999503,-0.0139729][0.272113,0.666061,0][0.497378,1.09781,0.173925][-0.244775,-0.962171,-0.119633][0.285986,0.711094,0][0.497378,1.09781,0.173925][-0.244775,-0.962171,-0.119633][0.285986,0.711094,0][0.423428,1.0977,0.326081][-0.244775,-0.962171,-0.119633][0.309852,0.700645,0][0.180133,1.12881,0.140719][-0.0282572,-0.999503,-0.0139729][0.282543,0.661416,0][0.130856,1.1288,0.192278][-0.0224346,-0.999514,-0.0216265][0.291068,0.653916,0][0.180133,1.12881,0.140719][-0.0282572,-0.999503,-0.0139729][0.282543,0.661416,0][0.423428,1.0977,0.326081][-0.244775,-0.962171,-0.119633][0.309852,0.700645,0][0.423428,1.0977,0.326081][-0.244775,-0.962171,-0.119633][0.309852,0.700645,0][0.307584,1.09763,0.447359][-0.194798,-0.96292,-0.186653][0.329532,0.683771,0][0.130856,1.1288,0.192278][-0.0224346,-0.999514,-0.0216265][0.291068,0.653916,0][0.0687873,1.12879,0.225368][-0.0143844,-0.999526,-0.0272122][0.296834,0.644256,0][0.130856,1.1288,0.192278][-0.0224346,-0.999514,-0.0216265][0.291068,0.653916,0][0.307584,1.09763,0.447359][-0.194798,-0.96292,-0.186653][0.329532,0.683771,0][0.307584,1.09763,0.447359][-0.194798,-0.96292,-0.186653][0.329532,0.683771,0][0.161683,1.09757,0.525188][-0.125251,-0.963759,-0.235543][0.343161,0.661932,0][0.0687873,1.12879,0.225368][-0.0143844,-0.999526,-0.0272122][0.296834,0.644256,0][-7.37104e-007,1.12879,0.236768][0.00494071,-0.999533,-0.0301469][0.299266,0.633318,0][0.0687873,1.12879,0.225368][-0.0143844,-0.999526,-0.0272122][0.296834,0.644256,0][0.161683,1.09757,0.525188][-0.125251,-0.963759,-0.235543][0.343161,0.661932,0][0.161683,1.09757,0.525188][-0.125251,-0.963759,-0.235543][0.343161,0.661932,0][-7.41821e-007,1.09755,0.551998][0.0430339,-0.964215,-0.261606][0.349436,0.636901,0][-7.37104e-007,1.12879,0.236768][0.00494071,-0.999533,-0.0301469][0.299266,0.633318,0][1.12521,0.434012,0.855891][0.898385,0.0347726,0.437831][0.724785,0.303365,0][1.13345,0.183655,0.858867][0.898385,0.0347726,0.437831][0.770652,0.263267,0][1.33158,0.183655,0.452322][0.898385,0.0347726,0.437831][0.692454,0.180794,0][1.33158,0.183655,0.452322][0.898385,0.0347726,0.437831][0.692454,0.180794,0][1.32276,0.434012,0.451708][0.897945,0.0326995,0.438892][0.650421,0.225969,0][1.12521,0.434012,0.855891][0.898385,0.0347726,0.437831][0.724785,0.303365,0][0.817512,0.434012,1.17665][0.715517,0.0164466,0.698401][0.789198,0.387222,0][0.822764,0.183656,1.17717][0.715517,0.0164466,0.698401][0.839218,0.351503,0][1.13345,0.183655,0.858867][0.898385,0.0347726,0.437831][0.770652,0.263267,0][1.13345,0.183655,0.858867][0.898385,0.0347726,0.437831][0.770652,0.263267,0][1.12521,0.434012,0.855891][0.898385,0.0347726,0.437831][0.724785,0.303365,0][0.817512,0.434012,1.17665][0.715517,0.0164466,0.698401][0.789198,0.387222,0][0.429792,0.434012,1.38259][0.469826,0.0132084,0.88266][0.844086,0.478369,0][0.432919,0.183656,1.38467][0.469826,0.0132084,0.88266][0.898803,0.447238,0][0.822764,0.183656,1.17717][0.715517,0.0164466,0.698401][0.839218,0.351503,0][0.822764,0.183656,1.17717][0.715517,0.0164466,0.698401][0.839218,0.351503,0][0.817512,0.434012,1.17665][0.715517,0.0164466,0.698401][0.789198,0.387222,0][0.429792,0.434012,1.38259][0.469826,0.0132084,0.88266][0.844086,0.478369,0][-8.42012e-007,0.434011,1.45355][-0.162895,0.0102392,0.98659][0.891269,0.579128,0][-8.79815e-007,0.183655,1.45616][-0.162917,0.0102777,0.986586][0.9514,0.549833,0][0.432919,0.183656,1.38467][0.469826,0.0132084,0.88266][0.898803,0.447238,0][0.432919,0.183656,1.38467][0.469826,0.0132084,0.88266][0.898803,0.447238,0][0.429792,0.434012,1.38259][0.469826,0.0132084,0.88266][0.844086,0.478369,0][-8.42012e-007,0.434011,1.45355][-0.162895,0.0102392,0.98659][0.891269,0.579128,0][-8.42012e-007,0.434012,-1.44622][-0.159623,0.199648,-0.966779][0.010041,0.01534,0][0.429791,0.434012,-1.37525][0.159623,0.199648,-0.966779][0.129436,0.006552,0][0.430977,0.421578,-1.37763][0.159623,0.199648,-0.966779][0.129552,0.003044,0][0.817512,0.434012,-1.16931][0.469177,0.104947,-0.876846][0.248166,0.016827,0][0.82107,0.39309,-1.17231][0.469177,0.104947,-0.876846][0.25047,0.005658,0][0.430977,0.421578,-1.37763][0.159623,0.199648,-0.966779][0.129552,0.003044,0][0.430977,0.421578,-1.37763][0.159623,0.199648,-0.966779][0.129552,0.003044,0][0.429791,0.434012,-1.37525][0.159623,0.199648,-0.966779][0.129436,0.006552,0][0.817512,0.434012,-1.16931][0.469177,0.104947,-0.876846][0.248166,0.016827,0][1.12521,0.434012,-0.848552][0.71438,0.130159,-0.687546][0.362323,0.047361,0][1.1396,0.297493,-0.859448][0.71438,0.130159,-0.687546][0.374842,0.012629,0][0.82107,0.39309,-1.17231][0.469177,0.104947,-0.876846][0.25047,0.005658,0][0.82107,0.39309,-1.17231][0.469177,0.104947,-0.876846][0.25047,0.005658,0][0.817512,0.434012,-1.16931][0.469177,0.104947,-0.876846][0.248166,0.016827,0][1.12521,0.434012,-0.848552][0.71438,0.130159,-0.687546][0.362323,0.047361,0][1.1396,0.297493,-0.859448][0.71438,0.130159,-0.687546][0.374842,0.012629,0][1.12521,0.434012,-0.848552][0.71438,0.130159,-0.687546][0.362323,0.047361,0][1.32276,0.434012,-0.44437][0.890959,0.128649,-0.435478][0.467804,0.094817,0][1.1396,0.297493,-0.859448][0.71438,0.130159,-0.687546][0.374842,0.012629,0][1.32276,0.434012,-0.44437][0.890959,0.128649,-0.435478][0.467804,0.094817,0][1.33872,0.183284,-0.448908][0.904838,0.0651971,-0.420734][0.498534,0.03683,0][1.1396,0.297493,-0.859448][0.71438,0.130159,-0.687546][0.374842,0.012629,0][1.33872,0.183284,-0.448908][0.904838,0.0651971,-0.420734][0.498534,0.03683,0][1.24248,0.183284,-0.66452][0.905894,0.125879,-0.404365][0.441384,0.009623,0][1.37011,0.434012,0.00366892][0.992796,0.0694635,-0.0976256][0.56446,0.155913,0][1.38763,0.183655,0.00366893][0.992796,0.0694635,-0.0976256][0.603999,0.103938,0][1.3721,0.183655,-0.154313][0.992796,0.0694635,-0.0976256][0.567735,0.078271,0][1.3721,0.183655,-0.154313][0.992796,0.0694635,-0.0976256][0.567735,0.078271,0][1.35369,0.434012,-0.151705][0.991736,0.0739908,-0.104813][0.531716,0.133884,0][1.37011,0.434012,0.00366892][0.992796,0.0694635,-0.0976256][0.56446,0.155913,0][1.32276,0.434012,0.451708][0.897945,0.0326995,0.438892][0.650421,0.225969,0][1.33158,0.183655,0.452322][0.898385,0.0347726,0.437831][0.692454,0.180794,0][1.38763,0.183655,0.00366893][0.992796,0.0694635,-0.0976256][0.603999,0.103938,0][1.38763,0.183655,0.00366893][0.992796,0.0694635,-0.0976256][0.603999,0.103938,0][1.37011,0.434012,0.00366892][0.992796,0.0694635,-0.0976256][0.56446,0.155913,0][1.32276,0.434012,0.451708][0.897945,0.0326995,0.438892][0.650421,0.225969,0][1.04797,0.751415,0.797387][0.860634,0.286982,0.420655][0.665101,0.353667,0][1.12521,0.434012,0.855891][0.898385,0.0347726,0.437831][0.724785,0.303365,0][1.32276,0.434012,0.451708][0.897945,0.0326995,0.438892][0.650421,0.225969,0][1.32276,0.434012,0.451708][0.897945,0.0326995,0.438892][0.650421,0.225969,0][1.23196,0.751415,0.420951][0.860634,0.286982,0.420655][0.59669,0.283718,0][1.04797,0.751415,0.797387][0.860634,0.286982,0.420655][0.665101,0.353667,0][0.761391,0.751415,1.09613][0.690599,0.290172,0.662475][0.723477,0.430454,0][0.817512,0.434012,1.17665][0.715517,0.0164466,0.698401][0.789198,0.387222,0][1.12521,0.434012,0.855891][0.898385,0.0347726,0.437831][0.724785,0.303365,0][1.12521,0.434012,0.855891][0.898385,0.0347726,0.437831][0.724785,0.303365,0][1.04797,0.751415,0.797387][0.860634,0.286982,0.420655][0.665101,0.353667,0][0.761391,0.751415,1.09613][0.690599,0.290172,0.662475][0.723477,0.430454,0][0.400287,0.751415,1.28793][0.448437,0.293475,0.844261][0.771633,0.514908,0][0.429792,0.434012,1.38259][0.469826,0.0132084,0.88266][0.844086,0.478369,0][0.817512,0.434012,1.17665][0.715517,0.0164466,0.698401][0.789198,0.387222,0][0.817512,0.434012,1.17665][0.715517,0.0164466,0.698401][0.789198,0.387222,0][0.761391,0.751415,1.09613][0.690599,0.290172,0.662475][0.723477,0.430454,0][0.400287,0.751415,1.28793][0.448437,0.293475,0.844261][0.771633,0.514908,0][-7.94085e-007,0.751415,1.35402][-0.155625,0.295572,0.942559][0.80956,0.610093,0][-8.42012e-007,0.434011,1.45355][-0.162895,0.0102392,0.98659][0.891269,0.579128,0][0.429792,0.434012,1.38259][0.469826,0.0132084,0.88266][0.844086,0.478369,0][0.429792,0.434012,1.38259][0.469826,0.0132084,0.88266][0.844086,0.478369,0][0.400287,0.751415,1.28793][0.448437,0.293475,0.844261][0.771633,0.514908,0][-7.94085e-007,0.751415,1.35402][-0.155625,0.295572,0.942559][0.80956,0.610093,0][0.400287,0.751415,-1.28059][0.155624,0.295572,-0.94256][0.129997,0.095214,0][0.429791,0.434012,-1.37525][0.159623,0.199648,-0.966779][0.129436,0.006552,0][-8.42012e-007,0.434012,-1.44622][-0.159623,0.199648,-0.966779][0.010041,0.01534,0][-8.42012e-007,0.434012,-1.44622][-0.159623,0.199648,-0.966779][0.010041,0.01534,0][-7.94085e-007,0.751415,-1.34668][-0.155625,0.29557,-0.94256][0.021977,0.106116,0][0.400287,0.751415,-1.28059][0.155624,0.295572,-0.94256][0.129997,0.095214,0][0.761391,0.751415,-1.08879][0.448436,0.293475,-0.844261][0.234815,0.102692,0][0.817512,0.434012,-1.16931][0.469177,0.104947,-0.876846][0.248166,0.016827,0][0.429791,0.434012,-1.37525][0.159623,0.199648,-0.966779][0.129436,0.006552,0][0.429791,0.434012,-1.37525][0.159623,0.199648,-0.966779][0.129436,0.006552,0][0.400287,0.751415,-1.28059][0.155624,0.295572,-0.94256][0.129997,0.095214,0][0.761391,0.751415,-1.08879][0.448436,0.293475,-0.844261][0.234815,0.102692,0][1.04797,0.751415,-0.790048][0.690601,0.290172,-0.662473][0.335744,0.127843,0][1.12521,0.434012,-0.848552][0.71438,0.130159,-0.687546][0.362323,0.047361,0][0.817512,0.434012,-1.16931][0.469177,0.104947,-0.876846][0.248166,0.016827,0][0.817512,0.434012,-1.16931][0.469177,0.104947,-0.876846][0.248166,0.016827,0][0.761391,0.751415,-1.08879][0.448436,0.293475,-0.844261][0.234815,0.102692,0][1.04797,0.751415,-0.790048][0.690601,0.290172,-0.662473][0.335744,0.127843,0][1.23196,0.751415,-0.413613][0.860633,0.286982,-0.420656][0.430697,0.16834,0][1.32276,0.434012,-0.44437][0.890959,0.128649,-0.435478][0.467804,0.094817,0][1.12521,0.434012,-0.848552][0.71438,0.130159,-0.687546][0.362323,0.047361,0][1.12521,0.434012,-0.848552][0.71438,0.130159,-0.687546][0.362323,0.047361,0][1.04797,0.751415,-0.790048][0.690601,0.290172,-0.662473][0.335744,0.127843,0][1.23196,0.751415,-0.413613][0.860633,0.286982,-0.420656][0.430697,0.16834,0][1.35369,0.434012,-0.151705][0.991736,0.0739908,-0.104813][0.531716,0.133884,0][1.32276,0.434012,-0.44437][0.890959,0.128649,-0.435478][0.467804,0.094817,0][1.23196,0.751415,-0.413613][0.860633,0.286982,-0.420656][0.430697,0.16834,0][1.23196,0.751415,-0.413613][0.860633,0.286982,-0.420656][0.430697,0.16834,0][1.26076,0.751415,-0.141039][0.953904,0.282671,-0.100817][0.487272,0.203922,0][1.35369,0.434012,-0.151705][0.991736,0.0739908,-0.104813][0.531716,0.133884,0][1.23196,0.751415,0.420951][0.860634,0.286982,0.420655][0.59669,0.283718,0][1.32276,0.434012,0.451708][0.897945,0.0326995,0.438892][0.650421,0.225969,0][1.37011,0.434012,0.00366892][0.992796,0.0694635,-0.0976256][0.56446,0.155913,0][1.37011,0.434012,0.00366892][0.992796,0.0694635,-0.0976256][0.56446,0.155913,0][1.27606,0.751415,0.0036689][0.953905,0.282671,0.100815][0.516811,0.22255,0][1.23196,0.751415,0.420951][0.860634,0.286982,0.420655][0.59669,0.283718,0][0.910313,1.00326,0.693131][0.745401,0.558247,0.364332][0.609423,0.399554,0][1.04797,0.751415,0.797387][0.860634,0.286982,0.420655][0.665101,0.353667,0][1.23196,0.751415,0.420951][0.860634,0.286982,0.420655][0.59669,0.283718,0][1.23196,0.751415,0.420951][0.860634,0.286982,0.420655][0.59669,0.283718,0][1.07014,1.00326,0.36614][0.745401,0.558247,0.364332][0.547529,0.337087,0][0.910313,1.00326,0.693131][0.745401,0.558247,0.364332][0.609423,0.399554,0][0.661381,1.00326,0.952632][0.596469,0.562885,0.572176][0.661605,0.468758,0][0.761391,0.751415,1.09613][0.690599,0.290172,0.662475][0.723477,0.430454,0][1.04797,0.751415,0.797387][0.860634,0.286982,0.420655][0.665101,0.353667,0][1.04797,0.751415,0.797387][0.860634,0.286982,0.420655][0.665101,0.353667,0][0.910313,1.00326,0.693131][0.745401,0.558247,0.364332][0.609423,0.399554,0][0.661381,1.00326,0.952632][0.596469,0.562885,0.572176][0.661605,0.468758,0][0.347709,1.00326,1.11924][0.386191,0.567643,0.727075][0.702943,0.54507,0][0.400287,0.751415,1.28793][0.448437,0.293475,0.844261][0.771633,0.514908,0][0.761391,0.751415,1.09613][0.690599,0.290172,0.662475][0.723477,0.430454,0][0.761391,0.751415,1.09613][0.690599,0.290172,0.662475][0.723477,0.430454,0][0.661381,1.00326,0.952632][0.596469,0.562885,0.572176][0.661605,0.468758,0][0.347709,1.00326,1.11924][0.386191,0.567643,0.727075][0.702943,0.54507,0][-7.56058e-007,1.00326,1.17665][-0.133776,0.570643,0.810229][0.731101,0.630581,0][-7.94085e-007,0.751415,1.35402][-0.155625,0.295572,0.942559][0.80956,0.610093,0][0.400287,0.751415,1.28793][0.448437,0.293475,0.844261][0.771633,0.514908,0][0.400287,0.751415,1.28793][0.448437,0.293475,0.844261][0.771633,0.514908,0][0.347709,1.00326,1.11924][0.386191,0.567643,0.727075][0.702943,0.54507,0][-7.56058e-007,1.00326,1.17665][-0.133776,0.570643,0.810229][0.731101,0.630581,0][0.347709,1.00326,-1.1119][0.133776,0.570642,-0.81023][0.133393,0.175239,0][0.400287,0.751415,-1.28059][0.155624,0.295572,-0.94256][0.129997,0.095214,0][-7.94085e-007,0.751415,-1.34668][-0.155625,0.29557,-0.94256][0.021977,0.106116,0][-7.94085e-007,0.751415,-1.34668][-0.155625,0.29557,-0.94256][0.021977,0.106116,0][-7.56058e-007,1.00326,-1.16931][-0.133776,0.570643,-0.810229][0.04015,0.188989,0][0.347709,1.00326,-1.1119][0.133776,0.570642,-0.81023][0.133393,0.175239,0][0.661381,1.00326,-0.945293][0.386193,0.567642,-0.727074][0.224815,0.180035,0][0.761391,0.751415,-1.08879][0.448436,0.293475,-0.844261][0.234815,0.102692,0][0.400287,0.751415,-1.28059][0.155624,0.295572,-0.94256][0.129997,0.095214,0][0.400287,0.751415,-1.28059][0.155624,0.295572,-0.94256][0.129997,0.095214,0][0.347709,1.00326,-1.1119][0.133776,0.570642,-0.81023][0.133393,0.175239,0][0.661381,1.00326,-0.945293][0.386193,0.567642,-0.727074][0.224815,0.180035,0][0.910313,1.00326,-0.685792][0.596469,0.562885,-0.572176][0.313493,0.200873,0][1.04797,0.751415,-0.790048][0.690601,0.290172,-0.662473][0.335744,0.127843,0][0.761391,0.751415,-1.08879][0.448436,0.293475,-0.844261][0.234815,0.102692,0][0.761391,0.751415,-1.08879][0.448436,0.293475,-0.844261][0.234815,0.102692,0][0.661381,1.00326,-0.945293][0.386193,0.567642,-0.727074][0.224815,0.180035,0][0.910313,1.00326,-0.685792][0.596469,0.562885,-0.572176][0.313493,0.200873,0][1.07014,1.00326,-0.358802][0.745401,0.558247,-0.364331][0.397883,0.23553,0][1.23196,0.751415,-0.413613][0.860633,0.286982,-0.420656][0.430697,0.16834,0][1.04797,0.751415,-0.790048][0.690601,0.290172,-0.662473][0.335744,0.127843,0][1.04797,0.751415,-0.790048][0.690601,0.290172,-0.662473][0.335744,0.127843,0][0.910313,1.00326,-0.685792][0.596469,0.562885,-0.572176][0.313493,0.200873,0][1.07014,1.00326,-0.358802][0.745401,0.558247,-0.364331][0.397883,0.23553,0][1.26076,0.751415,-0.141039][0.953904,0.282671,-0.100817][0.487272,0.203922,0][1.23196,0.751415,-0.413613][0.860633,0.286982,-0.420656][0.430697,0.16834,0][1.07014,1.00326,-0.358802][0.745401,0.558247,-0.364331][0.397883,0.23553,0][1.07014,1.00326,-0.358802][0.745401,0.558247,-0.364331][0.397883,0.23553,0][1.09516,1.00326,-0.122032][0.829277,0.551923,-0.0876452][0.447731,0.268176,0][1.26076,0.751415,-0.141039][0.953904,0.282671,-0.100817][0.487272,0.203922,0][1.07014,1.00326,0.36614][0.745401,0.558247,0.364332][0.547529,0.337087,0][1.23196,0.751415,0.420951][0.860634,0.286982,0.420655][0.59669,0.283718,0][1.27606,0.751415,0.0036689][0.953905,0.282671,0.100815][0.516811,0.22255,0][1.27606,0.751415,0.0036689][0.953905,0.282671,0.100815][0.516811,0.22255,0][1.10845,1.00326,0.00366889][0.829277,0.551923,0.0876427][0.474656,0.284276,0][1.07014,1.00326,0.36614][0.745401,0.558247,0.364332][0.547529,0.337087,0][0.707808,1.17054,0.539755][0.500625,0.830362,0.24469][0.549451,0.44744,0][0.910313,1.00326,0.693131][0.745401,0.558247,0.364332][0.609423,0.399554,0][1.07014,1.00326,0.36614][0.745401,0.558247,0.364332][0.547529,0.337087,0][1.07014,1.00326,0.36614][0.745401,0.558247,0.364332][0.547529,0.337087,0][0.832078,1.17054,0.285506][0.500624,0.830363,0.244688][0.495446,0.393433,0][0.707808,1.17054,0.539755][0.500625,0.830362,0.24469][0.549451,0.44744,0][0.514253,1.17054,0.741529][0.398777,0.833453,0.382535][0.594588,0.507621,0][0.661381,1.00326,0.952632][0.596469,0.562885,0.572176][0.661605,0.468758,0][0.910313,1.00326,0.693131][0.745401,0.558247,0.364332][0.609423,0.399554,0][0.910313,1.00326,0.693131][0.745401,0.558247,0.364332][0.609423,0.399554,0][0.707808,1.17054,0.539755][0.500625,0.830362,0.24469][0.549451,0.44744,0][0.514253,1.17054,0.741529][0.398777,0.833453,0.382535][0.594588,0.507621,0][0.270359,1.17054,0.871075][0.256988,0.836579,0.483832][0.629166,0.573133,0][0.347709,1.00326,1.11924][0.386191,0.567643,0.727075][0.702943,0.54507,0][0.661381,1.00326,0.952632][0.596469,0.562885,0.572176][0.661605,0.468758,0][0.661381,1.00326,0.952632][0.596469,0.562885,0.572176][0.661605,0.468758,0][0.514253,1.17054,0.741529][0.398777,0.833453,0.382535][0.594588,0.507621,0][0.270359,1.17054,0.871075][0.256988,0.836579,0.483832][0.629166,0.573133,0][-7.30799e-007,1.17054,0.915714][-0.0887593,0.838528,0.53758][0.650195,0.643139,0][-7.56058e-007,1.00326,1.17665][-0.133776,0.570643,0.810229][0.731101,0.630581,0][0.347709,1.00326,1.11924][0.386191,0.567643,0.727075][0.702943,0.54507,0][0.347709,1.00326,1.11924][0.386191,0.567643,0.727075][0.702943,0.54507,0][0.270359,1.17054,0.871075][0.256988,0.836579,0.483832][0.629166,0.573133,0][-7.30799e-007,1.17054,0.915714][-0.0887593,0.838528,0.53758][0.650195,0.643139,0][0.270358,1.17054,-0.863737][0.088757,0.838529,-0.537579][0.13997,0.257482,0][0.347709,1.00326,-1.1119][0.133776,0.570642,-0.81023][0.133393,0.175239,0][-7.56058e-007,1.00326,-1.16931][-0.133776,0.570643,-0.810229][0.04015,0.188989,0][-7.56058e-007,1.00326,-1.16931][-0.133776,0.570643,-0.810229][0.04015,0.188989,0][-7.30799e-007,1.17054,-0.908375][-0.0887577,0.838529,-0.537579][0.065813,0.270119,0][0.270358,1.17054,-0.863737][0.088757,0.838529,-0.537579][0.13997,0.257482,0][0.514252,1.17054,-0.73419][0.256994,0.836578,-0.48383][0.216224,0.260519,0][0.661381,1.00326,-0.945293][0.386193,0.567642,-0.727074][0.224815,0.180035,0][0.347709,1.00326,-1.1119][0.133776,0.570642,-0.81023][0.133393,0.175239,0][0.347709,1.00326,-1.1119][0.133776,0.570642,-0.81023][0.133393,0.175239,0][0.270358,1.17054,-0.863737][0.088757,0.838529,-0.537579][0.13997,0.257482,0][0.514252,1.17054,-0.73419][0.256994,0.836578,-0.48383][0.216224,0.260519,0][0.707808,1.17054,-0.532417][0.398774,0.833454,-0.382536][0.29153,0.277361,0][0.910313,1.00326,-0.685792][0.596469,0.562885,-0.572176][0.313493,0.200873,0][0.661381,1.00326,-0.945293][0.386193,0.567642,-0.727074][0.224815,0.180035,0][0.661381,1.00326,-0.945293][0.386193,0.567642,-0.727074][0.224815,0.180035,0][0.514252,1.17054,-0.73419][0.256994,0.836578,-0.48383][0.216224,0.260519,0][0.707808,1.17054,-0.532417][0.398774,0.833454,-0.382536][0.29153,0.277361,0][0.832078,1.17054,-0.278168][0.500625,0.830362,-0.24469][0.363734,0.306467,0][1.07014,1.00326,-0.358802][0.745401,0.558247,-0.364331][0.397883,0.23553,0][0.910313,1.00326,-0.685792][0.596469,0.562885,-0.572176][0.313493,0.200873,0][0.910313,1.00326,-0.685792][0.596469,0.562885,-0.572176][0.313493,0.200873,0][0.707808,1.17054,-0.532417][0.398774,0.833454,-0.382536][0.29153,0.277361,0][0.832078,1.17054,-0.278168][0.500625,0.830362,-0.24469][0.363734,0.306467,0][1.09516,1.00326,-0.122032][0.829277,0.551923,-0.0876452][0.447731,0.268176,0][1.07014,1.00326,-0.358802][0.745401,0.558247,-0.364331][0.397883,0.23553,0][0.832078,1.17054,-0.278168][0.500625,0.830362,-0.24469][0.363734,0.306467,0][0.832078,1.17054,-0.278168][0.500625,0.830362,-0.24469][0.363734,0.306467,0][0.851535,1.17054,-0.0940691][0.560433,0.826079,-0.0592308][0.407219,0.33524,0][1.09516,1.00326,-0.122032][0.829277,0.551923,-0.0876452][0.447731,0.268176,0][0.832078,1.17054,0.285506][0.500624,0.830363,0.244688][0.495446,0.393433,0][1.07014,1.00326,0.36614][0.745401,0.558247,0.364332][0.547529,0.337087,0][1.10845,1.00326,0.00366889][0.829277,0.551923,0.0876427][0.474656,0.284276,0][1.10845,1.00326,0.00366889][0.829277,0.551923,0.0876427][0.474656,0.284276,0][0.861865,1.17054,0.00366888][0.560433,0.826079,0.0592315][0.432548,0.34956,0][0.832078,1.17054,0.285506][0.500624,0.830363,0.244688][0.495446,0.393433,0][0.450748,1.26247,0.345061][0.250644,0.960297,0.122504][0.415495,0.478982,0][0.707808,1.17054,0.539755][0.500625,0.830362,0.24469][0.471992,0.403555,0][0.832078,1.17054,0.285506][0.500624,0.830363,0.244688][0.400331,0.368523,0][0.832078,1.17054,0.285506][0.500624,0.830363,0.244688][0.400331,0.368523,0][0.529886,1.26247,0.183149][0.250644,0.960297,0.122501][0.370241,0.45683,0][0.450748,1.26247,0.345061][0.250644,0.960297,0.122504][0.415495,0.478982,0][0.327488,1.26247,0.473554][0.199096,0.96119,0.190985][0.451638,0.513296,0][0.514253,1.17054,0.741529][0.398777,0.833453,0.382535][0.529258,0.457746,0][0.707808,1.17054,0.539755][0.500625,0.830362,0.24469][0.471992,0.403555,0][0.707808,1.17054,0.539755][0.500625,0.830362,0.24469][0.471992,0.403555,0][0.450748,1.26247,0.345061][0.250644,0.960297,0.122504][0.415495,0.478982,0][0.327488,1.26247,0.473554][0.199096,0.96119,0.190985][0.451638,0.513296,0][0.17217,1.26247,0.556052][0.127943,0.962084,0.240884][0.47528,0.556615,0][0.270359,1.17054,0.871075][0.256988,0.836579,0.483832][0.566817,0.526033,0][0.514253,1.17054,0.741529][0.398777,0.833453,0.382535][0.529258,0.457746,0][0.514253,1.17054,0.741529][0.398777,0.833453,0.382535][0.529258,0.457746,0][0.327488,1.26247,0.473554][0.199096,0.96119,0.190985][0.451638,0.513296,0][0.17217,1.26247,0.556052][0.127943,0.962084,0.240884][0.47528,0.556615,0][-7.16917e-007,1.26247,0.584479][-0.0441129,0.962638,0.267174][0.484165,0.605001,0][-7.30799e-007,1.17054,0.915714][-0.0887593,0.838528,0.53758][0.581249,0.602099,0][0.270359,1.17054,0.871075][0.256988,0.836579,0.483832][0.566817,0.526033,0][0.270359,1.17054,0.871075][0.256988,0.836579,0.483832][0.566817,0.526033,0][0.17217,1.26247,0.556052][0.127943,0.962084,0.240884][0.47528,0.556615,0][-7.16917e-007,1.26247,0.584479][-0.0441129,0.962638,0.267174][0.484165,0.605001,0][0.270358,1.17054,-0.863737][0.088757,0.838529,-0.537579][0.072187,0.521888,0][-7.30799e-007,1.17054,-0.908375][-0.0887577,0.838529,-0.537579][0.056511,0.5977,0][-7.16917e-007,1.26247,-0.577141][-0.0441079,0.962638,-0.267176][0.153526,0.602193,0][-7.16917e-007,1.26247,-0.577141][-0.0441079,0.962638,-0.267176][0.153526,0.602193,0][0.17217,1.26247,-0.548714][0.0441079,0.962638,-0.267176][0.163217,0.553961,0][0.270358,1.17054,-0.863737][0.088757,0.838529,-0.537579][0.072187,0.521888,0][0.327487,1.26247,-0.466216][0.127944,0.962084,-0.240883][0.187597,0.511039,0][0.514252,1.17054,-0.73419][0.256994,0.836578,-0.48383][0.110853,0.454266,0][0.270358,1.17054,-0.863737][0.088757,0.838529,-0.537579][0.072187,0.521888,0][0.270358,1.17054,-0.863737][0.088757,0.838529,-0.537579][0.072187,0.521888,0][0.17217,1.26247,-0.548714][0.0441079,0.962638,-0.267176][0.163217,0.553961,0][0.327487,1.26247,-0.466216][0.127944,0.962084,-0.240883][0.187597,0.511039,0][0.450748,1.26247,-0.337723][0.199099,0.961189,-0.190986][0.22433,0.477332,0][0.707808,1.17054,-0.532417][0.398774,0.833454,-0.382536][0.168989,0.40103,0][0.514252,1.17054,-0.73419][0.256994,0.836578,-0.48383][0.110853,0.454266,0][0.514252,1.17054,-0.73419][0.256994,0.836578,-0.48383][0.110853,0.454266,0][0.327487,1.26247,-0.466216][0.127944,0.962084,-0.240883][0.187597,0.511039,0][0.450748,1.26247,-0.337723][0.199099,0.961189,-0.190986][0.22433,0.477332,0][0.529886,1.26247,-0.175811][0.250644,0.960296,-0.122508][0.269979,0.45594,0][0.832078,1.17054,-0.278168][0.500625,0.830362,-0.24469][0.241211,0.367161,0][0.707808,1.17054,-0.532417][0.398774,0.833454,-0.382536][0.168989,0.40103,0][0.707808,1.17054,-0.532417][0.398774,0.833454,-0.382536][0.168989,0.40103,0][0.450748,1.26247,-0.337723][0.199099,0.961189,-0.190986][0.22433,0.477332,0][0.529886,1.26247,-0.175811][0.250644,0.960296,-0.122508][0.269979,0.45594,0][0.542276,1.26247,-0.0585731][0.281676,0.959048,-0.0297696][0.302758,0.452823,0][0.851535,1.17054,-0.0940691][0.560433,0.826079,-0.0592308][0.29324,0.362032,0][0.832078,1.17054,-0.278168][0.500625,0.830362,-0.24469][0.241211,0.367161,0][0.832078,1.17054,-0.278168][0.500625,0.830362,-0.24469][0.241211,0.367161,0][0.529886,1.26247,-0.175811][0.250644,0.960296,-0.122508][0.269979,0.45594,0][0.542276,1.26247,-0.0585731][0.281676,0.959048,-0.0297696][0.302758,0.452823,0][0.529886,1.26247,0.183149][0.250644,0.960297,0.122501][0.370241,0.45683,0][0.832078,1.17054,0.285506][0.500624,0.830363,0.244688][0.400331,0.368523,0][0.861865,1.17054,0.00366888][0.560433,0.826079,0.0592315][0.320975,0.359448,0][0.861865,1.17054,0.00366888][0.560433,0.826079,0.0592315][0.320975,0.359448,0][0.548855,1.26247,0.00366888][0.281673,0.959048,0.0297697][0.320085,0.451176,0][0.529886,1.26247,0.183149][0.250644,0.960297,0.122501][0.370241,0.45683,0][0.223275,1.29648,0.0792959][0.0285477,0.999495,0.0139396][0.340659,0.543126,0][-7.1066e-007,1.30391,0.00366888][-0.0285437,0.999495,0.0139516][0.318836,0.606356,0][0.189929,1.29648,0.147519][0.0285477,0.999495,0.0139396][0.359891,0.552593,0][0.189929,1.29648,0.147519][0.0285477,0.999495,0.0139396][0.359891,0.552593,0][-7.1066e-007,1.30391,0.00366888][-0.0285437,0.999495,0.0139516][0.318836,0.606356,0][0.137992,1.29648,0.201662][0.0226423,0.999507,0.0217374][0.375205,0.567269,0][0.137992,1.29648,0.201662][0.0226423,0.999507,0.0217374][0.375205,0.567269,0][-7.1066e-007,1.30391,0.00366888][-0.0285437,0.999495,0.0139516][0.318836,0.606356,0][0.0725463,1.29648,0.236424][0.0145441,0.999519,0.0273819][0.385118,0.585777,0][0.0725463,1.29648,0.236424][0.0145441,0.999519,0.0273819][0.385118,0.585777,0][-7.1066e-007,1.30391,0.00366888][-0.0285437,0.999495,0.0139516][0.318836,0.606356,0][-7.11782e-007,1.29648,0.248402][-0.00502404,0.999527,0.0303495][0.388647,0.606356,0][-7.11782e-007,1.29648,-0.241064][-0.00503654,0.999527,-0.0303456][0.249077,0.605216,0][-7.1066e-007,1.30391,0.00366888][-0.0285437,0.999495,0.0139516][0.318836,0.606356,0][0.0725463,1.29648,-0.229086][0.0050234,0.999527,-0.0303456][0.252932,0.584732,0][0.0725463,1.29648,-0.229086][0.0050234,0.999527,-0.0303456][0.252932,0.584732,0][-7.1066e-007,1.30391,0.00366888][-0.0285437,0.999495,0.0139516][0.318836,0.606356,0][0.137992,1.29648,-0.194324][0.0145547,0.999519,-0.0273745][0.263119,0.566402,0][0.137992,1.29648,-0.194324][0.0145547,0.999519,-0.0273745][0.263119,0.566402,0][-7.1066e-007,1.30391,0.00366888][-0.0285437,0.999495,0.0139516][0.318836,0.606356,0][0.189929,1.29648,-0.140181][0.0226635,0.999507,-0.0217225][0.278644,0.551969,0][0.189929,1.29648,-0.140181][0.0226635,0.999507,-0.0217225][0.278644,0.551969,0][-7.1066e-007,1.30391,0.00366888][-0.0285437,0.999495,0.0139516][0.318836,0.606356,0][0.223275,1.29648,-0.0719581][0.0285396,0.999495,-0.0139635][0.298012,0.542799,0][-7.1066e-007,1.30391,0.00366888][-0.0285437,0.999495,0.0139516][0.318836,0.606356,0][0.228496,1.29648,-0.0225571][0.0321189,0.999478,-0.00339452][0.311953,0.541456,0][0.223275,1.29648,-0.0719581][0.0285396,0.999495,-0.0139635][0.298012,0.542799,0][0.231268,1.29648,0.00366888][0.0321189,0.999478,0.00339464][0.319349,0.540736,0][-7.1066e-007,1.30391,0.00366888][-0.0285437,0.999495,0.0139516][0.318836,0.606356,0][0.223275,1.29648,0.0792959][0.0285477,0.999495,0.0139396][0.340659,0.543126,0][1.31062,-0.101346,0.325527][0.977627,-0.183888,0.102134][0.723444,0.105069,0][1.31884,0.00968904,0.446721][0.977627,-0.183888,0.102134][0.72359,0.148738,0][1.29109,-0.141645,0.439903][0.977627,-0.183888,0.102134][0.753474,0.120863,0][1.1232,0.00969004,0.849262][0.891509,-0.158702,0.424295][0.804043,0.233935,0][1.10641,-0.110037,0.839758][0.891509,-0.158702,0.424295][0.828705,0.21331,0][1.29109,-0.141645,0.439903][0.977627,-0.183888,0.102134][0.753474,0.120863,0][1.29109,-0.141645,0.439903][0.977627,-0.183888,0.102134][0.753474,0.120863,0][1.31884,0.00968904,0.446721][0.977627,-0.183888,0.102134][0.72359,0.148738,0][1.1232,0.00969004,0.849262][0.891509,-0.158702,0.424295][0.804043,0.233935,0][1.33158,0.183655,0.452322][0.898385,0.0347726,0.437831][0.692454,0.180794,0][1.31884,0.00968904,0.446721][0.977627,-0.183888,0.102134][0.72359,0.148738,0][1.36975,0.101276,0.15565][0.985951,-0.0769758,0.148238][0.649592,0.112793,0][1.36975,0.101276,0.15565][0.985951,-0.0769758,0.148238][0.649592,0.112793,0][1.38763,0.183655,0.00366893][0.992796,0.0694635,-0.0976256][0.603999,0.103938,0][1.33158,0.183655,0.452322][0.898385,0.0347726,0.437831][0.692454,0.180794,0][1.13345,0.183655,0.858867][0.898385,0.0347726,0.437831][0.770652,0.263267,0][1.1232,0.00969004,0.849262][0.891509,-0.158702,0.424295][0.804043,0.233935,0][1.31884,0.00968904,0.446721][0.977627,-0.183888,0.102134][0.72359,0.148738,0][1.31884,0.00968904,0.446721][0.977627,-0.183888,0.102134][0.72359,0.148738,0][1.33158,0.183655,0.452322][0.898385,0.0347726,0.437831][0.692454,0.180794,0][1.13345,0.183655,0.858867][0.898385,0.0347726,0.437831][0.770652,0.263267,0][1.13345,0.183655,0.858867][0.898385,0.0347726,0.437831][0.770652,0.263267,0][0.822764,0.183656,1.17717][0.715517,0.0164466,0.698401][0.839218,0.351503,0][0.815426,0.0096901,1.16197][0.712658,-0.0908061,0.69561][0.875731,0.324783,0][0.815426,0.0096901,1.16197][0.712658,-0.0908061,0.69561][0.875731,0.324783,0][1.1232,0.00969004,0.849262][0.891509,-0.158702,0.424295][0.804043,0.233935,0][1.13345,0.183655,0.858867][0.898385,0.0347726,0.437831][0.770652,0.263267,0][0.432919,0.183656,1.38467][0.469826,0.0132084,0.88266][0.898803,0.447238,0][0.429522,0.00969016,1.36794][0.468787,-0.0936422,0.878334][0.938284,0.423864,0][0.815426,0.0096901,1.16197][0.712658,-0.0908061,0.69561][0.875731,0.324783,0][0.815426,0.0096901,1.16197][0.712658,-0.0908061,0.69561][0.875731,0.324783,0][0.822764,0.183656,1.17717][0.715517,0.0164466,0.698401][0.839218,0.351503,0][0.432919,0.183656,1.38467][0.469826,0.0132084,0.88266][0.898803,0.447238,0][-8.79815e-007,0.183655,1.45616][-0.162917,0.0102777,0.986586][0.9514,0.549833,0][-9.0499e-007,0.0169239,1.43886][-0.160382,-0.101905,0.981781][0.990891,0.52825,0][0.429522,0.00969016,1.36794][0.468787,-0.0936422,0.878334][0.938284,0.423864,0][0.429522,0.00969016,1.36794][0.468787,-0.0936422,0.878334][0.938284,0.423864,0][0.432919,0.183656,1.38467][0.469826,0.0132084,0.88266][0.898803,0.447238,0][-8.79815e-007,0.183655,1.45616][-0.162917,0.0102777,0.986586][0.9514,0.549833,0][1.1232,0.00969004,0.849262][0.891509,-0.158702,0.424295][0.804043,0.233935,0][0.815426,0.0096901,1.16197][0.712658,-0.0908061,0.69561][0.875731,0.324783,0][0.805414,-0.0499107,1.15554][0.699482,-0.191774,0.688439][0.889682,0.316176,0][0.805414,-0.0499107,1.15554][0.699482,-0.191774,0.688439][0.889682,0.316176,0][1.10641,-0.110037,0.839758][0.891509,-0.158702,0.424295][0.828705,0.21331,0][1.1232,0.00969004,0.849262][0.891509,-0.158702,0.424295][0.804043,0.233935,0][0.805414,-0.0499107,1.15554][0.699482,-0.191774,0.688439][0.889682,0.316176,0][0.815426,0.0096901,1.16197][0.712658,-0.0908061,0.69561][0.875731,0.324783,0][0.429522,0.00969016,1.36794][0.468787,-0.0936422,0.878334][0.938284,0.423864,0][1.30164,0.117075,-0.531783][0.912789,0,-0.408432][0.484607,0.010051,0][1.33872,0.183284,-0.448908][0.904838,0.0651971,-0.420734][0.498534,0.03683,0][1.33872,0.103488,-0.448908][0.912789,0,-0.408432][0.508752,0.017872,0][1.3721,0.183655,-0.154313][0.992796,0.0694635,-0.0976256][0.567735,0.078271,0][1.35393,0.12507,-0.325805][0.993408,0.0215688,-0.112582][0.535585,0.040112,0][1.33872,0.183284,-0.448908][0.904838,0.0651971,-0.420734][0.498534,0.03683,0][1.35393,0.12507,-0.325805][0.993408,0.0215688,-0.112582][0.535585,0.040112,0][1.33872,0.103488,-0.448908][0.912789,0,-0.408432][0.508752,0.017872,0][1.33872,0.183284,-0.448908][0.904838,0.0651971,-0.420734][0.498534,0.03683,0][1.24248,0.183284,-0.66452][0.905894,0.125879,-0.404365][0.441384,0.009623,0][1.33872,0.183284,-0.448908][0.904838,0.0651971,-0.420734][0.498534,0.03683,0][1.30164,0.117075,-0.531783][0.912789,0,-0.408432][0.484607,0.010051,0][1.34032,0.00968902,0.248039][0.976558,-0.187578,0.105588][0.685856,0.111407,0][1.31884,0.00968904,0.446721][0.977627,-0.183888,0.102134][0.72359,0.148738,0][1.31062,-0.101346,0.325527][0.977627,-0.183888,0.102134][0.723444,0.105069,0][1.34032,0.00968902,0.248039][0.976558,-0.187578,0.105588][0.685856,0.111407,0][1.36975,0.101276,0.15565][0.985951,-0.0769758,0.148238][0.649592,0.112793,0][1.31884,0.00968904,0.446721][0.977627,-0.183888,0.102134][0.72359,0.148738,0][1.37011,0.434012,0.00366892][0.992796,0.0694635,-0.0976256][0.56446,0.155913,0][1.35369,0.434012,-0.151705][0.991736,0.0739908,-0.104813][0.531716,0.133884,0][1.26076,0.751415,-0.141039][0.953904,0.282671,-0.100817][0.487272,0.203922,0][1.26076,0.751415,-0.141039][0.953904,0.282671,-0.100817][0.487272,0.203922,0][1.27606,0.751415,0.0036689][0.953905,0.282671,0.100815][0.516811,0.22255,0][1.37011,0.434012,0.00366892][0.992796,0.0694635,-0.0976256][0.56446,0.155913,0][1.27606,0.751415,0.0036689][0.953905,0.282671,0.100815][0.516811,0.22255,0][1.26076,0.751415,-0.141039][0.953904,0.282671,-0.100817][0.487272,0.203922,0][1.09516,1.00326,-0.122032][0.829277,0.551923,-0.0876452][0.447731,0.268176,0][1.09516,1.00326,-0.122032][0.829277,0.551923,-0.0876452][0.447731,0.268176,0][1.10845,1.00326,0.00366889][0.829277,0.551923,0.0876427][0.474656,0.284276,0][1.27606,0.751415,0.0036689][0.953905,0.282671,0.100815][0.516811,0.22255,0][1.10845,1.00326,0.00366889][0.829277,0.551923,0.0876427][0.474656,0.284276,0][1.09516,1.00326,-0.122032][0.829277,0.551923,-0.0876452][0.447731,0.268176,0][0.851535,1.17054,-0.0940691][0.560433,0.826079,-0.0592308][0.407219,0.33524,0][0.851535,1.17054,-0.0940691][0.560433,0.826079,-0.0592308][0.407219,0.33524,0][0.861865,1.17054,0.00366888][0.560433,0.826079,0.0592315][0.432548,0.34956,0][1.10845,1.00326,0.00366889][0.829277,0.551923,0.0876427][0.474656,0.284276,0][0.548855,1.26247,0.00366888][0.281673,0.959048,0.0297697][0.320085,0.451176,0][0.861865,1.17054,0.00366888][0.560433,0.826079,0.0592315][0.320975,0.359448,0][0.851535,1.17054,-0.0940691][0.560433,0.826079,-0.0592308][0.29324,0.362032,0][0.851535,1.17054,-0.0940691][0.560433,0.826079,-0.0592308][0.29324,0.362032,0][0.542276,1.26247,-0.0585731][0.281676,0.959048,-0.0297696][0.302758,0.452823,0][0.548855,1.26247,0.00366888][0.281673,0.959048,0.0297697][0.320085,0.451176,0][1.32276,0.434012,-0.44437][0.890959,0.128649,-0.435478][0.467804,0.094817,0][1.35369,0.434012,-0.151705][0.991736,0.0739908,-0.104813][0.531716,0.133884,0][1.3721,0.183655,-0.154313][0.992796,0.0694635,-0.0976256][0.567735,0.078271,0][1.3721,0.183655,-0.154313][0.992796,0.0694635,-0.0976256][0.567735,0.078271,0][1.33872,0.183284,-0.448908][0.904838,0.0651971,-0.420734][0.498534,0.03683,0][1.32276,0.434012,-0.44437][0.890959,0.128649,-0.435478][0.467804,0.094817,0][-7.1066e-007,1.30391,0.00366888][-0.0285437,0.999495,0.0139516][0.318836,0.606356,0][0.231268,1.29648,0.00366888][0.0321189,0.999478,0.00339464][0.319349,0.540736,0][0.228496,1.29648,-0.0225571][0.0321189,0.999478,-0.00339452][0.311953,0.541456,0][0.0725463,1.29648,-0.229086][0.0050234,0.999527,-0.0303456][0.252932,0.584732,0][0.17217,1.26247,-0.548714][0.0441079,0.962638,-0.267176][0.163217,0.553961,0][-7.16917e-007,1.26247,-0.577141][-0.0441079,0.962638,-0.267176][0.153526,0.602193,0][-7.16917e-007,1.26247,-0.577141][-0.0441079,0.962638,-0.267176][0.153526,0.602193,0][-7.11782e-007,1.29648,-0.241064][-0.00503654,0.999527,-0.0303456][0.249077,0.605216,0][0.0725463,1.29648,-0.229086][0.0050234,0.999527,-0.0303456][0.252932,0.584732,0][0.137992,1.29648,-0.194324][0.0145547,0.999519,-0.0273745][0.263119,0.566402,0][0.327487,1.26247,-0.466216][0.127944,0.962084,-0.240883][0.187597,0.511039,0][0.17217,1.26247,-0.548714][0.0441079,0.962638,-0.267176][0.163217,0.553961,0][0.17217,1.26247,-0.548714][0.0441079,0.962638,-0.267176][0.163217,0.553961,0][0.0725463,1.29648,-0.229086][0.0050234,0.999527,-0.0303456][0.252932,0.584732,0][0.137992,1.29648,-0.194324][0.0145547,0.999519,-0.0273745][0.263119,0.566402,0][0.189929,1.29648,-0.140181][0.0226635,0.999507,-0.0217225][0.278644,0.551969,0][0.450748,1.26247,-0.337723][0.199099,0.961189,-0.190986][0.22433,0.477332,0][0.327487,1.26247,-0.466216][0.127944,0.962084,-0.240883][0.187597,0.511039,0][0.327487,1.26247,-0.466216][0.127944,0.962084,-0.240883][0.187597,0.511039,0][0.137992,1.29648,-0.194324][0.0145547,0.999519,-0.0273745][0.263119,0.566402,0][0.189929,1.29648,-0.140181][0.0226635,0.999507,-0.0217225][0.278644,0.551969,0][0.223275,1.29648,-0.0719581][0.0285396,0.999495,-0.0139635][0.298012,0.542799,0][0.529886,1.26247,-0.175811][0.250644,0.960296,-0.122508][0.269979,0.45594,0][0.450748,1.26247,-0.337723][0.199099,0.961189,-0.190986][0.22433,0.477332,0][0.450748,1.26247,-0.337723][0.199099,0.961189,-0.190986][0.22433,0.477332,0][0.189929,1.29648,-0.140181][0.0226635,0.999507,-0.0217225][0.278644,0.551969,0][0.223275,1.29648,-0.0719581][0.0285396,0.999495,-0.0139635][0.298012,0.542799,0][0.529886,1.26247,-0.175811][0.250644,0.960296,-0.122508][0.269979,0.45594,0][0.223275,1.29648,-0.0719581][0.0285396,0.999495,-0.0139635][0.298012,0.542799,0][0.228496,1.29648,-0.0225571][0.0321189,0.999478,-0.00339452][0.311953,0.541456,0][0.228496,1.29648,-0.0225571][0.0321189,0.999478,-0.00339452][0.311953,0.541456,0][0.542276,1.26247,-0.0585731][0.281676,0.959048,-0.0297696][0.302758,0.452823,0][0.529886,1.26247,-0.175811][0.250644,0.960296,-0.122508][0.269979,0.45594,0][0.542276,1.26247,-0.0585731][0.281676,0.959048,-0.0297696][0.302758,0.452823,0][0.228496,1.29648,-0.0225571][0.0321189,0.999478,-0.00339452][0.311953,0.541456,0][0.231268,1.29648,0.00366888][0.0321189,0.999478,0.00339464][0.319349,0.540736,0][0.231268,1.29648,0.00366888][0.0321189,0.999478,0.00339464][0.319349,0.540736,0][0.548855,1.26247,0.00366888][0.281673,0.959048,0.0297697][0.320085,0.451176,0][0.542276,1.26247,-0.0585731][0.281676,0.959048,-0.0297696][0.302758,0.452823,0][0.223275,1.29648,0.0792959][0.0285477,0.999495,0.0139396][0.340659,0.543126,0][0.529886,1.26247,0.183149][0.250644,0.960297,0.122501][0.370241,0.45683,0][0.548855,1.26247,0.00366888][0.281673,0.959048,0.0297697][0.320085,0.451176,0][0.548855,1.26247,0.00366888][0.281673,0.959048,0.0297697][0.320085,0.451176,0][0.231268,1.29648,0.00366888][0.0321189,0.999478,0.00339464][0.319349,0.540736,0][0.223275,1.29648,0.0792959][0.0285477,0.999495,0.0139396][0.340659,0.543126,0][0.189929,1.29648,0.147519][0.0285477,0.999495,0.0139396][0.359891,0.552593,0][0.450748,1.26247,0.345061][0.250644,0.960297,0.122504][0.415495,0.478982,0][0.529886,1.26247,0.183149][0.250644,0.960297,0.122501][0.370241,0.45683,0][0.529886,1.26247,0.183149][0.250644,0.960297,0.122501][0.370241,0.45683,0][0.223275,1.29648,0.0792959][0.0285477,0.999495,0.0139396][0.340659,0.543126,0][0.189929,1.29648,0.147519][0.0285477,0.999495,0.0139396][0.359891,0.552593,0][0.137992,1.29648,0.201662][0.0226423,0.999507,0.0217374][0.375205,0.567269,0][0.327488,1.26247,0.473554][0.199096,0.96119,0.190985][0.451638,0.513296,0][0.450748,1.26247,0.345061][0.250644,0.960297,0.122504][0.415495,0.478982,0][0.450748,1.26247,0.345061][0.250644,0.960297,0.122504][0.415495,0.478982,0][0.189929,1.29648,0.147519][0.0285477,0.999495,0.0139396][0.359891,0.552593,0][0.137992,1.29648,0.201662][0.0226423,0.999507,0.0217374][0.375205,0.567269,0][0.0725463,1.29648,0.236424][0.0145441,0.999519,0.0273819][0.385118,0.585777,0][0.17217,1.26247,0.556052][0.127943,0.962084,0.240884][0.47528,0.556615,0][0.327488,1.26247,0.473554][0.199096,0.96119,0.190985][0.451638,0.513296,0][0.327488,1.26247,0.473554][0.199096,0.96119,0.190985][0.451638,0.513296,0][0.137992,1.29648,0.201662][0.0226423,0.999507,0.0217374][0.375205,0.567269,0][0.0725463,1.29648,0.236424][0.0145441,0.999519,0.0273819][0.385118,0.585777,0][-7.11782e-007,1.29648,0.248402][-0.00502404,0.999527,0.0303495][0.388647,0.606356,0][-7.16917e-007,1.26247,0.584479][-0.0441129,0.962638,0.267174][0.484165,0.605001,0][0.17217,1.26247,0.556052][0.127943,0.962084,0.240884][0.47528,0.556615,0][0.17217,1.26247,0.556052][0.127943,0.962084,0.240884][0.47528,0.556615,0][0.0725463,1.29648,0.236424][0.0145441,0.999519,0.0273819][0.385118,0.585777,0][-7.11782e-007,1.29648,0.248402][-0.00502404,0.999527,0.0303495][0.388647,0.606356,0][0.378294,0.393914,-1.22286][-0.078859,-0.91664,0.391857][0.224385,0.333746,0][-8.4708e-007,0.400448,-1.2837][0.0788587,-0.91664,0.391857][0.300344,0.324656,0][-8.42012e-007,0.434012,-1.44622][-0.159623,0.199648,-0.966779][0.301686,0.291556,0][-8.42012e-007,0.434012,-1.44622][-0.159623,0.199648,-0.966779][0.301686,0.291556,0][0.430977,0.421578,-1.37763][0.159623,0.199648,-0.966779][0.215155,0.301958,0][0.378294,0.393914,-1.22286][-0.078859,-0.91664,0.391857][0.224385,0.333746,0][0.721707,0.371604,-1.041][-0.47033,-0.147807,0.870024][0.154374,0.367454,0][0.378294,0.393914,-1.22286][-0.078859,-0.91664,0.391857][0.224385,0.333746,0][0.430977,0.421578,-1.37763][0.159623,0.199648,-0.966779][0.215155,0.301958,0][0.430977,0.421578,-1.37763][0.159623,0.199648,-0.966779][0.215155,0.301958,0][0.82107,0.39309,-1.17231][0.469177,0.104947,-0.876846][0.135643,0.340102,0][0.721707,0.371604,-1.041][-0.47033,-0.147807,0.870024][0.154374,0.367454,0][1.00375,0.279103,-0.766078][-0.714665,-0.145899,0.684082][0.095321,0.422555,0][0.721707,0.371604,-1.041][-0.47033,-0.147807,0.870024][0.154374,0.367454,0][0.82107,0.39309,-1.17231][0.469177,0.104947,-0.876846][0.135643,0.340102,0][0.82107,0.39309,-1.17231][0.469177,0.104947,-0.876846][0.135643,0.340102,0][1.1396,0.297493,-0.859448][0.71438,0.130159,-0.687546][0.069074,0.402369,0][1.00375,0.279103,-0.766078][-0.714665,-0.145899,0.684082][0.095321,0.422555,0][1.08998,0.1756,-0.594685][-0.907635,-0.071085,0.413698][0.07509,0.461088,0][1.00375,0.279103,-0.766078][-0.714665,-0.145899,0.684082][0.095321,0.422555,0][1.1396,0.297493,-0.859448][0.71438,0.130159,-0.687546][0.069074,0.402369,0][1.1396,0.297493,-0.859448][0.71438,0.130159,-0.687546][0.069074,0.402369,0][1.24248,0.183284,-0.66452][0.905894,0.125879,-0.404365][0.045247,0.445824,0][1.08998,0.1756,-0.594685][-0.907635,-0.071085,0.413698][0.07509,0.461088,0][1.22106,0.180927,0.000554926][-0.990296,-0.0742876,0.117456][0.044292,0.583461,0][1.2052,0.175815,-0.136346][-0.991287,-0.0705151,0.111254][0.048001,0.556176,0][1.3721,0.183655,-0.154313][0.992796,0.0694635,-0.0976256][0.014713,0.55198,0][1.3721,0.183655,-0.154313][0.992796,0.0694635,-0.0976256][0.014713,0.55198,0][1.38763,0.183655,0.00366893][0.992796,0.0694635,-0.0976256][0.011021,0.583461,0][1.22106,0.180927,0.000554926][-0.990296,-0.0742876,0.117456][0.044292,0.583461,0][1.13432,-0.111768,0.395392][-0.983867,0.170388,-0.0545366][0.060176,0.684495,0][1.14637,-0.0701259,0.308069][-0.983867,0.170388,-0.0545366][0.057616,0.665196,0][1.31062,-0.101346,0.325527][0.977627,-0.183888,0.102134][0.024613,0.671319,0][1.31062,-0.101346,0.325527][0.977627,-0.183888,0.102134][0.024613,0.671319,0][1.29109,-0.141645,0.439903][0.977627,-0.183888,0.102134][0.028961,0.695459,0][1.13432,-0.111768,0.395392][-0.983867,0.170388,-0.0545366][0.060176,0.684495,0][0.972952,-0.0816338,0.745483][-0.894633,0.139744,-0.424385][0.097481,0.752095,0][1.13432,-0.111768,0.395392][-0.983867,0.170388,-0.0545366][0.060176,0.684495,0][1.29109,-0.141645,0.439903][0.977627,-0.183888,0.102134][0.028961,0.695459,0][1.29109,-0.141645,0.439903][0.977627,-0.183888,0.102134][0.028961,0.695459,0][1.10641,-0.110037,0.839758][0.891509,-0.158702,0.424295][0.071534,0.772677,0][0.972952,-0.0816338,0.745483][-0.894633,0.139744,-0.424385][0.097481,0.752095,0][1.20482,0.121936,0.135191][-0.992215,-0.010151,-0.124123][0.047224,0.612844,0][1.22106,0.180927,0.000554926][-0.990296,-0.0742876,0.117456][0.044292,0.583461,0][1.38763,0.183655,0.00366893][0.992796,0.0694635,-0.0976256][0.011021,0.583461,0][1.38763,0.183655,0.00366893][0.992796,0.0694635,-0.0976256][0.011021,0.583461,0][1.36975,0.101276,0.15565][0.985951,-0.0769758,0.148238][0.014186,0.618018,0][1.20482,0.121936,0.135191][-0.992215,-0.010151,-0.124123][0.047224,0.612844,0][-9.0246e-007,0.0336837,1.27381][0.159931,0.0900164,-0.983015][0.300246,0.846245,0][0.376979,0.0325001,1.21237][-0.47529,0.0795165,-0.876229][0.224498,0.837325,0][0.429522,0.00969016,1.36794][0.468787,-0.0936422,0.878334][0.215341,0.869138,0][0.429522,0.00969016,1.36794][0.468787,-0.0936422,0.878334][0.215341,0.869138,0][-9.0499e-007,0.0169239,1.43886][-0.160382,-0.101905,0.981781][0.301686,0.879341,0][-9.0246e-007,0.0336837,1.27381][0.159931,0.0900164,-0.983015][0.300246,0.846245,0][0.707569,-0.0215017,1.02415][-0.702782,0.135153,-0.698449][0.155366,0.80404,0][0.972952,-0.0816338,0.745483][-0.894633,0.139744,-0.424385][0.097481,0.752095,0][1.10641,-0.110037,0.839758][0.891509,-0.158702,0.424295][0.071534,0.772677,0][1.10641,-0.110037,0.839758][0.891509,-0.158702,0.424295][0.071534,0.772677,0][0.805414,-0.0499107,1.15554][0.699482,-0.191774,0.688439][0.136827,0.831585,0][0.707569,-0.0215017,1.02415][-0.702782,0.135153,-0.698449][0.155366,0.80404,0][0.376979,0.0325001,1.21237][-0.47529,0.0795165,-0.876229][0.224498,0.837325,0][0.707569,-0.0215017,1.02415][-0.702782,0.135153,-0.698449][0.155366,0.80404,0][0.805414,-0.0499107,1.15554][0.699482,-0.191774,0.688439][0.136827,0.831585,0][0.805414,-0.0499107,1.15554][0.699482,-0.191774,0.688439][0.136827,0.831585,0][0.429522,0.00969016,1.36794][0.468787,-0.0936422,0.878334][0.215341,0.869138,0][0.376979,0.0325001,1.21237][-0.47529,0.0795165,-0.876229][0.224498,0.837325,0][1.17859,0.103487,-0.40427][-0.890529,-0.0231665,0.454336][0.055295,0.500929,0][1.14817,0.11718,-0.463195][-0.890529,-0.0231665,0.454336][0.06179,0.489073,0][1.30164,0.117075,-0.531783][0.912789,0,-0.408432][0.031513,0.474596,0][1.30164,0.117075,-0.531783][0.912789,0,-0.408432][0.031513,0.474596,0][1.33872,0.103488,-0.448908][0.912789,0,-0.408432][0.023586,0.491124,0][1.17859,0.103487,-0.40427][-0.890529,-0.0231665,0.454336][0.055295,0.500929,0][1.2052,0.175815,-0.136346][-0.991287,-0.0705151,0.111254][0.048001,0.556176,0][1.18703,0.123256,-0.306033][-0.994455,0.00473283,0.105055][0.052943,0.520868,0][1.35393,0.12507,-0.325805][0.993408,0.0215688,-0.112582][0.019744,0.515966,0][1.35393,0.12507,-0.325805][0.993408,0.0215688,-0.112582][0.019744,0.515966,0][1.3721,0.183655,-0.154313][0.992796,0.0694635,-0.0976256][0.014713,0.55198,0][1.2052,0.175815,-0.136346][-0.991287,-0.0705151,0.111254][0.048001,0.556176,0][1.18703,0.123256,-0.306033][-0.994455,0.00473283,0.105055][0.052943,0.520868,0][1.17859,0.103487,-0.40427][-0.890529,-0.0231665,0.454336][0.055295,0.500929,0][1.33872,0.103488,-0.448908][0.912789,0,-0.408432][0.023586,0.491124,0][1.33872,0.103488,-0.448908][0.912789,0,-0.408432][0.023586,0.491124,0][1.35393,0.12507,-0.325805][0.993408,0.0215688,-0.112582][0.019744,0.515966,0][1.18703,0.123256,-0.306033][-0.994455,0.00473283,0.105055][0.052943,0.520868,0][1.14817,0.11718,-0.463195][-0.890529,-0.0231665,0.454336][0.06179,0.489073,0][1.08998,0.1756,-0.594685][-0.907635,-0.071085,0.413698][0.07509,0.461088,0][1.24248,0.183284,-0.66452][0.905894,0.125879,-0.404365][0.045247,0.445824,0][1.24248,0.183284,-0.66452][0.905894,0.125879,-0.404365][0.045247,0.445824,0][1.30164,0.117075,-0.531783][0.912789,0,-0.408432][0.031513,0.474596,0][1.14817,0.11718,-0.463195][-0.890529,-0.0231665,0.454336][0.06179,0.489073,0][1.14637,-0.0701259,0.308069][-0.983867,0.170388,-0.0545366][0.057616,0.665196,0][1.17648,0.042814,0.230325][-0.975907,0.199684,-0.0879306][0.052429,0.637649,0][1.34032,0.00968902,0.248039][0.976558,-0.187578,0.105588][0.019494,0.644117,0][1.34032,0.00968902,0.248039][0.976558,-0.187578,0.105588][0.019494,0.644117,0][1.31062,-0.101346,0.325527][0.977627,-0.183888,0.102134][0.024613,0.671319,0][1.14637,-0.0701259,0.308069][-0.983867,0.170388,-0.0545366][0.057616,0.665196,0][1.17648,0.042814,0.230325][-0.975907,0.199684,-0.0879306][0.052429,0.637649,0][1.20482,0.121936,0.135191][-0.992215,-0.010151,-0.124123][0.047224,0.612844,0][1.36975,0.101276,0.15565][0.985951,-0.0769758,0.148238][0.014186,0.618018,0][1.36975,0.101276,0.15565][0.985951,-0.0769758,0.148238][0.014186,0.618018,0][1.34032,0.00968902,0.248039][0.976558,-0.187578,0.105588][0.019494,0.644117,0][1.17648,0.042814,0.230325][-0.975907,0.199684,-0.0879306][0.052429,0.637649,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/Eye.mesh b/shareddata/charcustom/hats/fonts/Eye.mesh deleted file mode 100644 index eab0481..0000000 --- a/shareddata/charcustom/hats/fonts/Eye.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -500 -[0,0,-0.7][0,0,-1][0.5,0.5,0.9995][-0.0525812,0.144466,-0.682909][-0.0745604,0.204853,-0.975949][0.610224,0.5,0.987305][0.121147,0.09465,-0.682909][0.171787,0.134214,-0.975949][0.534061,0.604976,0.987305][-0.0525812,0.144466,-0.682909][-0.0745604,0.204853,-0.975949][0.610224,0.5,0.987305][-0.102595,0.281877,-0.632471][-0.146191,0.401656,-0.904047][0.715065,0.5,0.951314][0.0691199,0.241049,-0.653542][0.0990741,0.345512,-0.93317][0.645451,0.605825,0.966349][-0.0525812,0.144466,-0.682909][-0.0745604,0.204853,-0.975949][0.610224,0.5,0.987305][0.0691199,0.241049,-0.653542][0.0990741,0.345512,-0.93317][0.645451,0.605825,0.966349][0.121147,0.09465,-0.682909][0.171787,0.134214,-0.975949][0.534061,0.604976,0.987305][0.121147,0.09465,-0.682909][0.171787,0.134214,-0.975949][0.534061,0.604976,0.987305][0.0691199,0.241049,-0.653542][0.0990741,0.345512,-0.93317][0.645451,0.605825,0.966349][0.236378,0.184678,-0.632471][0.336822,0.263154,-0.904047][0.566459,0.704826,0.951314][-0.102595,0.281877,-0.632471][-0.146191,0.401656,-0.904047][0.715065,0.5,0.951314][-0.147599,0.405524,-0.551149][-0.210831,0.579254,-0.78741][0.809404,0.5,0.893284][0.0195046,0.38112,-0.586828][0.0292396,0.546076,-0.837225][0.751987,0.606747,0.918744][-0.102595,0.281877,-0.632471][-0.146191,0.401656,-0.904047][0.715065,0.5,0.951314][0.0195046,0.38112,-0.586828][0.0292396,0.546076,-0.837225][0.751987,0.606747,0.918744][0.0691199,0.241049,-0.653542][0.0990741,0.345512,-0.93317][0.645451,0.605825,0.966349][0.0691199,0.241049,-0.653542][0.0990741,0.345512,-0.93317][0.645451,0.605825,0.966349][0.0195046,0.38112,-0.586828][0.0292396,0.546076,-0.837225][0.751987,0.606747,0.918744][0.185422,0.333544,-0.586828][0.26458,0.478593,-0.837225][0.679248,0.707003,0.918744][0.0691199,0.241049,-0.653542][0.0990741,0.345512,-0.93317][0.645451,0.605825,0.966349][0.185422,0.333544,-0.586828][0.26458,0.478593,-0.837225][0.679248,0.707003,0.918744][0.236378,0.184678,-0.632471][0.336822,0.263154,-0.904047][0.566459,0.704826,0.951314][0.236378,0.184678,-0.632471][0.336822,0.263154,-0.904047][0.566459,0.704826,0.951314][0.185422,0.333544,-0.586828][0.26458,0.478593,-0.837225][0.679248,0.707003,0.918744][0.340066,0.265688,-0.551149][0.485753,0.379512,-0.78741][0.595611,0.794674,0.893284][-0.147599,0.405524,-0.551149][-0.210831,0.579254,-0.78741][0.809404,0.5,0.893284][-0.185395,0.509369,-0.442913][-0.265208,0.728653,-0.63145][0.888635,0.5,0.81605][-0.0255298,0.505443,-0.483607][-0.0342952,0.723899,-0.689053][0.846789,0.606892,0.845088][-0.147599,0.405524,-0.551149][-0.210831,0.579254,-0.78741][0.809404,0.5,0.893284][-0.0255298,0.505443,-0.483607][-0.0342952,0.723899,-0.689053][0.846789,0.606892,0.845088][0.0195046,0.38112,-0.586828][0.0292396,0.546076,-0.837225][0.751987,0.606747,0.918744][0.0195046,0.38112,-0.586828][0.0292396,0.546076,-0.837225][0.751987,0.606747,0.918744][-0.0255298,0.505443,-0.483607][-0.0342952,0.723899,-0.689053][0.846789,0.606892,0.845088][0.135754,0.473431,-0.497427][0.19455,0.678477,-0.708392][0.785673,0.707845,0.85495][0.0195046,0.38112,-0.586828][0.0292396,0.546076,-0.837225][0.751987,0.606747,0.918744][0.135754,0.473431,-0.497427][0.19455,0.678477,-0.708392][0.785673,0.707845,0.85495][0.185422,0.333544,-0.586828][0.26458,0.478593,-0.837225][0.679248,0.707003,0.918744][0.185422,0.333544,-0.586828][0.26458,0.478593,-0.837225][0.679248,0.707003,0.918744][0.135754,0.473431,-0.497427][0.19455,0.678477,-0.708392][0.785673,0.707845,0.85495][0.289495,0.415111,-0.483607][0.412692,0.595728,-0.689053][0.708682,0.797248,0.845088][0.185422,0.333544,-0.586828][0.26458,0.478593,-0.837225][0.679248,0.707003,0.918744][0.289495,0.415111,-0.483607][0.412692,0.595728,-0.689053][0.708682,0.797248,0.845088][0.340066,0.265688,-0.551149][0.485753,0.379512,-0.78741][0.595611,0.794674,0.893284][0.340066,0.265688,-0.551149][0.485753,0.379512,-0.78741][0.595611,0.794674,0.893284][0.289495,0.415111,-0.483607][0.412692,0.595728,-0.689053][0.708682,0.797248,0.845088][0.427148,0.333725,-0.442913][0.611036,0.477394,-0.63145][0.620095,0.870133,0.81605][-0.185395,0.509369,-0.442913][-0.265208,0.728653,-0.63145][0.888635,0.5,0.81605][-0.214138,0.588341,-0.31305][-0.305912,0.840487,-0.447214][0.948889,0.5,0.723383][-0.0642485,0.604019,-0.347898][-0.0906117,0.862891,-0.497201][0.922696,0.604976,0.74825][-0.185395,0.509369,-0.442913][-0.265208,0.728653,-0.63145][0.888635,0.5,0.81605][-0.0642485,0.604019,-0.347898][-0.0906117,0.862891,-0.497201][0.922696,0.604976,0.74825][-0.0255298,0.505443,-0.483607][-0.0342952,0.723899,-0.689053][0.846789,0.606892,0.845088][-0.0255298,0.505443,-0.483607][-0.0342952,0.723899,-0.689053][0.846789,0.606892,0.845088][-0.0642485,0.604019,-0.347898][-0.0906117,0.862891,-0.497201][0.922696,0.604976,0.74825][0.0887788,0.590202,-0.365759][0.127267,0.843064,-0.522538][0.875863,0.704826,0.760995][-0.0255298,0.505443,-0.483607][-0.0342952,0.723899,-0.689053][0.846789,0.606892,0.845088][0.0887788,0.590202,-0.365759][0.127267,0.843064,-0.522538][0.875863,0.704826,0.760995][0.135754,0.473431,-0.497427][0.19455,0.678477,-0.708392][0.785673,0.707845,0.85495][0.135754,0.473431,-0.497427][0.19455,0.678477,-0.708392][0.785673,0.707845,0.85495][0.0887788,0.590202,-0.365759][0.127267,0.843064,-0.522538][0.875863,0.704826,0.760995][0.237471,0.547566,-0.365759][0.338827,0.7824,-0.522538][0.810676,0.794674,0.760995][0.135754,0.473431,-0.497427][0.19455,0.678477,-0.708392][0.785673,0.707845,0.85495][0.237471,0.547566,-0.365759][0.338827,0.7824,-0.522538][0.810676,0.794674,0.760995][0.289495,0.415111,-0.483607][0.412692,0.595728,-0.689053][0.708682,0.797248,0.845088][0.289495,0.415111,-0.483607][0.412692,0.595728,-0.689053][0.708682,0.797248,0.845088][0.237471,0.547566,-0.365759][0.338827,0.7824,-0.522538][0.810676,0.794674,0.760995][0.374567,0.478191,-0.347898][0.534106,0.683756,-0.497201][0.730319,0.870133,0.74825][0.289495,0.415111,-0.483607][0.412692,0.595728,-0.689053][0.708682,0.797248,0.845088][0.374567,0.478191,-0.347898][0.534106,0.683756,-0.497201][0.730319,0.870133,0.74825][0.427148,0.333725,-0.442913][0.611036,0.477394,-0.63145][0.620095,0.870133,0.81605][0.427148,0.333725,-0.442913][0.611036,0.477394,-0.63145][0.620095,0.870133,0.81605][0.374567,0.478191,-0.347898][0.534106,0.683756,-0.497201][0.730319,0.870133,0.74825][0.493373,0.385465,-0.31305][0.704818,0.550664,-0.447214][0.638714,0.927518,0.723383][0,0,-0.7][0,0,-1][0.5,0.5,0.9995][0.121147,0.09465,-0.682909][0.171787,0.134214,-0.975949][0.534061,0.604976,0.987305][0.127454,-0.0859689,-0.682909][0.180731,-0.121904,-0.975949][0.410827,0.564879,0.987305][0.121147,0.09465,-0.682909][0.171787,0.134214,-0.975949][0.534061,0.604976,0.987305][0.236378,0.184678,-0.632471][0.336822,0.263154,-0.904047][0.566459,0.704826,0.951314][0.250611,0.00875143,-0.653542][0.359217,0.012544,-0.93317][0.444442,0.671229,0.966349][0.121147,0.09465,-0.682909][0.171787,0.134214,-0.975949][0.534061,0.604976,0.987305][0.250611,0.00875143,-0.653542][0.359217,0.012544,-0.93317][0.444442,0.671229,0.966349][0.127454,-0.0859689,-0.682909][0.180731,-0.121904,-0.975949][0.410827,0.564879,0.987305][0.127454,-0.0859689,-0.682909][0.180731,-0.121904,-0.975949][0.410827,0.564879,0.987305][0.250611,0.00875143,-0.653542][0.359217,0.012544,-0.93317][0.444442,0.671229,0.966349][0.248684,-0.16774,-0.632471][0.354358,-0.239018,-0.904047][0.326009,0.62659,0.951314][0.236378,0.184678,-0.632471][0.336822,0.263154,-0.904047][0.566459,0.704826,0.951314][0.340066,0.265688,-0.551149][0.485753,0.379512,-0.78741][0.595611,0.794674,0.893284][0.368494,0.0992225,-0.586828][0.528385,0.140938,-0.837225][0.476488,0.772977,0.918744][0.236378,0.184678,-0.632471][0.336822,0.263154,-0.904047][0.566459,0.704826,0.951314][0.368494,0.0992225,-0.586828][0.528385,0.140938,-0.837225][0.476488,0.772977,0.918744][0.250611,0.00875143,-0.653542][0.359217,0.012544,-0.93317][0.444442,0.671229,0.966349][0.250611,0.00875143,-0.653542][0.359217,0.012544,-0.93317][0.444442,0.671229,0.966349][0.368494,0.0992225,-0.586828][0.528385,0.140938,-0.837225][0.476488,0.772977,0.918744][0.374518,-0.0732762,-0.586828][0.536929,-0.103737,-0.837225][0.358795,0.734682,0.918744][0.250611,0.00875143,-0.653542][0.359217,0.012544,-0.93317][0.444442,0.671229,0.966349][0.374518,-0.0732762,-0.586828][0.536929,-0.103737,-0.837225][0.358795,0.734682,0.918744][0.248684,-0.16774,-0.632471][0.354358,-0.239018,-0.904047][0.326009,0.62659,0.951314][0.248684,-0.16774,-0.632471][0.354358,-0.239018,-0.904047][0.326009,0.62659,0.951314][0.374518,-0.0732762,-0.586828][0.536929,-0.103737,-0.837225][0.358795,0.734682,0.918744][0.357771,-0.24132,-0.551148][0.511043,-0.344703,-0.78741][0.249687,0.682119,0.893284][0.340066,0.265688,-0.551149][0.485753,0.379512,-0.78741][0.595611,0.794674,0.893284][0.427148,0.333725,-0.442913][0.611036,0.477394,-0.63145][0.620095,0.870133,0.81605][0.472816,0.180471,-0.483607][0.677871,0.256314,-0.689053][0.505646,0.863311,0.845088][0.340066,0.265688,-0.551149][0.485753,0.379512,-0.78741][0.595611,0.794674,0.893284][0.472816,0.180471,-0.483607][0.677871,0.256314,-0.689053][0.505646,0.863311,0.845088][0.368494,0.0992225,-0.586828][0.528385,0.140938,-0.837225][0.476488,0.772977,0.918744][0.368494,0.0992225,-0.586828][0.528385,0.140938,-0.837225][0.476488,0.772977,0.918744][0.472816,0.180471,-0.483607][0.677871,0.256314,-0.689053][0.505646,0.863311,0.845088][0.49221,0.0171883,-0.497427][0.705389,0.0246326,-0.708392][0.390883,0.8363,0.85495][0.368494,0.0992225,-0.586828][0.528385,0.140938,-0.837225][0.476488,0.772977,0.918744][0.49221,0.0171883,-0.497427][0.705389,0.0246326,-0.708392][0.390883,0.8363,0.85495][0.374518,-0.0732762,-0.586828][0.536929,-0.103737,-0.837225][0.358795,0.734682,0.918744][0.374518,-0.0732762,-0.586828][0.536929,-0.103737,-0.837225][0.358795,0.734682,0.918744][0.49221,0.0171883,-0.497427][0.705389,0.0246326,-0.708392][0.390883,0.8363,0.85495][0.484253,-0.147049,-0.483606][0.6941,-0.208404,-0.689053][0.282183,0.790601,0.845088][0.374518,-0.0732762,-0.586828][0.536929,-0.103737,-0.837225][0.358795,0.734682,0.918744][0.484253,-0.147049,-0.483606][0.6941,-0.208404,-0.689053][0.282183,0.790601,0.845088][0.357771,-0.24132,-0.551148][0.511043,-0.344703,-0.78741][0.249687,0.682119,0.893284][0.357771,-0.24132,-0.551148][0.511043,-0.344703,-0.78741][0.249687,0.682119,0.893284][0.484253,-0.147049,-0.483606][0.6941,-0.208404,-0.689053][0.282183,0.790601,0.845088][0.449387,-0.303116,-0.442913][0.642849,-0.433607,-0.63145][0.185587,0.728755,0.81605][0.427148,0.333725,-0.442913][0.611036,0.477394,-0.63145][0.620095,0.870133,0.81605][0.493373,0.385465,-0.31305][0.704818,0.550664,-0.447214][0.638714,0.927518,0.723383][0.554602,0.247756,-0.347898][0.792657,0.352825,-0.497201][0.530922,0.935012,0.74825][0.427148,0.333725,-0.442913][0.611036,0.477394,-0.63145][0.620095,0.870133,0.81605][0.554602,0.247756,-0.347898][0.792657,0.352825,-0.497201][0.530922,0.935012,0.74825][0.472816,0.180471,-0.483607][0.677871,0.256314,-0.689053][0.505646,0.863311,0.845088][0.472816,0.180471,-0.483607][0.677871,0.256314,-0.689053][0.505646,0.863311,0.845088][0.554602,0.247756,-0.347898][0.792657,0.352825,-0.497201][0.530922,0.935012,0.74825][0.58875,0.0979488,-0.365759][0.841129,0.139483,-0.522538][0.42162,0.921264,0.760995][0.472816,0.180471,-0.483607][0.677871,0.256314,-0.689053][0.505646,0.863311,0.845088][0.58875,0.0979488,-0.365759][0.841129,0.139483,-0.522538][0.42162,0.921264,0.760995][0.49221,0.0171883,-0.497427][0.705389,0.0246326,-0.708392][0.390883,0.8363,0.85495][0.49221,0.0171883,-0.497427][0.705389,0.0246326,-0.708392][0.390883,0.8363,0.85495][0.58875,0.0979488,-0.365759][0.841129,0.139483,-0.522538][0.42162,0.921264,0.760995][0.594148,-0.0566413,-0.365759][0.84881,-0.0804689,-0.522538][0.316145,0.886945,0.760995][0.49221,0.0171883,-0.497427][0.705389,0.0246326,-0.708392][0.390883,0.8363,0.85495][0.594148,-0.0566413,-0.365759][0.84881,-0.0804689,-0.522538][0.316145,0.886945,0.760995][0.484253,-0.147049,-0.483606][0.6941,-0.208404,-0.689053][0.282183,0.790601,0.845088][0.484253,-0.147049,-0.483606][0.6941,-0.208404,-0.689053][0.282183,0.790601,0.845088][0.594148,-0.0566413,-0.365759][0.84881,-0.0804689,-0.522538][0.316145,0.886945,0.760995][0.570534,-0.208466,-0.347898][0.815338,-0.296673,-0.497201][0.219648,0.833731,0.74825][0.484253,-0.147049,-0.483606][0.6941,-0.208404,-0.689053][0.282183,0.790601,0.845088][0.570534,-0.208466,-0.347898][0.815338,-0.296673,-0.497201][0.219648,0.833731,0.74825][0.449387,-0.303116,-0.442913][0.642849,-0.433607,-0.63145][0.185587,0.728755,0.81605][0.449387,-0.303116,-0.442913][0.642849,-0.433607,-0.63145][0.185587,0.728755,0.81605][0.570534,-0.208466,-0.347898][0.815338,-0.296673,-0.497201][0.219648,0.833731,0.74825][0.51906,-0.35011,-0.313049][0.741514,-0.500158,-0.447213][0.136841,0.764221,0.723383][0,0,-0.7][0,0,-1][0.5,0.5,0.9995][0.127454,-0.0859689,-0.682909][0.180731,-0.121904,-0.975949][0.410827,0.564879,0.987305][-0.0423757,-0.147782,-0.682909][-0.060089,-0.209556,-0.975949][0.410827,0.435121,0.987305][0.127454,-0.0859689,-0.682909][0.180731,-0.121904,-0.975949][0.410827,0.564879,0.987305][0.248684,-0.16774,-0.632471][0.354358,-0.239018,-0.904047][0.326009,0.62659,0.951314][0.0857663,-0.235641,-0.653542][0.122935,-0.33776,-0.93317][0.320212,0.5,0.966349][0.127454,-0.0859689,-0.682909][0.180731,-0.121904,-0.975949][0.410827,0.564879,0.987305][0.0857663,-0.235641,-0.653542][0.122935,-0.33776,-0.93317][0.320212,0.5,0.966349][-0.0423757,-0.147782,-0.682909][-0.060089,-0.209556,-0.975949][0.410827,0.435121,0.987305][-0.0423757,-0.147782,-0.682909][-0.060089,-0.209556,-0.975949][0.410827,0.435121,0.987305][0.0857663,-0.235641,-0.653542][0.122935,-0.33776,-0.93317][0.320212,0.5,0.966349][-0.0826822,-0.288347,-0.632471][-0.117816,-0.410875,-0.904047][0.326009,0.37341,0.951314][0.248684,-0.16774,-0.632471][0.354358,-0.239018,-0.904047][0.326009,0.62659,0.951314][0.357771,-0.24132,-0.551148][0.511043,-0.344703,-0.78741][0.249687,0.682119,0.893284][0.208237,-0.319797,-0.586828][0.29732,-0.458971,-0.837225][0.233482,0.561962,0.918744][0.248684,-0.16774,-0.632471][0.354358,-0.239018,-0.904047][0.326009,0.62659,0.951314][0.208237,-0.319797,-0.586828][0.29732,-0.458971,-0.837225][0.233482,0.561962,0.918744][0.0857663,-0.235641,-0.653542][0.122935,-0.33776,-0.93317][0.320212,0.5,0.966349][0.0857663,-0.235641,-0.653542][0.122935,-0.33776,-0.93317][0.320212,0.5,0.966349][0.208237,-0.319797,-0.586828][0.29732,-0.458971,-0.837225][0.233482,0.561962,0.918744][0.0460427,-0.378831,-0.586828][0.0672607,-0.542706,-0.837225][0.233482,0.438038,0.918744][0.0857663,-0.235641,-0.653542][0.122935,-0.33776,-0.93317][0.320212,0.5,0.966349][0.0460427,-0.378831,-0.586828][0.0672607,-0.542706,-0.837225][0.233482,0.438038,0.918744][-0.0826822,-0.288347,-0.632471][-0.117816,-0.410875,-0.904047][0.326009,0.37341,0.951314][-0.0826822,-0.288347,-0.632471][-0.117816,-0.410875,-0.904047][0.326009,0.37341,0.951314][0.0460427,-0.378831,-0.586828][0.0672607,-0.542706,-0.837225][0.233482,0.438038,0.918744][-0.118951,-0.414832,-0.551148][-0.169911,-0.59255,-0.78741][0.249686,0.317881,0.893284][0.357771,-0.24132,-0.551148][0.511043,-0.344703,-0.78741][0.249687,0.682119,0.893284][0.449387,-0.303116,-0.442913][0.642849,-0.433607,-0.63145][0.185587,0.728755,0.81605][0.317746,-0.393906,-0.483606][0.453243,-0.565489,-0.689053][0.1567,0.617646,0.845088][0.357771,-0.24132,-0.551148][0.511043,-0.344703,-0.78741][0.249687,0.682119,0.893284][0.317746,-0.393906,-0.483606][0.453243,-0.565489,-0.689053][0.1567,0.617646,0.845088][0.208237,-0.319797,-0.586828][0.29732,-0.458971,-0.837225][0.233482,0.561962,0.918744][0.208237,-0.319797,-0.586828][0.29732,-0.458971,-0.837225][0.233482,0.561962,0.918744][0.317746,-0.393906,-0.483606][0.453243,-0.565489,-0.689053][0.1567,0.617646,0.845088][0.168448,-0.462808,-0.497427][0.241404,-0.663253,-0.708392][0.146889,0.5,0.85495][0.208237,-0.319797,-0.586828][0.29732,-0.458971,-0.837225][0.233482,0.561962,0.918744][0.168448,-0.462808,-0.497427][0.241404,-0.663253,-0.708392][0.146889,0.5,0.85495][0.0460427,-0.378831,-0.586828][0.0672607,-0.542706,-0.837225][0.233482,0.438038,0.918744][0.0460427,-0.378831,-0.586828][0.0672607,-0.542706,-0.837225][0.233482,0.438038,0.918744][0.168448,-0.462808,-0.497427][0.241404,-0.663253,-0.708392][0.146889,0.5,0.85495][0.0097903,-0.505993,-0.483606][0.0162847,-0.724528,-0.689053][0.1567,0.382354,0.845088][0.0460427,-0.378831,-0.586828][0.0672607,-0.542706,-0.837225][0.233482,0.438038,0.918744][0.0097903,-0.505993,-0.483606][0.0162847,-0.724528,-0.689053][0.1567,0.382354,0.845088][-0.118951,-0.414832,-0.551148][-0.169911,-0.59255,-0.78741][0.249686,0.317881,0.893284][-0.118951,-0.414832,-0.551148][-0.169911,-0.59255,-0.78741][0.249686,0.317881,0.893284][0.0097903,-0.505993,-0.483606][0.0162847,-0.724528,-0.689053][0.1567,0.382354,0.845088][-0.149412,-0.521061,-0.442913][-0.213734,-0.745378,-0.63145][0.185587,0.271245,0.81605][0.449387,-0.303116,-0.442913][0.642849,-0.433607,-0.63145][0.185587,0.728755,0.81605][0.51906,-0.35011,-0.313049][0.741514,-0.500158,-0.447213][0.136841,0.764221,0.723383][0.407012,-0.450897,-0.347898][0.580501,-0.644833,-0.497201][0.0964145,0.663876,0.74825][0.449387,-0.303116,-0.442913][0.642849,-0.433607,-0.63145][0.185587,0.728755,0.81605][0.407012,-0.450897,-0.347898][0.580501,-0.644833,-0.497201][0.0964145,0.663876,0.74825][0.317746,-0.393906,-0.483606][0.453243,-0.565489,-0.689053][0.1567,0.617646,0.845088][0.317746,-0.393906,-0.483606][0.453243,-0.565489,-0.689053][0.1567,0.617646,0.845088][0.407012,-0.450897,-0.347898][0.580501,-0.644833,-0.497201][0.0964145,0.663876,0.74825][0.275089,-0.529667,-0.365758][0.392579,-0.756859,-0.522538][0.0756952,0.555529,0.760995][0.317746,-0.393906,-0.483606][0.453243,-0.565489,-0.689053][0.1567,0.617646,0.845088][0.275089,-0.529667,-0.365758][0.392579,-0.756859,-0.522538][0.0756952,0.555529,0.760995][0.168448,-0.462808,-0.497427][0.241404,-0.663253,-0.708392][0.146889,0.5,0.85495][0.168448,-0.462808,-0.497427][0.241404,-0.663253,-0.708392][0.146889,0.5,0.85495][0.275089,-0.529667,-0.365758][0.392579,-0.756859,-0.522538][0.0756952,0.555529,0.760995][0.129733,-0.582572,-0.365758][0.185766,-0.832133,-0.522538][0.0756952,0.444471,0.760995][0.168448,-0.462808,-0.497427][0.241404,-0.663253,-0.708392][0.146889,0.5,0.85495][0.129733,-0.582572,-0.365758][0.185766,-0.832133,-0.522538][0.0756952,0.444471,0.760995][0.0097903,-0.505993,-0.483606][0.0162847,-0.724528,-0.689053][0.1567,0.382354,0.845088][0.0097903,-0.505993,-0.483606][0.0162847,-0.724528,-0.689053][0.1567,0.382354,0.845088][0.129733,-0.582572,-0.365758][0.185766,-0.832133,-0.522538][0.0756952,0.444471,0.760995][-0.0219578,-0.607029,-0.347898][-0.030199,-0.86711,-0.497201][0.0964144,0.336124,0.74825][0.0097903,-0.505993,-0.483606][0.0162847,-0.724528,-0.689053][0.1567,0.382354,0.845088][-0.0219578,-0.607029,-0.347898][-0.030199,-0.86711,-0.497201][0.0964144,0.336124,0.74825][-0.149412,-0.521061,-0.442913][-0.213734,-0.745378,-0.63145][0.185587,0.271245,0.81605][-0.149412,-0.521061,-0.442913][-0.213734,-0.745378,-0.63145][0.185587,0.271245,0.81605][-0.0219578,-0.607029,-0.347898][-0.030199,-0.86711,-0.497201][0.0964144,0.336124,0.74825][-0.172576,-0.601845,-0.313049][-0.246537,-0.859779,-0.447214][0.136841,0.235779,0.723383][0,0,-0.7][0,0,-1][0.5,0.5,0.9995][-0.0423757,-0.147782,-0.682909][-0.060089,-0.209556,-0.975949][0.410827,0.435121,0.987305][-0.153644,-0.00536543,-0.682909][-0.217867,-0.00760819,-0.975949][0.534061,0.395024,0.987305][-0.0423757,-0.147782,-0.682909][-0.060089,-0.209556,-0.975949][0.410827,0.435121,0.987305][-0.0826822,-0.288347,-0.632471][-0.117816,-0.410875,-0.904047][0.326009,0.37341,0.951314][-0.197605,-0.154386,-0.653542][-0.28324,-0.221291,-0.93317][0.444442,0.328771,0.966349][-0.0423757,-0.147782,-0.682909][-0.060089,-0.209556,-0.975949][0.410827,0.435121,0.987305][-0.197605,-0.154386,-0.653542][-0.28324,-0.221291,-0.93317][0.444442,0.328771,0.966349][-0.153644,-0.00536543,-0.682909][-0.217867,-0.00760819,-0.975949][0.534061,0.395024,0.987305][-0.153644,-0.00536543,-0.682909][-0.217867,-0.00760819,-0.975949][0.534061,0.395024,0.987305][-0.197605,-0.154386,-0.653542][-0.28324,-0.221291,-0.93317][0.444442,0.328771,0.966349][-0.299785,-0.0104688,-0.632471][-0.427173,-0.0149172,-0.904047][0.566459,0.295174,0.951314][-0.0826822,-0.288347,-0.632471][-0.117816,-0.410875,-0.904047][0.326009,0.37341,0.951314][-0.118951,-0.414832,-0.551148][-0.169911,-0.59255,-0.78741][0.249686,0.317881,0.893284][-0.239796,-0.296868,-0.586828][-0.344631,-0.424598,-0.837225][0.358795,0.265318,0.918744][-0.0826822,-0.288347,-0.632471][-0.117816,-0.410875,-0.904047][0.326009,0.37341,0.951314][-0.239796,-0.296868,-0.586828][-0.344631,-0.424598,-0.837225][0.358795,0.265318,0.918744][-0.197605,-0.154386,-0.653542][-0.28324,-0.221291,-0.93317][0.444442,0.328771,0.966349][-0.197605,-0.154386,-0.653542][-0.28324,-0.221291,-0.93317][0.444442,0.328771,0.966349][-0.239796,-0.296868,-0.586828][-0.344631,-0.424598,-0.837225][0.358795,0.265318,0.918744][-0.346062,-0.160855,-0.586828][-0.495359,-0.231674,-0.837225][0.476488,0.227023,0.918744][-0.197605,-0.154386,-0.653542][-0.28324,-0.221291,-0.93317][0.444442,0.328771,0.966349][-0.346062,-0.160855,-0.586828][-0.495359,-0.231674,-0.837225][0.476488,0.227023,0.918744][-0.299785,-0.0104688,-0.632471][-0.427173,-0.0149172,-0.904047][0.566459,0.295174,0.951314][-0.299785,-0.0104688,-0.632471][-0.427173,-0.0149172,-0.904047][0.566459,0.295174,0.951314][-0.346062,-0.160855,-0.586828][-0.495359,-0.231674,-0.837225][0.476488,0.227023,0.918744][-0.431287,-0.0150609,-0.551149][-0.616054,-0.021513,-0.78741][0.595611,0.205326,0.893284][-0.118951,-0.414832,-0.551148][-0.169911,-0.59255,-0.78741][0.249686,0.317881,0.893284][-0.149412,-0.521061,-0.442913][-0.213734,-0.745378,-0.63145][0.185587,0.271245,0.81605][-0.276438,-0.423918,-0.483606][-0.397752,-0.605805,-0.689053][0.282183,0.209399,0.845088][-0.118951,-0.414832,-0.551148][-0.169911,-0.59255,-0.78741][0.249686,0.317881,0.893284][-0.276438,-0.423918,-0.483606][-0.397752,-0.605805,-0.689053][0.282183,0.209399,0.845088][-0.239796,-0.296868,-0.586828][-0.344631,-0.424598,-0.837225][0.358795,0.265318,0.918744][-0.239796,-0.296868,-0.586828][-0.344631,-0.424598,-0.837225][0.358795,0.265318,0.918744][-0.276438,-0.423918,-0.483606][-0.397752,-0.605805,-0.689053][0.282183,0.209399,0.845088][-0.388103,-0.30322,-0.497427][-0.556193,-0.434546,-0.708392][0.390883,0.1637,0.85495][-0.239796,-0.296868,-0.586828][-0.344631,-0.424598,-0.837225][0.358795,0.265318,0.918744][-0.388103,-0.30322,-0.497427][-0.556193,-0.434546,-0.708392][0.390883,0.1637,0.85495][-0.346062,-0.160855,-0.586828][-0.495359,-0.231674,-0.837225][0.476488,0.227023,0.918744][-0.346062,-0.160855,-0.586828][-0.495359,-0.231674,-0.837225][0.476488,0.227023,0.918744][-0.388103,-0.30322,-0.497427][-0.556193,-0.434546,-0.708392][0.390883,0.1637,0.85495][-0.478202,-0.165672,-0.483607][-0.684035,-0.239379,-0.689053][0.505646,0.136689,0.845088][-0.346062,-0.160855,-0.586828][-0.495359,-0.231674,-0.837225][0.476488,0.227023,0.918744][-0.478202,-0.165672,-0.483607][-0.684035,-0.239379,-0.689053][0.505646,0.136689,0.845088][-0.431287,-0.0150609,-0.551149][-0.616054,-0.021513,-0.78741][0.595611,0.205326,0.893284][-0.431287,-0.0150609,-0.551149][-0.616054,-0.021513,-0.78741][0.595611,0.205326,0.893284][-0.478202,-0.165672,-0.483607][-0.684035,-0.239379,-0.689053][0.505646,0.136689,0.845088][-0.541729,-0.0189176,-0.442913][-0.774944,-0.0270617,-0.63145][0.620095,0.129867,0.81605][-0.149412,-0.521061,-0.442913][-0.213734,-0.745378,-0.63145][0.185587,0.271245,0.81605][-0.172576,-0.601845,-0.313049][-0.246537,-0.859779,-0.447214][0.136841,0.235779,0.723383][-0.303055,-0.526426,-0.347898][-0.433888,-0.751354,-0.497201][0.219648,0.166269,0.74825][-0.149412,-0.521061,-0.442913][-0.213734,-0.745378,-0.63145][0.185587,0.271245,0.81605][-0.303055,-0.526426,-0.347898][-0.433888,-0.751354,-0.497201][0.219648,0.166269,0.74825][-0.276438,-0.423918,-0.483606][-0.397752,-0.605805,-0.689053][0.282183,0.209399,0.845088][-0.276438,-0.423918,-0.483606][-0.397752,-0.605805,-0.689053][0.282183,0.209399,0.845088][-0.303055,-0.526426,-0.347898][-0.433888,-0.751354,-0.497201][0.219648,0.166269,0.74825][-0.418736,-0.425301,-0.365759][-0.598502,-0.607247,-0.522538][0.316145,0.113055,0.760995][-0.276438,-0.423918,-0.483606][-0.397752,-0.605805,-0.689053][0.282183,0.209399,0.845088][-0.418736,-0.425301,-0.365759][-0.598502,-0.607247,-0.522538][0.316145,0.113055,0.760995][-0.388103,-0.30322,-0.497427][-0.556193,-0.434546,-0.708392][0.390883,0.1637,0.85495][-0.388103,-0.30322,-0.497427][-0.556193,-0.434546,-0.708392][0.390883,0.1637,0.85495][-0.418736,-0.425301,-0.365759][-0.598502,-0.607247,-0.522538][0.316145,0.113055,0.760995][-0.513969,-0.303408,-0.365759][-0.734,-0.433817,-0.522538][0.42162,0.0787361,0.760995][-0.388103,-0.30322,-0.497427][-0.556193,-0.434546,-0.708392][0.390883,0.1637,0.85495][-0.513969,-0.303408,-0.365759][-0.734,-0.433817,-0.522538][0.42162,0.0787361,0.760995][-0.478202,-0.165672,-0.483607][-0.684035,-0.239379,-0.689053][0.505646,0.136689,0.845088][-0.478202,-0.165672,-0.483607][-0.684035,-0.239379,-0.689053][0.505646,0.136689,0.845088][-0.513969,-0.303408,-0.365759][-0.734,-0.433817,-0.522538][0.42162,0.0787361,0.760995][-0.584105,-0.166699,-0.347898][-0.834002,-0.239231,-0.497201][0.530922,0.064988,0.74825][-0.478202,-0.165672,-0.483607][-0.684035,-0.239379,-0.689053][0.505646,0.136689,0.845088][-0.584105,-0.166699,-0.347898][-0.834002,-0.239231,-0.497201][0.530922,0.064988,0.74825][-0.541729,-0.0189176,-0.442913][-0.774944,-0.0270617,-0.63145][0.620095,0.129867,0.81605][-0.541729,-0.0189176,-0.442913][-0.774944,-0.0270617,-0.63145][0.620095,0.129867,0.81605][-0.584105,-0.166699,-0.347898][-0.834002,-0.239231,-0.497201][0.530922,0.064988,0.74825][-0.625718,-0.0218505,-0.31305][-0.893882,-0.0312152,-0.447214][0.638714,0.0724819,0.723383][0,0,-0.7][0,0,-1][0.5,0.5,0.9995][-0.153644,-0.00536543,-0.682909][-0.217867,-0.00760819,-0.975949][0.534061,0.395024,0.987305][-0.0525812,0.144466,-0.682909][-0.0745604,0.204853,-0.975949][0.610224,0.5,0.987305][-0.153644,-0.00536543,-0.682909][-0.217867,-0.00760819,-0.975949][0.534061,0.395024,0.987305][-0.299785,-0.0104688,-0.632471][-0.427173,-0.0149172,-0.904047][0.566459,0.295174,0.951314][-0.207893,0.140225,-0.653542][-0.297986,0.200994,-0.93317][0.645451,0.394175,0.966349][-0.153644,-0.00536543,-0.682909][-0.217867,-0.00760819,-0.975949][0.534061,0.395024,0.987305][-0.207893,0.140225,-0.653542][-0.297986,0.200994,-0.93317][0.645451,0.394175,0.966349][-0.0525812,0.144466,-0.682909][-0.0745604,0.204853,-0.975949][0.610224,0.5,0.987305][-0.0525812,0.144466,-0.682909][-0.0745604,0.204853,-0.975949][0.610224,0.5,0.987305][-0.207893,0.140225,-0.653542][-0.297986,0.200994,-0.93317][0.645451,0.394175,0.966349][-0.102595,0.281877,-0.632471][-0.146191,0.401656,-0.904047][0.715065,0.5,0.951314][-0.299785,-0.0104688,-0.632471][-0.427173,-0.0149172,-0.904047][0.566459,0.295174,0.951314][-0.431287,-0.0150609,-0.551149][-0.616054,-0.021513,-0.78741][0.595611,0.205326,0.893284][-0.35644,0.136323,-0.586828][-0.510314,0.196555,-0.837225][0.679248,0.292996,0.918744][-0.299785,-0.0104688,-0.632471][-0.427173,-0.0149172,-0.904047][0.566459,0.295174,0.951314][-0.35644,0.136323,-0.586828][-0.510314,0.196555,-0.837225][0.679248,0.292996,0.918744][-0.207893,0.140225,-0.653542][-0.297986,0.200994,-0.93317][0.645451,0.394175,0.966349][-0.207893,0.140225,-0.653542][-0.297986,0.200994,-0.93317][0.645451,0.394175,0.966349][-0.35644,0.136323,-0.586828][-0.510314,0.196555,-0.837225][0.679248,0.292996,0.918744][-0.259921,0.279418,-0.586828][-0.37341,0.399523,-0.837225][0.751987,0.393253,0.918744][-0.207893,0.140225,-0.653542][-0.297986,0.200994,-0.93317][0.645451,0.394175,0.966349][-0.259921,0.279418,-0.586828][-0.37341,0.399523,-0.837225][0.751987,0.393253,0.918744][-0.102595,0.281877,-0.632471][-0.146191,0.401656,-0.904047][0.715065,0.5,0.951314][-0.102595,0.281877,-0.632471][-0.146191,0.401656,-0.904047][0.715065,0.5,0.951314][-0.259921,0.279418,-0.586828][-0.37341,0.399523,-0.837225][0.751987,0.393253,0.918744][-0.147599,0.405524,-0.551149][-0.210831,0.579254,-0.78741][0.809404,0.5,0.893284][-0.431287,-0.0150609,-0.551149][-0.616054,-0.021513,-0.78741][0.595611,0.205326,0.893284][-0.541729,-0.0189176,-0.442913][-0.774944,-0.0270617,-0.63145][0.620095,0.129867,0.81605][-0.488594,0.13191,-0.483607][-0.699067,0.19108,-0.689053][0.708682,0.202752,0.845088][-0.431287,-0.0150609,-0.551149][-0.616054,-0.021513,-0.78741][0.595611,0.205326,0.893284][-0.488594,0.13191,-0.483607][-0.699067,0.19108,-0.689053][0.708682,0.202752,0.845088][-0.35644,0.136323,-0.586828][-0.510314,0.196555,-0.837225][0.679248,0.292996,0.918744][-0.35644,0.136323,-0.586828][-0.510314,0.196555,-0.837225][0.679248,0.292996,0.918744][-0.488594,0.13191,-0.483607][-0.699067,0.19108,-0.689053][0.708682,0.202752,0.845088][-0.408309,0.275408,-0.497427][-0.58515,0.394689,-0.708392][0.785673,0.292155,0.85495][-0.35644,0.136323,-0.586828][-0.510314,0.196555,-0.837225][0.679248,0.292996,0.918744][-0.408309,0.275408,-0.497427][-0.58515,0.394689,-0.708392][0.785673,0.292155,0.85495][-0.259921,0.279418,-0.586828][-0.37341,0.399523,-0.837225][0.751987,0.393253,0.918744][-0.259921,0.279418,-0.586828][-0.37341,0.399523,-0.837225][0.751987,0.393253,0.918744][-0.408309,0.275408,-0.497427][-0.58515,0.394689,-0.708392][0.785673,0.292155,0.85495][-0.305336,0.403602,-0.483607][-0.439042,0.576583,-0.689053][0.846789,0.393108,0.845088][-0.259921,0.279418,-0.586828][-0.37341,0.399523,-0.837225][0.751987,0.393253,0.918744][-0.305336,0.403602,-0.483607][-0.439042,0.576583,-0.689053][0.846789,0.393108,0.845088][-0.147599,0.405524,-0.551149][-0.210831,0.579254,-0.78741][0.809404,0.5,0.893284][-0.147599,0.405524,-0.551149][-0.210831,0.579254,-0.78741][0.809404,0.5,0.893284][-0.305336,0.403602,-0.483607][-0.439042,0.576583,-0.689053][0.846789,0.393108,0.845088][-0.185395,0.509369,-0.442913][-0.265208,0.728653,-0.63145][0.888635,0.5,0.81605][-0.541729,-0.0189176,-0.442913][-0.774944,-0.0270617,-0.63145][0.620095,0.129867,0.81605][-0.625718,-0.0218505,-0.31305][-0.893882,-0.0312152,-0.447214][0.638714,0.0724819,0.723383][-0.59431,0.125548,-0.347898][-0.848659,0.180471,-0.497201][0.730319,0.129867,0.74825][-0.541729,-0.0189176,-0.442913][-0.774944,-0.0270617,-0.63145][0.620095,0.129867,0.81605][-0.59431,0.125548,-0.347898][-0.848659,0.180471,-0.497201][0.730319,0.129867,0.74825][-0.488594,0.13191,-0.483607][-0.699067,0.19108,-0.689053][0.708682,0.202752,0.845088][-0.488594,0.13191,-0.483607][-0.699067,0.19108,-0.689053][0.708682,0.202752,0.845088][-0.59431,0.125548,-0.347898][-0.848659,0.180471,-0.497201][0.730319,0.129867,0.74825][-0.533882,0.266816,-0.365759][-0.762474,0.381559,-0.522538][0.810676,0.205326,0.760995][-0.488594,0.13191,-0.483607][-0.699067,0.19108,-0.689053][0.708682,0.202752,0.845088][-0.533882,0.266816,-0.365759][-0.762474,0.381559,-0.522538][0.810676,0.205326,0.760995][-0.408309,0.275408,-0.497427][-0.58515,0.394689,-0.708392][0.785673,0.292155,0.85495][-0.408309,0.275408,-0.497427][-0.58515,0.394689,-0.708392][0.785673,0.292155,0.85495][-0.533882,0.266816,-0.365759][-0.762474,0.381559,-0.522538][0.810676,0.205326,0.760995][-0.447383,0.395055,-0.365759][-0.639403,0.564019,-0.522538][0.875863,0.295174,0.760995][-0.408309,0.275408,-0.497427][-0.58515,0.394689,-0.708392][0.785673,0.292155,0.85495][-0.447383,0.395055,-0.365759][-0.639403,0.564019,-0.522538][0.875863,0.295174,0.760995][-0.305336,0.403602,-0.483607][-0.439042,0.576583,-0.689053][0.846789,0.393108,0.845088][-0.305336,0.403602,-0.483607][-0.439042,0.576583,-0.689053][0.846789,0.393108,0.845088][-0.447383,0.395055,-0.365759][-0.639403,0.564019,-0.522538][0.875863,0.295174,0.760995][-0.339039,0.504003,-0.347898][-0.485243,0.719257,-0.497201][0.922696,0.395024,0.74825][-0.305336,0.403602,-0.483607][-0.439042,0.576583,-0.689053][0.846789,0.393108,0.845088][-0.339039,0.504003,-0.347898][-0.485243,0.719257,-0.497201][0.922696,0.395024,0.74825][-0.185395,0.509369,-0.442913][-0.265208,0.728653,-0.63145][0.888635,0.5,0.81605][-0.185395,0.509369,-0.442913][-0.265208,0.728653,-0.63145][0.888635,0.5,0.81605][-0.339039,0.504003,-0.347898][-0.485243,0.719257,-0.497201][0.922696,0.395024,0.74825][-0.214138,0.588341,-0.31305][-0.305912,0.840487,-0.447214][0.948889,0.5,0.723383][-0.214138,0.588341,-0.31305][-0.305912,0.840487,-0.447214][0.948889,0.5,0.723383][-0.312849,0.595338,-0.194161][-0.447154,0.849615,-0.279657][0.977808,0.435121,0.638548][-0.143019,0.657151,-0.194161][-0.203582,0.938268,-0.279657][0.977808,0.564879,0.638548][-0.312849,0.595338,-0.194161][-0.447154,0.849615,-0.279657][0.977808,0.435121,0.638548][-0.396283,0.573264,-0.0657913][-0.566331,0.818703,-0.0948377][0.983396,0.37341,0.546947][-0.238282,0.654675,-0.0679832][-0.340446,0.935367,-0.0958365][0.999501,0.5,0.548511][-0.312849,0.595338,-0.194161][-0.447154,0.849615,-0.279657][0.977808,0.435121,0.638548][-0.238282,0.654675,-0.0679832][-0.340446,0.935367,-0.0958365][0.999501,0.5,0.548511][-0.143019,0.657151,-0.194161][-0.203582,0.938268,-0.279657][0.977808,0.564879,0.638548][-0.143019,0.657151,-0.194161][-0.203582,0.938268,-0.279657][0.977808,0.564879,0.638548][-0.238282,0.654675,-0.0679832][-0.340446,0.935367,-0.0958365][0.999501,0.5,0.548511][-0.0649165,0.693871,-0.0657913][-0.0924176,0.991194,-0.0948378][0.983396,0.626589,0.546947][-0.396283,0.573264,-0.0657913][-0.566331,0.818703,-0.0948377][0.983396,0.37341,0.546947][-0.460366,0.523197,0.0657911][-0.657376,0.747571,0.0948372][0.965379,0.317881,0.453053][-0.317474,0.619922,0.0700501][-0.452669,0.885791,0.102294][0.995505,0.438038,0.450014][-0.396283,0.573264,-0.0657913][-0.566331,0.818703,-0.0948377][0.983396,0.37341,0.546947][-0.317474,0.619922,0.0700501][-0.452669,0.885791,0.102294][0.995505,0.438038,0.450014][-0.238282,0.654675,-0.0679832][-0.340446,0.935367,-0.0958365][0.999501,0.5,0.548511][-0.238282,0.654675,-0.0679832][-0.340446,0.935367,-0.0958365][0.999501,0.5,0.548511][-0.317474,0.619922,0.0700501][-0.452669,0.885791,0.102294][0.995505,0.438038,0.450014][-0.155279,0.678956,0.0700501][-0.222611,0.969526,0.102294][0.995505,0.561962,0.450014][-0.238282,0.654675,-0.0679832][-0.340446,0.935367,-0.0958365][0.999501,0.5,0.548511][-0.155279,0.678956,0.0700501][-0.222611,0.969526,0.102294][0.995505,0.561962,0.450014][-0.0649165,0.693871,-0.0657913][-0.0924176,0.991194,-0.0948378][0.983396,0.626589,0.546947][-0.0649165,0.693871,-0.0657913][-0.0924176,0.991194,-0.0948378][0.983396,0.626589,0.546947][-0.155279,0.678956,0.0700501][-0.222611,0.969526,0.102294][0.995505,0.561962,0.450014][0.0163563,0.696709,0.0657911][0.0230505,0.995226,0.0948372][0.965379,0.682119,0.453053][-0.460366,0.523197,0.0657911][-0.657376,0.747571,0.0948372][0.965379,0.317881,0.453053][-0.501968,0.447582,0.194161][-0.716201,0.639412,0.279657][0.924636,0.271245,0.361452][-0.375158,0.551645,0.212][-0.534258,0.788077,0.305784][0.963651,0.382354,0.348723][-0.460366,0.523197,0.0657911][-0.657376,0.747571,0.0948372][0.965379,0.317881,0.453053][-0.375158,0.551645,0.212][-0.534258,0.788077,0.305784][0.963651,0.382354,0.348723][-0.317474,0.619922,0.0700501][-0.452669,0.885791,0.102294][0.995505,0.438038,0.450014][-0.317474,0.619922,0.0700501][-0.452669,0.885791,0.102294][0.995505,0.438038,0.450014][-0.375158,0.551645,0.212][-0.534258,0.788077,0.305784][0.963651,0.382354,0.348723][-0.227501,0.625055,0.218058][-0.324665,0.89201,0.314501][0.976901,0.5,0.3444][-0.317474,0.619922,0.0700501][-0.452669,0.885791,0.102294][0.995505,0.438038,0.450014][-0.227501,0.625055,0.218058][-0.324665,0.89201,0.314501][0.976901,0.5,0.3444][-0.155279,0.678956,0.0700501][-0.222611,0.969526,0.102294][0.995505,0.561962,0.450014][-0.155279,0.678956,0.0700501][-0.222611,0.969526,0.102294][0.995505,0.561962,0.450014][-0.227501,0.625055,0.218058][-0.324665,0.89201,0.314501][0.976901,0.5,0.3444][-0.0672026,0.663732,0.212][-0.0973004,0.947116,0.305784][0.963651,0.617646,0.348723][-0.155279,0.678956,0.0700501][-0.222611,0.969526,0.102294][0.995505,0.561962,0.450014][-0.0672026,0.663732,0.212][-0.0973004,0.947116,0.305784][0.963651,0.617646,0.348723][0.0163563,0.696709,0.0657911][0.0230505,0.995226,0.0948372][0.965379,0.682119,0.453053][0.0163563,0.696709,0.0657911][0.0230505,0.995226,0.0948372][0.965379,0.682119,0.453053][-0.0672026,0.663732,0.212][-0.0973004,0.947116,0.305784][0.963651,0.617646,0.348723][0.0968305,0.665526,0.194161][0.137636,0.950183,0.279657][0.924636,0.728755,0.361452][-0.501968,0.447582,0.194161][-0.716201,0.639412,0.279657][0.924636,0.271245,0.361452][-0.519059,0.35011,0.313049][-0.741513,0.500158,0.447214][0.863159,0.235779,0.276617][-0.407011,0.450897,0.347898][-0.580501,0.644833,0.497201][0.903585,0.336124,0.25175][-0.501968,0.447582,0.194161][-0.716201,0.639412,0.279657][0.924636,0.271245,0.361452][-0.407011,0.450897,0.347898][-0.580501,0.644833,0.497201][0.903585,0.336124,0.25175][-0.375158,0.551645,0.212][-0.534258,0.788077,0.305784][0.963651,0.382354,0.348723][-0.375158,0.551645,0.212][-0.534258,0.788077,0.305784][0.963651,0.382354,0.348723][-0.407011,0.450897,0.347898][-0.580501,0.644833,0.497201][0.903585,0.336124,0.25175][-0.275089,0.529667,0.365758][-0.392579,0.756859,0.522538][0.924305,0.444471,0.239005][-0.375158,0.551645,0.212][-0.534258,0.788077,0.305784][0.963651,0.382354,0.348723][-0.275089,0.529667,0.365758][-0.392579,0.756859,0.522538][0.924305,0.444471,0.239005][-0.227501,0.625055,0.218058][-0.324665,0.89201,0.314501][0.976901,0.5,0.3444][-0.227501,0.625055,0.218058][-0.324665,0.89201,0.314501][0.976901,0.5,0.3444][-0.275089,0.529667,0.365758][-0.392579,0.756859,0.522538][0.924305,0.444471,0.239005][-0.129733,0.582572,0.365758][-0.185766,0.832133,0.522538][0.924305,0.555529,0.239005][-0.227501,0.625055,0.218058][-0.324665,0.89201,0.314501][0.976901,0.5,0.3444][-0.129733,0.582572,0.365758][-0.185766,0.832133,0.522538][0.924305,0.555529,0.239005][-0.0672026,0.663732,0.212][-0.0973004,0.947116,0.305784][0.963651,0.617646,0.348723][-0.0672026,0.663732,0.212][-0.0973004,0.947116,0.305784][0.963651,0.617646,0.348723][-0.129733,0.582572,0.365758][-0.185766,0.832133,0.522538][0.924305,0.555529,0.239005][0.0219577,0.607029,0.347898][0.0301991,0.86711,0.497201][0.903585,0.663876,0.25175][-0.0672026,0.663732,0.212][-0.0973004,0.947116,0.305784][0.963651,0.617646,0.348723][0.0219577,0.607029,0.347898][0.0301991,0.86711,0.497201][0.903585,0.663876,0.25175][0.0968305,0.665526,0.194161][0.137636,0.950183,0.279657][0.924636,0.728755,0.361452][0.0968305,0.665526,0.194161][0.137636,0.950183,0.279657][0.924636,0.728755,0.361452][0.0219577,0.607029,0.347898][0.0301991,0.86711,0.497201][0.903585,0.663876,0.25175][0.172576,0.601845,0.313049][0.246538,0.859779,0.447214][0.863159,0.764221,0.276617][0.493373,0.385465,-0.31305][0.704818,0.550664,-0.447214][0.638714,0.927518,0.723383][0.469524,0.481507,-0.194161][0.669853,0.687814,-0.279657][0.709268,0.935012,0.638548][0.580792,0.33909,-0.194161][0.829435,0.483558,-0.279657][0.586034,0.975109,0.638548][0.469524,0.481507,-0.194161][0.669853,0.687814,-0.279657][0.709268,0.935012,0.638548][0.422748,0.554036,-0.0657912][0.603627,0.791606,-0.0948376][0.769603,0.921264,0.546947][0.549,0.428926,-0.0679831][0.784384,0.612828,-0.0958365][0.654354,0.97572,0.548511][0.469524,0.481507,-0.194161][0.669853,0.687814,-0.279657][0.709268,0.935012,0.638548][0.549,0.428926,-0.0679831][0.784384,0.612828,-0.0958365][0.654354,0.97572,0.548511][0.580792,0.33909,-0.194161][0.829435,0.483558,-0.279657][0.586034,0.975109,0.638548][0.580792,0.33909,-0.194161][0.829435,0.483558,-0.279657][0.586034,0.975109,0.638548][0.549,0.428926,-0.0679831][0.784384,0.612828,-0.0958365][0.654354,0.97572,0.548511][0.63985,0.276157,-0.0657912][0.914123,0.39419,-0.0948374][0.529153,0.9995,0.546947][0.422748,0.554036,-0.0657912][0.603627,0.791606,-0.0948376][0.769603,0.921264,0.546947][0.355329,0.599511,0.0657911][0.507841,0.856214,0.0948371][0.816772,0.886945,0.453053][0.491476,0.493502,0.0700502][0.702555,0.704239,0.102294][0.711966,0.952768,0.450014][0.422748,0.554036,-0.0657912][0.603627,0.791606,-0.0948376][0.769603,0.921264,0.546947][0.491476,0.493502,0.0700502][0.702555,0.704239,0.102294][0.711966,0.952768,0.450014][0.549,0.428926,-0.0679831][0.784384,0.612828,-0.0958365][0.654354,0.97572,0.548511][0.549,0.428926,-0.0679831][0.784384,0.612828,-0.0958365][0.654354,0.97572,0.548511][0.491476,0.493502,0.0700502][0.702555,0.704239,0.102294][0.711966,0.952768,0.450014][0.597742,0.357488,0.0700502][0.853284,0.511315,0.102294][0.594273,0.991063,0.450014][0.549,0.428926,-0.0679831][0.784384,0.612828,-0.0958365][0.654354,0.97572,0.548511][0.597742,0.357488,0.0700502][0.853284,0.511315,0.102294][0.594273,0.991063,0.450014][0.63985,0.276157,-0.0657912][0.914123,0.39419,-0.0948374][0.529153,0.9995,0.546947][0.63985,0.276157,-0.0657912][0.914123,0.39419,-0.0948374][0.529153,0.9995,0.546947][0.597742,0.357488,0.0700502][0.853284,0.511315,0.102294][0.594273,0.991063,0.450014][0.667664,0.199739,0.0657912][0.953639,0.285619,0.0948374][0.470848,0.999501,0.453053][0.355329,0.599511,0.0657911][0.507841,0.856214,0.0948371][0.816772,0.886945,0.453053][0.270558,0.615711,0.194161][0.386799,0.878737,0.279657][0.848474,0.833731,0.361452][0.408715,0.527265,0.212][0.58441,0.751639,0.305784][0.755007,0.905222,0.348723][0.355329,0.599511,0.0657911][0.507841,0.856214,0.0948371][0.816772,0.886945,0.453053][0.408715,0.527265,0.212][0.58441,0.751639,0.305784][0.755007,0.905222,0.348723][0.491476,0.493502,0.0700502][0.702555,0.704239,0.102294][0.711966,0.952768,0.450014][0.491476,0.493502,0.0700502][0.702555,0.704239,0.102294][0.711966,0.952768,0.450014][0.408715,0.527265,0.212][0.58441,0.751639,0.305784][0.755007,0.905222,0.348723][0.524161,0.409519,0.218058][0.748025,0.584421,0.314501][0.647371,0.954196,0.3444][0.491476,0.493502,0.0700502][0.702555,0.704239,0.102294][0.711966,0.952768,0.450014][0.524161,0.409519,0.218058][0.748025,0.584421,0.314501][0.647371,0.954196,0.3444][0.597742,0.357488,0.0700502][0.853284,0.511315,0.102294][0.594273,0.991063,0.450014][0.597742,0.357488,0.0700502][0.853284,0.511315,0.102294][0.594273,0.991063,0.450014][0.524161,0.409519,0.218058][0.748025,0.584421,0.314501][0.647371,0.954196,0.3444][0.61048,0.269018,0.212][0.870693,0.385213,0.305784][0.531545,0.977932,0.348723][0.597742,0.357488,0.0700502][0.853284,0.511315,0.102294][0.594273,0.991063,0.450014][0.61048,0.269018,0.212][0.870693,0.385213,0.305784][0.531545,0.977932,0.348723][0.667664,0.199739,0.0657912][0.953639,0.285619,0.0948374][0.470848,0.999501,0.453053][0.667664,0.199739,0.0657912][0.953639,0.285619,0.0948374][0.470848,0.999501,0.453053][0.61048,0.269018,0.212][0.870693,0.385213,0.305784][0.531545,0.977932,0.348723][0.662875,0.113568,0.194161][0.94621,0.162724,0.279657][0.413966,0.975109,0.361452][0.270558,0.615711,0.194161][0.386799,0.878737,0.279657][0.848474,0.833731,0.361452][0.172576,0.601845,0.313049][0.246538,0.859779,0.447214][0.863159,0.764221,0.276617][0.303055,0.526426,0.347898][0.433888,0.751354,0.497201][0.780352,0.833731,0.25175][0.270558,0.615711,0.194161][0.386799,0.878737,0.279657][0.848474,0.833731,0.361452][0.303055,0.526426,0.347898][0.433888,0.751354,0.497201][0.780352,0.833731,0.25175][0.408715,0.527265,0.212][0.58441,0.751639,0.305784][0.755007,0.905222,0.348723][0.408715,0.527265,0.212][0.58441,0.751639,0.305784][0.755007,0.905222,0.348723][0.303055,0.526426,0.347898][0.433888,0.751354,0.497201][0.780352,0.833731,0.25175][0.418736,0.425301,0.365759][0.598502,0.607247,0.522538][0.683855,0.886945,0.239005][0.408715,0.527265,0.212][0.58441,0.751639,0.305784][0.755007,0.905222,0.348723][0.418736,0.425301,0.365759][0.598502,0.607247,0.522538][0.683855,0.886945,0.239005][0.524161,0.409519,0.218058][0.748025,0.584421,0.314501][0.647371,0.954196,0.3444][0.524161,0.409519,0.218058][0.748025,0.584421,0.314501][0.647371,0.954196,0.3444][0.418736,0.425301,0.365759][0.598502,0.607247,0.522538][0.683855,0.886945,0.239005][0.513969,0.303408,0.365759][0.734,0.433817,0.522538][0.57838,0.921264,0.239005][0.524161,0.409519,0.218058][0.748025,0.584421,0.314501][0.647371,0.954196,0.3444][0.513969,0.303408,0.365759][0.734,0.433817,0.522538][0.57838,0.921264,0.239005][0.61048,0.269018,0.212][0.870693,0.385213,0.305784][0.531545,0.977932,0.348723][0.61048,0.269018,0.212][0.870693,0.385213,0.305784][0.531545,0.977932,0.348723][0.513969,0.303408,0.365759][0.734,0.433817,0.522538][0.57838,0.921264,0.239005][0.584105,0.166699,0.347898][0.834002,0.239231,0.497201][0.469078,0.935012,0.25175][0.61048,0.269018,0.212][0.870693,0.385213,0.305784][0.531545,0.977932,0.348723][0.584105,0.166699,0.347898][0.834002,0.239231,0.497201][0.469078,0.935012,0.25175][0.662875,0.113568,0.194161][0.94621,0.162724,0.279657][0.413966,0.975109,0.361452][0.662875,0.113568,0.194161][0.94621,0.162724,0.279657][0.413966,0.975109,0.361452][0.584105,0.166699,0.347898][0.834002,0.239231,0.497201][0.469078,0.935012,0.25175][0.625718,0.0218506,0.31305][0.893882,0.0312151,0.447214][0.361286,0.927518,0.276617][0.51906,-0.35011,-0.313049][0.741514,-0.500158,-0.447213][0.136841,0.764221,0.723383][0.603031,-0.29775,-0.194161][0.861146,-0.424522,-0.279657][0.151526,0.833731,0.638548][0.501969,-0.447581,-0.194161][0.716201,-0.639412,-0.279657][0.0753637,0.728755,0.638548][0.603031,-0.29775,-0.194161][0.861146,-0.424522,-0.279657][0.151526,0.833731,0.638548][0.657556,-0.230851,-0.0657911][0.939393,-0.329464,-0.0948373][0.183228,0.886945,0.546947][0.577583,-0.389585,-0.067983][0.825222,-0.556619,-0.0958363][0.0958956,0.794011,0.548511][0.603031,-0.29775,-0.194161][0.861146,-0.424522,-0.279657][0.151526,0.833731,0.638548][0.577583,-0.389585,-0.067983][0.825222,-0.556619,-0.0958363][0.0958956,0.794011,0.548511][0.501969,-0.447581,-0.194161][0.716201,-0.639412,-0.279657][0.0753637,0.728755,0.638548][0.501969,-0.447581,-0.194161][0.716201,-0.639412,-0.279657][0.0753637,0.728755,0.638548][0.577583,-0.389585,-0.067983][0.825222,-0.556619,-0.0958363][0.0958956,0.794011,0.548511][0.460366,-0.523197,-0.0657911][0.657376,-0.747571,-0.0948373][0.0346215,0.682119,0.546947][0.657556,-0.230851,-0.0657911][0.939393,-0.329464,-0.0948373][0.183228,0.886945,0.546947][0.679971,-0.152679,0.0657912][0.97124,-0.218401,0.0948376][0.230398,0.921264,0.453053][0.621223,-0.314921,0.0700503][0.886872,-0.450547,0.102295][0.135497,0.841788,0.450014][0.657556,-0.230851,-0.0657911][0.939393,-0.329464,-0.0948373][0.183228,0.886945,0.546947][0.621223,-0.314921,0.0700503][0.886872,-0.450547,0.102295][0.135497,0.841788,0.450014][0.577583,-0.389585,-0.067983][0.825222,-0.556619,-0.0958363][0.0958956,0.794011,0.548511][0.577583,-0.389585,-0.067983][0.825222,-0.556619,-0.0958363][0.0958956,0.794011,0.548511][0.621223,-0.314921,0.0700503][0.886872,-0.450547,0.102295][0.135497,0.841788,0.450014][0.524704,-0.458016,0.0700503][0.749969,-0.653516,0.102295][0.0627584,0.741531,0.450014][0.577583,-0.389585,-0.067983][0.825222,-0.556619,-0.0958363][0.0958956,0.794011,0.548511][0.524704,-0.458016,0.0700503][0.749969,-0.653516,0.102295][0.0627584,0.741531,0.450014][0.460366,-0.523197,-0.0657911][0.657376,-0.747571,-0.0948373][0.0346215,0.682119,0.546947][0.460366,-0.523197,-0.0657911][0.657376,-0.747571,-0.0948373][0.0346215,0.682119,0.546947][0.524704,-0.458016,0.0700503][0.749969,-0.653516,0.102295][0.0627584,0.741531,0.450014][0.396283,-0.573264,0.0657913][0.566331,-0.818703,0.0948375][0.0166042,0.62659,0.453053][0.679971,-0.152679,0.0657912][0.97124,-0.218401,0.0948376][0.230398,0.921264,0.453053][0.669183,-0.0670512,0.194161][0.955256,-0.0963231,0.279657][0.290732,0.935012,0.361452][0.627758,-0.225778,0.212][0.895444,-0.323538,0.305784][0.193952,0.868087,0.348723][0.679971,-0.152679,0.0657912][0.97124,-0.218401,0.0948376][0.230398,0.921264,0.453053][0.627758,-0.225778,0.212][0.895444,-0.323538,0.305784][0.193952,0.868087,0.348723][0.621223,-0.314921,0.0700503][0.886872,-0.450547,0.102295][0.135497,0.841788,0.450014][0.621223,-0.314921,0.0700503][0.886872,-0.450547,0.102295][0.135497,0.841788,0.450014][0.627758,-0.225778,0.212][0.895444,-0.323538,0.305784][0.193952,0.868087,0.348723][0.55145,-0.371958,0.218058][0.78697,-0.530818,0.314501][0.114179,0.780709,0.3444][0.621223,-0.314921,0.0700503][0.886872,-0.450547,0.102295][0.135497,0.841788,0.450014][0.55145,-0.371958,0.218058][0.78697,-0.530818,0.314501][0.114179,0.780709,0.3444][0.524704,-0.458016,0.0700503][0.749969,-0.653516,0.102295][0.0627584,0.741531,0.450014][0.524704,-0.458016,0.0700503][0.749969,-0.653516,0.102295][0.0627584,0.741531,0.450014][0.55145,-0.371958,0.218058][0.78697,-0.530818,0.314501][0.114179,0.780709,0.3444][0.4445,-0.497469,0.212][0.635418,-0.709041,0.305784][0.0558451,0.677732,0.348723][0.524704,-0.458016,0.0700503][0.749969,-0.653516,0.102295][0.0627584,0.741531,0.450014][0.4445,-0.497469,0.212][0.635418,-0.709041,0.305784][0.0558451,0.677732,0.348723][0.396283,-0.573264,0.0657913][0.566331,-0.818703,0.0948375][0.0166042,0.62659,0.453053][0.396283,-0.573264,0.0657913][0.566331,-0.818703,0.0948375][0.0166042,0.62659,0.453053][0.4445,-0.497469,0.212][0.635418,-0.709041,0.305784][0.0558451,0.677732,0.348723][0.312849,-0.595338,0.194161][0.447154,-0.849615,0.279657][0.0221917,0.564879,0.361452][0.669183,-0.0670512,0.194161][0.955256,-0.0963231,0.279657][0.290732,0.935012,0.361452][0.625718,0.0218506,0.31305][0.893882,0.0312151,0.447214][0.361286,0.927518,0.276617][0.59431,-0.125548,0.347898][0.848659,-0.180471,0.497201][0.269681,0.870133,0.25175][0.669183,-0.0670512,0.194161][0.955256,-0.0963231,0.279657][0.290732,0.935012,0.361452][0.59431,-0.125548,0.347898][0.848659,-0.180471,0.497201][0.269681,0.870133,0.25175][0.627758,-0.225778,0.212][0.895444,-0.323538,0.305784][0.193952,0.868087,0.348723][0.627758,-0.225778,0.212][0.895444,-0.323538,0.305784][0.193952,0.868087,0.348723][0.59431,-0.125548,0.347898][0.848659,-0.180471,0.497201][0.269681,0.870133,0.25175][0.533882,-0.266816,0.365759][0.762474,-0.381559,0.522538][0.189324,0.794674,0.239005][0.627758,-0.225778,0.212][0.895444,-0.323538,0.305784][0.193952,0.868087,0.348723][0.533882,-0.266816,0.365759][0.762474,-0.381559,0.522538][0.189324,0.794674,0.239005][0.55145,-0.371958,0.218058][0.78697,-0.530818,0.314501][0.114179,0.780709,0.3444][0.55145,-0.371958,0.218058][0.78697,-0.530818,0.314501][0.114179,0.780709,0.3444][0.533882,-0.266816,0.365759][0.762474,-0.381559,0.522538][0.189324,0.794674,0.239005][0.447383,-0.395055,0.365759][0.639403,-0.564019,0.522538][0.124137,0.704826,0.239005][0.55145,-0.371958,0.218058][0.78697,-0.530818,0.314501][0.114179,0.780709,0.3444][0.447383,-0.395055,0.365759][0.639403,-0.564019,0.522538][0.124137,0.704826,0.239005][0.4445,-0.497469,0.212][0.635418,-0.709041,0.305784][0.0558451,0.677732,0.348723][0.4445,-0.497469,0.212][0.635418,-0.709041,0.305784][0.0558451,0.677732,0.348723][0.447383,-0.395055,0.365759][0.639403,-0.564019,0.522538][0.124137,0.704826,0.239005][0.339039,-0.504003,0.347898][0.485243,-0.719257,0.497201][0.0773036,0.604976,0.25175][0.4445,-0.497469,0.212][0.635418,-0.709041,0.305784][0.0558451,0.677732,0.348723][0.339039,-0.504003,0.347898][0.485243,-0.719257,0.497201][0.0773036,0.604976,0.25175][0.312849,-0.595338,0.194161][0.447154,-0.849615,0.279657][0.0221917,0.564879,0.361452][0.312849,-0.595338,0.194161][0.447154,-0.849615,0.279657][0.0221917,0.564879,0.361452][0.339039,-0.504003,0.347898][0.485243,-0.719257,0.497201][0.0773036,0.604976,0.25175][0.214138,-0.588341,0.31305][0.305912,-0.840487,0.447214][0.0511111,0.5,0.276617][-0.172576,-0.601845,-0.313049][-0.246537,-0.859779,-0.447214][0.136841,0.235779,0.723383][-0.0968305,-0.665526,-0.194161][-0.137636,-0.950183,-0.279657][0.0753636,0.271245,0.638548][-0.270558,-0.615711,-0.194161][-0.386799,-0.878737,-0.279657][0.151526,0.166269,0.638548][-0.0968305,-0.665526,-0.194161][-0.137636,-0.950183,-0.279657][0.0753636,0.271245,0.638548][-0.0163564,-0.696709,-0.0657911][-0.0230503,-0.995226,-0.0948372][0.0346214,0.317881,0.546947][-0.192034,-0.669702,-0.067983][-0.274369,-0.956837,-0.0958361][0.0958955,0.205989,0.548511][-0.0968305,-0.665526,-0.194161][-0.137636,-0.950183,-0.279657][0.0753636,0.271245,0.638548][-0.192034,-0.669702,-0.067983][-0.274369,-0.956837,-0.0958361][0.0958955,0.205989,0.548511][-0.270558,-0.615711,-0.194161][-0.386799,-0.878737,-0.279657][0.151526,0.166269,0.638548][-0.270558,-0.615711,-0.194161][-0.386799,-0.878737,-0.279657][0.151526,0.166269,0.638548][-0.192034,-0.669702,-0.067983][-0.274369,-0.956837,-0.0958361][0.0958955,0.205989,0.548511][-0.355329,-0.599511,-0.0657911][-0.507842,-0.856214,-0.0948373][0.183228,0.113055,0.546947][-0.0163564,-0.696709,-0.0657911][-0.0230503,-0.995226,-0.0948372][0.0346214,0.317881,0.546947][0.0649164,-0.693871,0.0657913][0.0924179,-0.991194,0.0948375][0.0166042,0.373411,0.453053][-0.107539,-0.688134,0.0700503][-0.154438,-0.982693,0.102295][0.0627584,0.258469,0.450014][-0.0163564,-0.696709,-0.0657911][-0.0230503,-0.995226,-0.0948372][0.0346214,0.317881,0.546947][-0.107539,-0.688134,0.0700503][-0.154438,-0.982693,0.102295][0.0627584,0.258469,0.450014][-0.192034,-0.669702,-0.067983][-0.274369,-0.956837,-0.0958361][0.0958955,0.205989,0.548511][-0.192034,-0.669702,-0.067983][-0.274369,-0.956837,-0.0958361][0.0958955,0.205989,0.548511][-0.107539,-0.688134,0.0700503][-0.154438,-0.982693,0.102295][0.0627584,0.258469,0.450014][-0.273457,-0.640558,0.0700503][-0.389777,-0.91521,0.102295][0.135497,0.158212,0.450014][-0.192034,-0.669702,-0.067983][-0.274369,-0.956837,-0.0958361][0.0958955,0.205989,0.548511][-0.273457,-0.640558,0.0700503][-0.389777,-0.91521,0.102295][0.135497,0.158212,0.450014][-0.355329,-0.599511,-0.0657911][-0.507842,-0.856214,-0.0948373][0.183228,0.113055,0.546947][-0.355329,-0.599511,-0.0657911][-0.507842,-0.856214,-0.0948373][0.183228,0.113055,0.546947][-0.273457,-0.640558,0.0700503][-0.389777,-0.91521,0.102295][0.135497,0.158212,0.450014][-0.422748,-0.554036,0.0657912][-0.603627,-0.791606,0.0948373][0.230397,0.0787362,0.453053][0.0649164,-0.693871,0.0657913][0.0924179,-0.991194,0.0948375][0.0166042,0.373411,0.453053][0.143019,-0.657151,0.194161][0.203582,-0.938268,0.279657][0.0221917,0.435121,0.361452][-0.0207394,-0.666803,0.212][-0.0309958,-0.951596,0.305784][0.0558449,0.322268,0.348723][0.0649164,-0.693871,0.0657913][0.0924179,-0.991194,0.0948375][0.0166042,0.373411,0.453053][-0.0207394,-0.666803,0.212][-0.0309958,-0.951596,0.305784][0.0558449,0.322268,0.348723][-0.107539,-0.688134,0.0700503][-0.154438,-0.982693,0.102295][0.0627584,0.258469,0.450014][-0.107539,-0.688134,0.0700503][-0.154438,-0.982693,0.102295][0.0627584,0.258469,0.450014][-0.0207394,-0.666803,0.212][-0.0309958,-0.951596,0.305784][0.0558449,0.322268,0.348723][-0.183346,-0.639402,0.218058][-0.261651,-0.912485,0.314501][0.114179,0.219291,0.3444][-0.107539,-0.688134,0.0700503][-0.154438,-0.982693,0.102295][0.0627584,0.258469,0.450014][-0.183346,-0.639402,0.218058][-0.261651,-0.912485,0.314501][0.114179,0.219291,0.3444][-0.273457,-0.640558,0.0700503][-0.389777,-0.91521,0.102295][0.135497,0.158212,0.450014][-0.273457,-0.640558,0.0700503][-0.389777,-0.91521,0.102295][0.135497,0.158212,0.450014][-0.183346,-0.639402,0.218058][-0.261651,-0.912485,0.314501][0.114179,0.219291,0.3444][-0.335764,-0.576471,0.212][-0.477983,-0.823425,0.305784][0.193952,0.131913,0.348723][-0.273457,-0.640558,0.0700503][-0.389777,-0.91521,0.102295][0.135497,0.158212,0.450014][-0.335764,-0.576471,0.212][-0.477983,-0.823425,0.305784][0.193952,0.131913,0.348723][-0.422748,-0.554036,0.0657912][-0.603627,-0.791606,0.0948373][0.230397,0.0787362,0.453053][-0.422748,-0.554036,0.0657912][-0.603627,-0.791606,0.0948373][0.230397,0.0787362,0.453053][-0.335764,-0.576471,0.212][-0.477983,-0.823425,0.305784][0.193952,0.131913,0.348723][-0.469524,-0.481507,0.194161][-0.669853,-0.687814,0.279657][0.290732,0.064988,0.361452][0.143019,-0.657151,0.194161][0.203582,-0.938268,0.279657][0.0221917,0.435121,0.361452][0.214138,-0.588341,0.31305][0.305912,-0.840487,0.447214][0.0511111,0.5,0.276617][0.0642485,-0.604019,0.347898][0.0906121,-0.862891,0.497201][0.0773035,0.395024,0.25175][0.143019,-0.657151,0.194161][0.203582,-0.938268,0.279657][0.0221917,0.435121,0.361452][0.0642485,-0.604019,0.347898][0.0906121,-0.862891,0.497201][0.0773035,0.395024,0.25175][-0.0207394,-0.666803,0.212][-0.0309958,-0.951596,0.305784][0.0558449,0.322268,0.348723][-0.0207394,-0.666803,0.212][-0.0309958,-0.951596,0.305784][0.0558449,0.322268,0.348723][0.0642485,-0.604019,0.347898][0.0906121,-0.862891,0.497201][0.0773035,0.395024,0.25175][-0.0887788,-0.590202,0.365759][-0.127267,-0.843064,0.522538][0.124137,0.295174,0.239005][-0.0207394,-0.666803,0.212][-0.0309958,-0.951596,0.305784][0.0558449,0.322268,0.348723][-0.0887788,-0.590202,0.365759][-0.127267,-0.843064,0.522538][0.124137,0.295174,0.239005][-0.183346,-0.639402,0.218058][-0.261651,-0.912485,0.314501][0.114179,0.219291,0.3444][-0.183346,-0.639402,0.218058][-0.261651,-0.912485,0.314501][0.114179,0.219291,0.3444][-0.0887788,-0.590202,0.365759][-0.127267,-0.843064,0.522538][0.124137,0.295174,0.239005][-0.237471,-0.547566,0.365759][-0.338827,-0.7824,0.522538][0.189324,0.205326,0.239005][-0.183346,-0.639402,0.218058][-0.261651,-0.912485,0.314501][0.114179,0.219291,0.3444][-0.237471,-0.547566,0.365759][-0.338827,-0.7824,0.522538][0.189324,0.205326,0.239005][-0.335764,-0.576471,0.212][-0.477983,-0.823425,0.305784][0.193952,0.131913,0.348723][-0.335764,-0.576471,0.212][-0.477983,-0.823425,0.305784][0.193952,0.131913,0.348723][-0.237471,-0.547566,0.365759][-0.338827,-0.7824,0.522538][0.189324,0.205326,0.239005][-0.374567,-0.478191,0.347898][-0.534106,-0.683756,0.497201][0.269681,0.129867,0.25175][-0.335764,-0.576471,0.212][-0.477983,-0.823425,0.305784][0.193952,0.131913,0.348723][-0.374567,-0.478191,0.347898][-0.534106,-0.683756,0.497201][0.269681,0.129867,0.25175][-0.469524,-0.481507,0.194161][-0.669853,-0.687814,0.279657][0.290732,0.064988,0.361452][-0.469524,-0.481507,0.194161][-0.669853,-0.687814,0.279657][0.290732,0.064988,0.361452][-0.374567,-0.478191,0.347898][-0.534106,-0.683756,0.497201][0.269681,0.129867,0.25175][-0.493373,-0.385465,0.31305][-0.704818,-0.550664,0.447214][0.361286,0.072482,0.276617][-0.625718,-0.0218505,-0.31305][-0.893882,-0.0312152,-0.447214][0.638714,0.0724819,0.723383][-0.662875,-0.113568,-0.194161][-0.94621,-0.162724,-0.279657][0.586034,0.0248907,0.638548][-0.669183,0.0670513,-0.194161][-0.955256,0.0963227,-0.279657][0.709268,0.064988,0.638548][-0.662875,-0.113568,-0.194161][-0.94621,-0.162724,-0.279657][0.586034,0.0248907,0.638548][-0.667664,-0.199739,-0.0657912][-0.953639,-0.285619,-0.0948373][0.529152,0.000499517,0.546947][-0.696266,-0.0243141,-0.0679831][-0.994791,-0.0347391,-0.0958361][0.654354,0.0242798,0.548511][-0.662875,-0.113568,-0.194161][-0.94621,-0.162724,-0.279657][0.586034,0.0248907,0.638548][-0.696266,-0.0243141,-0.0679831][-0.994791,-0.0347391,-0.0958361][0.654354,0.0242798,0.548511][-0.669183,0.0670513,-0.194161][-0.955256,0.0963227,-0.279657][0.709268,0.064988,0.638548][-0.669183,0.0670513,-0.194161][-0.955256,0.0963227,-0.279657][0.709268,0.064988,0.638548][-0.696266,-0.0243141,-0.0679831][-0.994791,-0.0347391,-0.0958361][0.654354,0.0242798,0.548511][-0.679971,0.152679,-0.0657913][-0.97124,0.218401,-0.0948375][0.769603,0.0787361,0.546947][-0.667664,-0.199739,-0.0657912][-0.953639,-0.285619,-0.0948373][0.529152,0.000499517,0.546947][-0.63985,-0.276157,0.0657912][-0.914123,-0.39419,0.0948375][0.470847,0.000499547,0.453053][-0.687686,-0.110369,0.0700502][-0.98232,-0.15679,0.102294][0.594273,0.00893751,0.450014][-0.667664,-0.199739,-0.0657912][-0.953639,-0.285619,-0.0948373][0.529152,0.000499517,0.546947][-0.687686,-0.110369,0.0700502][-0.98232,-0.15679,0.102294][0.594273,0.00893751,0.450014][-0.696266,-0.0243141,-0.0679831][-0.994791,-0.0347391,-0.0958361][0.654354,0.0242798,0.548511][-0.696266,-0.0243141,-0.0679831][-0.994791,-0.0347391,-0.0958361][0.654354,0.0242798,0.548511][-0.687686,-0.110369,0.0700502][-0.98232,-0.15679,0.102294][0.594273,0.00893751,0.450014][-0.693709,0.0621298,0.0700502][-0.990864,0.0878845,0.102295][0.711966,0.0472321,0.450014][-0.696266,-0.0243141,-0.0679831][-0.994791,-0.0347391,-0.0958361][0.654354,0.0242798,0.548511][-0.693709,0.0621298,0.0700502][-0.990864,0.0878845,0.102295][0.711966,0.0472321,0.450014][-0.679971,0.152679,-0.0657913][-0.97124,0.218401,-0.0948375][0.769603,0.0787361,0.546947][-0.679971,0.152679,-0.0657913][-0.97124,0.218401,-0.0948375][0.769603,0.0787361,0.546947][-0.693709,0.0621298,0.0700502][-0.990864,0.0878845,0.102295][0.711966,0.0472321,0.450014][-0.657556,0.230851,0.0657911][-0.939393,0.329464,0.0948377][0.816772,0.113055,0.453053][-0.63985,-0.276157,0.0657912][-0.914123,-0.39419,0.0948375][0.470847,0.000499547,0.453053][-0.580792,-0.33909,0.194161][-0.829436,-0.483558,0.279657][0.413966,0.0248907,0.361452][-0.640576,-0.186329,0.212][-0.9146,-0.264581,0.305784][0.531545,0.0220683,0.348723][-0.63985,-0.276157,0.0657912][-0.914123,-0.39419,0.0948375][0.470847,0.000499547,0.453053][-0.640576,-0.186329,0.212][-0.9146,-0.264581,0.305784][0.531545,0.0220683,0.348723][-0.687686,-0.110369,0.0700502][-0.98232,-0.15679,0.102294][0.594273,0.00893751,0.450014][-0.687686,-0.110369,0.0700502][-0.98232,-0.15679,0.102294][0.594273,0.00893751,0.450014][-0.640576,-0.186329,0.212][-0.9146,-0.264581,0.305784][0.531545,0.0220683,0.348723][-0.664764,-0.023214,0.218058][-0.948679,-0.0331285,0.314501][0.64737,0.0458035,0.3444][-0.687686,-0.110369,0.0700502][-0.98232,-0.15679,0.102294][0.594273,0.00893751,0.450014][-0.664764,-0.023214,0.218058][-0.948679,-0.0331285,0.314501][0.64737,0.0458035,0.3444][-0.693709,0.0621298,0.0700502][-0.990864,0.0878845,0.102295][0.711966,0.0472321,0.450014][-0.693709,0.0621298,0.0700502][-0.990864,0.0878845,0.102295][0.711966,0.0472321,0.450014][-0.664764,-0.023214,0.218058][-0.948679,-0.0331285,0.314501][0.64737,0.0458035,0.3444][-0.652013,0.141191,0.212][-0.930828,0.200137,0.305784][0.755007,0.0947776,0.348723][-0.693709,0.0621298,0.0700502][-0.990864,0.0878845,0.102295][0.711966,0.0472321,0.450014][-0.652013,0.141191,0.212][-0.930828,0.200137,0.305784][0.755007,0.0947776,0.348723][-0.657556,0.230851,0.0657911][-0.939393,0.329464,0.0948377][0.816772,0.113055,0.453053][-0.657556,0.230851,0.0657911][-0.939393,0.329464,0.0948377][0.816772,0.113055,0.453053][-0.652013,0.141191,0.212][-0.930828,0.200137,0.305784][0.755007,0.0947776,0.348723][-0.603031,0.29775,0.194161][-0.861146,0.424522,0.279657][0.848474,0.166269,0.361452][-0.580792,-0.33909,0.194161][-0.829436,-0.483558,0.279657][0.413966,0.0248907,0.361452][-0.493373,-0.385465,0.31305][-0.704818,-0.550664,0.447214][0.361286,0.072482,0.276617][-0.554602,-0.247756,0.347898][-0.792657,-0.352825,0.497201][0.469078,0.064988,0.25175][-0.580792,-0.33909,0.194161][-0.829436,-0.483558,0.279657][0.413966,0.0248907,0.361452][-0.554602,-0.247756,0.347898][-0.792657,-0.352825,0.497201][0.469078,0.064988,0.25175][-0.640576,-0.186329,0.212][-0.9146,-0.264581,0.305784][0.531545,0.0220683,0.348723][-0.640576,-0.186329,0.212][-0.9146,-0.264581,0.305784][0.531545,0.0220683,0.348723][-0.554602,-0.247756,0.347898][-0.792657,-0.352825,0.497201][0.469078,0.064988,0.25175][-0.58875,-0.0979488,0.365759][-0.841129,-0.139483,0.522538][0.57838,0.0787362,0.239005][-0.640576,-0.186329,0.212][-0.9146,-0.264581,0.305784][0.531545,0.0220683,0.348723][-0.58875,-0.0979488,0.365759][-0.841129,-0.139483,0.522538][0.57838,0.0787362,0.239005][-0.664764,-0.023214,0.218058][-0.948679,-0.0331285,0.314501][0.64737,0.0458035,0.3444][-0.664764,-0.023214,0.218058][-0.948679,-0.0331285,0.314501][0.64737,0.0458035,0.3444][-0.58875,-0.0979488,0.365759][-0.841129,-0.139483,0.522538][0.57838,0.0787362,0.239005][-0.594148,0.0566413,0.365759][-0.84881,0.0804692,0.522538][0.683855,0.113055,0.239005][-0.664764,-0.023214,0.218058][-0.948679,-0.0331285,0.314501][0.64737,0.0458035,0.3444][-0.594148,0.0566413,0.365759][-0.84881,0.0804692,0.522538][0.683855,0.113055,0.239005][-0.652013,0.141191,0.212][-0.930828,0.200137,0.305784][0.755007,0.0947776,0.348723][-0.652013,0.141191,0.212][-0.930828,0.200137,0.305784][0.755007,0.0947776,0.348723][-0.594148,0.0566413,0.365759][-0.84881,0.0804692,0.522538][0.683855,0.113055,0.239005][-0.570534,0.208466,0.347898][-0.815338,0.296673,0.497201][0.780352,0.166269,0.25175][-0.652013,0.141191,0.212][-0.930828,0.200137,0.305784][0.755007,0.0947776,0.348723][-0.570534,0.208466,0.347898][-0.815338,0.296673,0.497201][0.780352,0.166269,0.25175][-0.603031,0.29775,0.194161][-0.861146,0.424522,0.279657][0.848474,0.166269,0.361452][-0.603031,0.29775,0.194161][-0.861146,0.424522,0.279657][0.848474,0.166269,0.361452][-0.570534,0.208466,0.347898][-0.815338,0.296673,0.497201][0.780352,0.166269,0.25175][-0.519059,0.35011,0.313049][-0.741513,0.500158,0.447214][0.863159,0.235779,0.276617][0.172576,0.601845,0.313049][0.246538,0.859779,0.447214][0.863159,0.764221,0.276617][0.270558,0.615711,0.194161][0.386799,0.878737,0.279657][0.848474,0.833731,0.361452][0.0968305,0.665526,0.194161][0.137636,0.950183,0.279657][0.924636,0.728755,0.361452][0.270558,0.615711,0.194161][0.386799,0.878737,0.279657][0.848474,0.833731,0.361452][0.355329,0.599511,0.0657911][0.507841,0.856214,0.0948371][0.816772,0.886945,0.453053][0.192034,0.669702,0.067983][0.274369,0.956837,0.095836][0.904104,0.794011,0.451489][0.270558,0.615711,0.194161][0.386799,0.878737,0.279657][0.848474,0.833731,0.361452][0.192034,0.669702,0.067983][0.274369,0.956837,0.095836][0.904104,0.794011,0.451489][0.0968305,0.665526,0.194161][0.137636,0.950183,0.279657][0.924636,0.728755,0.361452][0.0968305,0.665526,0.194161][0.137636,0.950183,0.279657][0.924636,0.728755,0.361452][0.192034,0.669702,0.067983][0.274369,0.956837,0.095836][0.904104,0.794011,0.451489][0.0163563,0.696709,0.0657911][0.0230505,0.995226,0.0948372][0.965379,0.682119,0.453053][0.355329,0.599511,0.0657911][0.507841,0.856214,0.0948371][0.816772,0.886945,0.453053][0.422748,0.554036,-0.0657912][0.603627,0.791606,-0.0948376][0.769603,0.921264,0.546947][0.273457,0.640558,-0.0700503][0.389777,0.91521,-0.102295][0.864503,0.841788,0.549986][0.355329,0.599511,0.0657911][0.507841,0.856214,0.0948371][0.816772,0.886945,0.453053][0.273457,0.640558,-0.0700503][0.389777,0.91521,-0.102295][0.864503,0.841788,0.549986][0.192034,0.669702,0.067983][0.274369,0.956837,0.095836][0.904104,0.794011,0.451489][0.192034,0.669702,0.067983][0.274369,0.956837,0.095836][0.904104,0.794011,0.451489][0.273457,0.640558,-0.0700503][0.389777,0.91521,-0.102295][0.864503,0.841788,0.549986][0.107539,0.688134,-0.0700503][0.154438,0.982693,-0.102295][0.937242,0.741531,0.549986][0.192034,0.669702,0.067983][0.274369,0.956837,0.095836][0.904104,0.794011,0.451489][0.107539,0.688134,-0.0700503][0.154438,0.982693,-0.102295][0.937242,0.741531,0.549986][0.0163563,0.696709,0.0657911][0.0230505,0.995226,0.0948372][0.965379,0.682119,0.453053][0.0163563,0.696709,0.0657911][0.0230505,0.995226,0.0948372][0.965379,0.682119,0.453053][0.107539,0.688134,-0.0700503][0.154438,0.982693,-0.102295][0.937242,0.741531,0.549986][-0.0649165,0.693871,-0.0657913][-0.0924176,0.991194,-0.0948378][0.983396,0.626589,0.546947][0.422748,0.554036,-0.0657912][0.603627,0.791606,-0.0948376][0.769603,0.921264,0.546947][0.469524,0.481507,-0.194161][0.669853,0.687814,-0.279657][0.709268,0.935012,0.638548][0.335764,0.576471,-0.212][0.477983,0.823425,-0.305784][0.806048,0.868087,0.651277][0.422748,0.554036,-0.0657912][0.603627,0.791606,-0.0948376][0.769603,0.921264,0.546947][0.335764,0.576471,-0.212][0.477983,0.823425,-0.305784][0.806048,0.868087,0.651277][0.273457,0.640558,-0.0700503][0.389777,0.91521,-0.102295][0.864503,0.841788,0.549986][0.273457,0.640558,-0.0700503][0.389777,0.91521,-0.102295][0.864503,0.841788,0.549986][0.335764,0.576471,-0.212][0.477983,0.823425,-0.305784][0.806048,0.868087,0.651277][0.183346,0.639402,-0.218058][0.261651,0.912484,-0.314501][0.885821,0.780709,0.6556][0.273457,0.640558,-0.0700503][0.389777,0.91521,-0.102295][0.864503,0.841788,0.549986][0.183346,0.639402,-0.218058][0.261651,0.912484,-0.314501][0.885821,0.780709,0.6556][0.107539,0.688134,-0.0700503][0.154438,0.982693,-0.102295][0.937242,0.741531,0.549986][0.107539,0.688134,-0.0700503][0.154438,0.982693,-0.102295][0.937242,0.741531,0.549986][0.183346,0.639402,-0.218058][0.261651,0.912484,-0.314501][0.885821,0.780709,0.6556][0.0207393,0.666803,-0.212][0.0309959,0.951596,-0.305784][0.944155,0.677732,0.651277][0.107539,0.688134,-0.0700503][0.154438,0.982693,-0.102295][0.937242,0.741531,0.549986][0.0207393,0.666803,-0.212][0.0309959,0.951596,-0.305784][0.944155,0.677732,0.651277][-0.0649165,0.693871,-0.0657913][-0.0924176,0.991194,-0.0948378][0.983396,0.626589,0.546947][-0.0649165,0.693871,-0.0657913][-0.0924176,0.991194,-0.0948378][0.983396,0.626589,0.546947][0.0207393,0.666803,-0.212][0.0309959,0.951596,-0.305784][0.944155,0.677732,0.651277][-0.143019,0.657151,-0.194161][-0.203582,0.938268,-0.279657][0.977808,0.564879,0.638548][0.469524,0.481507,-0.194161][0.669853,0.687814,-0.279657][0.709268,0.935012,0.638548][0.493373,0.385465,-0.31305][0.704818,0.550664,-0.447214][0.638714,0.927518,0.723383][0.374567,0.478191,-0.347898][0.534106,0.683756,-0.497201][0.730319,0.870133,0.74825][0.469524,0.481507,-0.194161][0.669853,0.687814,-0.279657][0.709268,0.935012,0.638548][0.374567,0.478191,-0.347898][0.534106,0.683756,-0.497201][0.730319,0.870133,0.74825][0.335764,0.576471,-0.212][0.477983,0.823425,-0.305784][0.806048,0.868087,0.651277][0.335764,0.576471,-0.212][0.477983,0.823425,-0.305784][0.806048,0.868087,0.651277][0.374567,0.478191,-0.347898][0.534106,0.683756,-0.497201][0.730319,0.870133,0.74825][0.237471,0.547566,-0.365759][0.338827,0.7824,-0.522538][0.810676,0.794674,0.760995][0.335764,0.576471,-0.212][0.477983,0.823425,-0.305784][0.806048,0.868087,0.651277][0.237471,0.547566,-0.365759][0.338827,0.7824,-0.522538][0.810676,0.794674,0.760995][0.183346,0.639402,-0.218058][0.261651,0.912484,-0.314501][0.885821,0.780709,0.6556][0.183346,0.639402,-0.218058][0.261651,0.912484,-0.314501][0.885821,0.780709,0.6556][0.237471,0.547566,-0.365759][0.338827,0.7824,-0.522538][0.810676,0.794674,0.760995][0.0887788,0.590202,-0.365759][0.127267,0.843064,-0.522538][0.875863,0.704826,0.760995][0.183346,0.639402,-0.218058][0.261651,0.912484,-0.314501][0.885821,0.780709,0.6556][0.0887788,0.590202,-0.365759][0.127267,0.843064,-0.522538][0.875863,0.704826,0.760995][0.0207393,0.666803,-0.212][0.0309959,0.951596,-0.305784][0.944155,0.677732,0.651277][0.0207393,0.666803,-0.212][0.0309959,0.951596,-0.305784][0.944155,0.677732,0.651277][0.0887788,0.590202,-0.365759][0.127267,0.843064,-0.522538][0.875863,0.704826,0.760995][-0.0642485,0.604019,-0.347898][-0.0906117,0.862891,-0.497201][0.922696,0.604976,0.74825][0.0207393,0.666803,-0.212][0.0309959,0.951596,-0.305784][0.944155,0.677732,0.651277][-0.0642485,0.604019,-0.347898][-0.0906117,0.862891,-0.497201][0.922696,0.604976,0.74825][-0.143019,0.657151,-0.194161][-0.203582,0.938268,-0.279657][0.977808,0.564879,0.638548][-0.143019,0.657151,-0.194161][-0.203582,0.938268,-0.279657][0.977808,0.564879,0.638548][-0.0642485,0.604019,-0.347898][-0.0906117,0.862891,-0.497201][0.922696,0.604976,0.74825][-0.214138,0.588341,-0.31305][-0.305912,0.840487,-0.447214][0.948889,0.5,0.723383][0.625718,0.0218506,0.31305][0.893882,0.0312151,0.447214][0.361286,0.927518,0.276617][0.669183,-0.0670512,0.194161][0.955256,-0.0963231,0.279657][0.290732,0.935012,0.361452][0.662875,0.113568,0.194161][0.94621,0.162724,0.279657][0.413966,0.975109,0.361452][0.669183,-0.0670512,0.194161][0.955256,-0.0963231,0.279657][0.290732,0.935012,0.361452][0.679971,-0.152679,0.0657912][0.97124,-0.218401,0.0948376][0.230398,0.921264,0.453053][0.696266,0.0243142,0.0679831][0.994791,0.0347388,0.0958363][0.345646,0.97572,0.451489][0.669183,-0.0670512,0.194161][0.955256,-0.0963231,0.279657][0.290732,0.935012,0.361452][0.696266,0.0243142,0.0679831][0.994791,0.0347388,0.0958363][0.345646,0.97572,0.451489][0.662875,0.113568,0.194161][0.94621,0.162724,0.279657][0.413966,0.975109,0.361452][0.662875,0.113568,0.194161][0.94621,0.162724,0.279657][0.413966,0.975109,0.361452][0.696266,0.0243142,0.0679831][0.994791,0.0347388,0.0958363][0.345646,0.97572,0.451489][0.667664,0.199739,0.0657912][0.953639,0.285619,0.0948374][0.470848,0.999501,0.453053][0.679971,-0.152679,0.0657912][0.97124,-0.218401,0.0948376][0.230398,0.921264,0.453053][0.657556,-0.230851,-0.0657911][0.939393,-0.329464,-0.0948373][0.183228,0.886945,0.546947][0.693709,-0.0621297,-0.0700502][0.990864,-0.0878847,-0.102294][0.288034,0.952768,0.549986][0.679971,-0.152679,0.0657912][0.97124,-0.218401,0.0948376][0.230398,0.921264,0.453053][0.693709,-0.0621297,-0.0700502][0.990864,-0.0878847,-0.102294][0.288034,0.952768,0.549986][0.696266,0.0243142,0.0679831][0.994791,0.0347388,0.0958363][0.345646,0.97572,0.451489][0.696266,0.0243142,0.0679831][0.994791,0.0347388,0.0958363][0.345646,0.97572,0.451489][0.693709,-0.0621297,-0.0700502][0.990864,-0.0878847,-0.102294][0.288034,0.952768,0.549986][0.687686,0.110369,-0.0700502][0.98232,0.15679,-0.102294][0.405727,0.991063,0.549986][0.696266,0.0243142,0.0679831][0.994791,0.0347388,0.0958363][0.345646,0.97572,0.451489][0.687686,0.110369,-0.0700502][0.98232,0.15679,-0.102294][0.405727,0.991063,0.549986][0.667664,0.199739,0.0657912][0.953639,0.285619,0.0948374][0.470848,0.999501,0.453053][0.667664,0.199739,0.0657912][0.953639,0.285619,0.0948374][0.470848,0.999501,0.453053][0.687686,0.110369,-0.0700502][0.98232,0.15679,-0.102294][0.405727,0.991063,0.549986][0.63985,0.276157,-0.0657912][0.914123,0.39419,-0.0948374][0.529153,0.9995,0.546947][0.657556,-0.230851,-0.0657911][0.939393,-0.329464,-0.0948373][0.183228,0.886945,0.546947][0.603031,-0.29775,-0.194161][0.861146,-0.424522,-0.279657][0.151526,0.833731,0.638548][0.652013,-0.141191,-0.212][0.930828,-0.200137,-0.305784][0.244993,0.905222,0.651277][0.657556,-0.230851,-0.0657911][0.939393,-0.329464,-0.0948373][0.183228,0.886945,0.546947][0.652013,-0.141191,-0.212][0.930828,-0.200137,-0.305784][0.244993,0.905222,0.651277][0.693709,-0.0621297,-0.0700502][0.990864,-0.0878847,-0.102294][0.288034,0.952768,0.549986][0.693709,-0.0621297,-0.0700502][0.990864,-0.0878847,-0.102294][0.288034,0.952768,0.549986][0.652013,-0.141191,-0.212][0.930828,-0.200137,-0.305784][0.244993,0.905222,0.651277][0.664764,0.023214,-0.218058][0.948679,0.0331285,-0.314501][0.35263,0.954197,0.6556][0.693709,-0.0621297,-0.0700502][0.990864,-0.0878847,-0.102294][0.288034,0.952768,0.549986][0.664764,0.023214,-0.218058][0.948679,0.0331285,-0.314501][0.35263,0.954197,0.6556][0.687686,0.110369,-0.0700502][0.98232,0.15679,-0.102294][0.405727,0.991063,0.549986][0.687686,0.110369,-0.0700502][0.98232,0.15679,-0.102294][0.405727,0.991063,0.549986][0.664764,0.023214,-0.218058][0.948679,0.0331285,-0.314501][0.35263,0.954197,0.6556][0.640576,0.186329,-0.212][0.9146,0.264581,-0.305784][0.468455,0.977932,0.651277][0.687686,0.110369,-0.0700502][0.98232,0.15679,-0.102294][0.405727,0.991063,0.549986][0.640576,0.186329,-0.212][0.9146,0.264581,-0.305784][0.468455,0.977932,0.651277][0.63985,0.276157,-0.0657912][0.914123,0.39419,-0.0948374][0.529153,0.9995,0.546947][0.63985,0.276157,-0.0657912][0.914123,0.39419,-0.0948374][0.529153,0.9995,0.546947][0.640576,0.186329,-0.212][0.9146,0.264581,-0.305784][0.468455,0.977932,0.651277][0.580792,0.33909,-0.194161][0.829435,0.483558,-0.279657][0.586034,0.975109,0.638548][0.603031,-0.29775,-0.194161][0.861146,-0.424522,-0.279657][0.151526,0.833731,0.638548][0.51906,-0.35011,-0.313049][0.741514,-0.500158,-0.447213][0.136841,0.764221,0.723383][0.570534,-0.208466,-0.347898][0.815338,-0.296673,-0.497201][0.219648,0.833731,0.74825][0.603031,-0.29775,-0.194161][0.861146,-0.424522,-0.279657][0.151526,0.833731,0.638548][0.570534,-0.208466,-0.347898][0.815338,-0.296673,-0.497201][0.219648,0.833731,0.74825][0.652013,-0.141191,-0.212][0.930828,-0.200137,-0.305784][0.244993,0.905222,0.651277][0.652013,-0.141191,-0.212][0.930828,-0.200137,-0.305784][0.244993,0.905222,0.651277][0.570534,-0.208466,-0.347898][0.815338,-0.296673,-0.497201][0.219648,0.833731,0.74825][0.594148,-0.0566413,-0.365759][0.84881,-0.0804689,-0.522538][0.316145,0.886945,0.760995][0.652013,-0.141191,-0.212][0.930828,-0.200137,-0.305784][0.244993,0.905222,0.651277][0.594148,-0.0566413,-0.365759][0.84881,-0.0804689,-0.522538][0.316145,0.886945,0.760995][0.664764,0.023214,-0.218058][0.948679,0.0331285,-0.314501][0.35263,0.954197,0.6556][0.664764,0.023214,-0.218058][0.948679,0.0331285,-0.314501][0.35263,0.954197,0.6556][0.594148,-0.0566413,-0.365759][0.84881,-0.0804689,-0.522538][0.316145,0.886945,0.760995][0.58875,0.0979488,-0.365759][0.841129,0.139483,-0.522538][0.42162,0.921264,0.760995][0.664764,0.023214,-0.218058][0.948679,0.0331285,-0.314501][0.35263,0.954197,0.6556][0.58875,0.0979488,-0.365759][0.841129,0.139483,-0.522538][0.42162,0.921264,0.760995][0.640576,0.186329,-0.212][0.9146,0.264581,-0.305784][0.468455,0.977932,0.651277][0.640576,0.186329,-0.212][0.9146,0.264581,-0.305784][0.468455,0.977932,0.651277][0.58875,0.0979488,-0.365759][0.841129,0.139483,-0.522538][0.42162,0.921264,0.760995][0.554602,0.247756,-0.347898][0.792657,0.352825,-0.497201][0.530922,0.935012,0.74825][0.640576,0.186329,-0.212][0.9146,0.264581,-0.305784][0.468455,0.977932,0.651277][0.554602,0.247756,-0.347898][0.792657,0.352825,-0.497201][0.530922,0.935012,0.74825][0.580792,0.33909,-0.194161][0.829435,0.483558,-0.279657][0.586034,0.975109,0.638548][0.580792,0.33909,-0.194161][0.829435,0.483558,-0.279657][0.586034,0.975109,0.638548][0.554602,0.247756,-0.347898][0.792657,0.352825,-0.497201][0.530922,0.935012,0.74825][0.493373,0.385465,-0.31305][0.704818,0.550664,-0.447214][0.638714,0.927518,0.723383][0.214138,-0.588341,0.31305][0.305912,-0.840487,0.447214][0.0511111,0.5,0.276617][0.143019,-0.657151,0.194161][0.203582,-0.938268,0.279657][0.0221917,0.435121,0.361452][0.312849,-0.595338,0.194161][0.447154,-0.849615,0.279657][0.0221917,0.564879,0.361452][0.143019,-0.657151,0.194161][0.203582,-0.938268,0.279657][0.0221917,0.435121,0.361452][0.0649164,-0.693871,0.0657913][0.0924179,-0.991194,0.0948375][0.0166042,0.373411,0.453053][0.238282,-0.654675,0.0679832][0.340446,-0.935367,0.0958363][0.000499517,0.5,0.451489][0.143019,-0.657151,0.194161][0.203582,-0.938268,0.279657][0.0221917,0.435121,0.361452][0.238282,-0.654675,0.0679832][0.340446,-0.935367,0.0958363][0.000499517,0.5,0.451489][0.312849,-0.595338,0.194161][0.447154,-0.849615,0.279657][0.0221917,0.564879,0.361452][0.312849,-0.595338,0.194161][0.447154,-0.849615,0.279657][0.0221917,0.564879,0.361452][0.238282,-0.654675,0.0679832][0.340446,-0.935367,0.0958363][0.000499517,0.5,0.451489][0.396283,-0.573264,0.0657913][0.566331,-0.818703,0.0948375][0.0166042,0.62659,0.453053][0.0649164,-0.693871,0.0657913][0.0924179,-0.991194,0.0948375][0.0166042,0.373411,0.453053][-0.0163564,-0.696709,-0.0657911][-0.0230503,-0.995226,-0.0948372][0.0346214,0.317881,0.546947][0.155279,-0.678956,-0.0700501][0.222611,-0.969526,-0.102294][0.00449464,0.438038,0.549986][0.0649164,-0.693871,0.0657913][0.0924179,-0.991194,0.0948375][0.0166042,0.373411,0.453053][0.155279,-0.678956,-0.0700501][0.222611,-0.969526,-0.102294][0.00449464,0.438038,0.549986][0.238282,-0.654675,0.0679832][0.340446,-0.935367,0.0958363][0.000499517,0.5,0.451489][0.238282,-0.654675,0.0679832][0.340446,-0.935367,0.0958363][0.000499517,0.5,0.451489][0.155279,-0.678956,-0.0700501][0.222611,-0.969526,-0.102294][0.00449464,0.438038,0.549986][0.317474,-0.619922,-0.0700501][0.452669,-0.885791,-0.102294][0.00449467,0.561962,0.549986][0.238282,-0.654675,0.0679832][0.340446,-0.935367,0.0958363][0.000499517,0.5,0.451489][0.317474,-0.619922,-0.0700501][0.452669,-0.885791,-0.102294][0.00449467,0.561962,0.549986][0.396283,-0.573264,0.0657913][0.566331,-0.818703,0.0948375][0.0166042,0.62659,0.453053][0.396283,-0.573264,0.0657913][0.566331,-0.818703,0.0948375][0.0166042,0.62659,0.453053][0.317474,-0.619922,-0.0700501][0.452669,-0.885791,-0.102294][0.00449467,0.561962,0.549986][0.460366,-0.523197,-0.0657911][0.657376,-0.747571,-0.0948373][0.0346215,0.682119,0.546947][-0.0163564,-0.696709,-0.0657911][-0.0230503,-0.995226,-0.0948372][0.0346214,0.317881,0.546947][-0.0968305,-0.665526,-0.194161][-0.137636,-0.950183,-0.279657][0.0753636,0.271245,0.638548][0.0672025,-0.663732,-0.212][0.0973002,-0.947116,-0.305784][0.0363493,0.382354,0.651277][-0.0163564,-0.696709,-0.0657911][-0.0230503,-0.995226,-0.0948372][0.0346214,0.317881,0.546947][0.0672025,-0.663732,-0.212][0.0973002,-0.947116,-0.305784][0.0363493,0.382354,0.651277][0.155279,-0.678956,-0.0700501][0.222611,-0.969526,-0.102294][0.00449464,0.438038,0.549986][0.155279,-0.678956,-0.0700501][0.222611,-0.969526,-0.102294][0.00449464,0.438038,0.549986][0.0672025,-0.663732,-0.212][0.0973002,-0.947116,-0.305784][0.0363493,0.382354,0.651277][0.227501,-0.625055,-0.218058][0.324665,-0.89201,-0.314501][0.0230991,0.5,0.6556][0.155279,-0.678956,-0.0700501][0.222611,-0.969526,-0.102294][0.00449464,0.438038,0.549986][0.227501,-0.625055,-0.218058][0.324665,-0.89201,-0.314501][0.0230991,0.5,0.6556][0.317474,-0.619922,-0.0700501][0.452669,-0.885791,-0.102294][0.00449467,0.561962,0.549986][0.317474,-0.619922,-0.0700501][0.452669,-0.885791,-0.102294][0.00449467,0.561962,0.549986][0.227501,-0.625055,-0.218058][0.324665,-0.89201,-0.314501][0.0230991,0.5,0.6556][0.375158,-0.551645,-0.212][0.534258,-0.788077,-0.305784][0.0363493,0.617646,0.651277][0.317474,-0.619922,-0.0700501][0.452669,-0.885791,-0.102294][0.00449467,0.561962,0.549986][0.375158,-0.551645,-0.212][0.534258,-0.788077,-0.305784][0.0363493,0.617646,0.651277][0.460366,-0.523197,-0.0657911][0.657376,-0.747571,-0.0948373][0.0346215,0.682119,0.546947][0.460366,-0.523197,-0.0657911][0.657376,-0.747571,-0.0948373][0.0346215,0.682119,0.546947][0.375158,-0.551645,-0.212][0.534258,-0.788077,-0.305784][0.0363493,0.617646,0.651277][0.501969,-0.447581,-0.194161][0.716201,-0.639412,-0.279657][0.0753637,0.728755,0.638548][-0.0968305,-0.665526,-0.194161][-0.137636,-0.950183,-0.279657][0.0753636,0.271245,0.638548][-0.172576,-0.601845,-0.313049][-0.246537,-0.859779,-0.447214][0.136841,0.235779,0.723383][-0.0219578,-0.607029,-0.347898][-0.030199,-0.86711,-0.497201][0.0964144,0.336124,0.74825][-0.0968305,-0.665526,-0.194161][-0.137636,-0.950183,-0.279657][0.0753636,0.271245,0.638548][-0.0219578,-0.607029,-0.347898][-0.030199,-0.86711,-0.497201][0.0964144,0.336124,0.74825][0.0672025,-0.663732,-0.212][0.0973002,-0.947116,-0.305784][0.0363493,0.382354,0.651277][0.0672025,-0.663732,-0.212][0.0973002,-0.947116,-0.305784][0.0363493,0.382354,0.651277][-0.0219578,-0.607029,-0.347898][-0.030199,-0.86711,-0.497201][0.0964144,0.336124,0.74825][0.129733,-0.582572,-0.365758][0.185766,-0.832133,-0.522538][0.0756952,0.444471,0.760995][0.0672025,-0.663732,-0.212][0.0973002,-0.947116,-0.305784][0.0363493,0.382354,0.651277][0.129733,-0.582572,-0.365758][0.185766,-0.832133,-0.522538][0.0756952,0.444471,0.760995][0.227501,-0.625055,-0.218058][0.324665,-0.89201,-0.314501][0.0230991,0.5,0.6556][0.227501,-0.625055,-0.218058][0.324665,-0.89201,-0.314501][0.0230991,0.5,0.6556][0.129733,-0.582572,-0.365758][0.185766,-0.832133,-0.522538][0.0756952,0.444471,0.760995][0.275089,-0.529667,-0.365758][0.392579,-0.756859,-0.522538][0.0756952,0.555529,0.760995][0.227501,-0.625055,-0.218058][0.324665,-0.89201,-0.314501][0.0230991,0.5,0.6556][0.275089,-0.529667,-0.365758][0.392579,-0.756859,-0.522538][0.0756952,0.555529,0.760995][0.375158,-0.551645,-0.212][0.534258,-0.788077,-0.305784][0.0363493,0.617646,0.651277][0.375158,-0.551645,-0.212][0.534258,-0.788077,-0.305784][0.0363493,0.617646,0.651277][0.275089,-0.529667,-0.365758][0.392579,-0.756859,-0.522538][0.0756952,0.555529,0.760995][0.407012,-0.450897,-0.347898][0.580501,-0.644833,-0.497201][0.0964145,0.663876,0.74825][0.375158,-0.551645,-0.212][0.534258,-0.788077,-0.305784][0.0363493,0.617646,0.651277][0.407012,-0.450897,-0.347898][0.580501,-0.644833,-0.497201][0.0964145,0.663876,0.74825][0.501969,-0.447581,-0.194161][0.716201,-0.639412,-0.279657][0.0753637,0.728755,0.638548][0.501969,-0.447581,-0.194161][0.716201,-0.639412,-0.279657][0.0753637,0.728755,0.638548][0.407012,-0.450897,-0.347898][0.580501,-0.644833,-0.497201][0.0964145,0.663876,0.74825][0.51906,-0.35011,-0.313049][0.741514,-0.500158,-0.447213][0.136841,0.764221,0.723383][-0.493373,-0.385465,0.31305][-0.704818,-0.550664,0.447214][0.361286,0.072482,0.276617][-0.580792,-0.33909,0.194161][-0.829436,-0.483558,0.279657][0.413966,0.0248907,0.361452][-0.469524,-0.481507,0.194161][-0.669853,-0.687814,0.279657][0.290732,0.064988,0.361452][-0.580792,-0.33909,0.194161][-0.829436,-0.483558,0.279657][0.413966,0.0248907,0.361452][-0.63985,-0.276157,0.0657912][-0.914123,-0.39419,0.0948375][0.470847,0.000499547,0.453053][-0.549,-0.428926,0.0679831][-0.784384,-0.612827,0.0958363][0.345646,0.0242799,0.451489][-0.580792,-0.33909,0.194161][-0.829436,-0.483558,0.279657][0.413966,0.0248907,0.361452][-0.549,-0.428926,0.0679831][-0.784384,-0.612827,0.0958363][0.345646,0.0242799,0.451489][-0.469524,-0.481507,0.194161][-0.669853,-0.687814,0.279657][0.290732,0.064988,0.361452][-0.469524,-0.481507,0.194161][-0.669853,-0.687814,0.279657][0.290732,0.064988,0.361452][-0.549,-0.428926,0.0679831][-0.784384,-0.612827,0.0958363][0.345646,0.0242799,0.451489][-0.422748,-0.554036,0.0657912][-0.603627,-0.791606,0.0948373][0.230397,0.0787362,0.453053][-0.63985,-0.276157,0.0657912][-0.914123,-0.39419,0.0948375][0.470847,0.000499547,0.453053][-0.667664,-0.199739,-0.0657912][-0.953639,-0.285619,-0.0948373][0.529152,0.000499517,0.546947][-0.597742,-0.357488,-0.0700502][-0.853283,-0.511315,-0.102295][0.405727,0.00893748,0.549986][-0.63985,-0.276157,0.0657912][-0.914123,-0.39419,0.0948375][0.470847,0.000499547,0.453053][-0.597742,-0.357488,-0.0700502][-0.853283,-0.511315,-0.102295][0.405727,0.00893748,0.549986][-0.549,-0.428926,0.0679831][-0.784384,-0.612827,0.0958363][0.345646,0.0242799,0.451489][-0.549,-0.428926,0.0679831][-0.784384,-0.612827,0.0958363][0.345646,0.0242799,0.451489][-0.597742,-0.357488,-0.0700502][-0.853283,-0.511315,-0.102295][0.405727,0.00893748,0.549986][-0.491476,-0.493502,-0.0700502][-0.702555,-0.704239,-0.102295][0.288034,0.0472321,0.549986][-0.549,-0.428926,0.0679831][-0.784384,-0.612827,0.0958363][0.345646,0.0242799,0.451489][-0.491476,-0.493502,-0.0700502][-0.702555,-0.704239,-0.102295][0.288034,0.0472321,0.549986][-0.422748,-0.554036,0.0657912][-0.603627,-0.791606,0.0948373][0.230397,0.0787362,0.453053][-0.422748,-0.554036,0.0657912][-0.603627,-0.791606,0.0948373][0.230397,0.0787362,0.453053][-0.491476,-0.493502,-0.0700502][-0.702555,-0.704239,-0.102295][0.288034,0.0472321,0.549986][-0.355329,-0.599511,-0.0657911][-0.507842,-0.856214,-0.0948373][0.183228,0.113055,0.546947][-0.667664,-0.199739,-0.0657912][-0.953639,-0.285619,-0.0948373][0.529152,0.000499517,0.546947][-0.662875,-0.113568,-0.194161][-0.94621,-0.162724,-0.279657][0.586034,0.0248907,0.638548][-0.61048,-0.269018,-0.212][-0.870693,-0.385213,-0.305784][0.468455,0.0220683,0.651277][-0.667664,-0.199739,-0.0657912][-0.953639,-0.285619,-0.0948373][0.529152,0.000499517,0.546947][-0.61048,-0.269018,-0.212][-0.870693,-0.385213,-0.305784][0.468455,0.0220683,0.651277][-0.597742,-0.357488,-0.0700502][-0.853283,-0.511315,-0.102295][0.405727,0.00893748,0.549986][-0.597742,-0.357488,-0.0700502][-0.853283,-0.511315,-0.102295][0.405727,0.00893748,0.549986][-0.61048,-0.269018,-0.212][-0.870693,-0.385213,-0.305784][0.468455,0.0220683,0.651277][-0.524161,-0.409519,-0.218058][-0.748025,-0.584421,-0.314501][0.352629,0.0458035,0.6556][-0.597742,-0.357488,-0.0700502][-0.853283,-0.511315,-0.102295][0.405727,0.00893748,0.549986][-0.524161,-0.409519,-0.218058][-0.748025,-0.584421,-0.314501][0.352629,0.0458035,0.6556][-0.491476,-0.493502,-0.0700502][-0.702555,-0.704239,-0.102295][0.288034,0.0472321,0.549986][-0.491476,-0.493502,-0.0700502][-0.702555,-0.704239,-0.102295][0.288034,0.0472321,0.549986][-0.524161,-0.409519,-0.218058][-0.748025,-0.584421,-0.314501][0.352629,0.0458035,0.6556][-0.408715,-0.527264,-0.212][-0.58441,-0.751639,-0.305784][0.244993,0.0947776,0.651277][-0.491476,-0.493502,-0.0700502][-0.702555,-0.704239,-0.102295][0.288034,0.0472321,0.549986][-0.408715,-0.527264,-0.212][-0.58441,-0.751639,-0.305784][0.244993,0.0947776,0.651277][-0.355329,-0.599511,-0.0657911][-0.507842,-0.856214,-0.0948373][0.183228,0.113055,0.546947][-0.355329,-0.599511,-0.0657911][-0.507842,-0.856214,-0.0948373][0.183228,0.113055,0.546947][-0.408715,-0.527264,-0.212][-0.58441,-0.751639,-0.305784][0.244993,0.0947776,0.651277][-0.270558,-0.615711,-0.194161][-0.386799,-0.878737,-0.279657][0.151526,0.166269,0.638548][-0.662875,-0.113568,-0.194161][-0.94621,-0.162724,-0.279657][0.586034,0.0248907,0.638548][-0.625718,-0.0218505,-0.31305][-0.893882,-0.0312152,-0.447214][0.638714,0.0724819,0.723383][-0.584105,-0.166699,-0.347898][-0.834002,-0.239231,-0.497201][0.530922,0.064988,0.74825][-0.662875,-0.113568,-0.194161][-0.94621,-0.162724,-0.279657][0.586034,0.0248907,0.638548][-0.584105,-0.166699,-0.347898][-0.834002,-0.239231,-0.497201][0.530922,0.064988,0.74825][-0.61048,-0.269018,-0.212][-0.870693,-0.385213,-0.305784][0.468455,0.0220683,0.651277][-0.61048,-0.269018,-0.212][-0.870693,-0.385213,-0.305784][0.468455,0.0220683,0.651277][-0.584105,-0.166699,-0.347898][-0.834002,-0.239231,-0.497201][0.530922,0.064988,0.74825][-0.513969,-0.303408,-0.365759][-0.734,-0.433817,-0.522538][0.42162,0.0787361,0.760995][-0.61048,-0.269018,-0.212][-0.870693,-0.385213,-0.305784][0.468455,0.0220683,0.651277][-0.513969,-0.303408,-0.365759][-0.734,-0.433817,-0.522538][0.42162,0.0787361,0.760995][-0.524161,-0.409519,-0.218058][-0.748025,-0.584421,-0.314501][0.352629,0.0458035,0.6556][-0.524161,-0.409519,-0.218058][-0.748025,-0.584421,-0.314501][0.352629,0.0458035,0.6556][-0.513969,-0.303408,-0.365759][-0.734,-0.433817,-0.522538][0.42162,0.0787361,0.760995][-0.418736,-0.425301,-0.365759][-0.598502,-0.607247,-0.522538][0.316145,0.113055,0.760995][-0.524161,-0.409519,-0.218058][-0.748025,-0.584421,-0.314501][0.352629,0.0458035,0.6556][-0.418736,-0.425301,-0.365759][-0.598502,-0.607247,-0.522538][0.316145,0.113055,0.760995][-0.408715,-0.527264,-0.212][-0.58441,-0.751639,-0.305784][0.244993,0.0947776,0.651277][-0.408715,-0.527264,-0.212][-0.58441,-0.751639,-0.305784][0.244993,0.0947776,0.651277][-0.418736,-0.425301,-0.365759][-0.598502,-0.607247,-0.522538][0.316145,0.113055,0.760995][-0.303055,-0.526426,-0.347898][-0.433888,-0.751354,-0.497201][0.219648,0.166269,0.74825][-0.408715,-0.527264,-0.212][-0.58441,-0.751639,-0.305784][0.244993,0.0947776,0.651277][-0.303055,-0.526426,-0.347898][-0.433888,-0.751354,-0.497201][0.219648,0.166269,0.74825][-0.270558,-0.615711,-0.194161][-0.386799,-0.878737,-0.279657][0.151526,0.166269,0.638548][-0.270558,-0.615711,-0.194161][-0.386799,-0.878737,-0.279657][0.151526,0.166269,0.638548][-0.303055,-0.526426,-0.347898][-0.433888,-0.751354,-0.497201][0.219648,0.166269,0.74825][-0.172576,-0.601845,-0.313049][-0.246537,-0.859779,-0.447214][0.136841,0.235779,0.723383][-0.519059,0.35011,0.313049][-0.741513,0.500158,0.447214][0.863159,0.235779,0.276617][-0.501968,0.447582,0.194161][-0.716201,0.639412,0.279657][0.924636,0.271245,0.361452][-0.603031,0.29775,0.194161][-0.861146,0.424522,0.279657][0.848474,0.166269,0.361452][-0.501968,0.447582,0.194161][-0.716201,0.639412,0.279657][0.924636,0.271245,0.361452][-0.460366,0.523197,0.0657911][-0.657376,0.747571,0.0948372][0.965379,0.317881,0.453053][-0.577583,0.389585,0.067983][-0.825221,0.556619,0.0958364][0.904104,0.205989,0.451489][-0.501968,0.447582,0.194161][-0.716201,0.639412,0.279657][0.924636,0.271245,0.361452][-0.577583,0.389585,0.067983][-0.825221,0.556619,0.0958364][0.904104,0.205989,0.451489][-0.603031,0.29775,0.194161][-0.861146,0.424522,0.279657][0.848474,0.166269,0.361452][-0.603031,0.29775,0.194161][-0.861146,0.424522,0.279657][0.848474,0.166269,0.361452][-0.577583,0.389585,0.067983][-0.825221,0.556619,0.0958364][0.904104,0.205989,0.451489][-0.657556,0.230851,0.0657911][-0.939393,0.329464,0.0948377][0.816772,0.113055,0.453053][-0.460366,0.523197,0.0657911][-0.657376,0.747571,0.0948372][0.965379,0.317881,0.453053][-0.396283,0.573264,-0.0657913][-0.566331,0.818703,-0.0948377][0.983396,0.37341,0.546947][-0.524704,0.458016,-0.0700503][-0.749968,0.653516,-0.102295][0.937242,0.258469,0.549986][-0.460366,0.523197,0.0657911][-0.657376,0.747571,0.0948372][0.965379,0.317881,0.453053][-0.524704,0.458016,-0.0700503][-0.749968,0.653516,-0.102295][0.937242,0.258469,0.549986][-0.577583,0.389585,0.067983][-0.825221,0.556619,0.0958364][0.904104,0.205989,0.451489][-0.577583,0.389585,0.067983][-0.825221,0.556619,0.0958364][0.904104,0.205989,0.451489][-0.524704,0.458016,-0.0700503][-0.749968,0.653516,-0.102295][0.937242,0.258469,0.549986][-0.621223,0.314921,-0.0700503][-0.886872,0.450548,-0.102295][0.864503,0.158212,0.549986][-0.577583,0.389585,0.067983][-0.825221,0.556619,0.0958364][0.904104,0.205989,0.451489][-0.621223,0.314921,-0.0700503][-0.886872,0.450548,-0.102295][0.864503,0.158212,0.549986][-0.657556,0.230851,0.0657911][-0.939393,0.329464,0.0948377][0.816772,0.113055,0.453053][-0.657556,0.230851,0.0657911][-0.939393,0.329464,0.0948377][0.816772,0.113055,0.453053][-0.621223,0.314921,-0.0700503][-0.886872,0.450548,-0.102295][0.864503,0.158212,0.549986][-0.679971,0.152679,-0.0657913][-0.97124,0.218401,-0.0948375][0.769603,0.0787361,0.546947][-0.396283,0.573264,-0.0657913][-0.566331,0.818703,-0.0948377][0.983396,0.37341,0.546947][-0.312849,0.595338,-0.194161][-0.447154,0.849615,-0.279657][0.977808,0.435121,0.638548][-0.4445,0.49747,-0.212][-0.635418,0.709041,-0.305784][0.944155,0.322268,0.651277][-0.396283,0.573264,-0.0657913][-0.566331,0.818703,-0.0948377][0.983396,0.37341,0.546947][-0.4445,0.49747,-0.212][-0.635418,0.709041,-0.305784][0.944155,0.322268,0.651277][-0.524704,0.458016,-0.0700503][-0.749968,0.653516,-0.102295][0.937242,0.258469,0.549986][-0.524704,0.458016,-0.0700503][-0.749968,0.653516,-0.102295][0.937242,0.258469,0.549986][-0.4445,0.49747,-0.212][-0.635418,0.709041,-0.305784][0.944155,0.322268,0.651277][-0.55145,0.371958,-0.218058][-0.78697,0.530818,-0.314502][0.885821,0.219291,0.6556][-0.524704,0.458016,-0.0700503][-0.749968,0.653516,-0.102295][0.937242,0.258469,0.549986][-0.55145,0.371958,-0.218058][-0.78697,0.530818,-0.314502][0.885821,0.219291,0.6556][-0.621223,0.314921,-0.0700503][-0.886872,0.450548,-0.102295][0.864503,0.158212,0.549986][-0.621223,0.314921,-0.0700503][-0.886872,0.450548,-0.102295][0.864503,0.158212,0.549986][-0.55145,0.371958,-0.218058][-0.78697,0.530818,-0.314502][0.885821,0.219291,0.6556][-0.627758,0.225778,-0.212][-0.895443,0.323538,-0.305784][0.806047,0.131913,0.651277][-0.621223,0.314921,-0.0700503][-0.886872,0.450548,-0.102295][0.864503,0.158212,0.549986][-0.627758,0.225778,-0.212][-0.895443,0.323538,-0.305784][0.806047,0.131913,0.651277][-0.679971,0.152679,-0.0657913][-0.97124,0.218401,-0.0948375][0.769603,0.0787361,0.546947][-0.679971,0.152679,-0.0657913][-0.97124,0.218401,-0.0948375][0.769603,0.0787361,0.546947][-0.627758,0.225778,-0.212][-0.895443,0.323538,-0.305784][0.806047,0.131913,0.651277][-0.669183,0.0670513,-0.194161][-0.955256,0.0963227,-0.279657][0.709268,0.064988,0.638548][-0.312849,0.595338,-0.194161][-0.447154,0.849615,-0.279657][0.977808,0.435121,0.638548][-0.214138,0.588341,-0.31305][-0.305912,0.840487,-0.447214][0.948889,0.5,0.723383][-0.339039,0.504003,-0.347898][-0.485243,0.719257,-0.497201][0.922696,0.395024,0.74825][-0.312849,0.595338,-0.194161][-0.447154,0.849615,-0.279657][0.977808,0.435121,0.638548][-0.339039,0.504003,-0.347898][-0.485243,0.719257,-0.497201][0.922696,0.395024,0.74825][-0.4445,0.49747,-0.212][-0.635418,0.709041,-0.305784][0.944155,0.322268,0.651277][-0.4445,0.49747,-0.212][-0.635418,0.709041,-0.305784][0.944155,0.322268,0.651277][-0.339039,0.504003,-0.347898][-0.485243,0.719257,-0.497201][0.922696,0.395024,0.74825][-0.447383,0.395055,-0.365759][-0.639403,0.564019,-0.522538][0.875863,0.295174,0.760995][-0.4445,0.49747,-0.212][-0.635418,0.709041,-0.305784][0.944155,0.322268,0.651277][-0.447383,0.395055,-0.365759][-0.639403,0.564019,-0.522538][0.875863,0.295174,0.760995][-0.55145,0.371958,-0.218058][-0.78697,0.530818,-0.314502][0.885821,0.219291,0.6556][-0.55145,0.371958,-0.218058][-0.78697,0.530818,-0.314502][0.885821,0.219291,0.6556][-0.447383,0.395055,-0.365759][-0.639403,0.564019,-0.522538][0.875863,0.295174,0.760995][-0.533882,0.266816,-0.365759][-0.762474,0.381559,-0.522538][0.810676,0.205326,0.760995][-0.55145,0.371958,-0.218058][-0.78697,0.530818,-0.314502][0.885821,0.219291,0.6556][-0.533882,0.266816,-0.365759][-0.762474,0.381559,-0.522538][0.810676,0.205326,0.760995][-0.627758,0.225778,-0.212][-0.895443,0.323538,-0.305784][0.806047,0.131913,0.651277][-0.627758,0.225778,-0.212][-0.895443,0.323538,-0.305784][0.806047,0.131913,0.651277][-0.533882,0.266816,-0.365759][-0.762474,0.381559,-0.522538][0.810676,0.205326,0.760995][-0.59431,0.125548,-0.347898][-0.848659,0.180471,-0.497201][0.730319,0.129867,0.74825][-0.627758,0.225778,-0.212][-0.895443,0.323538,-0.305784][0.806047,0.131913,0.651277][-0.59431,0.125548,-0.347898][-0.848659,0.180471,-0.497201][0.730319,0.129867,0.74825][-0.669183,0.0670513,-0.194161][-0.955256,0.0963227,-0.279657][0.709268,0.064988,0.638548][-0.669183,0.0670513,-0.194161][-0.955256,0.0963227,-0.279657][0.709268,0.064988,0.638548][-0.59431,0.125548,-0.347898][-0.848659,0.180471,-0.497201][0.730319,0.129867,0.74825][-0.625718,-0.0218505,-0.31305][-0.893882,-0.0312152,-0.447214][0.638714,0.0724819,0.723383][0,0,0.7][0,0,1][0.0782798,0.0782798,0.000499547][0.153644,0.00536545,0.682909][0.217867,0.00760821,0.975949][0.0725552,0.0959229,0.0126952][0.0423757,0.147782,0.682909][0.060089,0.209556,0.975949][0.0932668,0.0891838,0.0126952][0.153644,0.00536545,0.682909][0.217867,0.00760821,0.975949][0.0725552,0.0959229,0.0126952][0.299785,0.0104688,0.632471][0.427173,0.0149174,0.904047][0.0671102,0.112704,0.0486864][0.197604,0.154386,0.653542][0.28324,0.221291,0.93317][0.0876172,0.107058,0.0336505][0.153644,0.00536545,0.682909][0.217867,0.00760821,0.975949][0.0725552,0.0959229,0.0126952][0.197604,0.154386,0.653542][0.28324,0.221291,0.93317][0.0876172,0.107058,0.0336505][0.0423757,0.147782,0.682909][0.060089,0.209556,0.975949][0.0932668,0.0891838,0.0126952][0.0423757,0.147782,0.682909][0.060089,0.209556,0.975949][0.0932668,0.0891838,0.0126952][0.197604,0.154386,0.653542][0.28324,0.221291,0.93317][0.0876172,0.107058,0.0336505][0.0826822,0.288347,0.632471][0.117816,0.410875,0.904047][0.107522,0.0995554,0.0486864][0.299785,0.0104688,0.632471][0.427173,0.0149174,0.904047][0.0671102,0.112704,0.0486864][0.431287,0.0150609,0.551149][0.616054,0.0215132,0.78741][0.0622106,0.127805,0.106716][0.346062,0.160855,0.586828][0.495359,0.231674,0.837225][0.0822313,0.124158,0.0812561][0.299785,0.0104688,0.632471][0.427173,0.0149174,0.904047][0.0671102,0.112704,0.0486864][0.346062,0.160855,0.586828][0.495359,0.231674,0.837225][0.0822313,0.124158,0.0812561][0.197604,0.154386,0.653542][0.28324,0.221291,0.93317][0.0876172,0.107058,0.0336505][0.197604,0.154386,0.653542][0.28324,0.221291,0.93317][0.0876172,0.107058,0.0336505][0.346062,0.160855,0.586828][0.495359,0.231674,0.837225][0.0822313,0.124158,0.0812561][0.239796,0.296868,0.586828][0.344631,0.424598,0.837225][0.102012,0.117722,0.0812561][0.197604,0.154386,0.653542][0.28324,0.221291,0.93317][0.0876172,0.107058,0.0336505][0.239796,0.296868,0.586828][0.344631,0.424598,0.837225][0.102012,0.117722,0.0812561][0.0826822,0.288347,0.632471][0.117816,0.410875,0.904047][0.107522,0.0995554,0.0486864][0.0826822,0.288347,0.632471][0.117816,0.410875,0.904047][0.107522,0.0995554,0.0486864][0.239796,0.296868,0.586828][0.344631,0.424598,0.837225][0.102012,0.117722,0.0812561][0.118951,0.414832,0.551148][0.169911,0.59255,0.78741][0.120349,0.108888,0.106716][0.431287,0.0150609,0.551149][0.616054,0.0215132,0.78741][0.404389,0.794674,0.106716][0.541729,0.0189176,0.442913][0.774944,0.0270617,0.63145][0.379905,0.870133,0.18395][0.478202,0.165672,0.483607][0.684035,0.239379,0.689053][0.494354,0.863311,0.154912][0.431287,0.0150609,0.551149][0.616054,0.0215132,0.78741][0.0622106,0.127805,0.106716][0.478202,0.165672,0.483607][0.684035,0.239379,0.689053][0.0773309,0.13934,0.154912][0.346062,0.160855,0.586828][0.495359,0.231674,0.837225][0.0822313,0.124158,0.0812561][0.346062,0.160855,0.586828][0.495359,0.231674,0.837225][0.0822313,0.124158,0.0812561][0.478202,0.165672,0.483607][0.684035,0.239379,0.689053][0.0773309,0.13934,0.154912][0.388103,0.30322,0.497427][0.556193,0.434546,0.708392][0.0966188,0.134801,0.14505][0.346062,0.160855,0.586828][0.495359,0.231674,0.837225][0.0822313,0.124158,0.0812561][0.388103,0.30322,0.497427][0.556193,0.434546,0.708392][0.0966188,0.134801,0.14505][0.239796,0.296868,0.586828][0.344631,0.424598,0.837225][0.102012,0.117722,0.0812561][0.239796,0.296868,0.586828][0.344631,0.424598,0.837225][0.102012,0.117722,0.0812561][0.388103,0.30322,0.497427][0.556193,0.434546,0.708392][0.0966188,0.134801,0.14505][0.276438,0.423918,0.483606][0.397752,0.605805,0.689053][0.114888,0.12712,0.154912][0.239796,0.296868,0.586828][0.344631,0.424598,0.837225][0.102012,0.117722,0.0812561][0.276438,0.423918,0.483606][0.397752,0.605805,0.689053][0.114888,0.12712,0.154912][0.118951,0.414832,0.551148][0.169911,0.59255,0.78741][0.120349,0.108888,0.106716][0.118951,0.414832,0.551148][0.169911,0.59255,0.78741][0.750314,0.682119,0.106716][0.276438,0.423918,0.483606][0.397752,0.605805,0.689053][0.717817,0.790601,0.154912][0.149412,0.521061,0.442913][0.213734,0.745378,0.63145][0.814413,0.728755,0.18395][0.541729,0.0189176,0.442913][0.774944,0.0270617,0.63145][0.379905,0.870133,0.18395][0.625718,0.0218506,0.31305][0.893882,0.0312151,0.447214][0.361286,0.927518,0.276617][0.584105,0.166699,0.347898][0.834002,0.239231,0.497201][0.469078,0.935012,0.25175][0.541729,0.0189176,0.442913][0.774944,0.0270617,0.63145][0.379905,0.870133,0.18395][0.584105,0.166699,0.347898][0.834002,0.239231,0.497201][0.469078,0.935012,0.25175][0.478202,0.165672,0.483607][0.684035,0.239379,0.689053][0.494354,0.863311,0.154912][0.478202,0.165672,0.483607][0.684035,0.239379,0.689053][0.494354,0.863311,0.154912][0.584105,0.166699,0.347898][0.834002,0.239231,0.497201][0.469078,0.935012,0.25175][0.513969,0.303408,0.365759][0.734,0.433817,0.522538][0.57838,0.921264,0.239005][0.478202,0.165672,0.483607][0.684035,0.239379,0.689053][0.494354,0.863311,0.154912][0.513969,0.303408,0.365759][0.734,0.433817,0.522538][0.57838,0.921264,0.239005][0.388103,0.30322,0.497427][0.556193,0.434546,0.708392][0.609117,0.8363,0.14505][0.388103,0.30322,0.497427][0.556193,0.434546,0.708392][0.609117,0.8363,0.14505][0.513969,0.303408,0.365759][0.734,0.433817,0.522538][0.57838,0.921264,0.239005][0.418736,0.425301,0.365759][0.598502,0.607247,0.522538][0.683855,0.886945,0.239005][0.388103,0.30322,0.497427][0.556193,0.434546,0.708392][0.609117,0.8363,0.14505][0.418736,0.425301,0.365759][0.598502,0.607247,0.522538][0.683855,0.886945,0.239005][0.276438,0.423918,0.483606][0.397752,0.605805,0.689053][0.717817,0.790601,0.154912][0.276438,0.423918,0.483606][0.397752,0.605805,0.689053][0.717817,0.790601,0.154912][0.418736,0.425301,0.365759][0.598502,0.607247,0.522538][0.683855,0.886945,0.239005][0.303055,0.526426,0.347898][0.433888,0.751354,0.497201][0.780352,0.833731,0.25175][0.276438,0.423918,0.483606][0.397752,0.605805,0.689053][0.717817,0.790601,0.154912][0.303055,0.526426,0.347898][0.433888,0.751354,0.497201][0.780352,0.833731,0.25175][0.149412,0.521061,0.442913][0.213734,0.745378,0.63145][0.814413,0.728755,0.18395][0.149412,0.521061,0.442913][0.213734,0.745378,0.63145][0.814413,0.728755,0.18395][0.303055,0.526426,0.347898][0.433888,0.751354,0.497201][0.780352,0.833731,0.25175][0.172576,0.601845,0.313049][0.246538,0.859779,0.447214][0.863159,0.764221,0.276617][0,0,0.7][0,0,1][0.0782798,0.0782798,0.000499547][0.0525812,-0.144466,0.682909][0.0745604,-0.204853,0.975949][0.0597548,0.0782798,0.0126952][0.153644,0.00536545,0.682909][0.217867,0.00760821,0.975949][0.0725552,0.0959229,0.0126952][0.0525812,-0.144466,0.682909][0.0745604,-0.204853,0.975949][0.0597548,0.0782798,0.0126952][0.102595,-0.281877,0.632471][0.146191,-0.401656,0.904047][0.0421344,0.0782798,0.0486864][0.207893,-0.140225,0.653542][0.297986,-0.200994,0.93317][0.0538341,0.0960655,0.0336505][0.0525812,-0.144466,0.682909][0.0745604,-0.204853,0.975949][0.0597548,0.0782798,0.0126952][0.207893,-0.140225,0.653542][0.297986,-0.200994,0.93317][0.0538341,0.0960655,0.0336505][0.153644,0.00536545,0.682909][0.217867,0.00760821,0.975949][0.0725552,0.0959229,0.0126952][0.153644,0.00536545,0.682909][0.217867,0.00760821,0.975949][0.0725552,0.0959229,0.0126952][0.207893,-0.140225,0.653542][0.297986,-0.200994,0.93317][0.0538341,0.0960655,0.0336505][0.299785,0.0104688,0.632471][0.427173,0.0149174,0.904047][0.0671102,0.112704,0.0486864][0.102595,-0.281877,0.632471][0.146191,-0.401656,0.904047][0.0421344,0.0782798,0.0486864][0.147599,-0.405524,0.551149][0.210831,-0.579254,0.78741][0.026279,0.0782798,0.106716][0.259921,-0.279418,0.586828][0.373409,-0.399523,0.837225][0.0359291,0.0962205,0.0812561][0.102595,-0.281877,0.632471][0.146191,-0.401656,0.904047][0.0421344,0.0782798,0.0486864][0.259921,-0.279418,0.586828][0.373409,-0.399523,0.837225][0.0359291,0.0962205,0.0812561][0.207893,-0.140225,0.653542][0.297986,-0.200994,0.93317][0.0538341,0.0960655,0.0336505][0.207893,-0.140225,0.653542][0.297986,-0.200994,0.93317][0.0538341,0.0960655,0.0336505][0.259921,-0.279418,0.586828][0.373409,-0.399523,0.837225][0.0359291,0.0962205,0.0812561][0.35644,-0.136323,0.586828][0.510313,-0.196555,0.837225][0.048154,0.11307,0.0812561][0.207893,-0.140225,0.653542][0.297986,-0.200994,0.93317][0.0538341,0.0960655,0.0336505][0.35644,-0.136323,0.586828][0.510313,-0.196555,0.837225][0.048154,0.11307,0.0812561][0.299785,0.0104688,0.632471][0.427173,0.0149174,0.904047][0.0671102,0.112704,0.0486864][0.299785,0.0104688,0.632471][0.427173,0.0149174,0.904047][0.0671102,0.112704,0.0486864][0.35644,-0.136323,0.586828][0.510313,-0.196555,0.837225][0.048154,0.11307,0.0812561][0.431287,0.0150609,0.551149][0.616054,0.0215132,0.78741][0.0622106,0.127805,0.106716][0.147599,-0.405524,0.551149][0.210831,-0.579254,0.78741][0.190595,0.5,0.106716][0.185395,-0.509369,0.442913][0.265208,-0.728653,0.63145][0.111365,0.5,0.18395][0.305336,-0.403602,0.483607][0.439042,-0.576584,0.689053][0.153211,0.606892,0.154912][0.147599,-0.405524,0.551149][0.210831,-0.579254,0.78741][0.026279,0.0782798,0.106716][0.305336,-0.403602,0.483607][0.439042,-0.576584,0.689053][0.0199959,0.0962449,0.154912][0.259921,-0.279418,0.586828][0.373409,-0.399523,0.837225][0.0359291,0.0962205,0.0812561][0.259921,-0.279418,0.586828][0.373409,-0.399523,0.837225][0.0359291,0.0962205,0.0812561][0.305336,-0.403602,0.483607][0.439042,-0.576584,0.689053][0.0199959,0.0962449,0.154912][0.408309,-0.275408,0.497427][0.585151,-0.394689,0.708392][0.0302676,0.113212,0.14505][0.259921,-0.279418,0.586828][0.373409,-0.399523,0.837225][0.0359291,0.0962205,0.0812561][0.408309,-0.275408,0.497427][0.585151,-0.394689,0.708392][0.0302676,0.113212,0.14505][0.35644,-0.136323,0.586828][0.510313,-0.196555,0.837225][0.048154,0.11307,0.0812561][0.35644,-0.136323,0.586828][0.510313,-0.196555,0.837225][0.048154,0.11307,0.0812561][0.408309,-0.275408,0.497427][0.585151,-0.394689,0.708392][0.0302676,0.113212,0.14505][0.488594,-0.13191,0.483607][0.699067,-0.19108,0.689053][0.0432072,0.128237,0.154912][0.35644,-0.136323,0.586828][0.510313,-0.196555,0.837225][0.048154,0.11307,0.0812561][0.488594,-0.13191,0.483607][0.699067,-0.19108,0.689053][0.0432072,0.128237,0.154912][0.431287,0.0150609,0.551149][0.616054,0.0215132,0.78741][0.0622106,0.127805,0.106716][0.431287,0.0150609,0.551149][0.616054,0.0215132,0.78741][0.404389,0.794674,0.106716][0.488594,-0.13191,0.483607][0.699067,-0.19108,0.689053][0.291318,0.797248,0.154912][0.541729,0.0189176,0.442913][0.774944,0.0270617,0.63145][0.379905,0.870133,0.18395][0.185395,-0.509369,0.442913][0.265208,-0.728653,0.63145][0.111365,0.5,0.18395][0.214138,-0.588341,0.31305][0.305912,-0.840487,0.447214][0.0511111,0.5,0.276617][0.339039,-0.504003,0.347898][0.485243,-0.719257,0.497201][0.0773036,0.604976,0.25175][0.185395,-0.509369,0.442913][0.265208,-0.728653,0.63145][0.111365,0.5,0.18395][0.339039,-0.504003,0.347898][0.485243,-0.719257,0.497201][0.0773036,0.604976,0.25175][0.305336,-0.403602,0.483607][0.439042,-0.576584,0.689053][0.153211,0.606892,0.154912][0.305336,-0.403602,0.483607][0.439042,-0.576584,0.689053][0.153211,0.606892,0.154912][0.339039,-0.504003,0.347898][0.485243,-0.719257,0.497201][0.0773036,0.604976,0.25175][0.447383,-0.395055,0.365759][0.639403,-0.564019,0.522538][0.124137,0.704826,0.239005][0.305336,-0.403602,0.483607][0.439042,-0.576584,0.689053][0.153211,0.606892,0.154912][0.447383,-0.395055,0.365759][0.639403,-0.564019,0.522538][0.124137,0.704826,0.239005][0.408309,-0.275408,0.497427][0.585151,-0.394689,0.708392][0.214327,0.707845,0.14505][0.408309,-0.275408,0.497427][0.585151,-0.394689,0.708392][0.214327,0.707845,0.14505][0.447383,-0.395055,0.365759][0.639403,-0.564019,0.522538][0.124137,0.704826,0.239005][0.533882,-0.266816,0.365759][0.762474,-0.381559,0.522538][0.189324,0.794674,0.239005][0.408309,-0.275408,0.497427][0.585151,-0.394689,0.708392][0.214327,0.707845,0.14505][0.533882,-0.266816,0.365759][0.762474,-0.381559,0.522538][0.189324,0.794674,0.239005][0.488594,-0.13191,0.483607][0.699067,-0.19108,0.689053][0.291318,0.797248,0.154912][0.488594,-0.13191,0.483607][0.699067,-0.19108,0.689053][0.291318,0.797248,0.154912][0.533882,-0.266816,0.365759][0.762474,-0.381559,0.522538][0.189324,0.794674,0.239005][0.59431,-0.125548,0.347898][0.848659,-0.180471,0.497201][0.269681,0.870133,0.25175][0.488594,-0.13191,0.483607][0.699067,-0.19108,0.689053][0.291318,0.797248,0.154912][0.59431,-0.125548,0.347898][0.848659,-0.180471,0.497201][0.269681,0.870133,0.25175][0.541729,0.0189176,0.442913][0.774944,0.0270617,0.63145][0.379905,0.870133,0.18395][0.541729,0.0189176,0.442913][0.774944,0.0270617,0.63145][0.379905,0.870133,0.18395][0.59431,-0.125548,0.347898][0.848659,-0.180471,0.497201][0.269681,0.870133,0.25175][0.625718,0.0218506,0.31305][0.893882,0.0312151,0.447214][0.361286,0.927518,0.276617][0,0,0.7][0,0,1][0.0782798,0.0782798,0.000499547][-0.121147,-0.09465,0.682909][-0.171786,-0.134214,0.975949][0.0725552,0.0606368,0.0126952][0.0525812,-0.144466,0.682909][0.0745604,-0.204853,0.975949][0.0597548,0.0782798,0.0126952][-0.121147,-0.09465,0.682909][-0.171786,-0.134214,0.975949][0.0725552,0.0606368,0.0126952][-0.236378,-0.184678,0.632471][-0.336822,-0.263154,0.904047][0.0671102,0.0438553,0.0486864][-0.0691199,-0.241049,0.653542][-0.0990741,-0.345512,0.93317][0.0538341,0.0604941,0.0336505][-0.121147,-0.09465,0.682909][-0.171786,-0.134214,0.975949][0.0725552,0.0606368,0.0126952][-0.0691199,-0.241049,0.653542][-0.0990741,-0.345512,0.93317][0.0538341,0.0604941,0.0336505][0.0525812,-0.144466,0.682909][0.0745604,-0.204853,0.975949][0.0597548,0.0782798,0.0126952][0.0525812,-0.144466,0.682909][0.0745604,-0.204853,0.975949][0.0597548,0.0782798,0.0126952][-0.0691199,-0.241049,0.653542][-0.0990741,-0.345512,0.93317][0.0538341,0.0604941,0.0336505][0.102595,-0.281877,0.632471][0.146191,-0.401656,0.904047][0.0421344,0.0782798,0.0486864][-0.236378,-0.184678,0.632471][-0.336822,-0.263154,0.904047][0.0671102,0.0438553,0.0486864][-0.340066,-0.265688,0.551149][-0.485753,-0.379512,0.78741][0.0622106,0.0287547,0.106716][-0.185422,-0.333544,0.586828][-0.264579,-0.478593,0.837225][0.048154,0.0434893,0.0812561][-0.236378,-0.184678,0.632471][-0.336822,-0.263154,0.904047][0.0671102,0.0438553,0.0486864][-0.185422,-0.333544,0.586828][-0.264579,-0.478593,0.837225][0.048154,0.0434893,0.0812561][-0.0691199,-0.241049,0.653542][-0.0990741,-0.345512,0.93317][0.0538341,0.0604941,0.0336505][-0.0691199,-0.241049,0.653542][-0.0990741,-0.345512,0.93317][0.0538341,0.0604941,0.0336505][-0.185422,-0.333544,0.586828][-0.264579,-0.478593,0.837225][0.048154,0.0434893,0.0812561][-0.0195047,-0.38112,0.586828][-0.0292398,-0.546076,0.837225][0.0359291,0.0603392,0.0812561][-0.0691199,-0.241049,0.653542][-0.0990741,-0.345512,0.93317][0.0538341,0.0604941,0.0336505][-0.0195047,-0.38112,0.586828][-0.0292398,-0.546076,0.837225][0.0359291,0.0603392,0.0812561][0.102595,-0.281877,0.632471][0.146191,-0.401656,0.904047][0.0421344,0.0782798,0.0486864][0.102595,-0.281877,0.632471][0.146191,-0.401656,0.904047][0.0421344,0.0782798,0.0486864][-0.0195047,-0.38112,0.586828][-0.0292398,-0.546076,0.837225][0.0359291,0.0603392,0.0812561][0.147599,-0.405524,0.551149][0.210831,-0.579254,0.78741][0.026279,0.0782798,0.106716][-0.340066,-0.265688,0.551149][-0.485753,-0.379512,0.78741][0.404389,0.205326,0.106716][-0.427148,-0.333725,0.442913][-0.611036,-0.477394,0.63145][0.379905,0.129867,0.18395][-0.289495,-0.415111,0.483607][-0.412692,-0.595727,0.689053][0.291318,0.202752,0.154912][-0.340066,-0.265688,0.551149][-0.485753,-0.379512,0.78741][0.0622106,0.0287547,0.106716][-0.289495,-0.415111,0.483607][-0.412692,-0.595727,0.689053][0.0432072,0.0283222,0.154912][-0.185422,-0.333544,0.586828][-0.264579,-0.478593,0.837225][0.048154,0.0434893,0.0812561][-0.185422,-0.333544,0.586828][-0.264579,-0.478593,0.837225][0.048154,0.0434893,0.0812561][-0.289495,-0.415111,0.483607][-0.412692,-0.595727,0.689053][0.0432072,0.0283222,0.154912][-0.135754,-0.473431,0.497427][-0.19455,-0.678477,0.708392][0.0302675,0.0433479,0.14505][-0.185422,-0.333544,0.586828][-0.264579,-0.478593,0.837225][0.048154,0.0434893,0.0812561][-0.135754,-0.473431,0.497427][-0.19455,-0.678477,0.708392][0.0302675,0.0433479,0.14505][-0.0195047,-0.38112,0.586828][-0.0292398,-0.546076,0.837225][0.0359291,0.0603392,0.0812561][-0.0195047,-0.38112,0.586828][-0.0292398,-0.546076,0.837225][0.0359291,0.0603392,0.0812561][-0.135754,-0.473431,0.497427][-0.19455,-0.678477,0.708392][0.0302675,0.0433479,0.14505][0.0255297,-0.505443,0.483607][0.0342952,-0.723899,0.689053][0.0199958,0.0603147,0.154912][-0.0195047,-0.38112,0.586828][-0.0292398,-0.546076,0.837225][0.0359291,0.0603392,0.0812561][0.0255297,-0.505443,0.483607][0.0342952,-0.723899,0.689053][0.0199958,0.0603147,0.154912][0.147599,-0.405524,0.551149][0.210831,-0.579254,0.78741][0.026279,0.0782798,0.106716][0.147599,-0.405524,0.551149][0.210831,-0.579254,0.78741][0.190595,0.5,0.106716][0.0255297,-0.505443,0.483607][0.0342952,-0.723899,0.689053][0.153211,0.393108,0.154912][0.185395,-0.509369,0.442913][0.265208,-0.728653,0.63145][0.111365,0.5,0.18395][-0.427148,-0.333725,0.442913][-0.611036,-0.477394,0.63145][0.379905,0.129867,0.18395][-0.493373,-0.385465,0.31305][-0.704818,-0.550664,0.447214][0.361286,0.072482,0.276617][-0.374567,-0.478191,0.347898][-0.534106,-0.683756,0.497201][0.269681,0.129867,0.25175][-0.427148,-0.333725,0.442913][-0.611036,-0.477394,0.63145][0.379905,0.129867,0.18395][-0.374567,-0.478191,0.347898][-0.534106,-0.683756,0.497201][0.269681,0.129867,0.25175][-0.289495,-0.415111,0.483607][-0.412692,-0.595727,0.689053][0.291318,0.202752,0.154912][-0.289495,-0.415111,0.483607][-0.412692,-0.595727,0.689053][0.291318,0.202752,0.154912][-0.374567,-0.478191,0.347898][-0.534106,-0.683756,0.497201][0.269681,0.129867,0.25175][-0.237471,-0.547566,0.365759][-0.338827,-0.7824,0.522538][0.189324,0.205326,0.239005][-0.289495,-0.415111,0.483607][-0.412692,-0.595727,0.689053][0.291318,0.202752,0.154912][-0.237471,-0.547566,0.365759][-0.338827,-0.7824,0.522538][0.189324,0.205326,0.239005][-0.135754,-0.473431,0.497427][-0.19455,-0.678477,0.708392][0.214327,0.292155,0.14505][-0.135754,-0.473431,0.497427][-0.19455,-0.678477,0.708392][0.214327,0.292155,0.14505][-0.237471,-0.547566,0.365759][-0.338827,-0.7824,0.522538][0.189324,0.205326,0.239005][-0.0887788,-0.590202,0.365759][-0.127267,-0.843064,0.522538][0.124137,0.295174,0.239005][-0.135754,-0.473431,0.497427][-0.19455,-0.678477,0.708392][0.214327,0.292155,0.14505][-0.0887788,-0.590202,0.365759][-0.127267,-0.843064,0.522538][0.124137,0.295174,0.239005][0.0255297,-0.505443,0.483607][0.0342952,-0.723899,0.689053][0.153211,0.393108,0.154912][0.0255297,-0.505443,0.483607][0.0342952,-0.723899,0.689053][0.153211,0.393108,0.154912][-0.0887788,-0.590202,0.365759][-0.127267,-0.843064,0.522538][0.124137,0.295174,0.239005][0.0642485,-0.604019,0.347898][0.0906121,-0.862891,0.497201][0.0773035,0.395024,0.25175][0.0255297,-0.505443,0.483607][0.0342952,-0.723899,0.689053][0.153211,0.393108,0.154912][0.0642485,-0.604019,0.347898][0.0906121,-0.862891,0.497201][0.0773035,0.395024,0.25175][0.185395,-0.509369,0.442913][0.265208,-0.728653,0.63145][0.111365,0.5,0.18395][0.185395,-0.509369,0.442913][0.265208,-0.728653,0.63145][0.111365,0.5,0.18395][0.0642485,-0.604019,0.347898][0.0906121,-0.862891,0.497201][0.0773035,0.395024,0.25175][0.214138,-0.588341,0.31305][0.305912,-0.840487,0.447214][0.0511111,0.5,0.276617][0,0,0.7][0,0,1][0.0782798,0.0782798,0.000499547][-0.127454,0.0859689,0.682909][-0.18073,0.121904,0.975949][0.0932668,0.0673758,0.0126952][-0.121147,-0.09465,0.682909][-0.171786,-0.134214,0.975949][0.0725552,0.0606368,0.0126952][-0.127454,0.0859689,0.682909][-0.18073,0.121904,0.975949][0.0932668,0.0673758,0.0126952][-0.248684,0.16774,0.632471][-0.354358,0.239018,0.904047][0.107522,0.0570043,0.0486864][-0.250611,-0.00875141,0.653542][-0.359217,-0.012544,0.93317][0.0876172,0.0495019,0.0336505][-0.127454,0.0859689,0.682909][-0.18073,0.121904,0.975949][0.0932668,0.0673758,0.0126952][-0.250611,-0.00875141,0.653542][-0.359217,-0.012544,0.93317][0.0876172,0.0495019,0.0336505][-0.121147,-0.09465,0.682909][-0.171786,-0.134214,0.975949][0.0725552,0.0606368,0.0126952][-0.121147,-0.09465,0.682909][-0.171786,-0.134214,0.975949][0.0725552,0.0606368,0.0126952][-0.250611,-0.00875141,0.653542][-0.359217,-0.012544,0.93317][0.0876172,0.0495019,0.0336505][-0.236378,-0.184678,0.632471][-0.336822,-0.263154,0.904047][0.0671102,0.0438553,0.0486864][-0.248684,0.16774,0.632471][-0.354358,0.239018,0.904047][0.107522,0.0570043,0.0486864][-0.357771,0.24132,0.551148][-0.511043,0.344703,0.78741][0.120349,0.0476716,0.106716][-0.374518,0.0732762,0.586828][-0.536929,0.103737,0.837225][0.102012,0.0388375,0.0812561][-0.248684,0.16774,0.632471][-0.354358,0.239018,0.904047][0.107522,0.0570043,0.0486864][-0.374518,0.0732762,0.586828][-0.536929,0.103737,0.837225][0.102012,0.0388375,0.0812561][-0.250611,-0.00875141,0.653542][-0.359217,-0.012544,0.93317][0.0876172,0.0495019,0.0336505][-0.250611,-0.00875141,0.653542][-0.359217,-0.012544,0.93317][0.0876172,0.0495019,0.0336505][-0.374518,0.0732762,0.586828][-0.536929,0.103737,0.837225][0.102012,0.0388375,0.0812561][-0.368494,-0.0992225,0.586828][-0.528385,-0.140938,0.837225][0.0822313,0.0324014,0.0812561][-0.250611,-0.00875141,0.653542][-0.359217,-0.012544,0.93317][0.0876172,0.0495019,0.0336505][-0.368494,-0.0992225,0.586828][-0.528385,-0.140938,0.837225][0.0822313,0.0324014,0.0812561][-0.236378,-0.184678,0.632471][-0.336822,-0.263154,0.904047][0.0671102,0.0438553,0.0486864][-0.236378,-0.184678,0.632471][-0.336822,-0.263154,0.904047][0.0671102,0.0438553,0.0486864][-0.368494,-0.0992225,0.586828][-0.528385,-0.140938,0.837225][0.0822313,0.0324014,0.0812561][-0.340066,-0.265688,0.551149][-0.485753,-0.379512,0.78741][0.0622106,0.0287547,0.106716][-0.357771,0.24132,0.551148][-0.511043,0.344703,0.78741][0.750314,0.317881,0.106716][-0.449387,0.303116,0.442913][-0.642849,0.433608,0.63145][0.814413,0.271245,0.18395][-0.484253,0.147049,0.483606][-0.694099,0.208404,0.689053][0.717817,0.209399,0.154912][-0.357771,0.24132,0.551148][-0.511043,0.344703,0.78741][0.120349,0.0476716,0.106716][-0.484253,0.147049,0.483606][-0.694099,0.208404,0.689053][0.114888,0.0294392,0.154912][-0.374518,0.0732762,0.586828][-0.536929,0.103737,0.837225][0.102012,0.0388375,0.0812561][-0.374518,0.0732762,0.586828][-0.536929,0.103737,0.837225][0.102012,0.0388375,0.0812561][-0.484253,0.147049,0.483606][-0.694099,0.208404,0.689053][0.114888,0.0294392,0.154912][-0.49221,-0.0171882,0.497427][-0.705389,-0.0246325,0.708392][0.0966188,0.0217588,0.14505][-0.374518,0.0732762,0.586828][-0.536929,0.103737,0.837225][0.102012,0.0388375,0.0812561][-0.49221,-0.0171882,0.497427][-0.705389,-0.0246325,0.708392][0.0966188,0.0217588,0.14505][-0.368494,-0.0992225,0.586828][-0.528385,-0.140938,0.837225][0.0822313,0.0324014,0.0812561][-0.368494,-0.0992225,0.586828][-0.528385,-0.140938,0.837225][0.0822313,0.0324014,0.0812561][-0.49221,-0.0171882,0.497427][-0.705389,-0.0246325,0.708392][0.0966188,0.0217588,0.14505][-0.472816,-0.180471,0.483607][-0.677871,-0.256314,0.689053][0.0773309,0.0172192,0.154912][-0.368494,-0.0992225,0.586828][-0.528385,-0.140938,0.837225][0.0822313,0.0324014,0.0812561][-0.472816,-0.180471,0.483607][-0.677871,-0.256314,0.689053][0.0773309,0.0172192,0.154912][-0.340066,-0.265688,0.551149][-0.485753,-0.379512,0.78741][0.0622106,0.0287547,0.106716][-0.340066,-0.265688,0.551149][-0.485753,-0.379512,0.78741][0.404389,0.205326,0.106716][-0.472816,-0.180471,0.483607][-0.677871,-0.256314,0.689053][0.494354,0.136689,0.154912][-0.427148,-0.333725,0.442913][-0.611036,-0.477394,0.63145][0.379905,0.129867,0.18395][-0.449387,0.303116,0.442913][-0.642849,0.433608,0.63145][0.814413,0.271245,0.18395][-0.519059,0.35011,0.313049][-0.741513,0.500158,0.447214][0.863159,0.235779,0.276617][-0.570534,0.208466,0.347898][-0.815338,0.296673,0.497201][0.780352,0.166269,0.25175][-0.449387,0.303116,0.442913][-0.642849,0.433608,0.63145][0.814413,0.271245,0.18395][-0.570534,0.208466,0.347898][-0.815338,0.296673,0.497201][0.780352,0.166269,0.25175][-0.484253,0.147049,0.483606][-0.694099,0.208404,0.689053][0.717817,0.209399,0.154912][-0.484253,0.147049,0.483606][-0.694099,0.208404,0.689053][0.717817,0.209399,0.154912][-0.570534,0.208466,0.347898][-0.815338,0.296673,0.497201][0.780352,0.166269,0.25175][-0.594148,0.0566413,0.365759][-0.84881,0.0804692,0.522538][0.683855,0.113055,0.239005][-0.484253,0.147049,0.483606][-0.694099,0.208404,0.689053][0.717817,0.209399,0.154912][-0.594148,0.0566413,0.365759][-0.84881,0.0804692,0.522538][0.683855,0.113055,0.239005][-0.49221,-0.0171882,0.497427][-0.705389,-0.0246325,0.708392][0.609117,0.1637,0.14505][-0.49221,-0.0171882,0.497427][-0.705389,-0.0246325,0.708392][0.609117,0.1637,0.14505][-0.594148,0.0566413,0.365759][-0.84881,0.0804692,0.522538][0.683855,0.113055,0.239005][-0.58875,-0.0979488,0.365759][-0.841129,-0.139483,0.522538][0.57838,0.0787362,0.239005][-0.49221,-0.0171882,0.497427][-0.705389,-0.0246325,0.708392][0.609117,0.1637,0.14505][-0.58875,-0.0979488,0.365759][-0.841129,-0.139483,0.522538][0.57838,0.0787362,0.239005][-0.472816,-0.180471,0.483607][-0.677871,-0.256314,0.689053][0.494354,0.136689,0.154912][-0.472816,-0.180471,0.483607][-0.677871,-0.256314,0.689053][0.494354,0.136689,0.154912][-0.58875,-0.0979488,0.365759][-0.841129,-0.139483,0.522538][0.57838,0.0787362,0.239005][-0.554602,-0.247756,0.347898][-0.792657,-0.352825,0.497201][0.469078,0.064988,0.25175][-0.472816,-0.180471,0.483607][-0.677871,-0.256314,0.689053][0.494354,0.136689,0.154912][-0.554602,-0.247756,0.347898][-0.792657,-0.352825,0.497201][0.469078,0.064988,0.25175][-0.427148,-0.333725,0.442913][-0.611036,-0.477394,0.63145][0.379905,0.129867,0.18395][-0.427148,-0.333725,0.442913][-0.611036,-0.477394,0.63145][0.379905,0.129867,0.18395][-0.554602,-0.247756,0.347898][-0.792657,-0.352825,0.497201][0.469078,0.064988,0.25175][-0.493373,-0.385465,0.31305][-0.704818,-0.550664,0.447214][0.361286,0.072482,0.276617][0,0,0.7][0,0,1][0.0782798,0.0782798,0.000499547][0.0423757,0.147782,0.682909][0.060089,0.209556,0.975949][0.0932668,0.0891838,0.0126952][-0.127454,0.0859689,0.682909][-0.18073,0.121904,0.975949][0.0932668,0.0673758,0.0126952][0.0423757,0.147782,0.682909][0.060089,0.209556,0.975949][0.0932668,0.0891838,0.0126952][0.0826822,0.288347,0.632471][0.117816,0.410875,0.904047][0.107522,0.0995554,0.0486864][-0.0857662,0.235641,0.653542][-0.122935,0.33776,0.933169][0.108496,0.0782798,0.0336505][0.0423757,0.147782,0.682909][0.060089,0.209556,0.975949][0.0932668,0.0891838,0.0126952][-0.0857662,0.235641,0.653542][-0.122935,0.33776,0.933169][0.108496,0.0782798,0.0336505][-0.127454,0.0859689,0.682909][-0.18073,0.121904,0.975949][0.0932668,0.0673758,0.0126952][-0.127454,0.0859689,0.682909][-0.18073,0.121904,0.975949][0.0932668,0.0673758,0.0126952][-0.0857662,0.235641,0.653542][-0.122935,0.33776,0.933169][0.108496,0.0782798,0.0336505][-0.248684,0.16774,0.632471][-0.354358,0.239018,0.904047][0.107522,0.0570043,0.0486864][0.0826822,0.288347,0.632471][0.117816,0.410875,0.904047][0.107522,0.0995554,0.0486864][0.118951,0.414832,0.551148][0.169911,0.59255,0.78741][0.120349,0.108888,0.106716][-0.0460427,0.378831,0.586828][-0.0672608,0.542706,0.837225][0.123073,0.0886936,0.0812561][0.0826822,0.288347,0.632471][0.117816,0.410875,0.904047][0.107522,0.0995554,0.0486864][-0.0460427,0.378831,0.586828][-0.0672608,0.542706,0.837225][0.123073,0.0886936,0.0812561][-0.0857662,0.235641,0.653542][-0.122935,0.33776,0.933169][0.108496,0.0782798,0.0336505][-0.0857662,0.235641,0.653542][-0.122935,0.33776,0.933169][0.108496,0.0782798,0.0336505][-0.0460427,0.378831,0.586828][-0.0672608,0.542706,0.837225][0.123073,0.0886936,0.0812561][-0.208237,0.319797,0.586828][-0.29732,0.458971,0.837225][0.123073,0.067866,0.0812561][-0.0857662,0.235641,0.653542][-0.122935,0.33776,0.933169][0.108496,0.0782798,0.0336505][-0.208237,0.319797,0.586828][-0.29732,0.458971,0.837225][0.123073,0.067866,0.0812561][-0.248684,0.16774,0.632471][-0.354358,0.239018,0.904047][0.107522,0.0570043,0.0486864][-0.248684,0.16774,0.632471][-0.354358,0.239018,0.904047][0.107522,0.0570043,0.0486864][-0.208237,0.319797,0.586828][-0.29732,0.458971,0.837225][0.123073,0.067866,0.0812561][-0.357771,0.24132,0.551148][-0.511043,0.344703,0.78741][0.120349,0.0476716,0.106716][0.118951,0.414832,0.551148][0.169911,0.59255,0.78741][0.750314,0.682119,0.106716][0.149412,0.521061,0.442913][0.213734,0.745378,0.63145][0.814413,0.728755,0.18395][-0.00979034,0.505993,0.483606][-0.0162848,0.724528,0.689053][0.8433,0.617646,0.154912][0.118951,0.414832,0.551148][0.169911,0.59255,0.78741][0.120349,0.108888,0.106716][-0.00979034,0.505993,0.483606][-0.0162848,0.724528,0.689053][0.135977,0.0980523,0.154912][-0.0460427,0.378831,0.586828][-0.0672608,0.542706,0.837225][0.123073,0.0886936,0.0812561][-0.0460427,0.378831,0.586828][-0.0672608,0.542706,0.837225][0.123073,0.0886936,0.0812561][-0.00979034,0.505993,0.483606][-0.0162848,0.724528,0.689053][0.135977,0.0980523,0.154912][-0.168448,0.462808,0.497427][-0.241404,0.663253,0.708392][0.137626,0.0782798,0.14505][-0.0460427,0.378831,0.586828][-0.0672608,0.542706,0.837225][0.123073,0.0886936,0.0812561][-0.168448,0.462808,0.497427][-0.241404,0.663253,0.708392][0.137626,0.0782798,0.14505][-0.208237,0.319797,0.586828][-0.29732,0.458971,0.837225][0.123073,0.067866,0.0812561][-0.208237,0.319797,0.586828][-0.29732,0.458971,0.837225][0.123073,0.067866,0.0812561][-0.168448,0.462808,0.497427][-0.241404,0.663253,0.708392][0.137626,0.0782798,0.14505][-0.317746,0.393906,0.483606][-0.453243,0.565489,0.689053][0.135977,0.0585074,0.154912][-0.208237,0.319797,0.586828][-0.29732,0.458971,0.837225][0.123073,0.067866,0.0812561][-0.317746,0.393906,0.483606][-0.453243,0.565489,0.689053][0.135977,0.0585074,0.154912][-0.357771,0.24132,0.551148][-0.511043,0.344703,0.78741][0.120349,0.0476716,0.106716][-0.357771,0.24132,0.551148][-0.511043,0.344703,0.78741][0.750314,0.317881,0.106716][-0.317746,0.393906,0.483606][-0.453243,0.565489,0.689053][0.8433,0.382354,0.154912][-0.449387,0.303116,0.442913][-0.642849,0.433608,0.63145][0.814413,0.271245,0.18395][0.149412,0.521061,0.442913][0.213734,0.745378,0.63145][0.814413,0.728755,0.18395][0.172576,0.601845,0.313049][0.246538,0.859779,0.447214][0.863159,0.764221,0.276617][0.0219577,0.607029,0.347898][0.0301991,0.86711,0.497201][0.903585,0.663876,0.25175][0.149412,0.521061,0.442913][0.213734,0.745378,0.63145][0.814413,0.728755,0.18395][0.0219577,0.607029,0.347898][0.0301991,0.86711,0.497201][0.903585,0.663876,0.25175][-0.00979034,0.505993,0.483606][-0.0162848,0.724528,0.689053][0.8433,0.617646,0.154912][-0.00979034,0.505993,0.483606][-0.0162848,0.724528,0.689053][0.8433,0.617646,0.154912][0.0219577,0.607029,0.347898][0.0301991,0.86711,0.497201][0.903585,0.663876,0.25175][-0.129733,0.582572,0.365758][-0.185766,0.832133,0.522538][0.924305,0.555529,0.239005][-0.00979034,0.505993,0.483606][-0.0162848,0.724528,0.689053][0.8433,0.617646,0.154912][-0.129733,0.582572,0.365758][-0.185766,0.832133,0.522538][0.924305,0.555529,0.239005][-0.168448,0.462808,0.497427][-0.241404,0.663253,0.708392][0.853111,0.5,0.14505][-0.168448,0.462808,0.497427][-0.241404,0.663253,0.708392][0.853111,0.5,0.14505][-0.129733,0.582572,0.365758][-0.185766,0.832133,0.522538][0.924305,0.555529,0.239005][-0.275089,0.529667,0.365758][-0.392579,0.756859,0.522538][0.924305,0.444471,0.239005][-0.168448,0.462808,0.497427][-0.241404,0.663253,0.708392][0.853111,0.5,0.14505][-0.275089,0.529667,0.365758][-0.392579,0.756859,0.522538][0.924305,0.444471,0.239005][-0.317746,0.393906,0.483606][-0.453243,0.565489,0.689053][0.8433,0.382354,0.154912][-0.317746,0.393906,0.483606][-0.453243,0.565489,0.689053][0.8433,0.382354,0.154912][-0.275089,0.529667,0.365758][-0.392579,0.756859,0.522538][0.924305,0.444471,0.239005][-0.407011,0.450897,0.347898][-0.580501,0.644833,0.497201][0.903585,0.336124,0.25175][-0.317746,0.393906,0.483606][-0.453243,0.565489,0.689053][0.8433,0.382354,0.154912][-0.407011,0.450897,0.347898][-0.580501,0.644833,0.497201][0.903585,0.336124,0.25175][-0.449387,0.303116,0.442913][-0.642849,0.433608,0.63145][0.814413,0.271245,0.18395][-0.449387,0.303116,0.442913][-0.642849,0.433608,0.63145][0.814413,0.271245,0.18395][-0.407011,0.450897,0.347898][-0.580501,0.644833,0.497201][0.903585,0.336124,0.25175][-0.519059,0.35011,0.313049][-0.741513,0.500158,0.447214][0.863159,0.235779,0.276617] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/FirefighterHat.mesh b/shareddata/charcustom/hats/fonts/FirefighterHat.mesh deleted file mode 100644 index 1938211..0000000 --- a/shareddata/charcustom/hats/fonts/FirefighterHat.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -660 -[0.0213532,-0.529763,0.76127][0.0043116,-2.42605,-0.127112][0.84938,0.0335213,0][-0.952135,-0.513685,0.421393][0.00392745,-2.20981,-0.115782][0.869963,0.00851604,0][-1.22634,-0.468727,-0.445984][0.00177479,-0.998629,-0.0523226][0.900908,0.00812945,0][-1.22634,-0.468727,-0.445984][0.00177479,-0.998629,-0.0523226][0.900908,0.00812945,0][-0.991806,-0.422263,-1.32484][0.00392732,-2.20981,-0.115782][0.927259,0.0224415,0][-0.0347509,-0.400472,-1.70828][0.00177478,-0.998629,-0.0523226][0.930407,0.053215,0][-0.0347509,-0.400472,-1.70828][0.00177478,-0.998629,-0.0523226][0.930407,0.053215,0][0.955561,-0.4165,-1.36878][0.00380249,-2.13956,-0.112101][0.909671,0.0787064,0][1.16946,-0.461637,-0.500041][0.00480031,-2.70105,-0.14152][0.879271,0.0773505,0][-1.22634,-0.468727,-0.445984][0.00177479,-0.998629,-0.0523226][0.900908,0.00812945,0][-0.0347509,-0.400472,-1.70828][0.00177478,-0.998629,-0.0523226][0.930407,0.053215,0][1.16946,-0.461637,-0.500041][0.00480031,-2.70105,-0.14152][0.879271,0.0773505,0][0.0213532,-0.529763,0.76127][0.0043116,-2.42605,-0.127112][0.84938,0.0335213,0][-1.22634,-0.468727,-0.445984][0.00177479,-0.998629,-0.0523226][0.900908,0.00812945,0][1.16946,-0.461637,-0.500041][0.00480031,-2.70105,-0.14152][0.879271,0.0773505,0][0.0213532,-0.529763,0.76127][0.0043116,-2.42605,-0.127112][0.84938,0.0335213,0][1.16946,-0.461637,-0.500041][0.00480031,-2.70105,-0.14152][0.879271,0.0773505,0][0.995233,-0.507922,0.377454][0.00380226,-2.13956,-0.112101][0.852376,0.0647809,0][-1.22634,-0.468727,-0.445984][-0.90243,0.30801,0.301248][0.972738,0.028392,0][-0.952135,-0.513685,0.421393][-0.90243,0.30801,0.301248][0.942854,0.028392,0][-0.794075,0.0931939,0.274383][-0.90243,0.30801,0.301248][0.946869,0.00812945,0][-0.794075,0.0931939,0.274383][-0.839613,0.413426,0.352319][0.985049,0.036166,0][-1.06711,0.129002,-0.418308][-0.923549,0.379035,0.0582275][0.962247,0.0335761,0][-1.22634,-0.468727,-0.445984][-0.90281,0.223483,0.36741][0.964514,0.0145414,0][0.0146811,0.0804204,0.545609][0.0143854,0.406921,0.91335][0.887138,0.0545083,0][-0.794075,0.0931939,0.274383][-0.299327,0.297565,0.906564][0.913846,0.046328,0][-0.952135,-0.513685,0.421393][0.00392745,-2.20981,-0.115782][0.923047,0.064907,0][-0.952135,-0.513685,0.421393][0.00392745,-2.20981,-0.115782][0.923047,0.064907,0][0.0213532,-0.529763,0.76127][0.0043116,-2.42605,-0.127112][0.890807,0.0749329,0][0.0146811,0.0804204,0.545609][0.0143854,0.406921,0.91335][0.887138,0.0545083,0][0.821058,0.0979736,0.23794][0.636006,0.42284,0.645525][0.864471,0.0549288,0][0.0146811,0.0804204,0.545609][0.0143854,0.406921,0.91335][0.887138,0.0545083,0][0.0213532,-0.529763,0.76127][0.0043116,-2.42605,-0.127112][0.890807,0.0749329,0][0.0213532,-0.529763,0.76127][0.0043116,-2.42605,-0.127112][0.890807,0.0749329,0][0.995233,-0.507922,0.377454][0.00380226,-2.13956,-0.112101][0.863515,0.075277,0][0.821058,0.0979736,0.23794][0.636006,0.42284,0.645525][0.864471,0.0549288,0][1.07312,0.135336,-0.466598][0.934618,0.354088,-0.0333288][0.889177,0.0409936,0][0.821058,0.0979736,0.23794][0.636006,0.42284,0.645525][0.912133,0.0409936,0][0.995233,-0.507922,0.377454][0.00380226,-2.13956,-0.112101][0.917871,0.0601565,0][0.995233,-0.507922,0.377454][0.00380226,-2.13956,-0.112101][0.917871,0.0601565,0][1.16946,-0.461637,-0.500041][0.00480031,-2.70105,-0.14152][0.889177,0.0601565,0][1.07312,0.135336,-0.466598][0.934618,0.354088,-0.0333288][0.889177,0.0409936,0][0.789321,0.171112,-1.15905][0.872652,0.397544,-0.283615][0.866222,0.0409936,0][1.07312,0.135336,-0.466598][0.934618,0.354088,-0.0333288][0.889177,0.0409936,0][1.16946,-0.461637,-0.500041][0.00480031,-2.70105,-0.14152][0.889177,0.0601565,0][1.16946,-0.461637,-0.500041][0.00480031,-2.70105,-0.14152][0.889177,0.0601565,0][0.955561,-0.4165,-1.36878][0.00380249,-2.13956,-0.112101][0.860483,0.0601565,0][0.789321,0.171112,-1.15905][0.872652,0.397544,-0.283615][0.866222,0.0409936,0][-0.0369482,0.56333,-1.67925][-0.0131884,0.257844,-0.966097][0.580434,0.493305,0][0.779922,0.556968,-1.52501][0.18126,0.223082,-0.957799][0.580593,0.991507,0][0.609603,-0.400051,-1.69446][0.236809,0.174019,-0.955845][0.00867818,0.887791,0][0.609603,-0.400051,-1.69446][0.236809,0.174019,-0.955845][0.00867818,0.887791,0][-0.0387321,-0.391297,-1.88351][-0.00892207,0.181368,-0.983375][0.00867818,0.493305,0][-0.0369482,0.56333,-1.67925][-0.0131884,0.257844,-0.966097][0.580434,0.493305,0][-0.835211,0.552189,-1.48856][-0.251099,0.236854,-0.938536][0.580593,0.00170216,0][-0.0369482,0.56333,-1.67925][-0.0131884,0.257844,-0.966097][0.580434,0.493305,0][-0.0387321,-0.391297,-1.88351][-0.00892207,0.181368,-0.983375][0.00867818,0.493305,0][-0.0387321,-0.391297,-1.88351][-0.00892207,0.181368,-0.983375][0.00867818,0.493305,0][-0.629452,-0.403718,-1.6665][-0.344972,0.0994759,-0.933327][0.00867818,0.128459,0][-0.835211,0.552189,-1.48856][-0.251099,0.236854,-0.938536][0.580593,0.00170216,0][-1.06711,0.129002,-0.418308][-0.923549,0.379035,0.0582275][0.962247,0.0335761,0][-0.825811,0.166332,-1.1226][-0.85994,0.424125,-0.283939][0.939446,0.0309861,0][-0.991806,-0.422263,-1.32484][0.00392732,-2.20981,-0.115782][0.936012,0.0113041,0][-0.991806,-0.422263,-1.32484][0.00392732,-2.20981,-0.115782][0.936012,0.0113041,0][-1.22634,-0.468727,-0.445984][-0.936216,0.260324,-0.236074][0.964514,0.0145414,0][-1.06711,0.129002,-0.418308][-0.923549,0.379035,0.0582275][0.962247,0.0335761,0][-0.615879,0.485125,0.115662][-0.723258,0.600275,0.341421][0.977898,0.0477008,0][-0.85219,0.511888,-0.403145][-0.781163,0.621152,0.0628843][0.960796,0.0457584,0][-1.06711,0.129002,-0.418308][-0.923549,0.379035,0.0582275][0.962247,0.0335761,0][-1.06711,0.129002,-0.418308][-0.923549,0.379035,0.0582275][0.962247,0.0335761,0][-0.794075,0.0931939,0.274383][-0.839613,0.413426,0.352319][0.985049,0.036166,0][-0.615879,0.485125,0.115662][-0.723258,0.600275,0.341421][0.977898,0.0477008,0][-0.794075,0.0931939,0.274383][-0.272896,0.475806,0.836144][0.913846,0.046328,0][0.0146811,0.0804204,0.545609][0.0143854,0.406921,0.91335][0.887138,0.0545083,0][0.00839163,0.475598,0.318681][0.040106,0.607481,0.793321][0.885461,0.0402354,0][0.00839163,0.475598,0.318681][-0.267599,0.46371,0.844609][0.888671,0.026063,0][-0.615879,0.485125,0.115662][-0.267599,0.46371,0.844609][0.907191,0.015319,0][-0.794075,0.0931939,0.274383][-0.267599,0.46371,0.844609][0.917871,0.0256816,0][0.628859,0.488809,0.0875766][0.523475,0.624666,0.579454][0.867981,0.0406343,0][0.00839163,0.475598,0.318681][0.040106,0.607481,0.793321][0.885461,0.0402354,0][0.0146811,0.0804204,0.545609][0.0143854,0.406921,0.91335][0.887138,0.0545083,0][0.0146811,0.0804204,0.545609][0.0143854,0.406921,0.91335][0.887138,0.0545083,0][0.821058,0.0979736,0.23794][0.636006,0.42284,0.645525][0.864471,0.0549288,0][0.628859,0.488809,0.0875766][0.523475,0.624666,0.579454][0.867981,0.0406343,0][0.847425,0.516918,-0.441494][0.770129,0.637874,0.0042579][0.889177,0.0287291,0][0.628859,0.488809,0.0875766][0.523475,0.624666,0.579454][0.906394,0.0287291,0][0.821058,0.0979736,0.23794][0.636006,0.42284,0.645525][0.912133,0.0409936,0][0.821058,0.0979736,0.23794][0.636006,0.42284,0.645525][0.912133,0.0409936,0][1.07312,0.135336,-0.466598][0.934618,0.354088,-0.0333288][0.889177,0.0409936,0][0.847425,0.516918,-0.441494][0.770129,0.637874,0.0042579][0.889177,0.0287291,0][0.605057,0.543663,-0.960163][0.710826,0.644576,-0.281509][0.87196,0.0287291,0][0.847425,0.516918,-0.441494][0.770129,0.637874,0.0042579][0.889177,0.0287291,0][1.07312,0.135336,-0.466598][0.934618,0.354088,-0.0333288][0.889177,0.0409936,0][1.07312,0.135336,-0.466598][0.934618,0.354088,-0.0333288][0.889177,0.0409936,0][0.789321,0.171112,-1.15905][0.872652,0.397544,-0.283615][0.866222,0.0409936,0][0.605057,0.543663,-0.960163][0.710826,0.644576,-0.281509][0.87196,0.0287291,0][-0.035082,0.939977,-1.54713][-0.0129956,0.38104,-0.924467][0.807618,0.493305,0][0.593259,0.935046,-1.43168][0.158542,0.331331,-0.930099][0.807618,0.876569,0][0.779922,0.556968,-1.52501][0.18126,0.223082,-0.957799][0.580593,0.991507,0][0.779922,0.556968,-1.52501][0.18126,0.223082,-0.957799][0.580593,0.991507,0][-0.0369482,0.56333,-1.67925][-0.0131884,0.257844,-0.966097][0.580434,0.493305,0][-0.035082,0.939977,-1.54713][-0.0129956,0.38104,-0.924467][0.807618,0.493305,0][-0.65148,0.931362,-1.4036][-0.221404,0.324971,-0.919442][0.807618,0.113753,0][-0.035082,0.939977,-1.54713][-0.0129956,0.38104,-0.924467][0.807618,0.493305,0][-0.0369482,0.56333,-1.67925][-0.0131884,0.257844,-0.966097][0.580434,0.493305,0][-0.0369482,0.56333,-1.67925][-0.0131884,0.257844,-0.966097][0.580434,0.493305,0][-0.835211,0.552189,-1.48856][-0.251099,0.236854,-0.938536][0.580593,0.00170216,0][-0.65148,0.931362,-1.4036][-0.221404,0.324971,-0.919442][0.807618,0.113753,0][-0.85219,0.511888,-0.403145][-0.781163,0.621152,0.0628843][0.960796,0.0457584,0][-0.639682,0.539979,-0.932078][-0.720276,0.642605,-0.26127][0.943695,0.0438159,0][-0.825811,0.166332,-1.1226][-0.85994,0.424125,-0.283939][0.939446,0.0309861,0][-0.825811,0.166332,-1.1226][-0.85994,0.424125,-0.283939][0.939446,0.0309861,0][-1.06711,0.129002,-0.418308][-0.923549,0.379035,0.0582275][0.962247,0.0335761,0][-0.85219,0.511888,-0.403145][-0.781163,0.621152,0.0628843][0.960796,0.0457584,0][-0.422406,0.710767,-0.0521126][-0.486892,0.828843,0.275599][0.973967,0.05447,0][-0.595156,0.728564,-0.39764][-0.526406,0.847855,0.0635443][0.968525,0.0432783,0][-0.85219,0.511888,-0.403145][-0.781163,0.621152,0.0628843][0.976395,0.0357318,0][-0.85219,0.511888,-0.403145][-0.781163,0.621152,0.0628843][0.976395,0.0357318,0][-0.615879,0.485125,0.115662][-0.723258,0.600275,0.341421][0.984882,0.0520313,0][-0.422406,0.710767,-0.0521126][-0.486892,0.828843,0.275599][0.973967,0.05447,0][-0.615879,0.485125,0.115662][-0.211674,0.698428,0.683661][0.906033,0.0340059,0][0.00839163,0.475598,0.318681][0.040106,0.607481,0.793321][0.885461,0.0402354,0][0.00239767,0.704441,0.0830391][0.0290109,0.815141,0.578536][0.885325,0.0307216,0][0.00239767,0.704441,0.0830391][-0.209283,0.692663,0.690231][0.945158,0.0174599,0][-0.422406,0.710767,-0.0521126][-0.209283,0.692663,0.690231][0.955012,0.0114863,0][-0.615879,0.485125,0.115662][-0.209283,0.692663,0.690231][0.961342,0.0182834,0][0.42332,0.71327,-0.0711946][0.349853,0.829712,0.434949][0.873449,0.0310263,0][0.00239767,0.704441,0.0830391][0.0290109,0.815141,0.578536][0.885325,0.0307216,0][0.00839163,0.475598,0.318681][0.040106,0.607481,0.793321][0.885461,0.0402354,0][0.00839163,0.475598,0.318681][0.040106,0.607481,0.793321][0.885461,0.0402354,0][0.628859,0.488809,0.0875766][0.523475,0.624666,0.579454][0.867981,0.0406343,0][0.42332,0.71327,-0.0711946][0.349853,0.829712,0.434949][0.873449,0.0310263,0][0.582892,0.732051,-0.424221][0.516475,0.855889,0.0266127][0.958388,0.0510101,0][0.42332,0.71327,-0.0711946][0.349853,0.829712,0.434949][0.971096,0.0503632,0][0.628859,0.488809,0.0875766][0.523475,0.624666,0.579454][0.973993,0.060991,0][0.628859,0.488809,0.0875766][0.523475,0.624666,0.579454][0.973993,0.060991,0][0.847425,0.516918,-0.441494][0.770129,0.637874,0.0042579][0.955196,0.0614942,0][0.582892,0.732051,-0.424221][0.516475,0.855889,0.0266127][0.958388,0.0510101,0][0.407451,0.749839,-0.769688][0.476401,0.85882,-0.188337][0.94995,0.0441295,0][0.582892,0.732051,-0.424221][0.516475,0.855889,0.0266127][0.958388,0.0510101,0][0.847425,0.516918,-0.441494][0.770129,0.637874,0.0042579][0.955196,0.0614942,0][0.847425,0.516918,-0.441494][0.770129,0.637874,0.0042579][0.955196,0.0614942,0][0.605057,0.543663,-0.960163][0.710826,0.644576,-0.281509][0.942274,0.0516404,0][0.407451,0.749839,-0.769688][0.476401,0.85882,-0.188337][0.94995,0.0441295,0][-0.0324872,1.24688,-1.39189][-0.00170157,0.434227,-0.900802][0.994208,0.493305,0][0.392282,1.14899,-1.38962][0.0624714,0.248705,-0.966563][0.935854,0.753273,0][0.593259,0.935046,-1.43168][0.158542,0.331331,-0.930099][0.807618,0.876569,0][0.593259,0.935046,-1.43168][0.158542,0.331331,-0.930099][0.807618,0.876569,0][-0.035082,0.939977,-1.54713][-0.0129956,0.38104,-0.924467][0.807618,0.493305,0][-0.0324872,1.24688,-1.39189][-0.00170157,0.434227,-0.900802][0.994208,0.493305,0][-0.453443,1.14649,-1.37054][-0.198625,0.372706,-0.906443][0.935854,0.234986,0][-0.0324872,1.24688,-1.39189][-0.00170157,0.434227,-0.900802][0.994208,0.493305,0][-0.035082,0.939977,-1.54713][-0.0129956,0.38104,-0.924467][0.807618,0.493305,0][-0.035082,0.939977,-1.54713][-0.0129956,0.38104,-0.924467][0.807618,0.493305,0][-0.65148,0.931362,-1.4036][-0.221404,0.324971,-0.919442][0.807618,0.113753,0][-0.453443,1.14649,-1.37054][-0.198625,0.372706,-0.906443][0.935854,0.234986,0][-0.595156,0.728564,-0.39764][-0.526406,0.847855,0.0635443][0.968525,0.0432783,0][-0.438274,0.747336,-0.750605][-0.485873,0.856981,-0.171786][0.958409,0.0391385,0][-0.639682,0.539979,-0.932078][-0.720276,0.642605,-0.26127][0.961545,0.029034,0][-0.639682,0.539979,-0.932078][-0.720276,0.642605,-0.26127][0.961545,0.029034,0][-0.85219,0.511888,-0.403145][-0.781163,0.621152,0.0628843][0.976395,0.0357318,0][-0.595156,0.728564,-0.39764][-0.526406,0.847855,0.0635443][0.968525,0.0432783,0][-0.218511,0.818778,-0.226282][-0.224515,0.960429,0.164829][0.965207,0.0560158,0][-0.309583,0.827662,-0.39894][-0.245344,0.967672,0.058455][0.962553,0.0503195,0][-0.595156,0.728564,-0.39764][-0.526406,0.847855,0.0635443][0.968525,0.0432783,0][-0.595156,0.728564,-0.39764][-0.526406,0.847855,0.0635443][0.968525,0.0432783,0][-0.422406,0.710767,-0.0521126][-0.486892,0.828843,0.275599][0.973967,0.05447,0][-0.218511,0.818778,-0.226282][-0.224515,0.960429,0.164829][0.965207,0.0560158,0][-0.422406,0.710767,-0.0521126][-0.119291,0.900987,0.417124][0.981876,0.0313602,0][0.00239767,0.704441,0.0830391][0.0290109,0.815141,0.578536][0.980883,0.0421225,0][-0.00338761,0.815623,-0.158767][0.0171385,0.950687,0.309679][0.973327,0.0378486,0][-0.00338761,0.815623,-0.158767][-0.118448,0.900007,0.419474][0.92895,0.0297378,0][-0.218511,0.818778,-0.226282][-0.118448,0.900007,0.419474][0.935003,0.0255833,0][-0.422406,0.710767,-0.0521126][-0.118448,0.900007,0.419474][0.943547,0.0296058,0][0.209122,0.820043,-0.235931][0.162815,0.955425,0.246279][0.968408,0.042015,0][-0.00338761,0.815623,-0.158767][0.0171385,0.950687,0.309679][0.973327,0.0378486,0][0.00239767,0.704441,0.0830391][0.0290109,0.815141,0.578536][0.980883,0.0421225,0][0.00239767,0.704441,0.0830391][0.0290109,0.815141,0.578536][0.980883,0.0421225,0][0.42332,0.71327,-0.0711946][0.349853,0.829712,0.434949][0.971096,0.0503632,0][0.209122,0.820043,-0.235931][0.162815,0.955425,0.246279][0.968408,0.042015,0][0.292933,0.829445,-0.412535][0.239515,0.96992,0.043458][0.962003,0.0424289,0][0.209122,0.820043,-0.235931][0.162815,0.955425,0.246279][0.968408,0.042015,0][0.42332,0.71327,-0.0711946][0.349853,0.829712,0.434949][0.971096,0.0503632,0][0.42332,0.71327,-0.0711946][0.349853,0.829712,0.434949][0.971096,0.0503632,0][0.582892,0.732051,-0.424221][0.516475,0.855889,0.0266127][0.958388,0.0510101,0][0.292933,0.829445,-0.412535][0.239515,0.96992,0.043458][0.962003,0.0424289,0][0.201188,0.838328,-0.585177][0.173974,0.982646,-0.0643404][0.957835,0.0388981,0][0.292933,0.829445,-0.412535][0.239515,0.96992,0.043458][0.962003,0.0424289,0][0.582892,0.732051,-0.424221][0.516475,0.855889,0.0266127][0.958388,0.0510101,0][0.582892,0.732051,-0.424221][0.516475,0.855889,0.0266127][0.958388,0.0510101,0][0.407451,0.749839,-0.769688][0.476401,0.85882,-0.188337][0.94995,0.0441295,0][0.201188,0.838328,-0.585177][0.173974,0.982646,-0.0643404][0.957835,0.0388981,0][-0.309583,0.827662,-0.39894][-0.245344,0.967672,0.058455][0.962553,0.0503195,0][-0.226445,0.837062,-0.575528][-0.181657,0.981701,-0.0571374][0.957428,0.0483501,0][-0.438274,0.747336,-0.750605][-0.485873,0.856981,-0.171786][0.958409,0.0391385,0][-0.438274,0.747336,-0.750605][-0.485873,0.856981,-0.171786][0.958409,0.0391385,0][-0.595156,0.728564,-0.39764][-0.526406,0.847855,0.0635443][0.968525,0.0432783,0][-0.309583,0.827662,-0.39894][-0.245344,0.967672,0.058455][0.962553,0.0503195,0][-0.00904985,0.857814,-0.404189][-0.0665822,0.6758,0.0698938][0.957719,0.0570264,0][-0.00904985,0.857814,-0.404189][-0.0680768,0.679245,0.00410662][0.957719,0.0570264,0][-0.309583,0.827662,-0.39894][-0.245344,0.967672,0.058455][0.962553,0.0503195,0][-0.309583,0.827662,-0.39894][-0.245344,0.967672,0.058455][0.962553,0.0503195,0][-0.218511,0.818778,-0.226282][-0.224515,0.960429,0.164829][0.965207,0.0560158,0][-0.00904985,0.857814,-0.404189][-0.0665822,0.6758,0.0698938][0.957719,0.0570264,0][-0.218511,0.818778,-0.226282][-0.0389661,0.984643,0.170175][0.973859,0.0324063,0][-0.00338761,0.815623,-0.158767][0.0171385,0.950687,0.309679][0.973327,0.0378486,0][-0.00904985,0.857814,-0.404189][-0.0342388,0.865186,0.149529][0.965828,0.0350282,0][-0.00904985,0.857814,-0.404189][-0.0342388,0.865186,0.149529][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][-0.0665822,0.6758,0.0698938][0.955215,0.0458295,0][-0.218511,0.818778,-0.226282][1,0,0][0.961031,0.0459794,0][-0.00904985,0.857814,-0.404189][0.0357819,0.866919,0.148211][0.965828,0.0350282,0][-0.00904985,0.857814,-0.404189][-0.0342388,0.865186,0.149529][0.965828,0.0350282,0][-0.00338761,0.815623,-0.158767][0.0171385,0.950687,0.309679][0.973327,0.0378486,0][-0.00338761,0.815623,-0.158767][0.0171385,0.950687,0.309679][0.973327,0.0378486,0][0.209122,0.820043,-0.235931][0.162815,0.955425,0.246279][0.968408,0.042015,0][-0.00904985,0.857814,-0.404189][0.0357819,0.866919,0.148211][0.965828,0.0350282,0][-0.00904985,0.857814,-0.404189][0.0652334,0.674716,0.0668769][0.965828,0.0350282,0][-0.00904985,0.857814,-0.404189][0.0357819,0.866919,0.148211][0.965828,0.0350282,0][0.209122,0.820043,-0.235931][0.162815,0.955425,0.246279][0.968408,0.042015,0][0.209122,0.820043,-0.235931][0.162815,0.955425,0.246279][0.968408,0.042015,0][0.292933,0.829445,-0.412535][0.239515,0.96992,0.043458][0.962003,0.0424289,0][-0.00904985,0.857814,-0.404189][0.0652334,0.674716,0.0668769][0.965828,0.0350282,0][-0.00904985,0.857814,-0.404189][0.0637372,0.678163,0.0010205][0.965828,0.0350282,0][-0.00904985,0.857814,-0.404189][0.0652334,0.674716,0.0668769][0.965828,0.0350282,0][0.292933,0.829445,-0.412535][0.239515,0.96992,0.043458][0.962003,0.0424289,0][0.292933,0.829445,-0.412535][0.239515,0.96992,0.043458][0.962003,0.0424289,0][0.201188,0.838328,-0.585177][0.173974,0.982646,-0.0643404][0.957835,0.0388981,0][-0.00904985,0.857814,-0.404189][0.0637372,0.678163,0.0010205][0.965828,0.0350282,0][-0.00904985,0.857814,-0.404189][0.0310893,0.877734,-0.0583912][0.965828,0.0350282,0][-0.00904985,0.857814,-0.404189][0.0637372,0.678163,0.0010205][0.965828,0.0350282,0][0.201188,0.838328,-0.585177][0.173974,0.982646,-0.0643404][0.957835,0.0388981,0][0.201188,0.838328,-0.585177][0.173974,0.982646,-0.0643404][0.957835,0.0388981,0][-0.0146082,0.841481,-0.652677][-0.00447813,0.997843,-0.0654907][0.958375,0.0334407,0][-0.00904985,0.857814,-0.404189][0.0310893,0.877734,-0.0583912][0.965828,0.0350282,0][-0.00904985,0.857814,-0.404189][-0.0389249,0.875984,-0.05671][0.957719,0.0570264,0][-0.00904985,0.857814,-0.404189][0.0310893,0.877734,-0.0583912][0.957719,0.0570264,0][-0.0146082,0.841481,-0.652677][-0.00447813,0.997843,-0.0654907][0.95279,0.0513295,0][-0.0146082,0.841481,-0.652677][-0.00447813,0.997843,-0.0654907][0.95279,0.0513295,0][-0.226445,0.837062,-0.575528][-0.181657,0.981701,-0.0571374][0.957428,0.0483501,0][-0.00904985,0.857814,-0.404189][-0.0389249,0.875984,-0.05671][0.957719,0.0570264,0][-0.00904985,0.857814,-0.404189][-0.0680768,0.679245,0.00410662][0.957719,0.0570264,0][-0.00904985,0.857814,-0.404189][-0.0389249,0.875984,-0.05671][0.957719,0.0570264,0][-0.226445,0.837062,-0.575528][-0.181657,0.981701,-0.0571374][0.957428,0.0483501,0][-0.226445,0.837062,-0.575528][-0.181657,0.981701,-0.0571374][0.957428,0.0483501,0][-0.309583,0.827662,-0.39894][-0.245344,0.967672,0.058455][0.962553,0.0503195,0][-0.00904985,0.857814,-0.404189][-0.0680768,0.679245,0.00410662][0.957719,0.0570264,0][-0.00904985,0.857814,-0.404189][0.0357819,0.866919,0.148211][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][0.0652334,0.674716,0.0668769][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][0.0637372,0.678163,0.0010205][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][0.0637372,0.678163,0.0010205][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][0.0310893,0.877734,-0.0583912][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][-0.0389249,0.875984,-0.05671][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][-0.0389249,0.875984,-0.05671][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][-0.0680768,0.679245,0.00410662][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][-0.0665822,0.6758,0.0698938][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][0.0637372,0.678163,0.0010205][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][-0.0389249,0.875984,-0.05671][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][-0.0665822,0.6758,0.0698938][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][0.0357819,0.866919,0.148211][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][0.0637372,0.678163,0.0010205][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][-0.0665822,0.6758,0.0698938][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][0.0357819,0.866919,0.148211][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][-0.0665822,0.6758,0.0698938][0.955215,0.0458295,0][-0.00904985,0.857814,-0.404189][-0.0342388,0.865186,0.149529][0.955215,0.0458295,0][0.955561,-0.4165,-1.36878][0.00380249,-2.13956,-0.112101][0.909671,0.0787064,0][-0.0347509,-0.400472,-1.70828][0.00177478,-0.998629,-0.0523226][0.930407,0.053215,0][-0.0387321,-0.391297,-1.88351][-0.00892207,0.181368,-0.983375][0.933174,0.0578371,0][-0.0387321,-0.391297,-1.88351][-0.00892207,0.181368,-0.983375][0.933174,0.0578371,0][0.609603,-0.400051,-1.69446][0.236809,0.174019,-0.955845][0.92111,0.0759899,0][0.955561,-0.4165,-1.36878][0.00380249,-2.13956,-0.112101][0.909671,0.0787064,0][-0.0347509,-0.400472,-1.70828][0.00177478,-0.998629,-0.0523226][0.930407,0.053215,0][-0.991806,-0.422263,-1.32484][0.00392732,-2.20981,-0.115782][0.927259,0.0224415,0][-0.629452,-0.403718,-1.6665][-0.344972,0.0994759,-0.933327][0.931916,0.0377065,0][-0.629452,-0.403718,-1.6665][-0.344972,0.0994759,-0.933327][0.931916,0.0377065,0][-0.0387321,-0.391297,-1.88351][-0.00892207,0.181368,-0.983375][0.933174,0.0578371,0][-0.0347509,-0.400472,-1.70828][0.00177478,-0.998629,-0.0523226][0.930407,0.053215,0][0.789321,0.171112,-1.15905][0.872652,0.397544,-0.283615][0.866222,0.0409936,0][0.955561,-0.4165,-1.36878][0.00380249,-2.13956,-0.112101][0.860483,0.0601565,0][0.609603,-0.400051,-1.69446][0.236809,0.174019,-0.955845][0.849529,0.0601565,0][0.609603,-0.400051,-1.69446][0.236809,0.174019,-0.955845][0.849529,0.0601565,0][0.779922,0.556968,-1.52501][0.18126,0.223082,-0.957799][0.853565,0.0292603,0][0.789321,0.171112,-1.15905][0.872652,0.397544,-0.283615][0.866222,0.0409936,0][0.605057,0.543663,-0.960163][0.710826,0.644576,-0.281509][0.87196,0.0287291,0][0.789321,0.171112,-1.15905][0.872652,0.397544,-0.283615][0.866222,0.0409936,0][0.779922,0.556968,-1.52501][0.18126,0.223082,-0.957799][0.853565,0.0292603,0][0.779922,0.556968,-1.52501][0.18126,0.223082,-0.957799][0.853565,0.0292603,0][0.593259,0.935046,-1.43168][0.158542,0.331331,-0.930099][0.855835,0.0169958,0][0.605057,0.543663,-0.960163][0.710826,0.644576,-0.281509][0.87196,0.0287291,0][-0.825811,0.166332,-1.1226][-0.85994,0.424125,-0.283939][0.939446,0.0309861,0][-0.639682,0.539979,-0.932078][-0.720276,0.642605,-0.26127][0.943695,0.0438159,0][-0.65148,0.931362,-1.4036][-0.221404,0.324971,-0.919442][0.926289,0.0536513,0][-0.65148,0.931362,-1.4036][-0.221404,0.324971,-0.919442][0.926289,0.0536513,0][-0.835211,0.552189,-1.48856][-0.251099,0.236854,-0.938536][0.925485,0.0412129,0][-0.825811,0.166332,-1.1226][-0.85994,0.424125,-0.283939][0.939446,0.0309861,0][0.407451,0.749839,-0.769688][0.476401,0.85882,-0.188337][0.877699,0.0218015,0][0.605057,0.543663,-0.960163][0.710826,0.644576,-0.281509][0.87196,0.0287291,0][0.593259,0.935046,-1.43168][0.158542,0.331331,-0.930099][0.855835,0.0169958,0][0.593259,0.935046,-1.43168][0.158542,0.331331,-0.930099][0.855835,0.0169958,0][0.392282,1.14899,-1.38962][0.0624714,0.248705,-0.966563][0.856696,0.0100682,0][0.407451,0.749839,-0.769688][0.476401,0.85882,-0.188337][0.877699,0.0218015,0][-0.639682,0.539979,-0.932078][-0.720276,0.642605,-0.26127][0.943695,0.0438159,0][-0.438274,0.747336,-0.750605][-0.485873,0.856981,-0.171786][0.948576,0.0513446,0][-0.453443,1.14649,-1.37054][-0.198625,0.372706,-0.906443][0.926325,0.0606297,0][-0.453443,1.14649,-1.37054][-0.198625,0.372706,-0.906443][0.926325,0.0606297,0][-0.65148,0.931362,-1.4036][-0.221404,0.324971,-0.919442][0.926289,0.0536513,0][-0.639682,0.539979,-0.932078][-0.720276,0.642605,-0.26127][0.943695,0.0438159,0][0.201188,0.838328,-0.585177][0.173974,0.982646,-0.0643404][0.957835,0.0388981,0][0.407451,0.749839,-0.769688][0.476401,0.85882,-0.188337][0.94995,0.0441295,0][0.392282,1.14899,-1.38962][0.0624714,0.248705,-0.966563][0.930308,0.0307216,0][-0.0146082,0.841481,-0.652677][-0.00447813,0.997843,-0.0654907][0.95279,0.0513295,0][0.201188,0.838328,-0.585177][0.173974,0.982646,-0.0643404][0.951365,0.0574985,0][0.392282,1.14899,-1.38962][0.0624714,0.248705,-0.966563][0.925034,0.0466579,0][0.392282,1.14899,-1.38962][0.0624714,0.248705,-0.966563][0.925034,0.0466579,0][-0.0324872,1.24688,-1.39189][-0.00170157,0.434227,-0.900802][0.92875,0.038138,0][-0.0146082,0.841481,-0.652677][-0.00447813,0.997843,-0.0654907][0.95279,0.0513295,0][-0.226445,0.837062,-0.575528][-0.181657,0.981701,-0.0571374][0.957428,0.0483501,0][-0.0146082,0.841481,-0.652677][-0.00447813,0.997843,-0.0654907][0.95279,0.0513295,0][-0.0324872,1.24688,-1.39189][-0.00170157,0.434227,-0.900802][0.92875,0.038138,0][-0.0324872,1.24688,-1.39189][-0.00170157,0.434227,-0.900802][0.92875,0.038138,0][-0.453443,1.14649,-1.37054][-0.198625,0.372706,-0.906443][0.937025,0.0285651,0][-0.226445,0.837062,-0.575528][-0.181657,0.981701,-0.0571374][0.957428,0.0483501,0][-0.438274,0.747336,-0.750605][-0.485873,0.856981,-0.171786][0.958409,0.0391385,0][-0.226445,0.837062,-0.575528][-0.181657,0.981701,-0.0571374][0.957428,0.0483501,0][-0.453443,1.14649,-1.37054][-0.198625,0.372706,-0.906443][0.937025,0.0285651,0][-0.825811,0.166332,-1.1226][-0.85994,0.424125,-0.283939][0.939446,0.0309861,0][-0.835211,0.552189,-1.48856][-0.251099,0.236854,-0.938536][0.925485,0.0412129,0][-0.629452,-0.403718,-1.6665][-0.344972,0.0994759,-0.933327][0.925132,0.0100682,0][-0.629452,-0.403718,-1.6665][-0.344972,0.0994759,-0.933327][0.925132,0.0100682,0][-0.991806,-0.422263,-1.32484][0.00392732,-2.20981,-0.115782][0.936012,0.0113041,0][-0.825811,0.166332,-1.1226][-0.85994,0.424125,-0.283939][0.939446,0.0309861,0][-0.0516727,-0.46132,-2.3506][-0.00848451,0.894042,-0.447903][0.852314,0.0214731,0][-0.0504337,-0.431872,-2.29184][-0.00631918,0.951486,-0.307627][0.853819,0.0214731,0][0.0419397,-0.432052,-2.29395][-0.000419272,0.948882,-0.315631][0.853819,0.024062,0][-0.0516727,-0.46132,-2.3506][0.00108804,0.88769,-0.46044][0.852314,0.0214731,0][0.0419397,-0.432052,-2.29395][-0.000419272,0.948882,-0.315631][0.853819,0.024062,0][0.128511,-0.433209,-2.29598][0.0121611,0.939529,-0.342254][0.853819,0.0264883,0][-0.0516727,-0.46132,-2.3506][0.0143612,0.868999,-0.494605][0.852314,0.0214731,0][0.128511,-0.433209,-2.29598][0.0121611,0.939529,-0.342254][0.853819,0.0264883,0][0.203841,-0.435496,-2.29781][0.0314938,0.916798,-0.398107][0.853819,0.0285994,0][-0.0516727,-0.46132,-2.3506][0.034736,0.821067,-0.569774][0.852314,0.0214731,0][0.203841,-0.435496,-2.29781][0.0314938,0.916798,-0.398107][0.853819,0.0285994,0][0.263196,-0.439073,-2.29934][0.0643805,0.861231,-0.504119][0.853819,0.0302628,0][-0.0516727,-0.46132,-2.3506][0.0664258,0.699397,-0.71164][0.952369,0.0277032,0][0.263196,-0.439073,-2.29934][0.0643805,0.861231,-0.504119][0.962841,0.0270643,0][0.302849,-0.444019,-2.3005][0.127993,0.71994,-0.682132][0.964124,0.0273301,0][-0.0516727,-0.46132,-2.3506][0.108166,0.408198,-0.906463][0.952369,0.0277032,0][0.302849,-0.444019,-2.3005][0.127993,0.71994,-0.682132][0.964124,0.0273301,0][0.320306,-0.450246,-2.30122][0.344047,0.248649,-0.905431][0.964685,0.0275445,0][-0.0516727,-0.46132,-2.3506][0.133387,-0.0741504,-0.988286][0.853488,0.0590466,0][0.320306,-0.450246,-2.30122][0.344047,0.248649,-0.905431][0.865661,0.0590968,0][0.314473,-0.457453,-2.30147][0.25315,-0.550583,-0.795471][0.86546,0.0593199,0][-0.0516727,-0.46132,-2.3506][0.121427,-0.483414,-0.866929][0.908204,0.04716,0][0.314473,-0.457453,-2.30147][0.25315,-0.550583,-0.795471][0.896188,0.0487225,0][0.285714,-0.465128,-2.30122][0.151129,-0.790635,-0.593344][0.897081,0.0483341,0][-0.0516727,-0.46132,-2.3506][0.095018,-0.704295,-0.70352][0.966365,0.0501755,0][0.285714,-0.465128,-2.30122][0.151129,-0.790635,-0.593344][0.963227,0.0566091,0][0.235838,-0.472599,-2.30048][0.102743,-0.886158,-0.451849][0.963516,0.0556071,0][-0.0516727,-0.46132,-2.3506][0.068311,-0.815112,-0.575262][0.966365,0.0501755,0][0.235838,-0.472599,-2.30048][0.102743,-0.886158,-0.451849][0.963516,0.0556071,0][0.167977,-0.479132,-2.29928][0.068684,-0.929757,-0.361711][0.963907,0.054244,0][-0.0516727,-0.46132,-2.3506][0.0429385,-0.872564,-0.486609][0.966365,0.0501755,0][0.167977,-0.479132,-2.29928][0.068684,-0.929757,-0.361711][0.963907,0.054244,0][0.0863952,-0.484037,-2.29768][0.039814,-0.951553,-0.304897][0.964379,0.0526053,0][-0.0516727,-0.46132,-2.3506][0.01819,-0.900678,-0.434106][0.966365,0.0501755,0][0.0863952,-0.484037,-2.29768][0.039814,-0.951553,-0.304897][0.964379,0.0526053,0][-0.00378224,-0.486777,-2.29578][0.0116132,-0.961679,-0.273933][0.964899,0.0507942,0][-0.0516727,-0.46132,-2.3506][-0.00670308,-0.909195,-0.416316][0.966365,0.0501755,0][-0.00378224,-0.486777,-2.29578][0.0116132,-0.961679,-0.273933][0.964899,0.0507942,0][-0.0968897,-0.487052,-2.29368][-0.019012,-0.961919,-0.272672][0.965437,0.0489242,0][-0.0516727,-0.46132,-2.3506][-0.0324255,-0.900827,-0.432965][0.966365,0.0501755,0][-0.0968897,-0.487052,-2.29368][-0.019012,-0.961919,-0.272672][0.965437,0.0489242,0][-0.187076,-0.484846,-2.29151][-0.0477235,-0.952623,-0.300385][0.965958,0.047113,0][-0.0516727,-0.46132,-2.3506][-0.0596784,-0.872872,-0.484286][0.966365,0.0501755,0][-0.187076,-0.484846,-2.29151][-0.0477235,-0.952623,-0.300385][0.965958,0.047113,0][-0.268675,-0.480424,-2.28943][-0.0787987,-0.932153,-0.353387][0.966429,0.0454744,0][-0.0516727,-0.46132,-2.3506][-0.0893452,-0.815622,-0.571645][0.966365,0.0501755,0][-0.268675,-0.480424,-2.28943][-0.0787987,-0.932153,-0.353387][0.966429,0.0454744,0][-0.336559,-0.474293,-2.28756][-0.117415,-0.88981,-0.440967][0.966821,0.0441113,0][-0.0516727,-0.46132,-2.3506][-0.122511,-0.704815,-0.698732][0.966365,0.0501755,0][-0.336559,-0.474293,-2.28756][-0.117415,-0.88981,-0.440967][0.966821,0.0441113,0][-0.386461,-0.467117,-2.28605][-0.173152,-0.79529,-0.580975][0.967109,0.0431093,0][-0.0516727,-0.46132,-2.3506][-0.157539,-0.484287,-0.860609][0.946845,0.0487654,0][-0.386461,-0.467117,-2.28605][-0.173152,-0.79529,-0.580975][0.935723,0.0475712,0][-0.415246,-0.459613,-2.28501][-0.286086,-0.555177,-0.780982][0.934832,0.0471812,0][-0.0516727,-0.46132,-2.3506][-0.177385,-0.0751389,-0.981269][0.879518,0.0593199,0][-0.415246,-0.459613,-2.28501][-0.286086,-0.555177,-0.780982][0.891471,0.0586101,0][-0.421105,-0.45244,-2.2845][-0.386734,0.247799,-0.888275][0.891681,0.0588257,0][-0.0516727,-0.46132,-2.3506][-0.151352,0.407433,-0.900606][0.964685,0.0246975,0][-0.421105,-0.45244,-2.2845][-0.386734,0.247799,-0.888275][0.952368,0.024701,0][-0.403669,-0.44611,-2.28456][-0.163019,0.722797,-0.671557][0.952926,0.0244645,0][-0.0516727,-0.46132,-2.3506][-0.102584,0.698929,-0.707796][0.92738,0.0374501,0][-0.403669,-0.44611,-2.28456][-0.163019,0.722797,-0.671557][0.939141,0.0373942,0][-0.364035,-0.44093,-2.28519][-0.091753,0.864668,-0.493894][0.937869,0.0377066,0][-0.0516727,-0.46132,-2.3506][-0.0652582,0.820765,-0.567526][0.858999,0.0555618,0][-0.364035,-0.44093,-2.28519][-0.091753,0.864668,-0.493894][0.860409,0.0460841,0][-0.304693,-0.437001,-2.28633][-0.054057,0.919572,-0.389186][0.860409,0.0478776,0][-0.0516727,-0.46132,-2.3506][-0.0417933,0.868837,-0.493332][0.858999,0.0555618,0][-0.304693,-0.437001,-2.28633][-0.054057,0.919572,-0.389186][0.860409,0.0478776,0][-0.229372,-0.434268,-2.2879][-0.0325103,0.941109,-0.336538][0.860409,0.050154,0][-0.0516727,-0.46132,-2.3506][-0.0271038,0.88761,-0.459798][0.858999,0.0555618,0][-0.229372,-0.434268,-2.2879][-0.0325103,0.941109,-0.336538][0.860409,0.050154,0][-0.142806,-0.432599,-2.28978][-0.0222203,0.943149,-0.331627][0.860409,0.0527702,0][-0.0516727,-0.46132,-2.3506][-0.017018,0.894017,-0.447711][0.979208,0.031373,0][-0.142806,-0.432599,-2.28978][-0.017018,0.894017,-0.447711][0.982924,0.0313607,0][-0.0504337,-0.431872,-2.29184][-0.017018,0.894017,-0.447711][0.980461,0.0330871,0][0.132528,-0.402169,-2.11388][-0.00499623,0.992458,-0.122486][0.858567,0.0264883,0][0.0419397,-0.432052,-2.29395][-0.000419272,0.948882,-0.315631][0.853819,0.024062,0][-0.0504337,-0.431872,-2.29184][-0.00631918,0.951486,-0.307627][0.853819,0.0214731,0][-0.0504337,-0.431872,-2.29184][-0.00631918,0.951486,-0.307627][0.853819,0.0214731,0][-0.0464136,-0.402666,-2.10984][-0.00620151,0.992791,-0.119702][0.858567,0.0214731,0][0.132528,-0.402169,-2.11388][-0.00499623,0.992458,-0.122486][0.858567,0.0264883,0][0.300227,-0.402081,-2.11768][0.000561251,0.991044,-0.133536][0.858567,0.0311883,0][0.128511,-0.433209,-2.29598][0.0121611,0.939529,-0.342254][0.853819,0.0264883,0][0.0419397,-0.432052,-2.29395][-0.000419272,0.948882,-0.315631][0.853819,0.024062,0][0.0419397,-0.432052,-2.29395][-0.000419272,0.948882,-0.315631][0.853819,0.024062,0][0.132528,-0.402169,-2.11388][-0.00499623,0.992458,-0.122486][0.858567,0.0264883,0][0.300227,-0.402081,-2.11768][0.000561251,0.991044,-0.133536][0.858567,0.0311883,0][0.446147,-0.403305,-2.12106][0.016832,0.986973,-0.160002][0.858567,0.0352779,0][0.203841,-0.435496,-2.29781][0.0314938,0.916798,-0.398107][0.853819,0.0285994,0][0.128511,-0.433209,-2.29598][0.0121611,0.939529,-0.342254][0.853819,0.0264883,0][0.128511,-0.433209,-2.29598][0.0121611,0.939529,-0.342254][0.853819,0.0264883,0][0.300227,-0.402081,-2.11768][0.000561251,0.991044,-0.133536][0.858567,0.0311883,0][0.446147,-0.403305,-2.12106][0.016832,0.986973,-0.160002][0.858567,0.0352779,0][0.561123,-0.40703,-2.12387][0.0574774,0.973628,-0.220782][0.858567,0.0385001,0][0.263196,-0.439073,-2.29934][0.0643805,0.861231,-0.504119][0.853819,0.0302628,0][0.203841,-0.435496,-2.29781][0.0314938,0.916798,-0.398107][0.853819,0.0285994,0][0.203841,-0.435496,-2.29781][0.0314938,0.916798,-0.398107][0.853819,0.0285994,0][0.446147,-0.403305,-2.12106][0.016832,0.986973,-0.160002][0.858567,0.0352779,0][0.561123,-0.40703,-2.12387][0.0574774,0.973628,-0.220782][0.858567,0.0385001,0][0.637932,-0.41418,-2.12599][0.174851,0.904661,-0.388606][0.858567,0.0406525,0][0.302849,-0.444019,-2.3005][0.127993,0.71994,-0.682132][0.853819,0.0313738,0][0.263196,-0.439073,-2.29934][0.0643805,0.861231,-0.504119][0.853819,0.0302628,0][0.263196,-0.439073,-2.29934][0.0643805,0.861231,-0.504119][0.853819,0.0302628,0][0.561123,-0.40703,-2.12387][0.0574774,0.973628,-0.220782][0.858567,0.0385001,0][0.637932,-0.41418,-2.12599][0.174851,0.904661,-0.388606][0.858567,0.0406525,0][0.671748,-0.425123,-2.12733][0.593928,0.278049,-0.754942][0.858567,0.0415997,0][0.320306,-0.450246,-2.30122][0.344047,0.248649,-0.905431][0.853819,0.0318628,0][0.302849,-0.444019,-2.3005][0.127993,0.71994,-0.682132][0.853819,0.0313738,0][0.302849,-0.444019,-2.3005][0.127993,0.71994,-0.682132][0.853819,0.0313738,0][0.637932,-0.41418,-2.12599][0.174851,0.904661,-0.388606][0.858567,0.0406525,0][0.671748,-0.425123,-2.12733][0.593928,0.278049,-0.754942][0.858567,0.0415997,0][0.660448,-0.439442,-2.12782][0.436605,-0.693357,-0.573264][0.876708,0.0589025,0][0.314473,-0.457453,-2.30147][0.25315,-0.550583,-0.795471][0.86546,0.0593199,0][0.320306,-0.450246,-2.30122][0.344047,0.248649,-0.905431][0.865661,0.0590968,0][0.320306,-0.450246,-2.30122][0.344047,0.248649,-0.905431][0.865661,0.0590968,0][0.671748,-0.425123,-2.12733][0.593928,0.278049,-0.754942][0.877097,0.0584587,0][0.660448,-0.439442,-2.12782][0.436605,-0.693357,-0.573264][0.876708,0.0589025,0][0.604741,-0.455934,-2.12742][0.222214,-0.938075,-0.265773][0.957633,0.0619371,0][0.285714,-0.465128,-2.30122][0.151129,-0.790635,-0.593344][0.963227,0.0566091,0][0.314473,-0.457453,-2.30147][0.25315,-0.550583,-0.795471][0.963061,0.0571869,0][0.314473,-0.457453,-2.30147][0.25315,-0.550583,-0.795471][0.963061,0.0571869,0][0.660448,-0.439442,-2.12782][0.436605,-0.693357,-0.573264][0.957311,0.0630565,0][0.604741,-0.455934,-2.12742][0.222214,-0.938075,-0.265773][0.957633,0.0619371,0][0.508127,-0.472808,-2.12611][0.14306,-0.976339,-0.162161][0.958191,0.0599962,0][0.235838,-0.472599,-2.30048][0.102743,-0.886158,-0.451849][0.963516,0.0556071,0][0.285714,-0.465128,-2.30122][0.151129,-0.790635,-0.593344][0.963227,0.0566091,0][0.285714,-0.465128,-2.30122][0.151129,-0.790635,-0.593344][0.963227,0.0566091,0][0.604741,-0.455934,-2.12742][0.222214,-0.938075,-0.265773][0.957633,0.0619371,0][0.508127,-0.472808,-2.12611][0.14306,-0.976339,-0.162161][0.958191,0.0599962,0][0.376674,-0.488046,-2.12392][0.0945861,-0.988723,-0.116107][0.958951,0.0573556,0][0.167977,-0.479132,-2.29928][0.068684,-0.929757,-0.361711][0.963907,0.054244,0][0.235838,-0.472599,-2.30048][0.102743,-0.886158,-0.451849][0.963516,0.0556071,0][0.235838,-0.472599,-2.30048][0.102743,-0.886158,-0.451849][0.963516,0.0556071,0][0.508127,-0.472808,-2.12611][0.14306,-0.976339,-0.162161][0.958191,0.0599962,0][0.376674,-0.488046,-2.12392][0.0945861,-0.988723,-0.116107][0.958951,0.0573556,0][0.218639,-0.499751,-2.12094][0.0551833,-0.994168,-0.0926552][0.959863,0.0541813,0][0.0863952,-0.484037,-2.29768][0.039814,-0.951553,-0.304897][0.964379,0.0526053,0][0.167977,-0.479132,-2.29928][0.068684,-0.929757,-0.361711][0.963907,0.054244,0][0.167977,-0.479132,-2.29928][0.068684,-0.929757,-0.361711][0.963907,0.054244,0][0.376674,-0.488046,-2.12392][0.0945861,-0.988723,-0.116107][0.958951,0.0573556,0][0.218639,-0.499751,-2.12094][0.0551833,-0.994168,-0.0926552][0.959863,0.0541813,0][0.0439528,-0.506327,-2.11732][0.0185149,-0.996445,-0.0821876][0.960872,0.0506727,0][-0.00378224,-0.486777,-2.29578][0.0116132,-0.961679,-0.273933][0.964899,0.0507942,0][0.0863952,-0.484037,-2.29768][0.039814,-0.951553,-0.304897][0.964379,0.0526053,0][0.0863952,-0.484037,-2.29768][0.039814,-0.951553,-0.304897][0.964379,0.0526053,0][0.218639,-0.499751,-2.12094][0.0551833,-0.994168,-0.0926552][0.959863,0.0541813,0][0.0439528,-0.506327,-2.11732][0.0185149,-0.996445,-0.0821876][0.960872,0.0506727,0][-0.136411,-0.506861,-2.11325][-0.017492,-0.996504,-0.0816911][0.961913,0.0470503,0][-0.0968897,-0.487052,-2.29368][-0.019012,-0.961919,-0.272672][0.965437,0.0489242,0][-0.00378224,-0.486777,-2.29578][0.0116132,-0.961679,-0.273933][0.964899,0.0507942,0][-0.00378224,-0.486777,-2.29578][0.0116132,-0.961679,-0.273933][0.964899,0.0507942,0][0.0439528,-0.506327,-2.11732][0.0185149,-0.996445,-0.0821876][0.960872,0.0506727,0][-0.136411,-0.506861,-2.11325][-0.017492,-0.996504,-0.0816911][0.961913,0.0470503,0][-0.311119,-0.501319,-2.10899][-0.0540982,-0.994391,-0.0908824][0.962922,0.0435418,0][-0.187076,-0.484846,-2.29151][-0.0477235,-0.952623,-0.300385][0.965958,0.047113,0][-0.0968897,-0.487052,-2.29368][-0.019012,-0.961919,-0.272672][0.965437,0.0489242,0][-0.0968897,-0.487052,-2.29368][-0.019012,-0.961919,-0.272672][0.965437,0.0489242,0][-0.136411,-0.506861,-2.11325][-0.017492,-0.996504,-0.0816911][0.961913,0.0470503,0][-0.311119,-0.501319,-2.10899][-0.0540982,-0.994391,-0.0908824][0.962922,0.0435418,0][-0.469194,-0.49055,-2.10484][-0.0937869,-0.989269,-0.112031][0.963835,0.0403674,0][-0.268675,-0.480424,-2.28943][-0.0787987,-0.932153,-0.353387][0.966429,0.0454744,0][-0.187076,-0.484846,-2.29151][-0.0477235,-0.952623,-0.300385][0.965958,0.047113,0][-0.187076,-0.484846,-2.29151][-0.0477235,-0.952623,-0.300385][0.965958,0.047113,0][-0.311119,-0.501319,-2.10899][-0.0540982,-0.994391,-0.0908824][0.962922,0.0435418,0][-0.469194,-0.49055,-2.10484][-0.0937869,-0.989269,-0.112031][0.963835,0.0403674,0][-0.6007,-0.476089,-2.10109][-0.143857,-0.977406,-0.154863][0.964594,0.0377269,0][-0.336559,-0.474293,-2.28756][-0.117415,-0.88981,-0.440967][0.966821,0.0441113,0][-0.268675,-0.480424,-2.28943][-0.0787987,-0.932153,-0.353387][0.966429,0.0454744,0][-0.268675,-0.480424,-2.28943][-0.0787987,-0.932153,-0.353387][0.966429,0.0454744,0][-0.469194,-0.49055,-2.10484][-0.0937869,-0.989269,-0.112031][0.963835,0.0403674,0][-0.6007,-0.476089,-2.10109][-0.143857,-0.977406,-0.154863][0.964594,0.0377269,0][-0.697373,-0.459787,-2.09804][-0.227888,-0.93992,-0.254198][0.965152,0.0357859,0][-0.386461,-0.467117,-2.28605][-0.173152,-0.79529,-0.580975][0.967109,0.0431093,0][-0.336559,-0.474293,-2.28756][-0.117415,-0.88981,-0.440967][0.966821,0.0441113,0][-0.336559,-0.474293,-2.28756][-0.117415,-0.88981,-0.440967][0.966821,0.0441113,0][-0.6007,-0.476089,-2.10109][-0.143857,-0.977406,-0.154863][0.964594,0.0377269,0][-0.697373,-0.459787,-2.09804][-0.227888,-0.93992,-0.254198][0.965152,0.0357859,0][-0.753137,-0.443625,-2.09593][-0.457833,-0.697287,-0.551525][0.965474,0.0346665,0][-0.415246,-0.459613,-2.28501][-0.286086,-0.555177,-0.780982][0.967275,0.0425315,0][-0.386461,-0.467117,-2.28605][-0.173152,-0.79529,-0.580975][0.967109,0.0431093,0][-0.386461,-0.467117,-2.28605][-0.173152,-0.79529,-0.580975][0.967109,0.0431093,0][-0.697373,-0.459787,-2.09804][-0.227888,-0.93992,-0.254198][0.965152,0.0357859,0][-0.753137,-0.443625,-2.09593][-0.457833,-0.697287,-0.551525][0.965474,0.0346665,0][-0.764488,-0.429373,-2.09493][-0.629611,0.275469,-0.726434][0.903134,0.0590462,0][-0.421105,-0.45244,-2.2845][-0.386734,0.247799,-0.888275][0.891681,0.0588257,0][-0.415246,-0.459613,-2.28501][-0.286086,-0.555177,-0.780982][0.891471,0.0586101,0][-0.415246,-0.459613,-2.28501][-0.286086,-0.555177,-0.780982][0.891471,0.0586101,0][-0.753137,-0.443625,-2.09593][-0.457833,-0.697287,-0.551525][0.902727,0.0586169,0][-0.764488,-0.429373,-2.09493][-0.629611,0.275469,-0.726434][0.903134,0.0590462,0][-0.730711,-0.41823,-2.09511][-0.196911,0.904673,-0.37788][0.864854,0.034881,0][-0.403669,-0.44611,-2.28456][-0.163019,0.722797,-0.671557][0.860409,0.044886,0][-0.421105,-0.45244,-2.2845][-0.386734,0.247799,-0.888275][0.860409,0.0443587,0][-0.421105,-0.45244,-2.2845][-0.386734,0.247799,-0.888275][0.860409,0.0443587,0][-0.764488,-0.429373,-2.09493][-0.629611,0.275469,-0.726434][0.864854,0.0338596,0][-0.730711,-0.41823,-2.09511][-0.196911,0.904673,-0.37788][0.864854,0.034881,0][-0.653928,-0.410626,-2.09646][-0.0722487,0.973762,-0.215794][0.864854,0.0372018,0][-0.364035,-0.44093,-2.28519][-0.091753,0.864668,-0.493894][0.860409,0.0460841,0][-0.403669,-0.44611,-2.28456][-0.163019,0.722797,-0.671557][0.860409,0.044886,0][-0.403669,-0.44611,-2.28456][-0.163019,0.722797,-0.671557][0.860409,0.044886,0][-0.730711,-0.41823,-2.09511][-0.196911,0.904673,-0.37788][0.864854,0.034881,0][-0.653928,-0.410626,-2.09646][-0.0722487,0.973762,-0.215794][0.864854,0.0372018,0][-0.538967,-0.406221,-2.09884][-0.0294941,0.986913,-0.158534][0.864854,0.0406763,0][-0.304693,-0.437001,-2.28633][-0.054057,0.919572,-0.389186][0.860409,0.0478776,0][-0.364035,-0.44093,-2.28519][-0.091753,0.864668,-0.493894][0.860409,0.0460841,0][-0.364035,-0.44093,-2.28519][-0.091753,0.864668,-0.493894][0.860409,0.0460841,0][-0.653928,-0.410626,-2.09646][-0.0722487,0.973762,-0.215794][0.864854,0.0372018,0][-0.538967,-0.406221,-2.09884][-0.0294941,0.986913,-0.158534][0.864854,0.0406763,0][-0.393053,-0.404133,-2.10204][-0.0129022,0.990874,-0.134176][0.864854,0.045086,0][-0.229372,-0.434268,-2.2879][-0.0325103,0.941109,-0.336538][0.860409,0.050154,0][-0.304693,-0.437001,-2.28633][-0.054057,0.919572,-0.389186][0.860409,0.0478776,0][-0.304693,-0.437001,-2.28633][-0.054057,0.919572,-0.389186][0.860409,0.0478776,0][-0.538967,-0.406221,-2.09884][-0.0294941,0.986913,-0.158534][0.864854,0.0406763,0][-0.393053,-0.404133,-2.10204][-0.0129022,0.990874,-0.134176][0.864854,0.045086,0][-0.225355,-0.403228,-2.10581][-0.00816386,0.991194,-0.132168][0.864854,0.050154,0][-0.142806,-0.432599,-2.28978][-0.0222203,0.943149,-0.331627][0.860409,0.0527702,0][-0.229372,-0.434268,-2.2879][-0.0325103,0.941109,-0.336538][0.860409,0.050154,0][-0.229372,-0.434268,-2.2879][-0.0325103,0.941109,-0.336538][0.860409,0.050154,0][-0.393053,-0.404133,-2.10204][-0.0129022,0.990874,-0.134176][0.864854,0.045086,0][-0.225355,-0.403228,-2.10581][-0.00816386,0.991194,-0.132168][0.864854,0.050154,0][-0.142806,-0.432599,-2.28978][-0.0222203,0.943149,-0.331627][0.860409,0.0527702,0][-0.225355,-0.403228,-2.10581][-0.00816386,0.991194,-0.132168][0.864854,0.050154,0][-0.0464136,-0.402666,-2.10984][-0.00672002,0.986999,-0.160583][0.864854,0.0555618,0][-0.142806,-0.432599,-2.28978][-0.011295,0.987344,-0.15819][0.978845,0.0614942,0][-0.0464136,-0.402666,-2.10984][-0.011295,0.987344,-0.15819][0.981741,0.0555189,0][-0.0504337,-0.431872,-2.29184][-0.011295,0.987344,-0.15819][0.981876,0.0614249,0][0.214898,-0.375915,-1.79996][-0.0101746,0.998124,-0.0603816][0.866835,0.0285994,0][0.132528,-0.402169,-2.11388][-0.00499623,0.992458,-0.122486][0.858567,0.0264883,0][-0.0464136,-0.402666,-2.10984][-0.00620151,0.992791,-0.119702][0.858567,0.0214731,0][-0.0464136,-0.402666,-2.10984][-0.00620151,0.992791,-0.119702][0.858567,0.0214731,0][-0.0393674,-0.377501,-1.79426][-0.00786594,0.998196,-0.0595259][0.866835,0.0214731,0][0.214898,-0.375915,-1.79996][-0.0101746,0.998124,-0.0603816][0.866835,0.0285994,0][0.453185,-0.373304,-1.80523][-0.011249,0.99786,-0.0644152][0.866835,0.0352779,0][0.300227,-0.402081,-2.11768][0.000561251,0.991044,-0.133536][0.858567,0.0311883,0][0.132528,-0.402169,-2.11388][-0.00499623,0.992458,-0.122486][0.858567,0.0264883,0][0.132528,-0.402169,-2.11388][-0.00499623,0.992458,-0.122486][0.858567,0.0264883,0][0.214898,-0.375915,-1.79996][-0.0101746,0.998124,-0.0603816][0.866835,0.0285994,0][0.453185,-0.373304,-1.80523][-0.011249,0.99786,-0.0644152][0.866835,0.0352779,0][0.660524,-0.371402,-1.80984][0.00111391,0.997264,-0.073916][0.866835,0.0410891,0][0.446147,-0.403305,-2.12106][0.016832,0.986973,-0.160002][0.858567,0.0352779,0][0.300227,-0.402081,-2.11768][0.000561251,0.991044,-0.133536][0.858567,0.0311883,0][0.300227,-0.402081,-2.11768][0.000561251,0.991044,-0.133536][0.858567,0.0311883,0][0.453185,-0.373304,-1.80523][-0.011249,0.99786,-0.0644152][0.866835,0.0352779,0][0.660524,-0.371402,-1.80984][0.00111391,0.997264,-0.073916][0.866835,0.0410891,0][0.823891,-0.372783,-1.81363][0.0317826,0.994145,-0.103279][0.866835,0.0456676,0][0.561123,-0.40703,-2.12387][0.0574774,0.973628,-0.220782][0.858567,0.0385001,0][0.446147,-0.403305,-2.12106][0.016832,0.986973,-0.160002][0.858567,0.0352779,0][0.446147,-0.403305,-2.12106][0.016832,0.986973,-0.160002][0.858567,0.0352779,0][0.660524,-0.371402,-1.80984][0.00111391,0.997264,-0.073916][0.866835,0.0410891,0][0.823891,-0.372783,-1.81363][0.0317826,0.994145,-0.103279][0.866835,0.0456676,0][0.933027,-0.380292,-1.8165][0.163423,0.957643,-0.237091][0.866835,0.048726,0][0.637932,-0.41418,-2.12599][0.174851,0.904661,-0.388606][0.858567,0.0406525,0][0.561123,-0.40703,-2.12387][0.0574774,0.973628,-0.220782][0.858567,0.0385001,0][0.561123,-0.40703,-2.12387][0.0574774,0.973628,-0.220782][0.858567,0.0385001,0][0.823891,-0.372783,-1.81363][0.0317826,0.994145,-0.103279][0.866835,0.0456676,0][0.933027,-0.380292,-1.8165][0.163423,0.957643,-0.237091][0.866835,0.048726,0][0.981076,-0.39462,-1.81834][0.754041,0.268871,-0.599275][0.866835,0.0500719,0][0.671748,-0.425123,-2.12733][0.593928,0.278049,-0.754942][0.858567,0.0415997,0][0.637932,-0.41418,-2.12599][0.174851,0.904661,-0.388606][0.858567,0.0406525,0][0.637932,-0.41418,-2.12599][0.174851,0.904661,-0.388606][0.858567,0.0406525,0][0.933027,-0.380292,-1.8165][0.163423,0.957643,-0.237091][0.866835,0.048726,0][0.981076,-0.39462,-1.81834][0.754041,0.268871,-0.599275][0.866835,0.0500719,0][0.965021,-0.415346,-1.81906][0.535421,-0.755564,-0.377421][0.87243,0.046674,0][0.660448,-0.439442,-2.12782][0.436605,-0.693357,-0.573264][0.884069,0.0487292,0][0.671748,-0.425123,-2.12733][0.593928,0.278049,-0.754942][0.883754,0.0491879,0][0.671748,-0.425123,-2.12733][0.593928,0.278049,-0.754942][0.883754,0.0491879,0][0.981076,-0.39462,-1.81834][0.754041,0.268871,-0.599275][0.871983,0.0473359,0][0.965021,-0.415346,-1.81906][0.535421,-0.755564,-0.377421][0.87243,0.046674,0][0.885867,-0.440354,-1.81857][0.247324,-0.956873,-0.1524][0.949477,0.0657041,0][0.604741,-0.455934,-2.12742][0.222214,-0.938075,-0.265773][0.957633,0.0619371,0][0.660448,-0.439442,-2.12782][0.436605,-0.693357,-0.573264][0.957311,0.0630565,0][0.660448,-0.439442,-2.12782][0.436605,-0.693357,-0.573264][0.957311,0.0630565,0][0.965021,-0.415346,-1.81906][0.535421,-0.755564,-0.377421][0.949019,0.0672946,0][0.885867,-0.440354,-1.81857][0.247324,-0.956873,-0.1524][0.949477,0.0657041,0][0.748588,-0.466814,-1.81684][0.157952,-0.98322,-0.0912646][0.950269,0.0629461,0][0.508127,-0.472808,-2.12611][0.14306,-0.976339,-0.162161][0.958191,0.0599962,0][0.604741,-0.455934,-2.12742][0.222214,-0.938075,-0.265773][0.957633,0.0619371,0][0.604741,-0.455934,-2.12742][0.222214,-0.938075,-0.265773][0.957633,0.0619371,0][0.885867,-0.440354,-1.81857][0.247324,-0.956873,-0.1524][0.949477,0.0657041,0][0.748588,-0.466814,-1.81684][0.157952,-0.98322,-0.0912646][0.950269,0.0629461,0][0.561805,-0.49157,-1.81389][0.108396,-0.992101,-0.0631274][0.951348,0.0591939,0][0.376674,-0.488046,-2.12392][0.0945861,-0.988723,-0.116107][0.958951,0.0573556,0][0.508127,-0.472808,-2.12611][0.14306,-0.976339,-0.162161][0.958191,0.0599962,0][0.508127,-0.472808,-2.12611][0.14306,-0.976339,-0.162161][0.958191,0.0599962,0][0.748588,-0.466814,-1.81684][0.157952,-0.98322,-0.0912646][0.950269,0.0629461,0][0.561805,-0.49157,-1.81389][0.108396,-0.992101,-0.0631274][0.951348,0.0591939,0][0.337251,-0.510877,-1.8098][0.0640636,-0.996666,-0.0505321][0.952645,0.0546834,0][0.218639,-0.499751,-2.12094][0.0551833,-0.994168,-0.0926552][0.959863,0.0541813,0][0.376674,-0.488046,-2.12392][0.0945861,-0.988723,-0.116107][0.958951,0.0573556,0][0.376674,-0.488046,-2.12392][0.0945861,-0.988723,-0.116107][0.958951,0.0573556,0][0.561805,-0.49157,-1.81389][0.108396,-0.992101,-0.0631274][0.951348,0.0591939,0][0.337251,-0.510877,-1.8098][0.0640636,-0.996666,-0.0505321][0.952645,0.0546834,0][0.0890331,-0.521765,-1.80473][0.0222068,-0.99875,-0.0447874][0.954078,0.0496979,0][0.0439528,-0.506327,-2.11732][0.0185149,-0.996445,-0.0821876][0.960872,0.0506727,0][0.218639,-0.499751,-2.12094][0.0551833,-0.994168,-0.0926552][0.959863,0.0541813,0][0.218639,-0.499751,-2.12094][0.0551833,-0.994168,-0.0926552][0.959863,0.0541813,0][0.337251,-0.510877,-1.8098][0.0640636,-0.996666,-0.0505321][0.952645,0.0546834,0][0.0890331,-0.521765,-1.80473][0.0222068,-0.99875,-0.0447874][0.954078,0.0496979,0][-0.167255,-0.522523,-1.79895][-0.0191619,-0.998838,-0.0442185][0.955558,0.0445507,0][-0.136411,-0.506861,-2.11325][-0.017492,-0.996504,-0.0816911][0.961913,0.0470503,0][0.0439528,-0.506327,-2.11732][0.0185149,-0.996445,-0.0821876][0.960872,0.0506727,0][0.0439528,-0.506327,-2.11732][0.0185149,-0.996445,-0.0821876][0.960872,0.0506727,0][0.0890331,-0.521765,-1.80473][0.0222068,-0.99875,-0.0447874][0.954078,0.0496979,0][-0.167255,-0.522523,-1.79895][-0.0191619,-0.998838,-0.0442185][0.955558,0.0445507,0][-0.41551,-0.513105,-1.79282][-0.0610865,-0.996943,-0.0487096][0.956991,0.0395652,0][-0.311119,-0.501319,-2.10899][-0.0540982,-0.994391,-0.0908824][0.962922,0.0435418,0][-0.136411,-0.506861,-2.11325][-0.017492,-0.996504,-0.0816911][0.961913,0.0470503,0][-0.136411,-0.506861,-2.11325][-0.017492,-0.996504,-0.0816911][0.961913,0.0470503,0][-0.167255,-0.522523,-1.79895][-0.0191619,-0.998838,-0.0442185][0.955558,0.0445507,0][-0.41551,-0.513105,-1.79282][-0.0610865,-0.996943,-0.0487096][0.956991,0.0395652,0][-0.640129,-0.495127,-1.78677][-0.103539,-0.992732,-0.0613493][0.958288,0.0350546,0][-0.469194,-0.49055,-2.10484][-0.0937869,-0.989269,-0.112031][0.963835,0.0403674,0][-0.311119,-0.501319,-2.10899][-0.0540982,-0.994391,-0.0908824][0.962922,0.0435418,0][-0.311119,-0.501319,-2.10899][-0.0540982,-0.994391,-0.0908824][0.962922,0.0435418,0][-0.41551,-0.513105,-1.79282][-0.0610865,-0.996943,-0.0487096][0.956991,0.0395652,0][-0.640129,-0.495127,-1.78677][-0.103539,-0.992732,-0.0613493][0.958288,0.0350546,0][-0.826998,-0.471477,-1.78129][-0.159921,-0.983098,-0.0891283][0.959367,0.0313025,0][-0.6007,-0.476089,-2.10109][-0.143857,-0.977406,-0.154863][0.964594,0.0377269,0][-0.469194,-0.49055,-2.10484][-0.0937869,-0.989269,-0.112031][0.963835,0.0403674,0][-0.469194,-0.49055,-2.10484][-0.0937869,-0.989269,-0.112031][0.963835,0.0403674,0][-0.640129,-0.495127,-1.78677][-0.103539,-0.992732,-0.0613493][0.958288,0.0350546,0][-0.826998,-0.471477,-1.78129][-0.159921,-0.983098,-0.0891283][0.959367,0.0313025,0][-0.964369,-0.44583,-1.77682][-0.252979,-0.958412,-0.132089][0.96016,0.0285445,0][-0.697373,-0.459787,-2.09804][-0.227888,-0.93992,-0.254198][0.965152,0.0357859,0][-0.6007,-0.476089,-2.10109][-0.143857,-0.977406,-0.154863][0.964594,0.0377269,0][-0.6007,-0.476089,-2.10109][-0.143857,-0.977406,-0.154863][0.964594,0.0377269,0][-0.826998,-0.471477,-1.78129][-0.159921,-0.983098,-0.0891283][0.959367,0.0313025,0][-0.964369,-0.44583,-1.77682][-0.252979,-0.958412,-0.132089][0.96016,0.0285445,0][-1.04361,-0.42129,-1.77374][-0.543833,-0.77141,-0.330412][0.960617,0.0269539,0][-0.753137,-0.443625,-2.09593][-0.457833,-0.697287,-0.551525][0.965474,0.0346665,0][-0.697373,-0.459787,-2.09804][-0.227888,-0.93992,-0.254198][0.965152,0.0357859,0][-0.697373,-0.459787,-2.09804][-0.227888,-0.93992,-0.254198][0.965152,0.0357859,0][-0.964369,-0.44583,-1.77682][-0.252979,-0.958412,-0.132089][0.96016,0.0285445,0][-1.04361,-0.42129,-1.77374][-0.543833,-0.77141,-0.330412][0.960617,0.0269539,0][-1.05974,-0.400659,-1.77229][-0.791644,0.284269,-0.540824][0.910624,0.0485251,0][-0.764488,-0.429373,-2.09493][-0.629611,0.275469,-0.726434][0.922399,0.0466937,0][-0.753137,-0.443625,-2.09593][-0.457833,-0.697287,-0.551525][0.922713,0.0471529,0][-0.753137,-0.443625,-2.09593][-0.457833,-0.697287,-0.551525][0.922713,0.0471529,0][-1.04361,-0.42129,-1.77374][-0.543833,-0.77141,-0.330412][0.91107,0.0491879,0][-1.05974,-0.400659,-1.77229][-0.791644,0.284269,-0.540824][0.910624,0.0485251,0][-1.01174,-0.386047,-1.77262][-0.17962,0.962373,-0.203897][0.872595,0.0261754,0][-0.730711,-0.41823,-2.09511][-0.196911,0.904673,-0.37788][0.864854,0.034881,0][-0.764488,-0.429373,-2.09493][-0.629611,0.275469,-0.726434][0.864854,0.0338596,0][-0.764488,-0.429373,-2.09493][-0.629611,0.275469,-0.726434][0.864854,0.0338596,0][-1.05974,-0.400659,-1.77229][-0.791644,0.284269,-0.540824][0.872595,0.0247241,0][-1.01174,-0.386047,-1.77262][-0.17962,0.962373,-0.203897][0.872595,0.0261754,0][-0.902634,-0.377892,-1.77467][-0.0514089,0.993247,-0.104003][0.872595,0.0294732,0][-0.653928,-0.410626,-2.09646][-0.0722487,0.973762,-0.215794][0.864854,0.0372018,0][-0.730711,-0.41823,-2.09511][-0.196911,0.904673,-0.37788][0.864854,0.034881,0][-0.730711,-0.41823,-2.09511][-0.196911,0.904673,-0.37788][0.864854,0.034881,0][-1.01174,-0.386047,-1.77262][-0.17962,0.962373,-0.203897][0.872595,0.0261754,0][-0.902634,-0.377892,-1.77467][-0.0514089,0.993247,-0.104003][0.872595,0.0294732,0][-0.739273,-0.375545,-1.77826][-0.00846379,0.996919,-0.0779807][0.872595,0.0344102,0][-0.538967,-0.406221,-2.09884][-0.0294941,0.986913,-0.158534][0.864854,0.0406763,0][-0.653928,-0.410626,-2.09646][-0.0722487,0.973762,-0.215794][0.864854,0.0372018,0][-0.653928,-0.410626,-2.09646][-0.0722487,0.973762,-0.215794][0.864854,0.0372018,0][-0.902634,-0.377892,-1.77467][-0.0514089,0.993247,-0.104003][0.872595,0.0294732,0][-0.739273,-0.375545,-1.77826][-0.00846379,0.996919,-0.0779807][0.872595,0.0344102,0][-0.53193,-0.37622,-1.78301][0.00187195,0.997779,-0.0665894][0.872595,0.0406763,0][-0.393053,-0.404133,-2.10204][-0.0129022,0.990874,-0.134176][0.864854,0.045086,0][-0.538967,-0.406221,-2.09884][-0.0294941,0.986913,-0.158534][0.864854,0.0406763,0][-0.538967,-0.406221,-2.09884][-0.0294941,0.986913,-0.158534][0.864854,0.0406763,0][-0.739273,-0.375545,-1.77826][-0.00846379,0.996919,-0.0779807][0.872595,0.0344102,0][-0.53193,-0.37622,-1.78301][0.00187195,0.997779,-0.0665894][0.872595,0.0406763,0][-0.293636,-0.37742,-1.78848][0.000887111,0.997823,-0.0659502][0.872595,0.0478776,0][-0.225355,-0.403228,-2.10581][-0.00816386,0.991194,-0.132168][0.864854,0.050154,0][-0.393053,-0.404133,-2.10204][-0.0129022,0.990874,-0.134176][0.864854,0.045086,0][-0.393053,-0.404133,-2.10204][-0.0129022,0.990874,-0.134176][0.864854,0.045086,0][-0.53193,-0.37622,-1.78301][0.00187195,0.997779,-0.0665894][0.872595,0.0406763,0][-0.293636,-0.37742,-1.78848][0.000887111,0.997823,-0.0659502][0.872595,0.0478776,0][-0.225355,-0.403228,-2.10581][-0.00816386,0.991194,-0.132168][0.864854,0.050154,0][-0.293636,-0.37742,-1.78848][0.000887111,0.997823,-0.0659502][0.872595,0.0478776,0][-0.0393674,-0.377501,-1.79426][-0.00153489,0.996681,-0.0813904][0.872595,0.0555618,0][-0.225355,-0.403228,-2.10581][-0.00491976,0.996832,-0.0793822][0.912649,0.0320071,0][-0.0393674,-0.377501,-1.79426][-0.00491976,0.996832,-0.0793822][0.923047,0.0377284,0][-0.0464136,-0.402666,-2.10984][-0.00491976,0.996832,-0.0793822][0.912658,0.037742,0][0.283781,-0.358396,-1.37648][-0.0121655,0.99962,-0.024718][0.877988,0.0302628,0][0.214898,-0.375915,-1.79996][-0.0101746,0.998124,-0.0603816][0.866835,0.0285994,0][-0.0393674,-0.377501,-1.79426][-0.00786594,0.998196,-0.0595259][0.866835,0.0214731,0][-0.0393674,-0.377501,-1.79426][-0.00786594,0.998196,-0.0595259][0.866835,0.0214731,0][-0.0298324,-0.360831,-1.36948][-0.00824668,0.999651,-0.0250771][0.877988,0.0214731,0][0.283781,-0.358396,-1.37648][-0.0121655,0.99962,-0.024718][0.877988,0.0302628,0][0.577684,-0.353766,-1.38291][-0.0114928,0.999698,-0.0217442][0.877988,0.0385001,0][0.453185,-0.373304,-1.80523][-0.011249,0.99786,-0.0644152][0.866835,0.0352779,0][0.214898,-0.375915,-1.79996][-0.0101746,0.998124,-0.0603816][0.866835,0.0285994,0][0.214898,-0.375915,-1.79996][-0.0101746,0.998124,-0.0603816][0.866835,0.0285994,0][0.283781,-0.358396,-1.37648][-0.0121655,0.99962,-0.024718][0.877988,0.0302628,0][0.577684,-0.353766,-1.38291][-0.0114928,0.999698,-0.0217442][0.877988,0.0385001,0][0.833416,-0.350006,-1.38852][0.000896279,0.999423,-0.0339455][0.877988,0.0456676,0][0.660524,-0.371402,-1.80984][0.00111391,0.997264,-0.073916][0.866835,0.0410891,0][0.453185,-0.373304,-1.80523][-0.011249,0.99786,-0.0644152][0.866835,0.0352779,0][0.453185,-0.373304,-1.80523][-0.011249,0.99786,-0.0644152][0.866835,0.0352779,0][0.577684,-0.353766,-1.38291][-0.0114928,0.999698,-0.0217442][0.877988,0.0385001,0][0.833416,-0.350006,-1.38852][0.000896279,0.999423,-0.0339455][0.877988,0.0456676,0][1.03493,-0.358581,-1.39355][-0.0698975,0.995268,-0.0675006][0.877988,0.0513149,0][0.823891,-0.372783,-1.81363][0.0317826,0.994145,-0.103279][0.866835,0.0456676,0][0.660524,-0.371402,-1.80984][0.00111391,0.997264,-0.073916][0.866835,0.0410891,0][0.660524,-0.371402,-1.80984][0.00111391,0.997264,-0.073916][0.866835,0.0410891,0][0.833416,-0.350006,-1.38852][0.000896279,0.999423,-0.0339455][0.877988,0.0456676,0][1.03493,-0.358581,-1.39355][-0.0698975,0.995268,-0.0675006][0.877988,0.0513149,0][1.17374,-0.342725,-1.39588][-0.119754,0.981099,-0.152001][0.877988,0.0552061,0][0.933027,-0.380292,-1.8165][0.163423,0.957643,-0.237091][0.866835,0.048726,0][0.823891,-0.372783,-1.81363][0.0317826,0.994145,-0.103279][0.866835,0.0456676,0][0.823891,-0.372783,-1.81363][0.0317826,0.994145,-0.103279][0.866835,0.0456676,0][1.03493,-0.358581,-1.39355][-0.0698975,0.995268,-0.0675006][0.877988,0.0513149,0][1.17374,-0.342725,-1.39588][-0.119754,0.981099,-0.152001][0.877988,0.0552061,0][1.24817,-0.333953,-1.39711][0.780783,0.365487,-0.506751][0.877988,0.0572927,0][0.981076,-0.39462,-1.81834][0.754041,0.268871,-0.599275][0.866835,0.0500719,0][0.933027,-0.380292,-1.8165][0.163423,0.957643,-0.237091][0.866835,0.048726,0][0.933027,-0.380292,-1.8165][0.163423,0.957643,-0.237091][0.866835,0.048726,0][1.17374,-0.342725,-1.39588][-0.119754,0.981099,-0.152001][0.877988,0.0552061,0][1.24817,-0.333953,-1.39711][0.780783,0.365487,-0.506751][0.877988,0.0572927,0][1.22261,-0.369139,-1.39837][0.663632,-0.719943,-0.203163][0.969553,0.0484941,0][0.965021,-0.415346,-1.81906][0.535421,-0.755564,-0.377421][0.983103,0.0447965,0][0.981076,-0.39462,-1.81834][0.754041,0.268871,-0.599275][0.983181,0.0454556,0][0.981076,-0.39462,-1.81834][0.754041,0.268871,-0.599275][0.983181,0.0454556,0][1.24817,-0.333953,-1.39711][0.780783,0.365487,-0.506751][0.969684,0.0496133,0][1.22261,-0.369139,-1.39837][0.663632,-0.719943,-0.203163][0.969553,0.0484941,0][1.11135,-0.432756,-1.39917][0.388209,-0.914124,-0.116919][0.939362,0.0676974,0][0.885867,-0.440354,-1.81857][0.247324,-0.956873,-0.1524][0.949477,0.0657041,0][0.965021,-0.415346,-1.81906][0.535421,-0.755564,-0.377421][0.949019,0.0672946,0][0.965021,-0.415346,-1.81906][0.535421,-0.755564,-0.377421][0.949019,0.0672946,0][1.22261,-0.369139,-1.39837][0.663632,-0.719943,-0.203163][0.938718,0.0699341,0][1.11135,-0.432756,-1.39917][0.388209,-0.914124,-0.116919][0.939362,0.0676974,0][0.942042,-0.472002,-1.39738][0.163617,-0.983204,-0.0808632][0.94034,0.0642956,0][0.748588,-0.466814,-1.81684][0.157952,-0.98322,-0.0912646][0.950269,0.0629461,0][0.885867,-0.440354,-1.81857][0.247324,-0.956873,-0.1524][0.949477,0.0657041,0][0.885867,-0.440354,-1.81857][0.247324,-0.956873,-0.1524][0.949477,0.0657041,0][1.11135,-0.432756,-1.39917][0.388209,-0.914124,-0.116919][0.939362,0.0676974,0][0.942042,-0.472002,-1.39738][0.163617,-0.983204,-0.0808632][0.94034,0.0642956,0][0.711652,-0.496945,-1.39345][0.100784,-0.993547,-0.0520188][0.94167,0.0596677,0][0.561805,-0.49157,-1.81389][0.108396,-0.992101,-0.0631274][0.951348,0.0591939,0][0.748588,-0.466814,-1.81684][0.157952,-0.98322,-0.0912646][0.950269,0.0629461,0][0.748588,-0.466814,-1.81684][0.157952,-0.98322,-0.0912646][0.950269,0.0629461,0][0.942042,-0.472002,-1.39738][0.163617,-0.983204,-0.0808632][0.94034,0.0642956,0][0.711652,-0.496945,-1.39345][0.100784,-0.993547,-0.0520188][0.94167,0.0596677,0][0.434688,-0.522593,-1.3885][0.0688732,-0.996682,-0.0433656][0.94327,0.0541043,0][0.337251,-0.510877,-1.8098][0.0640636,-0.996666,-0.0505321][0.952645,0.0546834,0][0.561805,-0.49157,-1.81389][0.108396,-0.992101,-0.0631274][0.951348,0.0591939,0][0.561805,-0.49157,-1.81389][0.108396,-0.992101,-0.0631274][0.951348,0.0591939,0][0.711652,-0.496945,-1.39345][0.100784,-0.993547,-0.0520188][0.94167,0.0596677,0][0.434688,-0.522593,-1.3885][0.0688732,-0.996682,-0.0433656][0.94327,0.0541043,0][0.128535,-0.537088,-1.38231][0.0241663,-0.998961,-0.0386355][0.945037,0.0479552,0][0.0890331,-0.521765,-1.80473][0.0222068,-0.99875,-0.0447874][0.954078,0.0496979,0][0.337251,-0.510877,-1.8098][0.0640636,-0.996666,-0.0505321][0.952645,0.0546834,0][0.337251,-0.510877,-1.8098][0.0640636,-0.996666,-0.0505321][0.952645,0.0546834,0][0.434688,-0.522593,-1.3885][0.0688732,-0.996682,-0.0433656][0.94327,0.0541043,0][0.128535,-0.537088,-1.38231][0.0241663,-0.998961,-0.0386355][0.945037,0.0479552,0][-0.187573,-0.538024,-1.37517][-0.0202925,-0.999072,-0.0380026][0.946863,0.0416066,0][-0.167255,-0.522523,-1.79895][-0.0191619,-0.998838,-0.0442185][0.955558,0.0445507,0][0.0890331,-0.521765,-1.80473][0.0222068,-0.99875,-0.0447874][0.954078,0.0496979,0][0.0890331,-0.521765,-1.80473][0.0222068,-0.99875,-0.0447874][0.954078,0.0496979,0][0.128535,-0.537088,-1.38231][0.0241663,-0.998961,-0.0386355][0.945037,0.0479552,0][-0.187573,-0.538024,-1.37517][-0.0202925,-0.999072,-0.0380026][0.946863,0.0416066,0][-0.493773,-0.52534,-1.36755][-0.065141,-0.997017,-0.041406][0.948631,0.0354574,0][-0.41551,-0.513105,-1.79282][-0.0610865,-0.996943,-0.0487096][0.956991,0.0395652,0][-0.167255,-0.522523,-1.79895][-0.0191619,-0.998838,-0.0442185][0.955558,0.0445507,0][-0.167255,-0.522523,-1.79895][-0.0191619,-0.998838,-0.0442185][0.955558,0.0445507,0][-0.187573,-0.538024,-1.37517][-0.0202925,-0.999072,-0.0380026][0.946863,0.0416066,0][-0.493773,-0.52534,-1.36755][-0.065141,-0.997017,-0.041406][0.948631,0.0354574,0][-0.770827,-0.501332,-1.36][-0.0929586,-0.99456,-0.0470056][0.95023,0.029894,0][-0.640129,-0.495127,-1.78677][-0.103539,-0.992732,-0.0613493][0.958288,0.0350546,0][-0.41551,-0.513105,-1.79282][-0.0610865,-0.996943,-0.0487096][0.956991,0.0395652,0][-0.41551,-0.513105,-1.79282][-0.0610865,-0.996943,-0.0487096][0.956991,0.0395652,0][-0.493773,-0.52534,-1.36755][-0.065141,-0.997017,-0.041406][0.948631,0.0354574,0][-0.770827,-0.501332,-1.36][-0.0929586,-0.99456,-0.0470056][0.95023,0.029894,0][-1.0013,-0.477753,-1.35353][-0.192341,-0.97967,-0.0570157][0.951561,0.0252661,0][-0.826998,-0.471477,-1.78129][-0.159921,-0.983098,-0.0891283][0.959367,0.0313025,0][-0.640129,-0.495127,-1.78677][-0.103539,-0.992732,-0.0613493][0.958288,0.0350546,0][-0.640129,-0.495127,-1.78677][-0.103539,-0.992732,-0.0613493][0.958288,0.0350546,0][-0.770827,-0.501332,-1.36][-0.0929586,-0.99456,-0.0470056][0.95023,0.029894,0][-1.0013,-0.477753,-1.35353][-0.192341,-0.97967,-0.0570157][0.951561,0.0252661,0][-1.17075,-0.43951,-1.34768][-0.374658,-0.926318,-0.0395717][0.952539,0.0218644,0][-0.964369,-0.44583,-1.77682][-0.252979,-0.958412,-0.132089][0.96016,0.0285445,0][-0.826998,-0.471477,-1.78129][-0.159921,-0.983098,-0.0891283][0.959367,0.0313025,0][-0.826998,-0.471477,-1.78129][-0.159921,-0.983098,-0.0891283][0.959367,0.0313025,0][-1.0013,-0.477753,-1.35353][-0.192341,-0.97967,-0.0570157][0.951561,0.0252661,0][-1.17075,-0.43951,-1.34768][-0.374658,-0.926318,-0.0395717][0.952539,0.0218644,0][-1.28223,-0.376551,-1.34185][-0.656831,-0.743225,-0.127234][0.953182,0.0196277,0][-1.04361,-0.42129,-1.77374][-0.543833,-0.77141,-0.330412][0.960617,0.0269539,0][-0.964369,-0.44583,-1.77682][-0.252979,-0.958412,-0.132089][0.96016,0.0285445,0][-0.964369,-0.44583,-1.77682][-0.252979,-0.958412,-0.132089][0.96016,0.0285445,0][-1.17075,-0.43951,-1.34768][-0.374658,-0.926318,-0.0395717][0.952539,0.0218644,0][-1.28223,-0.376551,-1.34185][-0.656831,-0.743225,-0.127234][0.953182,0.0196277,0][-1.30792,-0.341517,-1.33943][-0.81551,0.386474,-0.430792][0.866976,0.0279561,0][-1.05974,-0.400659,-1.77229][-0.791644,0.284269,-0.540824][0.853488,0.023774,0][-1.04361,-0.42129,-1.77374][-0.543833,-0.77141,-0.330412][0.853566,0.023115,0][-1.04361,-0.42129,-1.77374][-0.543833,-0.77141,-0.330412][0.853566,0.023115,0][-1.28223,-0.376551,-1.34185][-0.656831,-0.743225,-0.127234][0.86711,0.0268371,0][-1.30792,-0.341517,-1.33943][-0.81551,0.386474,-0.430792][0.866976,0.0279561,0][-1.23345,-0.349849,-1.34156][0.133985,0.985935,-0.099902][0.883037,0.019188,0][-1.01174,-0.386047,-1.77262][-0.17962,0.962373,-0.203897][0.872595,0.0261754,0][-1.05974,-0.400659,-1.77229][-0.791644,0.284269,-0.540824][0.872595,0.0247241,0][-1.05974,-0.400659,-1.77229][-0.791644,0.284269,-0.540824][0.872595,0.0247241,0][-1.30792,-0.341517,-1.33943][-0.81551,0.386474,-0.430792][0.883037,0.0169381,0][-1.23345,-0.349849,-1.34156][0.133985,0.985935,-0.099902][0.883037,0.019188,0][-1.09459,-0.364883,-1.3455][0.0423221,0.998577,-0.0324622][0.883037,0.0233838,0][-0.902634,-0.377892,-1.77467][-0.0514089,0.993247,-0.104003][0.872595,0.0294732,0][-1.01174,-0.386047,-1.77262][-0.17962,0.962373,-0.203897][0.872595,0.0261754,0][-1.01174,-0.386047,-1.77262][-0.17962,0.962373,-0.203897][0.872595,0.0261754,0][-1.23345,-0.349849,-1.34156][0.133985,0.985935,-0.099902][0.883037,0.019188,0][-1.09459,-0.364883,-1.3455][0.0423221,0.998577,-0.0324622][0.883037,0.0233838,0][-0.89311,-0.355116,-1.34957][-0.0241578,0.999416,-0.0241505][0.883037,0.0294732,0][-0.739273,-0.375545,-1.77826][-0.00846379,0.996919,-0.0779807][0.872595,0.0344102,0][-0.902634,-0.377892,-1.77467][-0.0514089,0.993247,-0.104003][0.872595,0.0294732,0][-0.902634,-0.377892,-1.77467][-0.0514089,0.993247,-0.104003][0.872595,0.0294732,0][-1.09459,-0.364883,-1.3455][0.0423221,0.998577,-0.0324622][0.883037,0.0233838,0][-0.89311,-0.355116,-1.34957][-0.0241578,0.999416,-0.0241505][0.883037,0.0294732,0][-0.637368,-0.357362,-1.3555][0.00815682,0.999605,-0.0268995][0.883037,0.0372018,0][-0.53193,-0.37622,-1.78301][0.00187195,0.997779,-0.0665894][0.872595,0.0406763,0][-0.739273,-0.375545,-1.77826][-0.00846379,0.996919,-0.0779807][0.872595,0.0344102,0][-0.739273,-0.375545,-1.77826][-0.00846379,0.996919,-0.0779807][0.872595,0.0344102,0][-0.89311,-0.355116,-1.34957][-0.0241578,0.999416,-0.0241505][0.883037,0.0294732,0][-0.637368,-0.357362,-1.3555][0.00815682,0.999605,-0.0268995][0.883037,0.0372018,0][-0.34345,-0.360252,-1.36232][0.00544384,0.999579,-0.0284898][0.883037,0.0460841,0][-0.293636,-0.37742,-1.78848][0.000887111,0.997823,-0.0659502][0.872595,0.0478776,0][-0.53193,-0.37622,-1.78301][0.00187195,0.997779,-0.0665894][0.872595,0.0406763,0][-0.53193,-0.37622,-1.78301][0.00187195,0.997779,-0.0665894][0.872595,0.0406763,0][-0.637368,-0.357362,-1.3555][0.00815682,0.999605,-0.0268995][0.883037,0.0372018,0][-0.34345,-0.360252,-1.36232][0.00544384,0.999579,-0.0284898][0.883037,0.0460841,0][-0.293636,-0.37742,-1.78848][0.000887111,0.997823,-0.0659502][0.872595,0.0478776,0][-0.34345,-0.360252,-1.36232][0.00544384,0.999579,-0.0284898][0.883037,0.0460841,0][-0.0298324,-0.360831,-1.36948][0.000929414,0.999193,-0.0401443][0.883037,0.0555618,0][-0.293636,-0.37742,-1.78848][-0.00057485,0.999231,-0.0391987][0.93142,0.0614942,0][-0.0298324,-0.360831,-1.36948][-0.00057485,0.999231,-0.0391987][0.93974,0.0478577,0][-0.0393674,-0.377501,-1.79426][-0.00057485,0.999231,-0.0391987][0.939765,0.0614821,0][0.333454,-0.353109,-0.932133][-0.0108323,0.999941,0.000663307][0.889694,0.0313738,0][0.283781,-0.358396,-1.37648][-0.0121655,0.99962,-0.024718][0.877988,0.0302628,0][-0.0298324,-0.360831,-1.36948][-0.00824668,0.999651,-0.0250771][0.877988,0.0214731,0][-0.0298324,-0.360831,-1.36948][-0.00824668,0.999651,-0.0250771][0.877988,0.0214731,0][-0.019801,-0.355726,-0.924244][-0.00711292,0.999975,-0.000514907][0.889694,0.0214731,0][0.333454,-0.353109,-0.932133][-0.0108323,0.999941,0.000663307][0.889694,0.0313738,0][0.66451,-0.348161,-0.939395][0.0106767,0.999943,4.31931e-005][0.889694,0.0406525,0][0.577684,-0.353766,-1.38291][-0.0114928,0.999698,-0.0217442][0.877988,0.0385001,0][0.283781,-0.358396,-1.37648][-0.0121655,0.99962,-0.024718][0.877988,0.0302628,0][0.283781,-0.358396,-1.37648][-0.0121655,0.99962,-0.024718][0.877988,0.0302628,0][0.333454,-0.353109,-0.932133][-0.0108323,0.999941,0.000663307][0.889694,0.0313738,0][0.66451,-0.348161,-0.939395][0.0106767,0.999943,4.31931e-005][0.889694,0.0406525,0][0.952592,-0.357485,-0.946428][-0.0860105,0.996065,0.0213618][0.889694,0.048726,0][0.833416,-0.350006,-1.38852][0.000896279,0.999423,-0.0339455][0.877988,0.0456676,0][0.577684,-0.353766,-1.38291][-0.0114928,0.999698,-0.0217442][0.877988,0.0385001,0][0.577684,-0.353766,-1.38291][-0.0114928,0.999698,-0.0217442][0.877988,0.0385001,0][0.66451,-0.348161,-0.939395][0.0106767,0.999943,4.31931e-005][0.889694,0.0406525,0][0.952592,-0.357485,-0.946428][-0.0860105,0.996065,0.0213618][0.889694,0.048726,0][1.18426,-0.319359,-0.949695][-0.355307,0.934184,0.0325028][0.889694,0.0552207,0][1.03493,-0.358581,-1.39355][-0.0698975,0.995268,-0.0675006][0.877988,0.0513149,0][0.833416,-0.350006,-1.38852][0.000896279,0.999423,-0.0339455][0.877988,0.0456676,0][0.833416,-0.350006,-1.38852][0.000896279,0.999423,-0.0339455][0.877988,0.0456676,0][0.952592,-0.357485,-0.946428][-0.0860105,0.996065,0.0213618][0.889694,0.048726,0][1.18426,-0.319359,-0.949695][-0.355307,0.934184,0.0325028][0.889694,0.0552207,0][1.37845,-0.190014,-0.947334][-0.54055,0.840448,0.0381144][0.889694,0.0606696,0][1.17374,-0.342725,-1.39588][-0.119754,0.981099,-0.152001][0.877988,0.0552061,0][1.03493,-0.358581,-1.39355][-0.0698975,0.995268,-0.0675006][0.877988,0.0513149,0][1.03493,-0.358581,-1.39355][-0.0698975,0.995268,-0.0675006][0.877988,0.0513149,0][1.18426,-0.319359,-0.949695][-0.355307,0.934184,0.0325028][0.889694,0.0552207,0][1.37845,-0.190014,-0.947334][-0.54055,0.840448,0.0381144][0.889694,0.0606696,0][1.44153,-0.148502,-0.946595][0.581217,0.776994,-0.241799][0.889694,0.0624397,0][1.24817,-0.333953,-1.39711][0.780783,0.365487,-0.506751][0.877988,0.0572927,0][1.17374,-0.342725,-1.39588][-0.119754,0.981099,-0.152001][0.877988,0.0552061,0][1.17374,-0.342725,-1.39588][-0.119754,0.981099,-0.152001][0.877988,0.0552061,0][1.37845,-0.190014,-0.947334][-0.54055,0.840448,0.0381144][0.889694,0.0606696,0][1.44153,-0.148502,-0.946595][0.581217,0.776994,-0.241799][0.889694,0.0624397,0][1.42378,-0.196355,-0.948695][0.857711,-0.487598,-0.163033][0.955794,0.0563437,0][1.22261,-0.369139,-1.39837][0.663632,-0.719943,-0.203163][0.969553,0.0484941,0][1.24817,-0.333953,-1.39711][0.780783,0.365487,-0.506751][0.969684,0.0496133,0][1.24817,-0.333953,-1.39711][0.780783,0.365487,-0.506751][0.969684,0.0496133,0][1.44153,-0.148502,-0.946595][0.581217,0.776994,-0.241799][0.955972,0.0578674,0][1.42378,-0.196355,-0.948695][0.857711,-0.487598,-0.163033][0.955794,0.0563437,0][1.29626,-0.338395,-0.953238][0.657099,-0.749435,-0.081043][0.929042,0.0687529,0][1.11135,-0.432756,-1.39917][0.388209,-0.914124,-0.116919][0.939362,0.0676974,0][1.22261,-0.369139,-1.39837][0.663632,-0.719943,-0.203163][0.938718,0.0699341,0][1.22261,-0.369139,-1.39837][0.663632,-0.719943,-0.203163][0.938718,0.0699341,0][1.42378,-0.196355,-0.948695][0.857711,-0.487598,-0.163033][0.928304,0.071319,0][1.29626,-0.338395,-0.953238][0.657099,-0.749435,-0.081043][0.929042,0.0687529,0][1.07494,-0.488277,-0.956055][0.321681,-0.944361,-0.0685893][0.930322,0.0643026,0][0.942042,-0.472002,-1.39738][0.163617,-0.983204,-0.0808632][0.94034,0.0642956,0][1.11135,-0.432756,-1.39917][0.388209,-0.914124,-0.116919][0.939362,0.0676974,0][1.11135,-0.432756,-1.39917][0.388209,-0.914124,-0.116919][0.939362,0.0676974,0][1.29626,-0.338395,-0.953238][0.657099,-0.749435,-0.081043][0.929042,0.0687529,0][1.07494,-0.488277,-0.956055][0.321681,-0.944361,-0.0685893][0.930322,0.0643026,0][0.815411,-0.508731,-0.95123][0.0849296,-0.994914,-0.0541658][0.93182,0.0590897,0][0.711652,-0.496945,-1.39345][0.100784,-0.993547,-0.0520188][0.94167,0.0596677,0][0.942042,-0.472002,-1.39738][0.163617,-0.983204,-0.0808632][0.94034,0.0642956,0][0.942042,-0.472002,-1.39738][0.163617,-0.983204,-0.0808632][0.94034,0.0642956,0][1.07494,-0.488277,-0.956055][0.321681,-0.944361,-0.0685893][0.930322,0.0643026,0][0.815411,-0.508731,-0.95123][0.0849296,-0.994914,-0.0541658][0.93182,0.0590897,0][0.503438,-0.537542,-0.94565][0.0688939,-0.9966,-0.0451994][0.933622,0.0528231,0][0.434688,-0.522593,-1.3885][0.0688732,-0.996682,-0.0433656][0.94327,0.0541043,0][0.711652,-0.496945,-1.39345][0.100784,-0.993547,-0.0520188][0.94167,0.0596677,0][0.711652,-0.496945,-1.39345][0.100784,-0.993547,-0.0520188][0.94167,0.0596677,0][0.815411,-0.508731,-0.95123][0.0849296,-0.994914,-0.0541658][0.93182,0.0590897,0][0.503438,-0.537542,-0.94565][0.0688939,-0.9966,-0.0451994][0.933622,0.0528231,0][0.158585,-0.553892,-0.938673][0.0244043,-0.99889,-0.0402949][0.935613,0.0458966,0][0.128535,-0.537088,-1.38231][0.0241663,-0.998961,-0.0386355][0.945037,0.0479552,0][0.434688,-0.522593,-1.3885][0.0688732,-0.996682,-0.0433656][0.94327,0.0541043,0][0.434688,-0.522593,-1.3885][0.0688732,-0.996682,-0.0433656][0.94327,0.0541043,0][0.503438,-0.537542,-0.94565][0.0688939,-0.9966,-0.0451994][0.933622,0.0528231,0][0.158585,-0.553892,-0.938673][0.0244043,-0.99889,-0.0402949][0.935613,0.0458966,0][-0.197482,-0.554945,-0.930639][-0.0200634,-0.999017,-0.0395225][0.937669,0.0387455,0][-0.187573,-0.538024,-1.37517][-0.0202925,-0.999072,-0.0380026][0.946863,0.0416066,0][0.128535,-0.537088,-1.38231][0.0241663,-0.998961,-0.0386355][0.945037,0.0479552,0][0.128535,-0.537088,-1.38231][0.0241663,-0.998961,-0.0386355][0.945037,0.0479552,0][0.158585,-0.553892,-0.938673][0.0244043,-0.99889,-0.0402949][0.935613,0.0458966,0][-0.197482,-0.554945,-0.930639][-0.0200634,-0.999017,-0.0395225][0.937669,0.0387455,0][-0.542389,-0.540637,-0.922053][-0.0639741,-0.996999,-0.0435976][0.939661,0.031819,0][-0.493773,-0.52534,-1.36755][-0.065141,-0.997017,-0.041406][0.948631,0.0354574,0][-0.187573,-0.538024,-1.37517][-0.0202925,-0.999072,-0.0380026][0.946863,0.0416066,0][-0.187573,-0.538024,-1.37517][-0.0202925,-0.999072,-0.0380026][0.946863,0.0416066,0][-0.197482,-0.554945,-0.930639][-0.0200634,-0.999017,-0.0395225][0.937669,0.0387455,0][-0.542389,-0.540637,-0.922053][-0.0639741,-0.996999,-0.0435976][0.939661,0.031819,0][-0.854463,-0.513673,-0.913552][-0.0858572,-0.995372,-0.0431622][0.941462,0.0255524,0][-0.770827,-0.501332,-1.36][-0.0929586,-0.99456,-0.0470056][0.95023,0.029894,0][-0.493773,-0.52534,-1.36755][-0.065141,-0.997017,-0.041406][0.948631,0.0354574,0][-0.493773,-0.52534,-1.36755][-0.065141,-0.997017,-0.041406][0.948631,0.0354574,0][-0.542389,-0.540637,-0.922053][-0.0639741,-0.996999,-0.0435976][0.939661,0.031819,0][-0.854463,-0.513673,-0.913552][-0.0858572,-0.995372,-0.0431622][0.941462,0.0255524,0][-1.11406,-0.494755,-0.906664][-0.341346,-0.936882,-0.0757334][0.942961,0.0203395,0][-1.0013,-0.477753,-1.35353][-0.192341,-0.97967,-0.0570157][0.951561,0.0252661,0][-0.770827,-0.501332,-1.36][-0.0929586,-0.99456,-0.0470056][0.95023,0.029894,0][-0.770827,-0.501332,-1.36][-0.0929586,-0.99456,-0.0470056][0.95023,0.029894,0][-0.854463,-0.513673,-0.913552][-0.0858572,-0.995372,-0.0431622][0.941462,0.0255524,0][-1.11406,-0.494755,-0.906664][-0.341346,-0.936882,-0.0757334][0.942961,0.0203395,0][-1.33591,-0.346184,-0.893846][-0.64653,-0.758289,-0.0836479][0.944241,0.0158892,0][-1.17075,-0.43951,-1.34768][-0.374658,-0.926318,-0.0395717][0.952539,0.0218644,0][-1.0013,-0.477753,-1.35353][-0.192341,-0.97967,-0.0570157][0.951561,0.0252661,0][-1.0013,-0.477753,-1.35353][-0.192341,-0.97967,-0.0570157][0.951561,0.0252661,0][-1.11406,-0.494755,-0.906664][-0.341346,-0.936882,-0.0757334][0.942961,0.0203395,0][-1.33591,-0.346184,-0.893846][-0.64653,-0.758289,-0.0836479][0.944241,0.0158892,0][-1.46393,-0.204899,-0.88354][-0.860363,-0.491778,-0.133906][0.944978,0.0133232,0][-1.28223,-0.376551,-1.34185][-0.656831,-0.743225,-0.127234][0.953182,0.0196277,0][-1.17075,-0.43951,-1.34768][-0.374658,-0.926318,-0.0395717][0.952539,0.0218644,0][-1.17075,-0.43951,-1.34768][-0.374658,-0.926318,-0.0395717][0.952539,0.0218644,0][-1.33591,-0.346184,-0.893846][-0.64653,-0.758289,-0.0836479][0.944241,0.0158892,0][-1.46393,-0.204899,-0.88354][-0.860363,-0.491778,-0.133906][0.944978,0.0133232,0][-1.48186,-0.157153,-0.880633][-0.596373,0.771939,-0.220113][0.880672,0.0362349,0][-1.30792,-0.341517,-1.33943][-0.81551,0.386474,-0.430792][0.866976,0.0279561,0][-1.28223,-0.376551,-1.34185][-0.656831,-0.743225,-0.127234][0.86711,0.0268371,0][-1.28223,-0.376551,-1.34185][-0.656831,-0.743225,-0.127234][0.86711,0.0268371,0][-1.46393,-0.204899,-0.88354][-0.860363,-0.491778,-0.133906][0.880854,0.0347116,0][-1.48186,-0.157153,-0.880633][-0.596373,0.771939,-0.220113][0.880672,0.0362349,0][-1.41862,-0.19829,-0.884224][0.532411,0.845844,-0.0329647][0.893998,0.0132968,0][-1.23345,-0.349849,-1.34156][0.133985,0.985935,-0.099902][0.883037,0.019188,0][-1.30792,-0.341517,-1.33943][-0.81551,0.386474,-0.430792][0.883037,0.0169381,0][-1.30792,-0.341517,-1.33943][-0.81551,0.386474,-0.430792][0.883037,0.0169381,0][-1.48186,-0.157153,-0.880633][-0.596373,0.771939,-0.220113][0.893998,0.0113881,0][-1.41862,-0.19829,-0.884224][0.532411,0.845844,-0.0329647][0.893998,0.0132968,0][-1.22398,-0.326486,-0.895357][0.361037,0.932389,-0.0173878][0.893998,0.0191723,0][-1.09459,-0.364883,-1.3455][0.0423221,0.998577,-0.0324622][0.883037,0.0233838,0][-1.23345,-0.349849,-1.34156][0.133985,0.985935,-0.099902][0.883037,0.019188,0][-1.23345,-0.349849,-1.34156][0.133985,0.985935,-0.099902][0.883037,0.019188,0][-1.41862,-0.19829,-0.884224][0.532411,0.845844,-0.0329647][0.893998,0.0132968,0][-1.22398,-0.326486,-0.895357][0.361037,0.932389,-0.0173878][0.893998,0.0191723,0][-0.992177,-0.36324,-0.902548][0.046349,0.998885,0.00897555][0.893998,0.0261754,0][-0.89311,-0.355116,-1.34957][-0.0241578,0.999416,-0.0241505][0.883037,0.0294732,0][-1.09459,-0.364883,-1.3455][0.0423221,0.998577,-0.0324622][0.883037,0.0233838,0][-1.09459,-0.364883,-1.3455][0.0423221,0.998577,-0.0324622][0.883037,0.0233838,0][-1.22398,-0.326486,-0.895357][0.361037,0.932389,-0.0173878][0.893998,0.0191723,0][-0.992177,-0.36324,-0.902548][0.046349,0.998885,0.00897555][0.893998,0.0261754,0][-0.704132,-0.352211,-0.908514][-0.0113423,0.999925,0.00451791][0.893998,0.034881,0][-0.637368,-0.357362,-1.3555][0.00815682,0.999605,-0.0268995][0.883037,0.0372018,0][-0.89311,-0.355116,-1.34957][-0.0241578,0.999416,-0.0241505][0.883037,0.0294732,0][-0.89311,-0.355116,-1.34957][-0.0241578,0.999416,-0.0241505][0.883037,0.0294732,0][-0.992177,-0.36324,-0.902548][0.046349,0.998885,0.00897555][0.893998,0.0261754,0][-0.704132,-0.352211,-0.908514][-0.0113423,0.999925,0.00451791][0.893998,0.034881,0][-0.373063,-0.3552,-0.916193][0.00569072,0.999983,-0.00140587][0.893998,0.044886,0][-0.34345,-0.360252,-1.36232][0.00544384,0.999579,-0.0284898][0.883037,0.0460841,0][-0.637368,-0.357362,-1.3555][0.00815682,0.999605,-0.0268995][0.883037,0.0372018,0][-0.637368,-0.357362,-1.3555][0.00815682,0.999605,-0.0268995][0.883037,0.0372018,0][-0.704132,-0.352211,-0.908514][-0.0113423,0.999925,0.00451791][0.893998,0.034881,0][-0.373063,-0.3552,-0.916193][0.00569072,0.999983,-0.00140587][0.893998,0.044886,0][-0.34345,-0.360252,-1.36232][0.00544384,0.999579,-0.0284898][0.883037,0.0460841,0][-0.373063,-0.3552,-0.916193][0.00569072,0.999983,-0.00140587][0.893998,0.044886,0][-0.019801,-0.355726,-0.924244][0.00123452,0.999936,-0.0112427][0.893998,0.0555618,0][-0.34345,-0.360252,-1.36232][0.00158425,0.999933,-0.011501][0.899832,0.0713144,0][-0.019801,-0.355726,-0.924244][0.00158425,0.999933,-0.011501][0.887999,0.071319,0][-0.0298324,-0.360831,-1.36948][0.00158425,0.999933,-0.011501][0.895906,0.0659736,0][0.358293,-0.356518,-0.605361][-0.00789133,0.999626,0.0261712][0.898306,0.0318628,0][0.333454,-0.353109,-0.932133][-0.0108323,0.999941,0.000663307][0.889694,0.0313738,0][-0.019801,-0.355726,-0.924244][-0.00711292,0.999975,-0.000514907][0.889694,0.0214731,0][-0.019801,-0.355726,-0.924244][-0.00711292,0.999975,-0.000514907][0.889694,0.0214731,0][-0.0124098,-0.358842,-0.597061][-0.00521903,0.999691,0.0243002][0.898306,0.0214731,0][0.358293,-0.356518,-0.605361][-0.00789133,0.999626,0.0261712][0.898306,0.0318628,0][0.7057,-0.352451,-0.61304][0.0169845,0.99951,0.0263009][0.898306,0.0415997,0][0.66451,-0.348161,-0.939395][0.0106767,0.999943,4.31931e-005][0.889694,0.0406525,0][0.333454,-0.353109,-0.932133][-0.0108323,0.999941,0.000663307][0.889694,0.0313738,0][0.333454,-0.353109,-0.932133][-0.0108323,0.999941,0.000663307][0.889694,0.0313738,0][0.358293,-0.356518,-0.605361][-0.00789133,0.999626,0.0261712][0.898306,0.0318628,0][0.7057,-0.352451,-0.61304][0.0169845,0.99951,0.0263009][0.898306,0.0415997,0][1.00802,-0.36642,-0.620641][-0.126761,0.990247,0.0578153][0.898306,0.0500719,0][0.952592,-0.357485,-0.946428][-0.0860105,0.996065,0.0213618][0.889694,0.048726,0][0.66451,-0.348161,-0.939395][0.0106767,0.999943,4.31931e-005][0.889694,0.0406525,0][0.66451,-0.348161,-0.939395][0.0106767,0.999943,4.31931e-005][0.889694,0.0406525,0][0.7057,-0.352451,-0.61304][0.0169845,0.99951,0.0263009][0.898306,0.0415997,0][1.00802,-0.36642,-0.620641][-0.126761,0.990247,0.0578153][0.898306,0.0500719,0][1.26829,-0.282702,-0.622171][-0.392706,0.914876,0.0937174][0.898306,0.0573706,0][1.18426,-0.319359,-0.949695][-0.355307,0.934184,0.0325028][0.889694,0.0552207,0][0.952592,-0.357485,-0.946428][-0.0860105,0.996065,0.0213618][0.889694,0.048726,0][0.952592,-0.357485,-0.946428][-0.0860105,0.996065,0.0213618][0.889694,0.048726,0][1.00802,-0.36642,-0.620641][-0.126761,0.990247,0.0578153][0.898306,0.0500719,0][1.26829,-0.282702,-0.622171][-0.392706,0.914876,0.0937174][0.898306,0.0573706,0][1.44976,-0.178365,-0.62083][-0.572348,0.806067,0.150579][0.898306,0.062462,0][1.37845,-0.190014,-0.947334][-0.54055,0.840448,0.0381144][0.889694,0.0606696,0][1.18426,-0.319359,-0.949695][-0.355307,0.934184,0.0325028][0.889694,0.0552207,0][1.18426,-0.319359,-0.949695][-0.355307,0.934184,0.0325028][0.889694,0.0552207,0][1.26829,-0.282702,-0.622171][-0.392706,0.914876,0.0937174][0.898306,0.0573706,0][1.44976,-0.178365,-0.62083][-0.572348,0.806067,0.150579][0.898306,0.062462,0][1.47493,-0.157318,-0.6203][0.454452,0.881155,0.130537][0.898306,0.0631684,0][1.44153,-0.148502,-0.946595][0.581217,0.776994,-0.241799][0.889694,0.0624397,0][1.37845,-0.190014,-0.947334][-0.54055,0.840448,0.0381144][0.889694,0.0606696,0][1.37845,-0.190014,-0.947334][-0.54055,0.840448,0.0381144][0.889694,0.0606696,0][1.44976,-0.178365,-0.62083][-0.572348,0.806067,0.150579][0.898306,0.062462,0][1.47493,-0.157318,-0.6203][0.454452,0.881155,0.130537][0.898306,0.0631684,0][1.4724,-0.198437,-0.622395][0.926126,-0.365017,-0.0951466][0.94519,0.0580094,0][1.42378,-0.196355,-0.948695][0.857711,-0.487598,-0.163033][0.955794,0.0563437,0][1.44153,-0.148502,-0.946595][0.581217,0.776994,-0.241799][0.955972,0.0578674,0][1.44153,-0.148502,-0.946595][0.581217,0.776994,-0.241799][0.955972,0.0578674,0][1.47493,-0.157318,-0.6203][0.454452,0.881155,0.130537][0.945344,0.0593199,0][1.4724,-0.198437,-0.622395][0.926126,-0.365017,-0.0951466][0.94519,0.0580094,0][1.38436,-0.295696,-0.625487][0.674503,-0.730363,-0.107775][0.944828,0.0549174,0][1.29626,-0.338395,-0.953238][0.657099,-0.749435,-0.081043][0.955265,0.0518279,0][1.42378,-0.196355,-0.948695][0.857711,-0.487598,-0.163033][0.955794,0.0563437,0][1.42378,-0.196355,-0.948695][0.857711,-0.487598,-0.163033][0.955794,0.0563437,0][1.4724,-0.198437,-0.622395][0.926126,-0.365017,-0.0951466][0.94519,0.0580094,0][1.38436,-0.295696,-0.625487][0.674503,-0.730363,-0.107775][0.944828,0.0549174,0][1.13638,-0.487216,-0.629879][0.392659,-0.918543,-0.0458113][0.923161,0.0635786,0][1.07494,-0.488277,-0.956055][0.321681,-0.944361,-0.0685893][0.930322,0.0643026,0][1.29626,-0.338395,-0.953238][0.657099,-0.749435,-0.081043][0.929042,0.0687529,0][1.29626,-0.338395,-0.953238][0.657099,-0.749435,-0.081043][0.929042,0.0687529,0][1.38436,-0.295696,-0.625487][0.674503,-0.730363,-0.107775][0.921728,0.0685658,0][1.13638,-0.487216,-0.629879][0.392659,-0.918543,-0.0458113][0.923161,0.0635786,0][0.864059,-0.523658,-0.625601][0.101189,-0.994049,-0.0403535][0.924734,0.0581082,0][0.815411,-0.508731,-0.95123][0.0849296,-0.994914,-0.0541658][0.93182,0.0590897,0][1.07494,-0.488277,-0.956055][0.321681,-0.944361,-0.0685893][0.930322,0.0643026,0][1.07494,-0.488277,-0.956055][0.321681,-0.944361,-0.0685893][0.930322,0.0643026,0][1.13638,-0.487216,-0.629879][0.392659,-0.918543,-0.0458113][0.923161,0.0635786,0][0.864059,-0.523658,-0.625601][0.101189,-0.994049,-0.0403535][0.924734,0.0581082,0][0.536671,-0.550427,-0.619565][0.0641368,-0.99712,-0.0404765][0.926625,0.0515322,0][0.503438,-0.537542,-0.94565][0.0688939,-0.9966,-0.0451994][0.933622,0.0528231,0][0.815411,-0.508731,-0.95123][0.0849296,-0.994914,-0.0541658][0.93182,0.0590897,0][0.815411,-0.508731,-0.95123][0.0849296,-0.994914,-0.0541658][0.93182,0.0590897,0][0.864059,-0.523658,-0.625601][0.101189,-0.994049,-0.0403535][0.924734,0.0581082,0][0.536671,-0.550427,-0.619565][0.0641368,-0.99712,-0.0404765][0.926625,0.0515322,0][0.174786,-0.56693,-0.612209][0.0239745,-0.999095,-0.0351338][0.928715,0.0442636,0][0.158585,-0.553892,-0.938673][0.0244043,-0.99889,-0.0402949][0.935613,0.0458966,0][0.503438,-0.537542,-0.94565][0.0688939,-0.9966,-0.0451994][0.933622,0.0528231,0][0.503438,-0.537542,-0.94565][0.0688939,-0.9966,-0.0451994][0.933622,0.0528231,0][0.536671,-0.550427,-0.619565][0.0641368,-0.99712,-0.0404765][0.926625,0.0515322,0][0.174786,-0.56693,-0.612209][0.0239745,-0.999095,-0.0351338][0.928715,0.0442636,0][-0.198865,-0.568036,-0.603777][-0.0188797,-0.999229,-0.0344347][0.930872,0.0367593,0][-0.197482,-0.554945,-0.930639][-0.0200634,-0.999017,-0.0395225][0.937669,0.0387455,0][0.158585,-0.553892,-0.938673][0.0244043,-0.99889,-0.0402949][0.935613,0.0458966,0][0.158585,-0.553892,-0.938673][0.0244043,-0.99889,-0.0402949][0.935613,0.0458966,0][0.174786,-0.56693,-0.612209][0.0239745,-0.999095,-0.0351338][0.928715,0.0442636,0][-0.198865,-0.568036,-0.603777][-0.0188797,-0.999229,-0.0344347][0.930872,0.0367593,0][-0.560806,-0.553675,-0.594803][-0.0590237,-0.997576,-0.0368598][0.932962,0.0294908,0][-0.542389,-0.540637,-0.922053][-0.0639741,-0.996999,-0.0435976][0.939661,0.031819,0][-0.197482,-0.554945,-0.930639][-0.0200634,-0.999017,-0.0395225][0.937669,0.0387455,0][-0.197482,-0.554945,-0.930639][-0.0200634,-0.999017,-0.0395225][0.937669,0.0387455,0][-0.198865,-0.568036,-0.603777][-0.0188797,-0.999229,-0.0344347][0.930872,0.0367593,0][-0.560806,-0.553675,-0.594803][-0.0590237,-0.997576,-0.0368598][0.932962,0.0294908,0][-0.888285,-0.528844,-0.586063][-0.102194,-0.99372,-0.0455667][0.934852,0.0229147,0][-0.854463,-0.513673,-0.913552][-0.0858572,-0.995372,-0.0431622][0.941462,0.0255524,0][-0.542389,-0.540637,-0.922053][-0.0639741,-0.996999,-0.0435976][0.939661,0.031819,0][-0.542389,-0.540637,-0.922053][-0.0639741,-0.996999,-0.0435976][0.939661,0.031819,0][-0.560806,-0.553675,-0.594803][-0.0590237,-0.997576,-0.0368598][0.932962,0.0294908,0][-0.888285,-0.528844,-0.586063][-0.102194,-0.99372,-0.0455667][0.934852,0.0229147,0][-1.16073,-0.494013,-0.578049][-0.375055,-0.92441,-0.069286][0.936425,0.0174443,0][-1.11406,-0.494755,-0.906664][-0.341346,-0.936882,-0.0757334][0.942961,0.0203395,0][-0.854463,-0.513673,-0.913552][-0.0858572,-0.995372,-0.0431622][0.941462,0.0255524,0][-0.854463,-0.513673,-0.913552][-0.0858572,-0.995372,-0.0431622][0.941462,0.0255524,0][-0.888285,-0.528844,-0.586063][-0.102194,-0.99372,-0.0455667][0.934852,0.0229147,0][-1.16073,-0.494013,-0.578049][-0.375055,-0.92441,-0.069286][0.936425,0.0174443,0][-1.40939,-0.303963,-0.562451][-0.676913,-0.728302,-0.106606][0.937859,0.0124572,0][-1.33591,-0.346184,-0.893846][-0.64653,-0.758289,-0.0836479][0.944241,0.0158892,0][-1.11406,-0.494755,-0.906664][-0.341346,-0.936882,-0.0757334][0.942961,0.0203395,0][-1.11406,-0.494755,-0.906664][-0.341346,-0.936882,-0.0757334][0.942961,0.0203395,0][-1.16073,-0.494013,-0.578049][-0.375055,-0.92441,-0.069286][0.936425,0.0174443,0][-1.40939,-0.303963,-0.562451][-0.676913,-0.728302,-0.106606][0.937859,0.0124572,0][-1.49778,-0.207226,-0.555378][-0.930036,-0.359286,-0.0771085][0.891454,0.0363964,0][-1.46393,-0.204899,-0.88354][-0.860363,-0.491778,-0.133906][0.880854,0.0347116,0][-1.33591,-0.346184,-0.893846][-0.64653,-0.758289,-0.0836479][0.881391,0.0301967,0][-1.33591,-0.346184,-0.893846][-0.64653,-0.758289,-0.0836479][0.881391,0.0301967,0][-1.40939,-0.303963,-0.562451][-0.676913,-0.728302,-0.106606][0.891822,0.0333051,0][-1.49778,-0.207226,-0.555378][-0.930036,-0.359286,-0.0771085][0.891454,0.0363964,0][-1.50045,-0.166123,-0.553166][-0.459563,0.885189,0.0724012][0.891298,0.0377066,0][-1.48186,-0.157153,-0.880633][-0.596373,0.771939,-0.220113][0.880672,0.0362349,0][-1.46393,-0.204899,-0.88354][-0.860363,-0.491778,-0.133906][0.880854,0.0347116,0][-1.46393,-0.204899,-0.88354][-0.860363,-0.491778,-0.133906][0.880854,0.0347116,0][-1.49778,-0.207226,-0.555378][-0.930036,-0.359286,-0.0771085][0.891454,0.0363964,0][-1.50045,-0.166123,-0.553166][-0.459563,0.885189,0.0724012][0.891298,0.0377066,0][-1.47521,-0.187021,-0.554833][0.565515,0.819108,0.0962][0.902061,0.0113641,0][-1.41862,-0.19829,-0.884224][0.532411,0.845844,-0.0329647][0.893998,0.0132968,0][-1.48186,-0.157153,-0.880633][-0.596373,0.771939,-0.220113][0.893998,0.0113881,0][-1.48186,-0.157153,-0.880633][-0.596373,0.771939,-0.220113][0.893998,0.0113881,0][-1.50045,-0.166123,-0.553166][-0.459563,0.885189,0.0724012][0.902061,0.0106024,0][-1.47521,-0.187021,-0.554833][0.565515,0.819108,0.0962][0.902061,0.0113641,0][-1.29336,-0.290283,-0.56437][0.405656,0.912886,0.0456341][0.902061,0.0168541,0][-1.22398,-0.326486,-0.895357][0.361037,0.932389,-0.0173878][0.893998,0.0191723,0][-1.41862,-0.19829,-0.884224][0.532411,0.845844,-0.0329647][0.893998,0.0132968,0][-1.41862,-0.19829,-0.884224][0.532411,0.845844,-0.0329647][0.893998,0.0132968,0][-1.47521,-0.187021,-0.554833][0.565515,0.819108,0.0962][0.902061,0.0113641,0][-1.29336,-0.290283,-0.56437][0.405656,0.912886,0.0456341][0.902061,0.0168541,0][-1.0328,-0.372459,-0.574592][0.12365,0.992203,0.0156182][0.902061,0.0247241,0][-0.992177,-0.36324,-0.902548][0.046349,0.998885,0.00897555][0.893998,0.0261754,0][-1.22398,-0.326486,-0.895357][0.361037,0.932389,-0.0173878][0.893998,0.0191723,0][-1.22398,-0.326486,-0.895357][0.361037,0.932389,-0.0173878][0.893998,0.0191723,0][-1.29336,-0.290283,-0.56437][0.405656,0.912886,0.0456341][0.902061,0.0168541,0][-1.0328,-0.372459,-0.574592][0.12365,0.992203,0.0156182][0.902061,0.0247241,0][-0.730535,-0.356701,-0.580634][-0.0227505,0.999271,0.0306603][0.902061,0.0338596,0][-0.704132,-0.352211,-0.908514][-0.0113423,0.999925,0.00451791][0.893998,0.034881,0][-0.992177,-0.36324,-0.902548][0.046349,0.998885,0.00897555][0.893998,0.0261754,0][-0.992177,-0.36324,-0.902548][0.046349,0.998885,0.00897555][0.893998,0.0261754,0][-1.0328,-0.372459,-0.574592][0.12365,0.992203,0.0156182][0.902061,0.0247241,0][-0.730535,-0.356701,-0.580634][-0.0227505,0.999271,0.0306603][0.902061,0.0338596,0][-0.383117,-0.358712,-0.588632][0.00423766,0.999705,0.0239067][0.902061,0.0443587,0][-0.373063,-0.3552,-0.916193][0.00569072,0.999983,-0.00140587][0.893998,0.044886,0][-0.704132,-0.352211,-0.908514][-0.0113423,0.999925,0.00451791][0.893998,0.034881,0][-0.704132,-0.352211,-0.908514][-0.0113423,0.999925,0.00451791][0.893998,0.034881,0][-0.730535,-0.356701,-0.580634][-0.0227505,0.999271,0.0306603][0.902061,0.0338596,0][-0.383117,-0.358712,-0.588632][0.00423766,0.999705,0.0239067][0.902061,0.0443587,0][-0.373063,-0.3552,-0.916193][0.00569072,0.999983,-0.00140587][0.893998,0.044886,0][-0.383117,-0.358712,-0.588632][0.00423766,0.999705,0.0239067][0.902061,0.0443587,0][-0.0124098,-0.358842,-0.597061][0.000594383,0.999942,0.0107409][0.902061,0.0555618,0][-0.373063,-0.3552,-0.916193][0.00170696,0.999954,0.00948374][0.883822,0.0612891,0][-0.0124098,-0.358842,-0.597061][0.00170696,0.999954,0.00948374][0.883733,0.071319,0][-0.019801,-0.355726,-0.924244][0.00170696,0.999954,0.00948374][0.878558,0.0666454,0][0.359941,-0.369765,-0.27481][-0.00384896,0.998646,0.051875][0.907018,0.0316989,0][0.358293,-0.356518,-0.605361][-0.00789133,0.999626,0.0261712][0.898306,0.0318628,0][-0.0124098,-0.358842,-0.597061][-0.00521903,0.999691,0.0243002][0.898306,0.0214731,0][-0.0124098,-0.358842,-0.597061][-0.00521903,0.999691,0.0243002][0.898306,0.0214731,0][-0.00491668,-0.371362,-0.266604][-0.00349603,0.998712,0.0506185][0.907018,0.0214731,0][0.359941,-0.369765,-0.27481][-0.00384896,0.998646,0.051875][0.907018,0.0316989,0][0.701873,-0.367659,-0.282467][0.012276,0.998438,0.054499][0.907018,0.0412823,0][0.7057,-0.352451,-0.61304][0.0169845,0.99951,0.0263009][0.898306,0.0415997,0][0.358293,-0.356518,-0.605361][-0.00789133,0.999626,0.0261712][0.898306,0.0318628,0][0.358293,-0.356518,-0.605361][-0.00789133,0.999626,0.0261712][0.898306,0.0318628,0][0.359941,-0.369765,-0.27481][-0.00384896,0.998646,0.051875][0.907018,0.0316989,0][0.701873,-0.367659,-0.282467][0.012276,0.998438,0.054499][0.907018,0.0412823,0][0.999415,-0.377063,-0.289719][-0.0493196,0.997084,0.0582294][0.907018,0.0496209,0][1.00802,-0.36642,-0.620641][-0.126761,0.990247,0.0578153][0.898306,0.0500719,0][0.7057,-0.352451,-0.61304][0.0169845,0.99951,0.0263009][0.898306,0.0415997,0][0.7057,-0.352451,-0.61304][0.0169845,0.99951,0.0263009][0.898306,0.0415997,0][0.701873,-0.367659,-0.282467][0.012276,0.998438,0.054499][0.907018,0.0412823,0][0.999415,-0.377063,-0.289719][-0.0493196,0.997084,0.0582294][0.907018,0.0496209,0][1.24838,-0.338498,-0.293356][-0.267517,0.954976,0.128278][0.907018,0.0566004,0][1.26829,-0.282702,-0.622171][-0.392706,0.914876,0.0937174][0.898306,0.0573706,0][1.00802,-0.36642,-0.620641][-0.126761,0.990247,0.0578153][0.898306,0.0500719,0][1.00802,-0.36642,-0.620641][-0.126761,0.990247,0.0578153][0.898306,0.0500719,0][0.999415,-0.377063,-0.289719][-0.0493196,0.997084,0.0582294][0.907018,0.0496209,0][1.24838,-0.338498,-0.293356][-0.267517,0.954976,0.128278][0.907018,0.0566004,0][1.43638,-0.261265,-0.293584][-0.29051,0.930032,0.225045][0.907018,0.0618733,0][1.44976,-0.178365,-0.62083][-0.572348,0.806067,0.150579][0.898306,0.062462,0][1.26829,-0.282702,-0.622171][-0.392706,0.914876,0.0937174][0.898306,0.0573706,0][1.26829,-0.282702,-0.622171][-0.392706,0.914876,0.0937174][0.898306,0.0573706,0][1.24838,-0.338498,-0.293356][-0.267517,0.954976,0.128278][0.907018,0.0566004,0][1.43638,-0.261265,-0.293584][-0.29051,0.930032,0.225045][0.907018,0.0618733,0][1.4786,-0.251751,-0.294044][0.725592,0.638983,0.255376][0.907018,0.063057,0][1.47493,-0.157318,-0.6203][0.454452,0.881155,0.130537][0.898306,0.0631684,0][1.44976,-0.178365,-0.62083][-0.572348,0.806067,0.150579][0.898306,0.062462,0][1.44976,-0.178365,-0.62083][-0.572348,0.806067,0.150579][0.898306,0.062462,0][1.43638,-0.261265,-0.293584][-0.29051,0.930032,0.225045][0.907018,0.0618733,0][1.4786,-0.251751,-0.294044][0.725592,0.638983,0.255376][0.907018,0.063057,0][1.46916,-0.28994,-0.29583][0.860456,-0.508333,-0.0348127][0.934132,0.0568496,0][1.4724,-0.198437,-0.622395][0.926126,-0.365017,-0.0951466][0.94519,0.0580094,0][1.47493,-0.157318,-0.6203][0.454452,0.881155,0.130537][0.945344,0.0593199,0][1.47493,-0.157318,-0.6203][0.454452,0.881155,0.130537][0.945344,0.0593199,0][1.4786,-0.251751,-0.294044][0.725592,0.638983,0.255376][0.934274,0.058066,0][1.46916,-0.28994,-0.29583][0.860456,-0.508333,-0.0348127][0.934132,0.0568496,0][1.36357,-0.384582,-0.298386][0.561916,-0.820366,-0.106069][0.963161,0.0140771,0][1.38436,-0.295696,-0.625487][0.674503,-0.730363,-0.107775][0.971532,0.0142653,0][1.4724,-0.198437,-0.622395][0.926126,-0.365017,-0.0951466][0.972165,0.0181477,0][1.4724,-0.198437,-0.622395][0.926126,-0.365017,-0.0951466][0.972165,0.0181477,0][1.46916,-0.28994,-0.29583][0.860456,-0.508333,-0.0348127][0.963804,0.0182834,0][1.36357,-0.384582,-0.298386][0.561916,-0.820366,-0.106069][0.963161,0.0140771,0][1.12577,-0.506814,-0.299383][0.312408,-0.948698,-0.0487125][0.916339,0.0613844,0][1.13638,-0.487216,-0.629879][0.392659,-0.918543,-0.0458113][0.923161,0.0635786,0][1.38436,-0.295696,-0.625487][0.674503,-0.730363,-0.107775][0.921728,0.0685658,0][1.38436,-0.295696,-0.625487][0.674503,-0.730363,-0.107775][0.921728,0.0685658,0][1.36357,-0.384582,-0.298386][0.561916,-0.820366,-0.106069][0.914965,0.0661647,0][1.12577,-0.506814,-0.299383][0.312408,-0.948698,-0.0487125][0.916339,0.0613844,0][0.857734,-0.535999,-0.294822][0.094904,-0.994756,-0.0381258][0.917887,0.0560003,0][0.864059,-0.523658,-0.625601][0.101189,-0.994049,-0.0403535][0.924734,0.0581082,0][1.13638,-0.487216,-0.629879][0.392659,-0.918543,-0.0458113][0.923161,0.0635786,0][1.13638,-0.487216,-0.629879][0.392659,-0.918543,-0.0458113][0.923161,0.0635786,0][1.12577,-0.506814,-0.299383][0.312408,-0.948698,-0.0487125][0.916339,0.0613844,0][0.857734,-0.535999,-0.294822][0.094904,-0.994756,-0.0381258][0.917887,0.0560003,0][0.535508,-0.561468,-0.288835][0.0602032,-0.99762,-0.0336012][0.919748,0.0495279,0][0.536671,-0.550427,-0.619565][0.0641368,-0.99712,-0.0404765][0.926625,0.0515322,0][0.864059,-0.523658,-0.625601][0.101189,-0.994049,-0.0403535][0.924734,0.0581082,0][0.864059,-0.523658,-0.625601][0.101189,-0.994049,-0.0403535][0.924734,0.0581082,0][0.857734,-0.535999,-0.294822][0.094904,-0.994756,-0.0381258][0.917887,0.0560003,0][0.535508,-0.561468,-0.288835][0.0602032,-0.99762,-0.0336012][0.919748,0.0495279,0][0.179328,-0.57632,-0.28152][0.0222298,-0.999234,-0.0322107][0.921805,0.042374,0][0.174786,-0.56693,-0.612209][0.0239745,-0.999095,-0.0351338][0.928715,0.0442636,0][0.536671,-0.550427,-0.619565][0.0641368,-0.99712,-0.0404765][0.926625,0.0515322,0][0.536671,-0.550427,-0.619565][0.0641368,-0.99712,-0.0404765][0.926625,0.0515322,0][0.535508,-0.561468,-0.288835][0.0602032,-0.99762,-0.0336012][0.919748,0.0495279,0][0.179328,-0.57632,-0.28152][0.0222298,-0.999234,-0.0322107][0.921805,0.042374,0][-0.188431,-0.577408,-0.273222][-0.0172482,-0.999377,-0.0307946][0.923928,0.0349881,0][-0.198865,-0.568036,-0.603777][-0.0188797,-0.999229,-0.0344347][0.930872,0.0367593,0][0.174786,-0.56693,-0.612209][0.0239745,-0.999095,-0.0351338][0.928715,0.0442636,0][0.174786,-0.56693,-0.612209][0.0239745,-0.999095,-0.0351338][0.928715,0.0442636,0][0.179328,-0.57632,-0.28152][0.0222298,-0.999234,-0.0322107][0.921805,0.042374,0][-0.188431,-0.577408,-0.273222][-0.0172482,-0.999377,-0.0307946][0.923928,0.0349881,0][-0.544661,-0.564664,-0.264462][-0.0549404,-0.997996,-0.0314053][0.925985,0.0278342,0][-0.560806,-0.553675,-0.594803][-0.0590237,-0.997576,-0.0368598][0.932962,0.0294908,0][-0.198865,-0.568036,-0.603777][-0.0188797,-0.999229,-0.0344347][0.930872,0.0367593,0][-0.198865,-0.568036,-0.603777][-0.0188797,-0.999229,-0.0344347][0.930872,0.0367593,0][-0.188431,-0.577408,-0.273222][-0.0172482,-0.999377,-0.0307946][0.923928,0.0349881,0][-0.544661,-0.564664,-0.264462][-0.0549404,-0.997996,-0.0314053][0.925985,0.0278342,0][-0.866974,-0.541103,-0.255906][-0.0891069,-0.995508,-0.0320096][0.927846,0.0213618,0][-0.888285,-0.528844,-0.586063][-0.102194,-0.99372,-0.0455667][0.934852,0.0229147,0][-0.560806,-0.553675,-0.594803][-0.0590237,-0.997576,-0.0368598][0.932962,0.0294908,0][-0.560806,-0.553675,-0.594803][-0.0590237,-0.997576,-0.0368598][0.932962,0.0294908,0][-0.544661,-0.564664,-0.264462][-0.0549404,-0.997996,-0.0314053][0.925985,0.0278342,0][-0.866974,-0.541103,-0.255906][-0.0891069,-0.995508,-0.0320096][0.927846,0.0213618,0][-1.13511,-0.513505,-0.24837][-0.275435,-0.960564,-0.0380959][0.929394,0.0159777,0][-1.16073,-0.494013,-0.578049][-0.375055,-0.92441,-0.069286][0.936425,0.0174443,0][-0.888285,-0.528844,-0.586063][-0.102194,-0.99372,-0.0455667][0.934852,0.0229147,0][-0.888285,-0.528844,-0.586063][-0.102194,-0.99372,-0.0455667][0.934852,0.0229147,0][-0.866974,-0.541103,-0.255906][-0.0891069,-0.995508,-0.0320096][0.927846,0.0213618,0][-1.13511,-0.513505,-0.24837][-0.275435,-0.960564,-0.0380959][0.929394,0.0159777,0][-1.37334,-0.39268,-0.236633][-0.576519,-0.812618,-0.0853063][0.930768,0.0111974,0][-1.40939,-0.303963,-0.562451][-0.676913,-0.728302,-0.106606][0.937859,0.0124572,0][-1.16073,-0.494013,-0.578049][-0.375055,-0.92441,-0.069286][0.936425,0.0174443,0][-1.16073,-0.494013,-0.578049][-0.375055,-0.92441,-0.069286][0.936425,0.0174443,0][-1.13511,-0.513505,-0.24837][-0.275435,-0.960564,-0.0380959][0.929394,0.0159777,0][-1.37334,-0.39268,-0.236633][-0.576519,-0.812618,-0.0853063][0.930768,0.0111974,0][-1.47927,-0.298665,-0.229304][-0.863967,-0.503547,-0.00113354][0.969818,0.0265301,0][-1.49778,-0.207226,-0.555378][-0.930036,-0.359286,-0.0771085][0.961458,0.0267772,0][-1.40939,-0.303963,-0.562451][-0.676913,-0.728302,-0.106606][0.961973,0.0228686,0][-1.40939,-0.303963,-0.562451][-0.676913,-0.728302,-0.106606][0.961973,0.0228686,0][-1.37334,-0.39268,-0.236633][-0.576519,-0.812618,-0.0853063][0.970332,0.0222973,0][-1.47927,-0.298665,-0.229304][-0.863967,-0.503547,-0.00113354][0.969818,0.0265301,0][-1.48884,-0.260532,-0.22709][-0.722975,0.627543,0.288958][0.90237,0.0364728,0][-1.50045,-0.166123,-0.553166][-0.459563,0.885189,0.0724012][0.891298,0.0377066,0][-1.49778,-0.207226,-0.555378][-0.930036,-0.359286,-0.0771085][0.891454,0.0363964,0][-1.49778,-0.207226,-0.555378][-0.930036,-0.359286,-0.0771085][0.891454,0.0363964,0][-1.47927,-0.298665,-0.229304][-0.863967,-0.503547,-0.00113354][0.902515,0.0352566,0][-1.48884,-0.260532,-0.22709][-0.722975,0.627543,0.288958][0.90237,0.0364728,0][-1.44659,-0.269796,-0.228535][0.282785,0.937721,0.201774][0.910217,0.0119989,0][-1.47521,-0.187021,-0.554833][0.565515,0.819108,0.0962][0.902061,0.0113641,0][-1.50045,-0.166123,-0.553166][-0.459563,0.885189,0.0724012][0.902061,0.0106024,0][-1.50045,-0.166123,-0.553166][-0.459563,0.885189,0.0724012][0.902061,0.0106024,0][-1.48884,-0.260532,-0.22709][-0.722975,0.627543,0.288958][0.910217,0.0107224,0][-1.44659,-0.269796,-0.228535][0.282785,0.937721,0.201774][0.910217,0.0119989,0][-1.25832,-0.345915,-0.236797][0.269723,0.957336,0.103721][0.910217,0.0176845,0][-1.29336,-0.290283,-0.56437][0.405656,0.912886,0.0456341][0.902061,0.0168541,0][-1.47521,-0.187021,-0.554833][0.565515,0.819108,0.0962][0.902061,0.0113641,0][-1.47521,-0.187021,-0.554833][0.565515,0.819108,0.0962][0.902061,0.0113641,0][-1.44659,-0.269796,-0.228535][0.282785,0.937721,0.201774][0.910217,0.0119989,0][-1.25832,-0.345915,-0.236797][0.269723,0.957336,0.103721][0.910217,0.0176845,0][-1.00922,-0.383007,-0.244398][0.0771951,0.995527,0.0544772][0.910217,0.0252104,0][-1.0328,-0.372459,-0.574592][0.12365,0.992203,0.0156182][0.902061,0.0247241,0][-1.29336,-0.290283,-0.56437][0.405656,0.912886,0.0456341][0.902061,0.0168541,0][-1.29336,-0.290283,-0.56437][0.405656,0.912886,0.0456341][0.902061,0.0168541,0][-1.25832,-0.345915,-0.236797][0.269723,0.957336,0.103721][0.910217,0.0176845,0][-1.00922,-0.383007,-0.244398][0.0771951,0.995527,0.0544772][0.910217,0.0252104,0][-0.711712,-0.371842,-0.250572][-0.0199494,0.998252,0.0556297][0.910217,0.0342019,0][-0.730535,-0.356701,-0.580634][-0.0227505,0.999271,0.0306603][0.902061,0.0338596,0][-1.0328,-0.372459,-0.574592][0.12365,0.992203,0.0156182][0.902061,0.0247241,0][-1.0328,-0.372459,-0.574592][0.12365,0.992203,0.0156182][0.902061,0.0247241,0][-1.00922,-0.383007,-0.244398][0.0771951,0.995527,0.0544772][0.910217,0.0252104,0][-0.711712,-0.371842,-0.250572][-0.0199494,0.998252,0.0556297][0.910217,0.0342019,0][-0.369776,-0.371925,-0.258345][0.00165633,0.998746,0.0500285][0.910217,0.0445354,0][-0.383117,-0.358712,-0.588632][0.00423766,0.999705,0.0239067][0.902061,0.0443587,0][-0.730535,-0.356701,-0.580634][-0.0227505,0.999271,0.0306603][0.902061,0.0338596,0][-0.730535,-0.356701,-0.580634][-0.0227505,0.999271,0.0306603][0.902061,0.0338596,0][-0.711712,-0.371842,-0.250572][-0.0199494,0.998252,0.0556297][0.910217,0.0342019,0][-0.369776,-0.371925,-0.258345][0.00165633,0.998746,0.0500285][0.910217,0.0445354,0][-0.383117,-0.358712,-0.588632][0.00423766,0.999705,0.0239067][0.902061,0.0443587,0][-0.369776,-0.371925,-0.258345][0.00165633,0.998746,0.0500285][0.910217,0.0445354,0][-0.00491668,-0.371362,-0.266604][-0.000635564,0.9992,0.039997][0.910217,0.0555618,0][-0.383117,-0.358712,-0.588632][0.00121012,0.999283,0.0378327][0.965693,0.0180059,0][-0.00491668,-0.371362,-0.266604][0.00121012,0.999283,0.0378327][0.954898,0.0180482,0][-0.0124098,-0.358842,-0.597061][0.00121012,0.999283,0.0378327][0.95966,0.0128884,0][0.343803,-0.404884,0.281128][-0.0129088,0.989936,0.140924][0.921675,0.0308926,0][0.359941,-0.369765,-0.27481][-0.00384896,0.998646,0.051875][0.907018,0.0316989,0][-0.00491668,-0.371362,-0.266604][-0.00349603,0.998712,0.0506185][0.907018,0.0214731,0][-0.00491668,-0.371362,-0.266604][-0.00349603,0.998712,0.0506185][0.907018,0.0214731,0][0.007717,-0.406867,0.28866][-0.0162327,0.986248,0.164474][0.921675,0.0214731,0][0.343803,-0.404884,0.281128][-0.0129088,0.989936,0.140924][0.921675,0.0308926,0][0.658774,-0.404875,0.273974][0.00489378,0.99364,0.112497][0.921675,0.0397202,0][0.701873,-0.367659,-0.282467][0.012276,0.998438,0.054499][0.907018,0.0412823,0][0.359941,-0.369765,-0.27481][-0.00384896,0.998646,0.051875][0.907018,0.0316989,0][0.359941,-0.369765,-0.27481][-0.00384896,0.998646,0.051875][0.907018,0.0316989,0][0.343803,-0.404884,0.281128][-0.0129088,0.989936,0.140924][0.921675,0.0308926,0][0.658774,-0.404875,0.273974][0.00489378,0.99364,0.112497][0.921675,0.0397202,0][0.932844,-0.408609,0.267551][0.0300798,0.993625,0.108646][0.921675,0.0474013,0][0.999415,-0.377063,-0.289719][-0.0493196,0.997084,0.0582294][0.907018,0.0496209,0][0.701873,-0.367659,-0.282467][0.012276,0.998438,0.054499][0.907018,0.0412823,0][0.701873,-0.367659,-0.282467][0.012276,0.998438,0.054499][0.907018,0.0412823,0][0.658774,-0.404875,0.273974][0.00489378,0.99364,0.112497][0.921675,0.0397202,0][0.932844,-0.408609,0.267551][0.0300798,0.993625,0.108646][0.921675,0.0474013,0][1.14879,-0.416218,0.262247][0.066034,0.987464,0.143368][0.921675,0.0534532,0][1.24838,-0.338498,-0.293356][-0.267517,0.954976,0.128278][0.907018,0.0566004,0][0.999415,-0.377063,-0.289719][-0.0493196,0.997084,0.0582294][0.907018,0.0496209,0][0.999415,-0.377063,-0.289719][-0.0493196,0.997084,0.0582294][0.907018,0.0496209,0][0.932844,-0.408609,0.267551][0.0300798,0.993625,0.108646][0.921675,0.0474013,0][1.14879,-0.416218,0.262247][0.066034,0.987464,0.143368][0.921675,0.0534532,0][1.29186,-0.432444,0.258147][0.201237,0.95115,0.234131][0.921675,0.0574621,0][1.43638,-0.261265,-0.293584][-0.29051,0.930032,0.225045][0.907018,0.0618733,0][1.24838,-0.338498,-0.293356][-0.267517,0.954976,0.128278][0.907018,0.0566004,0][1.24838,-0.338498,-0.293356][-0.267517,0.954976,0.128278][0.907018,0.0566004,0][1.14879,-0.416218,0.262247][0.066034,0.987464,0.143368][0.921675,0.0534532,0][1.29186,-0.432444,0.258147][0.201237,0.95115,0.234131][0.921675,0.0574621,0][1.35474,-0.454961,0.25554][0.951105,0.185123,0.247242][0.921675,0.0592232,0][1.4786,-0.251751,-0.294044][0.725592,0.638983,0.255376][0.907018,0.063057,0][1.43638,-0.261265,-0.293584][-0.29051,0.930032,0.225045][0.907018,0.0618733,0][1.43638,-0.261265,-0.293584][-0.29051,0.930032,0.225045][0.907018,0.0618733,0][1.29186,-0.432444,0.258147][0.201237,0.95115,0.234131][0.921675,0.0574621,0][1.35474,-0.454961,0.25554][0.951105,0.185123,0.247242][0.921675,0.0592232,0][1.33368,-0.481043,0.254653][0.535968,-0.839429,-0.0899869][0.915387,0.0537264,0][1.46916,-0.28994,-0.29583][0.860456,-0.508333,-0.0348127][0.934132,0.0568496,0][1.4786,-0.251751,-0.294044][0.725592,0.638983,0.255376][0.934274,0.058066,0][1.4786,-0.251751,-0.294044][0.725592,0.638983,0.255376][0.934274,0.058066,0][1.35474,-0.454961,0.25554][0.951105,0.185123,0.247242][0.915484,0.0545558,0][1.33368,-0.481043,0.254653][0.535968,-0.839429,-0.0899869][0.915387,0.0537264,0][1.2303,-0.507935,0.255594][0.210248,-0.966592,-0.146612][0.904153,0.0601515,0][1.36357,-0.384582,-0.298386][0.561916,-0.820366,-0.106069][0.914965,0.0661647,0][1.46916,-0.28994,-0.29583][0.860456,-0.508333,-0.0348127][0.914354,0.0682887,0][1.46916,-0.28994,-0.29583][0.860456,-0.508333,-0.0348127][0.914354,0.0682887,0][1.33368,-0.481043,0.254653][0.535968,-0.839429,-0.0899869][0.903556,0.0622286,0][1.2303,-0.507935,0.255594][0.210248,-0.966592,-0.146612][0.904153,0.0601515,0][1.04925,-0.535604,0.258259][0.149005,-0.984846,-0.0887425][0.905199,0.0565143,0][1.12577,-0.506814,-0.299383][0.312408,-0.948698,-0.0487125][0.916339,0.0613844,0][1.36357,-0.384582,-0.298386][0.561916,-0.820366,-0.106069][0.914965,0.0661647,0][1.36357,-0.384582,-0.298386][0.561916,-0.820366,-0.106069][0.914965,0.0661647,0][1.2303,-0.507935,0.255594][0.210248,-0.966592,-0.146612][0.904153,0.0601515,0][1.04925,-0.535604,0.258259][0.149005,-0.984846,-0.0887425][0.905199,0.0565143,0][0.802348,-0.562151,0.262478][0.092576,-0.992231,-0.0831045][0.906625,0.0515547,0][0.857734,-0.535999,-0.294822][0.094904,-0.994756,-0.0381258][0.917887,0.0560003,0][1.12577,-0.506814,-0.299383][0.312408,-0.948698,-0.0487125][0.916339,0.0613844,0][1.12577,-0.506814,-0.299383][0.312408,-0.948698,-0.0487125][0.916339,0.0613844,0][1.04925,-0.535604,0.258259][0.149005,-0.984846,-0.0887425][0.905199,0.0565143,0][0.802348,-0.562151,0.262478][0.092576,-0.992231,-0.0831045][0.906625,0.0515547,0][0.505526,-0.58193,0.268185][0.0657219,-0.99104,-0.116273][0.908339,0.0455928,0][0.535508,-0.561468,-0.288835][0.0602032,-0.99762,-0.0336012][0.919748,0.0495279,0][0.857734,-0.535999,-0.294822][0.094904,-0.994756,-0.0381258][0.917887,0.0560003,0][0.857734,-0.535999,-0.294822][0.094904,-0.994756,-0.0381258][0.917887,0.0560003,0][0.802348,-0.562151,0.262478][0.092576,-0.992231,-0.0831045][0.906625,0.0515547,0][0.505526,-0.58193,0.268185][0.0657219,-0.99104,-0.116273][0.908339,0.0455928,0][0.177433,-0.595706,0.274917][0.0191218,-0.989153,-0.145637][0.910233,0.039003,0][0.179328,-0.57632,-0.28152][0.0222298,-0.999234,-0.0322107][0.921805,0.042374,0][0.535508,-0.561468,-0.288835][0.0602032,-0.99762,-0.0336012][0.919748,0.0495279,0][0.535508,-0.561468,-0.288835][0.0602032,-0.99762,-0.0336012][0.919748,0.0495279,0][0.505526,-0.58193,0.268185][0.0657219,-0.99104,-0.116273][0.908339,0.0455928,0][0.177433,-0.595706,0.274917][0.0191218,-0.989153,-0.145637][0.910233,0.039003,0][-0.161326,-0.596709,0.282562][-0.0332949,-0.991432,-0.126308][0.912189,0.0321995,0][-0.188431,-0.577408,-0.273222][-0.0172482,-0.999377,-0.0307946][0.923928,0.0349881,0][0.179328,-0.57632,-0.28152][0.0222298,-0.999234,-0.0322107][0.921805,0.042374,0][0.179328,-0.57632,-0.28152][0.0222298,-0.999234,-0.0322107][0.921805,0.042374,0][0.177433,-0.595706,0.274917][0.0191218,-0.989153,-0.145637][0.910233,0.039003,0][-0.161326,-0.596709,0.282562][-0.0332949,-0.991432,-0.126308][0.912189,0.0321995,0][-0.489465,-0.584874,0.290636][-0.0584403,-0.994574,-0.0860694][0.914084,0.0256097,0][-0.544661,-0.564664,-0.264462][-0.0549404,-0.997996,-0.0314053][0.925985,0.0278342,0][-0.188431,-0.577408,-0.273222][-0.0172482,-0.999377,-0.0307946][0.923928,0.0349881,0][-0.188431,-0.577408,-0.273222][-0.0172482,-0.999377,-0.0307946][0.923928,0.0349881,0][-0.161326,-0.596709,0.282562][-0.0332949,-0.991432,-0.126308][0.912189,0.0321995,0][-0.489465,-0.584874,0.290636][-0.0584403,-0.994574,-0.0860694][0.914084,0.0256097,0][-0.786355,-0.566853,0.298324][-0.084699,-0.994066,-0.0682583][0.915798,0.0196477,0][-0.866974,-0.541103,-0.255906][-0.0891069,-0.995508,-0.0320096][0.927846,0.0213618,0][-0.544661,-0.564664,-0.264462][-0.0549404,-0.997996,-0.0314053][0.925985,0.0278342,0][-0.544661,-0.564664,-0.264462][-0.0549404,-0.997996,-0.0314053][0.925985,0.0278342,0][-0.489465,-0.584874,0.290636][-0.0584403,-0.994574,-0.0860694][0.914084,0.0256097,0][-0.786355,-0.566853,0.298324][-0.084699,-0.994066,-0.0682583][0.915798,0.0196477,0][-1.03334,-0.541766,0.305248][-0.122692,-0.990311,-0.0650522][0.917224,0.0146882,0][-1.13511,-0.513505,-0.24837][-0.275435,-0.960564,-0.0380959][0.929394,0.0159777,0][-0.866974,-0.541103,-0.255906][-0.0891069,-0.995508,-0.0320096][0.927846,0.0213618,0][-0.866974,-0.541103,-0.255906][-0.0891069,-0.995508,-0.0320096][0.927846,0.0213618,0][-0.786355,-0.566853,0.298324][-0.084699,-0.994066,-0.0682583][0.915798,0.0196477,0][-1.03334,-0.541766,0.305248][-0.122692,-0.990311,-0.0650522][0.917224,0.0146882,0][-1.2145,-0.51517,0.310757][-0.219369,-0.97185,-0.0859303][0.91827,0.0110509,0][-1.37334,-0.39268,-0.236633][-0.576519,-0.812618,-0.0853063][0.930768,0.0111974,0][-1.13511,-0.513505,-0.24837][-0.275435,-0.960564,-0.0380959][0.929394,0.0159777,0][-1.13511,-0.513505,-0.24837][-0.275435,-0.960564,-0.0380959][0.929394,0.0159777,0][-1.03334,-0.541766,0.305248][-0.122692,-0.990311,-0.0650522][0.917224,0.0146882,0][-1.2145,-0.51517,0.310757][-0.219369,-0.97185,-0.0859303][0.91827,0.0110509,0][-1.31796,-0.48889,0.314483][-0.544586,-0.838348,-0.0244604][0.918867,0.00897388,0][-1.47927,-0.298665,-0.229304][-0.863967,-0.503547,-0.00113354][0.931379,0.00907343,0][-1.37334,-0.39268,-0.236633][-0.576519,-0.812618,-0.0853063][0.930768,0.0111974,0][-1.37334,-0.39268,-0.236633][-0.576519,-0.812618,-0.0853063][0.930768,0.0111974,0][-1.2145,-0.51517,0.310757][-0.219369,-0.97185,-0.0859303][0.91827,0.0110509,0][-1.31796,-0.48889,0.314483][-0.544586,-0.838348,-0.0244604][0.918867,0.00897388,0][-1.33912,-0.462933,0.316322][-0.932948,0.171046,0.316782][0.921167,0.0329964,0][-1.48884,-0.260532,-0.22709][-0.722975,0.627543,0.288958][0.90237,0.0364728,0][-1.47927,-0.298665,-0.229304][-0.863967,-0.503547,-0.00113354][0.902515,0.0352566,0][-1.47927,-0.298665,-0.229304][-0.863967,-0.503547,-0.00113354][0.902515,0.0352566,0][-1.31796,-0.48889,0.314483][-0.544586,-0.838348,-0.0244604][0.921265,0.0321672,0][-1.33912,-0.462933,0.316322][-0.932948,0.171046,0.316782][0.921167,0.0329964,0][-1.27632,-0.440045,0.316094][-0.215113,0.932054,0.291551][0.923941,0.0167554,0][-1.44659,-0.269796,-0.228535][0.282785,0.937721,0.201774][0.910217,0.0119989,0][-1.48884,-0.260532,-0.22709][-0.722975,0.627543,0.288958][0.910217,0.0107224,0][-1.48884,-0.260532,-0.22709][-0.722975,0.627543,0.288958][0.910217,0.0107224,0][-1.33912,-0.462933,0.316322][-0.932948,0.171046,0.316782][0.923941,0.0148564,0][-1.27632,-0.440045,0.316094][-0.215113,0.932054,0.291551][0.923941,0.0167554,0][-1.13331,-0.422972,0.313739][-0.0525262,0.981193,0.185747][0.923941,0.0210782,0][-1.25832,-0.345915,-0.236797][0.269723,0.957336,0.103721][0.910217,0.0176845,0][-1.44659,-0.269796,-0.228535][0.282785,0.937721,0.201774][0.910217,0.0119989,0][-1.44659,-0.269796,-0.228535][0.282785,0.937721,0.201774][0.910217,0.0119989,0][-1.27632,-0.440045,0.316094][-0.215113,0.932054,0.291551][0.923941,0.0167554,0][-1.13331,-0.422972,0.313739][-0.0525262,0.981193,0.185747][0.923941,0.0210782,0][-0.917393,-0.414084,0.309299][-0.012241,0.992578,0.120992][0.923941,0.0276039,0][-1.00922,-0.383007,-0.244398][0.0771951,0.995527,0.0544772][0.910217,0.0252104,0][-1.25832,-0.345915,-0.236797][0.269723,0.957336,0.103721][0.910217,0.0176845,0][-1.25832,-0.345915,-0.236797][0.269723,0.957336,0.103721][0.910217,0.0176845,0][-1.13331,-0.422972,0.313739][-0.0525262,0.981193,0.185747][0.923941,0.0210782,0][-0.917393,-0.414084,0.309299][-0.012241,0.992578,0.120992][0.923941,0.0276039,0][-0.64334,-0.408729,0.303354][0.00131651,0.991307,0.131564][0.923941,0.0358863,0][-0.711712,-0.371842,-0.250572][-0.0199494,0.998252,0.0556297][0.910217,0.0342019,0][-1.00922,-0.383007,-0.244398][0.0771951,0.995527,0.0544772][0.910217,0.0252104,0][-1.00922,-0.383007,-0.244398][0.0771951,0.995527,0.0544772][0.910217,0.0252104,0][-0.917393,-0.414084,0.309299][-0.012241,0.992578,0.120992][0.923941,0.0276039,0][-0.64334,-0.408729,0.303354][0.00131651,0.991307,0.131564][0.923941,0.0358863,0][-0.328372,-0.406874,0.296295][0.0085817,0.990551,0.136877][0.923941,0.0454049,0][-0.369776,-0.371925,-0.258345][0.00165633,0.998746,0.0500285][0.910217,0.0445354,0][-0.711712,-0.371842,-0.250572][-0.0199494,0.998252,0.0556297][0.910217,0.0342019,0][-0.711712,-0.371842,-0.250572][-0.0199494,0.998252,0.0556297][0.910217,0.0342019,0][-0.64334,-0.408729,0.303354][0.00131651,0.991307,0.131564][0.923941,0.0358863,0][-0.328372,-0.406874,0.296295][0.0085817,0.990551,0.136877][0.923941,0.0454049,0][-0.369776,-0.371925,-0.258345][0.00165633,0.998746,0.0500285][0.910217,0.0445354,0][-0.328372,-0.406874,0.296295][0.0085817,0.990551,0.136877][0.923941,0.0454049,0][0.007717,-0.406867,0.28866][0.00140677,0.998026,0.0627829][0.923941,0.0555618,0][-0.369776,-0.371925,-0.258345][-9.44803e-005,0.997962,0.0638148][0.876955,0.0597285,0][0.007717,-0.406867,0.28866][-9.44803e-005,0.997962,0.0638148][0.869027,0.071319,0][-0.00491668,-0.371362,-0.266604][-9.44803e-005,0.997962,0.0638148][0.869027,0.0597285,0][0.311506,-0.602142,1.0361][-0.171694,0.929658,0.325971][0.941779,0.0294943,0][0.343803,-0.404884,0.281128][-0.0129088,0.989936,0.140924][0.921675,0.0308926,0][0.007717,-0.406867,0.28866][-0.0162327,0.986248,0.164474][0.921675,0.0214731,0][0.007717,-0.406867,0.28866][-0.0162327,0.986248,0.164474][0.921675,0.0214731,0][0.025375,-0.64074,1.04057][-0.118224,0.927727,0.354042][0.941779,0.0214731,0][0.311506,-0.602142,1.0361][-0.171694,0.929658,0.325971][0.941779,0.0294943,0][0.579603,-0.535445,1.0335][-0.132226,0.950108,0.28251][0.941779,0.0370116,0][0.658774,-0.404875,0.273974][0.00489378,0.99364,0.112497][0.921675,0.0397202,0][0.343803,-0.404884,0.281128][-0.0129088,0.989936,0.140924][0.921675,0.0308926,0][0.343803,-0.404884,0.281128][-0.0129088,0.989936,0.140924][0.921675,0.0308926,0][0.311506,-0.602142,1.0361][-0.171694,0.929658,0.325971][0.941779,0.0294943,0][0.579603,-0.535445,1.0335][-0.132226,0.950108,0.28251][0.941779,0.0370116,0][0.812956,-0.519362,1.02904][0.0131216,0.963269,0.268219][0.941779,0.0435524,0][0.932844,-0.408609,0.267551][0.0300798,0.993625,0.108646][0.921675,0.0474013,0][0.658774,-0.404875,0.273974][0.00489378,0.99364,0.112497][0.921675,0.0397202,0][0.658774,-0.404875,0.273974][0.00489378,0.99364,0.112497][0.921675,0.0397202,0][0.579603,-0.535445,1.0335][-0.132226,0.950108,0.28251][0.941779,0.0370116,0][0.812956,-0.519362,1.02904][0.0131216,0.963269,0.268219][0.941779,0.0435524,0][0.996862,-0.533704,1.02411][0.133195,0.953181,0.271486][0.941779,0.048706,0][1.14879,-0.416218,0.262247][0.066034,0.987464,0.143368][0.921675,0.0534532,0][0.932844,-0.408609,0.267551][0.0300798,0.993625,0.108646][0.921675,0.0474013,0][0.932844,-0.408609,0.267551][0.0300798,0.993625,0.108646][0.921675,0.0474013,0][0.812956,-0.519362,1.02904][0.0131216,0.963269,0.268219][0.941779,0.0435524,0][0.996862,-0.533704,1.02411][0.133195,0.953181,0.271486][0.941779,0.048706,0][1.11973,-0.558427,1.02002][0.283101,0.913621,0.291806][0.941779,0.0521484,0][1.29186,-0.432444,0.258147][0.201237,0.95115,0.234131][0.921675,0.0574621,0][1.14879,-0.416218,0.262247][0.066034,0.987464,0.143368][0.921675,0.0534532,0][1.14879,-0.416218,0.262247][0.066034,0.987464,0.143368][0.921675,0.0534532,0][0.996862,-0.533704,1.02411][0.133195,0.953181,0.271486][0.941779,0.048706,0][1.11973,-0.558427,1.02002][0.283101,0.913621,0.291806][0.941779,0.0521484,0][1.17383,-0.580711,1.01763][0.92481,0.208029,0.318511][0.941779,0.0536634,0][1.35474,-0.454961,0.25554][0.951105,0.185123,0.247242][0.921675,0.0592232,0][1.29186,-0.432444,0.258147][0.201237,0.95115,0.234131][0.921675,0.0574621,0][1.29186,-0.432444,0.258147][0.201237,0.95115,0.234131][0.921675,0.0574621,0][1.11973,-0.558427,1.02002][0.283101,0.913621,0.291806][0.941779,0.0521484,0][1.17383,-0.580711,1.01763][0.92481,0.208029,0.318511][0.941779,0.0536634,0][1.15575,-0.60211,1.01692][0.523123,-0.851848,-0.0264034][0.890203,0.0539381,0][1.33368,-0.481043,0.254653][0.535968,-0.839429,-0.0899869][0.915387,0.0537264,0][1.35474,-0.454961,0.25554][0.951105,0.185123,0.247242][0.915484,0.0545558,0][1.35474,-0.454961,0.25554][0.951105,0.185123,0.247242][0.915484,0.0545558,0][1.17383,-0.580711,1.01763][0.92481,0.208029,0.318511][0.890283,0.0546186,0][1.15575,-0.60211,1.01692][0.523123,-0.851848,-0.0264034][0.890203,0.0539381,0][1.06664,-0.618777,1.01807][0.131018,-0.971225,-0.19889][0.889212,0.0522899,0][1.2303,-0.507935,0.255594][0.210248,-0.966592,-0.146612][0.904153,0.0601515,0][1.33368,-0.481043,0.254653][0.535968,-0.839429,-0.0899869][0.903556,0.0622286,0][1.33368,-0.481043,0.254653][0.535968,-0.839429,-0.0899869][0.903556,0.0622286,0][1.15575,-0.60211,1.01692][0.523123,-0.851848,-0.0264034][0.888698,0.0540803,0][1.06664,-0.618777,1.01807][0.131018,-0.971225,-0.19889][0.889212,0.0522899,0][0.912084,-0.62975,1.02101][0.0969436,-0.970899,-0.218992][0.890105,0.0491856,0][1.04925,-0.535604,0.258259][0.149005,-0.984846,-0.0887425][0.905199,0.0565143,0][1.2303,-0.507935,0.255594][0.210248,-0.966592,-0.146612][0.904153,0.0601515,0][1.2303,-0.507935,0.255594][0.210248,-0.966592,-0.146612][0.904153,0.0601515,0][1.06664,-0.618777,1.01807][0.131018,-0.971225,-0.19889][0.889212,0.0522899,0][0.912084,-0.62975,1.02101][0.0969436,-0.970899,-0.218992][0.890105,0.0491856,0][0.701844,-0.656736,1.02437][0.169622,-0.961867,-0.214571][0.891319,0.0449622,0][0.802348,-0.562151,0.262478][0.092576,-0.992231,-0.0831045][0.906625,0.0515547,0][1.04925,-0.535604,0.258259][0.149005,-0.984846,-0.0887425][0.905199,0.0565143,0][1.04925,-0.535604,0.258259][0.149005,-0.984846,-0.0887425][0.905199,0.0565143,0][0.912084,-0.62975,1.02101][0.0969436,-0.970899,-0.218992][0.890105,0.0491856,0][0.701844,-0.656736,1.02437][0.169622,-0.961867,-0.214571][0.891319,0.0449622,0][0.449151,-0.713005,1.02716][0.230602,-0.943349,-0.238568][0.892779,0.0398852,0][0.505526,-0.58193,0.268185][0.0657219,-0.99104,-0.116273][0.908339,0.0455928,0][0.802348,-0.562151,0.262478][0.092576,-0.992231,-0.0831045][0.906625,0.0515547,0][0.802348,-0.562151,0.262478][0.092576,-0.992231,-0.0831045][0.906625,0.0515547,0][0.701844,-0.656736,1.02437][0.169622,-0.961867,-0.214571][0.891319,0.0449622,0][0.449151,-0.713005,1.02716][0.230602,-0.943349,-0.238568][0.892779,0.0398852,0][0.169885,-0.79441,1.02925][0.120052,-0.950248,-0.287431][0.894392,0.0342737,0][0.177433,-0.595706,0.274917][0.0191218,-0.989153,-0.145637][0.910233,0.039003,0][0.505526,-0.58193,0.268185][0.0657219,-0.99104,-0.116273][0.908339,0.0455928,0][0.505526,-0.58193,0.268185][0.0657219,-0.99104,-0.116273][0.908339,0.0455928,0][0.449151,-0.713005,1.02716][0.230602,-0.943349,-0.238568][0.892779,0.0398852,0][0.169885,-0.79441,1.02925][0.120052,-0.950248,-0.287431][0.894392,0.0342737,0][-0.118588,-0.795263,1.03576][-0.14164,-0.944293,-0.297068][0.896058,0.0284801,0][-0.161326,-0.596709,0.282562][-0.0332949,-0.991432,-0.126308][0.912189,0.0321995,0][0.177433,-0.595706,0.274917][0.0191218,-0.989153,-0.145637][0.910233,0.039003,0][0.177433,-0.595706,0.274917][0.0191218,-0.989153,-0.145637][0.910233,0.039003,0][0.169885,-0.79441,1.02925][0.120052,-0.950248,-0.287431][0.894392,0.0342737,0][-0.118588,-0.795263,1.03576][-0.14164,-0.944293,-0.297068][0.896058,0.0284801,0][-0.398141,-0.715512,1.04628][-0.23497,-0.940368,-0.245963][0.897671,0.0228685,0][-0.489465,-0.584874,0.290636][-0.0584403,-0.994574,-0.0860694][0.914084,0.0256097,0][-0.161326,-0.596709,0.282562][-0.0332949,-0.991432,-0.126308][0.912189,0.0321995,0][-0.161326,-0.596709,0.282562][-0.0332949,-0.991432,-0.126308][0.912189,0.0321995,0][-0.118588,-0.795263,1.03576][-0.14164,-0.944293,-0.297068][0.896058,0.0284801,0][-0.398141,-0.715512,1.04628][-0.23497,-0.940368,-0.245963][0.897671,0.0228685,0][-0.651031,-0.66074,1.05489][-0.161297,-0.964038,-0.211218][0.899131,0.0177915,0][-0.786355,-0.566853,0.298324][-0.084699,-0.994066,-0.0682583][0.915798,0.0196477,0][-0.489465,-0.584874,0.290636][-0.0584403,-0.994574,-0.0860694][0.914084,0.0256097,0][-0.489465,-0.584874,0.290636][-0.0584403,-0.994574,-0.0860694][0.914084,0.0256097,0][-0.398141,-0.715512,1.04628][-0.23497,-0.940368,-0.245963][0.897671,0.0228685,0][-0.651031,-0.66074,1.05489][-0.161297,-0.964038,-0.211218][0.899131,0.0177915,0][-0.861364,-0.634998,1.06102][-0.100796,-0.974899,-0.198526][0.900345,0.0135682,0][-1.03334,-0.541766,0.305248][-0.122692,-0.990311,-0.0650522][0.917224,0.0146882,0][-0.786355,-0.566853,0.298324][-0.084699,-0.994066,-0.0682583][0.915798,0.0196477,0][-0.786355,-0.566853,0.298324][-0.084699,-0.994066,-0.0682583][0.915798,0.0196477,0][-0.651031,-0.66074,1.05489][-0.161297,-0.964038,-0.211218][0.899131,0.0177915,0][-0.861364,-0.634998,1.06102][-0.100796,-0.974899,-0.198526][0.900345,0.0135682,0][-1.01595,-0.62494,1.06506][-0.136889,-0.976756,-0.164953][0.901237,0.0104638,0][-1.2145,-0.51517,0.310757][-0.219369,-0.97185,-0.0859303][0.91827,0.0110509,0][-1.03334,-0.541766,0.305248][-0.122692,-0.990311,-0.0650522][0.917224,0.0146882,0][-1.03334,-0.541766,0.305248][-0.122692,-0.990311,-0.0650522][0.917224,0.0146882,0][-0.861364,-0.634998,1.06102][-0.100796,-0.974899,-0.198526][0.900345,0.0135682,0][-1.01595,-0.62494,1.06506][-0.136889,-0.976756,-0.164953][0.901237,0.0104638,0][-1.10513,-0.608801,1.06793][-0.514745,-0.857297,0.00897735][0.901752,0.00867348,0][-1.31796,-0.48889,0.314483][-0.544586,-0.838348,-0.0244604][0.918867,0.00897388,0][-1.2145,-0.51517,0.310757][-0.219369,-0.97185,-0.0859303][0.91827,0.0110509,0][-1.2145,-0.51517,0.310757][-0.219369,-0.97185,-0.0859303][0.91827,0.0110509,0][-1.01595,-0.62494,1.06506][-0.136889,-0.976756,-0.164953][0.901237,0.0104638,0][-1.10513,-0.608801,1.06793][-0.514745,-0.857297,0.00897735][0.901752,0.00867348,0][-1.12328,-0.587509,1.06946][-0.906044,0.201275,0.372255][0.946368,0.0331047,0][-1.33912,-0.462933,0.316322][-0.932948,0.171046,0.316782][0.921167,0.0329964,0][-1.31796,-0.48889,0.314483][-0.544586,-0.838348,-0.0244604][0.921265,0.0321672,0][-1.31796,-0.48889,0.314483][-0.544586,-0.838348,-0.0244604][0.921265,0.0321672,0][-1.10513,-0.608801,1.06793][-0.514745,-0.857297,0.00897735][0.946449,0.0324244,0][-1.12328,-0.587509,1.06946][-0.906044,0.201275,0.372255][0.946368,0.0331047,0][-1.06926,-0.564904,1.06941][-0.272992,0.90581,0.324012][0.942764,0.0224851,0][-1.27632,-0.440045,0.316094][-0.215113,0.932054,0.291551][0.923941,0.0167554,0][-1.33912,-0.462933,0.316322][-0.932948,0.171046,0.316782][0.923941,0.0148564,0][-1.33912,-0.462933,0.316322][-0.932948,0.171046,0.316782][0.923941,0.0148564,0][-1.12328,-0.587509,1.06946][-0.906044,0.201275,0.372255][0.942764,0.0208515,0][-1.06926,-0.564904,1.06941][-0.272992,0.90581,0.324012][0.942764,0.0224851,0][-0.946482,-0.539455,1.06796][-0.128058,0.945577,0.299141][0.942764,0.026197,0][-1.13331,-0.422972,0.313739][-0.0525262,0.981193,0.185747][0.923941,0.0210782,0][-1.27632,-0.440045,0.316094][-0.215113,0.932054,0.291551][0.923941,0.0167554,0][-1.27632,-0.440045,0.316094][-0.215113,0.932054,0.291551][0.923941,0.0167554,0][-1.06926,-0.564904,1.06941][-0.272992,0.90581,0.324012][0.942764,0.0224851,0][-0.946482,-0.539455,1.06796][-0.128058,0.945577,0.299141][0.942764,0.026197,0][-0.762629,-0.524025,1.06459][0.00045877,0.961821,0.273678][0.942764,0.031754,0][-0.917393,-0.414084,0.309299][-0.012241,0.992578,0.120992][0.923941,0.0276039,0][-1.13331,-0.422972,0.313739][-0.0525262,0.981193,0.185747][0.923941,0.0210782,0][-1.13331,-0.422972,0.313739][-0.0525262,0.981193,0.185747][0.923941,0.0210782,0][-0.946482,-0.539455,1.06796][-0.128058,0.945577,0.299141][0.942764,0.026197,0][-0.762629,-0.524025,1.06459][0.00045877,0.961821,0.273678][0.942764,0.031754,0][-0.529223,-0.538726,1.05852][0.150399,0.953354,0.261719][0.942764,0.0388069,0][-0.64334,-0.408729,0.303354][0.00131651,0.991307,0.131564][0.923941,0.0358863,0][-0.917393,-0.414084,0.309299][-0.012241,0.992578,0.120992][0.923941,0.0276039,0][-0.917393,-0.414084,0.309299][-0.012241,0.992578,0.120992][0.923941,0.0276039,0][-0.762629,-0.524025,1.06459][0.00045877,0.961821,0.273678][0.942764,0.031754,0][-0.529223,-0.538726,1.05852][0.150399,0.953354,0.261719][0.942764,0.0388069,0][-0.26089,-0.603836,1.04901][0.178569,0.944043,0.277302][0.942764,0.0469126,0][-0.328372,-0.406874,0.296295][0.0085817,0.990551,0.136877][0.923941,0.0454049,0][-0.64334,-0.408729,0.303354][0.00131651,0.991307,0.131564][0.923941,0.0358863,0][-0.64334,-0.408729,0.303354][0.00131651,0.991307,0.131564][0.923941,0.0358863,0][-0.529223,-0.538726,1.05852][0.150399,0.953354,0.261719][0.942764,0.0388069,0][-0.26089,-0.603836,1.04901][0.178569,0.944043,0.277302][0.942764,0.0469126,0][-0.328372,-0.406874,0.296295][0.0085817,0.990551,0.136877][0.923941,0.0454049,0][-0.26089,-0.603836,1.04901][0.178569,0.944043,0.277302][0.942764,0.0469126,0][0.025375,-0.64074,1.04057][0.131074,0.961896,0.239947][0.942764,0.0555618,0][-0.328372,-0.406874,0.296295][0.00672526,0.9549,0.29685][0.887512,0.0197622,0][0.025375,-0.64074,1.04057][0.00672526,0.9549,0.29685][0.859407,0.0195101,0][0.007717,-0.406867,0.28866][0.00672526,0.9549,0.29685][0.883269,0.00981954,0][0.258957,-0.897596,1.67801][-0.204181,0.872949,0.443024][0.959034,0.0275921,0][0.311506,-0.602142,1.0361][-0.171694,0.929658,0.325971][0.941779,0.0294943,0][0.025375,-0.64074,1.04057][-0.118224,0.927727,0.354042][0.941779,0.0214731,0][0.025375,-0.64074,1.04057][-0.118224,0.927727,0.354042][0.941779,0.0214731,0][0.0406762,-0.923721,1.6816][-0.094423,0.887039,0.451935][0.959034,0.0214731,0][0.258957,-0.897596,1.67801][-0.204181,0.872949,0.443024][0.959034,0.0275921,0][0.463432,-0.822648,1.67729][-0.23315,0.869877,0.434689][0.959034,0.0333266,0][0.579603,-0.535445,1.0335][-0.132226,0.950108,0.28251][0.941779,0.0370116,0][0.311506,-0.602142,1.0361][-0.171694,0.929658,0.325971][0.941779,0.0294943,0][0.311506,-0.602142,1.0361][-0.171694,0.929658,0.325971][0.941779,0.0294943,0][0.258957,-0.897596,1.67801][-0.204181,0.872949,0.443024][0.959034,0.0275921,0][0.463432,-0.822648,1.67729][-0.23315,0.869877,0.434689][0.959034,0.0333266,0][0.641405,-0.788284,1.67504][-0.0936223,0.889343,0.447552][0.959034,0.0383163,0][0.812956,-0.519362,1.02904][0.0131216,0.963269,0.268219][0.941779,0.0435524,0][0.579603,-0.535445,1.0335][-0.132226,0.950108,0.28251][0.941779,0.0370116,0][0.579603,-0.535445,1.0335][-0.132226,0.950108,0.28251][0.941779,0.0370116,0][0.463432,-0.822648,1.67729][-0.23315,0.869877,0.434689][0.959034,0.0333266,0][0.641405,-0.788284,1.67504][-0.0936223,0.889343,0.447552][0.959034,0.0383163,0][0.781667,-0.782094,1.67218][-0.0784231,0.90015,0.428463][0.959034,0.0422477,0][0.996862,-0.533704,1.02411][0.133195,0.953181,0.271486][0.941779,0.048706,0][0.812956,-0.519362,1.02904][0.0131216,0.963269,0.268219][0.941779,0.0435524,0][0.812956,-0.519362,1.02904][0.0131216,0.963269,0.268219][0.941779,0.0435524,0][0.641405,-0.788284,1.67504][-0.0936223,0.889343,0.447552][0.959034,0.0383163,0][0.781667,-0.782094,1.67218][-0.0784231,0.90015,0.428463][0.959034,0.0422477,0][0.87534,-0.767887,1.6708][-0.11459,0.90872,0.401368][0.959034,0.0448737,0][1.11973,-0.558427,1.02002][0.283101,0.913621,0.291806][0.941779,0.0521484,0][0.996862,-0.533704,1.02411][0.133195,0.953181,0.271486][0.941779,0.048706,0][0.996862,-0.533704,1.02411][0.133195,0.953181,0.271486][0.941779,0.048706,0][0.781667,-0.782094,1.67218][-0.0784231,0.90015,0.428463][0.959034,0.0422477,0][0.87534,-0.767887,1.6708][-0.11459,0.90872,0.401368][0.959034,0.0448737,0][0.916565,-0.762167,1.67016][0.693452,0.455357,0.558368][0.959034,0.0460294,0][1.17383,-0.580711,1.01763][0.92481,0.208029,0.318511][0.941779,0.0536634,0][1.11973,-0.558427,1.02002][0.283101,0.913621,0.291806][0.941779,0.0521484,0][1.11973,-0.558427,1.02002][0.283101,0.913621,0.291806][0.941779,0.0521484,0][0.87534,-0.767887,1.6708][-0.11459,0.90872,0.401368][0.959034,0.0448737,0][0.916565,-0.762167,1.67016][0.693452,0.455357,0.558368][0.959034,0.0460294,0][0.902791,-0.786692,1.66919][0.73428,-0.66663,0.128206][0.868289,0.0515577,0][1.15575,-0.60211,1.01692][0.523123,-0.851848,-0.0264034][0.890203,0.0539381,0][1.17383,-0.580711,1.01763][0.92481,0.208029,0.318511][0.890283,0.0546186,0][1.17383,-0.580711,1.01763][0.92481,0.208029,0.318511][0.890283,0.0546186,0][0.916565,-0.762167,1.67016][0.693452,0.455357,0.558368][0.86838,0.0523382,0][0.902791,-0.786692,1.66919][0.73428,-0.66663,0.128206][0.868289,0.0515577,0][0.834867,-0.831335,1.6684][0.429504,-0.887455,-0.16718][0.876918,0.0437048,0][1.06664,-0.618777,1.01807][0.131018,-0.971225,-0.19889][0.889212,0.0522899,0][1.15575,-0.60211,1.01692][0.523123,-0.851848,-0.0264034][0.888698,0.0540803,0][1.15575,-0.60211,1.01692][0.523123,-0.851848,-0.0264034][0.888698,0.0540803,0][0.902791,-0.786692,1.66919][0.73428,-0.66663,0.128206][0.876525,0.0450705,0][0.834867,-0.831335,1.6684][0.429504,-0.887455,-0.16718][0.876918,0.0437048,0][0.717017,-0.868058,1.66915][0.234479,-0.915408,-0.32718][0.877599,0.0413366,0][0.912084,-0.62975,1.02101][0.0969436,-0.970899,-0.218992][0.890105,0.0491856,0][1.06664,-0.618777,1.01807][0.131018,-0.971225,-0.19889][0.889212,0.0522899,0][1.06664,-0.618777,1.01807][0.131018,-0.971225,-0.19889][0.889212,0.0522899,0][0.834867,-0.831335,1.6684][0.429504,-0.887455,-0.16718][0.876918,0.0437048,0][0.717017,-0.868058,1.66915][0.234479,-0.915408,-0.32718][0.877599,0.0413366,0][0.556657,-0.900599,1.67109][0.26054,-0.896785,-0.357626][0.878525,0.0381148,0][0.701844,-0.656736,1.02437][0.169622,-0.961867,-0.214571][0.891319,0.0449622,0][0.912084,-0.62975,1.02101][0.0969436,-0.970899,-0.218992][0.890105,0.0491856,0][0.912084,-0.62975,1.02101][0.0969436,-0.970899,-0.218992][0.890105,0.0491856,0][0.717017,-0.868058,1.66915][0.234479,-0.915408,-0.32718][0.877599,0.0413366,0][0.556657,-0.900599,1.67109][0.26054,-0.896785,-0.357626][0.878525,0.0381148,0][0.363953,-0.978789,1.67137][0.300038,-0.886922,-0.351208][0.879638,0.0342419,0][0.449151,-0.713005,1.02716][0.230602,-0.943349,-0.238568][0.892779,0.0398852,0][0.701844,-0.656736,1.02437][0.169622,-0.961867,-0.214571][0.891319,0.0449622,0][0.701844,-0.656736,1.02437][0.169622,-0.961867,-0.214571][0.891319,0.0449622,0][0.556657,-0.900599,1.67109][0.26054,-0.896785,-0.357626][0.878525,0.0381148,0][0.363953,-0.978789,1.67137][0.300038,-0.886922,-0.351208][0.879638,0.0342419,0][0.150919,-1.04281,1.67286][0.132787,-0.916331,-0.377764][0.880869,0.0299611,0][0.169885,-0.79441,1.02925][0.120052,-0.950248,-0.287431][0.894392,0.0342737,0][0.449151,-0.713005,1.02716][0.230602,-0.943349,-0.238568][0.892779,0.0398852,0][0.449151,-0.713005,1.02716][0.230602,-0.943349,-0.238568][0.892779,0.0398852,0][0.363953,-0.978789,1.67137][0.300038,-0.886922,-0.351208][0.879638,0.0342419,0][0.150919,-1.04281,1.67286][0.132787,-0.916331,-0.377764][0.880869,0.0299611,0][-0.0691429,-1.04346,1.67783][-0.138744,-0.9144,-0.380293][0.88214,0.0255414,0][-0.118588,-0.795263,1.03576][-0.14164,-0.944293,-0.297068][0.896058,0.0284801,0][0.169885,-0.79441,1.02925][0.120052,-0.950248,-0.287431][0.894392,0.0342737,0][0.169885,-0.79441,1.02925][0.120052,-0.950248,-0.287431][0.894392,0.0342737,0][0.150919,-1.04281,1.67286][0.132787,-0.916331,-0.377764][0.880869,0.0299611,0][-0.0691429,-1.04346,1.67783][-0.138744,-0.9144,-0.380293][0.88214,0.0255414,0][-0.282403,-0.980701,1.68596][-0.320188,-0.880697,-0.349073][0.883371,0.0212606,0][-0.398141,-0.715512,1.04628][-0.23497,-0.940368,-0.245963][0.897671,0.0228685,0][-0.118588,-0.795263,1.03576][-0.14164,-0.944293,-0.297068][0.896058,0.0284801,0][-0.118588,-0.795263,1.03576][-0.14164,-0.944293,-0.297068][0.896058,0.0284801,0][-0.0691429,-1.04346,1.67783][-0.138744,-0.9144,-0.380293][0.88214,0.0255414,0][-0.282403,-0.980701,1.68596][-0.320188,-0.880697,-0.349073][0.883371,0.0212606,0][-0.475382,-0.903653,1.69438][-0.271006,-0.897976,-0.346692][0.884484,0.0173877,0][-0.651031,-0.66074,1.05489][-0.161297,-0.964038,-0.211218][0.899131,0.0177915,0][-0.398141,-0.715512,1.04628][-0.23497,-0.940368,-0.245963][0.897671,0.0228685,0][-0.398141,-0.715512,1.04628][-0.23497,-0.940368,-0.245963][0.897671,0.0228685,0][-0.282403,-0.980701,1.68596][-0.320188,-0.880697,-0.349073][0.883371,0.0212606,0][-0.475382,-0.903653,1.69438][-0.271006,-0.897976,-0.346692][0.884484,0.0173877,0][-0.635856,-0.872062,1.69968][-0.243777,-0.91647,-0.317261][0.88541,0.0141659,0][-0.861364,-0.634998,1.06102][-0.100796,-0.974899,-0.198526][0.900345,0.0135682,0][-0.651031,-0.66074,1.05489][-0.161297,-0.964038,-0.211218][0.899131,0.0177915,0][-0.651031,-0.66074,1.05489][-0.161297,-0.964038,-0.211218][0.899131,0.0177915,0][-0.475382,-0.903653,1.69438][-0.271006,-0.897976,-0.346692][0.884484,0.0173877,0][-0.635856,-0.872062,1.69968][-0.243777,-0.91647,-0.317261][0.88541,0.0141659,0][-0.753836,-0.836036,1.70424][-0.426688,-0.88662,-0.178446][0.886091,0.0117978,0][-1.01595,-0.62494,1.06506][-0.136889,-0.976756,-0.164953][0.901237,0.0104638,0][-0.861364,-0.634998,1.06102][-0.100796,-0.974899,-0.198526][0.900345,0.0135682,0][-0.861364,-0.634998,1.06102][-0.100796,-0.974899,-0.198526][0.900345,0.0135682,0][-0.635856,-0.872062,1.69968][-0.243777,-0.91647,-0.317261][0.88541,0.0141659,0][-0.753836,-0.836036,1.70424][-0.426688,-0.88662,-0.178446][0.886091,0.0117978,0][-0.821917,-0.791795,1.70811][-0.723761,-0.676154,0.137793][0.886484,0.010432,0][-1.10513,-0.608801,1.06793][-0.514745,-0.857297,0.00897735][0.901752,0.00867348,0][-1.01595,-0.62494,1.06506][-0.136889,-0.976756,-0.164953][0.901237,0.0104638,0][-1.01595,-0.62494,1.06506][-0.136889,-0.976756,-0.164953][0.901237,0.0104638,0][-0.753836,-0.836036,1.70424][-0.426688,-0.88662,-0.178446][0.886091,0.0117978,0][-0.821917,-0.791795,1.70811][-0.723761,-0.676154,0.137793][0.886484,0.010432,0][-0.835778,-0.767353,1.7097][-0.679982,0.470092,0.562706][0.968275,0.0308639,0][-1.12328,-0.587509,1.06946][-0.906044,0.201275,0.372255][0.946368,0.0331047,0][-1.10513,-0.608801,1.06793][-0.514745,-0.857297,0.00897735][0.946449,0.0324244,0][-1.10513,-0.608801,1.06793][-0.514745,-0.857297,0.00897735][0.946449,0.0324244,0][-0.821917,-0.791795,1.70811][-0.723761,-0.676154,0.137793][0.968368,0.0300836,0][-0.835778,-0.767353,1.7097][-0.679982,0.470092,0.562706][0.968275,0.0308639,0][-0.794533,-0.772828,1.70848][0.132612,0.921957,0.363881][0.95892,0.0303292,0][-1.06926,-0.564904,1.06941][-0.272992,0.90581,0.324012][0.942764,0.0224851,0][-1.12328,-0.587509,1.06946][-0.906044,0.201275,0.372255][0.942764,0.0208515,0][-1.12328,-0.587509,1.06946][-0.906044,0.201275,0.372255][0.942764,0.0208515,0][-0.835778,-0.767353,1.7097][-0.679982,0.470092,0.562706][0.95892,0.0290831,0][-0.794533,-0.772828,1.70848][0.132612,0.921957,0.363881][0.95892,0.0303292,0][-0.70081,-0.786481,1.70563][0.0939849,0.907274,0.409903][0.95892,0.0331609,0][-0.946482,-0.539455,1.06796][-0.128058,0.945577,0.299141][0.942764,0.026197,0][-1.06926,-0.564904,1.06941][-0.272992,0.90581,0.324012][0.942764,0.0224851,0][-1.06926,-0.564904,1.06941][-0.272992,0.90581,0.324012][0.942764,0.0224851,0][-0.794533,-0.772828,1.70848][0.132612,0.921957,0.363881][0.95892,0.0303292,0][-0.70081,-0.786481,1.70563][0.0939849,0.907274,0.409903][0.95892,0.0331609,0][-0.560528,-0.791841,1.70216][0.109098,0.889351,0.444019][0.95892,0.0374,0][-0.762629,-0.524025,1.06459][0.00045877,0.961821,0.273678][0.942764,0.031754,0][-0.946482,-0.539455,1.06796][-0.128058,0.945577,0.299141][0.942764,0.026197,0][-0.946482,-0.539455,1.06796][-0.128058,0.945577,0.299141][0.942764,0.026197,0][-0.70081,-0.786481,1.70563][0.0939849,0.907274,0.409903][0.95892,0.0331609,0][-0.560528,-0.791841,1.70216][0.109098,0.889351,0.444019][0.95892,0.0374,0][-0.382434,-0.82515,1.69637][0.241667,0.876373,0.416614][0.95892,0.0427804,0][-0.529223,-0.538726,1.05852][0.150399,0.953354,0.261719][0.942764,0.0388069,0][-0.762629,-0.524025,1.06459][0.00045877,0.961821,0.273678][0.942764,0.031754,0][-0.762629,-0.524025,1.06459][0.00045877,0.961821,0.273678][0.942764,0.031754,0][-0.560528,-0.791841,1.70216][0.109098,0.889351,0.444019][0.95892,0.0374,0][-0.382434,-0.82515,1.69637][0.241667,0.876373,0.416614][0.95892,0.0427804,0][-0.177695,-0.898888,1.68786][0.238817,0.882452,0.405272][0.95892,0.0489638,0][-0.26089,-0.603836,1.04901][0.178569,0.944043,0.277302][0.942764,0.0469126,0][-0.529223,-0.538726,1.05852][0.150399,0.953354,0.261719][0.942764,0.0388069,0][-0.529223,-0.538726,1.05852][0.150399,0.953354,0.261719][0.942764,0.0388069,0][-0.382434,-0.82515,1.69637][0.241667,0.876373,0.416614][0.95892,0.0427804,0][-0.177695,-0.898888,1.68786][0.238817,0.882452,0.405272][0.95892,0.0489638,0][-0.26089,-0.603836,1.04901][0.178569,0.944043,0.277302][0.942764,0.0469126,0][-0.177695,-0.898888,1.68786][0.238817,0.882452,0.405272][0.95892,0.0489638,0][0.0406762,-0.923721,1.6816][0.114786,0.907458,0.404158][0.95892,0.0555618,0][-0.26089,-0.603836,1.04901][0.128824,0.908335,0.397909][0.985049,0.0605188,0][0.0406762,-0.923721,1.6816][0.128824,0.908335,0.397909][0.959773,0.0606297,0][0.025375,-0.64074,1.04057][0.128824,0.908335,0.397909][0.981058,0.0521277,0][0.187423,-1.14532,2.09312][-0.126977,0.830336,0.542604][0.970248,0.0253054,0][0.258957,-0.897596,1.67801][-0.204181,0.872949,0.443024][0.959034,0.0275921,0][0.0406762,-0.923721,1.6816][-0.094423,0.887039,0.451935][0.959034,0.0214731,0][0.0406762,-0.923721,1.6816][-0.094423,0.887039,0.451935][0.959034,0.0214731,0][0.0507035,-1.1544,2.09576][-0.0434396,0.819958,0.570772][0.970248,0.0214731,0][0.187423,-1.14532,2.09312][-0.126977,0.830336,0.542604][0.970248,0.0253054,0][0.315516,-1.11589,2.09175][-0.260647,0.844029,0.468698][0.970248,0.0288968,0][0.463432,-0.822648,1.67729][-0.23315,0.869877,0.434689][0.959034,0.0333266,0][0.258957,-0.897596,1.67801][-0.204181,0.872949,0.443024][0.959034,0.0275921,0][0.258957,-0.897596,1.67801][-0.204181,0.872949,0.443024][0.959034,0.0275921,0][0.187423,-1.14532,2.09312][-0.126977,0.830336,0.542604][0.970248,0.0253054,0][0.315516,-1.11589,2.09175][-0.260647,0.844029,0.468698][0.970248,0.0288968,0][0.426946,-1.07639,2.09129][-0.252696,0.829289,0.498422][0.970248,0.0320218,0][0.641405,-0.788284,1.67504][-0.0936223,0.889343,0.447552][0.959034,0.0383163,0][0.463432,-0.822648,1.67729][-0.23315,0.869877,0.434689][0.959034,0.0333266,0][0.463432,-0.822648,1.67729][-0.23315,0.869877,0.434689][0.959034,0.0333266,0][0.315516,-1.11589,2.09175][-0.260647,0.844029,0.468698][0.970248,0.0288968,0][0.426946,-1.07639,2.09129][-0.252696,0.829289,0.498422][0.970248,0.0320218,0][0.514752,-1.05079,2.09064][-0.132003,0.775631,0.617229][0.970248,0.034484,0][0.781667,-0.782094,1.67218][-0.0784231,0.90015,0.428463][0.959034,0.0422477,0][0.641405,-0.788284,1.67504][-0.0936223,0.889343,0.447552][0.959034,0.0383163,0][0.641405,-0.788284,1.67504][-0.0936223,0.889343,0.447552][0.959034,0.0383163,0][0.426946,-1.07639,2.09129][-0.252696,0.829289,0.498422][0.970248,0.0320218,0][0.514752,-1.05079,2.09064][-0.132003,0.775631,0.617229][0.970248,0.034484,0][0.573418,-1.04423,2.08943][0.0528313,0.662041,0.747603][0.970242,0.0361287,0][0.87534,-0.767887,1.6708][-0.11459,0.90872,0.401368][0.959034,0.0448737,0][0.781667,-0.782094,1.67218][-0.0784231,0.90015,0.428463][0.959034,0.0422477,0][0.781667,-0.782094,1.67218][-0.0784231,0.90015,0.428463][0.959034,0.0422477,0][0.514752,-1.05079,2.09064][-0.132003,0.775631,0.617229][0.970248,0.034484,0][0.573418,-1.04423,2.08943][0.0528313,0.662041,0.747603][0.970242,0.0361287,0][0.599241,-1.04969,2.08801][0.662325,0.0618393,0.74666][0.970228,0.0368525,0][0.916565,-0.762167,1.67016][0.693452,0.455357,0.558368][0.959034,0.0460294,0][0.87534,-0.767887,1.6708][-0.11459,0.90872,0.401368][0.959034,0.0448737,0][0.87534,-0.767887,1.6708][-0.11459,0.90872,0.401368][0.959034,0.0448737,0][0.573418,-1.04423,2.08943][0.0528313,0.662041,0.747603][0.970242,0.0361287,0][0.599241,-1.04969,2.08801][0.662325,0.0618393,0.74666][0.970228,0.0368525,0][0.590613,-1.06147,2.0878][0.565726,-0.744546,0.35441][0.853488,0.0450864,0][0.902791,-0.786692,1.66919][0.73428,-0.66663,0.128206][0.868289,0.0515577,0][0.916565,-0.762167,1.67016][0.693452,0.455357,0.558368][0.86838,0.0523382,0][0.916565,-0.762167,1.67016][0.693452,0.455357,0.558368][0.86838,0.0523382,0][0.599241,-1.04969,2.08801][0.662325,0.0618393,0.74666][0.853538,0.0454602,0][0.590613,-1.06147,2.0878][0.565726,-0.744546,0.35441][0.853488,0.0450864,0][0.548069,-1.08049,2.08832][0.407711,-0.906942,-0.105964][0.869715,0.0353865,0][0.834867,-0.831335,1.6684][0.429504,-0.887455,-0.16718][0.876918,0.0437048,0][0.902791,-0.786692,1.66919][0.73428,-0.66663,0.128206][0.876525,0.0450705,0][0.902791,-0.786692,1.66919][0.73428,-0.66663,0.128206][0.876525,0.0450705,0][0.590613,-1.06147,2.0878][0.565726,-0.744546,0.35441][0.86948,0.0362449,0][0.548069,-1.08049,2.08832][0.407711,-0.906942,-0.105964][0.869715,0.0353865,0][0.474279,-1.11341,2.08828][0.412332,-0.904381,-0.109895][0.870141,0.0339034,0][0.717017,-0.868058,1.66915][0.234479,-0.915408,-0.32718][0.877599,0.0413366,0][0.834867,-0.831335,1.6684][0.429504,-0.887455,-0.16718][0.876918,0.0437048,0][0.834867,-0.831335,1.6684][0.429504,-0.887455,-0.16718][0.876918,0.0437048,0][0.548069,-1.08049,2.08832][0.407711,-0.906942,-0.105964][0.869715,0.0353865,0][0.474279,-1.11341,2.08828][0.412332,-0.904381,-0.109895][0.870141,0.0339034,0][0.373895,-1.16149,2.08804][0.395126,-0.908207,-0.13797][0.870721,0.0318856,0][0.556657,-0.900599,1.67109][0.26054,-0.896785,-0.357626][0.878525,0.0381148,0][0.717017,-0.868058,1.66915][0.234479,-0.915408,-0.32718][0.877599,0.0413366,0][0.717017,-0.868058,1.66915][0.234479,-0.915408,-0.32718][0.877599,0.0413366,0][0.474279,-1.11341,2.08828][0.412332,-0.904381,-0.109895][0.870141,0.0339034,0][0.373895,-1.16149,2.08804][0.395126,-0.908207,-0.13797][0.870721,0.0318856,0][0.253205,-1.20945,2.08827][0.279732,-0.925775,-0.254341][0.871419,0.02946,0][0.363953,-0.978789,1.67137][0.300038,-0.886922,-0.351208][0.879638,0.0342419,0][0.556657,-0.900599,1.67109][0.26054,-0.896785,-0.357626][0.878525,0.0381148,0][0.556657,-0.900599,1.67109][0.26054,-0.896785,-0.357626][0.878525,0.0381148,0][0.373895,-1.16149,2.08804][0.395126,-0.908207,-0.13797][0.870721,0.0318856,0][0.253205,-1.20945,2.08827][0.279732,-0.925775,-0.254341][0.871419,0.02946,0][0.119753,-1.23241,2.0901][0.08911,-0.928213,-0.36122][0.87219,0.026779,0][0.150919,-1.04281,1.67286][0.132787,-0.916331,-0.377764][0.880869,0.0299611,0][0.363953,-0.978789,1.67137][0.300038,-0.886922,-0.351208][0.879638,0.0342419,0][0.363953,-0.978789,1.67137][0.300038,-0.886922,-0.351208][0.879638,0.0342419,0][0.253205,-1.20945,2.08827][0.279732,-0.925775,-0.254341][0.871419,0.02946,0][0.119753,-1.23241,2.0901][0.08911,-0.928213,-0.36122][0.87219,0.026779,0][-0.0180683,-1.23282,2.09321][-0.092576,-0.932244,-0.349787][0.872985,0.024011,0][-0.0691429,-1.04346,1.67783][-0.138744,-0.9144,-0.380293][0.88214,0.0255414,0][0.150919,-1.04281,1.67286][0.132787,-0.916331,-0.377764][0.880869,0.0299611,0][0.150919,-1.04281,1.67286][0.132787,-0.916331,-0.377764][0.880869,0.0299611,0][0.119753,-1.23241,2.0901][0.08911,-0.928213,-0.36122][0.87219,0.026779,0][-0.0180683,-1.23282,2.09321][-0.092576,-0.932244,-0.349787][0.872985,0.024011,0][-0.151601,-1.21065,2.09741][-0.293192,-0.928983,-0.225895][0.873756,0.02133,0][-0.282403,-0.980701,1.68596][-0.320188,-0.880697,-0.349073][0.883371,0.0212606,0][-0.0691429,-1.04346,1.67783][-0.138744,-0.9144,-0.380293][0.88214,0.0255414,0][-0.0691429,-1.04346,1.67783][-0.138744,-0.9144,-0.380293][0.88214,0.0255414,0][-0.0180683,-1.23282,2.09321][-0.092576,-0.932244,-0.349787][0.872985,0.024011,0][-0.151601,-1.21065,2.09741][-0.293192,-0.928983,-0.225895][0.873756,0.02133,0][-0.272461,-1.1634,2.10263][-0.403896,-0.906301,-0.124447][0.874454,0.0189044,0][-0.475382,-0.903653,1.69438][-0.271006,-0.897976,-0.346692][0.884484,0.0173877,0][-0.282403,-0.980701,1.68596][-0.320188,-0.880697,-0.349073][0.883371,0.0212606,0][-0.282403,-0.980701,1.68596][-0.320188,-0.880697,-0.349073][0.883371,0.0212606,0][-0.151601,-1.21065,2.09741][-0.293192,-0.928983,-0.225895][0.873756,0.02133,0][-0.272461,-1.1634,2.10263][-0.403896,-0.906301,-0.124447][0.874454,0.0189044,0][-0.373013,-1.11591,2.1074][-0.403933,-0.905791,-0.127988][0.875034,0.0168866,0][-0.635856,-0.872062,1.69968][-0.243777,-0.91647,-0.317261][0.88541,0.0141659,0][-0.475382,-0.903653,1.69438][-0.271006,-0.897976,-0.346692][0.884484,0.0173877,0][-0.475382,-0.903653,1.69438][-0.271006,-0.897976,-0.346692][0.884484,0.0173877,0][-0.272461,-1.1634,2.10263][-0.403896,-0.906301,-0.124447][0.874454,0.0189044,0][-0.373013,-1.11591,2.1074][-0.403933,-0.905791,-0.127988][0.875034,0.0168866,0][-0.446921,-1.08343,2.11078][-0.401126,-0.91056,-0.0998922][0.87546,0.0154034,0][-0.753836,-0.836036,1.70424][-0.426688,-0.88662,-0.178446][0.886091,0.0117978,0][-0.635856,-0.872062,1.69968][-0.243777,-0.91647,-0.317261][0.88541,0.0141659,0][-0.635856,-0.872062,1.69968][-0.243777,-0.91647,-0.317261][0.88541,0.0141659,0][-0.373013,-1.11591,2.1074][-0.403933,-0.905791,-0.127988][0.875034,0.0168866,0][-0.446921,-1.08343,2.11078][-0.401126,-0.91056,-0.0998922][0.87546,0.0154034,0][-0.489556,-1.06467,2.11217][-0.54267,-0.742659,0.392387][0.875717,0.0145511,0][-0.821917,-0.791795,1.70811][-0.723761,-0.676154,0.137793][0.886484,0.010432,0][-0.753836,-0.836036,1.70424][-0.426688,-0.88662,-0.178446][0.886091,0.0117978,0][-0.753836,-0.836036,1.70424][-0.426688,-0.88662,-0.178446][0.886091,0.0117978,0][-0.446921,-1.08343,2.11078][-0.401126,-0.91056,-0.0998922][0.87546,0.0154034,0][-0.489556,-1.06467,2.11217][-0.54267,-0.742659,0.392387][0.875717,0.0145511,0][-0.498235,-1.05293,2.11277][-0.622303,0.0489366,0.781245][0.98313,0.0240127,0][-0.835778,-0.767353,1.7097][-0.679982,0.470092,0.562706][0.968275,0.0308639,0][-0.821917,-0.791795,1.70811][-0.723761,-0.676154,0.137793][0.968368,0.0300836,0][-0.821917,-0.791795,1.70811][-0.723761,-0.676154,0.137793][0.968368,0.0300836,0][-0.489556,-1.06467,2.11217][-0.54267,-0.742659,0.392387][0.983181,0.023639,0][-0.498235,-1.05293,2.11277][-0.622303,0.0489366,0.781245][0.98313,0.0240127,0][-0.472408,-1.04733,2.11303][-0.020725,0.658078,0.752665][0.969414,0.0397589,0][-0.794533,-0.772828,1.70848][0.132612,0.921957,0.363881][0.95892,0.0303292,0][-0.835778,-0.767353,1.7097][-0.679982,0.470092,0.562706][0.95892,0.0290831,0][-0.835778,-0.767353,1.7097][-0.679982,0.470092,0.562706][0.95892,0.0290831,0][-0.498235,-1.05293,2.11277][-0.622303,0.0489366,0.781245][0.9694,0.0389784,0][-0.472408,-1.04733,2.11303][-0.020725,0.658078,0.752665][0.969414,0.0397589,0][-0.413709,-1.05353,2.11159][0.167075,0.790202,0.589633][0.969419,0.0415323,0][-0.70081,-0.786481,1.70563][0.0939849,0.907274,0.409903][0.95892,0.0331609,0][-0.794533,-0.772828,1.70848][0.132612,0.921957,0.363881][0.95892,0.0303292,0][-0.794533,-0.772828,1.70848][0.132612,0.921957,0.363881][0.95892,0.0303292,0][-0.472408,-1.04733,2.11303][-0.020725,0.658078,0.752665][0.969414,0.0397589,0][-0.413709,-1.05353,2.11159][0.167075,0.790202,0.589633][0.969419,0.0415323,0][-0.325813,-1.07861,2.10828][0.273234,0.842001,0.465164][0.969419,0.0441873,0][-0.560528,-0.791841,1.70216][0.109098,0.889351,0.444019][0.95892,0.0374,0][-0.70081,-0.786481,1.70563][0.0939849,0.907274,0.409903][0.95892,0.0331609,0][-0.70081,-0.786481,1.70563][0.0939849,0.907274,0.409903][0.95892,0.0331609,0][-0.413709,-1.05353,2.11159][0.167075,0.790202,0.589633][0.969419,0.0415323,0][-0.325813,-1.07861,2.10828][0.273234,0.842001,0.465164][0.969419,0.0441873,0][-0.214243,-1.11746,2.10371][0.263121,0.843798,0.467731][0.969419,0.0475569,0][-0.382434,-0.82515,1.69637][0.241667,0.876373,0.416614][0.95892,0.0427804,0][-0.560528,-0.791841,1.70216][0.109098,0.889351,0.444019][0.95892,0.0374,0][-0.560528,-0.791841,1.70216][0.109098,0.889351,0.444019][0.95892,0.0374,0][-0.325813,-1.07861,2.10828][0.273234,0.842001,0.465164][0.969419,0.0441873,0][-0.214243,-1.11746,2.10371][0.263121,0.843798,0.467731][0.969419,0.0475569,0][-0.0860473,-1.14613,2.09929][0.164288,0.833885,0.526921][0.969419,0.0514295,0][-0.177695,-0.898888,1.68786][0.238817,0.882452,0.405272][0.95892,0.0489638,0][-0.382434,-0.82515,1.69637][0.241667,0.876373,0.416614][0.95892,0.0427804,0][-0.382434,-0.82515,1.69637][0.241667,0.876373,0.416614][0.95892,0.0427804,0][-0.214243,-1.11746,2.10371][0.263121,0.843798,0.467731][0.969419,0.0475569,0][-0.0860473,-1.14613,2.09929][0.164288,0.833885,0.526921][0.969419,0.0514295,0][-0.177695,-0.898888,1.68786][0.238817,0.882452,0.405272][0.95892,0.0489638,0][-0.0860473,-1.14613,2.09929][0.164288,0.833885,0.526921][0.969419,0.0514295,0][0.0507035,-1.1544,2.09576][0.0651064,0.861658,0.503296][0.969419,0.0555618,0][-0.177695,-0.898888,1.68786][0.112653,0.869225,0.481412][0.944336,0.0575282,0][0.0507035,-1.1544,2.09576][0.112653,0.869225,0.481412][0.958341,0.0584523,0][0.0406762,-0.923721,1.6816][0.112653,0.869225,0.481412][0.946665,0.0631684,0][0.0547884,-1.29226,2.25872][-0.0381749,0.762435,0.645938][0.974725,0.0214731,0][0.187423,-1.14532,2.09312][-0.126977,0.830336,0.542604][0.970248,0.0253054,0][0.0507035,-1.1544,2.09576][-0.0434396,0.819958,0.570772][0.970248,0.0214731,0][0.0547884,-1.29226,2.25872][-0.178296,0.802557,0.569309][0.974725,0.0214731,0][0.315516,-1.11589,2.09175][-0.260647,0.844029,0.468698][0.970248,0.0288968,0][0.187423,-1.14532,2.09312][-0.126977,0.830336,0.542604][0.970248,0.0253054,0][0.0547884,-1.29226,2.25872][-0.299985,0.851198,0.430663][0.974725,0.0214731,0][0.426946,-1.07639,2.09129][-0.252696,0.829289,0.498422][0.970248,0.0320218,0][0.315516,-1.11589,2.09175][-0.260647,0.844029,0.468698][0.970248,0.0288968,0][0.0547884,-1.29226,2.25872][-0.23351,0.814496,0.531102][0.974725,0.0214731,0][0.514752,-1.05079,2.09064][-0.132003,0.775631,0.617229][0.970248,0.034484,0][0.426946,-1.07639,2.09129][-0.252696,0.829289,0.498422][0.970248,0.0320218,0][0.0547884,-1.29226,2.25872][-0.0556585,0.639667,0.766634][0.983181,0.0369133,0][0.573418,-1.04423,2.08943][0.0528313,0.662041,0.747603][0.963534,0.0377066,0][0.514752,-1.05079,2.09064][-0.132003,0.775631,0.617229][0.965266,0.0368583,0][0.0547884,-1.29226,2.25872][0.127431,0.363448,0.922858][0.941561,0.0368972,0][0.599241,-1.04969,2.08801][0.662325,0.0618393,0.74666][0.961114,0.037232,0][0.573418,-1.04423,2.08943][0.0528313,0.662041,0.747603][0.960396,0.0377066,0][0.0547884,-1.29226,2.25872][0.408676,-0.314247,0.856874][0.858999,0.0113573,0][0.590613,-1.06147,2.0878][0.565726,-0.744546,0.35441][0.873991,0.0114203,0][0.599241,-1.04969,2.08801][0.662325,0.0618393,0.74666][0.874287,0.0116723,0][0.0547884,-1.29226,2.25872][0.408022,-0.911704,0.0481049][0.869027,0.0244542,0][0.548069,-1.08049,2.08832][0.407711,-0.906942,-0.105964][0.869715,0.0353865,0][0.590613,-1.06147,2.0878][0.565726,-0.744546,0.35441][0.86948,0.0362449,0][0.0547884,-1.29226,2.25872][0.407007,-0.912347,0.0443668][0.869027,0.0244542,0][0.474279,-1.11341,2.08828][0.412332,-0.904381,-0.109895][0.870141,0.0339034,0][0.548069,-1.08049,2.08832][0.407711,-0.906942,-0.105964][0.869715,0.0353865,0][0.0547884,-1.29226,2.25872][0.428872,-0.895968,0.115367][0.869027,0.0244542,0][0.373895,-1.16149,2.08804][0.395126,-0.908207,-0.13797][0.870721,0.0318856,0][0.474279,-1.11341,2.08828][0.412332,-0.904381,-0.109895][0.870141,0.0339034,0][0.0547884,-1.29226,2.25872][0.369211,-0.929096,-0.0215581][0.869027,0.0244542,0][0.253205,-1.20945,2.08827][0.279732,-0.925775,-0.254341][0.871419,0.02946,0][0.373895,-1.16149,2.08804][0.395126,-0.908207,-0.13797][0.870721,0.0318856,0][0.0547884,-1.29226,2.25872][0.159301,-0.948112,-0.275149][0.869027,0.0244542,0][0.119753,-1.23241,2.0901][0.08911,-0.928213,-0.36122][0.87219,0.026779,0][0.253205,-1.20945,2.08827][0.279732,-0.925775,-0.254341][0.871419,0.02946,0][0.0547884,-1.29226,2.25872][-0.00479496,-0.941803,-0.336132][0.869027,0.0244542,0][-0.0180683,-1.23282,2.09321][-0.092576,-0.932244,-0.349787][0.872985,0.024011,0][0.119753,-1.23241,2.0901][0.08911,-0.928213,-0.36122][0.87219,0.026779,0][0.0547884,-1.29226,2.25872][-0.165941,-0.949075,-0.267807][0.869027,0.0244542,0][-0.151601,-1.21065,2.09741][-0.293192,-0.928983,-0.225895][0.873756,0.02133,0][-0.0180683,-1.23282,2.09321][-0.092576,-0.932244,-0.349787][0.872985,0.024011,0][0.0547884,-1.29226,2.25872][-0.364306,-0.931266,-0.00500729][0.869027,0.0244542,0][-0.272461,-1.1634,2.10263][-0.403896,-0.906301,-0.124447][0.874454,0.0189044,0][-0.151601,-1.21065,2.09741][-0.293192,-0.928983,-0.225895][0.873756,0.02133,0][0.0547884,-1.29226,2.25872][-0.417924,-0.898475,0.134472][0.869027,0.0244542,0][-0.373013,-1.11591,2.1074][-0.403933,-0.905791,-0.127988][0.875034,0.0168866,0][-0.272461,-1.1634,2.10263][-0.403896,-0.906301,-0.124447][0.874454,0.0189044,0][0.0547884,-1.29226,2.25872][-0.399187,-0.914733,0.0625548][0.869027,0.0244542,0][-0.446921,-1.08343,2.11078][-0.401126,-0.91056,-0.0998922][0.87546,0.0154034,0][-0.373013,-1.11591,2.1074][-0.403933,-0.905791,-0.127988][0.875034,0.0168866,0][0.0547884,-1.29226,2.25872][-0.400029,-0.914101,0.0663023][0.869027,0.0244542,0][-0.489556,-1.06467,2.11217][-0.54267,-0.742659,0.392387][0.875717,0.0145511,0][-0.446921,-1.08343,2.11078][-0.401126,-0.91056,-0.0998922][0.87546,0.0154034,0][0.0547884,-1.29226,2.25872][-0.36773,-0.31649,0.874419][0.858999,0.0139008,0][-0.498235,-1.05293,2.11277][-0.622303,0.0489366,0.781245][0.873694,0.0142912,0][-0.489556,-1.06467,2.11217][-0.54267,-0.742659,0.392387][0.87338,0.0145084,0][0.0547884,-1.29226,2.25872][-0.0878403,0.362784,0.927724][0.926529,0.0122304,0][-0.472408,-1.04733,2.11303][-0.020725,0.658078,0.752665][0.940699,0.0121477,0][-0.498235,-1.05293,2.11277][-0.622303,0.0489366,0.781245][0.941224,0.0126209,0][0.0547884,-1.29226,2.25872][0.0863919,0.640083,0.763433][0.898208,0.0128797,0][-0.413709,-1.05353,2.11159][0.167075,0.790202,0.589633][0.916109,0.0121712,0][-0.472408,-1.04733,2.11303][-0.020725,0.658078,0.752665][0.917871,0.0129557,0][0.0547884,-1.29226,2.25872][0.252404,0.815933,0.52014][0.973611,0.0555618,0][-0.325813,-1.07861,2.10828][0.273234,0.842001,0.465164][0.969419,0.0441873,0][-0.413709,-1.05353,2.11159][0.167075,0.790202,0.589633][0.969419,0.0415323,0][0.0547884,-1.29226,2.25872][0.314064,0.853015,0.416808][0.973611,0.0555618,0][-0.214243,-1.11746,2.10371][0.263121,0.843798,0.467731][0.969419,0.0475569,0][-0.325813,-1.07861,2.10828][0.273234,0.842001,0.465164][0.969419,0.0441873,0][0.0547884,-1.29226,2.25872][0.199041,0.803673,0.560795][0.973611,0.0555618,0][-0.0860473,-1.14613,2.09929][0.164288,0.833885,0.526921][0.969419,0.0514295,0][-0.214243,-1.11746,2.10371][0.263121,0.843798,0.467731][0.969419,0.0475569,0][0.0547884,-1.29226,2.25872][0.0627601,0.762734,0.64366][0.980852,0.0558865,0][0.0507035,-1.1544,2.09576][0.0627601,0.762734,0.64366][0.974794,0.0593199,0][-0.0860473,-1.14613,2.09929][0.0627601,0.762734,0.64366][0.972389,0.0556093,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/GoldTeapot.mesh b/shareddata/charcustom/hats/fonts/GoldTeapot.mesh deleted file mode 100644 index d2f7015..0000000 --- a/shareddata/charcustom/hats/fonts/GoldTeapot.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -1024 -[-0.0146829,0.960631,-1.37637][0,-0.255751,0.966743][0.890296,0.662625,0][0.526164,0.960631,-1.26958][-0.369882,-0.256345,0.893014][0.839475,0.662625,0][0.518618,1.0333,-1.25185][-0.369101,0.255998,0.893437][0.840184,0.655797,0][0.518618,1.0333,-1.25185][-0.369101,0.255998,0.893437][0.840184,0.655797,0][-0.0146829,1.0333,-1.35715][0,0.255446,0.966823][0.890296,0.655797,0][-0.0146829,0.960631,-1.37637][0,-0.255751,0.966743][0.890296,0.662625,0][-0.0146829,1.0333,-1.35715][0,0.255446,0.966823][0.890296,0.655797,0][0.518618,1.0333,-1.25185][-0.369101,0.255998,0.893437][0.840184,0.655797,0][0.527371,1.05752,-1.27242][-0.0355071,0.995843,0.0838779][0.839361,0.653521,0][0.527371,1.05752,-1.27242][-0.0355071,0.995843,0.0838779][0.839361,0.653521,0][-0.0146829,1.05752,-1.37945][0,0.995754,0.0920505][0.890296,0.653521,0][-0.0146829,1.0333,-1.35715][0,0.255446,0.966823][0.890296,0.655797,0][-0.0146829,1.05752,-1.37945][0,0.995754,0.0920505][0.116751,0.86951,0][0.527371,1.05752,-1.27242][-0.0355071,0.995843,0.0838779][0.168669,0.869377,0][0.545178,1.0333,-1.31427][0.260439,0.731861,-0.629723][0.169559,0.873557,0][0.545178,1.0333,-1.31427][0.260439,0.731861,-0.629723][0.169559,0.873557,0][-0.0146829,1.0333,-1.42482][0,0.731306,-0.682049][0.115936,0.873695,0][-0.0146829,1.05752,-1.37945][0,0.995754,0.0920505][0.116751,0.86951,0][-0.0146829,1.0333,-1.42482][0,0.731306,-0.682049][0.739229,0.01,0][0.545178,1.0333,-1.31427][0.260439,0.731861,-0.629723][0.791837,0.01,0][0.564795,0.960631,-1.36038][0.332584,0.49337,-0.803725][0.79368,0.0168281,0][0.564795,0.960631,-1.36038][0.332584,0.49337,-0.803725][0.79368,0.0168281,0][-0.0146829,0.960631,-1.4748][0,0.492521,-0.870301][0.739229,0.0168281,0][-0.0146829,1.0333,-1.42482][0,0.731306,-0.682049][0.739229,0.01,0][0.526164,0.960631,-1.26958][-0.369882,-0.256345,0.893014][0.839475,0.662625,0][0.963664,0.960631,-0.976767][-0.683407,-0.256729,0.683407][0.798364,0.662625,0][0.950015,1.0333,-0.963118][-0.683531,0.256069,0.683531][0.799647,0.655797,0][0.950015,1.0333,-0.963118][-0.683531,0.256069,0.683531][0.799647,0.655797,0][0.518618,1.0333,-1.25185][-0.369101,0.255998,0.893437][0.840184,0.655797,0][0.526164,0.960631,-1.26958][-0.369882,-0.256345,0.893014][0.839475,0.662625,0][0.518618,1.0333,-1.25185][-0.369101,0.255998,0.893437][0.249592,0.193535,0][0.950015,1.0333,-0.963118][-0.683531,0.256069,0.683531][0.255228,0.145083,0][0.965847,1.05752,-0.978951][-0.0649247,0.995776,0.0649248][0.258327,0.145032,0][0.965847,1.05752,-0.978951][-0.0649247,0.995776,0.0649248][0.258327,0.145032,0][0.527371,1.05752,-1.27242][-0.0355071,0.995843,0.0838779][0.252599,0.194279,0][0.518618,1.0333,-1.25185][-0.369101,0.255998,0.893437][0.249592,0.193535,0][0.527371,1.05752,-1.27242][-0.0355071,0.995843,0.0838779][0.168669,0.869377,0][0.965847,1.05752,-0.978951][-0.0649247,0.995776,0.0649248][0.214383,0.850187,0][0.998058,1.0333,-1.01116][0.481398,0.73247,-0.481398][0.216775,0.853736,0][0.998058,1.0333,-1.01116][0.481398,0.73247,-0.481398][0.216775,0.853736,0][0.545178,1.0333,-1.31427][0.260439,0.731861,-0.629723][0.169559,0.873557,0][0.527371,1.05752,-1.27242][-0.0355071,0.995843,0.0838779][0.168669,0.869377,0][0.545178,1.0333,-1.31427][0.260439,0.731861,-0.629723][0.079689,0.814165,0][0.998058,1.0333,-1.01116][0.481398,0.73247,-0.481398][0.130554,0.820081,0][1.03355,0.960631,-1.04665][0.614804,0.493997,-0.614804][0.130511,0.828379,0][1.03355,0.960631,-1.04665][0.614804,0.493997,-0.614804][0.130511,0.828379,0][0.564795,0.960631,-1.36038][0.332584,0.49337,-0.803725][0.0778641,0.822256,0][0.545178,1.0333,-1.31427][0.260439,0.731861,-0.629723][0.079689,0.814165,0][0.963664,0.960631,-0.976767][-0.683407,-0.256729,0.683407][0.196985,0.988283,0][1.25648,0.960631,-0.539267][-0.893014,-0.256345,0.369882][0.155875,0.988283,0][1.23874,1.0333,-0.531722][-0.893437,0.255997,0.369101][0.155166,0.981454,0][1.23874,1.0333,-0.531722][-0.893437,0.255997,0.369101][0.155166,0.981454,0][0.950015,1.0333,-0.963118][-0.683531,0.256069,0.683531][0.195703,0.981454,0][0.963664,0.960631,-0.976767][-0.683407,-0.256729,0.683407][0.196985,0.988283,0][0.950015,1.0333,-0.963118][-0.683531,0.256069,0.683531][0.255228,0.145083,0][1.23874,1.0333,-0.531722][-0.893437,0.255997,0.369101][0.248029,0.098848,0][1.25932,1.05752,-0.540474][-0.083878,0.995843,0.0355071][0.25101,0.098038,0][1.25932,1.05752,-0.540474][-0.083878,0.995843,0.0355071][0.25101,0.098038,0][0.965847,1.05752,-0.978951][-0.0649247,0.995776,0.0649248][0.258327,0.145032,0][0.950015,1.0333,-0.963118][-0.683531,0.256069,0.683531][0.255228,0.145083,0][0.965847,1.05752,-0.978951][-0.0649247,0.995776,0.0649248][0.214383,0.850187,0][1.25932,1.05752,-0.540474][-0.083878,0.995843,0.0355071][0.249328,0.815017,0][1.30117,1.0333,-0.558281][0.629723,0.731861,-0.260439][0.252868,0.817411,0][1.30117,1.0333,-0.558281][0.629723,0.731861,-0.260439][0.252868,0.817411,0][0.998058,1.0333,-1.01116][0.481398,0.73247,-0.481398][0.216775,0.853736,0][0.965847,1.05752,-0.978951][-0.0649247,0.995776,0.0649248][0.214383,0.850187,0][0.998058,1.0333,-1.01116][0.481398,0.73247,-0.481398][0.130554,0.820081,0][1.30117,1.0333,-0.558281][0.629723,0.731861,-0.260439][0.178841,0.814673,0][1.34728,0.960631,-0.577899][0.803725,0.49337,-0.332584][0.180491,0.822782,0][1.34728,0.960631,-0.577899][0.803725,0.49337,-0.332584][0.180491,0.822782,0][1.03355,0.960631,-1.04665][0.614804,0.493997,-0.614804][0.130511,0.828379,0][0.998058,1.0333,-1.01116][0.481398,0.73247,-0.481398][0.130554,0.820081,0][1.25648,0.960631,-0.539267][-0.893014,-0.256345,0.369882][0.155875,0.988283,0][1.36327,0.960631,0.00157959][-0.966178,-0.257862,0.00284831][0.105053,0.988283,0][1.34405,1.0333,0.00157959][-0.967008,0.254738,0.00192305][0.105053,0.981454,0][1.34405,1.0333,0.00157959][-0.967008,0.254738,0.00192305][0.105053,0.981454,0][1.23874,1.0333,-0.531722][-0.893437,0.255997,0.369101][0.155166,0.981454,0][1.25648,0.960631,-0.539267][-0.893014,-0.256345,0.369882][0.155875,0.988283,0][1.23874,1.0333,-0.531722][-0.893437,0.255997,0.369101][0.155166,0.981454,0][1.34405,1.0333,0.00157959][-0.967008,0.254738,0.00192305][0.105053,0.981454,0][1.36635,1.05752,0.00157959][-0.0922696,0.995734,0.000266044][0.105053,0.979178,0][1.36635,1.05752,0.00157959][-0.0922696,0.995734,0.000266044][0.105053,0.979178,0][1.25932,1.05752,-0.540474][-0.083878,0.995843,0.0355071][0.155988,0.979178,0][1.23874,1.0333,-0.531722][-0.893437,0.255997,0.369101][0.155166,0.981454,0][1.25932,1.05752,-0.540474][-0.083878,0.995843,0.0355071][0.249328,0.815017,0][1.36635,1.05752,0.00157959][-0.0922696,0.995734,0.000266044][0.268938,0.766944,0][1.41171,1.0333,0.00157959][0.682061,0.731296,-2.39406e-005][0.273122,0.767759,0][1.41171,1.0333,0.00157959][0.682061,0.731296,-2.39406e-005][0.273122,0.767759,0][1.30117,1.0333,-0.558281][0.629723,0.731861,-0.260439][0.252868,0.817411,0][1.25932,1.05752,-0.540474][-0.083878,0.995843,0.0355071][0.249328,0.815017,0][1.30117,1.0333,-0.558281][0.629723,0.731861,-0.260439][0.702454,0.281831,0][1.41171,1.0333,0.00157959][0.682061,0.731296,-2.39406e-005][0.755063,0.281831,0][1.4617,0.960631,0.00157959][0.870301,0.492521,0][0.755063,0.288659,0][1.4617,0.960631,0.00157959][0.870301,0.492521,0][0.755063,0.288659,0][1.34728,0.960631,-0.577899][0.803725,0.49337,-0.332584][0.700611,0.288659,0][1.30117,1.0333,-0.558281][0.629723,0.731861,-0.260439][0.702454,0.281831,0][1.36327,0.960631,0.00157959][-0.966178,-0.257862,0.00284831][0.105053,0.988283,0][1.25648,0.960631,0.579797][-0.852771,-0.3593,-0.379058][0.0507202,0.988283,0][1.23874,1.0333,0.550647][-0.91409,0.149086,-0.37711][0.0534593,0.981454,0][1.23874,1.0333,0.550647][-0.91409,0.149086,-0.37711][0.0534593,0.981454,0][1.34405,1.0333,0.00157959][-0.967008,0.254738,0.00192305][0.105053,0.981454,0][1.36327,0.960631,0.00157959][-0.966178,-0.257862,0.00284831][0.105053,0.988283,0][1.34405,1.0333,0.00157959][-0.967008,0.254738,0.00192305][0.105053,0.981454,0][1.23874,1.0333,0.550647][-0.91409,0.149086,-0.37711][0.0534593,0.981454,0][1.25932,1.05752,0.548305][-0.122552,0.992081,-0.0275026][0.0536794,0.979178,0][1.25932,1.05752,0.548305][-0.122552,0.992081,-0.0275026][0.0536794,0.979178,0][1.36635,1.05752,0.00157959][-0.0922696,0.995734,0.000266044][0.105053,0.979178,0][1.34405,1.0333,0.00157959][-0.967008,0.254738,0.00192305][0.105053,0.981454,0][1.36635,1.05752,0.00157959][-0.0922696,0.995734,0.000266044][0.268938,0.766944,0][1.25932,1.05752,0.548305][-0.122552,0.992081,-0.0275026][0.268888,0.714595,0][1.30117,1.0333,0.562024][0.635366,0.726763,0.26101][0.272995,0.714082,0][1.30117,1.0333,0.562024][0.635366,0.726763,0.26101][0.272995,0.714082,0][1.41171,1.0333,0.00157959][0.682061,0.731296,-2.39406e-005][0.273122,0.767759,0][1.36635,1.05752,0.00157959][-0.0922696,0.995734,0.000266044][0.268938,0.766944,0][1.41171,1.0333,0.00157959][0.682061,0.731296,-2.39406e-005][0.755063,0.281831,0][1.30117,1.0333,0.562024][0.635366,0.726763,0.26101][0.807726,0.281831,0][1.34728,0.960631,0.581058][0.804271,0.492546,0.332485][0.809514,0.288659,0][1.34728,0.960631,0.581058][0.804271,0.492546,0.332485][0.809514,0.288659,0][1.4617,0.960631,0.00157959][0.870301,0.492521,0][0.755063,0.288659,0][1.41171,1.0333,0.00157959][0.682061,0.731296,-2.39406e-005][0.755063,0.281831,0][1.25648,0.960631,0.579797][-0.852771,-0.3593,-0.379058][0.0507202,0.988283,0][0.963664,0.960631,1.01314][-0.625264,-0.410791,-0.663548][0.01,0.988283,0][0.950015,1.0333,0.980291][-0.697621,0.0737231,-0.712664][0.0130871,0.981454,0][0.950015,1.0333,0.980291][-0.697621,0.0737231,-0.712664][0.0130871,0.981454,0][1.23874,1.0333,0.550647][-0.91409,0.149086,-0.37711][0.0534593,0.981454,0][1.25648,0.960631,0.579797][-0.852771,-0.3593,-0.379058][0.0507202,0.988283,0][1.23874,1.0333,0.550647][-0.91409,0.149086,-0.37711][0.192267,0.274972,0][0.950015,1.0333,0.980291][-0.697621,0.0737231,-0.712664][0.143951,0.269353,0][0.965847,1.05752,0.986262][-0.121984,0.987509,-0.0997272][0.144631,0.266661,0][0.965847,1.05752,0.986262][-0.121984,0.987509,-0.0997272][0.144631,0.266661,0][1.25932,1.05752,0.548305][-0.122552,0.992081,-0.0275026][0.193833,0.272421,0][1.23874,1.0333,0.550647][-0.91409,0.149086,-0.37711][0.192267,0.274972,0][1.25932,1.05752,0.548305][-0.122552,0.992081,-0.0275026][0.268888,0.714595,0][0.965847,1.05752,0.986262][-0.121984,0.987509,-0.0997272][0.249689,0.668929,0][0.998059,1.0333,1.01484][0.488567,0.723755,0.487319][0.253173,0.666872,0][0.998059,1.0333,1.01484][0.488567,0.723755,0.487319][0.253173,0.666872,0][1.30117,1.0333,0.562024][0.635366,0.726763,0.26101][0.272995,0.714082,0][1.25932,1.05752,0.548305][-0.122552,0.992081,-0.0275026][0.268888,0.714595,0][1.30117,1.0333,0.562024][0.635366,0.726763,0.26101][0.0731041,0.0999065,0][0.998059,1.0333,1.01484][0.488567,0.723755,0.487319][0.0671884,0.150766,0][1.03355,0.960631,1.04981][0.615484,0.492602,0.615242][0.05891,0.150685,0][1.03355,0.960631,1.04981][0.615484,0.492602,0.615242][0.05891,0.150685,0][1.34728,0.960631,0.581058][0.804271,0.492546,0.332485][0.0650355,0.098038,0][1.30117,1.0333,0.562024][0.635366,0.726763,0.26101][0.0731041,0.0999065,0][0.963664,0.960631,1.01314][-0.625264,-0.410791,-0.663548][0.825063,0.895809,0][0.526164,0.960631,1.2852][-0.338709,-0.332906,-0.880028][0.783953,0.895809,0][0.518618,1.0333,1.26026][-0.361493,0.167115,-0.917276][0.783244,0.888981,0][0.518618,1.0333,1.26026][-0.361493,0.167115,-0.917276][0.783244,0.888981,0][0.950015,1.0333,0.980291][-0.697621,0.0737231,-0.712664][0.823781,0.888981,0][0.963664,0.960631,1.01314][-0.625264,-0.410791,-0.663548][0.825063,0.895809,0][0.950015,1.0333,0.980291][-0.697621,0.0737231,-0.712664][0.143951,0.269353,0][0.518618,1.0333,1.26026][-0.361493,0.167115,-0.917276][0.0985702,0.274814,0][0.527371,1.05752,1.27714][-0.0480694,0.992365,-0.113584][0.098038,0.271971,0][0.527371,1.05752,1.27714][-0.0480694,0.992365,-0.113584][0.845192,0.472802,0][0.965847,1.05752,0.986262][-0.121984,0.987509,-0.0997272][0.886394,0.472802,0][0.950015,1.0333,0.980291][-0.697621,0.0737231,-0.712664][0.884906,0.475078,0][0.965847,1.05752,0.986262][-0.121984,0.987509,-0.0997272][0.249689,0.668929,0][0.527371,1.05752,1.27714][-0.0480694,0.992365,-0.113584][0.214472,0.634223,0][0.545178,1.0333,1.31762][0.261888,0.727509,0.634149][0.216842,0.630809,0][0.545178,1.0333,1.31762][0.261888,0.727509,0.634149][0.216842,0.630809,0][0.998059,1.0333,1.01484][0.488567,0.723755,0.487319][0.253173,0.666872,0][0.965847,1.05752,0.986262][-0.121984,0.987509,-0.0997272][0.249689,0.668929,0][0.998059,1.0333,1.01484][0.488567,0.723755,0.487319][0.0671884,0.150766,0][0.545178,1.0333,1.31762][0.261888,0.727509,0.634149][0.0725628,0.199026,0][0.564796,0.960631,1.36354][0.332705,0.492634,0.804126][0.0644599,0.20066,0][0.564796,0.960631,1.36354][0.332705,0.492634,0.804126][0.0644599,0.20066,0][1.03355,0.960631,1.04981][0.615484,0.492602,0.615242][0.05891,0.150685,0][0.998059,1.0333,1.01484][0.488567,0.723755,0.487319][0.0671884,0.150766,0][0.526164,0.960631,1.2852][-0.338709,-0.332906,-0.880028][0.783953,0.895809,0][-0.0146828,0.960631,1.37953][0.0104538,-0.255737,-0.96669][0.733131,0.895809,0][-0.0146828,1.0333,1.36031][0.00810337,0.252965,-0.967441][0.733131,0.888981,0][-0.0146828,1.0333,1.36031][0.00810337,0.252965,-0.967441][0.733131,0.888981,0][0.518618,1.0333,1.26026][-0.361493,0.167115,-0.917276][0.783244,0.888981,0][0.526164,0.960631,1.2852][-0.338709,-0.332906,-0.880028][0.783953,0.895809,0][0.518618,1.0333,1.26026][-0.361493,0.167115,-0.917276][0.783244,0.888981,0][-0.0146828,1.0333,1.36031][0.00810337,0.252965,-0.967441][0.733131,0.888981,0][-0.0146828,1.05752,1.38261][0.00128076,0.995625,-0.0934347][0.733131,0.886705,0][-0.0146828,1.05752,1.38261][0.00128076,0.995625,-0.0934347][0.733131,0.886705,0][0.527371,1.05752,1.27714][-0.0480694,0.992365,-0.113584][0.784066,0.886705,0][0.518618,1.0333,1.26026][-0.361493,0.167115,-0.917276][0.783244,0.888981,0][0.527371,1.05752,1.27714][-0.0480694,0.992365,-0.113584][0.214472,0.634223,0][-0.0146828,1.05752,1.38261][0.00128076,0.995625,-0.0934347][0.166372,0.614757,0][-0.0146828,1.0333,1.42798][-0.000343502,0.731197,0.682167][0.167187,0.610573,0][-0.0146828,1.0333,1.42798][-0.000343502,0.731197,0.682167][0.167187,0.610573,0][0.545178,1.0333,1.31762][0.261888,0.727509,0.634149][0.216842,0.630809,0][0.527371,1.05752,1.27714][-0.0480694,0.992365,-0.113584][0.214472,0.634223,0][0.545178,1.0333,1.31762][0.261888,0.727509,0.634149][0.41479,0.50008,0][-0.0146828,1.0333,1.42798][-0.000343502,0.731197,0.682167][0.467398,0.50008,0][-0.0146828,0.960631,1.47796][-5.42729e-005,0.492483,0.870322][0.467398,0.506908,0][-0.0146828,0.960631,1.47796][-5.42729e-005,0.492483,0.870322][0.467398,0.506908,0][0.564796,0.960631,1.36354][0.332705,0.492634,0.804126][0.412946,0.506908,0][0.545178,1.0333,1.31762][0.261888,0.727509,0.634149][0.41479,0.50008,0][-0.0146828,0.960631,1.37953][0.0104538,-0.255737,-0.96669][0.733131,0.895809,0][-0.555529,0.960631,1.27274][0.369882,-0.256345,-0.893014][0.68231,0.895809,0][-0.547984,1.0333,1.25501][0.369101,0.255998,-0.893437][0.683019,0.888981,0][-0.547984,1.0333,1.25501][0.369101,0.255998,-0.893437][0.683019,0.888981,0][-0.0146828,1.0333,1.36031][0.00810337,0.252965,-0.967441][0.733131,0.888981,0][-0.0146828,0.960631,1.37953][0.0104538,-0.255737,-0.96669][0.733131,0.895809,0][-0.0146828,1.0333,1.36031][0.00810337,0.252965,-0.967441][0.733131,0.888981,0][-0.547984,1.0333,1.25501][0.369101,0.255998,-0.893437][0.683019,0.888981,0][-0.556737,1.05752,1.27558][0.0355071,0.995843,-0.083878][0.682196,0.886705,0][-0.556737,1.05752,1.27558][0.0355071,0.995843,-0.083878][0.682196,0.886705,0][-0.0146828,1.05752,1.38261][0.00128076,0.995625,-0.0934347][0.733131,0.886705,0][-0.0146828,1.0333,1.36031][0.00810337,0.252965,-0.967441][0.733131,0.888981,0][-0.0146828,1.05752,1.38261][0.00128076,0.995625,-0.0934347][0.166372,0.614757,0][-0.556737,1.05752,1.27558][0.0355071,0.995843,-0.083878][0.114453,0.614891,0][-0.574543,1.0333,1.31743][-0.260439,0.731861,0.629723][0.113563,0.610711,0][-0.574543,1.0333,1.31743][-0.260439,0.731861,0.629723][0.113563,0.610711,0][-0.0146828,1.0333,1.42798][-0.000343502,0.731197,0.682167][0.167187,0.610573,0][-0.0146828,1.05752,1.38261][0.00128076,0.995625,-0.0934347][0.166372,0.614757,0][-0.0146828,1.0333,1.42798][-0.000343502,0.731197,0.682167][0.467398,0.50008,0][-0.574543,1.0333,1.31743][-0.260439,0.731861,0.629723][0.520006,0.50008,0][-0.594161,0.960631,1.36354][-0.332584,0.49337,0.803725][0.521849,0.506908,0][-0.594161,0.960631,1.36354][-0.332584,0.49337,0.803725][0.521849,0.506908,0][-0.0146828,0.960631,1.47796][-5.42729e-005,0.492483,0.870322][0.467398,0.506908,0][-0.0146828,1.0333,1.42798][-0.000343502,0.731197,0.682167][0.467398,0.50008,0][-0.555529,0.960631,1.27274][0.369882,-0.256345,-0.893014][0.68231,0.895809,0][-0.993029,0.960631,0.979926][0.683407,-0.256728,-0.683407][0.641199,0.895809,0][-0.97938,1.0333,0.966277][0.683531,0.25607,-0.683531][0.642482,0.888981,0][-0.97938,1.0333,0.966277][0.683531,0.25607,-0.683531][0.642482,0.888981,0][-0.547984,1.0333,1.25501][0.369101,0.255998,-0.893437][0.683019,0.888981,0][-0.555529,0.960631,1.27274][0.369882,-0.256345,-0.893014][0.68231,0.895809,0][-0.547984,1.0333,1.25501][0.369101,0.255998,-0.893437][0.193535,0.256763,0][-0.97938,1.0333,0.966277][0.683531,0.25607,-0.683531][0.145083,0.251128,0][-0.995213,1.05752,0.98211][0.0649246,0.995776,-0.0649245][0.145032,0.248029,0][-0.995213,1.05752,0.98211][0.0649246,0.995776,-0.0649245][0.145032,0.248029,0][-0.556737,1.05752,1.27558][0.0355071,0.995843,-0.083878][0.194279,0.253757,0][-0.547984,1.0333,1.25501][0.369101,0.255998,-0.893437][0.193535,0.256763,0][-0.556737,1.05752,1.27558][0.0355071,0.995843,-0.083878][0.114453,0.614891,0][-0.995213,1.05752,0.98211][0.0649246,0.995776,-0.0649245][0.0687391,0.634081,0][-1.02742,1.0333,1.01432][-0.481398,0.732469,0.481398][0.0663469,0.630531,0][-1.02742,1.0333,1.01432][-0.481398,0.732469,0.481398][0.0663469,0.630531,0][-0.574543,1.0333,1.31743][-0.260439,0.731861,0.629723][0.113563,0.610711,0][-0.556737,1.05752,1.27558][0.0355071,0.995843,-0.083878][0.114453,0.614891,0][-0.574543,1.0333,1.31743][-0.260439,0.731861,0.629723][0.0567892,0.680262,0][-1.02742,1.0333,1.01432][-0.481398,0.732469,0.481398][0.050873,0.731126,0][-1.06291,0.960631,1.04981][-0.614804,0.493996,0.614804][0.0425748,0.731084,0][-1.06291,0.960631,1.04981][-0.614804,0.493996,0.614804][0.0425748,0.731084,0][-0.594161,0.960631,1.36354][-0.332584,0.49337,0.803725][0.0486983,0.678437,0][-0.574543,1.0333,1.31743][-0.260439,0.731861,0.629723][0.0567892,0.680262,0][-0.993029,0.960631,0.979926][0.683407,-0.256728,-0.683407][0.825063,0.861703,0][-1.28584,0.960631,0.542426][0.893014,-0.256345,-0.369882][0.783953,0.861703,0][-1.26811,1.0333,0.534881][0.893437,0.255998,-0.369102][0.783244,0.854875,0][-1.26811,1.0333,0.534881][0.893437,0.255998,-0.369102][0.783244,0.854875,0][-0.97938,1.0333,0.966277][0.683531,0.25607,-0.683531][0.823781,0.854875,0][-0.993029,0.960631,0.979926][0.683407,-0.256728,-0.683407][0.825063,0.861703,0][-0.97938,1.0333,0.966277][0.683531,0.25607,-0.683531][0.145083,0.251128,0][-1.26811,1.0333,0.534881][0.893437,0.255998,-0.369102][0.098848,0.258327,0][-1.28868,1.05752,0.543633][0.0838779,0.995843,-0.0355073][0.098038,0.255346,0][-1.28868,1.05752,0.543633][0.0838779,0.995843,-0.0355073][0.098038,0.255346,0][-0.995213,1.05752,0.98211][0.0649246,0.995776,-0.0649245][0.145032,0.248029,0][-0.97938,1.0333,0.966277][0.683531,0.25607,-0.683531][0.145083,0.251128,0][-0.995213,1.05752,0.98211][0.0649246,0.995776,-0.0649245][0.0687391,0.634081,0][-1.28868,1.05752,0.543633][0.0838779,0.995843,-0.0355073][0.0337942,0.669251,0][-1.33053,1.0333,0.56144][-0.629723,0.731861,0.260439][0.030254,0.666856,0][-1.33053,1.0333,0.56144][-0.629723,0.731861,0.260439][0.030254,0.666856,0][-1.02742,1.0333,1.01432][-0.481398,0.732469,0.481398][0.0663469,0.630531,0][-0.995213,1.05752,0.98211][0.0649246,0.995776,-0.0649245][0.0687391,0.634081,0][-1.02742,1.0333,1.01432][-0.481398,0.732469,0.481398][0.050873,0.731126,0][-1.33053,1.0333,0.56144][-0.629723,0.731861,0.260439][0.0562806,0.779414,0][-1.37664,0.960631,0.581058][-0.803725,0.493369,0.332585][0.0481719,0.781063,0][-1.37664,0.960631,0.581058][-0.803725,0.493369,0.332585][0.0481719,0.781063,0][-1.06291,0.960631,1.04981][-0.614804,0.493996,0.614804][0.0425748,0.731084,0][-1.02742,1.0333,1.01432][-0.481398,0.732469,0.481398][0.050873,0.731126,0][-1.28584,0.960631,0.542426][0.893014,-0.256345,-0.369882][0.783953,0.861703,0][-1.39264,0.960631,0.00157971][0.966743,-0.255751,0][0.733131,0.861703,0][-1.37341,1.0333,0.00157971][0.966823,0.255447,1.27466e-007][0.733131,0.854875,0][-1.37341,1.0333,0.00157971][0.966823,0.255447,1.27466e-007][0.733131,0.854875,0][-1.26811,1.0333,0.534881][0.893437,0.255998,-0.369102][0.783244,0.854875,0][-1.28584,0.960631,0.542426][0.893014,-0.256345,-0.369882][0.783953,0.861703,0][-1.26811,1.0333,0.534881][0.893437,0.255998,-0.369102][0.783244,0.854875,0][-1.37341,1.0333,0.00157971][0.966823,0.255447,1.27466e-007][0.733131,0.854875,0][-1.39571,1.05752,0.00157971][0.0920492,0.995754,0][0.733131,0.852599,0][-1.39571,1.05752,0.00157971][0.0920492,0.995754,0][0.733131,0.852599,0][-1.28868,1.05752,0.543633][0.0838779,0.995843,-0.0355073][0.784066,0.852599,0][-1.26811,1.0333,0.534881][0.893437,0.255998,-0.369102][0.783244,0.854875,0][-1.28868,1.05752,0.543633][0.0838779,0.995843,-0.0355073][0.0337942,0.669251,0][-1.39571,1.05752,0.00157971][0.0920492,0.995754,0][0.0141844,0.717323,0][-1.44108,1.0333,0.00157971][-0.682049,0.731306,0][0.01,0.716508,0][-1.44108,1.0333,0.00157971][-0.682049,0.731306,0][0.01,0.716508,0][-1.33053,1.0333,0.56144][-0.629723,0.731861,0.260439][0.030254,0.666856,0][-1.28868,1.05752,0.543633][0.0838779,0.995843,-0.0355073][0.0337942,0.669251,0][-1.33053,1.0333,0.56144][-0.629723,0.731861,0.260439][0.41479,0.281831,0][-1.44108,1.0333,0.00157971][-0.682049,0.731306,0][0.467398,0.281831,0][-1.49106,0.960631,0.00157972][-0.870301,0.492521,0][0.467398,0.288659,0][-1.49106,0.960631,0.00157972][-0.870301,0.492521,0][0.467398,0.288659,0][-1.37664,0.960631,0.581058][-0.803725,0.493369,0.332585][0.412946,0.288659,0][-1.33053,1.0333,0.56144][-0.629723,0.731861,0.260439][0.41479,0.281831,0][-1.39264,0.960631,0.00157971][0.966743,-0.255751,0][0.733131,0.861703,0][-1.28584,0.960631,-0.539267][0.893014,-0.256345,0.369882][0.68231,0.861703,0][-1.26811,1.0333,-0.531721][0.893437,0.255998,0.369101][0.683019,0.854875,0][-1.26811,1.0333,-0.531721][0.893437,0.255998,0.369101][0.683019,0.854875,0][-1.37341,1.0333,0.00157971][0.966823,0.255447,1.27466e-007][0.733131,0.854875,0][-1.39264,0.960631,0.00157971][0.966743,-0.255751,0][0.733131,0.861703,0][-1.37341,1.0333,0.00157971][0.966823,0.255447,1.27466e-007][0.733131,0.854875,0][-1.26811,1.0333,-0.531721][0.893437,0.255998,0.369101][0.683019,0.854875,0][-1.28868,1.05752,-0.540474][0.083878,0.995843,0.0355072][0.682196,0.852599,0][-1.28868,1.05752,-0.540474][0.083878,0.995843,0.0355072][0.682196,0.852599,0][-1.39571,1.05752,0.00157971][0.0920492,0.995754,0][0.733131,0.852599,0][-1.37341,1.0333,0.00157971][0.966823,0.255447,1.27466e-007][0.733131,0.854875,0][-1.39571,1.05752,0.00157971][0.0920492,0.995754,0][0.0141844,0.717323,0][-1.28868,1.05752,-0.540474][0.083878,0.995843,0.0355072][0.014318,0.769241,0][-1.33053,1.0333,-0.558281][-0.629723,0.731861,-0.260439][0.0101379,0.770132,0][-1.33053,1.0333,-0.558281][-0.629723,0.731861,-0.260439][0.0101379,0.770132,0][-1.44108,1.0333,0.00157971][-0.682049,0.731306,0][0.01,0.716508,0][-1.39571,1.05752,0.00157971][0.0920492,0.995754,0][0.0141844,0.717323,0][-1.44108,1.0333,0.00157971][-0.682049,0.731306,0][0.467398,0.281831,0][-1.33053,1.0333,-0.558281][-0.629723,0.731861,-0.260439][0.520006,0.281831,0][-1.37664,0.960631,-0.577899][-0.803725,0.493369,-0.332584][0.521849,0.288659,0][-1.37664,0.960631,-0.577899][-0.803725,0.493369,-0.332584][0.521849,0.288659,0][-1.49106,0.960631,0.00157972][-0.870301,0.492521,0][0.467398,0.288659,0][-1.44108,1.0333,0.00157971][-0.682049,0.731306,0][0.467398,0.281831,0][-1.28584,0.960631,-0.539267][0.893014,-0.256345,0.369882][0.68231,0.861703,0][-0.993029,0.960631,-0.976767][0.683407,-0.256728,0.683407][0.641199,0.861703,0][-0.979381,1.0333,-0.963118][0.683531,0.25607,0.683531][0.642482,0.854875,0][-0.979381,1.0333,-0.963118][0.683531,0.25607,0.683531][0.642482,0.854875,0][-1.26811,1.0333,-0.531721][0.893437,0.255998,0.369101][0.683019,0.854875,0][-1.28584,0.960631,-0.539267][0.893014,-0.256345,0.369882][0.68231,0.861703,0][-1.26811,1.0333,-0.531721][0.893437,0.255998,0.369101][0.336811,0.971298,0][-0.979381,1.0333,-0.963118][0.683531,0.25607,0.683531][0.385262,0.976933,0][-0.995213,1.05752,-0.978951][0.0649243,0.995776,0.0649243][0.385313,0.980033,0][-0.995213,1.05752,-0.978951][0.0649243,0.995776,0.0649243][0.385313,0.980033,0][-1.28868,1.05752,-0.540474][0.083878,0.995843,0.0355072][0.336067,0.974304,0][-1.26811,1.0333,-0.531721][0.893437,0.255998,0.369101][0.336811,0.971298,0][-1.28868,1.05752,-0.540474][0.083878,0.995843,0.0355072][0.014318,0.769241,0][-0.995213,1.05752,-0.978951][0.0649243,0.995776,0.0649243][0.0335082,0.814956,0][-1.02742,1.0333,-1.01116][-0.481398,0.73247,-0.481398][0.0299585,0.817348,0][-1.02742,1.0333,-1.01116][-0.481398,0.73247,-0.481398][0.0299585,0.817348,0][-1.33053,1.0333,-0.558281][-0.629723,0.731861,-0.260439][0.0101379,0.770132,0][-1.28868,1.05752,-0.540474][0.083878,0.995843,0.0355072][0.014318,0.769241,0][-1.33053,1.0333,-0.558281][-0.629723,0.731861,-0.260439][0.227807,0.680262,0][-1.02742,1.0333,-1.01116][-0.481398,0.73247,-0.481398][0.22189,0.731126,0][-1.06291,0.960631,-1.04665][-0.614804,0.493996,-0.614804][0.213592,0.731084,0][-1.06291,0.960631,-1.04665][-0.614804,0.493996,-0.614804][0.213592,0.731084,0][-1.37664,0.960631,-0.577899][-0.803725,0.493369,-0.332584][0.219716,0.678437,0][-1.33053,1.0333,-0.558281][-0.629723,0.731861,-0.260439][0.227807,0.680262,0][-0.993029,0.960631,-0.976767][0.683407,-0.256728,0.683407][0.982228,0.662625,0][-0.555529,0.960631,-1.26958][0.369882,-0.256345,0.893014][0.941118,0.662625,0][-0.547984,1.0333,-1.25185][0.369102,0.255998,0.893437][0.940409,0.655797,0][-0.547984,1.0333,-1.25185][0.369102,0.255998,0.893437][0.940409,0.655797,0][-0.979381,1.0333,-0.963118][0.683531,0.25607,0.683531][0.980946,0.655797,0][-0.993029,0.960631,-0.976767][0.683407,-0.256728,0.683407][0.982228,0.662625,0][-0.979381,1.0333,-0.963118][0.683531,0.25607,0.683531][0.385262,0.976933,0][-0.547984,1.0333,-1.25185][0.369102,0.255998,0.893437][0.431498,0.969734,0][-0.556737,1.05752,-1.27242][0.0355073,0.995843,0.0838779][0.432308,0.972715,0][-0.556737,1.05752,-1.27242][0.0355073,0.995843,0.0838779][0.432308,0.972715,0][-0.995213,1.05752,-0.978951][0.0649243,0.995776,0.0649243][0.385313,0.980033,0][-0.979381,1.0333,-0.963118][0.683531,0.25607,0.683531][0.385262,0.976933,0][-0.995213,1.05752,-0.978951][0.0649243,0.995776,0.0649243][0.0335082,0.814956,0][-0.556737,1.05752,-1.27242][0.0355073,0.995843,0.0838779][0.068678,0.849901,0][-0.574544,1.0333,-1.31427][-0.260439,0.731861,-0.629723][0.0662838,0.853441,0][-0.574544,1.0333,-1.31427][-0.260439,0.731861,-0.629723][0.0662838,0.853441,0][-1.02742,1.0333,-1.01116][-0.481398,0.73247,-0.481398][0.0299585,0.817348,0][-0.995213,1.05752,-0.978951][0.0649243,0.995776,0.0649243][0.0335082,0.814956,0][-1.02742,1.0333,-1.01116][-0.481398,0.73247,-0.481398][0.22189,0.731126,0][-0.574544,1.0333,-1.31427][-0.260439,0.731861,-0.629723][0.227298,0.779414,0][-0.594161,0.960631,-1.36038][-0.332585,0.49337,-0.803725][0.219189,0.781063,0][-0.594161,0.960631,-1.36038][-0.332585,0.49337,-0.803725][0.219189,0.781063,0][-1.06291,0.960631,-1.04665][-0.614804,0.493996,-0.614804][0.213592,0.731084,0][-1.02742,1.0333,-1.01116][-0.481398,0.73247,-0.481398][0.22189,0.731126,0][-0.555529,0.960631,-1.26958][0.369882,-0.256345,0.893014][0.941118,0.662625,0][-0.0146829,0.960631,-1.37637][0,-0.255751,0.966743][0.890296,0.662625,0][-0.0146829,1.0333,-1.35715][0,0.255446,0.966823][0.890296,0.655797,0][-0.0146829,1.0333,-1.35715][0,0.255446,0.966823][0.890296,0.655797,0][-0.547984,1.0333,-1.25185][0.369102,0.255998,0.893437][0.940409,0.655797,0][-0.555529,0.960631,-1.26958][0.369882,-0.256345,0.893014][0.941118,0.662625,0][-0.547984,1.0333,-1.25185][0.369102,0.255998,0.893437][0.940409,0.655797,0][-0.0146829,1.0333,-1.35715][0,0.255446,0.966823][0.890296,0.655797,0][-0.0146829,1.05752,-1.37945][0,0.995754,0.0920505][0.890296,0.653521,0][-0.0146829,1.05752,-1.37945][0,0.995754,0.0920505][0.890296,0.653521,0][-0.556737,1.05752,-1.27242][0.0355073,0.995843,0.0838779][0.941231,0.653521,0][-0.547984,1.0333,-1.25185][0.369102,0.255998,0.893437][0.940409,0.655797,0][-0.556737,1.05752,-1.27242][0.0355073,0.995843,0.0838779][0.068678,0.849901,0][-0.0146829,1.05752,-1.37945][0,0.995754,0.0920505][0.116751,0.86951,0][-0.0146829,1.0333,-1.42482][0,0.731306,-0.682049][0.115936,0.873695,0][-0.0146829,1.0333,-1.42482][0,0.731306,-0.682049][0.115936,0.873695,0][-0.574544,1.0333,-1.31427][-0.260439,0.731861,-0.629723][0.0662838,0.853441,0][-0.556737,1.05752,-1.27242][0.0355073,0.995843,0.0838779][0.068678,0.849901,0][-0.574544,1.0333,-1.31427][-0.260439,0.731861,-0.629723][0.686621,0.01,0][-0.0146829,1.0333,-1.42482][0,0.731306,-0.682049][0.739229,0.01,0][-0.0146829,0.960631,-1.4748][0,0.492521,-0.870301][0.739229,0.0168281,0][-0.0146829,0.960631,-1.4748][0,0.492521,-0.870301][0.739229,0.0168281,0][-0.594161,0.960631,-1.36038][-0.332585,0.49337,-0.803725][0.684777,0.0168281,0][-0.574544,1.0333,-1.31427][-0.260439,0.731861,-0.629723][0.686621,0.01,0][-0.0146829,0.960631,-1.4748][0,0.492521,-0.870301][0.739229,0.0168281,0][0.564795,0.960631,-1.36038][0.332584,0.49337,-0.803725][0.79368,0.0168281,0][0.635721,0.574235,-1.52708][0.349835,0.403546,-0.845438][0.800345,0.0531364,0][0.635721,0.574235,-1.52708][0.349835,0.403546,-0.845438][0.800345,0.0531364,0][-0.0146829,0.574235,-1.6555][0,0.402725,-0.915321][0.739229,0.0531364,0][-0.0146829,0.960631,-1.4748][0,0.492521,-0.870301][0.739229,0.0168281,0][-0.0146829,0.574235,-1.6555][0,0.402725,-0.915321][0.739229,0.0531364,0][0.635721,0.574235,-1.52708][0.349835,0.403546,-0.845438][0.800345,0.0531364,0][0.697593,0.19476,-1.67249][0.360047,0.336859,-0.869996][0.806159,0.0887944,0][0.697593,0.19476,-1.67249][0.360047,0.336859,-0.869996][0.806159,0.0887944,0][-0.0146829,0.19476,-1.81313][0,0.336151,-0.941808][0.739229,0.0887944,0][-0.0146829,0.574235,-1.6555][0,0.402725,-0.915321][0.739229,0.0531364,0][-0.0146829,0.19476,-1.81313][0,0.336151,-0.941808][0.739229,0.0887944,0][0.697593,0.19476,-1.67249][0.360047,0.336859,-0.869996][0.806159,0.0887944,0][0.741355,-0.170874,-1.77535][0.37428,0.205791,-0.904193][0.810271,0.123152,0][0.741355,-0.170874,-1.77535][0.37428,0.205791,-0.904193][0.810271,0.123152,0][-0.0146829,-0.170874,-1.92463][0,0.205342,-0.97869][0.739229,0.123152,0][-0.0146829,0.19476,-1.81313][0,0.336151,-0.941808][0.739229,0.0887944,0][-0.0146829,-0.170874,-1.92463][0,0.205342,-0.97869][0.739229,0.123152,0][0.741355,-0.170874,-1.77535][0.37428,0.205791,-0.904193][0.810271,0.123152,0][0.757955,-0.515747,-1.81437][0.381752,-0.0663696,-0.921879][0.811831,0.155558,0][0.757955,-0.515747,-1.81437][0.381752,-0.0663696,-0.921879][0.811831,0.155558,0][-0.0146829,-0.515747,-1.96692][0,-0.0662395,-0.997804][0.739229,0.155558,0][-0.0146829,-0.170874,-1.92463][0,0.205342,-0.97869][0.739229,0.123152,0][0.564795,0.960631,-1.36038][0.332584,0.49337,-0.803725][0.79368,0.0168281,0][1.03355,0.960631,-1.04665][0.614804,0.493997,-0.614804][0.837727,0.0168281,0][1.16184,0.574235,-1.17495][0.646802,0.404096,-0.646802][0.849783,0.0531364,0][1.16184,0.574235,-1.17495][0.646802,0.404096,-0.646802][0.849783,0.0531364,0][0.635721,0.574235,-1.52708][0.349835,0.403546,-0.845438][0.800345,0.0531364,0][0.564795,0.960631,-1.36038][0.332584,0.49337,-0.803725][0.79368,0.0168281,0][0.635721,0.574235,-1.52708][0.349835,0.403546,-0.845438][0.800345,0.0531364,0][1.16184,0.574235,-1.17495][0.646802,0.404096,-0.646802][0.849783,0.0531364,0][1.27376,0.19476,-1.28687][0.665655,0.337351,-0.665655][0.8603,0.0887944,0][1.27376,0.19476,-1.28687][0.665655,0.337351,-0.665655][0.8603,0.0887944,0][0.697593,0.19476,-1.67249][0.360047,0.336859,-0.869996][0.806159,0.0887944,0][0.635721,0.574235,-1.52708][0.349835,0.403546,-0.845438][0.800345,0.0531364,0][0.697593,0.19476,-1.67249][0.360047,0.336859,-0.869996][0.806159,0.0887944,0][1.27376,0.19476,-1.28687][0.665655,0.337351,-0.665655][0.8603,0.0887944,0][1.35293,-0.170874,-1.36603][0.691923,0.206119,-0.691923][0.867738,0.123152,0][1.35293,-0.170874,-1.36603][0.691923,0.206119,-0.691923][0.867738,0.123152,0][0.741355,-0.170874,-1.77535][0.37428,0.205791,-0.904193][0.810271,0.123152,0][0.697593,0.19476,-1.67249][0.360047,0.336859,-0.869996][0.806159,0.0887944,0][0.741355,-0.170874,-1.77535][0.37428,0.205791,-0.904193][0.810271,0.123152,0][1.35293,-0.170874,-1.36603][0.691923,0.206119,-0.691923][0.867738,0.123152,0][1.38295,-0.515747,-1.39606][0.705542,-0.0664797,-0.705543][0.87056,0.155558,0][1.38295,-0.515747,-1.39606][0.705542,-0.0664797,-0.705543][0.87056,0.155558,0][0.757955,-0.515747,-1.81437][0.381752,-0.0663696,-0.921879][0.811831,0.155558,0][0.741355,-0.170874,-1.77535][0.37428,0.205791,-0.904193][0.810271,0.123152,0][1.03355,0.960631,-1.04665][0.614804,0.493997,-0.614804][0.656564,0.288659,0][1.34728,0.960631,-0.577899][0.803725,0.49337,-0.332584][0.700611,0.288659,0][1.51397,0.574235,-0.648825][0.845438,0.403546,-0.349835][0.693946,0.324967,0][1.51397,0.574235,-0.648825][0.845438,0.403546,-0.349835][0.693946,0.324967,0][1.16184,0.574235,-1.17495][0.646802,0.404096,-0.646802][0.644508,0.324967,0][1.03355,0.960631,-1.04665][0.614804,0.493997,-0.614804][0.656564,0.288659,0][1.16184,0.574235,-1.17495][0.646802,0.404096,-0.646802][0.644508,0.324967,0][1.51397,0.574235,-0.648825][0.845438,0.403546,-0.349835][0.693946,0.324967,0][1.65939,0.19476,-0.710696][0.869996,0.336859,-0.360047][0.688132,0.360625,0][1.65939,0.19476,-0.710696][0.869996,0.336859,-0.360047][0.688132,0.360625,0][1.27376,0.19476,-1.28687][0.665655,0.337351,-0.665655][0.633992,0.360625,0][1.16184,0.574235,-1.17495][0.646802,0.404096,-0.646802][0.644508,0.324967,0][1.27376,0.19476,-1.28687][0.665655,0.337351,-0.665655][0.633992,0.360625,0][1.65939,0.19476,-0.710696][0.869996,0.336859,-0.360047][0.688132,0.360625,0][1.76225,-0.170874,-0.754459][0.904193,0.205791,-0.37428][0.68402,0.394983,0][1.76225,-0.170874,-0.754459][0.904193,0.205791,-0.37428][0.68402,0.394983,0][1.35293,-0.170874,-1.36603][0.691923,0.206119,-0.691923][0.626553,0.394983,0][1.27376,0.19476,-1.28687][0.665655,0.337351,-0.665655][0.633992,0.360625,0][1.35293,-0.170874,-1.36603][0.691923,0.206119,-0.691923][0.626553,0.394983,0][1.76225,-0.170874,-0.754459][0.904193,0.205791,-0.37428][0.68402,0.394983,0][1.80126,-0.515747,-0.771058][0.921879,-0.0663695,-0.381752][0.68246,0.427389,0][1.80126,-0.515747,-0.771058][0.921879,-0.0663695,-0.381752][0.68246,0.427389,0][1.38295,-0.515747,-1.39606][0.705542,-0.0664797,-0.705543][0.623731,0.427389,0][1.35293,-0.170874,-1.36603][0.691923,0.206119,-0.691923][0.626553,0.394983,0][1.34728,0.960631,-0.577899][0.803725,0.49337,-0.332584][0.700611,0.288659,0][1.4617,0.960631,0.00157959][0.870301,0.492521,0][0.755063,0.288659,0][1.6424,0.574235,0.00157958][0.915321,0.402725,0][0.755063,0.324967,0][1.6424,0.574235,0.00157958][0.915321,0.402725,0][0.755063,0.324967,0][1.51397,0.574235,-0.648825][0.845438,0.403546,-0.349835][0.693946,0.324967,0][1.34728,0.960631,-0.577899][0.803725,0.49337,-0.332584][0.700611,0.288659,0][1.51397,0.574235,-0.648825][0.845438,0.403546,-0.349835][0.693946,0.324967,0][1.6424,0.574235,0.00157958][0.915321,0.402725,0][0.755063,0.324967,0][1.80003,0.19476,0.00157957][0.941808,0.336151,0][0.755063,0.360625,0][1.80003,0.19476,0.00157957][0.941808,0.336151,0][0.755063,0.360625,0][1.65939,0.19476,-0.710696][0.869996,0.336859,-0.360047][0.688132,0.360625,0][1.51397,0.574235,-0.648825][0.845438,0.403546,-0.349835][0.693946,0.324967,0][1.65939,0.19476,-0.710696][0.869996,0.336859,-0.360047][0.688132,0.360625,0][1.80003,0.19476,0.00157957][0.941808,0.336151,0][0.755063,0.360625,0][1.91153,-0.170874,0.00157957][0.97869,0.205342,0][0.755063,0.394983,0][1.91153,-0.170874,0.00157957][0.97869,0.205342,0][0.755063,0.394983,0][1.76225,-0.170874,-0.754459][0.904193,0.205791,-0.37428][0.68402,0.394983,0][1.65939,0.19476,-0.710696][0.869996,0.336859,-0.360047][0.688132,0.360625,0][1.76225,-0.170874,-0.754459][0.904193,0.205791,-0.37428][0.68402,0.394983,0][1.91153,-0.170874,0.00157957][0.97869,0.205342,0][0.755063,0.394983,0][1.95382,-0.515747,0.00157957][0.997804,-0.0662395,0][0.755063,0.427389,0][1.95382,-0.515747,0.00157957][0.997804,-0.0662395,0][0.755063,0.427389,0][1.80126,-0.515747,-0.771058][0.921879,-0.0663695,-0.381752][0.68246,0.427389,0][1.76225,-0.170874,-0.754459][0.904193,0.205791,-0.37428][0.68402,0.394983,0][1.4617,0.960631,0.00157959][0.870301,0.492521,0][0.755063,0.288659,0][1.34728,0.960631,0.581058][0.804271,0.492546,0.332485][0.809514,0.288659,0][1.51397,0.574235,0.651984][0.845438,0.403546,0.349835][0.816179,0.324967,0][1.51397,0.574235,0.651984][0.845438,0.403546,0.349835][0.816179,0.324967,0][1.6424,0.574235,0.00157958][0.915321,0.402725,0][0.755063,0.324967,0][1.4617,0.960631,0.00157959][0.870301,0.492521,0][0.755063,0.288659,0][1.6424,0.574235,0.00157958][0.915321,0.402725,0][0.755063,0.324967,0][1.51397,0.574235,0.651984][0.845438,0.403546,0.349835][0.816179,0.324967,0][1.65939,0.19476,0.713855][0.869996,0.336859,0.360046][0.821993,0.360625,0][1.65939,0.19476,0.713855][0.869996,0.336859,0.360046][0.821993,0.360625,0][1.80003,0.19476,0.00157957][0.941808,0.336151,0][0.755063,0.360625,0][1.6424,0.574235,0.00157958][0.915321,0.402725,0][0.755063,0.324967,0][1.80003,0.19476,0.00157957][0.941808,0.336151,0][0.755063,0.360625,0][1.65939,0.19476,0.713855][0.869996,0.336859,0.360046][0.821993,0.360625,0][1.76225,-0.170874,0.757618][0.904193,0.205791,0.37428][0.826105,0.394983,0][1.76225,-0.170874,0.757618][0.904193,0.205791,0.37428][0.826105,0.394983,0][1.91153,-0.170874,0.00157957][0.97869,0.205342,0][0.755063,0.394983,0][1.80003,0.19476,0.00157957][0.941808,0.336151,0][0.755063,0.360625,0][1.91153,-0.170874,0.00157957][0.97869,0.205342,0][0.755063,0.394983,0][1.76225,-0.170874,0.757618][0.904193,0.205791,0.37428][0.826105,0.394983,0][1.80126,-0.515747,0.774217][0.921879,-0.0663697,0.381752][0.827665,0.427389,0][1.80126,-0.515747,0.774217][0.921879,-0.0663697,0.381752][0.827665,0.427389,0][1.95382,-0.515747,0.00157957][0.997804,-0.0662395,0][0.755063,0.427389,0][1.91153,-0.170874,0.00157957][0.97869,0.205342,0][0.755063,0.394983,0][1.34728,0.960631,0.581058][0.804271,0.492546,0.332485][0.809514,0.288659,0][1.03355,0.960631,1.04981][0.615484,0.492602,0.615242][0.853561,0.288659,0][1.16184,0.574235,1.17811][0.646802,0.404096,0.646802][0.865617,0.324967,0][1.16184,0.574235,1.17811][0.646802,0.404096,0.646802][0.865617,0.324967,0][1.51397,0.574235,0.651984][0.845438,0.403546,0.349835][0.816179,0.324967,0][1.34728,0.960631,0.581058][0.804271,0.492546,0.332485][0.809514,0.288659,0][1.51397,0.574235,0.651984][0.845438,0.403546,0.349835][0.816179,0.324967,0][1.16184,0.574235,1.17811][0.646802,0.404096,0.646802][0.865617,0.324967,0][1.27376,0.19476,1.29003][0.665655,0.337351,0.665655][0.876134,0.360625,0][1.27376,0.19476,1.29003][0.665655,0.337351,0.665655][0.876134,0.360625,0][1.65939,0.19476,0.713855][0.869996,0.336859,0.360046][0.821993,0.360625,0][1.51397,0.574235,0.651984][0.845438,0.403546,0.349835][0.816179,0.324967,0][1.65939,0.19476,0.713855][0.869996,0.336859,0.360046][0.821993,0.360625,0][1.27376,0.19476,1.29003][0.665655,0.337351,0.665655][0.876134,0.360625,0][1.35293,-0.170874,1.36919][0.691923,0.206119,0.691923][0.883572,0.394983,0][1.35293,-0.170874,1.36919][0.691923,0.206119,0.691923][0.883572,0.394983,0][1.76225,-0.170874,0.757618][0.904193,0.205791,0.37428][0.826105,0.394983,0][1.65939,0.19476,0.713855][0.869996,0.336859,0.360046][0.821993,0.360625,0][1.76225,-0.170874,0.757618][0.904193,0.205791,0.37428][0.826105,0.394983,0][1.35293,-0.170874,1.36919][0.691923,0.206119,0.691923][0.883572,0.394983,0][1.38295,-0.515747,1.39922][0.705543,-0.0664797,0.705542][0.886394,0.427389,0][1.38295,-0.515747,1.39922][0.705543,-0.0664797,0.705542][0.886394,0.427389,0][1.80126,-0.515747,0.774217][0.921879,-0.0663697,0.381752][0.827665,0.427389,0][1.76225,-0.170874,0.757618][0.904193,0.205791,0.37428][0.826105,0.394983,0][1.03355,0.960631,1.04981][0.615484,0.492602,0.615242][0.368899,0.506908,0][0.564796,0.960631,1.36354][0.332705,0.492634,0.804126][0.412946,0.506908,0][0.635721,0.574235,1.53024][0.349835,0.403546,0.845438][0.406282,0.543217,0][0.635721,0.574235,1.53024][0.349835,0.403546,0.845438][0.406282,0.543217,0][1.16184,0.574235,1.17811][0.646802,0.404096,0.646802][0.356844,0.543217,0][1.03355,0.960631,1.04981][0.615484,0.492602,0.615242][0.368899,0.506908,0][1.16184,0.574235,1.17811][0.646802,0.404096,0.646802][0.356844,0.543217,0][0.635721,0.574235,1.53024][0.349835,0.403546,0.845438][0.406282,0.543217,0][0.697593,0.19476,1.67565][0.360046,0.336859,0.869996][0.400468,0.578875,0][0.697593,0.19476,1.67565][0.360046,0.336859,0.869996][0.400468,0.578875,0][1.27376,0.19476,1.29003][0.665655,0.337351,0.665655][0.346327,0.578875,0][1.16184,0.574235,1.17811][0.646802,0.404096,0.646802][0.356844,0.543217,0][1.27376,0.19476,1.29003][0.665655,0.337351,0.665655][0.346327,0.578875,0][0.697593,0.19476,1.67565][0.360046,0.336859,0.869996][0.400468,0.578875,0][0.741355,-0.170874,1.77851][0.37428,0.205791,0.904193][0.396356,0.613232,0][0.741355,-0.170874,1.77851][0.37428,0.205791,0.904193][0.396356,0.613232,0][1.35293,-0.170874,1.36919][0.691923,0.206119,0.691923][0.338888,0.613232,0][1.27376,0.19476,1.29003][0.665655,0.337351,0.665655][0.346327,0.578875,0][1.35293,-0.170874,1.36919][0.691923,0.206119,0.691923][0.338888,0.613232,0][0.741355,-0.170874,1.77851][0.37428,0.205791,0.904193][0.396356,0.613232,0][0.757955,-0.515747,1.81752][0.381752,-0.0663697,0.921879][0.394796,0.645638,0][0.757955,-0.515747,1.81752][0.381752,-0.0663697,0.921879][0.394796,0.645638,0][1.38295,-0.515747,1.39922][0.705543,-0.0664797,0.705542][0.336067,0.645638,0][1.35293,-0.170874,1.36919][0.691923,0.206119,0.691923][0.338888,0.613232,0][0.564796,0.960631,1.36354][0.332705,0.492634,0.804126][0.412946,0.506908,0][-0.0146828,0.960631,1.47796][-5.42729e-005,0.492483,0.870322][0.467398,0.506908,0][-0.0146828,0.574235,1.65866][0,0.402725,0.915321][0.467398,0.543217,0][-0.0146828,0.574235,1.65866][0,0.402725,0.915321][0.467398,0.543217,0][0.635721,0.574235,1.53024][0.349835,0.403546,0.845438][0.406282,0.543217,0][0.564796,0.960631,1.36354][0.332705,0.492634,0.804126][0.412946,0.506908,0][0.635721,0.574235,1.53024][0.349835,0.403546,0.845438][0.406282,0.543217,0][-0.0146828,0.574235,1.65866][0,0.402725,0.915321][0.467398,0.543217,0][-0.0146828,0.19476,1.81629][0,0.336151,0.941808][0.467398,0.578875,0][-0.0146828,0.19476,1.81629][0,0.336151,0.941808][0.467398,0.578875,0][0.697593,0.19476,1.67565][0.360046,0.336859,0.869996][0.400468,0.578875,0][0.635721,0.574235,1.53024][0.349835,0.403546,0.845438][0.406282,0.543217,0][0.697593,0.19476,1.67565][0.360046,0.336859,0.869996][0.400468,0.578875,0][-0.0146828,0.19476,1.81629][0,0.336151,0.941808][0.467398,0.578875,0][-0.0146827,-0.170874,1.92779][0,0.205342,0.97869][0.467398,0.613232,0][-0.0146827,-0.170874,1.92779][0,0.205342,0.97869][0.467398,0.613232,0][0.741355,-0.170874,1.77851][0.37428,0.205791,0.904193][0.396356,0.613232,0][0.697593,0.19476,1.67565][0.360046,0.336859,0.869996][0.400468,0.578875,0][0.741355,-0.170874,1.77851][0.37428,0.205791,0.904193][0.396356,0.613232,0][-0.0146827,-0.170874,1.92779][0,0.205342,0.97869][0.467398,0.613232,0][-0.0146827,-0.515747,1.97008][0,-0.0662395,0.997804][0.467398,0.645638,0][-0.0146827,-0.515747,1.97008][0,-0.0662395,0.997804][0.467398,0.645638,0][0.757955,-0.515747,1.81752][0.381752,-0.0663697,0.921879][0.394796,0.645638,0][0.741355,-0.170874,1.77851][0.37428,0.205791,0.904193][0.396356,0.613232,0][-0.0146828,0.960631,1.47796][-5.42729e-005,0.492483,0.870322][0.467398,0.506908,0][-0.594161,0.960631,1.36354][-0.332584,0.49337,0.803725][0.521849,0.506908,0][-0.665087,0.574235,1.53024][-0.349835,0.403546,0.845438][0.528514,0.543217,0][-0.665087,0.574235,1.53024][-0.349835,0.403546,0.845438][0.528514,0.543217,0][-0.0146828,0.574235,1.65866][0,0.402725,0.915321][0.467398,0.543217,0][-0.0146828,0.960631,1.47796][-5.42729e-005,0.492483,0.870322][0.467398,0.506908,0][-0.0146828,0.574235,1.65866][0,0.402725,0.915321][0.467398,0.543217,0][-0.665087,0.574235,1.53024][-0.349835,0.403546,0.845438][0.528514,0.543217,0][-0.726958,0.19476,1.67565][-0.360047,0.336859,0.869996][0.534328,0.578875,0][-0.726958,0.19476,1.67565][-0.360047,0.336859,0.869996][0.534328,0.578875,0][-0.0146828,0.19476,1.81629][0,0.336151,0.941808][0.467398,0.578875,0][-0.0146828,0.574235,1.65866][0,0.402725,0.915321][0.467398,0.543217,0][-0.0146828,0.19476,1.81629][0,0.336151,0.941808][0.467398,0.578875,0][-0.726958,0.19476,1.67565][-0.360047,0.336859,0.869996][0.534328,0.578875,0][-0.770721,-0.170875,1.77851][-0.37428,0.205791,0.904193][0.53844,0.613232,0][-0.770721,-0.170875,1.77851][-0.37428,0.205791,0.904193][0.53844,0.613232,0][-0.0146827,-0.170874,1.92779][0,0.205342,0.97869][0.467398,0.613232,0][-0.0146828,0.19476,1.81629][0,0.336151,0.941808][0.467398,0.578875,0][-0.0146827,-0.170874,1.92779][0,0.205342,0.97869][0.467398,0.613232,0][-0.770721,-0.170875,1.77851][-0.37428,0.205791,0.904193][0.53844,0.613232,0][-0.787321,-0.515747,1.81752][-0.381752,-0.0663697,0.921879][0.54,0.645638,0][-0.787321,-0.515747,1.81752][-0.381752,-0.0663697,0.921879][0.54,0.645638,0][-0.0146827,-0.515747,1.97008][0,-0.0662395,0.997804][0.467398,0.645638,0][-0.0146827,-0.170874,1.92779][0,0.205342,0.97869][0.467398,0.613232,0][-0.594161,0.960631,1.36354][-0.332584,0.49337,0.803725][0.521849,0.506908,0][-1.06291,0.960631,1.04981][-0.614804,0.493996,0.614804][0.565896,0.506908,0][-1.19121,0.574235,1.17811][-0.646802,0.404096,0.646802][0.577952,0.543217,0][-1.19121,0.574235,1.17811][-0.646802,0.404096,0.646802][0.577952,0.543217,0][-0.665087,0.574235,1.53024][-0.349835,0.403546,0.845438][0.528514,0.543217,0][-0.594161,0.960631,1.36354][-0.332584,0.49337,0.803725][0.521849,0.506908,0][-0.665087,0.574235,1.53024][-0.349835,0.403546,0.845438][0.528514,0.543217,0][-1.19121,0.574235,1.17811][-0.646802,0.404096,0.646802][0.577952,0.543217,0][-1.30313,0.19476,1.29003][-0.665655,0.337351,0.665655][0.588469,0.578875,0][-1.30313,0.19476,1.29003][-0.665655,0.337351,0.665655][0.588469,0.578875,0][-0.726958,0.19476,1.67565][-0.360047,0.336859,0.869996][0.534328,0.578875,0][-0.665087,0.574235,1.53024][-0.349835,0.403546,0.845438][0.528514,0.543217,0][-0.726958,0.19476,1.67565][-0.360047,0.336859,0.869996][0.534328,0.578875,0][-1.30313,0.19476,1.29003][-0.665655,0.337351,0.665655][0.588469,0.578875,0][-1.38229,-0.170875,1.36919][-0.691923,0.206119,0.691923][0.595908,0.613232,0][-1.38229,-0.170875,1.36919][-0.691923,0.206119,0.691923][0.595908,0.613232,0][-0.770721,-0.170875,1.77851][-0.37428,0.205791,0.904193][0.53844,0.613232,0][-0.726958,0.19476,1.67565][-0.360047,0.336859,0.869996][0.534328,0.578875,0][-0.770721,-0.170875,1.77851][-0.37428,0.205791,0.904193][0.53844,0.613232,0][-1.38229,-0.170875,1.36919][-0.691923,0.206119,0.691923][0.595908,0.613232,0][-1.41232,-0.515747,1.39922][-0.705542,-0.0664797,0.705543][0.598729,0.645638,0][-1.41232,-0.515747,1.39922][-0.705542,-0.0664797,0.705543][0.598729,0.645638,0][-0.787321,-0.515747,1.81752][-0.381752,-0.0663697,0.921879][0.54,0.645638,0][-0.770721,-0.170875,1.77851][-0.37428,0.205791,0.904193][0.53844,0.613232,0][-1.06291,0.960631,1.04981][-0.614804,0.493996,0.614804][0.368899,0.288659,0][-1.37664,0.960631,0.581058][-0.803725,0.493369,0.332585][0.412946,0.288659,0][-1.54334,0.574235,0.651984][-0.845438,0.403545,0.349835][0.406282,0.324967,0][-1.54334,0.574235,0.651984][-0.845438,0.403545,0.349835][0.406282,0.324967,0][-1.19121,0.574235,1.17811][-0.646802,0.404096,0.646802][0.356844,0.324967,0][-1.06291,0.960631,1.04981][-0.614804,0.493996,0.614804][0.368899,0.288659,0][-1.19121,0.574235,1.17811][-0.646802,0.404096,0.646802][0.356844,0.324967,0][-1.54334,0.574235,0.651984][-0.845438,0.403545,0.349835][0.406282,0.324967,0][-1.68876,0.19476,0.713855][-0.869996,0.336859,0.360047][0.400468,0.360625,0][-1.68876,0.19476,0.713855][-0.869996,0.336859,0.360047][0.400468,0.360625,0][-1.30313,0.19476,1.29003][-0.665655,0.337351,0.665655][0.346327,0.360625,0][-1.19121,0.574235,1.17811][-0.646802,0.404096,0.646802][0.356844,0.324967,0][-1.30313,0.19476,1.29003][-0.665655,0.337351,0.665655][0.346327,0.360625,0][-1.68876,0.19476,0.713855][-0.869996,0.336859,0.360047][0.400468,0.360625,0][-1.79161,-0.170875,0.757618][-0.904193,0.205791,0.37428][0.396356,0.394983,0][-1.79161,-0.170875,0.757618][-0.904193,0.205791,0.37428][0.396356,0.394983,0][-1.38229,-0.170875,1.36919][-0.691923,0.206119,0.691923][0.338888,0.394983,0][-1.30313,0.19476,1.29003][-0.665655,0.337351,0.665655][0.346327,0.360625,0][-1.38229,-0.170875,1.36919][-0.691923,0.206119,0.691923][0.338888,0.394983,0][-1.79161,-0.170875,0.757618][-0.904193,0.205791,0.37428][0.396356,0.394983,0][-1.83063,-0.515747,0.774218][-0.921879,-0.0663697,0.381752][0.394796,0.427389,0][-1.83063,-0.515747,0.774218][-0.921879,-0.0663697,0.381752][0.394796,0.427389,0][-1.41232,-0.515747,1.39922][-0.705542,-0.0664797,0.705543][0.336067,0.427389,0][-1.38229,-0.170875,1.36919][-0.691923,0.206119,0.691923][0.338888,0.394983,0][-1.37664,0.960631,0.581058][-0.803725,0.493369,0.332585][0.412946,0.288659,0][-1.49106,0.960631,0.00157972][-0.870301,0.492521,0][0.467398,0.288659,0][-1.67176,0.574235,0.00157972][-0.915321,0.402725,0][0.467398,0.324967,0][-1.67176,0.574235,0.00157972][-0.915321,0.402725,0][0.467398,0.324967,0][-1.54334,0.574235,0.651984][-0.845438,0.403545,0.349835][0.406282,0.324967,0][-1.37664,0.960631,0.581058][-0.803725,0.493369,0.332585][0.412946,0.288659,0][-1.54334,0.574235,0.651984][-0.845438,0.403545,0.349835][0.406282,0.324967,0][-1.67176,0.574235,0.00157972][-0.915321,0.402725,0][0.467398,0.324967,0][-1.8294,0.19476,0.00157973][-0.941808,0.336151,1.5067e-007][0.467398,0.360625,0][-1.8294,0.19476,0.00157973][-0.941808,0.336151,1.5067e-007][0.467398,0.360625,0][-1.68876,0.19476,0.713855][-0.869996,0.336859,0.360047][0.400468,0.360625,0][-1.54334,0.574235,0.651984][-0.845438,0.403545,0.349835][0.406282,0.324967,0][-1.68876,0.19476,0.713855][-0.869996,0.336859,0.360047][0.400468,0.360625,0][-1.8294,0.19476,0.00157973][-0.941808,0.336151,1.5067e-007][0.467398,0.360625,0][-1.94089,-0.170875,0.00157974][-0.97869,0.205342,0][0.467398,0.394983,0][-1.94089,-0.170875,0.00157974][-0.97869,0.205342,0][0.467398,0.394983,0][-1.79161,-0.170875,0.757618][-0.904193,0.205791,0.37428][0.396356,0.394983,0][-1.68876,0.19476,0.713855][-0.869996,0.336859,0.360047][0.400468,0.360625,0][-1.79161,-0.170875,0.757618][-0.904193,0.205791,0.37428][0.396356,0.394983,0][-1.94089,-0.170875,0.00157974][-0.97869,0.205342,0][0.467398,0.394983,0][-1.98319,-0.515747,0.00157974][-0.997804,-0.0662395,0][0.467398,0.427389,0][-1.98319,-0.515747,0.00157974][-0.997804,-0.0662395,0][0.467398,0.427389,0][-1.83063,-0.515747,0.774218][-0.921879,-0.0663697,0.381752][0.394796,0.427389,0][-1.79161,-0.170875,0.757618][-0.904193,0.205791,0.37428][0.396356,0.394983,0][-1.49106,0.960631,0.00157972][-0.870301,0.492521,0][0.467398,0.288659,0][-1.37664,0.960631,-0.577899][-0.803725,0.493369,-0.332584][0.521849,0.288659,0][-1.54334,0.574235,-0.648824][-0.845438,0.403546,-0.349835][0.528514,0.324967,0][-1.54334,0.574235,-0.648824][-0.845438,0.403546,-0.349835][0.528514,0.324967,0][-1.67176,0.574235,0.00157972][-0.915321,0.402725,0][0.467398,0.324967,0][-1.49106,0.960631,0.00157972][-0.870301,0.492521,0][0.467398,0.288659,0][-1.67176,0.574235,0.00157972][-0.915321,0.402725,0][0.467398,0.324967,0][-1.54334,0.574235,-0.648824][-0.845438,0.403546,-0.349835][0.528514,0.324967,0][-1.68876,0.19476,-0.710696][-0.869996,0.336859,-0.360047][0.534328,0.360625,0][-1.68876,0.19476,-0.710696][-0.869996,0.336859,-0.360047][0.534328,0.360625,0][-1.8294,0.19476,0.00157973][-0.941808,0.336151,1.5067e-007][0.467398,0.360625,0][-1.67176,0.574235,0.00157972][-0.915321,0.402725,0][0.467398,0.324967,0][-1.8294,0.19476,0.00157973][-0.941808,0.336151,1.5067e-007][0.467398,0.360625,0][-1.68876,0.19476,-0.710696][-0.869996,0.336859,-0.360047][0.534328,0.360625,0][-1.79161,-0.170875,-0.754458][-0.904193,0.205791,-0.37428][0.53844,0.394983,0][-1.79161,-0.170875,-0.754458][-0.904193,0.205791,-0.37428][0.53844,0.394983,0][-1.94089,-0.170875,0.00157974][-0.97869,0.205342,0][0.467398,0.394983,0][-1.8294,0.19476,0.00157973][-0.941808,0.336151,1.5067e-007][0.467398,0.360625,0][-1.94089,-0.170875,0.00157974][-0.97869,0.205342,0][0.467398,0.394983,0][-1.79161,-0.170875,-0.754458][-0.904193,0.205791,-0.37428][0.53844,0.394983,0][-1.83063,-0.515747,-0.771058][-0.921879,-0.0663698,-0.381752][0.54,0.427389,0][-1.83063,-0.515747,-0.771058][-0.921879,-0.0663698,-0.381752][0.54,0.427389,0][-1.98319,-0.515747,0.00157974][-0.997804,-0.0662395,0][0.467398,0.427389,0][-1.94089,-0.170875,0.00157974][-0.97869,0.205342,0][0.467398,0.394983,0][-1.37664,0.960631,-0.577899][-0.803725,0.493369,-0.332584][0.521849,0.288659,0][-1.06291,0.960631,-1.04665][-0.614804,0.493996,-0.614804][0.565896,0.288659,0][-1.19121,0.574235,-1.17495][-0.646802,0.404096,-0.646802][0.577952,0.324967,0][-1.19121,0.574235,-1.17495][-0.646802,0.404096,-0.646802][0.577952,0.324967,0][-1.54334,0.574235,-0.648824][-0.845438,0.403546,-0.349835][0.528514,0.324967,0][-1.37664,0.960631,-0.577899][-0.803725,0.493369,-0.332584][0.521849,0.288659,0][-1.54334,0.574235,-0.648824][-0.845438,0.403546,-0.349835][0.528514,0.324967,0][-1.19121,0.574235,-1.17495][-0.646802,0.404096,-0.646802][0.577952,0.324967,0][-1.30313,0.19476,-1.28687][-0.665655,0.337351,-0.665655][0.588469,0.360625,0][-1.30313,0.19476,-1.28687][-0.665655,0.337351,-0.665655][0.588469,0.360625,0][-1.68876,0.19476,-0.710696][-0.869996,0.336859,-0.360047][0.534328,0.360625,0][-1.54334,0.574235,-0.648824][-0.845438,0.403546,-0.349835][0.528514,0.324967,0][-1.68876,0.19476,-0.710696][-0.869996,0.336859,-0.360047][0.534328,0.360625,0][-1.30313,0.19476,-1.28687][-0.665655,0.337351,-0.665655][0.588469,0.360625,0][-1.38229,-0.170875,-1.36603][-0.691923,0.206119,-0.691923][0.595908,0.394983,0][-1.38229,-0.170875,-1.36603][-0.691923,0.206119,-0.691923][0.595908,0.394983,0][-1.79161,-0.170875,-0.754458][-0.904193,0.205791,-0.37428][0.53844,0.394983,0][-1.68876,0.19476,-0.710696][-0.869996,0.336859,-0.360047][0.534328,0.360625,0][-1.79161,-0.170875,-0.754458][-0.904193,0.205791,-0.37428][0.53844,0.394983,0][-1.38229,-0.170875,-1.36603][-0.691923,0.206119,-0.691923][0.595908,0.394983,0][-1.41232,-0.515747,-1.39606][-0.705543,-0.0664797,-0.705542][0.598729,0.427389,0][-1.41232,-0.515747,-1.39606][-0.705543,-0.0664797,-0.705542][0.598729,0.427389,0][-1.83063,-0.515747,-0.771058][-0.921879,-0.0663698,-0.381752][0.54,0.427389,0][-1.79161,-0.170875,-0.754458][-0.904193,0.205791,-0.37428][0.53844,0.394983,0][-1.06291,0.960631,-1.04665][-0.614804,0.493996,-0.614804][0.640731,0.0168281,0][-0.594161,0.960631,-1.36038][-0.332585,0.49337,-0.803725][0.684777,0.0168281,0][-0.665087,0.574235,-1.52708][-0.349835,0.403546,-0.845438][0.678113,0.0531364,0][-0.665087,0.574235,-1.52708][-0.349835,0.403546,-0.845438][0.678113,0.0531364,0][-1.19121,0.574235,-1.17495][-0.646802,0.404096,-0.646802][0.628675,0.0531364,0][-1.06291,0.960631,-1.04665][-0.614804,0.493996,-0.614804][0.640731,0.0168281,0][-1.19121,0.574235,-1.17495][-0.646802,0.404096,-0.646802][0.628675,0.0531364,0][-0.665087,0.574235,-1.52708][-0.349835,0.403546,-0.845438][0.678113,0.0531364,0][-0.726958,0.19476,-1.67249][-0.360047,0.336859,-0.869996][0.672299,0.0887944,0][-0.726958,0.19476,-1.67249][-0.360047,0.336859,-0.869996][0.672299,0.0887944,0][-1.30313,0.19476,-1.28687][-0.665655,0.337351,-0.665655][0.618158,0.0887944,0][-1.19121,0.574235,-1.17495][-0.646802,0.404096,-0.646802][0.628675,0.0531364,0][-1.30313,0.19476,-1.28687][-0.665655,0.337351,-0.665655][0.618158,0.0887944,0][-0.726958,0.19476,-1.67249][-0.360047,0.336859,-0.869996][0.672299,0.0887944,0][-0.770721,-0.170875,-1.77535][-0.37428,0.205791,-0.904193][0.668187,0.123152,0][-0.770721,-0.170875,-1.77535][-0.37428,0.205791,-0.904193][0.668187,0.123152,0][-1.38229,-0.170875,-1.36603][-0.691923,0.206119,-0.691923][0.610719,0.123152,0][-1.30313,0.19476,-1.28687][-0.665655,0.337351,-0.665655][0.618158,0.0887944,0][-1.38229,-0.170875,-1.36603][-0.691923,0.206119,-0.691923][0.610719,0.123152,0][-0.770721,-0.170875,-1.77535][-0.37428,0.205791,-0.904193][0.668187,0.123152,0][-0.787321,-0.515747,-1.81437][-0.381752,-0.0663697,-0.921879][0.666627,0.155558,0][-0.787321,-0.515747,-1.81437][-0.381752,-0.0663697,-0.921879][0.666627,0.155558,0][-1.41232,-0.515747,-1.39606][-0.705543,-0.0664797,-0.705542][0.607898,0.155558,0][-1.38229,-0.170875,-1.36603][-0.691923,0.206119,-0.691923][0.610719,0.123152,0][-0.594161,0.960631,-1.36038][-0.332585,0.49337,-0.803725][0.684777,0.0168281,0][-0.0146829,0.960631,-1.4748][0,0.492521,-0.870301][0.739229,0.0168281,0][-0.0146829,0.574235,-1.6555][0,0.402725,-0.915321][0.739229,0.0531364,0][-0.0146829,0.574235,-1.6555][0,0.402725,-0.915321][0.739229,0.0531364,0][-0.665087,0.574235,-1.52708][-0.349835,0.403546,-0.845438][0.678113,0.0531364,0][-0.594161,0.960631,-1.36038][-0.332585,0.49337,-0.803725][0.684777,0.0168281,0][-0.665087,0.574235,-1.52708][-0.349835,0.403546,-0.845438][0.678113,0.0531364,0][-0.0146829,0.574235,-1.6555][0,0.402725,-0.915321][0.739229,0.0531364,0][-0.0146829,0.19476,-1.81313][0,0.336151,-0.941808][0.739229,0.0887944,0][-0.0146829,0.19476,-1.81313][0,0.336151,-0.941808][0.739229,0.0887944,0][-0.726958,0.19476,-1.67249][-0.360047,0.336859,-0.869996][0.672299,0.0887944,0][-0.665087,0.574235,-1.52708][-0.349835,0.403546,-0.845438][0.678113,0.0531364,0][-0.726958,0.19476,-1.67249][-0.360047,0.336859,-0.869996][0.672299,0.0887944,0][-0.0146829,0.19476,-1.81313][0,0.336151,-0.941808][0.739229,0.0887944,0][-0.0146829,-0.170874,-1.92463][0,0.205342,-0.97869][0.739229,0.123152,0][-0.0146829,-0.170874,-1.92463][0,0.205342,-0.97869][0.739229,0.123152,0][-0.770721,-0.170875,-1.77535][-0.37428,0.205791,-0.904193][0.668187,0.123152,0][-0.726958,0.19476,-1.67249][-0.360047,0.336859,-0.869996][0.672299,0.0887944,0][-0.770721,-0.170875,-1.77535][-0.37428,0.205791,-0.904193][0.668187,0.123152,0][-0.0146829,-0.170874,-1.92463][0,0.205342,-0.97869][0.739229,0.123152,0][-0.0146829,-0.515747,-1.96692][0,-0.0662395,-0.997804][0.739229,0.155558,0][-0.0146829,-0.515747,-1.96692][0,-0.0662395,-0.997804][0.739229,0.155558,0][-0.787321,-0.515747,-1.81437][-0.381752,-0.0663697,-0.921879][0.666627,0.155558,0][-0.770721,-0.170875,-1.77535][-0.37428,0.205791,-0.904193][0.668187,0.123152,0][-0.0146829,-0.515747,-1.96692][0,-0.0662395,-0.997804][0.739229,0.155558,0][0.757955,-0.515747,-1.81437][0.381752,-0.0663696,-0.921879][0.811831,0.155558,0][0.727774,-0.807562,-1.74343][0.344179,-0.43618,-0.831437][0.808995,0.182979,0][0.727774,-0.807562,-1.74343][0.344179,-0.43618,-0.831437][0.808995,0.182979,0][-0.0146829,-0.807562,-1.89003][0,-0.435513,-0.900182][0.739229,0.182979,0][-0.0146829,-0.515747,-1.96692][0,-0.0662395,-0.997804][0.739229,0.155558,0][-0.0146829,-0.807562,-1.89003][0,-0.435513,-0.900182][0.739229,0.182979,0][0.727774,-0.807562,-1.74343][0.344179,-0.43618,-0.831437][0.808995,0.182979,0][0.661375,-1.02325,-1.58737][0.278594,-0.684666,-0.673512][0.802756,0.203247,0][0.661375,-1.02325,-1.58737][0.278594,-0.684666,-0.673512][0.802756,0.203247,0][-0.0146829,-1.02325,-1.72086][0,-0.683863,-0.729611][0.739229,0.203247,0][-0.0146829,-0.807562,-1.89003][0,-0.435513,-0.900182][0.739229,0.182979,0][-0.0146829,-1.02325,-1.72086][0,-0.683863,-0.729611][0.137922,0.327733,0][0.661375,-1.02325,-1.58737][0.278594,-0.684666,-0.673512][0.0779653,0.303275,0][0.594977,-1.16974,-1.43131][0.264874,-0.720924,-0.640399][0.0868931,0.290074,0][0.594977,-1.16974,-1.43131][0.264874,-0.720924,-0.640399][0.0868931,0.290074,0][-0.0146828,-1.16974,-1.55169][0,-0.720022,-0.693951][0.140961,0.31213,0][-0.0146829,-1.02325,-1.72086][0,-0.683863,-0.729611][0.137922,0.327733,0][-0.0146828,-1.16974,-1.55169][0,-0.720022,-0.693951][0.869299,0.756338,0][0.594977,-1.16974,-1.43131][0.264874,-0.720924,-0.640399][0.926587,0.756338,0][0.564796,-1.25394,-1.36038][0.303167,-0.608995,-0.732949][0.923751,0.76425,0][0.564796,-1.25394,-1.36038][0.303167,-0.608995,-0.732949][0.923751,0.76425,0][-0.0146828,-1.25394,-1.4748][0,-0.607984,-0.79395][0.869299,0.76425,0][-0.0146828,-1.16974,-1.55169][0,-0.720022,-0.693951][0.869299,0.756338,0][0.757955,-0.515747,-1.81437][0.381752,-0.0663696,-0.921879][0.811831,0.155558,0][1.38295,-0.515747,-1.39606][0.705542,-0.0664797,-0.705543][0.87056,0.155558,0][1.32836,-0.807562,-1.34146][0.636092,-0.436777,-0.636092][0.86543,0.182979,0][1.32836,-0.807562,-1.34146][0.636092,-0.436777,-0.636092][0.86543,0.182979,0][0.727774,-0.807562,-1.74343][0.344179,-0.43618,-0.831437][0.808995,0.182979,0][0.757955,-0.515747,-1.81437][0.381752,-0.0663696,-0.921879][0.811831,0.155558,0][0.727774,-0.807562,-1.74343][0.344179,-0.43618,-0.831437][0.101299,0.10902,0][1.32836,-0.807562,-1.34146][0.636092,-0.436777,-0.636092][0.168767,0.101299,0][1.20825,-1.02325,-1.22135][0.514965,-0.685289,-0.514965][0.168597,0.127096,0][1.20825,-1.02325,-1.22135][0.514965,-0.685289,-0.514965][0.168597,0.127096,0][0.661375,-1.02325,-1.58737][0.278594,-0.684666,-0.673512][0.107163,0.134127,0][0.727774,-0.807562,-1.74343][0.344179,-0.43618,-0.831437][0.101299,0.10902,0][0.661375,-1.02325,-1.58737][0.278594,-0.684666,-0.673512][0.0779653,0.303275,0][1.20825,-1.02325,-1.22135][0.514965,-0.685289,-0.514965][0.0341009,0.259691,0][1.08814,-1.16974,-1.10124][0.489651,-0.721446,-0.489651][0.0473368,0.250771,0][1.08814,-1.16974,-1.10124][0.489651,-0.721446,-0.489651][0.0473368,0.250771,0][0.594977,-1.16974,-1.43131][0.264874,-0.720924,-0.640399][0.0868931,0.290074,0][0.661375,-1.02325,-1.58737][0.278594,-0.684666,-0.673512][0.0779653,0.303275,0][0.594977,-1.16974,-1.43131][0.264874,-0.720924,-0.640399][0.112441,0.154121,0][1.08814,-1.16974,-1.10124][0.489651,-0.721446,-0.489651][0.167842,0.147781,0][1.03355,-1.25394,-1.04665][0.560555,-0.609554,-0.560555][0.167648,0.158484,0][1.03355,-1.25394,-1.04665][0.560555,-0.609554,-0.560555][0.167648,0.158484,0][0.564796,-1.25394,-1.36038][0.303167,-0.608995,-0.732949][0.11499,0.16451,0][0.594977,-1.16974,-1.43131][0.264874,-0.720924,-0.640399][0.112441,0.154121,0][1.38295,-0.515747,-1.39606][0.705542,-0.0664797,-0.705543][0.623731,0.427389,0][1.80126,-0.515747,-0.771058][0.921879,-0.0663695,-0.381752][0.68246,0.427389,0][1.73033,-0.807562,-0.740877][0.831437,-0.43618,-0.344179][0.685296,0.45481,0][1.73033,-0.807562,-0.740877][0.831437,-0.43618,-0.344179][0.685296,0.45481,0][1.32836,-0.807562,-1.34146][0.636092,-0.436777,-0.636092][0.628861,0.45481,0][1.38295,-0.515747,-1.39606][0.705542,-0.0664797,-0.705543][0.623731,0.427389,0][1.32836,-0.807562,-1.34146][0.636092,-0.436777,-0.636092][0.168767,0.101299,0][1.73033,-0.807562,-0.740877][0.831437,-0.43618,-0.344179][0.232939,0.109886,0][1.57427,-1.02325,-0.674478][0.673512,-0.684666,-0.278595][0.22703,0.134916,0][1.57427,-1.02325,-0.674478][0.673512,-0.684666,-0.278595][0.22703,0.134916,0][1.20825,-1.02325,-1.22135][0.514965,-0.685289,-0.514965][0.168597,0.127096,0][1.32836,-0.807562,-1.34146][0.636092,-0.436777,-0.636092][0.168767,0.101299,0][1.20825,-1.02325,-1.22135][0.514965,-0.685289,-0.514965][0.0341009,0.259691,0][1.57427,-1.02325,-0.674478][0.673512,-0.684666,-0.278595][0.0101666,0.202675,0][1.41821,-1.16974,-0.60808][0.640399,-0.720924,-0.264874][0.0257531,0.199355,0][1.41821,-1.16974,-0.60808][0.640399,-0.720924,-0.264874][0.0257531,0.199355,0][1.08814,-1.16974,-1.10124][0.489651,-0.721446,-0.489651][0.0473368,0.250771,0][1.20825,-1.02325,-1.22135][0.514965,-0.685289,-0.514965][0.0341009,0.259691,0][1.08814,-1.16974,-1.10124][0.489651,-0.721446,-0.489651][0.167842,0.147781,0][1.41821,-1.16974,-0.60808][0.640399,-0.720924,-0.264874][0.220536,0.154832,0][1.34728,-1.25394,-0.577899][0.732949,-0.608995,-0.303167][0.217733,0.165187,0][1.34728,-1.25394,-0.577899][0.732949,-0.608995,-0.303167][0.217733,0.165187,0][1.03355,-1.25394,-1.04665][0.560555,-0.609554,-0.560555][0.167648,0.158484,0][1.08814,-1.16974,-1.10124][0.489651,-0.721446,-0.489651][0.167842,0.147781,0][1.80126,-0.515747,-0.771058][0.921879,-0.0663695,-0.381752][0.68246,0.427389,0][1.95382,-0.515747,0.00157957][0.997804,-0.0662395,0][0.755063,0.427389,0][1.87693,-0.807562,0.00157957][0.900182,-0.435513,0][0.755063,0.45481,0][1.87693,-0.807562,0.00157957][0.900182,-0.435513,0][0.755063,0.45481,0][1.73033,-0.807562,-0.740877][0.831437,-0.43618,-0.344179][0.685296,0.45481,0][1.80126,-0.515747,-0.771058][0.921879,-0.0663695,-0.381752][0.68246,0.427389,0][1.73033,-0.807562,-0.740877][0.831437,-0.43618,-0.344179][0.685296,0.45481,0][1.87693,-0.807562,0.00157957][0.900182,-0.435513,0][0.755063,0.45481,0][1.70776,-1.02325,0.00157958][0.729611,-0.683863,0][0.755063,0.475078,0][1.70776,-1.02325,0.00157958][0.729611,-0.683863,0][0.755063,0.475078,0][1.57427,-1.02325,-0.674478][0.673512,-0.684666,-0.278595][0.691536,0.475078,0][1.73033,-0.807562,-0.740877][0.831437,-0.43618,-0.344179][0.685296,0.45481,0][1.57427,-1.02325,-0.674478][0.673512,-0.684666,-0.278595][0.0101666,0.202675,0][1.70776,-1.02325,0.00157958][0.729611,-0.683863,0][0.01,0.137922,0][1.53859,-1.16974,0.00157958][0.693951,-0.720022,0][0.0256029,0.140961,0][1.53859,-1.16974,0.00157958][0.693951,-0.720022,0][0.0256029,0.140961,0][1.41821,-1.16974,-0.60808][0.640399,-0.720924,-0.264874][0.0257531,0.199355,0][1.57427,-1.02325,-0.674478][0.673512,-0.684666,-0.278595][0.0101666,0.202675,0][1.41821,-1.16974,-0.60808][0.640399,-0.720924,-0.264874][0.812012,0.718329,0][1.53859,-1.16974,0.00157958][0.693951,-0.720022,0][0.869299,0.718329,0][1.4617,-1.25394,0.00157959][0.79395,-0.607984,0][0.869299,0.726241,0][1.4617,-1.25394,0.00157959][0.79395,-0.607984,0][0.869299,0.726241,0][1.34728,-1.25394,-0.577899][0.732949,-0.608995,-0.303167][0.814848,0.726241,0][1.41821,-1.16974,-0.60808][0.640399,-0.720924,-0.264874][0.812012,0.718329,0][1.95382,-0.515747,0.00157957][0.997804,-0.0662395,0][0.755063,0.427389,0][1.80126,-0.515747,0.774217][0.921879,-0.0663697,0.381752][0.827665,0.427389,0][1.73033,-0.807562,0.744036][0.831437,-0.43618,0.344179][0.824829,0.45481,0][1.73033,-0.807562,0.744036][0.831437,-0.43618,0.344179][0.824829,0.45481,0][1.87693,-0.807562,0.00157957][0.900182,-0.435513,0][0.755063,0.45481,0][1.95382,-0.515747,0.00157957][0.997804,-0.0662395,0][0.755063,0.427389,0][1.87693,-0.807562,0.00157957][0.900182,-0.435513,0][0.755063,0.45481,0][1.73033,-0.807562,0.744036][0.831437,-0.43618,0.344179][0.824829,0.45481,0][1.57427,-1.02325,0.677638][0.673512,-0.684665,0.278594][0.818589,0.475078,0][1.57427,-1.02325,0.677638][0.673512,-0.684665,0.278594][0.818589,0.475078,0][1.70776,-1.02325,0.00157958][0.729611,-0.683863,0][0.755063,0.475078,0][1.87693,-0.807562,0.00157957][0.900182,-0.435513,0][0.755063,0.45481,0][1.70776,-1.02325,0.00157958][0.729611,-0.683863,0][0.01,0.137922,0][1.57427,-1.02325,0.677638][0.673512,-0.684665,0.278594][0.0344577,0.0779653,0][1.41821,-1.16974,0.611239][0.640399,-0.720924,0.264874][0.0476585,0.0868931,0][1.41821,-1.16974,0.611239][0.640399,-0.720924,0.264874][0.0476585,0.0868931,0][1.53859,-1.16974,0.00157958][0.693951,-0.720022,0][0.0256029,0.140961,0][1.70776,-1.02325,0.00157958][0.729611,-0.683863,0][0.01,0.137922,0][1.53859,-1.16974,0.00157958][0.693951,-0.720022,0][0.869299,0.718329,0][1.41821,-1.16974,0.611239][0.640399,-0.720924,0.264874][0.926587,0.718329,0][1.34728,-1.25394,0.581058][0.732949,-0.608995,0.303167][0.923751,0.726241,0][1.34728,-1.25394,0.581058][0.732949,-0.608995,0.303167][0.923751,0.726241,0][1.4617,-1.25394,0.00157959][0.79395,-0.607984,0][0.869299,0.726241,0][1.53859,-1.16974,0.00157958][0.693951,-0.720022,0][0.869299,0.718329,0][1.80126,-0.515747,0.774217][0.921879,-0.0663697,0.381752][0.827665,0.427389,0][1.38295,-0.515747,1.39922][0.705543,-0.0664797,0.705542][0.886394,0.427389,0][1.32836,-0.807562,1.34462][0.636092,-0.436777,0.636092][0.881264,0.45481,0][1.32836,-0.807562,1.34462][0.636092,-0.436777,0.636092][0.881264,0.45481,0][1.73033,-0.807562,0.744036][0.831437,-0.43618,0.344179][0.824829,0.45481,0][1.80126,-0.515747,0.774217][0.921879,-0.0663697,0.381752][0.827665,0.427389,0][1.73033,-0.807562,0.744036][0.831437,-0.43618,0.344179][0.930005,0.556247,0][1.32836,-0.807562,1.34462][0.636092,-0.436777,0.636092][0.862536,0.563968,0][1.20825,-1.02325,1.22451][0.514965,-0.685289,0.514965][0.862706,0.538171,0][1.20825,-1.02325,1.22451][0.514965,-0.685289,0.514965][0.862706,0.538171,0][1.57427,-1.02325,0.677638][0.673512,-0.684665,0.278594][0.924141,0.53114,0][1.73033,-0.807562,0.744036][0.831437,-0.43618,0.344179][0.930005,0.556247,0][1.57427,-1.02325,0.677638][0.673512,-0.684665,0.278594][0.0344577,0.0779653,0][1.20825,-1.02325,1.22451][0.514965,-0.685289,0.514965][0.0780415,0.0341009,0][1.08814,-1.16974,1.1044][0.489651,-0.721446,0.489651][0.0869618,0.0473368,0][1.08814,-1.16974,1.1044][0.489651,-0.721446,0.489651][0.0869618,0.0473368,0][1.41821,-1.16974,0.611239][0.640399,-0.720924,0.264874][0.0476585,0.0868931,0][1.57427,-1.02325,0.677638][0.673512,-0.684665,0.278594][0.0344577,0.0779653,0][1.41821,-1.16974,0.611239][0.640399,-0.720924,0.264874][0.918862,0.511146,0][1.08814,-1.16974,1.1044][0.489651,-0.721446,0.489651][0.863461,0.517486,0][1.03355,-1.25394,1.04981][0.560555,-0.609554,0.560555][0.863655,0.506783,0][1.03355,-1.25394,1.04981][0.560555,-0.609554,0.560555][0.863655,0.506783,0][1.34728,-1.25394,0.581058][0.732949,-0.608995,0.303167][0.916314,0.500757,0][1.41821,-1.16974,0.611239][0.640399,-0.720924,0.264874][0.918862,0.511146,0][1.38295,-0.515747,1.39922][0.705543,-0.0664797,0.705542][0.336067,0.645638,0][0.757955,-0.515747,1.81752][0.381752,-0.0663697,0.921879][0.394796,0.645638,0][0.727774,-0.807562,1.74659][0.344179,-0.43618,0.831437][0.397632,0.673059,0][0.727774,-0.807562,1.74659][0.344179,-0.43618,0.831437][0.397632,0.673059,0][1.32836,-0.807562,1.34462][0.636092,-0.436777,0.636092][0.341197,0.673059,0][1.38295,-0.515747,1.39922][0.705543,-0.0664797,0.705542][0.336067,0.645638,0][1.32836,-0.807562,1.34462][0.636092,-0.436777,0.636092][0.862536,0.563968,0][0.727774,-0.807562,1.74659][0.344179,-0.43618,0.831437][0.798364,0.555381,0][0.661375,-1.02325,1.59053][0.278594,-0.684666,0.673512][0.804273,0.530351,0][0.661375,-1.02325,1.59053][0.278594,-0.684666,0.673512][0.804273,0.530351,0][1.20825,-1.02325,1.22451][0.514965,-0.685289,0.514965][0.862706,0.538171,0][1.32836,-0.807562,1.34462][0.636092,-0.436777,0.636092][0.862536,0.563968,0][1.20825,-1.02325,1.22451][0.514965,-0.685289,0.514965][0.0780415,0.0341009,0][0.661375,-1.02325,1.59053][0.278594,-0.684666,0.673512][0.135057,0.0101666,0][0.594977,-1.16974,1.43447][0.264874,-0.720924,0.640399][0.138378,0.0257531,0][0.594977,-1.16974,1.43447][0.264874,-0.720924,0.640399][0.138378,0.0257531,0][1.08814,-1.16974,1.1044][0.489651,-0.721446,0.489651][0.0869618,0.0473368,0][1.20825,-1.02325,1.22451][0.514965,-0.685289,0.514965][0.0780415,0.0341009,0][1.08814,-1.16974,1.1044][0.489651,-0.721446,0.489651][0.863461,0.517486,0][0.594977,-1.16974,1.43447][0.264874,-0.720924,0.640399][0.810767,0.510435,0][0.564796,-1.25394,1.36354][0.303167,-0.608995,0.732949][0.81357,0.50008,0][0.564796,-1.25394,1.36354][0.303167,-0.608995,0.732949][0.81357,0.50008,0][1.03355,-1.25394,1.04981][0.560555,-0.609554,0.560555][0.863655,0.506783,0][1.08814,-1.16974,1.1044][0.489651,-0.721446,0.489651][0.863461,0.517486,0][0.757955,-0.515747,1.81752][0.381752,-0.0663697,0.921879][0.394796,0.645638,0][-0.0146827,-0.515747,1.97008][0,-0.0662395,0.997804][0.467398,0.645638,0][-0.0146827,-0.807562,1.89319][0,-0.435513,0.900182][0.467398,0.673059,0][-0.0146827,-0.807562,1.89319][0,-0.435513,0.900182][0.467398,0.673059,0][0.727774,-0.807562,1.74659][0.344179,-0.43618,0.831437][0.397632,0.673059,0][0.757955,-0.515747,1.81752][0.381752,-0.0663697,0.921879][0.394796,0.645638,0][0.727774,-0.807562,1.74659][0.344179,-0.43618,0.831437][0.397632,0.673059,0][-0.0146827,-0.807562,1.89319][0,-0.435513,0.900182][0.467398,0.673059,0][-0.0146827,-1.02325,1.72402][0,-0.683863,0.729611][0.467398,0.693327,0][-0.0146827,-1.02325,1.72402][0,-0.683863,0.729611][0.467398,0.693327,0][0.661375,-1.02325,1.59053][0.278594,-0.684666,0.673512][0.403871,0.693327,0][0.727774,-0.807562,1.74659][0.344179,-0.43618,0.831437][0.397632,0.673059,0][0.661375,-1.02325,1.59053][0.278594,-0.684666,0.673512][0.135057,0.0101666,0][-0.0146827,-1.02325,1.72402][0,-0.683863,0.729611][0.19981,0.01,0][-0.0146827,-1.16974,1.55485][0,-0.720022,0.693951][0.196771,0.0256029,0][-0.0146827,-1.16974,1.55485][0,-0.720022,0.693951][0.196771,0.0256029,0][0.594977,-1.16974,1.43447][0.264874,-0.720924,0.640399][0.138378,0.0257531,0][0.661375,-1.02325,1.59053][0.278594,-0.684666,0.673512][0.135057,0.0101666,0][0.594977,-1.16974,1.43447][0.264874,-0.720924,0.640399][0.68241,0.814591,0][-0.0146827,-1.16974,1.55485][0,-0.720022,0.693951][0.739698,0.814591,0][-0.0146827,-1.25394,1.47796][0,-0.607984,0.79395][0.739698,0.822503,0][-0.0146827,-1.25394,1.47796][0,-0.607984,0.79395][0.739698,0.822503,0][0.564796,-1.25394,1.36354][0.303167,-0.608995,0.732949][0.685246,0.822503,0][0.594977,-1.16974,1.43447][0.264874,-0.720924,0.640399][0.68241,0.814591,0][-0.0146827,-0.515747,1.97008][0,-0.0662395,0.997804][0.467398,0.645638,0][-0.787321,-0.515747,1.81752][-0.381752,-0.0663697,0.921879][0.54,0.645638,0][-0.757139,-0.807563,1.74659][-0.344179,-0.43618,0.831437][0.537164,0.673059,0][-0.757139,-0.807563,1.74659][-0.344179,-0.43618,0.831437][0.537164,0.673059,0][-0.0146827,-0.807562,1.89319][0,-0.435513,0.900182][0.467398,0.673059,0][-0.0146827,-0.515747,1.97008][0,-0.0662395,0.997804][0.467398,0.645638,0][-0.0146827,-0.807562,1.89319][0,-0.435513,0.900182][0.467398,0.673059,0][-0.757139,-0.807563,1.74659][-0.344179,-0.43618,0.831437][0.537164,0.673059,0][-0.690741,-1.02325,1.59053][-0.278594,-0.684666,0.673512][0.530925,0.693327,0][-0.690741,-1.02325,1.59053][-0.278594,-0.684666,0.673512][0.530925,0.693327,0][-0.0146827,-1.02325,1.72402][0,-0.683863,0.729611][0.467398,0.693327,0][-0.0146827,-0.807562,1.89319][0,-0.435513,0.900182][0.467398,0.673059,0][-0.0146827,-1.02325,1.72402][0,-0.683863,0.729611][0.19981,0.01,0][-0.690741,-1.02325,1.59053][-0.278594,-0.684666,0.673512][0.259767,0.0344577,0][-0.624342,-1.16974,1.43447][-0.264874,-0.720924,0.640399][0.250839,0.0476585,0][-0.624342,-1.16974,1.43447][-0.264874,-0.720924,0.640399][0.250839,0.0476585,0][-0.0146827,-1.16974,1.55485][0,-0.720022,0.693951][0.196771,0.0256029,0][-0.0146827,-1.02325,1.72402][0,-0.683863,0.729611][0.19981,0.01,0][-0.0146827,-1.16974,1.55485][0,-0.720022,0.693951][0.739698,0.814591,0][-0.624342,-1.16974,1.43447][-0.264874,-0.720924,0.640399][0.796985,0.814591,0][-0.594161,-1.25394,1.36354][-0.303167,-0.608995,0.732949][0.794149,0.822503,0][-0.594161,-1.25394,1.36354][-0.303167,-0.608995,0.732949][0.794149,0.822503,0][-0.0146827,-1.25394,1.47796][0,-0.607984,0.79395][0.739698,0.822503,0][-0.0146827,-1.16974,1.55485][0,-0.720022,0.693951][0.739698,0.814591,0][-0.787321,-0.515747,1.81752][-0.381752,-0.0663697,0.921879][0.54,0.645638,0][-1.41232,-0.515747,1.39922][-0.705542,-0.0664797,0.705543][0.598729,0.645638,0][-1.35773,-0.807563,1.34462][-0.636092,-0.436777,0.636092][0.593599,0.673059,0][-1.35773,-0.807563,1.34462][-0.636092,-0.436777,0.636092][0.593599,0.673059,0][-0.757139,-0.807563,1.74659][-0.344179,-0.43618,0.831437][0.537164,0.673059,0][-0.787321,-0.515747,1.81752][-0.381752,-0.0663697,0.921879][0.54,0.645638,0][-0.757139,-0.807563,1.74659][-0.344179,-0.43618,0.831437][0.467707,0.928677,0][-1.35773,-0.807563,1.34462][-0.636092,-0.436777,0.636092][0.400239,0.936398,0][-1.23762,-1.02325,1.22451][-0.514965,-0.685289,0.514965][0.400408,0.910601,0][-1.23762,-1.02325,1.22451][-0.514965,-0.685289,0.514965][0.400408,0.910601,0][-0.690741,-1.02325,1.59053][-0.278594,-0.684666,0.673512][0.461843,0.90357,0][-0.757139,-0.807563,1.74659][-0.344179,-0.43618,0.831437][0.467707,0.928677,0][-0.690741,-1.02325,1.59053][-0.278594,-0.684666,0.673512][0.259767,0.0344577,0][-1.23762,-1.02325,1.22451][-0.514965,-0.685289,0.514965][0.303632,0.0780415,0][-1.11751,-1.16974,1.1044][-0.489651,-0.721446,0.489651][0.290396,0.0869618,0][-1.11751,-1.16974,1.1044][-0.489651,-0.721446,0.489651][0.290396,0.0869618,0][-0.624342,-1.16974,1.43447][-0.264874,-0.720924,0.640399][0.250839,0.0476585,0][-0.690741,-1.02325,1.59053][-0.278594,-0.684666,0.673512][0.259767,0.0344577,0][-0.624342,-1.16974,1.43447][-0.264874,-0.720924,0.640399][0.456564,0.883576,0][-1.11751,-1.16974,1.1044][-0.489651,-0.721446,0.489651][0.401163,0.889916,0][-1.06291,-1.25394,1.04981][-0.560555,-0.609554,0.560555][0.401358,0.879213,0][-1.06291,-1.25394,1.04981][-0.560555,-0.609554,0.560555][0.401358,0.879213,0][-0.594161,-1.25394,1.36354][-0.303167,-0.608995,0.732949][0.454016,0.873186,0][-0.624342,-1.16974,1.43447][-0.264874,-0.720924,0.640399][0.456564,0.883576,0][-1.41232,-0.515747,1.39922][-0.705542,-0.0664797,0.705543][0.336067,0.427389,0][-1.83063,-0.515747,0.774218][-0.921879,-0.0663697,0.381752][0.394796,0.427389,0][-1.75969,-0.807563,0.744036][-0.831437,-0.43618,0.344179][0.397632,0.45481,0][-1.75969,-0.807563,0.744036][-0.831437,-0.43618,0.344179][0.397632,0.45481,0][-1.35773,-0.807563,1.34462][-0.636092,-0.436777,0.636092][0.341197,0.45481,0][-1.41232,-0.515747,1.39922][-0.705542,-0.0664797,0.705543][0.336067,0.427389,0][-1.35773,-0.807563,1.34462][-0.636092,-0.436777,0.636092][0.400239,0.936398,0][-1.75969,-0.807563,0.744036][-0.831437,-0.43618,0.344179][0.336067,0.92781,0][-1.60363,-1.02325,0.677638][-0.673512,-0.684666,0.278594][0.341975,0.902781,0][-1.60363,-1.02325,0.677638][-0.673512,-0.684666,0.278594][0.341975,0.902781,0][-1.23762,-1.02325,1.22451][-0.514965,-0.685289,0.514965][0.400408,0.910601,0][-1.35773,-0.807563,1.34462][-0.636092,-0.436777,0.636092][0.400239,0.936398,0][-1.23762,-1.02325,1.22451][-0.514965,-0.685289,0.514965][0.303632,0.0780415,0][-1.60363,-1.02325,0.677638][-0.673512,-0.684666,0.278594][0.327566,0.135057,0][-1.44758,-1.16974,0.611239][-0.640399,-0.720924,0.264874][0.311979,0.138378,0][-1.44758,-1.16974,0.611239][-0.640399,-0.720924,0.264874][0.311979,0.138378,0][-1.11751,-1.16974,1.1044][-0.489651,-0.721446,0.489651][0.290396,0.0869618,0][-1.23762,-1.02325,1.22451][-0.514965,-0.685289,0.514965][0.303632,0.0780415,0][-1.11751,-1.16974,1.1044][-0.489651,-0.721446,0.489651][0.401163,0.889916,0][-1.44758,-1.16974,0.611239][-0.640399,-0.720924,0.264874][0.348469,0.882864,0][-1.37664,-1.25394,0.581058][-0.732949,-0.608995,0.303167][0.351272,0.87251,0][-1.37664,-1.25394,0.581058][-0.732949,-0.608995,0.303167][0.351272,0.87251,0][-1.06291,-1.25394,1.04981][-0.560555,-0.609554,0.560555][0.401358,0.879213,0][-1.11751,-1.16974,1.1044][-0.489651,-0.721446,0.489651][0.401163,0.889916,0][-1.83063,-0.515747,0.774218][-0.921879,-0.0663697,0.381752][0.394796,0.427389,0][-1.98319,-0.515747,0.00157974][-0.997804,-0.0662395,0][0.467398,0.427389,0][-1.90629,-0.807563,0.00157973][-0.900182,-0.435513,0][0.467398,0.45481,0][-1.90629,-0.807563,0.00157973][-0.900182,-0.435513,0][0.467398,0.45481,0][-1.75969,-0.807563,0.744036][-0.831437,-0.43618,0.344179][0.397632,0.45481,0][-1.83063,-0.515747,0.774218][-0.921879,-0.0663697,0.381752][0.394796,0.427389,0][-1.75969,-0.807563,0.744036][-0.831437,-0.43618,0.344179][0.397632,0.45481,0][-1.90629,-0.807563,0.00157973][-0.900182,-0.435513,0][0.467398,0.45481,0][-1.73712,-1.02325,0.00157973][-0.729611,-0.683863,0][0.467398,0.475078,0][-1.73712,-1.02325,0.00157973][-0.729611,-0.683863,0][0.467398,0.475078,0][-1.60363,-1.02325,0.677638][-0.673512,-0.684666,0.278594][0.403871,0.475078,0][-1.75969,-0.807563,0.744036][-0.831437,-0.43618,0.344179][0.397632,0.45481,0][-1.60363,-1.02325,0.677638][-0.673512,-0.684666,0.278594][0.327566,0.135057,0][-1.73712,-1.02325,0.00157973][-0.729611,-0.683863,0][0.327733,0.19981,0][-1.56796,-1.16974,0.00157972][-0.693951,-0.720022,0][0.31213,0.196771,0][-1.56796,-1.16974,0.00157972][-0.693951,-0.720022,0][0.31213,0.196771,0][-1.44758,-1.16974,0.611239][-0.640399,-0.720924,0.264874][0.311979,0.138378,0][-1.60363,-1.02325,0.677638][-0.673512,-0.684666,0.278594][0.327566,0.135057,0][-1.44758,-1.16974,0.611239][-0.640399,-0.720924,0.264874][0.649108,0.228249,0][-1.56796,-1.16974,0.00157972][-0.693951,-0.720022,0][0.706396,0.228249,0][-1.49106,-1.25394,0.00157972][-0.79395,-0.607984,0][0.706396,0.236161,0][-1.49106,-1.25394,0.00157972][-0.79395,-0.607984,0][0.706396,0.236161,0][-1.37664,-1.25394,0.581058][-0.732949,-0.608995,0.303167][0.651944,0.236161,0][-1.44758,-1.16974,0.611239][-0.640399,-0.720924,0.264874][0.649108,0.228249,0][-1.98319,-0.515747,0.00157974][-0.997804,-0.0662395,0][0.467398,0.427389,0][-1.83063,-0.515747,-0.771058][-0.921879,-0.0663698,-0.381752][0.54,0.427389,0][-1.75969,-0.807563,-0.740877][-0.831437,-0.43618,-0.344179][0.537164,0.45481,0][-1.75969,-0.807563,-0.740877][-0.831437,-0.43618,-0.344179][0.537164,0.45481,0][-1.90629,-0.807563,0.00157973][-0.900182,-0.435513,0][0.467398,0.45481,0][-1.98319,-0.515747,0.00157974][-0.997804,-0.0662395,0][0.467398,0.427389,0][-1.90629,-0.807563,0.00157973][-0.900182,-0.435513,0][0.467398,0.45481,0][-1.75969,-0.807563,-0.740877][-0.831437,-0.43618,-0.344179][0.537164,0.45481,0][-1.60363,-1.02325,-0.674478][-0.673512,-0.684666,-0.278594][0.530925,0.475078,0][-1.60363,-1.02325,-0.674478][-0.673512,-0.684666,-0.278594][0.530925,0.475078,0][-1.73712,-1.02325,0.00157973][-0.729611,-0.683863,0][0.467398,0.475078,0][-1.90629,-0.807563,0.00157973][-0.900182,-0.435513,0][0.467398,0.45481,0][-1.73712,-1.02325,0.00157973][-0.729611,-0.683863,0][0.327733,0.19981,0][-1.60363,-1.02325,-0.674478][-0.673512,-0.684666,-0.278594][0.303275,0.259767,0][-1.44758,-1.16974,-0.60808][-0.640399,-0.720924,-0.264874][0.290074,0.250839,0][-1.44758,-1.16974,-0.60808][-0.640399,-0.720924,-0.264874][0.290074,0.250839,0][-1.56796,-1.16974,0.00157972][-0.693951,-0.720022,0][0.31213,0.196771,0][-1.73712,-1.02325,0.00157973][-0.729611,-0.683863,0][0.327733,0.19981,0][-1.56796,-1.16974,0.00157972][-0.693951,-0.720022,0][0.706396,0.228249,0][-1.44758,-1.16974,-0.60808][-0.640399,-0.720924,-0.264874][0.763684,0.228249,0][-1.37664,-1.25394,-0.577899][-0.732949,-0.608995,-0.303167][0.760848,0.236161,0][-1.37664,-1.25394,-0.577899][-0.732949,-0.608995,-0.303167][0.760848,0.236161,0][-1.49106,-1.25394,0.00157972][-0.79395,-0.607984,0][0.706396,0.236161,0][-1.56796,-1.16974,0.00157972][-0.693951,-0.720022,0][0.706396,0.228249,0][-1.83063,-0.515747,-0.771058][-0.921879,-0.0663698,-0.381752][0.54,0.427389,0][-1.41232,-0.515747,-1.39606][-0.705543,-0.0664797,-0.705542][0.598729,0.427389,0][-1.35773,-0.807563,-1.34146][-0.636092,-0.436777,-0.636092][0.593599,0.45481,0][-1.35773,-0.807563,-1.34146][-0.636092,-0.436777,-0.636092][0.593599,0.45481,0][-1.75969,-0.807563,-0.740877][-0.831437,-0.43618,-0.344179][0.537164,0.45481,0][-1.83063,-0.515747,-0.771058][-0.921879,-0.0663698,-0.381752][0.54,0.427389,0][-1.75969,-0.807563,-0.740877][-0.831437,-0.43618,-0.344179][0.101299,0.181242,0][-1.35773,-0.807563,-1.34146][-0.636092,-0.436777,-0.636092][0.168767,0.173521,0][-1.23762,-1.02325,-1.22135][-0.514965,-0.685289,-0.514965][0.168597,0.199318,0][-1.23762,-1.02325,-1.22135][-0.514965,-0.685289,-0.514965][0.168597,0.199318,0][-1.60363,-1.02325,-0.674478][-0.673512,-0.684666,-0.278594][0.107163,0.206349,0][-1.75969,-0.807563,-0.740877][-0.831437,-0.43618,-0.344179][0.101299,0.181242,0][-1.60363,-1.02325,-0.674478][-0.673512,-0.684666,-0.278594][0.303275,0.259767,0][-1.23762,-1.02325,-1.22135][-0.514965,-0.685289,-0.514965][0.259691,0.303632,0][-1.11751,-1.16974,-1.10124][-0.489651,-0.721446,-0.489651][0.250771,0.290396,0][-1.11751,-1.16974,-1.10124][-0.489651,-0.721446,-0.489651][0.250771,0.290396,0][-1.44758,-1.16974,-0.60808][-0.640399,-0.720924,-0.264874][0.290074,0.250839,0][-1.60363,-1.02325,-0.674478][-0.673512,-0.684666,-0.278594][0.303275,0.259767,0][-1.44758,-1.16974,-0.60808][-0.640399,-0.720924,-0.264874][0.112441,0.226343,0][-1.11751,-1.16974,-1.10124][-0.489651,-0.721446,-0.489651][0.167842,0.220003,0][-1.06291,-1.25394,-1.04665][-0.560555,-0.609554,-0.560555][0.167648,0.230706,0][-1.06291,-1.25394,-1.04665][-0.560555,-0.609554,-0.560555][0.167648,0.230706,0][-1.37664,-1.25394,-0.577899][-0.732949,-0.608995,-0.303167][0.11499,0.236733,0][-1.44758,-1.16974,-0.60808][-0.640399,-0.720924,-0.264874][0.112441,0.226343,0][-1.41232,-0.515747,-1.39606][-0.705543,-0.0664797,-0.705542][0.607898,0.155558,0][-0.787321,-0.515747,-1.81437][-0.381752,-0.0663697,-0.921879][0.666627,0.155558,0][-0.75714,-0.807563,-1.74343][-0.344179,-0.43618,-0.831437][0.669463,0.182979,0][-0.75714,-0.807563,-1.74343][-0.344179,-0.43618,-0.831437][0.669463,0.182979,0][-1.35773,-0.807563,-1.34146][-0.636092,-0.436777,-0.636092][0.613028,0.182979,0][-1.41232,-0.515747,-1.39606][-0.705543,-0.0664797,-0.705542][0.607898,0.155558,0][-1.35773,-0.807563,-1.34146][-0.636092,-0.436777,-0.636092][0.168767,0.173521,0][-0.75714,-0.807563,-1.74343][-0.344179,-0.43618,-0.831437][0.232939,0.182109,0][-0.690741,-1.02325,-1.58737][-0.278594,-0.684666,-0.673512][0.22703,0.207138,0][-0.690741,-1.02325,-1.58737][-0.278594,-0.684666,-0.673512][0.22703,0.207138,0][-1.23762,-1.02325,-1.22135][-0.514965,-0.685289,-0.514965][0.168597,0.199318,0][-1.35773,-0.807563,-1.34146][-0.636092,-0.436777,-0.636092][0.168767,0.173521,0][-1.23762,-1.02325,-1.22135][-0.514965,-0.685289,-0.514965][0.259691,0.303632,0][-0.690741,-1.02325,-1.58737][-0.278594,-0.684666,-0.673512][0.202675,0.327566,0][-0.624342,-1.16974,-1.43131][-0.264874,-0.720924,-0.640399][0.199355,0.311979,0][-0.624342,-1.16974,-1.43131][-0.264874,-0.720924,-0.640399][0.199355,0.311979,0][-1.11751,-1.16974,-1.10124][-0.489651,-0.721446,-0.489651][0.250771,0.290396,0][-1.23762,-1.02325,-1.22135][-0.514965,-0.685289,-0.514965][0.259691,0.303632,0][-1.11751,-1.16974,-1.10124][-0.489651,-0.721446,-0.489651][0.167842,0.220003,0][-0.624342,-1.16974,-1.43131][-0.264874,-0.720924,-0.640399][0.220536,0.227054,0][-0.594161,-1.25394,-1.36038][-0.303167,-0.608995,-0.732949][0.217733,0.237409,0][-0.594161,-1.25394,-1.36038][-0.303167,-0.608995,-0.732949][0.217733,0.237409,0][-1.06291,-1.25394,-1.04665][-0.560555,-0.609554,-0.560555][0.167648,0.230706,0][-1.11751,-1.16974,-1.10124][-0.489651,-0.721446,-0.489651][0.167842,0.220003,0][-0.787321,-0.515747,-1.81437][-0.381752,-0.0663697,-0.921879][0.666627,0.155558,0][-0.0146829,-0.515747,-1.96692][0,-0.0662395,-0.997804][0.739229,0.155558,0][-0.0146829,-0.807562,-1.89003][0,-0.435513,-0.900182][0.739229,0.182979,0][-0.0146829,-0.807562,-1.89003][0,-0.435513,-0.900182][0.739229,0.182979,0][-0.75714,-0.807563,-1.74343][-0.344179,-0.43618,-0.831437][0.669463,0.182979,0][-0.787321,-0.515747,-1.81437][-0.381752,-0.0663697,-0.921879][0.666627,0.155558,0][-0.75714,-0.807563,-1.74343][-0.344179,-0.43618,-0.831437][0.669463,0.182979,0][-0.0146829,-0.807562,-1.89003][0,-0.435513,-0.900182][0.739229,0.182979,0][-0.0146829,-1.02325,-1.72086][0,-0.683863,-0.729611][0.739229,0.203247,0][-0.0146829,-1.02325,-1.72086][0,-0.683863,-0.729611][0.739229,0.203247,0][-0.690741,-1.02325,-1.58737][-0.278594,-0.684666,-0.673512][0.675702,0.203247,0][-0.75714,-0.807563,-1.74343][-0.344179,-0.43618,-0.831437][0.669463,0.182979,0][-0.690741,-1.02325,-1.58737][-0.278594,-0.684666,-0.673512][0.202675,0.327566,0][-0.0146829,-1.02325,-1.72086][0,-0.683863,-0.729611][0.137922,0.327733,0][-0.0146828,-1.16974,-1.55169][0,-0.720022,-0.693951][0.140961,0.31213,0][-0.0146828,-1.16974,-1.55169][0,-0.720022,-0.693951][0.140961,0.31213,0][-0.624342,-1.16974,-1.43131][-0.264874,-0.720924,-0.640399][0.199355,0.311979,0][-0.690741,-1.02325,-1.58737][-0.278594,-0.684666,-0.673512][0.202675,0.327566,0][-0.624342,-1.16974,-1.43131][-0.264874,-0.720924,-0.640399][0.812012,0.756338,0][-0.0146828,-1.16974,-1.55169][0,-0.720022,-0.693951][0.869299,0.756338,0][-0.0146828,-1.25394,-1.4748][0,-0.607984,-0.79395][0.869299,0.76425,0][-0.0146828,-1.25394,-1.4748][0,-0.607984,-0.79395][0.869299,0.76425,0][-0.594161,-1.25394,-1.36038][-0.303167,-0.608995,-0.732949][0.814848,0.76425,0][-0.624342,-1.16974,-1.43131][-0.264874,-0.720924,-0.640399][0.812012,0.756338,0][-0.0146828,-1.25394,-1.4748][0,-0.607984,-0.79395][0.869299,0.76425,0][0.564796,-1.25394,-1.36038][0.303167,-0.608995,-0.732949][0.923751,0.76425,0][0.551667,-1.30815,-1.32952][0.238217,-0.7818,-0.57623][0.922517,0.769343,0][0.551667,-1.30815,-1.32952][0.238217,-0.7818,-0.57623][0.922517,0.769343,0][-0.0146828,-1.30815,-1.44135][0,-0.781537,-0.623859][0.869299,0.769343,0][-0.0146828,-1.25394,-1.4748][0,-0.607984,-0.79395][0.869299,0.76425,0][-0.0146828,-1.30815,-1.44135][0,-0.781537,-0.623859][0.117163,0.602238,0][0.551667,-1.30815,-1.32952][0.238217,-0.7818,-0.57623][0.0669361,0.58175,0][0.481495,-1.35544,-1.1646][0.0696175,-0.983212,-0.168664][0.0763711,0.567799,0][0.481495,-1.35544,-1.1646][0.0696175,-0.983212,-0.168664][0.0763711,0.567799,0][-0.0146828,-1.35544,-1.26257][0,-0.983157,-0.182766][0.120375,0.585749,0][-0.0146828,-1.30815,-1.44135][0,-0.781537,-0.623859][0.117163,0.602238,0][-0.0146828,-1.35544,-1.26257][0,-0.983157,-0.182766][0.120375,0.585749,0][0.481495,-1.35544,-1.1646][0.0696175,-0.983212,-0.168664][0.0763711,0.567799,0][0.333147,-1.38889,-0.815931][0.132991,-6.26716,-0.322745][0.0963177,0.538305,0][0.333147,-1.38889,-0.815931][0.132991,-6.26716,-0.322745][0.0963177,0.538305,0][-0.0146828,-1.38889,-0.884611][0.034454,-3.1199,-0.174493][0.127165,0.550889,0][-0.0146828,-1.35544,-1.26257][0,-0.983157,-0.182766][0.120375,0.585749,0][-0.0146828,-1.38889,-0.884611][0.034454,-3.1199,-0.174493][0.127165,0.550889,0][0.333147,-1.38889,-0.815931][0.132991,-6.26716,-0.322745][0.0963177,0.538305,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.0663155,0.678437,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.0663155,0.678437,0][-0.0146828,-1.38889,-0.884611][0.034454,-3.1199,-0.174493][0.0651233,0.764474,0][0.564796,-1.25394,-1.36038][0.303167,-0.608995,-0.732949][0.923751,0.76425,0][1.03355,-1.25394,-1.04665][0.560555,-0.609554,-0.560555][0.967798,0.76425,0][1.0098,-1.30815,-1.0229][0.440416,-0.782347,-0.440416][0.965566,0.769343,0][1.0098,-1.30815,-1.0229][0.440416,-0.782347,-0.440416][0.965566,0.769343,0][0.551667,-1.30815,-1.32952][0.238217,-0.7818,-0.57623][0.922517,0.769343,0][0.564796,-1.25394,-1.36038][0.303167,-0.608995,-0.732949][0.923751,0.76425,0][0.551667,-1.30815,-1.32952][0.238217,-0.7818,-0.57623][0.0669361,0.58175,0][1.0098,-1.30815,-1.0229][0.440416,-0.782347,-0.440416][0.0301899,0.545239,0][0.882863,-1.35544,-0.895966][0.128757,-0.983282,-0.128757][0.0441778,0.535811,0][0.882863,-1.35544,-0.895966][0.128757,-0.983282,-0.128757][0.0441778,0.535811,0][0.481495,-1.35544,-1.1646][0.0696175,-0.983212,-0.168664][0.0763711,0.567799,0][0.551667,-1.30815,-1.32952][0.238217,-0.7818,-0.57623][0.0669361,0.58175,0][0.481495,-1.35544,-1.1646][0.0696175,-0.983212,-0.168664][0.0763711,0.567799,0][0.882863,-1.35544,-0.895966][0.128757,-0.983282,-0.128757][0.0441778,0.535811,0][0.614512,-1.38889,-0.627615][0.246459,-6.26724,-0.246648][0.0737496,0.515882,0][0.614512,-1.38889,-0.627615][0.246459,-6.26724,-0.246648][0.0737496,0.515882,0][0.333147,-1.38889,-0.815931][0.132991,-6.26716,-0.322745][0.0963177,0.538305,0][0.481495,-1.35544,-1.1646][0.0696175,-0.983212,-0.168664][0.0763711,0.567799,0][0.333147,-1.38889,-0.815931][0.132991,-6.26716,-0.322745][0.0963177,0.538305,0][0.614512,-1.38889,-0.627615][0.246459,-6.26724,-0.246648][0.0737496,0.515882,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.850065,0.887212,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.850065,0.887212,0][0.333147,-1.38889,-0.815931][0.132991,-6.26716,-0.322745][0.935658,0.886705,0][1.03355,-1.25394,-1.04665][0.560555,-0.609554,-0.560555][0.770801,0.726241,0][1.34728,-1.25394,-0.577899][0.732949,-0.608995,-0.303167][0.814848,0.726241,0][1.31642,-1.30815,-0.56477][0.57623,-0.7818,-0.238217][0.816081,0.731335,0][1.31642,-1.30815,-0.56477][0.57623,-0.7818,-0.238217][0.816081,0.731335,0][1.0098,-1.30815,-1.0229][0.440416,-0.782347,-0.440416][0.773032,0.731335,0][1.03355,-1.25394,-1.04665][0.560555,-0.609554,-0.560555][0.770801,0.726241,0][1.0098,-1.30815,-1.0229][0.440416,-0.782347,-0.440416][0.0301899,0.545239,0][1.31642,-1.30815,-0.56477][0.57623,-0.7818,-0.238217][0.0101395,0.497475,0][1.15149,-1.35544,-0.494599][0.168664,-0.983212,-0.0696175][0.0266117,0.493966,0][1.15149,-1.35544,-0.494599][0.168664,-0.983212,-0.0696175][0.0266117,0.493966,0][0.882863,-1.35544,-0.895966][0.128757,-0.983282,-0.128757][0.0441778,0.535811,0][1.0098,-1.30815,-1.0229][0.440416,-0.782347,-0.440416][0.0301899,0.545239,0][0.882863,-1.35544,-0.895966][0.128757,-0.983282,-0.128757][0.0441778,0.535811,0][1.15149,-1.35544,-0.494599][0.168664,-0.983212,-0.0696175][0.0266117,0.493966,0][0.802828,-1.38889,-0.34625][0.323546,-6.26715,-0.133595][0.0614355,0.486547,0][0.802828,-1.38889,-0.34625][0.323546,-6.26715,-0.133595][0.0614355,0.486547,0][0.614512,-1.38889,-0.627615][0.246459,-6.26724,-0.246648][0.0737496,0.515882,0][0.882863,-1.35544,-0.895966][0.128757,-0.983282,-0.128757][0.0441778,0.535811,0][0.614512,-1.38889,-0.627615][0.246459,-6.26724,-0.246648][0.0737496,0.515882,0][0.802828,-1.38889,-0.34625][0.323546,-6.26715,-0.133595][0.0614355,0.486547,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.863199,0.815716,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.863199,0.815716,0][0.614512,-1.38889,-0.627615][0.246459,-6.26724,-0.246648][0.947973,0.814591,0][1.34728,-1.25394,-0.577899][0.732949,-0.608995,-0.303167][0.814848,0.726241,0][1.4617,-1.25394,0.00157959][0.79395,-0.607984,0][0.869299,0.726241,0][1.42825,-1.30815,0.00157959][0.623859,-0.781537,0][0.869299,0.731335,0][1.42825,-1.30815,0.00157959][0.623859,-0.781537,0][0.869299,0.731335,0][1.31642,-1.30815,-0.56477][0.57623,-0.7818,-0.238217][0.816081,0.731335,0][1.34728,-1.25394,-0.577899][0.732949,-0.608995,-0.303167][0.814848,0.726241,0][1.31642,-1.30815,-0.56477][0.57623,-0.7818,-0.238217][0.0101395,0.497475,0][1.42825,-1.30815,0.00157959][0.623859,-0.781537,0][0.01,0.44323,0][1.24947,-1.35544,0.0015796][0.182766,-0.983157,0][0.0264895,0.446442,0][1.24947,-1.35544,0.0015796][0.182766,-0.983157,0][0.0264895,0.446442,0][1.15149,-1.35544,-0.494599][0.168664,-0.983212,-0.0696175][0.0266117,0.493966,0][1.31642,-1.30815,-0.56477][0.57623,-0.7818,-0.238217][0.0101395,0.497475,0][1.15149,-1.35544,-0.494599][0.168664,-0.983212,-0.0696175][0.0266117,0.493966,0][1.24947,-1.35544,0.0015796][0.182766,-0.983157,0][0.0264895,0.446442,0][0.871508,-1.38889,0.00157961][0.351088,-6.26711,-0.000140612][0.0613498,0.453232,0][0.871508,-1.38889,0.00157961][0.351088,-6.26711,-0.000140612][0.0613498,0.453232,0][0.802828,-1.38889,-0.34625][0.323546,-6.26715,-0.133595][0.0614355,0.486547,0][1.15149,-1.35544,-0.494599][0.168664,-0.983212,-0.0696175][0.0266117,0.493966,0][0.802828,-1.38889,-0.34625][0.323546,-6.26715,-0.133595][0.0614355,0.486547,0][0.871508,-1.38889,0.00157961][0.351088,-6.26711,-0.000140612][0.0613498,0.453232,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.268009,0.181564,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.268009,0.181564,0][0.802828,-1.38889,-0.34625][0.323546,-6.26715,-0.133595][0.266661,0.098038,0][1.4617,-1.25394,0.00157959][0.79395,-0.607984,0][0.869299,0.726241,0][1.34728,-1.25394,0.581058][0.732949,-0.608995,0.303167][0.923751,0.726241,0][1.31642,-1.30815,0.567929][0.57623,-0.7818,0.238217][0.922517,0.731335,0][1.31642,-1.30815,0.567929][0.57623,-0.7818,0.238217][0.922517,0.731335,0][1.42825,-1.30815,0.00157959][0.623859,-0.781537,0][0.869299,0.731335,0][1.4617,-1.25394,0.00157959][0.79395,-0.607984,0][0.869299,0.726241,0][1.42825,-1.30815,0.00157959][0.623859,-0.781537,0][0.01,0.44323,0][1.31642,-1.30815,0.567929][0.57623,-0.7818,0.238217][0.0304888,0.393003,0][1.15149,-1.35544,0.497758][0.168664,-0.983212,0.0696175][0.0444397,0.402438,0][1.15149,-1.35544,0.497758][0.168664,-0.983212,0.0696175][0.0444397,0.402438,0][1.24947,-1.35544,0.0015796][0.182766,-0.983157,0][0.0264895,0.446442,0][1.42825,-1.30815,0.00157959][0.623859,-0.781537,0][0.01,0.44323,0][1.24947,-1.35544,0.0015796][0.182766,-0.983157,0][0.0264895,0.446442,0][1.15149,-1.35544,0.497758][0.168664,-0.983212,0.0696175][0.0444397,0.402438,0][0.802828,-1.38889,0.349409][0.324594,-6.26713,0.133751][0.0739332,0.422384,0][0.802828,-1.38889,0.349409][0.324594,-6.26713,0.133751][0.0739332,0.422384,0][0.871508,-1.38889,0.00157961][0.351088,-6.26711,-0.000140612][0.0613498,0.453232,0][1.24947,-1.35544,0.0015796][0.182766,-0.983157,0][0.0264895,0.446442,0][0.871508,-1.38889,0.00157961][0.351088,-6.26711,-0.000140612][0.0613498,0.453232,0][0.802828,-1.38889,0.349409][0.324594,-6.26713,0.133751][0.0739332,0.422384,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.99,0.688083,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.99,0.688083,0][0.871508,-1.38889,0.00157961][0.351088,-6.26711,-0.000140612][0.907859,0.687628,0][1.34728,-1.25394,0.581058][0.732949,-0.608995,0.303167][0.923751,0.726241,0][1.03355,-1.25394,1.04981][0.560555,-0.609554,0.560555][0.967798,0.726241,0][1.0098,-1.30815,1.02606][0.440416,-0.782347,0.440416][0.965566,0.731335,0][1.0098,-1.30815,1.02606][0.440416,-0.782347,0.440416][0.965566,0.731335,0][1.31642,-1.30815,0.567929][0.57623,-0.7818,0.238217][0.922517,0.731335,0][1.34728,-1.25394,0.581058][0.732949,-0.608995,0.303167][0.923751,0.726241,0][1.31642,-1.30815,0.567929][0.57623,-0.7818,0.238217][0.0304888,0.393003,0][1.0098,-1.30815,1.02606][0.440416,-0.782347,0.440416][0.067,0.356256,0][0.882863,-1.35544,0.899125][0.128757,-0.983282,0.128757][0.0764271,0.370244,0][0.882863,-1.35544,0.899125][0.128757,-0.983282,0.128757][0.0764271,0.370244,0][1.15149,-1.35544,0.497758][0.168664,-0.983212,0.0696175][0.0444397,0.402438,0][1.31642,-1.30815,0.567929][0.57623,-0.7818,0.238217][0.0304888,0.393003,0][1.15149,-1.35544,0.497758][0.168664,-0.983212,0.0696175][0.0444397,0.402438,0][0.882863,-1.35544,0.899125][0.128757,-0.983282,0.128757][0.0764271,0.370244,0][0.614512,-1.38889,0.630775][0.247922,-6.26722,0.247838][0.0963569,0.399816,0][0.614512,-1.38889,0.630775][0.247922,-6.26722,0.247838][0.0963569,0.399816,0][0.802828,-1.38889,0.349409][0.324594,-6.26713,0.133751][0.0739332,0.422384,0][1.15149,-1.35544,0.497758][0.168664,-0.983212,0.0696175][0.0444397,0.402438,0][0.802828,-1.38889,0.349409][0.324594,-6.26713,0.133751][0.0739332,0.422384,0][0.614512,-1.38889,0.630775][0.247922,-6.26722,0.247838][0.0963569,0.399816,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.895562,0.243455,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.895562,0.243455,0][0.802828,-1.38889,0.349409][0.324594,-6.26713,0.133751][0.976905,0.242947,0][1.03355,-1.25394,1.04981][0.560555,-0.609554,0.560555][0.641199,0.822503,0][0.564796,-1.25394,1.36354][0.303167,-0.608995,0.732949][0.685246,0.822503,0][0.551667,-1.30815,1.33268][0.238217,-0.7818,0.57623][0.68648,0.827597,0][0.551667,-1.30815,1.33268][0.238217,-0.7818,0.57623][0.68648,0.827597,0][1.0098,-1.30815,1.02606][0.440416,-0.782347,0.440416][0.643431,0.827597,0][1.03355,-1.25394,1.04981][0.560555,-0.609554,0.560555][0.641199,0.822503,0][1.0098,-1.30815,1.02606][0.440416,-0.782347,0.440416][0.067,0.356256,0][0.551667,-1.30815,1.33268][0.238217,-0.7818,0.57623][0.114763,0.336206,0][0.481496,-1.35544,1.16776][0.0696175,-0.983212,0.168664][0.118272,0.352678,0][0.481496,-1.35544,1.16776][0.0696175,-0.983212,0.168664][0.118272,0.352678,0][0.882863,-1.35544,0.899125][0.128757,-0.983282,0.128757][0.0764271,0.370244,0][1.0098,-1.30815,1.02606][0.440416,-0.782347,0.440416][0.067,0.356256,0][0.882863,-1.35544,0.899125][0.128757,-0.983282,0.128757][0.0764271,0.370244,0][0.481496,-1.35544,1.16776][0.0696175,-0.983212,0.168664][0.118272,0.352678,0][0.333147,-1.38889,0.81909][0.134017,-6.26713,0.32495][0.125691,0.387502,0][0.333147,-1.38889,0.81909][0.134017,-6.26713,0.32495][0.125691,0.387502,0][0.614512,-1.38889,0.630775][0.247922,-6.26722,0.247838][0.0963569,0.399816,0][0.882863,-1.35544,0.899125][0.128757,-0.983282,0.128757][0.0764271,0.370244,0][0.614512,-1.38889,0.630775][0.247922,-6.26722,0.247838][0.0963569,0.399816,0][0.333147,-1.38889,0.81909][0.134017,-6.26713,0.32495][0.125691,0.387502,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.79704,0.946826,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.79704,0.946826,0][0.614512,-1.38889,0.630775][0.247922,-6.26722,0.247838][0.716208,0.946364,0][0.564796,-1.25394,1.36354][0.303167,-0.608995,0.732949][0.685246,0.822503,0][-0.0146827,-1.25394,1.47796][0,-0.607984,0.79395][0.739698,0.822503,0][-0.0146827,-1.30815,1.44451][0,-0.781537,0.623859][0.739698,0.827597,0][-0.0146827,-1.30815,1.44451][0,-0.781537,0.623859][0.739698,0.827597,0][0.551667,-1.30815,1.33268][0.238217,-0.7818,0.57623][0.68648,0.827597,0][0.564796,-1.25394,1.36354][0.303167,-0.608995,0.732949][0.685246,0.822503,0][0.551667,-1.30815,1.33268][0.238217,-0.7818,0.57623][0.114763,0.336206,0][-0.0146827,-1.30815,1.44451][0,-0.781537,0.623859][0.169009,0.336067,0][-0.0146827,-1.35544,1.26573][0,-0.983157,0.182766][0.165797,0.352556,0][-0.0146827,-1.35544,1.26573][0,-0.983157,0.182766][0.165797,0.352556,0][0.481496,-1.35544,1.16776][0.0696175,-0.983212,0.168664][0.118272,0.352678,0][0.551667,-1.30815,1.33268][0.238217,-0.7818,0.57623][0.114763,0.336206,0][0.481496,-1.35544,1.16776][0.0696175,-0.983212,0.168664][0.118272,0.352678,0][-0.0146827,-1.35544,1.26573][0,-0.983157,0.182766][0.165797,0.352556,0][-0.0146827,-1.38889,0.88777][-6.11508e-005,-6.2671,0.35188][0.159007,0.387416,0][-0.0146827,-1.38889,0.88777][-6.11508e-005,-6.2671,0.35188][0.159007,0.387416,0][0.333147,-1.38889,0.81909][0.134017,-6.26713,0.32495][0.125691,0.387502,0][0.481496,-1.35544,1.16776][0.0696175,-0.983212,0.168664][0.118272,0.352678,0][0.333147,-1.38889,0.81909][0.134017,-6.26713,0.32495][0.125691,0.387502,0][-0.0146827,-1.38889,0.88777][-6.11508e-005,-6.2671,0.35188][0.159007,0.387416,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.0830345,0.098038,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.0830345,0.098038,0][0.333147,-1.38889,0.81909][0.134017,-6.26713,0.32495][0.0814382,0.1785,0][-0.0146827,-1.25394,1.47796][0,-0.607984,0.79395][0.739698,0.822503,0][-0.594161,-1.25394,1.36354][-0.303167,-0.608995,0.732949][0.794149,0.822503,0][-0.581032,-1.30815,1.33268][-0.238216,-0.781801,0.57623][0.792916,0.827597,0][-0.581032,-1.30815,1.33268][-0.238216,-0.781801,0.57623][0.792916,0.827597,0][-0.0146827,-1.30815,1.44451][0,-0.781537,0.623859][0.739698,0.827597,0][-0.0146827,-1.25394,1.47796][0,-0.607984,0.79395][0.739698,0.822503,0][-0.0146827,-1.30815,1.44451][0,-0.781537,0.623859][0.169009,0.336067,0][-0.581032,-1.30815,1.33268][-0.238216,-0.781801,0.57623][0.219236,0.356555,0][-0.510861,-1.35544,1.16776][-0.0696175,-0.983212,0.168664][0.209801,0.370506,0][-0.510861,-1.35544,1.16776][-0.0696175,-0.983212,0.168664][0.209801,0.370506,0][-0.0146827,-1.35544,1.26573][0,-0.983157,0.182766][0.165797,0.352556,0][-0.0146827,-1.30815,1.44451][0,-0.781537,0.623859][0.169009,0.336067,0][-0.0146827,-1.35544,1.26573][0,-0.983157,0.182766][0.165797,0.352556,0][-0.510861,-1.35544,1.16776][-0.0696175,-0.983212,0.168664][0.209801,0.370506,0][-0.362512,-1.38889,0.81909][-0.133946,-6.26713,0.324487][0.189854,0.4,0][-0.362512,-1.38889,0.81909][-0.133946,-6.26713,0.324487][0.189854,0.4,0][-0.0146827,-1.38889,0.88777][-6.11508e-005,-6.2671,0.35188][0.159007,0.387416,0][-0.0146827,-1.35544,1.26573][0,-0.983157,0.182766][0.165797,0.352556,0][-0.0146827,-1.38889,0.88777][-6.11508e-005,-6.2671,0.35188][0.159007,0.387416,0][-0.362512,-1.38889,0.81909][-0.133946,-6.26713,0.324487][0.189854,0.4,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.221987,0.980371,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.221987,0.980371,0][-0.0146827,-1.38889,0.88777][-6.11508e-005,-6.2671,0.35188][0.302494,0.979178,0][-0.594161,-1.25394,1.36354][-0.303167,-0.608995,0.732949][0.794149,0.822503,0][-1.06291,-1.25394,1.04981][-0.560555,-0.609554,0.560555][0.838196,0.822503,0][-1.03916,-1.30815,1.02606][-0.440416,-0.782347,0.440416][0.835965,0.827597,0][-1.03916,-1.30815,1.02606][-0.440416,-0.782347,0.440416][0.835965,0.827597,0][-0.581032,-1.30815,1.33268][-0.238216,-0.781801,0.57623][0.792916,0.827597,0][-0.594161,-1.25394,1.36354][-0.303167,-0.608995,0.732949][0.794149,0.822503,0][-0.581032,-1.30815,1.33268][-0.238216,-0.781801,0.57623][0.219236,0.356555,0][-1.03916,-1.30815,1.02606][-0.440416,-0.782347,0.440416][0.255982,0.393067,0][-0.912228,-1.35544,0.899125][-0.128757,-0.983282,0.128757][0.241994,0.402494,0][-0.912228,-1.35544,0.899125][-0.128757,-0.983282,0.128757][0.241994,0.402494,0][-0.510861,-1.35544,1.16776][-0.0696175,-0.983212,0.168664][0.209801,0.370506,0][-0.581032,-1.30815,1.33268][-0.238216,-0.781801,0.57623][0.219236,0.356555,0][-0.510861,-1.35544,1.16776][-0.0696175,-0.983212,0.168664][0.209801,0.370506,0][-0.912228,-1.35544,0.899125][-0.128757,-0.983282,0.128757][0.241994,0.402494,0][-0.643878,-1.38889,0.630775][-0.247398,-6.26723,0.247199][0.212422,0.422424,0][-0.643878,-1.38889,0.630775][-0.247398,-6.26723,0.247199][0.212422,0.422424,0][-0.362512,-1.38889,0.81909][-0.133946,-6.26713,0.324487][0.189854,0.4,0][-0.510861,-1.35544,1.16776][-0.0696175,-0.983212,0.168664][0.209801,0.370506,0][-0.362512,-1.38889,0.81909][-0.133946,-6.26713,0.324487][0.189854,0.4,0][-0.643878,-1.38889,0.630775][-0.247398,-6.26723,0.247199][0.212422,0.422424,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.797633,0.920812,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.797633,0.920812,0][-0.362512,-1.38889,0.81909][-0.133946,-6.26713,0.324487][0.716208,0.921362,0][-1.06291,-1.25394,1.04981][-0.560555,-0.609554,0.560555][0.607898,0.236161,0][-1.37664,-1.25394,0.581058][-0.732949,-0.608995,0.303167][0.651944,0.236161,0][-1.34578,-1.30815,0.567929][-0.57623,-0.7818,0.238217][0.653178,0.241255,0][-1.34578,-1.30815,0.567929][-0.57623,-0.7818,0.238217][0.653178,0.241255,0][-1.03916,-1.30815,1.02606][-0.440416,-0.782347,0.440416][0.610129,0.241255,0][-1.06291,-1.25394,1.04981][-0.560555,-0.609554,0.560555][0.607898,0.236161,0][-1.03916,-1.30815,1.02606][-0.440416,-0.782347,0.440416][0.255982,0.393067,0][-1.34578,-1.30815,0.567929][-0.57623,-0.7818,0.238217][0.276032,0.44083,0][-1.18086,-1.35544,0.497758][-0.168664,-0.983212,0.0696175][0.25956,0.444339,0][-1.18086,-1.35544,0.497758][-0.168664,-0.983212,0.0696175][0.25956,0.444339,0][-0.912228,-1.35544,0.899125][-0.128757,-0.983282,0.128757][0.241994,0.402494,0][-1.03916,-1.30815,1.02606][-0.440416,-0.782347,0.440416][0.255982,0.393067,0][-0.912228,-1.35544,0.899125][-0.128757,-0.983282,0.128757][0.241994,0.402494,0][-1.18086,-1.35544,0.497758][-0.168664,-0.983212,0.0696175][0.25956,0.444339,0][-0.832193,-1.38889,0.349409][-0.323639,-6.26715,0.133311][0.224736,0.451758,0][-0.832193,-1.38889,0.349409][-0.323639,-6.26715,0.133311][0.224736,0.451758,0][-0.643878,-1.38889,0.630775][-0.247398,-6.26723,0.247199][0.212422,0.422424,0][-0.912228,-1.35544,0.899125][-0.128757,-0.983282,0.128757][0.241994,0.402494,0][-0.643878,-1.38889,0.630775][-0.247398,-6.26723,0.247199][0.212422,0.422424,0][-0.832193,-1.38889,0.349409][-0.323639,-6.26715,0.133311][0.224736,0.451758,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.601565,0.974484,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.601565,0.974484,0][-0.643878,-1.38889,0.630775][-0.247398,-6.26723,0.247199][0.519036,0.975653,0][-1.37664,-1.25394,0.581058][-0.732949,-0.608995,0.303167][0.651944,0.236161,0][-1.49106,-1.25394,0.00157972][-0.79395,-0.607984,0][0.706396,0.236161,0][-1.45761,-1.30815,0.00157971][-0.623859,-0.781537,0][0.706396,0.241255,0][-1.45761,-1.30815,0.00157971][-0.623859,-0.781537,0][0.706396,0.241255,0][-1.34578,-1.30815,0.567929][-0.57623,-0.7818,0.238217][0.653178,0.241255,0][-1.37664,-1.25394,0.581058][-0.732949,-0.608995,0.303167][0.651944,0.236161,0][-1.34578,-1.30815,0.567929][-0.57623,-0.7818,0.238217][0.276032,0.44083,0][-1.45761,-1.30815,0.00157971][-0.623859,-0.781537,0][0.276172,0.495075,0][-1.27883,-1.35544,0.00157971][-0.182766,-0.983157,0][0.259682,0.491863,0][-1.27883,-1.35544,0.00157971][-0.182766,-0.983157,0][0.259682,0.491863,0][-1.18086,-1.35544,0.497758][-0.168664,-0.983212,0.0696175][0.25956,0.444339,0][-1.34578,-1.30815,0.567929][-0.57623,-0.7818,0.238217][0.276032,0.44083,0][-1.18086,-1.35544,0.497758][-0.168664,-0.983212,0.0696175][0.25956,0.444339,0][-1.27883,-1.35544,0.00157971][-0.182766,-0.983157,0][0.259682,0.491863,0][-0.900873,-1.38889,0.00157969][-0.349975,-6.26713,-0.000132875][0.224822,0.485073,0][-0.900873,-1.38889,0.00157969][-0.349975,-6.26713,-0.000132875][0.224822,0.485073,0][-0.832193,-1.38889,0.349409][-0.323639,-6.26715,0.133311][0.224736,0.451758,0][-1.18086,-1.35544,0.497758][-0.168664,-0.983212,0.0696175][0.25956,0.444339,0][-0.832193,-1.38889,0.349409][-0.323639,-6.26715,0.133311][0.224736,0.451758,0][-0.900873,-1.38889,0.00157969][-0.349975,-6.26713,-0.000132875][0.224822,0.485073,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.237528,0.761962,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.237528,0.761962,0][-0.832193,-1.38889,0.349409][-0.323639,-6.26715,0.133311][0.236141,0.678437,0][-1.49106,-1.25394,0.00157972][-0.79395,-0.607984,0][0.706396,0.236161,0][-1.37664,-1.25394,-0.577899][-0.732949,-0.608995,-0.303167][0.760848,0.236161,0][-1.34578,-1.30815,-0.56477][-0.57623,-0.7818,-0.238217][0.759614,0.241255,0][-1.34578,-1.30815,-0.56477][-0.57623,-0.7818,-0.238217][0.759614,0.241255,0][-1.45761,-1.30815,0.00157971][-0.623859,-0.781537,0][0.706396,0.241255,0][-1.49106,-1.25394,0.00157972][-0.79395,-0.607984,0][0.706396,0.236161,0][-1.45761,-1.30815,0.00157971][-0.623859,-0.781537,0][0.276172,0.495075,0][-1.34578,-1.30815,-0.56477][-0.57623,-0.7818,-0.238217][0.255683,0.545302,0][-1.18086,-1.35544,-0.494599][-0.168664,-0.983212,-0.0696175][0.241732,0.535867,0][-1.18086,-1.35544,-0.494599][-0.168664,-0.983212,-0.0696175][0.241732,0.535867,0][-1.27883,-1.35544,0.00157971][-0.182766,-0.983157,0][0.259682,0.491863,0][-1.45761,-1.30815,0.00157971][-0.623859,-0.781537,0][0.276172,0.495075,0][-1.27883,-1.35544,0.00157971][-0.182766,-0.983157,0][0.259682,0.491863,0][-1.18086,-1.35544,-0.494599][-0.168664,-0.983212,-0.0696175][0.241732,0.535867,0][-0.832193,-1.38889,-0.34625][-0.322649,-6.26716,-0.133168][0.212239,0.515921,0][-0.832193,-1.38889,-0.34625][-0.322649,-6.26716,-0.133168][0.212239,0.515921,0][-0.900873,-1.38889,0.00157969][-0.349975,-6.26713,-0.000132875][0.224822,0.485073,0][-1.27883,-1.35544,0.00157971][-0.182766,-0.983157,0][0.259682,0.491863,0][-0.900873,-1.38889,0.00157969][-0.349975,-6.26713,-0.000132875][0.224822,0.485073,0][-0.832193,-1.38889,-0.34625][-0.322649,-6.26716,-0.133168][0.212239,0.515921,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.882857,0.688175,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.882857,0.688175,0][-0.900873,-1.38889,0.00157969][-0.349975,-6.26713,-0.000132875][0.798364,0.687628,0][-1.37664,-1.25394,-0.577899][-0.732949,-0.608995,-0.303167][0.760848,0.236161,0][-1.06291,-1.25394,-1.04665][-0.560555,-0.609554,-0.560555][0.804895,0.236161,0][-1.03916,-1.30815,-1.0229][-0.440416,-0.782347,-0.440416][0.802663,0.241255,0][-1.03916,-1.30815,-1.0229][-0.440416,-0.782347,-0.440416][0.802663,0.241255,0][-1.34578,-1.30815,-0.56477][-0.57623,-0.7818,-0.238217][0.759614,0.241255,0][-1.37664,-1.25394,-0.577899][-0.732949,-0.608995,-0.303167][0.760848,0.236161,0][-1.34578,-1.30815,-0.56477][-0.57623,-0.7818,-0.238217][0.255683,0.545302,0][-1.03916,-1.30815,-1.0229][-0.440416,-0.782347,-0.440416][0.219172,0.582049,0][-0.912228,-1.35544,-0.895966][-0.128757,-0.983282,-0.128757][0.209745,0.568061,0][-0.912228,-1.35544,-0.895966][-0.128757,-0.983282,-0.128757][0.209745,0.568061,0][-1.18086,-1.35544,-0.494599][-0.168664,-0.983212,-0.0696175][0.241732,0.535867,0][-1.34578,-1.30815,-0.56477][-0.57623,-0.7818,-0.238217][0.255683,0.545302,0][-1.18086,-1.35544,-0.494599][-0.168664,-0.983212,-0.0696175][0.241732,0.535867,0][-0.912228,-1.35544,-0.895966][-0.128757,-0.983282,-0.128757][0.209745,0.568061,0][-0.643878,-1.38889,-0.627615][-0.245993,-6.26725,-0.246066][0.189815,0.538489,0][-0.643878,-1.38889,-0.627615][-0.245993,-6.26725,-0.246066][0.189815,0.538489,0][-0.832193,-1.38889,-0.34625][-0.322649,-6.26716,-0.133168][0.212239,0.515921,0][-1.18086,-1.35544,-0.494599][-0.168664,-0.983212,-0.0696175][0.241732,0.535867,0][-0.832193,-1.38889,-0.34625][-0.322649,-6.26716,-0.133168][0.212239,0.515921,0][-0.643878,-1.38889,-0.627615][-0.245993,-6.26725,-0.246066][0.189815,0.538489,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.981235,0.209226,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.981235,0.209226,0][-0.832193,-1.38889,-0.34625][-0.322649,-6.26716,-0.133168][0.895562,0.20961,0][-1.06291,-1.25394,-1.04665][-0.560555,-0.609554,-0.560555][0.770801,0.76425,0][-0.594161,-1.25394,-1.36038][-0.303167,-0.608995,-0.732949][0.814848,0.76425,0][-0.581032,-1.30815,-1.32952][-0.238217,-0.781801,-0.57623][0.816081,0.769343,0][-0.581032,-1.30815,-1.32952][-0.238217,-0.781801,-0.57623][0.816081,0.769343,0][-1.03916,-1.30815,-1.0229][-0.440416,-0.782347,-0.440416][0.773032,0.769343,0][-1.06291,-1.25394,-1.04665][-0.560555,-0.609554,-0.560555][0.770801,0.76425,0][-1.03916,-1.30815,-1.0229][-0.440416,-0.782347,-0.440416][0.219172,0.582049,0][-0.581032,-1.30815,-1.32952][-0.238217,-0.781801,-0.57623][0.171409,0.602099,0][-0.510861,-1.35544,-1.1646][-0.0696175,-0.983212,-0.168664][0.167899,0.585627,0][-0.510861,-1.35544,-1.1646][-0.0696175,-0.983212,-0.168664][0.167899,0.585627,0][-0.912228,-1.35544,-0.895966][-0.128757,-0.983282,-0.128757][0.209745,0.568061,0][-1.03916,-1.30815,-1.0229][-0.440416,-0.782347,-0.440416][0.219172,0.582049,0][-0.912228,-1.35544,-0.895966][-0.128757,-0.983282,-0.128757][0.209745,0.568061,0][-0.510861,-1.35544,-1.1646][-0.0696175,-0.983212,-0.168664][0.167899,0.585627,0][-0.362512,-1.38889,-0.815931][-0.132932,-6.26716,-0.322339][0.160481,0.550803,0][-0.362512,-1.38889,-0.815931][-0.132932,-6.26716,-0.322339][0.160481,0.550803,0][-0.643878,-1.38889,-0.627615][-0.245993,-6.26725,-0.246066][0.189815,0.538489,0][-0.912228,-1.35544,-0.895966][-0.128757,-0.983282,-0.128757][0.209745,0.568061,0][-0.643878,-1.38889,-0.627615][-0.245993,-6.26725,-0.246066][0.189815,0.538489,0][-0.362512,-1.38889,-0.815931][-0.132932,-6.26716,-0.322339][0.160481,0.550803,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.850065,0.852599,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.850065,0.852599,0][-0.643878,-1.38889,-0.627615][-0.245993,-6.26725,-0.246066][0.936471,0.85317,0][-0.594161,-1.25394,-1.36038][-0.303167,-0.608995,-0.732949][0.814848,0.76425,0][-0.0146828,-1.25394,-1.4748][0,-0.607984,-0.79395][0.869299,0.76425,0][-0.0146828,-1.30815,-1.44135][0,-0.781537,-0.623859][0.869299,0.769343,0][-0.0146828,-1.30815,-1.44135][0,-0.781537,-0.623859][0.869299,0.769343,0][-0.581032,-1.30815,-1.32952][-0.238217,-0.781801,-0.57623][0.816081,0.769343,0][-0.594161,-1.25394,-1.36038][-0.303167,-0.608995,-0.732949][0.814848,0.76425,0][-0.581032,-1.30815,-1.32952][-0.238217,-0.781801,-0.57623][0.171409,0.602099,0][-0.0146828,-1.30815,-1.44135][0,-0.781537,-0.623859][0.117163,0.602238,0][-0.0146828,-1.35544,-1.26257][0,-0.983157,-0.182766][0.120375,0.585749,0][-0.0146828,-1.35544,-1.26257][0,-0.983157,-0.182766][0.120375,0.585749,0][-0.510861,-1.35544,-1.1646][-0.0696175,-0.983212,-0.168664][0.167899,0.585627,0][-0.581032,-1.30815,-1.32952][-0.238217,-0.781801,-0.57623][0.171409,0.602099,0][-0.510861,-1.35544,-1.1646][-0.0696175,-0.983212,-0.168664][0.167899,0.585627,0][-0.0146828,-1.35544,-1.26257][0,-0.983157,-0.182766][0.120375,0.585749,0][-0.0146828,-1.38889,-0.884611][0.034454,-3.1199,-0.174493][0.127165,0.550889,0][-0.0146828,-1.38889,-0.884611][0.034454,-3.1199,-0.174493][0.127165,0.550889,0][-0.362512,-1.38889,-0.815931][-0.132932,-6.26716,-0.322339][0.160481,0.550803,0][-0.510861,-1.35544,-1.1646][-0.0696175,-0.983212,-0.168664][0.167899,0.585627,0][-0.362512,-1.38889,-0.815931][-0.132932,-6.26716,-0.322339][0.160481,0.550803,0][-0.0146828,-1.38889,-0.884611][0.034454,-3.1199,-0.174493][0.127165,0.550889,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.14246,0.466213,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.164336,0.838389,0][-0.0021617,-1.40157,0.0310081][0.00107152,-0.390569,-0.00542675][0.164336,0.838389,0][-0.362512,-1.38889,-0.815931][-0.132932,-6.26716,-0.322339][0.0778641,0.836713,0][-0.0146828,0.591536,1.54538][-0.00021597,-0.99997,-0.00778611][0.79981,0.612912,0][0.15141,0.626139,1.53][0.582926,-0.812494,-0.00703914][0.798364,0.597305,0][0.15141,0.622138,2.01891][0.545614,-0.837258,-0.0361274][0.844305,0.597305,0][0.15141,0.622138,2.01891][0.545614,-0.837258,-0.0361274][0.844305,0.597305,0][-0.0146828,0.588076,2.00521][-0.000988665,-0.999233,-0.0391385][0.843018,0.612912,0][-0.0146828,0.591536,1.54538][-0.00021597,-0.99997,-0.00778611][0.79981,0.612912,0][-0.0146828,0.588076,2.00521][-0.000988665,-0.999233,-0.0391385][0.843018,0.612912,0][0.15141,0.622138,2.01891][0.545614,-0.837258,-0.0361274][0.844305,0.597305,0][0.15141,0.594132,2.37777][0.563048,-0.810421,-0.161845][0.878026,0.597305,0][0.15141,0.594132,2.37777][0.563048,-0.810421,-0.161845][0.878026,0.597305,0][-0.0146828,0.563854,2.34509][-0.00436859,-0.983746,-0.179512][0.874955,0.612912,0][-0.0146828,0.588076,2.00521][-0.000988665,-0.999233,-0.0391385][0.843018,0.612912,0][-0.0146828,0.563854,2.34509][-0.00436859,-0.983746,-0.179512][0.874955,0.612912,0][0.15141,0.594132,2.37777][0.563048,-0.810421,-0.161845][0.878026,0.597305,0][0.15141,0.518114,2.59879][0.642746,-0.595148,-0.482365][0.898795,0.597305,0][0.15141,0.518114,2.59879][0.642746,-0.595148,-0.482365][0.898795,0.597305,0][-0.0146827,0.498109,2.55578][-0.0104599,-0.790557,-0.612299][0.894753,0.612912,0][-0.0146828,0.563854,2.34509][-0.00436859,-0.983746,-0.179512][0.874955,0.612912,0][-0.0146827,0.498109,2.55578][-0.0104599,-0.790557,-0.612299][0.975402,0.102983,0][0.15141,0.518114,2.59879][0.642746,-0.595148,-0.482365][0.977282,0.11859,0][0.15141,0.37008,2.6742][0.664199,-0.114594,-0.738721][0.963371,0.11859,0][0.15141,0.37008,2.6742][0.664199,-0.114594,-0.738721][0.963371,0.11859,0][-0.0146827,0.37008,2.62806][-0.00666969,-0.165708,-0.986152][0.963371,0.102983,0][-0.0146827,0.498109,2.55578][-0.0104599,-0.790557,-0.612299][0.975402,0.102983,0][0.15141,0.626139,1.53][0.582926,-0.812494,-0.00703914][0.470218,0.723527,0][0.206774,0.702265,1.49617][0.986769,0.162122,0.00190858][0.477959,0.722363,0][0.206774,0.697074,2.04904][0.99985,0.0171067,-0.00276168][0.463684,0.772317,0][0.206774,0.697074,2.04904][0.99985,0.0171067,-0.00276168][0.463684,0.772317,0][0.15141,0.622138,2.01891][0.545614,-0.837258,-0.0361274][0.457648,0.767716,0][0.15141,0.626139,1.53][0.582926,-0.812494,-0.00703914][0.470218,0.723527,0][0.15141,0.622138,2.01891][0.545614,-0.837258,-0.0361274][0.457648,0.767716,0][0.206774,0.697074,2.04904][0.99985,0.0171067,-0.00276168][0.463684,0.772317,0][0.206774,0.660742,2.44966][0.997247,0.0733981,-0.0105328][0.45039,0.807701,0][0.206774,0.660742,2.44966][0.997247,0.0733981,-0.0105328][0.45039,0.807701,0][0.15141,0.594132,2.37777][0.563048,-0.810421,-0.161845][0.446151,0.799525,0][0.15141,0.622138,2.01891][0.545614,-0.837258,-0.0361274][0.457648,0.767716,0][0.15141,0.594132,2.37777][0.563048,-0.810421,-0.161845][0.446151,0.799525,0][0.206774,0.660742,2.44966][0.997247,0.0733981,-0.0105328][0.45039,0.807701,0][0.206774,0.562124,2.69342][0.989303,0.130069,0.0660402][0.43537,0.82732,0][0.206774,0.562124,2.69342][0.989303,0.130069,0.0660402][0.43537,0.82732,0][0.15141,0.518114,2.59879][0.642746,-0.595148,-0.482365][0.433746,0.817649,0][0.15141,0.594132,2.37777][0.563048,-0.810421,-0.161845][0.446151,0.799525,0][0.15141,0.518114,2.59879][0.642746,-0.595148,-0.482365][0.433746,0.817649,0][0.206774,0.562124,2.69342][0.989303,0.130069,0.0660402][0.43537,0.82732,0][0.206774,0.37008,2.7757][0.995394,0.0165944,0.0944261][0.415919,0.829979,0][0.206774,0.37008,2.7757][0.995394,0.0165944,0.0944261][0.415919,0.829979,0][0.15141,0.37008,2.6742][0.664199,-0.114594,-0.738721][0.418453,0.820784,0][0.15141,0.518114,2.59879][0.642746,-0.595148,-0.482365][0.433746,0.817649,0][0.206774,0.702265,1.49617][0.986769,0.162122,0.00190858][0.477959,0.722363,0][0.15141,0.77839,1.46234][0.490293,0.871509,0.00920303][0.4857,0.721198,0][0.15141,0.772011,2.07918][0.539458,0.840609,0.0486064][0.46972,0.776918,0][0.15141,0.772011,2.07918][0.539458,0.840609,0.0486064][0.46972,0.776918,0][0.206774,0.697074,2.04904][0.99985,0.0171067,-0.00276168][0.463684,0.772317,0][0.206774,0.702265,1.49617][0.986769,0.162122,0.00190858][0.477959,0.722363,0][0.206774,0.697074,2.04904][0.99985,0.0171067,-0.00276168][0.463684,0.772317,0][0.15141,0.772011,2.07918][0.539458,0.840609,0.0486064][0.46972,0.776918,0][0.15141,0.727351,2.52156][0.552739,0.802881,0.223298][0.454629,0.815877,0][0.15141,0.727351,2.52156][0.552739,0.802881,0.223298][0.454629,0.815877,0][0.206774,0.660742,2.44966][0.997247,0.0733981,-0.0105328][0.45039,0.807701,0][0.206774,0.697074,2.04904][0.99985,0.0171067,-0.00276168][0.463684,0.772317,0][0.206774,0.660742,2.44966][0.997247,0.0733981,-0.0105328][0.45039,0.807701,0][0.15141,0.727351,2.52156][0.552739,0.802881,0.223298][0.454629,0.815877,0][0.15141,0.606134,2.78805][0.575136,0.559971,0.596365][0.436994,0.836992,0][0.15141,0.606134,2.78805][0.575136,0.559971,0.596365][0.436994,0.836992,0][0.206774,0.562124,2.69342][0.989303,0.130069,0.0660402][0.43537,0.82732,0][0.206774,0.660742,2.44966][0.997247,0.0733981,-0.0105328][0.45039,0.807701,0][0.206774,0.562124,2.69342][0.989303,0.130069,0.0660402][0.43537,0.82732,0][0.15141,0.606134,2.78805][0.575136,0.559971,0.596365][0.436994,0.836992,0][0.15141,0.37008,2.8772][0.591603,0.0682358,0.803337][0.413384,0.839173,0][0.15141,0.37008,2.8772][0.591603,0.0682358,0.803337][0.413384,0.839173,0][0.206774,0.37008,2.7757][0.995394,0.0165944,0.0944261][0.415919,0.829979,0][0.206774,0.562124,2.69342][0.989303,0.130069,0.0660402][0.43537,0.82732,0][0.15141,0.77839,1.46234][0.490293,0.871509,0.00920303][0.625176,0.677016,0][-0.0146828,0.812993,1.44696][0.000103336,0.999944,0.0105609][0.623731,0.661409,0][-0.0146828,0.806072,2.09287][0.000709788,0.99827,0.0587986][0.684426,0.661409,0][-0.0146828,0.806072,2.09287][0.000709788,0.99827,0.0587986][0.684426,0.661409,0][0.15141,0.772011,2.07918][0.539458,0.840609,0.0486064][0.683139,0.677016,0][0.15141,0.77839,1.46234][0.490293,0.871509,0.00920303][0.625176,0.677016,0][0.15141,0.772011,2.07918][0.539458,0.840609,0.0486064][0.683139,0.677016,0][-0.0146828,0.806072,2.09287][0.000709788,0.99827,0.0587986][0.684426,0.661409,0][-0.0146828,0.757629,2.55424][0.00326865,0.959787,0.28071][0.727779,0.661409,0][-0.0146828,0.757629,2.55424][0.00326865,0.959787,0.28071][0.727779,0.661409,0][0.15141,0.727351,2.52156][0.552739,0.802881,0.223298][0.724708,0.677016,0][0.15141,0.772011,2.07918][0.539458,0.840609,0.0486064][0.683139,0.677016,0][0.15141,0.727351,2.52156][0.552739,0.802881,0.223298][0.724708,0.677016,0][-0.0146828,0.757629,2.55424][0.00326865,0.959787,0.28071][0.727779,0.661409,0][-0.0146827,0.626139,2.83106][0.00426812,0.661739,0.749723][0.753791,0.661409,0][-0.0146827,0.626139,2.83106][0.00426812,0.661739,0.749723][0.753791,0.661409,0][0.15141,0.606134,2.78805][0.575136,0.559971,0.596365][0.749749,0.677016,0][0.15141,0.727351,2.52156][0.552739,0.802881,0.223298][0.724708,0.677016,0][0.15141,0.606134,2.78805][0.575136,0.559971,0.596365][0.600611,0.909933,0][-0.0146827,0.626139,2.83106][0.00426812,0.661739,0.749723][0.602491,0.92554,0][-0.0146827,0.37008,2.92333][0.00205923,0.0727143,0.997351][0.57843,0.92554,0][-0.0146827,0.37008,2.92333][0.00205923,0.0727143,0.997351][0.57843,0.92554,0][0.15141,0.37008,2.8772][0.591603,0.0682358,0.803337][0.57843,0.909933,0][0.15141,0.606134,2.78805][0.575136,0.559971,0.596365][0.600611,0.909933,0][-0.0146828,0.812993,1.44696][0.000103336,0.999944,0.0105609][0.623731,0.661409,0][-0.180775,0.77839,1.46234][-0.49033,0.871493,0.00879211][0.625176,0.645802,0][-0.180775,0.772011,2.07918][-0.538756,0.841178,0.0464937][0.683139,0.645802,0][-0.180775,0.772011,2.07918][-0.538756,0.841178,0.0464937][0.683139,0.645802,0][-0.0146828,0.806072,2.09287][0.000709788,0.99827,0.0587986][0.684426,0.661409,0][-0.0146828,0.812993,1.44696][0.000103336,0.999944,0.0105609][0.623731,0.661409,0][-0.0146828,0.806072,2.09287][0.000709788,0.99827,0.0587986][0.684426,0.661409,0][-0.180775,0.772011,2.07918][-0.538756,0.841178,0.0464937][0.683139,0.645802,0][-0.180775,0.727351,2.52156][-0.549161,0.806807,0.217909][0.724708,0.645802,0][-0.180775,0.727351,2.52156][-0.549161,0.806807,0.217909][0.724708,0.645802,0][-0.0146828,0.757629,2.55424][0.00326865,0.959787,0.28071][0.727779,0.661409,0][-0.0146828,0.806072,2.09287][0.000709788,0.99827,0.0587986][0.684426,0.661409,0][-0.0146828,0.757629,2.55424][0.00326865,0.959787,0.28071][0.727779,0.661409,0][-0.180775,0.727351,2.52156][-0.549161,0.806807,0.217909][0.724708,0.645802,0][-0.180775,0.606134,2.78805][-0.574121,0.560026,0.597291][0.749749,0.645802,0][-0.180775,0.606134,2.78805][-0.574121,0.560026,0.597291][0.749749,0.645802,0][-0.0146827,0.626139,2.83106][0.00426812,0.661739,0.749723][0.753791,0.661409,0][-0.0146828,0.757629,2.55424][0.00326865,0.959787,0.28071][0.727779,0.661409,0][-0.0146827,0.626139,2.83106][0.00426812,0.661739,0.749723][0.602491,0.92554,0][-0.180775,0.606134,2.78805][-0.574121,0.560026,0.597291][0.600611,0.941147,0][-0.180775,0.37008,2.8772][-0.591292,0.0629127,0.804][0.57843,0.941147,0][-0.180775,0.37008,2.8772][-0.591292,0.0629127,0.804][0.57843,0.941147,0][-0.0146827,0.37008,2.92333][0.00205923,0.0727143,0.997351][0.57843,0.92554,0][-0.0146827,0.626139,2.83106][0.00426812,0.661739,0.749723][0.602491,0.92554,0][-0.180775,0.77839,1.46234][-0.49033,0.871493,0.00879211][0.623731,0.50008,0][-0.23614,0.702265,1.49617][-0.98684,0.161691,0.00180566][0.631421,0.501547,0][-0.236139,0.697074,2.04904][-0.999892,0.0145546,-0.00203091][0.643726,0.552022,0][-0.236139,0.697074,2.04904][-0.999892,0.0145546,-0.00203091][0.643726,0.552022,0][-0.180775,0.772011,2.07918][-0.538756,0.841178,0.0464937][0.637514,0.556383,0][-0.180775,0.77839,1.46234][-0.49033,0.871493,0.00879211][0.623731,0.50008,0][-0.180775,0.772011,2.07918][-0.538756,0.841178,0.0464937][0.637514,0.556383,0][-0.236139,0.697074,2.04904][-0.999892,0.0145546,-0.00203091][0.643726,0.552022,0][-0.236139,0.660742,2.44966][-0.998152,0.0600694,-0.00921513][0.655623,0.587901,0][-0.236139,0.660742,2.44966][-0.998152,0.0600694,-0.00921513][0.655623,0.587901,0][-0.180775,0.727351,2.52156][-0.549161,0.806807,0.217909][0.651067,0.595905,0][-0.180775,0.772011,2.07918][-0.538756,0.841178,0.0464937][0.637514,0.556383,0][-0.180775,0.727351,2.52156][-0.549161,0.806807,0.217909][0.651067,0.595905,0][-0.236139,0.660742,2.44966][-0.998152,0.0600694,-0.00921513][0.655623,0.587901,0][-0.236139,0.562124,2.69342][-0.991723,0.113865,0.0593336][0.669862,0.608094,0][-0.236139,0.562124,2.69342][-0.991723,0.113865,0.0593336][0.669862,0.608094,0][-0.180775,0.606134,2.78805][-0.574121,0.560026,0.597291][0.66786,0.617694,0][-0.180775,0.727351,2.52156][-0.549161,0.806807,0.217909][0.651067,0.595905,0][-0.180775,0.606134,2.78805][-0.574121,0.560026,0.597291][0.66786,0.617694,0][-0.236139,0.562124,2.69342][-0.991723,0.113865,0.0593336][0.669862,0.608094,0][-0.236139,0.37008,2.7757][-0.996141,0.0122902,0.0868991][0.689194,0.611513,0][-0.236139,0.37008,2.7757][-0.996141,0.0122902,0.0868991][0.689194,0.611513,0][-0.180775,0.37008,2.8772][-0.591292,0.0629127,0.804][0.691366,0.6208,0][-0.180775,0.606134,2.78805][-0.574121,0.560026,0.597291][0.66786,0.617694,0][-0.23614,0.702265,1.49617][-0.98684,0.161691,0.00180566][0.631421,0.501547,0][-0.180775,0.626139,1.53][-0.583095,-0.812379,-0.00641777][0.63911,0.503014,0][-0.180775,0.622138,2.01891][-0.545373,-0.837512,-0.0337834][0.649938,0.547662,0][-0.180775,0.622138,2.01891][-0.545373,-0.837512,-0.0337834][0.649938,0.547662,0][-0.236139,0.697074,2.04904][-0.999892,0.0145546,-0.00203091][0.643726,0.552022,0][-0.23614,0.702265,1.49617][-0.98684,0.161691,0.00180566][0.631421,0.501547,0][-0.236139,0.697074,2.04904][-0.999892,0.0145546,-0.00203091][0.643726,0.552022,0][-0.180775,0.622138,2.01891][-0.545373,-0.837512,-0.0337834][0.649938,0.547662,0][-0.180775,0.594132,2.37777][-0.562189,-0.811948,-0.157112][0.660179,0.579897,0][-0.180775,0.594132,2.37777][-0.562189,-0.811948,-0.157112][0.660179,0.579897,0][-0.236139,0.660742,2.44966][-0.998152,0.0600694,-0.00921513][0.655623,0.587901,0][-0.236139,0.697074,2.04904][-0.999892,0.0145546,-0.00203091][0.643726,0.552022,0][-0.236139,0.660742,2.44966][-0.998152,0.0600694,-0.00921513][0.655623,0.587901,0][-0.180775,0.594132,2.37777][-0.562189,-0.811948,-0.157112][0.660179,0.579897,0][-0.180775,0.518114,2.59879][-0.646528,-0.589365,-0.484407][0.671864,0.598494,0][-0.180775,0.518114,2.59879][-0.646528,-0.589365,-0.484407][0.671864,0.598494,0][-0.236139,0.562124,2.69342][-0.991723,0.113865,0.0593336][0.669862,0.608094,0][-0.236139,0.660742,2.44966][-0.998152,0.0600694,-0.00921513][0.655623,0.587901,0][-0.236139,0.562124,2.69342][-0.991723,0.113865,0.0593336][0.669862,0.608094,0][-0.180775,0.518114,2.59879][-0.646528,-0.589365,-0.484407][0.671864,0.598494,0][-0.180775,0.37008,2.6742][-0.666187,-0.10132,-0.73887][0.687023,0.602225,0][-0.180775,0.37008,2.6742][-0.666187,-0.10132,-0.73887][0.687023,0.602225,0][-0.236139,0.37008,2.7757][-0.996141,0.0122902,0.0868991][0.689194,0.611513,0][-0.236139,0.562124,2.69342][-0.991723,0.113865,0.0593336][0.669862,0.608094,0][-0.180775,0.626139,1.53][-0.583095,-0.812379,-0.00641777][0.798364,0.628519,0][-0.0146828,0.591536,1.54538][-0.00021597,-0.99997,-0.00778611][0.79981,0.612912,0][-0.0146828,0.588076,2.00521][-0.000988665,-0.999233,-0.0391385][0.843018,0.612912,0][-0.0146828,0.588076,2.00521][-0.000988665,-0.999233,-0.0391385][0.843018,0.612912,0][-0.180775,0.622138,2.01891][-0.545373,-0.837512,-0.0337834][0.844305,0.628519,0][-0.180775,0.626139,1.53][-0.583095,-0.812379,-0.00641777][0.798364,0.628519,0][-0.180775,0.622138,2.01891][-0.545373,-0.837512,-0.0337834][0.844305,0.628519,0][-0.0146828,0.588076,2.00521][-0.000988665,-0.999233,-0.0391385][0.843018,0.612912,0][-0.0146828,0.563854,2.34509][-0.00436859,-0.983746,-0.179512][0.874955,0.612912,0][-0.0146828,0.563854,2.34509][-0.00436859,-0.983746,-0.179512][0.874955,0.612912,0][-0.180775,0.594132,2.37777][-0.562189,-0.811948,-0.157112][0.878026,0.628519,0][-0.180775,0.622138,2.01891][-0.545373,-0.837512,-0.0337834][0.844305,0.628519,0][-0.180775,0.594132,2.37777][-0.562189,-0.811948,-0.157112][0.878026,0.628519,0][-0.0146828,0.563854,2.34509][-0.00436859,-0.983746,-0.179512][0.874955,0.612912,0][-0.0146827,0.498109,2.55578][-0.0104599,-0.790557,-0.612299][0.894753,0.612912,0][-0.0146827,0.498109,2.55578][-0.0104599,-0.790557,-0.612299][0.894753,0.612912,0][-0.180775,0.518114,2.59879][-0.646528,-0.589365,-0.484407][0.898795,0.628519,0][-0.180775,0.594132,2.37777][-0.562189,-0.811948,-0.157112][0.878026,0.628519,0][-0.180775,0.518114,2.59879][-0.646528,-0.589365,-0.484407][0.977282,0.0873754,0][-0.0146827,0.498109,2.55578][-0.0104599,-0.790557,-0.612299][0.975402,0.102983,0][-0.0146827,0.37008,2.62806][-0.00666969,-0.165708,-0.986152][0.963371,0.102983,0][-0.0146827,0.37008,2.62806][-0.00666969,-0.165708,-0.986152][0.963371,0.102983,0][-0.180775,0.37008,2.6742][-0.666187,-0.10132,-0.73887][0.963371,0.0873754,0][-0.180775,0.518114,2.59879][-0.646528,-0.589365,-0.484407][0.977282,0.0873754,0][-0.0146827,0.37008,2.62806][-0.00666969,-0.165708,-0.986152][0.963371,0.102983,0][0.15141,0.37008,2.6742][0.664199,-0.114594,-0.738721][0.963371,0.11859,0][0.15141,0.150011,2.63154][0.637361,0.259352,-0.725609][0.942692,0.11859,0][0.15141,0.150011,2.63154][0.637361,0.259352,-0.725609][0.942692,0.11859,0][-0.0146827,0.169385,2.58961][-0.003357,0.32265,-0.946512][0.944513,0.102983,0][-0.0146827,0.37008,2.62806][-0.00666969,-0.165708,-0.986152][0.963371,0.102983,0][-0.0146827,0.169385,2.58961][-0.003357,0.32265,-0.946512][0.944513,0.102983,0][0.15141,0.150011,2.63154][0.637361,0.259352,-0.725609][0.942692,0.11859,0][0.15141,-0.10239,2.49791][0.607719,0.461988,-0.645945][0.918975,0.11859,0][0.15141,-0.10239,2.49791][0.607719,0.461988,-0.645945][0.918975,0.11859,0][-0.0146827,-0.0728337,2.46812][-0.00745214,0.56387,-0.82583][0.921752,0.102983,0][-0.0146827,0.169385,2.58961][-0.003357,0.32265,-0.946512][0.944513,0.102983,0][-0.0146827,-0.0728337,2.46812][-0.00745214,0.56387,-0.82583][0.921752,0.102983,0][0.15141,-0.10239,2.49791][0.607719,0.461988,-0.645945][0.918975,0.11859,0][0.15141,-0.351547,2.2648][0.558614,0.63666,-0.531615][0.895562,0.11859,0][0.15141,-0.351547,2.2648][0.558614,0.63666,-0.531615][0.895562,0.11859,0][-0.0146827,-0.315052,2.25435][-0.00693682,0.759893,-0.650011][0.898992,0.102983,0][-0.0146827,-0.0728337,2.46812][-0.00745214,0.56387,-0.82583][0.921752,0.102983,0][-0.0146827,-0.315052,2.25435][-0.00693682,0.759893,-0.650011][0.295444,0.897636,0][0.15141,-0.351547,2.2648][0.558614,0.63666,-0.531615][0.296426,0.913243,0][0.15141,-0.561884,1.9237][0.59554,0.681717,-0.424964][0.264374,0.913243,0][0.15141,-0.561884,1.9237][0.59554,0.681717,-0.424964][0.264374,0.913243,0][-0.0146827,-0.515747,1.93908][-0.0052454,0.846459,-0.532429][0.265819,0.897636,0][-0.0146827,-0.315052,2.25435][-0.00693682,0.759893,-0.650011][0.295444,0.897636,0][0.15141,0.37008,2.6742][0.664199,-0.114594,-0.738721][0.418453,0.820784,0][0.206774,0.37008,2.7757][0.995394,0.0165944,0.0944261][0.415919,0.829979,0][0.206774,0.107388,2.72379][0.998576,-0.0197547,0.0495607][0.393418,0.818718,0][0.206774,0.107388,2.72379][0.998576,-0.0197547,0.0495607][0.393418,0.818718,0][0.15141,0.150011,2.63154][0.637361,0.259352,-0.725609][0.399582,0.811425,0][0.15141,0.37008,2.6742][0.664199,-0.114594,-0.738721][0.418453,0.820784,0][0.15141,0.150011,2.63154][0.637361,0.259352,-0.725609][0.399582,0.811425,0][0.206774,0.107388,2.72379][0.998576,-0.0197547,0.0495607][0.393418,0.818718,0][0.206774,-0.167414,2.56347][0.99865,-0.0356239,0.0378159][0.372527,0.797333,0][0.206774,-0.167414,2.56347][0.99865,-0.0356239,0.0378159][0.372527,0.797333,0][0.15141,-0.10239,2.49791][0.607719,0.461988,-0.645945][0.380054,0.793018,0][0.15141,0.150011,2.63154][0.637361,0.259352,-0.725609][0.399582,0.811425,0][0.15141,-0.10239,2.49791][0.607719,0.461988,-0.645945][0.380054,0.793018,0][0.206774,-0.167414,2.56347][0.99865,-0.0356239,0.0378159][0.372527,0.797333,0][0.206774,-0.431836,2.2878][0.998614,-0.0365113,0.037913][0.355456,0.765758,0][0.206774,-0.431836,2.2878][0.998614,-0.0365113,0.037913][0.355456,0.765758,0][0.15141,-0.351547,2.2648][0.558614,0.63666,-0.531615][0.363304,0.76568,0][0.15141,-0.10239,2.49791][0.607719,0.461988,-0.645945][0.380054,0.793018,0][0.15141,-0.351547,2.2648][0.558614,0.63666,-0.531615][0.363304,0.76568,0][0.206774,-0.431836,2.2878][0.998614,-0.0365113,0.037913][0.355456,0.765758,0][0.206774,-0.663385,1.88987][0.93953,-0.297945,0.168854][0.344417,0.723929,0][0.206774,-0.663385,1.88987][0.93953,-0.297945,0.168854][0.344417,0.723929,0][0.15141,-0.561884,1.9237][0.59554,0.681717,-0.424964][0.352767,0.729528,0][0.15141,-0.351547,2.2648][0.558614,0.63666,-0.531615][0.363304,0.76568,0][0.206774,0.37008,2.7757][0.995394,0.0165944,0.0944261][0.415919,0.829979,0][0.15141,0.37008,2.8772][0.591603,0.0682358,0.803337][0.413384,0.839173,0][0.15141,0.0647657,2.81604][0.599523,-0.299166,0.742342][0.387253,0.82601,0][0.15141,0.0647657,2.81604][0.599523,-0.299166,0.742342][0.387253,0.82601,0][0.206774,0.107388,2.72379][0.998576,-0.0197547,0.0495607][0.393418,0.818718,0][0.206774,0.37008,2.7757][0.995394,0.0165944,0.0944261][0.415919,0.829979,0][0.206774,0.107388,2.72379][0.998576,-0.0197547,0.0495607][0.393418,0.818718,0][0.15141,0.0647657,2.81604][0.599523,-0.299166,0.742342][0.387253,0.82601,0][0.15141,-0.232438,2.62902][0.579503,-0.529406,0.619602][0.365,0.801647,0][0.15141,-0.232438,2.62902][0.579503,-0.529406,0.619602][0.365,0.801647,0][0.206774,-0.167414,2.56347][0.99865,-0.0356239,0.0378159][0.372527,0.797333,0][0.206774,0.107388,2.72379][0.998576,-0.0197547,0.0495607][0.393418,0.818718,0][0.206774,-0.167414,2.56347][0.99865,-0.0356239,0.0378159][0.372527,0.797333,0][0.15141,-0.232438,2.62902][0.579503,-0.529406,0.619602][0.365,0.801647,0][0.15141,-0.512125,2.3108][0.543837,-0.68576,0.483708][0.347609,0.765836,0][0.15141,-0.512125,2.3108][0.543837,-0.68576,0.483708][0.347609,0.765836,0][0.206774,-0.431836,2.2878][0.998614,-0.0365113,0.037913][0.355456,0.765758,0][0.206774,-0.167414,2.56347][0.99865,-0.0356239,0.0378159][0.372527,0.797333,0][0.206774,-0.431836,2.2878][0.998614,-0.0365113,0.037913][0.355456,0.765758,0][0.15141,-0.512125,2.3108][0.543837,-0.68576,0.483708][0.347609,0.765836,0][0.15141,-0.764886,1.85604][0.413177,-0.794355,0.445293][0.336067,0.718329,0][0.15141,-0.764886,1.85604][0.413177,-0.794355,0.445293][0.336067,0.718329,0][0.206774,-0.663385,1.88987][0.93953,-0.297945,0.168854][0.344417,0.723929,0][0.206774,-0.431836,2.2878][0.998614,-0.0365113,0.037913][0.355456,0.765758,0][0.15141,0.37008,2.8772][0.591603,0.0682358,0.803337][0.57843,0.909933,0][-0.0146827,0.37008,2.92333][0.00205923,0.0727143,0.997351][0.57843,0.92554,0][-0.0146827,0.0453919,2.85797][0.00199602,-0.376257,0.926513][0.54792,0.92554,0][-0.0146827,0.0453919,2.85797][0.00199602,-0.376257,0.926513][0.54792,0.92554,0][0.15141,0.0647657,2.81604][0.599523,-0.299166,0.742342][0.549741,0.909933,0][0.15141,0.37008,2.8772][0.591603,0.0682358,0.803337][0.57843,0.909933,0][0.15141,0.0647657,2.81604][0.599523,-0.299166,0.742342][0.549741,0.909933,0][-0.0146827,0.0453919,2.85797][0.00199602,-0.376257,0.926513][0.54792,0.92554,0][-0.0146827,-0.261995,2.65882][0.00431721,-0.656952,0.75392][0.519036,0.92554,0][-0.0146827,-0.261995,2.65882][0.00431721,-0.656952,0.75392][0.519036,0.92554,0][0.15141,-0.232438,2.62902][0.579503,-0.529406,0.619602][0.521814,0.909933,0][0.15141,0.0647657,2.81604][0.599523,-0.299166,0.742342][0.549741,0.909933,0][0.15141,-0.232438,2.62902][0.579503,-0.529406,0.619602][0.985476,0.381209,0][-0.0146827,-0.261995,2.65882][0.00431721,-0.656952,0.75392][0.988276,0.396816,0][-0.0146827,-0.54862,2.32125][0.00346103,-0.824244,0.566224][0.956556,0.396816,0][-0.0146827,-0.54862,2.32125][0.00346103,-0.824244,0.566224][0.956556,0.396816,0][0.15141,-0.512125,2.3108][0.543837,-0.68576,0.483708][0.955573,0.381209,0][0.15141,-0.232438,2.62902][0.579503,-0.529406,0.619602][0.985476,0.381209,0][0.15141,-0.512125,2.3108][0.543837,-0.68576,0.483708][0.955573,0.381209,0][-0.0146827,-0.54862,2.32125][0.00346103,-0.824244,0.566224][0.956556,0.396816,0][-0.0146827,-0.811023,1.84066][0.00185043,-0.876277,0.481804][0.911396,0.396816,0][-0.0146827,-0.811023,1.84066][0.00185043,-0.876277,0.481804][0.911396,0.396816,0][0.15141,-0.764886,1.85604][0.413177,-0.794355,0.445293][0.912841,0.381209,0][0.15141,-0.512125,2.3108][0.543837,-0.68576,0.483708][0.955573,0.381209,0][-0.0146827,0.37008,2.92333][0.00205923,0.0727143,0.997351][0.57843,0.92554,0][-0.180775,0.37008,2.8772][-0.591292,0.0629127,0.804][0.57843,0.941147,0][-0.180775,0.0647657,2.81604][-0.598977,-0.294425,0.744675][0.549741,0.941147,0][-0.180775,0.0647657,2.81604][-0.598977,-0.294425,0.744675][0.549741,0.941147,0][-0.0146827,0.0453919,2.85797][0.00199602,-0.376257,0.926513][0.54792,0.92554,0][-0.0146827,0.37008,2.92333][0.00205923,0.0727143,0.997351][0.57843,0.92554,0][-0.0146827,0.0453919,2.85797][0.00199602,-0.376257,0.926513][0.54792,0.92554,0][-0.180775,0.0647657,2.81604][-0.598977,-0.294425,0.744675][0.549741,0.941147,0][-0.180775,-0.232438,2.62902][-0.578165,-0.528114,0.62195][0.521814,0.941147,0][-0.180775,-0.232438,2.62902][-0.578165,-0.528114,0.62195][0.521814,0.941147,0][-0.0146827,-0.261995,2.65882][0.00431721,-0.656952,0.75392][0.519036,0.92554,0][-0.0146827,0.0453919,2.85797][0.00199602,-0.376257,0.926513][0.54792,0.92554,0][-0.0146827,-0.261995,2.65882][0.00431721,-0.656952,0.75392][0.988276,0.396816,0][-0.180775,-0.232438,2.62902][-0.578165,-0.528114,0.62195][0.985476,0.412423,0][-0.180775,-0.512125,2.3108][-0.542828,-0.68834,0.481171][0.955573,0.412423,0][-0.180775,-0.512125,2.3108][-0.542828,-0.68834,0.481171][0.955573,0.412423,0][-0.0146827,-0.54862,2.32125][0.00346103,-0.824244,0.566224][0.956556,0.396816,0][-0.0146827,-0.261995,2.65882][0.00431721,-0.656952,0.75392][0.988276,0.396816,0][-0.0146827,-0.54862,2.32125][0.00346103,-0.824244,0.566224][0.956556,0.396816,0][-0.180775,-0.512125,2.3108][-0.542828,-0.68834,0.481171][0.955573,0.412423,0][-0.180775,-0.764886,1.85604][-0.415744,-0.797035,0.438055][0.912841,0.412423,0][-0.180775,-0.764886,1.85604][-0.415744,-0.797035,0.438055][0.912841,0.412423,0][-0.0146827,-0.811023,1.84066][0.00185043,-0.876277,0.481804][0.911396,0.396816,0][-0.0146827,-0.54862,2.32125][0.00346103,-0.824244,0.566224][0.956556,0.396816,0][-0.180775,0.37008,2.8772][-0.591292,0.0629127,0.804][0.691366,0.6208,0][-0.236139,0.37008,2.7757][-0.996141,0.0122902,0.0868991][0.689194,0.611513,0][-0.236139,0.107388,2.72379][-0.998871,-0.0170558,0.044337][0.712119,0.601142,0][-0.236139,0.107388,2.72379][-0.998871,-0.0170558,0.044337][0.712119,0.601142,0][-0.180775,0.0647657,2.81604][-0.598977,-0.294425,0.744675][0.717993,0.608671,0][-0.180775,0.37008,2.8772][-0.591292,0.0629127,0.804][0.691366,0.6208,0][-0.180775,0.0647657,2.81604][-0.598977,-0.294425,0.744675][0.717993,0.608671,0][-0.236139,0.107388,2.72379][-0.998871,-0.0170558,0.044337][0.712119,0.601142,0][-0.236139,-0.167414,2.56347][-0.99926,-0.0281668,0.0261765][0.733833,0.580593,0][-0.236139,-0.167414,2.56347][-0.99926,-0.0281668,0.0261765][0.733833,0.580593,0][-0.180775,-0.232438,2.62902][-0.578165,-0.528114,0.62195][0.741185,0.585199,0][-0.180775,0.0647657,2.81604][-0.598977,-0.294425,0.744675][0.717993,0.608671,0][-0.180775,-0.232438,2.62902][-0.578165,-0.528114,0.62195][0.741185,0.585199,0][-0.236139,-0.167414,2.56347][-0.99926,-0.0281668,0.0261765][0.733833,0.580593,0][-0.236139,-0.431836,2.2878][-0.999278,-0.0283321,0.0252937][0.752128,0.549712,0][-0.236139,-0.431836,2.2878][-0.999278,-0.0283321,0.0252937][0.752128,0.549712,0][-0.180775,-0.512125,2.3108][-0.542828,-0.68834,0.481171][0.759966,0.550098,0][-0.180775,-0.232438,2.62902][-0.578165,-0.528114,0.62195][0.741185,0.585199,0][-0.180775,-0.512125,2.3108][-0.542828,-0.68834,0.481171][0.759966,0.550098,0][-0.236139,-0.431836,2.2878][-0.999278,-0.0283321,0.0252937][0.752128,0.549712,0][-0.236139,-0.663385,1.88987][-0.944167,-0.289392,0.157482][0.764799,0.508347,0][-0.236139,-0.663385,1.88987][-0.944167,-0.289392,0.157482][0.764799,0.508347,0][-0.180775,-0.764886,1.85604][-0.415744,-0.797035,0.438055][0.773362,0.503079,0][-0.180775,-0.512125,2.3108][-0.542828,-0.68834,0.481171][0.759966,0.550098,0][-0.236139,0.37008,2.7757][-0.996141,0.0122902,0.0868991][0.689194,0.611513,0][-0.180775,0.37008,2.6742][-0.666187,-0.10132,-0.73887][0.687023,0.602225,0][-0.180775,0.150011,2.63154][-0.637142,0.25241,-0.728244][0.706246,0.593614,0][-0.180775,0.150011,2.63154][-0.637142,0.25241,-0.728244][0.706246,0.593614,0][-0.236139,0.107388,2.72379][-0.998871,-0.0170558,0.044337][0.712119,0.601142,0][-0.236139,0.37008,2.7757][-0.996141,0.0122902,0.0868991][0.689194,0.611513,0][-0.236139,0.107388,2.72379][-0.998871,-0.0170558,0.044337][0.712119,0.601142,0][-0.180775,0.150011,2.63154][-0.637142,0.25241,-0.728244][0.706246,0.593614,0][-0.180775,-0.10239,2.49791][-0.608254,0.459725,-0.647054][0.72648,0.575986,0][-0.180775,-0.10239,2.49791][-0.608254,0.459725,-0.647054][0.72648,0.575986,0][-0.236139,-0.167414,2.56347][-0.99926,-0.0281668,0.0261765][0.733833,0.580593,0][-0.236139,0.107388,2.72379][-0.998871,-0.0170558,0.044337][0.712119,0.601142,0][-0.236139,-0.167414,2.56347][-0.99926,-0.0281668,0.0261765][0.733833,0.580593,0][-0.180775,-0.10239,2.49791][-0.608254,0.459725,-0.647054][0.72648,0.575986,0][-0.180775,-0.351547,2.2648][-0.56217,0.640657,-0.522994][0.744289,0.549325,0][-0.180775,-0.351547,2.2648][-0.56217,0.640657,-0.522994][0.744289,0.549325,0][-0.236139,-0.431836,2.2878][-0.999278,-0.0283321,0.0252937][0.752128,0.549712,0][-0.236139,-0.167414,2.56347][-0.99926,-0.0281668,0.0261765][0.733833,0.580593,0][-0.236139,-0.431836,2.2878][-0.999278,-0.0283321,0.0252937][0.752128,0.549712,0][-0.180775,-0.351547,2.2648][-0.56217,0.640657,-0.522994][0.744289,0.549325,0][-0.180775,-0.561884,1.9237][-0.604669,0.682857,-0.409978][0.756236,0.513615,0][-0.180775,-0.561884,1.9237][-0.604669,0.682857,-0.409978][0.756236,0.513615,0][-0.236139,-0.663385,1.88987][-0.944167,-0.289392,0.157482][0.764799,0.508347,0][-0.236139,-0.431836,2.2878][-0.999278,-0.0283321,0.0252937][0.752128,0.549712,0][-0.180775,0.37008,2.6742][-0.666187,-0.10132,-0.73887][0.963371,0.0873754,0][-0.0146827,0.37008,2.62806][-0.00666969,-0.165708,-0.986152][0.963371,0.102983,0][-0.0146827,0.169385,2.58961][-0.003357,0.32265,-0.946512][0.944513,0.102983,0][-0.0146827,0.169385,2.58961][-0.003357,0.32265,-0.946512][0.944513,0.102983,0][-0.180775,0.150011,2.63154][-0.637142,0.25241,-0.728244][0.942692,0.0873754,0][-0.180775,0.37008,2.6742][-0.666187,-0.10132,-0.73887][0.963371,0.0873754,0][-0.180775,0.150011,2.63154][-0.637142,0.25241,-0.728244][0.942692,0.0873754,0][-0.0146827,0.169385,2.58961][-0.003357,0.32265,-0.946512][0.944513,0.102983,0][-0.0146827,-0.0728337,2.46812][-0.00745214,0.56387,-0.82583][0.921752,0.102983,0][-0.0146827,-0.0728337,2.46812][-0.00745214,0.56387,-0.82583][0.921752,0.102983,0][-0.180775,-0.10239,2.49791][-0.608254,0.459725,-0.647054][0.918975,0.0873754,0][-0.180775,0.150011,2.63154][-0.637142,0.25241,-0.728244][0.942692,0.0873754,0][-0.180775,-0.10239,2.49791][-0.608254,0.459725,-0.647054][0.918975,0.0873754,0][-0.0146827,-0.0728337,2.46812][-0.00745214,0.56387,-0.82583][0.921752,0.102983,0][-0.0146827,-0.315052,2.25435][-0.00693682,0.759893,-0.650011][0.898992,0.102983,0][-0.0146827,-0.315052,2.25435][-0.00693682,0.759893,-0.650011][0.898992,0.102983,0][-0.180775,-0.351547,2.2648][-0.56217,0.640657,-0.522994][0.895562,0.0873754,0][-0.180775,-0.10239,2.49791][-0.608254,0.459725,-0.647054][0.918975,0.0873754,0][-0.180775,-0.351547,2.2648][-0.56217,0.640657,-0.522994][0.296426,0.882029,0][-0.0146827,-0.315052,2.25435][-0.00693682,0.759893,-0.650011][0.295444,0.897636,0][-0.0146827,-0.515747,1.93908][-0.0052454,0.846459,-0.532429][0.265819,0.897636,0][-0.0146827,-0.515747,1.93908][-0.0052454,0.846459,-0.532429][0.265819,0.897636,0][-0.180775,-0.561884,1.9237][-0.604669,0.682857,-0.409978][0.264374,0.882029,0][-0.180775,-0.351547,2.2648][-0.56217,0.640657,-0.522994][0.296426,0.882029,0][-0.0146829,0.000985146,-1.67165][-0.0065233,0.972982,0.230787][0.114914,0.751491,0][0.350721,-0.125891,-1.67165][0.710189,0.687211,0.152877][0.14925,0.751491,0][0.315253,0.0153308,-2.17983][0.702113,0.63775,0.316721][0.145917,0.799243,0][0.315253,0.0153308,-2.17983][0.702113,0.63775,0.316721][0.145917,0.799243,0][-0.0146829,0.109407,-2.14378][-0.00151091,0.835863,0.548936][0.114914,0.795856,0][-0.0146829,0.000985146,-1.67165][-0.0065233,0.972982,0.230787][0.114914,0.751491,0][-0.0146829,0.109407,-2.14378][-0.00151091,0.835863,0.548936][0.527876,0.845594,0][0.315253,0.0153308,-2.17983][0.702113,0.63775,0.316721][0.519036,0.814591,0][0.237224,0.315292,-2.39446][0.64533,0.471452,0.601067][0.547223,0.821923,0][0.237224,0.315292,-2.39446][0.64533,0.471452,0.601067][0.547223,0.821923,0][-0.0146829,0.37008,-2.34832][0.0098931,0.482807,0.875671][0.552371,0.845594,0][-0.0146829,0.109407,-2.14378][-0.00151091,0.835863,0.548936][0.527876,0.845594,0][-0.0146829,0.37008,-2.34832][0.0098931,0.482807,0.875671][0.552371,0.845594,0][0.237224,0.315292,-2.39446][0.64533,0.471452,0.601067][0.547223,0.821923,0][0.159195,0.666292,-2.51682][0.629801,0.446089,0.635889][0.580205,0.829255,0][0.159195,0.666292,-2.51682][0.629801,0.446089,0.635889][0.580205,0.829255,0][-0.014683,0.686117,-2.46059][0.0190922,0.479097,0.877554][0.582068,0.845594,0][-0.0146829,0.37008,-2.34832][0.0098931,0.482807,0.875671][0.552371,0.845594,0][-0.014683,0.686117,-2.46059][0.0190922,0.479097,0.877554][0.582068,0.845594,0][0.159195,0.666292,-2.51682][0.629801,0.446089,0.635889][0.580205,0.829255,0][0.123727,0.960631,-2.74817][0.670011,0.601008,0.435746][0.607863,0.832588,0][0.123727,0.960631,-2.74817][0.670011,0.601008,0.435746][0.607863,0.832588,0][-0.014683,0.960631,-2.6559][0.0244969,0.717439,0.696191][0.607863,0.845594,0][-0.014683,0.686117,-2.46059][0.0190922,0.479097,0.877554][0.582068,0.845594,0][0.350721,-0.125891,-1.67165][0.710189,0.687211,0.152877][0.191893,0.882029,0][0.472522,-0.405019,-1.67165][0.99016,-0.0850695,-0.111113][0.211465,0.899489,0][0.425232,-0.191636,-2.25912][0.974726,0.00654015,-0.22331][0.159754,0.927335,0][0.425232,-0.191636,-2.25912][0.974726,0.00654015,-0.22331][0.159754,0.927335,0][0.315253,0.0153308,-2.17983][0.702113,0.63775,0.316721][0.150202,0.908828,0][0.350721,-0.125891,-1.67165][0.710189,0.687211,0.152877][0.191893,0.882029,0][0.315253,0.0153308,-2.17983][0.702113,0.63775,0.316721][0.150202,0.908828,0][0.425232,-0.191636,-2.25912][0.974726,0.00654015,-0.22331][0.159754,0.927335,0][0.321193,0.19476,-2.49596][0.969458,0.154964,-0.190097][0.117845,0.919772,0][0.321193,0.19476,-2.49596][0.969458,0.154964,-0.190097][0.117845,0.919772,0][0.237224,0.315292,-2.39446][0.64533,0.471452,0.601067][0.115743,0.905115,0][0.315253,0.0153308,-2.17983][0.702113,0.63775,0.316721][0.150202,0.908828,0][0.237224,0.315292,-2.39446][0.64533,0.471452,0.601067][0.115743,0.905115,0][0.321193,0.19476,-2.49596][0.969458,0.154964,-0.190097][0.117845,0.919772,0][0.217155,0.622679,-2.64052][0.98187,0.189481,-0.00527159][0.0787969,0.903141,0][0.217155,0.622679,-2.64052][0.98187,0.189481,-0.00527159][0.0787969,0.903141,0][0.159195,0.666292,-2.51682][0.629801,0.446089,0.635889][0.0834768,0.891739,0][0.237224,0.315292,-2.39446][0.64533,0.471452,0.601067][0.115743,0.905115,0][0.159195,0.666292,-2.51682][0.629801,0.446089,0.635889][0.0834768,0.891739,0][0.217155,0.622679,-2.64052][0.98187,0.189481,-0.00527159][0.0787969,0.903141,0][0.169864,0.960631,-2.95118][0.969024,0.246688,0.0117517][0.0356672,0.903784,0][0.169864,0.960631,-2.95118][0.969024,0.246688,0.0117517][0.0356672,0.903784,0][0.123727,0.960631,-2.74817][0.670011,0.601008,0.435746][0.0483657,0.889549,0][0.159195,0.666292,-2.51682][0.629801,0.446089,0.635889][0.0834768,0.891739,0][0.472522,-0.405019,-1.67165][0.99016,-0.0850695,-0.111113][0.211465,0.899489,0][0.350721,-0.684146,-1.67165][0.599412,-0.722795,-0.343906][0.231038,0.91695,0][0.315253,-0.398603,-2.33842][0.591626,-0.567657,-0.57249][0.169306,0.945842,0][0.315253,-0.398603,-2.33842][0.591626,-0.567657,-0.57249][0.169306,0.945842,0][0.425232,-0.191636,-2.25912][0.974726,0.00654015,-0.22331][0.159754,0.927335,0][0.472522,-0.405019,-1.67165][0.99016,-0.0850695,-0.111113][0.211465,0.899489,0][0.425232,-0.191636,-2.25912][0.974726,0.00654015,-0.22331][0.159754,0.927335,0][0.315253,-0.398603,-2.33842][0.591626,-0.567657,-0.57249][0.169306,0.945842,0][0.237224,0.0742273,-2.59746][0.560511,-0.256459,-0.787436][0.119948,0.934429,0][0.237224,0.0742273,-2.59746][0.560511,-0.256459,-0.787436][0.119948,0.934429,0][0.321193,0.19476,-2.49596][0.969458,0.154964,-0.190097][0.117845,0.919772,0][0.425232,-0.191636,-2.25912][0.974726,0.00654015,-0.22331][0.159754,0.927335,0][0.321193,0.19476,-2.49596][0.969458,0.154964,-0.190097][0.117845,0.919772,0][0.237224,0.0742273,-2.59746][0.560511,-0.256459,-0.787436][0.119948,0.934429,0][0.159195,0.579065,-2.76423][0.698141,-0.306373,-0.647097][0.074117,0.914543,0][0.159195,0.579065,-2.76423][0.698141,-0.306373,-0.647097][0.074117,0.914543,0][0.217155,0.622679,-2.64052][0.98187,0.189481,-0.00527159][0.0787969,0.903141,0][0.321193,0.19476,-2.49596][0.969458,0.154964,-0.190097][0.117845,0.919772,0][0.217155,0.622679,-2.64052][0.98187,0.189481,-0.00527159][0.0787969,0.903141,0][0.159195,0.579065,-2.76423][0.698141,-0.306373,-0.647097][0.074117,0.914543,0][0.123727,0.960631,-3.15418][0.753575,-0.499343,-0.427528][0.0229688,0.918019,0][0.123727,0.960631,-3.15418][0.753575,-0.499343,-0.427528][0.0229688,0.918019,0][0.169864,0.960631,-2.95118][0.969024,0.246688,0.0117517][0.0356672,0.903784,0][0.217155,0.622679,-2.64052][0.98187,0.189481,-0.00527159][0.0787969,0.903141,0][0.350721,-0.684146,-1.67165][0.599412,-0.722795,-0.343906][0.980067,0.347872,0][-0.0146829,-0.811023,-1.67165][0.00128447,-0.911668,-0.410926][0.945732,0.347872,0][-0.0146829,-0.492679,-2.37447][-0.000899316,-0.740986,-0.67152][0.945732,0.281831,0][-0.0146829,-0.492679,-2.37447][-0.000899316,-0.740986,-0.67152][0.945732,0.281831,0][0.315253,-0.398603,-2.33842][0.591626,-0.567657,-0.57249][0.976735,0.285218,0][0.350721,-0.684146,-1.67165][0.599412,-0.722795,-0.343906][0.980067,0.347872,0][0.315253,-0.398603,-2.33842][0.591626,-0.567657,-0.57249][0.172447,0.681151,0][-0.0146829,-0.492679,-2.37447][-0.000899316,-0.740986,-0.67152][0.181287,0.712154,0][-0.0146829,0.0194399,-2.6436][-0.00725304,-0.38706,-0.922026][0.133165,0.712154,0][-0.0146829,0.0194399,-2.6436][-0.00725304,-0.38706,-0.922026][0.133165,0.712154,0][0.237224,0.0742273,-2.59746][0.560511,-0.256459,-0.787436][0.128017,0.688483,0][0.315253,-0.398603,-2.33842][0.591626,-0.567657,-0.57249][0.172447,0.681151,0][0.237224,0.0742273,-2.59746][0.560511,-0.256459,-0.787436][0.128017,0.688483,0][-0.0146829,0.0194399,-2.6436][-0.00725304,-0.38706,-0.922026][0.133165,0.712154,0][-0.014683,0.559241,-2.82046][-0.0138542,-0.531556,-0.84691][0.0824415,0.712154,0][-0.014683,0.559241,-2.82046][-0.0138542,-0.531556,-0.84691][0.0824415,0.712154,0][0.159195,0.579065,-2.76423][0.698141,-0.306373,-0.647097][0.0805786,0.695815,0][0.237224,0.0742273,-2.59746][0.560511,-0.256459,-0.787436][0.128017,0.688483,0][0.159195,0.579065,-2.76423][0.698141,-0.306373,-0.647097][0.373371,0.756499,0][-0.014683,0.559241,-2.82046][-0.0138542,-0.531556,-0.84691][0.375407,0.739347,0][-0.014683,0.960631,-3.24645][-0.010505,-0.844201,-0.535924][0.43038,0.737638,0][-0.014683,0.960631,-3.24645][-0.010505,-0.844201,-0.535924][0.43038,0.737638,0][0.123727,0.960631,-3.15418][0.753575,-0.499343,-0.427528][0.424513,0.752001,0][0.159195,0.579065,-2.76423][0.698141,-0.306373,-0.647097][0.373371,0.756499,0][-0.0146829,-0.811023,-1.67165][0.00128447,-0.911668,-0.410926][0.945732,0.347872,0][-0.380086,-0.684146,-1.67165][-0.600931,-0.722823,-0.341188][0.911396,0.347872,0][-0.344619,-0.398603,-2.33842][-0.591838,-0.561139,-0.578664][0.914729,0.285218,0][-0.344619,-0.398603,-2.33842][-0.591838,-0.561139,-0.578664][0.914729,0.285218,0][-0.0146829,-0.492679,-2.37447][-0.000899316,-0.740986,-0.67152][0.945732,0.281831,0][-0.0146829,-0.811023,-1.67165][0.00128447,-0.911668,-0.410926][0.945732,0.347872,0][-0.0146829,-0.492679,-2.37447][-0.000899316,-0.740986,-0.67152][0.181287,0.712154,0][-0.344619,-0.398603,-2.33842][-0.591838,-0.561139,-0.578664][0.172447,0.743157,0][-0.26659,0.0742273,-2.59746][-0.566542,-0.25102,-0.784869][0.128017,0.735825,0][-0.26659,0.0742273,-2.59746][-0.566542,-0.25102,-0.784869][0.128017,0.735825,0][-0.0146829,0.0194399,-2.6436][-0.00725304,-0.38706,-0.922026][0.133165,0.712154,0][-0.0146829,-0.492679,-2.37447][-0.000899316,-0.740986,-0.67152][0.181287,0.712154,0][-0.0146829,0.0194399,-2.6436][-0.00725304,-0.38706,-0.922026][0.133165,0.712154,0][-0.26659,0.0742273,-2.59746][-0.566542,-0.25102,-0.784869][0.128017,0.735825,0][-0.188561,0.579065,-2.76423][-0.70399,-0.302257,-0.642681][0.0805786,0.728493,0][-0.188561,0.579065,-2.76423][-0.70399,-0.302257,-0.642681][0.0805786,0.728493,0][-0.014683,0.559241,-2.82046][-0.0138542,-0.531556,-0.84691][0.0824415,0.712154,0][-0.0146829,0.0194399,-2.6436][-0.00725304,-0.38706,-0.922026][0.133165,0.712154,0][-0.014683,0.559241,-2.82046][-0.0138542,-0.531556,-0.84691][0.375407,0.739347,0][-0.188561,0.579065,-2.76423][-0.70399,-0.302257,-0.642681][0.372399,0.725256,0][-0.153093,0.960631,-3.15418][-0.758117,-0.500042,-0.418589][0.423739,0.727131,0][-0.153093,0.960631,-3.15418][-0.758117,-0.500042,-0.418589][0.423739,0.727131,0][-0.014683,0.960631,-3.24645][-0.010505,-0.844201,-0.535924][0.43038,0.737638,0][-0.014683,0.559241,-2.82046][-0.0138542,-0.531556,-0.84691][0.375407,0.739347,0][-0.380086,-0.684146,-1.67165][-0.600931,-0.722823,-0.341188][0.737464,0.744896,0][-0.501888,-0.405019,-1.67165][-0.990114,-0.0791394,-0.115806][0.718558,0.763075,0][-0.454597,-0.191636,-2.25912][-0.972441,0.012565,-0.232811][0.665843,0.73718,0][-0.454597,-0.191636,-2.25912][-0.972441,0.012565,-0.232811][0.665843,0.73718,0][-0.344619,-0.398603,-2.33842][-0.591838,-0.561139,-0.578664][0.674697,0.718329,0][-0.380086,-0.684146,-1.67165][-0.600931,-0.722823,-0.341188][0.737464,0.744896,0][-0.344619,-0.398603,-2.33842][-0.591838,-0.561139,-0.578664][0.674697,0.718329,0][-0.454597,-0.191636,-2.25912][-0.972441,0.012565,-0.232811][0.665843,0.73718,0][-0.350559,0.19476,-2.49596][-0.96628,0.153601,-0.206662][0.624246,0.746304,0][-0.350559,0.19476,-2.49596][-0.96628,0.153601,-0.206662][0.624246,0.746304,0][-0.26659,0.0742273,-2.59746][-0.566542,-0.25102,-0.784869][0.625799,0.731578,0][-0.344619,-0.398603,-2.33842][-0.591838,-0.561139,-0.578664][0.674697,0.718329,0][-0.26659,0.0742273,-2.59746][-0.566542,-0.25102,-0.784869][0.625799,0.731578,0][-0.350559,0.19476,-2.49596][-0.96628,0.153601,-0.206662][0.624246,0.746304,0][-0.24652,0.622679,-2.64052][-0.986578,0.161443,-0.0244998][0.585846,0.764382,0][-0.24652,0.622679,-2.64052][-0.986578,0.161443,-0.0244998][0.585846,0.764382,0][-0.188561,0.579065,-2.76423][-0.70399,-0.302257,-0.642681][0.580743,0.753162,0][-0.26659,0.0742273,-2.59746][-0.566542,-0.25102,-0.784869][0.625799,0.731578,0][-0.188561,0.579065,-2.76423][-0.70399,-0.302257,-0.642681][0.580743,0.753162,0][-0.24652,0.622679,-2.64052][-0.986578,0.161443,-0.0244998][0.585846,0.764382,0][-0.19923,0.960631,-2.95118][-0.977455,0.211115,-0.00338218][0.542722,0.76535,0][-0.19923,0.960631,-2.95118][-0.977455,0.211115,-0.00338218][0.542722,0.76535,0][-0.153093,0.960631,-3.15418][-0.758117,-0.500042,-0.418589][0.529501,0.7516,0][-0.188561,0.579065,-2.76423][-0.70399,-0.302257,-0.642681][0.580743,0.753162,0][-0.501888,-0.405019,-1.67165][-0.990114,-0.0791394,-0.115806][0.718558,0.763075,0][-0.380086,-0.125891,-1.67165][-0.713551,0.687491,0.134912][0.699651,0.781254,0][-0.344619,0.0153308,-2.17983][-0.705062,0.633073,0.31954][0.656989,0.756031,0][-0.344619,0.0153308,-2.17983][-0.705062,0.633073,0.31954][0.656989,0.756031,0][-0.454597,-0.191636,-2.25912][-0.972441,0.012565,-0.232811][0.665843,0.73718,0][-0.501888,-0.405019,-1.67165][-0.990114,-0.0791394,-0.115806][0.718558,0.763075,0][-0.454597,-0.191636,-2.25912][-0.972441,0.012565,-0.232811][0.665843,0.73718,0][-0.344619,0.0153308,-2.17983][-0.705062,0.633073,0.31954][0.656989,0.756031,0][-0.26659,0.315292,-2.39446][-0.649903,0.461442,0.603902][0.622692,0.761029,0][-0.26659,0.315292,-2.39446][-0.649903,0.461442,0.603902][0.622692,0.761029,0][-0.350559,0.19476,-2.49596][-0.96628,0.153601,-0.206662][0.624246,0.746304,0][-0.454597,-0.191636,-2.25912][-0.972441,0.012565,-0.232811][0.665843,0.73718,0][-0.350559,0.19476,-2.49596][-0.96628,0.153601,-0.206662][0.624246,0.746304,0][-0.26659,0.315292,-2.39446][-0.649903,0.461442,0.603902][0.622692,0.761029,0][-0.188561,0.666292,-2.51682][-0.640072,0.437169,0.631816][0.590948,0.775601,0][-0.188561,0.666292,-2.51682][-0.640072,0.437169,0.631816][0.590948,0.775601,0][-0.24652,0.622679,-2.64052][-0.986578,0.161443,-0.0244998][0.585846,0.764382,0][-0.350559,0.19476,-2.49596][-0.96628,0.153601,-0.206662][0.624246,0.746304,0][-0.24652,0.622679,-2.64052][-0.986578,0.161443,-0.0244998][0.585846,0.764382,0][-0.188561,0.666292,-2.51682][-0.640072,0.437169,0.631816][0.590948,0.775601,0][-0.153093,0.960631,-2.74817][-0.666751,0.612705,0.424306][0.555943,0.7791,0][-0.153093,0.960631,-2.74817][-0.666751,0.612705,0.424306][0.555943,0.7791,0][-0.19923,0.960631,-2.95118][-0.977455,0.211115,-0.00338218][0.542722,0.76535,0][-0.24652,0.622679,-2.64052][-0.986578,0.161443,-0.0244998][0.585846,0.764382,0][-0.380086,-0.125891,-1.67165][-0.713551,0.687491,0.134912][0.0805786,0.751491,0][-0.0146829,0.000985146,-1.67165][-0.0065233,0.972982,0.230787][0.114914,0.751491,0][-0.0146829,0.109407,-2.14378][-0.00151091,0.835863,0.548936][0.114914,0.795856,0][-0.0146829,0.109407,-2.14378][-0.00151091,0.835863,0.548936][0.114914,0.795856,0][-0.344619,0.0153308,-2.17983][-0.705062,0.633073,0.31954][0.0839114,0.799243,0][-0.380086,-0.125891,-1.67165][-0.713551,0.687491,0.134912][0.0805786,0.751491,0][-0.344619,0.0153308,-2.17983][-0.705062,0.633073,0.31954][0.519036,0.876596,0][-0.0146829,0.109407,-2.14378][-0.00151091,0.835863,0.548936][0.527876,0.845594,0][-0.0146829,0.37008,-2.34832][0.0098931,0.482807,0.875671][0.552371,0.845594,0][-0.0146829,0.37008,-2.34832][0.0098931,0.482807,0.875671][0.552371,0.845594,0][-0.26659,0.315292,-2.39446][-0.649903,0.461442,0.603902][0.547223,0.869264,0][-0.344619,0.0153308,-2.17983][-0.705062,0.633073,0.31954][0.519036,0.876596,0][-0.26659,0.315292,-2.39446][-0.649903,0.461442,0.603902][0.547223,0.869264,0][-0.0146829,0.37008,-2.34832][0.0098931,0.482807,0.875671][0.552371,0.845594,0][-0.014683,0.686117,-2.46059][0.0190922,0.479097,0.877554][0.582068,0.845594,0][-0.014683,0.686117,-2.46059][0.0190922,0.479097,0.877554][0.582068,0.845594,0][-0.188561,0.666292,-2.51682][-0.640072,0.437169,0.631816][0.580205,0.861932,0][-0.26659,0.315292,-2.39446][-0.649903,0.461442,0.603902][0.547223,0.869264,0][-0.188561,0.666292,-2.51682][-0.640072,0.437169,0.631816][0.580205,0.861932,0][-0.014683,0.686117,-2.46059][0.0190922,0.479097,0.877554][0.582068,0.845594,0][-0.014683,0.960631,-2.6559][0.0244969,0.717439,0.696191][0.607863,0.845594,0][-0.014683,0.960631,-2.6559][0.0244969,0.717439,0.696191][0.553131,0.72358,0][-0.153093,0.960631,-2.74817][-0.666751,0.612705,0.424306][0.553131,0.739211,0][-0.188561,0.666292,-2.51682][-0.640072,0.437169,0.631816][0.519036,0.729925,0][-0.014683,0.960631,-2.6559][0.0244969,0.717439,0.696191][0.895562,0.163874,0][0.123727,0.960631,-2.74817][0.670011,0.601008,0.435746][0.905678,0.151956,0][0.115077,1.00418,-2.82547][0.552548,0.791937,0.259857][0.912798,0.153603,0][0.115077,1.00418,-2.82547][0.552548,0.791937,0.259857][0.912798,0.153603,0][-0.014683,1.00215,-2.72664][0.0108052,0.904752,0.425801][0.902165,0.164642,0][-0.014683,0.960631,-2.6559][0.0244969,0.717439,0.696191][0.895562,0.163874,0][-0.014683,1.00215,-2.72664][0.0108052,0.904752,0.425801][0.902165,0.164642,0][0.115077,1.00418,-2.82547][0.552548,0.791937,0.259857][0.912798,0.153603,0][0.0960453,1.01924,-2.87169][-0.0216753,0.99972,-0.00953983][0.916905,0.155881,0][0.0960453,1.01924,-2.87169][-0.0216753,0.99972,-0.00953983][0.916905,0.155881,0][-0.014683,1.016,-2.77893][0.00162337,0.999756,-0.0220463][0.907046,0.165209,0][-0.014683,1.00215,-2.72664][0.0108052,0.904752,0.425801][0.902165,0.164642,0][-0.014683,1.016,-2.77893][0.00162337,0.999756,-0.0220463][0.590935,0.874687,0][0.0960453,1.01924,-2.87169][-0.0216753,0.99972,-0.00953983][0.604511,0.874798,0][0.0770139,1.00499,-2.87307][-0.849082,0.332915,-0.410155][0.603179,0.876596,0][0.0770139,1.00499,-2.87307][-0.849082,0.332915,-0.410155][0.603179,0.876596,0][-0.014683,1.00215,-2.79431][0.0115562,0.0258791,-0.999598][0.59182,0.876415,0][-0.014683,1.016,-2.77893][0.00162337,0.999756,-0.0220463][0.590935,0.874687,0][-0.014683,1.00215,-2.79431][0.0115562,0.0258791,-0.999598][0.566641,0.727855,0][0.0770139,1.00499,-2.87307][-0.849082,0.332915,-0.410155][0.566995,0.739211,0][0.0683633,0.960631,-2.81584][-0.637,-0.54862,-0.541522][0.561465,0.735165,0][0.0683633,0.960631,-2.81584][-0.637,-0.54862,-0.541522][0.561465,0.735165,0][-0.014683,0.960631,-2.75433][0.00967195,-0.704553,-0.709586][0.561795,0.725466,0][-0.014683,1.00215,-2.79431][0.0115562,0.0258791,-0.999598][0.566641,0.727855,0][0.123727,0.960631,-2.74817][0.670011,0.601008,0.435746][0.0483657,0.889549,0][0.169864,0.960631,-2.95118][0.969024,0.246688,0.0117517][0.0356672,0.903784,0][0.15833,1.00864,-3.04287][0.889172,0.455223,-0.0463107][0.0265648,0.907211,0][0.15833,1.00864,-3.04287][0.889172,0.455223,-0.0463107][0.0265648,0.907211,0][0.115077,1.00418,-2.82547][0.552548,0.791937,0.259857][0.0404771,0.892245,0][0.123727,0.960631,-2.74817][0.670011,0.601008,0.435746][0.0483657,0.889549,0][0.115077,1.00418,-2.82547][0.552548,0.791937,0.259857][0.912798,0.153603,0][0.15833,1.00864,-3.04287][0.889172,0.455223,-0.0463107][0.93356,0.151926,0][0.132955,1.02638,-3.07575][0.1489,0.988794,0.0106881][0.936352,0.154651,0][0.132955,1.02638,-3.07575][0.1489,0.988794,0.0106881][0.936352,0.154651,0][0.0960453,1.01924,-2.87169][-0.0216753,0.99972,-0.00953983][0.916905,0.155881,0][0.115077,1.00418,-2.82547][0.552548,0.791937,0.259857][0.912798,0.153603,0][0.0960453,1.01924,-2.87169][-0.0216753,0.99972,-0.00953983][0.916905,0.155881,0][0.132955,1.02638,-3.07575][0.1489,0.988794,0.0106881][0.936352,0.154651,0][0.10758,1.01124,-3.04633][-0.72912,0.682946,0.0443757][0.933332,0.156701,0][0.10758,1.01124,-3.04633][-0.72912,0.682946,0.0443757][0.933332,0.156701,0][0.0770139,1.00499,-2.87307][-0.849082,0.332915,-0.410155][0.916828,0.157673,0][0.0960453,1.01924,-2.87169][-0.0216753,0.99972,-0.00953983][0.916905,0.155881,0][0.0770139,1.00499,-2.87307][-0.849082,0.332915,-0.410155][0.0155367,0.94089,0][0.10758,1.01124,-3.04633][-0.72912,0.682946,0.0443757][0.0318283,0.940942,0][0.0960454,0.960631,-2.95118][-0.992385,0.00923261,-0.122825][0.0227072,0.945343,0][0.0960454,0.960631,-2.95118][-0.992385,0.00923261,-0.122825][0.0227072,0.945343,0][0.0683633,0.960631,-2.81584][-0.637,-0.54862,-0.541522][0.01,0.944845,0][0.0770139,1.00499,-2.87307][-0.849082,0.332915,-0.410155][0.0155367,0.94089,0][0.169864,0.960631,-2.95118][0.969024,0.246688,0.0117517][0.0356672,0.903784,0][0.123727,0.960631,-3.15418][0.753575,-0.499343,-0.427528][0.0229688,0.918019,0][0.115077,1.0131,-3.26028][0.857481,-0.180439,-0.481839][0.0126524,0.922176,0][0.115077,1.0131,-3.26028][0.857481,-0.180439,-0.481839][0.0126524,0.922176,0][0.15833,1.00864,-3.04287][0.889172,0.455223,-0.0463107][0.0265648,0.907211,0][0.169864,0.960631,-2.95118][0.969024,0.246688,0.0117517][0.0356672,0.903784,0][0.15833,1.00864,-3.04287][0.889172,0.455223,-0.0463107][0.0265648,0.907211,0][0.115077,1.0131,-3.26028][0.857481,-0.180439,-0.481839][0.0126524,0.922176,0][0.0960453,1.03351,-3.2798][0.499925,0.736751,-0.455273][0.01,0.922269,0][0.0960453,1.03351,-3.2798][0.499925,0.736751,-0.455273][0.954998,0.160312,0][0.132955,1.02638,-3.07575][0.1489,0.988794,0.0106881][0.936352,0.154651,0][0.15833,1.00864,-3.04287][0.889172,0.455223,-0.0463107][0.93356,0.151926,0][0.132955,1.02638,-3.07575][0.1489,0.988794,0.0106881][0.936352,0.154651,0][0.0960453,1.03351,-3.2798][0.499925,0.736751,-0.455273][0.954998,0.160312,0][0.0770139,1.01748,-3.2196][-0.358277,0.907193,0.220541][0.949172,0.161435,0][0.0770139,1.01748,-3.2196][-0.358277,0.907193,0.220541][0.949172,0.161435,0][0.10758,1.01124,-3.04633][-0.72912,0.682946,0.0443757][0.933332,0.156701,0][0.132955,1.02638,-3.07575][0.1489,0.988794,0.0106881][0.936352,0.154651,0][0.10758,1.01124,-3.04633][-0.72912,0.682946,0.0443757][0.0318283,0.940942,0][0.0770139,1.01748,-3.2196][-0.358277,0.907193,0.220541][0.0481199,0.940994,0][0.0683633,0.960631,-3.08651][-0.715797,0.65725,0.23592][0.0354143,0.945842,0][0.0683633,0.960631,-3.08651][-0.715797,0.65725,0.23592][0.0354143,0.945842,0][0.0960454,0.960631,-2.95118][-0.992385,0.00923261,-0.122825][0.0227072,0.945343,0][0.10758,1.01124,-3.04633][-0.72912,0.682946,0.0443757][0.0318283,0.940942,0][0.123727,0.960631,-3.15418][0.753575,-0.499343,-0.427528][0.195858,0.05891,0][-0.014683,0.960631,-3.24645][-0.010505,-0.844201,-0.535924][0.208864,0.0675806,0][-0.014683,1.01513,-3.3591][-0.0155847,-0.685298,-0.728096][0.208864,0.078166,0][-0.014683,1.01513,-3.3591][-0.0155847,-0.685298,-0.728096][0.208864,0.078166,0][0.115077,1.0131,-3.26028][0.857481,-0.180439,-0.481839][0.196671,0.0688801,0][0.123727,0.960631,-3.15418][0.753575,-0.499343,-0.427528][0.195858,0.05891,0][0.115077,1.0131,-3.26028][0.857481,-0.180439,-0.481839][0.640402,0.6208,0][-0.014683,1.01513,-3.3591][-0.0155847,-0.685298,-0.728096][0.640136,0.608608,0][-0.014683,1.03676,-3.37256][-0.0166783,0.458114,-0.888737][0.642167,0.608532,0][-0.014683,1.03676,-3.37256][-0.0166783,0.458114,-0.888737][0.642167,0.608532,0][0.0960453,1.03351,-3.2798][0.499925,0.736751,-0.455273][0.642251,0.618941,0][0.115077,1.0131,-3.26028][0.857481,-0.180439,-0.481839][0.640402,0.6208,0][0.0960453,1.03351,-3.2798][0.499925,0.736751,-0.455273][0.954998,0.160312,0][-0.014683,1.03676,-3.37256][-0.0166783,0.458114,-0.888737][0.962453,0.171654,0][-0.014683,1.02032,-3.29836][0.000800546,0.965582,0.260098][0.955527,0.170848,0][-0.014683,1.02032,-3.29836][0.000800546,0.965582,0.260098][0.955527,0.170848,0][0.0770139,1.01748,-3.2196][-0.358277,0.907193,0.220541][0.949172,0.161435,0][0.0960453,1.03351,-3.2798][0.499925,0.736751,-0.455273][0.954998,0.160312,0][0.0770139,1.01748,-3.2196][-0.358277,0.907193,0.220541][0.949172,0.161435,0][-0.014683,1.02032,-3.29836][0.000800546,0.965582,0.260098][0.955527,0.170848,0][-0.014683,0.960631,-3.14803][-0.00441789,0.928378,0.371611][0.941496,0.169216,0][-0.014683,0.960631,-3.14803][-0.00441789,0.928378,0.371611][0.941496,0.169216,0][0.0683633,0.960631,-3.08651][-0.715797,0.65725,0.23592][0.936656,0.160797,0][0.0770139,1.01748,-3.2196][-0.358277,0.907193,0.220541][0.949172,0.161435,0][-0.014683,0.960631,-3.24645][-0.010505,-0.844201,-0.535924][0.208864,0.0675806,0][-0.153093,0.960631,-3.15418][-0.758117,-0.500042,-0.418589][0.22187,0.05891,0][-0.144443,1.0131,-3.26028][-0.858853,-0.178361,-0.480165][0.221057,0.0688801,0][-0.144443,1.0131,-3.26028][-0.858853,-0.178361,-0.480165][0.221057,0.0688801,0][-0.014683,1.01513,-3.3591][-0.0155847,-0.685298,-0.728096][0.208864,0.078166,0][-0.014683,0.960631,-3.24645][-0.010505,-0.844201,-0.535924][0.208864,0.0675806,0][-0.014683,1.01513,-3.3591][-0.0155847,-0.685298,-0.728096][0.626307,0.59628,0][-0.144443,1.0131,-3.26028][-0.858853,-0.178361,-0.480165][0.626117,0.584086,0][-0.125411,1.03351,-3.2798][-0.497947,0.716801,-0.488103][0.628034,0.585875,0][-0.125411,1.03351,-3.2798][-0.497947,0.716801,-0.488103][0.602564,0.819986,0][-0.014683,1.03676,-3.37256][-0.0166783,0.458114,-0.888737][0.588992,0.820324,0][-0.014683,1.01513,-3.3591][-0.0155847,-0.685298,-0.728096][0.589794,0.818069,0][-0.014683,1.03676,-3.37256][-0.0166783,0.458114,-0.888737][0.962453,0.171654,0][-0.125411,1.03351,-3.2798][-0.497947,0.716801,-0.488103][0.952594,0.180982,0][-0.10638,1.01748,-3.2196][0.361893,0.905399,0.222004][0.947181,0.178552,0][-0.10638,1.01748,-3.2196][0.361893,0.905399,0.222004][0.947181,0.178552,0][-0.014683,1.02032,-3.29836][0.000800546,0.965582,0.260098][0.955527,0.170848,0][-0.014683,1.03676,-3.37256][-0.0166783,0.458114,-0.888737][0.962453,0.171654,0][-0.014683,1.02032,-3.29836][0.000800546,0.965582,0.260098][0.955527,0.170848,0][-0.10638,1.01748,-3.2196][0.361893,0.905399,0.222004][0.947181,0.178552,0][-0.0977293,0.960631,-3.08651][0.710477,0.66318,0.235404][0.934853,0.1763,0][-0.0977293,0.960631,-3.08651][0.710477,0.66318,0.235404][0.934853,0.1763,0][-0.014683,0.960631,-3.14803][-0.00441789,0.928378,0.371611][0.941496,0.169216,0][-0.014683,1.02032,-3.29836][0.000800546,0.965582,0.260098][0.955527,0.170848,0][-0.153093,0.960631,-3.15418][-0.758117,-0.500042,-0.418589][0.529501,0.7516,0][-0.19923,0.960631,-2.95118][-0.977455,0.211115,-0.00338218][0.542722,0.76535,0][-0.187696,1.00864,-3.04287][-0.8972,0.437703,-0.05872][0.533498,0.762266,0][-0.187696,1.00864,-3.04287][-0.8972,0.437703,-0.05872][0.533498,0.762266,0][-0.144443,1.0131,-3.26028][-0.858853,-0.178361,-0.480165][0.519036,0.747831,0][-0.153093,0.960631,-3.15418][-0.758117,-0.500042,-0.418589][0.529501,0.7516,0][-0.144443,1.0131,-3.26028][-0.858853,-0.178361,-0.480165][0.950565,0.182546,0][-0.187696,1.00864,-3.04287][-0.8972,0.437703,-0.05872][0.929803,0.184223,0][-0.162321,1.02638,-3.07575][-0.164002,0.986459,-0.00132614][0.933147,0.182212,0][-0.162321,1.02638,-3.07575][-0.164002,0.986459,-0.00132614][0.599437,0.722151,0][-0.125411,1.03351,-3.2798][-0.497947,0.716801,-0.488103][0.580262,0.722822,0][-0.144443,1.0131,-3.26028][-0.858853,-0.178361,-0.480165][0.582097,0.720904,0][-0.125411,1.03351,-3.2798][-0.497947,0.716801,-0.488103][0.952594,0.180982,0][-0.162321,1.02638,-3.07575][-0.164002,0.986459,-0.00132614][0.933147,0.182212,0][-0.136946,1.01124,-3.04633][0.730319,0.681675,0.0441895][0.930677,0.179524,0][-0.136946,1.01124,-3.04633][0.730319,0.681675,0.0441895][0.930677,0.179524,0][-0.10638,1.01748,-3.2196][0.361893,0.905399,0.222004][0.947181,0.178552,0][-0.125411,1.03351,-3.2798][-0.497947,0.716801,-0.488103][0.952594,0.180982,0][-0.10638,1.01748,-3.2196][0.361893,0.905399,0.222004][0.706973,0.506545,0][-0.136946,1.01124,-3.04633][0.730319,0.681675,0.0441895][0.706995,0.522837,0][-0.125411,0.960631,-2.95118][0.98973,-0.0341885,-0.138801][0.702577,0.53195,0][-0.125411,0.960631,-2.95118][0.98973,-0.0341885,-0.138801][0.702577,0.53195,0][-0.0977293,0.960631,-3.08651][0.710477,0.66318,0.235404][0.702102,0.519242,0][-0.10638,1.01748,-3.2196][0.361893,0.905399,0.222004][0.706973,0.506545,0][-0.19923,0.960631,-2.95118][-0.977455,0.211115,-0.00338218][0.542722,0.76535,0][-0.153093,0.960631,-2.74817][-0.666751,0.612705,0.424306][0.555943,0.7791,0][-0.144443,1.00418,-2.82547][-0.545379,0.797206,0.258889][0.54796,0.776702,0][-0.144443,1.00418,-2.82547][-0.545379,0.797206,0.258889][0.54796,0.776702,0][-0.187696,1.00864,-3.04287][-0.8972,0.437703,-0.05872][0.533498,0.762266,0][-0.19923,0.960631,-2.95118][-0.977455,0.211115,-0.00338218][0.542722,0.76535,0][-0.187696,1.00864,-3.04287][-0.8972,0.437703,-0.05872][0.929803,0.184223,0][-0.144443,1.00418,-2.82547][-0.545379,0.797206,0.258889][0.90998,0.177826,0][-0.125411,1.01924,-2.87169][0.0192883,0.999739,-0.0122715][0.914501,0.176551,0][-0.125411,1.01924,-2.87169][0.0192883,0.999739,-0.0122715][0.914501,0.176551,0][-0.162321,1.02638,-3.07575][-0.164002,0.986459,-0.00132614][0.933147,0.182212,0][-0.187696,1.00864,-3.04287][-0.8972,0.437703,-0.05872][0.929803,0.184223,0][-0.162321,1.02638,-3.07575][-0.164002,0.986459,-0.00132614][0.933147,0.182212,0][-0.125411,1.01924,-2.87169][0.0192883,0.999739,-0.0122715][0.914501,0.176551,0][-0.10638,1.00499,-2.87307][0.845663,0.354892,-0.39863][0.914837,0.17479,0][-0.10638,1.00499,-2.87307][0.845663,0.354892,-0.39863][0.914837,0.17479,0][-0.136946,1.01124,-3.04633][0.730319,0.681675,0.0441895][0.930677,0.179524,0][-0.162321,1.02638,-3.07575][-0.164002,0.986459,-0.00132614][0.933147,0.182212,0][-0.136946,1.01124,-3.04633][0.730319,0.681675,0.0441895][0.706995,0.522837,0][-0.10638,1.00499,-2.87307][0.845663,0.354892,-0.39863][0.707017,0.539129,0][-0.0977293,0.960631,-2.81584][0.610737,-0.5814,-0.537564][0.703052,0.544658,0][-0.0977293,0.960631,-2.81584][0.610737,-0.5814,-0.537564][0.703052,0.544658,0][-0.125411,0.960631,-2.95118][0.98973,-0.0341885,-0.138801][0.702577,0.53195,0][-0.136946,1.01124,-3.04633][0.730319,0.681675,0.0441895][0.706995,0.522837,0][-0.153093,0.960631,-2.74817][-0.666751,0.612705,0.424306][0.902672,0.177794,0][-0.014683,0.960631,-2.6559][0.0244969,0.717439,0.696191][0.895562,0.163874,0][-0.014683,1.00215,-2.72664][0.0108052,0.904752,0.425801][0.902165,0.164642,0][-0.014683,1.00215,-2.72664][0.0108052,0.904752,0.425801][0.902165,0.164642,0][-0.144443,1.00418,-2.82547][-0.545379,0.797206,0.258889][0.90998,0.177826,0][-0.153093,0.960631,-2.74817][-0.666751,0.612705,0.424306][0.902672,0.177794,0][-0.144443,1.00418,-2.82547][-0.545379,0.797206,0.258889][0.90998,0.177826,0][-0.014683,1.00215,-2.72664][0.0108052,0.904752,0.425801][0.902165,0.164642,0][-0.014683,1.016,-2.77893][0.00162337,0.999756,-0.0220463][0.907046,0.165209,0][-0.014683,1.016,-2.77893][0.00162337,0.999756,-0.0220463][0.907046,0.165209,0][-0.125411,1.01924,-2.87169][0.0192883,0.999739,-0.0122715][0.914501,0.176551,0][-0.144443,1.00418,-2.82547][-0.545379,0.797206,0.258889][0.90998,0.177826,0][-0.125411,1.01924,-2.87169][0.0192883,0.999739,-0.0122715][0.138262,0.894508,0][-0.014683,1.016,-2.77893][0.00162337,0.999756,-0.0220463][0.124686,0.894618,0][-0.014683,1.00215,-2.79431][0.0115562,0.0258791,-0.999598][0.12557,0.892886,0][-0.014683,1.00215,-2.79431][0.0115562,0.0258791,-0.999598][0.12557,0.892886,0][-0.10638,1.00499,-2.87307][0.845663,0.354892,-0.39863][0.13693,0.892714,0][-0.125411,1.01924,-2.87169][0.0192883,0.999739,-0.0122715][0.138262,0.894508,0][-0.10638,1.00499,-2.87307][0.845663,0.354892,-0.39863][0.693262,0.561092,0][-0.014683,1.00215,-2.79431][0.0115562,0.0258791,-0.999598][0.704619,0.561424,0][-0.014683,0.960631,-2.75433][0.00967195,-0.704553,-0.709586][0.707017,0.566281,0][-0.014683,0.960631,-2.75433][0.00967195,-0.704553,-0.709586][0.707017,0.566281,0][-0.0977293,0.960631,-2.81584][0.610737,-0.5814,-0.537564][0.69732,0.566597,0][-0.10638,1.00499,-2.87307][0.845663,0.354892,-0.39863][0.693262,0.561092,0][-0.0147041,1.69882,0.00162945][0,1,0][0.717362,0.566597,0][-0.0147041,1.69882,0.00162945][0,1,0][0.717362,0.566597,0][0.13259,1.65038,-0.34377][0.314999,0.564404,-0.763036][0.718074,0.53132,0][0.13259,1.65038,-0.34377][0.314999,0.564404,-0.763036][0.937463,0.0790241,0][-0.0147042,1.65038,-0.372646][1.85173e-005,0.565222,-0.824939][0.923359,0.0790413,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][-0.0147042,1.65038,-0.372646][1.85173e-005,0.565222,-0.824939][0.666202,0.920812,0][0.13259,1.65038,-0.34377][0.314999,0.564404,-0.763036][0.680043,0.920812,0][0.125808,1.53273,-0.327918][0.344848,-0.427912,-0.835447][0.679406,0.931867,0][0.125808,1.53273,-0.327918][0.344848,-0.427912,-0.835447][0.679406,0.931867,0][-0.0147042,1.53273,-0.355478][3.4468e-005,-0.4272,-0.904157][0.666202,0.931867,0][-0.0147042,1.65038,-0.372646][1.85173e-005,0.565222,-0.824939][0.666202,0.920812,0][-0.0147042,1.53273,-0.355478][3.4468e-005,-0.4272,-0.904157][0.666202,0.931867,0][0.125808,1.53273,-0.327918][0.344848,-0.427912,-0.835447][0.679406,0.931867,0][0.0703336,1.3874,-0.197973][0.352406,-0.381883,-0.854386][0.674193,0.945523,0][0.0703336,1.3874,-0.197973][0.352406,-0.381883,-0.854386][0.674193,0.945523,0][-0.0147041,1.3874,-0.214695][0.000120717,-0.38049,-0.924785][0.666202,0.945523,0][-0.0147042,1.53273,-0.355478][3.4468e-005,-0.4272,-0.904157][0.666202,0.931867,0][-0.0147041,1.3874,-0.214695][0.000120717,-0.38049,-0.924785][0.666202,0.945523,0][0.0703336,1.3874,-0.197973][0.352406,-0.381883,-0.854386][0.674193,0.945523,0][0.0715509,1.25591,-0.201097][0.29315,0.640939,-0.709408][0.674307,0.957879,0][0.0715509,1.25591,-0.201097][0.29315,0.640939,-0.709408][0.674307,0.957879,0][-0.0147041,1.25591,-0.218129][8.28264e-005,0.640237,-0.768177][0.666202,0.957879,0][-0.0147041,1.3874,-0.214695][0.000120717,-0.38049,-0.924785][0.666202,0.945523,0][-0.0147041,1.69882,0.00162945][0,1,0][0.639664,0.465357,0][-0.0147041,1.69882,0.00162945][0,1,0][0.639664,0.465357,0][0.251379,1.65038,-0.264454][0.583655,0.564507,-0.583676][0.675016,0.46605,0][0.251379,1.65038,-0.264454][0.583655,0.564507,-0.583676][0.949845,0.0738426,0][0.13259,1.65038,-0.34377][0.314999,0.564404,-0.763036][0.937463,0.0790241,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][0.13259,1.65038,-0.34377][0.314999,0.564404,-0.763036][0.680043,0.920812,0][0.251379,1.65038,-0.264454][0.583655,0.564507,-0.583676][0.691205,0.920812,0][0.239151,1.53273,-0.252226][0.638828,-0.42866,-0.638866][0.690056,0.931867,0][0.239151,1.53273,-0.252226][0.638828,-0.42866,-0.638866][0.690056,0.931867,0][0.125808,1.53273,-0.327918][0.344848,-0.427912,-0.835447][0.679406,0.931867,0][0.13259,1.65038,-0.34377][0.314999,0.564404,-0.763036][0.680043,0.920812,0][0.125808,1.53273,-0.327918][0.344848,-0.427912,-0.835447][0.0961583,0.643147,0][0.239151,1.53273,-0.252226][0.638828,-0.42866,-0.638866][0.0981121,0.655804,0][0.139002,1.3874,-0.152077][0.653263,-0.382518,-0.653396][0.0790461,0.656117,0][0.139002,1.3874,-0.152077][0.653263,-0.382518,-0.653396][0.0790461,0.656117,0][0.0703336,1.3874,-0.197973][0.352406,-0.381883,-0.854386][0.0778641,0.648447,0][0.125808,1.53273,-0.327918][0.344848,-0.427912,-0.835447][0.0961583,0.643147,0][0.0703336,1.3874,-0.197973][0.352406,-0.381883,-0.854386][0.674193,0.945523,0][0.139002,1.3874,-0.152077][0.653263,-0.382518,-0.653396][0.680646,0.945523,0][0.141324,1.25591,-0.154399][0.542952,0.640553,-0.543043][0.680864,0.957879,0][0.141324,1.25591,-0.154399][0.542952,0.640553,-0.543043][0.680864,0.957879,0][0.0715509,1.25591,-0.201097][0.29315,0.640939,-0.709408][0.674307,0.957879,0][0.0703336,1.3874,-0.197973][0.352406,-0.381883,-0.854386][0.674193,0.945523,0][-0.0147041,1.69882,0.00162945][0,1,0][0.387352,0.693327,0][-0.0147041,1.69882,0.00162945][0,1,0][0.387352,0.693327,0][0.330695,1.65038,-0.145665][0.763024,0.56442,-0.314998][0.352074,0.692656,0][0.330695,1.65038,-0.145665][0.763024,0.56442,-0.314998][0.959294,0.0643113,0][0.251379,1.65038,-0.264454][0.583655,0.564507,-0.583676][0.949845,0.0738426,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][0.251379,1.65038,-0.264454][0.583655,0.564507,-0.583676][0.146948,0.0860912,0][0.330695,1.65038,-0.145665][0.763024,0.56442,-0.314998][0.146948,0.074929,0][0.314843,1.53273,-0.138883][0.835453,-0.427892,-0.344859][0.158003,0.0742917,0][0.314843,1.53273,-0.138883][0.835453,-0.427892,-0.344859][0.158003,0.0742917,0][0.239151,1.53273,-0.252226][0.638828,-0.42866,-0.638866][0.158003,0.0849421,0][0.251379,1.65038,-0.264454][0.583655,0.564507,-0.583676][0.146948,0.0860912,0][0.239151,1.53273,-0.252226][0.638828,-0.42866,-0.638866][0.0981121,0.655804,0][0.314843,1.53273,-0.138883][0.835453,-0.427892,-0.344859][0.0965661,0.668013,0][0.184899,1.3874,-0.0834083][0.854402,-0.381813,-0.352442][0.0781112,0.663516,0][0.184899,1.3874,-0.0834083][0.854402,-0.381813,-0.352442][0.0781112,0.663516,0][0.139002,1.3874,-0.152077][0.653263,-0.382518,-0.653396][0.0790461,0.656117,0][0.239151,1.53273,-0.252226][0.638828,-0.42866,-0.638866][0.0981121,0.655804,0][0.139002,1.3874,-0.152077][0.653263,-0.382518,-0.653396][0.171659,0.0755315,0][0.184899,1.3874,-0.0834083][0.854402,-0.381813,-0.352442][0.171659,0.069079,0][0.188023,1.25591,-0.0846256][0.709491,0.640823,-0.293204][0.184015,0.0691934,0][0.188023,1.25591,-0.0846256][0.709491,0.640823,-0.293204][0.184015,0.0691934,0][0.141324,1.25591,-0.154399][0.542952,0.640553,-0.543043][0.184015,0.0757497,0][0.139002,1.3874,-0.152077][0.653263,-0.382518,-0.653396][0.171659,0.0755315,0][-0.0147041,1.69882,0.00162945][0,1,0][0.835391,0.194242,0][-0.0147041,1.69882,0.00162945][0,1,0][0.835391,0.194242,0][0.359571,1.65038,0.00162943][0.824939,0.565222,1.85063e-005][0.87056,0.194242,0][0.359571,1.65038,0.00162943][0.824939,0.565222,1.85063e-005][0.964604,0.0512446,0][0.330695,1.65038,-0.145665][0.763024,0.56442,-0.314998][0.959294,0.0643113,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][0.330695,1.65038,-0.145665][0.763024,0.56442,-0.314998][0.146948,0.074929,0][0.359571,1.65038,0.00162943][0.824939,0.565222,1.85063e-005][0.146948,0.0610883,0][0.342403,1.53273,0.00162943][0.904157,-0.4272,3.44482e-005][0.158003,0.0610883,0][0.342403,1.53273,0.00162943][0.904157,-0.4272,3.44482e-005][0.158003,0.0610883,0][0.314843,1.53273,-0.138883][0.835453,-0.427892,-0.344859][0.158003,0.0742917,0][0.330695,1.65038,-0.145665][0.763024,0.56442,-0.314998][0.146948,0.074929,0][0.314843,1.53273,-0.138883][0.835453,-0.427892,-0.344859][0.158003,0.0742917,0][0.342403,1.53273,0.00162943][0.904157,-0.4272,3.44482e-005][0.158003,0.0610883,0][0.20162,1.3874,0.00162944][0.924785,-0.38049,0.000120786][0.171659,0.0610883,0][0.20162,1.3874,0.00162944][0.924785,-0.38049,0.000120786][0.171659,0.0610883,0][0.184899,1.3874,-0.0834083][0.854402,-0.381813,-0.352442][0.171659,0.069079,0][0.314843,1.53273,-0.138883][0.835453,-0.427892,-0.344859][0.158003,0.0742917,0][0.184899,1.3874,-0.0834083][0.854402,-0.381813,-0.352442][0.171659,0.069079,0][0.20162,1.3874,0.00162944][0.924785,-0.38049,0.000120786][0.171659,0.0610883,0][0.205054,1.25591,0.00162944][0.768177,0.640237,8.28845e-005][0.184015,0.0610883,0][0.205054,1.25591,0.00162944][0.768177,0.640237,8.28845e-005][0.184015,0.0610883,0][0.188023,1.25591,-0.0846256][0.709491,0.640823,-0.293204][0.184015,0.0691934,0][0.184899,1.3874,-0.0834083][0.854402,-0.381813,-0.352442][0.171659,0.069079,0][-0.0147041,1.69882,0.00162945][0,1,0][0.672265,0.535192,0][-0.0147041,1.69882,0.00162945][0,1,0][0.672265,0.535192,0][0.330695,1.65038,0.148924][0.763036,0.564404,0.314999][0.671552,0.570469,0][0.330695,1.65038,0.148924][0.763036,0.564404,0.314999][0.964587,0.0371404,0][0.359571,1.65038,0.00162943][0.824939,0.565222,1.85063e-005][0.964604,0.0512446,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][0.359571,1.65038,0.00162943][0.824939,0.565222,1.85063e-005][0.146948,0.0610883,0][0.330695,1.65038,0.148924][0.763036,0.564404,0.314999][0.146948,0.0472475,0][0.314843,1.53273,0.142142][0.835446,-0.427912,0.344848][0.158003,0.0478848,0][0.314843,1.53273,0.142142][0.835446,-0.427912,0.344848][0.158003,0.0478848,0][0.342403,1.53273,0.00162943][0.904157,-0.4272,3.44482e-005][0.158003,0.0610883,0][0.359571,1.65038,0.00162943][0.824939,0.565222,1.85063e-005][0.146948,0.0610883,0][0.342403,1.53273,0.00162943][0.904157,-0.4272,3.44482e-005][0.158003,0.0610883,0][0.314843,1.53273,0.142142][0.835446,-0.427912,0.344848][0.158003,0.0478848,0][0.184899,1.3874,0.0866671][0.854386,-0.381883,0.352406][0.171659,0.0530976,0][0.184899,1.3874,0.0866671][0.854386,-0.381883,0.352406][0.171659,0.0530976,0][0.20162,1.3874,0.00162944][0.924785,-0.38049,0.000120786][0.171659,0.0610883,0][0.342403,1.53273,0.00162943][0.904157,-0.4272,3.44482e-005][0.158003,0.0610883,0][0.20162,1.3874,0.00162944][0.924785,-0.38049,0.000120786][0.171659,0.0610883,0][0.184899,1.3874,0.0866671][0.854386,-0.381883,0.352406][0.171659,0.0530976,0][0.188023,1.25591,0.0878845][0.709408,0.640939,0.29315][0.184015,0.0529832,0][0.188023,1.25591,0.0878845][0.709408,0.640939,0.29315][0.184015,0.0529832,0][0.205054,1.25591,0.00162944][0.768177,0.640237,8.28845e-005][0.184015,0.0610883,0][0.20162,1.3874,0.00162944][0.924785,-0.38049,0.000120786][0.171659,0.0610883,0][-0.0147041,1.69882,0.00162945][0,1,0][0.693768,0.509305,0][-0.0147041,1.69882,0.00162945][0,1,0][0.693768,0.509305,0][0.251379,1.65038,0.267713][0.583676,0.564507,0.583656][0.693075,0.544658,0][0.251379,1.65038,0.267713][0.583676,0.564507,0.583656][0.959405,0.0247592,0][0.330695,1.65038,0.148924][0.763036,0.564404,0.314999][0.964587,0.0371404,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][0.330695,1.65038,0.148924][0.763036,0.564404,0.314999][0.146948,0.0472475,0][0.251379,1.65038,0.267713][0.583676,0.564507,0.583656][0.146948,0.0360853,0][0.239151,1.53273,0.255484][0.638866,-0.42866,0.638828][0.158003,0.0372344,0][0.239151,1.53273,0.255484][0.638866,-0.42866,0.638828][0.158003,0.0372344,0][0.314843,1.53273,0.142142][0.835446,-0.427912,0.344848][0.158003,0.0478848,0][0.330695,1.65038,0.148924][0.763036,0.564404,0.314999][0.146948,0.0472475,0][0.314843,1.53273,0.142142][0.835446,-0.427912,0.344848][0.142306,0.624145,0][0.239151,1.53273,0.255484][0.638866,-0.42866,0.638828][0.14426,0.636803,0][0.139002,1.3874,0.155336][0.653396,-0.382518,0.653263][0.125194,0.637115,0][0.139002,1.3874,0.155336][0.653396,-0.382518,0.653263][0.125194,0.637115,0][0.184899,1.3874,0.0866671][0.854386,-0.381883,0.352406][0.124012,0.629445,0][0.314843,1.53273,0.142142][0.835446,-0.427912,0.344848][0.142306,0.624145,0][0.184899,1.3874,0.0866671][0.854386,-0.381883,0.352406][0.171659,0.0530976,0][0.139002,1.3874,0.155336][0.653396,-0.382518,0.653263][0.171659,0.046645,0][0.141324,1.25591,0.157658][0.543043,0.640553,0.542952][0.184015,0.0464268,0][0.141324,1.25591,0.157658][0.543043,0.640553,0.542952][0.184015,0.0464268,0][0.188023,1.25591,0.0878845][0.709408,0.640939,0.29315][0.184015,0.0529832,0][0.184899,1.3874,0.0866671][0.854386,-0.381883,0.352406][0.171659,0.0530976,0][-0.0147041,1.69882,0.00162945][0,1,0][0.598729,0.6843,0][-0.0147041,1.69882,0.00162945][0,1,0][0.598729,0.6843,0][0.13259,1.65038,0.347029][0.314998,0.56442,0.763024][0.563451,0.683629,0][0.13259,1.65038,0.347029][0.314998,0.56442,0.763024][0.949874,0.0153095,0][0.251379,1.65038,0.267713][0.583676,0.564507,0.583656][0.959405,0.0247592,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][0.251379,1.65038,0.267713][0.583676,0.564507,0.583656][0.911396,0.437425,0][0.13259,1.65038,0.347029][0.314998,0.56442,0.763024][0.922558,0.437425,0][0.125808,1.53273,0.331176][0.344859,-0.427892,0.835453][0.923196,0.44848,0][0.125808,1.53273,0.331176][0.344859,-0.427892,0.835453][0.923196,0.44848,0][0.239151,1.53273,0.255484][0.638866,-0.42866,0.638828][0.912545,0.44848,0][0.251379,1.65038,0.267713][0.583676,0.564507,0.583656][0.911396,0.437425,0][0.239151,1.53273,0.255484][0.638866,-0.42866,0.638828][0.14426,0.636803,0][0.125808,1.53273,0.331176][0.344859,-0.427892,0.835453][0.142714,0.649011,0][0.0703336,1.3874,0.201232][0.352442,-0.381813,0.854402][0.124259,0.644515,0][0.0703336,1.3874,0.201232][0.352442,-0.381813,0.854402][0.124259,0.644515,0][0.139002,1.3874,0.155336][0.653396,-0.382518,0.653263][0.125194,0.637115,0][0.239151,1.53273,0.255484][0.638866,-0.42866,0.638828][0.14426,0.636803,0][0.139002,1.3874,0.155336][0.653396,-0.382518,0.653263][0.921956,0.462137,0][0.0703336,1.3874,0.201232][0.352442,-0.381813,0.854402][0.928408,0.462137,0][0.071551,1.25591,0.204356][0.293204,0.640823,0.70949][0.928294,0.474492,0][0.071551,1.25591,0.204356][0.293204,0.640823,0.70949][0.928294,0.474492,0][0.141324,1.25591,0.157658][0.543043,0.640553,0.542952][0.921738,0.474492,0][0.139002,1.3874,0.155336][0.653396,-0.382518,0.653263][0.921956,0.462137,0][-0.0147041,1.69882,0.00162945][0,1,0][0.623723,0.194389,0][-0.0147041,1.69882,0.00162945][0,1,0][0.623723,0.194389,0][-0.0147041,1.65038,0.375905][-1.84919e-005,0.565222,0.824939][0.659183,0.19393,0][-0.0147041,1.65038,0.375905][-1.84919e-005,0.565222,0.824939][0.936807,0.01,0][0.13259,1.65038,0.347029][0.314998,0.56442,0.763024][0.949874,0.0153095,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][0.13259,1.65038,0.347029][0.314998,0.56442,0.763024][0.922558,0.437425,0][-0.0147041,1.65038,0.375905][-1.84919e-005,0.565222,0.824939][0.936399,0.437425,0][-0.0147041,1.53273,0.358736][-3.44304e-005,-0.4272,0.904157][0.936399,0.44848,0][-0.0147041,1.53273,0.358736][-3.44304e-005,-0.4272,0.904157][0.936399,0.44848,0][0.125808,1.53273,0.331176][0.344859,-0.427892,0.835453][0.923196,0.44848,0][0.13259,1.65038,0.347029][0.314998,0.56442,0.763024][0.922558,0.437425,0][0.125808,1.53273,0.331176][0.344859,-0.427892,0.835453][0.923196,0.44848,0][-0.0147041,1.53273,0.358736][-3.44304e-005,-0.4272,0.904157][0.936399,0.44848,0][-0.0147041,1.3874,0.217954][-0.000120737,-0.38049,0.924785][0.936399,0.462137,0][-0.0147041,1.3874,0.217954][-0.000120737,-0.38049,0.924785][0.936399,0.462137,0][0.0703336,1.3874,0.201232][0.352442,-0.381813,0.854402][0.928408,0.462137,0][0.125808,1.53273,0.331176][0.344859,-0.427892,0.835453][0.923196,0.44848,0][0.0703336,1.3874,0.201232][0.352442,-0.381813,0.854402][0.928408,0.462137,0][-0.0147041,1.3874,0.217954][-0.000120737,-0.38049,0.924785][0.936399,0.462137,0][-0.0147041,1.25591,0.221388][-8.28304e-005,0.640237,0.768177][0.936399,0.474492,0][-0.0147041,1.25591,0.221388][-8.28304e-005,0.640237,0.768177][0.936399,0.474492,0][0.071551,1.25591,0.204356][0.293204,0.640823,0.70949][0.928294,0.474492,0][0.0703336,1.3874,0.201232][0.352442,-0.381813,0.854402][0.928408,0.462137,0][-0.0147041,1.69882,0.00162945][0,1,0][0.87056,0.203247,0][-0.0147041,1.69882,0.00162945][0,1,0][0.87056,0.203247,0][-0.161998,1.65038,0.347029][-0.314999,0.564404,0.763036][0.835283,0.202576,0][-0.161998,1.65038,0.347029][-0.314999,0.564404,0.763036][0.922703,0.0100171,0][-0.0147041,1.65038,0.375905][-1.84919e-005,0.565222,0.824939][0.936807,0.01,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][-0.0147041,1.65038,0.375905][-1.84919e-005,0.565222,0.824939][0.936399,0.437425,0][-0.161998,1.65038,0.347029][-0.314999,0.564404,0.763036][0.95024,0.437425,0][-0.155216,1.53273,0.331177][-0.344848,-0.427912,0.835447][0.949603,0.44848,0][-0.155216,1.53273,0.331177][-0.344848,-0.427912,0.835447][0.949603,0.44848,0][-0.0147041,1.53273,0.358736][-3.44304e-005,-0.4272,0.904157][0.936399,0.44848,0][-0.0147041,1.65038,0.375905][-1.84919e-005,0.565222,0.824939][0.936399,0.437425,0][-0.0147041,1.53273,0.358736][-3.44304e-005,-0.4272,0.904157][0.936399,0.44848,0][-0.155216,1.53273,0.331177][-0.344848,-0.427912,0.835447][0.949603,0.44848,0][-0.0997418,1.3874,0.201232][-0.352406,-0.381883,0.854386][0.94439,0.462137,0][-0.0997418,1.3874,0.201232][-0.352406,-0.381883,0.854386][0.94439,0.462137,0][-0.0147041,1.3874,0.217954][-0.000120737,-0.38049,0.924785][0.936399,0.462137,0][-0.0147041,1.53273,0.358736][-3.44304e-005,-0.4272,0.904157][0.936399,0.44848,0][-0.0147041,1.3874,0.217954][-0.000120737,-0.38049,0.924785][0.936399,0.462137,0][-0.0997418,1.3874,0.201232][-0.352406,-0.381883,0.854386][0.94439,0.462137,0][-0.100959,1.25591,0.204356][-0.29315,0.640939,0.709408][0.944504,0.474492,0][-0.100959,1.25591,0.204356][-0.29315,0.640939,0.709408][0.944504,0.474492,0][-0.0147041,1.25591,0.221388][-8.28304e-005,0.640237,0.768177][0.936399,0.474492,0][-0.0147041,1.3874,0.217954][-0.000120737,-0.38049,0.924785][0.936399,0.462137,0][-0.0147041,1.69882,0.00162945][0,1,0][0.675016,0.475078,0][-0.0147041,1.69882,0.00162945][0,1,0][0.675016,0.475078,0][-0.280787,1.65038,0.267713][-0.583655,0.564507,0.583676][0.639664,0.474385,0][-0.280787,1.65038,0.267713][-0.583655,0.564507,0.583676][0.910322,0.0151987,0][-0.161998,1.65038,0.347029][-0.314999,0.564404,0.763036][0.922703,0.0100171,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][-0.161998,1.65038,0.347029][-0.314999,0.564404,0.763036][0.95024,0.437425,0][-0.280787,1.65038,0.267713][-0.583655,0.564507,0.583676][0.961402,0.437425,0][-0.268559,1.53273,0.255484][-0.638828,-0.42866,0.638866][0.960253,0.44848,0][-0.268559,1.53273,0.255484][-0.638828,-0.42866,0.638866][0.960253,0.44848,0][-0.155216,1.53273,0.331177][-0.344848,-0.427912,0.835447][0.949603,0.44848,0][-0.161998,1.65038,0.347029][-0.314999,0.564404,0.763036][0.95024,0.437425,0][-0.155216,1.53273,0.331177][-0.344848,-0.427912,0.835447][0.755068,0.6208,0][-0.268559,1.53273,0.255484][-0.638828,-0.42866,0.638866][0.753114,0.608143,0][-0.16841,1.3874,0.155336][-0.653263,-0.382518,0.653396][0.77218,0.60783,0][-0.16841,1.3874,0.155336][-0.653263,-0.382518,0.653396][0.77218,0.60783,0][-0.0997418,1.3874,0.201232][-0.352406,-0.381883,0.854386][0.773362,0.615501,0][-0.155216,1.53273,0.331177][-0.344848,-0.427912,0.835447][0.755068,0.6208,0][-0.0997418,1.3874,0.201232][-0.352406,-0.381883,0.854386][0.94439,0.462137,0][-0.16841,1.3874,0.155336][-0.653263,-0.382518,0.653396][0.950842,0.462137,0][-0.170732,1.25591,0.157658][-0.542952,0.640553,0.543043][0.951061,0.474492,0][-0.170732,1.25591,0.157658][-0.542952,0.640553,0.543043][0.951061,0.474492,0][-0.100959,1.25591,0.204356][-0.29315,0.640939,0.709408][0.944504,0.474492,0][-0.0997418,1.3874,0.201232][-0.352406,-0.381883,0.854386][0.94439,0.462137,0][-0.0147041,1.69882,0.00162945][0,1,0][0.0452768,0.932556,0][-0.0147041,1.69882,0.00162945][0,1,0][0.0452768,0.932556,0][-0.360104,1.65038,0.148924][-0.763024,0.56442,0.314998][0.01,0.931844,0][-0.360104,1.65038,0.148924][-0.763024,0.56442,0.314998][0.900872,0.02473,0][-0.280787,1.65038,0.267713][-0.583655,0.564507,0.583676][0.910322,0.0151987,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][-0.280787,1.65038,0.267713][-0.583655,0.564507,0.583676][0.157584,0.801497,0][-0.360104,1.65038,0.148924][-0.763024,0.56442,0.314998][0.157584,0.790335,0][-0.344251,1.53273,0.142142][-0.835453,-0.427892,0.344859][0.168639,0.789698,0][-0.344251,1.53273,0.142142][-0.835453,-0.427892,0.344859][0.168639,0.789698,0][-0.268559,1.53273,0.255484][-0.638828,-0.42866,0.638866][0.168639,0.800348,0][-0.280787,1.65038,0.267713][-0.583655,0.564507,0.583676][0.157584,0.801497,0][-0.268559,1.53273,0.255484][-0.638828,-0.42866,0.638866][0.753114,0.608143,0][-0.344251,1.53273,0.142142][-0.835453,-0.427892,0.344859][0.75466,0.595934,0][-0.214307,1.3874,0.0866672][-0.854402,-0.381813,0.352442][0.773115,0.600431,0][-0.214307,1.3874,0.0866672][-0.854402,-0.381813,0.352442][0.773115,0.600431,0][-0.16841,1.3874,0.155336][-0.653263,-0.382518,0.653396][0.77218,0.60783,0][-0.268559,1.53273,0.255484][-0.638828,-0.42866,0.638866][0.753114,0.608143,0][-0.16841,1.3874,0.155336][-0.653263,-0.382518,0.653396][0.182296,0.790937,0][-0.214307,1.3874,0.0866672][-0.854402,-0.381813,0.352442][0.182296,0.784485,0][-0.217431,1.25591,0.0878845][-0.70949,0.640823,0.293204][0.194651,0.784599,0][-0.217431,1.25591,0.0878845][-0.70949,0.640823,0.293204][0.194651,0.784599,0][-0.170732,1.25591,0.157658][-0.542952,0.640553,0.543043][0.194651,0.791156,0][-0.16841,1.3874,0.155336][-0.653263,-0.382518,0.653396][0.182296,0.790937,0][-0.0147041,1.69882,0.00162945][0,1,0][0.0719304,0.945833,0][-0.0147041,1.69882,0.00162945][0,1,0][0.0719304,0.945833,0][-0.38898,1.65038,0.00162947][-0.824939,0.565222,-1.84693e-005][0.1071,0.945833,0][-0.38898,1.65038,0.00162947][-0.824939,0.565222,-1.84693e-005][0.895562,0.0377967,0][-0.360104,1.65038,0.148924][-0.763024,0.56442,0.314998][0.900872,0.02473,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][-0.360104,1.65038,0.148924][-0.763024,0.56442,0.314998][0.157584,0.790335,0][-0.38898,1.65038,0.00162947][-0.824939,0.565222,-1.84693e-005][0.157584,0.776494,0][-0.371811,1.53273,0.00162947][-0.904157,-0.4272,-3.44132e-005][0.168639,0.776494,0][-0.371811,1.53273,0.00162947][-0.904157,-0.4272,-3.44132e-005][0.168639,0.776494,0][-0.344251,1.53273,0.142142][-0.835453,-0.427892,0.344859][0.168639,0.789698,0][-0.360104,1.65038,0.148924][-0.763024,0.56442,0.314998][0.157584,0.790335,0][-0.344251,1.53273,0.142142][-0.835453,-0.427892,0.344859][0.168639,0.789698,0][-0.371811,1.53273,0.00162947][-0.904157,-0.4272,-3.44132e-005][0.168639,0.776494,0][-0.231029,1.3874,0.00162946][-0.924785,-0.38049,-0.000120808][0.182296,0.776494,0][-0.231029,1.3874,0.00162946][-0.924785,-0.38049,-0.000120808][0.182296,0.776494,0][-0.214307,1.3874,0.0866672][-0.854402,-0.381813,0.352442][0.182296,0.784485,0][-0.344251,1.53273,0.142142][-0.835453,-0.427892,0.344859][0.168639,0.789698,0][-0.214307,1.3874,0.0866672][-0.854402,-0.381813,0.352442][0.182296,0.784485,0][-0.231029,1.3874,0.00162946][-0.924785,-0.38049,-0.000120808][0.182296,0.776494,0][-0.234462,1.25591,0.00162946][-0.768177,0.640237,-8.28836e-005][0.194651,0.776494,0][-0.234462,1.25591,0.00162946][-0.768177,0.640237,-8.28836e-005][0.194651,0.776494,0][-0.217431,1.25591,0.0878845][-0.70949,0.640823,0.293204][0.194651,0.784599,0][-0.214307,1.3874,0.0866672][-0.854402,-0.381813,0.352442][0.182296,0.784485,0][-0.0147041,1.69882,0.00162945][0,1,0][0.387352,0.684322,0][-0.0147041,1.69882,0.00162945][0,1,0][0.387352,0.684322,0][-0.360104,1.65038,-0.145665][-0.763036,0.564404,-0.314999][0.352074,0.683651,0][-0.360104,1.65038,-0.145665][-0.763036,0.564404,-0.314999][0.89558,0.0519009,0][-0.38898,1.65038,0.00162947][-0.824939,0.565222,-1.84693e-005][0.895562,0.0377967,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][-0.38898,1.65038,0.00162947][-0.824939,0.565222,-1.84693e-005][0.157584,0.776494,0][-0.360104,1.65038,-0.145665][-0.763036,0.564404,-0.314999][0.157584,0.762653,0][-0.344251,1.53273,-0.138883][-0.835447,-0.427912,-0.344848][0.168639,0.763291,0][-0.344251,1.53273,-0.138883][-0.835447,-0.427912,-0.344848][0.168639,0.763291,0][-0.371811,1.53273,0.00162947][-0.904157,-0.4272,-3.44132e-005][0.168639,0.776494,0][-0.38898,1.65038,0.00162947][-0.824939,0.565222,-1.84693e-005][0.157584,0.776494,0][-0.371811,1.53273,0.00162947][-0.904157,-0.4272,-3.44132e-005][0.168639,0.776494,0][-0.344251,1.53273,-0.138883][-0.835447,-0.427912,-0.344848][0.168639,0.763291,0][-0.214307,1.3874,-0.0834082][-0.854386,-0.381883,-0.352405][0.182296,0.768503,0][-0.214307,1.3874,-0.0834082][-0.854386,-0.381883,-0.352405][0.182296,0.768503,0][-0.231029,1.3874,0.00162946][-0.924785,-0.38049,-0.000120808][0.182296,0.776494,0][-0.371811,1.53273,0.00162947][-0.904157,-0.4272,-3.44132e-005][0.168639,0.776494,0][-0.231029,1.3874,0.00162946][-0.924785,-0.38049,-0.000120808][0.182296,0.776494,0][-0.214307,1.3874,-0.0834082][-0.854386,-0.381883,-0.352405][0.182296,0.768503,0][-0.217431,1.25591,-0.0846256][-0.709408,0.640939,-0.29315][0.194651,0.768389,0][-0.217431,1.25591,-0.0846256][-0.709408,0.640939,-0.29315][0.194651,0.768389,0][-0.234462,1.25591,0.00162946][-0.768177,0.640237,-8.28836e-005][0.194651,0.776494,0][-0.231029,1.3874,0.00162946][-0.924785,-0.38049,-0.000120808][0.182296,0.776494,0][-0.0147041,1.69882,0.00162945][0,1,0][0.563376,0.692634,0][-0.0147041,1.69882,0.00162945][0,1,0][0.563376,0.692634,0][-0.280787,1.65038,-0.264454][-0.583676,0.564507,-0.583655][0.598729,0.693327,0][-0.280787,1.65038,-0.264454][-0.583676,0.564507,-0.583655][0.900761,0.0642821,0][-0.360104,1.65038,-0.145665][-0.763036,0.564404,-0.314999][0.89558,0.0519009,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][-0.360104,1.65038,-0.145665][-0.763036,0.564404,-0.314999][0.157584,0.762653,0][-0.280787,1.65038,-0.264454][-0.583676,0.564507,-0.583655][0.157584,0.751491,0][-0.268559,1.53273,-0.252226][-0.638866,-0.42866,-0.638828][0.168639,0.75264,0][-0.268559,1.53273,-0.252226][-0.638866,-0.42866,-0.638828][0.168639,0.75264,0][-0.344251,1.53273,-0.138883][-0.835447,-0.427912,-0.344848][0.168639,0.763291,0][-0.360104,1.65038,-0.145665][-0.763036,0.564404,-0.314999][0.157584,0.762653,0][-0.344251,1.53273,-0.138883][-0.835447,-0.427912,-0.344848][0.183024,0.643147,0][-0.268559,1.53273,-0.252226][-0.638866,-0.42866,-0.638828][0.184978,0.655804,0][-0.16841,1.3874,-0.152077][-0.653396,-0.382518,-0.653263][0.165912,0.656117,0][-0.16841,1.3874,-0.152077][-0.653396,-0.382518,-0.653263][0.165912,0.656117,0][-0.214307,1.3874,-0.0834082][-0.854386,-0.381883,-0.352405][0.16473,0.648447,0][-0.344251,1.53273,-0.138883][-0.835447,-0.427912,-0.344848][0.183024,0.643147,0][-0.214307,1.3874,-0.0834082][-0.854386,-0.381883,-0.352405][0.182296,0.768503,0][-0.16841,1.3874,-0.152077][-0.653396,-0.382518,-0.653263][0.182296,0.762051,0][-0.170732,1.25591,-0.154399][-0.543043,0.640553,-0.542952][0.194651,0.761833,0][-0.170732,1.25591,-0.154399][-0.543043,0.640553,-0.542952][0.194651,0.761833,0][-0.217431,1.25591,-0.0846256][-0.709408,0.640939,-0.29315][0.194651,0.768389,0][-0.214307,1.3874,-0.0834082][-0.854386,-0.381883,-0.352405][0.182296,0.768503,0][-0.0147041,1.69882,0.00162945][0,1,0][0.734738,0.540786,0][-0.0147041,1.69882,0.00162945][0,1,0][0.734738,0.540786,0][-0.161998,1.65038,-0.34377][-0.314998,0.56442,-0.763024][0.735451,0.50551,0][-0.161998,1.65038,-0.34377][-0.314998,0.56442,-0.763024][0.910292,0.0737318,0][-0.280787,1.65038,-0.264454][-0.583676,0.564507,-0.583655][0.900761,0.0642821,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][-0.280787,1.65038,-0.264454][-0.583676,0.564507,-0.583655][0.641199,0.920812,0][-0.161998,1.65038,-0.34377][-0.314998,0.56442,-0.763024][0.652362,0.920812,0][-0.155216,1.53273,-0.327918][-0.344859,-0.427892,-0.835452][0.652999,0.931867,0][-0.155216,1.53273,-0.327918][-0.344859,-0.427892,-0.835452][0.652999,0.931867,0][-0.268559,1.53273,-0.252226][-0.638866,-0.42866,-0.638828][0.642348,0.931867,0][-0.280787,1.65038,-0.264454][-0.583676,0.564507,-0.583655][0.641199,0.920812,0][-0.268559,1.53273,-0.252226][-0.638866,-0.42866,-0.638828][0.184978,0.655804,0][-0.155216,1.53273,-0.327918][-0.344859,-0.427892,-0.835452][0.183432,0.668013,0][-0.0997418,1.3874,-0.197973][-0.352442,-0.381813,-0.854402][0.164977,0.663516,0][-0.0997418,1.3874,-0.197973][-0.352442,-0.381813,-0.854402][0.164977,0.663516,0][-0.16841,1.3874,-0.152077][-0.653396,-0.382518,-0.653263][0.165912,0.656117,0][-0.268559,1.53273,-0.252226][-0.638866,-0.42866,-0.638828][0.184978,0.655804,0][-0.16841,1.3874,-0.152077][-0.653396,-0.382518,-0.653263][0.651759,0.945523,0][-0.0997418,1.3874,-0.197973][-0.352442,-0.381813,-0.854402][0.658212,0.945523,0][-0.100959,1.25591,-0.201097][-0.293204,0.640823,-0.709491][0.658097,0.957879,0][-0.100959,1.25591,-0.201097][-0.293204,0.640823,-0.709491][0.658097,0.957879,0][-0.170732,1.25591,-0.154399][-0.543043,0.640553,-0.542952][0.651541,0.957879,0][-0.16841,1.3874,-0.152077][-0.653396,-0.382518,-0.653263][0.651759,0.945523,0][-0.0147041,1.69882,0.00162945][0,1,0][0.659183,0.203247,0][-0.0147041,1.69882,0.00162945][0,1,0][0.659183,0.203247,0][-0.0147042,1.65038,-0.372646][1.85173e-005,0.565222,-0.824939][0.623724,0.202723,0][-0.0147042,1.65038,-0.372646][1.85173e-005,0.565222,-0.824939][0.923359,0.0790413,0][-0.161998,1.65038,-0.34377][-0.314998,0.56442,-0.763024][0.910292,0.0737318,0][-0.0147041,1.69882,0.00162945][0,1,0][0.930083,0.0445206,0][-0.161998,1.65038,-0.34377][-0.314998,0.56442,-0.763024][0.652362,0.920812,0][-0.0147042,1.65038,-0.372646][1.85173e-005,0.565222,-0.824939][0.666202,0.920812,0][-0.0147042,1.53273,-0.355478][3.4468e-005,-0.4272,-0.904157][0.666202,0.931867,0][-0.0147042,1.53273,-0.355478][3.4468e-005,-0.4272,-0.904157][0.666202,0.931867,0][-0.155216,1.53273,-0.327918][-0.344859,-0.427892,-0.835452][0.652999,0.931867,0][-0.161998,1.65038,-0.34377][-0.314998,0.56442,-0.763024][0.652362,0.920812,0][-0.155216,1.53273,-0.327918][-0.344859,-0.427892,-0.835452][0.652999,0.931867,0][-0.0147042,1.53273,-0.355478][3.4468e-005,-0.4272,-0.904157][0.666202,0.931867,0][-0.0147041,1.3874,-0.214695][0.000120717,-0.38049,-0.924785][0.666202,0.945523,0][-0.0147041,1.3874,-0.214695][0.000120717,-0.38049,-0.924785][0.666202,0.945523,0][-0.0997418,1.3874,-0.197973][-0.352442,-0.381813,-0.854402][0.658212,0.945523,0][-0.155216,1.53273,-0.327918][-0.344859,-0.427892,-0.835452][0.652999,0.931867,0][-0.0997418,1.3874,-0.197973][-0.352442,-0.381813,-0.854402][0.658212,0.945523,0][-0.0147041,1.3874,-0.214695][0.000120717,-0.38049,-0.924785][0.666202,0.945523,0][-0.0147041,1.25591,-0.218129][8.28264e-005,0.640237,-0.768177][0.666202,0.957879,0][-0.0147041,1.25591,-0.218129][8.28264e-005,0.640237,-0.768177][0.666202,0.957879,0][-0.100959,1.25591,-0.201097][-0.293204,0.640823,-0.709491][0.658097,0.957879,0][-0.0997418,1.3874,-0.197973][-0.352442,-0.381813,-0.854402][0.658212,0.945523,0][-0.0147041,1.25591,-0.218129][8.28264e-005,0.640237,-0.768177][0.463867,0.162017,0][0.0715509,1.25591,-0.201097][0.29315,0.640939,-0.709408][0.472129,0.161996,0][0.182065,1.16825,-0.460841][0.0813559,0.97711,-0.196566][0.477655,0.187939,0][0.182065,1.16825,-0.460841][0.0813559,0.97711,-0.196566][0.477655,0.187939,0][-0.0147041,1.16825,-0.499694][0,0.976975,-0.213353][0.458809,0.187987,0][-0.0147041,1.25591,-0.218129][8.28264e-005,0.640237,-0.768177][0.463867,0.162017,0][-0.0147041,1.16825,-0.499694][0,0.976975,-0.213353][0.458809,0.187987,0][0.182065,1.16825,-0.460841][0.0813559,0.97711,-0.196566][0.477655,0.187939,0][0.341098,1.10827,-0.834619][0.059262,0.987891,-0.143382][0.485608,0.22527,0][0.341098,1.10827,-0.834619][0.059262,0.987891,-0.143382][0.485608,0.22527,0][-0.0147042,1.10827,-0.904873][0,0.987835,-0.155508][0.45153,0.225358,0][-0.0147041,1.16825,-0.499694][0,0.976975,-0.213353][0.458809,0.187987,0][-0.0147042,1.10827,-0.904873][0,0.987835,-0.155508][0.45153,0.225358,0][0.341098,1.10827,-0.834619][0.059262,0.987891,-0.143382][0.485608,0.22527,0][0.483958,1.04829,-1.17039][0.132401,0.937895,-0.32066][0.492753,0.258806,0][0.483958,1.04829,-1.17039][0.132401,0.937895,-0.32066][0.492753,0.258806,0][-0.0147042,1.04829,-1.26885][0,0.93772,-0.347391][0.444991,0.258929,0][-0.0147042,1.10827,-0.904873][0,0.987835,-0.155508][0.45153,0.225358,0][-0.0147042,1.04829,-1.26885][0,0.93772,-0.347391][0.444991,0.258929,0][0.483958,1.04829,-1.17039][0.132401,0.937895,-0.32066][0.492753,0.258806,0][0.545954,0.960631,-1.3161][0.185623,0.874881,-0.447356][0.495853,0.273359,0][0.545954,0.960631,-1.3161][0.185623,0.874881,-0.447356][0.495853,0.273359,0][-0.0147042,0.960631,-1.4268][0,0.87437,-0.485259][0.442153,0.273497,0][-0.0147042,1.04829,-1.26885][0,0.93772,-0.347391][0.444991,0.258929,0][0.0715509,1.25591,-0.201097][0.29315,0.640939,-0.709408][0.472129,0.161996,0][0.141324,1.25591,-0.154399][0.542952,0.640553,-0.543043][0.479403,0.158943,0][0.341235,1.16825,-0.35431][0.150261,0.977161,-0.150261][0.49425,0.180972,0][0.341235,1.16825,-0.35431][0.150261,0.977161,-0.150261][0.49425,0.180972,0][0.182065,1.16825,-0.460841][0.0813559,0.97711,-0.196566][0.477655,0.187939,0][0.0715509,1.25591,-0.201097][0.29315,0.640939,-0.709408][0.472129,0.161996,0][0.182065,1.16825,-0.460841][0.0813559,0.97711,-0.196566][0.477655,0.187939,0][0.341235,1.16825,-0.35431][0.150261,0.977161,-0.150261][0.49425,0.180972,0][0.628912,1.10827,-0.641987][0.109526,0.987931,-0.109526][0.515615,0.212674,0][0.628912,1.10827,-0.641987][0.109526,0.987931,-0.109526][0.515615,0.212674,0][0.341098,1.10827,-0.834619][0.059262,0.987891,-0.143382][0.485608,0.22527,0][0.182065,1.16825,-0.460841][0.0813559,0.97711,-0.196566][0.477655,0.187939,0][0.341098,1.10827,-0.834619][0.059262,0.987891,-0.143382][0.485608,0.22527,0][0.628912,1.10827,-0.641987][0.109526,0.987931,-0.109526][0.515615,0.212674,0][0.887334,1.04829,-0.900409][0.24486,0.93813,-0.24486][0.534808,0.241152,0][0.887334,1.04829,-0.900409][0.24486,0.93813,-0.24486][0.534808,0.241152,0][0.483958,1.04829,-1.17039][0.132401,0.937895,-0.32066][0.492753,0.258806,0][0.341098,1.10827,-0.834619][0.059262,0.987891,-0.143382][0.485608,0.22527,0][0.483958,1.04829,-1.17039][0.132401,0.937895,-0.32066][0.492753,0.258806,0][0.887334,1.04829,-0.900409][0.24486,0.93813,-0.24486][0.534808,0.241152,0][0.99948,0.960631,-1.01255][0.342059,0.875209,-0.342059][0.543136,0.25351,0][0.99948,0.960631,-1.01255][0.342059,0.875209,-0.342059][0.543136,0.25351,0][0.545954,0.960631,-1.3161][0.185623,0.874881,-0.447356][0.495853,0.273359,0][0.483958,1.04829,-1.17039][0.132401,0.937895,-0.32066][0.492753,0.258806,0][0.141324,1.25591,-0.154399][0.542952,0.640553,-0.543043][0.479403,0.158943,0][0.188023,1.25591,-0.0846256][0.709491,0.640823,-0.293204][0.484964,0.153346,0][0.447767,1.16825,-0.19514][0.196566,0.97711,-0.0813559][0.506935,0.168206,0][0.447767,1.16825,-0.19514][0.196566,0.97711,-0.0813559][0.506935,0.168206,0][0.341235,1.16825,-0.35431][0.150261,0.977161,-0.150261][0.49425,0.180972,0][0.141324,1.25591,-0.154399][0.542952,0.640553,-0.543043][0.479403,0.158943,0][0.341235,1.16825,-0.35431][0.150261,0.977161,-0.150261][0.49425,0.180972,0][0.447767,1.16825,-0.19514][0.196566,0.97711,-0.0813559][0.506935,0.168206,0][0.821544,1.10827,-0.354173][0.143382,0.987891,-0.059262][0.538553,0.189589,0][0.821544,1.10827,-0.354173][0.143382,0.987891,-0.059262][0.538553,0.189589,0][0.628912,1.10827,-0.641987][0.109526,0.987931,-0.109526][0.515615,0.212674,0][0.341235,1.16825,-0.35431][0.150261,0.977161,-0.150261][0.49425,0.180972,0][0.628912,1.10827,-0.641987][0.109526,0.987931,-0.109526][0.515615,0.212674,0][0.821544,1.10827,-0.354173][0.143382,0.987891,-0.059262][0.538553,0.189589,0][1.15731,1.04829,-0.497033][0.32066,0.937895,-0.132401][0.566955,0.208797,0][1.15731,1.04829,-0.497033][0.32066,0.937895,-0.132401][0.566955,0.208797,0][0.887334,1.04829,-0.900409][0.24486,0.93813,-0.24486][0.534808,0.241152,0][0.628912,1.10827,-0.641987][0.109526,0.987931,-0.109526][0.515615,0.212674,0][0.887334,1.04829,-0.900409][0.24486,0.93813,-0.24486][0.534808,0.241152,0][1.15731,1.04829,-0.497033][0.32066,0.937895,-0.132401][0.566955,0.208797,0][1.30302,0.960631,-0.559029][0.447355,0.874881,-0.185623][0.579281,0.217133,0][1.30302,0.960631,-0.559029][0.447355,0.874881,-0.185623][0.579281,0.217133,0][0.99948,0.960631,-1.01255][0.342059,0.875209,-0.342059][0.543136,0.25351,0][0.887334,1.04829,-0.900409][0.24486,0.93813,-0.24486][0.534808,0.241152,0][0.188023,1.25591,-0.0846256][0.709491,0.640823,-0.293204][0.484964,0.153346,0][0.205054,1.25591,0.00162944][0.768177,0.640237,8.28845e-005][0.488084,0.145697,0][0.486619,1.16825,0.00162943][0.213353,0.976975,0][0.514054,0.150755,0][0.486619,1.16825,0.00162943][0.213353,0.976975,0][0.514054,0.150755,0][0.447767,1.16825,-0.19514][0.196566,0.97711,-0.0813559][0.506935,0.168206,0][0.188023,1.25591,-0.0846256][0.709491,0.640823,-0.293204][0.484964,0.153346,0][0.447767,1.16825,-0.19514][0.196566,0.97711,-0.0813559][0.506935,0.168206,0][0.486619,1.16825,0.00162943][0.213353,0.976975,0][0.514054,0.150755,0][0.891798,1.10827,0.00162941][0.155508,0.987835,0][0.551425,0.158034,0][0.891798,1.10827,0.00162941][0.155508,0.987835,0][0.551425,0.158034,0][0.821544,1.10827,-0.354173][0.143382,0.987891,-0.059262][0.538553,0.189589,0][0.447767,1.16825,-0.19514][0.196566,0.97711,-0.0813559][0.506935,0.168206,0][0.821544,1.10827,-0.354173][0.143382,0.987891,-0.059262][0.538553,0.189589,0][0.891798,1.10827,0.00162941][0.155508,0.987835,0][0.551425,0.158034,0][1.25577,1.04829,0.00162939][0.347391,0.93772,0][0.584995,0.164573,0][1.25577,1.04829,0.00162939][0.347391,0.93772,0][0.584995,0.164573,0][1.15731,1.04829,-0.497033][0.32066,0.937895,-0.132401][0.566955,0.208797,0][0.821544,1.10827,-0.354173][0.143382,0.987891,-0.059262][0.538553,0.189589,0][1.15731,1.04829,-0.497033][0.32066,0.937895,-0.132401][0.566955,0.208797,0][1.25577,1.04829,0.00162939][0.347391,0.93772,0][0.584995,0.164573,0][1.41372,0.960631,0.00162939][0.485259,0.874371,0][0.599564,0.167411,0][1.41372,0.960631,0.00162939][0.485259,0.874371,0][0.599564,0.167411,0][1.30302,0.960631,-0.559029][0.447355,0.874881,-0.185623][0.579281,0.217133,0][1.15731,1.04829,-0.497033][0.32066,0.937895,-0.132401][0.566955,0.208797,0][0.205054,1.25591,0.00162944][0.768177,0.640237,8.28845e-005][0.488084,0.145697,0][0.188023,1.25591,0.0878845][0.709408,0.640939,0.29315][0.488063,0.137435,0][0.447767,1.16825,0.198399][0.196566,0.97711,0.0813559][0.514005,0.131908,0][0.447767,1.16825,0.198399][0.196566,0.97711,0.0813559][0.514005,0.131908,0][0.486619,1.16825,0.00162943][0.213353,0.976975,0][0.514054,0.150755,0][0.205054,1.25591,0.00162944][0.768177,0.640237,8.28845e-005][0.488084,0.145697,0][0.486619,1.16825,0.00162943][0.213353,0.976975,0][0.514054,0.150755,0][0.447767,1.16825,0.198399][0.196566,0.97711,0.0813559][0.514005,0.131908,0][0.821544,1.10827,0.357432][0.143382,0.987891,0.059262][0.551337,0.123955,0][0.821544,1.10827,0.357432][0.143382,0.987891,0.059262][0.551337,0.123955,0][0.891798,1.10827,0.00162941][0.155508,0.987835,0][0.551425,0.158034,0][0.486619,1.16825,0.00162943][0.213353,0.976975,0][0.514054,0.150755,0][0.891798,1.10827,0.00162941][0.155508,0.987835,0][0.551425,0.158034,0][0.821544,1.10827,0.357432][0.143382,0.987891,0.059262][0.551337,0.123955,0][1.15731,1.04829,0.500291][0.32066,0.937895,0.132401][0.584872,0.116811,0][1.15731,1.04829,0.500291][0.32066,0.937895,0.132401][0.584872,0.116811,0][1.25577,1.04829,0.00162939][0.347391,0.93772,0][0.584995,0.164573,0][0.891798,1.10827,0.00162941][0.155508,0.987835,0][0.551425,0.158034,0][1.25577,1.04829,0.00162939][0.347391,0.93772,0][0.584995,0.164573,0][1.15731,1.04829,0.500291][0.32066,0.937895,0.132401][0.584872,0.116811,0][1.30302,0.960631,0.562287][0.447355,0.874881,0.185623][0.599425,0.11371,0][1.30302,0.960631,0.562287][0.447355,0.874881,0.185623][0.599425,0.11371,0][1.41372,0.960631,0.00162939][0.485259,0.874371,0][0.599564,0.167411,0][1.25577,1.04829,0.00162939][0.347391,0.93772,0][0.584995,0.164573,0][0.188023,1.25591,0.0878845][0.709408,0.640939,0.29315][0.488063,0.137435,0][0.141324,1.25591,0.157658][0.543043,0.640553,0.542952][0.485009,0.130161,0][0.341235,1.16825,0.357569][0.150261,0.977161,0.150261][0.507039,0.115314,0][0.341235,1.16825,0.357569][0.150261,0.977161,0.150261][0.507039,0.115314,0][0.447767,1.16825,0.198399][0.196566,0.97711,0.0813559][0.514005,0.131908,0][0.188023,1.25591,0.0878845][0.709408,0.640939,0.29315][0.488063,0.137435,0][0.447767,1.16825,0.198399][0.196566,0.97711,0.0813559][0.514005,0.131908,0][0.341235,1.16825,0.357569][0.150261,0.977161,0.150261][0.507039,0.115314,0][0.628913,1.10827,0.645246][0.109526,0.987931,0.109526][0.538741,0.0939484,0][0.628913,1.10827,0.645246][0.109526,0.987931,0.109526][0.538741,0.0939484,0][0.821544,1.10827,0.357432][0.143382,0.987891,0.059262][0.551337,0.123955,0][0.447767,1.16825,0.198399][0.196566,0.97711,0.0813559][0.514005,0.131908,0][0.821544,1.10827,0.357432][0.143382,0.987891,0.059262][0.551337,0.123955,0][0.628913,1.10827,0.645246][0.109526,0.987931,0.109526][0.538741,0.0939484,0][0.887334,1.04829,0.903668][0.24486,0.93813,0.24486][0.567218,0.0747559,0][0.887334,1.04829,0.903668][0.24486,0.93813,0.24486][0.567218,0.0747559,0][1.15731,1.04829,0.500291][0.32066,0.937895,0.132401][0.584872,0.116811,0][0.821544,1.10827,0.357432][0.143382,0.987891,0.059262][0.551337,0.123955,0][1.15731,1.04829,0.500291][0.32066,0.937895,0.132401][0.584872,0.116811,0][0.887334,1.04829,0.903668][0.24486,0.93813,0.24486][0.567218,0.0747559,0][0.99948,0.960631,1.01581][0.342059,0.875209,0.342059][0.579577,0.0664271,0][0.99948,0.960631,1.01581][0.342059,0.875209,0.342059][0.579577,0.0664271,0][1.30302,0.960631,0.562287][0.447355,0.874881,0.185623][0.599425,0.11371,0][1.15731,1.04829,0.500291][0.32066,0.937895,0.132401][0.584872,0.116811,0][0.141324,1.25591,0.157658][0.543043,0.640553,0.542952][0.485009,0.130161,0][0.071551,1.25591,0.204356][0.293204,0.640823,0.70949][0.479413,0.1246,0][0.182065,1.16825,0.4641][0.0813559,0.97711,0.196566][0.494272,0.102628,0][0.182065,1.16825,0.4641][0.0813559,0.97711,0.196566][0.494272,0.102628,0][0.341235,1.16825,0.357569][0.150261,0.977161,0.150261][0.507039,0.115314,0][0.141324,1.25591,0.157658][0.543043,0.640553,0.542952][0.485009,0.130161,0][0.341235,1.16825,0.357569][0.150261,0.977161,0.150261][0.507039,0.115314,0][0.182065,1.16825,0.4641][0.0813559,0.97711,0.196566][0.494272,0.102628,0][0.341098,1.10827,0.837878][0.059262,0.987891,0.143382][0.515655,0.0710107,0][0.341098,1.10827,0.837878][0.059262,0.987891,0.143382][0.515655,0.0710107,0][0.628913,1.10827,0.645246][0.109526,0.987931,0.109526][0.538741,0.0939484,0][0.341235,1.16825,0.357569][0.150261,0.977161,0.150261][0.507039,0.115314,0][0.628913,1.10827,0.645246][0.109526,0.987931,0.109526][0.538741,0.0939484,0][0.341098,1.10827,0.837878][0.059262,0.987891,0.143382][0.515655,0.0710107,0][0.483958,1.04829,1.17364][0.132401,0.937895,0.32066][0.534864,0.0426084,0][0.483958,1.04829,1.17364][0.132401,0.937895,0.32066][0.534864,0.0426084,0][0.887334,1.04829,0.903668][0.24486,0.93813,0.24486][0.567218,0.0747559,0][0.628913,1.10827,0.645246][0.109526,0.987931,0.109526][0.538741,0.0939484,0][0.887334,1.04829,0.903668][0.24486,0.93813,0.24486][0.567218,0.0747559,0][0.483958,1.04829,1.17364][0.132401,0.937895,0.32066][0.534864,0.0426084,0][0.545954,0.960631,1.31935][0.185623,0.874881,0.447356][0.5432,0.0302829,0][0.545954,0.960631,1.31935][0.185623,0.874881,0.447356][0.5432,0.0302829,0][0.99948,0.960631,1.01581][0.342059,0.875209,0.342059][0.579577,0.0664271,0][0.887334,1.04829,0.903668][0.24486,0.93813,0.24486][0.567218,0.0747559,0][0.071551,1.25591,0.204356][0.293204,0.640823,0.70949][0.479413,0.1246,0][-0.0147041,1.25591,0.221388][-8.28304e-005,0.640237,0.768177][0.471763,0.121479,0][-0.0147041,1.16825,0.502953][0,0.976975,0.213353][0.476822,0.0955098,0][-0.0147041,1.16825,0.502953][0,0.976975,0.213353][0.476822,0.0955098,0][0.182065,1.16825,0.4641][0.0813559,0.97711,0.196566][0.494272,0.102628,0][0.071551,1.25591,0.204356][0.293204,0.640823,0.70949][0.479413,0.1246,0][0.182065,1.16825,0.4641][0.0813559,0.97711,0.196566][0.494272,0.102628,0][-0.0147041,1.16825,0.502953][0,0.976975,0.213353][0.476822,0.0955098,0][-0.0147041,1.10827,0.908132][0,0.987835,0.155508][0.484101,0.0581389,0][-0.0147041,1.10827,0.908132][0,0.987835,0.155508][0.484101,0.0581389,0][0.341098,1.10827,0.837878][0.059262,0.987891,0.143382][0.515655,0.0710107,0][0.182065,1.16825,0.4641][0.0813559,0.97711,0.196566][0.494272,0.102628,0][0.341098,1.10827,0.837878][0.059262,0.987891,0.143382][0.515655,0.0710107,0][-0.0147041,1.10827,0.908132][0,0.987835,0.155508][0.484101,0.0581389,0][-0.0147041,1.04829,1.27211][0,0.93772,0.347391][0.49064,0.0245683,0][-0.0147041,1.04829,1.27211][0,0.93772,0.347391][0.49064,0.0245683,0][0.483958,1.04829,1.17364][0.132401,0.937895,0.32066][0.534864,0.0426084,0][0.341098,1.10827,0.837878][0.059262,0.987891,0.143382][0.515655,0.0710107,0][0.483958,1.04829,1.17364][0.132401,0.937895,0.32066][0.534864,0.0426084,0][-0.0147041,1.04829,1.27211][0,0.93772,0.347391][0.49064,0.0245683,0][-0.0147041,0.960631,1.43006][0,0.874371,0.485259][0.493477,0.01,0][-0.0147041,0.960631,1.43006][0,0.874371,0.485259][0.493477,0.01,0][0.545954,0.960631,1.31935][0.185623,0.874881,0.447356][0.5432,0.0302829,0][0.483958,1.04829,1.17364][0.132401,0.937895,0.32066][0.534864,0.0426084,0][-0.0147041,1.25591,0.221388][-8.28304e-005,0.640237,0.768177][0.471763,0.121479,0][-0.100959,1.25591,0.204356][-0.29315,0.640939,0.709408][0.463502,0.121501,0][-0.211473,1.16825,0.4641][-0.0813559,0.97711,0.196566][0.457975,0.0955583,0][-0.211473,1.16825,0.4641][-0.0813559,0.97711,0.196566][0.457975,0.0955583,0][-0.0147041,1.16825,0.502953][0,0.976975,0.213353][0.476822,0.0955098,0][-0.0147041,1.25591,0.221388][-8.28304e-005,0.640237,0.768177][0.471763,0.121479,0][-0.0147041,1.16825,0.502953][0,0.976975,0.213353][0.476822,0.0955098,0][-0.211473,1.16825,0.4641][-0.0813559,0.97711,0.196566][0.457975,0.0955583,0][-0.370506,1.10827,0.837878][-0.059262,0.987891,0.143382][0.450022,0.0582265,0][-0.370506,1.10827,0.837878][-0.059262,0.987891,0.143382][0.450022,0.0582265,0][-0.0147041,1.10827,0.908132][0,0.987835,0.155508][0.484101,0.0581389,0][-0.0147041,1.16825,0.502953][0,0.976975,0.213353][0.476822,0.0955098,0][-0.0147041,1.10827,0.908132][0,0.987835,0.155508][0.484101,0.0581389,0][-0.370506,1.10827,0.837878][-0.059262,0.987891,0.143382][0.450022,0.0582265,0][-0.513366,1.04829,1.17364][-0.132401,0.937895,0.32066][0.442877,0.0246912,0][-0.513366,1.04829,1.17364][-0.132401,0.937895,0.32066][0.442877,0.0246912,0][-0.0147041,1.04829,1.27211][0,0.93772,0.347391][0.49064,0.0245683,0][-0.0147041,1.10827,0.908132][0,0.987835,0.155508][0.484101,0.0581389,0][-0.0147041,1.04829,1.27211][0,0.93772,0.347391][0.49064,0.0245683,0][-0.513366,1.04829,1.17364][-0.132401,0.937895,0.32066][0.442877,0.0246912,0][-0.575362,0.960631,1.31935][-0.185623,0.874881,0.447356][0.439777,0.0101381,0][-0.575362,0.960631,1.31935][-0.185623,0.874881,0.447356][0.439777,0.0101381,0][-0.0147041,0.960631,1.43006][0,0.874371,0.485259][0.493477,0.01,0][-0.0147041,1.04829,1.27211][0,0.93772,0.347391][0.49064,0.0245683,0][-0.100959,1.25591,0.204356][-0.29315,0.640939,0.709408][0.463502,0.121501,0][-0.170732,1.25591,0.157658][-0.542952,0.640553,0.543043][0.456227,0.124554,0][-0.370644,1.16825,0.357569][-0.150261,0.977161,0.150261][0.44138,0.102524,0][-0.370644,1.16825,0.357569][-0.150261,0.977161,0.150261][0.44138,0.102524,0][-0.211473,1.16825,0.4641][-0.0813559,0.97711,0.196566][0.457975,0.0955583,0][-0.100959,1.25591,0.204356][-0.29315,0.640939,0.709408][0.463502,0.121501,0][-0.211473,1.16825,0.4641][-0.0813559,0.97711,0.196566][0.457975,0.0955583,0][-0.370644,1.16825,0.357569][-0.150261,0.977161,0.150261][0.44138,0.102524,0][-0.658321,1.10827,0.645246][-0.109526,0.987931,0.109526][0.420015,0.0708229,0][-0.658321,1.10827,0.645246][-0.109526,0.987931,0.109526][0.420015,0.0708229,0][-0.370506,1.10827,0.837878][-0.059262,0.987891,0.143382][0.450022,0.0582265,0][-0.211473,1.16825,0.4641][-0.0813559,0.97711,0.196566][0.457975,0.0955583,0][-0.370506,1.10827,0.837878][-0.059262,0.987891,0.143382][0.450022,0.0582265,0][-0.658321,1.10827,0.645246][-0.109526,0.987931,0.109526][0.420015,0.0708229,0][-0.916743,1.04829,0.903668][-0.24486,0.93813,0.24486][0.400823,0.0423452,0][-0.916743,1.04829,0.903668][-0.24486,0.93813,0.24486][0.400823,0.0423452,0][-0.513366,1.04829,1.17364][-0.132401,0.937895,0.32066][0.442877,0.0246912,0][-0.370506,1.10827,0.837878][-0.059262,0.987891,0.143382][0.450022,0.0582265,0][-0.513366,1.04829,1.17364][-0.132401,0.937895,0.32066][0.442877,0.0246912,0][-0.916743,1.04829,0.903668][-0.24486,0.93813,0.24486][0.400823,0.0423452,0][-1.02889,0.960631,1.01581][-0.34206,0.875209,0.34206][0.392494,0.029987,0][-1.02889,0.960631,1.01581][-0.34206,0.875209,0.34206][0.392494,0.029987,0][-0.575362,0.960631,1.31935][-0.185623,0.874881,0.447356][0.439777,0.0101381,0][-0.513366,1.04829,1.17364][-0.132401,0.937895,0.32066][0.442877,0.0246912,0][-0.170732,1.25591,0.157658][-0.542952,0.640553,0.543043][0.456227,0.124554,0][-0.217431,1.25591,0.0878845][-0.70949,0.640823,0.293204][0.450667,0.130151,0][-0.477175,1.16825,0.198399][-0.196566,0.97711,0.0813559][0.428695,0.115291,0][-0.477175,1.16825,0.198399][-0.196566,0.97711,0.0813559][0.428695,0.115291,0][-0.370644,1.16825,0.357569][-0.150261,0.977161,0.150261][0.44138,0.102524,0][-0.170732,1.25591,0.157658][-0.542952,0.640553,0.543043][0.456227,0.124554,0][-0.370644,1.16825,0.357569][-0.150261,0.977161,0.150261][0.44138,0.102524,0][-0.477175,1.16825,0.198399][-0.196566,0.97711,0.0813559][0.428695,0.115291,0][-0.850953,1.10827,0.357432][-0.143382,0.987891,0.059262][0.397077,0.0939083,0][-0.850953,1.10827,0.357432][-0.143382,0.987891,0.059262][0.397077,0.0939083,0][-0.658321,1.10827,0.645246][-0.109526,0.987931,0.109526][0.420015,0.0708229,0][-0.370644,1.16825,0.357569][-0.150261,0.977161,0.150261][0.44138,0.102524,0][-0.658321,1.10827,0.645246][-0.109526,0.987931,0.109526][0.420015,0.0708229,0][-0.850953,1.10827,0.357432][-0.143382,0.987891,0.059262][0.397077,0.0939083,0][-1.18672,1.04829,0.500292][-0.32066,0.937895,0.132401][0.368675,0.0746997,0][-1.18672,1.04829,0.500292][-0.32066,0.937895,0.132401][0.368675,0.0746997,0][-0.916743,1.04829,0.903668][-0.24486,0.93813,0.24486][0.400823,0.0423452,0][-0.658321,1.10827,0.645246][-0.109526,0.987931,0.109526][0.420015,0.0708229,0][-0.916743,1.04829,0.903668][-0.24486,0.93813,0.24486][0.400823,0.0423452,0][-1.18672,1.04829,0.500292][-0.32066,0.937895,0.132401][0.368675,0.0746997,0][-1.33243,0.960631,0.562287][-0.447356,0.874881,0.185623][0.356349,0.0663639,0][-1.33243,0.960631,0.562287][-0.447356,0.874881,0.185623][0.356349,0.0663639,0][-1.02889,0.960631,1.01581][-0.34206,0.875209,0.34206][0.392494,0.029987,0][-0.916743,1.04829,0.903668][-0.24486,0.93813,0.24486][0.400823,0.0423452,0][-0.217431,1.25591,0.0878845][-0.70949,0.640823,0.293204][0.450667,0.130151,0][-0.234462,1.25591,0.00162946][-0.768177,0.640237,-8.28836e-005][0.447546,0.1378,0][-0.516027,1.16825,0.00162947][-0.213353,0.976975,0][0.421576,0.132742,0][-0.516027,1.16825,0.00162947][-0.213353,0.976975,0][0.421576,0.132742,0][-0.477175,1.16825,0.198399][-0.196566,0.97711,0.0813559][0.428695,0.115291,0][-0.217431,1.25591,0.0878845][-0.70949,0.640823,0.293204][0.450667,0.130151,0][-0.477175,1.16825,0.198399][-0.196566,0.97711,0.0813559][0.428695,0.115291,0][-0.516027,1.16825,0.00162947][-0.213353,0.976975,0][0.421576,0.132742,0][-0.921206,1.10827,0.00162949][-0.155508,0.987835,0][0.384205,0.125463,0][-0.921206,1.10827,0.00162949][-0.155508,0.987835,0][0.384205,0.125463,0][-0.850953,1.10827,0.357432][-0.143382,0.987891,0.059262][0.397077,0.0939083,0][-0.477175,1.16825,0.198399][-0.196566,0.97711,0.0813559][0.428695,0.115291,0][-0.850953,1.10827,0.357432][-0.143382,0.987891,0.059262][0.397077,0.0939083,0][-0.921206,1.10827,0.00162949][-0.155508,0.987835,0][0.384205,0.125463,0][-1.28518,1.04829,0.00162951][-0.347391,0.93772,0][0.350635,0.118924,0][-1.28518,1.04829,0.00162951][-0.347391,0.93772,0][0.350635,0.118924,0][-1.18672,1.04829,0.500292][-0.32066,0.937895,0.132401][0.368675,0.0746997,0][-0.850953,1.10827,0.357432][-0.143382,0.987891,0.059262][0.397077,0.0939083,0][-1.18672,1.04829,0.500292][-0.32066,0.937895,0.132401][0.368675,0.0746997,0][-1.28518,1.04829,0.00162951][-0.347391,0.93772,0][0.350635,0.118924,0][-1.44313,0.960631,0.00162951][-0.485259,0.87437,0][0.336067,0.116086,0][-1.44313,0.960631,0.00162951][-0.485259,0.87437,0][0.336067,0.116086,0][-1.33243,0.960631,0.562287][-0.447356,0.874881,0.185623][0.356349,0.0663639,0][-1.18672,1.04829,0.500292][-0.32066,0.937895,0.132401][0.368675,0.0746997,0][-0.234462,1.25591,0.00162946][-0.768177,0.640237,-8.28836e-005][0.447546,0.1378,0][-0.217431,1.25591,-0.0846256][-0.709408,0.640939,-0.29315][0.447567,0.146062,0][-0.477175,1.16825,-0.19514][-0.196566,0.97711,-0.0813559][0.421625,0.151589,0][-0.477175,1.16825,-0.19514][-0.196566,0.97711,-0.0813559][0.421625,0.151589,0][-0.516027,1.16825,0.00162947][-0.213353,0.976975,0][0.421576,0.132742,0][-0.234462,1.25591,0.00162946][-0.768177,0.640237,-8.28836e-005][0.447546,0.1378,0][-0.516027,1.16825,0.00162947][-0.213353,0.976975,0][0.421576,0.132742,0][-0.477175,1.16825,-0.19514][-0.196566,0.97711,-0.0813559][0.421625,0.151589,0][-0.850953,1.10827,-0.354173][-0.143382,0.987891,-0.059262][0.384293,0.159542,0][-0.850953,1.10827,-0.354173][-0.143382,0.987891,-0.059262][0.384293,0.159542,0][-0.921206,1.10827,0.00162949][-0.155508,0.987835,0][0.384205,0.125463,0][-0.516027,1.16825,0.00162947][-0.213353,0.976975,0][0.421576,0.132742,0][-0.921206,1.10827,0.00162949][-0.155508,0.987835,0][0.384205,0.125463,0][-0.850953,1.10827,-0.354173][-0.143382,0.987891,-0.059262][0.384293,0.159542,0][-1.18672,1.04829,-0.497033][-0.32066,0.937895,-0.132401][0.350758,0.166686,0][-1.18672,1.04829,-0.497033][-0.32066,0.937895,-0.132401][0.350758,0.166686,0][-1.28518,1.04829,0.00162951][-0.347391,0.93772,0][0.350635,0.118924,0][-0.921206,1.10827,0.00162949][-0.155508,0.987835,0][0.384205,0.125463,0][-1.28518,1.04829,0.00162951][-0.347391,0.93772,0][0.350635,0.118924,0][-1.18672,1.04829,-0.497033][-0.32066,0.937895,-0.132401][0.350758,0.166686,0][-1.33243,0.960631,-0.559028][-0.447356,0.874881,-0.185623][0.336205,0.169786,0][-1.33243,0.960631,-0.559028][-0.447356,0.874881,-0.185623][0.336205,0.169786,0][-1.44313,0.960631,0.00162951][-0.485259,0.87437,0][0.336067,0.116086,0][-1.28518,1.04829,0.00162951][-0.347391,0.93772,0][0.350635,0.118924,0][-0.217431,1.25591,-0.0846256][-0.709408,0.640939,-0.29315][0.447567,0.146062,0][-0.170732,1.25591,-0.154399][-0.543043,0.640553,-0.542952][0.450621,0.153336,0][-0.370644,1.16825,-0.35431][-0.150261,0.977161,-0.150261][0.428591,0.168183,0][-0.370644,1.16825,-0.35431][-0.150261,0.977161,-0.150261][0.428591,0.168183,0][-0.477175,1.16825,-0.19514][-0.196566,0.97711,-0.0813559][0.421625,0.151589,0][-0.217431,1.25591,-0.0846256][-0.709408,0.640939,-0.29315][0.447567,0.146062,0][-0.477175,1.16825,-0.19514][-0.196566,0.97711,-0.0813559][0.421625,0.151589,0][-0.370644,1.16825,-0.35431][-0.150261,0.977161,-0.150261][0.428591,0.168183,0][-0.658321,1.10827,-0.641987][-0.109526,0.987931,-0.109526][0.39689,0.189549,0][-0.658321,1.10827,-0.641987][-0.109526,0.987931,-0.109526][0.39689,0.189549,0][-0.850953,1.10827,-0.354173][-0.143382,0.987891,-0.059262][0.384293,0.159542,0][-0.477175,1.16825,-0.19514][-0.196566,0.97711,-0.0813559][0.421625,0.151589,0][-0.850953,1.10827,-0.354173][-0.143382,0.987891,-0.059262][0.384293,0.159542,0][-0.658321,1.10827,-0.641987][-0.109526,0.987931,-0.109526][0.39689,0.189549,0][-0.916743,1.04829,-0.900409][-0.24486,0.93813,-0.24486][0.368412,0.208741,0][-0.916743,1.04829,-0.900409][-0.24486,0.93813,-0.24486][0.368412,0.208741,0][-1.18672,1.04829,-0.497033][-0.32066,0.937895,-0.132401][0.350758,0.166686,0][-0.850953,1.10827,-0.354173][-0.143382,0.987891,-0.059262][0.384293,0.159542,0][-1.18672,1.04829,-0.497033][-0.32066,0.937895,-0.132401][0.350758,0.166686,0][-0.916743,1.04829,-0.900409][-0.24486,0.93813,-0.24486][0.368412,0.208741,0][-1.02889,0.960631,-1.01255][-0.342059,0.875209,-0.342059][0.356054,0.21707,0][-1.02889,0.960631,-1.01255][-0.342059,0.875209,-0.342059][0.356054,0.21707,0][-1.33243,0.960631,-0.559028][-0.447356,0.874881,-0.185623][0.336205,0.169786,0][-1.18672,1.04829,-0.497033][-0.32066,0.937895,-0.132401][0.350758,0.166686,0][-0.170732,1.25591,-0.154399][-0.543043,0.640553,-0.542952][0.450621,0.153336,0][-0.100959,1.25591,-0.201097][-0.293204,0.640823,-0.709491][0.456217,0.158897,0][-0.211474,1.16825,-0.460841][-0.0813559,0.97711,-0.196566][0.441358,0.180869,0][-0.211474,1.16825,-0.460841][-0.0813559,0.97711,-0.196566][0.441358,0.180869,0][-0.370644,1.16825,-0.35431][-0.150261,0.977161,-0.150261][0.428591,0.168183,0][-0.170732,1.25591,-0.154399][-0.543043,0.640553,-0.542952][0.450621,0.153336,0][-0.370644,1.16825,-0.35431][-0.150261,0.977161,-0.150261][0.428591,0.168183,0][-0.211474,1.16825,-0.460841][-0.0813559,0.97711,-0.196566][0.441358,0.180869,0][-0.370506,1.10827,-0.834619][-0.059262,0.987891,-0.143382][0.419975,0.212486,0][-0.370506,1.10827,-0.834619][-0.059262,0.987891,-0.143382][0.419975,0.212486,0][-0.658321,1.10827,-0.641987][-0.109526,0.987931,-0.109526][0.39689,0.189549,0][-0.370644,1.16825,-0.35431][-0.150261,0.977161,-0.150261][0.428591,0.168183,0][-0.658321,1.10827,-0.641987][-0.109526,0.987931,-0.109526][0.39689,0.189549,0][-0.370506,1.10827,-0.834619][-0.059262,0.987891,-0.143382][0.419975,0.212486,0][-0.513366,1.04829,-1.17039][-0.132401,0.937895,-0.32066][0.400766,0.240889,0][-0.513366,1.04829,-1.17039][-0.132401,0.937895,-0.32066][0.400766,0.240889,0][-0.916743,1.04829,-0.900409][-0.24486,0.93813,-0.24486][0.368412,0.208741,0][-0.658321,1.10827,-0.641987][-0.109526,0.987931,-0.109526][0.39689,0.189549,0][-0.916743,1.04829,-0.900409][-0.24486,0.93813,-0.24486][0.368412,0.208741,0][-0.513366,1.04829,-1.17039][-0.132401,0.937895,-0.32066][0.400766,0.240889,0][-0.575362,0.960631,-1.3161][-0.185623,0.874881,-0.447355][0.392431,0.253214,0][-0.575362,0.960631,-1.3161][-0.185623,0.874881,-0.447355][0.392431,0.253214,0][-1.02889,0.960631,-1.01255][-0.342059,0.875209,-0.342059][0.356054,0.21707,0][-0.916743,1.04829,-0.900409][-0.24486,0.93813,-0.24486][0.368412,0.208741,0][-0.100959,1.25591,-0.201097][-0.293204,0.640823,-0.709491][0.456217,0.158897,0][-0.0147041,1.25591,-0.218129][8.28264e-005,0.640237,-0.768177][0.463867,0.162017,0][-0.0147041,1.16825,-0.499694][0,0.976975,-0.213353][0.458809,0.187987,0][-0.0147041,1.16825,-0.499694][0,0.976975,-0.213353][0.458809,0.187987,0][-0.211474,1.16825,-0.460841][-0.0813559,0.97711,-0.196566][0.441358,0.180869,0][-0.100959,1.25591,-0.201097][-0.293204,0.640823,-0.709491][0.456217,0.158897,0][-0.211474,1.16825,-0.460841][-0.0813559,0.97711,-0.196566][0.441358,0.180869,0][-0.0147041,1.16825,-0.499694][0,0.976975,-0.213353][0.458809,0.187987,0][-0.0147042,1.10827,-0.904873][0,0.987835,-0.155508][0.45153,0.225358,0][-0.0147042,1.10827,-0.904873][0,0.987835,-0.155508][0.45153,0.225358,0][-0.370506,1.10827,-0.834619][-0.059262,0.987891,-0.143382][0.419975,0.212486,0][-0.211474,1.16825,-0.460841][-0.0813559,0.97711,-0.196566][0.441358,0.180869,0][-0.370506,1.10827,-0.834619][-0.059262,0.987891,-0.143382][0.419975,0.212486,0][-0.0147042,1.10827,-0.904873][0,0.987835,-0.155508][0.45153,0.225358,0][-0.0147042,1.04829,-1.26885][0,0.93772,-0.347391][0.444991,0.258929,0][-0.0147042,1.04829,-1.26885][0,0.93772,-0.347391][0.444991,0.258929,0][-0.513366,1.04829,-1.17039][-0.132401,0.937895,-0.32066][0.400766,0.240889,0][-0.370506,1.10827,-0.834619][-0.059262,0.987891,-0.143382][0.419975,0.212486,0][-0.513366,1.04829,-1.17039][-0.132401,0.937895,-0.32066][0.400766,0.240889,0][-0.0147042,1.04829,-1.26885][0,0.93772,-0.347391][0.444991,0.258929,0][-0.0147042,0.960631,-1.4268][0,0.87437,-0.485259][0.442153,0.273497,0][-0.0147042,0.960631,-1.4268][0,0.87437,-0.485259][0.442153,0.273497,0][-0.575362,0.960631,-1.3161][-0.185623,0.874881,-0.447355][0.392431,0.253214,0][-0.513366,1.04829,-1.17039][-0.132401,0.937895,-0.32066][0.400766,0.240889,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/HelmOfIce.mesh b/shareddata/charcustom/hats/fonts/HelmOfIce.mesh deleted file mode 100644 index a9f433b..0000000 --- a/shareddata/charcustom/hats/fonts/HelmOfIce.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -612 -[0.0900779,0.621839,-0.243375][1.37018,0,0][0.25407,0.737823,0][0.0900779,0.847032,-0.862087][0.968085,0,0][0.238639,0.780691,0][0.0900779,0.985681,-0.667472][2.17351,0,0][0.228997,0.767258,0][0.0900779,0.985681,-0.667472][2.17351,0,0][0.228997,0.767258,0][0.0900779,0.820509,-0.213664][1.77141,0,0][0.240315,0.735816,0][0.0900779,0.621839,-0.243375][1.37018,0,0][0.25407,0.737823,0][0.0900779,0.820509,-0.213664][1.77141,0,0][0.0731657,0.4619,0][0.0900779,0.985681,-0.667472][2.17351,0,0][0.0731657,0.495318,0][-0.106772,0.985681,-0.667472][0,1.47607,0.537244][0.0595441,0.495318,0][-0.106772,0.985681,-0.667472][0,1.47607,0.537244][0.0595441,0.495318,0][-0.106772,0.820509,-0.213664][0,1.47607,0.537244][0.0595441,0.4619,0][0.0900779,0.820509,-0.213664][1.77141,0,0][0.0731657,0.4619,0][-0.106772,0.820509,-0.213664][0,1.47607,0.537244][0.596385,0.345581,0][-0.106772,0.985681,-0.667472][0,1.47607,0.537244][0.5839,0.314583,0][-0.106772,0.847032,-0.862087][-0.968085,0,0][0.593033,0.3008,0][-0.106772,0.847032,-0.862087][-0.968085,0,0][0.593033,0.3008,0][-0.106772,0.621839,-0.243376][-1.37018,0,0][0.610055,0.343061,0][-0.106772,0.820509,-0.213664][0,1.47607,0.537244][0.596385,0.345581,0][-0.106772,0.621839,-0.243376][-1.37018,0,0][0.519193,0.0392306,0][-0.106772,0.847032,-0.862087][-0.968085,0,0][0.564754,0.0392306,0][0.0900779,0.847032,-0.862087][0.968085,0,0][0.564754,0.0528522,0][0.0900779,0.847032,-0.862087][0.968085,0,0][0.564754,0.0528522,0][0.0900779,0.621839,-0.243375][1.37018,0,0][0.519193,0.0528522,0][-0.106772,0.621839,-0.243376][-1.37018,0,0][0.519193,0.0392306,0][0.0900779,0.847032,-0.862087][0.968085,0,0][0.238639,0.780691,0][0.090078,4.15138,-0.91598][0.174164,0,0][0.01,0.785229,0][0.0900779,3.03592,-0.700909][2.96743,0,5.81657e-007][0.087134,0.770073,0][0.0900779,3.03592,-0.700909][2.96743,0,5.81657e-007][0.087134,0.770073,0][0.0900779,0.985681,-0.667472][2.17351,0,0][0.228997,0.767258,0][0.0900779,0.847032,-0.862087][0.968085,0,0][0.238639,0.780691,0][0.0900779,0.985681,-0.667472][2.17351,0,0][0.0207053,0.610673,0][0.0900779,3.03592,-0.700909][2.96743,0,5.81657e-007][0.15323,0.610673,0][-0.106772,3.03592,-0.700909][-4.75718e-007,0.0256142,1.57059][0.15323,0.624295,0][-0.106772,3.03592,-0.700909][-4.75718e-007,0.0256142,1.57059][0.15323,0.624295,0][-0.106772,0.985681,-0.667472][0,1.47607,0.537244][0.0207053,0.624295,0][0.0900779,0.985681,-0.667472][2.17351,0,0][0.0207053,0.610673,0][-0.106772,0.985681,-0.667472][0,1.47607,0.537244][0.5839,0.314583,0][-0.106772,3.03592,-0.700909][-4.75718e-007,0.0256142,1.57059][0.442031,0.317069,0][-0.106772,4.15138,-0.91598][-0.174164,0,0][0.364384,0.304806,0][-0.106772,4.15138,-0.91598][-0.174164,0,0][0.364384,0.304806,0][-0.106772,0.847032,-0.862087][-0.968085,0,0][0.593033,0.3008,0][-0.106772,0.985681,-0.667472][0,1.47607,0.537244][0.5839,0.314583,0][-0.106772,0.847032,-0.862087][-0.968085,0,0][0.975262,0.945418,0][-0.106772,4.15138,-0.91598][-0.174164,0,0][0.761674,0.945418,0][0.090078,4.15138,-0.91598][0.174164,0,0][0.761674,0.931797,0][0.090078,4.15138,-0.91598][0.174164,0,0][0.761674,0.931797,0][0.0900779,0.847032,-0.862087][0.968085,0,0][0.975262,0.931797,0][-0.106772,0.847032,-0.862087][-0.968085,0,0][0.975262,0.945418,0][0.090078,4.15138,-0.91598][0.174164,0,0][0.01,0.785229,0][0.0900779,1.78724,-0.0135845][2.64729,0,0][0.173371,0.722207,0][0.0900779,1.3758,-0.0672392][0.494305,0,0][0.201855,0.725819,0][0.0900779,1.3758,-0.0672392][0.494305,0,0][0.201855,0.725819,0][0.0900779,3.03592,-0.700909][2.96743,0,5.81657e-007][0.087134,0.770073,0][0.090078,4.15138,-0.91598][0.174164,0,0][0.01,0.785229,0][0.0900779,3.03592,-0.700909][2.96743,0,5.81657e-007][0.212231,0.55928,0][0.0900779,1.3758,-0.0672392][0.494305,0,0][0.0892706,0.55928,0][-0.106772,1.3758,-0.0672391][0,-0.560154,-1.46752][0.0892706,0.545659,0][-0.106772,1.3758,-0.0672391][0,-0.560154,-1.46752][0.0892706,0.545659,0][-0.106772,3.03592,-0.700909][-4.75718e-007,0.0256142,1.57059][0.212231,0.545659,0][0.0900779,3.03592,-0.700909][2.96743,0,5.81657e-007][0.212231,0.55928,0][-0.106772,3.03592,-0.700909][-4.75718e-007,0.0256142,1.57059][0.442031,0.317069,0][-0.106772,1.3758,-0.0672391][0,-0.560154,-1.46752][0.558325,0.357007,0][-0.106772,1.78724,-0.0135845][-2.64729,0,1.7586e-007][0.529996,0.361681,0][-0.106772,1.78724,-0.0135845][-2.64729,0,1.7586e-007][0.529996,0.361681,0][-0.106772,4.15138,-0.91598][-0.174164,0,0][0.364384,0.304806,0][-0.106772,3.03592,-0.700909][-4.75718e-007,0.0256142,1.57059][0.442031,0.317069,0][-0.106772,4.15138,-0.91598][-0.174164,0,0][0.984435,0.456305,0][-0.106772,1.78724,-0.0135845][-2.64729,0,1.7586e-007][0.80933,0.456305,0][0.0900779,1.78724,-0.0135845][2.64729,0,0][0.80933,0.442683,0][0.0900779,1.78724,-0.0135845][2.64729,0,0][0.80933,0.442683,0][0.090078,4.15138,-0.91598][0.174164,0,0][0.984435,0.442683,0][-0.106772,4.15138,-0.91598][-0.174164,0,0][0.984435,0.456305,0][0.0900779,1.78724,-0.0135845][2.64729,0,0][0.173371,0.722207,0][0.0900779,3.14234,0.961989][0.197406,0,0][0.0793633,0.655032,0][0.0900779,2.2286,0.546714][2.94419,-2.40925e-007,3.85531e-007][0.142694,0.683544,0][0.0900779,2.2286,0.546714][2.94419,-2.40925e-007,3.85531e-007][0.142694,0.683544,0][0.0900779,1.3758,-0.0672392][0.494305,0,0][0.201855,0.725819,0][0.0900779,1.78724,-0.0135845][2.64729,0,0][0.173371,0.722207,0][0.0900779,1.3758,-0.0672392][0.494305,0,0][0.547396,0.0312005,0][0.0900779,2.2286,0.546714][2.94419,-2.40925e-007,3.85531e-007][0.477413,0.0312005,0][-0.106772,2.2286,0.546714][0,-0.917763,1.2748][0.477413,0.0175789,0][-0.106772,2.2286,0.546714][0,-0.917763,1.2748][0.477413,0.0175789,0][-0.106772,1.3758,-0.0672391][0,-0.560154,-1.46752][0.547396,0.0175789,0][0.0900779,1.3758,-0.0672392][0.494305,0,0][0.547396,0.0312005,0][-0.106772,1.3758,-0.0672391][0,-0.560154,-1.46752][0.558325,0.357007,0][-0.106772,2.2286,0.546714][0,-0.917763,1.2748][0.500784,0.401463,0][-0.106772,3.14234,0.961989][-0.197407,0,0][0.438563,0.432321,0][-0.106772,3.14234,0.961989][-0.197407,0,0][0.438563,0.432321,0][-0.106772,1.78724,-0.0135845][-2.64729,0,1.7586e-007][0.529996,0.361681,0][-0.106772,1.3758,-0.0672391][0,-0.560154,-1.46752][0.558325,0.357007,0][-0.106772,1.78724,-0.0135845][-2.64729,0,1.7586e-007][0.477413,0.0608823,0][-0.106772,3.14234,0.961989][-0.197407,0,0][0.588617,0.0608823,0][0.0900779,3.14234,0.961989][0.197406,0,0][0.588617,0.0745039,0][0.0900779,3.14234,0.961989][0.197406,0,0][0.588617,0.0745039,0][0.0900779,1.78724,-0.0135845][2.64729,0,0][0.477413,0.0745039,0][-0.106772,1.78724,-0.0135845][-2.64729,0,1.7586e-007][0.477413,0.0608823,0][0.0900779,3.14234,0.961989][0.197406,0,0][0.0793633,0.655032,0][0.0900779,1.4729,0.572576][2.64361,0,0][0.194979,0.68157,0][0.0900779,1.16501,0.298624][0.497982,0,0][0.216351,0.700451,0][0.0900779,1.16501,0.298624][0.497982,0,0][0.216351,0.700451,0][0.0900779,2.2286,0.546714][2.94419,-2.40925e-007,3.85531e-007][0.142694,0.683544,0][0.0900779,3.14234,0.961989][0.197406,0,0][0.0793633,0.655032,0][0.0900779,2.2286,0.546714][2.94419,-2.40925e-007,3.85531e-007][0.772345,0.690728,0][0.0900779,1.16501,0.298624][0.497982,0,0][0.697315,0.690728,0][-0.106772,1.16501,0.298624][0,0.356824,-1.52973][0.697315,0.677107,0][-0.106772,1.16501,0.298624][0,0.356824,-1.52973][0.697315,0.677107,0][-0.106772,2.2286,0.546714][0,-0.917763,1.2748][0.772345,0.677107,0][0.0900779,2.2286,0.546714][2.94419,-2.40925e-007,3.85531e-007][0.772345,0.690728,0][-0.106772,2.2286,0.546714][0,-0.917763,1.2748][0.500784,0.401463,0][-0.106772,1.16501,0.298624][0,0.356824,-1.52973][0.573758,0.381816,0][-0.106772,1.4729,0.572576][-2.64361,0,1.36941e-007][0.553107,0.401483,0][-0.106772,1.4729,0.572576][-2.64361,0,1.36941e-007][0.553107,0.401483,0][-0.106772,3.14234,0.961989][-0.197407,0,0][0.438563,0.432321,0][-0.106772,2.2286,0.546714][0,-0.917763,1.2748][0.500784,0.401463,0][-0.106772,3.14234,0.961989][-0.197407,0,0][0.138815,0.481696,0][-0.106772,1.4729,0.572576][-2.64361,0,1.36941e-007][0.256585,0.481696,0][0.0900779,1.4729,0.572576][2.64361,0,0][0.256585,0.495318,0][0.0900779,1.4729,0.572576][2.64361,0,0][0.256585,0.495318,0][0.0900779,3.14234,0.961989][0.197406,0,0][0.138815,0.495318,0][-0.106772,3.14234,0.961989][-0.197407,0,0][0.138815,0.481696,0][0.0900779,1.4729,0.572576][2.64361,0,0][0.194979,0.68157,0][0.0900779,1.94277,1.87731][0.187393,0,0][0.162146,0.591401,0][0.0900779,1.40583,0.96729][2.95421,-4.30212e-007,2.05711e-007][0.199524,0.65424,0][0.0900779,1.40583,0.96729][2.95421,-4.30212e-007,2.05711e-007][0.199524,0.65424,0][0.0900779,1.16501,0.298624][0.497982,0,0][0.216351,0.700451,0][0.0900779,1.4729,0.572576][2.64361,0,0][0.194979,0.68157,0][0.0900779,1.16501,0.298624][0.497982,0,0][0.0291907,0.663381,0][0.0900779,1.40583,0.96729][2.95421,-4.30212e-007,2.05711e-007][0.0291907,0.71256,0][-0.106773,1.40583,0.96729][0,-1.47788,0.532238][0.0155691,0.71256,0][-0.106773,1.40583,0.96729][0,-1.47788,0.532238][0.0155691,0.71256,0][-0.106772,1.16501,0.298624][0,0.356824,-1.52973][0.0155691,0.663381,0][0.0900779,1.16501,0.298624][0.497982,0,0][0.0291907,0.663381,0][-0.106772,1.16501,0.298624][0,0.356824,-1.52973][0.573758,0.381816,0][-0.106773,1.40583,0.96729][0,-1.47788,0.532238][0.558669,0.428623,0][-0.106772,1.94277,1.87731][-0.187393,0,0][0.523665,0.492815,0][-0.106772,1.94277,1.87731][-0.187393,0,0][0.523665,0.492815,0][-0.106772,1.4729,0.572576][-2.64361,0,1.36941e-007][0.553107,0.401483,0][-0.106772,1.16501,0.298624][0,0.356824,-1.52973][0.573758,0.381816,0][-0.106772,1.4729,0.572576][-2.64361,0,1.36941e-007][0.436019,0.085663,0][-0.106772,1.94277,1.87731][-0.187393,0,0][0.436019,0.0119439,0][0.0900779,1.94277,1.87731][0.187393,0,0][0.449641,0.0119439,0][0.0900779,1.94277,1.87731][0.187393,0,0][0.449641,0.0119439,0][0.0900779,1.4729,0.572576][2.64361,0,0][0.449641,0.085663,0][-0.106772,1.4729,0.572576][-2.64361,0,1.36941e-007][0.436019,0.085663,0][0.0900779,1.94277,1.87731][0.187393,0,0][0.162146,0.591401,0][0.0900779,0.656035,0.411593][1.23665,0,0][0.251543,0.692509,0][0.0900779,0.849054,0.333081][1.90495,0,0][0.238206,0.697989,0][0.0900779,0.849054,0.333081][1.90495,0,0][0.238206,0.697989,0][0.0900779,1.40583,0.96729][2.95421,-4.30212e-007,2.05711e-007][0.199524,0.65424,0][0.0900779,1.94277,1.87731][0.187393,0,0][0.162146,0.591401,0][0.0900779,1.40583,0.96729][2.95421,-4.30212e-007,2.05711e-007][0.37153,0.377468,0][0.0900779,0.849054,0.333081][1.90495,0,0][0.429927,0.377468,0][-0.106772,0.849054,0.333081][0,1.18045,-1.03631][0.429927,0.391089,0][-0.106772,0.849054,0.333081][0,1.18045,-1.03631][0.429927,0.391089,0][-0.106773,1.40583,0.96729][0,-1.47788,0.532238][0.37153,0.391089,0][0.0900779,1.40583,0.96729][2.95421,-4.30212e-007,2.05711e-007][0.37153,0.377468,0][-0.106773,1.40583,0.96729][0,-1.47788,0.532238][0.558669,0.428623,0][-0.106772,0.849054,0.333081][0,1.18045,-1.03631][0.59569,0.38346,0][-0.106772,0.656035,0.411593][-1.23665,0,0][0.609223,0.388438,0][-0.106772,0.656035,0.411593][-1.23665,0,0][0.609223,0.388438,0][-0.106772,1.94277,1.87731][-0.187393,0,0][0.523665,0.492815,0][-0.106773,1.40583,0.96729][0,-1.47788,0.532238][0.558669,0.428623,0][-0.106772,1.94277,1.87731][-0.187393,0,0][0.15323,0.645947,0][-0.106772,0.656035,0.411593][-1.23665,0,0][0.0182677,0.645947,0][0.0900779,0.656035,0.411593][1.23665,0,0][0.0182677,0.632325,0][0.0900779,0.656035,0.411593][1.23665,0,0][0.0182677,0.632325,0][0.0900779,1.94277,1.87731][0.187393,0,0][0.15323,0.632325,0][-0.106772,1.94277,1.87731][-0.187393,0,0][0.15323,0.645947,0][0.0900779,0.656035,0.411593][1.23665,0,0][0.251543,0.692509,0][0.0900779,0.621839,-0.243375][1.37018,0,0][0.25407,0.737823,0][0.0900779,0.820509,-0.213664][1.77141,0,0][0.240315,0.735816,0][0.0900779,0.820509,-0.213664][1.77141,0,0][0.240315,0.735816,0][0.0900779,0.849054,0.333081][1.90495,0,0][0.238206,0.697989,0][0.0900779,0.656035,0.411593][1.23665,0,0][0.251543,0.692509,0][0.0900779,0.849054,0.333081][1.90495,0,0][0.0731657,0.427024,0][0.0900779,0.820509,-0.213664][1.77141,0,0][0.0731657,0.4619,0][-0.106772,0.820509,-0.213664][0,1.47607,0.537244][0.0595441,0.4619,0][-0.106772,0.820509,-0.213664][0,1.47607,0.537244][0.0595441,0.4619,0][-0.106772,0.849054,0.333081][0,1.18045,-1.03631][0.0595441,0.427024,0][0.0900779,0.849054,0.333081][1.90495,0,0][0.0731657,0.427024,0][-0.106772,0.849054,0.333081][0,1.18045,-1.03631][0.59569,0.38346,0][-0.106772,0.820509,-0.213664][0,1.47607,0.537244][0.596385,0.345581,0][-0.106772,0.621839,-0.243376][-1.37018,0,0][0.610055,0.343061,0][-0.106772,0.621839,-0.243376][-1.37018,0,0][0.610055,0.343061,0][-0.106772,0.656035,0.411593][-1.23665,0,0][0.609223,0.388438,0][-0.106772,0.849054,0.333081][0,1.18045,-1.03631][0.59569,0.38346,0][-0.106772,0.656035,0.411593][-1.23665,0,0][0.477413,0.0392306,0][-0.106772,0.621839,-0.243376][-1.37018,0,0][0.519193,0.0392306,0][0.0900779,0.621839,-0.243375][1.37018,0,0][0.519193,0.0528522,0][0.0900779,0.621839,-0.243375][1.37018,0,0][0.519193,0.0528522,0][0.0900779,0.656035,0.411593][1.23665,0,0][0.477413,0.0528522,0][-0.106772,0.656035,0.411593][-1.23665,0,0][0.477413,0.0392306,0][0.096114,0.659853,0.227474][1.62348e-007,1,0][0.0674421,0.704758,0][0.17925,0.659853,0.171924][8.65436e-007,1,1.29522e-006][0.0627968,0.709714,0][0.2348,0.659853,0.088788][-1.14089e-006,1,-7.11105e-007][0.0567557,0.712454,0][0.096114,0.659853,0.227474][1.62348e-007,1,0][0.0674421,0.704758,0][0.2348,0.659853,0.088788][-1.14089e-006,1,-7.11105e-007][0.0567557,0.712454,0][0.254306,0.659853,-0.00927768][-1.85031e-007,1,-1.23634e-007][0.0502386,0.71256,0][0.096114,0.659853,0.227474][1.62348e-007,1,0][0.0674421,0.704758,0][0.254306,0.659853,-0.00927768][-1.85031e-007,1,-1.23634e-007][0.0502386,0.71256,0][0.2348,0.659853,-0.107343][5.2044e-007,1,2.15573e-007][0.0442376,0.710016,0][0.096114,0.659853,0.227474][1.62348e-007,1,0][0.0674421,0.704758,0][0.2348,0.659853,-0.107343][5.2044e-007,1,2.15573e-007][0.0442376,0.710016,0][0.17925,0.659853,-0.190479][-3.22858e-007,1,0][0.0396664,0.705209,0][0.096114,0.659853,0.227474][1.62348e-007,1,0][0.0674421,0.704758,0][0.17925,0.659853,-0.190479][-3.22858e-007,1,0][0.0396664,0.705209,0][0.096114,0.659853,-0.246029][1.34676e-007,1,0][0.0372208,0.698872,0][0.096114,0.659853,0.227474][1.62348e-007,1,0][0.0674421,0.704758,0][0.096114,0.659853,-0.246029][1.34676e-007,1,0][0.0372208,0.698872,0][-0.00195169,0.659853,-0.265536][0,1,1.32912e-007][0.0372732,0.691969,0][0.096114,0.659853,0.227474][1.62348e-007,1,0][0.0674421,0.704758,0][-0.00195169,0.659853,-0.265536][0,1,1.32912e-007][0.0372732,0.691969,0][-0.100017,0.659853,-0.246029][2.80768e-007,1,0][0.0398155,0.68555,0][0.096114,0.659853,0.227474][1.62348e-007,1,0][0.0674421,0.704758,0][-0.100017,0.659853,-0.246029][2.80768e-007,1,0][0.0398155,0.68555,0][-0.183153,0.659853,-0.19048][5.033e-007,1,0][0.0444609,0.680594,0][0.096114,0.659853,0.227474][1.62348e-007,1,0][0.0674421,0.704758,0][-0.183153,0.659853,-0.19048][5.033e-007,1,0][0.0444609,0.680594,0][-0.238703,0.659853,-0.107343][-1.54654e-007,1,3.32676e-007][0.050502,0.677855,0][0.096114,0.659853,0.227474][1.62348e-007,1,0][0.0674421,0.704758,0][-0.238703,0.659853,-0.107343][-1.54654e-007,1,3.32676e-007][0.050502,0.677855,0][-0.25821,0.659853,-0.00927771][2.95312e-007,1,-1.90205e-007][0.057019,0.677749,0][0.096114,0.659853,0.227474][1.62348e-007,1,0][0.0674421,0.704758,0][-0.25821,0.659853,-0.00927771][2.95312e-007,1,-1.90205e-007][0.057019,0.677749,0][-0.238703,0.659853,0.088788][6.25931e-007,1,-6.51569e-007][0.06302,0.680293,0][0.096114,0.659853,0.227474][1.62348e-007,1,0][0.0674421,0.704758,0][-0.238703,0.659853,0.088788][6.25931e-007,1,-6.51569e-007][0.06302,0.680293,0][-0.183153,0.659853,0.171924][4.65381e-007,1,-1.93638e-007][0.0675913,0.6851,0][0.096114,0.659853,0.227474][1.62348e-007,1,0][0.0674421,0.704758,0][-0.183153,0.659853,0.171924][4.65381e-007,1,-1.93638e-007][0.0675913,0.6851,0][-0.100017,0.659853,0.227474][3.03902e-007,1,4.6489e-007][0.0700369,0.691437,0][-0.00195169,0.659853,0.24698][3.03902e-007,1,-1.52782e-006][0.0699845,0.69834,0][0.096114,0.659853,0.227474][1.62348e-007,1,0][0.0674421,0.704758,0][-0.100017,0.659853,0.227474][3.03902e-007,1,4.6489e-007][0.0700369,0.691437,0][-0.00195211,-2.44029,2.32109][-0.306115,0.0130239,1.53894][0.875699,0.784028,0][-0.00195207,-2.22919,2.3193][0,0.497344,0.867554][0.875699,0.797712,0][-0.89306,-2.22919,2.14205][-0.331998,0.497344,0.801515][0.814036,0.793517,0][-0.89306,-2.22919,2.14205][-0.331998,0.497344,0.801515][0.814036,0.793517,0][-0.893744,-2.44029,2.1437][-0.306115,0.0130244,1.53894][0.813989,0.77983,0][-0.00195211,-2.44029,2.32109][-0.306115,0.0130239,1.53894][0.875699,0.784028,0][-0.00195207,-2.22919,2.3193][0,0.497344,0.867554][0.171132,0.3008,0][-0.00195205,-2.00582,1.88583][0,0.774789,0.63222][0.171132,0.334272,0][-0.72718,-2.00582,1.74158][-0.24194,0.774789,0.584095][0.120948,0.343652,0][-0.72718,-2.00582,1.74158][-0.24194,0.774789,0.584095][0.120948,0.343652,0][-0.89306,-2.22919,2.14205][-0.331998,0.497344,0.801515][0.109469,0.312325,0][-0.00195207,-2.22919,2.3193][0,0.497344,0.867554][0.171132,0.3008,0][-0.00195205,-2.00582,1.88583][0,0.774789,0.63222][0.171132,0.334272,0][-0.00195201,-1.61625,1.59988][1.87085e-007,0.410806,0.911723][0.171132,0.362086,0][-0.617748,-1.61625,1.47739][-0.348901,0.410806,0.842322][0.12852,0.370051,0][-0.617748,-1.61625,1.47739][-0.348901,0.410806,0.842322][0.12852,0.370051,0][-0.72718,-2.00582,1.74158][-0.24194,0.774789,0.584095][0.120948,0.343652,0][-0.00195205,-2.00582,1.88583][0,0.774789,0.63222][0.171132,0.334272,0][-0.00195201,-1.61625,1.59988][1.87085e-007,0.410806,0.911723][0.690864,0.516906,0][-0.00195195,-1.19582,1.51867][0,0.152222,0.988346][0.690864,0.546536,0][-0.586673,-1.19582,1.40236][-0.378224,0.152222,0.913113][0.649638,0.548062,0][-0.586673,-1.19582,1.40236][-0.378224,0.152222,0.913113][0.649638,0.548062,0][-0.617748,-1.61625,1.47739][-0.348901,0.410806,0.842322][0.647447,0.518513,0][-0.00195201,-1.61625,1.59988][1.87085e-007,0.410806,0.911723][0.690864,0.516906,0][-0.00195195,-1.19582,1.51867][0,0.152222,0.988346][0.690864,0.546536,0][-0.00195187,-0.668635,1.45865][1.7443e-007,0.205947,0.978563][0.691408,0.583141,0][-0.563703,-0.668635,1.34691][-0.37448,0.205947,0.904074][0.651802,0.584608,0][-0.563703,-0.668635,1.34691][-0.37448,0.205947,0.904074][0.651802,0.584608,0][-0.586673,-1.19582,1.40236][-0.378224,0.152222,0.913113][0.649638,0.548062,0][-0.00195195,-1.19582,1.51867][0,0.152222,0.988346][0.690864,0.546536,0][-0.00195187,-0.668635,1.45865][1.7443e-007,0.205947,0.978563][0.691408,0.583141,0][-0.0019518,-0.314304,1.34655][1.37376e-007,0.305417,0.952219][0.69084,0.608686,0][-0.520805,-0.314304,1.24335][-0.364398,0.305417,0.879736][0.654258,0.610041,0][-0.520805,-0.314304,1.24335][-0.364398,0.305417,0.879736][0.654258,0.610041,0][-0.563703,-0.668635,1.34691][-0.37448,0.205947,0.904074][0.651802,0.584608,0][-0.00195187,-0.668635,1.45865][1.7443e-007,0.205947,0.978563][0.691408,0.583141,0][-0.0019518,-0.314304,1.34655][1.37376e-007,0.305417,0.952219][0.69084,0.608686,0][-0.00195176,0.0400265,1.23122][0,0.511149,0.859492][0.690229,0.634274,0][-0.476671,0.0400265,1.1368][-0.328913,0.511149,0.794067][0.656759,0.635513,0][-0.476671,0.0400265,1.1368][-0.328913,0.511149,0.794067][0.656759,0.635513,0][-0.520805,-0.314304,1.24335][-0.364398,0.305417,0.879736][0.654258,0.610041,0][-0.0019518,-0.314304,1.34655][1.37376e-007,0.305417,0.952219][0.69084,0.608686,0][-0.00195176,0.0400265,1.23122][0,0.511149,0.859492][0.668065,0.432703,0][-0.00195174,0.341322,0.928451][0,0.809578,0.587013][0.684335,0.411384,0][-0.360805,0.341322,0.857071][-0.22464,0.809578,0.542329][0.706891,0.422758,0][-0.360805,0.341322,0.857071][-0.22464,0.809578,0.542329][0.706891,0.422758,0][-0.476671,0.0400265,1.1368][-0.328913,0.511149,0.794067][0.697904,0.447751,0][-0.00195176,0.0400265,1.23122][0,0.511149,0.859492][0.668065,0.432703,0][-0.00195174,0.341322,0.928451][0,0.809578,0.587013][0.684335,0.411384,0][-0.00195169,0.659853,0.24698][2.11516e-007,0.905923,0.423443][0.71579,0.370164,0][-0.100017,0.659853,0.227474][-0.162044,0.905923,0.391211][0.721955,0.373272,0][-0.100017,0.659853,0.227474][-0.162044,0.905923,0.391211][0.721955,0.373272,0][-0.360805,0.341322,0.857071][-0.22464,0.809578,0.542329][0.706891,0.422758,0][-0.00195174,0.341322,0.928451][0,0.809578,0.587013][0.684335,0.411384,0][-0.306977,0.341322,0.727119][0.224113,-0.810574,-0.541057][0.230456,0.889981,0][-0.00195171,0.61885,-0.0092777][-1.34419e-007,-1,0][0.277791,0.855777,0][-0.00195175,0.341322,0.787792][-1.774e-007,-0.810574,-0.585636][0.246019,0.904775,0][-0.00195175,0.341322,0.787792][-1.774e-007,-0.810574,-0.585636][0.246019,0.904775,0][-0.00195176,0.0400264,1.04515][-1.82922e-007,-0.458393,-0.88875][0.233035,0.924799,0][-0.405463,0.0400265,0.964886][0.34011,-0.458393,-0.821098][0.212446,0.905228,0][-0.405463,0.0400265,0.964886][0.34011,-0.458393,-0.821098][0.212446,0.905228,0][-0.306977,0.341322,0.727119][0.224113,-0.810574,-0.541057][0.230456,0.889981,0][-0.00195175,0.341322,0.787792][-1.774e-007,-0.810574,-0.585636][0.246019,0.904775,0][-0.00195176,0.0400264,1.04515][-1.82922e-007,-0.458393,-0.88875][0.876255,0.3008,0][-0.00195181,-0.314304,1.14318][0,-0.26305,-0.964782][0.876255,0.32152,0][-0.442977,-0.314304,1.05545][0.369206,-0.26305,-0.891343][0.845738,0.323596,0][-0.442977,-0.314304,1.05545][0.369206,-0.26305,-0.891343][0.845738,0.323596,0][-0.405463,0.0400265,0.964886][0.34011,-0.458393,-0.821098][0.848333,0.302699,0][-0.00195176,0.0400264,1.04515][-1.82922e-007,-0.458393,-0.88875][0.876255,0.3008,0][-0.00195181,-0.314304,1.14318][0,-0.26305,-0.964782][0.876255,0.32152,0][-0.00195188,-0.668635,1.23846][0,-0.176835,-0.98424][0.876255,0.342305,0][-0.47944,-0.668635,1.14348][0.376653,-0.176836,-0.90932][0.843214,0.344553,0][-0.47944,-0.668635,1.14348][0.376653,-0.176836,-0.90932][0.843214,0.344553,0][-0.442977,-0.314304,1.05545][0.369206,-0.26305,-0.891343][0.845738,0.323596,0][-0.00195181,-0.314304,1.14318][0,-0.26305,-0.964782][0.876255,0.32152,0][-0.00195188,-0.668635,1.23846][0,-0.176835,-0.98424][0.876255,0.342305,0][-0.00195196,-1.19582,1.28948][0,-0.129768,-0.991544][0.876255,0.375377,0][-0.498965,-1.19582,1.19062][0.379448,-0.129768,-0.916068][0.841863,0.377717,0][-0.498965,-1.19582,1.19062][0.379448,-0.129768,-0.916068][0.841863,0.377717,0][-0.47944,-0.668635,1.14348][0.376653,-0.176836,-0.90932][0.843214,0.344553,0][-0.00195188,-0.668635,1.23846][0,-0.176835,-0.98424][0.876255,0.342305,0][-0.00195196,-1.19582,1.28948][0,-0.129768,-0.991544][0.876255,0.375377,0][-0.00195202,-1.61625,1.3585][-2.24372e-007,-0.360844,-0.932626][0.876255,0.401082,0][-0.525379,-1.61625,1.25439][0.356901,-0.360844,-0.861634][0.840036,0.403546,0][-0.525379,-1.61625,1.25439][0.356901,-0.360844,-0.861634][0.840036,0.403546,0][-0.498965,-1.19582,1.19062][0.379448,-0.129768,-0.916068][0.841863,0.377717,0][-0.00195196,-1.19582,1.28948][0,-0.129768,-0.991544][0.876255,0.375377,0][-0.00195202,-1.61625,1.3585][-2.24372e-007,-0.360844,-0.932626][0.501594,0.133685,0][-0.00195206,-2.00582,1.60157][-1.56785e-007,-0.726347,-0.687328][0.501594,0.15871,0][-0.618396,-2.00582,1.47895][0.263029,-0.726347,-0.635008][0.458937,0.150737,0][-0.618396,-2.00582,1.47895][0.263029,-0.726347,-0.635008][0.458937,0.150737,0][-0.525379,-1.61625,1.25439][0.356901,-0.360844,-0.861634][0.465374,0.126915,0][-0.00195202,-1.61625,1.3585][-2.24372e-007,-0.360844,-0.932626][0.501594,0.133685,0][-0.00195206,-2.00582,1.60157][-1.56785e-007,-0.726347,-0.687328][0.501594,0.15871,0][-0.00195209,-2.22919,1.97001][0,-0.469484,-0.882941][0.501594,0.187955,0][-0.759394,-2.22919,1.81935][0.337887,-0.469485,-0.815731][0.449181,0.178158,0][-0.759394,-2.22919,1.81935][0.337887,-0.469485,-0.815731][0.449181,0.178158,0][-0.618396,-2.00582,1.47895][0.263029,-0.726347,-0.635008][0.458937,0.150737,0][-0.00195206,-2.00582,1.60157][-1.56785e-007,-0.726347,-0.687328][0.501594,0.15871,0][-0.00195209,-2.22919,1.97001][0,-0.469484,-0.882941][0.767598,0.238483,0][-0.00195212,-2.44029,1.97153][0.306165,-0.0110738,-1.5392][0.767598,0.252174,0][-0.759975,-2.44029,1.82075][0.306166,-0.0110757,-1.5392][0.715144,0.255742,0][-0.759975,-2.44029,1.82075][0.306166,-0.0110757,-1.5392][0.715144,0.255742,0][-0.759394,-2.22919,1.81935][0.337887,-0.469485,-0.815731][0.715185,0.242049,0][-0.00195209,-2.22919,1.97001][0,-0.469484,-0.882941][0.767598,0.238483,0][-0.00195212,-2.44029,1.97153][0.306165,-0.0110738,-1.5392][0.171256,0.245949,0][-0.00195211,-2.44029,2.32109][-0.306115,0.0130239,1.53894][0.171256,0.268679,0][-0.893744,-2.44029,2.1437][-0.306115,0.0130244,1.53894][0.109546,0.257144,0][-0.893744,-2.44029,2.1437][-0.306115,0.0130244,1.53894][0.109546,0.257144,0][-0.759975,-2.44029,1.82075][0.306166,-0.0110757,-1.5392][0.118802,0.236145,0][-0.00195212,-2.44029,1.97153][0.306165,-0.0110738,-1.5392][0.171256,0.245949,0][-0.893744,-2.44029,2.1437][-0.306115,0.0130244,1.53894][0.813989,0.77983,0][-0.89306,-2.22919,2.14205][-0.331998,0.497344,0.801515][0.814036,0.793517,0][-1.64851,-2.22919,1.63728][-0.613453,0.497344,0.613453][0.761761,0.781571,0][-1.64851,-2.22919,1.63728][-0.613453,0.497344,0.613453][0.761761,0.781571,0][-1.64977,-2.44029,1.63854][-0.87174,0.0130251,1.30465][0.761674,0.767874,0][-0.893744,-2.44029,2.1437][-0.306115,0.0130244,1.53894][0.813989,0.77983,0][-0.89306,-2.22919,2.14205][-0.331998,0.497344,0.801515][0.109469,0.312325,0][-0.72718,-2.00582,1.74158][-0.24194,0.774789,0.584095][0.120948,0.343652,0][-1.342,-2.00582,1.33077][-0.447047,0.774789,0.447047][0.078404,0.370365,0][-1.342,-2.00582,1.33077][-0.447047,0.774789,0.447047][0.078404,0.370365,0][-1.64851,-2.22919,1.63728][-0.613453,0.497344,0.613453][0.0571945,0.345148,0][-0.89306,-2.22919,2.14205][-0.331998,0.497344,0.801515][0.109469,0.312325,0][-0.72718,-2.00582,1.74158][-0.24194,0.774789,0.584095][0.120948,0.343652,0][-0.617748,-1.61625,1.47739][-0.348901,0.410806,0.842322][0.12852,0.370051,0][-1.1398,-1.61625,1.12857][-0.644685,0.410806,0.644685][0.0923959,0.392733,0][-1.1398,-1.61625,1.12857][-0.644685,0.410806,0.644685][0.0923959,0.392733,0][-1.342,-2.00582,1.33077][-0.447047,0.774789,0.447047][0.078404,0.370365,0][-0.72718,-2.00582,1.74158][-0.24194,0.774789,0.584095][0.120948,0.343652,0][-0.617748,-1.61625,1.47739][-0.348901,0.410806,0.842322][0.647447,0.518513,0][-0.586673,-1.19582,1.40236][-0.378224,0.152222,0.913113][0.649638,0.548062,0][-1.08238,-1.19582,1.07115][-0.698866,0.152222,0.698866][0.611659,0.552409,0][-1.08238,-1.19582,1.07115][-0.698866,0.152222,0.698866][0.611659,0.552409,0][-1.1398,-1.61625,1.12857][-0.644685,0.410806,0.644685][0.60745,0.52309,0][-0.617748,-1.61625,1.47739][-0.348901,0.410806,0.842322][0.647447,0.518513,0][-0.586673,-1.19582,1.40236][-0.378224,0.152222,0.913113][0.649638,0.548062,0][-0.563703,-0.668635,1.34691][-0.37448,0.205947,0.904074][0.651802,0.584608,0][-1.03993,-0.668635,1.0287][-0.691949,0.205947,0.691949][0.615315,0.588783,0][-1.03993,-0.668635,1.0287][-0.691949,0.205947,0.691949][0.615315,0.588783,0][-1.08238,-1.19582,1.07115][-0.698866,0.152222,0.698866][0.611659,0.552409,0][-0.586673,-1.19582,1.40236][-0.378224,0.152222,0.913113][0.649638,0.548062,0][-0.563703,-0.668635,1.34691][-0.37448,0.205947,0.904074][0.651802,0.584608,0][-0.520805,-0.314304,1.24335][-0.364398,0.305417,0.879736][0.654258,0.610041,0][-0.960668,-0.314304,0.949439][-0.67332,0.305417,0.67332][0.620557,0.613897,0][-0.960668,-0.314304,0.949439][-0.67332,0.305417,0.67332][0.620557,0.613897,0][-1.03993,-0.668635,1.0287][-0.691949,0.205947,0.691949][0.615315,0.588783,0][-0.563703,-0.668635,1.34691][-0.37448,0.205947,0.904074][0.651802,0.584608,0][-0.520805,-0.314304,1.24335][-0.364398,0.305417,0.879736][0.654258,0.610041,0][-0.476671,0.0400265,1.1368][-0.328913,0.511149,0.794067][0.656759,0.635513,0][-0.879119,0.0400265,0.86789][-0.607753,0.511149,0.607753][0.625925,0.639041,0][-0.879119,0.0400265,0.86789][-0.607753,0.511149,0.607753][0.625925,0.639041,0][-0.960668,-0.314304,0.949439][-0.67332,0.305417,0.67332][0.620557,0.613897,0][-0.520805,-0.314304,1.24335][-0.364398,0.305417,0.879736][0.654258,0.610041,0][-0.476671,0.0400265,1.1368][-0.328913,0.511149,0.794067][0.697904,0.447751,0][-0.360805,0.341322,0.857071][-0.22464,0.809578,0.542329][0.706891,0.422758,0][-0.665026,0.341322,0.653797][-0.415081,0.809578,0.415081][0.731645,0.425022,0][-0.665026,0.341322,0.653797][-0.415081,0.809578,0.415081][0.731645,0.425022,0][-0.879119,0.0400265,0.86789][-0.607753,0.511149,0.607753][0.73065,0.450745,0][-0.476671,0.0400265,1.1368][-0.328913,0.511149,0.794067][0.697904,0.447751,0][-0.360805,0.341322,0.857071][-0.22464,0.809578,0.542329][0.706891,0.422758,0][-0.100017,0.659853,0.227474][-0.162044,0.905923,0.391211][0.721955,0.373272,0][-0.183153,0.659853,0.171924][-0.299419,0.905923,0.29942][0.728719,0.373891,0][-0.183153,0.659853,0.171924][-0.299419,0.905923,0.29942][0.728719,0.373891,0][-0.665026,0.341322,0.653797][-0.415081,0.809578,0.415081][0.731645,0.425022,0][-0.360805,0.341322,0.857071][-0.22464,0.809578,0.542329][0.706891,0.422758,0][-0.565565,0.341322,0.554336][0.414107,-0.810574,-0.414107][0.221555,0.870819,0][-0.00195171,0.61885,-0.0092777][-1.34419e-007,-1,0][0.277791,0.855777,0][-0.306977,0.341322,0.727119][0.224113,-0.810574,-0.541057][0.230456,0.889981,0][-0.306977,0.341322,0.727119][0.224113,-0.810574,-0.541057][0.230456,0.889981,0][-0.405463,0.0400265,0.964886][0.34011,-0.458393,-0.821098][0.212446,0.905228,0][-0.747544,0.0400265,0.736315][0.628441,-0.458393,-0.628441][0.200671,0.879879,0][-0.747544,0.0400265,0.736315][0.628441,-0.458393,-0.628441][0.200671,0.879879,0][-0.565565,0.341322,0.554336][0.414107,-0.810574,-0.414107][0.221555,0.870819,0][-0.306977,0.341322,0.727119][0.224113,-0.810574,-0.541057][0.230456,0.889981,0][-0.405463,0.0400265,0.964886][0.34011,-0.458393,-0.821098][0.834531,0.0688483,0][-0.442977,-0.314304,1.05545][0.369206,-0.26305,-0.891343][0.833717,0.0434214,0][-0.816861,-0.314304,0.805631][0.682204,-0.26305,-0.682204][0.864827,0.0440458,0][-0.816861,-0.314304,0.805631][0.682204,-0.26305,-0.682204][0.864827,0.0440458,0][-0.747544,0.0400265,0.736315][0.628441,-0.458393,-0.628441][0.862994,0.0694195,0][-0.405463,0.0400265,0.964886][0.34011,-0.458393,-0.821098][0.834531,0.0688483,0][-0.442977,-0.314304,1.05545][0.369206,-0.26305,-0.891343][0.833717,0.0434214,0][-0.47944,-0.668635,1.14348][0.376653,-0.176836,-0.90932][0.83294,0.0180441,0][-0.884236,-0.668635,0.873006][0.695963,-0.176835,-0.695963][0.866622,0.0187201,0][-0.884236,-0.668635,0.873006][0.695963,-0.176835,-0.695963][0.866622,0.0187201,0][-0.816861,-0.314304,0.805631][0.682204,-0.26305,-0.682204][0.864827,0.0440458,0][-0.442977,-0.314304,1.05545][0.369206,-0.26305,-0.891343][0.833717,0.0434214,0][-0.47944,-0.668635,1.14348][0.376653,-0.176836,-0.90932][0.843214,0.344553,0][-0.498965,-1.19582,1.19062][0.379448,-0.129768,-0.916068][0.841863,0.377717,0][-0.920312,-1.19582,0.909082][0.701128,-0.129768,-0.701128][0.812707,0.38438,0][-0.920312,-1.19582,0.909082][0.701128,-0.129768,-0.701128][0.812707,0.38438,0][-0.884236,-0.668635,0.873006][0.695963,-0.176835,-0.695963][0.815204,0.350954,0][-0.47944,-0.668635,1.14348][0.376653,-0.176836,-0.90932][0.843214,0.344553,0][-0.498965,-1.19582,1.19062][0.379448,-0.129768,-0.916068][0.841863,0.377717,0][-0.525379,-1.61625,1.25439][0.356901,-0.360844,-0.861634][0.840036,0.403546,0][-0.969119,-1.61625,0.957889][0.659466,-0.360844,-0.659466][0.80933,0.410563,0][-0.969119,-1.61625,0.957889][0.659466,-0.360844,-0.659466][0.80933,0.410563,0][-0.920312,-1.19582,0.909082][0.701128,-0.129768,-0.701128][0.812707,0.38438,0][-0.498965,-1.19582,1.19062][0.379448,-0.129768,-0.916068][0.841863,0.377717,0][-0.525379,-1.61625,1.25439][0.356901,-0.360844,-0.861634][0.465374,0.126915,0][-0.618396,-2.00582,1.47895][0.263029,-0.726347,-0.635008][0.458937,0.150737,0][-1.14099,-2.00582,1.12976][0.486014,-0.726348,-0.486014][0.422775,0.128031,0][-1.14099,-2.00582,1.12976][0.486014,-0.726348,-0.486014][0.422775,0.128031,0][-0.969119,-1.61625,0.957889][0.659466,-0.360844,-0.659466][0.434668,0.107635,0][-0.525379,-1.61625,1.25439][0.356901,-0.360844,-0.861634][0.465374,0.126915,0][-0.618396,-2.00582,1.47895][0.263029,-0.726347,-0.635008][0.458937,0.150737,0][-0.759394,-2.22919,1.81935][0.337887,-0.469485,-0.815731][0.449181,0.178158,0][-1.40152,-2.22919,1.39029][0.624333,-0.469484,-0.624334][0.404747,0.150259,0][-1.40152,-2.22919,1.39029][0.624333,-0.469484,-0.624334][0.404747,0.150259,0][-1.14099,-2.00582,1.12976][0.486014,-0.726348,-0.486014][0.422775,0.128031,0][-0.618396,-2.00582,1.47895][0.263029,-0.726347,-0.635008][0.458937,0.150737,0][-0.759394,-2.22919,1.81935][0.337887,-0.469485,-0.815731][0.715185,0.242049,0][-0.759975,-2.44029,1.82075][0.306166,-0.0110757,-1.5392][0.715144,0.255742,0][-1.4026,-2.44029,1.39137][0.871886,-0.0110722,-1.30487][0.670676,0.265904,0][-1.4026,-2.44029,1.39137][0.871886,-0.0110722,-1.30487][0.670676,0.265904,0][-1.40152,-2.22919,1.39029][0.624333,-0.469484,-0.624334][0.670751,0.252203,0][-0.759394,-2.22919,1.81935][0.337887,-0.469485,-0.815731][0.715185,0.242049,0][-0.759975,-2.44029,1.82075][0.306166,-0.0110757,-1.5392][0.118802,0.236145,0][-0.893744,-2.44029,2.1437][-0.306115,0.0130244,1.53894][0.109546,0.257144,0][-1.64977,-2.44029,1.63854][-0.87174,0.0130251,1.30465][0.0572307,0.224297,0][-1.64977,-2.44029,1.63854][-0.87174,0.0130251,1.30465][0.0572307,0.224297,0][-1.4026,-2.44029,1.39137][0.871886,-0.0110722,-1.30487][0.0743344,0.208224,0][-0.759975,-2.44029,1.82075][0.306166,-0.0110757,-1.5392][0.118802,0.236145,0][-1.64977,-2.44029,1.63854][-0.87174,0.0130251,1.30465][0.762081,0.852142,0][-1.64851,-2.22919,1.63728][-0.613453,0.497344,0.613453][0.761674,0.83754,0][-2.15328,-2.22919,0.881831][-0.801515,0.497344,0.331998][0.813919,0.835772,0][-2.15328,-2.22919,0.881831][-0.801515,0.497344,0.331998][0.813919,0.835772,0][-2.15493,-2.44029,0.882514][-1.30465,0.0130239,0.87174][0.814366,0.850373,0][-1.64977,-2.44029,1.63854][-0.87174,0.0130251,1.30465][0.762081,0.852142,0][-1.64851,-2.22919,1.63728][-0.613453,0.497344,0.613453][0.0571945,0.345148,0][-1.342,-2.00582,1.33077][-0.447047,0.774789,0.447047][0.078404,0.370365,0][-1.75281,-2.00582,0.71595][-0.584095,0.774789,0.24194][0.0499771,0.410343,0][-1.75281,-2.00582,0.71595][-0.584095,0.774789,0.24194][0.0499771,0.410343,0][-2.15328,-2.22919,0.881831][-0.801515,0.497344,0.331998][0.0222654,0.39427,0][-1.64851,-2.22919,1.63728][-0.613453,0.497344,0.613453][0.0571945,0.345148,0][-1.342,-2.00582,1.33077][-0.447047,0.774789,0.447047][0.565651,0.269011,0][-1.1398,-1.61625,1.12857][-0.644685,0.410806,0.644685][0.532755,0.275021,0][-1.48862,-1.61625,0.606519][-0.842322,0.410806,0.348901][0.520066,0.233469,0][-1.48862,-1.61625,0.606519][-0.842322,0.410806,0.348901][0.520066,0.233469,0][-1.75281,-2.00582,0.71595][-0.584095,0.774789,0.24194][0.550707,0.220075,0][-1.342,-2.00582,1.33077][-0.447047,0.774789,0.447047][0.565651,0.269011,0][-1.1398,-1.61625,1.12857][-0.644685,0.410806,0.644685][0.01,0.92858,0][-1.08238,-1.19582,1.07115][-0.698866,0.152222,0.698866][0.0129871,0.899369,0][-1.41359,-1.19582,0.575443][-0.913113,0.152222,0.378224][0.0472688,0.898209,0][-1.41359,-1.19582,0.575443][-0.913113,0.152222,0.378224][0.0472688,0.898209,0][-1.48862,-1.61625,0.606519][-0.842322,0.410806,0.348901][0.0461037,0.927358,0][-1.1398,-1.61625,1.12857][-0.644685,0.410806,0.644685][0.01,0.92858,0][-1.08238,-1.19582,1.07115][-0.698866,0.152222,0.698866][0.0129871,0.899369,0][-1.03993,-0.668635,1.0287][-0.691949,0.205947,0.691949][0.0146884,0.862811,0][-1.35814,-0.668635,0.552473][-0.904074,0.205947,0.37448][0.0476235,0.861696,0][-1.35814,-0.668635,0.552473][-0.904074,0.205947,0.37448][0.0476235,0.861696,0][-1.41359,-1.19582,0.575443][-0.913113,0.152222,0.378224][0.0472688,0.898209,0][-1.08238,-1.19582,1.07115][-0.698866,0.152222,0.698866][0.0129871,0.899369,0][-1.03993,-0.668635,1.0287][-0.691949,0.205947,0.691949][0.0146884,0.862811,0][-0.960668,-0.314304,0.949439][-0.67332,0.305417,0.67332][0.0193409,0.838121,0][-1.25458,-0.314304,0.509576][-0.879736,0.305416,0.364398][0.0497609,0.837091,0][-1.25458,-0.314304,0.509576][-0.879736,0.305416,0.364398][0.0497609,0.837091,0][-1.35814,-0.668635,0.552473][-0.904074,0.205947,0.37448][0.0476235,0.861696,0][-1.03993,-0.668635,1.0287][-0.691949,0.205947,0.691949][0.0146884,0.862811,0][-0.960668,-0.314304,0.949439][-0.67332,0.305417,0.67332][0.0193409,0.838121,0][-0.879119,0.0400265,0.86789][-0.607753,0.511149,0.607753][0.0241513,0.813425,0][-1.14803,0.0400266,0.465442][-0.794067,0.511149,0.328913][0.0519838,0.812483,0][-1.14803,0.0400266,0.465442][-0.794067,0.511149,0.328913][0.0519838,0.812483,0][-1.25458,-0.314304,0.509576][-0.879736,0.305416,0.364398][0.0497609,0.837091,0][-0.960668,-0.314304,0.949439][-0.67332,0.305417,0.67332][0.0193409,0.838121,0][-0.879119,0.0400265,0.86789][-0.607753,0.511149,0.607753][0.73065,0.450745,0][-0.665026,0.341322,0.653797][-0.415081,0.809578,0.415081][0.731645,0.425022,0][-0.8683,0.341322,0.349576][-0.542329,0.809578,0.22464][0.754827,0.417829,0][-0.8683,0.341322,0.349576][-0.542329,0.809578,0.22464][0.754827,0.417829,0][-1.14803,0.0400266,0.465442][-0.794067,0.511149,0.328913][0.761319,0.44123,0][-0.879119,0.0400265,0.86789][-0.607753,0.511149,0.607753][0.73065,0.450745,0][-0.665026,0.341322,0.653797][-0.415081,0.809578,0.415081][0.731645,0.425022,0][-0.183153,0.659853,0.171924][-0.299419,0.905923,0.29942][0.728719,0.373891,0][-0.238703,0.659853,0.088788][-0.391211,0.905923,0.162045][0.735054,0.371925,0][-0.238703,0.659853,0.088788][-0.391211,0.905923,0.162045][0.735054,0.371925,0][-0.8683,0.341322,0.349576][-0.542329,0.809578,0.22464][0.754827,0.417829,0][-0.665026,0.341322,0.653797][-0.415081,0.809578,0.415081][0.731645,0.425022,0][-0.738348,0.341322,0.295748][0.541057,-0.810574,-0.224113][0.220671,0.850206,0][-0.00195171,0.61885,-0.0092777][-1.34419e-007,-1,0][0.277791,0.855777,0][-0.565565,0.341322,0.554336][0.414107,-0.810574,-0.414107][0.221555,0.870819,0][-0.565565,0.341322,0.554336][0.414107,-0.810574,-0.414107][0.221555,0.870819,0][-0.747544,0.0400265,0.736315][0.628441,-0.458393,-0.628441][0.200671,0.879879,0][-0.976115,0.0400266,0.394234][0.821097,-0.458393,-0.34011][0.199502,0.852611,0][-0.976115,0.0400266,0.394234][0.821097,-0.458393,-0.34011][0.199502,0.852611,0][-0.738348,0.341322,0.295748][0.541057,-0.810574,-0.224113][0.220671,0.850206,0][-0.565565,0.341322,0.554336][0.414107,-0.810574,-0.414107][0.221555,0.870819,0][-0.747544,0.0400265,0.736315][0.628441,-0.458393,-0.628441][0.529395,0.537647,0][-0.816861,-0.314304,0.805631][0.682204,-0.26305,-0.682204][0.534278,0.562148,0][-1.06668,-0.314304,0.431748][0.891343,-0.26305,-0.369206][0.508406,0.56224,0][-1.06668,-0.314304,0.431748][0.891343,-0.26305,-0.369206][0.508406,0.56224,0][-0.976115,0.0400266,0.394234][0.821097,-0.458393,-0.34011][0.505724,0.53773,0][-0.747544,0.0400265,0.736315][0.628441,-0.458393,-0.628441][0.529395,0.537647,0][-0.816861,-0.314304,0.805631][0.682204,-0.26305,-0.682204][0.534278,0.562148,0][-0.884236,-0.668635,0.873006][0.695963,-0.176835,-0.695963][0.539027,0.586651,0][-1.15471,-0.668635,0.468211][0.90932,-0.176835,-0.376652][0.511016,0.58675,0][-1.15471,-0.668635,0.468211][0.90932,-0.176835,-0.376652][0.511016,0.58675,0][-1.06668,-0.314304,0.431748][0.891343,-0.26305,-0.369206][0.508406,0.56224,0][-0.816861,-0.314304,0.805631][0.682204,-0.26305,-0.682204][0.534278,0.562148,0][-0.884236,-0.668635,0.873006][0.695963,-0.176835,-0.695963][0.539027,0.586651,0][-0.920312,-1.19582,0.909082][0.701128,-0.129768,-0.701128][0.541652,0.623121,0][-1.20185,-1.19582,0.487735][0.916068,-0.129768,-0.379448][0.512496,0.623224,0][-1.20185,-1.19582,0.487735][0.916068,-0.129768,-0.379448][0.512496,0.623224,0][-1.15471,-0.668635,0.468211][0.90932,-0.176835,-0.376652][0.511016,0.58675,0][-0.884236,-0.668635,0.873006][0.695963,-0.176835,-0.695963][0.539027,0.586651,0][-0.920312,-1.19582,0.909082][0.701128,-0.129768,-0.701128][0.541652,0.623121,0][-0.969119,-1.61625,0.957889][0.659466,-0.360844,-0.659466][0.545132,0.652202,0][-1.26562,-1.61625,0.514149][0.861634,-0.360844,-0.356901][0.514427,0.65231,0][-1.26562,-1.61625,0.514149][0.861634,-0.360844,-0.356901][0.514427,0.65231,0][-1.20185,-1.19582,0.487735][0.916068,-0.129768,-0.379448][0.512496,0.623224,0][-0.920312,-1.19582,0.909082][0.701128,-0.129768,-0.701128][0.541652,0.623121,0][-0.969119,-1.61625,0.957889][0.659466,-0.360844,-0.659466][0.545132,0.652202,0][-1.14099,-2.00582,1.12976][0.486014,-0.726348,-0.486014][0.557121,0.679117,0][-1.49018,-2.00582,0.607166][0.635008,-0.726348,-0.263029][0.520958,0.679245,0][-1.49018,-2.00582,0.607166][0.635008,-0.726348,-0.263029][0.520958,0.679245,0][-1.26562,-1.61625,0.514149][0.861634,-0.360844,-0.356901][0.514427,0.65231,0][-0.969119,-1.61625,0.957889][0.659466,-0.360844,-0.659466][0.545132,0.652202,0][-1.14099,-2.00582,1.12976][0.486014,-0.726348,-0.486014][0.422775,0.128031,0][-1.40152,-2.22919,1.39029][0.624333,-0.469484,-0.624334][0.404747,0.150259,0][-1.83058,-2.22919,0.748164][0.815731,-0.469484,-0.337887][0.375057,0.108504,0][-1.83058,-2.22919,0.748164][0.815731,-0.469484,-0.337887][0.375057,0.108504,0][-1.49018,-2.00582,0.607166][0.635008,-0.726348,-0.263029][0.398612,0.0940496,0][-1.14099,-2.00582,1.12976][0.486014,-0.726348,-0.486014][0.422775,0.128031,0][-1.40152,-2.22919,1.39029][0.624333,-0.469484,-0.624334][0.575203,0.69451,0][-1.4026,-2.44029,1.39137][0.871886,-0.0110722,-1.30487][0.575329,0.709117,0][-1.83198,-2.44029,0.748745][1.30487,-0.0110719,-0.871887][0.530862,0.709274,0][-1.83198,-2.44029,0.748745][1.30487,-0.0110719,-0.871887][0.530862,0.709274,0][-1.83058,-2.22919,0.748164][0.815731,-0.469484,-0.337887][0.53077,0.694667,0][-1.40152,-2.22919,1.39029][0.624333,-0.469484,-0.624334][0.575203,0.69451,0][-1.4026,-2.44029,1.39137][0.871886,-0.0110722,-1.30487][0.0743344,0.208224,0][-1.64977,-2.44029,1.63854][-0.87174,0.0130251,1.30465][0.0572307,0.224297,0][-2.15493,-2.44029,0.882514][-1.30465,0.0130239,0.87174][0.0222748,0.175137,0][-2.15493,-2.44029,0.882514][-1.30465,0.0130239,0.87174][0.0222748,0.175137,0][-1.83198,-2.44029,0.748745][1.30487,-0.0110719,-0.871887][0.044622,0.166438,0][-1.4026,-2.44029,1.39137][0.871886,-0.0110722,-1.30487][0.0743344,0.208224,0][-2.15493,-2.44029,0.882514][-1.30465,0.0130239,0.87174][0.814366,0.850373,0][-2.15328,-2.22919,0.881831][-0.801515,0.497344,0.331998][0.813919,0.835772,0][-2.33053,-2.22919,-0.00927758][-0.867553,0.497344,0][0.875546,0.833687,0][-2.33053,-2.22919,-0.00927758][-0.867553,0.497344,0][0.875546,0.833687,0][-2.33232,-2.44029,-0.00927773][-1.53894,0.0130235,0.306114][0.87604,0.848286,0][-2.15493,-2.44029,0.882514][-1.30465,0.0130239,0.87174][0.814366,0.850373,0][-2.15328,-2.22919,0.881831][-0.801515,0.497344,0.331998][0.0222654,0.39427,0][-1.75281,-2.00582,0.71595][-0.584095,0.774789,0.24194][0.0499771,0.410343,0][-1.89706,-2.00582,-0.00927757][-0.63222,0.774789,0][0.0399948,0.457501,0][-1.89706,-2.00582,-0.00927757][-0.63222,0.774789,0][0.0399948,0.457501,0][-2.33053,-2.22919,-0.00927758][-0.867553,0.497344,0][0.01,0.452214,0][-2.15328,-2.22919,0.881831][-0.801515,0.497344,0.331998][0.0222654,0.39427,0][-1.75281,-2.00582,0.71595][-0.584095,0.774789,0.24194][0.0394475,0.954556,0][-1.48862,-1.61625,0.606519][-0.842322,0.410806,0.348901][0.0461037,0.927358,0][-1.61111,-1.61625,-0.00927758][-0.911723,0.410806,0][0.088691,0.925916,0][-1.61111,-1.61625,-0.00927758][-0.911723,0.410806,0][0.088691,0.925916,0][-1.89706,-2.00582,-0.00927757][-0.63222,0.774789,0][0.0896028,0.952859,0][-1.75281,-2.00582,0.71595][-0.584095,0.774789,0.24194][0.0394475,0.954556,0][-1.48862,-1.61625,0.606519][-0.842322,0.410806,0.348901][0.0461037,0.927358,0][-1.41359,-1.19582,0.575443][-0.913113,0.152222,0.378224][0.0472688,0.898209,0][-1.5299,-1.19582,-0.00927769][-0.988346,0.152222,0][0.087707,0.896841,0][-1.5299,-1.19582,-0.00927769][-0.988346,0.152222,0][0.087707,0.896841,0][-1.61111,-1.61625,-0.00927758][-0.911723,0.410806,0][0.088691,0.925916,0][-1.48862,-1.61625,0.606519][-0.842322,0.410806,0.348901][0.0461037,0.927358,0][-1.41359,-1.19582,0.575443][-0.913113,0.152222,0.378224][0.0472688,0.898209,0][-1.35814,-0.668635,0.552473][-0.904074,0.205947,0.37448][0.0476235,0.861696,0][-1.46988,-0.668635,-0.00927768][-0.978563,0.205947,0][0.0864731,0.860382,0][-1.46988,-0.668635,-0.00927768][-0.978563,0.205947,0][0.0864731,0.860382,0][-1.5299,-1.19582,-0.00927769][-0.988346,0.152222,0][0.087707,0.896841,0][-1.41359,-1.19582,0.575443][-0.913113,0.152222,0.378224][0.0472688,0.898209,0][-1.35814,-0.668635,0.552473][-0.904074,0.205947,0.37448][0.0476235,0.861696,0][-1.25458,-0.314304,0.509576][-0.879736,0.305416,0.364398][0.0497609,0.837091,0][-1.35778,-0.314304,-0.00927767][-0.952219,0.305416,0][0.0856438,0.835877,0][-1.35778,-0.314304,-0.00927767][-0.952219,0.305416,0][0.0856438,0.835877,0][-1.46988,-0.668635,-0.00927768][-0.978563,0.205947,0][0.0864731,0.860382,0][-1.35814,-0.668635,0.552473][-0.904074,0.205947,0.37448][0.0476235,0.861696,0][-1.25458,-0.314304,0.509576][-0.879736,0.305416,0.364398][0.0497609,0.837091,0][-1.14803,0.0400266,0.465442][-0.794067,0.511149,0.328913][0.0519838,0.812483,0][-1.24245,0.0400266,-0.00927768][-0.859492,0.511149,0][0.0848145,0.811372,0][-1.24245,0.0400266,-0.00927768][-0.859492,0.511149,0][0.0848145,0.811372,0][-1.35778,-0.314304,-0.00927767][-0.952219,0.305416,0][0.0856438,0.835877,0][-1.25458,-0.314304,0.509576][-0.879736,0.305416,0.364398][0.0497609,0.837091,0][-1.14803,0.0400266,0.465442][-0.794067,0.511149,0.328913][0.761319,0.44123,0][-0.8683,0.341322,0.349576][-0.542329,0.809578,0.22464][0.754827,0.417829,0][-0.939681,0.341322,-0.00927771][-0.587013,0.809578,0][0.77291,0.402276,0][-0.939681,0.341322,-0.00927771][-0.587013,0.809578,0][0.77291,0.402276,0][-1.24245,0.0400266,-0.00927768][-0.859492,0.511149,0][0.785239,0.420654,0][-1.14803,0.0400266,0.465442][-0.794067,0.511149,0.328913][0.761319,0.44123,0][-0.8683,0.341322,0.349576][-0.542329,0.809578,0.22464][0.754827,0.417829,0][-0.238703,0.659853,0.088788][-0.391211,0.905923,0.162045][0.735054,0.371925,0][-0.25821,0.659853,-0.00927771][-0.423443,0.905923,-2.21602e-007][0.739996,0.367675,0][-0.25821,0.659853,-0.00927771][-0.423443,0.905923,-2.21602e-007][0.739996,0.367675,0][-0.939681,0.341322,-0.00927771][-0.587013,0.809578,0][0.77291,0.402276,0][-0.8683,0.341322,0.349576][-0.542329,0.809578,0.22464][0.754827,0.417829,0][-0.799021,0.341322,-0.0092777][0.585636,-0.810574,0][0.227939,0.83128,0][-0.00195171,0.61885,-0.0092777][-1.34419e-007,-1,0][0.277791,0.855777,0][-0.738348,0.341322,0.295748][0.541057,-0.810574,-0.224113][0.220671,0.850206,0][-0.738348,0.341322,0.295748][0.541057,-0.810574,-0.224113][0.498835,0.516906,0][-0.976115,0.0400266,0.394234][0.821097,-0.458393,-0.34011][0.505724,0.53773,0][-1.05638,0.0400265,-0.00927771][0.88875,-0.458393,0][0.477802,0.537829,0][-1.05638,0.0400265,-0.00927771][0.88875,-0.458393,0][0.477802,0.537829,0][-0.799021,0.341322,-0.0092777][0.585636,-0.810574,0][0.477728,0.51698,0][-0.738348,0.341322,0.295748][0.541057,-0.810574,-0.224113][0.498835,0.516906,0][-0.976115,0.0400266,0.394234][0.821097,-0.458393,-0.34011][0.505724,0.53773,0][-1.06668,-0.314304,0.431748][0.891343,-0.26305,-0.369206][0.508406,0.56224,0][-1.15441,-0.314304,-0.00927767][0.964782,-0.26305,-1.35414e-007][0.477888,0.562348,0][-1.15441,-0.314304,-0.00927767][0.964782,-0.26305,-1.35414e-007][0.477888,0.562348,0][-1.05638,0.0400265,-0.00927771][0.88875,-0.458393,0][0.477802,0.537829,0][-0.976115,0.0400266,0.394234][0.821097,-0.458393,-0.34011][0.505724,0.53773,0][-1.06668,-0.314304,0.431748][0.891343,-0.26305,-0.369206][0.508406,0.56224,0][-1.15471,-0.668635,0.468211][0.90932,-0.176835,-0.376652][0.511016,0.58675,0][-1.24969,-0.668635,-0.00927768][0.98424,-0.176835,0][0.477975,0.586866,0][-1.24969,-0.668635,-0.00927768][0.98424,-0.176835,0][0.477975,0.586866,0][-1.15441,-0.314304,-0.00927767][0.964782,-0.26305,-1.35414e-007][0.477888,0.562348,0][-1.06668,-0.314304,0.431748][0.891343,-0.26305,-0.369206][0.508406,0.56224,0][-1.15471,-0.668635,0.468211][0.90932,-0.176835,-0.376652][0.511016,0.58675,0][-1.20185,-1.19582,0.487735][0.916068,-0.129768,-0.379448][0.512496,0.623224,0][-1.30071,-1.19582,-0.00927769][0.991544,-0.129768,0][0.478104,0.623346,0][-1.30071,-1.19582,-0.00927769][0.991544,-0.129768,0][0.478104,0.623346,0][-1.24969,-0.668635,-0.00927768][0.98424,-0.176835,0][0.477975,0.586866,0][-1.15471,-0.668635,0.468211][0.90932,-0.176835,-0.376652][0.511016,0.58675,0][-1.20185,-1.19582,0.487735][0.916068,-0.129768,-0.379448][0.512496,0.623224,0][-1.26562,-1.61625,0.514149][0.861634,-0.360844,-0.356901][0.514427,0.65231,0][-1.36973,-1.61625,-0.00927766][0.932626,-0.360844,0][0.478207,0.652438,0][-1.36973,-1.61625,-0.00927766][0.932626,-0.360844,0][0.478207,0.652438,0][-1.30071,-1.19582,-0.00927769][0.991544,-0.129768,0][0.478104,0.623346,0][-1.20185,-1.19582,0.487735][0.916068,-0.129768,-0.379448][0.512496,0.623224,0][-1.26562,-1.61625,0.514149][0.861634,-0.360844,-0.356901][0.514427,0.65231,0][-1.49018,-2.00582,0.607166][0.635008,-0.726348,-0.263029][0.520958,0.679245,0][-1.6128,-2.00582,-0.00927756][0.687328,-0.726348,-1.24514e-007][0.478302,0.679396,0][-1.6128,-2.00582,-0.00927756][0.687328,-0.726348,-1.24514e-007][0.478302,0.679396,0][-1.36973,-1.61625,-0.00927766][0.932626,-0.360844,0][0.478207,0.652438,0][-1.26562,-1.61625,0.514149][0.861634,-0.360844,-0.356901][0.514427,0.65231,0][-1.49018,-2.00582,0.607166][0.635008,-0.726348,-0.263029][0.398612,0.0940496,0][-1.83058,-2.22919,0.748164][0.815731,-0.469484,-0.337887][0.375057,0.108504,0][-1.98124,-2.22919,-0.00927757][0.882941,-0.469484,0][0.364632,0.0592523,0][-1.98124,-2.22919,-0.00927757][0.882941,-0.469484,0][0.364632,0.0592523,0][-1.6128,-2.00582,-0.00927756][0.687328,-0.726348,-1.24514e-007][0.390127,0.0539657,0][-1.49018,-2.00582,0.607166][0.635008,-0.726348,-0.263029][0.398612,0.0940496,0][-1.83058,-2.22919,0.748164][0.815731,-0.469484,-0.337887][0.53077,0.694667,0][-1.83198,-2.44029,0.748745][1.30487,-0.0110719,-0.871887][0.530862,0.709274,0][-1.98276,-2.44029,-0.00927761][1.5392,-0.0110726,-0.306166][0.478409,0.70946,0][-1.98276,-2.44029,-0.00927761][1.5392,-0.0110726,-0.306166][0.478409,0.70946,0][-1.98124,-2.22919,-0.00927757][0.882941,-0.469484,0][0.478357,0.694852,0][-1.83058,-2.22919,0.748164][0.815731,-0.469484,-0.337887][0.53077,0.694667,0][-1.83198,-2.44029,0.748745][1.30487,-0.0110719,-0.871887][0.044622,0.166438,0][-2.15493,-2.44029,0.882514][-1.30465,0.0130239,0.87174][0.0222748,0.175137,0][-2.33232,-2.44029,-0.00927773][-1.53894,0.0130235,0.306114][0.01,0.117148,0][-2.33232,-2.44029,-0.00927773][-1.53894,0.0130235,0.306114][0.01,0.117148,0][-1.98276,-2.44029,-0.00927761][1.5392,-0.0110726,-0.306166][0.0341883,0.117148,0][-1.83198,-2.44029,0.748745][1.30487,-0.0110719,-0.871887][0.044622,0.166438,0][-2.33232,-2.44029,-0.00927773][-1.53894,0.0130235,0.306114][0.87604,0.848286,0][-2.33053,-2.22919,-0.00927758][-0.867553,0.497344,0][0.875546,0.833687,0][-2.15328,-2.22919,-0.900386][-0.801515,0.497344,-0.331998][0.937173,0.831601,0][-2.15328,-2.22919,-0.900386][-0.801515,0.497344,-0.331998][0.937173,0.831601,0][-2.15493,-2.44029,-0.901069][-1.53894,0.0130244,-0.306115][0.937715,0.846198,0][-2.33232,-2.44029,-0.00927773][-1.53894,0.0130235,0.306114][0.87604,0.848286,0][-2.33053,-2.22919,-0.00927758][-0.867553,0.497344,0][0.01,0.452214,0][-1.89706,-2.00582,-0.00927757][-0.63222,0.774789,0][0.0399948,0.457501,0][-1.75281,-2.00582,-0.734505][-0.584095,0.774789,-0.24194][0.0499771,0.504658,0][-1.75281,-2.00582,-0.734505][-0.584095,0.774789,-0.24194][0.0499771,0.504658,0][-2.15328,-2.22919,-0.900386][-0.801515,0.497344,-0.331998][0.0222654,0.510158,0][-2.33053,-2.22919,-0.00927758][-0.867553,0.497344,0][0.01,0.452214,0][-1.89706,-2.00582,-0.00927757][-0.63222,0.774789,0][0.0896028,0.952859,0][-1.61111,-1.61625,-0.00927758][-0.911723,0.410806,0][0.088691,0.925916,0][-1.48862,-1.61625,-0.625074][-0.842322,0.410806,-0.348901][0.131278,0.924475,0][-1.48862,-1.61625,-0.625074][-0.842322,0.410806,-0.348901][0.131278,0.924475,0][-1.75281,-2.00582,-0.734505][-0.584095,0.774789,-0.24194][0.139758,0.951161,0][-1.89706,-2.00582,-0.00927757][-0.63222,0.774789,0][0.0896028,0.952859,0][-1.61111,-1.61625,-0.00927758][-0.911723,0.410806,0][0.088691,0.925916,0][-1.5299,-1.19582,-0.00927769][-0.988346,0.152222,0][0.087707,0.896841,0][-1.41359,-1.19582,-0.593998][-0.913113,0.152222,-0.378224][0.128145,0.895472,0][-1.41359,-1.19582,-0.593998][-0.913113,0.152222,-0.378224][0.128145,0.895472,0][-1.48862,-1.61625,-0.625074][-0.842322,0.410806,-0.348901][0.131278,0.924475,0][-1.61111,-1.61625,-0.00927758][-0.911723,0.410806,0][0.088691,0.925916,0][-1.5299,-1.19582,-0.00927769][-0.988346,0.152222,0][0.087707,0.896841,0][-1.46988,-0.668635,-0.00927768][-0.978563,0.205947,0][0.0864731,0.860382,0][-1.35814,-0.668635,-0.571029][-0.904074,0.205947,-0.37448][0.125323,0.859067,0][-1.35814,-0.668635,-0.571029][-0.904074,0.205947,-0.37448][0.125323,0.859067,0][-1.41359,-1.19582,-0.593998][-0.913113,0.152222,-0.378224][0.128145,0.895472,0][-1.5299,-1.19582,-0.00927769][-0.988346,0.152222,0][0.087707,0.896841,0][-1.46988,-0.668635,-0.00927768][-0.978563,0.205947,0][0.0864731,0.860382,0][-1.35778,-0.314304,-0.00927767][-0.952219,0.305416,0][0.0856438,0.835877,0][-1.25458,-0.314304,-0.528131][-0.879736,0.305416,-0.364398][0.121527,0.834662,0][-1.25458,-0.314304,-0.528131][-0.879736,0.305416,-0.364398][0.121527,0.834662,0][-1.35814,-0.668635,-0.571029][-0.904074,0.205947,-0.37448][0.125323,0.859067,0][-1.46988,-0.668635,-0.00927768][-0.978563,0.205947,0][0.0864731,0.860382,0][-1.35778,-0.314304,-0.00927767][-0.952219,0.305416,0][0.0856438,0.835877,0][-1.24245,0.0400266,-0.00927768][-0.859492,0.511149,0][0.0848145,0.811372,0][-1.14803,0.0400266,-0.483997][-0.794067,0.511149,-0.328913][0.117645,0.810261,0][-1.14803,0.0400266,-0.483997][-0.794067,0.511149,-0.328913][0.117645,0.810261,0][-1.25458,-0.314304,-0.528131][-0.879736,0.305416,-0.364398][0.121527,0.834662,0][-1.35778,-0.314304,-0.00927767][-0.952219,0.305416,0][0.0856438,0.835877,0][-1.24245,0.0400266,-0.00927768][-0.859492,0.511149,0][0.402381,0.242257,0][-0.939681,0.341322,-0.00927771][-0.587013,0.809578,0][0.379864,0.261304,0][-0.8683,0.341322,-0.368131][-0.542329,0.809578,-0.22464][0.364632,0.247237,0][-0.8683,0.341322,-0.368131][-0.542329,0.809578,-0.22464][0.364632,0.247237,0][-1.14803,0.0400266,-0.483997][-0.794067,0.511149,-0.328913][0.38223,0.223648,0][-1.24245,0.0400266,-0.00927768][-0.859492,0.511149,0][0.402381,0.242257,0][-0.939681,0.341322,-0.00927771][-0.587013,0.809578,0][0.77291,0.402276,0][-0.25821,0.659853,-0.00927771][-0.423443,0.905923,-2.21602e-007][0.739996,0.367675,0][-0.238703,0.659853,-0.107343][-0.391211,0.905923,-0.162045][0.742791,0.361787,0][-0.238703,0.659853,-0.107343][-0.391211,0.905923,-0.162045][0.742791,0.361787,0][-0.8683,0.341322,-0.368131][-0.542329,0.809578,-0.22464][0.783139,0.380729,0][-0.939681,0.341322,-0.00927771][-0.587013,0.809578,0][0.77291,0.402276,0][-0.738348,0.341322,-0.314303][0.541057,-0.810574,0.224113][0.242253,0.816922,0][-0.00195171,0.61885,-0.0092777][-1.34419e-007,-1,0][0.277791,0.855777,0][-0.799021,0.341322,-0.0092777][0.585636,-0.810574,0][0.227939,0.83128,0][-0.799021,0.341322,-0.0092777][0.585636,-0.810574,0][0.477728,0.51698,0][-1.05638,0.0400265,-0.00927771][0.88875,-0.458393,0][0.477802,0.537829,0][-0.976115,0.0400265,-0.412789][0.821097,-0.458393,0.34011][0.44988,0.537928,0][-0.976115,0.0400265,-0.412789][0.821097,-0.458393,0.34011][0.44988,0.537928,0][-0.738348,0.341322,-0.314303][0.541057,-0.810574,0.224113][0.456621,0.517055,0][-0.799021,0.341322,-0.0092777][0.585636,-0.810574,0][0.477728,0.51698,0][-1.05638,0.0400265,-0.00927771][0.88875,-0.458393,0][0.477802,0.537829,0][-1.15441,-0.314304,-0.00927767][0.964782,-0.26305,-1.35414e-007][0.477888,0.562348,0][-1.06668,-0.314304,-0.450303][0.891343,-0.26305,0.369206][0.447371,0.562456,0][-1.06668,-0.314304,-0.450303][0.891343,-0.26305,0.369206][0.447371,0.562456,0][-0.976115,0.0400265,-0.412789][0.821097,-0.458393,0.34011][0.44988,0.537928,0][-1.05638,0.0400265,-0.00927771][0.88875,-0.458393,0][0.477802,0.537829,0][-1.15441,-0.314304,-0.00927767][0.964782,-0.26305,-1.35414e-007][0.477888,0.562348,0][-1.24969,-0.668635,-0.00927768][0.98424,-0.176835,0][0.477975,0.586866,0][-1.15471,-0.668635,-0.486766][0.90932,-0.176835,0.376653][0.444934,0.586983,0][-1.15471,-0.668635,-0.486766][0.90932,-0.176835,0.376653][0.444934,0.586983,0][-1.06668,-0.314304,-0.450303][0.891343,-0.26305,0.369206][0.447371,0.562456,0][-1.15441,-0.314304,-0.00927767][0.964782,-0.26305,-1.35414e-007][0.477888,0.562348,0][-1.24969,-0.668635,-0.00927768][0.98424,-0.176835,0][0.477975,0.586866,0][-1.30071,-1.19582,-0.00927769][0.991544,-0.129768,0][0.478104,0.623346,0][-1.20185,-1.19582,-0.50629][0.916068,-0.129768,0.379448][0.443712,0.623468,0][-1.20185,-1.19582,-0.50629][0.916068,-0.129768,0.379448][0.443712,0.623468,0][-1.15471,-0.668635,-0.486766][0.90932,-0.176835,0.376653][0.444934,0.586983,0][-1.24969,-0.668635,-0.00927768][0.98424,-0.176835,0][0.477975,0.586866,0][-1.30071,-1.19582,-0.00927769][0.991544,-0.129768,0][0.478104,0.623346,0][-1.36973,-1.61625,-0.00927766][0.932626,-0.360844,0][0.478207,0.652438,0][-1.26562,-1.61625,-0.532705][0.861634,-0.360844,0.356901][0.441987,0.652566,0][-1.26562,-1.61625,-0.532705][0.861634,-0.360844,0.356901][0.441987,0.652566,0][-1.20185,-1.19582,-0.50629][0.916068,-0.129768,0.379448][0.443712,0.623468,0][-1.30071,-1.19582,-0.00927769][0.991544,-0.129768,0][0.478104,0.623346,0][-1.36973,-1.61625,-0.00927766][0.932626,-0.360844,0][0.478207,0.652438,0][-1.6128,-2.00582,-0.00927756][0.687328,-0.726348,-1.24514e-007][0.478302,0.679396,0][-1.49018,-2.00582,-0.625721][0.635008,-0.726348,0.263029][0.435646,0.679546,0][-1.49018,-2.00582,-0.625721][0.635008,-0.726348,0.263029][0.435646,0.679546,0][-1.26562,-1.61625,-0.532705][0.861634,-0.360844,0.356901][0.441987,0.652566,0][-1.36973,-1.61625,-0.00927766][0.932626,-0.360844,0][0.478207,0.652438,0][-1.6128,-2.00582,-0.00927756][0.687328,-0.726348,-1.24514e-007][0.390127,0.0539657,0][-1.98124,-2.22919,-0.00927757][0.882941,-0.469484,0][0.364632,0.0592523,0][-1.83058,-2.22919,-0.76672][0.815731,-0.469484,0.337887][0.375057,0.01,0][-1.83058,-2.22919,-0.76672][0.815731,-0.469484,0.337887][0.375057,0.01,0][-1.49018,-2.00582,-0.625721][0.635008,-0.726348,0.263029][0.398612,0.0138818,0][-1.6128,-2.00582,-0.00927756][0.687328,-0.726348,-1.24514e-007][0.390127,0.0539657,0][-1.98124,-2.22919,-0.00927757][0.882941,-0.469484,0][0.478357,0.694852,0][-1.98276,-2.44029,-0.00927761][1.5392,-0.0110726,-0.306166][0.478409,0.70946,0][-1.83198,-2.44029,-0.767301][1.5392,-0.0110718,0.306166][0.425956,0.709645,0][-1.83198,-2.44029,-0.767301][1.5392,-0.0110718,0.306166][0.425956,0.709645,0][-1.83058,-2.22919,-0.76672][0.815731,-0.469484,0.337887][0.425944,0.695038,0][-1.98124,-2.22919,-0.00927757][0.882941,-0.469484,0][0.478357,0.694852,0][-1.98276,-2.44029,-0.00927761][1.5392,-0.0110726,-0.306166][0.0341883,0.117148,0][-2.33232,-2.44029,-0.00927773][-1.53894,0.0130235,0.306114][0.01,0.117148,0][-2.15493,-2.44029,-0.901069][-1.53894,0.0130244,-0.306115][0.0222748,0.0591601,0][-2.15493,-2.44029,-0.901069][-1.53894,0.0130244,-0.306115][0.0222748,0.0591601,0][-1.83198,-2.44029,-0.767301][1.5392,-0.0110718,0.306166][0.044622,0.0678583,0][-1.98276,-2.44029,-0.00927761][1.5392,-0.0110726,-0.306166][0.0341883,0.117148,0][-2.15493,-2.44029,-0.901069][-1.53894,0.0130244,-0.306115][0.937715,0.846198,0][-2.15328,-2.22919,-0.900386][-0.801515,0.497344,-0.331998][0.937173,0.831601,0][-1.64851,-2.22919,-1.65583][-1.84747,1.2493,-1.23444][0.989419,0.829833,0][-1.64851,-2.22919,-1.65583][-1.84747,1.2493,-1.23444][0.989419,0.829833,0][-1.64977,-2.44029,-1.65709][-1.30465,0.0130254,-0.87174][0.99,0.844429,0][-2.15493,-2.44029,-0.901069][-1.53894,0.0130244,-0.306115][0.937715,0.846198,0][-2.15328,-2.22919,-0.900386][-0.801515,0.497344,-0.331998][0.0222654,0.510158,0][-1.75281,-2.00582,-0.734505][-0.584095,0.774789,-0.24194][0.0499771,0.504658,0][-1.342,-2.00582,-1.34932][-1.65677,2.395,-1.10702][0.078404,0.544636,0][-1.342,-2.00582,-1.34932][-1.65677,2.395,-1.10702][0.078404,0.544636,0][-1.64851,-2.22919,-1.65583][-1.84747,1.2493,-1.23444][0.0571945,0.55928,0][-2.15328,-2.22919,-0.900386][-0.801515,0.497344,-0.331998][0.0222654,0.510158,0][-1.75281,-2.00582,-0.734505][-0.584095,0.774789,-0.24194][0.829844,0.727121,0][-1.48862,-1.61625,-0.625074][-0.842322,0.410806,-0.348901][0.796404,0.727394,0][-1.1398,-1.61625,-1.14712][-2.39105,1.27084,-1.59765][0.791036,0.68428,0][-1.1398,-1.61625,-1.14712][-2.39105,1.27084,-1.59765][0.791036,0.68428,0][-1.342,-2.00582,-1.34932][-1.65677,2.395,-1.10702][0.823522,0.676345,0][-1.75281,-2.00582,-0.734505][-0.584095,0.774789,-0.24194][0.829844,0.727121,0][-1.48862,-1.61625,-0.625074][-0.842322,0.410806,-0.348901][0.131278,0.924475,0][-1.41359,-1.19582,-0.593998][-0.913113,0.152222,-0.378224][0.128145,0.895472,0][-1.08238,-1.19582,-1.0897][-2.59324,0.471129,-1.73275][0.162427,0.894312,0][-1.08238,-1.19582,-1.0897][-2.59324,0.471129,-1.73275][0.162427,0.894312,0][-1.1398,-1.61625,-1.14712][-2.39105,1.27084,-1.59765][0.167382,0.923253,0][-1.48862,-1.61625,-0.625074][-0.842322,0.410806,-0.348901][0.131278,0.924475,0][-1.41359,-1.19582,-0.593998][-0.913113,0.152222,-0.378224][0.128145,0.895472,0][-1.35814,-0.668635,-0.571029][-0.904074,0.205947,-0.37448][0.125323,0.859067,0][-1.03993,-0.668635,-1.04726][-3.31913,1.07287,-2.88237][0.158258,0.857952,0][-1.03993,-0.668635,-1.04726][-3.31913,1.07287,-2.88237][0.158258,0.857952,0][-1.08238,-1.19582,-1.0897][-2.59324,0.471129,-1.73275][0.162427,0.894312,0][-1.41359,-1.19582,-0.593998][-0.913113,0.152222,-0.378224][0.128145,0.895472,0][-1.35814,-0.668635,-0.571029][-0.904074,0.205947,-0.37448][0.125323,0.859067,0][-1.25458,-0.314304,-0.528131][-0.879736,0.305416,-0.364398][0.121527,0.834662,0][-0.960668,-0.314304,-0.967994][-0.67332,0.305416,-0.673321][0.151947,0.833633,0][-0.960668,-0.314304,-0.967994][-0.67332,0.305416,-0.673321][0.151947,0.833633,0][-1.03993,-0.668635,-1.04726][-3.31913,1.07287,-2.88237][0.158258,0.857952,0][-1.35814,-0.668635,-0.571029][-0.904074,0.205947,-0.37448][0.125323,0.859067,0][-1.25458,-0.314304,-0.528131][-0.879736,0.305416,-0.364398][0.121527,0.834662,0][-1.14803,0.0400266,-0.483997][-0.794067,0.511149,-0.328913][0.117645,0.810261,0][-0.879119,0.0400265,-0.886445][-0.607753,0.511149,-0.607753][0.145478,0.809319,0][-0.879119,0.0400265,-0.886445][-0.607753,0.511149,-0.607753][0.145478,0.809319,0][-0.960668,-0.314304,-0.967994][-0.67332,0.305416,-0.673321][0.151947,0.833633,0][-1.25458,-0.314304,-0.528131][-0.879736,0.305416,-0.364398][0.121527,0.834662,0][-1.14803,0.0400266,-0.483997][-0.794067,0.511149,-0.328913][0.688983,0.735754,0][-0.8683,0.341322,-0.368131][-0.542329,0.809578,-0.22464][0.659773,0.735272,0][-0.665026,0.341322,-0.672352][-0.415081,0.809578,-0.415081][0.656645,0.710148,0][-0.665026,0.341322,-0.672352][-0.415081,0.809578,-0.415081][0.656645,0.710148,0][-0.879119,0.0400265,-0.886445][-0.607753,0.511149,-0.607753][0.684845,0.702518,0][-1.14803,0.0400266,-0.483997][-0.794067,0.511149,-0.328913][0.688983,0.735754,0][-0.8683,0.341322,-0.368131][-0.542329,0.809578,-0.22464][0.783139,0.380729,0][-0.238703,0.659853,-0.107343][-0.391211,0.905923,-0.162045][0.742791,0.361787,0][-0.183153,0.659853,-0.19048][-0.299419,0.905923,-0.29942][0.743015,0.355158,0][-0.183153,0.659853,-0.19048][-0.299419,0.905923,-0.29942][0.743015,0.355158,0][-0.665026,0.341322,-0.672352][-0.415081,0.809578,-0.415081][0.783958,0.35647,0][-0.8683,0.341322,-0.368131][-0.542329,0.809578,-0.22464][0.783139,0.380729,0][-0.565565,0.341322,-0.572891][0.414107,-0.810574,0.414107][0.261433,0.809319,0][-0.00195171,0.61885,-0.0092777][-1.34419e-007,-1,0][0.277791,0.855777,0][-0.738348,0.341322,-0.314303][0.541057,-0.810574,0.224113][0.242253,0.816922,0][-0.738348,0.341322,-0.314303][0.541057,-0.810574,0.224113][0.364384,0.938987,0][-0.976115,0.0400265,-0.412789][0.821097,-0.458393,0.34011][0.391435,0.934505,0][-0.747544,0.0400265,-0.75487][0.628441,-0.458393,0.628441][0.392492,0.962954,0][-0.747544,0.0400265,-0.75487][0.628441,-0.458393,0.628441][0.392492,0.962954,0][-0.565565,0.341322,-0.572891][0.414107,-0.810574,0.414107][0.365183,0.960492,0][-0.738348,0.341322,-0.314303][0.541057,-0.810574,0.224113][0.364384,0.938987,0][-0.976115,0.0400265,-0.412789][0.821097,-0.458393,0.34011][0.44988,0.537928,0][-1.06668,-0.314304,-0.450303][0.891343,-0.26305,0.369206][0.447371,0.562456,0][-0.816861,-0.314304,-0.824187][0.682204,-0.26305,0.682204][0.421499,0.562547,0][-0.816861,-0.314304,-0.824187][0.682204,-0.26305,0.682204][0.421499,0.562547,0][-0.747544,0.0400265,-0.75487][0.628441,-0.458393,0.628441][0.426209,0.538011,0][-0.976115,0.0400265,-0.412789][0.821097,-0.458393,0.34011][0.44988,0.537928,0][-1.06668,-0.314304,-0.450303][0.891343,-0.26305,0.369206][0.447371,0.562456,0][-1.15471,-0.668635,-0.486766][0.90932,-0.176835,0.376653][0.444934,0.586983,0][-0.884236,-0.668635,-0.891561][3.35453,-0.925524,2.91792][0.416924,0.587082,0][-0.884236,-0.668635,-0.891561][3.35453,-0.925524,2.91792][0.416924,0.587082,0][-0.816861,-0.314304,-0.824187][0.682204,-0.26305,0.682204][0.421499,0.562547,0][-1.06668,-0.314304,-0.450303][0.891343,-0.26305,0.369206][0.447371,0.562456,0][-1.15471,-0.668635,-0.486766][0.90932,-0.176835,0.376653][0.444934,0.586983,0][-1.20185,-1.19582,-0.50629][0.916068,-0.129768,0.379448][0.443712,0.623468,0][-0.920312,-1.19582,-0.927637][2.60008,-0.401394,1.73732][0.414556,0.623571,0][-0.920312,-1.19582,-0.927637][2.60008,-0.401394,1.73732][0.414556,0.623571,0][-0.884236,-0.668635,-0.891561][3.35453,-0.925524,2.91792][0.416924,0.587082,0][-1.15471,-0.668635,-0.486766][0.90932,-0.176835,0.376653][0.444934,0.586983,0][-1.20185,-1.19582,-0.50629][0.916068,-0.129768,0.379448][0.443712,0.623468,0][-1.26562,-1.61625,-0.532705][0.861634,-0.360844,0.356901][0.441987,0.652566,0][-0.969119,-1.61625,-0.976445][2.45092,-1.11858,1.63765][0.411282,0.652675,0][-0.969119,-1.61625,-0.976445][2.45092,-1.11858,1.63765][0.411282,0.652675,0][-0.920312,-1.19582,-0.927637][2.60008,-0.401394,1.73732][0.414556,0.623571,0][-1.20185,-1.19582,-0.50629][0.916068,-0.129768,0.379448][0.443712,0.623468,0][-1.26562,-1.61625,-0.532705][0.861634,-0.360844,0.356901][0.441987,0.652566,0][-1.49018,-2.00582,-0.625721][0.635008,-0.726348,0.263029][0.435646,0.679546,0][-1.14099,-2.00582,-1.14832][1.80066,-2.24461,1.20316][0.399484,0.679674,0][-1.14099,-2.00582,-1.14832][1.80066,-2.24461,1.20316][0.399484,0.679674,0][-0.969119,-1.61625,-0.976445][2.45092,-1.11858,1.63765][0.411282,0.652675,0][-1.26562,-1.61625,-0.532705][0.861634,-0.360844,0.356901][0.441987,0.652566,0][-1.49018,-2.00582,-0.625721][0.635008,-0.726348,0.263029][0.523834,0.922069,0][-1.83058,-2.22919,-0.76672][0.815731,-0.469484,0.337887][0.551537,0.916063,0][-1.40152,-2.22919,-1.40885][1.92065,-1.20466,1.28334][0.553521,0.969466,0][-1.40152,-2.22919,-1.40885][1.92065,-1.20466,1.28334][0.553521,0.969466,0][-1.14099,-2.00582,-1.14832][1.80066,-2.24461,1.20316][0.525449,0.965531,0][-1.49018,-2.00582,-0.625721][0.635008,-0.726348,0.263029][0.523834,0.922069,0][-1.83058,-2.22919,-0.76672][0.815731,-0.469484,0.337887][0.425944,0.695038,0][-1.83198,-2.44029,-0.767301][1.5392,-0.0110718,0.306166][0.425956,0.709645,0][-1.4026,-2.44029,-1.40992][1.30487,-0.0110728,0.871886][0.381488,0.709802,0][-1.4026,-2.44029,-1.40992][1.30487,-0.0110728,0.871886][0.381488,0.709802,0][-1.40152,-2.22919,-1.40885][1.92065,-1.20466,1.28334][0.381511,0.695195,0][-1.83058,-2.22919,-0.76672][0.815731,-0.469484,0.337887][0.425944,0.695038,0][-1.83198,-2.44029,-0.767301][1.5392,-0.0110718,0.306166][0.044622,0.0678583,0][-2.15493,-2.44029,-0.901069][-1.53894,0.0130244,-0.306115][0.0222748,0.0591601,0][-1.64977,-2.44029,-1.65709][-1.30465,0.0130254,-0.87174][0.0572307,0.01,0][-1.64977,-2.44029,-1.65709][-1.30465,0.0130254,-0.87174][0.0572307,0.01,0][-1.4026,-2.44029,-1.40992][1.30487,-0.0110728,0.871886][0.0743344,0.0260722,0][-1.83198,-2.44029,-0.767301][1.5392,-0.0110718,0.306166][0.044622,0.0678583,0][-1.03993,-0.668635,-1.04726][-3.31913,1.07287,-2.88237][0.0959407,0.165113,0][-0.960668,-0.314304,-0.967994][-0.67332,0.305416,-0.673321][0.101426,0.140197,0][-0.520805,-0.314304,-1.2619][-0.364398,0.305416,-0.879736][0.131863,0.147153,0][-0.520805,-0.314304,-1.2619][-0.364398,0.305416,-0.879736][0.131863,0.147153,0][-0.563703,-0.668635,-1.36546][-1.18984,0.896002,-3.1802][0.128895,0.172644,0][-1.03993,-0.668635,-1.04726][-3.31913,1.07287,-2.88237][0.0959407,0.165113,0][-0.960668,-0.314304,-0.967994][-0.67332,0.305416,-0.673321][0.101426,0.140197,0][-0.879119,0.0400265,-0.886445][-0.607753,0.511149,-0.607753][0.107069,0.115227,0][-0.476671,0.0400264,-1.15535][-0.328913,0.511149,-0.794067][0.134917,0.121591,0][-0.476671,0.0400264,-1.15535][-0.328913,0.511149,-0.794067][0.134917,0.121591,0][-0.520805,-0.314304,-1.2619][-0.364398,0.305416,-0.879736][0.131863,0.147153,0][-0.960668,-0.314304,-0.967994][-0.67332,0.305416,-0.673321][0.101426,0.140197,0][-0.879119,0.0400265,-0.886445][-0.607753,0.511149,-0.607753][0.107069,0.115227,0][-0.665026,0.341322,-0.672352][-0.415081,0.809578,-0.415081][0.121883,0.0905683,0][-0.360805,0.341322,-0.875627][-0.22464,0.809578,-0.542329][0.142935,0.0953792,0][-0.360805,0.341322,-0.875627][-0.22464,0.809578,-0.542329][0.142935,0.0953792,0][-0.476671,0.0400264,-1.15535][-0.328913,0.511149,-0.794067][0.134917,0.121591,0][-0.879119,0.0400265,-0.886445][-0.607753,0.511149,-0.607753][0.107069,0.115227,0][-0.665026,0.341322,-0.672352][-0.415081,0.809578,-0.415081][0.783958,0.35647,0][-0.183153,0.659853,-0.19048][-0.299419,0.905923,-0.29942][0.743015,0.355158,0][-0.100017,0.659853,-0.246029][-0.162045,0.905923,-0.391211][0.740633,0.348796,0][-0.100017,0.659853,-0.246029][-0.162045,0.905923,-0.391211][0.740633,0.348796,0][-0.360805,0.341322,-0.875627][-0.22464,0.809578,-0.542329][0.775241,0.333191,0][-0.665026,0.341322,-0.672352][-0.415081,0.809578,-0.415081][0.783958,0.35647,0][-0.306977,0.341322,-0.745674][0.224113,-0.810574,0.541057][0.282559,0.809627,0][-0.00195171,0.61885,-0.0092777][-1.34419e-007,-1,0][0.277791,0.855777,0][-0.565565,0.341322,-0.572891][0.414107,-0.810574,0.414107][0.261433,0.809319,0][-0.565565,0.341322,-0.572891][0.414107,-0.810574,0.414107][0.629501,0.849737,0][-0.747544,0.0400265,-0.75487][0.628441,-0.458393,0.628441][0.616908,0.825839,0][-0.405464,0.0400265,-0.983441][0.34011,-0.458393,0.821098][0.64058,0.820429,0][-0.405464,0.0400265,-0.983441][0.34011,-0.458393,0.821098][0.64058,0.820429,0][-0.306977,0.341322,-0.745674][0.224113,-0.810574,0.541057][0.647395,0.845648,0][-0.565565,0.341322,-0.572891][0.414107,-0.810574,0.414107][0.629501,0.849737,0][-0.747544,0.0400265,-0.75487][0.628441,-0.458393,0.628441][0.616908,0.825839,0][-0.816861,-0.314304,-0.824187][0.682204,-0.26305,0.682204][0.612112,0.801158,0][-0.442977,-0.314304,-1.07401][0.369206,-0.26305,0.891343][0.637984,0.795246,0][-0.442977,-0.314304,-1.07401][0.369206,-0.26305,0.891343][0.637984,0.795246,0][-0.405464,0.0400265,-0.983441][0.34011,-0.458393,0.821098][0.64058,0.820429,0][-0.747544,0.0400265,-0.75487][0.628441,-0.458393,0.628441][0.616908,0.825839,0][-0.816861,-0.314304,-0.824187][0.682204,-0.26305,0.682204][0.612112,0.801158,0][-0.884236,-0.668635,-0.891561][3.35453,-0.925524,2.91792][0.60745,0.776524,0][-0.47944,-0.668635,-1.16204][1.10336,-0.775318,2.66375][0.635461,0.770122,0][-0.47944,-0.668635,-1.16204][1.10336,-0.775318,2.66375][0.635461,0.770122,0][-0.442977,-0.314304,-1.07401][0.369206,-0.26305,0.891343][0.637984,0.795246,0][-0.816861,-0.314304,-0.824187][0.682204,-0.26305,0.682204][0.612112,0.801158,0][-0.563703,-0.668635,-1.36546][-1.18984,0.896002,-3.1802][0.128895,0.172644,0][-0.520805,-0.314304,-1.2619][-0.364398,0.305416,-0.879736][0.131863,0.147153,0][-0.0019518,-0.314304,-1.36511][0.000819167,0.302428,-0.953172][0.167766,0.149596,0][-0.563703,-0.668635,-1.36546][-1.18984,0.896002,-3.1802][0.128895,0.172644,0][-0.0019518,-0.314304,-1.36511][0.000819167,0.302428,-0.953172][0.167766,0.149596,0][-0.00195186,-0.667184,-1.47388][0.067404,0.125633,-0.989784][0.167766,0.175116,0][-0.563703,-0.668635,-1.36546][-1.18984,0.896002,-3.1802][0.128895,0.172644,0][-0.00195186,-0.667184,-1.47388][0.067404,0.125633,-0.989784][0.167766,0.175116,0][-0.00195193,-1.03843,-1.4772][0.030098,0.0603636,-0.997723][0.167766,0.199335,0][-0.520805,-0.314304,-1.2619][-0.364398,0.305416,-0.879736][0.131863,0.147153,0][-0.476671,0.0400264,-1.15535][-0.328913,0.511149,-0.794067][0.134917,0.121591,0][-0.00195176,0.0400264,-1.24978][0,0.511149,-0.859492][0.167766,0.123826,0][-0.00195176,0.0400264,-1.24978][0,0.511149,-0.859492][0.167766,0.123826,0][-0.0019518,-0.314304,-1.36511][0.000819167,0.302428,-0.953172][0.167766,0.149596,0][-0.520805,-0.314304,-1.2619][-0.364398,0.305416,-0.879736][0.131863,0.147153,0][-0.476671,0.0400264,-1.15535][-0.328913,0.511149,-0.794067][0.134917,0.121591,0][-0.360805,0.341322,-0.875627][-0.22464,0.809578,-0.542329][0.142935,0.0953792,0][-0.00195174,0.341322,-0.947007][0,0.809578,-0.587013][0.167766,0.0970686,0][-0.00195174,0.341322,-0.947007][0,0.809578,-0.587013][0.167766,0.0970686,0][-0.00195176,0.0400264,-1.24978][0,0.511149,-0.859492][0.167766,0.123826,0][-0.476671,0.0400264,-1.15535][-0.328913,0.511149,-0.794067][0.134917,0.121591,0][-0.360805,0.341322,-0.875627][-0.22464,0.809578,-0.542329][0.648138,0.687635,0][-0.100017,0.659853,-0.246029][-0.162045,0.905923,-0.391211][0.610891,0.718674,0][-0.00195169,0.659853,-0.265536][0,0.905923,-0.423443][0.60745,0.714172,0][-0.00195169,0.659853,-0.265536][0,0.905923,-0.423443][0.60745,0.714172,0][-0.00195174,0.341322,-0.947007][0,0.809578,-0.587013][0.635546,0.671162,0][-0.360805,0.341322,-0.875627][-0.22464,0.809578,-0.542329][0.648138,0.687635,0][-0.00195175,0.341322,-0.806347][-1.4892e-007,-0.810574,0.585636][0.302415,0.817801,0][-0.00195171,0.61885,-0.0092777][-1.34419e-007,-1,0][0.277791,0.855777,0][-0.306977,0.341322,-0.745674][0.224113,-0.810574,0.541057][0.282559,0.809627,0][-0.306977,0.341322,-0.745674][0.224113,-0.810574,0.541057][0.647395,0.845648,0][-0.405464,0.0400265,-0.983441][0.34011,-0.458393,0.821098][0.64058,0.820429,0][-0.00195176,0.0400264,-1.0637][0,-0.458393,0.88875][0.668502,0.81853,0][-0.00195176,0.0400264,-1.0637][0,-0.458393,0.88875][0.668502,0.81853,0][-0.00195175,0.341322,-0.806347][-1.4892e-007,-0.810574,0.585636][0.668502,0.844212,0][-0.306977,0.341322,-0.745674][0.224113,-0.810574,0.541057][0.647395,0.845648,0][-0.405464,0.0400265,-0.983441][0.34011,-0.458393,0.821098][0.64058,0.820429,0][-0.442977,-0.314304,-1.07401][0.369206,-0.26305,0.891343][0.637984,0.795246,0][-0.00195181,-0.314304,-1.16173][0,-0.26305,0.964782][0.668502,0.793169,0][-0.00195181,-0.314304,-1.16173][0,-0.26305,0.964782][0.668502,0.793169,0][-0.00195176,0.0400264,-1.0637][0,-0.458393,0.88875][0.668502,0.81853,0][-0.405464,0.0400265,-0.983441][0.34011,-0.458393,0.821098][0.64058,0.820429,0][-0.442977,-0.314304,-1.07401][0.369206,-0.26305,0.891343][0.637984,0.795246,0][-0.47944,-0.668635,-1.16204][1.10336,-0.775318,2.66375][0.635461,0.770122,0][-0.00195188,-0.668635,-1.25702][-4.1719e-007,-0.775318,2.88322][0.668502,0.767874,0][-0.00195188,-0.668635,-1.25702][-4.1719e-007,-0.775318,2.88322][0.668502,0.767874,0][-0.00195181,-0.314304,-1.16173][0,-0.26305,0.964782][0.668502,0.793169,0][-0.442977,-0.314304,-1.07401][0.369206,-0.26305,0.891343][0.637984,0.795246,0][0.516902,-0.314305,-1.2619][0.355873,0.288829,-0.888781][0.20367,0.147153,0][0.559799,-0.668635,-1.36546][0.814143,1.02658,-3.1751][0.206638,0.172644,0][-0.00195193,-1.03843,-1.4772][0.030098,0.0603636,-0.997723][0.167766,0.199335,0][0.516902,-0.314305,-1.2619][0.355873,0.288829,-0.888781][0.20367,0.147153,0][-0.00195193,-1.03843,-1.4772][0.030098,0.0603636,-0.997723][0.167766,0.199335,0][-0.00195186,-0.667184,-1.47388][0.067404,0.125633,-0.989784][0.167766,0.175116,0][0.516902,-0.314305,-1.2619][0.355873,0.288829,-0.888781][0.20367,0.147153,0][-0.00195186,-0.667184,-1.47388][0.067404,0.125633,-0.989784][0.167766,0.175116,0][-0.0019518,-0.314304,-1.36511][0.000819167,0.302428,-0.953172][0.167766,0.149596,0][-0.0019518,-0.314304,-1.36511][0.000819167,0.302428,-0.953172][0.167766,0.149596,0][-0.00195176,0.0400264,-1.24978][0,0.511149,-0.859492][0.167766,0.123826,0][0.472768,0.0400263,-1.15535][0.328913,0.511149,-0.794067][0.200616,0.121591,0][0.472768,0.0400263,-1.15535][0.328913,0.511149,-0.794067][0.200616,0.121591,0][0.516902,-0.314305,-1.2619][0.355873,0.288829,-0.888781][0.20367,0.147153,0][-0.0019518,-0.314304,-1.36511][0.000819167,0.302428,-0.953172][0.167766,0.149596,0][-0.00195176,0.0400264,-1.24978][0,0.511149,-0.859492][0.167766,0.123826,0][-0.00195174,0.341322,-0.947007][0,0.809578,-0.587013][0.167766,0.0970686,0][0.356902,0.341322,-0.875626][0.22464,0.809578,-0.542329][0.192598,0.0953792,0][0.356902,0.341322,-0.875626][0.22464,0.809578,-0.542329][0.192598,0.0953792,0][0.472768,0.0400263,-1.15535][0.328913,0.511149,-0.794067][0.200616,0.121591,0][-0.00195176,0.0400264,-1.24978][0,0.511149,-0.859492][0.167766,0.123826,0][-0.00195174,0.341322,-0.947007][0,0.809578,-0.587013][0.861964,0.729946,0][-0.00195169,0.659853,-0.265536][0,0.905923,-0.423443][0.861964,0.677893,0][0.096114,0.659853,-0.246029][0.162045,0.905923,-0.391211][0.868774,0.67667,0][0.096114,0.659853,-0.246029][0.162045,0.905923,-0.391211][0.868774,0.67667,0][0.356902,0.341322,-0.875626][0.22464,0.809578,-0.542329][0.886884,0.725471,0][-0.00195174,0.341322,-0.947007][0,0.809578,-0.587013][0.861964,0.729946,0][0.303074,0.341322,-0.745674][-0.224113,-0.810574,0.541057][0.317978,0.832594,0][-0.00195171,0.61885,-0.0092777][-1.34419e-007,-1,0][0.277791,0.855777,0][-0.00195175,0.341322,-0.806347][-1.4892e-007,-0.810574,0.585636][0.302415,0.817801,0][-0.00195175,0.341322,-0.806347][-1.4892e-007,-0.810574,0.585636][0.668502,0.844212,0][-0.00195176,0.0400264,-1.0637][0,-0.458393,0.88875][0.668502,0.81853,0][0.40156,0.0400263,-0.983441][-0.34011,-0.458393,0.821098][0.696424,0.820429,0][0.40156,0.0400263,-0.983441][-0.34011,-0.458393,0.821098][0.696424,0.820429,0][0.303074,0.341322,-0.745674][-0.224113,-0.810574,0.541057][0.689609,0.845648,0][-0.00195175,0.341322,-0.806347][-1.4892e-007,-0.810574,0.585636][0.668502,0.844212,0][-0.00195176,0.0400264,-1.0637][0,-0.458393,0.88875][0.668502,0.81853,0][-0.00195181,-0.314304,-1.16173][0,-0.26305,0.964782][0.668502,0.793169,0][0.439074,-0.314305,-1.07401][-0.369206,-0.26305,0.891343][0.699019,0.795246,0][0.439074,-0.314305,-1.07401][-0.369206,-0.26305,0.891343][0.699019,0.795246,0][0.40156,0.0400263,-0.983441][-0.34011,-0.458393,0.821098][0.696424,0.820429,0][-0.00195176,0.0400264,-1.0637][0,-0.458393,0.88875][0.668502,0.81853,0][-0.00195181,-0.314304,-1.16173][0,-0.26305,0.964782][0.668502,0.793169,0][-0.00195188,-0.668635,-1.25702][-4.1719e-007,-0.775318,2.88322][0.668502,0.767874,0][0.475537,-0.668635,-1.16204][-1.10336,-0.775317,2.66375][0.701543,0.770122,0][0.475537,-0.668635,-1.16204][-1.10336,-0.775317,2.66375][0.701543,0.770122,0][0.439074,-0.314305,-1.07401][-0.369206,-0.26305,0.891343][0.699019,0.795246,0][-0.00195181,-0.314304,-1.16173][0,-0.26305,0.964782][0.668502,0.793169,0][0.559799,-0.668635,-1.36546][0.814143,1.02658,-3.1751][0.206638,0.172644,0][0.516902,-0.314305,-1.2619][0.355873,0.288829,-0.888781][0.20367,0.147153,0][0.956765,-0.314305,-0.967994][0.673321,0.305416,-0.67332][0.234107,0.140197,0][0.956765,-0.314305,-0.967994][0.673321,0.305416,-0.67332][0.234107,0.140197,0][1.03603,-0.668635,-1.04726][3.31913,1.07287,-2.88237][0.239592,0.165113,0][0.559799,-0.668635,-1.36546][0.814143,1.02658,-3.1751][0.206638,0.172644,0][0.516902,-0.314305,-1.2619][0.355873,0.288829,-0.888781][0.20367,0.147153,0][0.472768,0.0400263,-1.15535][0.328913,0.511149,-0.794067][0.200616,0.121591,0][0.875216,0.0400263,-0.886445][0.607753,0.511149,-0.607753][0.228464,0.115227,0][0.875216,0.0400263,-0.886445][0.607753,0.511149,-0.607753][0.228464,0.115227,0][0.956765,-0.314305,-0.967994][0.673321,0.305416,-0.67332][0.234107,0.140197,0][0.516902,-0.314305,-1.2619][0.355873,0.288829,-0.888781][0.20367,0.147153,0][0.472768,0.0400263,-1.15535][0.328913,0.511149,-0.794067][0.200616,0.121591,0][0.356902,0.341322,-0.875626][0.22464,0.809578,-0.542329][0.192598,0.0953792,0][0.661123,0.341322,-0.672352][0.415081,0.809578,-0.415081][0.21365,0.0905683,0][0.661123,0.341322,-0.672352][0.415081,0.809578,-0.415081][0.21365,0.0905683,0][0.875216,0.0400263,-0.886445][0.607753,0.511149,-0.607753][0.228464,0.115227,0][0.472768,0.0400263,-1.15535][0.328913,0.511149,-0.794067][0.200616,0.121591,0][0.356902,0.341322,-0.875626][0.22464,0.809578,-0.542329][0.735761,0.303063,0][0.096114,0.659853,-0.246029][0.162045,0.905923,-0.391211][0.729844,0.340563,0][0.17925,0.659853,-0.190479][0.29942,0.905923,-0.29942][0.723079,0.339944,0][0.17925,0.659853,-0.190479][0.29942,0.905923,-0.29942][0.723079,0.339944,0][0.661123,0.341322,-0.672352][0.415081,0.809578,-0.415081][0.711007,0.3008,0][0.356902,0.341322,-0.875626][0.22464,0.809578,-0.542329][0.735761,0.303063,0][0.561662,0.341322,-0.572891][-0.414108,-0.810574,0.414107][0.326879,0.851756,0][-0.00195171,0.61885,-0.0092777][-1.34419e-007,-1,0][0.277791,0.855777,0][0.303074,0.341322,-0.745674][-0.224113,-0.810574,0.541057][0.317978,0.832594,0][0.303074,0.341322,-0.745674][-0.224113,-0.810574,0.541057][0.689609,0.845648,0][0.40156,0.0400263,-0.983441][-0.34011,-0.458393,0.821098][0.696424,0.820429,0][0.743641,0.0400263,-0.75487][-0.628441,-0.458393,0.628441][0.720095,0.825839,0][0.743641,0.0400263,-0.75487][-0.628441,-0.458393,0.628441][0.720095,0.825839,0][0.561662,0.341322,-0.572891][-0.414108,-0.810574,0.414107][0.707502,0.849737,0][0.303074,0.341322,-0.745674][-0.224113,-0.810574,0.541057][0.689609,0.845648,0][0.40156,0.0400263,-0.983441][-0.34011,-0.458393,0.821098][0.696424,0.820429,0][0.439074,-0.314305,-1.07401][-0.369206,-0.26305,0.891343][0.699019,0.795246,0][0.812957,-0.314305,-0.824187][-0.682204,-0.26305,0.682204][0.724891,0.801158,0][0.812957,-0.314305,-0.824187][-0.682204,-0.26305,0.682204][0.724891,0.801158,0][0.743641,0.0400263,-0.75487][-0.628441,-0.458393,0.628441][0.720095,0.825839,0][0.40156,0.0400263,-0.983441][-0.34011,-0.458393,0.821098][0.696424,0.820429,0][0.439074,-0.314305,-1.07401][-0.369206,-0.26305,0.891343][0.699019,0.795246,0][0.475537,-0.668635,-1.16204][-1.10336,-0.775317,2.66375][0.701543,0.770122,0][0.880332,-0.668635,-0.891561][-3.35453,-0.925522,2.91792][0.729554,0.776524,0][0.880332,-0.668635,-0.891561][-3.35453,-0.925522,2.91792][0.729554,0.776524,0][0.812957,-0.314305,-0.824187][-0.682204,-0.26305,0.682204][0.724891,0.801158,0][0.439074,-0.314305,-1.07401][-0.369206,-0.26305,0.891343][0.699019,0.795246,0][1.64586,-2.44029,-1.65709][1.30465,0.0130247,-0.87174][0.761674,0.899676,0][1.6446,-2.22919,-1.65583][1.84747,1.2493,-1.23444][0.76171,0.885068,0][2.14937,-2.22919,-0.900385][0.801515,0.497344,-0.331998][0.813984,0.884884,0][2.14937,-2.22919,-0.900385][0.801515,0.497344,-0.331998][0.813984,0.884884,0][2.15102,-2.44029,-0.901069][1.30465,0.0130251,-0.87174][0.813989,0.899491,0][1.64586,-2.44029,-1.65709][1.30465,0.0130247,-0.87174][0.761674,0.899676,0][1.6446,-2.22919,-1.65583][1.84747,1.2493,-1.23444][0.285069,0.55928,0][1.33809,-2.00582,-1.34932][1.65677,2.395,-1.10702][0.26386,0.544636,0][1.7489,-2.00582,-0.734505][0.584095,0.774789,-0.24194][0.292287,0.504658,0][1.7489,-2.00582,-0.734505][0.584095,0.774789,-0.24194][0.292287,0.504658,0][2.14937,-2.22919,-0.900385][0.801515,0.497344,-0.331998][0.319998,0.510158,0][1.6446,-2.22919,-1.65583][1.84747,1.2493,-1.23444][0.285069,0.55928,0][1.33809,-2.00582,-1.34932][1.65677,2.395,-1.10702][0.427935,0.459638,0][1.13589,-1.61625,-1.14712][2.39105,1.27084,-1.59765][0.423745,0.492815,0][1.48471,-1.61625,-0.625074][0.842322,0.410806,-0.348901][0.3803,0.492384,0][1.48471,-1.61625,-0.625074][0.842322,0.410806,-0.348901][0.3803,0.492384,0][1.7489,-2.00582,-0.734505][0.584095,0.774789,-0.24194][0.37677,0.45913,0][1.33809,-2.00582,-1.34932][1.65677,2.395,-1.10702][0.427935,0.459638,0][1.13589,-1.61625,-1.14712][2.39105,1.27084,-1.59765][0.364384,0.857086,0][1.07847,-1.19582,-1.0897][2.59324,0.471128,-1.73275][0.368255,0.827979,0][1.40969,-1.19582,-0.593998][0.913113,0.152222,-0.378224][0.402556,0.827858,0][1.40969,-1.19582,-0.593998][0.913113,0.152222,-0.378224][0.402556,0.827858,0][1.48471,-1.61625,-0.625074][0.842322,0.410806,-0.348901][0.400509,0.856958,0][1.13589,-1.61625,-1.14712][2.39105,1.27084,-1.59765][0.364384,0.857086,0][1.07847,-1.19582,-1.0897][2.59324,0.471128,-1.73275][0.368255,0.827979,0][1.03603,-0.668635,-1.04726][3.31913,1.07287,-2.88237][0.371063,0.791489,0][1.35424,-0.668635,-0.571029][0.904075,0.205947,-0.37448][0.404016,0.791373,0][1.35424,-0.668635,-0.571029][0.904075,0.205947,-0.37448][0.404016,0.791373,0][1.40969,-1.19582,-0.593998][0.913113,0.152222,-0.378224][0.402556,0.827858,0][1.07847,-1.19582,-1.0897][2.59324,0.471128,-1.73275][0.368255,0.827979,0][1.03603,-0.668635,-1.04726][3.31913,1.07287,-2.88237][0.371063,0.791489,0][0.956765,-0.314305,-0.967994][0.673321,0.305416,-0.67332][0.376461,0.766951,0][1.25067,-0.314305,-0.528131][0.879736,0.305416,-0.364398][0.406898,0.766844,0][1.25067,-0.314305,-0.528131][0.879736,0.305416,-0.364398][0.406898,0.766844,0][1.35424,-0.668635,-0.571029][0.904075,0.205947,-0.37448][0.404016,0.791373,0][1.03603,-0.668635,-1.04726][3.31913,1.07287,-2.88237][0.371063,0.791489,0][0.956765,-0.314305,-0.967994][0.673321,0.305416,-0.67332][0.376461,0.766951,0][0.875216,0.0400263,-0.886445][0.607753,0.511149,-0.607753][0.382017,0.742413,0][1.14412,0.0400262,-0.483997][0.794067,0.511149,-0.328913][0.409865,0.742314,0][1.14412,0.0400262,-0.483997][0.794067,0.511149,-0.328913][0.409865,0.742314,0][1.25067,-0.314305,-0.528131][0.879736,0.305416,-0.364398][0.406898,0.766844,0][0.956765,-0.314305,-0.967994][0.673321,0.305416,-0.67332][0.376461,0.766951,0][0.875216,0.0400263,-0.886445][0.607753,0.511149,-0.607753][0.924182,0.734978,0][0.661123,0.341322,-0.672352][0.415081,0.809578,-0.415081][0.908361,0.712729,0][0.864397,0.341322,-0.368131][0.542329,0.809578,-0.22464][0.923125,0.693658,0][0.864397,0.341322,-0.368131][0.542329,0.809578,-0.22464][0.923125,0.693658,0][1.14412,0.0400262,-0.483997][0.794067,0.511149,-0.328913][0.943714,0.709749,0][0.875216,0.0400263,-0.886445][0.607753,0.511149,-0.607753][0.924182,0.734978,0][0.661123,0.341322,-0.672352][0.415081,0.809578,-0.415081][0.711007,0.3008,0][0.17925,0.659853,-0.190479][0.29942,0.905923,-0.29942][0.723079,0.339944,0][0.2348,0.659853,-0.107343][0.391211,0.905922,-0.162045][0.716744,0.34191,0][0.2348,0.659853,-0.107343][0.391211,0.905922,-0.162045][0.716744,0.34191,0][0.864397,0.341322,-0.368131][0.542329,0.809578,-0.22464][0.687824,0.307992,0][0.661123,0.341322,-0.672352][0.415081,0.809578,-0.415081][0.711007,0.3008,0][0.734445,0.341322,-0.314303][-0.541057,-0.810574,0.224113][0.327763,0.87237,0][-0.00195171,0.61885,-0.0092777][-1.34419e-007,-1,0][0.277791,0.855777,0][0.561662,0.341322,-0.572891][-0.414108,-0.810574,0.414107][0.326879,0.851756,0][0.561662,0.341322,-0.572891][-0.414108,-0.810574,0.414107][0.794122,0.532908,0][0.743641,0.0400263,-0.75487][-0.628441,-0.458393,0.628441][0.82132,0.529428,0][0.972212,0.0400262,-0.412789][-0.821098,-0.458393,0.34011][0.821326,0.557897,0][0.972212,0.0400262,-0.412789][-0.821098,-0.458393,0.34011][0.821326,0.557897,0][0.734445,0.341322,-0.314303][-0.541057,-0.810574,0.224113][0.794127,0.554429,0][0.561662,0.341322,-0.572891][-0.414108,-0.810574,0.414107][0.794122,0.532908,0][0.743641,0.0400263,-0.75487][-0.628441,-0.458393,0.628441][0.81372,0.0298059,0][0.812957,-0.314305,-0.824187][-0.682204,-0.26305,0.682204][0.819344,0.0541484,0][1.06278,-0.314304,-0.450303][-0.891343,-0.26305,0.369206][0.793487,0.0550235,0][1.06278,-0.314304,-0.450303][-0.891343,-0.26305,0.369206][0.793487,0.0550235,0][0.972212,0.0400262,-0.412789][-0.821098,-0.458393,0.34011][0.790063,0.0306065,0][0.743641,0.0400263,-0.75487][-0.628441,-0.458393,0.628441][0.81372,0.0298059,0][0.812957,-0.314305,-0.824187][-0.682204,-0.26305,0.682204][0.819344,0.0541484,0][0.880332,-0.668635,-0.891561][-3.35453,-0.925522,2.91792][0.824832,0.0784955,0][1.15081,-0.668635,-0.486766][-0.90932,-0.176835,0.376652][0.796838,0.079443,0][1.15081,-0.668635,-0.486766][-0.90932,-0.176835,0.376652][0.796838,0.079443,0][1.06278,-0.314304,-0.450303][-0.891343,-0.26305,0.369206][0.793487,0.0550235,0][0.812957,-0.314305,-0.824187][-0.682204,-0.26305,0.682204][0.819344,0.0541484,0][0.880332,-0.668635,-0.891561][-3.35453,-0.925522,2.91792][0.824832,0.0784955,0][0.916408,-1.19582,-0.927637][-2.60008,-0.401393,1.73732][0.828561,0.11487,0][1.19794,-1.19582,-0.50629][-0.916068,-0.129768,0.379447][0.799422,0.115856,0][1.19794,-1.19582,-0.50629][-0.916068,-0.129768,0.379447][0.799422,0.115856,0][1.15081,-0.668635,-0.486766][-0.90932,-0.176835,0.376652][0.796838,0.079443,0][0.880332,-0.668635,-0.891561][-3.35453,-0.925522,2.91792][0.824832,0.0784955,0][0.916408,-1.19582,-0.927637][-2.60008,-0.401393,1.73732][0.828561,0.11487,0][0.965215,-1.61625,-0.976445][-2.45092,-1.11858,1.63765][0.832921,0.143832,0][1.26171,-1.61625,-0.532705][-0.861634,-0.360844,0.3569][0.802232,0.14487,0][1.26171,-1.61625,-0.532705][-0.861634,-0.360844,0.3569][0.802232,0.14487,0][1.19794,-1.19582,-0.50629][-0.916068,-0.129768,0.379447][0.799422,0.115856,0][0.916408,-1.19582,-0.927637][-2.60008,-0.401393,1.73732][0.828561,0.11487,0][0.965215,-1.61625,-0.976445][-2.45092,-1.11858,1.63765][0.832921,0.143832,0][1.13709,-2.00582,-1.14832][-1.80066,-2.24461,1.20316][0.845719,0.170372,0][1.48627,-2.00582,-0.625721][-0.635008,-0.726347,0.263029][0.809577,0.171595,0][1.48627,-2.00582,-0.625721][-0.635008,-0.726347,0.263029][0.809577,0.171595,0][1.26171,-1.61625,-0.532705][-0.861634,-0.360844,0.3569][0.802232,0.14487,0][0.965215,-1.61625,-0.976445][-2.45092,-1.11858,1.63765][0.832921,0.143832,0][1.13709,-2.00582,-1.14832][-1.80066,-2.24461,1.20316][0.954088,0.521886,0][1.39762,-2.22919,-1.40885][-1.92065,-1.20466,1.28334][0.981993,0.516906,0][1.82667,-2.22919,-0.766719][-0.815731,-0.469484,0.337887][0.982005,0.570346,0][1.82667,-2.22919,-0.766719][-0.815731,-0.469484,0.337887][0.982005,0.570346,0][1.48627,-2.00582,-0.625721][-0.635008,-0.726347,0.263029][0.954098,0.565378,0][1.13709,-2.00582,-1.14832][-1.80066,-2.24461,1.20316][0.954088,0.521886,0][1.39762,-2.22919,-1.40885][-1.92065,-1.20466,1.28334][0.864259,0.18521,0][1.39869,-2.44029,-1.40992][-1.30487,-0.0110723,0.871886][0.864828,0.199806,0][1.82808,-2.44029,-0.7673][-1.30487,-0.0110724,0.871886][0.820385,0.20131,0][1.82808,-2.44029,-0.7673][-1.30487,-0.0110724,0.871886][0.820385,0.20131,0][1.82667,-2.22919,-0.766719][-0.815731,-0.469484,0.337887][0.819851,0.186713,0][1.39762,-2.22919,-1.40885][-1.92065,-1.20466,1.28334][0.864259,0.18521,0][1.39869,-2.44029,-1.40992][-1.30487,-0.0110723,0.871886][0.268177,0.0260723,0][1.64586,-2.44029,-1.65709][1.30465,0.0130247,-0.87174][0.28528,0.01,0][2.15102,-2.44029,-0.901069][1.30465,0.0130251,-0.87174][0.320236,0.0591601,0][2.15102,-2.44029,-0.901069][1.30465,0.0130251,-0.87174][0.320236,0.0591601,0][1.82808,-2.44029,-0.7673][-1.30487,-0.0110724,0.871886][0.297889,0.0678583,0][1.39869,-2.44029,-1.40992][-1.30487,-0.0110723,0.871886][0.268177,0.0260723,0][2.15102,-2.44029,-0.901069][1.30465,0.0130251,-0.87174][0.813989,0.899491,0][2.14937,-2.22919,-0.900385][0.801515,0.497344,-0.331998][0.813984,0.884884,0][2.32663,-2.22919,-0.00927748][0.867553,0.497344,0][0.875647,0.884666,0][2.32663,-2.22919,-0.00927748][0.867553,0.497344,0][0.875647,0.884666,0][2.32841,-2.44029,-0.00927743][1.53894,0.0130237,-0.306115][0.875698,0.899273,0][2.15102,-2.44029,-0.901069][1.30465,0.0130251,-0.87174][0.813989,0.899491,0][2.14937,-2.22919,-0.900385][0.801515,0.497344,-0.331998][0.319998,0.510158,0][1.7489,-2.00582,-0.734505][0.584095,0.774789,-0.24194][0.292287,0.504658,0][1.89316,-2.00582,-0.00927741][0.63222,0.774789,0][0.302269,0.457501,0][1.89316,-2.00582,-0.00927741][0.63222,0.774789,0][0.302269,0.457501,0][2.32663,-2.22919,-0.00927748][0.867553,0.497344,0][0.332264,0.452214,0][2.14937,-2.22919,-0.900385][0.801515,0.497344,-0.331998][0.319998,0.510158,0][1.7489,-2.00582,-0.734505][0.584095,0.774789,-0.24194][0.393032,0.883942,0][1.48471,-1.61625,-0.625074][0.842322,0.410806,-0.348901][0.400509,0.856958,0][1.6072,-1.61625,-0.00927749][0.911723,0.410806,0][0.44312,0.856807,0][1.6072,-1.61625,-0.00927749][0.911723,0.410806,0][0.44312,0.856807,0][1.89316,-2.00582,-0.00927741][0.63222,0.774789,0][0.443215,0.883765,0][1.7489,-2.00582,-0.734505][0.584095,0.774789,-0.24194][0.393032,0.883942,0][1.48471,-1.61625,-0.625074][0.842322,0.410806,-0.348901][0.400509,0.856958,0][1.40969,-1.19582,-0.593998][0.913113,0.152222,-0.378224][0.402556,0.827858,0][1.526,-1.19582,-0.00927747][0.988346,0.152222,0][0.443017,0.827715,0][1.526,-1.19582,-0.00927747][0.988346,0.152222,0][0.443017,0.827715,0][1.6072,-1.61625,-0.00927749][0.911723,0.410806,0][0.44312,0.856807,0][1.48471,-1.61625,-0.625074][0.842322,0.410806,-0.348901][0.400509,0.856958,0][1.40969,-1.19582,-0.593998][0.913113,0.152222,-0.378224][0.402556,0.827858,0][1.35424,-0.668635,-0.571029][0.904075,0.205947,-0.37448][0.404016,0.791373,0][1.46597,-0.668635,-0.0092776][0.978563,0.205946,0][0.442888,0.791235,0][1.46597,-0.668635,-0.0092776][0.978563,0.205946,0][0.442888,0.791235,0][1.526,-1.19582,-0.00927747][0.988346,0.152222,0][0.443017,0.827715,0][1.40969,-1.19582,-0.593998][0.913113,0.152222,-0.378224][0.402556,0.827858,0][1.35424,-0.668635,-0.571029][0.904075,0.205947,-0.37448][0.404016,0.791373,0][1.25067,-0.314305,-0.528131][0.879736,0.305416,-0.364398][0.406898,0.766844,0][1.35388,-0.314305,-0.00927756][0.952219,0.305416,0][0.442801,0.766717,0][1.35388,-0.314305,-0.00927756][0.952219,0.305416,0][0.442801,0.766717,0][1.46597,-0.668635,-0.0092776][0.978563,0.205946,0][0.442888,0.791235,0][1.35424,-0.668635,-0.571029][0.904075,0.205947,-0.37448][0.404016,0.791373,0][1.25067,-0.314305,-0.528131][0.879736,0.305416,-0.364398][0.406898,0.766844,0][1.14412,0.0400262,-0.483997][0.794067,0.511149,-0.328913][0.409865,0.742314,0][1.23855,0.0400262,-0.0092776][0.859492,0.511149,0][0.442715,0.742198,0][1.23855,0.0400262,-0.0092776][0.859492,0.511149,0][0.442715,0.742198,0][1.35388,-0.314305,-0.00927756][0.952219,0.305416,0][0.442801,0.766717,0][1.25067,-0.314305,-0.528131][0.879736,0.305416,-0.364398][0.406898,0.766844,0][1.14412,0.0400262,-0.483997][0.794067,0.511149,-0.328913][0.943714,0.709749,0][0.864397,0.341322,-0.368131][0.542329,0.809578,-0.22464][0.923125,0.693658,0][0.935777,0.341322,-0.00927763][0.587013,0.809578,0][0.92893,0.671162,0][0.935777,0.341322,-0.00927763][0.587013,0.809578,0][0.92893,0.671162,0][1.23855,0.0400262,-0.0092776][0.859492,0.511149,0][0.951392,0.67999,0][1.14412,0.0400262,-0.483997][0.794067,0.511149,-0.328913][0.943714,0.709749,0][0.864397,0.341322,-0.368131][0.542329,0.809578,-0.22464][0.687824,0.307992,0][0.2348,0.659853,-0.107343][0.391211,0.905922,-0.162045][0.716744,0.34191,0][0.254306,0.659853,-0.00927768][0.423444,0.905922,-2.03745e-007][0.711803,0.34616,0][0.254306,0.659853,-0.00927768][0.423444,0.905922,-2.03745e-007][0.711803,0.34616,0][0.935777,0.341322,-0.00927763][0.587013,0.809578,0][0.669742,0.323546,0][0.864397,0.341322,-0.368131][0.542329,0.809578,-0.22464][0.687824,0.307992,0][0.795118,0.341322,-0.00927763][-0.585636,-0.810574,0][0.320495,0.891296,0][-0.00195171,0.61885,-0.0092777][-1.34419e-007,-1,0][0.277791,0.855777,0][0.734445,0.341322,-0.314303][-0.541057,-0.810574,0.224113][0.327763,0.87237,0][0.734445,0.341322,-0.314303][-0.541057,-0.810574,0.224113][0.782547,0.01,0][0.972212,0.0400262,-0.412789][-0.821098,-0.458393,0.34011][0.790063,0.0306065,0][1.05248,0.0400262,-0.0092776][-0.88875,-0.458393,0][0.762157,0.0315509,0][1.05248,0.0400262,-0.0092776][-0.88875,-0.458393,0][0.762157,0.0315509,0][0.795118,0.341322,-0.00927763][-0.585636,-0.810574,0][0.761452,0.0107139,0][0.734445,0.341322,-0.314303][-0.541057,-0.810574,0.224113][0.782547,0.01,0][0.972212,0.0400262,-0.412789][-0.821098,-0.458393,0.34011][0.790063,0.0306065,0][1.06278,-0.314304,-0.450303][-0.891343,-0.26305,0.369206][0.793487,0.0550235,0][1.1505,-0.314305,-0.00927762][-0.964782,-0.26305,1.46762e-007][0.762986,0.0560557,0][1.1505,-0.314305,-0.00927762][-0.964782,-0.26305,1.46762e-007][0.762986,0.0560557,0][1.05248,0.0400262,-0.0092776][-0.88875,-0.458393,0][0.762157,0.0315509,0][0.972212,0.0400262,-0.412789][-0.821098,-0.458393,0.34011][0.790063,0.0306065,0][1.06278,-0.314304,-0.450303][-0.891343,-0.26305,0.369206][0.793487,0.0550235,0][1.15081,-0.668635,-0.486766][-0.90932,-0.176835,0.376652][0.796838,0.079443,0][1.24579,-0.668635,-0.00927753][-0.984241,-0.176835,0][0.763815,0.0805605,0][1.24579,-0.668635,-0.00927753][-0.984241,-0.176835,0][0.763815,0.0805605,0][1.1505,-0.314305,-0.00927762][-0.964782,-0.26305,1.46762e-007][0.762986,0.0560557,0][1.06278,-0.314304,-0.450303][-0.891343,-0.26305,0.369206][0.793487,0.0550235,0][1.15081,-0.668635,-0.486766][-0.90932,-0.176835,0.376652][0.796838,0.079443,0][1.19794,-1.19582,-0.50629][-0.916068,-0.129768,0.379447][0.799422,0.115856,0][1.2968,-1.19582,-0.00927753][-0.991544,-0.129768,0][0.765049,0.117019,0][1.2968,-1.19582,-0.00927753][-0.991544,-0.129768,0][0.765049,0.117019,0][1.24579,-0.668635,-0.00927753][-0.984241,-0.176835,0][0.763815,0.0805605,0][1.15081,-0.668635,-0.486766][-0.90932,-0.176835,0.376652][0.796838,0.079443,0][1.19794,-1.19582,-0.50629][-0.916068,-0.129768,0.379447][0.799422,0.115856,0][1.26171,-1.61625,-0.532705][-0.861634,-0.360844,0.3569][0.802232,0.14487,0][1.36583,-1.61625,-0.0092775][-0.932626,-0.360844,0][0.766033,0.146095,0][1.36583,-1.61625,-0.0092775][-0.932626,-0.360844,0][0.766033,0.146095,0][1.2968,-1.19582,-0.00927753][-0.991544,-0.129768,0][0.765049,0.117019,0][1.19794,-1.19582,-0.50629][-0.916068,-0.129768,0.379447][0.799422,0.115856,0][1.26171,-1.61625,-0.532705][-0.861634,-0.360844,0.3569][0.802232,0.14487,0][1.48627,-2.00582,-0.625721][-0.635008,-0.726347,0.263029][0.809577,0.171595,0][1.60889,-2.00582,-0.00927742][-0.687328,-0.726347,0][0.766945,0.173037,0][1.60889,-2.00582,-0.00927742][-0.687328,-0.726347,0][0.766945,0.173037,0][1.36583,-1.61625,-0.0092775][-0.932626,-0.360844,0][0.766033,0.146095,0][1.26171,-1.61625,-0.532705][-0.861634,-0.360844,0.3569][0.802232,0.14487,0][1.48627,-2.00582,-0.625721][-0.635008,-0.726347,0.263029][0.604575,0.0138818,0][1.82667,-2.22919,-0.766719][-0.815731,-0.469484,0.337887][0.62813,0.01,0][1.97734,-2.22919,-0.00927749][-0.882941,-0.469484,0][0.638556,0.0592523,0][1.97734,-2.22919,-0.00927749][-0.882941,-0.469484,0][0.638556,0.0592523,0][1.60889,-2.00582,-0.00927742][-0.687328,-0.726347,0][0.61306,0.0539657,0][1.48627,-2.00582,-0.625721][-0.635008,-0.726347,0.263029][0.604575,0.0138818,0][1.82667,-2.22919,-0.766719][-0.815731,-0.469484,0.337887][0.819851,0.186713,0][1.82808,-2.44029,-0.7673][-1.30487,-0.0110724,0.871886][0.820385,0.20131,0][1.97886,-2.44029,-0.00927744][-1.5392,-0.0110727,0.306166][0.767962,0.203085,0][1.97886,-2.44029,-0.00927744][-1.5392,-0.0110727,0.306166][0.767962,0.203085,0][1.97734,-2.22919,-0.00927749][-0.882941,-0.469484,0][0.767468,0.188486,0][1.82667,-2.22919,-0.766719][-0.815731,-0.469484,0.337887][0.819851,0.186713,0][1.82808,-2.44029,-0.7673][-1.30487,-0.0110724,0.871886][0.297889,0.0678583,0][2.15102,-2.44029,-0.901069][1.30465,0.0130251,-0.87174][0.320236,0.0591601,0][2.32841,-2.44029,-0.00927743][1.53894,0.0130237,-0.306115][0.332511,0.117148,0][2.32841,-2.44029,-0.00927743][1.53894,0.0130237,-0.306115][0.332511,0.117148,0][1.97886,-2.44029,-0.00927744][-1.5392,-0.0110727,0.306166][0.308323,0.117148,0][1.82808,-2.44029,-0.7673][-1.30487,-0.0110724,0.871886][0.297889,0.0678583,0][2.32841,-2.44029,-0.00927743][1.53894,0.0130237,-0.306115][0.875698,0.899273,0][2.32663,-2.22919,-0.00927748][0.867553,0.497344,0][0.875647,0.884666,0][2.14937,-2.22919,0.881831][0.801515,0.497344,0.331998][0.937309,0.884448,0][2.14937,-2.22919,0.881831][0.801515,0.497344,0.331998][0.937309,0.884448,0][2.15102,-2.44029,0.882514][1.53894,0.0130243,0.306115][0.937408,0.899055,0][2.32841,-2.44029,-0.00927743][1.53894,0.0130237,-0.306115][0.875698,0.899273,0][2.32663,-2.22919,-0.00927748][0.867553,0.497344,0][0.332264,0.452214,0][1.89316,-2.00582,-0.00927741][0.63222,0.774789,0][0.302269,0.457501,0][1.7489,-2.00582,0.71595][0.584095,0.774789,0.24194][0.292287,0.410343,0][1.7489,-2.00582,0.71595][0.584095,0.774789,0.24194][0.292287,0.410343,0][2.14937,-2.22919,0.881831][0.801515,0.497344,0.331998][0.319998,0.39427,0][2.32663,-2.22919,-0.00927748][0.867553,0.497344,0][0.332264,0.452214,0][1.89316,-2.00582,-0.00927741][0.63222,0.774789,0][0.443215,0.883765,0][1.6072,-1.61625,-0.00927749][0.911723,0.410806,0][0.44312,0.856807,0][1.48471,-1.61625,0.606519][0.842322,0.410806,0.348901][0.485731,0.856657,0][1.48471,-1.61625,0.606519][0.842322,0.410806,0.348901][0.485731,0.856657,0][1.7489,-2.00582,0.71595][0.584095,0.774789,0.24194][0.493399,0.883587,0][1.89316,-2.00582,-0.00927741][0.63222,0.774789,0][0.443215,0.883765,0][1.6072,-1.61625,-0.00927749][0.911723,0.410806,0][0.44312,0.856807,0][1.526,-1.19582,-0.00927747][0.988346,0.152222,0][0.443017,0.827715,0][1.40969,-1.19582,0.575443][0.913113,0.152222,0.378224][0.483478,0.827572,0][1.40969,-1.19582,0.575443][0.913113,0.152222,0.378224][0.483478,0.827572,0][1.48471,-1.61625,0.606519][0.842322,0.410806,0.348901][0.485731,0.856657,0][1.6072,-1.61625,-0.00927749][0.911723,0.410806,0][0.44312,0.856807,0][1.526,-1.19582,-0.00927747][0.988346,0.152222,0][0.443017,0.827715,0][1.46597,-0.668635,-0.0092776][0.978563,0.205946,0][0.442888,0.791235,0][1.35424,-0.668635,0.552474][0.904074,0.205947,0.37448][0.48176,0.791098,0][1.35424,-0.668635,0.552474][0.904074,0.205947,0.37448][0.48176,0.791098,0][1.40969,-1.19582,0.575443][0.913113,0.152222,0.378224][0.483478,0.827572,0][1.526,-1.19582,-0.00927747][0.988346,0.152222,0][0.443017,0.827715,0][1.46597,-0.668635,-0.0092776][0.978563,0.205946,0][0.442888,0.791235,0][1.35388,-0.314305,-0.00927756][0.952219,0.305416,0][0.442801,0.766717,0][1.25067,-0.314305,0.509576][0.879736,0.305416,0.364399][0.478705,0.76659,0][1.25067,-0.314305,0.509576][0.879736,0.305416,0.364399][0.478705,0.76659,0][1.35424,-0.668635,0.552474][0.904074,0.205947,0.37448][0.48176,0.791098,0][1.46597,-0.668635,-0.0092776][0.978563,0.205946,0][0.442888,0.791235,0][1.35388,-0.314305,-0.00927756][0.952219,0.305416,0][0.442801,0.766717,0][1.23855,0.0400262,-0.0092776][0.859492,0.511149,0][0.442715,0.742198,0][1.14412,0.0400263,0.465442][0.794067,0.511149,0.328913][0.475564,0.742082,0][1.14412,0.0400263,0.465442][0.794067,0.511149,0.328913][0.475564,0.742082,0][1.25067,-0.314305,0.509576][0.879736,0.305416,0.364399][0.478705,0.76659,0][1.35388,-0.314305,-0.00927756][0.952219,0.305416,0][0.442801,0.766717,0][1.23855,0.0400262,-0.0092776][0.859492,0.511149,0][0.64876,0.316504,0][0.935777,0.341322,-0.00927763][0.587013,0.809578,0][0.669742,0.323546,0][0.864397,0.341322,0.349576][0.542329,0.809578,0.22464][0.659512,0.345092,0][0.864397,0.341322,0.349576][0.542329,0.809578,0.22464][0.659512,0.345092,0][1.14412,0.0400263,0.465442][0.794067,0.511149,0.328913][0.635228,0.345007,0][1.23855,0.0400262,-0.0092776][0.859492,0.511149,0][0.64876,0.316504,0][0.935777,0.341322,-0.00927763][0.587013,0.809578,0][0.669742,0.323546,0][0.254306,0.659853,-0.00927768][0.423444,0.905922,-2.03745e-007][0.711803,0.34616,0][0.2348,0.659853,0.088788][0.391211,0.905923,0.162045][0.709007,0.352048,0][0.2348,0.659853,0.088788][0.391211,0.905923,0.162045][0.709007,0.352048,0][0.864397,0.341322,0.349576][0.542329,0.809578,0.22464][0.659512,0.345092,0][0.935777,0.341322,-0.00927763][0.587013,0.809578,0][0.669742,0.323546,0][0.734445,0.341322,0.295748][-0.541057,-0.810574,-0.224113][0.306181,0.905653,0][-0.00195171,0.61885,-0.0092777][-1.34419e-007,-1,0][0.277791,0.855777,0][0.795118,0.341322,-0.00927763][-0.585636,-0.810574,0][0.320495,0.891296,0][0.795118,0.341322,-0.00927763][-0.585636,-0.810574,0][0.761452,0.0107139,0][1.05248,0.0400262,-0.0092776][-0.88875,-0.458393,0][0.762157,0.0315509,0][0.972212,0.0400263,0.394234][-0.821097,-0.458393,-0.34011][0.734251,0.0324953,0][0.972212,0.0400263,0.394234][-0.821097,-0.458393,-0.34011][0.734251,0.0324953,0][0.734445,0.341322,0.295748][-0.541057,-0.810574,-0.224113][0.740357,0.0114278,0][0.795118,0.341322,-0.00927763][-0.585636,-0.810574,0][0.761452,0.0107139,0][1.05248,0.0400262,-0.0092776][-0.88875,-0.458393,0][0.762157,0.0315509,0][1.1505,-0.314305,-0.00927762][-0.964782,-0.26305,1.46762e-007][0.762986,0.0560557,0][1.06278,-0.314305,0.431748][-0.891342,-0.26305,-0.369206][0.732486,0.0570879,0][1.06278,-0.314305,0.431748][-0.891342,-0.26305,-0.369206][0.732486,0.0570879,0][0.972212,0.0400263,0.394234][-0.821097,-0.458393,-0.34011][0.734251,0.0324953,0][1.05248,0.0400262,-0.0092776][-0.88875,-0.458393,0][0.762157,0.0315509,0][1.1505,-0.314305,-0.00927762][-0.964782,-0.26305,1.46762e-007][0.762986,0.0560557,0][1.24579,-0.668635,-0.00927753][-0.984241,-0.176835,0][0.763815,0.0805605,0][1.15081,-0.668635,0.468211][-0.90932,-0.176835,-0.376653][0.730793,0.0816781,0][1.15081,-0.668635,0.468211][-0.90932,-0.176835,-0.376653][0.730793,0.0816781,0][1.06278,-0.314305,0.431748][-0.891342,-0.26305,-0.369206][0.732486,0.0570879,0][1.1505,-0.314305,-0.00927762][-0.964782,-0.26305,1.46762e-007][0.762986,0.0560557,0][1.24579,-0.668635,-0.00927753][-0.984241,-0.176835,0][0.763815,0.0805605,0][1.2968,-1.19582,-0.00927753][-0.991544,-0.129768,0][0.765049,0.117019,0][1.19794,-1.19582,0.487735][-0.916068,-0.129768,-0.379448][0.730677,0.118183,0][1.19794,-1.19582,0.487735][-0.916068,-0.129768,-0.379448][0.730677,0.118183,0][1.15081,-0.668635,0.468211][-0.90932,-0.176835,-0.376653][0.730793,0.0816781,0][1.24579,-0.668635,-0.00927753][-0.984241,-0.176835,0][0.763815,0.0805605,0][1.2968,-1.19582,-0.00927753][-0.991544,-0.129768,0][0.765049,0.117019,0][1.36583,-1.61625,-0.0092775][-0.932626,-0.360844,0][0.766033,0.146095,0][1.26171,-1.61625,0.514149][-0.861634,-0.360844,-0.356901][0.729834,0.14732,0][1.26171,-1.61625,0.514149][-0.861634,-0.360844,-0.356901][0.729834,0.14732,0][1.19794,-1.19582,0.487735][-0.916068,-0.129768,-0.379448][0.730677,0.118183,0][1.2968,-1.19582,-0.00927753][-0.991544,-0.129768,0][0.765049,0.117019,0][1.36583,-1.61625,-0.0092775][-0.932626,-0.360844,0][0.766033,0.146095,0][1.60889,-2.00582,-0.00927742][-0.687328,-0.726347,0][0.766945,0.173037,0][1.48627,-2.00582,0.607166][-0.635008,-0.726347,-0.263029][0.724313,0.17448,0][1.48627,-2.00582,0.607166][-0.635008,-0.726347,-0.263029][0.724313,0.17448,0][1.26171,-1.61625,0.514149][-0.861634,-0.360844,-0.356901][0.729834,0.14732,0][1.36583,-1.61625,-0.0092775][-0.932626,-0.360844,0][0.766033,0.146095,0][1.60889,-2.00582,-0.00927742][-0.687328,-0.726347,0][0.61306,0.0539657,0][1.97734,-2.22919,-0.00927749][-0.882941,-0.469484,0][0.638556,0.0592523,0][1.82667,-2.22919,0.748164][-0.815731,-0.469484,-0.337887][0.62813,0.108505,0][1.82667,-2.22919,0.748164][-0.815731,-0.469484,-0.337887][0.62813,0.108505,0][1.48627,-2.00582,0.607166][-0.635008,-0.726347,-0.263029][0.604575,0.0940496,0][1.60889,-2.00582,-0.00927742][-0.687328,-0.726347,0][0.61306,0.0539657,0][1.97734,-2.22919,-0.00927749][-0.882941,-0.469484,0][0.767468,0.188486,0][1.97886,-2.44029,-0.00927744][-1.5392,-0.0110727,0.306166][0.767962,0.203085,0][1.82808,-2.44029,0.748746][-1.5392,-0.0110718,-0.306166][0.715539,0.204859,0][1.82808,-2.44029,0.748746][-1.5392,-0.0110718,-0.306166][0.715539,0.204859,0][1.82667,-2.22919,0.748164][-0.815731,-0.469484,-0.337887][0.715085,0.190258,0][1.97734,-2.22919,-0.00927749][-0.882941,-0.469484,0][0.767468,0.188486,0][1.97886,-2.44029,-0.00927744][-1.5392,-0.0110727,0.306166][0.308323,0.117148,0][2.32841,-2.44029,-0.00927743][1.53894,0.0130237,-0.306115][0.332511,0.117148,0][2.15102,-2.44029,0.882514][1.53894,0.0130243,0.306115][0.320236,0.175137,0][2.15102,-2.44029,0.882514][1.53894,0.0130243,0.306115][0.320236,0.175137,0][1.82808,-2.44029,0.748746][-1.5392,-0.0110718,-0.306166][0.297889,0.166438,0][1.97886,-2.44029,-0.00927744][-1.5392,-0.0110727,0.306166][0.308323,0.117148,0][2.15102,-2.44029,0.882514][1.53894,0.0130243,0.306115][0.937408,0.899055,0][2.14937,-2.22919,0.881831][0.801515,0.497344,0.331998][0.937309,0.884448,0][1.6446,-2.22919,1.63728][0.613453,0.497344,0.613453][0.989583,0.884263,0][1.6446,-2.22919,1.63728][0.613453,0.497344,0.613453][0.989583,0.884263,0][1.64586,-2.44029,1.63854][1.30465,0.0130234,0.871741][0.989722,0.89887,0][2.15102,-2.44029,0.882514][1.53894,0.0130243,0.306115][0.937408,0.899055,0][2.14937,-2.22919,0.881831][0.801515,0.497344,0.331998][0.319998,0.39427,0][1.7489,-2.00582,0.71595][0.584095,0.774789,0.24194][0.292287,0.410343,0][1.33809,-2.00582,1.33077][0.447047,0.774789,0.447047][0.26386,0.370365,0][1.33809,-2.00582,1.33077][0.447047,0.774789,0.447047][0.26386,0.370365,0][1.6446,-2.22919,1.63728][0.613453,0.497344,0.613453][0.285069,0.345148,0][2.14937,-2.22919,0.881831][0.801515,0.497344,0.331998][0.319998,0.39427,0][1.7489,-2.00582,0.71595][0.584095,0.774789,0.24194][0.397474,0.577211,0][1.48471,-1.61625,0.606519][0.842322,0.410806,0.348901][0.364384,0.57238,0][1.13589,-1.61625,1.12857][0.644685,0.410806,0.644685][0.365657,0.528952,0][1.13589,-1.61625,1.12857][0.644685,0.410806,0.644685][0.365657,0.528952,0][1.33809,-2.00582,1.33077][0.447047,0.774789,0.447047][0.398972,0.526066,0][1.7489,-2.00582,0.71595][0.584095,0.774789,0.24194][0.397474,0.577211,0][1.48471,-1.61625,0.606519][0.842322,0.410806,0.348901][0.485731,0.856657,0][1.40969,-1.19582,0.575443][0.913113,0.152222,0.378224][0.483478,0.827572,0][1.07847,-1.19582,1.07115][0.698866,0.152222,0.698866][0.517779,0.827451,0][1.07847,-1.19582,1.07115][0.698866,0.152222,0.698866][0.517779,0.827451,0][1.13589,-1.61625,1.12857][0.644685,0.410806,0.644685][0.521855,0.856529,0][1.48471,-1.61625,0.606519][0.842322,0.410806,0.348901][0.485731,0.856657,0][1.40969,-1.19582,0.575443][0.913113,0.152222,0.378224][0.483478,0.827572,0][1.35424,-0.668635,0.552474][0.904074,0.205947,0.37448][0.48176,0.791098,0][1.03603,-0.668635,1.0287][0.691949,0.205947,0.691949][0.514713,0.790981,0][1.03603,-0.668635,1.0287][0.691949,0.205947,0.691949][0.514713,0.790981,0][1.07847,-1.19582,1.07115][0.698866,0.152222,0.698866][0.517779,0.827451,0][1.40969,-1.19582,0.575443][0.913113,0.152222,0.378224][0.483478,0.827572,0][1.35424,-0.668635,0.552474][0.904074,0.205947,0.37448][0.48176,0.791098,0][1.25067,-0.314305,0.509576][0.879736,0.305416,0.364399][0.478705,0.76659,0][0.956764,-0.314305,0.949439][0.67332,0.305416,0.673321][0.509142,0.766482,0][0.956764,-0.314305,0.949439][0.67332,0.305416,0.673321][0.509142,0.766482,0][1.03603,-0.668635,1.0287][0.691949,0.205947,0.691949][0.514713,0.790981,0][1.35424,-0.668635,0.552474][0.904074,0.205947,0.37448][0.48176,0.791098,0][1.25067,-0.314305,0.509576][0.879736,0.305416,0.364399][0.478705,0.76659,0][1.14412,0.0400263,0.465442][0.794067,0.511149,0.328913][0.475564,0.742082,0][0.875216,0.0400263,0.86789][0.607753,0.511149,0.607753][0.503412,0.741983,0][0.875216,0.0400263,0.86789][0.607753,0.511149,0.607753][0.503412,0.741983,0][0.956764,-0.314305,0.949439][0.67332,0.305416,0.673321][0.509142,0.766482,0][1.25067,-0.314305,0.509576][0.879736,0.305416,0.364399][0.478705,0.76659,0][1.14412,0.0400263,0.465442][0.794067,0.511149,0.328913][0.635228,0.345007,0][0.864397,0.341322,0.349576][0.542329,0.809578,0.22464][0.659512,0.345092,0][0.661123,0.341322,0.653797][0.415081,0.809578,0.415081][0.658694,0.369351,0][0.661123,0.341322,0.653797][0.415081,0.809578,0.415081][0.658694,0.369351,0][0.875216,0.0400263,0.86789][0.607753,0.511149,0.607753][0.634145,0.377099,0][1.14412,0.0400263,0.465442][0.794067,0.511149,0.328913][0.635228,0.345007,0][0.864397,0.341322,0.349576][0.542329,0.809578,0.22464][0.659512,0.345092,0][0.2348,0.659853,0.088788][0.391211,0.905923,0.162045][0.709007,0.352048,0][0.17925,0.659853,0.171924][0.29942,0.905922,0.29942][0.708783,0.358678,0][0.17925,0.659853,0.171924][0.29942,0.905922,0.29942][0.708783,0.358678,0][0.661123,0.341322,0.653797][0.415081,0.809578,0.415081][0.658694,0.369351,0][0.864397,0.341322,0.349576][0.542329,0.809578,0.22464][0.659512,0.345092,0][0.561662,0.341322,0.554336][-0.414107,-0.810574,-0.414108][0.287001,0.913256,0][-0.00195171,0.61885,-0.0092777][-1.34419e-007,-1,0][0.277791,0.855777,0][0.734445,0.341322,0.295748][-0.541057,-0.810574,-0.224113][0.306181,0.905653,0][0.734445,0.341322,0.295748][-0.541057,-0.810574,-0.224113][0.306181,0.905653,0][0.972212,0.0400263,0.394234][-0.821097,-0.458393,-0.34011][0.312622,0.925961,0][0.743641,0.0400264,0.736315][-0.628441,-0.458393,-0.628441][0.28725,0.936019,0][0.743641,0.0400264,0.736315][-0.628441,-0.458393,-0.628441][0.28725,0.936019,0][0.561662,0.341322,0.554336][-0.414107,-0.810574,-0.414108][0.287001,0.913256,0][0.734445,0.341322,0.295748][-0.541057,-0.810574,-0.224113][0.306181,0.905653,0][0.972212,0.0400263,0.394234][-0.821097,-0.458393,-0.34011][0.734251,0.0324953,0][1.06278,-0.314305,0.431748][-0.891342,-0.26305,-0.369206][0.732486,0.0570879,0][0.812957,-0.314304,0.805631][-0.682204,-0.26305,-0.682204][0.706629,0.057963,0][0.812957,-0.314304,0.805631][-0.682204,-0.26305,-0.682204][0.706629,0.057963,0][0.743641,0.0400264,0.736315][-0.628441,-0.458393,-0.628441][0.710593,0.033296,0][0.972212,0.0400263,0.394234][-0.821097,-0.458393,-0.34011][0.734251,0.0324953,0][1.06278,-0.314305,0.431748][-0.891342,-0.26305,-0.369206][0.732486,0.0570879,0][1.15081,-0.668635,0.468211][-0.90932,-0.176835,-0.376653][0.730793,0.0816781,0][0.880332,-0.668635,0.873006][-0.695963,-0.176835,-0.695963][0.702798,0.0826255,0][0.880332,-0.668635,0.873006][-0.695963,-0.176835,-0.695963][0.702798,0.0826255,0][0.812957,-0.314304,0.805631][-0.682204,-0.26305,-0.682204][0.706629,0.057963,0][1.06278,-0.314305,0.431748][-0.891342,-0.26305,-0.369206][0.732486,0.0570879,0][1.15081,-0.668635,0.468211][-0.90932,-0.176835,-0.376653][0.730793,0.0816781,0][1.19794,-1.19582,0.487735][-0.916068,-0.129768,-0.379448][0.730677,0.118183,0][0.916408,-1.19582,0.909082][-0.701128,-0.129768,-0.701128][0.701537,0.119169,0][0.916408,-1.19582,0.909082][-0.701128,-0.129768,-0.701128][0.701537,0.119169,0][0.880332,-0.668635,0.873006][-0.695963,-0.176835,-0.695963][0.702798,0.0826255,0][1.15081,-0.668635,0.468211][-0.90932,-0.176835,-0.376653][0.730793,0.0816781,0][1.19794,-1.19582,0.487735][-0.916068,-0.129768,-0.379448][0.730677,0.118183,0][1.26171,-1.61625,0.514149][-0.861634,-0.360844,-0.356901][0.729834,0.14732,0][0.965215,-1.61625,0.95789][-0.659466,-0.360844,-0.659466][0.699146,0.148359,0][0.965215,-1.61625,0.95789][-0.659466,-0.360844,-0.659466][0.699146,0.148359,0][0.916408,-1.19582,0.909082][-0.701128,-0.129768,-0.701128][0.701537,0.119169,0][1.19794,-1.19582,0.487735][-0.916068,-0.129768,-0.379448][0.730677,0.118183,0][1.26171,-1.61625,0.514149][-0.861634,-0.360844,-0.356901][0.729834,0.14732,0][1.48627,-2.00582,0.607166][-0.635008,-0.726347,-0.263029][0.724313,0.17448,0][1.13709,-2.00582,1.12976][-0.486014,-0.726347,-0.486014][0.688171,0.175703,0][1.13709,-2.00582,1.12976][-0.486014,-0.726347,-0.486014][0.688171,0.175703,0][0.965215,-1.61625,0.95789][-0.659466,-0.360844,-0.659466][0.699146,0.148359,0][1.26171,-1.61625,0.514149][-0.861634,-0.360844,-0.356901][0.729834,0.14732,0][1.48627,-2.00582,0.607166][-0.635008,-0.726347,-0.263029][0.604575,0.0940496,0][1.82667,-2.22919,0.748164][-0.815731,-0.469484,-0.337887][0.62813,0.108505,0][1.39762,-2.22919,1.39029][-0.624334,-0.469484,-0.624334][0.598441,0.150259,0][1.39762,-2.22919,1.39029][-0.624334,-0.469484,-0.624334][0.598441,0.150259,0][1.13709,-2.00582,1.12976][-0.486014,-0.726347,-0.486014][0.580413,0.128031,0][1.48627,-2.00582,0.607166][-0.635008,-0.726347,-0.263029][0.604575,0.0940496,0][1.82667,-2.22919,0.748164][-0.815731,-0.469484,-0.337887][0.715085,0.190258,0][1.82808,-2.44029,0.748746][-1.5392,-0.0110718,-0.306166][0.715539,0.204859,0][1.39869,-2.44029,1.39137][-1.30487,-0.0110717,-0.871887][0.671096,0.206363,0][1.39869,-2.44029,1.39137][-1.30487,-0.0110717,-0.871887][0.671096,0.206363,0][1.39762,-2.22919,1.39029][-0.624334,-0.469484,-0.624334][0.670676,0.191761,0][1.82667,-2.22919,0.748164][-0.815731,-0.469484,-0.337887][0.715085,0.190258,0][1.82808,-2.44029,0.748746][-1.5392,-0.0110718,-0.306166][0.297889,0.166438,0][2.15102,-2.44029,0.882514][1.53894,0.0130243,0.306115][0.320236,0.175137,0][1.64586,-2.44029,1.63854][1.30465,0.0130234,0.871741][0.28528,0.224297,0][1.64586,-2.44029,1.63854][1.30465,0.0130234,0.871741][0.28528,0.224297,0][1.39869,-2.44029,1.39137][-1.30487,-0.0110717,-0.871887][0.268177,0.208224,0][1.82808,-2.44029,0.748746][-1.5392,-0.0110718,-0.306166][0.297889,0.166438,0][1.64586,-2.44029,1.63854][1.30465,0.0130234,0.871741][0.989724,0.767874,0][1.6446,-2.22919,1.63728][0.613453,0.497344,0.613453][0.989636,0.781571,0][0.889156,-2.22919,2.14205][0.331998,0.497344,0.801515][0.937361,0.793517,0][0.889156,-2.22919,2.14205][0.331998,0.497344,0.801515][0.937361,0.793517,0][0.889839,-2.44029,2.1437][0.871741,0.0130246,1.30465][0.937409,0.77983,0][1.64586,-2.44029,1.63854][1.30465,0.0130234,0.871741][0.989724,0.767874,0][1.6446,-2.22919,1.63728][0.613453,0.497344,0.613453][0.285069,0.345148,0][1.33809,-2.00582,1.33077][0.447047,0.774789,0.447047][0.26386,0.370365,0][0.723275,-2.00582,1.74158][0.24194,0.774789,0.584095][0.221316,0.343652,0][0.723275,-2.00582,1.74158][0.24194,0.774789,0.584095][0.221316,0.343652,0][0.889156,-2.22919,2.14205][0.331998,0.497344,0.801515][0.232794,0.312325,0][1.6446,-2.22919,1.63728][0.613453,0.497344,0.613453][0.285069,0.345148,0][1.33809,-2.00582,1.33077][0.447047,0.774789,0.447047][0.26386,0.370365,0][1.13589,-1.61625,1.12857][0.644685,0.410806,0.644685][0.249868,0.392733,0][0.613844,-1.61625,1.47739][0.348901,0.410806,0.842322][0.213744,0.370051,0][0.613844,-1.61625,1.47739][0.348901,0.410806,0.842322][0.213744,0.370051,0][0.723275,-2.00582,1.74158][0.24194,0.774789,0.584095][0.221316,0.343652,0][1.33809,-2.00582,1.33077][0.447047,0.774789,0.447047][0.26386,0.370365,0][1.13589,-1.61625,1.12857][0.644685,0.410806,0.644685][0.762002,0.52309,0][1.07847,-1.19582,1.07115][0.698866,0.152222,0.698866][0.758412,0.552409,0][0.582769,-1.19582,1.40236][0.378224,0.152222,0.913113][0.72906,0.548062,0][0.582769,-1.19582,1.40236][0.378224,0.152222,0.913113][0.72906,0.548062,0][0.613844,-1.61625,1.47739][0.348901,0.410806,0.842322][0.73109,0.518513,0][1.13589,-1.61625,1.12857][0.644685,0.410806,0.644685][0.762002,0.52309,0][1.07847,-1.19582,1.07115][0.698866,0.152222,0.698866][0.758412,0.552409,0][1.03603,-0.668635,1.0287][0.691949,0.205947,0.691949][0.756303,0.588783,0][0.559799,-0.668635,1.34691][0.37448,0.205947,0.904074][0.728104,0.584608,0][0.559799,-0.668635,1.34691][0.37448,0.205947,0.904074][0.728104,0.584608,0][0.582769,-1.19582,1.40236][0.378224,0.152222,0.913113][0.72906,0.548062,0][1.07847,-1.19582,1.07115][0.698866,0.152222,0.698866][0.758412,0.552409,0][1.03603,-0.668635,1.0287][0.691949,0.205947,0.691949][0.756303,0.588783,0][0.956764,-0.314305,0.949439][0.67332,0.305416,0.673321][0.750778,0.613897,0][0.516902,-0.314304,1.24335][0.364398,0.305416,0.879736][0.724733,0.610041,0][0.516902,-0.314304,1.24335][0.364398,0.305416,0.879736][0.724733,0.610041,0][0.559799,-0.668635,1.34691][0.37448,0.205947,0.904074][0.728104,0.584608,0][1.03603,-0.668635,1.0287][0.691949,0.205947,0.691949][0.756303,0.588783,0][0.956764,-0.314305,0.949439][0.67332,0.305416,0.673321][0.750778,0.613897,0][0.875216,0.0400263,0.86789][0.607753,0.511149,0.607753][0.745069,0.639041,0][0.472768,0.0400264,1.1368][0.328913,0.511149,0.794067][0.721239,0.635513,0][0.472768,0.0400264,1.1368][0.328913,0.511149,0.794067][0.721239,0.635513,0][0.516902,-0.314304,1.24335][0.364398,0.305416,0.879736][0.724733,0.610041,0][0.956764,-0.314305,0.949439][0.67332,0.305416,0.673321][0.750778,0.613897,0][0.875216,0.0400263,0.86789][0.607753,0.511149,0.607753][0.634145,0.377099,0][0.661123,0.341322,0.653797][0.415081,0.809578,0.415081][0.658694,0.369351,0][0.356902,0.341322,0.857071][0.22464,0.809578,0.542329][0.66741,0.39263,0][0.356902,0.341322,0.857071][0.22464,0.809578,0.542329][0.66741,0.39263,0][0.472768,0.0400264,1.1368][0.328913,0.511149,0.794067][0.645676,0.407894,0][0.875216,0.0400263,0.86789][0.607753,0.511149,0.607753][0.634145,0.377099,0][0.661123,0.341322,0.653797][0.415081,0.809578,0.415081][0.658694,0.369351,0][0.17925,0.659853,0.171924][0.29942,0.905922,0.29942][0.708783,0.358678,0][0.096114,0.659853,0.227474][0.162045,0.905923,0.391211][0.711165,0.365039,0][0.096114,0.659853,0.227474][0.162045,0.905923,0.391211][0.711165,0.365039,0][0.356902,0.341322,0.857071][0.22464,0.809578,0.542329][0.66741,0.39263,0][0.661123,0.341322,0.653797][0.415081,0.809578,0.415081][0.658694,0.369351,0][0.303073,0.341322,0.727119][-0.224113,-0.810574,-0.541057][0.265875,0.912948,0][-0.00195171,0.61885,-0.0092777][-1.34419e-007,-1,0][0.277791,0.855777,0][0.561662,0.341322,0.554336][-0.414107,-0.810574,-0.414108][0.287001,0.913256,0][0.561662,0.341322,0.554336][-0.414107,-0.810574,-0.414108][0.287001,0.913256,0][0.743641,0.0400264,0.736315][-0.628441,-0.458393,-0.628441][0.28725,0.936019,0][0.40156,0.0400264,0.964886][-0.34011,-0.458393,-0.821098][0.259302,0.935611,0][0.40156,0.0400264,0.964886][-0.34011,-0.458393,-0.821098][0.259302,0.935611,0][0.303073,0.341322,0.727119][-0.224113,-0.810574,-0.541057][0.265875,0.912948,0][0.561662,0.341322,0.554336][-0.414107,-0.810574,-0.414108][0.287001,0.913256,0][0.743641,0.0400264,0.736315][-0.628441,-0.458393,-0.628441][0.429382,0.431164,0][0.812957,-0.314304,0.805631][-0.682204,-0.26305,-0.682204][0.403956,0.432001,0][0.439074,-0.314304,1.05545][-0.369206,-0.26305,-0.891343][0.404552,0.400891,0][0.439074,-0.314304,1.05545][-0.369206,-0.26305,-0.891343][0.404552,0.400891,0][0.40156,0.0400264,0.964886][-0.34011,-0.458393,-0.821098][0.429927,0.4027,0][0.743641,0.0400264,0.736315][-0.628441,-0.458393,-0.628441][0.429382,0.431164,0][0.812957,-0.314304,0.805631][-0.682204,-0.26305,-0.682204][0.403956,0.432001,0][0.880332,-0.668635,0.873006][-0.695963,-0.176835,-0.695963][0.37858,0.432801,0][0.475536,-0.668635,1.14348][-0.376653,-0.176835,-0.90932][0.379225,0.399119,0][0.475536,-0.668635,1.14348][-0.376653,-0.176835,-0.90932][0.379225,0.399119,0][0.439074,-0.314304,1.05545][-0.369206,-0.26305,-0.891343][0.404552,0.400891,0][0.812957,-0.314304,0.805631][-0.682204,-0.26305,-0.682204][0.403956,0.432001,0][0.880332,-0.668635,0.873006][-0.695963,-0.176835,-0.695963][0.937307,0.350954,0][0.916408,-1.19582,0.909082][-0.701128,-0.129768,-0.701128][0.939804,0.38438,0][0.495061,-1.19582,1.19062][-0.379448,-0.129768,-0.916068][0.910648,0.377717,0][0.495061,-1.19582,1.19062][-0.379448,-0.129768,-0.916068][0.910648,0.377717,0][0.475536,-0.668635,1.14348][-0.376653,-0.176835,-0.90932][0.909297,0.344553,0][0.880332,-0.668635,0.873006][-0.695963,-0.176835,-0.695963][0.937307,0.350954,0][0.916408,-1.19582,0.909082][-0.701128,-0.129768,-0.701128][0.939804,0.38438,0][0.965215,-1.61625,0.95789][-0.659466,-0.360844,-0.659466][0.943181,0.410563,0][0.521475,-1.61625,1.25439][-0.356901,-0.360844,-0.861634][0.912475,0.403546,0][0.521475,-1.61625,1.25439][-0.356901,-0.360844,-0.861634][0.912475,0.403546,0][0.495061,-1.19582,1.19062][-0.379448,-0.129768,-0.916068][0.910648,0.377717,0][0.916408,-1.19582,0.909082][-0.701128,-0.129768,-0.701128][0.939804,0.38438,0][0.965215,-1.61625,0.95789][-0.659466,-0.360844,-0.659466][0.568519,0.107635,0][1.13709,-2.00582,1.12976][-0.486014,-0.726347,-0.486014][0.580413,0.128031,0][0.614491,-2.00582,1.47895][-0.263029,-0.726347,-0.635008][0.54425,0.150737,0][0.614491,-2.00582,1.47895][-0.263029,-0.726347,-0.635008][0.54425,0.150737,0][0.521475,-1.61625,1.25439][-0.356901,-0.360844,-0.861634][0.537814,0.126915,0][0.965215,-1.61625,0.95789][-0.659466,-0.360844,-0.659466][0.568519,0.107635,0][1.13709,-2.00582,1.12976][-0.486014,-0.726347,-0.486014][0.580413,0.128031,0][1.39762,-2.22919,1.39029][-0.624334,-0.469484,-0.624334][0.598441,0.150259,0][0.755489,-2.22919,1.81935][-0.337887,-0.469484,-0.815731][0.554007,0.178158,0][0.755489,-2.22919,1.81935][-0.337887,-0.469484,-0.815731][0.554007,0.178158,0][0.614491,-2.00582,1.47895][-0.263029,-0.726347,-0.635008][0.54425,0.150737,0][1.13709,-2.00582,1.12976][-0.486014,-0.726347,-0.486014][0.580413,0.128031,0][1.39762,-2.22919,1.39029][-0.624334,-0.469484,-0.624334][0.864444,0.252203,0][1.39869,-2.44029,1.39137][-1.30487,-0.0110717,-0.871887][0.864519,0.265905,0][0.756071,-2.44029,1.82075][-0.871886,-0.0110733,-1.30487][0.820051,0.255742,0][0.756071,-2.44029,1.82075][-0.871886,-0.0110733,-1.30487][0.820051,0.255742,0][0.755489,-2.22919,1.81935][-0.337887,-0.469484,-0.815731][0.820011,0.242049,0][1.39762,-2.22919,1.39029][-0.624334,-0.469484,-0.624334][0.864444,0.252203,0][1.39869,-2.44029,1.39137][-1.30487,-0.0110717,-0.871887][0.268177,0.208224,0][1.64586,-2.44029,1.63854][1.30465,0.0130234,0.871741][0.28528,0.224297,0][0.889839,-2.44029,2.1437][0.871741,0.0130246,1.30465][0.232965,0.257144,0][0.889839,-2.44029,2.1437][0.871741,0.0130246,1.30465][0.232965,0.257144,0][0.756071,-2.44029,1.82075][-0.871886,-0.0110733,-1.30487][0.223709,0.236145,0][1.39869,-2.44029,1.39137][-1.30487,-0.0110717,-0.871887][0.268177,0.208224,0][0.889839,-2.44029,2.1437][0.871741,0.0130246,1.30465][0.937409,0.77983,0][0.889156,-2.22919,2.14205][0.331998,0.497344,0.801515][0.937361,0.793517,0][-0.00195207,-2.22919,2.3193][0,0.497344,0.867554][0.875699,0.797712,0][-0.00195207,-2.22919,2.3193][0,0.497344,0.867554][0.875699,0.797712,0][-0.00195211,-2.44029,2.32109][-0.306115,0.0130239,1.53894][0.875699,0.784028,0][0.889839,-2.44029,2.1437][0.871741,0.0130246,1.30465][0.937409,0.77983,0][0.889156,-2.22919,2.14205][0.331998,0.497344,0.801515][0.232794,0.312325,0][0.723275,-2.00582,1.74158][0.24194,0.774789,0.584095][0.221316,0.343652,0][-0.00195205,-2.00582,1.88583][0,0.774789,0.63222][0.171132,0.334272,0][-0.00195205,-2.00582,1.88583][0,0.774789,0.63222][0.171132,0.334272,0][-0.00195207,-2.22919,2.3193][0,0.497344,0.867554][0.171132,0.3008,0][0.889156,-2.22919,2.14205][0.331998,0.497344,0.801515][0.232794,0.312325,0][0.723275,-2.00582,1.74158][0.24194,0.774789,0.584095][0.221316,0.343652,0][0.613844,-1.61625,1.47739][0.348901,0.410806,0.842322][0.213744,0.370051,0][-0.00195201,-1.61625,1.59988][1.87085e-007,0.410806,0.911723][0.171132,0.362086,0][-0.00195201,-1.61625,1.59988][1.87085e-007,0.410806,0.911723][0.171132,0.362086,0][-0.00195205,-2.00582,1.88583][0,0.774789,0.63222][0.171132,0.334272,0][0.723275,-2.00582,1.74158][0.24194,0.774789,0.584095][0.221316,0.343652,0][0.613844,-1.61625,1.47739][0.348901,0.410806,0.842322][0.73109,0.518513,0][0.582769,-1.19582,1.40236][0.378224,0.152222,0.913113][0.72906,0.548062,0][-0.00195195,-1.19582,1.51867][0,0.152222,0.988346][0.690864,0.546536,0][-0.00195195,-1.19582,1.51867][0,0.152222,0.988346][0.690864,0.546536,0][-0.00195201,-1.61625,1.59988][1.87085e-007,0.410806,0.911723][0.690864,0.516906,0][0.613844,-1.61625,1.47739][0.348901,0.410806,0.842322][0.73109,0.518513,0][0.582769,-1.19582,1.40236][0.378224,0.152222,0.913113][0.72906,0.548062,0][0.559799,-0.668635,1.34691][0.37448,0.205947,0.904074][0.728104,0.584608,0][-0.00195187,-0.668635,1.45865][1.7443e-007,0.205947,0.978563][0.691408,0.583141,0][-0.00195187,-0.668635,1.45865][1.7443e-007,0.205947,0.978563][0.691408,0.583141,0][-0.00195195,-1.19582,1.51867][0,0.152222,0.988346][0.690864,0.546536,0][0.582769,-1.19582,1.40236][0.378224,0.152222,0.913113][0.72906,0.548062,0][0.559799,-0.668635,1.34691][0.37448,0.205947,0.904074][0.728104,0.584608,0][0.516902,-0.314304,1.24335][0.364398,0.305416,0.879736][0.724733,0.610041,0][-0.0019518,-0.314304,1.34655][1.37376e-007,0.305417,0.952219][0.69084,0.608686,0][-0.0019518,-0.314304,1.34655][1.37376e-007,0.305417,0.952219][0.69084,0.608686,0][-0.00195187,-0.668635,1.45865][1.7443e-007,0.205947,0.978563][0.691408,0.583141,0][0.559799,-0.668635,1.34691][0.37448,0.205947,0.904074][0.728104,0.584608,0][0.516902,-0.314304,1.24335][0.364398,0.305416,0.879736][0.724733,0.610041,0][0.472768,0.0400264,1.1368][0.328913,0.511149,0.794067][0.721239,0.635513,0][-0.00195176,0.0400265,1.23122][0,0.511149,0.859492][0.690229,0.634274,0][-0.00195176,0.0400265,1.23122][0,0.511149,0.859492][0.690229,0.634274,0][-0.0019518,-0.314304,1.34655][1.37376e-007,0.305417,0.952219][0.69084,0.608686,0][0.516902,-0.314304,1.24335][0.364398,0.305416,0.879736][0.724733,0.610041,0][0.472768,0.0400264,1.1368][0.328913,0.511149,0.794067][0.645676,0.407894,0][0.356902,0.341322,0.857071][0.22464,0.809578,0.542329][0.66741,0.39263,0][-0.00195174,0.341322,0.928451][0,0.809578,0.587013][0.684335,0.411384,0][-0.00195174,0.341322,0.928451][0,0.809578,0.587013][0.684335,0.411384,0][-0.00195176,0.0400265,1.23122][0,0.511149,0.859492][0.668065,0.432703,0][0.472768,0.0400264,1.1368][0.328913,0.511149,0.794067][0.645676,0.407894,0][0.356902,0.341322,0.857071][0.22464,0.809578,0.542329][0.66741,0.39263,0][0.096114,0.659853,0.227474][0.162045,0.905923,0.391211][0.711165,0.365039,0][-0.00195169,0.659853,0.24698][2.11516e-007,0.905923,0.423443][0.71579,0.370164,0][-0.00195169,0.659853,0.24698][2.11516e-007,0.905923,0.423443][0.71579,0.370164,0][-0.00195174,0.341322,0.928451][0,0.809578,0.587013][0.684335,0.411384,0][0.356902,0.341322,0.857071][0.22464,0.809578,0.542329][0.66741,0.39263,0][-0.00195175,0.341322,0.787792][-1.774e-007,-0.810574,-0.585636][0.246019,0.904775,0][-0.00195171,0.61885,-0.0092777][-1.34419e-007,-1,0][0.277791,0.855777,0][0.303073,0.341322,0.727119][-0.224113,-0.810574,-0.541057][0.265875,0.912948,0][0.303073,0.341322,0.727119][-0.224113,-0.810574,-0.541057][0.265875,0.912948,0][0.40156,0.0400264,0.964886][-0.34011,-0.458393,-0.821098][0.259302,0.935611,0][-0.00195176,0.0400264,1.04515][-1.82922e-007,-0.458393,-0.88875][0.233035,0.924799,0][-0.00195176,0.0400264,1.04515][-1.82922e-007,-0.458393,-0.88875][0.233035,0.924799,0][-0.00195175,0.341322,0.787792][-1.774e-007,-0.810574,-0.585636][0.246019,0.904775,0][0.303073,0.341322,0.727119][-0.224113,-0.810574,-0.541057][0.265875,0.912948,0][0.40156,0.0400264,0.964886][-0.34011,-0.458393,-0.821098][0.904178,0.302699,0][0.439074,-0.314304,1.05545][-0.369206,-0.26305,-0.891343][0.906773,0.323596,0][-0.00195181,-0.314304,1.14318][0,-0.26305,-0.964782][0.876255,0.32152,0][-0.00195181,-0.314304,1.14318][0,-0.26305,-0.964782][0.876255,0.32152,0][-0.00195176,0.0400264,1.04515][-1.82922e-007,-0.458393,-0.88875][0.876255,0.3008,0][0.40156,0.0400264,0.964886][-0.34011,-0.458393,-0.821098][0.904178,0.302699,0][0.439074,-0.314304,1.05545][-0.369206,-0.26305,-0.891343][0.906773,0.323596,0][0.475536,-0.668635,1.14348][-0.376653,-0.176835,-0.90932][0.909297,0.344553,0][-0.00195188,-0.668635,1.23846][0,-0.176835,-0.98424][0.876255,0.342305,0][-0.00195188,-0.668635,1.23846][0,-0.176835,-0.98424][0.876255,0.342305,0][-0.00195181,-0.314304,1.14318][0,-0.26305,-0.964782][0.876255,0.32152,0][0.439074,-0.314304,1.05545][-0.369206,-0.26305,-0.891343][0.906773,0.323596,0][0.475536,-0.668635,1.14348][-0.376653,-0.176835,-0.90932][0.909297,0.344553,0][0.495061,-1.19582,1.19062][-0.379448,-0.129768,-0.916068][0.910648,0.377717,0][-0.00195196,-1.19582,1.28948][0,-0.129768,-0.991544][0.876255,0.375377,0][-0.00195196,-1.19582,1.28948][0,-0.129768,-0.991544][0.876255,0.375377,0][-0.00195188,-0.668635,1.23846][0,-0.176835,-0.98424][0.876255,0.342305,0][0.475536,-0.668635,1.14348][-0.376653,-0.176835,-0.90932][0.909297,0.344553,0][0.495061,-1.19582,1.19062][-0.379448,-0.129768,-0.916068][0.910648,0.377717,0][0.521475,-1.61625,1.25439][-0.356901,-0.360844,-0.861634][0.912475,0.403546,0][-0.00195202,-1.61625,1.3585][-2.24372e-007,-0.360844,-0.932626][0.876255,0.401082,0][-0.00195202,-1.61625,1.3585][-2.24372e-007,-0.360844,-0.932626][0.876255,0.401082,0][-0.00195196,-1.19582,1.28948][0,-0.129768,-0.991544][0.876255,0.375377,0][0.495061,-1.19582,1.19062][-0.379448,-0.129768,-0.916068][0.910648,0.377717,0][0.521475,-1.61625,1.25439][-0.356901,-0.360844,-0.861634][0.537814,0.126915,0][0.614491,-2.00582,1.47895][-0.263029,-0.726347,-0.635008][0.54425,0.150737,0][-0.00195206,-2.00582,1.60157][-1.56785e-007,-0.726347,-0.687328][0.501594,0.15871,0][-0.00195206,-2.00582,1.60157][-1.56785e-007,-0.726347,-0.687328][0.501594,0.15871,0][-0.00195202,-1.61625,1.3585][-2.24372e-007,-0.360844,-0.932626][0.501594,0.133685,0][0.521475,-1.61625,1.25439][-0.356901,-0.360844,-0.861634][0.537814,0.126915,0][0.614491,-2.00582,1.47895][-0.263029,-0.726347,-0.635008][0.54425,0.150737,0][0.755489,-2.22919,1.81935][-0.337887,-0.469484,-0.815731][0.554007,0.178158,0][-0.00195209,-2.22919,1.97001][0,-0.469484,-0.882941][0.501594,0.187955,0][-0.00195209,-2.22919,1.97001][0,-0.469484,-0.882941][0.501594,0.187955,0][-0.00195206,-2.00582,1.60157][-1.56785e-007,-0.726347,-0.687328][0.501594,0.15871,0][0.614491,-2.00582,1.47895][-0.263029,-0.726347,-0.635008][0.54425,0.150737,0][0.755489,-2.22919,1.81935][-0.337887,-0.469484,-0.815731][0.820011,0.242049,0][0.756071,-2.44029,1.82075][-0.871886,-0.0110733,-1.30487][0.820051,0.255742,0][-0.00195212,-2.44029,1.97153][0.306165,-0.0110738,-1.5392][0.767598,0.252174,0][-0.00195212,-2.44029,1.97153][0.306165,-0.0110738,-1.5392][0.767598,0.252174,0][-0.00195209,-2.22919,1.97001][0,-0.469484,-0.882941][0.767598,0.238483,0][0.755489,-2.22919,1.81935][-0.337887,-0.469484,-0.815731][0.820011,0.242049,0][0.756071,-2.44029,1.82075][-0.871886,-0.0110733,-1.30487][0.223709,0.236145,0][0.889839,-2.44029,2.1437][0.871741,0.0130246,1.30465][0.232965,0.257144,0][-0.00195211,-2.44029,2.32109][-0.306115,0.0130239,1.53894][0.171256,0.268679,0][-0.00195211,-2.44029,2.32109][-0.306115,0.0130239,1.53894][0.171256,0.268679,0][-0.00195212,-2.44029,1.97153][0.306165,-0.0110738,-1.5392][0.171256,0.245949,0][0.756071,-2.44029,1.82075][-0.871886,-0.0110733,-1.30487][0.223709,0.236145,0][1.39869,-2.44029,-1.40992][-1.30487,-0.0110723,0.871886][0.864828,0.199806,0][1.39762,-2.22919,-1.40885][-1.92065,-1.20466,1.28334][0.864259,0.18521,0][1.64586,-2.44029,-1.65709][1.30465,0.0130247,-0.87174][0.881922,0.199228,0][1.6446,-2.22919,-1.65583][1.84747,1.2493,-1.23444][0.88134,0.184632,0][1.64586,-2.44029,-1.65709][1.30465,0.0130247,-0.87174][0.881922,0.199228,0][1.39762,-2.22919,-1.40885][-1.92065,-1.20466,1.28334][0.864259,0.18521,0][1.39762,-2.22919,-1.40885][-1.92065,-1.20466,1.28334][0.864259,0.18521,0][1.13709,-2.00582,-1.14832][-1.80066,-2.24461,1.20316][0.845719,0.170372,0][1.6446,-2.22919,-1.65583][1.84747,1.2493,-1.23444][0.88134,0.184632,0][1.13709,-2.00582,-1.14832][-1.80066,-2.24461,1.20316][0.845719,0.170372,0][0.965215,-1.61625,-0.976445][-2.45092,-1.11858,1.63765][0.832921,0.143832,0][1.33809,-2.00582,-1.34932][1.65677,2.395,-1.10702][0.85962,0.169901,0][1.33809,-2.00582,-1.34932][1.65677,2.395,-1.10702][0.85962,0.169901,0][1.6446,-2.22919,-1.65583][1.84747,1.2493,-1.23444][0.88134,0.184632,0][1.13709,-2.00582,-1.14832][-1.80066,-2.24461,1.20316][0.845719,0.170372,0][1.13589,-1.61625,-1.14712][2.39105,1.27084,-1.59765][0.870801,0.55043,0][1.33809,-2.00582,-1.34932][1.65677,2.395,-1.10702][0.838103,0.557437,0][0.965215,-1.61625,-0.976445][-2.45092,-1.11858,1.63765][0.877644,0.535194,0][0.965215,-1.61625,-0.976445][-2.45092,-1.11858,1.63765][0.877644,0.535194,0][0.916408,-1.19582,-0.927637][-2.60008,-0.401393,1.73732][0.906139,0.542756,0][1.13589,-1.61625,-1.14712][2.39105,1.27084,-1.59765][0.870801,0.55043,0][1.07847,-1.19582,-1.0897][2.59324,0.471128,-1.73275][0.899642,0.557223,0][1.13589,-1.61625,-1.14712][2.39105,1.27084,-1.59765][0.870801,0.55043,0][0.916408,-1.19582,-0.927637][-2.60008,-0.401393,1.73732][0.906139,0.542756,0][0.916408,-1.19582,-0.927637][-2.60008,-0.401393,1.73732][0.906139,0.542756,0][0.880332,-0.668635,-0.891561][-3.35453,-0.925522,2.91792][0.940864,0.55448,0][1.07847,-1.19582,-1.0897][2.59324,0.471128,-1.73275][0.899642,0.557223,0][1.03603,-0.668635,-1.04726][3.31913,1.07287,-2.88237][0.701,0.717641,0][1.07847,-1.19582,-1.0897][2.59324,0.471128,-1.73275][0.736284,0.727358,0][0.880332,-0.668635,-0.891561][-3.35453,-0.925522,2.91792][0.697315,0.727765,0][-1.64977,-2.44029,-1.65709][-1.30465,0.0130254,-0.87174][0.364384,0.709863,0][-1.64851,-2.22919,-1.65583][-1.84747,1.2493,-1.23444][0.36442,0.695255,0][-1.4026,-2.44029,-1.40992][1.30487,-0.0110728,0.871886][0.381488,0.709802,0][-1.64851,-2.22919,-1.65583][-1.84747,1.2493,-1.23444][0.36442,0.695255,0][-1.342,-2.00582,-1.34932][-1.65677,2.395,-1.10702][0.385575,0.679724,0][-1.40152,-2.22919,-1.40885][1.92065,-1.20466,1.28334][0.381511,0.695195,0][-1.40152,-2.22919,-1.40885][1.92065,-1.20466,1.28334][0.381511,0.695195,0][-1.4026,-2.44029,-1.40992][1.30487,-0.0110728,0.871886][0.381488,0.709802,0][-1.64851,-2.22919,-1.65583][-1.84747,1.2493,-1.23444][0.36442,0.695255,0][-1.14099,-2.00582,-1.14832][1.80066,-2.24461,1.20316][0.399484,0.679674,0][-1.40152,-2.22919,-1.40885][1.92065,-1.20466,1.28334][0.381511,0.695195,0][-1.342,-2.00582,-1.34932][-1.65677,2.395,-1.10702][0.385575,0.679724,0][-1.342,-2.00582,-1.34932][-1.65677,2.395,-1.10702][0.385575,0.679724,0][-1.1398,-1.61625,-1.14712][-2.39105,1.27084,-1.59765][0.399471,0.652717,0][-1.14099,-2.00582,-1.14832][1.80066,-2.24461,1.20316][0.399484,0.679674,0][-0.969119,-1.61625,-0.976445][2.45092,-1.11858,1.63765][0.411282,0.652675,0][-1.14099,-2.00582,-1.14832][1.80066,-2.24461,1.20316][0.399484,0.679674,0][-1.1398,-1.61625,-1.14712][-2.39105,1.27084,-1.59765][0.399471,0.652717,0][-1.1398,-1.61625,-1.14712][-2.39105,1.27084,-1.59765][0.399471,0.652717,0][-1.08238,-1.19582,-1.0897][-2.59324,0.471129,-1.73275][0.403342,0.62361,0][-0.969119,-1.61625,-0.976445][2.45092,-1.11858,1.63765][0.411282,0.652675,0][-0.920312,-1.19582,-0.927637][2.60008,-0.401394,1.73732][0.465622,0.935132,0][-0.969119,-1.61625,-0.976445][2.45092,-1.11858,1.63765][0.492399,0.947467,0][-1.08238,-1.19582,-1.0897][-2.59324,0.471129,-1.73275][0.461408,0.950421,0][-1.08238,-1.19582,-1.0897][-2.59324,0.471129,-1.73275][0.461408,0.950421,0][-1.03993,-0.668635,-1.04726][-3.31913,1.07287,-2.88237][0.427343,0.936724,0][-0.920312,-1.19582,-0.927637][2.60008,-0.401394,1.73732][0.465622,0.935132,0][-0.884236,-0.668635,-0.891561][3.35453,-0.925524,2.91792][0.416924,0.587082,0][-0.920312,-1.19582,-0.927637][2.60008,-0.401394,1.73732][0.414556,0.623571,0][-1.03993,-0.668635,-1.04726][-3.31913,1.07287,-2.88237][0.40615,0.58712,0][0.880332,-0.668635,-0.891561][-3.35453,-0.925522,2.91792][0.407692,0.0794517,0][0.475537,-0.668635,-1.16204][-1.10336,-0.775317,2.66375][0.41354,0.0468984,0][1.03603,-0.668635,-1.04726][3.31913,1.07287,-2.88237][0.421108,0.085663,0][0.475537,-0.668635,-1.16204][-1.10336,-0.775317,2.66375][0.41354,0.0468984,0][-0.00195188,-0.668635,-1.25702][-4.1719e-007,-0.775318,2.88322][0.406925,0.0139426,0][0.559799,-0.668635,-1.36546][0.814143,1.02658,-3.1751][0.427989,0.047365,0][0.559799,-0.668635,-1.36546][0.814143,1.02658,-3.1751][0.427989,0.047365,0][1.03603,-0.668635,-1.04726][3.31913,1.07287,-2.88237][0.421108,0.085663,0][0.475537,-0.668635,-1.16204][-1.10336,-0.775317,2.66375][0.41354,0.0468984,0][-1.03993,-0.668635,-1.04726][-3.31913,1.07287,-2.88237][0.511298,0.25034,0][-0.563703,-0.668635,-1.36546][-1.18984,0.896002,-3.1802][0.473284,0.258647,0][-0.884236,-0.668635,-0.891561][3.35453,-0.925524,2.91792][0.50459,0.237165,0][-0.47944,-0.668635,-1.16204][1.10336,-0.775318,2.66375][0.472278,0.244226,0][-0.884236,-0.668635,-0.891561][3.35453,-0.925524,2.91792][0.50459,0.237165,0][-0.563703,-0.668635,-1.36546][-1.18984,0.896002,-3.1802][0.473284,0.258647,0][-0.00195188,-0.668635,-1.25702][-4.1719e-007,-0.775318,2.88322][0.439098,0.238846,0][-0.47944,-0.668635,-1.16204][1.10336,-0.775318,2.66375][0.472278,0.244226,0][-0.563703,-0.668635,-1.36546][-1.18984,0.896002,-3.1802][0.473284,0.258647,0][0.559799,-0.668635,-1.36546][0.814143,1.02658,-3.1751][0.435965,0.464621,0][-0.00195188,-0.668635,-1.25702][-4.1719e-007,-0.775318,2.88322][0.474907,0.46358,0][-0.00195193,-1.03843,-1.4772][0.030098,0.0603636,-0.997723][0.47376,0.492815,0][-0.563703,-0.668635,-1.36546][-1.18984,0.896002,-3.1802][0.513649,0.467669,0][-0.00195193,-1.03843,-1.4772][0.030098,0.0603636,-0.997723][0.47376,0.492815,0][-0.00195188,-0.668635,-1.25702][-4.1719e-007,-0.775318,2.88322][0.474907,0.46358,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/IronHelm.mesh b/shareddata/charcustom/hats/fonts/IronHelm.mesh deleted file mode 100644 index a88ae3a..0000000 --- a/shareddata/charcustom/hats/fonts/IronHelm.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -710 -[0.096114,0.659853,0.227474][1.40569e-007,1,0][0.755749,0.176298,0][0.17925,0.659853,0.171924][-8.65437e-007,1,-1.29522e-006][0.750793,0.171382,0][0.2348,0.659853,0.0887881][4.36359e-007,1,0][0.748096,0.164942,0][0.096114,0.659853,0.227474][1.40569e-007,1,0][0.755749,0.176298,0][0.2348,0.659853,0.0887881][4.36359e-007,1,0][0.748096,0.164942,0][0.254306,0.659853,-0.00927765][3.25514e-007,1,0][0.748068,0.157961,0][0.096114,0.659853,0.227474][1.40569e-007,1,0][0.755749,0.176298,0][0.254306,0.659853,-0.00927765][3.25514e-007,1,0][0.748068,0.157961,0][0.2348,0.659853,-0.107343][1.91445e-007,1,0][0.750714,0.151501,0][0.096114,0.659853,0.227474][1.40569e-007,1,0][0.755749,0.176298,0][0.2348,0.659853,-0.107343][1.91445e-007,1,0][0.750714,0.151501,0][0.17925,0.659853,-0.190479][5.59101e-007,1,0][0.755631,0.146545,0][0.096114,0.659853,0.227474][1.40569e-007,1,0][0.755749,0.176298,0][0.17925,0.659853,-0.190479][5.59101e-007,1,0][0.755631,0.146545,0][0.096114,0.659853,-0.246029][2.56055e-007,1,0][0.76207,0.143848,0][0.096114,0.659853,0.227474][1.40569e-007,1,0][0.755749,0.176298,0][0.096114,0.659853,-0.246029][2.56055e-007,1,0][0.76207,0.143848,0][-0.00195169,0.659853,-0.265536][0,1,0][0.769051,0.14382,0][0.096114,0.659853,0.227474][1.40569e-007,1,0][0.755749,0.176298,0][-0.00195169,0.659853,-0.265536][0,1,0][0.769051,0.14382,0][-0.100017,0.659853,-0.246029][0,1,0][0.775511,0.146466,0][0.096114,0.659853,0.227474][1.40569e-007,1,0][0.755749,0.176298,0][-0.100017,0.659853,-0.246029][0,1,0][0.775511,0.146466,0][-0.183153,0.659853,-0.190479][2.29928e-007,1,-1.53633e-007][0.780467,0.151383,0][0.096114,0.659853,0.227474][1.40569e-007,1,0][0.755749,0.176298,0][-0.183153,0.659853,-0.190479][2.29928e-007,1,-1.53633e-007][0.780467,0.151383,0][-0.238703,0.659853,-0.107343][3.97922e-007,1,-2.19901e-007][0.783165,0.157822,0][0.096114,0.659853,0.227474][1.40569e-007,1,0][0.755749,0.176298,0][-0.238703,0.659853,-0.107343][3.97922e-007,1,-2.19901e-007][0.783165,0.157822,0][-0.25821,0.659853,-0.00927767][1.61492e-007,1,0][0.783192,0.164803,0][0.096114,0.659853,0.227474][1.40569e-007,1,0][0.755749,0.176298,0][-0.25821,0.659853,-0.00927767][1.61492e-007,1,0][0.783192,0.164803,0][-0.238703,0.659853,0.088788][2.05179e-007,1,0][0.780546,0.171263,0][0.096114,0.659853,0.227474][1.40569e-007,1,0][0.755749,0.176298,0][-0.238703,0.659853,0.088788][2.05179e-007,1,0][0.780546,0.171263,0][-0.183153,0.659853,0.171924][2.10983e-007,1,0][0.77563,0.176219,0][0.096114,0.659853,0.227474][1.40569e-007,1,0][0.755749,0.176298,0][-0.183153,0.659853,0.171924][2.10983e-007,1,0][0.77563,0.176219,0][-0.100017,0.659853,0.227474][0,1,9.96354e-007][0.769191,0.178916,0][-0.00195169,0.659853,0.24698][0,1,0][0.762209,0.178944,0][0.096114,0.659853,0.227474][1.40569e-007,1,0][0.755749,0.176298,0][-0.100017,0.659853,0.227474][0,1,9.96354e-007][0.769191,0.178916,0][-0.00195211,-2.44029,2.32109][-0.306115,0.0130239,1.53894][0.828322,0.805927,0][-0.00195207,-2.22919,2.3193][0,0.497344,0.867553][0.828322,0.791188,0][-0.89306,-2.22919,2.14205][-0.331998,0.497344,0.801515][0.89054,0.791188,0][-0.89306,-2.22919,2.14205][-0.331998,0.497344,0.801515][0.89054,0.791188,0][-0.893744,-2.44029,2.1437][-0.306115,0.0130245,1.53894][0.890588,0.805927,0][-0.00195211,-2.44029,2.32109][-0.306115,0.0130239,1.53894][0.828322,0.805927,0][-0.00195207,-2.22919,2.3193][0,0.497344,0.867553][0.172583,0.312516,0][-0.00195205,-2.00582,1.88583][0,0.774789,0.63222][0.172583,0.342781,0][-0.72718,-2.00582,1.74158][-0.24194,0.774789,0.584095][0.121947,0.352853,0][-0.72718,-2.00582,1.74158][-0.24194,0.774789,0.584095][0.121947,0.352853,0][-0.89306,-2.22919,2.14205][-0.331998,0.497344,0.801515][0.110365,0.324892,0][-0.00195207,-2.22919,2.3193][0,0.497344,0.867553][0.172583,0.312516,0][-0.00195205,-2.00582,1.88583][0,0.774789,0.63222][0.439368,0.989868,0][-0.00195201,-1.61625,1.59988][0,0.410806,0.911723][0.439368,0.962667,0][-0.617748,-1.61625,1.47739][-0.348901,0.410806,0.842322][0.482363,0.962667,0][-0.617748,-1.61625,1.47739][-0.348901,0.410806,0.842322][0.482363,0.962667,0][-0.72718,-2.00582,1.74158][-0.24194,0.774789,0.584095][0.490004,0.989868,0][-0.00195205,-2.00582,1.88583][0,0.774789,0.63222][0.439368,0.989868,0][-0.00195201,-1.61625,1.59988][0,0.410806,0.911723][0.439368,0.962667,0][-0.00195195,-1.19582,1.51867][0,0.152222,0.988346][0.439368,0.933313,0][-0.586673,-1.19582,1.40236][-0.378224,0.152222,0.913113][0.480193,0.933313,0][-0.586673,-1.19582,1.40236][-0.378224,0.152222,0.913113][0.480193,0.933313,0][-0.617748,-1.61625,1.47739][-0.348901,0.410806,0.842322][0.482363,0.962667,0][-0.00195201,-1.61625,1.59988][0,0.410806,0.911723][0.439368,0.962667,0][-0.00195195,-1.19582,1.51867][0,0.152222,0.988346][0.439368,0.933313,0][-0.00195187,-0.668635,1.45865][0,0.205947,0.978563][0.439368,0.896504,0][-0.563703,-0.668635,1.34691][-0.37448,0.205947,0.904074][0.47859,0.896504,0][-0.563703,-0.668635,1.34691][-0.37448,0.205947,0.904074][0.47859,0.896504,0][-0.586673,-1.19582,1.40236][-0.378224,0.152222,0.913113][0.480193,0.933313,0][-0.00195195,-1.19582,1.51867][0,0.152222,0.988346][0.439368,0.933313,0][-0.00195187,-0.668635,1.45865][0,0.205947,0.978563][0.439368,0.896504,0][-0.0019518,-0.314304,1.34655][0,0.305417,0.952219][0.439368,0.871765,0][-0.520805,-0.314304,1.24335][-0.364398,0.305417,0.879736][0.475595,0.871765,0][-0.520805,-0.314304,1.24335][-0.364398,0.305417,0.879736][0.475595,0.871765,0][-0.563703,-0.668635,1.34691][-0.37448,0.205947,0.904074][0.47859,0.896504,0][-0.00195187,-0.668635,1.45865][0,0.205947,0.978563][0.439368,0.896504,0][-0.0019518,-0.314304,1.34655][0,0.305417,0.952219][0.439368,0.871765,0][-0.00195176,0.0400265,1.23122][1.24926e-007,0.511149,0.859492][0.439368,0.847025,0][-0.476671,0.0400265,1.1368][-0.328913,0.511149,0.794067][0.472513,0.847025,0][-0.476671,0.0400265,1.1368][-0.328913,0.511149,0.794067][0.472513,0.847025,0][-0.520805,-0.314304,1.24335][-0.364398,0.305417,0.879736][0.475595,0.871765,0][-0.0019518,-0.314304,1.34655][0,0.305417,0.952219][0.439368,0.871765,0][-0.00195176,0.0400265,1.23122][1.24926e-007,0.511149,0.859492][0.754441,0.0590796,0][-0.00195174,0.341322,0.928451][1.40515e-007,0.809578,0.587013][0.758565,0.0295426,0][-0.360805,0.341322,0.857071][-0.22464,0.809578,0.542329][0.784111,0.0295426,0][-0.360805,0.341322,0.857071][-0.22464,0.809578,0.542329][0.784111,0.0295426,0][-0.476671,0.0400265,1.1368][-0.328913,0.511149,0.794067][0.788235,0.0590796,0][-0.00195176,0.0400265,1.23122][1.24926e-007,0.511149,0.859492][0.754441,0.0590796,0][-0.00195174,0.341322,0.928451][1.40515e-007,0.809578,0.587013][0.17188,0.213397,0][-0.00195169,0.659853,0.24698][0,0.905923,0.423443][0.180976,0.166694,0][-0.100017,0.659853,0.227474][-0.162044,0.905923,0.391211][0.187958,0.166666,0][-0.100017,0.659853,0.227474][-0.162044,0.905923,0.391211][0.187958,0.166666,0][-0.360805,0.341322,0.857071][-0.22464,0.809578,0.542329][0.197426,0.213295,0][-0.00195174,0.341322,0.928451][1.40515e-007,0.809578,0.587013][0.17188,0.213397,0][-0.306977,0.341322,0.727119][0.224113,-0.810574,-0.541057][0.214584,0.40616,0][-0.00195171,0.61885,-0.00927766][-1.58159e-007,-1,0][0.18385,0.452556,0][-0.00195175,0.341322,0.787792][-1.63441e-007,-0.810574,-0.585636][0.19449,0.39793,0][-0.00195175,0.341322,0.787792][-1.63441e-007,-0.810574,-0.585636][0.761404,0.392045,0][-0.00195176,0.0400265,1.04515][0,-0.458393,-0.88875][0.740367,0.392045,0][-0.405463,0.0400265,0.964886][0.34011,-0.458393,-0.821098][0.740367,0.363871,0][-0.405463,0.0400265,0.964886][0.34011,-0.458393,-0.821098][0.740367,0.363871,0][-0.306977,0.341322,0.727119][0.224113,-0.810574,-0.541057][0.761404,0.370747,0][-0.00195175,0.341322,0.787792][-1.63441e-007,-0.810574,-0.585636][0.761404,0.392045,0][-0.00195176,0.0400265,1.04515][0,-0.458393,-0.88875][0.740367,0.392045,0][-0.00195181,-0.314304,1.14318][0,-0.26305,-0.964782][0.715628,0.392045,0][-0.442977,-0.314304,1.05545][0.369206,-0.26305,-0.891342][0.715628,0.361252,0][-0.442977,-0.314304,1.05545][0.369206,-0.26305,-0.891342][0.715628,0.361252,0][-0.405463,0.0400265,0.964886][0.34011,-0.458393,-0.821098][0.740367,0.363871,0][-0.00195176,0.0400265,1.04515][0,-0.458393,-0.88875][0.740367,0.392045,0][-0.00195181,-0.314304,1.14318][0,-0.26305,-0.964782][0.715628,0.392045,0][-0.00195188,-0.668635,1.23846][0,-0.176836,-0.98424][0.690888,0.392045,0][-0.47944,-0.668635,1.14348][0.376653,-0.176836,-0.90932][0.690888,0.358706,0][-0.47944,-0.668635,1.14348][0.376653,-0.176836,-0.90932][0.690888,0.358706,0][-0.442977,-0.314304,1.05545][0.369206,-0.26305,-0.891342][0.715628,0.361252,0][-0.00195181,-0.314304,1.14318][0,-0.26305,-0.964782][0.715628,0.392045,0][-0.00195188,-0.668635,1.23846][0,-0.176836,-0.98424][0.690888,0.392045,0][-0.00195196,-1.19582,1.28948][0,-0.129768,-0.991544][0.654079,0.392045,0][-0.498965,-1.19582,1.19062][0.379448,-0.129768,-0.916068][0.654079,0.357343,0][-0.498965,-1.19582,1.19062][0.379448,-0.129768,-0.916068][0.654079,0.357343,0][-0.47944,-0.668635,1.14348][0.376653,-0.176836,-0.90932][0.690888,0.358706,0][-0.00195188,-0.668635,1.23846][0,-0.176836,-0.98424][0.690888,0.392045,0][-0.00195196,-1.19582,1.28948][0,-0.129768,-0.991544][0.654079,0.392045,0][-0.00195202,-1.61625,1.3585][0,-0.360844,-0.932626][0.624725,0.392045,0][-0.525379,-1.61625,1.25439][0.356901,-0.360844,-0.861634][0.624725,0.355498,0][-0.525379,-1.61625,1.25439][0.356901,-0.360844,-0.861634][0.624725,0.355498,0][-0.498965,-1.19582,1.19062][0.379448,-0.129768,-0.916068][0.654079,0.357343,0][-0.00195196,-1.19582,1.28948][0,-0.129768,-0.991544][0.654079,0.392045,0][-0.00195202,-1.61625,1.3585][0,-0.360844,-0.932626][0.624725,0.392045,0][-0.00195206,-2.00582,1.60157][-2.1794e-007,-0.726347,-0.687328][0.597524,0.392045,0][-0.618396,-2.00582,1.47895][0.263029,-0.726348,-0.635008][0.597524,0.349004,0][-0.618396,-2.00582,1.47895][0.263029,-0.726348,-0.635008][0.597524,0.349004,0][-0.525379,-1.61625,1.25439][0.356901,-0.360844,-0.861634][0.624725,0.355498,0][-0.00195202,-1.61625,1.3585][0,-0.360844,-0.932626][0.624725,0.392045,0][-0.00195206,-2.00582,1.60157][-2.1794e-007,-0.726347,-0.687328][0.498368,0.22019,0][-0.00195209,-2.22919,1.97001][-1.61929e-007,-0.469484,-0.882941][0.498368,0.245915,0][-0.759394,-2.22919,1.81935][0.337887,-0.469485,-0.815731][0.445483,0.235396,0][-0.759394,-2.22919,1.81935][0.337887,-0.469485,-0.815731][0.445483,0.235396,0][-0.618396,-2.00582,1.47895][0.263029,-0.726348,-0.635008][0.455327,0.211629,0][-0.00195206,-2.00582,1.60157][-2.1794e-007,-0.726347,-0.687328][0.498368,0.22019,0][-0.00195209,-2.22919,1.97001][-1.61929e-007,-0.469484,-0.882941][0.892206,0.480114,0][-0.00195212,-2.44029,1.97153][0.306166,-0.0110729,-1.5392][0.892206,0.494853,0][-0.759975,-2.44029,1.82075][0.306166,-0.0110734,-1.5392][0.83928,0.494853,0][-0.759975,-2.44029,1.82075][0.306166,-0.0110734,-1.5392][0.83928,0.494853,0][-0.759394,-2.22919,1.81935][0.337887,-0.469485,-0.815731][0.83932,0.480114,0][-0.00195209,-2.22919,1.97001][-1.61929e-007,-0.469484,-0.882941][0.892206,0.480114,0][-0.00195212,-2.44029,1.97153][0.306166,-0.0110729,-1.5392][0.172708,0.263354,0][-0.00195211,-2.44029,2.32109][-0.306115,0.0130239,1.53894][0.172708,0.28776,0][-0.893744,-2.44029,2.1437][-0.306115,0.0130245,1.53894][0.110442,0.275375,0][-0.893744,-2.44029,2.1437][-0.306115,0.0130245,1.53894][0.110442,0.275375,0][-0.759975,-2.44029,1.82075][0.306166,-0.0110734,-1.5392][0.119782,0.252826,0][-0.00195212,-2.44029,1.97153][0.306166,-0.0110729,-1.5392][0.172708,0.263354,0][-0.893744,-2.44029,2.1437][-0.306115,0.0130245,1.53894][0.890588,0.805927,0][-0.89306,-2.22919,2.14205][-0.331998,0.497344,0.801515][0.89054,0.791188,0][-1.64851,-2.22919,1.63728][-0.613453,0.497344,0.613453][0.943286,0.791188,0][-1.64851,-2.22919,1.63728][-0.613453,0.497344,0.613453][0.943286,0.791188,0][-1.64977,-2.44029,1.63854][-0.87174,0.0130246,1.30465][0.943374,0.805927,0][-0.893744,-2.44029,2.1437][-0.306115,0.0130245,1.53894][0.890588,0.805927,0][-0.89306,-2.22919,2.14205][-0.331998,0.497344,0.801515][0.110365,0.324892,0][-0.72718,-2.00582,1.74158][-0.24194,0.774789,0.584095][0.121947,0.352853,0][-1.342,-2.00582,1.33077][-0.447047,0.774789,0.447047][0.0790202,0.381536,0][-1.342,-2.00582,1.33077][-0.447047,0.774789,0.447047][0.0790202,0.381536,0][-1.64851,-2.22919,1.63728][-0.613453,0.497344,0.613453][0.0576196,0.360135,0][-0.89306,-2.22919,2.14205][-0.331998,0.497344,0.801515][0.110365,0.324892,0][-0.72718,-2.00582,1.74158][-0.24194,0.774789,0.584095][0.797152,0.192282,0][-0.617748,-1.61625,1.47739][-0.348901,0.410806,0.842322][0.793257,0.159163,0][-1.1398,-1.61625,1.12857][-0.644685,0.410806,0.644685][0.833758,0.147387,0][-1.1398,-1.61625,1.12857][-0.644685,0.410806,0.644685][0.833758,0.147387,0][-1.342,-2.00582,1.33077][-0.447047,0.774789,0.447047][0.84485,0.178413,0][-0.72718,-2.00582,1.74158][-0.24194,0.774789,0.584095][0.797152,0.192282,0][-0.617748,-1.61625,1.47739][-0.348901,0.410806,0.842322][0.482363,0.962667,0][-0.586673,-1.19582,1.40236][-0.378224,0.152222,0.913113][0.480193,0.933313,0][-1.08238,-1.19582,1.07115][-0.698866,0.152222,0.698866][0.514804,0.933313,0][-1.08238,-1.19582,1.07115][-0.698866,0.152222,0.698866][0.514804,0.933313,0][-1.1398,-1.61625,1.12857][-0.644685,0.410806,0.644685][0.518813,0.962667,0][-0.617748,-1.61625,1.47739][-0.348901,0.410806,0.842322][0.482363,0.962667,0][-0.586673,-1.19582,1.40236][-0.378224,0.152222,0.913113][0.480193,0.933313,0][-0.563703,-0.668635,1.34691][-0.37448,0.205947,0.904074][0.47859,0.896504,0][-1.03993,-0.668635,1.0287][-0.691949,0.205947,0.691949][0.51184,0.896504,0][-1.03993,-0.668635,1.0287][-0.691949,0.205947,0.691949][0.51184,0.896504,0][-1.08238,-1.19582,1.07115][-0.698866,0.152222,0.698866][0.514804,0.933313,0][-0.586673,-1.19582,1.40236][-0.378224,0.152222,0.913113][0.480193,0.933313,0][-0.563703,-0.668635,1.34691][-0.37448,0.205947,0.904074][0.47859,0.896504,0][-0.520805,-0.314304,1.24335][-0.364398,0.305417,0.879736][0.475595,0.871765,0][-0.960668,-0.314304,0.949439][-0.67332,0.305416,0.67332][0.506306,0.871765,0][-0.960668,-0.314304,0.949439][-0.67332,0.305416,0.67332][0.506306,0.871765,0][-1.03993,-0.668635,1.0287][-0.691949,0.205947,0.691949][0.51184,0.896504,0][-0.563703,-0.668635,1.34691][-0.37448,0.205947,0.904074][0.47859,0.896504,0][-0.520805,-0.314304,1.24335][-0.364398,0.305417,0.879736][0.475595,0.871765,0][-0.476671,0.0400265,1.1368][-0.328913,0.511149,0.794067][0.472513,0.847025,0][-0.879119,0.0400266,0.86789][-0.607753,0.511149,0.607753][0.500612,0.847025,0][-0.879119,0.0400266,0.86789][-0.607753,0.511149,0.607753][0.500612,0.847025,0][-0.960668,-0.314304,0.949439][-0.67332,0.305416,0.67332][0.506306,0.871765,0][-0.520805,-0.314304,1.24335][-0.364398,0.305417,0.879736][0.475595,0.871765,0][-0.476671,0.0400265,1.1368][-0.328913,0.511149,0.794067][0.788235,0.0590796,0][-0.360805,0.341322,0.857071][-0.22464,0.809578,0.542329][0.784111,0.0295426,0][-0.665026,0.341322,0.653797][-0.415081,0.809578,0.415081][0.807713,0.0226802,0][-0.665026,0.341322,0.653797][-0.415081,0.809578,0.415081][0.807713,0.0226802,0][-0.879119,0.0400266,0.86789][-0.607753,0.511149,0.607753][0.819458,0.0500014,0][-0.476671,0.0400265,1.1368][-0.328913,0.511149,0.794067][0.788235,0.0590796,0][-0.360805,0.341322,0.857071][-0.22464,0.809578,0.542329][0.197426,0.213295,0][-0.100017,0.659853,0.227474][-0.162044,0.905923,0.391211][0.187958,0.166666,0][-0.183153,0.659853,0.171924][-0.299419,0.905923,0.29942][0.194397,0.163969,0][-0.183153,0.659853,0.171924][-0.299419,0.905923,0.29942][0.194397,0.163969,0][-0.665026,0.341322,0.653797][-0.415081,0.809578,0.415081][0.220988,0.203425,0][-0.360805,0.341322,0.857071][-0.22464,0.809578,0.542329][0.197426,0.213295,0][-0.565565,0.341322,0.554336][0.414107,-0.810574,-0.414107][0.23,0.421453,0][-0.00195171,0.61885,-0.00927766][-1.58159e-007,-1,0][0.18385,0.452556,0][-0.306977,0.341322,0.727119][0.224113,-0.810574,-0.541057][0.214584,0.40616,0][-0.306977,0.341322,0.727119][0.224113,-0.810574,-0.541057][0.759199,0.130759,0][-0.405463,0.0400265,0.964886][0.34011,-0.458393,-0.821098][0.752595,0.103892,0][-0.747544,0.0400266,0.736315][0.628441,-0.458393,-0.628441][0.781135,0.100626,0][-0.747544,0.0400266,0.736315][0.628441,-0.458393,-0.628441][0.781135,0.100626,0][-0.565565,0.341322,0.554336][0.414107,-0.810574,-0.414107][0.780772,0.12829,0][-0.306977,0.341322,0.727119][0.224113,-0.810574,-0.541057][0.759199,0.130759,0][-0.405463,0.0400265,0.964886][0.34011,-0.458393,-0.821098][0.740367,0.363871,0][-0.442977,-0.314304,1.05545][0.369206,-0.26305,-0.891342][0.715628,0.361252,0][-0.816861,-0.314304,0.805631][0.682204,-0.26305,-0.682204][0.715628,0.335147,0][-0.816861,-0.314304,0.805631][0.682204,-0.26305,-0.682204][0.715628,0.335147,0][-0.747544,0.0400266,0.736315][0.628441,-0.458393,-0.628441][0.740367,0.339987,0][-0.405463,0.0400265,0.964886][0.34011,-0.458393,-0.821098][0.740367,0.363871,0][-0.442977,-0.314304,1.05545][0.369206,-0.26305,-0.891342][0.715628,0.361252,0][-0.47944,-0.668635,1.14348][0.376653,-0.176836,-0.90932][0.690888,0.358706,0][-0.884236,-0.668635,0.873006][0.695963,-0.176835,-0.695963][0.690888,0.330443,0][-0.884236,-0.668635,0.873006][0.695963,-0.176835,-0.695963][0.690888,0.330443,0][-0.816861,-0.314304,0.805631][0.682204,-0.26305,-0.682204][0.715628,0.335147,0][-0.442977,-0.314304,1.05545][0.369206,-0.26305,-0.891342][0.715628,0.361252,0][-0.47944,-0.668635,1.14348][0.376653,-0.176836,-0.90932][0.690888,0.358706,0][-0.498965,-1.19582,1.19062][0.379448,-0.129768,-0.916068][0.654079,0.357343,0][-0.920312,-1.19582,0.909082][0.701128,-0.129768,-0.701128][0.654079,0.327924,0][-0.920312,-1.19582,0.909082][0.701128,-0.129768,-0.701128][0.654079,0.327924,0][-0.884236,-0.668635,0.873006][0.695963,-0.176835,-0.695963][0.690888,0.330443,0][-0.47944,-0.668635,1.14348][0.376653,-0.176836,-0.90932][0.690888,0.358706,0][-0.498965,-1.19582,1.19062][0.379448,-0.129768,-0.916068][0.654079,0.357343,0][-0.525379,-1.61625,1.25439][0.356901,-0.360844,-0.861634][0.624725,0.355498,0][-0.969119,-1.61625,0.957889][0.659466,-0.360844,-0.659466][0.624725,0.324516,0][-0.969119,-1.61625,0.957889][0.659466,-0.360844,-0.659466][0.624725,0.324516,0][-0.920312,-1.19582,0.909082][0.701128,-0.129768,-0.701128][0.654079,0.327924,0][-0.498965,-1.19582,1.19062][0.379448,-0.129768,-0.916068][0.654079,0.357343,0][-0.525379,-1.61625,1.25439][0.356901,-0.360844,-0.861634][0.624725,0.355498,0][-0.618396,-2.00582,1.47895][0.263029,-0.726348,-0.635008][0.597524,0.349004,0][-1.14099,-2.00582,1.12976][0.486014,-0.726348,-0.486014][0.597524,0.312516,0][-1.14099,-2.00582,1.12976][0.486014,-0.726348,-0.486014][0.597524,0.312516,0][-0.969119,-1.61625,0.957889][0.659466,-0.360844,-0.659466][0.624725,0.324516,0][-0.525379,-1.61625,1.25439][0.356901,-0.360844,-0.861634][0.624725,0.355498,0][-0.618396,-2.00582,1.47895][0.263029,-0.726348,-0.635008][0.455327,0.211629,0][-0.759394,-2.22919,1.81935][0.337887,-0.469485,-0.815731][0.445483,0.235396,0][-1.40152,-2.22919,1.39029][0.624333,-0.469484,-0.624334][0.400649,0.205439,0][-1.40152,-2.22919,1.39029][0.624333,-0.469484,-0.624334][0.400649,0.205439,0][-1.14099,-2.00582,1.12976][0.486014,-0.726348,-0.486014][0.418839,0.187248,0][-0.618396,-2.00582,1.47895][0.263029,-0.726348,-0.635008][0.455327,0.211629,0][-0.759394,-2.22919,1.81935][0.337887,-0.469485,-0.815731][0.83932,0.480114,0][-0.759975,-2.44029,1.82075][0.306166,-0.0110734,-1.5392][0.83928,0.494853,0][-1.4026,-2.44029,1.39137][0.871886,-0.0110725,-1.30487][0.794412,0.494853,0][-1.4026,-2.44029,1.39137][0.871886,-0.0110725,-1.30487][0.794412,0.494853,0][-1.40152,-2.22919,1.39029][0.624333,-0.469484,-0.624334][0.794486,0.480114,0][-0.759394,-2.22919,1.81935][0.337887,-0.469485,-0.815731][0.83932,0.480114,0][-0.759975,-2.44029,1.82075][0.306166,-0.0110734,-1.5392][0.119782,0.252826,0][-0.893744,-2.44029,2.1437][-0.306115,0.0130245,1.53894][0.110442,0.275375,0][-1.64977,-2.44029,1.63854][-0.87174,0.0130246,1.30465][0.0576561,0.240104,0][-1.64977,-2.44029,1.63854][-0.87174,0.0130246,1.30465][0.0576561,0.240104,0][-1.4026,-2.44029,1.39137][0.871886,-0.0110725,-1.30487][0.0749139,0.222846,0][-0.759975,-2.44029,1.82075][0.306166,-0.0110734,-1.5392][0.119782,0.252826,0][-1.64977,-2.44029,1.63854][-0.87174,0.0130246,1.30465][0.740791,0.694165,0][-1.64851,-2.22919,1.63728][-0.613453,0.497344,0.613453][0.74088,0.679426,0][-2.15328,-2.22919,0.881831][-0.801515,0.497344,0.331998][0.793626,0.679426,0][-2.15328,-2.22919,0.881831][-0.801515,0.497344,0.331998][0.793626,0.679426,0][-2.15493,-2.44029,0.882514][-1.30465,0.0130244,0.87174][0.793578,0.694165,0][-1.64977,-2.44029,1.63854][-0.87174,0.0130246,1.30465][0.740791,0.694165,0][-1.64851,-2.22919,1.63728][-0.613453,0.497344,0.613453][0.0576196,0.360135,0][-1.342,-2.00582,1.33077][-0.447047,0.774789,0.447047][0.0790202,0.381536,0][-1.75281,-2.00582,0.71595][-0.584095,0.774789,0.24194][0.0503372,0.424463,0][-1.75281,-2.00582,0.71595][-0.584095,0.774789,0.24194][0.0503372,0.424463,0][-2.15328,-2.22919,0.881831][-0.801515,0.497344,0.331998][0.0223759,0.412881,0][-1.64851,-2.22919,1.63728][-0.613453,0.497344,0.613453][0.0576196,0.360135,0][-1.342,-2.00582,1.33077][-0.447047,0.774789,0.447047][0.84485,0.178413,0][-1.1398,-1.61625,1.12857][-0.644685,0.410806,0.644685][0.833758,0.147387,0][-1.48862,-1.61625,0.606519][-0.842322,0.410806,0.348901][0.864756,0.125628,0][-1.48862,-1.61625,0.606519][-0.842322,0.410806,0.348901][0.864756,0.125628,0][-1.75281,-2.00582,0.71595][-0.584095,0.774789,0.24194][0.881357,0.152787,0][-1.342,-2.00582,1.33077][-0.447047,0.774789,0.447047][0.84485,0.178413,0][-1.1398,-1.61625,1.12857][-0.644685,0.410806,0.644685][0.359922,0.795069,0][-1.08238,-1.19582,1.07115][-0.698866,0.152222,0.698866][0.363932,0.765714,0][-1.41359,-1.19582,0.575443][-0.913113,0.152222,0.378224][0.398542,0.765714,0][-1.41359,-1.19582,0.575443][-0.913113,0.152222,0.378224][0.398542,0.765714,0][-1.48862,-1.61625,0.606519][-0.842322,0.410806,0.348901][0.396372,0.795069,0][-1.1398,-1.61625,1.12857][-0.644685,0.410806,0.644685][0.359922,0.795069,0][-1.08238,-1.19582,1.07115][-0.698866,0.152222,0.698866][0.363932,0.765714,0][-1.03993,-0.668635,1.0287][-0.691949,0.205947,0.691949][0.366895,0.728906,0][-1.35814,-0.668635,0.552474][-0.904075,0.205947,0.37448][0.400146,0.728906,0][-1.35814,-0.668635,0.552474][-0.904075,0.205947,0.37448][0.400146,0.728906,0][-1.41359,-1.19582,0.575443][-0.913113,0.152222,0.378224][0.398542,0.765714,0][-1.08238,-1.19582,1.07115][-0.698866,0.152222,0.698866][0.363932,0.765714,0][-1.03993,-0.668635,1.0287][-0.691949,0.205947,0.691949][0.366895,0.728906,0][-0.960668,-0.314304,0.949439][-0.67332,0.305416,0.67332][0.372429,0.704166,0][-1.25458,-0.314304,0.509576][-0.879736,0.305416,0.364398][0.403141,0.704166,0][-1.25458,-0.314304,0.509576][-0.879736,0.305416,0.364398][0.403141,0.704166,0][-1.35814,-0.668635,0.552474][-0.904075,0.205947,0.37448][0.400146,0.728906,0][-1.03993,-0.668635,1.0287][-0.691949,0.205947,0.691949][0.366895,0.728906,0][-0.960668,-0.314304,0.949439][-0.67332,0.305416,0.67332][0.372429,0.704166,0][-0.879119,0.0400266,0.86789][-0.607753,0.511149,0.607753][0.378123,0.679426,0][-1.14803,0.0400266,0.465442][-0.794067,0.511149,0.328913][0.406222,0.679426,0][-1.14803,0.0400266,0.465442][-0.794067,0.511149,0.328913][0.406222,0.679426,0][-1.25458,-0.314304,0.509576][-0.879736,0.305416,0.364398][0.403141,0.704166,0][-0.960668,-0.314304,0.949439][-0.67332,0.305416,0.67332][0.372429,0.704166,0][-0.879119,0.0400266,0.86789][-0.607753,0.511149,0.607753][0.819458,0.0500014,0][-0.665026,0.341322,0.653797][-0.415081,0.809578,0.415081][0.807713,0.0226802,0][-0.8683,0.341322,0.349576][-0.542329,0.809578,0.22464][0.825777,0.01,0][-0.8683,0.341322,0.349576][-0.542329,0.809578,0.22464][0.825777,0.01,0][-1.14803,0.0400266,0.465442][-0.794067,0.511149,0.328913][0.843354,0.033227,0][-0.879119,0.0400266,0.86789][-0.607753,0.511149,0.607753][0.819458,0.0500014,0][-0.665026,0.341322,0.653797][-0.415081,0.809578,0.415081][0.220988,0.203425,0][-0.183153,0.659853,0.171924][-0.299419,0.905923,0.29942][0.194397,0.163969,0][-0.238703,0.659853,0.088788][-0.391211,0.905923,0.162045][0.199313,0.159013,0][-0.238703,0.659853,0.088788][-0.391211,0.905923,0.162045][0.199313,0.159013,0][-0.8683,0.341322,0.349576][-0.542329,0.809578,0.22464][0.23898,0.18529,0][-0.665026,0.341322,0.653797][-0.415081,0.809578,0.415081][0.220988,0.203425,0][-0.738348,0.341322,0.295748][0.541057,-0.810574,-0.224113][0.238389,0.441482,0][-0.00195171,0.61885,-0.00927766][-1.58159e-007,-1,0][0.18385,0.452556,0][-0.565565,0.341322,0.554336][0.414107,-0.810574,-0.414107][0.23,0.421453,0][-0.565565,0.341322,0.554336][0.414107,-0.810574,-0.414107][0.780772,0.12829,0][-0.747544,0.0400266,0.736315][0.628441,-0.458393,-0.628441][0.781135,0.100626,0][-0.976115,0.0400266,0.394234][0.821097,-0.458393,-0.34011][0.808304,0.104622,0][-0.976115,0.0400266,0.394234][0.821097,-0.458393,-0.34011][0.808304,0.104622,0][-0.738348,0.341322,0.295748][0.541057,-0.810574,-0.224113][0.80131,0.131311,0][-0.565565,0.341322,0.554336][0.414107,-0.810574,-0.414107][0.780772,0.12829,0][-0.747544,0.0400266,0.736315][0.628441,-0.458393,-0.628441][0.527032,0.333553,0][-0.816861,-0.314304,0.805631][0.682204,-0.26305,-0.682204][0.531872,0.358292,0][-1.06668,-0.314304,0.431748][0.891342,-0.26305,-0.369206][0.505767,0.358292,0][-1.06668,-0.314304,0.431748][0.891342,-0.26305,-0.369206][0.505767,0.358292,0][-0.976115,0.0400266,0.394234][0.821097,-0.458393,-0.34011][0.503148,0.333553,0][-0.747544,0.0400266,0.736315][0.628441,-0.458393,-0.628441][0.527032,0.333553,0][-0.816861,-0.314304,0.805631][0.682204,-0.26305,-0.682204][0.531872,0.358292,0][-0.884236,-0.668635,0.873006][0.695963,-0.176835,-0.695963][0.536576,0.383032,0][-1.15471,-0.668635,0.468211][0.90932,-0.176835,-0.376652][0.508313,0.383032,0][-1.15471,-0.668635,0.468211][0.90932,-0.176835,-0.376652][0.508313,0.383032,0][-1.06668,-0.314304,0.431748][0.891342,-0.26305,-0.369206][0.505767,0.358292,0][-0.816861,-0.314304,0.805631][0.682204,-0.26305,-0.682204][0.531872,0.358292,0][-0.884236,-0.668635,0.873006][0.695963,-0.176835,-0.695963][0.536576,0.383032,0][-0.920312,-1.19582,0.909082][0.701128,-0.129768,-0.701128][0.539095,0.41984,0][-1.20185,-1.19582,0.487735][0.916068,-0.129768,-0.379448][0.509676,0.41984,0][-1.20185,-1.19582,0.487735][0.916068,-0.129768,-0.379448][0.509676,0.41984,0][-1.15471,-0.668635,0.468211][0.90932,-0.176835,-0.376652][0.508313,0.383032,0][-0.884236,-0.668635,0.873006][0.695963,-0.176835,-0.695963][0.536576,0.383032,0][-0.920312,-1.19582,0.909082][0.701128,-0.129768,-0.701128][0.539095,0.41984,0][-0.969119,-1.61625,0.957889][0.659466,-0.360844,-0.659466][0.542503,0.449195,0][-1.26562,-1.61625,0.51415][0.861634,-0.360844,-0.3569][0.511521,0.449195,0][-1.26562,-1.61625,0.51415][0.861634,-0.360844,-0.3569][0.511521,0.449195,0][-1.20185,-1.19582,0.487735][0.916068,-0.129768,-0.379448][0.509676,0.41984,0][-0.920312,-1.19582,0.909082][0.701128,-0.129768,-0.701128][0.539095,0.41984,0][-0.969119,-1.61625,0.957889][0.659466,-0.360844,-0.659466][0.542503,0.449195,0][-1.14099,-2.00582,1.12976][0.486014,-0.726348,-0.486014][0.554503,0.476395,0][-1.49018,-2.00582,0.607166][0.635008,-0.726348,-0.263029][0.518015,0.476395,0][-1.49018,-2.00582,0.607166][0.635008,-0.726348,-0.263029][0.518015,0.476395,0][-1.26562,-1.61625,0.51415][0.861634,-0.360844,-0.3569][0.511521,0.449195,0][-0.969119,-1.61625,0.957889][0.659466,-0.360844,-0.659466][0.542503,0.449195,0][-1.14099,-2.00582,1.12976][0.486014,-0.726348,-0.486014][0.418839,0.187248,0][-1.40152,-2.22919,1.39029][0.624333,-0.469484,-0.624334][0.400649,0.205439,0][-1.83058,-2.22919,0.748164][0.815731,-0.469484,-0.337887][0.370691,0.160605,0][-1.83058,-2.22919,0.748164][0.815731,-0.469484,-0.337887][0.370691,0.160605,0][-1.49018,-2.00582,0.607166][0.635008,-0.726348,-0.263029][0.394458,0.15076,0][-1.14099,-2.00582,1.12976][0.486014,-0.726348,-0.486014][0.418839,0.187248,0][-1.40152,-2.22919,1.39029][0.624333,-0.469484,-0.624334][0.572694,0.491991,0][-1.4026,-2.44029,1.39137][0.871886,-0.0110725,-1.30487][0.572769,0.50673,0][-1.83198,-2.44029,0.748746][1.30487,-0.011072,-0.871887][0.5279,0.50673,0][-1.83198,-2.44029,0.748746][1.30487,-0.011072,-0.871887][0.5279,0.50673,0][-1.83058,-2.22919,0.748164][0.815731,-0.469484,-0.337887][0.52786,0.491991,0][-1.40152,-2.22919,1.39029][0.624333,-0.469484,-0.624334][0.572694,0.491991,0][-1.4026,-2.44029,1.39137][0.871886,-0.0110725,-1.30487][0.0749139,0.222846,0][-1.64977,-2.44029,1.63854][-0.87174,0.0130246,1.30465][0.0576561,0.240104,0][-2.15493,-2.44029,0.882514][-1.30465,0.0130244,0.87174][0.0223854,0.187318,0][-2.15493,-2.44029,0.882514][-1.30465,0.0130244,0.87174][0.0223854,0.187318,0][-1.83198,-2.44029,0.748746][1.30487,-0.011072,-0.871887][0.0449338,0.177978,0][-1.4026,-2.44029,1.39137][0.871886,-0.0110725,-1.30487][0.0749139,0.222846,0][-2.15493,-2.44029,0.882514][-1.30465,0.0130244,0.87174][0.793578,0.694165,0][-2.15328,-2.22919,0.881831][-0.801515,0.497344,0.331998][0.793626,0.679426,0][-2.33053,-2.22919,-0.00927756][-0.867553,0.497344,0][0.855844,0.679426,0][-2.33053,-2.22919,-0.00927756][-0.867553,0.497344,0][0.855844,0.679426,0][-2.33232,-2.44029,-0.00927756][-1.53894,0.0130238,0.306114][0.855844,0.694165,0][-2.15493,-2.44029,0.882514][-1.30465,0.0130244,0.87174][0.793578,0.694165,0][-2.15328,-2.22919,0.881831][-0.801515,0.497344,0.331998][0.0223759,0.412881,0][-1.75281,-2.00582,0.71595][-0.584095,0.774789,0.24194][0.0503372,0.424463,0][-1.89706,-2.00582,-0.00927756][-0.63222,0.774789,0][0.040265,0.475099,0][-1.89706,-2.00582,-0.00927756][-0.63222,0.774789,0][0.040265,0.475099,0][-2.33053,-2.22919,-0.00927756][-0.867553,0.497344,0][0.01,0.475099,0][-2.15328,-2.22919,0.881831][-0.801515,0.497344,0.331998][0.0223759,0.412881,0][-1.75281,-2.00582,0.71595][-0.584095,0.774789,0.24194][0.388732,0.822269,0][-1.48862,-1.61625,0.606519][-0.842322,0.410806,0.348901][0.396372,0.795069,0][-1.61111,-1.61625,-0.00927756][-0.911723,0.410806,0][0.439368,0.795069,0][-1.61111,-1.61625,-0.00927756][-0.911723,0.410806,0][0.439368,0.795069,0][-1.89706,-2.00582,-0.00927756][-0.63222,0.774789,0][0.439368,0.822269,0][-1.75281,-2.00582,0.71595][-0.584095,0.774789,0.24194][0.388732,0.822269,0][-1.48862,-1.61625,0.606519][-0.842322,0.410806,0.348901][0.396372,0.795069,0][-1.41359,-1.19582,0.575443][-0.913113,0.152222,0.378224][0.398542,0.765714,0][-1.5299,-1.19582,-0.00927758][-0.988346,0.152222,0][0.439368,0.765714,0][-1.5299,-1.19582,-0.00927758][-0.988346,0.152222,0][0.439368,0.765714,0][-1.61111,-1.61625,-0.00927756][-0.911723,0.410806,0][0.439368,0.795069,0][-1.48862,-1.61625,0.606519][-0.842322,0.410806,0.348901][0.396372,0.795069,0][-1.41359,-1.19582,0.575443][-0.913113,0.152222,0.378224][0.398542,0.765714,0][-1.35814,-0.668635,0.552474][-0.904075,0.205947,0.37448][0.400146,0.728906,0][-1.46988,-0.668635,-0.00927761][-0.978563,0.205947,0][0.439368,0.728906,0][-1.46988,-0.668635,-0.00927761][-0.978563,0.205947,0][0.439368,0.728906,0][-1.5299,-1.19582,-0.00927758][-0.988346,0.152222,0][0.439368,0.765714,0][-1.41359,-1.19582,0.575443][-0.913113,0.152222,0.378224][0.398542,0.765714,0][-1.35814,-0.668635,0.552474][-0.904075,0.205947,0.37448][0.400146,0.728906,0][-1.25458,-0.314304,0.509576][-0.879736,0.305416,0.364398][0.403141,0.704166,0][-1.35778,-0.314304,-0.00927764][-0.952219,0.305416,0][0.439368,0.704166,0][-1.35778,-0.314304,-0.00927764][-0.952219,0.305416,0][0.439368,0.704166,0][-1.46988,-0.668635,-0.00927761][-0.978563,0.205947,0][0.439368,0.728906,0][-1.35814,-0.668635,0.552474][-0.904075,0.205947,0.37448][0.400146,0.728906,0][-1.25458,-0.314304,0.509576][-0.879736,0.305416,0.364398][0.403141,0.704166,0][-1.14803,0.0400266,0.465442][-0.794067,0.511149,0.328913][0.406222,0.679426,0][-1.24245,0.0400266,-0.00927766][-0.859492,0.511149,0][0.439368,0.679426,0][-1.24245,0.0400266,-0.00927766][-0.859492,0.511149,0][0.439368,0.679426,0][-1.35778,-0.314304,-0.00927764][-0.952219,0.305416,0][0.439368,0.704166,0][-1.25458,-0.314304,0.509576][-0.879736,0.305416,0.364398][0.403141,0.704166,0][-1.14803,0.0400266,0.465442][-0.794067,0.511149,0.328913][0.564547,0.765911,0][-0.8683,0.341322,0.349576][-0.542329,0.809578,0.22464][0.543569,0.744713,0][-0.939681,0.341322,-0.00927765][-0.587013,0.809578,0][0.559066,0.724405,0][-0.939681,0.341322,-0.00927765][-0.587013,0.809578,0][0.559066,0.724405,0][-1.24245,0.0400266,-0.00927766][-0.859492,0.511149,0][0.585049,0.739045,0][-1.14803,0.0400266,0.465442][-0.794067,0.511149,0.328913][0.564547,0.765911,0][-0.8683,0.341322,0.349576][-0.542329,0.809578,0.22464][0.23898,0.18529,0][-0.238703,0.659853,0.088788][-0.391211,0.905923,0.162045][0.199313,0.159013,0][-0.25821,0.659853,-0.00927767][-0.423443,0.905923,0][0.201959,0.152552,0][-0.25821,0.659853,-0.00927767][-0.423443,0.905923,0][0.201959,0.152552,0][-0.939681,0.341322,-0.00927765][-0.587013,0.809578,0][0.248663,0.161649,0][-0.8683,0.341322,0.349576][-0.542329,0.809578,0.22464][0.23898,0.18529,0][-0.799021,0.341322,-0.00927765][0.585636,-0.810574,0][0.238475,0.463196,0][-0.00195171,0.61885,-0.00927766][-1.58159e-007,-1,0][0.18385,0.452556,0][-0.738348,0.341322,0.295748][0.541057,-0.810574,-0.224113][0.238389,0.441482,0][-0.738348,0.341322,0.295748][0.541057,-0.810574,-0.224113][0.496272,0.312516,0][-0.976115,0.0400266,0.394234][0.821097,-0.458393,-0.34011][0.503148,0.333553,0][-1.05638,0.0400266,-0.00927766][0.888749,-0.458393,0][0.474974,0.333553,0][-1.05638,0.0400266,-0.00927766][0.888749,-0.458393,0][0.474974,0.333553,0][-0.799021,0.341322,-0.00927765][0.585636,-0.810574,0][0.474974,0.312516,0][-0.738348,0.341322,0.295748][0.541057,-0.810574,-0.224113][0.496272,0.312516,0][-0.976115,0.0400266,0.394234][0.821097,-0.458393,-0.34011][0.503148,0.333553,0][-1.06668,-0.314304,0.431748][0.891342,-0.26305,-0.369206][0.505767,0.358292,0][-1.15441,-0.314304,-0.00927764][0.964782,-0.26305,0][0.474974,0.358292,0][-1.15441,-0.314304,-0.00927764][0.964782,-0.26305,0][0.474974,0.358292,0][-1.05638,0.0400266,-0.00927766][0.888749,-0.458393,0][0.474974,0.333553,0][-0.976115,0.0400266,0.394234][0.821097,-0.458393,-0.34011][0.503148,0.333553,0][-1.06668,-0.314304,0.431748][0.891342,-0.26305,-0.369206][0.505767,0.358292,0][-1.15471,-0.668635,0.468211][0.90932,-0.176835,-0.376652][0.508313,0.383032,0][-1.24969,-0.668635,-0.00927761][0.98424,-0.176835,0][0.474974,0.383032,0][-1.24969,-0.668635,-0.00927761][0.98424,-0.176835,0][0.474974,0.383032,0][-1.15441,-0.314304,-0.00927764][0.964782,-0.26305,0][0.474974,0.358292,0][-1.06668,-0.314304,0.431748][0.891342,-0.26305,-0.369206][0.505767,0.358292,0][-1.15471,-0.668635,0.468211][0.90932,-0.176835,-0.376652][0.508313,0.383032,0][-1.20185,-1.19582,0.487735][0.916068,-0.129768,-0.379448][0.509676,0.41984,0][-1.30071,-1.19582,-0.00927758][0.991544,-0.129768,0][0.474974,0.41984,0][-1.30071,-1.19582,-0.00927758][0.991544,-0.129768,0][0.474974,0.41984,0][-1.24969,-0.668635,-0.00927761][0.98424,-0.176835,0][0.474974,0.383032,0][-1.15471,-0.668635,0.468211][0.90932,-0.176835,-0.376652][0.508313,0.383032,0][-1.20185,-1.19582,0.487735][0.916068,-0.129768,-0.379448][0.509676,0.41984,0][-1.26562,-1.61625,0.51415][0.861634,-0.360844,-0.3569][0.511521,0.449195,0][-1.36973,-1.61625,-0.00927756][0.932626,-0.360844,0][0.474974,0.449195,0][-1.36973,-1.61625,-0.00927756][0.932626,-0.360844,0][0.474974,0.449195,0][-1.30071,-1.19582,-0.00927758][0.991544,-0.129768,0][0.474974,0.41984,0][-1.20185,-1.19582,0.487735][0.916068,-0.129768,-0.379448][0.509676,0.41984,0][-1.26562,-1.61625,0.51415][0.861634,-0.360844,-0.3569][0.511521,0.449195,0][-1.49018,-2.00582,0.607166][0.635008,-0.726348,-0.263029][0.518015,0.476395,0][-1.6128,-2.00582,-0.00927756][0.687328,-0.726348,0][0.474974,0.476395,0][-1.6128,-2.00582,-0.00927756][0.687328,-0.726348,0][0.474974,0.476395,0][-1.36973,-1.61625,-0.00927756][0.932626,-0.360844,0][0.474974,0.449195,0][-1.26562,-1.61625,0.51415][0.861634,-0.360844,-0.3569][0.511521,0.449195,0][-1.49018,-2.00582,0.607166][0.635008,-0.726348,-0.263029][0.394458,0.15076,0][-1.83058,-2.22919,0.748164][0.815731,-0.469484,-0.337887][0.370691,0.160605,0][-1.98124,-2.22919,-0.00927756][0.882941,-0.469484,0][0.360172,0.107719,0][-1.98124,-2.22919,-0.00927756][0.882941,-0.469484,0][0.360172,0.107719,0][-1.6128,-2.00582,-0.00927756][0.687328,-0.726348,0][0.385897,0.107719,0][-1.49018,-2.00582,0.607166][0.635008,-0.726348,-0.263029][0.394458,0.15076,0][-1.83058,-2.22919,0.748164][0.815731,-0.469484,-0.337887][0.52786,0.491991,0][-1.83198,-2.44029,0.748746][1.30487,-0.011072,-0.871887][0.5279,0.50673,0][-1.98276,-2.44029,-0.00927756][1.5392,-0.0110726,-0.306166][0.474974,0.50673,0][-1.98276,-2.44029,-0.00927756][1.5392,-0.0110726,-0.306166][0.474974,0.50673,0][-1.98124,-2.22919,-0.00927756][0.882941,-0.469484,0][0.474974,0.491991,0][-1.83058,-2.22919,0.748164][0.815731,-0.469484,-0.337887][0.52786,0.491991,0][-1.83198,-2.44029,0.748746][1.30487,-0.011072,-0.871887][0.0449338,0.177978,0][-2.15493,-2.44029,0.882514][-1.30465,0.0130244,0.87174][0.0223854,0.187318,0][-2.33232,-2.44029,-0.00927756][-1.53894,0.0130238,0.306114][0.01,0.125052,0][-2.33232,-2.44029,-0.00927756][-1.53894,0.0130238,0.306114][0.01,0.125052,0][-1.98276,-2.44029,-0.00927756][1.5392,-0.0110726,-0.306166][0.0344062,0.125052,0][-1.83198,-2.44029,0.748746][1.30487,-0.011072,-0.871887][0.0449338,0.177978,0][-2.33232,-2.44029,-0.00927756][-1.53894,0.0130238,0.306114][0.855844,0.694165,0][-2.33053,-2.22919,-0.00927756][-0.867553,0.497344,0][0.855844,0.679426,0][-2.15328,-2.22919,-0.900386][-0.801515,0.497344,-0.331998][0.918061,0.679426,0][-2.15328,-2.22919,-0.900386][-0.801515,0.497344,-0.331998][0.918061,0.679426,0][-2.15493,-2.44029,-0.901069][-1.53894,0.0130244,-0.306115][0.918109,0.694165,0][-2.33232,-2.44029,-0.00927756][-1.53894,0.0130238,0.306114][0.855844,0.694165,0][-2.33053,-2.22919,-0.00927756][-0.867553,0.497344,0][0.01,0.475099,0][-1.89706,-2.00582,-0.00927756][-0.63222,0.774789,0][0.040265,0.475099,0][-1.75281,-2.00582,-0.734505][-0.584095,0.774789,-0.24194][0.0503372,0.525735,0][-1.75281,-2.00582,-0.734505][-0.584095,0.774789,-0.24194][0.0503372,0.525735,0][-2.15328,-2.22919,-0.900386][-0.801515,0.497344,-0.331998][0.0223759,0.537317,0][-2.33053,-2.22919,-0.00927756][-0.867553,0.497344,0][0.01,0.475099,0][-1.89706,-2.00582,-0.00927756][-0.63222,0.774789,0][0.439368,0.822269,0][-1.61111,-1.61625,-0.00927756][-0.911723,0.410806,0][0.439368,0.795069,0][-1.48862,-1.61625,-0.625074][-0.842322,0.410806,-0.348901][0.482363,0.795069,0][-1.48862,-1.61625,-0.625074][-0.842322,0.410806,-0.348901][0.482363,0.795069,0][-1.75281,-2.00582,-0.734505][-0.584095,0.774789,-0.24194][0.490004,0.822269,0][-1.89706,-2.00582,-0.00927756][-0.63222,0.774789,0][0.439368,0.822269,0][-1.61111,-1.61625,-0.00927756][-0.911723,0.410806,0][0.439368,0.795069,0][-1.5299,-1.19582,-0.00927758][-0.988346,0.152222,0][0.439368,0.765714,0][-1.41359,-1.19582,-0.593998][-0.913113,0.152222,-0.378224][0.480193,0.765714,0][-1.41359,-1.19582,-0.593998][-0.913113,0.152222,-0.378224][0.480193,0.765714,0][-1.48862,-1.61625,-0.625074][-0.842322,0.410806,-0.348901][0.482363,0.795069,0][-1.61111,-1.61625,-0.00927756][-0.911723,0.410806,0][0.439368,0.795069,0][-1.5299,-1.19582,-0.00927758][-0.988346,0.152222,0][0.439368,0.765714,0][-1.46988,-0.668635,-0.00927761][-0.978563,0.205947,0][0.439368,0.728906,0][-1.35814,-0.668635,-0.571029][-0.904074,0.205947,-0.37448][0.47859,0.728906,0][-1.35814,-0.668635,-0.571029][-0.904074,0.205947,-0.37448][0.47859,0.728906,0][-1.41359,-1.19582,-0.593998][-0.913113,0.152222,-0.378224][0.480193,0.765714,0][-1.5299,-1.19582,-0.00927758][-0.988346,0.152222,0][0.439368,0.765714,0][-1.46988,-0.668635,-0.00927761][-0.978563,0.205947,0][0.439368,0.728906,0][-1.35778,-0.314304,-0.00927764][-0.952219,0.305416,0][0.439368,0.704166,0][-1.25458,-0.314304,-0.528131][-0.879736,0.305416,-0.364398][0.475595,0.704166,0][-1.25458,-0.314304,-0.528131][-0.879736,0.305416,-0.364398][0.475595,0.704166,0][-1.35814,-0.668635,-0.571029][-0.904074,0.205947,-0.37448][0.47859,0.728906,0][-1.46988,-0.668635,-0.00927761][-0.978563,0.205947,0][0.439368,0.728906,0][-1.35778,-0.314304,-0.00927764][-0.952219,0.305416,0][0.439368,0.704166,0][-1.24245,0.0400266,-0.00927766][-0.859492,0.511149,0][0.439368,0.679426,0][-1.14803,0.0400266,-0.483997][-0.794067,0.511149,-0.328913][0.472513,0.679426,0][-1.14803,0.0400266,-0.483997][-0.794067,0.511149,-0.328913][0.472513,0.679426,0][-1.25458,-0.314304,-0.528131][-0.879736,0.305416,-0.364398][0.475595,0.704166,0][-1.35778,-0.314304,-0.00927764][-0.952219,0.305416,0][0.439368,0.704166,0][-1.24245,0.0400266,-0.00927766][-0.859492,0.511149,0][0.585049,0.739045,0][-0.939681,0.341322,-0.00927765][-0.587013,0.809578,0][0.559066,0.724405,0][-0.8683,0.341322,-0.368131][-0.542329,0.809578,-0.22464][0.567929,0.701479,0][-0.8683,0.341322,-0.368131][-0.542329,0.809578,-0.22464][0.567929,0.701479,0][-1.14803,0.0400266,-0.483997][-0.794067,0.511149,-0.328913][0.596774,0.708717,0][-1.24245,0.0400266,-0.00927766][-0.859492,0.511149,0][0.585049,0.739045,0][-0.939681,0.341322,-0.00927765][-0.587013,0.809578,0][0.248663,0.161649,0][-0.25821,0.659853,-0.00927767][-0.423443,0.905923,0][0.201959,0.152552,0][-0.238703,0.659853,-0.107343][-0.39121,0.905923,-0.162045][0.201932,0.145571,0][-0.238703,0.659853,-0.107343][-0.39121,0.905923,-0.162045][0.201932,0.145571,0][-0.8683,0.341322,-0.368131][-0.542329,0.809578,-0.22464][0.248561,0.136103,0][-0.939681,0.341322,-0.00927765][-0.587013,0.809578,0][0.248663,0.161649,0][-0.738348,0.341322,-0.314303][0.541057,-0.810574,0.224113][0.230246,0.48329,0][-0.00195171,0.61885,-0.00927766][-1.58159e-007,-1,0][0.18385,0.452556,0][-0.799021,0.341322,-0.00927765][0.585636,-0.810574,0][0.238475,0.463196,0][-0.799021,0.341322,-0.00927765][0.585636,-0.810574,0][0.474974,0.312516,0][-1.05638,0.0400266,-0.00927766][0.888749,-0.458393,0][0.474974,0.333553,0][-0.976115,0.0400266,-0.412789][0.821097,-0.458393,0.34011][0.446801,0.333553,0][-0.976115,0.0400266,-0.412789][0.821097,-0.458393,0.34011][0.446801,0.333553,0][-0.738348,0.341322,-0.314303][0.541057,-0.810574,0.224113][0.453677,0.312516,0][-0.799021,0.341322,-0.00927765][0.585636,-0.810574,0][0.474974,0.312516,0][-1.05638,0.0400266,-0.00927766][0.888749,-0.458393,0][0.474974,0.333553,0][-1.15441,-0.314304,-0.00927764][0.964782,-0.26305,0][0.474974,0.358292,0][-1.06668,-0.314304,-0.450303][0.891342,-0.26305,0.369206][0.444182,0.358292,0][-1.06668,-0.314304,-0.450303][0.891342,-0.26305,0.369206][0.444182,0.358292,0][-0.976115,0.0400266,-0.412789][0.821097,-0.458393,0.34011][0.446801,0.333553,0][-1.05638,0.0400266,-0.00927766][0.888749,-0.458393,0][0.474974,0.333553,0][-1.15441,-0.314304,-0.00927764][0.964782,-0.26305,0][0.474974,0.358292,0][-1.24969,-0.668635,-0.00927761][0.98424,-0.176835,0][0.474974,0.383032,0][-1.15471,-0.668635,-0.486766][0.90932,-0.176835,0.376653][0.441636,0.383032,0][-1.15471,-0.668635,-0.486766][0.90932,-0.176835,0.376653][0.441636,0.383032,0][-1.06668,-0.314304,-0.450303][0.891342,-0.26305,0.369206][0.444182,0.358292,0][-1.15441,-0.314304,-0.00927764][0.964782,-0.26305,0][0.474974,0.358292,0][-1.24969,-0.668635,-0.00927761][0.98424,-0.176835,0][0.474974,0.383032,0][-1.30071,-1.19582,-0.00927758][0.991544,-0.129768,0][0.474974,0.41984,0][-1.20185,-1.19582,-0.50629][0.916068,-0.129768,0.379448][0.440273,0.41984,0][-1.20185,-1.19582,-0.50629][0.916068,-0.129768,0.379448][0.440273,0.41984,0][-1.15471,-0.668635,-0.486766][0.90932,-0.176835,0.376653][0.441636,0.383032,0][-1.24969,-0.668635,-0.00927761][0.98424,-0.176835,0][0.474974,0.383032,0][-1.30071,-1.19582,-0.00927758][0.991544,-0.129768,0][0.474974,0.41984,0][-1.36973,-1.61625,-0.00927756][0.932626,-0.360844,0][0.474974,0.449195,0][-1.26562,-1.61625,-0.532705][0.861634,-0.360844,0.356901][0.438428,0.449195,0][-1.26562,-1.61625,-0.532705][0.861634,-0.360844,0.356901][0.438428,0.449195,0][-1.20185,-1.19582,-0.50629][0.916068,-0.129768,0.379448][0.440273,0.41984,0][-1.30071,-1.19582,-0.00927758][0.991544,-0.129768,0][0.474974,0.41984,0][-1.36973,-1.61625,-0.00927756][0.932626,-0.360844,0][0.474974,0.449195,0][-1.6128,-2.00582,-0.00927756][0.687328,-0.726348,0][0.474974,0.476395,0][-1.49018,-2.00582,-0.625721][0.635008,-0.726348,0.263029][0.431934,0.476395,0][-1.49018,-2.00582,-0.625721][0.635008,-0.726348,0.263029][0.431934,0.476395,0][-1.26562,-1.61625,-0.532705][0.861634,-0.360844,0.356901][0.438428,0.449195,0][-1.36973,-1.61625,-0.00927756][0.932626,-0.360844,0][0.474974,0.449195,0][-1.6128,-2.00582,-0.00927756][0.687328,-0.726348,0][0.385897,0.107719,0][-1.98124,-2.22919,-0.00927756][0.882941,-0.469484,0][0.360172,0.107719,0][-1.83058,-2.22919,-0.76672][0.815731,-0.469484,0.337887][0.370691,0.054834,0][-1.83058,-2.22919,-0.76672][0.815731,-0.469484,0.337887][0.370691,0.054834,0][-1.49018,-2.00582,-0.625721][0.635008,-0.726348,0.263029][0.394458,0.0646786,0][-1.6128,-2.00582,-0.00927756][0.687328,-0.726348,0][0.385897,0.107719,0][-1.98124,-2.22919,-0.00927756][0.882941,-0.469484,0][0.474974,0.491991,0][-1.98276,-2.44029,-0.00927756][1.5392,-0.0110726,-0.306166][0.474974,0.50673,0][-1.83198,-2.44029,-0.767301][1.5392,-0.0110719,0.306166][0.422049,0.50673,0][-1.83198,-2.44029,-0.767301][1.5392,-0.0110719,0.306166][0.422049,0.50673,0][-1.83058,-2.22919,-0.76672][0.815731,-0.469484,0.337887][0.422089,0.491991,0][-1.98124,-2.22919,-0.00927756][0.882941,-0.469484,0][0.474974,0.491991,0][-1.98276,-2.44029,-0.00927756][1.5392,-0.0110726,-0.306166][0.0344062,0.125052,0][-2.33232,-2.44029,-0.00927756][-1.53894,0.0130238,0.306114][0.01,0.125052,0][-2.15493,-2.44029,-0.901069][-1.53894,0.0130244,-0.306115][0.0223854,0.0627863,0][-2.15493,-2.44029,-0.901069][-1.53894,0.0130244,-0.306115][0.0223854,0.0627863,0][-1.83198,-2.44029,-0.767301][1.5392,-0.0110719,0.306166][0.0449338,0.0721262,0][-1.98276,-2.44029,-0.00927756][1.5392,-0.0110726,-0.306166][0.0344062,0.125052,0][-2.15493,-2.44029,-0.901069][-1.53894,0.0130244,-0.306115][0.918109,0.694165,0][-2.15328,-2.22919,-0.900386][-0.801515,0.497344,-0.331998][0.918061,0.679426,0][-1.64851,-2.22919,-1.65583][-1.84747,1.2493,-1.23444][0.970807,0.679426,0][-1.64851,-2.22919,-1.65583][-1.84747,1.2493,-1.23444][0.970807,0.679426,0][-1.64977,-2.44029,-1.65709][-1.30465,0.0130249,-0.87174][0.970896,0.694165,0][-2.15493,-2.44029,-0.901069][-1.53894,0.0130244,-0.306115][0.918109,0.694165,0][-2.15328,-2.22919,-0.900386][-0.801515,0.497344,-0.331998][0.0223759,0.537317,0][-1.75281,-2.00582,-0.734505][-0.584095,0.774789,-0.24194][0.0503372,0.525735,0][-1.342,-2.00582,-1.34932][-1.65677,2.395,-1.10702][0.0790202,0.568662,0][-1.342,-2.00582,-1.34932][-1.65677,2.395,-1.10702][0.0790202,0.568662,0][-1.64851,-2.22919,-1.65583][-1.84747,1.2493,-1.23444][0.0576196,0.590063,0][-2.15328,-2.22919,-0.900386][-0.801515,0.497344,-0.331998][0.0223759,0.537317,0][-1.75281,-2.00582,-0.734505][-0.584095,0.774789,-0.24194][0.714261,0.766432,0][-1.48862,-1.61625,-0.625074][-0.842322,0.410806,-0.348901][0.682867,0.756428,0][-1.1398,-1.61625,-1.14712][-2.39105,1.27084,-1.59765][0.684374,0.718586,0][-1.1398,-1.61625,-1.14712][-2.39105,1.27084,-1.59765][0.684374,0.718586,0][-1.342,-2.00582,-1.34932][-1.65677,2.395,-1.10702][0.716036,0.721865,0][-1.75281,-2.00582,-0.734505][-0.584095,0.774789,-0.24194][0.714261,0.766432,0][-1.48862,-1.61625,-0.625074][-0.842322,0.410806,-0.348901][0.482363,0.795069,0][-1.41359,-1.19582,-0.593998][-0.913113,0.152222,-0.378224][0.480193,0.765714,0][-1.08238,-1.19582,-1.0897][-2.59324,0.471129,-1.73275][0.514804,0.765714,0][-1.08238,-1.19582,-1.0897][-2.59324,0.471129,-1.73275][0.514804,0.765714,0][-1.1398,-1.61625,-1.14712][-2.39105,1.27084,-1.59765][0.518813,0.795069,0][-1.48862,-1.61625,-0.625074][-0.842322,0.410806,-0.348901][0.482363,0.795069,0][-1.41359,-1.19582,-0.593998][-0.913113,0.152222,-0.378224][0.480193,0.765714,0][-1.35814,-0.668635,-0.571029][-0.904074,0.205947,-0.37448][0.47859,0.728906,0][-1.03993,-0.668635,-1.04726][-3.31913,1.07287,-2.88237][0.51184,0.728906,0][-1.03993,-0.668635,-1.04726][-3.31913,1.07287,-2.88237][0.51184,0.728906,0][-1.08238,-1.19582,-1.0897][-2.59324,0.471129,-1.73275][0.514804,0.765714,0][-1.41359,-1.19582,-0.593998][-0.913113,0.152222,-0.378224][0.480193,0.765714,0][-1.35814,-0.668635,-0.571029][-0.904074,0.205947,-0.37448][0.47859,0.728906,0][-1.25458,-0.314304,-0.528131][-0.879736,0.305416,-0.364398][0.475595,0.704166,0][-0.960668,-0.314304,-0.967994][-0.67332,0.305416,-0.673321][0.506306,0.704166,0][-0.960668,-0.314304,-0.967994][-0.67332,0.305416,-0.673321][0.506306,0.704166,0][-1.03993,-0.668635,-1.04726][-3.31913,1.07287,-2.88237][0.51184,0.728906,0][-1.35814,-0.668635,-0.571029][-0.904074,0.205947,-0.37448][0.47859,0.728906,0][-1.25458,-0.314304,-0.528131][-0.879736,0.305416,-0.364398][0.475595,0.704166,0][-1.14803,0.0400266,-0.483997][-0.794067,0.511149,-0.328913][0.472513,0.679426,0][-0.879119,0.0400265,-0.886445][-0.607753,0.511149,-0.607753][0.500612,0.679426,0][-0.879119,0.0400265,-0.886445][-0.607753,0.511149,-0.607753][0.500612,0.679426,0][-0.960668,-0.314304,-0.967994][-0.67332,0.305416,-0.673321][0.506306,0.704166,0][-1.25458,-0.314304,-0.528131][-0.879736,0.305416,-0.364398][0.475595,0.704166,0][-1.14803,0.0400266,-0.483997][-0.794067,0.511149,-0.328913][0.596774,0.708717,0][-0.8683,0.341322,-0.368131][-0.542329,0.809578,-0.22464][0.567929,0.701479,0][-0.665026,0.341322,-0.672352][-0.415081,0.809578,-0.415081][0.568808,0.679426,0][-0.665026,0.341322,-0.672352][-0.415081,0.809578,-0.415081][0.568808,0.679426,0][-0.879119,0.0400265,-0.886445][-0.607753,0.511149,-0.607753][0.597935,0.679544,0][-1.14803,0.0400266,-0.483997][-0.794067,0.511149,-0.328913][0.596774,0.708717,0][-0.8683,0.341322,-0.368131][-0.542329,0.809578,-0.22464][0.248561,0.136103,0][-0.238703,0.659853,-0.107343][-0.39121,0.905923,-0.162045][0.201932,0.145571,0][-0.183153,0.659853,-0.190479][-0.29942,0.905923,-0.29942][0.199234,0.139132,0][-0.183153,0.659853,-0.190479][-0.29942,0.905923,-0.29942][0.199234,0.139132,0][-0.665026,0.341322,-0.672352][-0.415081,0.809578,-0.415081][0.238691,0.112541,0][-0.8683,0.341322,-0.368131][-0.542329,0.809578,-0.22464][0.248561,0.136103,0][-0.565565,0.341322,-0.572891][0.414107,-0.810574,0.414107][0.214952,0.498705,0][-0.00195171,0.61885,-0.00927766][-1.58159e-007,-1,0][0.18385,0.452556,0][-0.738348,0.341322,-0.314303][0.541057,-0.810574,0.224113][0.230246,0.48329,0][-0.738348,0.341322,-0.314303][0.541057,-0.810574,0.224113][0.410761,0.648068,0][-0.976115,0.0400266,-0.412789][0.821097,-0.458393,0.34011][0.383894,0.654671,0][-0.747544,0.0400265,-0.75487][0.628441,-0.458393,0.628441][0.380628,0.626131,0][-0.747544,0.0400265,-0.75487][0.628441,-0.458393,0.628441][0.380628,0.626131,0][-0.565565,0.341322,-0.572891][0.414107,-0.810574,0.414107][0.408292,0.626494,0][-0.738348,0.341322,-0.314303][0.541057,-0.810574,0.224113][0.410761,0.648068,0][-0.976115,0.0400266,-0.412789][0.821097,-0.458393,0.34011][0.446801,0.333553,0][-1.06668,-0.314304,-0.450303][0.891342,-0.26305,0.369206][0.444182,0.358292,0][-0.816861,-0.314304,-0.824187][0.682204,-0.26305,0.682204][0.418077,0.358292,0][-0.816861,-0.314304,-0.824187][0.682204,-0.26305,0.682204][0.418077,0.358292,0][-0.747544,0.0400265,-0.75487][0.628441,-0.458393,0.628441][0.422917,0.333553,0][-0.976115,0.0400266,-0.412789][0.821097,-0.458393,0.34011][0.446801,0.333553,0][-1.06668,-0.314304,-0.450303][0.891342,-0.26305,0.369206][0.444182,0.358292,0][-1.15471,-0.668635,-0.486766][0.90932,-0.176835,0.376653][0.441636,0.383032,0][-0.884236,-0.668635,-0.891561][3.35453,-0.925524,2.91792][0.413373,0.383032,0][-0.884236,-0.668635,-0.891561][3.35453,-0.925524,2.91792][0.413373,0.383032,0][-0.816861,-0.314304,-0.824187][0.682204,-0.26305,0.682204][0.418077,0.358292,0][-1.06668,-0.314304,-0.450303][0.891342,-0.26305,0.369206][0.444182,0.358292,0][-1.15471,-0.668635,-0.486766][0.90932,-0.176835,0.376653][0.441636,0.383032,0][-1.20185,-1.19582,-0.50629][0.916068,-0.129768,0.379448][0.440273,0.41984,0][-0.920312,-1.19582,-0.927637][2.60008,-0.401394,1.73732][0.410854,0.41984,0][-0.920312,-1.19582,-0.927637][2.60008,-0.401394,1.73732][0.410854,0.41984,0][-0.884236,-0.668635,-0.891561][3.35453,-0.925524,2.91792][0.413373,0.383032,0][-1.15471,-0.668635,-0.486766][0.90932,-0.176835,0.376653][0.441636,0.383032,0][-1.20185,-1.19582,-0.50629][0.916068,-0.129768,0.379448][0.440273,0.41984,0][-1.26562,-1.61625,-0.532705][0.861634,-0.360844,0.356901][0.438428,0.449195,0][-0.969119,-1.61625,-0.976445][2.45092,-1.11858,1.63765][0.407446,0.449195,0][-0.969119,-1.61625,-0.976445][2.45092,-1.11858,1.63765][0.407446,0.449195,0][-0.920312,-1.19582,-0.927637][2.60008,-0.401394,1.73732][0.410854,0.41984,0][-1.20185,-1.19582,-0.50629][0.916068,-0.129768,0.379448][0.440273,0.41984,0][-1.26562,-1.61625,-0.532705][0.861634,-0.360844,0.356901][0.438428,0.449195,0][-1.49018,-2.00582,-0.625721][0.635008,-0.726348,0.263029][0.431934,0.476395,0][-1.14099,-2.00582,-1.14832][1.80066,-2.24461,1.20316][0.395446,0.476395,0][-1.14099,-2.00582,-1.14832][1.80066,-2.24461,1.20316][0.395446,0.476395,0][-0.969119,-1.61625,-0.976445][2.45092,-1.11858,1.63765][0.407446,0.449195,0][-1.26562,-1.61625,-0.532705][0.861634,-0.360844,0.356901][0.438428,0.449195,0][-1.49018,-2.00582,-0.625721][0.635008,-0.726348,0.263029][0.394458,0.0646786,0][-1.83058,-2.22919,-0.76672][0.815731,-0.469484,0.337887][0.370691,0.054834,0][-1.40152,-2.22919,-1.40885][1.92065,-1.20466,1.28334][0.400649,0.01,0][-1.40152,-2.22919,-1.40885][1.92065,-1.20466,1.28334][0.400649,0.01,0][-1.14099,-2.00582,-1.14832][1.80066,-2.24461,1.20316][0.418839,0.0281905,0][-1.49018,-2.00582,-0.625721][0.635008,-0.726348,0.263029][0.394458,0.0646786,0][-1.83058,-2.22919,-0.76672][0.815731,-0.469484,0.337887][0.422089,0.491991,0][-1.83198,-2.44029,-0.767301][1.5392,-0.0110719,0.306166][0.422049,0.50673,0][-1.4026,-2.44029,-1.40992][1.30487,-0.0110728,0.871886][0.37718,0.50673,0][-1.4026,-2.44029,-1.40992][1.30487,-0.0110728,0.871886][0.37718,0.50673,0][-1.40152,-2.22919,-1.40885][1.92065,-1.20466,1.28334][0.377255,0.491991,0][-1.83058,-2.22919,-0.76672][0.815731,-0.469484,0.337887][0.422089,0.491991,0][-1.83198,-2.44029,-0.767301][1.5392,-0.0110719,0.306166][0.0449338,0.0721262,0][-2.15493,-2.44029,-0.901069][-1.53894,0.0130244,-0.306115][0.0223854,0.0627863,0][-1.64977,-2.44029,-1.65709][-1.30465,0.0130249,-0.87174][0.0576561,0.01,0][-1.64977,-2.44029,-1.65709][-1.30465,0.0130249,-0.87174][0.0576561,0.01,0][-1.4026,-2.44029,-1.40992][1.30487,-0.0110728,0.871886][0.0749139,0.0272578,0][-1.83198,-2.44029,-0.767301][1.5392,-0.0110719,0.306166][0.0449338,0.0721262,0][-1.03993,-0.668635,-1.04726][-3.31913,1.07287,-2.88237][0.543569,0.840667,0][-0.960668,-0.314304,-0.967994][-0.67332,0.305416,-0.673321][0.549103,0.815928,0][-0.520805,-0.314304,-1.2619][-0.364398,0.305416,-0.879736][0.579815,0.815928,0][-0.520805,-0.314304,-1.2619][-0.364398,0.305416,-0.879736][0.579815,0.815928,0][-0.563703,-0.668635,-1.36546][-1.18984,0.896002,-3.1802][0.576819,0.840667,0][-1.03993,-0.668635,-1.04726][-3.31913,1.07287,-2.88237][0.543569,0.840667,0][-0.960668,-0.314304,-0.967994][-0.67332,0.305416,-0.673321][0.549103,0.815928,0][-0.879119,0.0400265,-0.886445][-0.607753,0.511149,-0.607753][0.554797,0.791188,0][-0.476671,0.0400264,-1.15535][-0.328913,0.511149,-0.794067][0.582896,0.791188,0][-0.476671,0.0400264,-1.15535][-0.328913,0.511149,-0.794067][0.582896,0.791188,0][-0.520805,-0.314304,-1.2619][-0.364398,0.305416,-0.879736][0.579815,0.815928,0][-0.960668,-0.314304,-0.967994][-0.67332,0.305416,-0.673321][0.549103,0.815928,0][-0.879119,0.0400265,-0.886445][-0.607753,0.511149,-0.607753][0.194487,0.621288,0][-0.665026,0.341322,-0.672352][-0.415081,0.809578,-0.415081][0.221866,0.633112,0][-0.360805,0.341322,-0.875627][-0.22464,0.809578,-0.542329][0.215078,0.65774,0][-0.360805,0.341322,-0.875627][-0.22464,0.809578,-0.542329][0.215078,0.65774,0][-0.476671,0.0400264,-1.15535][-0.328913,0.511149,-0.794067][0.185507,0.653867,0][-0.879119,0.0400265,-0.886445][-0.607753,0.511149,-0.607753][0.194487,0.621288,0][-0.665026,0.341322,-0.672352][-0.415081,0.809578,-0.415081][0.238691,0.112541,0][-0.183153,0.659853,-0.190479][-0.29942,0.905923,-0.29942][0.199234,0.139132,0][-0.100017,0.659853,-0.246029][-0.162045,0.905923,-0.391211][0.194278,0.134215,0][-0.100017,0.659853,-0.246029][-0.162045,0.905923,-0.391211][0.194278,0.134215,0][-0.360805,0.341322,-0.875627][-0.22464,0.809578,-0.542329][0.220555,0.0945485,0][-0.665026,0.341322,-0.672352][-0.415081,0.809578,-0.415081][0.238691,0.112541,0][-0.306977,0.341322,-0.745674][0.224113,-0.810574,0.541057][0.194924,0.507095,0][-0.00195171,0.61885,-0.00927766][-1.58159e-007,-1,0][0.18385,0.452556,0][-0.565565,0.341322,-0.572891][0.414107,-0.810574,0.414107][0.214952,0.498705,0][-0.565565,0.341322,-0.572891][0.414107,-0.810574,0.414107][0.408292,0.626494,0][-0.747544,0.0400265,-0.75487][0.628441,-0.458393,0.628441][0.380628,0.626131,0][-0.405463,0.0400264,-0.983441][0.34011,-0.458393,0.821098][0.384624,0.598962,0][-0.405463,0.0400264,-0.983441][0.34011,-0.458393,0.821098][0.384624,0.598962,0][-0.306977,0.341322,-0.745674][0.224113,-0.810574,0.541057][0.411312,0.605956,0][-0.565565,0.341322,-0.572891][0.414107,-0.810574,0.414107][0.408292,0.626494,0][-0.747544,0.0400265,-0.75487][0.628441,-0.458393,0.628441][0.245602,0.540584,0][-0.816861,-0.314304,-0.824187][0.682204,-0.26305,0.682204][0.250442,0.565323,0][-0.442977,-0.314304,-1.07401][0.369206,-0.26305,0.891343][0.224337,0.565323,0][-0.442977,-0.314304,-1.07401][0.369206,-0.26305,0.891343][0.224337,0.565323,0][-0.405463,0.0400264,-0.983441][0.34011,-0.458393,0.821098][0.221718,0.540584,0][-0.747544,0.0400265,-0.75487][0.628441,-0.458393,0.628441][0.245602,0.540584,0][-0.816861,-0.314304,-0.824187][0.682204,-0.26305,0.682204][0.250442,0.565323,0][-0.884236,-0.668635,-0.891561][3.35453,-0.925524,2.91792][0.255146,0.590063,0][-0.47944,-0.668635,-1.16204][1.10336,-0.775318,2.66375][0.226883,0.590063,0][-0.47944,-0.668635,-1.16204][1.10336,-0.775318,2.66375][0.226883,0.590063,0][-0.442977,-0.314304,-1.07401][0.369206,-0.26305,0.891343][0.224337,0.565323,0][-0.816861,-0.314304,-0.824187][0.682204,-0.26305,0.682204][0.250442,0.565323,0][-0.563703,-0.668635,-1.36546][-1.18984,0.896002,-3.1802][0.576819,0.840667,0][-0.520805,-0.314304,-1.2619][-0.364398,0.305416,-0.879736][0.579815,0.815928,0][-0.0019518,-0.314304,-1.36511][0.000819164,0.302428,-0.953172][0.616041,0.815928,0][-0.563703,-0.668635,-1.36546][-1.18984,0.896002,-3.1802][0.576819,0.840667,0][-0.0019518,-0.314304,-1.36511][0.000819164,0.302428,-0.953172][0.616041,0.815928,0][-0.00195186,-0.667184,-1.47388][0.0674039,0.125633,-0.989784][0.616041,0.840566,0][-0.563703,-0.668635,-1.36546][-1.18984,0.896002,-3.1802][0.576819,0.840667,0][-0.00195186,-0.667184,-1.47388][0.0674039,0.125633,-0.989784][0.616041,0.840566,0][-0.00195193,-1.03843,-1.4772][0.030098,0.0603636,-0.997723][0.616041,0.866487,0][-0.520805,-0.314304,-1.2619][-0.364398,0.305416,-0.879736][0.579815,0.815928,0][-0.476671,0.0400264,-1.15535][-0.328913,0.511149,-0.794067][0.582896,0.791188,0][-0.00195176,0.0400264,-1.24978][0,0.511149,-0.859492][0.616041,0.791188,0][-0.00195176,0.0400264,-1.24978][0,0.511149,-0.859492][0.616041,0.791188,0][-0.0019518,-0.314304,-1.36511][0.000819164,0.302428,-0.953172][0.616041,0.815928,0][-0.520805,-0.314304,-1.2619][-0.364398,0.305416,-0.879736][0.579815,0.815928,0][-0.476671,0.0400264,-1.15535][-0.328913,0.511149,-0.794067][0.185507,0.653867,0][-0.360805,0.341322,-0.875627][-0.22464,0.809578,-0.542329][0.215078,0.65774,0][-0.00195174,0.341322,-0.947007][1.55895e-007,0.809578,-0.587013][0.215422,0.682317,0][-0.00195174,0.341322,-0.947007][1.55895e-007,0.809578,-0.587013][0.215422,0.682317,0][-0.00195176,0.0400264,-1.24978][0,0.511149,-0.859492][0.185962,0.686379,0][-0.476671,0.0400264,-1.15535][-0.328913,0.511149,-0.794067][0.185507,0.653867,0][-0.360805,0.341322,-0.875627][-0.22464,0.809578,-0.542329][0.220555,0.0945485,0][-0.100017,0.659853,-0.246029][-0.162045,0.905923,-0.391211][0.194278,0.134215,0][-0.00195169,0.659853,-0.265536][0,0.905923,-0.423443][0.187818,0.13157,0][-0.00195169,0.659853,-0.265536][0,0.905923,-0.423443][0.187818,0.13157,0][-0.00195174,0.341322,-0.947007][1.55895e-007,0.809578,-0.587013][0.196915,0.0848663,0][-0.360805,0.341322,-0.875627][-0.22464,0.809578,-0.542329][0.220555,0.0945485,0][-0.00195175,0.341322,-0.806347][-2.12884e-007,-0.810574,0.585636][0.17321,0.507181,0][-0.00195171,0.61885,-0.00927766][-1.58159e-007,-1,0][0.18385,0.452556,0][-0.306977,0.341322,-0.745674][0.224113,-0.810574,0.541057][0.194924,0.507095,0][-0.306977,0.341322,-0.745674][0.224113,-0.810574,0.541057][0.214842,0.519547,0][-0.405463,0.0400264,-0.983441][0.34011,-0.458393,0.821098][0.221718,0.540584,0][-0.00195176,0.0400264,-1.0637][0,-0.458393,0.88875][0.193544,0.540584,0][-0.00195176,0.0400264,-1.0637][0,-0.458393,0.88875][0.193544,0.540584,0][-0.00195175,0.341322,-0.806347][-2.12884e-007,-0.810574,0.585636][0.193544,0.519547,0][-0.306977,0.341322,-0.745674][0.224113,-0.810574,0.541057][0.214842,0.519547,0][-0.405463,0.0400264,-0.983441][0.34011,-0.458393,0.821098][0.221718,0.540584,0][-0.442977,-0.314304,-1.07401][0.369206,-0.26305,0.891343][0.224337,0.565323,0][-0.00195181,-0.314304,-1.16173][0,-0.26305,0.964782][0.193544,0.565323,0][-0.00195181,-0.314304,-1.16173][0,-0.26305,0.964782][0.193544,0.565323,0][-0.00195176,0.0400264,-1.0637][0,-0.458393,0.88875][0.193544,0.540584,0][-0.405463,0.0400264,-0.983441][0.34011,-0.458393,0.821098][0.221718,0.540584,0][-0.442977,-0.314304,-1.07401][0.369206,-0.26305,0.891343][0.224337,0.565323,0][-0.47944,-0.668635,-1.16204][1.10336,-0.775318,2.66375][0.226883,0.590063,0][-0.00195188,-0.668635,-1.25701][-4.58794e-007,-0.775317,2.88322][0.193544,0.590063,0][-0.00195188,-0.668635,-1.25701][-4.58794e-007,-0.775317,2.88322][0.193544,0.590063,0][-0.00195181,-0.314304,-1.16173][0,-0.26305,0.964782][0.193544,0.565323,0][-0.442977,-0.314304,-1.07401][0.369206,-0.26305,0.891343][0.224337,0.565323,0][0.516902,-0.314304,-1.2619][0.355873,0.288829,-0.888781][0.652268,0.815928,0][0.559799,-0.668635,-1.36546][0.814143,1.02658,-3.1751][0.655263,0.840667,0][-0.00195193,-1.03843,-1.4772][0.030098,0.0603636,-0.997723][0.616041,0.866487,0][0.516902,-0.314304,-1.2619][0.355873,0.288829,-0.888781][0.652268,0.815928,0][-0.00195193,-1.03843,-1.4772][0.030098,0.0603636,-0.997723][0.616041,0.866487,0][-0.00195186,-0.667184,-1.47388][0.0674039,0.125633,-0.989784][0.616041,0.840566,0][0.516902,-0.314304,-1.2619][0.355873,0.288829,-0.888781][0.652268,0.815928,0][-0.00195186,-0.667184,-1.47388][0.0674039,0.125633,-0.989784][0.616041,0.840566,0][-0.0019518,-0.314304,-1.36511][0.000819164,0.302428,-0.953172][0.616041,0.815928,0][-0.0019518,-0.314304,-1.36511][0.000819164,0.302428,-0.953172][0.616041,0.815928,0][-0.00195176,0.0400264,-1.24978][0,0.511149,-0.859492][0.616041,0.791188,0][0.472768,0.0400263,-1.15535][0.328913,0.511149,-0.794067][0.649187,0.791188,0][0.472768,0.0400263,-1.15535][0.328913,0.511149,-0.794067][0.649187,0.791188,0][0.516902,-0.314304,-1.2619][0.355873,0.288829,-0.888781][0.652268,0.815928,0][-0.0019518,-0.314304,-1.36511][0.000819164,0.302428,-0.953172][0.616041,0.815928,0][-0.00195176,0.0400264,-1.24978][0,0.511149,-0.859492][0.185962,0.686379,0][-0.00195174,0.341322,-0.947007][1.55895e-007,0.809578,-0.587013][0.215422,0.682317,0][0.356902,0.341322,-0.875626][0.22464,0.809578,-0.542329][0.222846,0.703101,0][0.356902,0.341322,-0.875626][0.22464,0.809578,-0.542329][0.222846,0.703101,0][0.472768,0.0400263,-1.15535][0.328913,0.511149,-0.794067][0.195784,0.713874,0][-0.00195176,0.0400264,-1.24978][0,0.511149,-0.859492][0.185962,0.686379,0][-0.00195174,0.341322,-0.947007][1.55895e-007,0.809578,-0.587013][0.196915,0.0848663,0][-0.00195169,0.659853,-0.265536][0,0.905923,-0.423443][0.187818,0.13157,0][0.096114,0.659853,-0.246029][0.162045,0.905923,-0.391211][0.180837,0.131597,0][0.096114,0.659853,-0.246029][0.162045,0.905923,-0.391211][0.180837,0.131597,0][0.356902,0.341322,-0.875626][0.22464,0.809578,-0.542329][0.171369,0.0849679,0][-0.00195174,0.341322,-0.947007][1.55895e-007,0.809578,-0.587013][0.196915,0.0848663,0][0.303074,0.341322,-0.745674][-0.224113,-0.810574,0.541057][0.153115,0.498951,0][-0.00195171,0.61885,-0.00927766][-1.58159e-007,-1,0][0.18385,0.452556,0][-0.00195175,0.341322,-0.806347][-2.12884e-007,-0.810574,0.585636][0.17321,0.507181,0][-0.00195175,0.341322,-0.806347][-2.12884e-007,-0.810574,0.585636][0.193544,0.519547,0][-0.00195176,0.0400264,-1.0637][0,-0.458393,0.88875][0.193544,0.540584,0][0.40156,0.0400263,-0.983441][-0.34011,-0.458393,0.821097][0.165371,0.540584,0][0.40156,0.0400263,-0.983441][-0.34011,-0.458393,0.821097][0.165371,0.540584,0][0.303074,0.341322,-0.745674][-0.224113,-0.810574,0.541057][0.172247,0.519547,0][-0.00195175,0.341322,-0.806347][-2.12884e-007,-0.810574,0.585636][0.193544,0.519547,0][-0.00195176,0.0400264,-1.0637][0,-0.458393,0.88875][0.193544,0.540584,0][-0.00195181,-0.314304,-1.16173][0,-0.26305,0.964782][0.193544,0.565323,0][0.439074,-0.314304,-1.07401][-0.369206,-0.26305,0.891343][0.162752,0.565323,0][0.439074,-0.314304,-1.07401][-0.369206,-0.26305,0.891343][0.162752,0.565323,0][0.40156,0.0400263,-0.983441][-0.34011,-0.458393,0.821097][0.165371,0.540584,0][-0.00195176,0.0400264,-1.0637][0,-0.458393,0.88875][0.193544,0.540584,0][-0.00195181,-0.314304,-1.16173][0,-0.26305,0.964782][0.193544,0.565323,0][-0.00195188,-0.668635,-1.25701][-4.58794e-007,-0.775317,2.88322][0.193544,0.590063,0][0.475537,-0.668635,-1.16204][-1.10336,-0.775317,2.66375][0.160206,0.590063,0][0.475537,-0.668635,-1.16204][-1.10336,-0.775317,2.66375][0.160206,0.590063,0][0.439074,-0.314304,-1.07401][-0.369206,-0.26305,0.891343][0.162752,0.565323,0][-0.00195181,-0.314304,-1.16173][0,-0.26305,0.964782][0.193544,0.565323,0][0.559799,-0.668635,-1.36546][0.814143,1.02658,-3.1751][0.655263,0.840667,0][0.516902,-0.314304,-1.2619][0.355873,0.288829,-0.888781][0.652268,0.815928,0][0.956765,-0.314305,-0.967994][0.673321,0.305416,-0.67332][0.68298,0.815928,0][0.956765,-0.314305,-0.967994][0.673321,0.305416,-0.67332][0.68298,0.815928,0][1.03603,-0.668635,-1.04726][3.31913,1.07287,-2.88237][0.688514,0.840667,0][0.559799,-0.668635,-1.36546][0.814143,1.02658,-3.1751][0.655263,0.840667,0][0.516902,-0.314304,-1.2619][0.355873,0.288829,-0.888781][0.652268,0.815928,0][0.472768,0.0400263,-1.15535][0.328913,0.511149,-0.794067][0.649187,0.791188,0][0.875216,0.0400263,-0.886445][0.607753,0.511149,-0.607753][0.677286,0.791188,0][0.875216,0.0400263,-0.886445][0.607753,0.511149,-0.607753][0.677286,0.791188,0][0.956765,-0.314305,-0.967994][0.673321,0.305416,-0.67332][0.68298,0.815928,0][0.516902,-0.314304,-1.2619][0.355873,0.288829,-0.888781][0.652268,0.815928,0][0.472768,0.0400263,-1.15535][0.328913,0.511149,-0.794067][0.745581,0.531486,0][0.356902,0.341322,-0.875626][0.22464,0.809578,-0.542329][0.77296,0.543311,0][0.661123,0.341322,-0.672352][0.415081,0.809578,-0.415081][0.766172,0.567939,0][0.661123,0.341322,-0.672352][0.415081,0.809578,-0.415081][0.766172,0.567939,0][0.875216,0.0400263,-0.886445][0.607753,0.511149,-0.607753][0.736601,0.564066,0][0.472768,0.0400263,-1.15535][0.328913,0.511149,-0.794067][0.745581,0.531486,0][0.356902,0.341322,-0.875626][0.22464,0.809578,-0.542329][0.171369,0.0849679,0][0.096114,0.659853,-0.246029][0.162045,0.905923,-0.391211][0.180837,0.131597,0][0.17925,0.659853,-0.190479][0.29942,0.905922,-0.29942][0.174398,0.134295,0][0.17925,0.659853,-0.190479][0.29942,0.905922,-0.29942][0.174398,0.134295,0][0.661123,0.341322,-0.672352][0.415081,0.809578,-0.415081][0.147806,0.0948379,0][0.356902,0.341322,-0.875626][0.22464,0.809578,-0.542329][0.171369,0.0849679,0][0.561662,0.341322,-0.572891][-0.414108,-0.810574,0.414107][0.1377,0.483658,0][-0.00195171,0.61885,-0.00927766][-1.58159e-007,-1,0][0.18385,0.452556,0][0.303074,0.341322,-0.745674][-0.224113,-0.810574,0.541057][0.153115,0.498951,0][0.303074,0.341322,-0.745674][-0.224113,-0.810574,0.541057][0.625365,0.76588,0][0.40156,0.0400263,-0.983441][-0.34011,-0.458393,0.821097][0.618762,0.739014,0][0.743641,0.0400263,-0.75487][-0.628441,-0.458393,0.628441][0.647301,0.735748,0][0.743641,0.0400263,-0.75487][-0.628441,-0.458393,0.628441][0.647301,0.735748,0][0.561662,0.341322,-0.572891][-0.414108,-0.810574,0.414107][0.646938,0.763412,0][0.303074,0.341322,-0.745674][-0.224113,-0.810574,0.541057][0.625365,0.76588,0][0.40156,0.0400263,-0.983441][-0.34011,-0.458393,0.821097][0.165371,0.540584,0][0.439074,-0.314304,-1.07401][-0.369206,-0.26305,0.891343][0.162752,0.565323,0][0.812957,-0.314305,-0.824187][-0.682204,-0.26305,0.682204][0.136647,0.565323,0][0.812957,-0.314305,-0.824187][-0.682204,-0.26305,0.682204][0.136647,0.565323,0][0.743641,0.0400263,-0.75487][-0.628441,-0.458393,0.628441][0.141487,0.540584,0][0.40156,0.0400263,-0.983441][-0.34011,-0.458393,0.821097][0.165371,0.540584,0][0.439074,-0.314304,-1.07401][-0.369206,-0.26305,0.891343][0.162752,0.565323,0][0.475537,-0.668635,-1.16204][-1.10336,-0.775317,2.66375][0.160206,0.590063,0][0.880332,-0.668635,-0.891561][-3.35453,-0.925522,2.91792][0.131943,0.590063,0][0.880332,-0.668635,-0.891561][-3.35453,-0.925522,2.91792][0.131943,0.590063,0][0.812957,-0.314305,-0.824187][-0.682204,-0.26305,0.682204][0.136647,0.565323,0][0.439074,-0.314304,-1.07401][-0.369206,-0.26305,0.891343][0.162752,0.565323,0][1.64586,-2.44029,-1.65709][1.30465,0.0130246,-0.87174][0.360172,0.28541,0][1.6446,-2.22919,-1.65583][1.84747,1.2493,-1.23444][0.36026,0.270671,0][2.14937,-2.22919,-0.900385][0.801515,0.497344,-0.331998][0.413006,0.270671,0][2.14937,-2.22919,-0.900385][0.801515,0.497344,-0.331998][0.413006,0.270671,0][2.15102,-2.44029,-0.901069][1.30465,0.0130246,-0.87174][0.412958,0.28541,0][1.64586,-2.44029,-1.65709][1.30465,0.0130246,-0.87174][0.360172,0.28541,0][1.6446,-2.22919,-1.65583][1.84747,1.2493,-1.23444][0.287547,0.590063,0][1.33809,-2.00582,-1.34932][1.65677,2.395,-1.10702][0.266147,0.568662,0][1.7489,-2.00582,-0.734505][0.584095,0.774789,-0.24194][0.29483,0.525735,0][1.7489,-2.00582,-0.734505][0.584095,0.774789,-0.24194][0.29483,0.525735,0][2.14937,-2.22919,-0.900385][0.801515,0.497344,-0.331998][0.322791,0.537317,0][1.6446,-2.22919,-1.65583][1.84747,1.2493,-1.23444][0.287547,0.590063,0][1.33809,-2.00582,-1.34932][1.65677,2.395,-1.10702][0.605818,0.537268,0][1.13589,-1.61625,-1.14712][2.39105,1.27084,-1.59765][0.638781,0.542313,0][1.48471,-1.61625,-0.625074][0.842322,0.410806,-0.348901][0.639372,0.584487,0][1.48471,-1.61625,-0.625074][0.842322,0.410806,-0.348901][0.639372,0.584487,0][1.7489,-2.00582,-0.734505][0.584095,0.774789,-0.24194][0.606514,0.586936,0][1.33809,-2.00582,-1.34932][1.65677,2.395,-1.10702][0.605818,0.537268,0][1.13589,-1.61625,-1.14712][2.39105,1.27084,-1.59765][0.794412,0.428158,0][1.07847,-1.19582,-1.0897][2.59324,0.471128,-1.73275][0.798421,0.398804,0][1.40969,-1.19582,-0.593998][0.913113,0.152222,-0.378224][0.833031,0.398804,0][1.40969,-1.19582,-0.593998][0.913113,0.152222,-0.378224][0.833031,0.398804,0][1.48471,-1.61625,-0.625074][0.842322,0.410806,-0.348901][0.830861,0.428158,0][1.13589,-1.61625,-1.14712][2.39105,1.27084,-1.59765][0.794412,0.428158,0][1.07847,-1.19582,-1.0897][2.59324,0.471128,-1.73275][0.798421,0.398804,0][1.03603,-0.668635,-1.04726][3.31913,1.07287,-2.88237][0.801384,0.361995,0][1.35424,-0.668635,-0.571029][0.904075,0.205947,-0.37448][0.834635,0.361995,0][1.35424,-0.668635,-0.571029][0.904075,0.205947,-0.37448][0.834635,0.361995,0][1.40969,-1.19582,-0.593998][0.913113,0.152222,-0.378224][0.833031,0.398804,0][1.07847,-1.19582,-1.0897][2.59324,0.471128,-1.73275][0.798421,0.398804,0][1.03603,-0.668635,-1.04726][3.31913,1.07287,-2.88237][0.801384,0.361995,0][0.956765,-0.314305,-0.967994][0.673321,0.305416,-0.67332][0.806918,0.337256,0][1.25067,-0.314305,-0.528131][0.879736,0.305416,-0.364398][0.83763,0.337256,0][1.25067,-0.314305,-0.528131][0.879736,0.305416,-0.364398][0.83763,0.337256,0][1.35424,-0.668635,-0.571029][0.904075,0.205947,-0.37448][0.834635,0.361995,0][1.03603,-0.668635,-1.04726][3.31913,1.07287,-2.88237][0.801384,0.361995,0][0.956765,-0.314305,-0.967994][0.673321,0.305416,-0.67332][0.806918,0.337256,0][0.875216,0.0400263,-0.886445][0.607753,0.511149,-0.607753][0.812612,0.312516,0][1.14412,0.0400262,-0.483997][0.794067,0.511149,-0.328913][0.840711,0.312516,0][1.14412,0.0400262,-0.483997][0.794067,0.511149,-0.328913][0.840711,0.312516,0][1.25067,-0.314305,-0.528131][0.879736,0.305416,-0.364398][0.83763,0.337256,0][0.956765,-0.314305,-0.967994][0.673321,0.305416,-0.67332][0.806918,0.337256,0][0.875216,0.0400263,-0.886445][0.607753,0.511149,-0.607753][0.736601,0.564066,0][0.661123,0.341322,-0.672352][0.415081,0.809578,-0.415081][0.766172,0.567939,0][0.864397,0.341322,-0.368131][0.542329,0.809578,-0.22464][0.766516,0.592515,0][0.864397,0.341322,-0.368131][0.542329,0.809578,-0.22464][0.766516,0.592515,0][1.14412,0.0400262,-0.483997][0.794067,0.511149,-0.328913][0.737056,0.596578,0][0.875216,0.0400263,-0.886445][0.607753,0.511149,-0.607753][0.736601,0.564066,0][0.661123,0.341322,-0.672352][0.415081,0.809578,-0.415081][0.147806,0.0948379,0][0.17925,0.659853,-0.190479][0.29942,0.905922,-0.29942][0.174398,0.134295,0][0.2348,0.659853,-0.107343][0.391211,0.905923,-0.162045][0.169481,0.139251,0][0.2348,0.659853,-0.107343][0.391211,0.905923,-0.162045][0.169481,0.139251,0][0.864397,0.341322,-0.368131][0.542329,0.809578,-0.22464][0.129814,0.112974,0][0.661123,0.341322,-0.672352][0.415081,0.809578,-0.415081][0.147806,0.0948379,0][0.734445,0.341322,-0.314303][-0.541057,-0.810574,0.224113][0.129311,0.46363,0][-0.00195171,0.61885,-0.00927766][-1.58159e-007,-1,0][0.18385,0.452556,0][0.561662,0.341322,-0.572891][-0.414108,-0.810574,0.414107][0.1377,0.483658,0][0.561662,0.341322,-0.572891][-0.414108,-0.810574,0.414107][0.646938,0.763412,0][0.743641,0.0400263,-0.75487][-0.628441,-0.458393,0.628441][0.647301,0.735748,0][0.972212,0.0400263,-0.412789][-0.821098,-0.458393,0.34011][0.67447,0.739744,0][0.972212,0.0400263,-0.412789][-0.821098,-0.458393,0.34011][0.67447,0.739744,0][0.734445,0.341322,-0.314303][-0.541057,-0.810574,0.224113][0.667476,0.766432,0][0.561662,0.341322,-0.572891][-0.414108,-0.810574,0.414107][0.646938,0.763412,0][0.743641,0.0400263,-0.75487][-0.628441,-0.458393,0.628441][0.159852,0.635855,0][0.812957,-0.314305,-0.824187][-0.682204,-0.26305,0.682204][0.164692,0.660595,0][1.06278,-0.314305,-0.450303][-0.891343,-0.26305,0.369206][0.138587,0.660595,0][1.06278,-0.314305,-0.450303][-0.891343,-0.26305,0.369206][0.138587,0.660595,0][0.972212,0.0400263,-0.412789][-0.821098,-0.458393,0.34011][0.135968,0.635855,0][0.743641,0.0400263,-0.75487][-0.628441,-0.458393,0.628441][0.159852,0.635855,0][0.812957,-0.314305,-0.824187][-0.682204,-0.26305,0.682204][0.164692,0.660595,0][0.880332,-0.668635,-0.891561][-3.35453,-0.925522,2.91792][0.169396,0.685335,0][1.15081,-0.668635,-0.486766][-0.90932,-0.176835,0.376652][0.141133,0.685335,0][1.15081,-0.668635,-0.486766][-0.90932,-0.176835,0.376652][0.141133,0.685335,0][1.06278,-0.314305,-0.450303][-0.891343,-0.26305,0.369206][0.138587,0.660595,0][0.812957,-0.314305,-0.824187][-0.682204,-0.26305,0.682204][0.164692,0.660595,0][0.880332,-0.668635,-0.891561][-3.35453,-0.925522,2.91792][0.169396,0.685335,0][0.916408,-1.19582,-0.927637][-2.60008,-0.401393,1.73732][0.171915,0.722143,0][1.19794,-1.19582,-0.50629][-0.916068,-0.129768,0.379447][0.142496,0.722143,0][1.19794,-1.19582,-0.50629][-0.916068,-0.129768,0.379447][0.142496,0.722143,0][1.15081,-0.668635,-0.486766][-0.90932,-0.176835,0.376652][0.141133,0.685335,0][0.880332,-0.668635,-0.891561][-3.35453,-0.925522,2.91792][0.169396,0.685335,0][0.916408,-1.19582,-0.927637][-2.60008,-0.401393,1.73732][0.171915,0.722143,0][0.965215,-1.61625,-0.976444][-2.45092,-1.11858,1.63765][0.175323,0.751498,0][1.26171,-1.61625,-0.532704][-0.861634,-0.360844,0.3569][0.14434,0.751498,0][1.26171,-1.61625,-0.532704][-0.861634,-0.360844,0.3569][0.14434,0.751498,0][1.19794,-1.19582,-0.50629][-0.916068,-0.129768,0.379447][0.142496,0.722143,0][0.916408,-1.19582,-0.927637][-2.60008,-0.401393,1.73732][0.171915,0.722143,0][0.965215,-1.61625,-0.976444][-2.45092,-1.11858,1.63765][0.175323,0.751498,0][1.13709,-2.00582,-1.14832][-1.80066,-2.24461,1.20316][0.187323,0.778698,0][1.48627,-2.00582,-0.625721][-0.635008,-0.726347,0.263029][0.150835,0.778698,0][1.48627,-2.00582,-0.625721][-0.635008,-0.726347,0.263029][0.150835,0.778698,0][1.26171,-1.61625,-0.532704][-0.861634,-0.360844,0.3569][0.14434,0.751498,0][0.965215,-1.61625,-0.976444][-2.45092,-1.11858,1.63765][0.175323,0.751498,0][1.13709,-2.00582,-1.14832][-1.80066,-2.24461,1.20316][0.577897,0.0281905,0][1.39762,-2.22919,-1.40885][-1.92065,-1.20466,1.28334][0.596087,0.01,0][1.82667,-2.22919,-0.766719][-0.815731,-0.469484,0.337887][0.626044,0.054834,0][1.82667,-2.22919,-0.766719][-0.815731,-0.469484,0.337887][0.626044,0.054834,0][1.48627,-2.00582,-0.625721][-0.635008,-0.726347,0.263029][0.602277,0.0646786,0][1.13709,-2.00582,-1.14832][-1.80066,-2.24461,1.20316][0.577897,0.0281905,0][1.39762,-2.22919,-1.40885][-1.92065,-1.20466,1.28334][0.205513,0.794294,0][1.39869,-2.44029,-1.40992][-1.30487,-0.0110723,0.871886][0.205588,0.809033,0][1.82808,-2.44029,-0.7673][-1.30487,-0.0110726,0.871886][0.16072,0.809033,0][1.82808,-2.44029,-0.7673][-1.30487,-0.0110726,0.871886][0.16072,0.809033,0][1.82667,-2.22919,-0.766719][-0.815731,-0.469484,0.337887][0.16068,0.794294,0][1.39762,-2.22919,-1.40885][-1.92065,-1.20466,1.28334][0.205513,0.794294,0][1.39869,-2.44029,-1.40992][-1.30487,-0.0110723,0.871886][0.270502,0.0272578,0][1.64586,-2.44029,-1.65709][1.30465,0.0130246,-0.87174][0.28776,0.01,0][2.15102,-2.44029,-0.901069][1.30465,0.0130246,-0.87174][0.323031,0.0627863,0][2.15102,-2.44029,-0.901069][1.30465,0.0130246,-0.87174][0.323031,0.0627863,0][1.82808,-2.44029,-0.7673][-1.30487,-0.0110726,0.871886][0.300482,0.0721262,0][1.39869,-2.44029,-1.40992][-1.30487,-0.0110723,0.871886][0.270502,0.0272578,0][2.15102,-2.44029,-0.901069][1.30465,0.0130246,-0.87174][0.412958,0.28541,0][2.14937,-2.22919,-0.900385][0.801515,0.497344,-0.331998][0.413006,0.270671,0][2.32663,-2.22919,-0.00927736][0.867553,0.497344,0][0.475224,0.270671,0][2.32663,-2.22919,-0.00927736][0.867553,0.497344,0][0.475224,0.270671,0][2.32841,-2.44029,-0.00927736][1.53894,0.0130238,-0.306115][0.475224,0.28541,0][2.15102,-2.44029,-0.901069][1.30465,0.0130246,-0.87174][0.412958,0.28541,0][2.14937,-2.22919,-0.900385][0.801515,0.497344,-0.331998][0.322791,0.537317,0][1.7489,-2.00582,-0.734505][0.584095,0.774789,-0.24194][0.29483,0.525735,0][1.89316,-2.00582,-0.00927739][0.63222,0.774789,0][0.304902,0.475099,0][1.89316,-2.00582,-0.00927739][0.63222,0.774789,0][0.304902,0.475099,0][2.32663,-2.22919,-0.00927736][0.867553,0.497344,0][0.335167,0.475099,0][2.14937,-2.22919,-0.900385][0.801515,0.497344,-0.331998][0.322791,0.537317,0][1.7489,-2.00582,-0.734505][0.584095,0.774789,-0.24194][0.823221,0.455359,0][1.48471,-1.61625,-0.625074][0.842322,0.410806,-0.348901][0.830861,0.428158,0][1.6072,-1.61625,-0.00927742][0.911723,0.410806,0][0.873857,0.428158,0][1.6072,-1.61625,-0.00927742][0.911723,0.410806,0][0.873857,0.428158,0][1.89316,-2.00582,-0.00927739][0.63222,0.774789,0][0.873857,0.455359,0][1.7489,-2.00582,-0.734505][0.584095,0.774789,-0.24194][0.823221,0.455359,0][1.48471,-1.61625,-0.625074][0.842322,0.410806,-0.348901][0.830861,0.428158,0][1.40969,-1.19582,-0.593998][0.913113,0.152222,-0.378224][0.833031,0.398804,0][1.526,-1.19582,-0.00927745][0.988346,0.152222,0][0.873857,0.398804,0][1.526,-1.19582,-0.00927745][0.988346,0.152222,0][0.873857,0.398804,0][1.6072,-1.61625,-0.00927742][0.911723,0.410806,0][0.873857,0.428158,0][1.48471,-1.61625,-0.625074][0.842322,0.410806,-0.348901][0.830861,0.428158,0][1.40969,-1.19582,-0.593998][0.913113,0.152222,-0.378224][0.833031,0.398804,0][1.35424,-0.668635,-0.571029][0.904075,0.205947,-0.37448][0.834635,0.361995,0][1.46597,-0.668635,-0.00927748][0.978563,0.205947,0][0.873857,0.361995,0][1.46597,-0.668635,-0.00927748][0.978563,0.205947,0][0.873857,0.361995,0][1.526,-1.19582,-0.00927745][0.988346,0.152222,0][0.873857,0.398804,0][1.40969,-1.19582,-0.593998][0.913113,0.152222,-0.378224][0.833031,0.398804,0][1.35424,-0.668635,-0.571029][0.904075,0.205947,-0.37448][0.834635,0.361995,0][1.25067,-0.314305,-0.528131][0.879736,0.305416,-0.364398][0.83763,0.337256,0][1.35388,-0.314305,-0.00927752][0.952219,0.305416,0][0.873857,0.337256,0][1.35388,-0.314305,-0.00927752][0.952219,0.305416,0][0.873857,0.337256,0][1.46597,-0.668635,-0.00927748][0.978563,0.205947,0][0.873857,0.361995,0][1.35424,-0.668635,-0.571029][0.904075,0.205947,-0.37448][0.834635,0.361995,0][1.25067,-0.314305,-0.528131][0.879736,0.305416,-0.364398][0.83763,0.337256,0][1.14412,0.0400262,-0.483997][0.794067,0.511149,-0.328913][0.840711,0.312516,0][1.23855,0.0400262,-0.00927755][0.859492,0.511149,0][0.873857,0.312516,0][1.23855,0.0400262,-0.00927755][0.859492,0.511149,0][0.873857,0.312516,0][1.35388,-0.314305,-0.00927752][0.952219,0.305416,0][0.873857,0.337256,0][1.25067,-0.314305,-0.528131][0.879736,0.305416,-0.364398][0.83763,0.337256,0][1.14412,0.0400262,-0.483997][0.794067,0.511149,-0.328913][0.737056,0.596578,0][0.864397,0.341322,-0.368131][0.542329,0.809578,-0.22464][0.766516,0.592515,0][0.935777,0.341322,-0.00927757][0.587013,0.809578,0][0.773941,0.613299,0][0.935777,0.341322,-0.00927757][0.587013,0.809578,0][0.773941,0.613299,0][1.23855,0.0400262,-0.00927755][0.859492,0.511149,0][0.746878,0.624073,0][1.14412,0.0400262,-0.483997][0.794067,0.511149,-0.328913][0.737056,0.596578,0][0.864397,0.341322,-0.368131][0.542329,0.809578,-0.22464][0.129814,0.112974,0][0.2348,0.659853,-0.107343][0.391211,0.905923,-0.162045][0.169481,0.139251,0][0.254306,0.659853,-0.00927765][0.423444,0.905922,0][0.166835,0.145711,0][0.254306,0.659853,-0.00927765][0.423444,0.905922,0][0.166835,0.145711,0][0.935777,0.341322,-0.00927757][0.587013,0.809578,0][0.120132,0.136614,0][0.864397,0.341322,-0.368131][0.542329,0.809578,-0.22464][0.129814,0.112974,0][0.795118,0.341322,-0.00927758][-0.585636,-0.810574,0][0.129224,0.441916,0][-0.00195171,0.61885,-0.00927766][-1.58159e-007,-1,0][0.18385,0.452556,0][0.734445,0.341322,-0.314303][-0.541057,-0.810574,0.224113][0.129311,0.46363,0][0.734445,0.341322,-0.314303][-0.541057,-0.810574,0.224113][0.129091,0.614819,0][0.972212,0.0400263,-0.412789][-0.821098,-0.458393,0.34011][0.135968,0.635855,0][1.05248,0.0400263,-0.00927756][-0.88875,-0.458393,0][0.107794,0.635855,0][1.05248,0.0400263,-0.00927756][-0.88875,-0.458393,0][0.107794,0.635855,0][0.795118,0.341322,-0.00927758][-0.585636,-0.810574,0][0.107794,0.614819,0][0.734445,0.341322,-0.314303][-0.541057,-0.810574,0.224113][0.129091,0.614819,0][0.972212,0.0400263,-0.412789][-0.821098,-0.458393,0.34011][0.135968,0.635855,0][1.06278,-0.314305,-0.450303][-0.891343,-0.26305,0.369206][0.138587,0.660595,0][1.1505,-0.314305,-0.00927754][-0.964782,-0.26305,0][0.107794,0.660595,0][1.1505,-0.314305,-0.00927754][-0.964782,-0.26305,0][0.107794,0.660595,0][1.05248,0.0400263,-0.00927756][-0.88875,-0.458393,0][0.107794,0.635855,0][0.972212,0.0400263,-0.412789][-0.821098,-0.458393,0.34011][0.135968,0.635855,0][1.06278,-0.314305,-0.450303][-0.891343,-0.26305,0.369206][0.138587,0.660595,0][1.15081,-0.668635,-0.486766][-0.90932,-0.176835,0.376652][0.141133,0.685335,0][1.24579,-0.668635,-0.0092775][-0.984241,-0.176835,0][0.107794,0.685335,0][1.24579,-0.668635,-0.0092775][-0.984241,-0.176835,0][0.107794,0.685335,0][1.1505,-0.314305,-0.00927754][-0.964782,-0.26305,0][0.107794,0.660595,0][1.06278,-0.314305,-0.450303][-0.891343,-0.26305,0.369206][0.138587,0.660595,0][1.15081,-0.668635,-0.486766][-0.90932,-0.176835,0.376652][0.141133,0.685335,0][1.19794,-1.19582,-0.50629][-0.916068,-0.129768,0.379447][0.142496,0.722143,0][1.2968,-1.19582,-0.00927747][-0.991544,-0.129768,0][0.107794,0.722143,0][1.2968,-1.19582,-0.00927747][-0.991544,-0.129768,0][0.107794,0.722143,0][1.24579,-0.668635,-0.0092775][-0.984241,-0.176835,0][0.107794,0.685335,0][1.15081,-0.668635,-0.486766][-0.90932,-0.176835,0.376652][0.141133,0.685335,0][1.19794,-1.19582,-0.50629][-0.916068,-0.129768,0.379447][0.142496,0.722143,0][1.26171,-1.61625,-0.532704][-0.861634,-0.360844,0.3569][0.14434,0.751498,0][1.36583,-1.61625,-0.00927744][-0.932626,-0.360844,0][0.107794,0.751498,0][1.36583,-1.61625,-0.00927744][-0.932626,-0.360844,0][0.107794,0.751498,0][1.2968,-1.19582,-0.00927747][-0.991544,-0.129768,0][0.107794,0.722143,0][1.19794,-1.19582,-0.50629][-0.916068,-0.129768,0.379447][0.142496,0.722143,0][1.26171,-1.61625,-0.532704][-0.861634,-0.360844,0.3569][0.14434,0.751498,0][1.48627,-2.00582,-0.625721][-0.635008,-0.726347,0.263029][0.150835,0.778698,0][1.60889,-2.00582,-0.00927742][-0.687328,-0.726347,0][0.107794,0.778698,0][1.60889,-2.00582,-0.00927742][-0.687328,-0.726347,0][0.107794,0.778698,0][1.36583,-1.61625,-0.00927744][-0.932626,-0.360844,0][0.107794,0.751498,0][1.26171,-1.61625,-0.532704][-0.861634,-0.360844,0.3569][0.14434,0.751498,0][1.48627,-2.00582,-0.625721][-0.635008,-0.726347,0.263029][0.602277,0.0646786,0][1.82667,-2.22919,-0.766719][-0.815731,-0.469484,0.337887][0.626044,0.054834,0][1.97734,-2.22919,-0.00927739][-0.882941,-0.469484,0][0.636564,0.107719,0][1.97734,-2.22919,-0.00927739][-0.882941,-0.469484,0][0.636564,0.107719,0][1.60889,-2.00582,-0.00927742][-0.687328,-0.726347,0][0.610838,0.107719,0][1.48627,-2.00582,-0.625721][-0.635008,-0.726347,0.263029][0.602277,0.0646786,0][1.82667,-2.22919,-0.766719][-0.815731,-0.469484,0.337887][0.16068,0.794294,0][1.82808,-2.44029,-0.7673][-1.30487,-0.0110726,0.871886][0.16072,0.809033,0][1.97886,-2.44029,-0.00927739][-1.5392,-0.0110728,0.306166][0.107794,0.809033,0][1.97886,-2.44029,-0.00927739][-1.5392,-0.0110728,0.306166][0.107794,0.809033,0][1.97734,-2.22919,-0.00927739][-0.882941,-0.469484,0][0.107794,0.794294,0][1.82667,-2.22919,-0.766719][-0.815731,-0.469484,0.337887][0.16068,0.794294,0][1.82808,-2.44029,-0.7673][-1.30487,-0.0110726,0.871886][0.300482,0.0721262,0][2.15102,-2.44029,-0.901069][1.30465,0.0130246,-0.87174][0.323031,0.0627863,0][2.32841,-2.44029,-0.00927736][1.53894,0.0130238,-0.306115][0.335416,0.125052,0][2.32841,-2.44029,-0.00927736][1.53894,0.0130238,-0.306115][0.335416,0.125052,0][1.97886,-2.44029,-0.00927739][-1.5392,-0.0110728,0.306166][0.31101,0.125052,0][1.82808,-2.44029,-0.7673][-1.30487,-0.0110726,0.871886][0.300482,0.0721262,0][2.32841,-2.44029,-0.00927736][1.53894,0.0130238,-0.306115][0.475224,0.28541,0][2.32663,-2.22919,-0.00927736][0.867553,0.497344,0][0.475224,0.270671,0][2.14937,-2.22919,0.881831][0.801515,0.497344,0.331998][0.537442,0.270671,0][2.14937,-2.22919,0.881831][0.801515,0.497344,0.331998][0.537442,0.270671,0][2.15102,-2.44029,0.882514][1.53894,0.0130245,0.306114][0.53749,0.28541,0][2.32841,-2.44029,-0.00927736][1.53894,0.0130238,-0.306115][0.475224,0.28541,0][2.32663,-2.22919,-0.00927736][0.867553,0.497344,0][0.335167,0.475099,0][1.89316,-2.00582,-0.00927739][0.63222,0.774789,0][0.304902,0.475099,0][1.7489,-2.00582,0.71595][0.584095,0.774789,0.24194][0.29483,0.424463,0][1.7489,-2.00582,0.71595][0.584095,0.774789,0.24194][0.29483,0.424463,0][2.14937,-2.22919,0.881831][0.801515,0.497344,0.331998][0.322791,0.412881,0][2.32663,-2.22919,-0.00927736][0.867553,0.497344,0][0.335167,0.475099,0][1.89316,-2.00582,-0.00927739][0.63222,0.774789,0][0.873857,0.455359,0][1.6072,-1.61625,-0.00927742][0.911723,0.410806,0][0.873857,0.428158,0][1.48471,-1.61625,0.606519][0.842322,0.410806,0.348901][0.916852,0.428158,0][1.48471,-1.61625,0.606519][0.842322,0.410806,0.348901][0.916852,0.428158,0][1.7489,-2.00582,0.71595][0.584095,0.774789,0.24194][0.924493,0.455359,0][1.89316,-2.00582,-0.00927739][0.63222,0.774789,0][0.873857,0.455359,0][1.6072,-1.61625,-0.00927742][0.911723,0.410806,0][0.873857,0.428158,0][1.526,-1.19582,-0.00927745][0.988346,0.152222,0][0.873857,0.398804,0][1.40969,-1.19582,0.575443][0.913113,0.152222,0.378224][0.914683,0.398804,0][1.40969,-1.19582,0.575443][0.913113,0.152222,0.378224][0.914683,0.398804,0][1.48471,-1.61625,0.606519][0.842322,0.410806,0.348901][0.916852,0.428158,0][1.6072,-1.61625,-0.00927742][0.911723,0.410806,0][0.873857,0.428158,0][1.526,-1.19582,-0.00927745][0.988346,0.152222,0][0.873857,0.398804,0][1.46597,-0.668635,-0.00927748][0.978563,0.205947,0][0.873857,0.361995,0][1.35424,-0.668635,0.552474][0.904075,0.205947,0.37448][0.913079,0.361995,0][1.35424,-0.668635,0.552474][0.904075,0.205947,0.37448][0.913079,0.361995,0][1.40969,-1.19582,0.575443][0.913113,0.152222,0.378224][0.914683,0.398804,0][1.526,-1.19582,-0.00927745][0.988346,0.152222,0][0.873857,0.398804,0][1.46597,-0.668635,-0.00927748][0.978563,0.205947,0][0.873857,0.361995,0][1.35388,-0.314305,-0.00927752][0.952219,0.305416,0][0.873857,0.337256,0][1.25067,-0.314305,0.509576][0.879736,0.305416,0.364398][0.910084,0.337256,0][1.25067,-0.314305,0.509576][0.879736,0.305416,0.364398][0.910084,0.337256,0][1.35424,-0.668635,0.552474][0.904075,0.205947,0.37448][0.913079,0.361995,0][1.46597,-0.668635,-0.00927748][0.978563,0.205947,0][0.873857,0.361995,0][1.35388,-0.314305,-0.00927752][0.952219,0.305416,0][0.873857,0.337256,0][1.23855,0.0400262,-0.00927755][0.859492,0.511149,0][0.873857,0.312516,0][1.14412,0.0400263,0.465442][0.794067,0.511149,0.328913][0.907002,0.312516,0][1.14412,0.0400263,0.465442][0.794067,0.511149,0.328913][0.907002,0.312516,0][1.25067,-0.314305,0.509576][0.879736,0.305416,0.364398][0.910084,0.337256,0][1.35388,-0.314305,-0.00927752][0.952219,0.305416,0][0.873857,0.337256,0][1.23855,0.0400262,-0.00927755][0.859492,0.511149,0][0.946711,0.531486,0][0.935777,0.341322,-0.00927757][0.587013,0.809578,0][0.97409,0.543311,0][0.864397,0.341322,0.349576][0.542329,0.809578,0.22464][0.967302,0.567939,0][0.864397,0.341322,0.349576][0.542329,0.809578,0.22464][0.967302,0.567939,0][1.14412,0.0400263,0.465442][0.794067,0.511149,0.328913][0.937731,0.564066,0][1.23855,0.0400262,-0.00927755][0.859492,0.511149,0][0.946711,0.531486,0][0.935777,0.341322,-0.00927757][0.587013,0.809578,0][0.120132,0.136614,0][0.254306,0.659853,-0.00927765][0.423444,0.905922,0][0.166835,0.145711,0][0.2348,0.659853,0.0887881][0.391211,0.905923,0.162045][0.166863,0.152692,0][0.2348,0.659853,0.0887881][0.391211,0.905923,0.162045][0.166863,0.152692,0][0.864397,0.341322,0.349576][0.542329,0.809578,0.22464][0.120233,0.16216,0][0.935777,0.341322,-0.00927757][0.587013,0.809578,0][0.120132,0.136614,0][0.734445,0.341322,0.295748][-0.541057,-0.810574,-0.224113][0.137454,0.421821,0][-0.00195171,0.61885,-0.00927766][-1.58159e-007,-1,0][0.18385,0.452556,0][0.795118,0.341322,-0.00927758][-0.585636,-0.810574,0][0.129224,0.441916,0][0.795118,0.341322,-0.00927758][-0.585636,-0.810574,0][0.107794,0.614819,0][1.05248,0.0400263,-0.00927756][-0.88875,-0.458393,0][0.107794,0.635855,0][0.972212,0.0400263,0.394234][-0.821098,-0.458393,-0.34011][0.0796207,0.635855,0][0.972212,0.0400263,0.394234][-0.821098,-0.458393,-0.34011][0.0796207,0.635855,0][0.734445,0.341322,0.295748][-0.541057,-0.810574,-0.224113][0.0864971,0.614819,0][0.795118,0.341322,-0.00927758][-0.585636,-0.810574,0][0.107794,0.614819,0][1.05248,0.0400263,-0.00927756][-0.88875,-0.458393,0][0.107794,0.635855,0][1.1505,-0.314305,-0.00927754][-0.964782,-0.26305,0][0.107794,0.660595,0][1.06278,-0.314305,0.431748][-0.891342,-0.26305,-0.369206][0.0770014,0.660595,0][1.06278,-0.314305,0.431748][-0.891342,-0.26305,-0.369206][0.0770014,0.660595,0][0.972212,0.0400263,0.394234][-0.821098,-0.458393,-0.34011][0.0796207,0.635855,0][1.05248,0.0400263,-0.00927756][-0.88875,-0.458393,0][0.107794,0.635855,0][1.1505,-0.314305,-0.00927754][-0.964782,-0.26305,0][0.107794,0.660595,0][1.24579,-0.668635,-0.0092775][-0.984241,-0.176835,0][0.107794,0.685335,0][1.15081,-0.668635,0.468211][-0.90932,-0.176835,-0.376653][0.0744555,0.685335,0][1.15081,-0.668635,0.468211][-0.90932,-0.176835,-0.376653][0.0744555,0.685335,0][1.06278,-0.314305,0.431748][-0.891342,-0.26305,-0.369206][0.0770014,0.660595,0][1.1505,-0.314305,-0.00927754][-0.964782,-0.26305,0][0.107794,0.660595,0][1.24579,-0.668635,-0.0092775][-0.984241,-0.176835,0][0.107794,0.685335,0][1.2968,-1.19582,-0.00927747][-0.991544,-0.129768,0][0.107794,0.722143,0][1.19794,-1.19582,0.487735][-0.916068,-0.129768,-0.379448][0.0730923,0.722143,0][1.19794,-1.19582,0.487735][-0.916068,-0.129768,-0.379448][0.0730923,0.722143,0][1.15081,-0.668635,0.468211][-0.90932,-0.176835,-0.376653][0.0744555,0.685335,0][1.24579,-0.668635,-0.0092775][-0.984241,-0.176835,0][0.107794,0.685335,0][1.2968,-1.19582,-0.00927747][-0.991544,-0.129768,0][0.107794,0.722143,0][1.36583,-1.61625,-0.00927744][-0.932626,-0.360844,0][0.107794,0.751498,0][1.26171,-1.61625,0.51415][-0.861634,-0.360844,-0.356901][0.0712481,0.751498,0][1.26171,-1.61625,0.51415][-0.861634,-0.360844,-0.356901][0.0712481,0.751498,0][1.19794,-1.19582,0.487735][-0.916068,-0.129768,-0.379448][0.0730923,0.722143,0][1.2968,-1.19582,-0.00927747][-0.991544,-0.129768,0][0.107794,0.722143,0][1.36583,-1.61625,-0.00927744][-0.932626,-0.360844,0][0.107794,0.751498,0][1.60889,-2.00582,-0.00927742][-0.687328,-0.726347,0][0.107794,0.778698,0][1.48627,-2.00582,0.607166][-0.635008,-0.726347,-0.263029][0.0647536,0.778698,0][1.48627,-2.00582,0.607166][-0.635008,-0.726347,-0.263029][0.0647536,0.778698,0][1.26171,-1.61625,0.51415][-0.861634,-0.360844,-0.356901][0.0712481,0.751498,0][1.36583,-1.61625,-0.00927744][-0.932626,-0.360844,0][0.107794,0.751498,0][1.60889,-2.00582,-0.00927742][-0.687328,-0.726347,0][0.610838,0.107719,0][1.97734,-2.22919,-0.00927739][-0.882941,-0.469484,0][0.636564,0.107719,0][1.82667,-2.22919,0.748164][-0.815731,-0.469484,-0.337887][0.626044,0.160605,0][1.82667,-2.22919,0.748164][-0.815731,-0.469484,-0.337887][0.626044,0.160605,0][1.48627,-2.00582,0.607166][-0.635008,-0.726347,-0.263029][0.602277,0.15076,0][1.60889,-2.00582,-0.00927742][-0.687328,-0.726347,0][0.610838,0.107719,0][1.97734,-2.22919,-0.00927739][-0.882941,-0.469484,0][0.107794,0.794294,0][1.97886,-2.44029,-0.00927739][-1.5392,-0.0110728,0.306166][0.107794,0.809033,0][1.82808,-2.44029,0.748746][-1.5392,-0.0110718,-0.306166][0.0548684,0.809033,0][1.82808,-2.44029,0.748746][-1.5392,-0.0110718,-0.306166][0.0548684,0.809033,0][1.82667,-2.22919,0.748164][-0.815731,-0.469484,-0.337887][0.0549089,0.794294,0][1.97734,-2.22919,-0.00927739][-0.882941,-0.469484,0][0.107794,0.794294,0][1.97886,-2.44029,-0.00927739][-1.5392,-0.0110728,0.306166][0.31101,0.125052,0][2.32841,-2.44029,-0.00927736][1.53894,0.0130238,-0.306115][0.335416,0.125052,0][2.15102,-2.44029,0.882514][1.53894,0.0130245,0.306114][0.323031,0.187318,0][2.15102,-2.44029,0.882514][1.53894,0.0130245,0.306114][0.323031,0.187318,0][1.82808,-2.44029,0.748746][-1.5392,-0.0110718,-0.306166][0.300482,0.177978,0][1.97886,-2.44029,-0.00927739][-1.5392,-0.0110728,0.306166][0.31101,0.125052,0][2.15102,-2.44029,0.882514][1.53894,0.0130245,0.306114][0.53749,0.28541,0][2.14937,-2.22919,0.881831][0.801515,0.497344,0.331998][0.537442,0.270671,0][1.6446,-2.22919,1.63728][0.613453,0.497344,0.613453][0.590188,0.270671,0][1.6446,-2.22919,1.63728][0.613453,0.497344,0.613453][0.590188,0.270671,0][1.64586,-2.44029,1.63854][1.30465,0.0130241,0.871741][0.590276,0.28541,0][2.15102,-2.44029,0.882514][1.53894,0.0130245,0.306114][0.53749,0.28541,0][2.14937,-2.22919,0.881831][0.801515,0.497344,0.331998][0.322791,0.412881,0][1.7489,-2.00582,0.71595][0.584095,0.774789,0.24194][0.29483,0.424463,0][1.33809,-2.00582,1.33077][0.447047,0.774789,0.447047][0.266147,0.381536,0][1.33809,-2.00582,1.33077][0.447047,0.774789,0.447047][0.266147,0.381536,0][1.6446,-2.22919,1.63728][0.613453,0.497344,0.613453][0.287547,0.360135,0][2.14937,-2.22919,0.881831][0.801515,0.497344,0.331998][0.322791,0.412881,0][1.7489,-2.00582,0.71595][0.584095,0.774789,0.24194][0.806948,0.537268,0][1.48471,-1.61625,0.606519][0.842322,0.410806,0.348901][0.839911,0.542313,0][1.13589,-1.61625,1.12857][0.644685,0.410806,0.644685][0.840502,0.584487,0][1.13589,-1.61625,1.12857][0.644685,0.410806,0.644685][0.840502,0.584487,0][1.33809,-2.00582,1.33077][0.447047,0.774789,0.447047][0.807644,0.586936,0][1.7489,-2.00582,0.71595][0.584095,0.774789,0.24194][0.806948,0.537268,0][1.48471,-1.61625,0.606519][0.842322,0.410806,0.348901][0.916852,0.428158,0][1.40969,-1.19582,0.575443][0.913113,0.152222,0.378224][0.914683,0.398804,0][1.07847,-1.19582,1.07115][0.698866,0.152222,0.698866][0.949293,0.398804,0][1.07847,-1.19582,1.07115][0.698866,0.152222,0.698866][0.949293,0.398804,0][1.13589,-1.61625,1.12857][0.644685,0.410806,0.644685][0.953302,0.428158,0][1.48471,-1.61625,0.606519][0.842322,0.410806,0.348901][0.916852,0.428158,0][1.40969,-1.19582,0.575443][0.913113,0.152222,0.378224][0.914683,0.398804,0][1.35424,-0.668635,0.552474][0.904075,0.205947,0.37448][0.913079,0.361995,0][1.03603,-0.668635,1.0287][0.691949,0.205947,0.691949][0.94633,0.361995,0][1.03603,-0.668635,1.0287][0.691949,0.205947,0.691949][0.94633,0.361995,0][1.07847,-1.19582,1.07115][0.698866,0.152222,0.698866][0.949293,0.398804,0][1.40969,-1.19582,0.575443][0.913113,0.152222,0.378224][0.914683,0.398804,0][1.35424,-0.668635,0.552474][0.904075,0.205947,0.37448][0.913079,0.361995,0][1.25067,-0.314305,0.509576][0.879736,0.305416,0.364398][0.910084,0.337256,0][0.956764,-0.314304,0.949439][0.67332,0.305416,0.673321][0.940795,0.337256,0][0.956764,-0.314304,0.949439][0.67332,0.305416,0.673321][0.940795,0.337256,0][1.03603,-0.668635,1.0287][0.691949,0.205947,0.691949][0.94633,0.361995,0][1.35424,-0.668635,0.552474][0.904075,0.205947,0.37448][0.913079,0.361995,0][1.25067,-0.314305,0.509576][0.879736,0.305416,0.364398][0.910084,0.337256,0][1.14412,0.0400263,0.465442][0.794067,0.511149,0.328913][0.907002,0.312516,0][0.875216,0.0400263,0.86789][0.607753,0.511149,0.607753][0.935101,0.312516,0][0.875216,0.0400263,0.86789][0.607753,0.511149,0.607753][0.935101,0.312516,0][0.956764,-0.314304,0.949439][0.67332,0.305416,0.673321][0.940795,0.337256,0][1.25067,-0.314305,0.509576][0.879736,0.305416,0.364398][0.910084,0.337256,0][1.14412,0.0400263,0.465442][0.794067,0.511149,0.328913][0.937731,0.564066,0][0.864397,0.341322,0.349576][0.542329,0.809578,0.22464][0.967302,0.567939,0][0.661123,0.341322,0.653797][0.415081,0.809578,0.415081][0.967646,0.592515,0][0.661123,0.341322,0.653797][0.415081,0.809578,0.415081][0.967646,0.592515,0][0.875216,0.0400263,0.86789][0.607753,0.511149,0.607753][0.938186,0.596578,0][1.14412,0.0400263,0.465442][0.794067,0.511149,0.328913][0.937731,0.564066,0][0.864397,0.341322,0.349576][0.542329,0.809578,0.22464][0.120233,0.16216,0][0.2348,0.659853,0.0887881][0.391211,0.905923,0.162045][0.166863,0.152692,0][0.17925,0.659853,0.171924][0.29942,0.905923,0.29942][0.16956,0.159131,0][0.17925,0.659853,0.171924][0.29942,0.905923,0.29942][0.16956,0.159131,0][0.661123,0.341322,0.653797][0.415081,0.809578,0.415081][0.130103,0.185723,0][0.864397,0.341322,0.349576][0.542329,0.809578,0.22464][0.120233,0.16216,0][0.561662,0.341322,0.554336][-0.414107,-0.810574,-0.414107][0.152747,0.406406,0][-0.00195171,0.61885,-0.00927766][-1.58159e-007,-1,0][0.18385,0.452556,0][0.734445,0.341322,0.295748][-0.541057,-0.810574,-0.224113][0.137454,0.421821,0][0.734445,0.341322,0.295748][-0.541057,-0.810574,-0.224113][0.228485,0.95287,0][0.972212,0.0400263,0.394234][-0.821098,-0.458393,-0.34011][0.201618,0.959473,0][0.743641,0.0400263,0.736315][-0.628441,-0.458393,-0.628441][0.198352,0.930934,0][0.743641,0.0400263,0.736315][-0.628441,-0.458393,-0.628441][0.198352,0.930934,0][0.561662,0.341322,0.554336][-0.414107,-0.810574,-0.414107][0.226016,0.931296,0][0.734445,0.341322,0.295748][-0.541057,-0.810574,-0.224113][0.228485,0.95287,0][0.972212,0.0400263,0.394234][-0.821098,-0.458393,-0.34011][0.0796207,0.635855,0][1.06278,-0.314305,0.431748][-0.891342,-0.26305,-0.369206][0.0770014,0.660595,0][0.812957,-0.314304,0.805631][-0.682204,-0.26305,-0.682204][0.0508965,0.660595,0][0.812957,-0.314304,0.805631][-0.682204,-0.26305,-0.682204][0.0508965,0.660595,0][0.743641,0.0400263,0.736315][-0.628441,-0.458393,-0.628441][0.0557363,0.635855,0][0.972212,0.0400263,0.394234][-0.821098,-0.458393,-0.34011][0.0796207,0.635855,0][1.06278,-0.314305,0.431748][-0.891342,-0.26305,-0.369206][0.0770014,0.660595,0][1.15081,-0.668635,0.468211][-0.90932,-0.176835,-0.376653][0.0744555,0.685335,0][0.880332,-0.668635,0.873006][-0.695963,-0.176835,-0.695963][0.0461924,0.685335,0][0.880332,-0.668635,0.873006][-0.695963,-0.176835,-0.695963][0.0461924,0.685335,0][0.812957,-0.314304,0.805631][-0.682204,-0.26305,-0.682204][0.0508965,0.660595,0][1.06278,-0.314305,0.431748][-0.891342,-0.26305,-0.369206][0.0770014,0.660595,0][1.15081,-0.668635,0.468211][-0.90932,-0.176835,-0.376653][0.0744555,0.685335,0][1.19794,-1.19582,0.487735][-0.916068,-0.129768,-0.379448][0.0730923,0.722143,0][0.916408,-1.19582,0.909082][-0.701128,-0.129768,-0.701128][0.0436735,0.722143,0][0.916408,-1.19582,0.909082][-0.701128,-0.129768,-0.701128][0.0436735,0.722143,0][0.880332,-0.668635,0.873006][-0.695963,-0.176835,-0.695963][0.0461924,0.685335,0][1.15081,-0.668635,0.468211][-0.90932,-0.176835,-0.376653][0.0744555,0.685335,0][1.19794,-1.19582,0.487735][-0.916068,-0.129768,-0.379448][0.0730923,0.722143,0][1.26171,-1.61625,0.51415][-0.861634,-0.360844,-0.356901][0.0712481,0.751498,0][0.965215,-1.61625,0.95789][-0.659466,-0.360844,-0.659466][0.0402657,0.751498,0][0.965215,-1.61625,0.95789][-0.659466,-0.360844,-0.659466][0.0402657,0.751498,0][0.916408,-1.19582,0.909082][-0.701128,-0.129768,-0.701128][0.0436735,0.722143,0][1.19794,-1.19582,0.487735][-0.916068,-0.129768,-0.379448][0.0730923,0.722143,0][1.26171,-1.61625,0.51415][-0.861634,-0.360844,-0.356901][0.0712481,0.751498,0][1.48627,-2.00582,0.607166][-0.635008,-0.726347,-0.263029][0.0647536,0.778698,0][1.13709,-2.00582,1.12976][-0.486014,-0.726347,-0.486014][0.0282655,0.778698,0][1.13709,-2.00582,1.12976][-0.486014,-0.726347,-0.486014][0.0282655,0.778698,0][0.965215,-1.61625,0.95789][-0.659466,-0.360844,-0.659466][0.0402657,0.751498,0][1.26171,-1.61625,0.51415][-0.861634,-0.360844,-0.356901][0.0712481,0.751498,0][1.48627,-2.00582,0.607166][-0.635008,-0.726347,-0.263029][0.602277,0.15076,0][1.82667,-2.22919,0.748164][-0.815731,-0.469484,-0.337887][0.626044,0.160605,0][1.39762,-2.22919,1.39029][-0.624334,-0.469484,-0.624334][0.596087,0.205439,0][1.39762,-2.22919,1.39029][-0.624334,-0.469484,-0.624334][0.596087,0.205439,0][1.13709,-2.00582,1.12976][-0.486014,-0.726347,-0.486014][0.577897,0.187248,0][1.48627,-2.00582,0.607166][-0.635008,-0.726347,-0.263029][0.602277,0.15076,0][1.82667,-2.22919,0.748164][-0.815731,-0.469484,-0.337887][0.0549089,0.794294,0][1.82808,-2.44029,0.748746][-1.5392,-0.0110718,-0.306166][0.0548684,0.809033,0][1.39869,-2.44029,1.39137][-1.30487,-0.0110718,-0.871886][0.01,0.809033,0][1.39869,-2.44029,1.39137][-1.30487,-0.0110718,-0.871886][0.01,0.809033,0][1.39762,-2.22919,1.39029][-0.624334,-0.469484,-0.624334][0.010075,0.794294,0][1.82667,-2.22919,0.748164][-0.815731,-0.469484,-0.337887][0.0549089,0.794294,0][1.82808,-2.44029,0.748746][-1.5392,-0.0110718,-0.306166][0.300482,0.177978,0][2.15102,-2.44029,0.882514][1.53894,0.0130245,0.306114][0.323031,0.187318,0][1.64586,-2.44029,1.63854][1.30465,0.0130241,0.871741][0.28776,0.240104,0][1.64586,-2.44029,1.63854][1.30465,0.0130241,0.871741][0.28776,0.240104,0][1.39869,-2.44029,1.39137][-1.30487,-0.0110718,-0.871886][0.270502,0.222846,0][1.82808,-2.44029,0.748746][-1.5392,-0.0110718,-0.306166][0.300482,0.177978,0][1.64586,-2.44029,1.63854][1.30465,0.0130241,0.871741][0.71327,0.805927,0][1.6446,-2.22919,1.63728][0.613453,0.497344,0.613453][0.713358,0.791188,0][0.889156,-2.22919,2.14205][0.331998,0.497344,0.801515][0.766104,0.791188,0][0.889156,-2.22919,2.14205][0.331998,0.497344,0.801515][0.766104,0.791188,0][0.889839,-2.44029,2.1437][0.87174,0.0130244,1.30465][0.766056,0.805927,0][1.64586,-2.44029,1.63854][1.30465,0.0130241,0.871741][0.71327,0.805927,0][1.6446,-2.22919,1.63728][0.613453,0.497344,0.613453][0.287547,0.360135,0][1.33809,-2.00582,1.33077][0.447047,0.774789,0.447047][0.266147,0.381536,0][0.723275,-2.00582,1.74158][0.24194,0.774789,0.584095][0.223219,0.352853,0][0.723275,-2.00582,1.74158][0.24194,0.774789,0.584095][0.223219,0.352853,0][0.889156,-2.22919,2.14205][0.331998,0.497344,0.801515][0.234801,0.324892,0][1.6446,-2.22919,1.63728][0.613453,0.497344,0.613453][0.287547,0.360135,0][1.33809,-2.00582,1.33077][0.447047,0.774789,0.447047][0.661319,0.152787,0][1.13589,-1.61625,1.12857][0.644685,0.410806,0.644685][0.67792,0.125628,0][0.613844,-1.61625,1.47739][0.348901,0.410806,0.842322][0.708918,0.147387,0][0.613844,-1.61625,1.47739][0.348901,0.410806,0.842322][0.708918,0.147387,0][0.723275,-2.00582,1.74158][0.24194,0.774789,0.584095][0.697826,0.178413,0][1.33809,-2.00582,1.33077][0.447047,0.774789,0.447047][0.661319,0.152787,0][1.13589,-1.61625,1.12857][0.644685,0.410806,0.644685][0.359922,0.962667,0][1.07847,-1.19582,1.07115][0.698866,0.152222,0.698866][0.363932,0.933313,0][0.582769,-1.19582,1.40236][0.378224,0.152222,0.913113][0.398542,0.933313,0][0.582769,-1.19582,1.40236][0.378224,0.152222,0.913113][0.398542,0.933313,0][0.613844,-1.61625,1.47739][0.348901,0.410806,0.842322][0.396372,0.962667,0][1.13589,-1.61625,1.12857][0.644685,0.410806,0.644685][0.359922,0.962667,0][1.07847,-1.19582,1.07115][0.698866,0.152222,0.698866][0.363932,0.933313,0][1.03603,-0.668635,1.0287][0.691949,0.205947,0.691949][0.366895,0.896504,0][0.559799,-0.668635,1.34691][0.37448,0.205947,0.904075][0.400146,0.896504,0][0.559799,-0.668635,1.34691][0.37448,0.205947,0.904075][0.400146,0.896504,0][0.582769,-1.19582,1.40236][0.378224,0.152222,0.913113][0.398542,0.933313,0][1.07847,-1.19582,1.07115][0.698866,0.152222,0.698866][0.363932,0.933313,0][1.03603,-0.668635,1.0287][0.691949,0.205947,0.691949][0.366895,0.896504,0][0.956764,-0.314304,0.949439][0.67332,0.305416,0.673321][0.372429,0.871765,0][0.516902,-0.314304,1.24335][0.364398,0.305416,0.879736][0.403141,0.871765,0][0.516902,-0.314304,1.24335][0.364398,0.305416,0.879736][0.403141,0.871765,0][0.559799,-0.668635,1.34691][0.37448,0.205947,0.904075][0.400146,0.896504,0][1.03603,-0.668635,1.0287][0.691949,0.205947,0.691949][0.366895,0.896504,0][0.956764,-0.314304,0.949439][0.67332,0.305416,0.673321][0.372429,0.871765,0][0.875216,0.0400263,0.86789][0.607753,0.511149,0.607753][0.378123,0.847025,0][0.472768,0.0400264,1.1368][0.328913,0.511149,0.794067][0.406222,0.847025,0][0.472768,0.0400264,1.1368][0.328913,0.511149,0.794067][0.406222,0.847025,0][0.516902,-0.314304,1.24335][0.364398,0.305416,0.879736][0.403141,0.871765,0][0.956764,-0.314304,0.949439][0.67332,0.305416,0.673321][0.372429,0.871765,0][0.875216,0.0400263,0.86789][0.607753,0.511149,0.607753][0.699322,0.033227,0][0.661123,0.341322,0.653797][0.415081,0.809578,0.415081][0.716899,0.01,0][0.356902,0.341322,0.857071][0.22464,0.809578,0.542329][0.734963,0.0226802,0][0.356902,0.341322,0.857071][0.22464,0.809578,0.542329][0.734963,0.0226802,0][0.472768,0.0400264,1.1368][0.328913,0.511149,0.794067][0.723219,0.0500014,0][0.875216,0.0400263,0.86789][0.607753,0.511149,0.607753][0.699322,0.033227,0][0.661123,0.341322,0.653797][0.415081,0.809578,0.415081][0.130103,0.185723,0][0.17925,0.659853,0.171924][0.29942,0.905923,0.29942][0.16956,0.159131,0][0.096114,0.659853,0.227474][0.162045,0.905923,0.391211][0.174516,0.164048,0][0.096114,0.659853,0.227474][0.162045,0.905923,0.391211][0.174516,0.164048,0][0.356902,0.341322,0.857071][0.22464,0.809578,0.542329][0.148239,0.203715,0][0.661123,0.341322,0.653797][0.415081,0.809578,0.415081][0.130103,0.185723,0][0.303073,0.341322,0.727119][-0.224113,-0.810574,-0.541057][0.172776,0.398017,0][-0.00195171,0.61885,-0.00927766][-1.58159e-007,-1,0][0.18385,0.452556,0][0.561662,0.341322,0.554336][-0.414107,-0.810574,-0.414107][0.152747,0.406406,0][0.561662,0.341322,0.554336][-0.414107,-0.810574,-0.414107][0.226016,0.931296,0][0.743641,0.0400263,0.736315][-0.628441,-0.458393,-0.628441][0.198352,0.930934,0][0.40156,0.0400264,0.964886][-0.34011,-0.458393,-0.821098][0.202349,0.903764,0][0.40156,0.0400264,0.964886][-0.34011,-0.458393,-0.821098][0.202349,0.903764,0][0.303073,0.341322,0.727119][-0.224113,-0.810574,-0.541057][0.229037,0.910758,0][0.561662,0.341322,0.554336][-0.414107,-0.810574,-0.414107][0.226016,0.931296,0][0.743641,0.0400263,0.736315][-0.628441,-0.458393,-0.628441][0.740367,0.444103,0][0.812957,-0.314304,0.805631][-0.682204,-0.26305,-0.682204][0.715628,0.448942,0][0.439074,-0.314304,1.05545][-0.369206,-0.26305,-0.891342][0.715628,0.422837,0][0.439074,-0.314304,1.05545][-0.369206,-0.26305,-0.891342][0.715628,0.422837,0][0.40156,0.0400264,0.964886][-0.34011,-0.458393,-0.821098][0.740367,0.420218,0][0.743641,0.0400263,0.736315][-0.628441,-0.458393,-0.628441][0.740367,0.444103,0][0.812957,-0.314304,0.805631][-0.682204,-0.26305,-0.682204][0.715628,0.448942,0][0.880332,-0.668635,0.873006][-0.695963,-0.176835,-0.695963][0.690888,0.453646,0][0.475536,-0.668635,1.14348][-0.376653,-0.176835,-0.90932][0.690888,0.425383,0][0.475536,-0.668635,1.14348][-0.376653,-0.176835,-0.90932][0.690888,0.425383,0][0.439074,-0.314304,1.05545][-0.369206,-0.26305,-0.891342][0.715628,0.422837,0][0.812957,-0.314304,0.805631][-0.682204,-0.26305,-0.682204][0.715628,0.448942,0][0.880332,-0.668635,0.873006][-0.695963,-0.176835,-0.695963][0.690888,0.453646,0][0.916408,-1.19582,0.909082][-0.701128,-0.129768,-0.701128][0.654079,0.456165,0][0.495061,-1.19582,1.19062][-0.379448,-0.129768,-0.916068][0.654079,0.426746,0][0.495061,-1.19582,1.19062][-0.379448,-0.129768,-0.916068][0.654079,0.426746,0][0.475536,-0.668635,1.14348][-0.376653,-0.176835,-0.90932][0.690888,0.425383,0][0.880332,-0.668635,0.873006][-0.695963,-0.176835,-0.695963][0.690888,0.453646,0][0.916408,-1.19582,0.909082][-0.701128,-0.129768,-0.701128][0.654079,0.456165,0][0.965215,-1.61625,0.95789][-0.659466,-0.360844,-0.659466][0.624725,0.459573,0][0.521475,-1.61625,1.25439][-0.356901,-0.360844,-0.861634][0.624725,0.428591,0][0.521475,-1.61625,1.25439][-0.356901,-0.360844,-0.861634][0.624725,0.428591,0][0.495061,-1.19582,1.19062][-0.379448,-0.129768,-0.916068][0.654079,0.426746,0][0.916408,-1.19582,0.909082][-0.701128,-0.129768,-0.701128][0.654079,0.456165,0][0.965215,-1.61625,0.95789][-0.659466,-0.360844,-0.659466][0.624725,0.459573,0][1.13709,-2.00582,1.12976][-0.486014,-0.726347,-0.486014][0.597524,0.471573,0][0.614491,-2.00582,1.47895][-0.263029,-0.726347,-0.635008][0.597524,0.435085,0][0.614491,-2.00582,1.47895][-0.263029,-0.726347,-0.635008][0.597524,0.435085,0][0.521475,-1.61625,1.25439][-0.356901,-0.360844,-0.861634][0.624725,0.428591,0][0.965215,-1.61625,0.95789][-0.659466,-0.360844,-0.659466][0.624725,0.459573,0][1.13709,-2.00582,1.12976][-0.486014,-0.726347,-0.486014][0.577897,0.187248,0][1.39762,-2.22919,1.39029][-0.624334,-0.469484,-0.624334][0.596087,0.205439,0][0.755489,-2.22919,1.81935][-0.337887,-0.469484,-0.815731][0.551253,0.235396,0][0.755489,-2.22919,1.81935][-0.337887,-0.469484,-0.815731][0.551253,0.235396,0][0.614491,-2.00582,1.47895][-0.263029,-0.726347,-0.635008][0.541408,0.211629,0][1.13709,-2.00582,1.12976][-0.486014,-0.726347,-0.486014][0.577897,0.187248,0][1.39762,-2.22919,1.39029][-0.624334,-0.469484,-0.624334][0.989925,0.480114,0][1.39869,-2.44029,1.39137][-1.30487,-0.0110718,-0.871886][0.99,0.494853,0][0.756071,-2.44029,1.82075][-0.871886,-0.0110731,-1.30487][0.945132,0.494853,0][0.756071,-2.44029,1.82075][-0.871886,-0.0110731,-1.30487][0.945132,0.494853,0][0.755489,-2.22919,1.81935][-0.337887,-0.469484,-0.815731][0.945091,0.480114,0][1.39762,-2.22919,1.39029][-0.624334,-0.469484,-0.624334][0.989925,0.480114,0][1.39869,-2.44029,1.39137][-1.30487,-0.0110718,-0.871886][0.270502,0.222846,0][1.64586,-2.44029,1.63854][1.30465,0.0130241,0.871741][0.28776,0.240104,0][0.889839,-2.44029,2.1437][0.87174,0.0130244,1.30465][0.234974,0.275375,0][0.889839,-2.44029,2.1437][0.87174,0.0130244,1.30465][0.234974,0.275375,0][0.756071,-2.44029,1.82075][-0.871886,-0.0110731,-1.30487][0.225634,0.252826,0][1.39869,-2.44029,1.39137][-1.30487,-0.0110718,-0.871886][0.270502,0.222846,0][0.889839,-2.44029,2.1437][0.87174,0.0130244,1.30465][0.766056,0.805927,0][0.889156,-2.22919,2.14205][0.331998,0.497344,0.801515][0.766104,0.791188,0][-0.00195207,-2.22919,2.3193][0,0.497344,0.867553][0.828322,0.791188,0][-0.00195207,-2.22919,2.3193][0,0.497344,0.867553][0.828322,0.791188,0][-0.00195211,-2.44029,2.32109][-0.306115,0.0130239,1.53894][0.828322,0.805927,0][0.889839,-2.44029,2.1437][0.87174,0.0130244,1.30465][0.766056,0.805927,0][0.889156,-2.22919,2.14205][0.331998,0.497344,0.801515][0.234801,0.324892,0][0.723275,-2.00582,1.74158][0.24194,0.774789,0.584095][0.223219,0.352853,0][-0.00195205,-2.00582,1.88583][0,0.774789,0.63222][0.172583,0.342781,0][-0.00195205,-2.00582,1.88583][0,0.774789,0.63222][0.172583,0.342781,0][-0.00195207,-2.22919,2.3193][0,0.497344,0.867553][0.172583,0.312516,0][0.889156,-2.22919,2.14205][0.331998,0.497344,0.801515][0.234801,0.324892,0][0.723275,-2.00582,1.74158][0.24194,0.774789,0.584095][0.388732,0.989868,0][0.613844,-1.61625,1.47739][0.348901,0.410806,0.842322][0.396372,0.962667,0][-0.00195201,-1.61625,1.59988][0,0.410806,0.911723][0.439368,0.962667,0][-0.00195201,-1.61625,1.59988][0,0.410806,0.911723][0.439368,0.962667,0][-0.00195205,-2.00582,1.88583][0,0.774789,0.63222][0.439368,0.989868,0][0.723275,-2.00582,1.74158][0.24194,0.774789,0.584095][0.388732,0.989868,0][0.613844,-1.61625,1.47739][0.348901,0.410806,0.842322][0.396372,0.962667,0][0.582769,-1.19582,1.40236][0.378224,0.152222,0.913113][0.398542,0.933313,0][-0.00195195,-1.19582,1.51867][0,0.152222,0.988346][0.439368,0.933313,0][-0.00195195,-1.19582,1.51867][0,0.152222,0.988346][0.439368,0.933313,0][-0.00195201,-1.61625,1.59988][0,0.410806,0.911723][0.439368,0.962667,0][0.613844,-1.61625,1.47739][0.348901,0.410806,0.842322][0.396372,0.962667,0][0.582769,-1.19582,1.40236][0.378224,0.152222,0.913113][0.398542,0.933313,0][0.559799,-0.668635,1.34691][0.37448,0.205947,0.904075][0.400146,0.896504,0][-0.00195187,-0.668635,1.45865][0,0.205947,0.978563][0.439368,0.896504,0][-0.00195187,-0.668635,1.45865][0,0.205947,0.978563][0.439368,0.896504,0][-0.00195195,-1.19582,1.51867][0,0.152222,0.988346][0.439368,0.933313,0][0.582769,-1.19582,1.40236][0.378224,0.152222,0.913113][0.398542,0.933313,0][0.559799,-0.668635,1.34691][0.37448,0.205947,0.904075][0.400146,0.896504,0][0.516902,-0.314304,1.24335][0.364398,0.305416,0.879736][0.403141,0.871765,0][-0.0019518,-0.314304,1.34655][0,0.305417,0.952219][0.439368,0.871765,0][-0.0019518,-0.314304,1.34655][0,0.305417,0.952219][0.439368,0.871765,0][-0.00195187,-0.668635,1.45865][0,0.205947,0.978563][0.439368,0.896504,0][0.559799,-0.668635,1.34691][0.37448,0.205947,0.904075][0.400146,0.896504,0][0.516902,-0.314304,1.24335][0.364398,0.305416,0.879736][0.403141,0.871765,0][0.472768,0.0400264,1.1368][0.328913,0.511149,0.794067][0.406222,0.847025,0][-0.00195176,0.0400265,1.23122][1.24926e-007,0.511149,0.859492][0.439368,0.847025,0][-0.00195176,0.0400265,1.23122][1.24926e-007,0.511149,0.859492][0.439368,0.847025,0][-0.0019518,-0.314304,1.34655][0,0.305417,0.952219][0.439368,0.871765,0][0.516902,-0.314304,1.24335][0.364398,0.305416,0.879736][0.403141,0.871765,0][0.472768,0.0400264,1.1368][0.328913,0.511149,0.794067][0.723219,0.0500014,0][0.356902,0.341322,0.857071][0.22464,0.809578,0.542329][0.734963,0.0226802,0][-0.00195174,0.341322,0.928451][1.40515e-007,0.809578,0.587013][0.758565,0.0295426,0][-0.00195174,0.341322,0.928451][1.40515e-007,0.809578,0.587013][0.758565,0.0295426,0][-0.00195176,0.0400265,1.23122][1.24926e-007,0.511149,0.859492][0.754441,0.0590796,0][0.472768,0.0400264,1.1368][0.328913,0.511149,0.794067][0.723219,0.0500014,0][0.356902,0.341322,0.857071][0.22464,0.809578,0.542329][0.148239,0.203715,0][0.096114,0.659853,0.227474][0.162045,0.905923,0.391211][0.174516,0.164048,0][-0.00195169,0.659853,0.24698][0,0.905923,0.423443][0.180976,0.166694,0][-0.00195169,0.659853,0.24698][0,0.905923,0.423443][0.180976,0.166694,0][-0.00195174,0.341322,0.928451][1.40515e-007,0.809578,0.587013][0.17188,0.213397,0][0.356902,0.341322,0.857071][0.22464,0.809578,0.542329][0.148239,0.203715,0][-0.00195175,0.341322,0.787792][-1.63441e-007,-0.810574,-0.585636][0.19449,0.39793,0][-0.00195171,0.61885,-0.00927766][-1.58159e-007,-1,0][0.18385,0.452556,0][0.303073,0.341322,0.727119][-0.224113,-0.810574,-0.541057][0.172776,0.398017,0][0.303073,0.341322,0.727119][-0.224113,-0.810574,-0.541057][0.761404,0.413342,0][0.40156,0.0400264,0.964886][-0.34011,-0.458393,-0.821098][0.740367,0.420218,0][-0.00195176,0.0400265,1.04515][0,-0.458393,-0.88875][0.740367,0.392045,0][-0.00195176,0.0400265,1.04515][0,-0.458393,-0.88875][0.740367,0.392045,0][-0.00195175,0.341322,0.787792][-1.63441e-007,-0.810574,-0.585636][0.761404,0.392045,0][0.303073,0.341322,0.727119][-0.224113,-0.810574,-0.541057][0.761404,0.413342,0][0.40156,0.0400264,0.964886][-0.34011,-0.458393,-0.821098][0.740367,0.420218,0][0.439074,-0.314304,1.05545][-0.369206,-0.26305,-0.891342][0.715628,0.422837,0][-0.00195181,-0.314304,1.14318][0,-0.26305,-0.964782][0.715628,0.392045,0][-0.00195181,-0.314304,1.14318][0,-0.26305,-0.964782][0.715628,0.392045,0][-0.00195176,0.0400265,1.04515][0,-0.458393,-0.88875][0.740367,0.392045,0][0.40156,0.0400264,0.964886][-0.34011,-0.458393,-0.821098][0.740367,0.420218,0][0.439074,-0.314304,1.05545][-0.369206,-0.26305,-0.891342][0.715628,0.422837,0][0.475536,-0.668635,1.14348][-0.376653,-0.176835,-0.90932][0.690888,0.425383,0][-0.00195188,-0.668635,1.23846][0,-0.176836,-0.98424][0.690888,0.392045,0][-0.00195188,-0.668635,1.23846][0,-0.176836,-0.98424][0.690888,0.392045,0][-0.00195181,-0.314304,1.14318][0,-0.26305,-0.964782][0.715628,0.392045,0][0.439074,-0.314304,1.05545][-0.369206,-0.26305,-0.891342][0.715628,0.422837,0][0.475536,-0.668635,1.14348][-0.376653,-0.176835,-0.90932][0.690888,0.425383,0][0.495061,-1.19582,1.19062][-0.379448,-0.129768,-0.916068][0.654079,0.426746,0][-0.00195196,-1.19582,1.28948][0,-0.129768,-0.991544][0.654079,0.392045,0][-0.00195196,-1.19582,1.28948][0,-0.129768,-0.991544][0.654079,0.392045,0][-0.00195188,-0.668635,1.23846][0,-0.176836,-0.98424][0.690888,0.392045,0][0.475536,-0.668635,1.14348][-0.376653,-0.176835,-0.90932][0.690888,0.425383,0][0.495061,-1.19582,1.19062][-0.379448,-0.129768,-0.916068][0.654079,0.426746,0][0.521475,-1.61625,1.25439][-0.356901,-0.360844,-0.861634][0.624725,0.428591,0][-0.00195202,-1.61625,1.3585][0,-0.360844,-0.932626][0.624725,0.392045,0][-0.00195202,-1.61625,1.3585][0,-0.360844,-0.932626][0.624725,0.392045,0][-0.00195196,-1.19582,1.28948][0,-0.129768,-0.991544][0.654079,0.392045,0][0.495061,-1.19582,1.19062][-0.379448,-0.129768,-0.916068][0.654079,0.426746,0][0.521475,-1.61625,1.25439][-0.356901,-0.360844,-0.861634][0.624725,0.428591,0][0.614491,-2.00582,1.47895][-0.263029,-0.726347,-0.635008][0.597524,0.435085,0][-0.00195206,-2.00582,1.60157][-2.1794e-007,-0.726347,-0.687328][0.597524,0.392045,0][-0.00195206,-2.00582,1.60157][-2.1794e-007,-0.726347,-0.687328][0.597524,0.392045,0][-0.00195202,-1.61625,1.3585][0,-0.360844,-0.932626][0.624725,0.392045,0][0.521475,-1.61625,1.25439][-0.356901,-0.360844,-0.861634][0.624725,0.428591,0][0.614491,-2.00582,1.47895][-0.263029,-0.726347,-0.635008][0.541408,0.211629,0][0.755489,-2.22919,1.81935][-0.337887,-0.469484,-0.815731][0.551253,0.235396,0][-0.00195209,-2.22919,1.97001][-1.61929e-007,-0.469484,-0.882941][0.498368,0.245915,0][-0.00195209,-2.22919,1.97001][-1.61929e-007,-0.469484,-0.882941][0.498368,0.245915,0][-0.00195206,-2.00582,1.60157][-2.1794e-007,-0.726347,-0.687328][0.498368,0.22019,0][0.614491,-2.00582,1.47895][-0.263029,-0.726347,-0.635008][0.541408,0.211629,0][0.755489,-2.22919,1.81935][-0.337887,-0.469484,-0.815731][0.945091,0.480114,0][0.756071,-2.44029,1.82075][-0.871886,-0.0110731,-1.30487][0.945132,0.494853,0][-0.00195212,-2.44029,1.97153][0.306166,-0.0110729,-1.5392][0.892206,0.494853,0][-0.00195212,-2.44029,1.97153][0.306166,-0.0110729,-1.5392][0.892206,0.494853,0][-0.00195209,-2.22919,1.97001][-1.61929e-007,-0.469484,-0.882941][0.892206,0.480114,0][0.755489,-2.22919,1.81935][-0.337887,-0.469484,-0.815731][0.945091,0.480114,0][0.756071,-2.44029,1.82075][-0.871886,-0.0110731,-1.30487][0.225634,0.252826,0][0.889839,-2.44029,2.1437][0.87174,0.0130244,1.30465][0.234974,0.275375,0][-0.00195211,-2.44029,2.32109][-0.306115,0.0130239,1.53894][0.172708,0.28776,0][-0.00195211,-2.44029,2.32109][-0.306115,0.0130239,1.53894][0.172708,0.28776,0][-0.00195212,-2.44029,1.97153][0.306166,-0.0110729,-1.5392][0.172708,0.263354,0][0.756071,-2.44029,1.82075][-0.871886,-0.0110731,-1.30487][0.225634,0.252826,0][1.39869,-2.44029,-1.40992][-1.30487,-0.0110723,0.871886][0.205588,0.809033,0][1.39762,-2.22919,-1.40885][-1.92065,-1.20466,1.28334][0.205513,0.794294,0][1.64586,-2.44029,-1.65709][1.30465,0.0130246,-0.87174][0.222846,0.809033,0][1.6446,-2.22919,-1.65583][1.84747,1.2493,-1.23444][0.222758,0.794294,0][1.64586,-2.44029,-1.65709][1.30465,0.0130246,-0.87174][0.222846,0.809033,0][1.39762,-2.22919,-1.40885][-1.92065,-1.20466,1.28334][0.205513,0.794294,0][1.39762,-2.22919,-1.40885][-1.92065,-1.20466,1.28334][0.205513,0.794294,0][1.13709,-2.00582,-1.14832][-1.80066,-2.24461,1.20316][0.187323,0.778698,0][1.6446,-2.22919,-1.65583][1.84747,1.2493,-1.23444][0.222758,0.794294,0][1.13709,-2.00582,-1.14832][-1.80066,-2.24461,1.20316][0.187323,0.778698,0][0.965215,-1.61625,-0.976444][-2.45092,-1.11858,1.63765][0.175323,0.751498,0][1.33809,-2.00582,-1.34932][1.65677,2.395,-1.10702][0.201357,0.778698,0][1.33809,-2.00582,-1.34932][1.65677,2.395,-1.10702][0.201357,0.778698,0][1.6446,-2.22919,-1.65583][1.84747,1.2493,-1.23444][0.222758,0.794294,0][1.13709,-2.00582,-1.14832][-1.80066,-2.24461,1.20316][0.187323,0.778698,0][1.13589,-1.61625,-1.14712][2.39105,1.27084,-1.59765][0.187239,0.751498,0][1.33809,-2.00582,-1.34932][1.65677,2.395,-1.10702][0.201357,0.778698,0][0.965215,-1.61625,-0.976444][-2.45092,-1.11858,1.63765][0.175323,0.751498,0][0.965215,-1.61625,-0.976444][-2.45092,-1.11858,1.63765][0.175323,0.751498,0][0.916408,-1.19582,-0.927637][-2.60008,-0.401393,1.73732][0.171915,0.722143,0][1.13589,-1.61625,-1.14712][2.39105,1.27084,-1.59765][0.187239,0.751498,0][1.07847,-1.19582,-1.0897][2.59324,0.471128,-1.73275][0.527242,0.10032,0][1.13589,-1.61625,-1.14712][2.39105,1.27084,-1.59765][0.556863,0.0997293,0][0.916408,-1.19582,-0.927637][-2.60008,-0.401393,1.73732][0.525935,0.11156,0][0.916408,-1.19582,-0.927637][-2.60008,-0.401393,1.73732][0.525935,0.11156,0][0.880332,-0.668635,-0.891561][-3.35453,-0.925522,2.91792][0.489082,0.109809,0][1.07847,-1.19582,-1.0897][2.59324,0.471128,-1.73275][0.527242,0.10032,0][1.03603,-0.668635,-1.04726][3.31913,1.07287,-2.88237][0.490338,0.099011,0][1.07847,-1.19582,-1.0897][2.59324,0.471128,-1.73275][0.527242,0.10032,0][0.880332,-0.668635,-0.891561][-3.35453,-0.925522,2.91792][0.489082,0.109809,0][-1.64977,-2.44029,-1.65709][-1.30465,0.0130249,-0.87174][0.359922,0.50673,0][-1.64851,-2.22919,-1.65583][-1.84747,1.2493,-1.23444][0.360011,0.491991,0][-1.4026,-2.44029,-1.40992][1.30487,-0.0110728,0.871886][0.37718,0.50673,0][-1.64851,-2.22919,-1.65583][-1.84747,1.2493,-1.23444][0.360011,0.491991,0][-1.342,-2.00582,-1.34932][-1.65677,2.395,-1.10702][0.381411,0.476395,0][-1.40152,-2.22919,-1.40885][1.92065,-1.20466,1.28334][0.377255,0.491991,0][-1.40152,-2.22919,-1.40885][1.92065,-1.20466,1.28334][0.377255,0.491991,0][-1.4026,-2.44029,-1.40992][1.30487,-0.0110728,0.871886][0.37718,0.50673,0][-1.64851,-2.22919,-1.65583][-1.84747,1.2493,-1.23444][0.360011,0.491991,0][-1.14099,-2.00582,-1.14832][1.80066,-2.24461,1.20316][0.395446,0.476395,0][-1.40152,-2.22919,-1.40885][1.92065,-1.20466,1.28334][0.377255,0.491991,0][-1.342,-2.00582,-1.34932][-1.65677,2.395,-1.10702][0.381411,0.476395,0][-1.342,-2.00582,-1.34932][-1.65677,2.395,-1.10702][0.381411,0.476395,0][-1.1398,-1.61625,-1.14712][-2.39105,1.27084,-1.59765][0.395529,0.449195,0][-1.14099,-2.00582,-1.14832][1.80066,-2.24461,1.20316][0.395446,0.476395,0][-0.969119,-1.61625,-0.976445][2.45092,-1.11858,1.63765][0.407446,0.449195,0][-1.14099,-2.00582,-1.14832][1.80066,-2.24461,1.20316][0.395446,0.476395,0][-1.1398,-1.61625,-1.14712][-2.39105,1.27084,-1.59765][0.395529,0.449195,0][-1.1398,-1.61625,-1.14712][-2.39105,1.27084,-1.59765][0.395529,0.449195,0][-1.08238,-1.19582,-1.0897][-2.59324,0.471129,-1.73275][0.399538,0.41984,0][-0.969119,-1.61625,-0.976445][2.45092,-1.11858,1.63765][0.407446,0.449195,0][-0.920312,-1.19582,-0.927637][2.60008,-0.401394,1.73732][0.410854,0.41984,0][-0.969119,-1.61625,-0.976445][2.45092,-1.11858,1.63765][0.407446,0.449195,0][-1.08238,-1.19582,-1.0897][-2.59324,0.471129,-1.73275][0.399538,0.41984,0][-1.08238,-1.19582,-1.0897][-2.59324,0.471129,-1.73275][0.399538,0.41984,0][-1.03993,-0.668635,-1.04726][-3.31913,1.07287,-2.88237][0.402502,0.383032,0][-0.920312,-1.19582,-0.927637][2.60008,-0.401394,1.73732][0.410854,0.41984,0][-0.884236,-0.668635,-0.891561][3.35453,-0.925524,2.91792][0.413373,0.383032,0][-0.920312,-1.19582,-0.927637][2.60008,-0.401394,1.73732][0.410854,0.41984,0][-1.03993,-0.668635,-1.04726][-3.31913,1.07287,-2.88237][0.402502,0.383032,0][0.880332,-0.668635,-0.891561][-3.35453,-0.925522,2.91792][0.667263,0.110046,0][0.475537,-0.668635,-1.16204][-1.10336,-0.775317,2.66375][0.674221,0.0767739,0][1.03603,-0.668635,-1.04726][3.31913,1.07287,-2.88237][0.681408,0.116068,0][0.475537,-0.668635,-1.16204][-1.10336,-0.775317,2.66375][0.674221,0.0767739,0][-0.00195188,-0.668635,-1.25701][-4.58794e-007,-0.775317,2.88322][0.667916,0.0433718,0][0.559799,-0.668635,-1.36546][0.814143,1.02658,-3.1751][0.689594,0.0769246,0][0.559799,-0.668635,-1.36546][0.814143,1.02658,-3.1751][0.689594,0.0769246,0][1.03603,-0.668635,-1.04726][3.31913,1.07287,-2.88237][0.681408,0.116068,0][0.475537,-0.668635,-1.16204][-1.10336,-0.775317,2.66375][0.674221,0.0767739,0][-1.03993,-0.668635,-1.04726][-3.31913,1.07287,-2.88237][0.854304,0.560444,0][-0.563703,-0.668635,-1.36546][-1.18984,0.896002,-3.1802][0.893739,0.553799,0][-0.884236,-0.668635,-0.891561][3.35453,-0.925524,2.91792][0.859768,0.574814,0][-0.47944,-0.668635,-1.16204][1.10336,-0.775318,2.66375][0.893287,0.569166,0][-0.884236,-0.668635,-0.891561][3.35453,-0.925524,2.91792][0.859768,0.574814,0][-0.563703,-0.668635,-1.36546][-1.18984,0.896002,-3.1802][0.893739,0.553799,0][-0.00195188,-0.668635,-1.25701][-4.58794e-007,-0.775317,2.88322][0.926416,0.576775,0][-0.47944,-0.668635,-1.16204][1.10336,-0.775318,2.66375][0.893287,0.569166,0][-0.563703,-0.668635,-1.36546][-1.18984,0.896002,-3.1802][0.893739,0.553799,0][0.559799,-0.668635,-1.36546][0.814143,1.02658,-3.1751][0.637592,0.684411,0][-0.00195188,-0.668635,-1.25701][-4.58794e-007,-0.775317,2.88322][0.676814,0.684411,0][-0.00195193,-1.03843,-1.4772][0.030098,0.0603636,-0.997723][0.676814,0.71023,0][-0.563703,-0.668635,-1.36546][-1.18984,0.896002,-3.1802][0.716036,0.684411,0][-0.00195193,-1.03843,-1.4772][0.030098,0.0603636,-0.997723][0.676814,0.71023,0][-0.00195188,-0.668635,-1.25701][-4.58794e-007,-0.775317,2.88322][0.676814,0.684411,0][0.0964738,1.49055,-0.575932][0.543805,0,0][0.0237043,0.899518,0][0.0964736,1.03866,-0.462222][1.17872,-2.36122e-007,2.20132e-007][0.0316437,0.931069,0][0.0964737,1.07404,-0.703537][1.41907,-2.8427e-007,2.65021e-007][0.0147948,0.928599,0][0.0964734,1.02595,1.18096][0.0313998,0.139852,-0.0251091][0.556863,0.0676732,0][0.0964735,0.811969,-0.0108466][0.486799,2.16816,-0.389272][0.47365,0.0676732,0][-0.100377,0.825671,-0.1807][0.159702,0.711296,-0.127707][0.461791,0.0539289,0][-0.100377,1.02595,1.18096][-0.127037,0,0][0.445416,0.630844,0][-0.100377,0.825671,-0.1807][0.159702,0.711296,-0.127707][0.540945,0.641266,0][-0.100377,0.63185,-0.226185][-1.06722,2.0545e-007,-1.76205e-007][0.544624,0.654671,0][0.0964736,1.03866,-0.462222][1.17872,-2.36122e-007,2.20132e-007][0.743431,0.0786299,0][0.0964738,1.49055,-0.575932][0.543805,0,0][0.774982,0.0786299,0][-0.100377,1.49055,-0.575932][0,0.285776,1.13569][0.774982,0.0923742,0][-0.100377,1.49055,-0.575932][0,0.285776,1.13569][0.566787,0.593845,0][-0.100377,1.96781,-0.365751][-0.676996,1.35899e-007,0][0.550877,0.561094,0][-0.100377,1.79708,-0.694522][-1.68061,3.37363e-007,-2.89448e-007][0.574261,0.572149,0][0.0964738,2.21184,0.0358962][-0.0561006,-0.679561,0.019097][0.853229,0.892854,0][0.0964737,2.22821,0.618597][0.270813,-2.95319,-0.214898][0.812544,0.892854,0][-0.100377,2.23491,0.278532][-0.0913434,-2.44829,0.00467951][0.836287,0.879109,0][-0.100377,1.96781,-0.365751][-0.676996,1.35899e-007,0][0.808304,0.0923742,0][-0.100377,1.49055,-0.575932][0,0.285776,1.13569][0.774982,0.0923742,0][0.0964738,1.49055,-0.575932][0.543805,0,0][0.774982,0.0786299,0][0.0964737,2.39437,1.02533][-0.232202,2.91353,0.339098][0.848441,0.732665,0][0.0964738,2.43194,0.271128][0.0275024,0.503332,0.0250746][0.795782,0.732665,0][-0.100377,2.42492,0.628088][0.0709336,2.62665,0.166823][0.820705,0.718921,0][-0.100377,2.09572,-0.516467][2.93828e-007,1.2352,-0.970397][0.740791,0.718921,0][-0.100377,2.33552,-0.211218][1.90809e-007,1.2352,-0.970397][0.762104,0.718921,0][0.0964739,2.09572,-0.516467][2.49934e-007,1.23521,-0.970397][0.740791,0.732665,0][0.0964738,1.79708,-0.694522][0,0.414794,-1.51504][0.881357,0.0465021,0][0.0964738,1.51332,-0.77221][0,0.155717,-0.568759][0.881357,0.0663142,0][-0.100377,1.79708,-0.694522][-1.68061,3.37363e-007,-2.89448e-007][0.867612,0.0465021,0][-0.100377,2.42492,0.628088][0.0709336,2.62665,0.166823][0.820705,0.718921,0][-0.100377,2.2435,2.03643][-0.0197697,1.18767,0.3617][0.919037,0.718921,0][0.0964737,2.39437,1.02533][-0.232202,2.91353,0.339098][0.848441,0.732665,0][0.0964735,2.16609,2.04043][0,1.55621,-0.213604][0.725169,0.624073,0][0.0964737,1.97302,0.633858][0,0.136492,-0.0187348][0.626961,0.624073,0][-0.100377,2.16609,2.04043][0,1.41971,-0.194869][0.725169,0.610328,0][0.0964736,1.83398,0.808417][0,-0.148213,0.0164464][0.556863,0.045677,0][0.0964734,1.97848,2.11068][0,-1.56121,0.173239][0.465938,0.045677,0][-0.100377,1.97848,2.11068][0,-1.56121,0.173239][0.465938,0.0319327,0][-0.100377,2.0815,1.90086][0.0194915,-0.150694,-0.0142493][0.723015,0.879109,0][-0.100377,2.23491,0.278532][-0.0913434,-2.44829,0.00467951][0.836287,0.879109,0][0.0964737,2.22821,0.618597][0.270813,-2.95319,-0.214898][0.812544,0.892854,0][0.0964734,1.97848,2.11068][0,-1.56121,0.173239][0.677732,0.25154,0][0.0964736,1.83398,0.808417][0,-0.148213,0.0164464][0.766921,0.231178,0][0.0964737,1.97302,0.633858][0,0.136492,-0.0187348][0.780133,0.239438,0][0.0964736,1.70281,0.625493][0,-1.55301,-0.235728][0.536305,0.177548,0][0.0964733,1.49249,2.01106][0,-1.55301,-0.235728][0.439564,0.177548,0][-0.100377,1.70281,0.625493][0,-2.04426,-0.468325][0.536305,0.163804,0][0.0964734,1.68181,2.07067][0,1.55951,0.188001][0.527784,0.155552,0][0.0964736,1.83398,0.808417][0,-0.148213,0.0164464][0.439652,0.155552,0][-0.100377,1.83398,0.808417][0,1.407,0.169616][0.439652,0.141808,0][-0.100377,1.97848,2.11068][0,-1.56121,0.173239][0.465938,0.0319327,0][-0.100377,1.83398,0.808417][0,1.407,0.169616][0.556863,0.0319327,0][0.0964736,1.83398,0.808417][0,-0.148213,0.0164464][0.556863,0.045677,0][-0.100377,1.02595,1.18096][-0.127037,0,0][0.580123,0.135957,0][-0.100377,1.26086,0.323987][-1.27327e-007,-0.210255,-0.0576339][0.580123,0.0761222,0][0.0964734,1.02595,1.18096][0.0313998,0.139852,-0.0251091][0.593867,0.135957,0][-0.100377,0.825671,-0.1807][0.159702,0.711296,-0.127707][0.461791,0.0539289,0][-0.100377,1.02595,1.18096][-0.127037,0,0][0.556863,0.0539289,0][0.0964734,1.02595,1.18096][0.0313998,0.139852,-0.0251091][0.556863,0.0676732,0][0.0964734,1.14583,1.42458][1.17615e-006,1.51024,0.431931][0.556863,0.133556,0][0.0964736,1.42175,0.459812][0,1.51024,0.43193][0.489503,0.133556,0][-0.100377,1.14583,1.42458][1.02304e-006,1.51024,0.43193][0.556863,0.119812,0][0.0964733,0.801184,1.12251][-0.0844973,-2.6838,0.791876][0.861879,0.230782,0][0.0964733,0.979177,1.53457][0.0741669,-0.649552,0.280575][0.833108,0.230782,0][-0.100377,0.869185,1.33197][0.120141,-2.25653,0.84548][0.847254,0.217037,0][0.0964736,0.800727,-0.523158][-1.83214e-006,-1.36546,-0.776482][0.976781,0.230782,0][0.0964735,0.63185,-0.226185][-5.31276e-007,-1.36546,-0.776483][0.956046,0.230782,0][-0.100377,0.800727,-0.523158][-1.1833e-006,-1.36546,-0.776482][0.976781,0.217037,0][-0.100377,1.07404,-0.703537][0,-0.36946,-1.52673][0.867612,0.0969852,0][-0.100377,1.37428,-0.776193][0,-0.133447,-0.551447][0.867612,0.0760224,0][0.0964737,1.07404,-0.703537][1.41907,-2.8427e-007,2.65021e-007][0.881357,0.0969852,0][0.0964734,1.61561,1.74501][0,1.56358,-0.15038][0.11188,0.106155,0][0.0964736,1.46789,0.209044][0,1.56358,-0.15038][0.11188,0.213397,0][-0.100377,1.46789,0.209044][0,1.56358,-0.15038][0.0981357,0.213397,0][-0.100377,1.48911,2.48716][0,-0.0991777,0.00953455][0.71327,0.925861,0][-0.100377,1.30067,0.527026][0,-1.56359,0.150317][0.850128,0.925861,0][0.0964736,1.30067,0.527026][0,-1.56359,0.150317][0.850128,0.939606,0][-0.100377,1.42175,0.459812][0,1.51024,0.43193][0.489503,0.119812,0][-0.100377,1.14583,1.42458][1.02304e-006,1.51024,0.43193][0.556863,0.119812,0][0.0964736,1.42175,0.459812][0,1.51024,0.43193][0.489503,0.133556,0][0.0964734,1.02595,1.18096][0.0313998,0.139852,-0.0251091][0.146372,0.931957,0][0.0964736,1.26086,0.323987][1.13723,-2.18997e-007,1.97036e-007][0.0865375,0.915555,0][0.0964736,1.42175,0.459812][0,1.51024,0.43193][0.0960209,0.904321,0][-0.100377,1.70281,0.625493][0,-2.04426,-0.468325][0.536305,0.163804,0][-0.100377,1.84222,0.331049][0,-1.4197,-0.6722][0.556863,0.163804,0][0.0964737,1.84222,0.331049][0,-0.92845,-0.439603][0.556863,0.177548,0][-0.100377,2.16609,2.04043][0,1.41971,-0.194869][0.129312,0.0259838,0][-0.100377,1.97302,0.633858][-0.809039,0,-1.25499e-007][0.22752,0.0394638,0][-0.100377,1.83398,0.808417][0,1.407,0.169616][0.215332,0.0491721,0][-0.100377,1.49249,2.01106][0,-1.55301,-0.235728][0.439564,0.163804,0][-0.100377,1.70281,0.625493][0,-2.04426,-0.468325][0.536305,0.163804,0][0.0964733,1.49249,2.01106][0,-1.55301,-0.235728][0.439564,0.177548,0][-0.100377,1.46789,0.209044][0,1.56358,-0.15038][0.0981357,0.213397,0][-0.100377,1.61561,1.74501][0,1.56358,-0.15038][0.0981357,0.106155,0][0.0964734,1.61561,1.74501][0,1.56358,-0.15038][0.11188,0.106155,0][-0.100377,1.83398,0.808417][0,1.407,0.169616][0.439652,0.141808,0][-0.100377,1.68181,2.07067][0,1.55951,0.188001][0.527784,0.141808,0][0.0964734,1.68181,2.07067][0,1.55951,0.188001][0.527784,0.155552,0][0.0964736,1.46789,0.209044][0,1.56358,-0.15038][0.965114,0.646491,0][0.0964734,1.61561,1.74501][0,1.56358,-0.15038][0.857398,0.644346,0][0.0964733,1.48911,2.48716][0.442664,0,0][0.806948,0.629586,0][-0.100377,0.869185,1.33197][0.120141,-2.25653,0.84548][0.847254,0.217037,0][-0.100377,0.675651,0.556196][-0.025395,-0.317474,0.0792009][0.901419,0.217037,0][0.0964733,0.801184,1.12251][-0.0844973,-2.6838,0.791876][0.861879,0.230782,0][-0.100377,0.63185,-0.226185][-1.06722,2.0545e-007,-1.76205e-007][0.956046,0.217037,0][-0.100377,0.800727,-0.523158][-1.1833e-006,-1.36546,-0.776482][0.976781,0.217037,0][0.0964735,0.63185,-0.226185][-5.31276e-007,-1.36546,-0.776483][0.956046,0.230782,0][0.0964738,1.96781,-0.365751][-1.47084e-007,-1.23432,0.971523][0.881272,0.892854,0][0.0964738,2.15668,-0.125789][0,-0.44993,0.354136][0.864518,0.892854,0][-0.100377,1.96781,-0.365751][-0.676996,1.35899e-007,0][0.881272,0.879109,0][0.0964739,2.33552,-0.211217][1.46914e-007,1.2352,-0.970397][0.762104,0.732665,0][0.0964739,2.09572,-0.516467][2.49934e-007,1.23521,-0.970397][0.740791,0.732665,0][-0.100377,2.33552,-0.211218][1.90809e-007,1.2352,-0.970397][0.762104,0.718921,0][0.0964734,2.13256,2.36492][2.00117e-007,0.489221,0.165227][0.941972,0.732665,0][0.0964735,2.2435,2.03643][6.08757e-007,1.48821,0.50262][0.919037,0.732665,0][-0.100377,2.2435,2.03643][-0.0197697,1.18767,0.3617][0.919037,0.718921,0][0.0964738,2.43194,0.271128][0.0275024,0.503332,0.0250746][0.0828469,0.833789,0][0.0964737,2.39437,1.02533][-0.232202,2.91353,0.339098][0.135506,0.836412,0][0.0964737,2.22821,0.618597][0.270813,-2.95319,-0.214898][0.107107,0.848013,0][0.0964735,0.811969,-0.0108466][0.486799,2.16816,-0.389272][0.0631591,0.946897,0][0.0964734,1.02595,1.18096][0.0313998,0.139852,-0.0251091][0.146372,0.931957,0][0.0964735,0.632817,0.257455][2.1504,-4.42081e-007,3.61679e-007][0.0818921,0.959406,0][0.0964735,0.63185,-0.226185][-5.31276e-007,-1.36546,-0.776483][0.048124,0.959473,0][0.0964736,0.800727,-0.523158][-1.83214e-006,-1.36546,-0.776482][0.0273891,0.947682,0][0.0964736,1.03866,-0.462222][1.17872,-2.36122e-007,2.20132e-007][0.0316437,0.931069,0][-0.100377,2.33552,-0.211218][1.90809e-007,1.2352,-0.970397][0.539136,0.535841,0][-0.100377,2.09572,-0.516467][2.93828e-007,1.2352,-0.970397][0.561059,0.551777,0][-0.100377,1.96781,-0.365751][-0.676996,1.35899e-007,0][0.550877,0.561094,0][-0.100377,2.23491,0.278532][-0.0913434,-2.44829,0.00467951][0.505227,0.544138,0][-0.100377,2.0815,1.90086][0.0194915,-0.150694,-0.0142493][0.392434,0.559073,0][-0.100377,2.42492,0.628088][0.0709336,2.62665,0.166823][0.480342,0.531793,0][-0.100377,0.942288,-0.384444][0.00776401,1.67305,1.27882][0.447566,0.0539289,0][-0.100377,0.825671,-0.1807][0.159702,0.711296,-0.127707][0.461791,0.0539289,0][0.0964736,0.869617,-0.290565][0.0154979,1.66111,1.25336][0.45412,0.0676732,0][-0.100377,1.37428,-0.776193][0,-0.133447,-0.551447][0.581062,0.601435,0][-0.100377,1.07404,-0.703537][0,-0.36946,-1.52673][0.576776,0.622573,0][-0.100377,1.15127,-0.521704][-1.81393,3.42344e-007,-2.84164e-007][0.563888,0.617659,0][-0.100377,1.26086,0.323987][-1.27327e-007,-0.210255,-0.0576339][0.504596,0.612219,0][-0.100377,1.02595,1.18096][-0.127037,0,0][0.445416,0.630844,0][-0.100377,1.14583,1.42458][1.02304e-006,1.51024,0.43193][0.428106,0.623115,0][-0.100377,0.675651,0.556196][-0.025395,-0.317474,0.0792009][0.489921,0.653655,0][-0.100377,0.869185,1.33197][0.120141,-2.25653,0.84548][0.435289,0.642175,0][-0.100377,1.02595,1.18096][-0.127037,0,0][0.445416,0.630844,0][-0.100377,1.26086,0.323987][-1.27327e-007,-0.210255,-0.0576339][0.674059,0.852743,0][-0.100377,1.46789,0.209044][0,1.56358,-0.15038][0.688514,0.852743,0][0.0964736,1.46789,0.209044][0,1.56358,-0.15038][0.688514,0.866487,0][-0.100377,1.14583,1.42458][1.02304e-006,1.51024,0.43193][0.428106,0.623115,0][-0.100377,1.42175,0.459812][0,1.51024,0.43193][0.4947,0.601347,0][-0.100377,1.26086,0.323987][-1.27327e-007,-0.210255,-0.0576339][0.504596,0.612219,0][-0.100377,1.83398,0.808417][0,1.407,0.169616][0.215332,0.0491721,0][-0.100377,1.97848,2.11068][0,-1.56121,0.173239][0.124407,0.0390826,0][-0.100377,2.16609,2.04043][0,1.41971,-0.194869][0.129312,0.0259838,0][-0.100377,2.2435,2.03643][-0.0197697,1.18767,0.3617][0.382553,0.548124,0][-0.100377,2.42492,0.628088][0.0709336,2.62665,0.166823][0.480342,0.531793,0][-0.100377,2.0815,1.90086][0.0194915,-0.150694,-0.0142493][0.392434,0.559073,0][0.0964736,1.42175,0.459812][0,1.51024,0.43193][0.0960209,0.904321,0][0.0964734,1.14583,1.42458][1.17615e-006,1.51024,0.431931][0.163382,0.923587,0][0.0964734,1.02595,1.18096][0.0313998,0.139852,-0.0251091][0.146372,0.931957,0][0.0964733,0.979177,1.53457][0.0741669,-0.649552,0.280575][0.171062,0.935222,0][0.0964733,0.801184,1.12251][-0.0844973,-2.6838,0.791876][0.142291,0.94765,0][0.0964734,1.02595,1.18096][0.0313998,0.139852,-0.0251091][0.146372,0.931957,0][0.0964737,1.97302,0.633858][0,0.136492,-0.0187348][0.626961,0.624073,0][0.0964737,1.84222,0.331049][0,-0.92845,-0.439603][0.605818,0.624073,0][-0.100377,1.84222,0.331049][0,-1.4197,-0.6722][0.605818,0.610328,0][-0.100377,1.97302,0.633858][-0.809039,0,-1.25499e-007][0.626961,0.610328,0][-0.100377,2.16609,2.04043][0,1.41971,-0.194869][0.725169,0.610328,0][0.0964737,1.97302,0.633858][0,0.136492,-0.0187348][0.626961,0.624073,0][-0.100377,1.70281,0.625493][0,-2.04426,-0.468325][0.228104,0.0583307,0][-0.100377,1.49249,2.01106][0,-1.55301,-0.235728][0.131363,0.0730149,0][-0.100377,1.68181,2.07067][0,1.55951,0.188001][0.127201,0.0597964,0][-0.100377,1.30067,0.527026][0,-1.56359,0.150317][0.734513,0.830683,0][-0.100377,1.48911,2.48716][0,-0.0991777,0.00953455][0.871977,0.833331,0][-0.100377,1.61561,1.74501][0,1.56358,-0.15038][0.820987,0.846102,0][0.0964737,2.22821,0.618597][0.270813,-2.95319,-0.214898][0.107107,0.848013,0][0.0964738,2.21184,0.0358962][-0.0561006,-0.679561,0.019097][0.0664227,0.849157,0][0.0964738,2.43194,0.271128][0.0275024,0.503332,0.0250746][0.0828469,0.833789,0][0.0964739,2.09572,-0.516467][2.49934e-007,1.23521,-0.970397][0.0278562,0.857265,0][0.0964739,2.33552,-0.211217][1.46914e-007,1.2352,-0.970397][0.049169,0.840521,0][0.0964738,2.15668,-0.125789][0,-0.44993,0.354136][0.0551337,0.853008,0][0.0964738,2.15668,-0.125789][0,-0.44993,0.354136][0.0551337,0.853008,0][0.0964738,1.96781,-0.365751][-1.47084e-007,-1.23432,0.971523][0.0383794,0.866195,0][0.0964739,2.09572,-0.516467][2.49934e-007,1.23521,-0.970397][0.0278562,0.857265,0][0.0964738,1.51332,-0.77221][0,0.155717,-0.568759][0.01,0.897928,0][0.0964738,1.79708,-0.694522][0,0.414794,-1.51504][0.0154242,0.878116,0][0.0964738,1.49055,-0.575932][0.543805,0,0][0.0237043,0.899518,0][-0.100377,1.68181,2.07067][0,1.55951,0.188001][0.127201,0.0597964,0][-0.100377,1.83398,0.808417][0,1.407,0.169616][0.215332,0.0491721,0][-0.100377,1.70281,0.625493][0,-2.04426,-0.468325][0.228104,0.0583307,0][-0.100377,1.84222,0.331049][0,-1.4197,-0.6722][0.248663,0.0485967,0][-0.100377,1.70281,0.625493][0,-2.04426,-0.468325][0.228104,0.0583307,0][-0.100377,1.83398,0.808417][0,1.407,0.169616][0.215332,0.0491721,0][0.0964735,2.2435,2.03643][6.08757e-007,1.48821,0.50262][0.206102,0.846946,0][0.0964734,2.13256,2.36492][2.00117e-007,0.489221,0.165227][0.229037,0.854692,0][0.0964735,2.0815,1.90086][0.76442,-1.95352e-007,0][0.196636,0.858257,0][0.0964737,1.97302,0.633858][0,0.136492,-0.0187348][0.780133,0.239438,0][0.0964735,2.16609,2.04043][0,1.55621,-0.213604][0.684094,0.263997,0][0.0964734,1.97848,2.11068][0,-1.56121,0.173239][0.677732,0.25154,0][0.0964737,1.84222,0.331049][0,-0.92845,-0.439603][0.8001,0.22796,0][0.0964737,1.97302,0.633858][0,0.136492,-0.0187348][0.780133,0.239438,0][0.0964736,1.83398,0.808417][0,-0.148213,0.0164464][0.766921,0.231178,0][0.0964736,1.83398,0.808417][0,-0.148213,0.0164464][0.766921,0.231178,0][0.0964734,1.68181,2.07067][0,1.55951,0.188001][0.678153,0.230643,0][0.0964736,1.70281,0.625493][0,-1.55301,-0.235728][0.778569,0.220627,0][0.0964735,0.63185,-0.226185][-5.31276e-007,-1.36546,-0.776483][0.956046,0.230782,0][0.0964735,0.632817,0.257455][2.1504,-4.42081e-007,3.61679e-007][0.922278,0.230782,0][-0.100377,0.63185,-0.226185][-1.06722,2.0545e-007,-1.76205e-007][0.956046,0.217037,0][0.0964735,0.632817,0.257455][2.1504,-4.42081e-007,3.61679e-007][0.0818921,0.959406,0][0.0964735,0.63185,-0.226185][-5.31276e-007,-1.36546,-0.776483][0.048124,0.959473,0][0.0964735,0.811969,-0.0108466][0.486799,2.16816,-0.389272][0.0631591,0.946897,0][0.0964733,1.49249,2.01106][0,-1.55301,-0.235728][0.680785,0.217037,0][0.0964736,1.70281,0.625493][0,-1.55301,-0.235728][0.778569,0.220627,0][0.0964734,1.68181,2.07067][0,1.55951,0.188001][0.678153,0.230643,0][0.0964734,1.68181,2.07067][0,1.55951,0.188001][0.834279,0.64631,0][0.0964733,1.48911,2.48716][0.442664,0,0][0.806948,0.629586,0][0.0964734,1.61561,1.74501][0,1.56358,-0.15038][0.857398,0.644346,0][-0.100377,1.96781,-0.365751][-0.676996,1.35899e-007,0][0.550877,0.561094,0][-0.100377,2.15668,-0.125789][-1.792,3.79785e-007,-2.98926e-007][0.533642,0.548542,0][-0.100377,2.33552,-0.211218][1.90809e-007,1.2352,-0.970397][0.539136,0.535841,0][-0.100377,2.15668,-0.125789][-1.792,3.79785e-007,-2.98926e-007][0.864518,0.879109,0][-0.100377,1.96781,-0.365751][-0.676996,1.35899e-007,0][0.881272,0.879109,0][0.0964738,2.15668,-0.125789][0,-0.44993,0.354136][0.864518,0.892854,0][0.0964733,1.48911,2.48716][0.442664,0,0][0.556863,0.155552,0][0.0964734,1.68181,2.07067][0,1.55951,0.188001][0.527784,0.155552,0][-0.100377,1.68181,2.07067][0,1.55951,0.188001][0.527784,0.141808,0][-0.100377,1.48911,2.48716][0,-0.0991777,0.00953455][0.098121,0.0732511,0][-0.100377,1.68181,2.07067][0,1.55951,0.188001][0.127201,0.0597964,0][-0.100377,1.49249,2.01106][0,-1.55301,-0.235728][0.131363,0.0730149,0][0.0964736,1.26086,0.323987][1.13723,-2.18997e-007,1.97036e-007][0.593867,0.0761222,0][0.0964734,1.02595,1.18096][0.0313998,0.139852,-0.0251091][0.593867,0.135957,0][-0.100377,1.26086,0.323987][-1.27327e-007,-0.210255,-0.0576339][0.580123,0.0761222,0][0.0964736,1.46789,0.209044][0,1.56358,-0.15038][0.688514,0.866487,0][0.0964736,1.26086,0.323987][1.13723,-2.18997e-007,1.97036e-007][0.674059,0.866487,0][-0.100377,1.26086,0.323987][-1.27327e-007,-0.210255,-0.0576339][0.674059,0.852743,0][-0.100377,1.14583,1.42458][1.02304e-006,1.51024,0.43193][0.567488,0.866487,0][-0.100377,0.979177,1.53457][0,0.865301,1.31097][0.555853,0.866487,0][0.0964733,0.979177,1.53457][0.0741669,-0.649552,0.280575][0.555853,0.852743,0][-0.100377,0.979177,1.53457][0,0.865301,1.31097][0.420866,0.635029,0][-0.100377,1.14583,1.42458][1.02304e-006,1.51024,0.43193][0.428106,0.623115,0][-0.100377,1.04982,1.25209][-0.752959,1.47712e-007,0][0.440391,0.629364,0][0.0964736,0.869617,-0.290565][0.0154979,1.66111,1.25336][0.45412,0.0676732,0][0.0964736,1.03866,-0.462222][1.17872,-2.36122e-007,2.20132e-007][0.442135,0.0676732,0][-0.100377,0.942288,-0.384444][0.00776401,1.67305,1.27882][0.447566,0.0539289,0][0.0964736,1.03866,-0.462222][1.17872,-2.36122e-007,2.20132e-007][0.0316437,0.931069,0][0.0964736,0.869617,-0.290565][0.0154979,1.66111,1.25336][0.0436289,0.942872,0][0.0964735,0.63185,-0.226185][-5.31276e-007,-1.36546,-0.776483][0.048124,0.959473,0][0.0964738,1.51332,-0.77221][0,0.155717,-0.568759][0.881357,0.0663142,0][0.0964737,1.07404,-0.703537][1.41907,-2.8427e-007,2.65021e-007][0.881357,0.0969852,0][-0.100377,1.37428,-0.776193][0,-0.133447,-0.551447][0.867612,0.0760224,0][0.0964737,1.07404,-0.703537][1.41907,-2.8427e-007,2.65021e-007][0.0147948,0.928599,0][0.0964738,1.51332,-0.77221][0,0.155717,-0.568759][0.01,0.897928,0][0.0964738,1.49055,-0.575932][0.543805,0,0][0.0237043,0.899518,0][0.0964733,0.979177,1.53457][0.0741669,-0.649552,0.280575][0.555853,0.852743,0][0.0964734,1.14583,1.42458][1.17615e-006,1.51024,0.431931][0.567488,0.852743,0][-0.100377,1.14583,1.42458][1.02304e-006,1.51024,0.43193][0.567488,0.866487,0][0.0964734,1.14583,1.42458][1.17615e-006,1.51024,0.431931][0.163382,0.923587,0][0.0964733,0.979177,1.53457][0.0741669,-0.649552,0.280575][0.171062,0.935222,0][0.0964734,1.04982,1.25209][0.752959,-1.47712e-007,0][0.151339,0.93029,0][-0.100377,2.13256,2.36492][0,-0.500204,0.303131][0.448187,0.0319327,0][-0.100377,1.97848,2.11068][0,-1.56121,0.173239][0.465938,0.0319327,0][0.0964734,1.97848,2.11068][0,-1.56121,0.173239][0.465938,0.045677,0][-0.100377,1.97848,2.11068][0,-1.56121,0.173239][0.378063,0.566808,0][-0.100377,2.13256,2.36492][0,-0.500204,0.303131][0.359922,0.556721,0][-0.100377,2.0815,1.90086][0.0194915,-0.150694,-0.0142493][0.392434,0.559073,0][-0.100377,1.37428,-0.776193][0,-0.133447,-0.551447][0.867612,0.0760224,0][-0.100377,1.79708,-0.694522][-1.68061,3.37363e-007,-2.89448e-007][0.867612,0.0465021,0][0.0964738,1.51332,-0.77221][0,0.155717,-0.568759][0.881357,0.0663142,0][-0.100377,1.79708,-0.694522][-1.68061,3.37363e-007,-2.89448e-007][0.574261,0.572149,0][-0.100377,1.37428,-0.776193][0,-0.133447,-0.551447][0.581062,0.601435,0][-0.100377,1.49055,-0.575932][0,0.285776,1.13569][0.566787,0.593845,0][-0.100377,0.800727,-0.523158][-1.1833e-006,-1.36546,-0.776482][0.564904,0.642113,0][-0.100377,0.63185,-0.226185][-1.06722,2.0545e-007,-1.76205e-007][0.544624,0.654671,0][-0.100377,0.825671,-0.1807][0.159702,0.711296,-0.127707][0.540945,0.641266,0][-0.100377,0.825671,-0.1807][0.159702,0.711296,-0.127707][0.540945,0.641266,0][-0.100377,0.942288,-0.384444][0.00776401,1.67305,1.27882][0.554856,0.632598,0][-0.100377,0.800727,-0.523158][-1.1833e-006,-1.36546,-0.776482][0.564904,0.642113,0][0.0964736,1.30067,0.527026][0,-1.56359,0.150317][0.850128,0.939606,0][0.0964733,1.48911,2.48716][0.442664,0,0][0.71327,0.939606,0][-0.100377,1.48911,2.48716][0,-0.0991777,0.00953455][0.71327,0.925861,0][-0.100377,1.68181,2.07067][0,1.55951,0.188001][0.527784,0.141808,0][-0.100377,1.48911,2.48716][0,-0.0991777,0.00953455][0.556863,0.141808,0][0.0964733,1.48911,2.48716][0.442664,0,0][0.556863,0.155552,0][0.0964736,1.26086,0.323987][1.13723,-2.18997e-007,1.97036e-007][0.958813,0.631205,0][0.0964736,1.46789,0.209044][0,1.56358,-0.15038][0.965114,0.646491,0][0.0964736,1.30067,0.527026][0,-1.56359,0.150317][0.94441,0.632329,0][0.0964733,1.48911,2.48716][0.442664,0,0][0.806948,0.629586,0][0.0964736,1.30067,0.527026][0,-1.56359,0.150317][0.94441,0.632329,0][0.0964736,1.46789,0.209044][0,1.56358,-0.15038][0.965114,0.646491,0][0.0964738,1.49055,-0.575932][0.543805,0,0][0.774982,0.0786299,0][0.0964738,1.96781,-0.365751][-1.47084e-007,-1.23432,0.971523][0.808304,0.0786299,0][-0.100377,1.96781,-0.365751][-0.676996,1.35899e-007,0][0.808304,0.0923742,0][0.0964738,1.96781,-0.365751][-1.47084e-007,-1.23432,0.971523][0.0383794,0.866195,0][0.0964738,1.49055,-0.575932][0.543805,0,0][0.0237043,0.899518,0][0.0964738,1.79708,-0.694522][0,0.414794,-1.51504][0.0154242,0.878116,0][0.0964734,1.97848,2.11068][0,-1.56121,0.173239][0.465938,0.045677,0][0.0964734,2.13256,2.36492][2.00117e-007,0.489221,0.165227][0.448187,0.045677,0][-0.100377,2.13256,2.36492][0,-0.500204,0.303131][0.448187,0.0319327,0][0.0964734,2.13256,2.36492][2.00117e-007,0.489221,0.165227][0.661319,0.264246,0][0.0964734,1.97848,2.11068][0,-1.56121,0.173239][0.677732,0.25154,0][0.0964735,2.16609,2.04043][0,1.55621,-0.213604][0.684094,0.263997,0][-0.100377,1.15127,-0.521704][-1.81393,3.42344e-007,-2.84164e-007][0.563888,0.617659,0][-0.100377,1.49055,-0.575932][0,0.285776,1.13569][0.566787,0.593845,0][-0.100377,1.37428,-0.776193][0,-0.133447,-0.551447][0.581062,0.601435,0][-0.100377,1.49055,-0.575932][0,0.285776,1.13569][0.774982,0.0923742,0][-0.100377,1.15127,-0.521704][-1.81393,3.42344e-007,-2.84164e-007][0.751293,0.0923742,0][0.0964736,1.03866,-0.462222][1.17872,-2.36122e-007,2.20132e-007][0.743431,0.0786299,0][-0.100377,0.675651,0.556196][-0.025395,-0.317474,0.0792009][0.901419,0.217037,0][-0.100377,0.63185,-0.226185][-1.06722,2.0545e-007,-1.76205e-007][0.956046,0.217037,0][0.0964735,0.632817,0.257455][2.1504,-4.42081e-007,3.61679e-007][0.922278,0.230782,0][-0.100377,0.63185,-0.226185][-1.06722,2.0545e-007,-1.76205e-007][0.544624,0.654671,0][-0.100377,0.675651,0.556196][-0.025395,-0.317474,0.0792009][0.489921,0.653655,0][-0.100377,1.02595,1.18096][-0.127037,0,0][0.445416,0.630844,0][-0.100377,2.40562,-0.00576925][-0.0559987,0.615984,-0.0187558][0.776449,0.718921,0][-0.100377,2.42492,0.628088][0.0709336,2.62665,0.166823][0.820705,0.718921,0][0.0964738,2.43194,0.271128][0.0275024,0.503332,0.0250746][0.795782,0.732665,0][-0.100377,2.42492,0.628088][0.0709336,2.62665,0.166823][0.480342,0.531793,0][-0.100377,2.40562,-0.00576925][-0.0559987,0.615984,-0.0187558][0.524618,0.531486,0][-0.100377,2.23491,0.278532][-0.0913434,-2.44829,0.00467951][0.505227,0.544138,0][-0.100377,1.61561,1.74501][0,1.56358,-0.15038][0.820987,0.846102,0][-0.100377,1.46789,0.209044][0,1.56358,-0.15038][0.71327,0.844022,0][-0.100377,1.30067,0.527026][0,-1.56359,0.150317][0.734513,0.830683,0][-0.100377,1.46789,0.209044][0,1.56358,-0.15038][0.512076,0.597474,0][-0.100377,1.26086,0.323987][-1.27327e-007,-0.210255,-0.0576339][0.504596,0.612219,0][-0.100377,1.42175,0.459812][0,1.51024,0.43193][0.4947,0.601347,0][0.0964738,2.43194,0.271128][0.0275024,0.503332,0.0250746][0.795782,0.732665,0][0.0964739,2.33552,-0.211217][1.46914e-007,1.2352,-0.970397][0.762104,0.732665,0][-0.100377,2.40562,-0.00576925][-0.0559987,0.615984,-0.0187558][0.776449,0.718921,0][0.0964739,2.33552,-0.211217][1.46914e-007,1.2352,-0.970397][0.049169,0.840521,0][0.0964738,2.43194,0.271128][0.0275024,0.503332,0.0250746][0.0828469,0.833789,0][0.0964738,2.21184,0.0358962][-0.0561006,-0.679561,0.019097][0.0664227,0.849157,0][-0.100377,1.97302,0.633858][-0.809039,0,-1.25499e-007][0.22752,0.0394638,0][-0.100377,1.84222,0.331049][0,-1.4197,-0.6722][0.248663,0.0485967,0][-0.100377,1.83398,0.808417][0,1.407,0.169616][0.215332,0.0491721,0][-0.100377,1.84222,0.331049][0,-1.4197,-0.6722][0.605818,0.610328,0][-0.100377,1.97302,0.633858][-0.809039,0,-1.25499e-007][0.626961,0.610328,0][0.0964737,1.97302,0.633858][0,0.136492,-0.0187348][0.626961,0.624073,0][0.0964737,1.84222,0.331049][0,-0.92845,-0.439603][0.556863,0.177548,0][0.0964736,1.70281,0.625493][0,-1.55301,-0.235728][0.536305,0.177548,0][-0.100377,1.70281,0.625493][0,-2.04426,-0.468325][0.536305,0.163804,0][0.0964736,1.70281,0.625493][0,-1.55301,-0.235728][0.778569,0.220627,0][0.0964737,1.84222,0.331049][0,-0.92845,-0.439603][0.8001,0.22796,0][0.0964736,1.83398,0.808417][0,-0.148213,0.0164464][0.766921,0.231178,0][-0.100377,2.15668,-0.125789][-1.792,3.79785e-007,-2.98926e-007][0.533642,0.548542,0][-0.100377,2.23491,0.278532][-0.0913434,-2.44829,0.00467951][0.505227,0.544138,0][-0.100377,2.40562,-0.00576925][-0.0559987,0.615984,-0.0187558][0.524618,0.531486,0][-0.100377,2.23491,0.278532][-0.0913434,-2.44829,0.00467951][0.836287,0.879109,0][-0.100377,2.15668,-0.125789][-1.792,3.79785e-007,-2.98926e-007][0.864518,0.879109,0][0.0964738,2.21184,0.0358962][-0.0561006,-0.679561,0.019097][0.853229,0.892854,0][0.0964733,1.49249,2.01106][0,-1.55301,-0.235728][0.11188,0.0875787,0][0.0964734,1.61561,1.74501][0,1.56358,-0.15038][0.11188,0.106155,0][-0.100377,1.61561,1.74501][0,1.56358,-0.15038][0.0981357,0.106155,0][0.0964734,1.61561,1.74501][0,1.56358,-0.15038][0.115045,0.0305762,0][0.0964733,1.49249,2.01106][0,-1.55301,-0.235728][0.115276,0.0510435,0][0.0964734,1.68181,2.07067][0,1.55951,0.188001][0.101513,0.0494246,0][0.0964737,2.22821,0.618597][0.270813,-2.95319,-0.214898][0.812544,0.892854,0][0.0964735,2.0815,1.90086][0.76442,-1.95352e-007,0][0.723015,0.892854,0][-0.100377,2.0815,1.90086][0.0194915,-0.150694,-0.0142493][0.723015,0.879109,0][0.0964735,2.0815,1.90086][0.76442,-1.95352e-007,0][0.196636,0.858257,0][0.0964737,2.22821,0.618597][0.270813,-2.95319,-0.214898][0.107107,0.848013,0][0.0964737,2.39437,1.02533][-0.232202,2.91353,0.339098][0.135506,0.836412,0][0.0964735,0.811969,-0.0108466][0.486799,2.16816,-0.389272][0.47365,0.0676732,0][0.0964736,0.869617,-0.290565][0.0154979,1.66111,1.25336][0.45412,0.0676732,0][-0.100377,0.825671,-0.1807][0.159702,0.711296,-0.127707][0.461791,0.0539289,0][0.0964736,0.869617,-0.290565][0.0154979,1.66111,1.25336][0.0436289,0.942872,0][0.0964735,0.811969,-0.0108466][0.486799,2.16816,-0.389272][0.0631591,0.946897,0][0.0964735,0.63185,-0.226185][-5.31276e-007,-1.36546,-0.776483][0.048124,0.959473,0][-0.100377,2.2435,2.03643][-0.0197697,1.18767,0.3617][0.919037,0.718921,0][-0.100377,2.13256,2.36492][0,-0.500204,0.303131][0.941972,0.718921,0][0.0964734,2.13256,2.36492][2.00117e-007,0.489221,0.165227][0.941972,0.732665,0][-0.100377,2.13256,2.36492][0,-0.500204,0.303131][0.359922,0.556721,0][-0.100377,2.2435,2.03643][-0.0197697,1.18767,0.3617][0.382553,0.548124,0][-0.100377,2.0815,1.90086][0.0194915,-0.150694,-0.0142493][0.392434,0.559073,0][0.0964736,1.42175,0.459812][0,1.51024,0.43193][0.255146,0.523321,0][0.0964736,1.30067,0.527026][0,-1.56359,0.150317][0.255146,0.531775,0][-0.100377,1.30067,0.527026][0,-1.56359,0.150317][0.241402,0.531775,0][0.0964736,1.30067,0.527026][0,-1.56359,0.150317][0.789238,0.252735,0][0.0964736,1.42175,0.459812][0,1.51024,0.43193][0.798368,0.24955,0][0.0964736,1.26086,0.323987][1.13723,-2.18997e-007,1.97036e-007][0.797966,0.264246,0][-0.100377,2.0815,1.90086][0.0194915,-0.150694,-0.0142493][0.156555,0.52216,0][-0.100377,2.16609,2.04043][0,1.41971,-0.194869][0.15044,0.531775,0][-0.100377,1.97848,2.11068][0,-1.56121,0.173239][0.140234,0.52221,0][-0.100377,2.16609,2.04043][0,1.41971,-0.194869][0.71327,0.879109,0][-0.100377,2.0815,1.90086][0.0194915,-0.150694,-0.0142493][0.723015,0.879109,0][0.0964735,2.0815,1.90086][0.76442,-1.95352e-007,0][0.723015,0.892854,0][-0.100377,2.33552,-0.211218][1.90809e-007,1.2352,-0.970397][0.762104,0.718921,0][-0.100377,2.40562,-0.00576925][-0.0559987,0.615984,-0.0187558][0.776449,0.718921,0][0.0964739,2.33552,-0.211217][1.46914e-007,1.2352,-0.970397][0.762104,0.732665,0][-0.100377,2.40562,-0.00576925][-0.0559987,0.615984,-0.0187558][0.524618,0.531486,0][-0.100377,2.33552,-0.211218][1.90809e-007,1.2352,-0.970397][0.539136,0.535841,0][-0.100377,2.15668,-0.125789][-1.792,3.79785e-007,-2.98926e-007][0.533642,0.548542,0][0.0964734,1.02595,1.18096][0.0313998,0.139852,-0.0251091][0.593867,0.135957,0][0.0964734,1.04982,1.25209][0.752959,-1.47712e-007,0][0.593867,0.140923,0][-0.100377,1.04982,1.25209][-0.752959,1.47712e-007,0][0.580123,0.140923,0][0.0964734,1.04982,1.25209][0.752959,-1.47712e-007,0][0.151339,0.93029,0][0.0964734,1.02595,1.18096][0.0313998,0.139852,-0.0251091][0.146372,0.931957,0][0.0964734,1.14583,1.42458][1.17615e-006,1.51024,0.431931][0.163382,0.923587,0][0.0964734,1.04982,1.25209][0.752959,-1.47712e-007,0][0.640134,0.721458,0][0.0964734,1.02595,1.18096][0.0313998,0.139852,-0.0251091][0.640134,0.726424,0][-0.100377,1.02595,1.18096][-0.127037,0,0][0.62639,0.726424,0][0.0964734,1.02595,1.18096][0.0313998,0.139852,-0.0251091][0.146372,0.931957,0][0.0964734,1.04982,1.25209][0.752959,-1.47712e-007,0][0.151339,0.93029,0][0.0964733,0.979177,1.53457][0.0741669,-0.649552,0.280575][0.171062,0.935222,0][0.0964737,1.07404,-0.703537][1.41907,-2.8427e-007,2.65021e-007][0.881357,0.0969852,0][0.0964736,0.800727,-0.523158][-1.83214e-006,-1.36546,-0.776482][0.881357,0.116068,0][-0.100377,1.07404,-0.703537][0,-0.36946,-1.52673][0.867612,0.0969852,0][0.0964736,0.800727,-0.523158][-1.83214e-006,-1.36546,-0.776482][0.0273891,0.947682,0][0.0964737,1.07404,-0.703537][1.41907,-2.8427e-007,2.65021e-007][0.0147948,0.928599,0][0.0964736,1.03866,-0.462222][1.17872,-2.36122e-007,2.20132e-007][0.0316437,0.931069,0][-0.100377,1.02595,1.18096][-0.127037,0,0][0.445416,0.630844,0][-0.100377,1.04982,1.25209][-0.752959,1.47712e-007,0][0.440391,0.629364,0][-0.100377,1.14583,1.42458][1.02304e-006,1.51024,0.43193][0.428106,0.623115,0][-0.100377,1.04982,1.25209][-0.752959,1.47712e-007,0][0.580123,0.140923,0][-0.100377,1.02595,1.18096][-0.127037,0,0][0.580123,0.135957,0][0.0964734,1.02595,1.18096][0.0313998,0.139852,-0.0251091][0.593867,0.135957,0][-0.100377,1.04982,1.25209][-0.752959,1.47712e-007,0][0.440391,0.629364,0][-0.100377,1.02595,1.18096][-0.127037,0,0][0.445416,0.630844,0][-0.100377,0.869185,1.33197][0.120141,-2.25653,0.84548][0.435289,0.642175,0][-0.100377,1.02595,1.18096][-0.127037,0,0][0.62639,0.726424,0][-0.100377,1.04982,1.25209][-0.752959,1.47712e-007,0][0.62639,0.721458,0][0.0964734,1.04982,1.25209][0.752959,-1.47712e-007,0][0.640134,0.721458,0][-0.100377,1.49249,2.01106][0,-1.55301,-0.235728][0.688983,0.558528,0][-0.100377,1.61561,1.74501][0,1.56358,-0.15038][0.669313,0.552866,0][-0.100377,1.48911,2.48716][0,-0.0991777,0.00953455][0.721872,0.55369,0][-0.100377,1.61561,1.74501][0,1.56358,-0.15038][0.0981357,0.106155,0][-0.100377,1.49249,2.01106][0,-1.55301,-0.235728][0.0981357,0.0875787,0][0.0964733,1.49249,2.01106][0,-1.55301,-0.235728][0.11188,0.0875787,0][-0.100377,0.800727,-0.523158][-1.1833e-006,-1.36546,-0.776482][0.867612,0.116068,0][-0.100377,1.07404,-0.703537][0,-0.36946,-1.52673][0.867612,0.0969852,0][0.0964736,0.800727,-0.523158][-1.83214e-006,-1.36546,-0.776482][0.881357,0.116068,0][-0.100377,1.07404,-0.703537][0,-0.36946,-1.52673][0.576776,0.622573,0][-0.100377,0.800727,-0.523158][-1.1833e-006,-1.36546,-0.776482][0.564904,0.642113,0][-0.100377,0.942288,-0.384444][0.00776401,1.67305,1.27882][0.554856,0.632598,0][0.0964735,0.632817,0.257455][2.1504,-4.42081e-007,3.61679e-007][0.922278,0.230782,0][0.0964733,0.801184,1.12251][-0.0844973,-2.6838,0.791876][0.861879,0.230782,0][-0.100377,0.675651,0.556196][-0.025395,-0.317474,0.0792009][0.901419,0.217037,0][0.0964733,0.801184,1.12251][-0.0844973,-2.6838,0.791876][0.142291,0.94765,0][0.0964735,0.632817,0.257455][2.1504,-4.42081e-007,3.61679e-007][0.0818921,0.959406,0][0.0964734,1.02595,1.18096][0.0313998,0.139852,-0.0251091][0.146372,0.931957,0][-0.100377,1.79708,-0.694522][-1.68061,3.37363e-007,-2.89448e-007][0.867612,0.0465021,0][-0.100377,2.09572,-0.516467][2.93828e-007,1.2352,-0.970397][0.867612,0.025651,0][0.0964738,1.79708,-0.694522][0,0.414794,-1.51504][0.881357,0.0465021,0][-0.100377,2.09572,-0.516467][2.93828e-007,1.2352,-0.970397][0.561059,0.551777,0][-0.100377,1.79708,-0.694522][-1.68061,3.37363e-007,-2.89448e-007][0.574261,0.572149,0][-0.100377,1.96781,-0.365751][-0.676996,1.35899e-007,0][0.550877,0.561094,0][0.0964735,2.0815,1.90086][0.76442,-1.95352e-007,0][0.723015,0.892854,0][0.0964735,2.16609,2.04043][0,1.55621,-0.213604][0.71327,0.892854,0][-0.100377,2.16609,2.04043][0,1.41971,-0.194869][0.71327,0.879109,0][0.0964735,2.16609,2.04043][0,1.55621,-0.213604][0.864658,0.542304,0][0.0964735,2.0815,1.90086][0.76442,-1.95352e-007,0][0.854304,0.537544,0][0.0964734,2.13256,2.36492][2.00117e-007,0.489221,0.165227][0.8869,0.537401,0][0.0964738,2.15668,-0.125789][0,-0.44993,0.354136][0.864518,0.892854,0][0.0964738,2.21184,0.0358962][-0.0561006,-0.679561,0.019097][0.853229,0.892854,0][-0.100377,2.15668,-0.125789][-1.792,3.79785e-007,-2.98926e-007][0.864518,0.879109,0][0.0964738,2.21184,0.0358962][-0.0561006,-0.679561,0.019097][0.0664227,0.849157,0][0.0964738,2.15668,-0.125789][0,-0.44993,0.354136][0.0551337,0.853008,0][0.0964739,2.33552,-0.211217][1.46914e-007,1.2352,-0.970397][0.049169,0.840521,0][-0.100377,1.30067,0.527026][0,-1.56359,0.150317][0.241402,0.531775,0][-0.100377,1.42175,0.459812][0,1.51024,0.43193][0.241402,0.523321,0][0.0964736,1.42175,0.459812][0,1.51024,0.43193][0.255146,0.523321,0][-0.100377,1.42175,0.459812][0,1.51024,0.43193][0.661319,0.22605,0][-0.100377,1.30067,0.527026][0,-1.56359,0.150317][0.666815,0.218094,0][-0.100377,1.46789,0.209044][0,1.56358,-0.15038][0.666197,0.243171,0][-0.100377,0.979177,1.53457][0,0.865301,1.31097][0.833108,0.217037,0][-0.100377,0.869185,1.33197][0.120141,-2.25653,0.84548][0.847254,0.217037,0][0.0964733,0.979177,1.53457][0.0741669,-0.649552,0.280575][0.833108,0.230782,0][-0.100377,0.869185,1.33197][0.120141,-2.25653,0.84548][0.435289,0.642175,0][-0.100377,0.979177,1.53457][0,0.865301,1.31097][0.420866,0.635029,0][-0.100377,1.04982,1.25209][-0.752959,1.47712e-007,0][0.440391,0.629364,0][-0.100377,0.942288,-0.384444][0.00776401,1.67305,1.27882][0.554856,0.632598,0][-0.100377,1.15127,-0.521704][-1.81393,3.42344e-007,-2.84164e-007][0.563888,0.617659,0][-0.100377,1.07404,-0.703537][0,-0.36946,-1.52673][0.576776,0.622573,0][-0.100377,1.15127,-0.521704][-1.81393,3.42344e-007,-2.84164e-007][0.751293,0.0923742,0][-0.100377,0.942288,-0.384444][0.00776401,1.67305,1.27882][0.736702,0.0923742,0][0.0964736,1.03866,-0.462222][1.17872,-2.36122e-007,2.20132e-007][0.743431,0.0786299,0][0.0964739,2.09572,-0.516467][2.49934e-007,1.23521,-0.970397][0.881357,0.025651,0][0.0964738,1.79708,-0.694522][0,0.414794,-1.51504][0.881357,0.0465021,0][-0.100377,2.09572,-0.516467][2.93828e-007,1.2352,-0.970397][0.867612,0.025651,0][0.0964738,1.79708,-0.694522][0,0.414794,-1.51504][0.0154242,0.878116,0][0.0964739,2.09572,-0.516467][2.49934e-007,1.23521,-0.970397][0.0278562,0.857265,0][0.0964738,1.96781,-0.365751][-1.47084e-007,-1.23432,0.971523][0.0383794,0.866195,0][0.0964735,2.2435,2.03643][6.08757e-007,1.48821,0.50262][0.919037,0.732665,0][0.0964737,2.39437,1.02533][-0.232202,2.91353,0.339098][0.848441,0.732665,0][-0.100377,2.2435,2.03643][-0.0197697,1.18767,0.3617][0.919037,0.718921,0][0.0964737,2.39437,1.02533][-0.232202,2.91353,0.339098][0.135506,0.836412,0][0.0964735,2.2435,2.03643][6.08757e-007,1.48821,0.50262][0.206102,0.846946,0][0.0964735,2.0815,1.90086][0.76442,-1.95352e-007,0][0.196636,0.858257,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/LeafHelm.mesh b/shareddata/charcustom/hats/fonts/LeafHelm.mesh deleted file mode 100644 index dba4924..0000000 --- a/shareddata/charcustom/hats/fonts/LeafHelm.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -660 -[0.099983,0.659854,0.227474][0,1,0][0.406943,0.0129672,0][0.183119,0.659854,0.171924][0,1,0][0.412533,0.0184678,0][0.238669,0.659854,0.0887882][0,1,0][0.415582,0.0256645,0][0.099983,0.659854,0.227474][0,1,0][0.406943,0.0129672,0][0.238669,0.659854,0.0887882][0,1,0][0.415582,0.0256645,0][0.258175,0.659854,-0.00927752][-6.0083e-007,1,-4.01462e-007][0.415627,0.0334615,0][0.099983,0.659854,0.227474][0,1,0][0.406943,0.0129672,0][0.258175,0.659854,-0.00927752][-6.0083e-007,1,-4.01462e-007][0.415627,0.0334615,0][0.238669,0.659854,-0.107343][4.99459e-007,1,0][0.412659,0.0406718,0][0.099983,0.659854,0.227474][0,1,0][0.406943,0.0129672,0][0.238669,0.659854,-0.107343][4.99459e-007,1,0][0.412659,0.0406718,0][0.183119,0.659854,-0.190479][-2.15788e-007,1,0][0.407132,0.0461978,0][0.099983,0.659854,0.227474][0,1,0][0.406943,0.0129672,0][0.183119,0.659854,-0.190479][-2.15788e-007,1,0][0.407132,0.0461978,0][0.0999831,0.659854,-0.246029][-2.09919e-007,1,-1.2588e-007][0.399886,0.0491982,0][0.099983,0.659854,0.227474][0,1,0][0.406943,0.0129672,0][0.0999831,0.659854,-0.246029][-2.09919e-007,1,-1.2588e-007][0.399886,0.0491982,0][0.00191736,0.659854,-0.265535][0,1,-1.20405e-007][0.392024,0.0492161,0][0.099983,0.659854,0.227474][0,1,0][0.406943,0.0129672,0][0.00191736,0.659854,-0.265535][0,1,-1.20405e-007][0.392024,0.0492161,0][-0.0961483,0.659854,-0.246029][2.36263e-007,1,-2.23744e-007][0.384744,0.0462489,0][0.099983,0.659854,0.227474][0,1,0][0.406943,0.0129672,0][-0.0961483,0.659854,-0.246029][2.36263e-007,1,-2.23744e-007][0.384744,0.0462489,0][-0.179284,0.659854,-0.190479][0,1,0][0.379154,0.0407483,0][0.099983,0.659854,0.227474][0,1,0][0.406943,0.0129672,0][-0.179284,0.659854,-0.190479][0,1,0][0.379154,0.0407483,0][-0.234834,0.659854,-0.107343][-2.16864e-007,1,0][0.376104,0.0335517,0][0.099983,0.659854,0.227474][0,1,0][0.406943,0.0129672,0][-0.234834,0.659854,-0.107343][-2.16864e-007,1,0][0.376104,0.0335517,0][-0.254341,0.659854,-0.00927756][3.89875e-007,1,-5.83489e-007][0.37606,0.0257547,0][0.099983,0.659854,0.227474][0,1,0][0.406943,0.0129672,0][-0.254341,0.659854,-0.00927756][3.89875e-007,1,-5.83489e-007][0.37606,0.0257547,0][-0.234834,0.659854,0.0887881][3.32763e-007,1,-3.73579e-007][0.379028,0.0185443,0][0.099983,0.659854,0.227474][0,1,0][0.406943,0.0129672,0][-0.234834,0.659854,0.0887881][3.32763e-007,1,-3.73579e-007][0.379028,0.0185443,0][-0.179284,0.659854,0.171924][-1.40974e-007,1,7.08727e-007][0.384555,0.0130183,0][0.099983,0.659854,0.227474][0,1,0][0.406943,0.0129672,0][-0.179284,0.659854,0.171924][-1.40974e-007,1,7.08727e-007][0.384555,0.0130183,0][-0.0961483,0.659854,0.227474][0,1,0][0.391801,0.0100179,0][0.00191736,0.659854,0.24698][0,1,0][0.399663,0.01,0][0.099983,0.659854,0.227474][0,1,0][0.406943,0.0129672,0][-0.0961483,0.659854,0.227474][0,1,0][0.391801,0.0100179,0][0.00191694,-2.44029,2.32109][-0.306114,0.0130237,1.53894][0.861533,0.8427,0][0.00191698,-2.22919,2.3193][1.36627e-007,0.497344,0.867554][0.878136,0.8427,0][-0.889191,-2.22919,2.14205][-0.331998,0.497344,0.801515][0.878254,0.91416,0][-0.889191,-2.22919,2.14205][-0.331998,0.497344,0.801515][0.878254,0.91416,0][-0.889875,-2.44029,2.1437][-0.306114,0.0130229,1.53894][0.861651,0.914215,0][0.00191694,-2.44029,2.32109][-0.306114,0.0130237,1.53894][0.861533,0.8427,0][0.00191698,-2.22919,2.3193][1.36627e-007,0.497344,0.867554][0.0112914,0.544077,0][0.001917,-2.00582,1.88583][2.36988e-007,0.774789,0.63222][0.0489372,0.551409,0][-0.723311,-2.00582,1.74158][-0.24194,0.774789,0.584095][0.0478862,0.609558,0][-0.723311,-2.00582,1.74158][-0.24194,0.774789,0.584095][0.0478862,0.609558,0][-0.889191,-2.22919,2.14205][-0.331998,0.497344,0.801515][0.01,0.615525,0][0.00191698,-2.22919,2.3193][1.36627e-007,0.497344,0.867554][0.0112914,0.544077,0][0.001917,-2.00582,1.88583][2.36988e-007,0.774789,0.63222][0.0489372,0.551409,0][0.00191704,-1.61625,1.59988][0,0.410806,0.911723][0.0826314,0.556407,0][-0.613879,-1.61625,1.47739][-0.348901,0.410806,0.842322][0.0817389,0.605781,0][-0.613879,-1.61625,1.47739][-0.348901,0.410806,0.842322][0.0817389,0.605781,0][-0.723311,-2.00582,1.74158][-0.24194,0.774789,0.584095][0.0478862,0.609558,0][0.001917,-2.00582,1.88583][2.36988e-007,0.774789,0.63222][0.0489372,0.551409,0][0.00191704,-1.61625,1.59988][0,0.410806,0.911723][0.690198,0.605317,0][0.0019171,-1.19582,1.51867][0,0.152222,0.988346][0.723876,0.605317,0][-0.582804,-1.19582,1.40236][-0.378224,0.152222,0.913113][0.725611,0.652175,0][-0.582804,-1.19582,1.40236][-0.378224,0.152222,0.913113][0.725611,0.652175,0][-0.613879,-1.61625,1.47739][-0.348901,0.410806,0.842322][0.692024,0.654666,0][0.00191704,-1.61625,1.59988][0,0.410806,0.911723][0.690198,0.605317,0][0.0019171,-1.19582,1.51867][0,0.152222,0.988346][0.723876,0.605317,0][0.00191718,-0.668634,1.45865][1.35172e-007,0.205947,0.978563][0.765482,0.604699,0][-0.559834,-0.668634,1.34691][-0.37448,0.205947,0.904074][0.767149,0.649716,0][-0.559834,-0.668634,1.34691][-0.37448,0.205947,0.904074][0.767149,0.649716,0][-0.582804,-1.19582,1.40236][-0.378224,0.152222,0.913113][0.725611,0.652175,0][0.0019171,-1.19582,1.51867][0,0.152222,0.988346][0.723876,0.605317,0][0.00191718,-0.668634,1.45865][1.35172e-007,0.205947,0.978563][0.765482,0.604699,0][0.00191725,-0.314304,1.34655][0,0.305417,0.952219][0.794517,0.605345,0][-0.516936,-0.314304,1.24335][-0.364398,0.305417,0.879736][0.796057,0.646924,0][-0.516936,-0.314304,1.24335][-0.364398,0.305417,0.879736][0.796057,0.646924,0][-0.559834,-0.668634,1.34691][-0.37448,0.205947,0.904074][0.767149,0.649716,0][0.00191718,-0.668634,1.45865][1.35172e-007,0.205947,0.978563][0.765482,0.604699,0][0.00191725,-0.314304,1.34655][0,0.305417,0.952219][0.794517,0.605345,0][0.0019173,0.040027,1.23122][2.03222e-007,0.511149,0.859492][0.8236,0.606039,0][-0.472802,0.040027,1.1368][-0.328913,0.511149,0.794067][0.825009,0.644082,0][-0.472802,0.040027,1.1368][-0.328913,0.511149,0.794067][0.825009,0.644082,0][-0.516936,-0.314304,1.24335][-0.364398,0.305417,0.879736][0.796057,0.646924,0][0.00191725,-0.314304,1.34655][0,0.305417,0.952219][0.794517,0.605345,0][0.0019173,0.040027,1.23122][2.03222e-007,0.511149,0.859492][0.0452313,0.802146,0][0.00191731,0.341323,0.928451][0,0.809578,0.587013][0.0622421,0.82279,0][-0.356936,0.341323,0.857071][-0.22464,0.809578,0.542329][0.0439986,0.845033,0][-0.356936,0.341323,0.857071][-0.22464,0.809578,0.542329][0.0439986,0.845033,0][-0.472802,0.040027,1.1368][-0.328913,0.511149,0.794067][0.0210975,0.831571,0][0.0019173,0.040027,1.23122][2.03222e-007,0.511149,0.859492][0.0452313,0.802146,0][0.00191731,0.341323,0.928451][0,0.809578,0.587013][0.0622421,0.82279,0][0.00191736,0.659854,0.24698][0,0.905923,0.423443][0.0981408,0.866356,0][-0.0961483,0.659854,0.227474][-0.162045,0.905923,0.391211][0.0931553,0.872434,0][-0.0961483,0.659854,0.227474][-0.162045,0.905923,0.391211][0.0931553,0.872434,0][-0.356936,0.341323,0.857071][-0.22464,0.809578,0.542329][0.0439986,0.845033,0][0.00191731,0.341323,0.928451][0,0.809578,0.587013][0.0622421,0.82279,0][-0.303108,0.341323,0.727119][0.224113,-0.810574,-0.541057][0.180756,0.16319,0][0.00191735,0.618851,-0.00927755][-2.45855e-007,-1,0][0.166436,0.228009,0][0.00191731,0.341323,0.787792][-2.59674e-007,-0.810574,-0.585636][0.156308,0.162404,0][0.00191731,0.341323,0.787792][-2.59674e-007,-0.810574,-0.585636][0.156308,0.162404,0][0.00191729,0.0400268,1.04515][-2.32846e-007,-0.458393,-0.88875][0.153217,0.135654,0][-0.401594,0.040027,0.964886][0.34011,-0.458393,-0.821097][0.185559,0.136694,0][-0.401594,0.040027,0.964886][0.34011,-0.458393,-0.821097][0.185559,0.136694,0][-0.303108,0.341323,0.727119][0.224113,-0.810574,-0.541057][0.180756,0.16319,0][0.00191731,0.341323,0.787792][-2.59674e-007,-0.810574,-0.585636][0.156308,0.162404,0][0.00191729,0.0400268,1.04515][-2.32846e-007,-0.458393,-0.88875][0.67167,0.217173,0][0.00191724,-0.314304,1.14318][-2.23879e-007,-0.26305,-0.964782][0.67059,0.188277,0][-0.439108,-0.314304,1.05545][0.369206,-0.26305,-0.891342][0.705953,0.188796,0][-0.439108,-0.314304,1.05545][0.369206,-0.26305,-0.891342][0.705953,0.188796,0][-0.401594,0.040027,0.964886][0.34011,-0.458393,-0.821097][0.704025,0.217648,0][0.00191729,0.0400268,1.04515][-2.32846e-007,-0.458393,-0.88875][0.67167,0.217173,0][0.00191724,-0.314304,1.14318][-2.23879e-007,-0.26305,-0.964782][0.67059,0.188277,0][0.00191717,-0.668634,1.23846][-1.26492e-007,-0.176835,-0.98424][0.669551,0.159438,0][-0.475571,-0.668634,1.14348][0.376652,-0.176835,-0.90932][0.707838,0.16,0][-0.475571,-0.668634,1.14348][0.376652,-0.176835,-0.90932][0.707838,0.16,0][-0.439108,-0.314304,1.05545][0.369206,-0.26305,-0.891342][0.705953,0.188796,0][0.00191724,-0.314304,1.14318][-2.23879e-007,-0.26305,-0.964782][0.67059,0.188277,0][0.00191717,-0.668634,1.23846][-1.26492e-007,-0.176835,-0.98424][0.669551,0.159438,0][0.00191709,-1.19582,1.28948][0,-0.129768,-0.991544][0.669371,0.118384,0][-0.495096,-1.19582,1.19062][0.379448,-0.129768,-0.916068][0.709223,0.118969,0][-0.495096,-1.19582,1.19062][0.379448,-0.129768,-0.916068][0.709223,0.118969,0][-0.475571,-0.668634,1.14348][0.376652,-0.176835,-0.90932][0.707838,0.16,0][0.00191717,-0.668634,1.23846][-1.26492e-007,-0.176835,-0.98424][0.669551,0.159438,0][0.00191709,-1.19582,1.28948][0,-0.129768,-0.991544][0.669371,0.118384,0][0.00191703,-1.61625,1.3585][-1.58561e-007,-0.360844,-0.932626][0.668801,0.085064,0][-0.52151,-1.61625,1.25439][0.356901,-0.360844,-0.861634][0.710771,0.0856801,0][-0.52151,-1.61625,1.25439][0.356901,-0.360844,-0.861634][0.710771,0.0856801,0][-0.495096,-1.19582,1.19062][0.379448,-0.129768,-0.916068][0.709223,0.118969,0][0.00191709,-1.19582,1.28948][0,-0.129768,-0.991544][0.669371,0.118384,0][0.00191703,-1.61625,1.3585][-1.58561e-007,-0.360844,-0.932626][0.668801,0.085064,0][0.00191699,-2.00582,1.60157][-1.74834e-007,-0.726347,-0.687328][0.665578,0.0505318,0][-0.614526,-2.00582,1.47895][0.263029,-0.726347,-0.635008][0.715006,0.0512573,0][-0.614526,-2.00582,1.47895][0.263029,-0.726347,-0.635008][0.715006,0.0512573,0][-0.52151,-1.61625,1.25439][0.356901,-0.360844,-0.861634][0.710771,0.0856801,0][0.00191703,-1.61625,1.3585][-1.58561e-007,-0.360844,-0.932626][0.668801,0.085064,0][0.00191699,-2.00582,1.60157][-1.74834e-007,-0.726347,-0.687328][0.665578,0.0505318,0][0.00191697,-2.22919,1.97001][0,-0.469485,-0.882941][0.660283,0.0260529,0][-0.755525,-2.22919,1.81935][0.337887,-0.469485,-0.815731][0.721017,0.0269444,0][-0.755525,-2.22919,1.81935][0.337887,-0.469485,-0.815731][0.721017,0.0269444,0][-0.614526,-2.00582,1.47895][0.263029,-0.726347,-0.635008][0.715006,0.0512573,0][0.00191699,-2.00582,1.60157][-1.74834e-007,-0.726347,-0.687328][0.665578,0.0505318,0][0.00191697,-2.22919,1.97001][0,-0.469485,-0.882941][0.660283,0.0260529,0][0.00191693,-2.44029,1.97153][0.306165,-0.0110746,-1.5392][0.660495,0.01,0][-0.756106,-2.44029,1.82075][0.306166,-0.0110751,-1.5392][0.721276,0.0108922,0][-0.756106,-2.44029,1.82075][0.306166,-0.0110751,-1.5392][0.721276,0.0108922,0][-0.755525,-2.22919,1.81935][0.337887,-0.469485,-0.815731][0.721017,0.0269444,0][0.00191697,-2.22919,1.97001][0,-0.469485,-0.882941][0.660283,0.0260529,0][0.00191693,-2.44029,1.97153][0.306165,-0.0110746,-1.5392][0.292869,0.193287,0][0.00191694,-2.44029,2.32109][-0.306114,0.0130237,1.53894][0.320119,0.193287,0][-0.889875,-2.44029,2.1437][-0.306114,0.0130229,1.53894][0.30629,0.263427,0][-0.889875,-2.44029,2.1437][-0.306114,0.0130229,1.53894][0.30629,0.263427,0][-0.756106,-2.44029,1.82075][0.306166,-0.0110751,-1.5392][0.281115,0.252906,0][0.00191693,-2.44029,1.97153][0.306165,-0.0110746,-1.5392][0.292869,0.193287,0][-0.889875,-2.44029,2.1437][-0.306114,0.0130229,1.53894][0.861651,0.914215,0][-0.889191,-2.22919,2.14205][-0.331998,0.497344,0.801515][0.878254,0.91416,0][-1.64464,-2.22919,1.63727][-0.613452,0.497345,0.613453][0.87859,0.98018,0][-1.64464,-2.22919,1.63727][-0.613452,0.497345,0.613453][0.87859,0.98018,0][-1.6459,-2.44029,1.63854][-0.87174,0.0130253,1.30465][0.861987,0.980286,0][-0.889875,-2.44029,2.1437][-0.306114,0.0130229,1.53894][0.861651,0.914215,0][-0.889191,-2.22919,2.14205][-0.331998,0.497344,0.801515][0.01,0.615525,0][-0.723311,-2.00582,1.74158][-0.24194,0.774789,0.584095][0.0478862,0.609558,0][-1.33813,-2.00582,1.33077][-0.447047,0.774789,0.447047][0.066614,0.663636,0][-1.33813,-2.00582,1.33077][-0.447047,0.774789,0.447047][0.066614,0.663636,0][-1.64464,-2.22919,1.63727][-0.613452,0.497345,0.613453][0.0330115,0.681972,0][-0.889191,-2.22919,2.14205][-0.331998,0.497344,0.801515][0.01,0.615525,0][-0.723311,-2.00582,1.74158][-0.24194,0.774789,0.584095][0.0478862,0.609558,0][-0.613879,-1.61625,1.47739][-0.348901,0.410806,0.842322][0.0817389,0.605781,0][-1.13593,-1.61624,1.12857][-0.644685,0.410806,0.644685][0.0976409,0.651699,0][-1.13593,-1.61624,1.12857][-0.644685,0.410806,0.644685][0.0976409,0.651699,0][-1.33813,-2.00582,1.33077][-0.447047,0.774789,0.447047][0.066614,0.663636,0][-0.723311,-2.00582,1.74158][-0.24194,0.774789,0.584095][0.0478862,0.609558,0][-0.613879,-1.61625,1.47739][-0.348901,0.410806,0.842322][0.692024,0.654666,0][-0.582804,-1.19582,1.40236][-0.378224,0.152222,0.913113][0.725611,0.652175,0][-1.07851,-1.19582,1.07115][-0.698866,0.152222,0.698866][0.730551,0.695343,0][-1.07851,-1.19582,1.07115][-0.698866,0.152222,0.698866][0.730551,0.695343,0][-1.13593,-1.61624,1.12857][-0.644685,0.410806,0.644685][0.697227,0.700128,0][-0.613879,-1.61625,1.47739][-0.348901,0.410806,0.842322][0.692024,0.654666,0][-0.582804,-1.19582,1.40236][-0.378224,0.152222,0.913113][0.725611,0.652175,0][-0.559834,-0.668634,1.34691][-0.37448,0.205947,0.904074][0.767149,0.649716,0][-1.03606,-0.668634,1.0287][-0.691949,0.205947,0.691949][0.771895,0.691188,0][-1.03606,-0.668634,1.0287][-0.691949,0.205947,0.691949][0.771895,0.691188,0][-1.07851,-1.19582,1.07115][-0.698866,0.152222,0.698866][0.730551,0.695343,0][-0.582804,-1.19582,1.40236][-0.378224,0.152222,0.913113][0.725611,0.652175,0][-0.559834,-0.668634,1.34691][-0.37448,0.205947,0.904074][0.767149,0.649716,0][-0.516936,-0.314304,1.24335][-0.364398,0.305417,0.879736][0.796057,0.646924,0][-0.956799,-0.314303,0.949439][-0.67332,0.305417,0.67332][0.800441,0.685229,0][-0.956799,-0.314303,0.949439][-0.67332,0.305417,0.67332][0.800441,0.685229,0][-1.03606,-0.668634,1.0287][-0.691949,0.205947,0.691949][0.771895,0.691188,0][-0.559834,-0.668634,1.34691][-0.37448,0.205947,0.904074][0.767149,0.649716,0][-0.516936,-0.314304,1.24335][-0.364398,0.305417,0.879736][0.796057,0.646924,0][-0.472802,0.040027,1.1368][-0.328913,0.511149,0.794067][0.825009,0.644082,0][-0.87525,0.0400271,0.86789][-0.607753,0.511149,0.607753][0.82902,0.679128,0][-0.87525,0.0400271,0.86789][-0.607753,0.511149,0.607753][0.82902,0.679128,0][-0.956799,-0.314303,0.949439][-0.67332,0.305417,0.67332][0.800441,0.685229,0][-0.516936,-0.314304,1.24335][-0.364398,0.305417,0.879736][0.796057,0.646924,0][-0.472802,0.040027,1.1368][-0.328913,0.511149,0.794067][0.0210975,0.831571,0][-0.356936,0.341323,0.857071][-0.22464,0.809578,0.542329][0.0439986,0.845033,0][-0.661157,0.341323,0.653797][-0.415081,0.809578,0.415081][0.0356097,0.872478,0][-0.661157,0.341323,0.653797][-0.415081,0.809578,0.415081][0.0356097,0.872478,0][-0.87525,0.0400271,0.86789][-0.607753,0.511149,0.607753][0.01,0.867878,0][-0.472802,0.040027,1.1368][-0.328913,0.511149,0.794067][0.0210975,0.831571,0][-0.356936,0.341323,0.857071][-0.22464,0.809578,0.542329][0.0439986,0.845033,0][-0.0961483,0.659854,0.227474][-0.162045,0.905923,0.391211][0.0931553,0.872434,0][-0.179284,0.659854,0.171924][-0.299419,0.905923,0.29942][0.0908628,0.879934,0][-0.179284,0.659854,0.171924][-0.299419,0.905923,0.29942][0.0908628,0.879934,0][-0.661157,0.341323,0.653797][-0.415081,0.809578,0.415081][0.0356097,0.872478,0][-0.356936,0.341323,0.857071][-0.22464,0.809578,0.542329][0.0439986,0.845033,0][-0.561696,0.341323,0.554336][0.414107,-0.810574,-0.414107][0.20306,0.172733,0][0.00191735,0.618851,-0.00927755][-2.45855e-007,-1,0][0.166436,0.228009,0][-0.303108,0.341323,0.727119][0.224113,-0.810574,-0.541057][0.180756,0.16319,0][-0.303108,0.341323,0.727119][0.224113,-0.810574,-0.541057][0.180756,0.16319,0][-0.401594,0.040027,0.964886][0.34011,-0.458393,-0.821097][0.185559,0.136694,0][-0.743675,0.040027,0.736315][0.628441,-0.458393,-0.628441][0.215064,0.149318,0][-0.743675,0.040027,0.736315][0.628441,-0.458393,-0.628441][0.215064,0.149318,0][-0.561696,0.341323,0.554336][0.414107,-0.810574,-0.414107][0.20306,0.172733,0][-0.303108,0.341323,0.727119][0.224113,-0.810574,-0.541057][0.180756,0.16319,0][-0.401594,0.040027,0.964886][0.34011,-0.458393,-0.821097][0.704025,0.217648,0][-0.439108,-0.314304,1.05545][0.369206,-0.26305,-0.891342][0.705953,0.188796,0][-0.812992,-0.314304,0.805631][0.682204,-0.26305,-0.682204][0.738572,0.19282,0][-0.812992,-0.314304,0.805631][0.682204,-0.26305,-0.682204][0.738572,0.19282,0][-0.743675,0.040027,0.736315][0.628441,-0.458393,-0.628441][0.73387,0.221329,0][-0.401594,0.040027,0.964886][0.34011,-0.458393,-0.821097][0.704025,0.217648,0][-0.439108,-0.314304,1.05545][0.369206,-0.26305,-0.891342][0.705953,0.188796,0][-0.475571,-0.668634,1.14348][0.376652,-0.176835,-0.90932][0.707838,0.16,0][-0.880366,-0.668634,0.873006][0.695963,-0.176835,-0.695963][0.743154,0.164356,0][-0.880366,-0.668634,0.873006][0.695963,-0.176835,-0.695963][0.743154,0.164356,0][-0.812992,-0.314304,0.805631][0.682204,-0.26305,-0.682204][0.738572,0.19282,0][-0.439108,-0.314304,1.05545][0.369206,-0.26305,-0.891342][0.705953,0.188796,0][-0.475571,-0.668634,1.14348][0.376652,-0.176835,-0.90932][0.707838,0.16,0][-0.495096,-1.19582,1.19062][0.379448,-0.129768,-0.916068][0.709223,0.118969,0][-0.916443,-1.19582,0.909082][0.701128,-0.129768,-0.701128][0.745983,0.123503,0][-0.916443,-1.19582,0.909082][0.701128,-0.129768,-0.701128][0.745983,0.123503,0][-0.880366,-0.668634,0.873006][0.695963,-0.176835,-0.695963][0.743154,0.164356,0][-0.475571,-0.668634,1.14348][0.376652,-0.176835,-0.90932][0.707838,0.16,0][-0.495096,-1.19582,1.19062][0.379448,-0.129768,-0.916068][0.709223,0.118969,0][-0.52151,-1.61625,1.25439][0.356901,-0.360844,-0.861634][0.710771,0.0856801,0][-0.96525,-1.61625,0.957889][0.659466,-0.360844,-0.659467][0.749485,0.0904553,0][-0.96525,-1.61625,0.957889][0.659466,-0.360844,-0.659467][0.749485,0.0904553,0][-0.916443,-1.19582,0.909082][0.701128,-0.129768,-0.701128][0.745983,0.123503,0][-0.495096,-1.19582,1.19062][0.379448,-0.129768,-0.916068][0.709223,0.118969,0][-0.52151,-1.61625,1.25439][0.356901,-0.360844,-0.861634][0.710771,0.0856801,0][-0.614526,-2.00582,1.47895][0.263029,-0.726347,-0.635008][0.715006,0.0512573,0][-1.13712,-2.00582,1.12976][0.486014,-0.726348,-0.486014][0.7606,0.056881,0][-1.13712,-2.00582,1.12976][0.486014,-0.726348,-0.486014][0.7606,0.056881,0][-0.96525,-1.61625,0.957889][0.659466,-0.360844,-0.659467][0.749485,0.0904553,0][-0.52151,-1.61625,1.25439][0.356901,-0.360844,-0.861634][0.710771,0.0856801,0][-0.614526,-2.00582,1.47895][0.263029,-0.726347,-0.635008][0.380517,0.704178,0][-0.755525,-2.22919,1.81935][0.337887,-0.469485,-0.815731][0.347219,0.710473,0][-1.39765,-2.22919,1.39029][0.624333,-0.469484,-0.624334][0.346051,0.649743,0][-1.39765,-2.22919,1.39029][0.624333,-0.469484,-0.624334][0.346051,0.649743,0][-1.13712,-2.00582,1.12976][0.486014,-0.726348,-0.486014][0.379567,0.654753,0][-0.614526,-2.00582,1.47895][0.263029,-0.726347,-0.635008][0.380517,0.704178,0][-0.755525,-2.22919,1.81935][0.337887,-0.469485,-0.815731][0.721017,0.0269444,0][-0.756106,-2.44029,1.82075][0.306166,-0.0110751,-1.5392][0.721276,0.0108922,0][-1.39873,-2.44029,1.39137][0.871886,-0.0110715,-1.30487][0.777341,0.0178076,0][-1.39873,-2.44029,1.39137][0.871886,-0.0110715,-1.30487][0.777341,0.0178076,0][-1.39765,-2.22919,1.39029][0.624333,-0.469484,-0.624334][0.777039,0.0338545,0][-0.755525,-2.22919,1.81935][0.337887,-0.469485,-0.815731][0.721017,0.0269444,0][-0.756106,-2.44029,1.82075][0.306166,-0.0110751,-1.5392][0.281115,0.252906,0][-0.889875,-2.44029,2.1437][-0.306114,0.0130229,1.53894][0.30629,0.263427,0][-1.6459,-2.44029,1.63854][-0.87174,0.0130253,1.30465][0.266911,0.32289,0][-1.6459,-2.44029,1.63854][-0.87174,0.0130253,1.30465][0.266911,0.32289,0][-1.39873,-2.44029,1.39137][0.871886,-0.0110715,-1.30487][0.247642,0.303449,0][-0.756106,-2.44029,1.82075][0.306166,-0.0110751,-1.5392][0.281115,0.252906,0][-1.6459,-2.44029,1.63854][-0.87174,0.0130253,1.30465][0.197101,0.706162,0][-1.64464,-2.22919,1.63727][-0.613452,0.497345,0.613453][0.180503,0.705743,0][-2.14941,-2.22919,0.881831][-0.801515,0.497344,0.331998][0.181646,0.646337,0][-2.14941,-2.22919,0.881831][-0.801515,0.497344,0.331998][0.181646,0.646337,0][-2.15106,-2.44029,0.882514][-1.30465,0.0130241,0.871741][0.198245,0.64671,0][-1.6459,-2.44029,1.63854][-0.87174,0.0130253,1.30465][0.197101,0.706162,0][-1.64464,-2.22919,1.63727][-0.613452,0.497345,0.613453][0.0330115,0.681972,0][-1.33813,-2.00582,1.33077][-0.447047,0.774789,0.447047][0.066614,0.663636,0][-1.74894,-2.00582,0.71595][-0.584095,0.774789,0.24194][0.10227,0.70541,0][-1.74894,-2.00582,0.71595][-0.584095,0.774789,0.24194][0.10227,0.70541,0][-2.14941,-2.22919,0.881831][-0.801515,0.497344,0.331998][0.0768224,0.733302,0][-1.64464,-2.22919,1.63727][-0.613452,0.497345,0.613453][0.0330115,0.681972,0][-1.33813,-2.00582,1.33077][-0.447047,0.774789,0.447047][0.066614,0.663636,0][-1.13593,-1.61624,1.12857][-0.644685,0.410806,0.644685][0.0976409,0.651699,0][-1.48475,-1.61625,0.606519][-0.842322,0.410806,0.348901][0.127916,0.68717,0][-1.48475,-1.61625,0.606519][-0.842322,0.410806,0.348901][0.127916,0.68717,0][-1.74894,-2.00582,0.71595][-0.584095,0.774789,0.24194][0.10227,0.70541,0][-1.33813,-2.00582,1.33077][-0.447047,0.774789,0.447047][0.066614,0.663636,0][-1.13593,-1.61624,1.12857][-0.644685,0.410806,0.644685][0.924479,0.188953,0][-1.07851,-1.19582,1.07115][-0.698866,0.152222,0.698866][0.891505,0.183801,0][-1.40972,-1.19582,0.575443][-0.913113,0.152222,0.378224][0.892255,0.144821,0][-1.40972,-1.19582,0.575443][-0.913113,0.152222,0.378224][0.892255,0.144821,0][-1.48475,-1.61625,0.606519][-0.842322,0.410806,0.348901][0.925269,0.147901,0][-1.13593,-1.61624,1.12857][-0.644685,0.410806,0.644685][0.924479,0.188953,0][-1.07851,-1.19582,1.07115][-0.698866,0.152222,0.698866][0.891505,0.183801,0][-1.03606,-0.668634,1.0287][-0.691949,0.205947,0.691949][0.850113,0.179666,0][-1.35427,-0.668634,0.552474][-0.904074,0.205947,0.37448][0.850833,0.142217,0][-1.35427,-0.668634,0.552474][-0.904074,0.205947,0.37448][0.850833,0.142217,0][-1.40972,-1.19582,0.575443][-0.913113,0.152222,0.378224][0.892255,0.144821,0][-1.07851,-1.19582,1.07115][-0.698866,0.152222,0.698866][0.891505,0.183801,0][-1.03606,-0.668634,1.0287][-0.691949,0.205947,0.691949][0.850113,0.179666,0][-0.956799,-0.314303,0.949439][-0.67332,0.305417,0.67332][0.822369,0.172897,0][-1.25071,-0.314303,0.509576][-0.879736,0.305417,0.364398][0.823035,0.138308,0][-1.25071,-0.314303,0.509576][-0.879736,0.305417,0.364398][0.823035,0.138308,0][-1.35427,-0.668634,0.552474][-0.904074,0.205947,0.37448][0.850833,0.142217,0][-1.03606,-0.668634,1.0287][-0.691949,0.205947,0.691949][0.850113,0.179666,0][-0.956799,-0.314303,0.949439][-0.67332,0.305417,0.67332][0.822369,0.172897,0][-0.87525,0.0400271,0.86789][-0.607753,0.511149,0.607753][0.794629,0.165948,0][-1.14416,0.040027,0.465442][-0.794067,0.511149,0.328913][0.795238,0.134301,0][-1.14416,0.040027,0.465442][-0.794067,0.511149,0.328913][0.795238,0.134301,0][-1.25071,-0.314303,0.509576][-0.879736,0.305417,0.364398][0.823035,0.138308,0][-0.956799,-0.314303,0.949439][-0.67332,0.305417,0.67332][0.822369,0.172897,0][-0.87525,0.0400271,0.86789][-0.607753,0.511149,0.607753][0.01,0.867878,0][-0.661157,0.341323,0.653797][-0.415081,0.809578,0.415081][0.0356097,0.872478,0][-0.864431,0.341323,0.349576][-0.542329,0.809578,0.22464][0.0383526,0.900948,0][-0.864431,0.341323,0.349576][-0.542329,0.809578,0.22464][0.0383526,0.900948,0][-1.14416,0.040027,0.465442][-0.794067,0.511149,0.328913][0.0136285,0.90554,0][-0.87525,0.0400271,0.86789][-0.607753,0.511149,0.607753][0.01,0.867878,0][-0.661157,0.341323,0.653797][-0.415081,0.809578,0.415081][0.0356097,0.872478,0][-0.179284,0.659854,0.171924][-0.299419,0.905923,0.29942][0.0908628,0.879934,0][-0.234834,0.659854,0.0887881][-0.391211,0.905923,0.162045][0.0916124,0.887714,0][-0.234834,0.659854,0.0887881][-0.391211,0.905923,0.162045][0.0916124,0.887714,0][-0.864431,0.341323,0.349576][-0.542329,0.809578,0.22464][0.0383526,0.900948,0][-0.661157,0.341323,0.653797][-0.415081,0.809578,0.415081][0.0356097,0.872478,0][-0.734479,0.341323,0.295748][0.541057,-0.810574,-0.224113][0.219824,0.18958,0][0.00191735,0.618851,-0.00927755][-2.45855e-007,-1,0][0.166436,0.228009,0][-0.561696,0.341323,0.554336][0.414107,-0.810574,-0.414107][0.20306,0.172733,0][-0.561696,0.341323,0.554336][0.414107,-0.810574,-0.414107][0.20306,0.172733,0][-0.743675,0.040027,0.736315][0.628441,-0.458393,-0.628441][0.215064,0.149318,0][-0.972246,0.040027,0.394234][0.821097,-0.458393,-0.34011][0.23724,0.171605,0][-0.972246,0.040027,0.394234][0.821097,-0.458393,-0.34011][0.23724,0.171605,0][-0.734479,0.341323,0.295748][0.541057,-0.810574,-0.224113][0.219824,0.18958,0][-0.561696,0.341323,0.554336][0.414107,-0.810574,-0.414107][0.20306,0.172733,0][-0.743675,0.040027,0.736315][0.628441,-0.458393,-0.628441][0.544375,0.452267,0][-0.812992,-0.314304,0.805631][0.682204,-0.26305,-0.682204][0.516606,0.458203,0][-1.06281,-0.314304,0.431748][0.891342,-0.26305,-0.369206][0.516094,0.428801,0][-1.06281,-0.314304,0.431748][0.891342,-0.26305,-0.369206][0.516094,0.428801,0][-0.972246,0.040027,0.394234][0.821097,-0.458393,-0.34011][0.543907,0.425366,0][-0.743675,0.040027,0.736315][0.628441,-0.458393,-0.628441][0.544375,0.452267,0][-0.812992,-0.314304,0.805631][0.682204,-0.26305,-0.682204][0.516606,0.458203,0][-0.880366,-0.668634,0.873006][0.695963,-0.176835,-0.695963][0.488833,0.463986,0][-1.15084,-0.668634,0.468211][0.90932,-0.176835,-0.376653][0.48828,0.432153,0][-1.15084,-0.668634,0.468211][0.90932,-0.176835,-0.376653][0.48828,0.432153,0][-1.06281,-0.314304,0.431748][0.891342,-0.26305,-0.369206][0.516094,0.428801,0][-0.812992,-0.314304,0.805631][0.682204,-0.26305,-0.682204][0.516606,0.458203,0][-0.880366,-0.668634,0.873006][0.695963,-0.176835,-0.695963][0.488833,0.463986,0][-0.916443,-1.19582,0.909082][0.701128,-0.129768,-0.701128][0.447425,0.467544,0][-1.19798,-1.19582,0.487735][0.916067,-0.129769,-0.379448][0.446849,0.434409,0][-1.19798,-1.19582,0.487735][0.916067,-0.129769,-0.379448][0.446849,0.434409,0][-1.15084,-0.668634,0.468211][0.90932,-0.176835,-0.376653][0.48828,0.432153,0][-0.880366,-0.668634,0.873006][0.695963,-0.176835,-0.695963][0.488833,0.463986,0][-0.916443,-1.19582,0.909082][0.701128,-0.129768,-0.701128][0.447425,0.467544,0][-0.96525,-1.61625,0.957889][0.659466,-0.360844,-0.659467][0.41443,0.471957,0][-1.26175,-1.61624,0.51415][0.861634,-0.360844,-0.356901][0.413823,0.437061,0][-1.26175,-1.61624,0.51415][0.861634,-0.360844,-0.356901][0.413823,0.437061,0][-1.19798,-1.19582,0.487735][0.916067,-0.129769,-0.379448][0.446849,0.434409,0][-0.916443,-1.19582,0.909082][0.701128,-0.129768,-0.701128][0.447425,0.467544,0][-0.96525,-1.61625,0.957889][0.659466,-0.360844,-0.659467][0.41443,0.471957,0][-1.13712,-2.00582,1.12976][0.486014,-0.726348,-0.486014][0.384029,0.486006,0][-1.48631,-2.00582,0.607166][0.635008,-0.726348,-0.263029][0.383314,0.444909,0][-1.48631,-2.00582,0.607166][0.635008,-0.726348,-0.263029][0.383314,0.444909,0][-1.26175,-1.61624,0.51415][0.861634,-0.360844,-0.356901][0.413823,0.437061,0][-0.96525,-1.61625,0.957889][0.659466,-0.360844,-0.659467][0.41443,0.471957,0][-1.13712,-2.00582,1.12976][0.486014,-0.726348,-0.486014][0.379567,0.654753,0][-1.39765,-2.22919,1.39029][0.624333,-0.469484,-0.624334][0.346051,0.649743,0][-1.82671,-2.22919,0.748164][0.815731,-0.469484,-0.337887][0.364741,0.593256,0][-1.82671,-2.22919,0.748164][0.815731,-0.469484,-0.337887][0.364741,0.593256,0][-1.48631,-2.00582,0.607166][0.635008,-0.726348,-0.263029][0.394778,0.608781,0][-1.13712,-2.00582,1.12976][0.486014,-0.726348,-0.486014][0.379567,0.654753,0][-1.39765,-2.22919,1.39029][0.624333,-0.469484,-0.624334][0.366819,0.506799,0][-1.39873,-2.44029,1.39137][0.871886,-0.0110715,-1.30487][0.35022,0.507172,0][-1.82811,-2.44029,0.748745][1.30487,-0.0110718,-0.871886][0.349341,0.456637,0][-1.82811,-2.44029,0.748745][1.30487,-0.0110718,-0.871886][0.349341,0.456637,0][-1.82671,-2.22919,0.748164][0.815731,-0.469484,-0.337887][0.365941,0.456302,0][-1.39765,-2.22919,1.39029][0.624333,-0.469484,-0.624334][0.366819,0.506799,0][-1.39873,-2.44029,1.39137][0.871886,-0.0110715,-1.30487][0.247642,0.303449,0][-1.6459,-2.44029,1.63854][-0.87174,0.0130253,1.30465][0.266911,0.32289,0][-2.15106,-2.44029,0.882514][-1.30465,0.0130241,0.871741][0.207975,0.362621,0][-2.15106,-2.44029,0.882514][-1.30465,0.0130241,0.871741][0.207975,0.362621,0][-1.82811,-2.44029,0.748745][1.30487,-0.0110718,-0.871886][0.197547,0.337221,0][-1.39873,-2.44029,1.39137][0.871886,-0.0110715,-1.30487][0.247642,0.303449,0][-2.15106,-2.44029,0.882514][-1.30465,0.0130241,0.871741][0.198245,0.64671,0][-2.14941,-2.22919,0.881831][-0.801515,0.497344,0.331998][0.181646,0.646337,0][-2.32666,-2.22919,-0.0092774][-0.867553,0.497344,1.39946e-007][0.182994,0.576263,0][-2.32666,-2.22919,-0.0092774][-0.867553,0.497344,1.39946e-007][0.182994,0.576263,0][-2.32845,-2.44029,-0.00927754][-1.53894,0.0130236,0.306114][0.199594,0.576582,0][-2.15106,-2.44029,0.882514][-1.30465,0.0130241,0.871741][0.198245,0.64671,0][-2.14941,-2.22919,0.881831][-0.801515,0.497344,0.331998][0.0768224,0.733302,0][-1.74894,-2.00582,0.71595][-0.584095,0.774789,0.24194][0.10227,0.70541,0][-1.89319,-2.00582,-0.00927742][-0.63222,0.774789,1.39237e-007][0.149425,0.728522,0][-1.89319,-2.00582,-0.00927742][-0.63222,0.774789,1.39237e-007][0.149425,0.728522,0][-2.32666,-2.22919,-0.0092774][-0.867553,0.497344,1.39946e-007][0.134763,0.761701,0][-2.14941,-2.22919,0.881831][-0.801515,0.497344,0.331998][0.0768224,0.733302,0][-1.74894,-2.00582,0.71595][-0.584095,0.774789,0.24194][0.955738,0.157096,0][-1.48475,-1.61625,0.606519][-0.842322,0.410806,0.348901][0.925269,0.147901,0][-1.60724,-1.61624,-0.00927743][-0.911723,0.410806,1.30586e-007][0.926201,0.0994765,0][-1.60724,-1.61624,-0.00927743][-0.911723,0.410806,1.30586e-007][0.926201,0.0994765,0][-1.89319,-2.00582,-0.00927742][-0.63222,0.774789,1.39237e-007][0.956835,0.100066,0][-1.74894,-2.00582,0.71595][-0.584095,0.774789,0.24194][0.955738,0.157096,0][-1.48475,-1.61625,0.606519][-0.842322,0.410806,0.348901][0.925269,0.147901,0][-1.40972,-1.19582,0.575443][-0.913113,0.152222,0.378224][0.892255,0.144821,0][-1.52603,-1.19582,-0.00927753][-0.988346,0.152222,0][0.893139,0.0988403,0][-1.52603,-1.19582,-0.00927753][-0.988346,0.152222,0][0.893139,0.0988403,0][-1.60724,-1.61624,-0.00927743][-0.911723,0.410806,1.30586e-007][0.926201,0.0994765,0][-1.48475,-1.61625,0.606519][-0.842322,0.410806,0.348901][0.925269,0.147901,0][-1.40972,-1.19582,0.575443][-0.913113,0.152222,0.378224][0.892255,0.144821,0][-1.35427,-0.668634,0.552474][-0.904074,0.205947,0.37448][0.850833,0.142217,0][-1.46601,-0.668634,-0.0092775][-0.978563,0.205947,0][0.851683,0.0980427,0][-1.46601,-0.668634,-0.0092775][-0.978563,0.205947,0][0.851683,0.0980427,0][-1.52603,-1.19582,-0.00927753][-0.988346,0.152222,0][0.893139,0.0988403,0][-1.40972,-1.19582,0.575443][-0.913113,0.152222,0.378224][0.892255,0.144821,0][-1.35427,-0.668634,0.552474][-0.904074,0.205947,0.37448][0.850833,0.142217,0][-1.25071,-0.314303,0.509576][-0.879736,0.305417,0.364398][0.823035,0.138308,0][-1.35391,-0.314303,-0.00927749][-0.952219,0.305417,0][0.82382,0.0975066,0][-1.35391,-0.314303,-0.00927749][-0.952219,0.305417,0][0.82382,0.0975066,0][-1.46601,-0.668634,-0.0092775][-0.978563,0.205947,0][0.851683,0.0980427,0][-1.35427,-0.668634,0.552474][-0.904074,0.205947,0.37448][0.850833,0.142217,0][-1.25071,-0.314303,0.509576][-0.879736,0.305417,0.364398][0.823035,0.138308,0][-1.14416,0.040027,0.465442][-0.794067,0.511149,0.328913][0.795238,0.134301,0][-1.23858,0.0400271,-0.00927753][-0.859492,0.511149,0][0.795956,0.0969705,0][-1.23858,0.0400271,-0.00927753][-0.859492,0.511149,0][0.795956,0.0969705,0][-1.35391,-0.314303,-0.00927749][-0.952219,0.305417,0][0.82382,0.0975066,0][-1.25071,-0.314303,0.509576][-0.879736,0.305417,0.364398][0.823035,0.138308,0][-1.14416,0.040027,0.465442][-0.794067,0.511149,0.328913][0.0136285,0.90554,0][-0.864431,0.341323,0.349576][-0.542329,0.809578,0.22464][0.0383526,0.900948,0][-0.935812,0.341323,-0.00927756][-0.587013,0.809578,-1.76127e-007][0.0518096,0.926107,0][-0.935812,0.341323,-0.00927756][-0.587013,0.809578,-1.76127e-007][0.0518096,0.926107,0][-1.23858,0.0400271,-0.00927753][-0.859492,0.511149,0][0.0314305,0.938823,0][-1.14416,0.040027,0.465442][-0.794067,0.511149,0.328913][0.0136285,0.90554,0][-0.864431,0.341323,0.349576][-0.542329,0.809578,0.22464][0.0383526,0.900948,0][-0.234834,0.659854,0.0887881][-0.391211,0.905923,0.162045][0.0916124,0.887714,0][-0.254341,0.659854,-0.00927756][-0.423443,0.905923,-4.85155e-007][0.0952899,0.89459,0][-0.254341,0.659854,-0.00927756][-0.423443,0.905923,-4.85155e-007][0.0952899,0.89459,0][-0.935812,0.341323,-0.00927756][-0.587013,0.809578,-1.76127e-007][0.0518096,0.926107,0][-0.864431,0.341323,0.349576][-0.542329,0.809578,0.22464][0.0383526,0.900948,0][-0.795152,0.341323,-0.00927755][0.585636,-0.810574,0][0.228495,0.211167,0][0.00191735,0.618851,-0.00927755][-2.45855e-007,-1,0][0.166436,0.228009,0][-0.734479,0.341323,0.295748][0.541057,-0.810574,-0.224113][0.219824,0.18958,0][-0.734479,0.341323,0.295748][0.541057,-0.810574,-0.224113][0.567466,0.417209,0][-0.972246,0.040027,0.394234][0.821097,-0.458393,-0.34011][0.543907,0.425366,0][-1.05251,0.0400269,-0.00927756][0.88875,-0.458393,0][0.543355,0.393634,0][-1.05251,0.0400269,-0.00927756][0.88875,-0.458393,0][0.543355,0.393634,0][-0.795152,0.341323,-0.00927755][0.585636,-0.810574,0][0.567049,0.393222,0][-0.734479,0.341323,0.295748][0.541057,-0.810574,-0.224113][0.567466,0.417209,0][-0.972246,0.040027,0.394234][0.821097,-0.458393,-0.34011][0.543907,0.425366,0][-1.06281,-0.314304,0.431748][0.891342,-0.26305,-0.369206][0.516094,0.428801,0][-1.15054,-0.314303,-0.00927748][0.964782,-0.26305,0][0.515491,0.394119,0][-1.15054,-0.314303,-0.00927748][0.964782,-0.26305,0][0.515491,0.394119,0][-1.05251,0.0400269,-0.00927756][0.88875,-0.458393,0][0.543355,0.393634,0][-0.972246,0.040027,0.394234][0.821097,-0.458393,-0.34011][0.543907,0.425366,0][-1.06281,-0.314304,0.431748][0.891342,-0.26305,-0.369206][0.516094,0.428801,0][-1.15084,-0.668634,0.468211][0.90932,-0.176835,-0.376653][0.48828,0.432153,0][-1.24582,-0.668634,-0.00927749][0.98424,-0.176835,0][0.487627,0.394603,0][-1.24582,-0.668634,-0.00927749][0.98424,-0.176835,0][0.487627,0.394603,0][-1.15054,-0.314303,-0.00927748][0.964782,-0.26305,0][0.515491,0.394119,0][-1.06281,-0.314304,0.431748][0.891342,-0.26305,-0.369206][0.516094,0.428801,0][-1.15084,-0.668634,0.468211][0.90932,-0.176835,-0.376653][0.48828,0.432153,0][-1.19798,-1.19582,0.487735][0.916067,-0.129769,-0.379448][0.446849,0.434409,0][-1.29684,-1.19582,-0.00927753][0.991544,-0.129768,0][0.446169,0.395324,0][-1.29684,-1.19582,-0.00927753][0.991544,-0.129768,0][0.446169,0.395324,0][-1.24582,-0.668634,-0.00927749][0.98424,-0.176835,0][0.487627,0.394603,0][-1.15084,-0.668634,0.468211][0.90932,-0.176835,-0.376653][0.48828,0.432153,0][-1.19798,-1.19582,0.487735][0.916067,-0.129769,-0.379448][0.446849,0.434409,0][-1.26175,-1.61624,0.51415][0.861634,-0.360844,-0.356901][0.413823,0.437061,0][-1.36586,-1.61624,-0.00927747][0.932626,-0.360844,0][0.413107,0.395899,0][-1.36586,-1.61624,-0.00927747][0.932626,-0.360844,0][0.413107,0.395899,0][-1.29684,-1.19582,-0.00927753][0.991544,-0.129768,0][0.446169,0.395324,0][-1.19798,-1.19582,0.487735][0.916067,-0.129769,-0.379448][0.446849,0.434409,0][-1.26175,-1.61624,0.51415][0.861634,-0.360844,-0.356901][0.413823,0.437061,0][-1.48631,-2.00582,0.607166][0.635008,-0.726348,-0.263029][0.383314,0.444909,0][-1.60893,-2.00582,-0.00927741][0.687327,-0.726348,0][0.382471,0.396432,0][-1.60893,-2.00582,-0.00927741][0.687327,-0.726348,0][0.382471,0.396432,0][-1.36586,-1.61624,-0.00927747][0.932626,-0.360844,0][0.413107,0.395899,0][-1.26175,-1.61624,0.51415][0.861634,-0.360844,-0.356901][0.413823,0.437061,0][-1.48631,-2.00582,0.607166][0.635008,-0.726348,-0.263029][0.394778,0.608781,0][-1.82671,-2.22919,0.748164][0.815731,-0.469484,-0.337887][0.364741,0.593256,0][-1.97737,-2.22919,-0.00927739][0.882941,-0.469485,0][0.400443,0.549611,0][-1.97737,-2.22919,-0.00927739][0.882941,-0.469485,0][0.400443,0.549611,0][-1.60893,-2.00582,-0.00927741][0.687327,-0.726348,0][0.423834,0.573261,0][-1.48631,-2.00582,0.607166][0.635008,-0.726348,-0.263029][0.394778,0.608781,0][-1.82671,-2.22919,0.748164][0.815731,-0.469484,-0.337887][0.365941,0.456302,0][-1.82811,-2.44029,0.748745][1.30487,-0.0110718,-0.871886][0.349341,0.456637,0][-1.97889,-2.44029,-0.00927741][1.5392,-0.0110726,-0.306166][0.348305,0.397026,0][-1.97889,-2.44029,-0.00927741][1.5392,-0.0110726,-0.306166][0.348305,0.397026,0][-1.97737,-2.22919,-0.00927739][0.882941,-0.469485,0][0.364905,0.396737,0][-1.82671,-2.22919,0.748164][0.815731,-0.469484,-0.337887][0.365941,0.456302,0][-1.82811,-2.44029,0.748745][1.30487,-0.0110718,-0.871886][0.197547,0.337221,0][-2.15106,-2.44029,0.882514][-1.30465,0.0130241,0.871741][0.207975,0.362621,0][-2.32845,-2.44029,-0.00927754][-1.53894,0.0130236,0.306114][0.138455,0.376573,0][-2.32845,-2.44029,-0.00927754][-1.53894,0.0130236,0.306114][0.138455,0.376573,0][-1.97889,-2.44029,-0.00927741][1.5392,-0.0110726,-0.306166][0.138455,0.34908,0][-1.82811,-2.44029,0.748745][1.30487,-0.0110718,-0.871886][0.197547,0.337221,0][-2.32845,-2.44029,-0.00927754][-1.53894,0.0130236,0.306114][0.199594,0.576582,0][-2.32666,-2.22919,-0.0092774][-0.867553,0.497344,1.39946e-007][0.182994,0.576263,0][-2.14941,-2.22919,-0.900385][-0.801514,0.497345,-0.331998][0.184342,0.506189,0][-2.14941,-2.22919,-0.900385][-0.801514,0.497345,-0.331998][0.184342,0.506189,0][-2.15106,-2.44029,-0.901069][-1.53894,0.0130243,-0.306115][0.200943,0.506455,0][-2.32845,-2.44029,-0.00927754][-1.53894,0.0130236,0.306114][0.199594,0.576582,0][-2.32666,-2.22919,-0.0092774][-0.867553,0.497344,1.39946e-007][0.134763,0.761701,0][-1.89319,-2.00582,-0.00927742][-0.63222,0.774789,1.39237e-007][0.149425,0.728522,0][-1.74894,-2.00582,-0.734505][-0.584094,0.77479,-0.24194][0.2009,0.729453,0][-1.74894,-2.00582,-0.734505][-0.584094,0.77479,-0.24194][0.2009,0.729453,0][-2.14941,-2.22919,-0.900385][-0.801514,0.497345,-0.331998][0.198013,0.762844,0][-2.32666,-2.22919,-0.0092774][-0.867553,0.497344,1.39946e-007][0.134763,0.761701,0][-1.89319,-2.00582,-0.00927742][-0.63222,0.774789,1.39237e-007][0.956835,0.100066,0][-1.60724,-1.61624,-0.00927743][-0.911723,0.410806,1.30586e-007][0.926201,0.0994765,0][-1.48475,-1.61624,-0.625074][-0.842322,0.410806,-0.348901][0.927132,0.0510521,0][-1.48475,-1.61624,-0.625074][-0.842322,0.410806,-0.348901][0.927132,0.0510521,0][-1.74894,-2.00582,-0.734505][-0.584094,0.77479,-0.24194][0.957933,0.0430363,0][-1.89319,-2.00582,-0.00927742][-0.63222,0.774789,1.39237e-007][0.956835,0.100066,0][-1.60724,-1.61624,-0.00927743][-0.911723,0.410806,1.30586e-007][0.926201,0.0994765,0][-1.52603,-1.19582,-0.00927753][-0.988346,0.152222,0][0.893139,0.0988403,0][-1.40972,-1.19582,-0.593998][-0.913113,0.152222,-0.378224][0.894024,0.0528597,0][-1.40972,-1.19582,-0.593998][-0.913113,0.152222,-0.378224][0.894024,0.0528597,0][-1.48475,-1.61624,-0.625074][-0.842322,0.410806,-0.348901][0.927132,0.0510521,0][-1.60724,-1.61624,-0.00927743][-0.911723,0.410806,1.30586e-007][0.926201,0.0994765,0][-1.52603,-1.19582,-0.00927753][-0.988346,0.152222,0][0.893139,0.0988403,0][-1.46601,-0.668634,-0.0092775][-0.978563,0.205947,0][0.851683,0.0980427,0][-1.35427,-0.668634,-0.571029][-0.904074,0.205947,-0.37448][0.852533,0.0538683,0][-1.35427,-0.668634,-0.571029][-0.904074,0.205947,-0.37448][0.852533,0.0538683,0][-1.40972,-1.19582,-0.593998][-0.913113,0.152222,-0.378224][0.894024,0.0528597,0][-1.52603,-1.19582,-0.00927753][-0.988346,0.152222,0][0.893139,0.0988403,0][-1.46601,-0.668634,-0.0092775][-0.978563,0.205947,0][0.851683,0.0980427,0][-1.35391,-0.314303,-0.00927749][-0.952219,0.305417,0][0.82382,0.0975066,0][-1.25071,-0.314304,-0.528131][-0.879736,0.305416,-0.364398][0.824605,0.0567056,0][-1.25071,-0.314304,-0.528131][-0.879736,0.305416,-0.364398][0.824605,0.0567056,0][-1.35427,-0.668634,-0.571029][-0.904074,0.205947,-0.37448][0.852533,0.0538683,0][-1.46601,-0.668634,-0.0092775][-0.978563,0.205947,0][0.851683,0.0980427,0][-1.35391,-0.314303,-0.00927749][-0.952219,0.305417,0][0.82382,0.0975066,0][-1.23858,0.0400271,-0.00927753][-0.859492,0.511149,0][0.795956,0.0969705,0][-1.14416,0.0400271,-0.483997][-0.794067,0.511149,-0.328913][0.796675,0.05964,0][-1.14416,0.0400271,-0.483997][-0.794067,0.511149,-0.328913][0.796675,0.05964,0][-1.25071,-0.314304,-0.528131][-0.879736,0.305416,-0.364398][0.824605,0.0567056,0][-1.35391,-0.314303,-0.00927749][-0.952219,0.305417,0][0.82382,0.0975066,0][-1.23858,0.0400271,-0.00927753][-0.859492,0.511149,0][0.223472,0.438691,0][-0.935812,0.341323,-0.00927756][-0.587013,0.809578,-1.76127e-007][0.235347,0.407265,0][-0.864431,0.341323,-0.368131][-0.542329,0.809578,-0.22464][0.263415,0.413617,0][-0.864431,0.341323,-0.368131][-0.542329,0.809578,-0.22464][0.263415,0.413617,0][-1.14416,0.0400271,-0.483997][-0.794067,0.511149,-0.328913][0.260602,0.447094,0][-1.23858,0.0400271,-0.00927753][-0.859492,0.511149,0][0.223472,0.438691,0][-0.935812,0.341323,-0.00927756][-0.587013,0.809578,-1.76127e-007][0.0518096,0.926107,0][-0.254341,0.659854,-0.00927756][-0.423443,0.905923,-4.85155e-007][0.0952899,0.89459,0][-0.234834,0.659854,-0.107343][-0.391211,0.905923,-0.162045][0.101335,0.899514,0][-0.234834,0.659854,-0.107343][-0.391211,0.905923,-0.162045][0.101335,0.899514,0][-0.864431,0.341323,-0.368131][-0.542329,0.809578,-0.22464][0.0739321,0.944126,0][-0.935812,0.341323,-0.00927756][-0.587013,0.809578,-1.76127e-007][0.0518096,0.926107,0][-0.734479,0.341323,-0.314303][0.541057,-0.810574,0.224113][0.227754,0.234206,0][0.00191735,0.618851,-0.00927755][-2.45855e-007,-1,0][0.166436,0.228009,0][-0.795152,0.341323,-0.00927755][0.585636,-0.810574,0][0.228495,0.211167,0][-0.795152,0.341323,-0.00927755][0.585636,-0.810574,0][0.567049,0.393222,0][-1.05251,0.0400269,-0.00927756][0.88875,-0.458393,0][0.543355,0.393634,0][-0.972246,0.0400271,-0.412789][0.821097,-0.458393,0.34011][0.542804,0.361902,0][-0.972246,0.0400271,-0.412789][0.821097,-0.458393,0.34011][0.542804,0.361902,0][-0.734479,0.341323,-0.314303][0.541057,-0.810574,0.224113][0.566632,0.369235,0][-0.795152,0.341323,-0.00927755][0.585636,-0.810574,0][0.567049,0.393222,0][-1.05251,0.0400269,-0.00927756][0.88875,-0.458393,0][0.543355,0.393634,0][-1.15054,-0.314303,-0.00927748][0.964782,-0.26305,0][0.515491,0.394119,0][-1.06281,-0.314304,-0.450303][0.891342,-0.26305,0.369206][0.514888,0.359437,0][-1.06281,-0.314304,-0.450303][0.891342,-0.26305,0.369206][0.514888,0.359437,0][-0.972246,0.0400271,-0.412789][0.821097,-0.458393,0.34011][0.542804,0.361902,0][-1.05251,0.0400269,-0.00927756][0.88875,-0.458393,0][0.543355,0.393634,0][-1.15054,-0.314303,-0.00927748][0.964782,-0.26305,0][0.515491,0.394119,0][-1.24582,-0.668634,-0.00927749][0.98424,-0.176835,0][0.487627,0.394603,0][-1.15084,-0.668634,-0.486766][0.90932,-0.176835,0.376653][0.486974,0.357054,0][-1.15084,-0.668634,-0.486766][0.90932,-0.176835,0.376653][0.486974,0.357054,0][-1.06281,-0.314304,-0.450303][0.891342,-0.26305,0.369206][0.514888,0.359437,0][-1.15054,-0.314303,-0.00927748][0.964782,-0.26305,0][0.515491,0.394119,0][-1.24582,-0.668634,-0.00927749][0.98424,-0.176835,0][0.487627,0.394603,0][-1.29684,-1.19582,-0.00927753][0.991544,-0.129768,0][0.446169,0.395324,0][-1.19798,-1.19582,-0.50629][0.916067,-0.129768,0.379448][0.445489,0.356239,0][-1.19798,-1.19582,-0.50629][0.916067,-0.129768,0.379448][0.445489,0.356239,0][-1.15084,-0.668634,-0.486766][0.90932,-0.176835,0.376653][0.486974,0.357054,0][-1.24582,-0.668634,-0.00927749][0.98424,-0.176835,0][0.487627,0.394603,0][-1.29684,-1.19582,-0.00927753][0.991544,-0.129768,0][0.446169,0.395324,0][-1.36586,-1.61624,-0.00927747][0.932626,-0.360844,0][0.413107,0.395899,0][-1.26175,-1.61625,-0.532704][0.861634,-0.360844,0.356901][0.412391,0.354737,0][-1.26175,-1.61625,-0.532704][0.861634,-0.360844,0.356901][0.412391,0.354737,0][-1.19798,-1.19582,-0.50629][0.916067,-0.129768,0.379448][0.445489,0.356239,0][-1.29684,-1.19582,-0.00927753][0.991544,-0.129768,0][0.446169,0.395324,0][-1.36586,-1.61624,-0.00927747][0.932626,-0.360844,0][0.413107,0.395899,0][-1.60893,-2.00582,-0.00927741][0.687327,-0.726348,0][0.382471,0.396432,0][-1.48631,-2.00582,-0.625721][0.635008,-0.726348,0.263029][0.381628,0.347955,0][-1.48631,-2.00582,-0.625721][0.635008,-0.726348,0.263029][0.381628,0.347955,0][-1.26175,-1.61625,-0.532704][0.861634,-0.360844,0.356901][0.412391,0.354737,0][-1.36586,-1.61624,-0.00927747][0.932626,-0.360844,0][0.413107,0.395899,0][-1.60893,-2.00582,-0.00927741][0.687327,-0.726348,0][0.423834,0.573261,0][-1.97737,-2.22919,-0.00927739][0.882941,-0.469485,0][0.400443,0.549611,0][-1.82671,-2.22919,-0.766719][0.815731,-0.469484,0.337887][0.447721,0.525454,0][-1.82671,-2.22919,-0.766719][0.815731,-0.469484,0.337887][0.447721,0.525454,0][-1.48631,-2.00582,-0.625721][0.635008,-0.726348,0.263029][0.462311,0.5536,0][-1.60893,-2.00582,-0.00927741][0.687327,-0.726348,0][0.423834,0.573261,0][-1.97737,-2.22919,-0.00927739][0.882941,-0.469485,0][0.364905,0.396737,0][-1.97889,-2.44029,-0.00927741][1.5392,-0.0110726,-0.306166][0.348305,0.397026,0][-1.82811,-2.44029,-0.7673][1.5392,-0.0110725,0.306166][0.347268,0.337416,0][-1.82811,-2.44029,-0.7673][1.5392,-0.0110725,0.306166][0.347268,0.337416,0][-1.82671,-2.22919,-0.766719][0.815731,-0.469484,0.337887][0.363869,0.337173,0][-1.97737,-2.22919,-0.00927739][0.882941,-0.469485,0][0.364905,0.396737,0][-1.97889,-2.44029,-0.00927741][1.5392,-0.0110726,-0.306166][0.138455,0.34908,0][-2.32845,-2.44029,-0.00927754][-1.53894,0.0130236,0.306114][0.138455,0.376573,0][-2.15106,-2.44029,-0.901069][-1.53894,0.0130243,-0.306115][0.0689359,0.362621,0][-2.15106,-2.44029,-0.901069][-1.53894,0.0130243,-0.306115][0.0689359,0.362621,0][-1.82811,-2.44029,-0.7673][1.5392,-0.0110725,0.306166][0.0793638,0.337221,0][-1.97889,-2.44029,-0.00927741][1.5392,-0.0110726,-0.306166][0.138455,0.34908,0][-2.15106,-2.44029,-0.901069][-1.53894,0.0130243,-0.306115][0.200943,0.506455,0][-2.14941,-2.22919,-0.900385][-0.801514,0.497345,-0.331998][0.184342,0.506189,0][-1.64464,-2.22919,-1.65583][-1.84747,1.2493,-1.23444][0.185485,0.446783,0][-1.64464,-2.22919,-1.65583][-1.84747,1.2493,-1.23444][0.185485,0.446783,0][-1.6459,-2.44029,-1.65709][-1.30465,0.0130253,-0.87174][0.202087,0.447003,0][-2.15106,-2.44029,-0.901069][-1.53894,0.0130243,-0.306115][0.200943,0.506455,0][-2.14941,-2.22919,-0.900385][-0.801514,0.497345,-0.331998][0.235823,0.632224,0][-1.74894,-2.00582,-0.734505][-0.584094,0.77479,-0.24194][0.237279,0.595659,0][-1.33813,-2.00582,-1.34932][-1.65677,2.395,-1.10702][0.293133,0.592281,0][-1.33813,-2.00582,-1.34932][-1.65677,2.395,-1.10702][0.293133,0.592281,0][-1.64464,-2.22919,-1.65583][-1.84747,1.2493,-1.23444][0.304452,0.628074,0][-2.14941,-2.22919,-0.900385][-0.801514,0.497345,-0.331998][0.235823,0.632224,0][-1.74894,-2.00582,-0.734505][-0.584094,0.77479,-0.24194][0.237279,0.595659,0][-1.48475,-1.61624,-0.625074][-0.842322,0.410806,-0.348901][0.241234,0.558304,0][-1.13593,-1.61625,-1.14712][-2.39105,1.27084,-1.59765][0.28866,0.555436,0][-1.13593,-1.61625,-1.14712][-2.39105,1.27084,-1.59765][0.28866,0.555436,0][-1.33813,-2.00582,-1.34932][-1.65677,2.395,-1.10702][0.293133,0.592281,0][-1.74894,-2.00582,-0.734505][-0.584094,0.77479,-0.24194][0.237279,0.595659,0][-1.48475,-1.61624,-0.625074][-0.842322,0.410806,-0.348901][0.927132,0.0510521,0][-1.40972,-1.19582,-0.593998][-0.913113,0.152222,-0.378224][0.894024,0.0528597,0][-1.07851,-1.19582,-1.0897][-2.59324,0.471129,-1.73275][0.894774,0.0138792,0][-1.07851,-1.19582,-1.0897][-2.59324,0.471129,-1.73275][0.894774,0.0138792,0][-1.13593,-1.61625,-1.14712][-2.39105,1.27084,-1.59765][0.927922,0.01,0][-1.48475,-1.61624,-0.625074][-0.842322,0.410806,-0.348901][0.927132,0.0510521,0][-1.40972,-1.19582,-0.593998][-0.913113,0.152222,-0.378224][0.894024,0.0528597,0][-1.35427,-0.668634,-0.571029][-0.904074,0.205947,-0.37448][0.852533,0.0538683,0][-1.03606,-0.668634,-1.04726][-3.31913,1.07287,-2.88238][0.853254,0.0164192,0][-1.03606,-0.668634,-1.04726][-3.31913,1.07287,-2.88238][0.853254,0.0164192,0][-1.07851,-1.19582,-1.0897][-2.59324,0.471129,-1.73275][0.894774,0.0138792,0][-1.40972,-1.19582,-0.593998][-0.913113,0.152222,-0.378224][0.894024,0.0528597,0][-1.35427,-0.668634,-0.571029][-0.904074,0.205947,-0.37448][0.852533,0.0538683,0][-1.25071,-0.314304,-0.528131][-0.879736,0.305416,-0.364398][0.824605,0.0567056,0][-0.956799,-0.314304,-0.967994][-0.67332,0.305416,-0.673321][0.82527,0.0221161,0][-0.956799,-0.314304,-0.967994][-0.67332,0.305416,-0.673321][0.82527,0.0221161,0][-1.03606,-0.668634,-1.04726][-3.31913,1.07287,-2.88238][0.853254,0.0164192,0][-1.35427,-0.668634,-0.571029][-0.904074,0.205947,-0.37448][0.852533,0.0538683,0][-1.25071,-0.314304,-0.528131][-0.879736,0.305416,-0.364398][0.824605,0.0567056,0][-1.14416,0.0400271,-0.483997][-0.794067,0.511149,-0.328913][0.796675,0.05964,0][-0.87525,0.0400271,-0.886445][-0.607753,0.511149,-0.607753][0.797284,0.0279928,0][-0.87525,0.0400271,-0.886445][-0.607753,0.511149,-0.607753][0.797284,0.0279928,0][-0.956799,-0.314304,-0.967994][-0.67332,0.305416,-0.673321][0.82527,0.0221161,0][-1.25071,-0.314304,-0.528131][-0.879736,0.305416,-0.364398][0.824605,0.0567056,0][-1.14416,0.0400271,-0.483997][-0.794067,0.511149,-0.328913][0.260602,0.447094,0][-0.864431,0.341323,-0.368131][-0.542329,0.809578,-0.22464][0.263415,0.413617,0][-0.661157,0.341323,-0.672352][-0.415081,0.809578,-0.415081][0.291052,0.411945,0][-0.661157,0.341323,-0.672352][-0.415081,0.809578,-0.415081][0.291052,0.411945,0][-0.87525,0.0400271,-0.886445][-0.607753,0.511149,-0.607753][0.297163,0.444883,0][-1.14416,0.0400271,-0.483997][-0.794067,0.511149,-0.328913][0.260602,0.447094,0][-0.864431,0.341323,-0.368131][-0.542329,0.809578,-0.22464][0.0739321,0.944126,0][-0.234834,0.659854,-0.107343][-0.391211,0.905923,-0.162045][0.101335,0.899514,0][-0.179284,0.659854,-0.190479][-0.29942,0.905923,-0.29942][0.108829,0.901737,0][-0.179284,0.659854,-0.190479][-0.29942,0.905923,-0.29942][0.108829,0.901737,0][-0.661157,0.341323,-0.672352][-0.415081,0.809578,-0.415081][0.101352,0.952262,0][-0.864431,0.341323,-0.368131][-0.542329,0.809578,-0.22464][0.0739321,0.944126,0][-0.561696,0.341323,-0.572891][0.414107,-0.810574,0.414107][0.217714,0.255191,0][0.00191735,0.618851,-0.00927755][-2.45855e-007,-1,0][0.166436,0.228009,0][-0.734479,0.341323,-0.314303][0.541057,-0.810574,0.224113][0.227754,0.234206,0][-0.734479,0.341323,-0.314303][0.541057,-0.810574,0.224113][0.219919,0.868929,0][-0.972246,0.0400271,-0.412789][0.821097,-0.458393,0.34011][0.207957,0.84015,0][-0.743675,0.0400271,-0.75487][0.628441,-0.458393,0.628441][0.23917,0.831617,0][-0.743675,0.0400271,-0.75487][0.628441,-0.458393,0.628441][0.23917,0.831617,0][-0.561696,0.341323,-0.572891][0.414107,-0.810574,0.414107][0.243514,0.862478,0][-0.734479,0.341323,-0.314303][0.541057,-0.810574,0.224113][0.219919,0.868929,0][-0.972246,0.0400271,-0.412789][0.821097,-0.458393,0.34011][0.542804,0.361902,0][-1.06281,-0.314304,-0.450303][0.891342,-0.26305,0.369206][0.514888,0.359437,0][-0.812992,-0.314304,-0.824186][0.682204,-0.26305,0.682204][0.514377,0.330035,0][-0.812992,-0.314304,-0.824186][0.682204,-0.26305,0.682204][0.514377,0.330035,0][-0.743675,0.0400271,-0.75487][0.628441,-0.458393,0.628441][0.542336,0.335001,0][-0.972246,0.0400271,-0.412789][0.821097,-0.458393,0.34011][0.542804,0.361902,0][-1.06281,-0.314304,-0.450303][0.891342,-0.26305,0.369206][0.514888,0.359437,0][-1.15084,-0.668634,-0.486766][0.90932,-0.176835,0.376653][0.486974,0.357054,0][-0.880366,-0.668634,-0.891561][3.35453,-0.925524,2.91792][0.48642,0.325221,0][-0.880366,-0.668634,-0.891561][3.35453,-0.925524,2.91792][0.48642,0.325221,0][-0.812992,-0.314304,-0.824186][0.682204,-0.26305,0.682204][0.514377,0.330035,0][-1.06281,-0.314304,-0.450303][0.891342,-0.26305,0.369206][0.514888,0.359437,0][-1.15084,-0.668634,-0.486766][0.90932,-0.176835,0.376653][0.486974,0.357054,0][-1.19798,-1.19582,-0.50629][0.916067,-0.129768,0.379448][0.445489,0.356239,0][-0.916443,-1.19582,-0.927637][2.60008,-0.401394,1.73732][0.444913,0.323105,0][-0.916443,-1.19582,-0.927637][2.60008,-0.401394,1.73732][0.444913,0.323105,0][-0.880366,-0.668634,-0.891561][3.35453,-0.925524,2.91792][0.48642,0.325221,0][-1.15084,-0.668634,-0.486766][0.90932,-0.176835,0.376653][0.486974,0.357054,0][-1.19798,-1.19582,-0.50629][0.916067,-0.129768,0.379448][0.445489,0.356239,0][-1.26175,-1.61625,-0.532704][0.861634,-0.360844,0.356901][0.412391,0.354737,0][-0.96525,-1.61624,-0.976444][2.45092,-1.11858,1.63765][0.411784,0.319842,0][-0.96525,-1.61624,-0.976444][2.45092,-1.11858,1.63765][0.411784,0.319842,0][-0.916443,-1.19582,-0.927637][2.60008,-0.401394,1.73732][0.444913,0.323105,0][-1.19798,-1.19582,-0.50629][0.916067,-0.129768,0.379448][0.445489,0.356239,0][-1.26175,-1.61625,-0.532704][0.861634,-0.360844,0.356901][0.412391,0.354737,0][-1.48631,-2.00582,-0.625721][0.635008,-0.726348,0.263029][0.381628,0.347955,0][-1.13712,-2.00582,-1.14832][1.80066,-2.24461,1.20316][0.380913,0.306858,0][-1.13712,-2.00582,-1.14832][1.80066,-2.24461,1.20316][0.380913,0.306858,0][-0.96525,-1.61624,-0.976444][2.45092,-1.11858,1.63765][0.411784,0.319842,0][-1.26175,-1.61625,-0.532704][0.861634,-0.360844,0.356901][0.412391,0.354737,0][-1.48631,-2.00582,-0.625721][0.635008,-0.726348,0.263029][0.462311,0.5536,0][-1.82671,-2.22919,-0.766719][0.815731,-0.469484,0.337887][0.447721,0.525454,0][-1.39765,-2.22919,-1.40885][1.92065,-1.20466,1.28334][0.499379,0.52446,0][-1.39765,-2.22919,-1.40885][1.92065,-1.20466,1.28334][0.499379,0.52446,0][-1.13712,-2.00582,-1.14832][1.80066,-2.24461,1.20316][0.504353,0.552792,0][-1.48631,-2.00582,-0.625721][0.635008,-0.726348,0.263029][0.462311,0.5536,0][-1.82671,-2.22919,-0.766719][0.815731,-0.469484,0.337887][0.363869,0.337173,0][-1.82811,-2.44029,-0.7673][1.5392,-0.0110725,0.306166][0.347268,0.337416,0][-1.39873,-2.44029,-1.40992][1.30487,-0.0110735,0.871887][0.346389,0.28688,0][-1.39873,-2.44029,-1.40992][1.30487,-0.0110735,0.871887][0.346389,0.28688,0][-1.39765,-2.22919,-1.40885][1.92065,-1.20466,1.28334][0.362991,0.286676,0][-1.82671,-2.22919,-0.766719][0.815731,-0.469484,0.337887][0.363869,0.337173,0][-1.82811,-2.44029,-0.7673][1.5392,-0.0110725,0.306166][0.0793638,0.337221,0][-2.15106,-2.44029,-0.901069][-1.53894,0.0130243,-0.306115][0.0689359,0.362621,0][-1.6459,-2.44029,-1.65709][-1.30465,0.0130253,-0.87174][0.01,0.32289,0][-1.6459,-2.44029,-1.65709][-1.30465,0.0130253,-0.87174][0.01,0.32289,0][-1.39873,-2.44029,-1.40992][1.30487,-0.0110735,0.871887][0.0292683,0.303449,0][-1.82811,-2.44029,-0.7673][1.5392,-0.0110725,0.306166][0.0793638,0.337221,0][-1.03606,-0.668634,-1.04726][-3.31913,1.07287,-2.88238][0.935476,0.687738,0][-0.956799,-0.314304,-0.967994][-0.67332,0.305416,-0.673321][0.907026,0.681503,0][-0.516936,-0.314304,-1.2619][-0.364398,0.305416,-0.879736][0.910096,0.646908,0][-0.516936,-0.314304,-1.2619][-0.364398,0.305416,-0.879736][0.910096,0.646908,0][-0.559834,-0.668634,-1.36546][-1.18984,0.896002,-3.1802][0.938799,0.650282,0][-1.03606,-0.668634,-1.04726][-3.31913,1.07287,-2.88238][0.935476,0.687738,0][-0.956799,-0.314304,-0.967994][-0.67332,0.305416,-0.673321][0.907026,0.681503,0][-0.87525,0.0400271,-0.886445][-0.607753,0.511149,-0.607753][0.878553,0.67509,0][-0.472802,0.040027,-1.15535][-0.328913,0.511149,-0.794067][0.881361,0.643436,0][-0.472802,0.040027,-1.15535][-0.328913,0.511149,-0.794067][0.881361,0.643436,0][-0.516936,-0.314304,-1.2619][-0.364398,0.305416,-0.879736][0.910096,0.646908,0][-0.956799,-0.314304,-0.967994][-0.67332,0.305416,-0.673321][0.907026,0.681503,0][-0.87525,0.0400271,-0.886445][-0.607753,0.511149,-0.607753][0.297163,0.444883,0][-0.661157,0.341323,-0.672352][-0.415081,0.809578,-0.415081][0.291052,0.411945,0][-0.356936,0.341323,-0.875626][-0.22464,0.809578,-0.542329][0.314052,0.402505,0][-0.356936,0.341323,-0.875626][-0.22464,0.809578,-0.542329][0.314052,0.402505,0][-0.472802,0.040027,-1.15535][-0.328913,0.511149,-0.794067][0.327588,0.432395,0][-0.87525,0.0400271,-0.886445][-0.607753,0.511149,-0.607753][0.297163,0.444883,0][-0.661157,0.341323,-0.672352][-0.415081,0.809578,-0.415081][0.101352,0.952262,0][-0.179284,0.659854,-0.190479][-0.29942,0.905923,-0.29942][0.108829,0.901737,0][-0.0961483,0.659854,-0.246029][-0.162044,0.905923,-0.391211][0.116629,0.900921,0][-0.0961483,0.659854,-0.246029][-0.162044,0.905923,-0.391211][0.116629,0.900921,0][-0.356936,0.341323,-0.875626][-0.22464,0.809578,-0.542329][0.129895,0.949275,0][-0.661157,0.341323,-0.672352][-0.415081,0.809578,-0.415081][0.101352,0.952262,0][-0.303108,0.341323,-0.745674][0.224113,-0.810574,0.541057][0.199903,0.270926,0][0.00191735,0.618851,-0.00927755][-2.45855e-007,-1,0][0.166436,0.228009,0][-0.561696,0.341323,-0.572891][0.414107,-0.810574,0.414107][0.217714,0.255191,0][-0.561696,0.341323,-0.572891][0.414107,-0.810574,0.414107][0.243514,0.862478,0][-0.743675,0.0400271,-0.75487][0.628441,-0.458393,0.628441][0.23917,0.831617,0][-0.401594,0.040027,-0.983441][0.340109,-0.458393,0.821098][0.270105,0.831403,0][-0.401594,0.040027,-0.983441][0.340109,-0.458393,0.821098][0.270105,0.831403,0][-0.303108,0.341323,-0.745674][0.224113,-0.810574,0.541057][0.266898,0.862317,0][-0.561696,0.341323,-0.572891][0.414107,-0.810574,0.414107][0.243514,0.862478,0][-0.743675,0.0400271,-0.75487][0.628441,-0.458393,0.628441][0.23917,0.831617,0][-0.812992,-0.314304,-0.824186][0.682204,-0.26305,0.682204][0.233707,0.805929,0][-0.439108,-0.314304,-1.07401][0.369206,-0.26305,0.891343][0.267517,0.805696,0][-0.439108,-0.314304,-1.07401][0.369206,-0.26305,0.891343][0.267517,0.805696,0][-0.401594,0.040027,-0.983441][0.340109,-0.458393,0.821098][0.270105,0.831403,0][-0.743675,0.0400271,-0.75487][0.628441,-0.458393,0.628441][0.23917,0.831617,0][-0.812992,-0.314304,-0.824186][0.682204,-0.26305,0.682204][0.233707,0.805929,0][-0.880366,-0.668634,-0.891561][3.35453,-0.925524,2.91792][0.228239,0.780384,0][-0.475571,-0.668634,-1.16204][1.10336,-0.775318,2.66375][0.264844,0.780132,0][-0.475571,-0.668634,-1.16204][1.10336,-0.775318,2.66375][0.264844,0.780132,0][-0.439108,-0.314304,-1.07401][0.369206,-0.26305,0.891343][0.267517,0.805696,0][-0.812992,-0.314304,-0.824186][0.682204,-0.26305,0.682204][0.233707,0.805929,0][-0.559834,-0.668634,-1.36546][-1.18984,0.896002,-3.1802][0.938799,0.650282,0][-0.516936,-0.314304,-1.2619][-0.364398,0.305416,-0.879736][0.910096,0.646908,0][0.00191725,-0.314304,-1.36511][0.00081919,0.302428,-0.953172][0.911174,0.606099,0][-0.559834,-0.668634,-1.36546][-1.18984,0.896002,-3.1802][0.938799,0.650282,0][0.00191725,-0.314304,-1.36511][0.00081919,0.302428,-0.953172][0.911174,0.606099,0][0.00191719,-0.667183,-1.47388][0.067404,0.125633,-0.989784][0.939818,0.606099,0][-0.559834,-0.668634,-1.36546][-1.18984,0.896002,-3.1802][0.938799,0.650282,0][0.00191719,-0.667183,-1.47388][0.067404,0.125633,-0.989784][0.939818,0.606099,0][0.00191713,-1.03843,-1.4772][0.030098,0.0603636,-0.997723][0.968794,0.606099,0][-0.516936,-0.314304,-1.2619][-0.364398,0.305416,-0.879736][0.910096,0.646908,0][-0.472802,0.040027,-1.15535][-0.328913,0.511149,-0.794067][0.881361,0.643436,0][0.0019173,0.040027,-1.24978][0,0.511149,-0.859492][0.882347,0.606099,0][0.0019173,0.040027,-1.24978][0,0.511149,-0.859492][0.882347,0.606099,0][0.00191725,-0.314304,-1.36511][0.00081919,0.302428,-0.953172][0.911174,0.606099,0][-0.516936,-0.314304,-1.2619][-0.364398,0.305416,-0.879736][0.910096,0.646908,0][-0.472802,0.040027,-1.15535][-0.328913,0.511149,-0.794067][0.881361,0.643436,0][-0.356936,0.341323,-0.875626][-0.22464,0.809578,-0.542329][0.854952,0.634323,0][0.00191731,0.341323,-0.947006][0,0.809578,-0.587013][0.855698,0.606099,0][0.00191731,0.341323,-0.947006][0,0.809578,-0.587013][0.855698,0.606099,0][0.0019173,0.040027,-1.24978][0,0.511149,-0.859492][0.882347,0.606099,0][-0.472802,0.040027,-1.15535][-0.328913,0.511149,-0.794067][0.881361,0.643436,0][-0.356936,0.341323,-0.875626][-0.22464,0.809578,-0.542329][0.129895,0.949275,0][-0.0961483,0.659854,-0.246029][-0.162044,0.905923,-0.391211][0.116629,0.900921,0][0.00191736,0.659854,-0.265535][0,0.905923,-0.423443][0.123548,0.897189,0][0.00191736,0.659854,-0.265535][0,0.905923,-0.423443][0.123548,0.897189,0][0.00191731,0.341323,-0.947006][0,0.809578,-0.587013][0.155216,0.93562,0][-0.356936,0.341323,-0.875626][-0.22464,0.809578,-0.542329][0.129895,0.949275,0][0.00191731,0.341323,-0.806347][0,-0.810574,0.585636][0.177032,0.279017,0][0.00191735,0.618851,-0.00927755][-2.45855e-007,-1,0][0.166436,0.228009,0][-0.303108,0.341323,-0.745674][0.224113,-0.810574,0.541057][0.199903,0.270926,0][-0.303108,0.341323,-0.745674][0.224113,-0.810574,0.541057][0.266898,0.862317,0][-0.401594,0.040027,-0.983441][0.340109,-0.458393,0.821098][0.270105,0.831403,0][0.00191729,0.040027,-1.0637][0,-0.458393,0.88875][0.296051,0.839543,0][0.00191729,0.040027,-1.0637][0,-0.458393,0.88875][0.296051,0.839543,0][0.00191731,0.341323,-0.806347][0,-0.810574,0.585636][0.286511,0.86847,0][-0.303108,0.341323,-0.745674][0.224113,-0.810574,0.541057][0.266898,0.862317,0][-0.401594,0.040027,-0.983441][0.340109,-0.458393,0.821098][0.406672,0.941261,0][-0.439108,-0.314304,-1.07401][0.369206,-0.26305,0.891343][0.378045,0.945338,0][0.00191724,-0.314304,-1.16173][0,-0.26305,0.964782][0.374887,0.910112,0][0.00191724,-0.314304,-1.16173][0,-0.26305,0.964782][0.374887,0.910112,0][0.00191729,0.040027,-1.0637][0,-0.458393,0.88875][0.403783,0.909032,0][-0.401594,0.040027,-0.983441][0.340109,-0.458393,0.821098][0.406672,0.941261,0][-0.439108,-0.314304,-1.07401][0.369206,-0.26305,0.891343][0.378045,0.945338,0][-0.475571,-0.668634,-1.16204][1.10336,-0.775318,2.66375][0.34947,0.949367,0][0.00191717,-0.668635,-1.25701][-4.25512e-007,-0.775318,2.88322][0.346051,0.911229,0][0.00191717,-0.668635,-1.25701][-4.25512e-007,-0.775318,2.88322][0.346051,0.911229,0][0.00191724,-0.314304,-1.16173][0,-0.26305,0.964782][0.374887,0.910112,0][-0.439108,-0.314304,-1.07401][0.369206,-0.26305,0.891343][0.378045,0.945338,0][0.520771,-0.314304,-1.2619][0.355873,0.288829,-0.888781][0.910096,0.56529,0][0.563668,-0.668634,-1.36546][0.814142,1.02658,-3.1751][0.938799,0.561917,0][0.00191713,-1.03843,-1.4772][0.030098,0.0603636,-0.997723][0.968794,0.606099,0][0.520771,-0.314304,-1.2619][0.355873,0.288829,-0.888781][0.910096,0.56529,0][0.00191713,-1.03843,-1.4772][0.030098,0.0603636,-0.997723][0.968794,0.606099,0][0.00191719,-0.667183,-1.47388][0.067404,0.125633,-0.989784][0.939818,0.606099,0][0.520771,-0.314304,-1.2619][0.355873,0.288829,-0.888781][0.910096,0.56529,0][0.00191719,-0.667183,-1.47388][0.067404,0.125633,-0.989784][0.939818,0.606099,0][0.00191725,-0.314304,-1.36511][0.00081919,0.302428,-0.953172][0.911174,0.606099,0][0.00191725,-0.314304,-1.36511][0.00081919,0.302428,-0.953172][0.911174,0.606099,0][0.0019173,0.040027,-1.24978][0,0.511149,-0.859492][0.882347,0.606099,0][0.476637,0.040027,-1.15535][0.328913,0.511149,-0.794067][0.881361,0.568762,0][0.476637,0.040027,-1.15535][0.328913,0.511149,-0.794067][0.881361,0.568762,0][0.520771,-0.314304,-1.2619][0.355873,0.288829,-0.888781][0.910096,0.56529,0][0.00191725,-0.314304,-1.36511][0.00081919,0.302428,-0.953172][0.911174,0.606099,0][0.0019173,0.040027,-1.24978][0,0.511149,-0.859492][0.882347,0.606099,0][0.00191731,0.341323,-0.947006][0,0.809578,-0.587013][0.855698,0.606099,0][0.360771,0.341323,-0.875626][0.22464,0.809578,-0.542329][0.854952,0.577875,0][0.360771,0.341323,-0.875626][0.22464,0.809578,-0.542329][0.854952,0.577875,0][0.476637,0.040027,-1.15535][0.328913,0.511149,-0.794067][0.881361,0.568762,0][0.0019173,0.040027,-1.24978][0,0.511149,-0.859492][0.882347,0.606099,0][0.00191731,0.341323,-0.947006][0,0.809578,-0.587013][0.155216,0.93562,0][0.00191736,0.659854,-0.265535][0,0.905923,-0.423443][0.123548,0.897189,0][0.0999831,0.659854,-0.246029][0.162045,0.905923,-0.391211][0.128534,0.891111,0][0.0999831,0.659854,-0.246029][0.162045,0.905923,-0.391211][0.128534,0.891111,0][0.360771,0.341323,-0.875626][0.22464,0.809578,-0.542329][0.173459,0.913377,0][0.00191731,0.341323,-0.947006][0,0.809578,-0.587013][0.155216,0.93562,0][0.306943,0.341323,-0.745674][-0.224113,-0.810574,0.541057][0.152584,0.27823,0][0.00191735,0.618851,-0.00927755][-2.45855e-007,-1,0][0.166436,0.228009,0][0.00191731,0.341323,-0.806347][0,-0.810574,0.585636][0.177032,0.279017,0][0.00191731,0.341323,-0.806347][0,-0.810574,0.585636][0.432092,0.910459,0][0.00191729,0.040027,-1.0637][0,-0.458393,0.88875][0.403783,0.909032,0][0.405429,0.040027,-0.983441][-0.34011,-0.458393,0.821098][0.404343,0.878966,0][0.405429,0.040027,-0.983441][-0.34011,-0.458393,0.821098][0.404343,0.878966,0][0.306943,0.341323,-0.745674][-0.224113,-0.810574,0.541057][0.432516,0.887731,0][0.00191731,0.341323,-0.806347][0,-0.810574,0.585636][0.432092,0.910459,0][0.00191729,0.040027,-1.0637][0,-0.458393,0.88875][0.403783,0.909032,0][0.00191724,-0.314304,-1.16173][0,-0.26305,0.964782][0.374887,0.910112,0][0.442943,-0.314304,-1.07401][-0.369206,-0.263049,0.891343][0.3755,0.877251,0][0.442943,-0.314304,-1.07401][-0.369206,-0.263049,0.891343][0.3755,0.877251,0][0.405429,0.040027,-0.983441][-0.34011,-0.458393,0.821098][0.404343,0.878966,0][0.00191729,0.040027,-1.0637][0,-0.458393,0.88875][0.403783,0.909032,0][0.00191724,-0.314304,-1.16173][0,-0.26305,0.964782][0.374887,0.910112,0][0.00191717,-0.668635,-1.25701][-4.25512e-007,-0.775318,2.88322][0.346051,0.911229,0][0.479406,-0.668634,-1.16204][-1.10336,-0.775317,2.66375][0.346714,0.875652,0][0.479406,-0.668634,-1.16204][-1.10336,-0.775317,2.66375][0.346714,0.875652,0][0.442943,-0.314304,-1.07401][-0.369206,-0.263049,0.891343][0.3755,0.877251,0][0.00191724,-0.314304,-1.16173][0,-0.26305,0.964782][0.374887,0.910112,0][0.563668,-0.668634,-1.36546][0.814142,1.02658,-3.1751][0.938799,0.561917,0][0.520771,-0.314304,-1.2619][0.355873,0.288829,-0.888781][0.910096,0.56529,0][0.960634,-0.314304,-0.967994][0.673321,0.305416,-0.673321][0.907026,0.530695,0][0.960634,-0.314304,-0.967994][0.673321,0.305416,-0.673321][0.907026,0.530695,0][1.0399,-0.668635,-1.04726][3.31913,1.07287,-2.88237][0.935476,0.52446,0][0.563668,-0.668634,-1.36546][0.814142,1.02658,-3.1751][0.938799,0.561917,0][0.520771,-0.314304,-1.2619][0.355873,0.288829,-0.888781][0.910096,0.56529,0][0.476637,0.040027,-1.15535][0.328913,0.511149,-0.794067][0.881361,0.568762,0][0.879085,0.0400269,-0.886445][0.607753,0.511149,-0.607753][0.878553,0.537109,0][0.879085,0.0400269,-0.886445][0.607753,0.511149,-0.607753][0.878553,0.537109,0][0.960634,-0.314304,-0.967994][0.673321,0.305416,-0.673321][0.907026,0.530695,0][0.520771,-0.314304,-1.2619][0.355873,0.288829,-0.888781][0.910096,0.56529,0][0.476637,0.040027,-1.15535][0.328913,0.511149,-0.794067][0.527109,0.795601,0][0.360771,0.341323,-0.875626][0.22464,0.809578,-0.542329][0.541071,0.765044,0][0.664992,0.341323,-0.672352][0.415081,0.809578,-0.415081][0.568648,0.773269,0][0.664992,0.341323,-0.672352][0.415081,0.809578,-0.415081][0.568648,0.773269,0][0.879085,0.0400269,-0.886445][0.607753,0.511149,-0.607753][0.56359,0.806481,0][0.476637,0.040027,-1.15535][0.328913,0.511149,-0.794067][0.527109,0.795601,0][0.360771,0.341323,-0.875626][0.22464,0.809578,-0.542329][0.173459,0.913377,0][0.0999831,0.659854,-0.246029][0.162045,0.905923,-0.391211][0.128534,0.891111,0][0.183119,0.659854,-0.190479][0.29942,0.905923,-0.29942][0.130826,0.883611,0][0.183119,0.659854,-0.190479][0.29942,0.905923,-0.29942][0.130826,0.883611,0][0.664992,0.341323,-0.672352][0.415081,0.809578,-0.415081][0.181848,0.885932,0][0.360771,0.341323,-0.875626][0.22464,0.809578,-0.542329][0.173459,0.913377,0][0.565531,0.341322,-0.572891][-0.414107,-0.810574,0.414107][0.130281,0.268687,0][0.00191735,0.618851,-0.00927755][-2.45855e-007,-1,0][0.166436,0.228009,0][0.306943,0.341323,-0.745674][-0.224113,-0.810574,0.541057][0.152584,0.27823,0][0.306943,0.341323,-0.745674][-0.224113,-0.810574,0.541057][0.709111,0.944375,0][0.405429,0.040027,-0.983441][-0.34011,-0.458393,0.821098][0.696662,0.915804,0][0.74751,0.040027,-0.75487][-0.628441,-0.458393,0.628441][0.727725,0.906741,0][0.74751,0.040027,-0.75487][-0.628441,-0.458393,0.628441][0.727725,0.906741,0][0.565531,0.341322,-0.572891][-0.414107,-0.810574,0.414107][0.732593,0.937524,0][0.306943,0.341323,-0.745674][-0.224113,-0.810574,0.541057][0.709111,0.944375,0][0.405429,0.040027,-0.983441][-0.34011,-0.458393,0.821098][0.404343,0.878966,0][0.442943,-0.314304,-1.07401][-0.369206,-0.263049,0.891343][0.3755,0.877251,0][0.816826,-0.314304,-0.824186][-0.682204,-0.26305,0.682204][0.37979,0.851758,0][0.816826,-0.314304,-0.824186][-0.682204,-0.26305,0.682204][0.37979,0.851758,0][0.74751,0.040027,-0.75487][-0.628441,-0.458393,0.628441][0.408268,0.855642,0][0.405429,0.040027,-0.983441][-0.34011,-0.458393,0.821098][0.404343,0.878966,0][0.442943,-0.314304,-1.07401][-0.369206,-0.263049,0.891343][0.3755,0.877251,0][0.479406,-0.668634,-1.16204][-1.10336,-0.775317,2.66375][0.346714,0.875652,0][0.884201,-0.668634,-0.891561][-3.35453,-0.925522,2.91792][0.351359,0.848051,0][0.884201,-0.668634,-0.891561][-3.35453,-0.925522,2.91792][0.351359,0.848051,0][0.816826,-0.314304,-0.824186][-0.682204,-0.26305,0.682204][0.37979,0.851758,0][0.442943,-0.314304,-1.07401][-0.369206,-0.263049,0.891343][0.3755,0.877251,0][1.64973,-2.44029,-1.65709][1.30465,0.0130237,-0.87174][0.823139,0.726249,0][1.64847,-2.22919,-1.65583][1.84747,1.2493,-1.23444][0.839741,0.72606,0][2.15324,-2.22919,-0.900385][0.801515,0.497345,-0.331998][0.840774,0.785468,0][2.15324,-2.22919,-0.900385][0.801515,0.497345,-0.331998][0.840774,0.785468,0][2.15489,-2.44029,-0.901069][1.30465,0.0130253,-0.871741][0.824173,0.785703,0][1.64973,-2.44029,-1.65709][1.30465,0.0130237,-0.87174][0.823139,0.726249,0][1.64847,-2.22919,-1.65583][1.84747,1.2493,-1.23444][0.526418,0.989526,0][1.34196,-2.00582,-1.34932][1.65677,2.395,-1.10702][0.530329,0.953141,0][1.75277,-2.00582,-0.734505][0.584095,0.774789,-0.24194][0.586284,0.953527,0][1.75277,-2.00582,-0.734505][0.584095,0.774789,-0.24194][0.586284,0.953527,0][2.15324,-2.22919,-0.900385][0.801515,0.497345,-0.331998][0.595171,0.99,0][1.64847,-2.22919,-1.65583][1.84747,1.2493,-1.23444][0.526418,0.989526,0][1.34196,-2.00582,-1.34932][1.65677,2.395,-1.10702][0.530329,0.953141,0][1.13976,-1.61625,-1.14712][2.39105,1.27084,-1.59765][0.536787,0.916136,0][1.48858,-1.61625,-0.625074][0.842322,0.410806,-0.348901][0.584299,0.916464,0][1.48858,-1.61625,-0.625074][0.842322,0.410806,-0.348901][0.584299,0.916464,0][1.75277,-2.00582,-0.734505][0.584095,0.774789,-0.24194][0.586284,0.953527,0][1.34196,-2.00582,-1.34932][1.65677,2.395,-1.10702][0.530329,0.953141,0][1.13976,-1.61625,-1.14712][2.39105,1.27084,-1.59765][0.768821,0.267253,0][1.08234,-1.19582,-1.0897][2.59324,0.471129,-1.73275][0.801961,0.271194,0][1.41356,-1.19582,-0.593998][0.913113,0.152222,-0.378224][0.802639,0.310176,0][1.41356,-1.19582,-0.593998][0.913113,0.152222,-0.378224][0.802639,0.310176,0][1.48858,-1.61625,-0.625074][0.842322,0.410806,-0.348901][0.769535,0.308307,0][1.13976,-1.61625,-1.14712][2.39105,1.27084,-1.59765][0.768821,0.267253,0][1.08234,-1.19582,-1.0897][2.59324,0.471129,-1.73275][0.801961,0.271194,0][1.0399,-0.668635,-1.04726][3.31913,1.07287,-2.88237][0.843477,0.273811,0][1.3581,-0.668635,-0.571028][0.904075,0.205946,-0.37448][0.844128,0.311261,0][1.3581,-0.668635,-0.571028][0.904075,0.205946,-0.37448][0.844128,0.311261,0][1.41356,-1.19582,-0.593998][0.913113,0.152222,-0.378224][0.802639,0.310176,0][1.08234,-1.19582,-1.0897][2.59324,0.471129,-1.73275][0.801961,0.271194,0][1.0399,-0.668635,-1.04726][3.31913,1.07287,-2.88237][0.843477,0.273811,0][0.960634,-0.314304,-0.967994][0.673321,0.305416,-0.673321][0.87145,0.279559,0][1.25454,-0.314304,-0.528131][0.879736,0.305416,-0.364399][0.872051,0.31415,0][1.25454,-0.314304,-0.528131][0.879736,0.305416,-0.364399][0.872051,0.31415,0][1.3581,-0.668635,-0.571028][0.904075,0.205946,-0.37448][0.844128,0.311261,0][1.0399,-0.668635,-1.04726][3.31913,1.07287,-2.88237][0.843477,0.273811,0][0.960634,-0.314304,-0.967994][0.673321,0.305416,-0.673321][0.87145,0.279559,0][0.879085,0.0400269,-0.886445][0.607753,0.511149,-0.607753][0.899426,0.285488,0][1.14799,0.0400268,-0.483997][0.794067,0.511149,-0.328913][0.899976,0.317136,0][1.14799,0.0400268,-0.483997][0.794067,0.511149,-0.328913][0.899976,0.317136,0][1.25454,-0.314304,-0.528131][0.879736,0.305416,-0.364399][0.872051,0.31415,0][0.960634,-0.314304,-0.967994][0.673321,0.305416,-0.673321][0.87145,0.279559,0][0.879085,0.0400269,-0.886445][0.607753,0.511149,-0.607753][0.56359,0.806481,0][0.664992,0.341323,-0.672352][0.415081,0.809578,-0.415081][0.568648,0.773269,0][0.868266,0.341322,-0.368131][0.542329,0.809578,-0.22464][0.596335,0.77346,0][0.868266,0.341322,-0.368131][0.542329,0.809578,-0.22464][0.596335,0.77346,0][1.14799,0.0400268,-0.483997][0.794067,0.511149,-0.328913][0.600217,0.806734,0][0.879085,0.0400269,-0.886445][0.607753,0.511149,-0.607753][0.56359,0.806481,0][0.664992,0.341323,-0.672352][0.415081,0.809578,-0.415081][0.181848,0.885932,0][0.183119,0.659854,-0.190479][0.29942,0.905923,-0.29942][0.130826,0.883611,0][0.238669,0.659854,-0.107343][0.391211,0.905922,-0.162045][0.130077,0.875831,0][0.238669,0.659854,-0.107343][0.391211,0.905922,-0.162045][0.130077,0.875831,0][0.868266,0.341322,-0.368131][0.542329,0.809578,-0.22464][0.179105,0.857462,0][0.664992,0.341323,-0.672352][0.415081,0.809578,-0.415081][0.181848,0.885932,0][0.738314,0.341322,-0.314303][-0.541057,-0.810574,0.224113][0.113517,0.25184,0][0.00191735,0.618851,-0.00927755][-2.45855e-007,-1,0][0.166436,0.228009,0][0.565531,0.341322,-0.572891][-0.414107,-0.810574,0.414107][0.130281,0.268687,0][0.565531,0.341322,-0.572891][-0.414107,-0.810574,0.414107][0.732593,0.937524,0][0.74751,0.040027,-0.75487][-0.628441,-0.458393,0.628441][0.727725,0.906741,0][0.976081,0.0400269,-0.412789][-0.821097,-0.458393,0.34011][0.758651,0.906001,0][0.976081,0.0400269,-0.412789][-0.821097,-0.458393,0.34011][0.758651,0.906001,0][0.738314,0.341322,-0.314303][-0.541057,-0.810574,0.224113][0.755971,0.936965,0][0.565531,0.341322,-0.572891][-0.414107,-0.810574,0.414107][0.732593,0.937524,0][0.74751,0.040027,-0.75487][-0.628441,-0.458393,0.628441][0.369052,0.0848436,0][0.816826,-0.314304,-0.824186][-0.682204,-0.26305,0.682204][0.396806,0.0788362,0][1.06665,-0.314304,-0.450303][-0.891343,-0.26305,0.369206][0.397393,0.108237,0][1.06665,-0.314304,-0.450303][-0.891343,-0.26305,0.369206][0.397393,0.108237,0][0.976081,0.0400269,-0.412789][-0.821097,-0.458393,0.34011][0.369589,0.111743,0][0.74751,0.040027,-0.75487][-0.628441,-0.458393,0.628441][0.369052,0.0848436,0][0.816826,-0.314304,-0.824186][-0.682204,-0.26305,0.682204][0.396806,0.0788362,0][0.884201,-0.668634,-0.891561][-3.35453,-0.925522,2.91792][0.424563,0.0729815,0][1.15468,-0.668634,-0.486766][-0.90932,-0.176835,0.376653][0.425199,0.104813,0][1.15468,-0.668634,-0.486766][-0.90932,-0.176835,0.376653][0.425199,0.104813,0][1.06665,-0.314304,-0.450303][-0.891343,-0.26305,0.369206][0.397393,0.108237,0][0.816826,-0.314304,-0.824186][-0.682204,-0.26305,0.682204][0.396806,0.0788362,0][0.884201,-0.668634,-0.891561][-3.35453,-0.925522,2.91792][0.424563,0.0729815,0][0.920277,-1.19582,-0.927637][-2.60008,-0.401393,1.73732][0.465962,0.0693164,0][1.20181,-1.19582,-0.50629][-0.916068,-0.129768,0.379447][0.466624,0.102449,0][1.20181,-1.19582,-0.50629][-0.916068,-0.129768,0.379447][0.466624,0.102449,0][1.15468,-0.668634,-0.486766][-0.90932,-0.176835,0.376653][0.425199,0.104813,0][0.884201,-0.668634,-0.891561][-3.35453,-0.925522,2.91792][0.424563,0.0729815,0][0.920277,-1.19582,-0.927637][-2.60008,-0.401393,1.73732][0.465962,0.0693164,0][0.969084,-1.61625,-0.976444][-2.45092,-1.11858,1.63765][0.498946,0.064818,0][1.26558,-1.61625,-0.532704][-0.861634,-0.360844,0.3569][0.499643,0.0997118,0][1.26558,-1.61625,-0.532704][-0.861634,-0.360844,0.3569][0.499643,0.0997118,0][1.20181,-1.19582,-0.50629][-0.916068,-0.129768,0.379447][0.466624,0.102449,0][0.920277,-1.19582,-0.927637][-2.60008,-0.401393,1.73732][0.465962,0.0693164,0][0.969084,-1.61625,-0.976444][-2.45092,-1.11858,1.63765][0.498946,0.064818,0][1.14096,-2.00582,-1.14832][-1.80066,-2.24461,1.20316][0.52931,0.0506906,0][1.49014,-2.00582,-0.625721][-0.635008,-0.726347,0.263029][0.530131,0.0917853,0][1.49014,-2.00582,-0.625721][-0.635008,-0.726347,0.263029][0.530131,0.0917853,0][1.26558,-1.61625,-0.532704][-0.861634,-0.360844,0.3569][0.499643,0.0997118,0][0.969084,-1.61625,-0.976444][-2.45092,-1.11858,1.63765][0.498946,0.064818,0][1.14096,-2.00582,-1.14832][-1.80066,-2.24461,1.20316][0.693654,0.759481,0][1.40149,-2.22919,-1.40885][-1.92065,-1.20466,1.28334][0.690198,0.727448,0][1.83054,-2.22919,-0.766719][-0.815731,-0.469484,0.337887][0.74825,0.72606,0][1.83054,-2.22919,-0.766719][-0.815731,-0.469484,0.337887][0.74825,0.72606,0][1.49014,-2.00582,-0.625721][-0.635008,-0.726347,0.263029][0.7409,0.758351,0][1.14096,-2.00582,-1.14832][-1.80066,-2.24461,1.20316][0.693654,0.759481,0][1.40149,-2.22919,-1.40885][-1.92065,-1.20466,1.28334][0.546466,0.0298527,0][1.40256,-2.44029,-1.40992][-1.30487,-0.0110723,0.871886][0.563064,0.0294366,0][1.83195,-2.44029,-0.7673][-1.30487,-0.0110726,0.871886][0.564073,0.0799696,0][1.83195,-2.44029,-0.7673][-1.30487,-0.0110726,0.871886][0.564073,0.0799696,0][1.83054,-2.22919,-0.766719][-0.815731,-0.469484,0.337887][0.547475,0.0803469,0][1.40149,-2.22919,-1.40885][-1.92065,-1.20466,1.28334][0.546466,0.0298527,0][1.40256,-2.44029,-1.40992][-1.30487,-0.0110723,0.871886][0.0292683,0.0831239,0][1.64973,-2.44029,-1.65709][1.30465,0.0130237,-0.87174][0.01,0.0636834,0][2.15489,-2.44029,-0.901069][1.30465,0.0130253,-0.871741][0.0689358,0.0239519,0][2.15489,-2.44029,-0.901069][1.30465,0.0130253,-0.871741][0.0689358,0.0239519,0][1.83195,-2.44029,-0.7673][-1.30487,-0.0110726,0.871886][0.0793638,0.0493521,0][1.40256,-2.44029,-1.40992][-1.30487,-0.0110723,0.871886][0.0292683,0.0831239,0][2.15489,-2.44029,-0.901069][1.30465,0.0130253,-0.871741][0.824173,0.785703,0][2.15324,-2.22919,-0.900385][0.801515,0.497345,-0.331998][0.840774,0.785468,0][2.33049,-2.22919,-0.00927729][0.867553,0.497344,1.22656e-007][0.841993,0.855544,0][2.33049,-2.22919,-0.00927729][0.867553,0.497344,1.22656e-007][0.841993,0.855544,0][2.33228,-2.44029,-0.00927721][1.53894,0.0130237,-0.306115][0.825392,0.855833,0][2.15489,-2.44029,-0.901069][1.30465,0.0130253,-0.871741][0.824173,0.785703,0][2.15324,-2.22919,-0.900385][0.801515,0.497345,-0.331998][0.595171,0.99,0][1.75277,-2.00582,-0.734505][0.584095,0.774789,-0.24194][0.586284,0.953527,0][1.89703,-2.00582,-0.00927724][0.63222,0.774789,2.36981e-007][0.633943,0.937618,0][1.89703,-2.00582,-0.00927724][0.63222,0.774789,2.36981e-007][0.633943,0.937618,0][2.33049,-2.22919,-0.00927729][0.867553,0.497344,1.22656e-007][0.653731,0.970452,0][2.15324,-2.22919,-0.900385][0.801515,0.497345,-0.331998][0.595171,0.99,0][1.75277,-2.00582,-0.734505][0.584095,0.774789,-0.24194][0.738749,0.300234,0][1.48858,-1.61625,-0.625074][0.842322,0.410806,-0.348901][0.769535,0.308307,0][1.61107,-1.61625,-0.00927732][0.911723,0.410806,0][0.770377,0.356733,0][1.61107,-1.61625,-0.00927732][0.911723,0.410806,0][0.770377,0.356733,0][1.89703,-2.00582,-0.00927724][0.63222,0.774789,2.36981e-007][0.739741,0.357266,0][1.75277,-2.00582,-0.734505][0.584095,0.774789,-0.24194][0.738749,0.300234,0][1.48858,-1.61625,-0.625074][0.842322,0.410806,-0.348901][0.769535,0.308307,0][1.41356,-1.19582,-0.593998][0.913113,0.152222,-0.378224][0.802639,0.310176,0][1.52987,-1.19582,-0.00927732][0.988346,0.152222,-1.27411e-007][0.803439,0.356158,0][1.52987,-1.19582,-0.00927732][0.988346,0.152222,-1.27411e-007][0.803439,0.356158,0][1.61107,-1.61625,-0.00927732][0.911723,0.410806,0][0.770377,0.356733,0][1.48858,-1.61625,-0.625074][0.842322,0.410806,-0.348901][0.769535,0.308307,0][1.41356,-1.19582,-0.593998][0.913113,0.152222,-0.378224][0.802639,0.310176,0][1.3581,-0.668635,-0.571028][0.904075,0.205946,-0.37448][0.844128,0.311261,0][1.46984,-0.668635,-0.00927742][0.978563,0.205946,0][0.844896,0.355437,0][1.46984,-0.668635,-0.00927742][0.978563,0.205946,0][0.844896,0.355437,0][1.52987,-1.19582,-0.00927732][0.988346,0.152222,-1.27411e-007][0.803439,0.356158,0][1.41356,-1.19582,-0.593998][0.913113,0.152222,-0.378224][0.802639,0.310176,0][1.3581,-0.668635,-0.571028][0.904075,0.205946,-0.37448][0.844128,0.311261,0][1.25454,-0.314304,-0.528131][0.879736,0.305416,-0.364399][0.872051,0.31415,0][1.35775,-0.314304,-0.00927737][0.952219,0.305416,1.6613e-007][0.872761,0.354952,0][1.35775,-0.314304,-0.00927737][0.952219,0.305416,1.6613e-007][0.872761,0.354952,0][1.46984,-0.668635,-0.00927742][0.978563,0.205946,0][0.844896,0.355437,0][1.3581,-0.668635,-0.571028][0.904075,0.205946,-0.37448][0.844128,0.311261,0][1.25454,-0.314304,-0.528131][0.879736,0.305416,-0.364399][0.872051,0.31415,0][1.14799,0.0400268,-0.483997][0.794067,0.511149,-0.328913][0.899976,0.317136,0][1.24242,0.0400267,-0.00927744][0.859492,0.511149,0][0.900625,0.354468,0][1.24242,0.0400267,-0.00927744][0.859492,0.511149,0][0.900625,0.354468,0][1.35775,-0.314304,-0.00927737][0.952219,0.305416,1.6613e-007][0.872761,0.354952,0][1.25454,-0.314304,-0.528131][0.879736,0.305416,-0.364399][0.872051,0.31415,0][1.14799,0.0400268,-0.483997][0.794067,0.511149,-0.328913][0.600217,0.806734,0][0.868266,0.341322,-0.368131][0.542329,0.809578,-0.22464][0.596335,0.77346,0][0.939646,0.341322,-0.00927749][0.587013,0.809578,1.30194e-007][0.619917,0.765588,0][0.939646,0.341322,-0.00927749][0.587013,0.809578,1.30194e-007][0.619917,0.765588,0][1.24242,0.0400267,-0.00927744][0.859492,0.511149,0][0.631413,0.79632,0][1.14799,0.0400268,-0.483997][0.794067,0.511149,-0.328913][0.600217,0.806734,0][0.868266,0.341322,-0.368131][0.542329,0.809578,-0.22464][0.179105,0.857462,0][0.238669,0.659854,-0.107343][0.391211,0.905922,-0.162045][0.130077,0.875831,0][0.258175,0.659854,-0.00927752][0.423444,0.905922,-1.36179e-007][0.126399,0.868955,0][0.258175,0.659854,-0.00927752][0.423444,0.905922,-1.36179e-007][0.126399,0.868955,0][0.939646,0.341322,-0.00927749][0.587013,0.809578,1.30194e-007][0.165648,0.832303,0][0.868266,0.341322,-0.368131][0.542329,0.809578,-0.22464][0.179105,0.857462,0][0.798987,0.341322,-0.00927748][-0.585636,-0.810574,0][0.104846,0.230254,0][0.00191735,0.618851,-0.00927755][-2.45855e-007,-1,0][0.166436,0.228009,0][0.738314,0.341322,-0.314303][-0.541057,-0.810574,0.224113][0.113517,0.25184,0][0.738314,0.341322,-0.314303][-0.541057,-0.810574,0.224113][0.346051,0.119961,0][0.976081,0.0400269,-0.412789][-0.821097,-0.458393,0.34011][0.369589,0.111743,0][1.05634,0.0400267,-0.00927745][-0.888749,-0.458393,0][0.370223,0.143474,0][1.05634,0.0400267,-0.00927745][-0.888749,-0.458393,0][0.370223,0.143474,0][0.798987,0.341322,-0.00927748][-0.585636,-0.810574,0][0.34653,0.143947,0][0.738314,0.341322,-0.314303][-0.541057,-0.810574,0.224113][0.346051,0.119961,0][0.976081,0.0400269,-0.412789][-0.821097,-0.458393,0.34011][0.369589,0.111743,0][1.06665,-0.314304,-0.450303][-0.891343,-0.26305,0.369206][0.397393,0.108237,0][1.15437,-0.314304,-0.00927743][-0.964782,-0.26305,0][0.398086,0.142917,0][1.15437,-0.314304,-0.00927743][-0.964782,-0.26305,0][0.398086,0.142917,0][1.05634,0.0400267,-0.00927745][-0.888749,-0.458393,0][0.370223,0.143474,0][0.976081,0.0400269,-0.412789][-0.821097,-0.458393,0.34011][0.369589,0.111743,0][1.06665,-0.314304,-0.450303][-0.891343,-0.26305,0.369206][0.397393,0.108237,0][1.15468,-0.668634,-0.486766][-0.90932,-0.176835,0.376653][0.425199,0.104813,0][1.24965,-0.668634,-0.00927736][-0.984241,-0.176835,0][0.425949,0.142361,0][1.24965,-0.668634,-0.00927736][-0.984241,-0.176835,0][0.425949,0.142361,0][1.15437,-0.314304,-0.00927743][-0.964782,-0.26305,0][0.398086,0.142917,0][1.06665,-0.314304,-0.450303][-0.891343,-0.26305,0.369206][0.397393,0.108237,0][1.15468,-0.668634,-0.486766][-0.90932,-0.176835,0.376653][0.425199,0.104813,0][1.20181,-1.19582,-0.50629][-0.916068,-0.129768,0.379447][0.466624,0.102449,0][1.30067,-1.19582,-0.00927738][-0.991544,-0.129768,0][0.467404,0.141532,0][1.30067,-1.19582,-0.00927738][-0.991544,-0.129768,0][0.467404,0.141532,0][1.24965,-0.668634,-0.00927736][-0.984241,-0.176835,0][0.425949,0.142361,0][1.15468,-0.668634,-0.486766][-0.90932,-0.176835,0.376653][0.425199,0.104813,0][1.20181,-1.19582,-0.50629][-0.916068,-0.129768,0.379447][0.466624,0.102449,0][1.26558,-1.61625,-0.532704][-0.861634,-0.360844,0.3569][0.499643,0.0997118,0][1.3697,-1.61625,-0.00927733][-0.932626,-0.360844,0][0.500465,0.140872,0][1.3697,-1.61625,-0.00927733][-0.932626,-0.360844,0][0.500465,0.140872,0][1.30067,-1.19582,-0.00927738][-0.991544,-0.129768,0][0.467404,0.141532,0][1.20181,-1.19582,-0.50629][-0.916068,-0.129768,0.379447][0.466624,0.102449,0][1.26558,-1.61625,-0.532704][-0.861634,-0.360844,0.3569][0.499643,0.0997118,0][1.49014,-2.00582,-0.625721][-0.635008,-0.726347,0.263029][0.530131,0.0917853,0][1.61276,-2.00582,-0.00927725][-0.687328,-0.726347,0][0.531099,0.14026,0][1.61276,-2.00582,-0.00927725][-0.687328,-0.726347,0][0.531099,0.14026,0][1.3697,-1.61625,-0.00927733][-0.932626,-0.360844,0][0.500465,0.140872,0][1.26558,-1.61625,-0.532704][-0.861634,-0.360844,0.3569][0.499643,0.0997118,0][1.49014,-2.00582,-0.625721][-0.635008,-0.726347,0.263029][0.7409,0.758351,0][1.83054,-2.22919,-0.766719][-0.815731,-0.469484,0.337887][0.74825,0.72606,0][1.98121,-2.22919,-0.0092773][-0.882941,-0.469484,0][0.797206,0.740508,0][1.98121,-2.22919,-0.0092773][-0.882941,-0.469484,0][0.797206,0.740508,0][1.61276,-2.00582,-0.00927725][-0.687328,-0.726347,0][0.780743,0.77011,0][1.49014,-2.00582,-0.625721][-0.635008,-0.726347,0.263029][0.7409,0.758351,0][1.83054,-2.22919,-0.766719][-0.815731,-0.469484,0.337887][0.547475,0.0803469,0][1.83195,-2.44029,-0.7673][-1.30487,-0.0110726,0.871886][0.564073,0.0799696,0][1.98273,-2.44029,-0.00927722][-1.5392,-0.0110728,0.306165][0.565264,0.139577,0][1.98273,-2.44029,-0.00927722][-1.5392,-0.0110728,0.306165][0.565264,0.139577,0][1.98121,-2.22919,-0.0092773][-0.882941,-0.469484,0][0.548665,0.139909,0][1.83054,-2.22919,-0.766719][-0.815731,-0.469484,0.337887][0.547475,0.0803469,0][1.83195,-2.44029,-0.7673][-1.30487,-0.0110726,0.871886][0.0793638,0.0493521,0][2.15489,-2.44029,-0.901069][1.30465,0.0130253,-0.871741][0.0689358,0.0239519,0][2.33228,-2.44029,-0.00927721][1.53894,0.0130237,-0.306115][0.138455,0.01,0][2.33228,-2.44029,-0.00927721][1.53894,0.0130237,-0.306115][0.138455,0.01,0][1.98273,-2.44029,-0.00927722][-1.5392,-0.0110728,0.306165][0.138455,0.037493,0][1.83195,-2.44029,-0.7673][-1.30487,-0.0110726,0.871886][0.0793638,0.0493521,0][2.33228,-2.44029,-0.00927721][1.53894,0.0130237,-0.306115][0.825392,0.855833,0][2.33049,-2.22919,-0.00927729][0.867553,0.497344,1.22656e-007][0.841993,0.855544,0][2.15324,-2.22919,0.881831][0.801515,0.497344,0.331998][0.843211,0.92562,0][2.15324,-2.22919,0.881831][0.801515,0.497344,0.331998][0.843211,0.92562,0][2.15489,-2.44029,0.882514][1.53894,0.0130243,0.306115][0.826612,0.925963,0][2.33228,-2.44029,-0.00927721][1.53894,0.0130237,-0.306115][0.825392,0.855833,0][2.33049,-2.22919,-0.00927729][0.867553,0.497344,1.22656e-007][0.204505,0.403649,0][1.89703,-2.00582,-0.00927724][0.63222,0.774789,2.36981e-007][0.206184,0.437122,0][1.75277,-2.00582,0.71595][0.584095,0.774789,0.24194][0.154708,0.436192,0][1.75277,-2.00582,0.71595][0.584095,0.774789,0.24194][0.154708,0.436192,0][2.15324,-2.22919,0.881831][0.801515,0.497344,0.331998][0.141255,0.402505,0][2.33049,-2.22919,-0.00927729][0.867553,0.497344,1.22656e-007][0.204505,0.403649,0][1.89703,-2.00582,-0.00927724][0.63222,0.774789,2.36981e-007][0.739741,0.357266,0][1.61107,-1.61625,-0.00927732][0.911723,0.410806,0][0.770377,0.356733,0][1.48858,-1.61625,0.606519][0.842322,0.410806,0.348901][0.771219,0.405159,0][1.48858,-1.61625,0.606519][0.842322,0.410806,0.348901][0.771219,0.405159,0][1.75277,-2.00582,0.71595][0.584095,0.774789,0.24194][0.740733,0.414297,0][1.89703,-2.00582,-0.00927724][0.63222,0.774789,2.36981e-007][0.739741,0.357266,0][1.61107,-1.61625,-0.00927732][0.911723,0.410806,0][0.770377,0.356733,0][1.52987,-1.19582,-0.00927732][0.988346,0.152222,-1.27411e-007][0.803439,0.356158,0][1.41356,-1.19582,0.575443][0.913113,0.152222,0.378224][0.804239,0.40214,0][1.41356,-1.19582,0.575443][0.913113,0.152222,0.378224][0.804239,0.40214,0][1.48858,-1.61625,0.606519][0.842322,0.410806,0.348901][0.771219,0.405159,0][1.61107,-1.61625,-0.00927732][0.911723,0.410806,0][0.770377,0.356733,0][1.52987,-1.19582,-0.00927732][0.988346,0.152222,-1.27411e-007][0.803439,0.356158,0][1.46984,-0.668635,-0.00927742][0.978563,0.205946,0][0.844896,0.355437,0][1.3581,-0.668635,0.552474][0.904074,0.205947,0.37448][0.845665,0.399613,0][1.3581,-0.668635,0.552474][0.904074,0.205947,0.37448][0.845665,0.399613,0][1.41356,-1.19582,0.575443][0.913113,0.152222,0.378224][0.804239,0.40214,0][1.52987,-1.19582,-0.00927732][0.988346,0.152222,-1.27411e-007][0.803439,0.356158,0][1.46984,-0.668635,-0.00927742][0.978563,0.205946,0][0.844896,0.355437,0][1.35775,-0.314304,-0.00927737][0.952219,0.305416,1.6613e-007][0.872761,0.354952,0][1.25454,-0.314304,0.509576][0.879736,0.305416,0.364399][0.87347,0.395755,0][1.25454,-0.314304,0.509576][0.879736,0.305416,0.364399][0.87347,0.395755,0][1.3581,-0.668635,0.552474][0.904074,0.205947,0.37448][0.845665,0.399613,0][1.46984,-0.668635,-0.00927742][0.978563,0.205946,0][0.844896,0.355437,0][1.35775,-0.314304,-0.00927737][0.952219,0.305416,1.6613e-007][0.872761,0.354952,0][1.24242,0.0400267,-0.00927744][0.859492,0.511149,0][0.900625,0.354468,0][1.14799,0.0400268,0.465442][0.794067,0.511149,0.328914][0.901274,0.391799,0][1.14799,0.0400268,0.465442][0.794067,0.511149,0.328914][0.901274,0.391799,0][1.25454,-0.314304,0.509576][0.879736,0.305416,0.364399][0.87347,0.395755,0][1.35775,-0.314304,-0.00927737][0.952219,0.305416,1.6613e-007][0.872761,0.354952,0][1.24242,0.0400267,-0.00927744][0.859492,0.511149,0][0.182025,0.814731,0][0.939646,0.341322,-0.00927749][0.587013,0.809578,1.30194e-007][0.165648,0.832303,0][0.868266,0.341322,0.349576][0.542329,0.809578,0.22464][0.143526,0.814284,0][0.868266,0.341322,0.349576][0.542329,0.809578,0.22464][0.143526,0.814284,0][1.14799,0.0400268,0.465442][0.794067,0.511149,0.328914][0.15276,0.790894,0][1.24242,0.0400267,-0.00927744][0.859492,0.511149,0][0.182025,0.814731,0][0.939646,0.341322,-0.00927749][0.587013,0.809578,1.30194e-007][0.165648,0.832303,0][0.258175,0.659854,-0.00927752][0.423444,0.905922,-1.36179e-007][0.126399,0.868955,0][0.238669,0.659854,0.0887882][0.391211,0.905922,0.162045][0.120354,0.864031,0][0.238669,0.659854,0.0887882][0.391211,0.905922,0.162045][0.120354,0.864031,0][0.868266,0.341322,0.349576][0.542329,0.809578,0.22464][0.143526,0.814284,0][0.939646,0.341322,-0.00927749][0.587013,0.809578,1.30194e-007][0.165648,0.832303,0][0.738314,0.341323,0.295748][-0.541058,-0.810574,-0.224113][0.105586,0.207215,0][0.00191735,0.618851,-0.00927755][-2.45855e-007,-1,0][0.166436,0.228009,0][0.798987,0.341322,-0.00927748][-0.585636,-0.810574,0][0.104846,0.230254,0][0.798987,0.341322,-0.00927748][-0.585636,-0.810574,0][0.34653,0.143947,0][1.05634,0.0400267,-0.00927745][-0.888749,-0.458393,0][0.370223,0.143474,0][0.976081,0.0400267,0.394234][-0.821097,-0.458393,-0.34011][0.370857,0.175204,0][0.976081,0.0400267,0.394234][-0.821097,-0.458393,-0.34011][0.370857,0.175204,0][0.738314,0.341323,0.295748][-0.541058,-0.810574,-0.224113][0.347009,0.167933,0][0.798987,0.341322,-0.00927748][-0.585636,-0.810574,0][0.34653,0.143947,0][1.05634,0.0400267,-0.00927745][-0.888749,-0.458393,0][0.370223,0.143474,0][1.15437,-0.314304,-0.00927743][-0.964782,-0.26305,0][0.398086,0.142917,0][1.06665,-0.314304,0.431748][-0.891342,-0.26305,-0.369206][0.398779,0.177598,0][1.06665,-0.314304,0.431748][-0.891342,-0.26305,-0.369206][0.398779,0.177598,0][0.976081,0.0400267,0.394234][-0.821097,-0.458393,-0.34011][0.370857,0.175204,0][1.05634,0.0400267,-0.00927745][-0.888749,-0.458393,0][0.370223,0.143474,0][1.15437,-0.314304,-0.00927743][-0.964782,-0.26305,0][0.398086,0.142917,0][1.24965,-0.668634,-0.00927736][-0.984241,-0.176835,0][0.425949,0.142361,0][1.15468,-0.668635,0.468211][-0.90932,-0.176835,-0.376653][0.426699,0.179908,0][1.15468,-0.668635,0.468211][-0.90932,-0.176835,-0.376653][0.426699,0.179908,0][1.06665,-0.314304,0.431748][-0.891342,-0.26305,-0.369206][0.398779,0.177598,0][1.15437,-0.314304,-0.00927743][-0.964782,-0.26305,0][0.398086,0.142917,0][1.24965,-0.668634,-0.00927736][-0.984241,-0.176835,0][0.425949,0.142361,0][1.30067,-1.19582,-0.00927738][-0.991544,-0.129768,0][0.467404,0.141532,0][1.20181,-1.19582,0.487735][-0.916068,-0.129768,-0.379448][0.468185,0.180615,0][1.20181,-1.19582,0.487735][-0.916068,-0.129768,-0.379448][0.468185,0.180615,0][1.15468,-0.668635,0.468211][-0.90932,-0.176835,-0.376653][0.426699,0.179908,0][1.24965,-0.668634,-0.00927736][-0.984241,-0.176835,0][0.425949,0.142361,0][1.30067,-1.19582,-0.00927738][-0.991544,-0.129768,0][0.467404,0.141532,0][1.3697,-1.61625,-0.00927733][-0.932626,-0.360844,0][0.500465,0.140872,0][1.26558,-1.61625,0.514149][-0.861634,-0.360844,-0.356901][0.501287,0.182032,0][1.26558,-1.61625,0.514149][-0.861634,-0.360844,-0.356901][0.501287,0.182032,0][1.20181,-1.19582,0.487735][-0.916068,-0.129768,-0.379448][0.468185,0.180615,0][1.30067,-1.19582,-0.00927738][-0.991544,-0.129768,0][0.467404,0.141532,0][1.3697,-1.61625,-0.00927733][-0.932626,-0.360844,0][0.500465,0.140872,0][1.61276,-2.00582,-0.00927725][-0.687328,-0.726347,0][0.531099,0.14026,0][1.49014,-2.00582,0.607166][-0.635008,-0.726348,-0.263029][0.532068,0.188734,0][1.49014,-2.00582,0.607166][-0.635008,-0.726348,-0.263029][0.532068,0.188734,0][1.26558,-1.61625,0.514149][-0.861634,-0.360844,-0.356901][0.501287,0.182032,0][1.3697,-1.61625,-0.00927733][-0.932626,-0.360844,0][0.500465,0.140872,0][1.61276,-2.00582,-0.00927725][-0.687328,-0.726347,0][0.561812,0.267253,0][1.98121,-2.22919,-0.0092773][-0.882941,-0.469484,0][0.567466,0.300667,0][1.83054,-2.22919,0.748164][-0.815731,-0.469484,-0.337887][0.506725,0.300668,0][1.83054,-2.22919,0.748164][-0.815731,-0.469484,-0.337887][0.506725,0.300668,0][1.49014,-2.00582,0.607166][-0.635008,-0.726348,-0.263029][0.512378,0.267254,0][1.61276,-2.00582,-0.00927725][-0.687328,-0.726347,0][0.561812,0.267253,0][1.98121,-2.22919,-0.0092773][-0.882941,-0.469484,0][0.548665,0.139909,0][1.98273,-2.44029,-0.00927722][-1.5392,-0.0110728,0.306165][0.565264,0.139577,0][1.83195,-2.44029,0.748746][-1.5392,-0.0110719,-0.306166][0.566455,0.199185,0][1.83195,-2.44029,0.748746][-1.5392,-0.0110719,-0.306166][0.566455,0.199185,0][1.83054,-2.22919,0.748164][-0.815731,-0.469484,-0.337887][0.549854,0.199471,0][1.98121,-2.22919,-0.0092773][-0.882941,-0.469484,0][0.548665,0.139909,0][1.98273,-2.44029,-0.00927722][-1.5392,-0.0110728,0.306165][0.138455,0.037493,0][2.33228,-2.44029,-0.00927721][1.53894,0.0130237,-0.306115][0.138455,0.01,0][2.15489,-2.44029,0.882514][1.53894,0.0130243,0.306115][0.207975,0.0239519,0][2.15489,-2.44029,0.882514][1.53894,0.0130243,0.306115][0.207975,0.0239519,0][1.83195,-2.44029,0.748746][-1.5392,-0.0110719,-0.306166][0.197547,0.0493521,0][1.98273,-2.44029,-0.00927722][-1.5392,-0.0110728,0.306165][0.138455,0.037493,0][2.15489,-2.44029,0.882514][1.53894,0.0130243,0.306115][0.826612,0.925963,0][2.15324,-2.22919,0.881831][0.801515,0.497344,0.331998][0.843211,0.92562,0][1.64847,-2.22919,1.63728][0.613453,0.497344,0.613453][0.844245,0.985028,0][1.64847,-2.22919,1.63728][0.613453,0.497344,0.613453][0.844245,0.985028,0][1.64973,-2.44029,1.63854][1.30465,0.0130241,0.871741][0.827646,0.985416,0][2.15489,-2.44029,0.882514][1.53894,0.0130243,0.306115][0.826612,0.925963,0][2.15324,-2.22919,0.881831][0.801515,0.497344,0.331998][0.141255,0.402505,0][1.75277,-2.00582,0.71595][0.584095,0.774789,0.24194][0.154708,0.436192,0][1.34196,-2.00582,1.33077][0.447047,0.774789,0.447047][0.106749,0.457584,0][1.34196,-2.00582,1.33077][0.447047,0.774789,0.447047][0.106749,0.457584,0][1.64847,-2.22919,1.63728][0.613453,0.497344,0.613453][0.0823262,0.428791,0][2.15324,-2.22919,0.881831][0.801515,0.497344,0.331998][0.141255,0.402505,0][1.75277,-2.00582,0.71595][0.584095,0.774789,0.24194][0.974418,0.475751,0][1.48858,-1.61625,0.606519][0.842322,0.410806,0.348901][0.936808,0.47026,0][1.13976,-1.61625,1.12857][0.644685,0.410806,0.644685][0.938254,0.420899,0][1.13976,-1.61625,1.12857][0.644685,0.410806,0.644685][0.938254,0.420899,0][1.34196,-2.00582,1.33077][0.447047,0.774789,0.447047][0.976121,0.417618,0][1.75277,-2.00582,0.71595][0.584095,0.774789,0.24194][0.974418,0.475751,0][1.48858,-1.61625,0.606519][0.842322,0.410806,0.348901][0.771219,0.405159,0][1.41356,-1.19582,0.575443][0.913113,0.152222,0.378224][0.804239,0.40214,0][1.08234,-1.19582,1.07115][0.698866,0.152222,0.698867][0.804917,0.441122,0][1.08234,-1.19582,1.07115][0.698866,0.152222,0.698867][0.804917,0.441122,0][1.13976,-1.61625,1.12857][0.644685,0.410806,0.644685][0.771933,0.446212,0][1.48858,-1.61625,0.606519][0.842322,0.410806,0.348901][0.771219,0.405159,0][1.41356,-1.19582,0.575443][0.913113,0.152222,0.378224][0.804239,0.40214,0][1.3581,-0.668635,0.552474][0.904074,0.205947,0.37448][0.845665,0.399613,0][1.0399,-0.668634,1.0287][0.691948,0.205947,0.691949][0.846316,0.437063,0][1.0399,-0.668634,1.0287][0.691948,0.205947,0.691949][0.846316,0.437063,0][1.08234,-1.19582,1.07115][0.698866,0.152222,0.698867][0.804917,0.441122,0][1.41356,-1.19582,0.575443][0.913113,0.152222,0.378224][0.804239,0.40214,0][1.3581,-0.668635,0.552474][0.904074,0.205947,0.37448][0.845665,0.399613,0][1.25454,-0.314304,0.509576][0.879736,0.305416,0.364399][0.87347,0.395755,0][0.960633,-0.314304,0.949439][0.67332,0.305417,0.673321][0.874072,0.430345,0][0.960633,-0.314304,0.949439][0.67332,0.305417,0.673321][0.874072,0.430345,0][1.0399,-0.668634,1.0287][0.691948,0.205947,0.691949][0.846316,0.437063,0][1.3581,-0.668635,0.552474][0.904074,0.205947,0.37448][0.845665,0.399613,0][1.25454,-0.314304,0.509576][0.879736,0.305416,0.364399][0.87347,0.395755,0][1.14799,0.0400268,0.465442][0.794067,0.511149,0.328914][0.901274,0.391799,0][0.879085,0.0400267,0.86789][0.607753,0.511149,0.607753][0.901825,0.423448,0][0.879085,0.0400267,0.86789][0.607753,0.511149,0.607753][0.901825,0.423448,0][0.960633,-0.314304,0.949439][0.67332,0.305417,0.673321][0.874072,0.430345,0][1.25454,-0.314304,0.509576][0.879736,0.305416,0.364399][0.87347,0.395755,0][1.14799,0.0400268,0.465442][0.794067,0.511149,0.328914][0.15276,0.790894,0][0.868266,0.341322,0.349576][0.542329,0.809578,0.22464][0.143526,0.814284,0][0.664992,0.341323,0.653797][0.415081,0.809578,0.415081][0.116106,0.806149,0][0.664992,0.341323,0.653797][0.415081,0.809578,0.415081][0.116106,0.806149,0][0.879085,0.0400267,0.86789][0.607753,0.511149,0.607753][0.116486,0.780132,0][1.14799,0.0400268,0.465442][0.794067,0.511149,0.328914][0.15276,0.790894,0][0.868266,0.341322,0.349576][0.542329,0.809578,0.22464][0.143526,0.814284,0][0.238669,0.659854,0.0887882][0.391211,0.905922,0.162045][0.120354,0.864031,0][0.183119,0.659854,0.171924][0.29942,0.905922,0.29942][0.11286,0.861808,0][0.183119,0.659854,0.171924][0.29942,0.905922,0.29942][0.11286,0.861808,0][0.664992,0.341323,0.653797][0.415081,0.809578,0.415081][0.116106,0.806149,0][0.868266,0.341322,0.349576][0.542329,0.809578,0.22464][0.143526,0.814284,0][0.565531,0.341322,0.554336][-0.414107,-0.810574,-0.414108][0.115627,0.18623,0][0.00191735,0.618851,-0.00927755][-2.45855e-007,-1,0][0.166436,0.228009,0][0.738314,0.341323,0.295748][-0.541058,-0.810574,-0.224113][0.105586,0.207215,0][0.738314,0.341323,0.295748][-0.541058,-0.810574,-0.224113][0.964038,0.267253,0][0.976081,0.0400267,0.394234][-0.821097,-0.458393,-0.34011][0.976,0.296032,0][0.74751,0.0400268,0.736315][-0.628441,-0.458393,-0.628441][0.944787,0.304565,0][0.74751,0.0400268,0.736315][-0.628441,-0.458393,-0.628441][0.944787,0.304565,0][0.565531,0.341322,0.554336][-0.414107,-0.810574,-0.414108][0.940443,0.273704,0][0.738314,0.341323,0.295748][-0.541058,-0.810574,-0.224113][0.964038,0.267253,0][0.976081,0.0400267,0.394234][-0.821097,-0.458393,-0.34011][0.370857,0.175204,0][1.06665,-0.314304,0.431748][-0.891342,-0.26305,-0.369206][0.398779,0.177598,0][0.816826,-0.314304,0.805631][-0.682204,-0.26305,-0.682204][0.399366,0.206998,0][0.816826,-0.314304,0.805631][-0.682204,-0.26305,-0.682204][0.399366,0.206998,0][0.74751,0.0400268,0.736315][-0.628441,-0.458393,-0.628441][0.371394,0.202104,0][0.976081,0.0400267,0.394234][-0.821097,-0.458393,-0.34011][0.370857,0.175204,0][1.06665,-0.314304,0.431748][-0.891342,-0.26305,-0.369206][0.398779,0.177598,0][1.15468,-0.668635,0.468211][-0.90932,-0.176835,-0.376653][0.426699,0.179908,0][0.884201,-0.668634,0.873006][-0.695963,-0.176835,-0.695963][0.427335,0.21174,0][0.884201,-0.668634,0.873006][-0.695963,-0.176835,-0.695963][0.427335,0.21174,0][0.816826,-0.314304,0.805631][-0.682204,-0.26305,-0.682204][0.399366,0.206998,0][1.06665,-0.314304,0.431748][-0.891342,-0.26305,-0.369206][0.398779,0.177598,0][1.15468,-0.668635,0.468211][-0.90932,-0.176835,-0.376653][0.426699,0.179908,0][1.20181,-1.19582,0.487735][-0.916068,-0.129768,-0.379448][0.468185,0.180615,0][0.920277,-1.19582,0.909082][-0.701128,-0.129768,-0.701128][0.468847,0.213748,0][0.920277,-1.19582,0.909082][-0.701128,-0.129768,-0.701128][0.468847,0.213748,0][0.884201,-0.668634,0.873006][-0.695963,-0.176835,-0.695963][0.427335,0.21174,0][1.15468,-0.668635,0.468211][-0.90932,-0.176835,-0.376653][0.426699,0.179908,0][1.20181,-1.19582,0.487735][-0.916068,-0.129768,-0.379448][0.468185,0.180615,0][1.26558,-1.61625,0.514149][-0.861634,-0.360844,-0.356901][0.501287,0.182032,0][0.969084,-1.61625,0.957889][-0.659466,-0.360844,-0.659466][0.501985,0.216926,0][0.969084,-1.61625,0.957889][-0.659466,-0.360844,-0.659466][0.501985,0.216926,0][0.920277,-1.19582,0.909082][-0.701128,-0.129768,-0.701128][0.468847,0.213748,0][1.20181,-1.19582,0.487735][-0.916068,-0.129768,-0.379448][0.468185,0.180615,0][1.26558,-1.61625,0.514149][-0.861634,-0.360844,-0.356901][0.501287,0.182032,0][1.49014,-2.00582,0.607166][-0.635008,-0.726348,-0.263029][0.532068,0.188734,0][1.14096,-2.00582,1.12976][-0.486014,-0.726347,-0.486014][0.532889,0.229829,0][1.14096,-2.00582,1.12976][-0.486014,-0.726347,-0.486014][0.532889,0.229829,0][0.969084,-1.61625,0.957889][-0.659466,-0.360844,-0.659466][0.501985,0.216926,0][1.26558,-1.61625,0.514149][-0.861634,-0.360844,-0.356901][0.501287,0.182032,0][1.49014,-2.00582,0.607166][-0.635008,-0.726348,-0.263029][0.50913,0.801268,0][1.83054,-2.22919,0.748164][-0.815731,-0.469484,-0.337887][0.505248,0.82977,0][1.40149,-2.22919,1.39029][-0.624334,-0.469484,-0.624334][0.453591,0.830763,0][1.40149,-2.22919,1.39029][-0.624334,-0.469484,-0.624334][0.453591,0.830763,0][1.14096,-2.00582,1.12976][-0.486014,-0.726347,-0.486014][0.467088,0.802076,0][1.49014,-2.00582,0.607166][-0.635008,-0.726348,-0.263029][0.50913,0.801268,0][1.83054,-2.22919,0.748164][-0.815731,-0.469484,-0.337887][0.549854,0.199471,0][1.83195,-2.44029,0.748746][-1.5392,-0.0110719,-0.306166][0.566455,0.199185,0][1.40256,-2.44029,1.39137][-1.30487,-0.0110718,-0.871886][0.567465,0.249718,0][1.40256,-2.44029,1.39137][-1.30487,-0.0110718,-0.871886][0.567465,0.249718,0][1.40149,-2.22919,1.39029][-0.624334,-0.469484,-0.624334][0.550863,0.249965,0][1.83054,-2.22919,0.748164][-0.815731,-0.469484,-0.337887][0.549854,0.199471,0][1.83195,-2.44029,0.748746][-1.5392,-0.0110719,-0.306166][0.197547,0.0493521,0][2.15489,-2.44029,0.882514][1.53894,0.0130243,0.306115][0.207975,0.0239519,0][1.64973,-2.44029,1.63854][1.30465,0.0130241,0.871741][0.266911,0.0636834,0][1.64973,-2.44029,1.63854][1.30465,0.0130241,0.871741][0.266911,0.0636834,0][1.40256,-2.44029,1.39137][-1.30487,-0.0110718,-0.871886][0.247642,0.0831239,0][1.83195,-2.44029,0.748746][-1.5392,-0.0110719,-0.306166][0.197547,0.0493521,0][1.64973,-2.44029,1.63854][1.30465,0.0130241,0.871741][0.861987,0.72606,0][1.64847,-2.22919,1.63728][0.613453,0.497344,0.613453][0.87859,0.726149,0][0.893025,-2.22919,2.14205][0.331998,0.497344,0.801515][0.878254,0.77668,0][0.893025,-2.22919,2.14205][0.331998,0.497344,0.801515][0.878254,0.77668,0][0.893708,-2.44029,2.1437][0.87174,0.0130231,1.30465][0.861651,0.776629,0][1.64973,-2.44029,1.63854][1.30465,0.0130241,0.871741][0.861987,0.72606,0][1.64847,-2.22919,1.63728][0.613453,0.497344,0.613453][0.0823262,0.428791,0][1.34196,-2.00582,1.33077][0.447047,0.774789,0.447047][0.106749,0.457584,0][0.727144,-2.00582,1.74158][0.24194,0.774789,0.584095][0.069607,0.498044,0][0.727144,-2.00582,1.74158][0.24194,0.774789,0.584095][0.069607,0.498044,0][0.893025,-2.22919,2.14205][0.331998,0.497344,0.801515][0.036689,0.478505,0][1.64847,-2.22919,1.63728][0.613453,0.497344,0.613453][0.0823262,0.428791,0][1.34196,-2.00582,1.33077][0.447047,0.774789,0.447047][0.106749,0.457584,0][1.13976,-1.61625,1.12857][0.644685,0.410806,0.644685][0.13172,0.476739,0][0.617713,-1.61625,1.47739][0.348901,0.410806,0.842322][0.100182,0.511094,0][0.617713,-1.61625,1.47739][0.348901,0.410806,0.842322][0.100182,0.511094,0][0.727144,-2.00582,1.74158][0.24194,0.774789,0.584095][0.069607,0.498044,0][1.34196,-2.00582,1.33077][0.447047,0.774789,0.447047][0.106749,0.457584,0][1.13976,-1.61625,1.12857][0.644685,0.410806,0.644685][0.697227,0.52446,0][1.08234,-1.19582,1.07115][0.698866,0.152222,0.698867][0.730551,0.528541,0][0.586638,-1.19582,1.40236][0.378224,0.152222,0.913113][0.725611,0.561903,0][0.586638,-1.19582,1.40236][0.378224,0.152222,0.913113][0.725611,0.561903,0][0.617713,-1.61625,1.47739][0.348901,0.410806,0.842322][0.692024,0.559595,0][1.13976,-1.61625,1.12857][0.644685,0.410806,0.644685][0.697227,0.52446,0][1.08234,-1.19582,1.07115][0.698866,0.152222,0.698867][0.730551,0.528541,0][1.0399,-0.668634,1.0287][0.691948,0.205947,0.691949][0.771895,0.530938,0][0.563668,-0.668634,1.34691][0.37448,0.205947,0.904075][0.767149,0.562989,0][0.563668,-0.668634,1.34691][0.37448,0.205947,0.904075][0.767149,0.562989,0][0.586638,-1.19582,1.40236][0.378224,0.152222,0.913113][0.725611,0.561903,0][1.08234,-1.19582,1.07115][0.698866,0.152222,0.698867][0.730551,0.528541,0][1.0399,-0.668634,1.0287][0.691948,0.205947,0.691949][0.771895,0.530938,0][0.960633,-0.314304,0.949439][0.67332,0.305417,0.673321][0.800441,0.537217,0][0.520771,-0.314304,1.24335][0.364398,0.305417,0.879736][0.796057,0.566821,0][0.520771,-0.314304,1.24335][0.364398,0.305417,0.879736][0.796057,0.566821,0][0.563668,-0.668634,1.34691][0.37448,0.205947,0.904075][0.767149,0.562989,0][1.0399,-0.668634,1.0287][0.691948,0.205947,0.691949][0.771895,0.530938,0][0.960633,-0.314304,0.949439][0.67332,0.305417,0.673321][0.800441,0.537217,0][0.879085,0.0400267,0.86789][0.607753,0.511149,0.607753][0.82902,0.543706,0][0.476637,0.0400268,1.1368][0.328913,0.511149,0.794067][0.825009,0.570792,0][0.476637,0.0400268,1.1368][0.328913,0.511149,0.794067][0.825009,0.570792,0][0.520771,-0.314304,1.24335][0.364398,0.305417,0.879736][0.796057,0.566821,0][0.960633,-0.314304,0.949439][0.67332,0.305417,0.673321][0.800441,0.537217,0][0.879085,0.0400267,0.86789][0.607753,0.511149,0.607753][0.116486,0.780132,0][0.664992,0.341323,0.653797][0.415081,0.809578,0.415081][0.116106,0.806149,0][0.360771,0.341323,0.857071][0.22464,0.809578,0.542329][0.0875627,0.809136,0][0.360771,0.341323,0.857071][0.22464,0.809578,0.542329][0.0875627,0.809136,0][0.476637,0.0400268,1.1368][0.328913,0.511149,0.794067][0.0787275,0.784083,0][0.879085,0.0400267,0.86789][0.607753,0.511149,0.607753][0.116486,0.780132,0][0.664992,0.341323,0.653797][0.415081,0.809578,0.415081][0.116106,0.806149,0][0.183119,0.659854,0.171924][0.29942,0.905922,0.29942][0.11286,0.861808,0][0.099983,0.659854,0.227474][0.162045,0.905923,0.391211][0.10506,0.862624,0][0.099983,0.659854,0.227474][0.162045,0.905923,0.391211][0.10506,0.862624,0][0.360771,0.341323,0.857071][0.22464,0.809578,0.542329][0.0875627,0.809136,0][0.664992,0.341323,0.653797][0.415081,0.809578,0.415081][0.116106,0.806149,0][0.306943,0.341322,0.727119][-0.224114,-0.810574,-0.541057][0.133438,0.170495,0][0.00191735,0.618851,-0.00927755][-2.45855e-007,-1,0][0.166436,0.228009,0][0.565531,0.341322,0.554336][-0.414107,-0.810574,-0.414108][0.115627,0.18623,0][0.565531,0.341322,0.554336][-0.414107,-0.810574,-0.414108][0.115627,0.18623,0][0.74751,0.0400268,0.736315][-0.628441,-0.458393,-0.628441][0.0994005,0.167173,0][0.405429,0.0400268,0.964886][-0.34011,-0.458393,-0.821098][0.122963,0.146357,0][0.405429,0.0400268,0.964886][-0.34011,-0.458393,-0.821098][0.122963,0.146357,0][0.306943,0.341322,0.727119][-0.224114,-0.810574,-0.541057][0.133438,0.170495,0][0.565531,0.341322,0.554336][-0.414107,-0.810574,-0.414108][0.115627,0.18623,0][0.74751,0.0400268,0.736315][-0.628441,-0.458393,-0.628441][0.618764,0.225632,0][0.816826,-0.314304,0.805631][-0.682204,-0.26305,-0.682204][0.612765,0.197523,0][0.442943,-0.314304,1.05545][-0.369206,-0.26305,-0.891343][0.637867,0.191342,0][0.442943,-0.314304,1.05545][-0.369206,-0.26305,-0.891343][0.637867,0.191342,0][0.405429,0.0400268,0.964886][-0.34011,-0.458393,-0.821098][0.64173,0.219976,0][0.74751,0.0400268,0.736315][-0.628441,-0.458393,-0.628441][0.618764,0.225632,0][0.816826,-0.314304,0.805631][-0.682204,-0.26305,-0.682204][0.612765,0.197523,0][0.884201,-0.668634,0.873006][-0.695963,-0.176835,-0.695963][0.606946,0.169448,0][0.479405,-0.668634,1.14348][-0.376652,-0.176835,-0.90932][0.634122,0.162756,0][0.479405,-0.668634,1.14348][-0.376652,-0.176835,-0.90932][0.634122,0.162756,0][0.442943,-0.314304,1.05545][-0.369206,-0.26305,-0.891343][0.637867,0.191342,0][0.816826,-0.314304,0.805631][-0.682204,-0.26305,-0.682204][0.612765,0.197523,0][0.884201,-0.668634,0.873006][-0.695963,-0.176835,-0.695963][0.955719,0.355798,0][0.920277,-1.19582,0.909082][-0.701128,-0.129768,-0.701128][0.964012,0.389101,0][0.49893,-1.19582,1.19062][-0.379448,-0.129768,-0.916068][0.92591,0.389364,0][0.49893,-1.19582,1.19062][-0.379448,-0.129768,-0.916068][0.92591,0.389364,0][0.479405,-0.668634,1.14348][-0.376652,-0.176835,-0.90932][0.919113,0.35605,0][0.884201,-0.668634,0.873006][-0.695963,-0.176835,-0.695963][0.955719,0.355798,0][0.920277,-1.19582,0.909082][-0.701128,-0.129768,-0.701128][0.604205,0.128803,0][0.969084,-1.61625,0.957889][-0.659466,-0.360844,-0.659466][0.600172,0.096037,0][0.525344,-1.61625,1.25439][-0.3569,-0.360844,-0.861634][0.629963,0.0887009,0][0.525344,-1.61625,1.25439][-0.3569,-0.360844,-0.861634][0.629963,0.0887009,0][0.49893,-1.19582,1.19062][-0.379448,-0.129768,-0.916068][0.632493,0.121837,0][0.920277,-1.19582,0.909082][-0.701128,-0.129768,-0.701128][0.604205,0.128803,0][0.969084,-1.61625,0.957889][-0.659466,-0.360844,-0.659466][0.600172,0.096037,0][1.14096,-2.00582,1.12976][-0.486014,-0.726347,-0.486014][0.584753,0.0634547,0][0.61836,-2.00582,1.47895][-0.263029,-0.726347,-0.635008][0.619839,0.0548149,0][0.61836,-2.00582,1.47895][-0.263029,-0.726347,-0.635008][0.619839,0.0548149,0][0.525344,-1.61625,1.25439][-0.3569,-0.360844,-0.861634][0.629963,0.0887009,0][0.969084,-1.61625,0.957889][-0.659466,-0.360844,-0.659466][0.600172,0.096037,0][1.14096,-2.00582,1.12976][-0.486014,-0.726347,-0.486014][0.467088,0.802076,0][1.40149,-2.22919,1.39029][-0.624334,-0.469484,-0.624334][0.453591,0.830763,0][0.759358,-2.22919,1.81935][-0.337887,-0.469484,-0.815731][0.405419,0.80844,0][0.759358,-2.22919,1.81935][-0.337887,-0.469484,-0.815731][0.405419,0.80844,0][0.61836,-2.00582,1.47895][-0.263029,-0.726347,-0.635008][0.427884,0.783909,0][1.14096,-2.00582,1.12976][-0.486014,-0.726347,-0.486014][0.467088,0.802076,0][1.40149,-2.22919,1.39029][-0.624334,-0.469484,-0.624334][0.97926,0.484471,0][1.40256,-2.44029,1.39137][-1.30487,-0.0110718,-0.871886][0.982614,0.496826,0][0.75994,-2.44029,1.82075][-0.871886,-0.0110737,-1.30487][0.924502,0.497227,0][0.75994,-2.44029,1.82075][-0.871886,-0.0110737,-1.30487][0.924502,0.497227,0][0.759358,-2.22919,1.81935][-0.337887,-0.469484,-0.815731][0.921193,0.484871,0][1.40149,-2.22919,1.39029][-0.624334,-0.469484,-0.624334][0.97926,0.484471,0][1.40256,-2.44029,1.39137][-1.30487,-0.0110718,-0.871886][0.247642,0.0831239,0][1.64973,-2.44029,1.63854][1.30465,0.0130241,0.871741][0.266911,0.0636834,0][0.893708,-2.44029,2.1437][0.87174,0.0130231,1.30465][0.30629,0.123146,0][0.893708,-2.44029,2.1437][0.87174,0.0130231,1.30465][0.30629,0.123146,0][0.75994,-2.44029,1.82075][-0.871886,-0.0110737,-1.30487][0.281115,0.133667,0][1.40256,-2.44029,1.39137][-1.30487,-0.0110718,-0.871886][0.247642,0.0831239,0][0.893708,-2.44029,2.1437][0.87174,0.0130231,1.30465][0.861651,0.776629,0][0.893025,-2.22919,2.14205][0.331998,0.497344,0.801515][0.878254,0.77668,0][0.00191698,-2.22919,2.3193][1.36627e-007,0.497344,0.867554][0.878136,0.8427,0][0.00191698,-2.22919,2.3193][1.36627e-007,0.497344,0.867554][0.878136,0.8427,0][0.00191694,-2.44029,2.32109][-0.306114,0.0130237,1.53894][0.861533,0.8427,0][0.893708,-2.44029,2.1437][0.87174,0.0130231,1.30465][0.861651,0.776629,0][0.893025,-2.22919,2.14205][0.331998,0.497344,0.801515][0.036689,0.478505,0][0.727144,-2.00582,1.74158][0.24194,0.774789,0.584095][0.069607,0.498044,0][0.001917,-2.00582,1.88583][2.36988e-007,0.774789,0.63222][0.0489372,0.551409,0][0.001917,-2.00582,1.88583][2.36988e-007,0.774789,0.63222][0.0489372,0.551409,0][0.00191698,-2.22919,2.3193][1.36627e-007,0.497344,0.867554][0.0112914,0.544077,0][0.893025,-2.22919,2.14205][0.331998,0.497344,0.801515][0.036689,0.478505,0][0.727144,-2.00582,1.74158][0.24194,0.774789,0.584095][0.069607,0.498044,0][0.617713,-1.61625,1.47739][0.348901,0.410806,0.842322][0.100182,0.511094,0][0.00191704,-1.61625,1.59988][0,0.410806,0.911723][0.0826314,0.556407,0][0.00191704,-1.61625,1.59988][0,0.410806,0.911723][0.0826314,0.556407,0][0.001917,-2.00582,1.88583][2.36988e-007,0.774789,0.63222][0.0489372,0.551409,0][0.727144,-2.00582,1.74158][0.24194,0.774789,0.584095][0.069607,0.498044,0][0.617713,-1.61625,1.47739][0.348901,0.410806,0.842322][0.692024,0.559595,0][0.586638,-1.19582,1.40236][0.378224,0.152222,0.913113][0.725611,0.561903,0][0.0019171,-1.19582,1.51867][0,0.152222,0.988346][0.723876,0.605317,0][0.0019171,-1.19582,1.51867][0,0.152222,0.988346][0.723876,0.605317,0][0.00191704,-1.61625,1.59988][0,0.410806,0.911723][0.690198,0.605317,0][0.617713,-1.61625,1.47739][0.348901,0.410806,0.842322][0.692024,0.559595,0][0.586638,-1.19582,1.40236][0.378224,0.152222,0.913113][0.725611,0.561903,0][0.563668,-0.668634,1.34691][0.37448,0.205947,0.904075][0.767149,0.562989,0][0.00191718,-0.668634,1.45865][1.35172e-007,0.205947,0.978563][0.765482,0.604699,0][0.00191718,-0.668634,1.45865][1.35172e-007,0.205947,0.978563][0.765482,0.604699,0][0.0019171,-1.19582,1.51867][0,0.152222,0.988346][0.723876,0.605317,0][0.586638,-1.19582,1.40236][0.378224,0.152222,0.913113][0.725611,0.561903,0][0.563668,-0.668634,1.34691][0.37448,0.205947,0.904075][0.767149,0.562989,0][0.520771,-0.314304,1.24335][0.364398,0.305417,0.879736][0.796057,0.566821,0][0.00191725,-0.314304,1.34655][0,0.305417,0.952219][0.794517,0.605345,0][0.00191725,-0.314304,1.34655][0,0.305417,0.952219][0.794517,0.605345,0][0.00191718,-0.668634,1.45865][1.35172e-007,0.205947,0.978563][0.765482,0.604699,0][0.563668,-0.668634,1.34691][0.37448,0.205947,0.904075][0.767149,0.562989,0][0.520771,-0.314304,1.24335][0.364398,0.305417,0.879736][0.796057,0.566821,0][0.476637,0.0400268,1.1368][0.328913,0.511149,0.794067][0.825009,0.570792,0][0.0019173,0.040027,1.23122][2.03222e-007,0.511149,0.859492][0.8236,0.606039,0][0.0019173,0.040027,1.23122][2.03222e-007,0.511149,0.859492][0.8236,0.606039,0][0.00191725,-0.314304,1.34655][0,0.305417,0.952219][0.794517,0.605345,0][0.520771,-0.314304,1.24335][0.364398,0.305417,0.879736][0.796057,0.566821,0][0.476637,0.0400268,1.1368][0.328913,0.511149,0.794067][0.0787275,0.784083,0][0.360771,0.341323,0.857071][0.22464,0.809578,0.542329][0.0875627,0.809136,0][0.00191731,0.341323,0.928451][0,0.809578,0.587013][0.0622421,0.82279,0][0.00191731,0.341323,0.928451][0,0.809578,0.587013][0.0622421,0.82279,0][0.0019173,0.040027,1.23122][2.03222e-007,0.511149,0.859492][0.0452313,0.802146,0][0.476637,0.0400268,1.1368][0.328913,0.511149,0.794067][0.0787275,0.784083,0][0.360771,0.341323,0.857071][0.22464,0.809578,0.542329][0.0875627,0.809136,0][0.099983,0.659854,0.227474][0.162045,0.905923,0.391211][0.10506,0.862624,0][0.00191736,0.659854,0.24698][0,0.905923,0.423443][0.0981408,0.866356,0][0.00191736,0.659854,0.24698][0,0.905923,0.423443][0.0981408,0.866356,0][0.00191731,0.341323,0.928451][0,0.809578,0.587013][0.0622421,0.82279,0][0.360771,0.341323,0.857071][0.22464,0.809578,0.542329][0.0875627,0.809136,0][0.00191731,0.341323,0.787792][-2.59674e-007,-0.810574,-0.585636][0.156308,0.162404,0][0.00191735,0.618851,-0.00927755][-2.45855e-007,-1,0][0.166436,0.228009,0][0.306943,0.341322,0.727119][-0.224114,-0.810574,-0.541057][0.133438,0.170495,0][0.306943,0.341322,0.727119][-0.224114,-0.810574,-0.541057][0.133438,0.170495,0][0.405429,0.0400268,0.964886][-0.34011,-0.458393,-0.821098][0.122963,0.146357,0][0.00191729,0.0400268,1.04515][-2.32846e-007,-0.458393,-0.88875][0.153217,0.135654,0][0.00191729,0.0400268,1.04515][-2.32846e-007,-0.458393,-0.88875][0.153217,0.135654,0][0.00191731,0.341323,0.787792][-2.59674e-007,-0.810574,-0.585636][0.156308,0.162404,0][0.306943,0.341322,0.727119][-0.224114,-0.810574,-0.541057][0.133438,0.170495,0][0.405429,0.0400268,0.964886][-0.34011,-0.458393,-0.821098][0.64173,0.219976,0][0.442943,-0.314304,1.05545][-0.369206,-0.26305,-0.891343][0.637867,0.191342,0][0.00191724,-0.314304,1.14318][-2.23879e-007,-0.26305,-0.964782][0.67059,0.188277,0][0.00191724,-0.314304,1.14318][-2.23879e-007,-0.26305,-0.964782][0.67059,0.188277,0][0.00191729,0.0400268,1.04515][-2.32846e-007,-0.458393,-0.88875][0.67167,0.217173,0][0.405429,0.0400268,0.964886][-0.34011,-0.458393,-0.821098][0.64173,0.219976,0][0.442943,-0.314304,1.05545][-0.369206,-0.26305,-0.891343][0.637867,0.191342,0][0.479405,-0.668634,1.14348][-0.376652,-0.176835,-0.90932][0.634122,0.162756,0][0.00191717,-0.668634,1.23846][-1.26492e-007,-0.176835,-0.98424][0.669551,0.159438,0][0.00191717,-0.668634,1.23846][-1.26492e-007,-0.176835,-0.98424][0.669551,0.159438,0][0.00191724,-0.314304,1.14318][-2.23879e-007,-0.26305,-0.964782][0.67059,0.188277,0][0.442943,-0.314304,1.05545][-0.369206,-0.26305,-0.891343][0.637867,0.191342,0][0.479405,-0.668634,1.14348][-0.376652,-0.176835,-0.90932][0.634122,0.162756,0][0.49893,-1.19582,1.19062][-0.379448,-0.129768,-0.916068][0.632493,0.121837,0][0.00191709,-1.19582,1.28948][0,-0.129768,-0.991544][0.669371,0.118384,0][0.00191709,-1.19582,1.28948][0,-0.129768,-0.991544][0.669371,0.118384,0][0.00191717,-0.668634,1.23846][-1.26492e-007,-0.176835,-0.98424][0.669551,0.159438,0][0.479405,-0.668634,1.14348][-0.376652,-0.176835,-0.90932][0.634122,0.162756,0][0.49893,-1.19582,1.19062][-0.379448,-0.129768,-0.916068][0.632493,0.121837,0][0.525344,-1.61625,1.25439][-0.3569,-0.360844,-0.861634][0.629963,0.0887009,0][0.00191703,-1.61625,1.3585][-1.58561e-007,-0.360844,-0.932626][0.668801,0.085064,0][0.00191703,-1.61625,1.3585][-1.58561e-007,-0.360844,-0.932626][0.668801,0.085064,0][0.00191709,-1.19582,1.28948][0,-0.129768,-0.991544][0.669371,0.118384,0][0.49893,-1.19582,1.19062][-0.379448,-0.129768,-0.916068][0.632493,0.121837,0][0.525344,-1.61625,1.25439][-0.3569,-0.360844,-0.861634][0.629963,0.0887009,0][0.61836,-2.00582,1.47895][-0.263029,-0.726347,-0.635008][0.619839,0.0548149,0][0.00191699,-2.00582,1.60157][-1.74834e-007,-0.726347,-0.687328][0.665578,0.0505318,0][0.00191699,-2.00582,1.60157][-1.74834e-007,-0.726347,-0.687328][0.665578,0.0505318,0][0.00191703,-1.61625,1.3585][-1.58561e-007,-0.360844,-0.932626][0.668801,0.085064,0][0.525344,-1.61625,1.25439][-0.3569,-0.360844,-0.861634][0.629963,0.0887009,0][0.61836,-2.00582,1.47895][-0.263029,-0.726347,-0.635008][0.427884,0.783909,0][0.759358,-2.22919,1.81935][-0.337887,-0.469484,-0.815731][0.405419,0.80844,0][0.00191697,-2.22919,1.97001][0,-0.469485,-0.882941][0.368066,0.7662,0][0.00191697,-2.22919,1.97001][0,-0.469485,-0.882941][0.368066,0.7662,0][0.00191699,-2.00582,1.60157][-1.74834e-007,-0.726347,-0.687328][0.397484,0.749531,0][0.61836,-2.00582,1.47895][-0.263029,-0.726347,-0.635008][0.427884,0.783909,0][0.759358,-2.22919,1.81935][-0.337887,-0.469484,-0.815731][0.604082,0.0313158,0][0.75994,-2.44029,1.82075][-0.871886,-0.0110737,-1.30487][0.604251,0.0152668,0][0.00191693,-2.44029,1.97153][0.306165,-0.0110746,-1.5392][0.660495,0.01,0][0.00191693,-2.44029,1.97153][0.306165,-0.0110746,-1.5392][0.660495,0.01,0][0.00191697,-2.22919,1.97001][0,-0.469485,-0.882941][0.660283,0.0260529,0][0.759358,-2.22919,1.81935][-0.337887,-0.469484,-0.815731][0.604082,0.0313158,0][0.75994,-2.44029,1.82075][-0.871886,-0.0110737,-1.30487][0.281115,0.133667,0][0.893708,-2.44029,2.1437][0.87174,0.0130231,1.30465][0.30629,0.123146,0][0.00191694,-2.44029,2.32109][-0.306114,0.0130237,1.53894][0.320119,0.193287,0][0.00191694,-2.44029,2.32109][-0.306114,0.0130237,1.53894][0.320119,0.193287,0][0.00191693,-2.44029,1.97153][0.306165,-0.0110746,-1.5392][0.292869,0.193287,0][0.75994,-2.44029,1.82075][-0.871886,-0.0110737,-1.30487][0.281115,0.133667,0][1.40256,-2.44029,-1.40992][-1.30487,-0.0110723,0.871886][0.563064,0.0294366,0][1.40149,-2.22919,-1.40885][-1.92065,-1.20466,1.28334][0.546466,0.0298527,0][1.64973,-2.44029,-1.65709][1.30465,0.0130237,-0.87174][0.562676,0.01,0][1.64847,-2.22919,-1.65583][1.84747,1.2493,-1.23444][0.546078,0.010431,0][1.64973,-2.44029,-1.65709][1.30465,0.0130237,-0.87174][0.562676,0.01,0][1.40149,-2.22919,-1.40885][-1.92065,-1.20466,1.28334][0.546466,0.0298527,0][1.40149,-2.22919,-1.40885][-1.92065,-1.20466,1.28334][0.546466,0.0298527,0][1.14096,-2.00582,-1.14832][-1.80066,-2.24461,1.20316][0.52931,0.0506906,0][1.64847,-2.22919,-1.65583][1.84747,1.2493,-1.23444][0.546078,0.010431,0][1.14096,-2.00582,-1.14832][-1.80066,-2.24461,1.20316][0.52931,0.0506906,0][0.969084,-1.61625,-0.976444][-2.45092,-1.11858,1.63765][0.498946,0.064818,0][1.34196,-2.00582,-1.34932][1.65677,2.395,-1.10702][0.528994,0.0348843,0][1.34196,-2.00582,-1.34932][1.65677,2.395,-1.10702][0.528994,0.0348843,0][1.64847,-2.22919,-1.65583][1.84747,1.2493,-1.23444][0.546078,0.010431,0][1.14096,-2.00582,-1.14832][-1.80066,-2.24461,1.20316][0.52931,0.0506906,0][1.13976,-1.61625,-1.14712][2.39105,1.27084,-1.59765][0.498678,0.0513967,0][1.34196,-2.00582,-1.34932][1.65677,2.395,-1.10702][0.528994,0.0348843,0][0.969084,-1.61625,-0.976444][-2.45092,-1.11858,1.63765][0.498946,0.064818,0][0.969084,-1.61625,-0.976444][-2.45092,-1.11858,1.63765][0.498946,0.064818,0][0.920277,-1.19582,-0.927637][-2.60008,-0.401393,1.73732][0.465962,0.0693164,0][1.13976,-1.61625,-1.14712][2.39105,1.27084,-1.59765][0.498678,0.0513967,0][1.08234,-1.19582,-1.0897][2.59324,0.471129,-1.73275][0.465707,0.0565725,0][1.13976,-1.61625,-1.14712][2.39105,1.27084,-1.59765][0.498678,0.0513967,0][0.920277,-1.19582,-0.927637][-2.60008,-0.401393,1.73732][0.465962,0.0693164,0][0.920277,-1.19582,-0.927637][-2.60008,-0.401393,1.73732][0.465962,0.0693164,0][0.884201,-0.668634,-0.891561][-3.35453,-0.925522,2.91792][0.424563,0.0729815,0][1.08234,-1.19582,-1.0897][2.59324,0.471129,-1.73275][0.465707,0.0565725,0][1.0399,-0.668635,-1.04726][3.31913,1.07287,-2.88237][0.424318,0.0607382,0][1.08234,-1.19582,-1.0897][2.59324,0.471129,-1.73275][0.465707,0.0565725,0][0.884201,-0.668634,-0.891561][-3.35453,-0.925522,2.91792][0.424563,0.0729815,0][-1.6459,-2.44029,-1.65709][-1.30465,0.0130253,-0.87174][0.346051,0.267443,0][-1.64464,-2.22919,-1.65583][-1.84747,1.2493,-1.23444][0.362653,0.267253,0][-1.39873,-2.44029,-1.40992][1.30487,-0.0110735,0.871887][0.346389,0.28688,0][-1.64464,-2.22919,-1.65583][-1.84747,1.2493,-1.23444][0.362653,0.267253,0][-1.33813,-2.00582,-1.34932][-1.65677,2.395,-1.10702][0.380638,0.291051,0][-1.39765,-2.22919,-1.40885][1.92065,-1.20466,1.28334][0.362991,0.286676,0][-1.39765,-2.22919,-1.40885][1.92065,-1.20466,1.28334][0.362991,0.286676,0][-1.39873,-2.44029,-1.40992][1.30487,-0.0110735,0.871887][0.346389,0.28688,0][-1.64464,-2.22919,-1.65583][-1.84747,1.2493,-1.23444][0.362653,0.267253,0][-1.13712,-2.00582,-1.14832][1.80066,-2.24461,1.20316][0.380913,0.306858,0][-1.39765,-2.22919,-1.40885][1.92065,-1.20466,1.28334][0.362991,0.286676,0][-1.33813,-2.00582,-1.34932][-1.65677,2.395,-1.10702][0.380638,0.291051,0][-1.33813,-2.00582,-1.34932][-1.65677,2.395,-1.10702][0.380638,0.291051,0][-1.13593,-1.61625,-1.14712][-2.39105,1.27084,-1.59765][0.411551,0.30642,0][-1.13712,-2.00582,-1.14832][1.80066,-2.24461,1.20316][0.380913,0.306858,0][-0.96525,-1.61624,-0.976444][2.45092,-1.11858,1.63765][0.411784,0.319842,0][-1.13712,-2.00582,-1.14832][1.80066,-2.24461,1.20316][0.380913,0.306858,0][-1.13593,-1.61625,-1.14712][-2.39105,1.27084,-1.59765][0.411551,0.30642,0][-1.13593,-1.61625,-1.14712][-2.39105,1.27084,-1.59765][0.411551,0.30642,0][-1.07851,-1.19582,-1.0897][-2.59324,0.471129,-1.73275][0.444692,0.31036,0][-0.96525,-1.61624,-0.976444][2.45092,-1.11858,1.63765][0.411784,0.319842,0][-0.916443,-1.19582,-0.927637][2.60008,-0.401394,1.73732][0.718562,0.839042,0][-0.96525,-1.61624,-0.976444][2.45092,-1.11858,1.63765][0.704542,0.869478,0][-1.07851,-1.19582,-1.0897][-2.59324,0.471129,-1.73275][0.701184,0.834252,0][-1.07851,-1.19582,-1.0897][-2.59324,0.471129,-1.73275][0.701184,0.834252,0][-1.03606,-0.668634,-1.04726][-3.31913,1.07287,-2.88238][0.716753,0.795534,0][-0.916443,-1.19582,-0.927637][2.60008,-0.401394,1.73732][0.718562,0.839042,0][-0.880366,-0.668634,-0.891561][3.35453,-0.925524,2.91792][0.48642,0.325221,0][-0.916443,-1.19582,-0.927637][2.60008,-0.401394,1.73732][0.444913,0.323105,0][-1.03606,-0.668634,-1.04726][-3.31913,1.07287,-2.88238][0.486207,0.312977,0][0.884201,-0.668634,-0.891561][-3.35453,-0.925522,2.91792][0.0561974,0.287201,0][0.479406,-0.668634,-1.16204][-1.10336,-0.775317,2.66375][0.0638607,0.249791,0][1.0399,-0.668635,-1.04726][3.31913,1.07287,-2.88237][0.072031,0.294025,0][0.479406,-0.668634,-1.16204][-1.10336,-0.775317,2.66375][0.0638607,0.249791,0][0.00191717,-0.668635,-1.25701][-4.25512e-007,-0.775318,2.88322][0.0566977,0.212189,0][0.563668,-0.668634,-1.36546][0.814142,1.02658,-3.1751][0.0810466,0.250014,0][0.563668,-0.668634,-1.36546][0.814142,1.02658,-3.1751][0.0810466,0.250014,0][1.0399,-0.668635,-1.04726][3.31913,1.07287,-2.88237][0.072031,0.294025,0][0.479406,-0.668634,-1.16204][-1.10336,-0.775317,2.66375][0.0638607,0.249791,0][-1.03606,-0.668634,-1.04726][-3.31913,1.07287,-2.88238][0.789923,0.863203,0][-0.559834,-0.668634,-1.36546][-1.18984,0.896002,-3.1802][0.797206,0.907534,0][-0.880366,-0.668634,-0.891561][3.35453,-0.925524,2.91792][0.773834,0.869401,0][-0.475571,-0.668634,-1.16204][1.10336,-0.775318,2.66375][0.780025,0.907082,0][-0.880366,-0.668634,-0.891561][3.35453,-0.925524,2.91792][0.773834,0.869401,0][-0.559834,-0.668634,-1.36546][-1.18984,0.896002,-3.1802][0.797206,0.907534,0][0.00191717,-0.668635,-1.25701][-4.25512e-007,-0.775318,2.88322][0.771393,0.944375,0][-0.475571,-0.668634,-1.16204][1.10336,-0.775318,2.66375][0.780025,0.907082,0][-0.559834,-0.668634,-1.36546][-1.18984,0.896002,-3.1802][0.797206,0.907534,0][0.563668,-0.668634,-1.36546][0.814142,1.02658,-3.1751][0.441249,0.634692,0][0.00191717,-0.668635,-1.25701][-4.25512e-007,-0.775318,2.88322][0.449027,0.679013,0][0.00191713,-1.03843,-1.4772][0.030098,0.0603636,-0.997723][0.415275,0.681603,0][-0.559834,-0.668634,-1.36546][-1.18984,0.896002,-3.1802][0.447919,0.72161,0][0.00191713,-1.03843,-1.4772][0.030098,0.0603636,-0.997723][0.415275,0.681603,0][0.00191717,-0.668635,-1.25701][-4.25512e-007,-0.775318,2.88322][0.449027,0.679013,0][-0.0752999,0.626604,-0.0220667][0,-1.0618,-1.15758][0.786099,0.854559,0][-0.0752999,1.13053,-0.484297][0,-1.0618,-1.15758][0.786099,0.800776,0][0.0659272,1.13053,-0.484297][0,-1.0618,-1.15758][0.797206,0.800776,0][0.0659272,1.13053,-0.484297][0,-1.0618,-1.15758][0.797206,0.800776,0][0.0659272,0.626604,-0.0220666][0,-1.0618,-1.15758][0.797206,0.854559,0][-0.0752999,0.626604,-0.0220667][0,-1.0618,-1.15758][0.786099,0.854559,0][0.0659272,0.626604,-0.0220666][0,-1.0618,-1.15758][0.617554,0.267253,0][0.0659272,1.13053,-0.484297][0,-1.0618,-1.15758][0.670656,0.275784,0][0.0659272,1.18834,-0.345679][1.91797,0,0][0.664926,0.286114,0][0.0659272,1.18834,-0.345679][1.91797,0,0][0.664926,0.286114,0][0.0659272,0.897602,-0.0789996][2.6064,0,0][0.634289,0.281192,0][0.0659272,0.626604,-0.0220666][0,-1.0618,-1.15758][0.617554,0.267253,0][0.0659272,0.897602,-0.0789996][2.6064,0,0][0.86958,0.656708,0][0.0659272,1.18834,-0.345679][1.91797,0,0][0.86958,0.687738,0][-0.0752999,1.18834,-0.345679][-2.04183e-007,1.0618,1.15758][0.858473,0.687738,0][-0.0752999,1.18834,-0.345679][-2.04183e-007,1.0618,1.15758][0.858473,0.687738,0][-0.0752999,0.897602,-0.0789996][0,1.0618,1.15758][0.858473,0.656708,0][0.0659272,0.897602,-0.0789996][2.6064,0,0][0.86958,0.656708,0][-0.0752999,0.897602,-0.0789996][0,1.0618,1.15758][0.617546,0.537732,0][-0.0752999,1.18834,-0.345679][-2.04183e-007,1.0618,1.15758][0.58674,0.541449,0][-0.0752999,1.13053,-0.484297][0,-1.0618,-1.15758][0.581419,0.530903,0][-0.0752999,1.13053,-0.484297][0,-1.0618,-1.15758][0.581419,0.530903,0][-0.0752999,0.626604,-0.0220667][0,-1.0618,-1.15758][0.634815,0.52446,0][-0.0752999,0.897602,-0.0789996][0,1.0618,1.15758][0.617546,0.537732,0][-0.0752999,1.13053,-0.484297][0,-1.0618,-1.15758][0.505695,0.562254,0][-0.0752999,1.89844,-0.521111][-1.32438e-006,-0.075218,-1.56899][0.505695,0.621732,0][0.0659272,1.89844,-0.521111][-1.17121e-006,-0.075218,-1.56899][0.494588,0.621732,0][0.0659272,1.89844,-0.521111][-1.17121e-006,-0.075218,-1.56899][0.494588,0.621732,0][0.0659272,1.13053,-0.484297][0,-1.0618,-1.15758][0.494588,0.562254,0][-0.0752999,1.13053,-0.484297][0,-1.0618,-1.15758][0.505695,0.562254,0][0.0659272,1.13053,-0.484297][0,-1.0618,-1.15758][0.670656,0.275784,0][0.0659272,1.89844,-0.521111][-1.17121e-006,-0.075218,-1.56899][0.710396,0.321357,0][0.0659272,1.86603,-0.378167][1.8417,0,0][0.699997,0.326333,0][0.0659272,1.86603,-0.378167][1.8417,0,0][0.699997,0.326333,0][0.0659272,1.18834,-0.345679][1.91797,0,0][0.664926,0.286114,0][0.0659272,1.13053,-0.484297][0,-1.0618,-1.15758][0.670656,0.275784,0][0.0659272,1.18834,-0.345679][1.91797,0,0][0.143869,0.644418,0][0.0659272,1.86603,-0.378167][1.8417,0,0][0.143869,0.591928,0][-0.0752999,1.86603,-0.378167][0,0.0752175,1.56899][0.154977,0.591928,0][-0.0752999,1.86603,-0.378167][0,0.0752175,1.56899][0.154977,0.591928,0][-0.0752999,1.18834,-0.345679][-2.04183e-007,1.0618,1.15758][0.154977,0.644418,0][0.0659272,1.18834,-0.345679][1.91797,0,0][0.143869,0.644418,0][-0.0752999,1.18834,-0.345679][-2.04183e-007,1.0618,1.15758][0.58674,0.541449,0][-0.0752999,1.86603,-0.378167][0,0.0752175,1.56899][0.550119,0.580262,0][-0.0752999,1.89844,-0.521111][-1.32438e-006,-0.075218,-1.56899][0.539922,0.574883,0][-0.0752999,1.89844,-0.521111][-1.32438e-006,-0.075218,-1.56899][0.539922,0.574883,0][-0.0752999,1.13053,-0.484297][0,-1.0618,-1.15758][0.581419,0.530903,0][-0.0752999,1.18834,-0.345679][-2.04183e-007,1.0618,1.15758][0.58674,0.541449,0][-0.0752999,1.89844,-0.521111][-1.32438e-006,-0.075218,-1.56899][0.505695,0.621732,0][-0.0752999,2.60852,-0.138797][1.4593e-007,0.744661,-1.38307][0.505695,0.681079,0][0.0659272,2.60852,-0.138797][0,0.744661,-1.38307][0.494588,0.681079,0][0.0659272,2.60852,-0.138797][0,0.744661,-1.38307][0.494588,0.681079,0][0.0659272,1.89844,-0.521111][-1.17121e-006,-0.075218,-1.56899][0.494588,0.621732,0][-0.0752999,1.89844,-0.521111][-1.32438e-006,-0.075218,-1.56899][0.505695,0.621732,0][0.0659272,1.89844,-0.521111][-1.17121e-006,-0.075218,-1.56899][0.710396,0.321357,0][0.0659272,2.60852,-0.138797][0,0.744661,-1.38307][0.721461,0.383814,0][0.0659272,2.52777,-0.0218749][1.68127,0,0][0.710308,0.384538,0][0.0659272,2.52777,-0.0218749][1.68127,0,0][0.710308,0.384538,0][0.0659272,1.86603,-0.378167][1.8417,0,0][0.699997,0.326333,0][0.0659272,1.89844,-0.521111][-1.17121e-006,-0.075218,-1.56899][0.710396,0.321357,0][0.0659272,1.86603,-0.378167][1.8417,0,0][0.143869,0.591928,0][0.0659272,2.52777,-0.0218749][1.68127,0,0][0.143869,0.536621,0][-0.0752999,2.52777,-0.0218749][3.05602e-007,-0.744661,1.38307][0.154977,0.536621,0][-0.0752999,2.52777,-0.0218749][3.05602e-007,-0.744661,1.38307][0.154977,0.536621,0][-0.0752999,1.86603,-0.378167][0,0.0752175,1.56899][0.154977,0.591928,0][0.0659272,1.86603,-0.378167][1.8417,0,0][0.143869,0.591928,0][-0.0752999,1.86603,-0.378167][0,0.0752175,1.56899][0.550119,0.580262,0][-0.0752999,2.52777,-0.0218749][3.05602e-007,-0.744661,1.38307][0.537533,0.638019,0][-0.0752999,2.60852,-0.138797][1.4593e-007,0.744661,-1.38307][0.526418,0.636858,0][-0.0752999,2.60852,-0.138797][1.4593e-007,0.744661,-1.38307][0.526418,0.636858,0][-0.0752999,1.89844,-0.521111][-1.32438e-006,-0.075218,-1.56899][0.539922,0.574883,0][-0.0752999,1.86603,-0.378167][0,0.0752175,1.56899][0.550119,0.580262,0][-0.0752999,2.60852,-0.138797][1.4593e-007,0.744661,-1.38307][0.505695,0.681079,0][-0.0752996,3.59034,0.713447][0,1.02968,-1.18624][0.505695,0.766518,0][0.0659275,3.59034,0.713447][0,1.02968,-1.18624][0.494588,0.766518,0][0.0659275,3.59034,0.713447][0,1.02968,-1.18624][0.494588,0.766518,0][0.0659272,2.60852,-0.138797][0,0.744661,-1.38307][0.494588,0.681079,0][-0.0752999,2.60852,-0.138797][1.4593e-007,0.744661,-1.38307][0.505695,0.681079,0][0.0659272,2.60852,-0.138797][0,0.744661,-1.38307][0.721461,0.383814,0][0.0659275,3.59034,0.713447][0,1.02968,-1.18624][0.716797,0.485963,0][0.0659275,3.30573,0.653416][2.6346,2.43199e-007,-1.35382e-006][0.706613,0.465478,0][0.0659275,3.30573,0.653416][2.6346,2.43199e-007,-1.35382e-006][0.706613,0.465478,0][0.0659272,2.52777,-0.0218749][1.68127,0,0][0.710308,0.384538,0][0.0659272,2.60852,-0.138797][0,0.744661,-1.38307][0.721461,0.383814,0][0.0659272,2.52777,-0.0218749][1.68127,0,0][0.143869,0.536621,0][0.0659275,3.30573,0.653416][2.6346,2.43199e-007,-1.35382e-006][0.143869,0.468922,0][-0.0752996,3.30573,0.653416][0,-1.02968,1.18623][0.154977,0.468922,0][-0.0752996,3.30573,0.653416][0,-1.02968,1.18623][0.154977,0.468922,0][-0.0752999,2.52777,-0.0218749][3.05602e-007,-0.744661,1.38307][0.154977,0.536621,0][0.0659272,2.52777,-0.0218749][1.68127,0,0][0.143869,0.536621,0][-0.0752999,2.52777,-0.0218749][3.05602e-007,-0.744661,1.38307][0.537533,0.638019,0][-0.0752996,3.30573,0.653416][0,-1.02968,1.18623][0.538053,0.719041,0][-0.0752996,3.59034,0.713447][0,1.02968,-1.18624][0.527074,0.739112,0][-0.0752996,3.59034,0.713447][0,1.02968,-1.18624][0.527074,0.739112,0][-0.0752999,2.60852,-0.138797][1.4593e-007,0.744661,-1.38307][0.526418,0.636858,0][-0.0752999,2.52777,-0.0218749][3.05602e-007,-0.744661,1.38307][0.537533,0.638019,0][-0.0752996,3.59034,0.713447][0,1.02968,-1.18624][0.915631,0.72606,0][-0.0752999,2.27572,1.11879][0,0.462833,1.50106][0.915631,0.824307,0][0.0659272,2.27572,1.11879][0,0.462833,1.50106][0.904523,0.824307,0][0.0659272,2.27572,1.11879][0,0.462833,1.50106][0.904523,0.824307,0][0.0659275,3.59034,0.713447][0,1.02968,-1.18624][0.904523,0.72606,0][-0.0752996,3.59034,0.713447][0,1.02968,-1.18624][0.915631,0.72606,0][0.0659275,3.59034,0.713447][0,1.02968,-1.18624][0.716797,0.485963,0][0.0659272,2.27572,1.11879][0,0.462833,1.50106][0.627647,0.424648,0][0.0659272,2.25592,0.97711][1.73102,-4.20439e-007,1.22226e-007][0.63542,0.416514,0][0.0659272,2.25592,0.97711][1.73102,-4.20439e-007,1.22226e-007][0.63542,0.416514,0][0.0659275,3.30573,0.653416][2.6346,2.43199e-007,-1.35382e-006][0.706613,0.465478,0][0.0659275,3.59034,0.713447][0,1.02968,-1.18624][0.716797,0.485963,0][0.0659275,3.30573,0.653416][2.6346,2.43199e-007,-1.35382e-006][0.474836,0.755856,0][0.0659272,2.25592,0.97711][1.73102,-4.20439e-007,1.22226e-007][0.474836,0.677398,0][-0.0752999,2.25592,0.97711][0,-0.46283,-1.50106][0.485944,0.677398,0][-0.0752999,2.25592,0.97711][0,-0.46283,-1.50106][0.485944,0.677398,0][-0.0752996,3.30573,0.653416][0,-1.02968,1.18623][0.485943,0.755856,0][0.0659275,3.30573,0.653416][2.6346,2.43199e-007,-1.35382e-006][0.474836,0.755856,0][-0.0752996,3.30573,0.653416][0,-1.02968,1.18623][0.538053,0.719041,0][-0.0752999,2.25592,0.97711][0,-0.46283,-1.50106][0.611111,0.672906,0][-0.0752999,2.27572,1.11879][0,0.462833,1.50106][0.618559,0.681339,0][-0.0752999,2.27572,1.11879][0,0.462833,1.50106][0.618559,0.681339,0][-0.0752996,3.59034,0.713447][0,1.02968,-1.18624][0.527074,0.739112,0][-0.0752996,3.30573,0.653416][0,-1.02968,1.18623][0.538053,0.719041,0][-0.0752999,2.27572,1.11879][0,0.462833,1.50106][0.915631,0.824307,0][-0.0752999,1.37228,1.09949][0,-0.0335614,1.57044][0.915631,0.894937,0][0.0659272,1.37228,1.09949][0,-0.0335614,1.57044][0.904523,0.894937,0][0.0659272,1.37228,1.09949][0,-0.0335614,1.57044][0.904523,0.894937,0][0.0659272,2.27572,1.11879][0,0.462833,1.50106][0.904523,0.824307,0][-0.0752999,2.27572,1.11879][0,0.462833,1.50106][0.915631,0.824307,0][0.0659272,2.27572,1.11879][0,0.462833,1.50106][0.627647,0.424648,0][0.0659272,1.37228,1.09949][0,-0.0335614,1.57044][0.584755,0.367976,0][0.0659272,1.42506,0.959355][1.90969,0,0][0.595974,0.364395,0][0.0659272,1.42506,0.959355][1.90969,0,0][0.595974,0.364395,0][0.0659272,2.25592,0.97711][1.73102,-4.20439e-007,1.22226e-007][0.63542,0.416514,0][0.0659272,2.27572,1.11879][0,0.462833,1.50106][0.627647,0.424648,0][0.0659272,2.25592,0.97711][1.73102,-4.20439e-007,1.22226e-007][0.474836,0.677398,0][0.0659272,1.42506,0.959355][1.90969,0,0][0.474836,0.612443,0][-0.0752999,1.42506,0.959355][0,0.0335608,-1.57044][0.485944,0.612443,0][-0.0752999,1.42506,0.959355][0,0.0335608,-1.57044][0.485944,0.612443,0][-0.0752999,2.25592,0.97711][0,-0.46283,-1.50106][0.485944,0.677398,0][0.0659272,2.25592,0.97711][1.73102,-4.20439e-007,1.22226e-007][0.474836,0.677398,0][-0.0752999,2.25592,0.97711][0,-0.46283,-1.50106][0.611111,0.672906,0][-0.0752999,1.42506,0.959355][0,0.0335608,-1.57044][0.652569,0.622373,0][-0.0752999,1.37228,1.09949][0,-0.0335614,1.57044][0.66364,0.626392,0][-0.0752999,1.37228,1.09949][0,-0.0335614,1.57044][0.66364,0.626392,0][-0.0752999,2.27572,1.11879][0,0.462833,1.50106][0.618559,0.681339,0][-0.0752999,2.25592,0.97711][0,-0.46283,-1.50106][0.611111,0.672906,0][-0.0752999,1.37228,1.09949][0,-0.0335614,1.57044][0.915631,0.894937,0][-0.0752999,0.719056,0.550249][0,-1.0109,1.20229][0.915631,0.951595,0][0.0659272,0.719056,0.550249][0,-1.0109,1.20229][0.904523,0.951595,0][0.0659272,0.719056,0.550249][0,-1.0109,1.20229][0.904523,0.951595,0][0.0659272,1.37228,1.09949][0,-0.0335614,1.57044][0.904523,0.894937,0][-0.0752999,1.37228,1.09949][0,-0.0335614,1.57044][0.915631,0.894937,0][0.0659272,1.37228,1.09949][0,-0.0335614,1.57044][0.584755,0.367976,0][0.0659272,0.719056,0.550249][0,-1.0109,1.20229][0.586761,0.300882,0][0.0659272,0.846423,0.472827][1.89628,0,0][0.597752,0.304961,0][0.0659272,0.846423,0.472827][1.89628,0,0][0.597752,0.304961,0][0.0659272,1.42506,0.959355][1.90969,0,0][0.595974,0.364395,0][0.0659272,1.37228,1.09949][0,-0.0335614,1.57044][0.584755,0.367976,0][0.0659272,1.42506,0.959355][1.90969,0,0][0.474836,0.612443,0][0.0659272,0.846423,0.472827][1.89628,0,0][0.474836,0.562254,0][-0.0752999,0.846423,0.472827][0,1.01089,-1.20229][0.485944,0.562254,0][-0.0752999,0.846423,0.472827][0,1.01089,-1.20229][0.485944,0.562254,0][-0.0752999,1.42506,0.959355][0,0.0335608,-1.57044][0.485944,0.612443,0][0.0659272,1.42506,0.959355][1.90969,0,0][0.474836,0.612443,0][-0.0752999,1.42506,0.959355][0,0.0335608,-1.57044][0.652569,0.622373,0][-0.0752999,0.846423,0.472827][0,1.01089,-1.20229][0.653123,0.562916,0][-0.0752999,0.719056,0.550249][0,-1.0109,1.20229][0.664265,0.559271,0][-0.0752999,0.719056,0.550249][0,-1.0109,1.20229][0.664265,0.559271,0][-0.0752999,1.37228,1.09949][0,-0.0335614,1.57044][0.66364,0.626392,0][-0.0752999,1.42506,0.959355][0,0.0335608,-1.57044][0.652569,0.622373,0][-0.0752999,0.719056,0.550249][0,-1.0109,1.20229][0.728181,0.869478,0][-0.0752999,0.618068,0.100151][0,-1.53269,0.343888][0.728181,0.833197,0][0.0659272,0.618068,0.100151][0,-1.53269,0.343888][0.739289,0.833197,0][0.0659272,0.618068,0.100151][0,-1.53269,0.343888][0.739289,0.833197,0][0.0659272,0.719056,0.550249][0,-1.0109,1.20229][0.739289,0.869478,0][-0.0752999,0.719056,0.550249][0,-1.0109,1.20229][0.728181,0.869478,0][0.0659272,0.719056,0.550249][0,-1.0109,1.20229][0.586761,0.300882,0][0.0659272,0.618068,0.100151][0,-1.53269,0.343888][0.609598,0.27269,0][0.0659272,0.804333,0.285235][2.57373,0,0][0.60727,0.293211,0][0.0659272,0.804333,0.285235][2.57373,0,0][0.60727,0.293211,0][0.0659272,0.846423,0.472827][1.89628,0,0][0.597752,0.304961,0][0.0659272,0.719056,0.550249][0,-1.0109,1.20229][0.586761,0.300882,0][0.0659272,0.846423,0.472827][1.89628,0,0][0.296051,0.782638,0][0.0659272,0.804333,0.285235][2.57373,0,0][0.296051,0.796822,0][-0.0752999,0.804333,0.285235][0,1.53269,-0.343892][0.284943,0.796822,0][-0.0752999,0.804333,0.285235][0,1.53269,-0.343892][0.284943,0.796822,0][-0.0752999,0.846423,0.472827][0,1.01089,-1.20229][0.284943,0.782638,0][0.0659272,0.846423,0.472827][1.89628,0,0][0.296051,0.782638,0][-0.0752999,0.846423,0.472827][0,1.01089,-1.20229][0.653123,0.562916,0][-0.0752999,0.804333,0.285235][0,1.53269,-0.343892][0.644073,0.550802,0][-0.0752999,0.618068,0.100151][0,-1.53269,0.343888][0.642551,0.530205,0][-0.0752999,0.618068,0.100151][0,-1.53269,0.343888][0.642551,0.530205,0][-0.0752999,0.719056,0.550249][0,-1.0109,1.20229][0.664265,0.559271,0][-0.0752999,0.846423,0.472827][0,1.01089,-1.20229][0.653123,0.562916,0][-0.0752999,0.618068,0.100151][0,-1.53269,0.343888][0.747933,0.869478,0][-0.0752999,1.43291,0.277538][0,0.334131,-1.53485][0.747933,0.804105,0][0.0659272,1.43291,0.277538][0,0.334131,-1.53485][0.759041,0.804105,0][0.0659272,1.43291,0.277538][0,0.334131,-1.53485][0.759041,0.804105,0][0.0659272,0.618068,0.100151][0,-1.53269,0.343888][0.759041,0.869478,0][-0.0752999,0.618068,0.100151][0,-1.53269,0.343888][0.747933,0.869478,0][0.0659272,0.618068,0.100151][0,-1.53269,0.343888][0.609598,0.27269,0][0.0659272,1.43291,0.277538][0,0.334131,-1.53485][0.638416,0.33161,0][0.0659272,1.25506,0.383359][2.3905,0,0][0.62321,0.325803,0][0.0659272,1.25506,0.383359][2.3905,0,0][0.62321,0.325803,0][0.0659272,0.804333,0.285235][2.57373,0,0][0.60727,0.293211,0][0.0659272,0.618068,0.100151][0,-1.53269,0.343888][0.609598,0.27269,0][0.0659272,0.804333,0.285235][2.57373,0,0][0.26211,0.457329,0][0.0659272,1.25506,0.383359][2.3905,0,0][0.29827,0.457329,0][-0.0752999,1.25506,0.383359][0,-0.334139,1.53485][0.29827,0.468437,0][-0.0752999,1.25506,0.383359][0,-0.334139,1.53485][0.29827,0.468437,0][-0.0752999,0.804333,0.285235][0,1.53269,-0.343892][0.26211,0.468437,0][0.0659272,0.804333,0.285235][2.57373,0,0][0.26211,0.457329,0][-0.0752999,0.804333,0.285235][0,1.53269,-0.343892][0.644073,0.550802,0][-0.0752999,1.25506,0.383359][0,-0.334139,1.53485][0.626868,0.582743,0][-0.0752999,1.43291,0.277538][0,0.334131,-1.53485][0.611446,0.58795,0][-0.0752999,1.43291,0.277538][0,0.334131,-1.53485][0.611446,0.58795,0][-0.0752999,0.618068,0.100151][0,-1.53269,0.343888][0.642551,0.530205,0][-0.0752999,0.804333,0.285235][0,1.53269,-0.343892][0.644073,0.550802,0][-0.0752999,1.43291,0.277538][0,0.334131,-1.53485][0.421408,0.870196,0][-0.0752999,1.36276,0.51872][-3.70268e-007,1.5083,0.438657][0.421408,0.850662,0][0.0659272,1.36276,0.51872][-2.49529e-007,1.5083,0.438656][0.432516,0.850662,0][0.0659272,1.36276,0.51872][-2.49529e-007,1.5083,0.438656][0.432516,0.850662,0][0.0659272,1.43291,0.277538][0,0.334131,-1.53485][0.432516,0.870196,0][-0.0752999,1.43291,0.277538][0,0.334131,-1.53485][0.421408,0.870196,0][0.0659272,1.43291,0.277538][0,0.334131,-1.53485][0.638416,0.33161,0][0.0659272,1.36276,0.51872][-2.49529e-007,1.5083,0.438656][0.620115,0.339051,0][0.0659272,1.17067,0.67352][0.609479,0,0][0.601193,0.334755,0][0.0659272,1.17067,0.67352][0.609479,0,0][0.601193,0.334755,0][0.0659272,1.25506,0.383359][2.3905,0,0][0.62321,0.325803,0][0.0659272,1.43291,0.277538][0,0.334131,-1.53485][0.638416,0.33161,0][0.0659272,1.25506,0.383359][2.3905,0,0][0.964578,0.323397,0][0.0659272,1.17067,0.67352][0.609479,0,0][0.964578,0.346898,0][-0.0752999,1.17067,0.67352][1.33605e-007,-1.50831,-0.438652][0.95347,0.346898,0][-0.0752999,1.17067,0.67352][1.33605e-007,-1.50831,-0.438652][0.95347,0.346898,0][-0.0752999,1.25506,0.383359][0,-0.334139,1.53485][0.95347,0.323397,0][0.0659272,1.25506,0.383359][2.3905,0,0][0.964578,0.323397,0][-0.0752999,1.25506,0.383359][0,-0.334139,1.53485][0.626868,0.582743,0][-0.0752999,1.17067,0.67352][1.33605e-007,-1.50831,-0.438652][0.648516,0.592552,0][-0.0752999,1.36276,0.51872][-3.70268e-007,1.5083,0.438657][0.62944,0.596103,0][-0.0752999,1.36276,0.51872][-3.70268e-007,1.5083,0.438657][0.62944,0.596103,0][-0.0752999,1.43291,0.277538][0,0.334131,-1.53485][0.611446,0.58795,0][-0.0752999,1.25506,0.383359][0,-0.334139,1.53485][0.626868,0.582743,0][-0.0752999,1.36276,0.51872][-3.70268e-007,1.5083,0.438657][0.920283,0.346898,0][-0.0752999,2.33963,0.45142][0,-0.107962,-1.56708][0.920283,0.269884,0][0.0659272,2.33963,0.45142][1.20624e-007,-0.107962,-1.56708][0.931391,0.269884,0][0.0659272,2.33963,0.45142][1.20624e-007,-0.107962,-1.56708][0.931391,0.269884,0][0.0659272,1.36276,0.51872][-2.49529e-007,1.5083,0.438656][0.931391,0.346898,0][-0.0752999,1.36276,0.51872][-3.70268e-007,1.5083,0.438657][0.920283,0.346898,0][0.0659272,1.36276,0.51872][-2.49529e-007,1.5083,0.438656][0.620115,0.339051,0][0.0659272,2.33963,0.45142][1.20624e-007,-0.107962,-1.56708][0.671932,0.396026,0][0.0659272,2.82521,0.559529][0.28785,0,0][0.688958,0.431255,0][0.0659272,2.82521,0.559529][0.28785,0,0][0.688958,0.431255,0][0.0659272,1.17067,0.67352][0.609479,0,0][0.601193,0.334755,0][0.0659272,1.36276,0.51872][-2.49529e-007,1.5083,0.438656][0.620115,0.339051,0][0.0659272,1.17067,0.67352][0.609479,0,0][0.642623,0.892833,0][0.0659272,2.82521,0.559529][0.28785,0,0][0.642623,0.765044,0][-0.0752999,2.82521,0.559529][0,0.107965,1.56708][0.653731,0.765044,0][-0.0752999,2.82521,0.559529][0,0.107965,1.56708][0.653731,0.765044,0][-0.0752999,1.17067,0.67352][1.33605e-007,-1.50831,-0.438652][0.653731,0.892833,0][0.0659272,1.17067,0.67352][0.609479,0,0][0.642623,0.892833,0][-0.0752999,1.17067,0.67352][1.33605e-007,-1.50831,-0.438652][0.648516,0.592552,0][-0.0752999,2.82521,0.559529][0,0.107965,1.56708][0.557036,0.685537,0][-0.0752999,2.33963,0.45142][0,-0.107962,-1.56708][0.57543,0.651003,0][-0.0752999,2.33963,0.45142][0,-0.107962,-1.56708][0.57543,0.651003,0][-0.0752999,1.36276,0.51872][-3.70268e-007,1.5083,0.438657][0.62944,0.596103,0][-0.0752999,1.17067,0.67352][1.33605e-007,-1.50831,-0.438652][0.648516,0.592552,0][-0.0752999,2.33963,0.45142][0,-0.107962,-1.56708][0.631978,0.816436,0][-0.0752999,1.44251,-0.0467499][0,-0.76258,1.37327][0.631978,0.897144,0][0.0659272,1.44251,-0.0467499][0,-0.76258,1.37327][0.62087,0.897144,0][0.0659272,1.44251,-0.0467499][0,-0.76258,1.37327][0.62087,0.897144,0][0.0659272,2.33963,0.45142][1.20624e-007,-0.107962,-1.56708][0.62087,0.816436,0][-0.0752999,2.33963,0.45142][0,-0.107962,-1.56708][0.631978,0.816436,0][0.0659272,2.33963,0.45142][1.20624e-007,-0.107962,-1.56708][0.671932,0.396026,0][0.0659272,1.44251,-0.0467499][0,-0.76258,1.37327][0.658888,0.316379,0][0.0659272,1.36015,-0.254025][0.685669,0,0][0.667656,0.301185,0][0.0659272,1.36015,-0.254025][0.685669,0,0][0.667656,0.301185,0][0.0659272,2.82521,0.559529][0.28785,0,0][0.688958,0.431255,0][0.0659272,2.33963,0.45142][1.20624e-007,-0.107962,-1.56708][0.671932,0.396026,0][0.0659272,2.82521,0.559529][0.28785,0,0][0.31648,0.586749,0][0.0659272,1.36015,-0.254025][0.685669,0,0][0.316481,0.454945,0][-0.0752999,1.36015,-0.254025][0,0.762581,-1.37327][0.327588,0.454945,0][-0.0752999,1.36015,-0.254025][0,0.762581,-1.37327][0.327588,0.454945,0][-0.0752999,2.82521,0.559529][0,0.107965,1.56708][0.327588,0.586749,0][0.0659272,2.82521,0.559529][0.28785,0,0][0.31648,0.586749,0][-0.0752999,2.82521,0.559529][0,0.107965,1.56708][0.557036,0.685537,0][-0.0752999,1.36015,-0.254025][0,0.762581,-1.37327][0.583421,0.556402,0][-0.0752999,1.44251,-0.0467499][0,-0.76258,1.37327][0.591586,0.571928,0][-0.0752999,1.44251,-0.0467499][0,-0.76258,1.37327][0.591586,0.571928,0][-0.0752999,2.33963,0.45142][0,-0.107962,-1.56708][0.57543,0.651003,0][-0.0752999,2.82521,0.559529][0,0.107965,1.56708][0.557036,0.685537,0][-0.0752999,1.44251,-0.0467499][0,-0.76258,1.37327][0.957686,0.687738,0][-0.0752999,1.35585,0.226179][0,1.49714,0.475376][0.957686,0.665557,0][0.0659272,1.35585,0.226179][0,1.49714,0.475376][0.968794,0.665557,0][0.0659272,1.35585,0.226179][0,1.49714,0.475376][0.968794,0.665557,0][0.0659272,1.44251,-0.0467499][0,-0.76258,1.37327][0.968794,0.687738,0][-0.0752999,1.44251,-0.0467499][0,-0.76258,1.37327][0.957686,0.687738,0][0.0659272,1.44251,-0.0467499][0,-0.76258,1.37327][0.658888,0.316379,0][0.0659272,1.35585,0.226179][0,1.49714,0.475376][0.637824,0.324351,0][0.0659272,1.26488,0.0460255][2.36652,0,0][0.644498,0.309949,0][0.0659272,1.26488,0.0460255][2.36652,0,0][0.644498,0.309949,0][0.0659272,1.36015,-0.254025][0.685669,0,0][0.667656,0.301185,0][0.0659272,1.44251,-0.0467499][0,-0.76258,1.37327][0.658888,0.316379,0][0.0659272,1.36015,-0.254025][0.685669,0,0][0.432516,0.924982,0][0.0659272,1.26488,0.0460255][2.36652,0,0][0.432516,0.949367,0][-0.0752999,1.26488,0.0460255][-8.9695e-007,-1.49714,-0.475373][0.421408,0.949367,0][-0.0752999,1.26488,0.0460255][-8.9695e-007,-1.49714,-0.475373][0.421408,0.949367,0][-0.0752999,1.36015,-0.254025][0,0.762581,-1.37327][0.421408,0.924982,0][0.0659272,1.36015,-0.254025][0.685669,0,0][0.432516,0.924982,0][-0.0752999,1.36015,-0.254025][0,0.762581,-1.37327][0.583421,0.556402,0][-0.0752999,1.26488,0.0460255][-8.9695e-007,-1.49714,-0.475373][0.606218,0.566066,0][-0.0752999,1.35585,0.226179][0,1.49714,0.475376][0.612322,0.580719,0][-0.0752999,1.35585,0.226179][0,1.49714,0.475376][0.612322,0.580719,0][-0.0752999,1.44251,-0.0467499][0,-0.76258,1.37327][0.591586,0.571928,0][-0.0752999,1.36015,-0.254025][0,0.762581,-1.37327][0.583421,0.556402,0][-0.0752999,1.35585,0.226179][0,1.49714,0.475376][0.759041,0.896713,0][-0.0752999,0.626604,-0.0220667][0,-1.0618,-1.15758][0.6996,0.896713,0][0.0659272,0.626604,-0.0220666][0,-1.0618,-1.15758][0.6996,0.885606,0][0.0659272,0.626604,-0.0220666][0,-1.0618,-1.15758][0.6996,0.885606,0][0.0659272,1.35585,0.226179][0,1.49714,0.475376][0.759041,0.885606,0][-0.0752999,1.35585,0.226179][0,1.49714,0.475376][0.759041,0.896713,0][0.0659272,1.35585,0.226179][0,1.49714,0.475376][0.637824,0.324351,0][0.0659272,0.626604,-0.0220666][0,-1.0618,-1.15758][0.617554,0.267253,0][0.0659272,0.897602,-0.0789996][2.6064,0,0][0.634289,0.281192,0][0.0659272,0.897602,-0.0789996][2.6064,0,0][0.634289,0.281192,0][0.0659272,1.26488,0.0460255][2.36652,0,0][0.644498,0.309949,0][0.0659272,1.35585,0.226179][0,1.49714,0.475376][0.637824,0.324351,0][0.0659272,1.26488,0.0460255][2.36652,0,0][0.86958,0.52886,0][0.0659272,0.897602,-0.0789996][2.6064,0,0][0.86958,0.558797,0][-0.0752999,0.897602,-0.0789996][0,1.0618,1.15758][0.858473,0.558797,0][-0.0752999,0.897602,-0.0789996][0,1.0618,1.15758][0.858473,0.558797,0][-0.0752999,1.26488,0.0460255][-8.9695e-007,-1.49714,-0.475373][0.858473,0.52886,0][0.0659272,1.26488,0.0460255][2.36652,0,0][0.86958,0.52886,0][-0.0752999,1.26488,0.0460255][-8.9695e-007,-1.49714,-0.475373][0.606218,0.566066,0][-0.0752999,0.897602,-0.0789996][0,1.0618,1.15758][0.617546,0.537732,0][-0.0752999,0.626604,-0.0220667][0,-1.0618,-1.15758][0.634815,0.52446,0][-0.0752999,0.626604,-0.0220667][0,-1.0618,-1.15758][0.634815,0.52446,0][-0.0752999,1.35585,0.226179][0,1.49714,0.475376][0.612322,0.580719,0][-0.0752999,1.26488,0.0460255][-8.9695e-007,-1.49714,-0.475373][0.606218,0.566066,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/Lightbulb.mesh b/shareddata/charcustom/hats/fonts/Lightbulb.mesh deleted file mode 100644 index 248505b..0000000 --- a/shareddata/charcustom/hats/fonts/Lightbulb.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -624 -[-0.16743,-0.327519,-0.40638][-0.353199,-0.384911,-0.852698][0.675781,0.117188,-0.116257][-0.310132,-0.327519,-0.31103][-0.652627,-0.384911,-0.652627][0.675781,0.148438,-0.214816][-0.460291,0.0729345,-0.461188][-0.64362,-0.414133,-0.64362][0.578125,0.101563,-0.318525][-0.460291,0.0729345,-0.461188][-0.64362,-0.414133,-0.64362][0.578125,0.101563,-0.318525][-0.248696,0.0729344,-0.602572][-0.348325,-0.414133,-0.84093][0.578125,0.0585938,-0.172384][-0.16743,-0.327519,-0.40638][-0.353199,-0.384911,-0.852698][0.675781,0.117188,-0.116257][0.623939,0.635877,0.258072][0.88178,0.298429,0.365245][0.445313,0.316406,0.43031][0.477753,0.635877,0.476855][0.674886,0.298428,0.674885][0.445313,0.382813,0.329345][0.512804,0.345107,0.511906][0.707044,0.0132929,0.707044][0.511719,0.394531,0.353553][0.512804,0.345107,0.511906][0.707044,0.0132929,0.707044][0.511719,0.394531,0.353553][0.669735,0.345107,0.277041][0.923798,0.0132928,0.38265][0.511719,0.324219,0.46194][0.623939,0.635877,0.258072][0.88178,0.298429,0.365245][0.445313,0.316406,0.43031][0.000897694,0.345107,0.723944][1.19727e-007,0.0132926,0.999912][0.511719,0.457031,0][0.277939,0.345107,0.668837][0.38265,0.0132929,0.923798][0.511719,0.441406,0.191342][0.25897,0.635877,0.623041][0.365246,0.298429,0.88178][0.445313,0.425781,0.17824][0.25897,0.635877,0.623041][0.365246,0.298429,0.88178][0.445313,0.425781,0.17824][0.000897726,0.635877,0.674375][0,0.298429,0.954432][0.445313,0.441406,0][0.000897694,0.345107,0.723944][1.19727e-007,0.0132926,0.999912][0.511719,0.457031,0][-0.232111,0.772345,-0.562533][-0.325709,0.524976,-0.78633][0.410156,0.0703125,-0.16093][-0.429646,0.772345,-0.430544][-0.601831,0.524976,-0.601831][0.410156,0.113281,-0.29736][-0.36142,0.893508,-0.362317][-0.499509,0.707801,-0.499508][0.382813,0.132813,-0.250239][-0.36142,0.893508,-0.362317][-0.499509,0.707801,-0.499508][0.382813,0.132813,-0.250239][-0.195187,0.893508,-0.473391][-0.270332,0.707801,-0.652639][0.382813,0.0976563,-0.135428][-0.232111,0.772345,-0.562533][-0.325709,0.524976,-0.78633][0.410156,0.0703125,-0.16093][0.250491,0.0729344,-0.602572][0.348325,-0.414133,-0.84093][0.578125,0.0585938,0.172384][0.462086,0.0729345,-0.461189][0.64362,-0.414133,-0.64362][0.578125,0.101563,0.318525][0.311927,-0.327519,-0.31103][0.652627,-0.384911,-0.652627][0.675781,0.148438,0.214816][0.311927,-0.327519,-0.31103][0.652627,-0.384911,-0.652627][0.675781,0.148438,0.214816][0.169226,-0.327519,-0.40638][0.353199,-0.384911,-0.852698][0.675781,0.117188,0.116257][0.250491,0.0729344,-0.602572][0.348325,-0.414133,-0.84093][0.578125,0.0585938,0.172384][-0.651321,0.0729345,0][-0.910216,-0.414133,0][0.578125,0.242188,-0.450462][-0.601674,0.0729345,-0.249593][-0.84093,-0.414133,-0.348325][0.578125,0.164063,-0.416173][-0.405482,-0.327519,-0.168328][-0.852698,-0.384911,-0.353199][0.675781,0.191406,-0.28067][-0.405482,-0.327519,-0.168328][-0.852698,-0.384911,-0.353199][0.675781,0.191406,-0.28067][-0.438965,-0.327519,-1.46683e-007][-0.922954,-0.384911,0][0.675781,0.242188,-0.303795][-0.651321,0.0729345,0][-0.910216,-0.414133,0][0.578125,0.242188,-0.450462][0.246627,-0.965871,0.176325][1.35231,-0.00144864,1.27655][0.6083,0.688659,0.312711][0.283461,-0.719567,0.109308][2.59547,0.148542,0.828524][0.569948,0.973616,0.359415][0.194272,-0.719567,0.232066][1.33849,0.0407036,1.07731][0.640199,0.973616,0.246328][0.194272,-0.719567,0.232066][1.33849,0.0407036,1.07731][0.640199,0.973616,0.246328][0.163394,-0.965871,0.254501][0.970792,-0.0275618,1.0336][0.653037,0.688659,0.207176][0.246627,-0.965871,0.176325][1.35231,-0.00144864,1.27655][0.6083,0.688659,0.312711][-0.288513,-0.960096,-0.0028613][3.00199,0.06237,-0.0483578][0.505756,0.69534,-0.365821][-0.268272,-0.705625,-0.10902][1.1485,2.47468e-007,0.218978][0.445005,0.989746,-0.340156][-0.288513,-0.705625,-0.00286175][3.03692,-5.21966e-007,-0.191204][0.505756,0.989746,-0.365821][-0.288513,-0.705625,-0.00286175][3.03692,-5.21966e-007,-0.191204][0.505756,0.989746,-0.365821][-0.233412,-0.960096,0.166723][2.41721,-2.75652e-006,-1.7562][0.602804,0.69534,-0.295955][-0.288513,-0.960096,-0.0028613][3.00199,0.06237,-0.0483578][0.505756,0.69534,-0.365821][0.233412,-0.960096,-0.172443][-2.59164,-0.000921227,1.58469][0.408709,0.69534,0.295955][0.252869,-0.705625,-0.141775][-2.77201,0.0637778,1.22947][0.42626,0.989746,0.320626][0.183863,-0.705625,-0.225198][-1.67136,-0.0531688,2.11177][0.378519,0.989746,0.23313][0.183863,-0.705625,-0.225198][-1.67136,-0.0531688,2.11177][0.378519,0.989746,0.23313][0.154639,-0.960096,-0.24643][-0.979475,0.0254762,1.04282][0.366369,0.69534,0.196075][0.233412,-0.960096,-0.172443][-2.59164,-0.000921227,1.58469][0.408709,0.69534,0.295955][-0.246627,-0.719567,-0.182046][-1.4746,0.0740289,-0.538414][0.403214,0.973616,-0.312711][-0.246627,-0.965871,-0.182046][-1.37657,-6.31965e-007,-0.756612][0.403214,0.688659,-0.312711][-0.283462,-0.965871,-0.115029][-2.91863,0.0421445,-1.04847][0.441566,0.688659,-0.359416][-0.283462,-0.965871,-0.115029][-2.91863,0.0421445,-1.04847][0.441566,0.688659,-0.359416][-0.304848,-0.719567,-0.00286176][-3.03914,0.115569,-0.0793935][0.505756,0.973616,-0.386533][-0.246627,-0.719567,-0.182046][-1.4746,0.0740289,-0.538414][0.403214,0.973616,-0.312711][0.163395,-0.719567,-0.260221][0.685634,0.0160083,-1.57783][0.358476,0.973616,0.207176][0.194273,-0.965871,-0.237786][0.683008,-0.027566,-1.24268][0.371316,0.688659,0.246329][0.0942034,-0.965871,-0.292787][0.778766,-0.0158284,-1.53491][0.33984,0.688659,0.119445][0.0942034,-0.965871,-0.292787][0.778766,-0.0158284,-1.53491][0.33984,0.688659,0.119445][0.0570303,-0.719567,-0.302328][0.521632,0.0276846,-1.31769][0.33438,0.973616,0.0723116][0.163395,-0.719567,-0.260221][0.685634,0.0160083,-1.57783][0.358476,0.973616,0.207176][0.603469,0.0729345,0.249593][0.84093,-0.414133,0.348325][0.578125,0.316406,0.416173][0.462086,0.0729345,0.461188][0.64362,-0.414133,0.64362][0.578125,0.378906,0.318525][0.311927,-0.327519,0.311029][0.652627,-0.384911,0.652627][0.675781,0.335938,0.214816][0.311927,-0.327519,0.311029][0.652627,-0.384911,0.652627][0.675781,0.335938,0.214816][0.407277,-0.327519,0.168328][0.852698,-0.384911,0.353199][0.675781,0.292969,0.28067][0.603469,0.0729345,0.249593][0.84093,-0.414133,0.348325][0.578125,0.316406,0.416173][-0.352048,0.992346,0.146195][-0.470992,0.860294,0.195091][0.359375,0.285156,-0.243765][-0.381128,0.992346,0][-0.506284,0.862367,2.76365e-007][0.359375,0.242188,-0.26385][-0.511497,0.893508,0][-0.706411,0.707801,3.22098e-007][0.382813,0.242188,-0.353891][-0.511497,0.893508,0][-0.706411,0.707801,3.22098e-007][0.382813,0.242188,-0.353891][-0.472493,0.893508,0.196085][-0.652639,0.707801,0.270332][0.382813,0.300781,-0.326952][-0.352048,0.992346,0.146195][-0.470992,0.860294,0.195091][0.359375,0.285156,-0.243765][-0.405482,-0.327519,0.168328][-0.852698,-0.384911,0.353199][0.675781,0.292969,-0.28067][-0.310132,-0.327519,0.311029][-0.652627,-0.384911,0.652627][0.675781,0.335938,-0.214816][-0.460291,0.0729345,0.461188][-0.64362,-0.414133,0.64362][0.578125,0.378906,-0.318525][-0.460291,0.0729345,0.461188][-0.64362,-0.414133,0.64362][0.578125,0.378906,-0.318525][-0.601674,0.0729345,0.249593][-0.84093,-0.414133,0.348325][0.578125,0.316406,-0.416172][-0.405482,-0.327519,0.168328][-0.852698,-0.384911,0.353199][0.675781,0.292969,-0.28067][0.183863,-0.705625,0.219478][-0.891183,0.00439032,-1.59996][0.632995,0.989746,0.233129][0.233412,-0.960096,0.166723][-2.44761,0.0518339,-1.74969][0.602804,0.69534,0.295955][0.089155,-0.960096,0.271532][-0.917945,0.0987633,-2.86836][0.662784,0.69534,0.113044][0.089155,-0.960096,0.271532][-0.917945,0.0987633,-2.86836][0.662784,0.69534,0.113044][0.0539733,-0.705625,0.28056][-0.608982,-0.0382545,-1.29499][0.66795,0.989746,0.0684355][0.183863,-0.705625,0.219478][-0.891183,0.00439032,-1.59996][0.632995,0.989746,0.233129][0.233412,-0.960096,-0.172443][-2.59164,-0.000921227,1.58469][0.408709,0.69534,0.295955][0.286227,-0.705625,0.0333887][-2.93956,-0.0353615,-0.373824][0.526501,0.989746,0.362922][0.252869,-0.705625,-0.141775][-2.77201,0.0637778,1.22947][0.42626,0.989746,0.320626][0.000897469,0.992346,-0.382025][-4.1064e-007,0.860294,-0.509798][0.359375,0.125,0][0.147092,0.992346,-0.352946][0.193746,0.862367,-0.467745][0.359375,0.132813,0.100971][0.196982,0.893508,-0.473391][0.270332,0.707801,-0.652639][0.382813,0.0976563,0.135428][0.196982,0.893508,-0.473391][0.270332,0.707801,-0.652639][0.382813,0.0976563,0.135428][0.000897469,0.893508,-0.512394][-3.07457e-007,0.707801,-0.706412][0.382813,0.0859375,0][0.000897469,0.992346,-0.382025][-4.1064e-007,0.860294,-0.509798][0.359375,0.125,0][0.169226,-0.327519,-0.40638][0.353199,-0.384911,-0.852698][0.675781,0.117188,0.116257][0.000897662,-0.327519,-0.439862][0,-0.384911,-0.922954][0.675781,0.109375,0][0.00089763,0.0729344,-0.652219][-1.38505e-007,-0.414133,-0.910216][0.578125,0.0429688,0][0.00089763,0.0729344,-0.652219][-1.38505e-007,-0.414133,-0.910216][0.578125,0.0429688,0][0.250491,0.0729344,-0.602572][0.348325,-0.414133,-0.84093][0.578125,0.0585938,0.172384][0.169226,-0.327519,-0.40638][0.353199,-0.384911,-0.852698][0.675781,0.117188,0.116257][0.0457079,-1.08103,-0.0209476][-1.2307,2.03112,1.39342][0.495406,0.555425,0.0579554][0.136513,-0.997686,0.051159][-0.691214,0.715485,0.0434447][0.536671,0.651851,0.173092][0.128675,-0.997687,-0.0735481][-1.1242,1.62162,0.796276][0.465304,0.651851,0.163154][-0.00919107,-0.997686,0.143665][0.278705,1.50971,-1.32484][0.589609,0.651851,-0.0116539][-0.00307729,-1.08103,0.0461988][0.240725,2.74883,-2.33553][0.533832,0.555425,-0.00390192][-0.0397684,-1.08103,0.0260326][1.51576,1.99344,-1.42988][0.522291,0.555425,-0.0504244][-0.0397684,-1.08103,0.0260326][1.51576,1.99344,-1.42988][0.522291,0.555425,-0.0504244][-0.142194,-0.997686,0.0336773][0.473271,0.634097,-0.572304][0.526666,0.651851,-0.180295][-0.00919107,-0.997686,0.143665][0.278705,1.50971,-1.32484][0.589609,0.651851,-0.0116539][-0.16743,-0.327519,0.40638][-0.353199,-0.384911,0.852698][0.675781,0.363281,-0.116258][0.000897597,-0.327519,0.439862][-1.22173e-007,-0.384911,0.922954][0.675781,0.371094,0][0.000897662,0.0729346,0.652219][0,-0.414133,0.910216][0.578125,0.4375,0][0.000897662,0.0729346,0.652219][0,-0.414133,0.910216][0.578125,0.4375,0][-0.248696,0.0729346,0.602572][-0.348325,-0.414133,0.84093][0.578125,0.421875,-0.172384][-0.16743,-0.327519,0.40638][-0.353199,-0.384911,0.852698][0.675781,0.363281,-0.116258][0.124248,-1.01163,0.0874114][0,-1.88496,0][0.557417,0.635722,0.15754][0.203254,-1.01163,0.144812][0,-1.25663,0][0.590265,0.635722,0.257716][0.0776356,-1.01163,0.236079][0,-1.25664,0][0.642495,0.635722,0.0984382][0.0776356,-1.01163,0.236079][0,-1.25664,0][0.642495,0.635722,0.0984382][0.0474583,-1.01163,0.143202][0,-1.88495,0][0.589344,0.635722,0.0601748][0.124248,-1.01163,0.0874114][0,-1.88496,0][0.557417,0.635722,0.15754][0.363215,0.893508,-0.362318][0.499508,0.707801,-0.499509][0.382813,0.132813,0.250238][0.196982,0.893508,-0.473391][0.270332,0.707801,-0.652639][0.382813,0.0976563,0.135428][0.147092,0.992346,-0.352946][0.193746,0.862367,-0.467745][0.359375,0.132813,0.100971][0.147092,0.992346,-0.352946][0.193746,0.862367,-0.467745][0.359375,0.132813,0.100971][0.27103,0.992346,-0.270133][0.360481,0.860295,-0.360481][0.359375,0.160156,0.18657][0.363215,0.893508,-0.362318][0.499508,0.707801,-0.499509][0.382813,0.132813,0.250238][-0.195187,0.893508,0.473391][-0.270332,0.707801,0.652639][0.382813,0.382813,-0.135428][0.00089779,0.893508,0.512394][0,0.707802,0.706411][0.382813,0.394531,1.30734e-007][0.00089779,0.992346,0.382025][0,0.862367,0.506284][0.359375,0.355469,1.28697e-007][0.00089779,0.992346,0.382025][0,0.862367,0.506284][0.359375,0.355469,1.28697e-007][-0.145297,0.992346,0.352945][-0.195091,0.860294,0.470992][0.359375,0.347656,-0.100971][-0.195187,0.893508,0.473391][-0.270332,0.707801,0.652639][0.382813,0.382813,-0.135428][-0.304848,-0.719567,-0.00286176][-3.03914,0.115569,-0.0793935][0.505756,0.973616,-0.386533][-0.304848,-0.965871,-0.0028613][-3.10139,-1.72778e-007,-0.0971787][0.505756,0.688659,-0.386533][-0.295256,-0.965871,0.0730079][-2.9869,-0.00162242,0.848612][0.549174,0.688659,-0.374371][-0.295256,-0.965871,0.0730079][-2.9869,-0.00162242,0.848612][0.549174,0.688659,-0.374371][-0.267186,-0.719567,0.143918][-2.73391,0.0682712,1.4123][0.589754,0.973616,-0.338779][-0.304848,-0.719567,-0.00286176][-3.03914,0.115569,-0.0793935][0.505756,0.973616,-0.386533][-0.0891561,-0.960096,0.271531][0.955607,0.0375337,-2.84103][0.662783,0.69534,-0.113046][-0.233412,-0.705625,0.166722][0.564037,0,-0.776326][0.602804,0.989746,-0.295955][-0.0891561,-0.705625,0.271531][0.923294,0,-1.2708][0.662783,0.989746,-0.113046][0.724842,0.345107,-2.09082e-007][0.999912,0.0132928,-1.94556e-007][0.511719,0.242188,0.5][0.669735,0.345107,-0.277042][0.923798,0.0132927,-0.38265][0.511719,0.15625,0.46194][0.623939,0.635877,-0.258072][0.88178,0.298428,-0.365246][0.445313,0.164063,0.43031][0.623939,0.635877,-0.258072][0.88178,0.298428,-0.365246][0.445313,0.164063,0.43031][0.675272,0.635877,-2.51923e-007][0.954432,0.298428,0][0.445313,0.242188,0.465764][0.724842,0.345107,-2.09082e-007][0.999912,0.0132928,-1.94556e-007][0.511719,0.242188,0.5][0.407277,-0.327519,-0.168328][0.852698,-0.384911,-0.353199][0.675781,0.191406,0.28067][0.311927,-0.327519,-0.31103][0.652627,-0.384911,-0.652627][0.675781,0.148438,0.214816][0.462086,0.0729345,-0.461189][0.64362,-0.414133,-0.64362][0.578125,0.101563,0.318525][0.462086,0.0729345,-0.461189][0.64362,-0.414133,-0.64362][0.578125,0.101563,0.318525][0.603469,0.0729345,-0.249593][0.84093,-0.414133,-0.348325][0.578125,0.164063,0.416173][0.407277,-0.327519,-0.168328][0.852698,-0.384911,-0.353199][0.675781,0.191406,0.28067][-0.304848,-0.719567,-0.00286176][-3.03914,0.115569,-0.0793935][0.505756,0.973616,-0.386533][-0.283462,-0.965871,-0.115029][-2.91863,0.0421445,-1.04847][0.441566,0.688659,-0.359416][-0.304848,-0.965871,-0.0028613][-3.10139,-1.72778e-007,-0.0971787][0.505756,0.688659,-0.386533][-0.0474584,-1.01163,-0.148923][0,-1.56625,-1.91709e-006][0.422169,0.635722,-0.0601751][-0.0470001,-1.01163,-0.24966][0,-1.51236,-1.78916e-006][0.36452,0.635722,-0.059594][0.0776361,-1.01163,-0.2418][0,-2.57626,-3.24159e-006][0.369019,0.635722,0.0984388][0.0776361,-1.01163,-0.2418][0,-2.57626,-3.24159e-006][0.369019,0.635722,0.0984388][0.0474587,-1.01163,-0.148923][0,-1.88495,-2.41937e-006][0.422169,0.635722,0.0601752][-0.0474584,-1.01163,-0.148923][0,-1.56625,-1.91709e-006][0.422169,0.635722,-0.0601751][0.0313262,-1.08103,0.0350218][-0.387482,1.36624,-1.19263][0.527436,0.555425,0.03972][-0.00919107,-0.997686,0.143665][0.278705,1.50971,-1.32484][0.589609,0.651851,-0.0116539][0.0935603,-0.997687,0.110279][-0.268953,0.948249,-0.827764][0.570503,0.651851,0.11863][-0.475958,0.635877,-0.476855][-0.674885,0.298429,-0.674885][0.445313,0.0976563,-0.329345][-0.257175,0.635877,-0.623041][-0.365246,0.298429,-0.88178][0.445313,0.0546875,-0.17824][-0.276144,0.345107,-0.668838][-0.38265,0.0132926,-0.923798][0.511719,0.0390625,-0.191342][-0.276144,0.345107,-0.668838][-0.38265,0.0132926,-0.923798][0.511719,0.0390625,-0.191342][-0.511009,0.345107,-0.511906][-0.707044,0.0132925,-0.707044][0.511719,0.0859375,-0.353553][-0.475958,0.635877,-0.476855][-0.674885,0.298429,-0.674885][0.445313,0.0976563,-0.329345][-0.723047,0.345107,0][-0.999912,0.0132927,1.99545e-007][0.511719,0.242188,-0.5][-0.66794,0.345107,0.277042][-0.923798,0.0132927,0.38265][0.511719,0.324219,-0.46194][-0.622143,0.635877,0.258072][-0.88178,0.298428,0.365246][0.445313,0.316406,-0.43031][-0.622143,0.635877,0.258072][-0.88178,0.298428,0.365246][0.445313,0.316406,-0.43031][-0.673477,0.635877,0][-0.954432,0.298429,2.08117e-007][0.445313,0.242188,-0.465764][-0.723047,0.345107,0][-0.999912,0.0132927,1.99545e-007][0.511719,0.242188,-0.5][-0.475957,0.635877,0.476855][-0.674885,0.298429,0.674885][0.445313,0.382813,-0.329345][-0.622143,0.635877,0.258072][-0.88178,0.298428,0.365246][0.445313,0.316406,-0.43031][-0.66794,0.345107,0.277042][-0.923798,0.0132927,0.38265][0.511719,0.324219,-0.46194][-0.66794,0.345107,0.277042][-0.923798,0.0132927,0.38265][0.511719,0.324219,-0.46194][-0.511008,0.345107,0.511906][-0.707044,0.0132929,0.707044][0.511719,0.394531,-0.353553][-0.475957,0.635877,0.476855][-0.674885,0.298429,0.674885][0.445313,0.382813,-0.329345][0.000897726,0.635877,0.674375][0,0.298429,0.954432][0.445313,0.441406,0][-0.257174,0.635877,0.623041][-0.365245,0.298429,0.88178][0.445313,0.425781,-0.17824][-0.276144,0.345107,0.668837][-0.38265,0.0132928,0.923798][0.511719,0.441406,-0.191342][-0.276144,0.345107,0.668837][-0.38265,0.0132928,0.923798][0.511719,0.441406,-0.191342][0.000897694,0.345107,0.723944][1.19727e-007,0.0132926,0.999912][0.511719,0.457031,0][0.000897726,0.635877,0.674375][0,0.298429,0.954432][0.445313,0.441406,0][-0.057031,-0.719567,0.296605][0.114433,0.0154697,1.41492][0.677133,0.973616,-0.0723126][-0.0190849,-0.965871,0.301389][0.215566,0.0663278,1.70513][0.67987,0.688659,-0.0241988][0.0942028,-0.965871,0.287067][0.162612,0.0393523,1.5621][0.671674,0.688659,0.119445][0.0942028,-0.965871,0.287067][0.162612,0.0393523,1.5621][0.671674,0.688659,0.119445][0.0942027,-0.719567,0.287067][0.0988735,0,1.56768][0.671674,0.973616,0.119444][-0.057031,-0.719567,0.296605][0.114433,0.0154697,1.41492][0.677133,0.973616,-0.0723126][-0.246627,-0.965871,0.176325][-1.63183,-0.0187538,0.89269][0.608299,0.688659,-0.312712][-0.194274,-0.719567,0.232065][-0.978702,0.0248227,0.80955][0.640198,0.973616,-0.24633][-0.267186,-0.719567,0.143918][-2.73391,0.0682712,1.4123][0.589754,0.973616,-0.338779][-0.267186,-0.719567,0.143918][-2.73391,0.0682712,1.4123][0.589754,0.973616,-0.338779][-0.295256,-0.965871,0.0730079][-2.9869,-0.00162242,0.848612][0.549174,0.688659,-0.374371][-0.246627,-0.965871,0.176325][-1.63183,-0.0187538,0.89269][0.608299,0.688659,-0.312712][0.0474583,-1.01163,0.143202][0,-1.88495,0][0.589344,0.635722,0.0601748][-0.0104617,-1.09497,0.0520751][-0.414197,-2.93353,2.23964][0.537195,0.539295,-0.0132649][0.0407537,-1.09497,0.0354343][1.16261,-2.30384,1.49851][0.527672,0.539295,0.0516736][0.0407537,-1.09497,0.0354343][1.16261,-2.30384,1.49851][0.527672,0.539295,0.0516736][0.124248,-1.01163,0.0874114][0,-1.88496,0][0.557417,0.635722,0.15754][0.0474583,-1.01163,0.143202][0,-1.88495,0][0.589344,0.635722,0.0601748][0.0172811,-1.09497,-0.0560461][0.986473,-2.17005,-1.31243][0.47532,0.539295,0.0219115][-0.0474584,-1.01163,-0.148923][0,-1.56625,-1.91709e-006][0.422169,0.635722,-0.0601751][0.0474587,-1.01163,-0.148923][0,-1.88495,-2.41937e-006][0.422169,0.635722,0.0601752][0.0180616,-0.705625,-0.290808][-0.130881,-0.12963,2.9864][0.340973,0.989746,0.0229012][-0.0891554,-0.960096,-0.277253][1.00465,0.0310418,2.86182][0.34873,0.69534,-0.113045][0.0539742,-0.960096,-0.286279][-0.148651,0.015181,2.03203][0.343564,0.69534,0.0684366][0.0539742,-0.960096,-0.286279][-0.148651,0.015181,2.03203][0.343564,0.69534,0.0684366][0.183863,-0.705625,-0.225198][-1.67136,-0.0531688,2.11177][0.378519,0.989746,0.23313][0.0180616,-0.705625,-0.290808][-0.130881,-0.12963,2.9864][0.340973,0.989746,0.0229012][0.0570303,-0.719567,-0.302328][0.521632,0.0276846,-1.31769][0.33438,0.973616,0.0723116][0.0246865,-0.719567,-0.396424][-0.0655812,-2.76261,-0.0752249][0.280531,0.973616,0.0313012][0.168011,-0.719567,-0.359615][-1.89844e-006,-2.70168,5.89198e-006][0.301596,0.973616,0.21303][0.168011,-0.719567,-0.359615][-1.89844e-006,-2.70168,5.89198e-006][0.301596,0.973616,0.21303][0.163395,-0.719567,-0.260221][0.685634,0.0160083,-1.57783][0.358476,0.973616,0.207176][0.0570303,-0.719567,-0.302328][0.521632,0.0276846,-1.31769][0.33438,0.973616,0.0723116][-0.248696,0.0729344,-0.602572][-0.348325,-0.414133,-0.84093][0.578125,0.0585938,-0.172384][0.00089763,0.0729344,-0.652219][-1.38505e-007,-0.414133,-0.910216][0.578125,0.0429688,0][0.000897662,-0.327519,-0.439862][0,-0.384911,-0.922954][0.675781,0.109375,0][0.000897662,-0.327519,-0.439862][0,-0.384911,-0.922954][0.675781,0.109375,0][-0.16743,-0.327519,-0.40638][-0.353199,-0.384911,-0.852698][0.675781,0.117188,-0.116257][-0.248696,0.0729344,-0.602572][-0.348325,-0.414133,-0.84093][0.578125,0.0585938,-0.172384][0.277939,0.345107,-0.668838][0.382649,0.0132924,-0.923798][0.511719,0.0390625,0.191342][0.000897533,0.345107,-0.723945][-2.69386e-007,0.0132926,-0.999912][0.511719,0.0234375,0][0.000897501,0.635877,-0.674375][-2.52714e-007,0.298429,-0.954432][0.445313,0.0390625,0][0.000897501,0.635877,-0.674375][-2.52714e-007,0.298429,-0.954432][0.445313,0.0390625,0][0.258969,0.635877,-0.623041][0.365245,0.298429,-0.88178][0.445313,0.0546875,0.17824][0.277939,0.345107,-0.668838][0.382649,0.0132924,-0.923798][0.511719,0.0390625,0.191342][0.477752,0.635877,-0.476855][0.674885,0.298428,-0.674886][0.445313,0.0976563,0.329345][0.623939,0.635877,-0.258072][0.88178,0.298428,-0.365246][0.445313,0.164063,0.43031][0.669735,0.345107,-0.277042][0.923798,0.0132927,-0.38265][0.511719,0.15625,0.46194][0.669735,0.345107,-0.277042][0.923798,0.0132927,-0.38265][0.511719,0.15625,0.46194][0.512804,0.345107,-0.511906][0.707044,0.0132925,-0.707044][0.511719,0.0859375,0.353553][0.477752,0.635877,-0.476855][0.674885,0.298428,-0.674886][0.445313,0.0976563,0.329345][-0.0453677,-0.997687,-0.142488][0.101044,1.53113,1.27837][0.425852,0.651851,-0.0575241][-0.0151901,-1.08103,-0.0496103][-0.686028,1.37585,1.45757][0.479003,0.555425,-0.0192604][0.0457079,-1.08103,-0.0209476][-1.2307,2.03112,1.39342][0.495406,0.555425,0.0579554][0.0457079,-1.08103,-0.0209476][-1.2307,2.03112,1.39342][0.495406,0.555425,0.0579554][0.128675,-0.997687,-0.0735481][-1.1242,1.62162,0.796276][0.465304,0.651851,0.163154][-0.0453677,-0.997687,-0.142488][0.101044,1.53113,1.27837][0.425852,0.651851,-0.0575241][-0.0891554,-0.960096,-0.277253][1.00465,0.0310418,2.86182][0.34873,0.69534,-0.113045][0.0180616,-0.705625,-0.290808][-0.130881,-0.12963,2.9864][0.340973,0.989746,0.0229012][-0.183863,-0.705625,-0.225199][0.75592,-0.0576382,1.65712][0.378518,0.989746,-0.233129][-0.183863,-0.705625,-0.225199][0.75592,-0.0576382,1.65712][0.378518,0.989746,-0.233129][-0.233412,-0.960096,-0.172443][2.44015,0.118576,1.77287][0.408709,0.69534,-0.295955][-0.0891554,-0.960096,-0.277253][1.00465,0.0310418,2.86182][0.34873,0.69534,-0.113045][-0.673477,0.635877,0][-0.954432,0.298429,2.08117e-007][0.445313,0.242188,-0.465764][-0.622144,0.635877,-0.258072][-0.88178,0.298428,-0.365245][0.445313,0.164063,-0.43031][-0.66794,0.345107,-0.277042][-0.923798,0.0132927,-0.382649][0.511719,0.15625,-0.46194][-0.66794,0.345107,-0.277042][-0.923798,0.0132927,-0.382649][0.511719,0.15625,-0.46194][-0.723047,0.345107,0][-0.999912,0.0132927,1.99545e-007][0.511719,0.242188,-0.5][-0.673477,0.635877,0][-0.954432,0.298429,2.08117e-007][0.445313,0.242188,-0.465764][0.283461,-0.719567,0.109308][2.59547,0.148542,0.828524][0.569948,0.973616,0.359415][0.283462,-0.965871,0.109309][1.543,1.14744e-006,0.294191][0.569948,0.688659,0.359416][0.304848,-0.965871,-0.00286031][1.96523,0.0736891,0.212888][0.505757,0.688659,0.386533][0.304848,-0.965871,-0.00286031][1.96523,0.0736891,0.212888][0.505757,0.688659,0.386533][0.283462,-0.719567,-0.115028][1.14058,0.0990357,9.35444e-007][0.441566,0.973616,0.359416][0.283461,-0.719567,0.109308][2.59547,0.148542,0.828524][0.569948,0.973616,0.359415][0.0539733,-0.705625,0.28056][-0.608982,-0.0382545,-1.29499][0.66795,0.989746,0.0684355][-0.0737725,-0.705625,0.384514][0,2.63903,0][0.72744,0.989746,-0.0935401][0.121856,-0.705625,0.372176][0,2.70203,0][0.720379,0.989746,0.154508][0.121856,-0.705625,0.372176][0,2.70203,0][0.720379,0.989746,0.154508][0.183863,-0.705625,0.219478][-0.891183,0.00439032,-1.59996][0.632995,0.989746,0.233129][0.0539733,-0.705625,0.28056][-0.608982,-0.0382545,-1.29499][0.66795,0.989746,0.0684355][0.147093,0.992346,0.352945][0.195091,0.860294,0.470992][0.359375,0.347656,0.100971][0.00089779,0.992346,0.382025][0,0.862367,0.506284][0.359375,0.355469,1.28697e-007][0.00089779,0.893508,0.512394][0,0.707802,0.706411][0.382813,0.394531,1.30734e-007][0.00089779,0.893508,0.512394][0,0.707802,0.706411][0.382813,0.394531,1.30734e-007][0.196983,0.893508,0.473391][0.270332,0.707801,0.652639][0.382813,0.382813,0.135428][0.147093,0.992346,0.352945][0.195091,0.860294,0.470992][0.359375,0.347656,0.100971][0.609779,0.772345,-2.68454e-007][0.851117,0.524976,0][0.410156,0.242188,0.42053][0.56343,0.772345,-0.233009][0.78633,0.524976,-0.325709][0.410156,0.171875,0.388519][0.474288,0.893508,-0.196085][0.652639,0.707802,-0.270332][0.382813,0.183594,0.326952][0.474288,0.893508,-0.196085][0.652639,0.707802,-0.270332][0.382813,0.183594,0.326952][0.513292,0.893508,-2.79862e-007][0.706411,0.707802,-1.22007e-007][0.382813,0.242188,0.353891][0.609779,0.772345,-2.68454e-007][0.851117,0.524976,0][0.410156,0.242188,0.42053][0.250491,0.0729346,0.602572][0.348325,-0.414133,0.84093][0.578125,0.421875,0.172384][0.000897662,0.0729346,0.652219][0,-0.414133,0.910216][0.578125,0.4375,0][0.000897597,-0.327519,0.439862][-1.22173e-007,-0.384911,0.922954][0.675781,0.371094,0][0.000897597,-0.327519,0.439862][-1.22173e-007,-0.384911,0.922954][0.675781,0.371094,0][0.169226,-0.327519,0.40638][0.353199,-0.384911,0.852698][0.675781,0.363281,0.116258][0.250491,0.0729346,0.602572][0.348325,-0.414133,0.84093][0.578125,0.421875,0.172384][0.603469,0.0729345,-0.249593][0.84093,-0.414133,-0.348325][0.578125,0.164063,0.416173][0.653117,0.0729345,-1.58325e-007][0.910216,-0.414133,0][0.578125,0.242188,0.450462][0.44076,-0.327519,0][0.922954,-0.384911,0][0.675781,0.242188,0.303795][0.44076,-0.327519,0][0.922954,-0.384911,0][0.675781,0.242188,0.303795][0.407277,-0.327519,-0.168328][0.852698,-0.384911,-0.353199][0.675781,0.191406,0.28067][0.603469,0.0729345,-0.249593][0.84093,-0.414133,-0.348325][0.578125,0.164063,0.416173][-0.472493,0.893508,-0.196085][-0.652639,0.707802,-0.270332][0.382813,0.183594,-0.326952][-0.511497,0.893508,0][-0.706411,0.707801,3.22098e-007][0.382813,0.242188,-0.353891][-0.381128,0.992346,0][-0.506284,0.862367,2.76365e-007][0.359375,0.242188,-0.26385][-0.381128,0.992346,0][-0.506284,0.862367,2.76365e-007][0.359375,0.242188,-0.26385][-0.352048,0.992346,-0.146195][-0.470992,0.860294,-0.195091][0.359375,0.195313,-0.243765][-0.472493,0.893508,-0.196085][-0.652639,0.707802,-0.270332][0.382813,0.183594,-0.326952][0.353843,0.992346,-0.146195][0.467745,0.862367,-0.193747][0.359375,0.195313,0.243765][0.27103,0.992346,-0.270133][0.360481,0.860295,-0.360481][0.359375,0.160156,0.18657][0.152843,1.06184,-0.151946][0.196256,0.960604,-0.196782][0.339844,0.195313,0.104943][0.152843,1.06184,-0.151946][0.196256,0.960604,-0.196782][0.339844,0.195313,0.104943][0.215781,1.06184,-2.81259e-007][0.273948,0.961551,0.0192848][0.339844,0.242188,0.148412][0.353843,0.992346,-0.146195][0.467745,0.862367,-0.193747][0.359375,0.195313,0.243765][0.155795,-0.997687,0.185536][-3.55936e-007,1.93084,2.94343e-007][0.613571,0.651851,0.19754][0.136513,-0.997686,0.051159][-0.691214,0.715485,0.0434447][0.536671,0.651851,0.173092][0.0935603,-0.997687,0.110279][-0.268953,0.948249,-0.827764][0.570503,0.651851,0.11863][0.0935603,-0.997687,0.110279][-0.268953,0.948249,-0.827764][0.570503,0.651851,0.11863][0.0755448,-0.997687,0.229644][5.66025e-007,2.63903,6.34952e-007][0.638812,0.651851,0.0957871][0.155795,-0.997687,0.185536][-3.55936e-007,1.93084,2.94343e-007][0.613571,0.651851,0.19754][0.286227,-0.705625,0.0333887][-2.93956,-0.0353615,-0.373824][0.526501,0.989746,0.362922][0.233412,-0.960096,-0.172443][-2.59164,-0.000921227,1.58469][0.408709,0.69534,0.295955][0.288513,-0.960096,-0.00286031][-2.97947,-0.0385478,0.0826941][0.505757,0.69534,0.36582][-0.0490139,-1.09497,0.0240651][-1.82171,-2.61587,0.399946][0.521165,0.539295,-0.0621474][-0.124248,-1.01163,0.0874114][-0.821706,-0.989101,0.325478][0.557417,0.635722,-0.157541][-0.152362,-1.01163,0.0164348][-0.758478,-0.912992,0.300433][0.516799,0.635722,-0.193188][-0.107042,-1.01163,0.224431][-0.393062,-1.32688,0.797567][0.635829,0.635722,-0.135724][-0.194273,-0.965871,0.232066][-1.11313,-2.33251,1.26113][0.640198,0.688659,-0.246329][-0.246627,-0.965871,0.176325][-1.63183,-0.0187538,0.89269][0.608299,0.688659,-0.312712][-0.246627,-0.965871,0.176325][-1.63183,-0.0187538,0.89269][0.608299,0.688659,-0.312712][-0.203254,-1.01163,0.144812][-0.742224,-1.32126,0.896906][0.590265,0.635722,-0.257716][-0.107042,-1.01163,0.224431][-0.393062,-1.32688,0.797567][0.635829,0.635722,-0.135724][-0.355212,-0.639573,-0.147506][-2.86258,-0.180472,-1.18572][0.75,0.195313,-0.245951][-0.384553,-0.639573,-1.9744e-007][-3.09843,-0.180471,-7.45058e-007][0.75,0.242188,-0.266216][-0.394071,-0.476163,-1.70898e-007][-0.984138,-0.177402,-1.22317e-007][0.710938,0.242188,-0.272789][-0.394071,-0.476163,-1.70898e-007][-0.984138,-0.177402,-1.22317e-007][0.710938,0.242188,-0.272789][-0.364006,-0.476163,-0.151148][-0.909225,-0.177402,-0.376614][0.710938,0.195313,-0.252024][-0.355212,-0.639573,-0.147506][-2.86258,-0.180472,-1.18572][0.75,0.195313,-0.245951][0.000897726,-0.639573,-0.385451][2.38419e-007,-0.180471,-3.09843][0.75,0.125,0][-0.146608,-0.639573,-0.35611][-1.18572,-0.180471,-2.86258][0.75,0.132813,-0.101876][-0.15025,-0.476163,-0.364904][-0.376614,-0.177402,-0.909225][0.710938,0.132813,-0.104392][-0.15025,-0.476163,-0.364904][-0.376614,-0.177402,-0.909225][0.710938,0.132813,-0.104392][0.000897694,-0.476163,-0.394969][0,-0.177402,-0.984138][0.710938,0.121094,0][0.000897726,-0.639573,-0.385451][2.38419e-007,-0.180471,-3.09843][0.75,0.125,0][-0.145297,0.992346,0.352945][-0.195091,0.860294,0.470992][0.359375,0.347656,-0.100971][-0.269235,0.992346,0.270133][-0.357997,0.862367,0.357997][0.359375,0.320313,-0.18657][-0.36142,0.893508,0.362318][-0.499508,0.707801,0.499509][0.382813,0.347656,-0.250238][-0.36142,0.893508,0.362318][-0.499508,0.707801,0.499509][0.382813,0.347656,-0.250238][-0.195187,0.893508,0.473391][-0.270332,0.707801,0.652639][0.382813,0.382813,-0.135428][-0.145297,0.992346,0.352945][-0.195091,0.860294,0.470992][0.359375,0.347656,-0.100971][-0.511008,0.345107,0.511906][-0.707044,0.0132929,0.707044][0.511719,0.394531,-0.353553][-0.276144,0.345107,0.668837][-0.38265,0.0132928,0.923798][0.511719,0.441406,-0.191342][-0.257174,0.635877,0.623041][-0.365245,0.298429,0.88178][0.445313,0.425781,-0.17824][-0.257174,0.635877,0.623041][-0.365245,0.298429,0.88178][0.445313,0.425781,-0.17824][-0.475957,0.635877,0.476855][-0.674885,0.298429,0.674885][0.445313,0.382813,-0.329345][-0.511008,0.345107,0.511906][-0.707044,0.0132929,0.707044][0.511719,0.394531,-0.353553][0.283462,-0.719567,-0.115028][1.14058,0.0990357,9.35444e-007][0.441566,0.973616,0.359416][0.381929,-0.719567,-0.101][0,-2.76445,-2.4992e-007][0.449594,0.973616,0.484268][0.391212,-0.719567,0.0466847][-2.0264e-007,-2.70167,-6.14861e-007][0.53411,0.973616,0.496038][0.391212,-0.719567,0.0466847][-2.0264e-007,-2.70167,-6.14861e-007][0.53411,0.973616,0.496038][0.283461,-0.719567,0.109308][2.59547,0.148542,0.828524][0.569948,0.973616,0.359415][0.283462,-0.719567,-0.115028][1.14058,0.0990357,9.35444e-007][0.441566,0.973616,0.359416][0.286227,-0.705625,0.0333887][-2.93956,-0.0353615,-0.373824][0.526501,0.989746,0.362922][0.288513,-0.960096,-0.00286031][-2.97947,-0.0385478,0.0826941][0.505757,0.69534,0.36582][0.233412,-0.960096,0.166723][-2.44761,0.0518339,-1.74969][0.602804,0.69534,0.295955][0.233412,-0.960096,0.166723][-2.44761,0.0518339,-1.74969][0.602804,0.69534,0.295955][0.183863,-0.705625,0.219478][-0.891183,0.00439032,-1.59996][0.632995,0.989746,0.233129][0.286227,-0.705625,0.0333887][-2.93956,-0.0353615,-0.373824][0.526501,0.989746,0.362922][0.353843,0.992346,0.146194][0.454927,0.868775,0.19563][0.359375,0.285156,0.243766][0.27103,0.992346,0.270133][0.354832,0.868775,0.345433][0.359375,0.320313,0.18657][0.363215,0.893508,0.362317][0.499509,0.707801,0.499508][0.382813,0.347656,0.250239][0.363215,0.893508,0.362317][0.499509,0.707801,0.499508][0.382813,0.347656,0.250239][0.474288,0.893508,0.196085][0.652639,0.707801,0.270332][0.382813,0.300781,0.326952][0.353843,0.992346,0.146194][0.454927,0.868775,0.19563][0.359375,0.285156,0.243766][0.246627,-0.965871,-0.182046][1.70773,0.0174602,-1.00279][0.403214,0.688659,0.312711][0.163395,-0.719567,-0.260221][0.685634,0.0160083,-1.57783][0.358476,0.973616,0.207176][0.283462,-0.719567,-0.115028][1.14058,0.0990357,9.35444e-007][0.441566,0.973616,0.359416][0.283462,-0.719567,-0.115028][1.14058,0.0990357,9.35444e-007][0.441566,0.973616,0.359416][0.295256,-0.965871,-0.0787291][1.283,-0.02756,-0.603884][0.462339,0.688659,0.374371][0.246627,-0.965871,-0.182046][1.70773,0.0174602,-1.00279][0.403214,0.688659,0.312711][0.203254,-1.01163,-0.150533][0,-1.25663,4.79456e-007][0.421248,0.635722,0.257716][0.124248,-1.01163,-0.0931325][0,-1.88497,3.9712e-006][0.454097,0.635722,0.15754][0.0474587,-1.01163,-0.148923][0,-1.88495,-2.41937e-006][0.422169,0.635722,0.0601752][0.0474587,-1.01163,-0.148923][0,-1.88495,-2.41937e-006][0.422169,0.635722,0.0601752][0.0776361,-1.01163,-0.2418][0,-2.57626,-3.24159e-006][0.369019,0.635722,0.0984388][0.203254,-1.01163,-0.150533][0,-1.25663,4.79456e-007][0.421248,0.635722,0.257716][0.407277,-0.327519,0.168328][0.852698,-0.384911,0.353199][0.675781,0.292969,0.28067][0.44076,-0.327519,0][0.922954,-0.384911,0][0.675781,0.242188,0.303795][0.653117,0.0729345,-1.58325e-007][0.910216,-0.414133,0][0.578125,0.242188,0.450462][0.653117,0.0729345,-1.58325e-007][0.910216,-0.414133,0][0.578125,0.242188,0.450462][0.603469,0.0729345,0.249593][0.84093,-0.414133,0.348325][0.578125,0.316406,0.416173][0.407277,-0.327519,0.168328][0.852698,-0.384911,0.353199][0.675781,0.292969,0.28067][0.675272,0.635877,-2.51923e-007][0.954432,0.298428,0][0.445313,0.242188,0.465764][0.623939,0.635877,0.258072][0.88178,0.298429,0.365245][0.445313,0.316406,0.43031][0.669735,0.345107,0.277041][0.923798,0.0132928,0.38265][0.511719,0.324219,0.46194][0.669735,0.345107,0.277041][0.923798,0.0132928,0.38265][0.511719,0.324219,0.46194][0.724842,0.345107,-2.09082e-007][0.999912,0.0132928,-1.94556e-007][0.511719,0.242188,0.5][0.675272,0.635877,-2.51923e-007][0.954432,0.298428,0][0.445313,0.242188,0.465764][-0.0942032,-0.965871,-0.292787][-0.162617,0.039342,-1.5621][0.33984,0.688659,-0.119445][-0.0942032,-0.719567,-0.292788][-0.0988848,-6.63303e-006,-1.56768][0.339839,0.973616,-0.119445][0.0570303,-0.719567,-0.302328][0.521632,0.0276846,-1.31769][0.33438,0.973616,0.0723116][0.0570303,-0.719567,-0.302328][0.521632,0.0276846,-1.31769][0.33438,0.973616,0.0723116][0.0190842,-0.965871,-0.307109][-0.215568,0.0663143,-1.70513][0.331644,0.688659,0.0241978][-0.0942032,-0.965871,-0.292787][-0.162617,0.039342,-1.5621][0.33984,0.688659,-0.119445][-0.203254,-1.01163,-0.150533][-0.719179,-1.47236,-0.875547][0.421248,0.635722,-0.257716][-0.246627,-0.965871,-0.182046][-1.37657,-6.31965e-007,-0.756612][0.403214,0.688659,-0.312711][-0.163394,-0.965871,-0.260221][-0.745187,-1.84165,-1.03905][0.358477,0.688659,-0.207176][-0.163394,-0.965871,-0.260221][-0.745187,-1.84165,-1.03905][0.358477,0.688659,-0.207176][-0.0470001,-1.01163,-0.24966][0,-1.51236,-1.78916e-006][0.36452,0.635722,-0.059594][-0.203254,-1.01163,-0.150533][-0.719179,-1.47236,-0.875547][0.421248,0.635722,-0.257716][-0.251303,-0.705625,0.301028][0,2.63869,0][0.679664,0.989746,-0.31864][-0.0891561,-0.705625,0.271531][0.923294,0,-1.2708][0.662783,0.989746,-0.113046][-0.233412,-0.705625,0.166722][0.564037,0,-0.776326][0.602804,0.989746,-0.295955][-0.233412,-0.705625,0.166722][0.564037,0,-0.776326][0.602804,0.989746,-0.295955][-0.366673,-0.705625,0.142234][0,2.70168,0][0.58879,0.989746,-0.464923][-0.251303,-0.705625,0.301028][0,2.63869,0][0.679664,0.989746,-0.31864][-0.304848,-0.719567,-0.00286176][-3.03914,0.115569,-0.0793935][0.505756,0.973616,-0.386533][-0.391212,-0.719567,-0.0524062][0,-2.70168,0][0.477403,0.973616,-0.496038][-0.319025,-0.719567,-0.234647][-1.00138e-006,-2.70202,1.37827e-006][0.373112,0.973616,-0.404508][-0.319025,-0.719567,-0.234647][-1.00138e-006,-2.70202,1.37827e-006][0.373112,0.973616,-0.404508][-0.246627,-0.719567,-0.182046][-1.4746,0.0740289,-0.538414][0.403214,0.973616,-0.312711][-0.304848,-0.719567,-0.00286176][-3.03914,0.115569,-0.0793935][0.505756,0.973616,-0.386533][-0.278388,-0.476163,-0.279285][-0.695891,-0.177402,-0.695891][0.710938,0.15625,-0.192891][-0.15025,-0.476163,-0.364904][-0.376614,-0.177402,-0.909225][0.710938,0.132813,-0.104392][-0.146608,-0.639573,-0.35611][-1.18572,-0.180471,-2.86258][0.75,0.132813,-0.101876][-0.146608,-0.639573,-0.35611][-1.18572,-0.180471,-2.86258][0.75,0.132813,-0.101876][-0.271657,-0.639573,-0.272555][-2.19092,-0.180471,-2.19092][0.75,0.160156,-0.188243][-0.278388,-0.476163,-0.279285][-0.695891,-0.177402,-0.695891][0.710938,0.15625,-0.192891][-0.00919107,-0.997686,0.143665][0.278705,1.50971,-1.32484][0.589609,0.651851,-0.0116539][-0.0755457,-0.997687,0.229643][0,0.913519,6.33295e-007][0.638812,0.651851,-0.0957884][0.0755448,-0.997687,0.229644][5.66025e-007,2.63903,6.34952e-007][0.638812,0.651851,0.0957871][0.0755448,-0.997687,0.229644][5.66025e-007,2.63903,6.34952e-007][0.638812,0.651851,0.0957871][0.0935603,-0.997687,0.110279][-0.268953,0.948249,-0.827764][0.570503,0.651851,0.11863][-0.00919107,-0.997686,0.143665][0.278705,1.50971,-1.32484][0.589609,0.651851,-0.0116539][-0.233412,-0.960096,0.166723][2.41721,-2.75652e-006,-1.7562][0.602804,0.69534,-0.295955][-0.288513,-0.705625,-0.00286175][3.03692,-5.21966e-007,-0.191204][0.505756,0.989746,-0.365821][-0.233412,-0.705625,0.166722][0.564037,0,-0.776326][0.602804,0.989746,-0.295955][-0.233412,-0.705625,0.166722][0.564037,0,-0.776326][0.602804,0.989746,-0.295955][-0.0891561,-0.960096,0.271531][0.955607,0.0375337,-2.84103][0.662783,0.69534,-0.113046][-0.233412,-0.960096,0.166723][2.41721,-2.75652e-006,-1.7562][0.602804,0.69534,-0.295955][0.353843,0.992346,0.146194][0.454927,0.868775,0.19563][0.359375,0.285156,0.243766][0.382923,0.992346,-2.84752e-007][0.509798,0.860294,-2.38632e-007][0.359375,0.242188,0.26385][0.215781,1.06184,-2.81259e-007][0.273948,0.961551,0.0192848][0.339844,0.242188,0.148412][0.474288,0.893508,0.196085][0.652639,0.707801,0.270332][0.382813,0.300781,0.326952][0.513292,0.893508,-2.79862e-007][0.706411,0.707802,-1.22007e-007][0.382813,0.242188,0.353891][0.382923,0.992346,-2.84752e-007][0.509798,0.860294,-2.38632e-007][0.359375,0.242188,0.26385][0.382923,0.992346,-2.84752e-007][0.509798,0.860294,-2.38632e-007][0.359375,0.242188,0.26385][0.353843,0.992346,0.146194][0.454927,0.868775,0.19563][0.359375,0.285156,0.243766][0.474288,0.893508,0.196085][0.652639,0.707801,0.270332][0.382813,0.300781,0.326952][-0.381128,0.992346,0][-0.506284,0.862367,2.76365e-007][0.359375,0.242188,-0.26385][-0.352048,0.992346,0.146195][-0.470992,0.860294,0.195091][0.359375,0.285156,-0.243765][-0.197629,1.06184,0.0822325][-0.257299,0.960402,0.106892][0.339844,0.265625,-0.137114][-0.197629,1.06184,0.0822325][-0.257299,0.960402,0.106892][0.339844,0.265625,-0.137114][-0.197629,1.06184,-0.0822323][-0.245735,0.96152,-0.122856][0.339844,0.214844,-0.137115][-0.381128,0.992346,0][-0.506284,0.862367,2.76365e-007][0.359375,0.242188,-0.26385][-0.145297,0.992346,0.352945][-0.195091,0.860294,0.470992][0.359375,0.347656,-0.100971][0.00089779,0.992346,0.382025][0,0.862367,0.506284][0.359375,0.355469,1.28697e-007][-0.0813346,1.06184,0.198527][-0.106375,0.960589,0.256812][0.339844,0.300781,-0.0567946][0.0172811,-1.09497,-0.0560461][0.986473,-2.17005,-1.31243][0.47532,0.539295,0.0219115][0.0474587,-1.01163,-0.148923][0,-1.88495,-2.41937e-006][0.422169,0.635722,0.0601752][0.124248,-1.01163,-0.0931325][0,-1.88497,3.9712e-006][0.454097,0.635722,0.15754][0.124248,-1.01163,-0.0931325][0,-1.88497,3.9712e-006][0.454097,0.635722,0.15754][0.0554795,-1.09497,0.00416632][0.63869,-0.999986,-0.405183][0.509778,0.539295,0.0703452][0.0172811,-1.09497,-0.0560461][0.986473,-2.17005,-1.31243][0.47532,0.539295,0.0219115][-0.0104617,-1.09497,0.0520751][-0.414197,-2.93353,2.23964][0.537195,0.539295,-0.0132649][0.0474583,-1.01163,0.143202][0,-1.88495,0][0.589344,0.635722,0.0601748][-0.0474588,-1.01163,0.143202][-0.126802,-1.19142,1.03822][0.589344,0.635722,-0.0601756][-0.0474588,-1.01163,0.143202][-0.126802,-1.19142,1.03822][0.589344,0.635722,-0.0601756][-0.0490139,-1.09497,0.0240651][-1.82171,-2.61587,0.399946][0.521165,0.539295,-0.0621474][-0.0104617,-1.09497,0.0520751][-0.414197,-2.93353,2.23964][0.537195,0.539295,-0.0132649][0.0180616,-0.705625,-0.290808][-0.130881,-0.12963,2.9864][0.340973,0.989746,0.0229012][0.0737718,-0.705625,-0.390236][1.23468e-006,2.63902,-5.7784e-006][0.284073,0.989745,0.093539][-0.121857,-0.705625,-0.377897][-0.0549384,0.0142342,-0.432687][0.291134,0.989745,-0.154508][-0.345619,-0.705625,-0.192727][-2.55181e-007,2.63904,-1.27114e-006][0.397101,0.989746,-0.438228][-0.268272,-0.705625,-0.10902][1.1485,2.47468e-007,0.218978][0.445005,0.989746,-0.340156][-0.183863,-0.705625,-0.225199][0.75592,-0.0576382,1.65712][0.378518,0.989746,-0.233129][-0.183863,-0.705625,-0.225199][0.75592,-0.0576382,1.65712][0.378518,0.989746,-0.233129][-0.211359,-0.705625,-0.335771][-1.61078e-006,2.76444,-5.29739e-006][0.315241,0.989745,-0.267993][-0.345619,-0.705625,-0.192727][-2.55181e-007,2.63904,-1.27114e-006][0.397101,0.989746,-0.438228][0.0776356,-1.01163,0.236079][0,-1.25664,0][0.642495,0.635722,0.0984382][0.0942028,-0.965871,0.287067][0.162612,0.0393523,1.5621][0.671674,0.688659,0.119445][-0.0190849,-0.965871,0.301389][0.215566,0.0663278,1.70513][0.67987,0.688659,-0.0241988][-0.0190849,-0.965871,0.301389][0.215566,0.0663278,1.70513][0.67987,0.688659,-0.0241988][-0.107042,-1.01163,0.224431][-0.393062,-1.32688,0.797567][0.635829,0.635722,-0.135724][0.0776356,-1.01163,0.236079][0,-1.25664,0][0.642495,0.635722,0.0984382][0.163394,-0.965871,0.254501][0.970792,-0.0275618,1.0336][0.653037,0.688659,0.207176][0.0776356,-1.01163,0.236079][0,-1.25664,0][0.642495,0.635722,0.0984382][0.203254,-1.01163,0.144812][0,-1.25663,0][0.590265,0.635722,0.257716][0.203254,-1.01163,0.144812][0,-1.25663,0][0.590265,0.635722,0.257716][0.246627,-0.965871,0.176325][1.35231,-0.00144864,1.27655][0.6083,0.688659,0.312711][0.163394,-0.965871,0.254501][0.970792,-0.0275618,1.0336][0.653037,0.688659,0.207176][0.203254,-1.01163,-0.150533][0,-1.25663,4.79456e-007][0.421248,0.635722,0.257716][0.246627,-0.965871,-0.182046][1.70773,0.0174602,-1.00279][0.403214,0.688659,0.312711][0.295256,-0.965871,-0.0787291][1.283,-0.02756,-0.603884][0.462339,0.688659,0.374371][0.295256,-0.965871,-0.0787291][1.283,-0.02756,-0.603884][0.462339,0.688659,0.374371][0.251235,-1.01163,-0.00286032][0.511578,-0.767777,-0.166222][0.505757,0.635722,0.318554][0.203254,-1.01163,-0.150533][0,-1.25663,4.79456e-007][0.421248,0.635722,0.257716][-0.438965,-0.327519,-1.46683e-007][-0.922954,-0.384911,0][0.675781,0.242188,-0.303795][-0.405482,-0.327519,0.168328][-0.852698,-0.384911,0.353199][0.675781,0.292969,-0.28067][-0.601674,0.0729345,0.249593][-0.84093,-0.414133,0.348325][0.578125,0.316406,-0.416172][-0.601674,0.0729345,0.249593][-0.84093,-0.414133,0.348325][0.578125,0.316406,-0.416172][-0.651321,0.0729345,0][-0.910216,-0.414133,0][0.578125,0.242188,-0.450462][-0.438965,-0.327519,-1.46683e-007][-0.922954,-0.384911,0][0.675781,0.242188,-0.303795][0.258969,0.635877,-0.623041][0.365245,0.298429,-0.88178][0.445313,0.0546875,0.17824][0.477752,0.635877,-0.476855][0.674885,0.298428,-0.674886][0.445313,0.0976563,0.329345][0.512804,0.345107,-0.511906][0.707044,0.0132925,-0.707044][0.511719,0.0859375,0.353553][0.512804,0.345107,-0.511906][0.707044,0.0132925,-0.707044][0.511719,0.0859375,0.353553][0.277939,0.345107,-0.668838][0.382649,0.0132924,-0.923798][0.511719,0.0390625,0.191342][0.258969,0.635877,-0.623041][0.365245,0.298429,-0.88178][0.445313,0.0546875,0.17824][-0.257175,0.635877,-0.623041][-0.365246,0.298429,-0.88178][0.445313,0.0546875,-0.17824][0.000897501,0.635877,-0.674375][-2.52714e-007,0.298429,-0.954432][0.445313,0.0390625,0][0.000897533,0.345107,-0.723945][-2.69386e-007,0.0132926,-0.999912][0.511719,0.0234375,0][0.000897533,0.345107,-0.723945][-2.69386e-007,0.0132926,-0.999912][0.511719,0.0234375,0][-0.276144,0.345107,-0.668838][-0.38265,0.0132926,-0.923798][0.511719,0.0390625,-0.191342][-0.257175,0.635877,-0.623041][-0.365246,0.298429,-0.88178][0.445313,0.0546875,-0.17824][-0.310132,-0.327519,-0.31103][-0.652627,-0.384911,-0.652627][0.675781,0.148438,-0.214816][-0.405482,-0.327519,-0.168328][-0.852698,-0.384911,-0.353199][0.675781,0.191406,-0.28067][-0.601674,0.0729345,-0.249593][-0.84093,-0.414133,-0.348325][0.578125,0.164063,-0.416173][-0.601674,0.0729345,-0.249593][-0.84093,-0.414133,-0.348325][0.578125,0.164063,-0.416173][-0.460291,0.0729345,-0.461188][-0.64362,-0.414133,-0.64362][0.578125,0.101563,-0.318525][-0.310132,-0.327519,-0.31103][-0.652627,-0.384911,-0.652627][0.675781,0.148438,-0.214816][-0.622144,0.635877,-0.258072][-0.88178,0.298428,-0.365245][0.445313,0.164063,-0.43031][-0.475958,0.635877,-0.476855][-0.674885,0.298429,-0.674885][0.445313,0.0976563,-0.329345][-0.511009,0.345107,-0.511906][-0.707044,0.0132925,-0.707044][0.511719,0.0859375,-0.353553][-0.511009,0.345107,-0.511906][-0.707044,0.0132925,-0.707044][0.511719,0.0859375,-0.353553][-0.66794,0.345107,-0.277042][-0.923798,0.0132927,-0.382649][0.511719,0.15625,-0.46194][-0.622144,0.635877,-0.258072][-0.88178,0.298428,-0.365245][0.445313,0.164063,-0.43031][0.169226,-0.327519,0.40638][0.353199,-0.384911,0.852698][0.675781,0.363281,0.116258][0.311927,-0.327519,0.311029][0.652627,-0.384911,0.652627][0.675781,0.335938,0.214816][0.462086,0.0729345,0.461188][0.64362,-0.414133,0.64362][0.578125,0.378906,0.318525][0.462086,0.0729345,0.461188][0.64362,-0.414133,0.64362][0.578125,0.378906,0.318525][0.250491,0.0729346,0.602572][0.348325,-0.414133,0.84093][0.578125,0.421875,0.172384][0.169226,-0.327519,0.40638][0.353199,-0.384911,0.852698][0.675781,0.363281,0.116258][0.477753,0.635877,0.476855][0.674886,0.298428,0.674885][0.445313,0.382813,0.329345][0.25897,0.635877,0.623041][0.365246,0.298429,0.88178][0.445313,0.425781,0.17824][0.277939,0.345107,0.668837][0.38265,0.0132929,0.923798][0.511719,0.441406,0.191342][0.277939,0.345107,0.668837][0.38265,0.0132929,0.923798][0.511719,0.441406,0.191342][0.512804,0.345107,0.511906][0.707044,0.0132929,0.707044][0.511719,0.394531,0.353553][0.477753,0.635877,0.476855][0.674886,0.298428,0.674885][0.445313,0.382813,0.329345][-0.310132,-0.327519,0.311029][-0.652627,-0.384911,0.652627][0.675781,0.335938,-0.214816][-0.16743,-0.327519,0.40638][-0.353199,-0.384911,0.852698][0.675781,0.363281,-0.116258][-0.248696,0.0729346,0.602572][-0.348325,-0.414133,0.84093][0.578125,0.421875,-0.172384][-0.248696,0.0729346,0.602572][-0.348325,-0.414133,0.84093][0.578125,0.421875,-0.172384][-0.460291,0.0729345,0.461188][-0.64362,-0.414133,0.64362][0.578125,0.378906,-0.318525][-0.310132,-0.327519,0.311029][-0.652627,-0.384911,0.652627][0.675781,0.335938,-0.214816][0.0942027,-0.719567,0.287067][0.0988735,0,1.56768][0.671674,0.973616,0.119444][0.211358,-0.719567,0.330049][0,-2.70168,3.07296e-007][0.696272,0.973616,0.267992][0.0246852,-0.719567,0.390703][0,-2.63869,1.38328e-006][0.730982,0.973616,0.0312996][0.0246852,-0.719567,0.390703][0,-2.63869,1.38328e-006][0.730982,0.973616,0.0312996][-0.057031,-0.719567,0.296605][0.114433,0.0154697,1.41492][0.677133,0.973616,-0.0723126][0.0942027,-0.719567,0.287067][0.0988735,0,1.56768][0.671674,0.973616,0.119444][-0.319026,-0.719567,0.228924][6.59074e-007,-2.70202,-1.0256e-006][0.6384,0.973616,-0.404509][-0.267186,-0.719567,0.143918][-2.73391,0.0682712,1.4123][0.589754,0.973616,-0.338779][-0.194274,-0.719567,0.232065][-0.978702,0.0248227,0.80955][0.640198,0.973616,-0.24633][-0.194274,-0.719567,0.232065][-0.978702,0.0248227,0.80955][0.640198,0.973616,-0.24633][-0.168012,-0.719567,0.353894][1.502e-007,-2.63903,2.9097e-007][0.709917,0.973616,-0.213031][-0.319026,-0.719567,0.228924][6.59074e-007,-2.70202,-1.0256e-006][0.6384,0.973616,-0.404509][-0.233412,-0.960096,-0.172443][2.44015,0.118576,1.77287][0.408709,0.69534,-0.295955][-0.183863,-0.705625,-0.225199][0.75592,-0.0576382,1.65712][0.378518,0.989746,-0.233129][-0.268272,-0.705625,-0.10902][1.1485,2.47468e-007,0.218978][0.445005,0.989746,-0.340156][-0.268272,-0.705625,-0.10902][1.1485,2.47468e-007,0.218978][0.445005,0.989746,-0.340156][-0.288513,-0.960096,-0.0028613][3.00199,0.06237,-0.0483578][0.505756,0.69534,-0.365821][-0.233412,-0.960096,-0.172443][2.44015,0.118576,1.77287][0.408709,0.69534,-0.295955][-0.233412,-0.960096,0.166723][2.41721,-2.75652e-006,-1.7562][0.602804,0.69534,-0.295955][-0.19778,-0.997686,0.140835][1.14849,1.34565,-0.373162][0.58799,0.651851,-0.250775][-0.244469,-0.997686,-0.00286131][1.14849,1.34566,-0.373165][0.505756,0.651851,-0.309975][-0.244469,-0.997686,-0.00286131][1.14849,1.34566,-0.373165][0.505756,0.651851,-0.309975][-0.288513,-0.960096,-0.0028613][3.00199,0.06237,-0.0483578][0.505756,0.69534,-0.365821][-0.233412,-0.960096,0.166723][2.41721,-2.75652e-006,-1.7562][0.602804,0.69534,-0.295955][-0.0457079,-1.08103,-0.0209476][1.98281,1.83956,0.123813][0.495406,0.555425,-0.0579554][-0.0453677,-0.997687,-0.142488][0.101044,1.53113,1.27837][0.425852,0.651851,-0.0575241][-0.118774,-0.997687,-0.0891553][0.728612,1.2298,0.722252][0.456373,0.651851,-0.1506][-0.118774,-0.997687,-0.0891553][0.728612,1.2298,0.722252][0.456373,0.651851,-0.1506][-0.0397684,-1.08103,0.0260326][1.51576,1.99344,-1.42988][0.522291,0.555425,-0.0504244][-0.0457079,-1.08103,-0.0209476][1.98281,1.83956,0.123813][0.495406,0.555425,-0.0579554][-0.00919107,-0.997686,0.143665][0.278705,1.50971,-1.32484][0.589609,0.651851,-0.0116539][0.0313262,-1.08103,0.0350218][-0.387482,1.36624,-1.19263][0.527436,0.555425,0.03972][-0.00307729,-1.08103,0.0461988][0.240725,2.74883,-2.33553][0.533832,0.555425,-0.00390192][-0.124248,-1.01163,0.0874114][-0.821706,-0.989101,0.325478][0.557417,0.635722,-0.157541][-0.203254,-1.01163,0.144812][-0.742224,-1.32126,0.896906][0.590265,0.635722,-0.257716][-0.251235,-1.01163,-0.00286131][-2.14725e-007,-2.51328,1.10025e-006][0.505756,0.635722,-0.318554][-0.251235,-1.01163,-0.00286131][-2.14725e-007,-2.51328,1.10025e-006][0.505756,0.635722,-0.318554][-0.152362,-1.01163,0.0164348][-0.758478,-0.912992,0.300433][0.516799,0.635722,-0.193188][-0.124248,-1.01163,0.0874114][-0.821706,-0.989101,0.325478][0.557417,0.635722,-0.157541][-0.0470001,-1.01163,-0.24966][0,-1.51236,-1.78916e-006][0.36452,0.635722,-0.059594][-0.0474584,-1.01163,-0.148923][0,-1.56625,-1.91709e-006][0.422169,0.635722,-0.0601751][-0.124248,-1.01163,-0.0931325][3.84463e-007,-1.88496,1.89736e-007][0.454097,0.635722,-0.157541][-0.124248,-1.01163,-0.0931325][3.84463e-007,-1.88496,1.89736e-007][0.454097,0.635722,-0.157541][-0.203254,-1.01163,-0.150533][-0.719179,-1.47236,-0.875547][0.421248,0.635722,-0.257716][-0.0470001,-1.01163,-0.24966][0,-1.51236,-1.78916e-006][0.36452,0.635722,-0.059594][0.000897533,-0.476163,0.394969][-1.63089e-007,-0.177402,0.984138][0.710938,0.359375,0][-0.15025,-0.476163,0.364903][-0.376614,-0.177402,0.909225][0.710938,0.351563,-0.104392][-0.146608,-0.639573,0.35611][-1.18572,-0.180472,2.86257][0.75,0.347656,-0.101876][-0.146608,-0.639573,0.35611][-1.18572,-0.180472,2.86257][0.75,0.347656,-0.101876][0.000897501,-0.639573,0.385451][-1.04308e-006,-0.180472,3.09843][0.75,0.355469,0][0.000897533,-0.476163,0.394969][-1.63089e-007,-0.177402,0.984138][0.710938,0.359375,0][-0.278388,-0.476163,0.279285][-0.695891,-0.177402,0.695891][0.710938,0.324219,-0.192891][-0.364006,-0.476163,0.151148][-0.909225,-0.177402,0.376613][0.710938,0.285156,-0.252025][-0.355213,-0.639573,0.147505][-2.86257,-0.180472,1.18572][0.75,0.285156,-0.245951][-0.355213,-0.639573,0.147505][-2.86257,-0.180472,1.18572][0.75,0.285156,-0.245951][-0.271657,-0.639573,0.272555][-2.19092,-0.180472,2.19092][0.75,0.324219,-0.188243][-0.278388,-0.476163,0.279285][-0.695891,-0.177402,0.695891][0.710938,0.324219,-0.192891][-0.366673,-0.705625,0.142234][0,2.70168,0][0.58879,0.989746,-0.464923][-0.233412,-0.705625,0.166722][0.564037,0,-0.776326][0.602804,0.989746,-0.295955][-0.288513,-0.705625,-0.00286175][3.03692,-5.21966e-007,-0.191204][0.505756,0.989746,-0.365821][-0.288513,-0.705625,-0.00286175][3.03692,-5.21966e-007,-0.191204][0.505756,0.989746,-0.365821][-0.394337,-0.705625,-0.00286175][0,2.70202,0][0.505756,0.989746,-0.5][-0.366673,-0.705625,0.142234][0,2.70168,0][0.58879,0.989746,-0.464923][-0.268272,-0.705625,-0.10902][1.1485,2.47468e-007,0.218978][0.445005,0.989746,-0.340156][-0.345619,-0.705625,-0.192727][-2.55181e-007,2.63904,-1.27114e-006][0.397101,0.989746,-0.438228][-0.394337,-0.705625,-0.00286175][0,2.70202,0][0.505756,0.989746,-0.5][-0.394337,-0.705625,-0.00286175][0,2.70202,0][0.505756,0.989746,-0.5][-0.288513,-0.705625,-0.00286175][3.03692,-5.21966e-007,-0.191204][0.505756,0.989746,-0.365821][-0.268272,-0.705625,-0.10902][1.1485,2.47468e-007,0.218978][0.445005,0.989746,-0.340156][-0.269235,0.992346,-0.270133][-0.345433,0.868775,-0.354832][0.359375,0.160156,-0.18657][-0.145297,0.992346,-0.352945][-0.195631,0.868775,-0.454927][0.359375,0.132813,-0.100971][-0.195187,0.893508,-0.473391][-0.270332,0.707801,-0.652639][0.382813,0.0976563,-0.135428][-0.195187,0.893508,-0.473391][-0.270332,0.707801,-0.652639][0.382813,0.0976563,-0.135428][-0.36142,0.893508,-0.362317][-0.499509,0.707801,-0.499508][0.382813,0.132813,-0.250239][-0.269235,0.992346,-0.270133][-0.345433,0.868775,-0.354832][0.359375,0.160156,-0.18657][-0.00656703,1.09497,-0.00309184][-0.0525476,0.998228,-0.0279048][0.332031,0.238281,-0.00515553][0.00836223,1.09497,0.00309166][0.0562531,0.998192,0.0211596][0.332031,0.242188,0.00515552][0.000897469,1.06184,-0.214884][-0.0189779,0.961843,-0.272942][0.339844,0.175781,0][0.000897469,1.06184,-0.214884][-0.0189779,0.961843,-0.272942][0.339844,0.175781,0][-0.197629,1.06184,-0.0822323][-0.245735,0.96152,-0.122856][0.339844,0.214844,-0.137115][-0.00656703,1.09497,-0.00309184][-0.0525476,0.998228,-0.0279048][0.332031,0.238281,-0.00515553][0.319025,-0.719567,-0.234647][-3.17464e-007,-2.70202,1.97826e-006][0.373112,0.973616,0.404508][0.283462,-0.719567,-0.115028][1.14058,0.0990357,9.35444e-007][0.441566,0.973616,0.359416][0.163395,-0.719567,-0.260221][0.685634,0.0160083,-1.57783][0.358476,0.973616,0.207176][0.163395,-0.719567,-0.260221][0.685634,0.0160083,-1.57783][0.358476,0.973616,0.207176][0.168011,-0.719567,-0.359615][-1.89844e-006,-2.70168,5.89198e-006][0.301596,0.973616,0.21303][0.319025,-0.719567,-0.234647][-3.17464e-007,-2.70202,1.97826e-006][0.373112,0.973616,0.404508][-0.0490139,-1.09497,0.0240651][-1.82171,-2.61587,0.399946][0.521165,0.539295,-0.0621474][-0.152362,-1.01163,0.0164348][-0.758478,-0.912992,0.300433][0.516799,0.635722,-0.193188][-0.124248,-1.01163,-0.0931325][3.84463e-007,-1.88496,1.89736e-007][0.454097,0.635722,-0.157541][-0.124248,-1.01163,-0.0931325][3.84463e-007,-1.88496,1.89736e-007][0.454097,0.635722,-0.157541][-0.0238267,-1.09497,-0.0534527][-0.942554,-1.28145,-0.306257][0.476804,0.539295,-0.0302111][-0.0490139,-1.09497,0.0240651][-1.82171,-2.61587,0.399946][0.521165,0.539295,-0.0621474][0.00359454,-1.09497,-0.00193675][3.32423e-007,-5.09231,-2.57965e-006][0.506285,0.539295,0.00455764][0.0172811,-1.09497,-0.0560461][0.986473,-2.17005,-1.31243][0.47532,0.539295,0.0219115][0.0554795,-1.09497,0.00416632][0.63869,-0.999986,-0.405183][0.509778,0.539295,0.0703452][0.136513,-0.997686,0.051159][-0.691214,0.715485,0.0434447][0.536671,0.651851,0.173092][0.227319,-0.997687,0.0870924][5.79255e-007,1.3194,7.24754e-007][0.557234,0.651851,0.288229][0.242532,-0.997686,-0.0335756][0,1.78302,0][0.488179,0.651851,0.307519][0.242532,-0.997686,-0.0335756][0,1.78302,0][0.488179,0.651851,0.307519][0.128675,-0.997687,-0.0735481][-1.1242,1.62162,0.796276][0.465304,0.651851,0.163154][0.136513,-0.997686,0.051159][-0.691214,0.715485,0.0434447][0.536671,0.651851,0.173092][-0.142194,-0.997686,0.0336773][0.473271,0.634097,-0.572304][0.526666,0.651851,-0.180295][-0.244469,-0.997686,-0.00286131][1.14849,1.34566,-0.373165][0.505756,0.651851,-0.309975][-0.19778,-0.997686,0.140835][1.14849,1.34565,-0.373162][0.58799,0.651851,-0.250775][0.183863,-0.705625,-0.225198][-1.67136,-0.0531688,2.11177][0.378519,0.989746,0.23313][0.251303,-0.705625,-0.306749][2.49553e-006,2.63869,-4.6952e-006][0.33185,0.989745,0.318639][0.0737718,-0.705625,-0.390236][1.23468e-006,2.63902,-5.7784e-006][0.284073,0.989745,0.093539][0.0737718,-0.705625,-0.390236][1.23468e-006,2.63902,-5.7784e-006][0.284073,0.989745,0.093539][0.0180616,-0.705625,-0.290808][-0.130881,-0.12963,2.9864][0.340973,0.989746,0.0229012][0.183863,-0.705625,-0.225198][-1.67136,-0.0531688,2.11177][0.378519,0.989746,0.23313][0.251303,-0.705625,-0.306749][2.49553e-006,2.63869,-4.6952e-006][0.33185,0.989745,0.318639][0.183863,-0.705625,-0.225198][-1.67136,-0.0531688,2.11177][0.378519,0.989746,0.23313][0.252869,-0.705625,-0.141775][-2.77201,0.0637778,1.22947][0.42626,0.989746,0.320626][0.252869,-0.705625,-0.141775][-2.77201,0.0637778,1.22947][0.42626,0.989746,0.320626][0.366672,-0.705625,-0.147956][0,2.70168,-1.43973e-006][0.422722,0.989746,0.464923][0.251303,-0.705625,-0.306749][2.49553e-006,2.63869,-4.6952e-006][0.33185,0.989745,0.318639][-0.233412,-0.960096,-0.172443][2.44015,0.118576,1.77287][0.408709,0.69534,-0.295955][-0.19778,-0.997687,-0.146555][0.70981,1.34566,0.976972][0.423524,0.651851,-0.250775][-0.0755451,-0.997687,-0.235364][0.709808,1.34567,0.976961][0.372702,0.651851,-0.0957876][-0.0755451,-0.997687,-0.235364][0.709808,1.34567,0.976961][0.372702,0.651851,-0.0957876][-0.0891554,-0.960096,-0.277253][1.00465,0.0310418,2.86182][0.34873,0.69534,-0.113045][-0.233412,-0.960096,-0.172443][2.44015,0.118576,1.77287][0.408709,0.69534,-0.295955][0.19778,-0.997687,-0.146555][-0.740362,1.41431,0.852107][0.423524,0.651851,0.250775][0.233412,-0.960096,-0.172443][-2.59164,-0.000921227,1.58469][0.408709,0.69534,0.295955][0.154639,-0.960096,-0.24643][-0.979475,0.0254762,1.04282][0.366369,0.69534,0.196075][0.154639,-0.960096,-0.24643][-0.979475,0.0254762,1.04282][0.366369,0.69534,0.196075][0.0755453,-0.997687,-0.235364][-0.284195,0.713133,0.391162][0.372702,0.651851,0.0957878][0.19778,-0.997687,-0.146555][-0.740362,1.41431,0.852107][0.423524,0.651851,0.250775][0.273453,-0.639573,-0.272555][2.19092,-0.180471,-2.19092][0.75,0.160156,0.188243][0.148403,-0.639573,-0.35611][1.18572,-0.180471,-2.86258][0.75,0.132813,0.101876][0.152046,-0.476163,-0.364904][0.376613,-0.177402,-0.909225][0.710938,0.132813,0.104392][0.152046,-0.476163,-0.364904][0.376613,-0.177402,-0.909225][0.710938,0.132813,0.104392][0.280183,-0.476163,-0.279285][0.695891,-0.177402,-0.695891][0.710938,0.15625,0.192891][0.273453,-0.639573,-0.272555][2.19092,-0.180471,-2.19092][0.75,0.160156,0.188243][0.000897694,-0.476163,-0.394969][0,-0.177402,-0.984138][0.710938,0.121094,0][0.152046,-0.476163,-0.364904][0.376613,-0.177402,-0.909225][0.710938,0.132813,0.104392][0.148403,-0.639573,-0.35611][1.18572,-0.180471,-2.86258][0.75,0.132813,0.101876][0.148403,-0.639573,-0.35611][1.18572,-0.180471,-2.86258][0.75,0.132813,0.101876][0.000897726,-0.639573,-0.385451][2.38419e-007,-0.180471,-3.09843][0.75,0.125,0][0.000897694,-0.476163,-0.394969][0,-0.177402,-0.984138][0.710938,0.121094,0][0.273452,-0.639573,0.272555][2.19092,-0.180472,2.19092][0.75,0.324219,0.188243][0.357008,-0.639573,0.147506][2.86257,-0.180472,1.18572][0.75,0.285156,0.245951][0.365801,-0.476163,0.151148][0.909225,-0.177402,0.376614][0.710938,0.285156,0.252025][0.365801,-0.476163,0.151148][0.909225,-0.177402,0.376614][0.710938,0.285156,0.252025][0.280183,-0.476163,0.279285][0.695891,-0.177402,0.695891][0.710938,0.324219,0.192891][0.273452,-0.639573,0.272555][2.19092,-0.180472,2.19092][0.75,0.324219,0.188243][0.395866,-0.476163,0][0.984138,-0.177402,0][0.710938,0.242188,0.272789][0.365801,-0.476163,0.151148][0.909225,-0.177402,0.376614][0.710938,0.285156,0.252025][0.357008,-0.639573,0.147506][2.86257,-0.180472,1.18572][0.75,0.285156,0.245951][0.357008,-0.639573,0.147506][2.86257,-0.180472,1.18572][0.75,0.285156,0.245951][0.386348,-0.639573,0][3.09843,-0.180471,9.98378e-007][0.75,0.242188,0.266216][0.395866,-0.476163,0][0.984138,-0.177402,0][0.710938,0.242188,0.272789][0.000897501,-0.639573,0.385451][-1.04308e-006,-0.180472,3.09843][0.75,0.355469,0][0.148403,-0.639573,0.35611][1.18572,-0.180472,2.86257][0.75,0.347656,0.101876][0.152046,-0.476163,0.364903][0.376613,-0.177402,0.909225][0.710938,0.351563,0.104392][0.152046,-0.476163,0.364903][0.376613,-0.177402,0.909225][0.710938,0.351563,0.104392][0.000897533,-0.476163,0.394969][-1.63089e-007,-0.177402,0.984138][0.710938,0.359375,0][0.000897501,-0.639573,0.385451][-1.04308e-006,-0.180472,3.09843][0.75,0.355469,0][0.280183,-0.476163,0.279285][0.695891,-0.177402,0.695891][0.710938,0.324219,0.192891][0.152046,-0.476163,0.364903][0.376613,-0.177402,0.909225][0.710938,0.351563,0.104392][0.148403,-0.639573,0.35611][1.18572,-0.180472,2.86257][0.75,0.347656,0.101876][0.148403,-0.639573,0.35611][1.18572,-0.180472,2.86257][0.75,0.347656,0.101876][0.273452,-0.639573,0.272555][2.19092,-0.180472,2.19092][0.75,0.324219,0.188243][0.280183,-0.476163,0.279285][0.695891,-0.177402,0.695891][0.710938,0.324219,0.192891][0.386348,-0.639573,0][3.09843,-0.180471,9.98378e-007][0.75,0.242188,0.266216][0.357008,-0.639573,-0.147506][2.86258,-0.180472,-1.18572][0.75,0.195313,0.245951][0.365801,-0.476163,-0.151148][0.909225,-0.177402,-0.376613][0.710938,0.195313,0.252025][0.365801,-0.476163,-0.151148][0.909225,-0.177402,-0.376613][0.710938,0.195313,0.252025][0.395866,-0.476163,0][0.984138,-0.177402,0][0.710938,0.242188,0.272789][0.386348,-0.639573,0][3.09843,-0.180471,9.98378e-007][0.75,0.242188,0.266216][0.280183,-0.476163,-0.279285][0.695891,-0.177402,-0.695891][0.710938,0.15625,0.192891][0.365801,-0.476163,-0.151148][0.909225,-0.177402,-0.376613][0.710938,0.195313,0.252025][0.357008,-0.639573,-0.147506][2.86258,-0.180472,-1.18572][0.75,0.195313,0.245951][0.357008,-0.639573,-0.147506][2.86258,-0.180472,-1.18572][0.75,0.195313,0.245951][0.273453,-0.639573,-0.272555][2.19092,-0.180471,-2.19092][0.75,0.160156,0.188243][0.280183,-0.476163,-0.279285][0.695891,-0.177402,-0.695891][0.710938,0.15625,0.192891][-0.211359,-0.719567,-0.335771][0.0536263,-2.82178,-0.146154][0.315241,0.973616,-0.267993][-0.0942032,-0.719567,-0.292788][-0.0988848,-6.63303e-006,-1.56768][0.339839,0.973616,-0.119445][-0.246627,-0.719567,-0.182046][-1.4746,0.0740289,-0.538414][0.403214,0.973616,-0.312711][-0.246627,-0.719567,-0.182046][-1.4746,0.0740289,-0.538414][0.403214,0.973616,-0.312711][-0.319025,-0.719567,-0.234647][-1.00138e-006,-2.70202,1.37827e-006][0.373112,0.973616,-0.404508][-0.211359,-0.719567,-0.335771][0.0536263,-2.82178,-0.146154][0.315241,0.973616,-0.267993][0.0246865,-0.719567,-0.396424][-0.0655812,-2.76261,-0.0752249][0.280531,0.973616,0.0313012][0.0570303,-0.719567,-0.302328][0.521632,0.0276846,-1.31769][0.33438,0.973616,0.0723116][-0.0942032,-0.719567,-0.292788][-0.0988848,-6.63303e-006,-1.56768][0.339839,0.973616,-0.119445][-0.0942032,-0.719567,-0.292788][-0.0988848,-6.63303e-006,-1.56768][0.339839,0.973616,-0.119445][-0.121857,-0.705625,-0.377897][-0.0549384,0.0142342,-0.432687][0.291134,0.989745,-0.154508][0.0246865,-0.719567,-0.396424][-0.0655812,-2.76261,-0.0752249][0.280531,0.973616,0.0313012][0.27103,0.992346,-0.270133][0.360481,0.860295,-0.360481][0.359375,0.160156,0.18657][0.353843,0.992346,-0.146195][0.467745,0.862367,-0.193747][0.359375,0.195313,0.243765][0.474288,0.893508,-0.196085][0.652639,0.707802,-0.270332][0.382813,0.183594,0.326952][0.474288,0.893508,-0.196085][0.652639,0.707802,-0.270332][0.382813,0.183594,0.326952][0.363215,0.893508,-0.362318][0.499508,0.707801,-0.499509][0.382813,0.132813,0.250238][0.27103,0.992346,-0.270133][0.360481,0.860295,-0.360481][0.359375,0.160156,0.18657][-0.352048,0.992346,-0.146195][-0.470992,0.860294,-0.195091][0.359375,0.195313,-0.243765][-0.269235,0.992346,-0.270133][-0.345433,0.868775,-0.354832][0.359375,0.160156,-0.18657][-0.36142,0.893508,-0.362317][-0.499509,0.707801,-0.499508][0.382813,0.132813,-0.250239][-0.36142,0.893508,-0.362317][-0.499509,0.707801,-0.499508][0.382813,0.132813,-0.250239][-0.472493,0.893508,-0.196085][-0.652639,0.707802,-0.270332][0.382813,0.183594,-0.326952][-0.352048,0.992346,-0.146195][-0.470992,0.860294,-0.195091][0.359375,0.195313,-0.243765][0.153579,-1.01163,-0.00286032][1.00736,-1.20386,-0.215745][0.505757,0.635722,0.194731][0.0407537,-1.09497,0.0354343][1.16261,-2.30384,1.49851][0.527672,0.539295,0.0516736][0.0554795,-1.09497,0.00416632][0.63869,-0.999986,-0.405183][0.509778,0.539295,0.0703452][0.0554795,-1.09497,0.00416632][0.63869,-0.999986,-0.405183][0.509778,0.539295,0.0703452][0.124248,-1.01163,-0.0931325][0,-1.88497,3.9712e-006][0.454097,0.635722,0.15754][0.153579,-1.01163,-0.00286032][1.00736,-1.20386,-0.215745][0.505757,0.635722,0.194731][0.211358,-0.719567,0.330049][0,-2.70168,3.07296e-007][0.696272,0.973616,0.267992][0.0942027,-0.719567,0.287067][0.0988735,0,1.56768][0.671674,0.973616,0.119444][0.194272,-0.719567,0.232066][1.33849,0.0407036,1.07731][0.640199,0.973616,0.246328][0.194272,-0.719567,0.232066][1.33849,0.0407036,1.07731][0.640199,0.973616,0.246328][0.319025,-0.719567,0.228925][0,-2.70202,0][0.638401,0.973616,0.404508][0.211358,-0.719567,0.330049][0,-2.70168,3.07296e-007][0.696272,0.973616,0.267992][-0.152362,-1.01163,0.0164348][-0.758478,-0.912992,0.300433][0.516799,0.635722,-0.193188][-0.251235,-1.01163,-0.00286131][-2.14725e-007,-2.51328,1.10025e-006][0.505756,0.635722,-0.318554][-0.203254,-1.01163,-0.150533][-0.719179,-1.47236,-0.875547][0.421248,0.635722,-0.257716][-0.203254,-1.01163,-0.150533][-0.719179,-1.47236,-0.875547][0.421248,0.635722,-0.257716][-0.124248,-1.01163,-0.0931325][3.84463e-007,-1.88496,1.89736e-007][0.454097,0.635722,-0.157541][-0.152362,-1.01163,0.0164348][-0.758478,-0.912992,0.300433][0.516799,0.635722,-0.193188][-0.00325303,-1.09497,-0.00107407][-7.18668e-006,-4.45226,-3.94523e-006][0.506779,0.539295,-0.00412474][-0.0490139,-1.09497,0.0240651][-1.82171,-2.61587,0.399946][0.521165,0.539295,-0.0621474][-0.0238267,-1.09497,-0.0534527][-0.942554,-1.28145,-0.306257][0.476804,0.539295,-0.0302111][-0.00325303,-1.09497,-0.00107407][-7.18668e-006,-4.45226,-3.94523e-006][0.506779,0.539295,-0.00412474][-0.0104617,-1.09497,0.0520751][-0.414197,-2.93353,2.23964][0.537195,0.539295,-0.0132649][-0.0490139,-1.09497,0.0240651][-1.82171,-2.61587,0.399946][0.521165,0.539295,-0.0621474][-0.107042,-1.01163,0.224431][-0.393062,-1.32688,0.797567][0.635829,0.635722,-0.135724][-0.0474588,-1.01163,0.143202][-0.126802,-1.19142,1.03822][0.589344,0.635722,-0.0601756][0.0474583,-1.01163,0.143202][0,-1.88495,0][0.589344,0.635722,0.0601748][0.0474583,-1.01163,0.143202][0,-1.88495,0][0.589344,0.635722,0.0601748][0.0776356,-1.01163,0.236079][0,-1.25664,0][0.642495,0.635722,0.0984382][-0.107042,-1.01163,0.224431][-0.393062,-1.32688,0.797567][0.635829,0.635722,-0.135724][-0.203254,-1.01163,0.144812][-0.742224,-1.32126,0.896906][0.590265,0.635722,-0.257716][-0.124248,-1.01163,0.0874114][-0.821706,-0.989101,0.325478][0.557417,0.635722,-0.157541][-0.0474588,-1.01163,0.143202][-0.126802,-1.19142,1.03822][0.589344,0.635722,-0.0601756][-0.0474588,-1.01163,0.143202][-0.126802,-1.19142,1.03822][0.589344,0.635722,-0.0601756][-0.107042,-1.01163,0.224431][-0.393062,-1.32688,0.797567][0.635829,0.635722,-0.135724][-0.203254,-1.01163,0.144812][-0.742224,-1.32126,0.896906][0.590265,0.635722,-0.257716][0.183863,-0.705625,0.219478][-0.891183,0.00439032,-1.59996][0.632995,0.989746,0.233129][0.251302,-0.705625,0.30103][0,2.76444,0][0.679664,0.989746,0.318638][0.345618,-0.705625,0.187006][0,2.70168,0][0.614412,0.989746,0.438228][0.345618,-0.705625,0.187006][0,2.70168,0][0.614412,0.989746,0.438228][0.286227,-0.705625,0.0333887][-2.93956,-0.0353615,-0.373824][0.526501,0.989746,0.362922][0.183863,-0.705625,0.219478][-0.891183,0.00439032,-1.59996][0.632995,0.989746,0.233129][0.000897469,0.893508,-0.512394][-3.07457e-007,0.707801,-0.706412][0.382813,0.0859375,0][-0.195187,0.893508,-0.473391][-0.270332,0.707801,-0.652639][0.382813,0.0976563,-0.135428][-0.145297,0.992346,-0.352945][-0.195631,0.868775,-0.454927][0.359375,0.132813,-0.100971][-0.145297,0.992346,-0.352945][-0.195631,0.868775,-0.454927][0.359375,0.132813,-0.100971][0.000897469,0.992346,-0.382025][-4.1064e-007,0.860294,-0.509798][0.359375,0.125,0][0.000897469,0.893508,-0.512394][-3.07457e-007,0.707801,-0.706412][0.382813,0.0859375,0][-0.145297,0.992346,-0.352945][-0.195631,0.868775,-0.454927][0.359375,0.132813,-0.100971][-0.269235,0.992346,-0.270133][-0.345433,0.868775,-0.354832][0.359375,0.160156,-0.18657][-0.197629,1.06184,-0.0822323][-0.245735,0.96152,-0.122856][0.339844,0.214844,-0.137115][-0.197629,1.06184,-0.0822323][-0.245735,0.96152,-0.122856][0.339844,0.214844,-0.137115][0.000897469,1.06184,-0.214884][-0.0189779,0.961843,-0.272942][0.339844,0.175781,0][-0.145297,0.992346,-0.352945][-0.195631,0.868775,-0.454927][0.359375,0.132813,-0.100971][0.27103,0.992346,0.270133][0.354832,0.868775,0.345433][0.359375,0.320313,0.18657][0.353843,0.992346,0.146194][0.454927,0.868775,0.19563][0.359375,0.285156,0.243766][0.215781,1.06184,-2.81259e-007][0.273948,0.961551,0.0192848][0.339844,0.242188,0.148412][0.215781,1.06184,-2.81259e-007][0.273948,0.961551,0.0192848][0.339844,0.242188,0.148412][0.0831302,1.06184,0.198526][0.122344,0.961666,0.245419][0.339844,0.300781,0.0567948][0.27103,0.992346,0.270133][0.354832,0.868775,0.345433][0.359375,0.320313,0.18657][-0.197629,1.06184,-0.0822323][-0.245735,0.96152,-0.122856][0.339844,0.214844,-0.137115][-0.197629,1.06184,0.0822325][-0.257299,0.960402,0.106892][0.339844,0.265625,-0.137114][-0.00656703,1.09497,-0.00309184][-0.0525476,0.998228,-0.0279048][0.332031,0.238281,-0.00515553][0.194273,-0.965871,-0.237786][0.683008,-0.027566,-1.24268][0.371316,0.688659,0.246329][0.203254,-1.01163,-0.150533][0,-1.25663,4.79456e-007][0.421248,0.635722,0.257716][0.0776361,-1.01163,-0.2418][0,-2.57626,-3.24159e-006][0.369019,0.635722,0.0984388][0.0776361,-1.01163,-0.2418][0,-2.57626,-3.24159e-006][0.369019,0.635722,0.0984388][0.0942034,-0.965871,-0.292787][0.778766,-0.0158284,-1.53491][0.33984,0.688659,0.119445][0.194273,-0.965871,-0.237786][0.683008,-0.027566,-1.24268][0.371316,0.688659,0.246329][-0.0470001,-1.01163,-0.24966][0,-1.51236,-1.78916e-006][0.36452,0.635722,-0.059594][-0.0942032,-0.965871,-0.292787][-0.162617,0.039342,-1.5621][0.33984,0.688659,-0.119445][0.0190842,-0.965871,-0.307109][-0.215568,0.0663143,-1.70513][0.331644,0.688659,0.0241978][0.227319,-0.997687,0.0870924][5.79255e-007,1.3194,7.24754e-007][0.557234,0.651851,0.288229][0.233412,-0.960096,0.166723][-2.44761,0.0518339,-1.74969][0.602804,0.69534,0.295955][0.288513,-0.960096,-0.00286031][-2.97947,-0.0385478,0.0826941][0.505757,0.69534,0.36582][0.288513,-0.960096,-0.00286031][-2.97947,-0.0385478,0.0826941][0.505757,0.69534,0.36582][0.242532,-0.997686,-0.0335756][0,1.78302,0][0.488179,0.651851,0.307519][0.227319,-0.997687,0.0870924][5.79255e-007,1.3194,7.24754e-007][0.557234,0.651851,0.288229][-0.0891561,-0.960096,0.271531][0.955607,0.0375337,-2.84103][0.662783,0.69534,-0.113046][-0.0891561,-0.705625,0.271531][0.923294,0,-1.2708][0.662783,0.989746,-0.113046][0.0539733,-0.705625,0.28056][-0.608982,-0.0382545,-1.29499][0.66795,0.989746,0.0684355][0.0539733,-0.705625,0.28056][-0.608982,-0.0382545,-1.29499][0.66795,0.989746,0.0684355][0.089155,-0.960096,0.271532][-0.917945,0.0987633,-2.86836][0.662784,0.69534,0.113044][-0.0891561,-0.960096,0.271531][0.955607,0.0375337,-2.84103][0.662783,0.69534,-0.113046][0.089155,-0.960096,0.271532][-0.917945,0.0987633,-2.86836][0.662784,0.69534,0.113044][0.0755448,-0.997687,0.229644][5.66025e-007,2.63903,6.34952e-007][0.638812,0.651851,0.0957871][-0.0755457,-0.997687,0.229643][0,0.913519,6.33295e-007][0.638812,0.651851,-0.0957884][-0.0755457,-0.997687,0.229643][0,0.913519,6.33295e-007][0.638812,0.651851,-0.0957884][-0.0891561,-0.960096,0.271531][0.955607,0.0375337,-2.84103][0.662783,0.69534,-0.113046][0.089155,-0.960096,0.271532][-0.917945,0.0987633,-2.86836][0.662784,0.69534,0.113044][-0.00325303,-1.08103,-0.00464706][1.71335e-006,5.59527,6.01962e-006][0.504734,0.555425,-0.00412474][0.0457079,-1.08103,-0.0209476][-1.2307,2.03112,1.39342][0.495406,0.555425,0.0579554][-0.0151901,-1.08103,-0.0496103][-0.686028,1.37585,1.45757][0.479003,0.555425,-0.0192604][-0.142194,-0.997686,0.0336773][0.473271,0.634097,-0.572304][0.526666,0.651851,-0.180295][-0.19778,-0.997686,0.140835][1.14849,1.34565,-0.373162][0.58799,0.651851,-0.250775][-0.0755457,-0.997687,0.229643][0,0.913519,6.33295e-007][0.638812,0.651851,-0.0957884][-0.0755457,-0.997687,0.229643][0,0.913519,6.33295e-007][0.638812,0.651851,-0.0957884][-0.00919107,-0.997686,0.143665][0.278705,1.50971,-1.32484][0.589609,0.651851,-0.0116539][-0.142194,-0.997686,0.0336773][0.473271,0.634097,-0.572304][0.526666,0.651851,-0.180295][-0.19778,-0.997687,-0.146555][0.70981,1.34566,0.976972][0.423524,0.651851,-0.250775][-0.118774,-0.997687,-0.0891553][0.728612,1.2298,0.722252][0.456373,0.651851,-0.1506][-0.0453677,-0.997687,-0.142488][0.101044,1.53113,1.27837][0.425852,0.651851,-0.0575241][-0.0453677,-0.997687,-0.142488][0.101044,1.53113,1.27837][0.425852,0.651851,-0.0575241][-0.0755451,-0.997687,-0.235364][0.709808,1.34567,0.976961][0.372702,0.651851,-0.0957876][-0.19778,-0.997687,-0.146555][0.70981,1.34566,0.976972][0.423524,0.651851,-0.250775][0.366672,-0.705625,-0.147956][0,2.70168,-1.43973e-006][0.422722,0.989746,0.464923][0.252869,-0.705625,-0.141775][-2.77201,0.0637778,1.22947][0.42626,0.989746,0.320626][0.286227,-0.705625,0.0333887][-2.93956,-0.0353615,-0.373824][0.526501,0.989746,0.362922][0.286227,-0.705625,0.0333887][-2.93956,-0.0353615,-0.373824][0.526501,0.989746,0.362922][0.394337,-0.705625,-0.00286076][0,2.70202,0][0.505757,0.989746,0.5][0.366672,-0.705625,-0.147956][0,2.70168,-1.43973e-006][0.422722,0.989746,0.464923][0.0180616,-0.705625,-0.290808][-0.130881,-0.12963,2.9864][0.340973,0.989746,0.0229012][-0.121857,-0.705625,-0.377897][-0.0549384,0.0142342,-0.432687][0.291134,0.989745,-0.154508][-0.211359,-0.705625,-0.335771][-1.61078e-006,2.76444,-5.29739e-006][0.315241,0.989745,-0.267993][-0.211359,-0.705625,-0.335771][-1.61078e-006,2.76444,-5.29739e-006][0.315241,0.989745,-0.267993][-0.183863,-0.705625,-0.225199][0.75592,-0.0576382,1.65712][0.378518,0.989746,-0.233129][0.0180616,-0.705625,-0.290808][-0.130881,-0.12963,2.9864][0.340973,0.989746,0.0229012][-0.269235,0.992346,0.270133][-0.357997,0.862367,0.357997][0.359375,0.320313,-0.18657][-0.352048,0.992346,0.146195][-0.470992,0.860294,0.195091][0.359375,0.285156,-0.243765][-0.472493,0.893508,0.196085][-0.652639,0.707801,0.270332][0.382813,0.300781,-0.326952][-0.472493,0.893508,0.196085][-0.652639,0.707801,0.270332][0.382813,0.300781,-0.326952][-0.36142,0.893508,0.362318][-0.499508,0.707801,0.499509][0.382813,0.347656,-0.250238][-0.269235,0.992346,0.270133][-0.357997,0.862367,0.357997][0.359375,0.320313,-0.18657][0.27103,0.992346,0.270133][0.354832,0.868775,0.345433][0.359375,0.320313,0.18657][0.147093,0.992346,0.352945][0.195091,0.860294,0.470992][0.359375,0.347656,0.100971][0.196983,0.893508,0.473391][0.270332,0.707801,0.652639][0.382813,0.382813,0.135428][0.196983,0.893508,0.473391][0.270332,0.707801,0.652639][0.382813,0.382813,0.135428][0.363215,0.893508,0.362317][0.499509,0.707801,0.499508][0.382813,0.347656,0.250239][0.27103,0.992346,0.270133][0.354832,0.868775,0.345433][0.359375,0.320313,0.18657][0.251235,-1.01163,-0.00286032][0.511578,-0.767777,-0.166222][0.505757,0.635722,0.318554][0.153579,-1.01163,-0.00286032][1.00736,-1.20386,-0.215745][0.505757,0.635722,0.194731][0.124248,-1.01163,-0.0931325][0,-1.88497,3.9712e-006][0.454097,0.635722,0.15754][0.124248,-1.01163,-0.0931325][0,-1.88497,3.9712e-006][0.454097,0.635722,0.15754][0.203254,-1.01163,-0.150533][0,-1.25663,4.79456e-007][0.421248,0.635722,0.257716][0.251235,-1.01163,-0.00286032][0.511578,-0.767777,-0.166222][0.505757,0.635722,0.318554][-0.295256,-0.965871,0.0730079][-2.9869,-0.00162242,0.848612][0.549174,0.688659,-0.374371][-0.251235,-1.01163,-0.00286131][-2.14725e-007,-2.51328,1.10025e-006][0.505756,0.635722,-0.318554][-0.203254,-1.01163,0.144812][-0.742224,-1.32126,0.896906][0.590265,0.635722,-0.257716][-0.203254,-1.01163,0.144812][-0.742224,-1.32126,0.896906][0.590265,0.635722,-0.257716][-0.246627,-0.965871,0.176325][-1.63183,-0.0187538,0.89269][0.608299,0.688659,-0.312712][-0.295256,-0.965871,0.0730079][-2.9869,-0.00162242,0.848612][0.549174,0.688659,-0.374371][-0.283462,-0.965871,-0.115029][-2.91863,0.0421445,-1.04847][0.441566,0.688659,-0.359416][-0.203254,-1.01163,-0.150533][-0.719179,-1.47236,-0.875547][0.421248,0.635722,-0.257716][-0.251235,-1.01163,-0.00286131][-2.14725e-007,-2.51328,1.10025e-006][0.505756,0.635722,-0.318554][-0.251235,-1.01163,-0.00286131][-2.14725e-007,-2.51328,1.10025e-006][0.505756,0.635722,-0.318554][-0.304848,-0.965871,-0.0028613][-3.10139,-1.72778e-007,-0.0971787][0.505756,0.688659,-0.386533][-0.283462,-0.965871,-0.115029][-2.91863,0.0421445,-1.04847][0.441566,0.688659,-0.359416][0.00114685,-1.08103,0.000669093][-8.14725e-006,3.92547,-3.57608e-007][0.507777,0.555425,0.00145409][-0.00307729,-1.08103,0.0461988][0.240725,2.74883,-2.33553][0.533832,0.555425,-0.00390192][0.0313262,-1.08103,0.0350218][-0.387482,1.36624,-1.19263][0.527436,0.555425,0.03972][-0.00325303,-1.08103,-0.00464706][1.71335e-006,5.59527,6.01962e-006][0.504734,0.555425,-0.00412474][-0.0457079,-1.08103,-0.0209476][1.98281,1.83956,0.123813][0.495406,0.555425,-0.0579554][-0.0397684,-1.08103,0.0260326][1.51576,1.99344,-1.42988][0.522291,0.555425,-0.0504244][-0.304848,-0.719567,-0.00286176][-3.03914,0.115569,-0.0793935][0.505756,0.973616,-0.386533][-0.38193,-0.719567,0.0952784][9.82625e-007,-2.76445,1.7678e-007][0.561919,0.973616,-0.484268][-0.391212,-0.719567,-0.0524062][0,-2.70168,0][0.477403,0.973616,-0.496038][-0.267186,-0.719567,0.143918][-2.73391,0.0682712,1.4123][0.589754,0.973616,-0.338779][-0.319026,-0.719567,0.228924][6.59074e-007,-2.70202,-1.0256e-006][0.6384,0.973616,-0.404509][-0.38193,-0.719567,0.0952784][9.82625e-007,-2.76445,1.7678e-007][0.561919,0.973616,-0.484268][-0.38193,-0.719567,0.0952784][9.82625e-007,-2.76445,1.7678e-007][0.561919,0.973616,-0.484268][-0.304848,-0.719567,-0.00286176][-3.03914,0.115569,-0.0793935][0.505756,0.973616,-0.386533][-0.267186,-0.719567,0.143918][-2.73391,0.0682712,1.4123][0.589754,0.973616,-0.338779][-0.271657,-0.639573,-0.272555][-2.19092,-0.180471,-2.19092][0.75,0.160156,-0.188243][-0.355212,-0.639573,-0.147506][-2.86258,-0.180472,-1.18572][0.75,0.195313,-0.245951][-0.364006,-0.476163,-0.151148][-0.909225,-0.177402,-0.376614][0.710938,0.195313,-0.252024][-0.364006,-0.476163,-0.151148][-0.909225,-0.177402,-0.376614][0.710938,0.195313,-0.252024][-0.278388,-0.476163,-0.279285][-0.695891,-0.177402,-0.695891][0.710938,0.15625,-0.192891][-0.271657,-0.639573,-0.272555][-2.19092,-0.180471,-2.19092][0.75,0.160156,-0.188243][0.283462,-0.965871,0.109309][1.543,1.14744e-006,0.294191][0.569948,0.688659,0.359416][0.203254,-1.01163,0.144812][0,-1.25663,0][0.590265,0.635722,0.257716][0.251235,-1.01163,-0.00286032][0.511578,-0.767777,-0.166222][0.505757,0.635722,0.318554][0.251235,-1.01163,-0.00286032][0.511578,-0.767777,-0.166222][0.505757,0.635722,0.318554][0.304848,-0.965871,-0.00286031][1.96523,0.0736891,0.212888][0.505757,0.688659,0.386533][0.283462,-0.965871,0.109309][1.543,1.14744e-006,0.294191][0.569948,0.688659,0.359416][-0.246627,-0.719567,-0.182046][-1.4746,0.0740289,-0.538414][0.403214,0.973616,-0.312711][-0.163394,-0.965871,-0.260221][-0.745187,-1.84165,-1.03905][0.358477,0.688659,-0.207176][-0.246627,-0.965871,-0.182046][-1.37657,-6.31965e-007,-0.756612][0.403214,0.688659,-0.312711][-0.107042,-1.01163,0.224431][-0.393062,-1.32688,0.797567][0.635829,0.635722,-0.135724][-0.0942039,-0.965871,0.287067][-0.335052,-0.74046,0.609598][0.671674,0.688659,-0.119446][-0.194273,-0.965871,0.232066][-1.11313,-2.33251,1.26113][0.640198,0.688659,-0.246329][-0.0942039,-0.965871,0.287067][-0.335052,-0.74046,0.609598][0.671674,0.688659,-0.119446][-0.057031,-0.719567,0.296605][0.114433,0.0154697,1.41492][0.677133,0.973616,-0.0723126][-0.194274,-0.719567,0.232065][-0.978702,0.0248227,0.80955][0.640198,0.973616,-0.24633][-0.194274,-0.719567,0.232065][-0.978702,0.0248227,0.80955][0.640198,0.973616,-0.24633][-0.194273,-0.965871,0.232066][-1.11313,-2.33251,1.26113][0.640198,0.688659,-0.246329][-0.0942039,-0.965871,0.287067][-0.335052,-0.74046,0.609598][0.671674,0.688659,-0.119446][0.0755453,-0.997687,-0.235364][-0.284195,0.713133,0.391162][0.372702,0.651851,0.0957878][-0.0453677,-0.997687,-0.142488][0.101044,1.53113,1.27837][0.425852,0.651851,-0.0575241][0.128675,-0.997687,-0.0735481][-1.1242,1.62162,0.796276][0.465304,0.651851,0.163154][0.128675,-0.997687,-0.0735481][-1.1242,1.62162,0.796276][0.465304,0.651851,0.163154][0.19778,-0.997687,-0.146555][-0.740362,1.41431,0.852107][0.423524,0.651851,0.250775][0.0755453,-0.997687,-0.235364][-0.284195,0.713133,0.391162][0.372702,0.651851,0.0957878][-0.364006,-0.476163,0.151148][-0.909225,-0.177402,0.376613][0.710938,0.285156,-0.252025][-0.394071,-0.476163,-1.70898e-007][-0.984138,-0.177402,-1.22317e-007][0.710938,0.242188,-0.272789][-0.384553,-0.639573,-1.9744e-007][-3.09843,-0.180471,-7.45058e-007][0.75,0.242188,-0.266216][-0.384553,-0.639573,-1.9744e-007][-3.09843,-0.180471,-7.45058e-007][0.75,0.242188,-0.266216][-0.355213,-0.639573,0.147505][-2.86257,-0.180472,1.18572][0.75,0.285156,-0.245951][-0.364006,-0.476163,0.151148][-0.909225,-0.177402,0.376613][0.710938,0.285156,-0.252025][-0.15025,-0.476163,0.364903][-0.376614,-0.177402,0.909225][0.710938,0.351563,-0.104392][-0.278388,-0.476163,0.279285][-0.695891,-0.177402,0.695891][0.710938,0.324219,-0.192891][-0.271657,-0.639573,0.272555][-2.19092,-0.180472,2.19092][0.75,0.324219,-0.188243][-0.271657,-0.639573,0.272555][-2.19092,-0.180472,2.19092][0.75,0.324219,-0.188243][-0.146608,-0.639573,0.35611][-1.18572,-0.180472,2.86257][0.75,0.347656,-0.101876][-0.15025,-0.476163,0.364903][-0.376614,-0.177402,0.909225][0.710938,0.351563,-0.104392][-0.0942032,-0.719567,-0.292788][-0.0988848,-6.63303e-006,-1.56768][0.339839,0.973616,-0.119445][-0.0942032,-0.965871,-0.292787][-0.162617,0.039342,-1.5621][0.33984,0.688659,-0.119445][-0.163394,-0.965871,-0.260221][-0.745187,-1.84165,-1.03905][0.358477,0.688659,-0.207176][-0.163394,-0.965871,-0.260221][-0.745187,-1.84165,-1.03905][0.358477,0.688659,-0.207176][-0.246627,-0.719567,-0.182046][-1.4746,0.0740289,-0.538414][0.403214,0.973616,-0.312711][-0.0942032,-0.719567,-0.292788][-0.0988848,-6.63303e-006,-1.56768][0.339839,0.973616,-0.119445][0.513292,0.893508,-2.79862e-007][0.706411,0.707802,-1.22007e-007][0.382813,0.242188,0.353891][0.474288,0.893508,0.196085][0.652639,0.707801,0.270332][0.382813,0.300781,0.326952][0.56343,0.772345,0.233008][0.78633,0.524976,0.325708][0.410156,0.3125,0.388519][0.56343,0.772345,0.233008][0.78633,0.524976,0.325708][0.410156,0.3125,0.388519][0.609779,0.772345,-2.68454e-007][0.851117,0.524976,0][0.410156,0.242188,0.42053][0.513292,0.893508,-2.79862e-007][0.706411,0.707802,-1.22007e-007][0.382813,0.242188,0.353891][-0.195187,0.893508,-0.473391][-0.270332,0.707801,-0.652639][0.382813,0.0976563,-0.135428][0.000897469,0.893508,-0.512394][-3.07457e-007,0.707801,-0.706412][0.382813,0.0859375,0][0.000897501,0.772345,-0.608881][-1.95954e-007,0.524976,-0.851117][0.410156,0.0585938,0][0.000897501,0.772345,-0.608881][-1.95954e-007,0.524976,-0.851117][0.410156,0.0585938,0][-0.232111,0.772345,-0.562533][-0.325709,0.524976,-0.78633][0.410156,0.0703125,-0.16093][-0.195187,0.893508,-0.473391][-0.270332,0.707801,-0.652639][0.382813,0.0976563,-0.135428][0.704936,0.205627,-1.84635e-007][0.968047,-0.250769,-1.38031e-007][0.546875,0.242188,0.486251][0.651344,0.205627,-0.269424][0.894359,-0.250769,-0.370456][0.546875,0.160156,0.449238][0.669735,0.345107,-0.277042][0.923798,0.0132927,-0.38265][0.511719,0.15625,0.46194][0.669735,0.345107,-0.277042][0.923798,0.0132927,-0.38265][0.511719,0.15625,0.46194][0.724842,0.345107,-2.09082e-007][0.999912,0.0132928,-1.94556e-007][0.511719,0.242188,0.5][0.704936,0.205627,-1.84635e-007][0.968047,-0.250769,-1.38031e-007][0.546875,0.242188,0.486251][0.724842,0.345107,-2.09082e-007][0.999912,0.0132928,-1.94556e-007][0.511719,0.242188,0.5][0.669735,0.345107,0.277041][0.923798,0.0132928,0.38265][0.511719,0.324219,0.46194][0.651344,0.205627,0.269423][0.894359,-0.250769,0.370455][0.546875,0.320313,0.449238][0.651344,0.205627,0.269423][0.894359,-0.250769,0.370455][0.546875,0.320313,0.449238][0.704936,0.205627,-1.84635e-007][0.968047,-0.250769,-1.38031e-007][0.546875,0.242188,0.486251][0.724842,0.345107,-2.09082e-007][0.999912,0.0132928,-1.94556e-007][0.511719,0.242188,0.5][0.000897597,0.205627,-0.704038][-1.23242e-007,-0.250769,-0.968047][0.546875,0.0273438,0][-0.268526,0.205627,-0.650446][-0.370456,-0.250769,-0.894359][0.546875,0.046875,-0.18608][-0.276144,0.345107,-0.668838][-0.38265,0.0132926,-0.923798][0.511719,0.0390625,-0.191342][-0.276144,0.345107,-0.668838][-0.38265,0.0132926,-0.923798][0.511719,0.0390625,-0.191342][0.000897533,0.345107,-0.723945][-2.69386e-007,0.0132926,-0.999912][0.511719,0.0234375,0][0.000897597,0.205627,-0.704038][-1.23242e-007,-0.250769,-0.968047][0.546875,0.0273438,0][0.000897533,0.345107,-0.723945][-2.69386e-007,0.0132926,-0.999912][0.511719,0.0234375,0][0.277939,0.345107,-0.668838][0.382649,0.0132924,-0.923798][0.511719,0.0390625,0.191342][0.270321,0.205627,-0.650446][0.370455,-0.250769,-0.894359][0.546875,0.046875,0.18608][0.270321,0.205627,-0.650446][0.370455,-0.250769,-0.894359][0.546875,0.046875,0.18608][0.000897597,0.205627,-0.704038][-1.23242e-007,-0.250769,-0.968047][0.546875,0.0273438,0][0.000897533,0.345107,-0.723945][-2.69386e-007,0.0132926,-0.999912][0.511719,0.0234375,0][0.498728,0.205627,0.49783][0.684513,-0.250769,0.684513][0.546875,0.390625,0.343832][0.651344,0.205627,0.269423][0.894359,-0.250769,0.370455][0.546875,0.320313,0.449238][0.669735,0.345107,0.277041][0.923798,0.0132928,0.38265][0.511719,0.324219,0.46194][0.669735,0.345107,0.277041][0.923798,0.0132928,0.38265][0.511719,0.324219,0.46194][0.512804,0.345107,0.511906][0.707044,0.0132929,0.707044][0.511719,0.394531,0.353553][0.498728,0.205627,0.49783][0.684513,-0.250769,0.684513][0.546875,0.390625,0.343832][0.512804,0.345107,0.511906][0.707044,0.0132929,0.707044][0.511719,0.394531,0.353553][0.277939,0.345107,0.668837][0.38265,0.0132929,0.923798][0.511719,0.441406,0.191342][0.270321,0.205627,0.650446][0.370456,-0.250769,0.894359][0.546875,0.4375,0.18608][0.270321,0.205627,0.650446][0.370456,-0.250769,0.894359][0.546875,0.4375,0.18608][0.498728,0.205627,0.49783][0.684513,-0.250769,0.684513][0.546875,0.390625,0.343832][0.512804,0.345107,0.511906][0.707044,0.0132929,0.707044][0.511719,0.394531,0.353553][0.277939,0.345107,-0.668838][0.382649,0.0132924,-0.923798][0.511719,0.0390625,0.191342][0.512804,0.345107,-0.511906][0.707044,0.0132925,-0.707044][0.511719,0.0859375,0.353553][0.498728,0.205627,-0.49783][0.684512,-0.250769,-0.684513][0.546875,0.0898438,0.343832][0.498728,0.205627,-0.49783][0.684512,-0.250769,-0.684513][0.546875,0.0898438,0.343832][0.270321,0.205627,-0.650446][0.370455,-0.250769,-0.894359][0.546875,0.046875,0.18608][0.277939,0.345107,-0.668838][0.382649,0.0132924,-0.923798][0.511719,0.0390625,0.191342][-0.496933,0.205627,-0.49783][-0.684513,-0.250769,-0.684512][0.546875,0.0898438,-0.343832][-0.649549,0.205627,-0.269424][-0.894359,-0.250769,-0.370455][0.546875,0.160156,-0.449238][-0.66794,0.345107,-0.277042][-0.923798,0.0132927,-0.382649][0.511719,0.15625,-0.46194][-0.66794,0.345107,-0.277042][-0.923798,0.0132927,-0.382649][0.511719,0.15625,-0.46194][-0.511009,0.345107,-0.511906][-0.707044,0.0132925,-0.707044][0.511719,0.0859375,-0.353553][-0.496933,0.205627,-0.49783][-0.684513,-0.250769,-0.684512][0.546875,0.0898438,-0.343832][-0.511009,0.345107,-0.511906][-0.707044,0.0132925,-0.707044][0.511719,0.0859375,-0.353553][-0.276144,0.345107,-0.668838][-0.38265,0.0132926,-0.923798][0.511719,0.0390625,-0.191342][-0.268526,0.205627,-0.650446][-0.370456,-0.250769,-0.894359][0.546875,0.046875,-0.18608][-0.268526,0.205627,-0.650446][-0.370456,-0.250769,-0.894359][0.546875,0.046875,-0.18608][-0.496933,0.205627,-0.49783][-0.684513,-0.250769,-0.684512][0.546875,0.0898438,-0.343832][-0.511009,0.345107,-0.511906][-0.707044,0.0132925,-0.707044][0.511719,0.0859375,-0.353553][0.000897662,0.205627,0.704038][0,-0.250769,0.968047][0.546875,0.453125,0][0.270321,0.205627,0.650446][0.370456,-0.250769,0.894359][0.546875,0.4375,0.18608][0.277939,0.345107,0.668837][0.38265,0.0132929,0.923798][0.511719,0.441406,0.191342][0.277939,0.345107,0.668837][0.38265,0.0132929,0.923798][0.511719,0.441406,0.191342][0.000897694,0.345107,0.723944][1.19727e-007,0.0132926,0.999912][0.511719,0.457031,0][0.000897662,0.205627,0.704038][0,-0.250769,0.968047][0.546875,0.453125,0][0.000897694,0.345107,0.723944][1.19727e-007,0.0132926,0.999912][0.511719,0.457031,0][-0.276144,0.345107,0.668837][-0.38265,0.0132928,0.923798][0.511719,0.441406,-0.191342][-0.268526,0.205627,0.650446][-0.370455,-0.250769,0.894359][0.546875,0.4375,-0.18608][-0.268526,0.205627,0.650446][-0.370455,-0.250769,0.894359][0.546875,0.4375,-0.18608][0.000897662,0.205627,0.704038][0,-0.250769,0.968047][0.546875,0.453125,0][0.000897694,0.345107,0.723944][1.19727e-007,0.0132926,0.999912][0.511719,0.457031,0][0.651344,0.205627,-0.269424][0.894359,-0.250769,-0.370456][0.546875,0.160156,0.449238][0.498728,0.205627,-0.49783][0.684512,-0.250769,-0.684513][0.546875,0.0898438,0.343832][0.512804,0.345107,-0.511906][0.707044,0.0132925,-0.707044][0.511719,0.0859375,0.353553][0.512804,0.345107,-0.511906][0.707044,0.0132925,-0.707044][0.511719,0.0859375,0.353553][0.669735,0.345107,-0.277042][0.923798,0.0132927,-0.38265][0.511719,0.15625,0.46194][0.651344,0.205627,-0.269424][0.894359,-0.250769,-0.370456][0.546875,0.160156,0.449238][-0.649549,0.205627,-0.269424][-0.894359,-0.250769,-0.370455][0.546875,0.160156,-0.449238][-0.70314,0.205627,0][-0.968047,-0.250769,1.47891e-007][0.546875,0.242188,-0.486251][-0.723047,0.345107,0][-0.999912,0.0132927,1.99545e-007][0.511719,0.242188,-0.5][-0.723047,0.345107,0][-0.999912,0.0132927,1.99545e-007][0.511719,0.242188,-0.5][-0.66794,0.345107,-0.277042][-0.923798,0.0132927,-0.382649][0.511719,0.15625,-0.46194][-0.649549,0.205627,-0.269424][-0.894359,-0.250769,-0.370455][0.546875,0.160156,-0.449238][-0.276144,0.345107,0.668837][-0.38265,0.0132928,0.923798][0.511719,0.441406,-0.191342][-0.511008,0.345107,0.511906][-0.707044,0.0132929,0.707044][0.511719,0.394531,-0.353553][-0.496932,0.205627,0.49783][-0.684513,-0.250769,0.684513][0.546875,0.390625,-0.343832][-0.496932,0.205627,0.49783][-0.684513,-0.250769,0.684513][0.546875,0.390625,-0.343832][-0.268526,0.205627,0.650446][-0.370455,-0.250769,0.894359][0.546875,0.4375,-0.18608][-0.276144,0.345107,0.668837][-0.38265,0.0132928,0.923798][0.511719,0.441406,-0.191342][-0.649549,0.205627,0.269424][-0.894359,-0.250769,0.370456][0.546875,0.320313,-0.449238][-0.496932,0.205627,0.49783][-0.684513,-0.250769,0.684513][0.546875,0.390625,-0.343832][-0.511008,0.345107,0.511906][-0.707044,0.0132929,0.707044][0.511719,0.394531,-0.353553][-0.511008,0.345107,0.511906][-0.707044,0.0132929,0.707044][0.511719,0.394531,-0.353553][-0.66794,0.345107,0.277042][-0.923798,0.0132927,0.38265][0.511719,0.324219,-0.46194][-0.649549,0.205627,0.269424][-0.894359,-0.250769,0.370456][0.546875,0.320313,-0.449238][-0.66794,0.345107,0.277042][-0.923798,0.0132927,0.38265][0.511719,0.324219,-0.46194][-0.723047,0.345107,0][-0.999912,0.0132927,1.99545e-007][0.511719,0.242188,-0.5][-0.70314,0.205627,0][-0.968047,-0.250769,1.47891e-007][0.546875,0.242188,-0.486251][-0.70314,0.205627,0][-0.968047,-0.250769,1.47891e-007][0.546875,0.242188,-0.486251][-0.649549,0.205627,0.269424][-0.894359,-0.250769,0.370456][0.546875,0.320313,-0.449238][-0.66794,0.345107,0.277042][-0.923798,0.0132927,0.38265][0.511719,0.324219,-0.46194][0.0755448,-0.997687,0.229644][5.66025e-007,2.63903,6.34952e-007][0.638812,0.651851,0.0957871][0.089155,-0.960096,0.271532][-0.917945,0.0987633,-2.86836][0.662784,0.69534,0.113044][0.233412,-0.960096,0.166723][-2.44761,0.0518339,-1.74969][0.602804,0.69534,0.295955][0.233412,-0.960096,0.166723][-2.44761,0.0518339,-1.74969][0.602804,0.69534,0.295955][0.155795,-0.997687,0.185536][-3.55936e-007,1.93084,2.94343e-007][0.613571,0.651851,0.19754][0.0755448,-0.997687,0.229644][5.66025e-007,2.63903,6.34952e-007][0.638812,0.651851,0.0957871][-0.288513,-0.960096,-0.0028613][3.00199,0.06237,-0.0483578][0.505756,0.69534,-0.365821][-0.244469,-0.997686,-0.00286131][1.14849,1.34566,-0.373165][0.505756,0.651851,-0.309975][-0.19778,-0.997687,-0.146555][0.70981,1.34566,0.976972][0.423524,0.651851,-0.250775][-0.19778,-0.997687,-0.146555][0.70981,1.34566,0.976972][0.423524,0.651851,-0.250775][-0.233412,-0.960096,-0.172443][2.44015,0.118576,1.77287][0.408709,0.69534,-0.295955][-0.288513,-0.960096,-0.0028613][3.00199,0.06237,-0.0483578][0.505756,0.69534,-0.365821][-0.0891561,-0.960096,0.271531][0.955607,0.0375337,-2.84103][0.662783,0.69534,-0.113046][-0.0755457,-0.997687,0.229643][0,0.913519,6.33295e-007][0.638812,0.651851,-0.0957884][-0.19778,-0.997686,0.140835][1.14849,1.34565,-0.373162][0.58799,0.651851,-0.250775][-0.19778,-0.997686,0.140835][1.14849,1.34565,-0.373162][0.58799,0.651851,-0.250775][-0.233412,-0.960096,0.166723][2.41721,-2.75652e-006,-1.7562][0.602804,0.69534,-0.295955][-0.0891561,-0.960096,0.271531][0.955607,0.0375337,-2.84103][0.662783,0.69534,-0.113046][0.283461,-0.719567,0.109308][2.59547,0.148542,0.828524][0.569948,0.973616,0.359415][0.391212,-0.719567,0.0466847][-2.0264e-007,-2.70167,-6.14861e-007][0.53411,0.973616,0.496038][0.319025,-0.719567,0.228925][0,-2.70202,0][0.638401,0.973616,0.404508][0.319025,-0.719567,0.228925][0,-2.70202,0][0.638401,0.973616,0.404508][0.194272,-0.719567,0.232066][1.33849,0.0407036,1.07731][0.640199,0.973616,0.246328][0.283461,-0.719567,0.109308][2.59547,0.148542,0.828524][0.569948,0.973616,0.359415][-0.057031,-0.719567,0.296605][0.114433,0.0154697,1.41492][0.677133,0.973616,-0.0723126][0.0246852,-0.719567,0.390703][0,-2.63869,1.38328e-006][0.730982,0.973616,0.0312996][-0.168012,-0.719567,0.353894][1.502e-007,-2.63903,2.9097e-007][0.709917,0.973616,-0.213031][-0.168012,-0.719567,0.353894][1.502e-007,-2.63903,2.9097e-007][0.709917,0.973616,-0.213031][-0.194274,-0.719567,0.232065][-0.978702,0.0248227,0.80955][0.640198,0.973616,-0.24633][-0.057031,-0.719567,0.296605][0.114433,0.0154697,1.41492][0.677133,0.973616,-0.0723126][0.286227,-0.705625,0.0333887][-2.93956,-0.0353615,-0.373824][0.526501,0.989746,0.362922][0.345618,-0.705625,0.187006][0,2.70168,0][0.614412,0.989746,0.438228][0.394337,-0.705625,-0.00286076][0,2.70202,0][0.505757,0.989746,0.5][-0.0737725,-0.705625,0.384514][0,2.63903,0][0.72744,0.989746,-0.0935401][0.0539733,-0.705625,0.28056][-0.608982,-0.0382545,-1.29499][0.66795,0.989746,0.0684355][-0.0891561,-0.705625,0.271531][0.923294,0,-1.2708][0.662783,0.989746,-0.113046][-0.0891561,-0.705625,0.271531][0.923294,0,-1.2708][0.662783,0.989746,-0.113046][-0.251303,-0.705625,0.301028][0,2.63869,0][0.679664,0.989746,-0.31864][-0.0737725,-0.705625,0.384514][0,2.63903,0][0.72744,0.989746,-0.0935401][0.215781,1.06184,-2.81259e-007][0.273948,0.961551,0.0192848][0.339844,0.242188,0.148412][0.152843,1.06184,-0.151946][0.196256,0.960604,-0.196782][0.339844,0.195313,0.104943][0.00836223,1.09497,0.00309166][0.0562531,0.998192,0.0211596][0.332031,0.242188,0.00515552][0.0831302,1.06184,0.198526][0.122344,0.961666,0.245419][0.339844,0.300781,0.0567948][0.215781,1.06184,-2.81259e-007][0.273948,0.961551,0.0192848][0.339844,0.242188,0.148412][0.00836223,1.09497,0.00309166][0.0562531,0.998192,0.0211596][0.332031,0.242188,0.00515552][0.233412,-0.960096,-0.172443][-2.59164,-0.000921227,1.58469][0.408709,0.69534,0.295955][0.19778,-0.997687,-0.146555][-0.740362,1.41431,0.852107][0.423524,0.651851,0.250775][0.242532,-0.997686,-0.0335756][0,1.78302,0][0.488179,0.651851,0.307519][0.242532,-0.997686,-0.0335756][0,1.78302,0][0.488179,0.651851,0.307519][0.288513,-0.960096,-0.00286031][-2.97947,-0.0385478,0.0826941][0.505757,0.69534,0.36582][0.233412,-0.960096,-0.172443][-2.59164,-0.000921227,1.58469][0.408709,0.69534,0.295955][-0.352048,0.992346,0.146195][-0.470992,0.860294,0.195091][0.359375,0.285156,-0.243765][-0.269235,0.992346,0.270133][-0.357997,0.862367,0.357997][0.359375,0.320313,-0.18657][-0.197629,1.06184,0.0822325][-0.257299,0.960402,0.106892][0.339844,0.265625,-0.137114][0.147093,0.992346,0.352945][0.195091,0.860294,0.470992][0.359375,0.347656,0.100971][0.27103,0.992346,0.270133][0.354832,0.868775,0.345433][0.359375,0.320313,0.18657][0.0831302,1.06184,0.198526][0.122344,0.961666,0.245419][0.339844,0.300781,0.0567948][-0.0755451,-0.997687,-0.235364][0.709808,1.34567,0.976961][0.372702,0.651851,-0.0957876][0.0539742,-0.960096,-0.286279][-0.148651,0.015181,2.03203][0.343564,0.69534,0.0684366][-0.0891554,-0.960096,-0.277253][1.00465,0.0310418,2.86182][0.34873,0.69534,-0.113045][0.353843,0.992346,-0.146195][0.467745,0.862367,-0.193747][0.359375,0.195313,0.243765][0.382923,0.992346,-2.84752e-007][0.509798,0.860294,-2.38632e-007][0.359375,0.242188,0.26385][0.513292,0.893508,-2.79862e-007][0.706411,0.707802,-1.22007e-007][0.382813,0.242188,0.353891][0.513292,0.893508,-2.79862e-007][0.706411,0.707802,-1.22007e-007][0.382813,0.242188,0.353891][0.474288,0.893508,-0.196085][0.652639,0.707802,-0.270332][0.382813,0.183594,0.326952][0.353843,0.992346,-0.146195][0.467745,0.862367,-0.193747][0.359375,0.195313,0.243765][0.382923,0.992346,-2.84752e-007][0.509798,0.860294,-2.38632e-007][0.359375,0.242188,0.26385][0.353843,0.992346,-0.146195][0.467745,0.862367,-0.193747][0.359375,0.195313,0.243765][0.215781,1.06184,-2.81259e-007][0.273948,0.961551,0.0192848][0.339844,0.242188,0.148412][0.27103,0.992346,-0.270133][0.360481,0.860295,-0.360481][0.359375,0.160156,0.18657][0.147092,0.992346,-0.352946][0.193746,0.862367,-0.467745][0.359375,0.132813,0.100971][0.152843,1.06184,-0.151946][0.196256,0.960604,-0.196782][0.339844,0.195313,0.104943][0.000897469,0.992346,-0.382025][-4.1064e-007,0.860294,-0.509798][0.359375,0.125,0][-0.145297,0.992346,-0.352945][-0.195631,0.868775,-0.454927][0.359375,0.132813,-0.100971][0.000897469,1.06184,-0.214884][-0.0189779,0.961843,-0.272942][0.339844,0.175781,0][-0.352048,0.992346,-0.146195][-0.470992,0.860294,-0.195091][0.359375,0.195313,-0.243765][-0.381128,0.992346,0][-0.506284,0.862367,2.76365e-007][0.359375,0.242188,-0.26385][-0.197629,1.06184,-0.0822323][-0.245735,0.96152,-0.122856][0.339844,0.214844,-0.137115][0.00836223,1.09497,0.00309166][0.0562531,0.998192,0.0211596][0.332031,0.242188,0.00515552][-0.00656703,1.09497,-0.00309184][-0.0525476,0.998228,-0.0279048][0.332031,0.238281,-0.00515553][-0.0813346,1.06184,0.198527][-0.106375,0.960589,0.256812][0.339844,0.300781,-0.0567946][-0.0813346,1.06184,0.198527][-0.106375,0.960589,0.256812][0.339844,0.300781,-0.0567946][0.0831302,1.06184,0.198526][0.122344,0.961666,0.245419][0.339844,0.300781,0.0567948][0.00836223,1.09497,0.00309166][0.0562531,0.998192,0.0211596][0.332031,0.242188,0.00515552][0.00089779,0.992346,0.382025][0,0.862367,0.506284][0.359375,0.355469,1.28697e-007][0.147093,0.992346,0.352945][0.195091,0.860294,0.470992][0.359375,0.347656,0.100971][0.0831302,1.06184,0.198526][0.122344,0.961666,0.245419][0.339844,0.300781,0.0567948][0.0831302,1.06184,0.198526][0.122344,0.961666,0.245419][0.339844,0.300781,0.0567948][-0.0813346,1.06184,0.198527][-0.106375,0.960589,0.256812][0.339844,0.300781,-0.0567946][0.00089779,0.992346,0.382025][0,0.862367,0.506284][0.359375,0.355469,1.28697e-007][-0.118774,-0.997687,-0.0891553][0.728612,1.2298,0.722252][0.456373,0.651851,-0.1506][-0.19778,-0.997687,-0.146555][0.70981,1.34566,0.976972][0.423524,0.651851,-0.250775][-0.244469,-0.997686,-0.00286131][1.14849,1.34566,-0.373165][0.505756,0.651851,-0.309975][-0.244469,-0.997686,-0.00286131][1.14849,1.34566,-0.373165][0.505756,0.651851,-0.309975][-0.142194,-0.997686,0.0336773][0.473271,0.634097,-0.572304][0.526666,0.651851,-0.180295][-0.118774,-0.997687,-0.0891553][0.728612,1.2298,0.722252][0.456373,0.651851,-0.1506][-0.0397684,-1.08103,0.0260326][1.51576,1.99344,-1.42988][0.522291,0.555425,-0.0504244][-0.118774,-0.997687,-0.0891553][0.728612,1.2298,0.722252][0.456373,0.651851,-0.1506][-0.142194,-0.997686,0.0336773][0.473271,0.634097,-0.572304][0.526666,0.651851,-0.180295][0.203254,-1.01163,0.144812][0,-1.25663,0][0.590265,0.635722,0.257716][0.124248,-1.01163,0.0874114][0,-1.88496,0][0.557417,0.635722,0.15754][0.153579,-1.01163,-0.00286032][1.00736,-1.20386,-0.215745][0.505757,0.635722,0.194731][0.153579,-1.01163,-0.00286032][1.00736,-1.20386,-0.215745][0.505757,0.635722,0.194731][0.251235,-1.01163,-0.00286032][0.511578,-0.767777,-0.166222][0.505757,0.635722,0.318554][0.203254,-1.01163,0.144812][0,-1.25663,0][0.590265,0.635722,0.257716][0.0313262,-1.08103,0.0350218][-0.387482,1.36624,-1.19263][0.527436,0.555425,0.03972][0.0935603,-0.997687,0.110279][-0.268953,0.948249,-0.827764][0.570503,0.651851,0.11863][0.136513,-0.997686,0.051159][-0.691214,0.715485,0.0434447][0.536671,0.651851,0.173092][0.136513,-0.997686,0.051159][-0.691214,0.715485,0.0434447][0.536671,0.651851,0.173092][0.0457079,-1.08103,-0.0209476][-1.2307,2.03112,1.39342][0.495406,0.555425,0.0579554][0.0313262,-1.08103,0.0350218][-0.387482,1.36624,-1.19263][0.527436,0.555425,0.03972][0.0457079,-1.08103,-0.0209476][-1.2307,2.03112,1.39342][0.495406,0.555425,0.0579554][-0.00325303,-1.08103,-0.00464706][1.71335e-006,5.59527,6.01962e-006][0.504734,0.555425,-0.00412474][0.00114685,-1.08103,0.000669093][-8.14725e-006,3.92547,-3.57608e-007][0.507777,0.555425,0.00145409][0.00114685,-1.08103,0.000669093][-8.14725e-006,3.92547,-3.57608e-007][0.507777,0.555425,0.00145409][0.0313262,-1.08103,0.0350218][-0.387482,1.36624,-1.19263][0.527436,0.555425,0.03972][0.0457079,-1.08103,-0.0209476][-1.2307,2.03112,1.39342][0.495406,0.555425,0.0579554][0.0755453,-0.997687,-0.235364][-0.284195,0.713133,0.391162][0.372702,0.651851,0.0957878][0.154639,-0.960096,-0.24643][-0.979475,0.0254762,1.04282][0.366369,0.69534,0.196075][0.0539742,-0.960096,-0.286279][-0.148651,0.015181,2.03203][0.343564,0.69534,0.0684366][0.0539742,-0.960096,-0.286279][-0.148651,0.015181,2.03203][0.343564,0.69534,0.0684366][-0.0755451,-0.997687,-0.235364][0.709808,1.34567,0.976961][0.372702,0.651851,-0.0957876][0.0755453,-0.997687,-0.235364][-0.284195,0.713133,0.391162][0.372702,0.651851,0.0957878][-0.0453677,-0.997687,-0.142488][0.101044,1.53113,1.27837][0.425852,0.651851,-0.0575241][0.0755453,-0.997687,-0.235364][-0.284195,0.713133,0.391162][0.372702,0.651851,0.0957878][-0.0755451,-0.997687,-0.235364][0.709808,1.34567,0.976961][0.372702,0.651851,-0.0957876][-0.0942032,-0.719567,-0.292788][-0.0988848,-6.63303e-006,-1.56768][0.339839,0.973616,-0.119445][-0.211359,-0.719567,-0.335771][0.0536263,-2.82178,-0.146154][0.315241,0.973616,-0.267993][-0.121857,-0.705625,-0.377897][-0.0549384,0.0142342,-0.432687][0.291134,0.989745,-0.154508][0.00359454,-1.09497,-0.00193675][3.32423e-007,-5.09231,-2.57965e-006][0.506285,0.539295,0.00455764][0.0554795,-1.09497,0.00416632][0.63869,-0.999986,-0.405183][0.509778,0.539295,0.0703452][0.0407537,-1.09497,0.0354343][1.16261,-2.30384,1.49851][0.527672,0.539295,0.0516736][0.283462,-0.719567,-0.115028][1.14058,0.0990357,9.35444e-007][0.441566,0.973616,0.359416][0.319025,-0.719567,-0.234647][-3.17464e-007,-2.70202,1.97826e-006][0.373112,0.973616,0.404508][0.381929,-0.719567,-0.101][0,-2.76445,-2.4992e-007][0.449594,0.973616,0.484268][0.366672,-0.705625,-0.147956][0,2.70168,-1.43973e-006][0.422722,0.989746,0.464923][0.381929,-0.719567,-0.101][0,-2.76445,-2.4992e-007][0.449594,0.973616,0.484268][0.319025,-0.719567,-0.234647][-3.17464e-007,-2.70202,1.97826e-006][0.373112,0.973616,0.404508][0.319025,-0.719567,-0.234647][-3.17464e-007,-2.70202,1.97826e-006][0.373112,0.973616,0.404508][0.251303,-0.705625,-0.306749][2.49553e-006,2.63869,-4.6952e-006][0.33185,0.989745,0.318639][0.366672,-0.705625,-0.147956][0,2.70168,-1.43973e-006][0.422722,0.989746,0.464923][0.183863,-0.705625,0.219478][-0.891183,0.00439032,-1.59996][0.632995,0.989746,0.233129][0.121856,-0.705625,0.372176][0,2.70203,0][0.720379,0.989746,0.154508][0.251302,-0.705625,0.30103][0,2.76444,0][0.679664,0.989746,0.318638][0.211358,-0.719567,0.330049][0,-2.70168,3.07296e-007][0.696272,0.973616,0.267992][0.251302,-0.705625,0.30103][0,2.76444,0][0.679664,0.989746,0.318638][0.121856,-0.705625,0.372176][0,2.70203,0][0.720379,0.989746,0.154508][0.121856,-0.705625,0.372176][0,2.70203,0][0.720379,0.989746,0.154508][0.0246852,-0.719567,0.390703][0,-2.63869,1.38328e-006][0.730982,0.973616,0.0312996][0.211358,-0.719567,0.330049][0,-2.70168,3.07296e-007][0.696272,0.973616,0.267992][-0.366673,-0.705625,0.142234][0,2.70168,0][0.58879,0.989746,-0.464923][-0.38193,-0.719567,0.0952784][9.82625e-007,-2.76445,1.7678e-007][0.561919,0.973616,-0.484268][-0.319026,-0.719567,0.228924][6.59074e-007,-2.70202,-1.0256e-006][0.6384,0.973616,-0.404509][-0.319026,-0.719567,0.228924][6.59074e-007,-2.70202,-1.0256e-006][0.6384,0.973616,-0.404509][-0.251303,-0.705625,0.301028][0,2.63869,0][0.679664,0.989746,-0.31864][-0.366673,-0.705625,0.142234][0,2.70168,0][0.58879,0.989746,-0.464923][0.0172811,-1.09497,-0.0560461][0.986473,-2.17005,-1.31243][0.47532,0.539295,0.0219115][0.00359454,-1.09497,-0.00193675][3.32423e-007,-5.09231,-2.57965e-006][0.506285,0.539295,0.00455764][-0.00325303,-1.09497,-0.00107407][-7.18668e-006,-4.45226,-3.94523e-006][0.506779,0.539295,-0.00412474][-0.00325303,-1.09497,-0.00107407][-7.18668e-006,-4.45226,-3.94523e-006][0.506779,0.539295,-0.00412474][-0.0238267,-1.09497,-0.0534527][-0.942554,-1.28145,-0.306257][0.476804,0.539295,-0.0302111][0.0172811,-1.09497,-0.0560461][0.986473,-2.17005,-1.31243][0.47532,0.539295,0.0219115][-0.0238267,-1.09497,-0.0534527][-0.942554,-1.28145,-0.306257][0.476804,0.539295,-0.0302111][-0.124248,-1.01163,-0.0931325][3.84463e-007,-1.88496,1.89736e-007][0.454097,0.635722,-0.157541][-0.0474584,-1.01163,-0.148923][0,-1.56625,-1.91709e-006][0.422169,0.635722,-0.0601751][-0.0474584,-1.01163,-0.148923][0,-1.56625,-1.91709e-006][0.422169,0.635722,-0.0601751][0.0172811,-1.09497,-0.0560461][0.986473,-2.17005,-1.31243][0.47532,0.539295,0.0219115][-0.0238267,-1.09497,-0.0534527][-0.942554,-1.28145,-0.306257][0.476804,0.539295,-0.0302111][0.183863,-0.705625,-0.225198][-1.67136,-0.0531688,2.11177][0.378519,0.989746,0.23313][0.0539742,-0.960096,-0.286279][-0.148651,0.015181,2.03203][0.343564,0.69534,0.0684366][0.154639,-0.960096,-0.24643][-0.979475,0.0254762,1.04282][0.366369,0.69534,0.196075][-0.0470001,-1.01163,-0.24966][0,-1.51236,-1.78916e-006][0.36452,0.635722,-0.059594][0.0190842,-0.965871,-0.307109][-0.215568,0.0663143,-1.70513][0.331644,0.688659,0.0241978][0.0942034,-0.965871,-0.292787][0.778766,-0.0158284,-1.53491][0.33984,0.688659,0.119445][0.0942034,-0.965871,-0.292787][0.778766,-0.0158284,-1.53491][0.33984,0.688659,0.119445][0.0776361,-1.01163,-0.2418][0,-2.57626,-3.24159e-006][0.369019,0.635722,0.0984388][-0.0470001,-1.01163,-0.24966][0,-1.51236,-1.78916e-006][0.36452,0.635722,-0.059594][0.431441,0.772345,-0.430544][0.60183,0.524976,-0.601831][0.410156,0.113281,0.29736][0.233906,0.772345,-0.562533][0.325708,0.524976,-0.78633][0.410156,0.0703125,0.16093][0.196982,0.893508,-0.473391][0.270332,0.707801,-0.652639][0.382813,0.0976563,0.135428][0.196982,0.893508,-0.473391][0.270332,0.707801,-0.652639][0.382813,0.0976563,0.135428][0.363215,0.893508,-0.362318][0.499508,0.707801,-0.499509][0.382813,0.132813,0.250238][0.431441,0.772345,-0.430544][0.60183,0.524976,-0.601831][0.410156,0.113281,0.29736][0.363215,0.893508,-0.362318][0.499508,0.707801,-0.499509][0.382813,0.132813,0.250238][0.474288,0.893508,-0.196085][0.652639,0.707802,-0.270332][0.382813,0.183594,0.326952][0.56343,0.772345,-0.233009][0.78633,0.524976,-0.325709][0.410156,0.171875,0.388519][0.56343,0.772345,-0.233009][0.78633,0.524976,-0.325709][0.410156,0.171875,0.388519][0.431441,0.772345,-0.430544][0.60183,0.524976,-0.601831][0.410156,0.113281,0.29736][0.363215,0.893508,-0.362318][0.499508,0.707801,-0.499509][0.382813,0.132813,0.250238][-0.429646,0.772345,0.430544][-0.601831,0.524976,0.601831][0.410156,0.371094,-0.29736][-0.232111,0.772345,0.562532][-0.325708,0.524976,0.78633][0.410156,0.410156,-0.16093][-0.195187,0.893508,0.473391][-0.270332,0.707801,0.652639][0.382813,0.382813,-0.135428][-0.195187,0.893508,0.473391][-0.270332,0.707801,0.652639][0.382813,0.382813,-0.135428][-0.36142,0.893508,0.362318][-0.499508,0.707801,0.499509][0.382813,0.347656,-0.250238][-0.429646,0.772345,0.430544][-0.601831,0.524976,0.601831][0.410156,0.371094,-0.29736][-0.36142,0.893508,0.362318][-0.499508,0.707801,0.499509][0.382813,0.347656,-0.250238][-0.472493,0.893508,0.196085][-0.652639,0.707801,0.270332][0.382813,0.300781,-0.326952][-0.561635,0.772345,0.233009][-0.78633,0.524976,0.325709][0.410156,0.3125,-0.388519][-0.561635,0.772345,0.233009][-0.78633,0.524976,0.325709][0.410156,0.3125,-0.388519][-0.429646,0.772345,0.430544][-0.601831,0.524976,0.601831][0.410156,0.371094,-0.29736][-0.36142,0.893508,0.362318][-0.499508,0.707801,0.499509][0.382813,0.347656,-0.250238][0.233906,0.772345,0.562532][0.325709,0.524976,0.786329][0.410156,0.410156,0.16093][0.431441,0.772345,0.430544][0.601831,0.524976,0.60183][0.410156,0.371094,0.29736][0.363215,0.893508,0.362317][0.499509,0.707801,0.499508][0.382813,0.347656,0.250239][0.363215,0.893508,0.362317][0.499509,0.707801,0.499508][0.382813,0.347656,0.250239][0.196983,0.893508,0.473391][0.270332,0.707801,0.652639][0.382813,0.382813,0.135428][0.233906,0.772345,0.562532][0.325709,0.524976,0.786329][0.410156,0.410156,0.16093][0.196983,0.893508,0.473391][0.270332,0.707801,0.652639][0.382813,0.382813,0.135428][0.00089779,0.893508,0.512394][0,0.707802,0.706411][0.382813,0.394531,1.30734e-007][0.00089779,0.772345,0.608881][2.40043e-007,0.524976,0.851117][0.410156,0.421875,1.32713e-007][0.00089779,0.772345,0.608881][2.40043e-007,0.524976,0.851117][0.410156,0.421875,1.32713e-007][0.233906,0.772345,0.562532][0.325709,0.524976,0.786329][0.410156,0.410156,0.16093][0.196983,0.893508,0.473391][0.270332,0.707801,0.652639][0.382813,0.382813,0.135428][-0.429646,0.772345,-0.430544][-0.601831,0.524976,-0.601831][0.410156,0.113281,-0.29736][-0.561635,0.772345,-0.233009][-0.78633,0.524976,-0.325708][0.410156,0.171875,-0.388519][-0.472493,0.893508,-0.196085][-0.652639,0.707802,-0.270332][0.382813,0.183594,-0.326952][-0.472493,0.893508,-0.196085][-0.652639,0.707802,-0.270332][0.382813,0.183594,-0.326952][-0.36142,0.893508,-0.362317][-0.499509,0.707801,-0.499508][0.382813,0.132813,-0.250239][-0.429646,0.772345,-0.430544][-0.601831,0.524976,-0.601831][0.410156,0.113281,-0.29736][-0.561635,0.772345,-0.233009][-0.78633,0.524976,-0.325708][0.410156,0.171875,-0.388519][-0.607983,0.772345,0][-0.851117,0.524976,2.9393e-007][0.410156,0.242188,-0.42053][-0.511497,0.893508,0][-0.706411,0.707801,3.22098e-007][0.382813,0.242188,-0.353891][-0.511497,0.893508,0][-0.706411,0.707801,3.22098e-007][0.382813,0.242188,-0.353891][-0.472493,0.893508,-0.196085][-0.652639,0.707802,-0.270332][0.382813,0.183594,-0.326952][-0.561635,0.772345,-0.233009][-0.78633,0.524976,-0.325708][0.410156,0.171875,-0.388519][0.000897469,0.893508,-0.512394][-3.07457e-007,0.707801,-0.706412][0.382813,0.0859375,0][0.196982,0.893508,-0.473391][0.270332,0.707801,-0.652639][0.382813,0.0976563,0.135428][0.233906,0.772345,-0.562533][0.325708,0.524976,-0.78633][0.410156,0.0703125,0.16093][0.233906,0.772345,-0.562533][0.325708,0.524976,-0.78633][0.410156,0.0703125,0.16093][0.000897501,0.772345,-0.608881][-1.95954e-007,0.524976,-0.851117][0.410156,0.0585938,0][0.000897469,0.893508,-0.512394][-3.07457e-007,0.707801,-0.706412][0.382813,0.0859375,0][0.431441,0.772345,0.430544][0.601831,0.524976,0.60183][0.410156,0.371094,0.29736][0.56343,0.772345,0.233008][0.78633,0.524976,0.325708][0.410156,0.3125,0.388519][0.474288,0.893508,0.196085][0.652639,0.707801,0.270332][0.382813,0.300781,0.326952][0.474288,0.893508,0.196085][0.652639,0.707801,0.270332][0.382813,0.300781,0.326952][0.363215,0.893508,0.362317][0.499509,0.707801,0.499508][0.382813,0.347656,0.250239][0.431441,0.772345,0.430544][0.601831,0.524976,0.60183][0.410156,0.371094,0.29736][-0.232111,0.772345,0.562532][-0.325708,0.524976,0.78633][0.410156,0.410156,-0.16093][0.00089779,0.772345,0.608881][2.40043e-007,0.524976,0.851117][0.410156,0.421875,1.32713e-007][0.00089779,0.893508,0.512394][0,0.707802,0.706411][0.382813,0.394531,1.30734e-007][0.00089779,0.893508,0.512394][0,0.707802,0.706411][0.382813,0.394531,1.30734e-007][-0.195187,0.893508,0.473391][-0.270332,0.707801,0.652639][0.382813,0.382813,-0.135428][-0.232111,0.772345,0.562532][-0.325708,0.524976,0.78633][0.410156,0.410156,-0.16093][-0.472493,0.893508,0.196085][-0.652639,0.707801,0.270332][0.382813,0.300781,-0.326952][-0.511497,0.893508,0][-0.706411,0.707801,3.22098e-007][0.382813,0.242188,-0.353891][-0.607983,0.772345,0][-0.851117,0.524976,2.9393e-007][0.410156,0.242188,-0.42053][-0.607983,0.772345,0][-0.851117,0.524976,2.9393e-007][0.410156,0.242188,-0.42053][-0.561635,0.772345,0.233009][-0.78633,0.524976,0.325709][0.410156,0.3125,-0.388519][-0.472493,0.893508,0.196085][-0.652639,0.707801,0.270332][0.382813,0.300781,-0.326952][-0.384553,-0.639573,-1.9744e-007][-3.09843,-0.180471,-7.45058e-007][0.75,0.242188,-0.266216][-0.355212,-0.639573,-0.147506][-2.86258,-0.180472,-1.18572][0.75,0.195313,-0.245951][-0.306394,-0.708682,-0.127285][-0.733932,-0.607392,-0.304005][0.769531,0.203125,-0.212234][-0.306394,-0.708682,-0.127285][-0.733932,-0.607392,-0.304005][0.769531,0.203125,-0.212234][-0.331713,-0.708682,-2.08616e-007][-0.794402,-0.607392,-1.69649e-007][0.769531,0.242188,-0.229721][-0.384553,-0.639573,-1.9744e-007][-3.09843,-0.180471,-7.45058e-007][0.75,0.242188,-0.266216][-0.331713,-0.708682,-2.08616e-007][-0.794402,-0.607392,-1.69649e-007][0.769531,0.242188,-0.229721][-0.306394,-0.708682,0.127284][-0.733932,-0.607392,0.304004][0.769531,0.277344,-0.212234][-0.355213,-0.639573,0.147505][-2.86257,-0.180472,1.18572][0.75,0.285156,-0.245951][-0.355213,-0.639573,0.147505][-2.86257,-0.180472,1.18572][0.75,0.285156,-0.245951][-0.384553,-0.639573,-1.9744e-007][-3.09843,-0.180471,-7.45058e-007][0.75,0.242188,-0.266216][-0.331713,-0.708682,-2.08616e-007][-0.794402,-0.607392,-1.69649e-007][0.769531,0.242188,-0.229721][0.236089,-0.708682,-0.235191][0.561727,-0.607392,-0.561727][0.769531,0.171875,0.162437][0.128182,-0.708682,-0.307292][0.304004,-0.607392,-0.733932][0.769531,0.148438,0.0879104][0.148403,-0.639573,-0.35611][1.18572,-0.180471,-2.86258][0.75,0.132813,0.101876][0.148403,-0.639573,-0.35611][1.18572,-0.180471,-2.86258][0.75,0.132813,0.101876][0.273453,-0.639573,-0.272555][2.19092,-0.180471,-2.19092][0.75,0.160156,0.188243][0.236089,-0.708682,-0.235191][0.561727,-0.607392,-0.561727][0.769531,0.171875,0.162437][0.273453,-0.639573,-0.272555][2.19092,-0.180471,-2.19092][0.75,0.160156,0.188243][0.357008,-0.639573,-0.147506][2.86258,-0.180472,-1.18572][0.75,0.195313,0.245951][0.30819,-0.708682,-0.127284][0.733933,-0.607391,-0.304004][0.769531,0.203125,0.212235][0.30819,-0.708682,-0.127284][0.733933,-0.607391,-0.304004][0.769531,0.203125,0.212235][0.236089,-0.708682,-0.235191][0.561727,-0.607392,-0.561727][0.769531,0.171875,0.162437][0.273453,-0.639573,-0.272555][2.19092,-0.180471,-2.19092][0.75,0.160156,0.188243][-0.234294,-0.708682,0.235191][-0.561728,-0.607392,0.561727][0.769531,0.3125,-0.162437][-0.126387,-0.708682,0.307292][-0.304005,-0.607392,0.733932][0.769531,0.332031,-0.0879104][-0.146608,-0.639573,0.35611][-1.18572,-0.180472,2.86257][0.75,0.347656,-0.101876][-0.146608,-0.639573,0.35611][-1.18572,-0.180472,2.86257][0.75,0.347656,-0.101876][-0.271657,-0.639573,0.272555][-2.19092,-0.180472,2.19092][0.75,0.324219,-0.188243][-0.234294,-0.708682,0.235191][-0.561728,-0.607392,0.561727][0.769531,0.3125,-0.162437][-0.355213,-0.639573,0.147505][-2.86257,-0.180472,1.18572][0.75,0.285156,-0.245951][-0.234294,-0.708682,0.235191][-0.561728,-0.607392,0.561727][0.769531,0.3125,-0.162437][-0.271657,-0.639573,0.272555][-2.19092,-0.180472,2.19092][0.75,0.324219,-0.188243][0.236089,-0.708682,0.235191][0.561727,-0.607391,0.561728][0.769531,0.3125,0.162437][0.30819,-0.708682,0.127284][0.733932,-0.607392,0.304005][0.769531,0.277344,0.212234][0.357008,-0.639573,0.147506][2.86257,-0.180472,1.18572][0.75,0.285156,0.245951][0.357008,-0.639573,0.147506][2.86257,-0.180472,1.18572][0.75,0.285156,0.245951][0.273452,-0.639573,0.272555][2.19092,-0.180472,2.19092][0.75,0.324219,0.188243][0.236089,-0.708682,0.235191][0.561727,-0.607391,0.561728][0.769531,0.3125,0.162437][0.273452,-0.639573,0.272555][2.19092,-0.180472,2.19092][0.75,0.324219,0.188243][0.148403,-0.639573,0.35611][1.18572,-0.180472,2.86257][0.75,0.347656,0.101876][0.128182,-0.708682,0.307292][0.304005,-0.607392,0.733932][0.769531,0.332031,0.0879104][0.128182,-0.708682,0.307292][0.304005,-0.607392,0.733932][0.769531,0.332031,0.0879104][0.236089,-0.708682,0.235191][0.561727,-0.607391,0.561728][0.769531,0.3125,0.162437][0.273452,-0.639573,0.272555][2.19092,-0.180472,2.19092][0.75,0.324219,0.188243][-0.234293,-0.708682,-0.235191][-0.561727,-0.607392,-0.561727][0.769531,0.171875,-0.162437][-0.306394,-0.708682,-0.127285][-0.733932,-0.607392,-0.304005][0.769531,0.203125,-0.212234][-0.355212,-0.639573,-0.147506][-2.86258,-0.180472,-1.18572][0.75,0.195313,-0.245951][-0.355212,-0.639573,-0.147506][-2.86258,-0.180472,-1.18572][0.75,0.195313,-0.245951][-0.271657,-0.639573,-0.272555][-2.19092,-0.180471,-2.19092][0.75,0.160156,-0.188243][-0.234293,-0.708682,-0.235191][-0.561727,-0.607392,-0.561727][0.769531,0.171875,-0.162437][-0.146608,-0.639573,-0.35611][-1.18572,-0.180471,-2.86258][0.75,0.132813,-0.101876][-0.234293,-0.708682,-0.235191][-0.561727,-0.607392,-0.561727][0.769531,0.171875,-0.162437][-0.271657,-0.639573,-0.272555][-2.19092,-0.180471,-2.19092][0.75,0.160156,-0.188243][0.128182,-0.708682,-0.307292][0.304004,-0.607392,-0.733932][0.769531,0.148438,0.0879104][0.000897726,-0.708682,-0.332611][2.79029e-007,-0.607392,-0.794402][0.769531,0.140625,0][0.000897726,-0.639573,-0.385451][2.38419e-007,-0.180471,-3.09843][0.75,0.125,0][0.000897726,-0.639573,-0.385451][2.38419e-007,-0.180471,-3.09843][0.75,0.125,0][0.148403,-0.639573,-0.35611][1.18572,-0.180471,-2.86258][0.75,0.132813,0.101876][0.128182,-0.708682,-0.307292][0.304004,-0.607392,-0.733932][0.769531,0.148438,0.0879104][0.30819,-0.708682,0.127284][0.733932,-0.607392,0.304005][0.769531,0.277344,0.212234][0.333508,-0.708682,0][0.794402,-0.607392,0][0.769531,0.242188,0.229721][0.386348,-0.639573,0][3.09843,-0.180471,9.98378e-007][0.75,0.242188,0.266216][0.386348,-0.639573,0][3.09843,-0.180471,9.98378e-007][0.75,0.242188,0.266216][0.357008,-0.639573,0.147506][2.86257,-0.180472,1.18572][0.75,0.285156,0.245951][0.30819,-0.708682,0.127284][0.733932,-0.607392,0.304005][0.769531,0.277344,0.212234][-0.234293,-0.708682,-0.235191][-0.561727,-0.607392,-0.561727][0.769531,0.171875,-0.162437][-0.146608,-0.639573,-0.35611][-1.18572,-0.180471,-2.86258][0.75,0.132813,-0.101876][-0.126387,-0.708682,-0.307292][-0.304004,-0.607392,-0.733932][0.769531,0.148438,-0.0879103][-0.146608,-0.639573,-0.35611][-1.18572,-0.180471,-2.86258][0.75,0.132813,-0.101876][0.000897726,-0.639573,-0.385451][2.38419e-007,-0.180471,-3.09843][0.75,0.125,0][0.000897726,-0.708682,-0.332611][2.79029e-007,-0.607392,-0.794402][0.769531,0.140625,0][0.000897726,-0.708682,-0.332611][2.79029e-007,-0.607392,-0.794402][0.769531,0.140625,0][-0.126387,-0.708682,-0.307292][-0.304004,-0.607392,-0.733932][0.769531,0.148438,-0.0879103][-0.146608,-0.639573,-0.35611][-1.18572,-0.180471,-2.86258][0.75,0.132813,-0.101876][0.148403,-0.639573,0.35611][1.18572,-0.180472,2.86257][0.75,0.347656,0.101876][0.000897501,-0.639573,0.385451][-1.04308e-006,-0.180472,3.09843][0.75,0.355469,0][0.000897501,-0.708682,0.33261][-2.5001e-007,-0.607392,0.794402][0.769531,0.339844,0][0.000897501,-0.708682,0.33261][-2.5001e-007,-0.607392,0.794402][0.769531,0.339844,0][0.128182,-0.708682,0.307292][0.304005,-0.607392,0.733932][0.769531,0.332031,0.0879104][0.148403,-0.639573,0.35611][1.18572,-0.180472,2.86257][0.75,0.347656,0.101876][-0.234294,-0.708682,0.235191][-0.561728,-0.607392,0.561727][0.769531,0.3125,-0.162437][-0.355213,-0.639573,0.147505][-2.86257,-0.180472,1.18572][0.75,0.285156,-0.245951][-0.306394,-0.708682,0.127284][-0.733932,-0.607392,0.304004][0.769531,0.277344,-0.212234][-0.126387,-0.708682,0.307292][-0.304005,-0.607392,0.733932][0.769531,0.332031,-0.0879104][0.000897501,-0.708682,0.33261][-2.5001e-007,-0.607392,0.794402][0.769531,0.339844,0][0.000897501,-0.639573,0.385451][-1.04308e-006,-0.180472,3.09843][0.75,0.355469,0][0.000897501,-0.639573,0.385451][-1.04308e-006,-0.180472,3.09843][0.75,0.355469,0][-0.146608,-0.639573,0.35611][-1.18572,-0.180472,2.86257][0.75,0.347656,-0.101876][-0.126387,-0.708682,0.307292][-0.304005,-0.607392,0.733932][0.769531,0.332031,-0.0879104][0.357008,-0.639573,-0.147506][2.86258,-0.180472,-1.18572][0.75,0.195313,0.245951][0.386348,-0.639573,0][3.09843,-0.180471,9.98378e-007][0.75,0.242188,0.266216][0.333508,-0.708682,0][0.794402,-0.607392,0][0.769531,0.242188,0.229721][0.333508,-0.708682,0][0.794402,-0.607392,0][0.769531,0.242188,0.229721][0.30819,-0.708682,-0.127284][0.733933,-0.607391,-0.304004][0.769531,0.203125,0.212235][0.357008,-0.639573,-0.147506][2.86258,-0.180472,-1.18572][0.75,0.195313,0.245951][0.0246852,-0.719567,0.390703][0,-2.63869,1.38328e-006][0.730982,0.973616,0.0312996][0.121856,-0.705625,0.372176][0,2.70203,0][0.720379,0.989746,0.154508][-0.0737725,-0.705625,0.384514][0,2.63903,0][0.72744,0.989746,-0.0935401][-0.0737725,-0.705625,0.384514][0,2.63903,0][0.72744,0.989746,-0.0935401][-0.168012,-0.719567,0.353894][1.502e-007,-2.63903,2.9097e-007][0.709917,0.973616,-0.213031][0.0246852,-0.719567,0.390703][0,-2.63869,1.38328e-006][0.730982,0.973616,0.0312996][0.251303,-0.705625,-0.306749][2.49553e-006,2.63869,-4.6952e-006][0.33185,0.989745,0.318639][0.319025,-0.719567,-0.234647][-3.17464e-007,-2.70202,1.97826e-006][0.373112,0.973616,0.404508][0.168011,-0.719567,-0.359615][-1.89844e-006,-2.70168,5.89198e-006][0.301596,0.973616,0.21303][0.168011,-0.719567,-0.359615][-1.89844e-006,-2.70168,5.89198e-006][0.301596,0.973616,0.21303][0.0737718,-0.705625,-0.390236][1.23468e-006,2.63902,-5.7784e-006][0.284073,0.989745,0.093539][0.251303,-0.705625,-0.306749][2.49553e-006,2.63869,-4.6952e-006][0.33185,0.989745,0.318639][-0.251303,-0.705625,0.301028][0,2.63869,0][0.679664,0.989746,-0.31864][-0.319026,-0.719567,0.228924][6.59074e-007,-2.70202,-1.0256e-006][0.6384,0.973616,-0.404509][-0.168012,-0.719567,0.353894][1.502e-007,-2.63903,2.9097e-007][0.709917,0.973616,-0.213031][-0.168012,-0.719567,0.353894][1.502e-007,-2.63903,2.9097e-007][0.709917,0.973616,-0.213031][-0.0737725,-0.705625,0.384514][0,2.63903,0][0.72744,0.989746,-0.0935401][-0.251303,-0.705625,0.301028][0,2.63869,0][0.679664,0.989746,-0.31864][0.0942027,-0.719567,0.287067][0.0988735,0,1.56768][0.671674,0.973616,0.119444][0.0942028,-0.965871,0.287067][0.162612,0.0393523,1.5621][0.671674,0.688659,0.119445][0.163394,-0.965871,0.254501][0.970792,-0.0275618,1.0336][0.653037,0.688659,0.207176][0.163394,-0.965871,0.254501][0.970792,-0.0275618,1.0336][0.653037,0.688659,0.207176][0.194272,-0.719567,0.232066][1.33849,0.0407036,1.07731][0.640199,0.973616,0.246328][0.0942027,-0.719567,0.287067][0.0988735,0,1.56768][0.671674,0.973616,0.119444][0.0407537,-1.09497,0.0354343][1.16261,-2.30384,1.49851][0.527672,0.539295,0.0516736][0.153579,-1.01163,-0.00286032][1.00736,-1.20386,-0.215745][0.505757,0.635722,0.194731][0.124248,-1.01163,0.0874114][0,-1.88496,0][0.557417,0.635722,0.15754][0.233412,-0.960096,0.166723][-2.44761,0.0518339,-1.74969][0.602804,0.69534,0.295955][0.227319,-0.997687,0.0870924][5.79255e-007,1.3194,7.24754e-007][0.557234,0.651851,0.288229][0.155795,-0.997687,0.185536][-3.55936e-007,1.93084,2.94343e-007][0.613571,0.651851,0.19754][0.136513,-0.997686,0.051159][-0.691214,0.715485,0.0434447][0.536671,0.651851,0.173092][0.155795,-0.997687,0.185536][-3.55936e-007,1.93084,2.94343e-007][0.613571,0.651851,0.19754][0.227319,-0.997687,0.0870924][5.79255e-007,1.3194,7.24754e-007][0.557234,0.651851,0.288229][0.128675,-0.997687,-0.0735481][-1.1242,1.62162,0.796276][0.465304,0.651851,0.163154][0.242532,-0.997686,-0.0335756][0,1.78302,0][0.488179,0.651851,0.307519][0.19778,-0.997687,-0.146555][-0.740362,1.41431,0.852107][0.423524,0.651851,0.250775][-0.197629,1.06184,0.0822325][-0.257299,0.960402,0.106892][0.339844,0.265625,-0.137114][-0.0813346,1.06184,0.198527][-0.106375,0.960589,0.256812][0.339844,0.300781,-0.0567946][-0.00656703,1.09497,-0.00309184][-0.0525476,0.998228,-0.0279048][0.332031,0.238281,-0.00515553][-0.269235,0.992346,0.270133][-0.357997,0.862367,0.357997][0.359375,0.320313,-0.18657][-0.145297,0.992346,0.352945][-0.195091,0.860294,0.470992][0.359375,0.347656,-0.100971][-0.0813346,1.06184,0.198527][-0.106375,0.960589,0.256812][0.339844,0.300781,-0.0567946][-0.0813346,1.06184,0.198527][-0.106375,0.960589,0.256812][0.339844,0.300781,-0.0567946][-0.197629,1.06184,0.0822325][-0.257299,0.960402,0.106892][0.339844,0.265625,-0.137114][-0.269235,0.992346,0.270133][-0.357997,0.862367,0.357997][0.359375,0.320313,-0.18657][0.152843,1.06184,-0.151946][0.196256,0.960604,-0.196782][0.339844,0.195313,0.104943][0.000897469,1.06184,-0.214884][-0.0189779,0.961843,-0.272942][0.339844,0.175781,0][0.00836223,1.09497,0.00309166][0.0562531,0.998192,0.0211596][0.332031,0.242188,0.00515552][0.147092,0.992346,-0.352946][0.193746,0.862367,-0.467745][0.359375,0.132813,0.100971][0.000897469,0.992346,-0.382025][-4.1064e-007,0.860294,-0.509798][0.359375,0.125,0][0.000897469,1.06184,-0.214884][-0.0189779,0.961843,-0.272942][0.339844,0.175781,0][0.000897469,1.06184,-0.214884][-0.0189779,0.961843,-0.272942][0.339844,0.175781,0][0.152843,1.06184,-0.151946][0.196256,0.960604,-0.196782][0.339844,0.195313,0.104943][0.147092,0.992346,-0.352946][0.193746,0.862367,-0.467745][0.359375,0.132813,0.100971][-0.0490139,-1.09497,0.0240651][-1.82171,-2.61587,0.399946][0.521165,0.539295,-0.0621474][-0.0474588,-1.01163,0.143202][-0.126802,-1.19142,1.03822][0.589344,0.635722,-0.0601756][-0.124248,-1.01163,0.0874114][-0.821706,-0.989101,0.325478][0.557417,0.635722,-0.157541][0.00359454,-1.09497,-0.00193675][3.32423e-007,-5.09231,-2.57965e-006][0.506285,0.539295,0.00455764][0.0407537,-1.09497,0.0354343][1.16261,-2.30384,1.49851][0.527672,0.539295,0.0516736][-0.0104617,-1.09497,0.0520751][-0.414197,-2.93353,2.23964][0.537195,0.539295,-0.0132649][-0.278388,-0.476163,0.279285][-0.695891,-0.177402,0.695891][0.710938,0.324219,-0.192891][-0.15025,-0.476163,0.364903][-0.376614,-0.177402,0.909225][0.710938,0.351563,-0.104392][-0.16743,-0.327519,0.40638][-0.353199,-0.384911,0.852698][0.675781,0.363281,-0.116258][-0.16743,-0.327519,0.40638][-0.353199,-0.384911,0.852698][0.675781,0.363281,-0.116258][-0.310132,-0.327519,0.311029][-0.652627,-0.384911,0.652627][0.675781,0.335938,-0.214816][-0.278388,-0.476163,0.279285][-0.695891,-0.177402,0.695891][0.710938,0.324219,-0.192891][-0.310132,-0.327519,0.311029][-0.652627,-0.384911,0.652627][0.675781,0.335938,-0.214816][-0.405482,-0.327519,0.168328][-0.852698,-0.384911,0.353199][0.675781,0.292969,-0.28067][-0.364006,-0.476163,0.151148][-0.909225,-0.177402,0.376613][0.710938,0.285156,-0.252025][-0.364006,-0.476163,0.151148][-0.909225,-0.177402,0.376613][0.710938,0.285156,-0.252025][-0.278388,-0.476163,0.279285][-0.695891,-0.177402,0.695891][0.710938,0.324219,-0.192891][-0.310132,-0.327519,0.311029][-0.652627,-0.384911,0.652627][0.675781,0.335938,-0.214816][0.395866,-0.476163,0][0.984138,-0.177402,0][0.710938,0.242188,0.272789][0.365801,-0.476163,-0.151148][0.909225,-0.177402,-0.376613][0.710938,0.195313,0.252025][0.407277,-0.327519,-0.168328][0.852698,-0.384911,-0.353199][0.675781,0.191406,0.28067][0.407277,-0.327519,-0.168328][0.852698,-0.384911,-0.353199][0.675781,0.191406,0.28067][0.44076,-0.327519,0][0.922954,-0.384911,0][0.675781,0.242188,0.303795][0.395866,-0.476163,0][0.984138,-0.177402,0][0.710938,0.242188,0.272789][0.44076,-0.327519,0][0.922954,-0.384911,0][0.675781,0.242188,0.303795][0.407277,-0.327519,0.168328][0.852698,-0.384911,0.353199][0.675781,0.292969,0.28067][0.365801,-0.476163,0.151148][0.909225,-0.177402,0.376614][0.710938,0.285156,0.252025][0.365801,-0.476163,0.151148][0.909225,-0.177402,0.376614][0.710938,0.285156,0.252025][0.395866,-0.476163,0][0.984138,-0.177402,0][0.710938,0.242188,0.272789][0.44076,-0.327519,0][0.922954,-0.384911,0][0.675781,0.242188,0.303795][-0.364006,-0.476163,-0.151148][-0.909225,-0.177402,-0.376614][0.710938,0.195313,-0.252024][-0.394071,-0.476163,-1.70898e-007][-0.984138,-0.177402,-1.22317e-007][0.710938,0.242188,-0.272789][-0.438965,-0.327519,-1.46683e-007][-0.922954,-0.384911,0][0.675781,0.242188,-0.303795][-0.438965,-0.327519,-1.46683e-007][-0.922954,-0.384911,0][0.675781,0.242188,-0.303795][-0.405482,-0.327519,-0.168328][-0.852698,-0.384911,-0.353199][0.675781,0.191406,-0.28067][-0.364006,-0.476163,-0.151148][-0.909225,-0.177402,-0.376614][0.710938,0.195313,-0.252024][-0.405482,-0.327519,-0.168328][-0.852698,-0.384911,-0.353199][0.675781,0.191406,-0.28067][-0.310132,-0.327519,-0.31103][-0.652627,-0.384911,-0.652627][0.675781,0.148438,-0.214816][-0.278388,-0.476163,-0.279285][-0.695891,-0.177402,-0.695891][0.710938,0.15625,-0.192891][-0.278388,-0.476163,-0.279285][-0.695891,-0.177402,-0.695891][0.710938,0.15625,-0.192891][-0.364006,-0.476163,-0.151148][-0.909225,-0.177402,-0.376614][0.710938,0.195313,-0.252024][-0.405482,-0.327519,-0.168328][-0.852698,-0.384911,-0.353199][0.675781,0.191406,-0.28067][0.365801,-0.476163,-0.151148][0.909225,-0.177402,-0.376613][0.710938,0.195313,0.252025][0.280183,-0.476163,-0.279285][0.695891,-0.177402,-0.695891][0.710938,0.15625,0.192891][0.311927,-0.327519,-0.31103][0.652627,-0.384911,-0.652627][0.675781,0.148438,0.214816][0.311927,-0.327519,-0.31103][0.652627,-0.384911,-0.652627][0.675781,0.148438,0.214816][0.407277,-0.327519,-0.168328][0.852698,-0.384911,-0.353199][0.675781,0.191406,0.28067][0.365801,-0.476163,-0.151148][0.909225,-0.177402,-0.376613][0.710938,0.195313,0.252025][-0.405482,-0.327519,0.168328][-0.852698,-0.384911,0.353199][0.675781,0.292969,-0.28067][-0.438965,-0.327519,-1.46683e-007][-0.922954,-0.384911,0][0.675781,0.242188,-0.303795][-0.394071,-0.476163,-1.70898e-007][-0.984138,-0.177402,-1.22317e-007][0.710938,0.242188,-0.272789][-0.394071,-0.476163,-1.70898e-007][-0.984138,-0.177402,-1.22317e-007][0.710938,0.242188,-0.272789][-0.364006,-0.476163,0.151148][-0.909225,-0.177402,0.376613][0.710938,0.285156,-0.252025][-0.405482,-0.327519,0.168328][-0.852698,-0.384911,0.353199][0.675781,0.292969,-0.28067][-0.310132,-0.327519,-0.31103][-0.652627,-0.384911,-0.652627][0.675781,0.148438,-0.214816][-0.16743,-0.327519,-0.40638][-0.353199,-0.384911,-0.852698][0.675781,0.117188,-0.116257][-0.15025,-0.476163,-0.364904][-0.376614,-0.177402,-0.909225][0.710938,0.132813,-0.104392][-0.15025,-0.476163,-0.364904][-0.376614,-0.177402,-0.909225][0.710938,0.132813,-0.104392][-0.278388,-0.476163,-0.279285][-0.695891,-0.177402,-0.695891][0.710938,0.15625,-0.192891][-0.310132,-0.327519,-0.31103][-0.652627,-0.384911,-0.652627][0.675781,0.148438,-0.214816][0.000897533,-0.476163,0.394969][-1.63089e-007,-0.177402,0.984138][0.710938,0.359375,0][0.152046,-0.476163,0.364903][0.376613,-0.177402,0.909225][0.710938,0.351563,0.104392][0.169226,-0.327519,0.40638][0.353199,-0.384911,0.852698][0.675781,0.363281,0.116258][0.169226,-0.327519,0.40638][0.353199,-0.384911,0.852698][0.675781,0.363281,0.116258][0.000897597,-0.327519,0.439862][-1.22173e-007,-0.384911,0.922954][0.675781,0.371094,0][0.000897533,-0.476163,0.394969][-1.63089e-007,-0.177402,0.984138][0.710938,0.359375,0][0.000897597,-0.327519,0.439862][-1.22173e-007,-0.384911,0.922954][0.675781,0.371094,0][-0.16743,-0.327519,0.40638][-0.353199,-0.384911,0.852698][0.675781,0.363281,-0.116258][-0.15025,-0.476163,0.364903][-0.376614,-0.177402,0.909225][0.710938,0.351563,-0.104392][-0.15025,-0.476163,0.364903][-0.376614,-0.177402,0.909225][0.710938,0.351563,-0.104392][0.000897533,-0.476163,0.394969][-1.63089e-007,-0.177402,0.984138][0.710938,0.359375,0][0.000897597,-0.327519,0.439862][-1.22173e-007,-0.384911,0.922954][0.675781,0.371094,0][0.152046,-0.476163,-0.364904][0.376613,-0.177402,-0.909225][0.710938,0.132813,0.104392][0.000897694,-0.476163,-0.394969][0,-0.177402,-0.984138][0.710938,0.121094,0][0.000897662,-0.327519,-0.439862][0,-0.384911,-0.922954][0.675781,0.109375,0][0.000897662,-0.327519,-0.439862][0,-0.384911,-0.922954][0.675781,0.109375,0][0.169226,-0.327519,-0.40638][0.353199,-0.384911,-0.852698][0.675781,0.117188,0.116257][0.152046,-0.476163,-0.364904][0.376613,-0.177402,-0.909225][0.710938,0.132813,0.104392][0.169226,-0.327519,-0.40638][0.353199,-0.384911,-0.852698][0.675781,0.117188,0.116257][0.311927,-0.327519,-0.31103][0.652627,-0.384911,-0.652627][0.675781,0.148438,0.214816][0.280183,-0.476163,-0.279285][0.695891,-0.177402,-0.695891][0.710938,0.15625,0.192891][0.280183,-0.476163,-0.279285][0.695891,-0.177402,-0.695891][0.710938,0.15625,0.192891][0.152046,-0.476163,-0.364904][0.376613,-0.177402,-0.909225][0.710938,0.132813,0.104392][0.169226,-0.327519,-0.40638][0.353199,-0.384911,-0.852698][0.675781,0.117188,0.116257][0.280183,-0.476163,0.279285][0.695891,-0.177402,0.695891][0.710938,0.324219,0.192891][0.365801,-0.476163,0.151148][0.909225,-0.177402,0.376614][0.710938,0.285156,0.252025][0.407277,-0.327519,0.168328][0.852698,-0.384911,0.353199][0.675781,0.292969,0.28067][0.407277,-0.327519,0.168328][0.852698,-0.384911,0.353199][0.675781,0.292969,0.28067][0.311927,-0.327519,0.311029][0.652627,-0.384911,0.652627][0.675781,0.335938,0.214816][0.280183,-0.476163,0.279285][0.695891,-0.177402,0.695891][0.710938,0.324219,0.192891][0.311927,-0.327519,0.311029][0.652627,-0.384911,0.652627][0.675781,0.335938,0.214816][0.169226,-0.327519,0.40638][0.353199,-0.384911,0.852698][0.675781,0.363281,0.116258][0.152046,-0.476163,0.364903][0.376613,-0.177402,0.909225][0.710938,0.351563,0.104392][0.152046,-0.476163,0.364903][0.376613,-0.177402,0.909225][0.710938,0.351563,0.104392][0.280183,-0.476163,0.279285][0.695891,-0.177402,0.695891][0.710938,0.324219,0.192891][0.311927,-0.327519,0.311029][0.652627,-0.384911,0.652627][0.675781,0.335938,0.214816][-0.16743,-0.327519,-0.40638][-0.353199,-0.384911,-0.852698][0.675781,0.117188,-0.116257][0.000897662,-0.327519,-0.439862][0,-0.384911,-0.922954][0.675781,0.109375,0][0.000897694,-0.476163,-0.394969][0,-0.177402,-0.984138][0.710938,0.121094,0][0.000897694,-0.476163,-0.394969][0,-0.177402,-0.984138][0.710938,0.121094,0][-0.15025,-0.476163,-0.364904][-0.376614,-0.177402,-0.909225][0.710938,0.132813,-0.104392][-0.16743,-0.327519,-0.40638][-0.353199,-0.384911,-0.852698][0.675781,0.117188,-0.116257][0.381929,-0.719567,-0.101][0,-2.76445,-2.4992e-007][0.449594,0.973616,0.484268][0.366672,-0.705625,-0.147956][0,2.70168,-1.43973e-006][0.422722,0.989746,0.464923][0.394337,-0.705625,-0.00286076][0,2.70202,0][0.505757,0.989746,0.5][0.394337,-0.705625,-0.00286076][0,2.70202,0][0.505757,0.989746,0.5][0.391212,-0.719567,0.0466847][-2.0264e-007,-2.70167,-6.14861e-007][0.53411,0.973616,0.496038][0.381929,-0.719567,-0.101][0,-2.76445,-2.4992e-007][0.449594,0.973616,0.484268][0.345618,-0.705625,0.187006][0,2.70168,0][0.614412,0.989746,0.438228][0.319025,-0.719567,0.228925][0,-2.70202,0][0.638401,0.973616,0.404508][0.391212,-0.719567,0.0466847][-2.0264e-007,-2.70167,-6.14861e-007][0.53411,0.973616,0.496038][0.391212,-0.719567,0.0466847][-2.0264e-007,-2.70167,-6.14861e-007][0.53411,0.973616,0.496038][0.394337,-0.705625,-0.00286076][0,2.70202,0][0.505757,0.989746,0.5][0.345618,-0.705625,0.187006][0,2.70168,0][0.614412,0.989746,0.438228][0.251302,-0.705625,0.30103][0,2.76444,0][0.679664,0.989746,0.318638][0.211358,-0.719567,0.330049][0,-2.70168,3.07296e-007][0.696272,0.973616,0.267992][0.319025,-0.719567,0.228925][0,-2.70202,0][0.638401,0.973616,0.404508][0.319025,-0.719567,0.228925][0,-2.70202,0][0.638401,0.973616,0.404508][0.345618,-0.705625,0.187006][0,2.70168,0][0.614412,0.989746,0.438228][0.251302,-0.705625,0.30103][0,2.76444,0][0.679664,0.989746,0.318638][-0.38193,-0.719567,0.0952784][9.82625e-007,-2.76445,1.7678e-007][0.561919,0.973616,-0.484268][-0.366673,-0.705625,0.142234][0,2.70168,0][0.58879,0.989746,-0.464923][-0.394337,-0.705625,-0.00286175][0,2.70202,0][0.505756,0.989746,-0.5][-0.394337,-0.705625,-0.00286175][0,2.70202,0][0.505756,0.989746,-0.5][-0.391212,-0.719567,-0.0524062][0,-2.70168,0][0.477403,0.973616,-0.496038][-0.38193,-0.719567,0.0952784][9.82625e-007,-2.76445,1.7678e-007][0.561919,0.973616,-0.484268][-0.345619,-0.705625,-0.192727][-2.55181e-007,2.63904,-1.27114e-006][0.397101,0.989746,-0.438228][-0.319025,-0.719567,-0.234647][-1.00138e-006,-2.70202,1.37827e-006][0.373112,0.973616,-0.404508][-0.391212,-0.719567,-0.0524062][0,-2.70168,0][0.477403,0.973616,-0.496038][-0.391212,-0.719567,-0.0524062][0,-2.70168,0][0.477403,0.973616,-0.496038][-0.394337,-0.705625,-0.00286175][0,2.70202,0][0.505756,0.989746,-0.5][-0.345619,-0.705625,-0.192727][-2.55181e-007,2.63904,-1.27114e-006][0.397101,0.989746,-0.438228][-0.211359,-0.705625,-0.335771][-1.61078e-006,2.76444,-5.29739e-006][0.315241,0.989745,-0.267993][-0.211359,-0.719567,-0.335771][0.0536263,-2.82178,-0.146154][0.315241,0.973616,-0.267993][-0.319025,-0.719567,-0.234647][-1.00138e-006,-2.70202,1.37827e-006][0.373112,0.973616,-0.404508][-0.319025,-0.719567,-0.234647][-1.00138e-006,-2.70202,1.37827e-006][0.373112,0.973616,-0.404508][-0.345619,-0.705625,-0.192727][-2.55181e-007,2.63904,-1.27114e-006][0.397101,0.989746,-0.438228][-0.211359,-0.705625,-0.335771][-1.61078e-006,2.76444,-5.29739e-006][0.315241,0.989745,-0.267993][0.0737718,-0.705625,-0.390236][1.23468e-006,2.63902,-5.7784e-006][0.284073,0.989745,0.093539][0.0246865,-0.719567,-0.396424][-0.0655812,-2.76261,-0.0752249][0.280531,0.973616,0.0313012][-0.121857,-0.705625,-0.377897][-0.0549384,0.0142342,-0.432687][0.291134,0.989745,-0.154508][0.0737718,-0.705625,-0.390236][1.23468e-006,2.63902,-5.7784e-006][0.284073,0.989745,0.093539][0.168011,-0.719567,-0.359615][-1.89844e-006,-2.70168,5.89198e-006][0.301596,0.973616,0.21303][0.0246865,-0.719567,-0.396424][-0.0655812,-2.76261,-0.0752249][0.280531,0.973616,0.0313012][-0.0453677,-0.997687,-0.142488][0.101044,1.53113,1.27837][0.425852,0.651851,-0.0575241][-0.0457079,-1.08103,-0.0209476][1.98281,1.83956,0.123813][0.495406,0.555425,-0.0579554][-0.0151901,-1.08103,-0.0496103][-0.686028,1.37585,1.45757][0.479003,0.555425,-0.0192604][-0.00325303,-1.08103,-0.00464706][1.71335e-006,5.59527,6.01962e-006][0.504734,0.555425,-0.00412474][-0.0151901,-1.08103,-0.0496103][-0.686028,1.37585,1.45757][0.479003,0.555425,-0.0192604][-0.0457079,-1.08103,-0.0209476][1.98281,1.83956,0.123813][0.495406,0.555425,-0.0579554][-0.00325303,-1.08103,-0.00464706][1.71335e-006,5.59527,6.01962e-006][0.504734,0.555425,-0.00412474][-0.0397684,-1.08103,0.0260326][1.51576,1.99344,-1.42988][0.522291,0.555425,-0.0504244][-0.00307729,-1.08103,0.0461988][0.240725,2.74883,-2.33553][0.533832,0.555425,-0.00390192][-0.211359,-0.719567,-0.335771][0.0536263,-2.82178,-0.146154][0.315241,0.973616,-0.267993][-0.211359,-0.705625,-0.335771][-1.61078e-006,2.76444,-5.29739e-006][0.315241,0.989745,-0.267993][-0.121857,-0.705625,-0.377897][-0.0549384,0.0142342,-0.432687][0.291134,0.989745,-0.154508][-0.70314,0.205627,0][-0.968047,-0.250769,1.47891e-007][0.546875,0.242188,-0.486251][-0.649549,0.205627,-0.269424][-0.894359,-0.250769,-0.370455][0.546875,0.160156,-0.449238][-0.601674,0.0729345,-0.249593][-0.84093,-0.414133,-0.348325][0.578125,0.164063,-0.416173][-0.601674,0.0729345,-0.249593][-0.84093,-0.414133,-0.348325][0.578125,0.164063,-0.416173][-0.651321,0.0729345,0][-0.910216,-0.414133,0][0.578125,0.242188,-0.450462][-0.70314,0.205627,0][-0.968047,-0.250769,1.47891e-007][0.546875,0.242188,-0.486251][-0.651321,0.0729345,0][-0.910216,-0.414133,0][0.578125,0.242188,-0.450462][-0.601674,0.0729345,0.249593][-0.84093,-0.414133,0.348325][0.578125,0.316406,-0.416172][-0.649549,0.205627,0.269424][-0.894359,-0.250769,0.370456][0.546875,0.320313,-0.449238][-0.649549,0.205627,0.269424][-0.894359,-0.250769,0.370456][0.546875,0.320313,-0.449238][-0.70314,0.205627,0][-0.968047,-0.250769,1.47891e-007][0.546875,0.242188,-0.486251][-0.651321,0.0729345,0][-0.910216,-0.414133,0][0.578125,0.242188,-0.450462][0.603469,0.0729345,0.249593][0.84093,-0.414133,0.348325][0.578125,0.316406,0.416173][0.653117,0.0729345,-1.58325e-007][0.910216,-0.414133,0][0.578125,0.242188,0.450462][0.704936,0.205627,-1.84635e-007][0.968047,-0.250769,-1.38031e-007][0.546875,0.242188,0.486251][0.704936,0.205627,-1.84635e-007][0.968047,-0.250769,-1.38031e-007][0.546875,0.242188,0.486251][0.651344,0.205627,0.269423][0.894359,-0.250769,0.370455][0.546875,0.320313,0.449238][0.603469,0.0729345,0.249593][0.84093,-0.414133,0.348325][0.578125,0.316406,0.416173][0.651344,0.205627,0.269423][0.894359,-0.250769,0.370455][0.546875,0.320313,0.449238][0.498728,0.205627,0.49783][0.684513,-0.250769,0.684513][0.546875,0.390625,0.343832][0.462086,0.0729345,0.461188][0.64362,-0.414133,0.64362][0.578125,0.378906,0.318525][0.462086,0.0729345,0.461188][0.64362,-0.414133,0.64362][0.578125,0.378906,0.318525][0.603469,0.0729345,0.249593][0.84093,-0.414133,0.348325][0.578125,0.316406,0.416173][0.651344,0.205627,0.269423][0.894359,-0.250769,0.370455][0.546875,0.320313,0.449238][-0.649549,0.205627,-0.269424][-0.894359,-0.250769,-0.370455][0.546875,0.160156,-0.449238][-0.496933,0.205627,-0.49783][-0.684513,-0.250769,-0.684512][0.546875,0.0898438,-0.343832][-0.460291,0.0729345,-0.461188][-0.64362,-0.414133,-0.64362][0.578125,0.101563,-0.318525][-0.460291,0.0729345,-0.461188][-0.64362,-0.414133,-0.64362][0.578125,0.101563,-0.318525][-0.601674,0.0729345,-0.249593][-0.84093,-0.414133,-0.348325][0.578125,0.164063,-0.416173][-0.649549,0.205627,-0.269424][-0.894359,-0.250769,-0.370455][0.546875,0.160156,-0.449238][0.000897662,0.0729346,0.652219][0,-0.414133,0.910216][0.578125,0.4375,0][0.250491,0.0729346,0.602572][0.348325,-0.414133,0.84093][0.578125,0.421875,0.172384][0.270321,0.205627,0.650446][0.370456,-0.250769,0.894359][0.546875,0.4375,0.18608][0.270321,0.205627,0.650446][0.370456,-0.250769,0.894359][0.546875,0.4375,0.18608][0.000897662,0.205627,0.704038][0,-0.250769,0.968047][0.546875,0.453125,0][0.000897662,0.0729346,0.652219][0,-0.414133,0.910216][0.578125,0.4375,0][0.000897662,0.205627,0.704038][0,-0.250769,0.968047][0.546875,0.453125,0][-0.268526,0.205627,0.650446][-0.370455,-0.250769,0.894359][0.546875,0.4375,-0.18608][-0.248696,0.0729346,0.602572][-0.348325,-0.414133,0.84093][0.578125,0.421875,-0.172384][-0.248696,0.0729346,0.602572][-0.348325,-0.414133,0.84093][0.578125,0.421875,-0.172384][0.000897662,0.0729346,0.652219][0,-0.414133,0.910216][0.578125,0.4375,0][0.000897662,0.205627,0.704038][0,-0.250769,0.968047][0.546875,0.453125,0][-0.601674,0.0729345,0.249593][-0.84093,-0.414133,0.348325][0.578125,0.316406,-0.416172][-0.460291,0.0729345,0.461188][-0.64362,-0.414133,0.64362][0.578125,0.378906,-0.318525][-0.496932,0.205627,0.49783][-0.684513,-0.250769,0.684513][0.546875,0.390625,-0.343832][-0.496932,0.205627,0.49783][-0.684513,-0.250769,0.684513][0.546875,0.390625,-0.343832][-0.649549,0.205627,0.269424][-0.894359,-0.250769,0.370456][0.546875,0.320313,-0.449238][-0.601674,0.0729345,0.249593][-0.84093,-0.414133,0.348325][0.578125,0.316406,-0.416172][0.653117,0.0729345,-1.58325e-007][0.910216,-0.414133,0][0.578125,0.242188,0.450462][0.603469,0.0729345,-0.249593][0.84093,-0.414133,-0.348325][0.578125,0.164063,0.416173][0.651344,0.205627,-0.269424][0.894359,-0.250769,-0.370456][0.546875,0.160156,0.449238][0.651344,0.205627,-0.269424][0.894359,-0.250769,-0.370456][0.546875,0.160156,0.449238][0.704936,0.205627,-1.84635e-007][0.968047,-0.250769,-1.38031e-007][0.546875,0.242188,0.486251][0.653117,0.0729345,-1.58325e-007][0.910216,-0.414133,0][0.578125,0.242188,0.450462][0.250491,0.0729344,-0.602572][0.348325,-0.414133,-0.84093][0.578125,0.0585938,0.172384][0.00089763,0.0729344,-0.652219][-1.38505e-007,-0.414133,-0.910216][0.578125,0.0429688,0][0.000897597,0.205627,-0.704038][-1.23242e-007,-0.250769,-0.968047][0.546875,0.0273438,0][0.000897597,0.205627,-0.704038][-1.23242e-007,-0.250769,-0.968047][0.546875,0.0273438,0][0.270321,0.205627,-0.650446][0.370455,-0.250769,-0.894359][0.546875,0.046875,0.18608][0.250491,0.0729344,-0.602572][0.348325,-0.414133,-0.84093][0.578125,0.0585938,0.172384][0.270321,0.205627,-0.650446][0.370455,-0.250769,-0.894359][0.546875,0.046875,0.18608][0.498728,0.205627,-0.49783][0.684512,-0.250769,-0.684513][0.546875,0.0898438,0.343832][0.462086,0.0729345,-0.461189][0.64362,-0.414133,-0.64362][0.578125,0.101563,0.318525][0.462086,0.0729345,-0.461189][0.64362,-0.414133,-0.64362][0.578125,0.101563,0.318525][0.250491,0.0729344,-0.602572][0.348325,-0.414133,-0.84093][0.578125,0.0585938,0.172384][0.270321,0.205627,-0.650446][0.370455,-0.250769,-0.894359][0.546875,0.046875,0.18608][-0.496933,0.205627,-0.49783][-0.684513,-0.250769,-0.684512][0.546875,0.0898438,-0.343832][-0.268526,0.205627,-0.650446][-0.370456,-0.250769,-0.894359][0.546875,0.046875,-0.18608][-0.248696,0.0729344,-0.602572][-0.348325,-0.414133,-0.84093][0.578125,0.0585938,-0.172384][-0.248696,0.0729344,-0.602572][-0.348325,-0.414133,-0.84093][0.578125,0.0585938,-0.172384][-0.460291,0.0729345,-0.461188][-0.64362,-0.414133,-0.64362][0.578125,0.101563,-0.318525][-0.496933,0.205627,-0.49783][-0.684513,-0.250769,-0.684512][0.546875,0.0898438,-0.343832][-0.268526,0.205627,-0.650446][-0.370456,-0.250769,-0.894359][0.546875,0.046875,-0.18608][0.000897597,0.205627,-0.704038][-1.23242e-007,-0.250769,-0.968047][0.546875,0.0273438,0][0.00089763,0.0729344,-0.652219][-1.38505e-007,-0.414133,-0.910216][0.578125,0.0429688,0][0.00089763,0.0729344,-0.652219][-1.38505e-007,-0.414133,-0.910216][0.578125,0.0429688,0][-0.248696,0.0729344,-0.602572][-0.348325,-0.414133,-0.84093][0.578125,0.0585938,-0.172384][-0.268526,0.205627,-0.650446][-0.370456,-0.250769,-0.894359][0.546875,0.046875,-0.18608][-0.268526,0.205627,0.650446][-0.370455,-0.250769,0.894359][0.546875,0.4375,-0.18608][-0.496932,0.205627,0.49783][-0.684513,-0.250769,0.684513][0.546875,0.390625,-0.343832][-0.460291,0.0729345,0.461188][-0.64362,-0.414133,0.64362][0.578125,0.378906,-0.318525][-0.460291,0.0729345,0.461188][-0.64362,-0.414133,0.64362][0.578125,0.378906,-0.318525][-0.248696,0.0729346,0.602572][-0.348325,-0.414133,0.84093][0.578125,0.421875,-0.172384][-0.268526,0.205627,0.650446][-0.370455,-0.250769,0.894359][0.546875,0.4375,-0.18608][0.498728,0.205627,-0.49783][0.684512,-0.250769,-0.684513][0.546875,0.0898438,0.343832][0.651344,0.205627,-0.269424][0.894359,-0.250769,-0.370456][0.546875,0.160156,0.449238][0.603469,0.0729345,-0.249593][0.84093,-0.414133,-0.348325][0.578125,0.164063,0.416173][0.603469,0.0729345,-0.249593][0.84093,-0.414133,-0.348325][0.578125,0.164063,0.416173][0.462086,0.0729345,-0.461189][0.64362,-0.414133,-0.64362][0.578125,0.101563,0.318525][0.498728,0.205627,-0.49783][0.684512,-0.250769,-0.684513][0.546875,0.0898438,0.343832][0.498728,0.205627,0.49783][0.684513,-0.250769,0.684513][0.546875,0.390625,0.343832][0.270321,0.205627,0.650446][0.370456,-0.250769,0.894359][0.546875,0.4375,0.18608][0.250491,0.0729346,0.602572][0.348325,-0.414133,0.84093][0.578125,0.421875,0.172384][0.250491,0.0729346,0.602572][0.348325,-0.414133,0.84093][0.578125,0.421875,0.172384][0.462086,0.0729345,0.461188][0.64362,-0.414133,0.64362][0.578125,0.378906,0.318525][0.498728,0.205627,0.49783][0.684513,-0.250769,0.684513][0.546875,0.390625,0.343832][0.00359454,-1.09497,-0.00193675][3.32423e-007,-5.09231,-2.57965e-006][0.506285,0.539295,0.00455764][0.00114685,-1.08103,0.000669093][-8.14725e-006,3.92547,-3.57608e-007][0.507777,0.555425,0.00145409][-0.00325303,-1.08103,-0.00464706][1.71335e-006,5.59527,6.01962e-006][0.504734,0.555425,-0.00412474][-0.00325303,-1.08103,-0.00464706][1.71335e-006,5.59527,6.01962e-006][0.504734,0.555425,-0.00412474][-0.00325303,-1.09497,-0.00107407][-7.18668e-006,-4.45226,-3.94523e-006][0.506779,0.539295,-0.00412474][0.00359454,-1.09497,-0.00193675][3.32423e-007,-5.09231,-2.57965e-006][0.506285,0.539295,0.00455764][0.00114685,-1.08103,0.000669093][-0.123357,0.16136,-0.979156][0.507777,0.555425,0.00145409][0.00359454,-1.09497,-0.00193675][-0.123357,0.16136,-0.979156][0.506285,0.539295,0.00455764][-0.00325303,-1.09497,-0.00107407][-0.123357,0.16136,-0.979156][0.506779,0.539295,-0.00412474][-0.0104617,-1.09497,0.0520751][2.87481e-007,-1,2.28191e-006][0.0257163,0.99,0][-0.00325303,-1.09497,-0.00107407][2.87481e-007,-1,2.28191e-006][0.0430392,0.99,0][0.00359454,-1.09497,-0.00193675][2.87481e-007,-1,2.28191e-006][0.0433204,0.99,0][-0.00325303,-1.09497,-0.00107407][0.760289,-0.161267,-0.629248][0.506779,0.539295,-0.00412474][-0.00325303,-1.08103,-0.00464706][0.760289,-0.161267,-0.629248][0.504734,0.555425,-0.00412474][0.00114685,-1.08103,0.000669093][0.760289,-0.161268,-0.629248][0.507777,0.555425,0.00145409][-0.00307729,-1.08103,0.0461988][2.84465e-006,1,-2.35435e-006][0.533832,0.555425,-0.00390192][0.00114685,-1.08103,0.000669093][2.84465e-006,1,-2.35435e-006][0.507777,0.555425,0.00145409][-0.00325303,-1.08103,-0.00464706][2.84465e-006,1,-2.35435e-006][0.504734,0.555425,-0.00412474][-0.269235,0.992346,-0.270133][-0.345433,0.868775,-0.354832][0.359375,0.160156,-0.18657][-0.352048,0.992346,-0.146195][-0.470992,0.860294,-0.195091][0.359375,0.195313,-0.243765][-0.197629,1.06184,-0.0822323][-0.245735,0.96152,-0.122856][0.339844,0.214844,-0.137115][0.251235,-1.01163,-0.00286032][0.511578,-0.767777,-0.166222][0.505757,0.635722,0.318554][0.295256,-0.965871,-0.0787291][1.283,-0.02756,-0.603884][0.462339,0.688659,0.374371][0.304848,-0.965871,-0.00286031][1.96523,0.0736891,0.212888][0.505757,0.688659,0.386533][0.283462,-0.719567,-0.115028][1.14058,0.0990357,9.35444e-007][0.441566,0.973616,0.359416][0.304848,-0.965871,-0.00286031][1.96523,0.0736891,0.212888][0.505757,0.688659,0.386533][0.295256,-0.965871,-0.0787291][1.283,-0.02756,-0.603884][0.462339,0.688659,0.374371][-0.251235,-1.01163,-0.00286131][-2.14725e-007,-2.51328,1.10025e-006][0.505756,0.635722,-0.318554][-0.295256,-0.965871,0.0730079][-2.9869,-0.00162242,0.848612][0.549174,0.688659,-0.374371][-0.304848,-0.965871,-0.0028613][-3.10139,-1.72778e-007,-0.0971787][0.505756,0.688659,-0.386533][-0.203254,-1.01163,-0.150533][-0.719179,-1.47236,-0.875547][0.421248,0.635722,-0.257716][-0.283462,-0.965871,-0.115029][-2.91863,0.0421445,-1.04847][0.441566,0.688659,-0.359416][-0.246627,-0.965871,-0.182046][-1.37657,-6.31965e-007,-0.756612][0.403214,0.688659,-0.312711][0.203254,-1.01163,0.144812][0,-1.25663,0][0.590265,0.635722,0.257716][0.283462,-0.965871,0.109309][1.543,1.14744e-006,0.294191][0.569948,0.688659,0.359416][0.246627,-0.965871,0.176325][1.35231,-0.00144864,1.27655][0.6083,0.688659,0.312711][0.283461,-0.719567,0.109308][2.59547,0.148542,0.828524][0.569948,0.973616,0.359415][0.246627,-0.965871,0.176325][1.35231,-0.00144864,1.27655][0.6083,0.688659,0.312711][0.283462,-0.965871,0.109309][1.543,1.14744e-006,0.294191][0.569948,0.688659,0.359416][0.0776356,-1.01163,0.236079][0,-1.25664,0][0.642495,0.635722,0.0984382][0.163394,-0.965871,0.254501][0.970792,-0.0275618,1.0336][0.653037,0.688659,0.207176][0.0942028,-0.965871,0.287067][0.162612,0.0393523,1.5621][0.671674,0.688659,0.119445][-0.0470001,-1.01163,-0.24966][0,-1.51236,-1.78916e-006][0.36452,0.635722,-0.059594][-0.163394,-0.965871,-0.260221][-0.745187,-1.84165,-1.03905][0.358477,0.688659,-0.207176][-0.0942032,-0.965871,-0.292787][-0.162617,0.039342,-1.5621][0.33984,0.688659,-0.119445][0.0570303,-0.719567,-0.302328][0.521632,0.0276846,-1.31769][0.33438,0.973616,0.0723116][0.0942034,-0.965871,-0.292787][0.778766,-0.0158284,-1.53491][0.33984,0.688659,0.119445][0.0190842,-0.965871,-0.307109][-0.215568,0.0663143,-1.70513][0.331644,0.688659,0.0241978][-0.194274,-0.719567,0.232065][-0.978702,0.0248227,0.80955][0.640198,0.973616,-0.24633][-0.246627,-0.965871,0.176325][-1.63183,-0.0187538,0.89269][0.608299,0.688659,-0.312712][-0.194273,-0.965871,0.232066][-1.11313,-2.33251,1.26113][0.640198,0.688659,-0.246329][0.203254,-1.01163,-0.150533][0,-1.25663,4.79456e-007][0.421248,0.635722,0.257716][0.194273,-0.965871,-0.237786][0.683008,-0.027566,-1.24268][0.371316,0.688659,0.246329][0.246627,-0.965871,-0.182046][1.70773,0.0174602,-1.00279][0.403214,0.688659,0.312711][0.163395,-0.719567,-0.260221][0.685634,0.0160083,-1.57783][0.358476,0.973616,0.207176][0.246627,-0.965871,-0.182046][1.70773,0.0174602,-1.00279][0.403214,0.688659,0.312711][0.194273,-0.965871,-0.237786][0.683008,-0.027566,-1.24268][0.371316,0.688659,0.246329][-0.107042,-1.01163,0.224431][-0.393062,-1.32688,0.797567][0.635829,0.635722,-0.135724][-0.0190849,-0.965871,0.301389][0.215566,0.0663278,1.70513][0.67987,0.688659,-0.0241988][-0.0942039,-0.965871,0.287067][-0.335052,-0.74046,0.609598][0.671674,0.688659,-0.119446][-0.057031,-0.719567,0.296605][0.114433,0.0154697,1.41492][0.677133,0.973616,-0.0723126][-0.0942039,-0.965871,0.287067][-0.335052,-0.74046,0.609598][0.671674,0.688659,-0.119446][-0.0190849,-0.965871,0.301389][0.215566,0.0663278,1.70513][0.67987,0.688659,-0.0241988][0.623939,0.635877,-0.258072][0.88178,0.298428,-0.365246][0.445313,0.164063,0.43031][0.477752,0.635877,-0.476855][0.674885,0.298428,-0.674886][0.445313,0.0976563,0.329345][0.431441,0.772345,-0.430544][0.60183,0.524976,-0.601831][0.410156,0.113281,0.29736][0.431441,0.772345,-0.430544][0.60183,0.524976,-0.601831][0.410156,0.113281,0.29736][0.56343,0.772345,-0.233009][0.78633,0.524976,-0.325709][0.410156,0.171875,0.388519][0.623939,0.635877,-0.258072][0.88178,0.298428,-0.365246][0.445313,0.164063,0.43031][0.56343,0.772345,-0.233009][0.78633,0.524976,-0.325709][0.410156,0.171875,0.388519][0.609779,0.772345,-2.68454e-007][0.851117,0.524976,0][0.410156,0.242188,0.42053][0.675272,0.635877,-2.51923e-007][0.954432,0.298428,0][0.445313,0.242188,0.465764][0.675272,0.635877,-2.51923e-007][0.954432,0.298428,0][0.445313,0.242188,0.465764][0.623939,0.635877,-0.258072][0.88178,0.298428,-0.365246][0.445313,0.164063,0.43031][0.56343,0.772345,-0.233009][0.78633,0.524976,-0.325709][0.410156,0.171875,0.388519][-0.475957,0.635877,0.476855][-0.674885,0.298429,0.674885][0.445313,0.382813,-0.329345][-0.257174,0.635877,0.623041][-0.365245,0.298429,0.88178][0.445313,0.425781,-0.17824][-0.232111,0.772345,0.562532][-0.325708,0.524976,0.78633][0.410156,0.410156,-0.16093][-0.232111,0.772345,0.562532][-0.325708,0.524976,0.78633][0.410156,0.410156,-0.16093][-0.429646,0.772345,0.430544][-0.601831,0.524976,0.601831][0.410156,0.371094,-0.29736][-0.475957,0.635877,0.476855][-0.674885,0.298429,0.674885][0.445313,0.382813,-0.329345][-0.429646,0.772345,0.430544][-0.601831,0.524976,0.601831][0.410156,0.371094,-0.29736][-0.561635,0.772345,0.233009][-0.78633,0.524976,0.325709][0.410156,0.3125,-0.388519][-0.622143,0.635877,0.258072][-0.88178,0.298428,0.365246][0.445313,0.316406,-0.43031][-0.622143,0.635877,0.258072][-0.88178,0.298428,0.365246][0.445313,0.316406,-0.43031][-0.475957,0.635877,0.476855][-0.674885,0.298429,0.674885][0.445313,0.382813,-0.329345][-0.429646,0.772345,0.430544][-0.601831,0.524976,0.601831][0.410156,0.371094,-0.29736][0.477752,0.635877,-0.476855][0.674885,0.298428,-0.674886][0.445313,0.0976563,0.329345][0.258969,0.635877,-0.623041][0.365245,0.298429,-0.88178][0.445313,0.0546875,0.17824][0.233906,0.772345,-0.562533][0.325708,0.524976,-0.78633][0.410156,0.0703125,0.16093][0.233906,0.772345,-0.562533][0.325708,0.524976,-0.78633][0.410156,0.0703125,0.16093][0.431441,0.772345,-0.430544][0.60183,0.524976,-0.601831][0.410156,0.113281,0.29736][0.477752,0.635877,-0.476855][0.674885,0.298428,-0.674886][0.445313,0.0976563,0.329345][0.000897726,0.635877,0.674375][0,0.298429,0.954432][0.445313,0.441406,0][0.25897,0.635877,0.623041][0.365246,0.298429,0.88178][0.445313,0.425781,0.17824][0.233906,0.772345,0.562532][0.325709,0.524976,0.786329][0.410156,0.410156,0.16093][0.233906,0.772345,0.562532][0.325709,0.524976,0.786329][0.410156,0.410156,0.16093][0.00089779,0.772345,0.608881][2.40043e-007,0.524976,0.851117][0.410156,0.421875,1.32713e-007][0.000897726,0.635877,0.674375][0,0.298429,0.954432][0.445313,0.441406,0][0.00089779,0.772345,0.608881][2.40043e-007,0.524976,0.851117][0.410156,0.421875,1.32713e-007][-0.232111,0.772345,0.562532][-0.325708,0.524976,0.78633][0.410156,0.410156,-0.16093][-0.257174,0.635877,0.623041][-0.365245,0.298429,0.88178][0.445313,0.425781,-0.17824][-0.257174,0.635877,0.623041][-0.365245,0.298429,0.88178][0.445313,0.425781,-0.17824][0.000897726,0.635877,0.674375][0,0.298429,0.954432][0.445313,0.441406,0][0.00089779,0.772345,0.608881][2.40043e-007,0.524976,0.851117][0.410156,0.421875,1.32713e-007][0.477753,0.635877,0.476855][0.674886,0.298428,0.674885][0.445313,0.382813,0.329345][0.623939,0.635877,0.258072][0.88178,0.298429,0.365245][0.445313,0.316406,0.43031][0.56343,0.772345,0.233008][0.78633,0.524976,0.325708][0.410156,0.3125,0.388519][0.56343,0.772345,0.233008][0.78633,0.524976,0.325708][0.410156,0.3125,0.388519][0.431441,0.772345,0.430544][0.601831,0.524976,0.60183][0.410156,0.371094,0.29736][0.477753,0.635877,0.476855][0.674886,0.298428,0.674885][0.445313,0.382813,0.329345][0.431441,0.772345,0.430544][0.601831,0.524976,0.60183][0.410156,0.371094,0.29736][0.233906,0.772345,0.562532][0.325709,0.524976,0.786329][0.410156,0.410156,0.16093][0.25897,0.635877,0.623041][0.365246,0.298429,0.88178][0.445313,0.425781,0.17824][0.25897,0.635877,0.623041][0.365246,0.298429,0.88178][0.445313,0.425781,0.17824][0.477753,0.635877,0.476855][0.674886,0.298428,0.674885][0.445313,0.382813,0.329345][0.431441,0.772345,0.430544][0.601831,0.524976,0.60183][0.410156,0.371094,0.29736][-0.561635,0.772345,0.233009][-0.78633,0.524976,0.325709][0.410156,0.3125,-0.388519][-0.607983,0.772345,0][-0.851117,0.524976,2.9393e-007][0.410156,0.242188,-0.42053][-0.673477,0.635877,0][-0.954432,0.298429,2.08117e-007][0.445313,0.242188,-0.465764][-0.673477,0.635877,0][-0.954432,0.298429,2.08117e-007][0.445313,0.242188,-0.465764][-0.622143,0.635877,0.258072][-0.88178,0.298428,0.365246][0.445313,0.316406,-0.43031][-0.561635,0.772345,0.233009][-0.78633,0.524976,0.325709][0.410156,0.3125,-0.388519][-0.257175,0.635877,-0.623041][-0.365246,0.298429,-0.88178][0.445313,0.0546875,-0.17824][-0.475958,0.635877,-0.476855][-0.674885,0.298429,-0.674885][0.445313,0.0976563,-0.329345][-0.429646,0.772345,-0.430544][-0.601831,0.524976,-0.601831][0.410156,0.113281,-0.29736][-0.429646,0.772345,-0.430544][-0.601831,0.524976,-0.601831][0.410156,0.113281,-0.29736][-0.232111,0.772345,-0.562533][-0.325709,0.524976,-0.78633][0.410156,0.0703125,-0.16093][-0.257175,0.635877,-0.623041][-0.365246,0.298429,-0.88178][0.445313,0.0546875,-0.17824][-0.232111,0.772345,-0.562533][-0.325709,0.524976,-0.78633][0.410156,0.0703125,-0.16093][0.000897501,0.772345,-0.608881][-1.95954e-007,0.524976,-0.851117][0.410156,0.0585938,0][0.000897501,0.635877,-0.674375][-2.52714e-007,0.298429,-0.954432][0.445313,0.0390625,0][0.000897501,0.635877,-0.674375][-2.52714e-007,0.298429,-0.954432][0.445313,0.0390625,0][-0.257175,0.635877,-0.623041][-0.365246,0.298429,-0.88178][0.445313,0.0546875,-0.17824][-0.232111,0.772345,-0.562533][-0.325709,0.524976,-0.78633][0.410156,0.0703125,-0.16093][-0.607983,0.772345,0][-0.851117,0.524976,2.9393e-007][0.410156,0.242188,-0.42053][-0.561635,0.772345,-0.233009][-0.78633,0.524976,-0.325708][0.410156,0.171875,-0.388519][-0.622144,0.635877,-0.258072][-0.88178,0.298428,-0.365245][0.445313,0.164063,-0.43031][-0.622144,0.635877,-0.258072][-0.88178,0.298428,-0.365245][0.445313,0.164063,-0.43031][-0.673477,0.635877,0][-0.954432,0.298429,2.08117e-007][0.445313,0.242188,-0.465764][-0.607983,0.772345,0][-0.851117,0.524976,2.9393e-007][0.410156,0.242188,-0.42053][-0.475958,0.635877,-0.476855][-0.674885,0.298429,-0.674885][0.445313,0.0976563,-0.329345][-0.622144,0.635877,-0.258072][-0.88178,0.298428,-0.365245][0.445313,0.164063,-0.43031][-0.561635,0.772345,-0.233009][-0.78633,0.524976,-0.325708][0.410156,0.171875,-0.388519][-0.561635,0.772345,-0.233009][-0.78633,0.524976,-0.325708][0.410156,0.171875,-0.388519][-0.429646,0.772345,-0.430544][-0.601831,0.524976,-0.601831][0.410156,0.113281,-0.29736][-0.475958,0.635877,-0.476855][-0.674885,0.298429,-0.674885][0.445313,0.0976563,-0.329345][0.623939,0.635877,0.258072][0.88178,0.298429,0.365245][0.445313,0.316406,0.43031][0.675272,0.635877,-2.51923e-007][0.954432,0.298428,0][0.445313,0.242188,0.465764][0.609779,0.772345,-2.68454e-007][0.851117,0.524976,0][0.410156,0.242188,0.42053][0.609779,0.772345,-2.68454e-007][0.851117,0.524976,0][0.410156,0.242188,0.42053][0.56343,0.772345,0.233008][0.78633,0.524976,0.325708][0.410156,0.3125,0.388519][0.623939,0.635877,0.258072][0.88178,0.298429,0.365245][0.445313,0.316406,0.43031][0.000897501,0.772345,-0.608881][-1.95954e-007,0.524976,-0.851117][0.410156,0.0585938,0][0.233906,0.772345,-0.562533][0.325708,0.524976,-0.78633][0.410156,0.0703125,0.16093][0.258969,0.635877,-0.623041][0.365245,0.298429,-0.88178][0.445313,0.0546875,0.17824][0.258969,0.635877,-0.623041][0.365245,0.298429,-0.88178][0.445313,0.0546875,0.17824][0.000897501,0.635877,-0.674375][-2.52714e-007,0.298429,-0.954432][0.445313,0.0390625,0][0.000897501,0.772345,-0.608881][-1.95954e-007,0.524976,-0.851117][0.410156,0.0585938,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/NinjaMask.mesh b/shareddata/charcustom/hats/fonts/NinjaMask.mesh deleted file mode 100644 index 4cced64..0000000 --- a/shareddata/charcustom/hats/fonts/NinjaMask.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -892 -[0.74557,-0.975513,-0.940985][0.389939,-0.179604,-0.903155][0.416667,0.041667,0][0.967858,-0.977384,-0.70097][0.764182,-0.339961,-0.548135][0.375,0.041667,0][0.766663,-1.2621,-0.583531][1.84834,-2.82316,-1.58156][0.375,0,0][0.766663,-1.2621,-0.583531][1.84834,-2.82316,-1.58156][0.375,0,0][0.673588,-1.124,-0.95419][0.383455,-0.350212,-0.854584][0.416667,0,0][0.74557,-0.975513,-0.940985][0.389939,-0.179604,-0.903155][0.416667,0.041667,0][0.395466,-0.976881,-1.129][0.306871,-0.339624,-0.889092][0.458333,0.041667,0][0.713392,-0.967098,-0.933528][0.11913,-0.0337288,-0.992306][0.416667,0.041667,0][0.641619,-1.09854,-0.941235][0.0880257,0.0129887,-0.996033][0.416667,0,0][0.641619,-1.09854,-0.941235][0.0880257,0.0129887,-0.996033][0.416667,0,0][0.369387,-1.20991,-0.951638][0.118802,-0.202465,-0.972057][0.458333,0,0][0.395466,-0.976881,-1.129][0.306871,-0.339624,-0.889092][0.458333,0.041667,0][3.19872e-007,-0.976724,-1.19772][-0.00208671,-0.373602,-0.927587][0.5,0.041667,0][0.395466,-0.976881,-1.129][0.306871,-0.339624,-0.889092][0.458333,0.041667,0][0.369387,-1.20991,-0.951638][0.118802,-0.202465,-0.972057][0.458333,0,0][0.369387,-1.20991,-0.951638][0.118802,-0.202465,-0.972057][0.458333,0,0][2.87687e-007,-1.21136,-1.00772][-0.00252853,-0.266283,-0.963891][0.5,0,0][3.19872e-007,-0.976724,-1.19772][-0.00208671,-0.373602,-0.927587][0.5,0.041667,0][-0.395466,-0.976881,-1.129][-0.331298,-0.357408,-0.873213][0.541667,0.041667,0][3.19872e-007,-0.976724,-1.19772][-0.00208671,-0.373602,-0.927587][0.5,0.041667,0][2.87687e-007,-1.21136,-1.00772][-0.00252853,-0.266283,-0.963891][0.5,0,0][2.87687e-007,-1.21136,-1.00772][-0.00252853,-0.266283,-0.963891][0.5,0,0][-0.369387,-1.20991,-0.951637][-0.14904,-0.178976,-0.972499][0.541667,0,0][-0.395466,-0.976881,-1.129][-0.331298,-0.357408,-0.873213][0.541667,0.041667,0][-0.713392,-0.967098,-0.933528][-0.0737817,-0.0516099,-0.995938][0.583333,0.041667,0][-0.395466,-0.976881,-1.129][-0.331298,-0.357408,-0.873213][0.541667,0.041667,0][-0.369387,-1.20991,-0.951637][-0.14904,-0.178976,-0.972499][0.541667,0,0][-0.369387,-1.20991,-0.951637][-0.14904,-0.178976,-0.972499][0.541667,0,0][-0.641618,-1.09854,-0.941235][0.0986083,0.176726,-0.979308][0.583333,0,0][-0.713392,-0.967098,-0.933528][-0.0737817,-0.0516099,-0.995938][0.583333,0.041667,0][-0.967858,-0.977384,-0.70097][-0.789303,-0.339013,-0.511928][0.625,0.041667,0][-0.74557,-0.975513,-0.940985][-0.35926,-0.0879137,-0.929087][0.583333,0.041667,0][-0.673588,-1.124,-0.95419][-0.298119,-0.377152,-0.876859][0.583333,0,0][-0.673588,-1.124,-0.95419][-0.298119,-0.377152,-0.876859][0.583333,0,0][-0.766664,-1.2621,-0.583531][-1.97273,-2.80428,-1.43598][0.625,0,0][-0.967858,-0.977384,-0.70097][-0.789303,-0.339013,-0.511928][0.625,0.041667,0][0.770664,-0.450137,-0.969399][0.340495,-0.00987715,-0.940194][0.416667,0.083333,0][1.00011,-0.450262,-0.718347][0.819063,-0.0259986,-0.573114][0.375,0.083333,0][0.967858,-0.977384,-0.70097][0.764182,-0.339961,-0.548135][0.375,0.041667,0][0.967858,-0.977384,-0.70097][0.764182,-0.339961,-0.548135][0.375,0.041667,0][0.74557,-0.975513,-0.940985][0.389939,-0.179604,-0.903155][0.416667,0.041667,0][0.770664,-0.450137,-0.969399][0.340495,-0.00987715,-0.940194][0.416667,0.083333,0][0.407857,-0.454202,-1.18463][0.365473,0.000532421,-0.930822][0.458333,0.083333,0][0.739254,-0.452498,-0.964538][0.201668,-0.0134942,-0.979361][0.416667,0.083333,0][0.713392,-0.967098,-0.933528][0.11913,-0.0337288,-0.992306][0.416667,0.041667,0][0.713392,-0.967098,-0.933528][0.11913,-0.0337288,-0.992306][0.416667,0.041667,0][0.395466,-0.976881,-1.129][0.306871,-0.339624,-0.889092][0.458333,0.041667,0][0.407857,-0.454202,-1.18463][0.365473,0.000532421,-0.930822][0.458333,0.083333,0][-1.16635e-005,-0.453914,-1.25653][-0.00153277,-0.00142715,-0.999998][0.5,0.083333,0][0.407857,-0.454202,-1.18463][0.365473,0.000532421,-0.930822][0.458333,0.083333,0][0.395466,-0.976881,-1.129][0.306871,-0.339624,-0.889092][0.458333,0.041667,0][0.395466,-0.976881,-1.129][0.306871,-0.339624,-0.889092][0.458333,0.041667,0][3.19872e-007,-0.976724,-1.19772][-0.00208671,-0.373602,-0.927587][0.5,0.041667,0][-1.16635e-005,-0.453914,-1.25653][-0.00153277,-0.00142715,-0.999998][0.5,0.083333,0][-0.407815,-0.454195,-1.18465][-0.35716,-0.00980837,-0.933992][0.541667,0.083333,0][-1.16635e-005,-0.453914,-1.25653][-0.00153277,-0.00142715,-0.999998][0.5,0.083333,0][3.19872e-007,-0.976724,-1.19772][-0.00208671,-0.373602,-0.927587][0.5,0.041667,0][3.19872e-007,-0.976724,-1.19772][-0.00208671,-0.373602,-0.927587][0.5,0.041667,0][-0.395466,-0.976881,-1.129][-0.331298,-0.357408,-0.873213][0.541667,0.041667,0][-0.407815,-0.454195,-1.18465][-0.35716,-0.00980837,-0.933992][0.541667,0.083333,0][-0.739703,-0.452501,-0.964421][-0.199914,-0.0496835,-0.978553][0.583333,0.083333,0][-0.407815,-0.454195,-1.18465][-0.35716,-0.00980837,-0.933992][0.541667,0.083333,0][-0.395466,-0.976881,-1.129][-0.331298,-0.357408,-0.873213][0.541667,0.041667,0][-0.395466,-0.976881,-1.129][-0.331298,-0.357408,-0.873213][0.541667,0.041667,0][-0.713392,-0.967098,-0.933528][-0.0737817,-0.0516099,-0.995938][0.583333,0.041667,0][-0.739703,-0.452501,-0.964421][-0.199914,-0.0496835,-0.978553][0.583333,0.083333,0][-1.00011,-0.450262,-0.718347][-0.82311,-0.035163,-0.566792][0.625,0.083333,0][-0.771223,-0.450143,-0.969151][-0.349339,-0.0392046,-0.936176][0.583333,0.083333,0][-0.74557,-0.975513,-0.940985][-0.35926,-0.0879137,-0.929087][0.583333,0.041667,0][-0.74557,-0.975513,-0.940985][-0.35926,-0.0879137,-0.929087][0.583333,0.041667,0][-0.967858,-0.977384,-0.70097][-0.789303,-0.339013,-0.511928][0.625,0.041667,0][-1.00011,-0.450262,-0.718347][-0.82311,-0.035163,-0.566792][0.625,0.083333,0][0.746582,-0.00736333,-0.956316][0.514472,0.00964094,-0.857453][0.416667,0.125,0][0.999958,-0.00741483,-0.718571][0.801255,-9.87201e-005,-0.598323][0.375,0.125,0][1.00011,-0.450262,-0.718347][0.819063,-0.0259986,-0.573114][0.375,0.083333,0][1.00011,-0.450262,-0.718347][0.819063,-0.0259986,-0.573114][0.375,0.083333,0][0.770664,-0.450137,-0.969399][0.340495,-0.00987715,-0.940194][0.416667,0.083333,0][0.746582,-0.00736333,-0.956316][0.514472,0.00964094,-0.857453][0.416667,0.125,0][0.407585,-0.0244322,-1.13695][1.17824,0.285699,-3.12865][0.458333,0.125,0][0.700281,-0.00745488,-0.972009][1.76922,0.0644863,-4.29757][0.416667,0.125,0][0.739254,-0.452498,-0.964538][0.201668,-0.0134942,-0.979361][0.416667,0.083333,0][0.739254,-0.452498,-0.964538][0.201668,-0.0134942,-0.979361][0.416667,0.083333,0][0.407857,-0.454202,-1.18463][0.365473,0.000532421,-0.930822][0.458333,0.083333,0][0.407585,-0.0244322,-1.13695][1.17824,0.285699,-3.12865][0.458333,0.125,0][-2.2664e-005,0.0527334,-1.20274][-0.00895335,0.293439,-2.73187][0.5,0.125,0][0.407585,-0.0244322,-1.13695][1.17824,0.285699,-3.12865][0.458333,0.125,0][0.407857,-0.454202,-1.18463][0.365473,0.000532421,-0.930822][0.458333,0.083333,0][0.407857,-0.454202,-1.18463][0.365473,0.000532421,-0.930822][0.458333,0.083333,0][-1.16635e-005,-0.453914,-1.25653][-0.00153277,-0.00142715,-0.999998][0.5,0.083333,0][-2.2664e-005,0.0527334,-1.20274][-0.00895335,0.293439,-2.73187][0.5,0.125,0][-0.375409,-0.0244026,-1.1403][-1.00193,0.396075,-3.21653][0.541667,0.125,0][-2.2664e-005,0.0527334,-1.20274][-0.00895335,0.293439,-2.73187][0.5,0.125,0][-1.16635e-005,-0.453914,-1.25653][-0.00153277,-0.00142715,-0.999998][0.5,0.083333,0][-1.16635e-005,-0.453914,-1.25653][-0.00153277,-0.00142715,-0.999998][0.5,0.083333,0][-0.407815,-0.454195,-1.18465][-0.35716,-0.00980837,-0.933992][0.541667,0.083333,0][-0.375409,-0.0244026,-1.1403][-1.00193,0.396075,-3.21653][0.541667,0.125,0][-0.701888,-0.00741671,-0.983881][-2.34908,0.199335,-4.03004][0.583333,0.125,0][-0.375409,-0.0244026,-1.1403][-1.00193,0.396075,-3.21653][0.541667,0.125,0][-0.407815,-0.454195,-1.18465][-0.35716,-0.00980837,-0.933992][0.541667,0.083333,0][-0.407815,-0.454195,-1.18465][-0.35716,-0.00980837,-0.933992][0.541667,0.083333,0][-0.739703,-0.452501,-0.964421][-0.199914,-0.0496835,-0.978553][0.583333,0.083333,0][-0.701888,-0.00741671,-0.983881][-2.34908,0.199335,-4.03004][0.583333,0.125,0][-0.999958,-0.0074148,-0.718571][-0.806146,0.00871239,-0.591653][0.625,0.125,0][-0.747657,-0.00736045,-0.955664][-0.606073,0.0298999,-0.794847][0.583333,0.125,0][-0.771223,-0.450143,-0.969151][-0.349339,-0.0392046,-0.936176][0.583333,0.083333,0][-0.771223,-0.450143,-0.969151][-0.349339,-0.0392046,-0.936176][0.583333,0.083333,0][-1.00011,-0.450262,-0.718347][-0.82311,-0.035163,-0.566792][0.625,0.083333,0][-0.999958,-0.0074148,-0.718571][-0.806146,0.00871239,-0.591653][0.625,0.125,0][0.747728,0.377897,-0.955617][0.56821,0.0229971,-0.822562][0.416667,0.166667,0][0.999852,0.378584,-0.718684][0.799736,0.0525348,-0.598048][0.375,0.166667,0][0.999958,-0.00741483,-0.718571][0.801255,-9.87201e-005,-0.598323][0.375,0.125,0][0.999958,-0.00741483,-0.718571][0.801255,-9.87201e-005,-0.598323][0.375,0.125,0][0.746582,-0.00736333,-0.956316][0.514472,0.00964094,-0.857453][0.416667,0.125,0][0.747728,0.377897,-0.955617][0.56821,0.0229971,-0.822562][0.416667,0.166667,0][-0.999852,0.378584,-0.718684][-0.799792,0.0518419,-0.598035][0.625,0.166667,0][-0.748123,0.378099,-0.955337][-0.590107,0.0458042,-0.806024][0.583333,0.166667,0][-0.747657,-0.00736045,-0.955664][-0.606073,0.0298999,-0.794847][0.583333,0.125,0][-0.747657,-0.00736045,-0.955664][-0.606073,0.0298999,-0.794847][0.583333,0.125,0][-0.999958,-0.0074148,-0.718571][-0.806146,0.00871239,-0.591653][0.625,0.125,0][-0.999852,0.378584,-0.718684][-0.799792,0.0518419,-0.598035][0.625,0.166667,0][0.718472,0.705126,-0.934532][0.563364,0.267573,-0.781681][0.416667,0.208333,0][0.974333,0.704904,-0.695385][0.77444,0.266809,-0.573634][0.375,0.208333,0][0.999852,0.378584,-0.718684][0.799736,0.0525348,-0.598048][0.375,0.166667,0][0.999852,0.378584,-0.718684][0.799736,0.0525348,-0.598048][0.375,0.166667,0][0.747728,0.377897,-0.955617][0.56821,0.0229971,-0.822562][0.416667,0.166667,0][0.718472,0.705126,-0.934532][0.563364,0.267573,-0.781681][0.416667,0.208333,0][0.403115,0.705584,-1.11802][0.329891,0.321289,-0.887663][0.458333,0.208333,0][0.718472,0.705126,-0.934532][0.563364,0.267573,-0.781681][0.416667,0.208333,0][0.747728,0.377897,-0.955617][0.56821,0.0229971,-0.822562][0.416667,0.166667,0][0.747728,0.377897,-0.955617][0.56821,0.0229971,-0.822562][0.416667,0.166667,0][0.388293,0.479712,-1.16082][0.303373,-0.137809,-0.942854][0.458333,0.166667,0][0.403115,0.705584,-1.11802][0.329891,0.321289,-0.887663][0.458333,0.208333,0][3.43295e-007,0.705894,-1.18679][-0.00333641,0.32577,-0.945443][0.5,0.208333,0][0.403115,0.705584,-1.11802][0.329891,0.321289,-0.887663][0.458333,0.208333,0][0.388293,0.479712,-1.16082][0.303373,-0.137809,-0.942854][0.458333,0.166667,0][0.388293,0.479712,-1.16082][0.303373,-0.137809,-0.942854][0.458333,0.166667,0][3.44476e-007,0.47928,-1.21698][-0.00243697,-0.133644,-0.991026][0.5,0.166667,0][3.43295e-007,0.705894,-1.18679][-0.00333641,0.32577,-0.945443][0.5,0.208333,0][-0.403115,0.705584,-1.11802][-0.318189,0.315249,-0.894077][0.541667,0.208333,0][3.43295e-007,0.705894,-1.18679][-0.00333641,0.32577,-0.945443][0.5,0.208333,0][3.44476e-007,0.47928,-1.21698][-0.00243697,-0.133644,-0.991026][0.5,0.166667,0][3.44476e-007,0.47928,-1.21698][-0.00243697,-0.133644,-0.991026][0.5,0.166667,0][-0.388358,0.480036,-1.16083][-0.302342,-0.141773,-0.942597][0.541667,0.166667,0][-0.403115,0.705584,-1.11802][-0.318189,0.315249,-0.894077][0.541667,0.208333,0][-0.718472,0.705126,-0.934532][-0.57741,0.26578,-0.771984][0.583333,0.208333,0][-0.403115,0.705584,-1.11802][-0.318189,0.315249,-0.894077][0.541667,0.208333,0][-0.388358,0.480036,-1.16083][-0.302342,-0.141773,-0.942597][0.541667,0.166667,0][-0.388358,0.480036,-1.16083][-0.302342,-0.141773,-0.942597][0.541667,0.166667,0][-0.748123,0.378099,-0.955337][-0.590107,0.0458042,-0.806024][0.583333,0.166667,0][-0.718472,0.705126,-0.934532][-0.57741,0.26578,-0.771984][0.583333,0.208333,0][-0.974333,0.704904,-0.695385][-0.76594,0.271558,-0.582746][0.625,0.208333,0][-0.718472,0.705126,-0.934532][-0.57741,0.26578,-0.771984][0.583333,0.208333,0][-0.748123,0.378099,-0.955337][-0.590107,0.0458042,-0.806024][0.583333,0.166667,0][-0.748123,0.378099,-0.955337][-0.590107,0.0458042,-0.806024][0.583333,0.166667,0][-0.999852,0.378584,-0.718684][-0.799792,0.0518419,-0.598035][0.625,0.166667,0][-0.974333,0.704904,-0.695385][-0.76594,0.271558,-0.582746][0.625,0.208333,0][0.688281,0.972528,-0.807323][0.46105,0.64814,-0.606093][0.416667,0.25,0][0.898993,0.913461,-0.621904][0.68004,0.552932,-0.481469][0.375,0.25,0][0.974333,0.704904,-0.695385][0.77444,0.266809,-0.573634][0.375,0.208333,0][0.974333,0.704904,-0.695385][0.77444,0.266809,-0.573634][0.375,0.208333,0][0.718472,0.705126,-0.934532][0.563364,0.267573,-0.781681][0.416667,0.208333,0][0.688281,0.972528,-0.807323][0.46105,0.64814,-0.606093][0.416667,0.25,0][0.367024,1.00294,-0.950333][0.225217,0.717021,-0.659665][0.458333,0.25,0][0.688281,0.972528,-0.807323][0.46105,0.64814,-0.606093][0.416667,0.25,0][0.718472,0.705126,-0.934532][0.563364,0.267573,-0.781681][0.416667,0.208333,0][0.718472,0.705126,-0.934532][0.563364,0.267573,-0.781681][0.416667,0.208333,0][0.403115,0.705584,-1.11802][0.329891,0.321289,-0.887663][0.458333,0.208333,0][0.367024,1.00294,-0.950333][0.225217,0.717021,-0.659665][0.458333,0.25,0][3.2082e-007,1.00312,-1.00862][0.00387326,0.73485,-0.678219][0.5,0.25,0][0.367024,1.00294,-0.950333][0.225217,0.717021,-0.659665][0.458333,0.25,0][0.403115,0.705584,-1.11802][0.329891,0.321289,-0.887663][0.458333,0.208333,0][0.403115,0.705584,-1.11802][0.329891,0.321289,-0.887663][0.458333,0.208333,0][3.43295e-007,0.705894,-1.18679][-0.00333641,0.32577,-0.945443][0.5,0.208333,0][3.2082e-007,1.00312,-1.00862][0.00387326,0.73485,-0.678219][0.5,0.25,0][-0.367024,1.00294,-0.950333][-0.220726,0.720742,-0.657123][0.541667,0.25,0][3.2082e-007,1.00312,-1.00862][0.00387326,0.73485,-0.678219][0.5,0.25,0][3.43295e-007,0.705894,-1.18679][-0.00333641,0.32577,-0.945443][0.5,0.208333,0][3.43295e-007,0.705894,-1.18679][-0.00333641,0.32577,-0.945443][0.5,0.208333,0][-0.403115,0.705584,-1.11802][-0.318189,0.315249,-0.894077][0.541667,0.208333,0][-0.367024,1.00294,-0.950333][-0.220726,0.720742,-0.657123][0.541667,0.25,0][-0.688281,0.972528,-0.807323][-0.476237,0.646533,-0.595982][0.583333,0.25,0][-0.367024,1.00294,-0.950333][-0.220726,0.720742,-0.657123][0.541667,0.25,0][-0.403115,0.705584,-1.11802][-0.318189,0.315249,-0.894077][0.541667,0.208333,0][-0.403115,0.705584,-1.11802][-0.318189,0.315249,-0.894077][0.541667,0.208333,0][-0.718472,0.705126,-0.934532][-0.57741,0.26578,-0.771984][0.583333,0.208333,0][-0.688281,0.972528,-0.807323][-0.476237,0.646533,-0.595982][0.583333,0.25,0][-0.898993,0.913461,-0.621904][-0.663467,0.559097,-0.497215][0.625,0.25,0][-0.688281,0.972528,-0.807323][-0.476237,0.646533,-0.595982][0.583333,0.25,0][-0.718472,0.705126,-0.934532][-0.57741,0.26578,-0.771984][0.583333,0.208333,0][-0.718472,0.705126,-0.934532][-0.57741,0.26578,-0.771984][0.583333,0.208333,0][-0.974333,0.704904,-0.695385][-0.76594,0.271558,-0.582746][0.625,0.208333,0][-0.898993,0.913461,-0.621904][-0.663467,0.559097,-0.497215][0.625,0.25,0][0.753893,1.07314,-0.552689][0.373609,0.872292,-0.315474][0.416667,0.291667,0][1.01873,0.973705,-0.350978][0.731555,0.626961,-0.267857][0.375,0.291667,0][0.898993,0.913461,-0.621904][0.68004,0.552932,-0.481469][0.375,0.25,0][0.898993,0.913461,-0.621904][0.68004,0.552932,-0.481469][0.375,0.25,0][0.688281,0.972528,-0.807323][0.46105,0.64814,-0.606093][0.416667,0.25,0][0.753893,1.07314,-0.552689][0.373609,0.872292,-0.315474][0.416667,0.291667,0][0.378582,1.10023,-0.738803][0.127352,0.946548,-0.296357][0.458333,0.291667,0][0.753893,1.07314,-0.552689][0.373609,0.872292,-0.315474][0.416667,0.291667,0][0.688281,0.972528,-0.807323][0.46105,0.64814,-0.606093][0.416667,0.25,0][0.688281,0.972528,-0.807323][0.46105,0.64814,-0.606093][0.416667,0.25,0][0.367024,1.00294,-0.950333][0.225217,0.717021,-0.659665][0.458333,0.25,0][0.378582,1.10023,-0.738803][0.127352,0.946548,-0.296357][0.458333,0.291667,0][2.88326e-007,1.1004,-0.783814][0.00395488,0.960152,-0.27945][0.5,0.291667,0][0.378582,1.10023,-0.738803][0.127352,0.946548,-0.296357][0.458333,0.291667,0][0.367024,1.00294,-0.950333][0.225217,0.717021,-0.659665][0.458333,0.25,0][0.367024,1.00294,-0.950333][0.225217,0.717021,-0.659665][0.458333,0.25,0][3.2082e-007,1.00312,-1.00862][0.00387326,0.73485,-0.678219][0.5,0.25,0][2.88326e-007,1.1004,-0.783814][0.00395488,0.960152,-0.27945][0.5,0.291667,0][-0.378582,1.10023,-0.738803][-0.128981,0.945653,-0.298503][0.541667,0.291667,0][2.88326e-007,1.1004,-0.783814][0.00395488,0.960152,-0.27945][0.5,0.291667,0][3.2082e-007,1.00312,-1.00862][0.00387326,0.73485,-0.678219][0.5,0.25,0][3.2082e-007,1.00312,-1.00862][0.00387326,0.73485,-0.678219][0.5,0.25,0][-0.367024,1.00294,-0.950333][-0.220726,0.720742,-0.657123][0.541667,0.25,0][-0.378582,1.10023,-0.738803][-0.128981,0.945653,-0.298503][0.541667,0.291667,0][-0.753893,1.07314,-0.552689][-0.392062,0.861887,-0.321617][0.583333,0.291667,0][-0.378582,1.10023,-0.738803][-0.128981,0.945653,-0.298503][0.541667,0.291667,0][-0.367024,1.00294,-0.950333][-0.220726,0.720742,-0.657123][0.541667,0.25,0][-0.367024,1.00294,-0.950333][-0.220726,0.720742,-0.657123][0.541667,0.25,0][-0.688281,0.972528,-0.807323][-0.476237,0.646533,-0.595982][0.583333,0.25,0][-0.753893,1.07314,-0.552689][-0.392062,0.861887,-0.321617][0.583333,0.291667,0][-1.01873,0.973705,-0.350978][-0.724099,0.643779,-0.247444][0.625,0.291667,0][-0.753893,1.07314,-0.552689][-0.392062,0.861887,-0.321617][0.583333,0.291667,0][-0.688281,0.972528,-0.807323][-0.476237,0.646533,-0.595982][0.583333,0.25,0][-0.688281,0.972528,-0.807323][-0.476237,0.646533,-0.595982][0.583333,0.25,0][-0.898993,0.913461,-0.621904][-0.663467,0.559097,-0.497215][0.625,0.25,0][-1.01873,0.973705,-0.350978][-0.724099,0.643779,-0.247444][0.625,0.291667,0][0.787399,1.1163,-0.3157][0.302433,0.943855,-0.132933][0.416667,0.333333,0][1.04107,0.989304,-0.177051][0.735334,0.66977,-0.103403][0.375,0.333333,0][1.01873,0.973705,-0.350978][0.731555,0.626961,-0.267857][0.375,0.291667,0][1.01873,0.973705,-0.350978][0.731555,0.626961,-0.267857][0.375,0.291667,0][0.753893,1.07314,-0.552689][0.373609,0.872292,-0.315474][0.416667,0.291667,0][0.787399,1.1163,-0.3157][0.302433,0.943855,-0.132933][0.416667,0.333333,0][0.398906,1.14822,-0.397706][0.0611162,0.993344,-0.0976328][0.458333,0.333333,0][0.787399,1.1163,-0.3157][0.302433,0.943855,-0.132933][0.416667,0.333333,0][0.753893,1.07314,-0.552689][0.373609,0.872292,-0.315474][0.416667,0.291667,0][0.753893,1.07314,-0.552689][0.373609,0.872292,-0.315474][0.416667,0.291667,0][0.378582,1.10023,-0.738803][0.127352,0.946548,-0.296357][0.458333,0.291667,0][0.398906,1.14822,-0.397706][0.0611162,0.993344,-0.0976328][0.458333,0.333333,0][2.3438e-007,1.14826,-0.421823][0.00142013,0.996297,-0.0859637][0.5,0.333333,0][0.398906,1.14822,-0.397706][0.0611162,0.993344,-0.0976328][0.458333,0.333333,0][0.378582,1.10023,-0.738803][0.127352,0.946548,-0.296357][0.458333,0.291667,0][0.378582,1.10023,-0.738803][0.127352,0.946548,-0.296357][0.458333,0.291667,0][2.88326e-007,1.1004,-0.783814][0.00395488,0.960152,-0.27945][0.5,0.291667,0][2.3438e-007,1.14826,-0.421823][0.00142013,0.996297,-0.0859637][0.5,0.333333,0][-0.398906,1.14822,-0.397706][-0.0542832,0.994203,-0.0928064][0.541667,0.333333,0][2.3438e-007,1.14826,-0.421823][0.00142013,0.996297,-0.0859637][0.5,0.333333,0][2.88326e-007,1.1004,-0.783814][0.00395488,0.960152,-0.27945][0.5,0.291667,0][2.88326e-007,1.1004,-0.783814][0.00395488,0.960152,-0.27945][0.5,0.291667,0][-0.378582,1.10023,-0.738803][-0.128981,0.945653,-0.298503][0.541667,0.291667,0][-0.398906,1.14822,-0.397706][-0.0542832,0.994203,-0.0928064][0.541667,0.333333,0][-0.787399,1.1163,-0.3157][-0.324363,0.935897,-0.137426][0.583333,0.333333,0][-0.398906,1.14822,-0.397706][-0.0542832,0.994203,-0.0928064][0.541667,0.333333,0][-0.378582,1.10023,-0.738803][-0.128981,0.945653,-0.298503][0.541667,0.291667,0][-0.378582,1.10023,-0.738803][-0.128981,0.945653,-0.298503][0.541667,0.291667,0][-0.753893,1.07314,-0.552689][-0.392062,0.861887,-0.321617][0.583333,0.291667,0][-0.787399,1.1163,-0.3157][-0.324363,0.935897,-0.137426][0.583333,0.333333,0][-1.04107,0.989304,-0.177051][-0.733815,0.670982,-0.106296][0.625,0.333333,0][-0.787399,1.1163,-0.3157][-0.324363,0.935897,-0.137426][0.583333,0.333333,0][-0.753893,1.07314,-0.552689][-0.392062,0.861887,-0.321617][0.583333,0.291667,0][-0.753893,1.07314,-0.552689][-0.392062,0.861887,-0.321617][0.583333,0.291667,0][-1.01873,0.973705,-0.350978][-0.724099,0.643779,-0.247444][0.625,0.291667,0][-1.04107,0.989304,-0.177051][-0.733815,0.670982,-0.106296][0.625,0.333333,0][0.804693,1.13076,-0.00351102][0.297245,0.9548,0.0014205][0.416667,0.375,0][1.05418,0.989323,-0.00351098][0.744603,0.667457,0.00824349][0.375,0.375,0][1.04107,0.989304,-0.177051][0.735334,0.66977,-0.103403][0.375,0.333333,0][1.04107,0.989304,-0.177051][0.735334,0.66977,-0.103403][0.375,0.333333,0][0.787399,1.1163,-0.3157][0.302433,0.943855,-0.132933][0.416667,0.333333,0][0.804693,1.13076,-0.00351102][0.297245,0.9548,0.0014205][0.416667,0.375,0][0.409668,1.1626,-0.00351108][0.0425489,0.999093,-0.00162115][0.458333,0.375,0][0.804693,1.13076,-0.00351102][0.297245,0.9548,0.0014205][0.416667,0.375,0][0.787399,1.1163,-0.3157][0.302433,0.943855,-0.132933][0.416667,0.333333,0][0.787399,1.1163,-0.3157][0.302433,0.943855,-0.132933][0.416667,0.333333,0][0.398906,1.14822,-0.397706][0.0611162,0.993344,-0.0976328][0.458333,0.333333,0][0.409668,1.1626,-0.00351108][0.0425489,0.999093,-0.00162115][0.458333,0.375,0][1.7143e-007,1.16262,-0.00351114][0,1,0][0.5,0.375,0][0.409668,1.1626,-0.00351108][0.0425489,0.999093,-0.00162115][0.458333,0.375,0][0.398906,1.14822,-0.397706][0.0611162,0.993344,-0.0976328][0.458333,0.333333,0][0.398906,1.14822,-0.397706][0.0611162,0.993344,-0.0976328][0.458333,0.333333,0][2.3438e-007,1.14826,-0.421823][0.00142013,0.996297,-0.0859637][0.5,0.333333,0][1.7143e-007,1.16262,-0.00351114][0,1,0][0.5,0.375,0][-0.409668,1.1626,-0.0035112][-0.0425488,0.999093,0.00162109][0.541667,0.375,0][1.7143e-007,1.16262,-0.00351114][0,1,0][0.5,0.375,0][2.3438e-007,1.14826,-0.421823][0.00142013,0.996297,-0.0859637][0.5,0.333333,0][2.3438e-007,1.14826,-0.421823][0.00142013,0.996297,-0.0859637][0.5,0.333333,0][-0.398906,1.14822,-0.397706][-0.0542832,0.994203,-0.0928064][0.541667,0.333333,0][-0.409668,1.1626,-0.0035112][-0.0425488,0.999093,0.00162109][0.541667,0.375,0][-0.804694,1.13076,-0.00351126][-0.297246,0.9548,-0.00142081][0.583333,0.375,0][-0.409668,1.1626,-0.0035112][-0.0425488,0.999093,0.00162109][0.541667,0.375,0][-0.398906,1.14822,-0.397706][-0.0542832,0.994203,-0.0928064][0.541667,0.333333,0][-0.398906,1.14822,-0.397706][-0.0542832,0.994203,-0.0928064][0.541667,0.333333,0][-0.787399,1.1163,-0.3157][-0.324363,0.935897,-0.137426][0.583333,0.333333,0][-0.804694,1.13076,-0.00351126][-0.297246,0.9548,-0.00142081][0.583333,0.375,0][-1.05418,0.989323,-0.0035113][-0.744604,0.667456,-0.00824392][0.625,0.375,0][-0.804694,1.13076,-0.00351126][-0.297246,0.9548,-0.00142081][0.583333,0.375,0][-0.787399,1.1163,-0.3157][-0.324363,0.935897,-0.137426][0.583333,0.333333,0][-0.787399,1.1163,-0.3157][-0.324363,0.935897,-0.137426][0.583333,0.333333,0][-1.04107,0.989304,-0.177051][-0.733815,0.670982,-0.106296][0.625,0.333333,0][-1.05418,0.989323,-0.0035113][-0.744604,0.667456,-0.00824392][0.625,0.375,0][0.787399,1.1163,0.308679][0.324364,0.935896,0.137426][0.416667,0.416667,0][1.04107,0.989304,0.17003][0.733815,0.670982,0.106295][0.375,0.416667,0][1.05418,0.989323,-0.00351098][0.744603,0.667457,0.00824349][0.375,0.375,0][1.05418,0.989323,-0.00351098][0.744603,0.667457,0.00824349][0.375,0.375,0][0.804693,1.13076,-0.00351102][0.297245,0.9548,0.0014205][0.416667,0.375,0][0.787399,1.1163,0.308679][0.324364,0.935896,0.137426][0.416667,0.416667,0][0.398906,1.14822,0.390685][0.0542831,0.994203,0.0928063][0.458333,0.416667,0][0.787399,1.1163,0.308679][0.324364,0.935896,0.137426][0.416667,0.416667,0][0.804693,1.13076,-0.00351102][0.297245,0.9548,0.0014205][0.416667,0.375,0][0.804693,1.13076,-0.00351102][0.297245,0.9548,0.0014205][0.416667,0.375,0][0.409668,1.1626,-0.00351108][0.0425489,0.999093,-0.00162115][0.458333,0.375,0][0.398906,1.14822,0.390685][0.0542831,0.994203,0.0928063][0.458333,0.416667,0][0,1.14826,0.414801][-0.00142016,0.996297,0.0859634][0.5,0.416667,0][0.398906,1.14822,0.390685][0.0542831,0.994203,0.0928063][0.458333,0.416667,0][0.409668,1.1626,-0.00351108][0.0425489,0.999093,-0.00162115][0.458333,0.375,0][0.409668,1.1626,-0.00351108][0.0425489,0.999093,-0.00162115][0.458333,0.375,0][1.7143e-007,1.16262,-0.00351114][0,1,0][0.5,0.375,0][0,1.14826,0.414801][-0.00142016,0.996297,0.0859634][0.5,0.416667,0][-0.398906,1.14822,0.390685][-0.0611161,0.993344,0.0976328][0.541667,0.416667,0][0,1.14826,0.414801][-0.00142016,0.996297,0.0859634][0.5,0.416667,0][1.7143e-007,1.16262,-0.00351114][0,1,0][0.5,0.375,0][1.7143e-007,1.16262,-0.00351114][0,1,0][0.5,0.375,0][-0.409668,1.1626,-0.0035112][-0.0425488,0.999093,0.00162109][0.541667,0.375,0][-0.398906,1.14822,0.390685][-0.0611161,0.993344,0.0976328][0.541667,0.416667,0][-0.787399,1.1163,0.308679][-0.302433,0.943855,0.132934][0.583333,0.416667,0][-0.398906,1.14822,0.390685][-0.0611161,0.993344,0.0976328][0.541667,0.416667,0][-0.409668,1.1626,-0.0035112][-0.0425488,0.999093,0.00162109][0.541667,0.375,0][-0.409668,1.1626,-0.0035112][-0.0425488,0.999093,0.00162109][0.541667,0.375,0][-0.804694,1.13076,-0.00351126][-0.297246,0.9548,-0.00142081][0.583333,0.375,0][-0.787399,1.1163,0.308679][-0.302433,0.943855,0.132934][0.583333,0.416667,0][-1.04107,0.989304,0.17003][-0.735335,0.669768,0.103405][0.625,0.416667,0][-0.787399,1.1163,0.308679][-0.302433,0.943855,0.132934][0.583333,0.416667,0][-0.804694,1.13076,-0.00351126][-0.297246,0.9548,-0.00142081][0.583333,0.375,0][-0.804694,1.13076,-0.00351126][-0.297246,0.9548,-0.00142081][0.583333,0.375,0][-1.05418,0.989323,-0.0035113][-0.744604,0.667456,-0.00824392][0.625,0.375,0][-1.04107,0.989304,0.17003][-0.735335,0.669768,0.103405][0.625,0.416667,0][0.753893,1.07314,0.545668][0.392069,0.861877,0.321638][0.416667,0.458333,0][1.01873,0.973705,0.343956][0.724097,0.643784,0.247438][0.375,0.458333,0][1.04107,0.989304,0.17003][0.733815,0.670982,0.106295][0.375,0.416667,0][1.04107,0.989304,0.17003][0.733815,0.670982,0.106295][0.375,0.416667,0][0.787399,1.1163,0.308679][0.324364,0.935896,0.137426][0.416667,0.416667,0][0.753893,1.07314,0.545668][0.392069,0.861877,0.321638][0.416667,0.458333,0][0.378582,1.10023,0.731782][0.128986,0.945647,0.298521][0.458333,0.458333,0][0.753893,1.07314,0.545668][0.392069,0.861877,0.321638][0.416667,0.458333,0][0.787399,1.1163,0.308679][0.324364,0.935896,0.137426][0.416667,0.416667,0][0.787399,1.1163,0.308679][0.324364,0.935896,0.137426][0.416667,0.416667,0][0.398906,1.14822,0.390685][0.0542831,0.994203,0.0928063][0.458333,0.416667,0][0.378582,1.10023,0.731782][0.128986,0.945647,0.298521][0.458333,0.458333,0][0,1.1004,0.776793][-0.00396361,0.96015,0.279457][0.5,0.458333,0][0.378582,1.10023,0.731782][0.128986,0.945647,0.298521][0.458333,0.458333,0][0.398906,1.14822,0.390685][0.0542831,0.994203,0.0928063][0.458333,0.416667,0][0.398906,1.14822,0.390685][0.0542831,0.994203,0.0928063][0.458333,0.416667,0][0,1.14826,0.414801][-0.00142016,0.996297,0.0859634][0.5,0.416667,0][0,1.1004,0.776793][-0.00396361,0.96015,0.279457][0.5,0.458333,0][-0.378582,1.10023,0.731782][-0.127366,0.946536,0.29639][0.541667,0.458333,0][0,1.1004,0.776793][-0.00396361,0.96015,0.279457][0.5,0.458333,0][0,1.14826,0.414801][-0.00142016,0.996297,0.0859634][0.5,0.416667,0][0,1.14826,0.414801][-0.00142016,0.996297,0.0859634][0.5,0.416667,0][-0.398906,1.14822,0.390685][-0.0611161,0.993344,0.0976328][0.541667,0.416667,0][-0.378582,1.10023,0.731782][-0.127366,0.946536,0.29639][0.541667,0.458333,0][-0.753893,1.07314,0.545668][-0.373613,0.872281,0.315499][0.583333,0.458333,0][-0.378582,1.10023,0.731782][-0.127366,0.946536,0.29639][0.541667,0.458333,0][-0.398906,1.14822,0.390685][-0.0611161,0.993344,0.0976328][0.541667,0.416667,0][-0.398906,1.14822,0.390685][-0.0611161,0.993344,0.0976328][0.541667,0.416667,0][-0.787399,1.1163,0.308679][-0.302433,0.943855,0.132934][0.583333,0.416667,0][-0.753893,1.07314,0.545668][-0.373613,0.872281,0.315499][0.583333,0.458333,0][-1.01873,0.973705,0.343956][-0.731553,0.626961,0.267861][0.625,0.458333,0][-0.753893,1.07314,0.545668][-0.373613,0.872281,0.315499][0.583333,0.458333,0][-0.787399,1.1163,0.308679][-0.302433,0.943855,0.132934][0.583333,0.416667,0][-0.787399,1.1163,0.308679][-0.302433,0.943855,0.132934][0.583333,0.416667,0][-1.04107,0.989304,0.17003][-0.735335,0.669768,0.103405][0.625,0.416667,0][-1.01873,0.973705,0.343956][-0.731553,0.626961,0.267861][0.625,0.458333,0][0.6883,0.97247,0.80035][0.480054,0.640467,0.599458][0.416667,0.5,0][0.898983,0.913431,0.614927][0.662476,0.55737,0.500463][0.375,0.5,0][1.01873,0.973705,0.343956][0.724097,0.643784,0.247438][0.375,0.458333,0][1.01873,0.973705,0.343956][0.724097,0.643784,0.247438][0.375,0.458333,0][0.753893,1.07314,0.545668][0.392069,0.861877,0.321638][0.416667,0.458333,0][0.6883,0.97247,0.80035][0.480054,0.640467,0.599458][0.416667,0.5,0][0.367067,1.00291,0.943326][0.220733,0.720778,0.657081][0.458333,0.5,0][0.6883,0.97247,0.80035][0.480054,0.640467,0.599458][0.416667,0.5,0][0.753893,1.07314,0.545668][0.392069,0.861877,0.321638][0.416667,0.458333,0][0.753893,1.07314,0.545668][0.392069,0.861877,0.321638][0.416667,0.458333,0][0.378582,1.10023,0.731782][0.128986,0.945647,0.298521][0.458333,0.458333,0][0.367067,1.00291,0.943326][0.220733,0.720778,0.657081][0.458333,0.5,0][0,1.00312,1.00159][-0.00388667,0.734926,0.678136][0.5,0.5,0][0.367067,1.00291,0.943326][0.220733,0.720778,0.657081][0.458333,0.5,0][0.378582,1.10023,0.731782][0.128986,0.945647,0.298521][0.458333,0.458333,0][0.378582,1.10023,0.731782][0.128986,0.945647,0.298521][0.458333,0.458333,0][0,1.1004,0.776793][-0.00396361,0.96015,0.279457][0.5,0.458333,0][0,1.00312,1.00159][-0.00388667,0.734926,0.678136][0.5,0.5,0][-0.367068,1.00291,0.943326][-0.228404,0.715269,0.660471][0.541667,0.5,0][0,1.00312,1.00159][-0.00388667,0.734926,0.678136][0.5,0.5,0][0,1.1004,0.776793][-0.00396361,0.96015,0.279457][0.5,0.458333,0][0,1.1004,0.776793][-0.00396361,0.96015,0.279457][0.5,0.458333,0][-0.378582,1.10023,0.731782][-0.127366,0.946536,0.29639][0.541667,0.458333,0][-0.367068,1.00291,0.943326][-0.228404,0.715269,0.660471][0.541667,0.5,0][-0.6883,0.97247,0.80035][-0.460839,0.641727,0.613037][0.583333,0.5,0][-0.367068,1.00291,0.943326][-0.228404,0.715269,0.660471][0.541667,0.5,0][-0.378582,1.10023,0.731782][-0.127366,0.946536,0.29639][0.541667,0.458333,0][-0.378582,1.10023,0.731782][-0.127366,0.946536,0.29639][0.541667,0.458333,0][-0.753893,1.07314,0.545668][-0.373613,0.872281,0.315499][0.583333,0.458333,0][-0.6883,0.97247,0.80035][-0.460839,0.641727,0.613037][0.583333,0.5,0][-0.898983,0.913431,0.614927][-0.680039,0.552941,0.48146][0.625,0.5,0][-0.6883,0.97247,0.80035][-0.460839,0.641727,0.613037][0.583333,0.5,0][-0.753893,1.07314,0.545668][-0.373613,0.872281,0.315499][0.583333,0.458333,0][-0.753893,1.07314,0.545668][-0.373613,0.872281,0.315499][0.583333,0.458333,0][-1.01873,0.973705,0.343956][-0.731553,0.626961,0.267861][0.625,0.458333,0][-0.898983,0.913431,0.614927][-0.680039,0.552941,0.48146][0.625,0.5,0][0.718518,0.705374,0.918966][0.57628,0.28663,0.76534][0.416667,0.541667,0][0.974329,0.704988,0.688329][0.764345,0.279988,0.580847][0.375,0.541667,0][0.898983,0.913431,0.614927][0.662476,0.55737,0.500463][0.375,0.5,0][0.898983,0.913431,0.614927][0.662476,0.55737,0.500463][0.375,0.5,0][0.6883,0.97247,0.80035][0.480054,0.640467,0.599458][0.416667,0.5,0][0.718518,0.705374,0.918966][0.57628,0.28663,0.76534][0.416667,0.541667,0][0.403178,0.705929,1.11085][0.321977,0.339273,0.883869][0.458333,0.541667,0][0.718518,0.705374,0.918966][0.57628,0.28663,0.76534][0.416667,0.541667,0][0.6883,0.97247,0.80035][0.480054,0.640467,0.599458][0.416667,0.5,0][0.6883,0.97247,0.80035][0.480054,0.640467,0.599458][0.416667,0.5,0][0.367067,1.00291,0.943326][0.220733,0.720778,0.657081][0.458333,0.5,0][0.403178,0.705929,1.11085][0.321977,0.339273,0.883869][0.458333,0.541667,0][0,0.706252,1.17964][-0.00205191,0.36085,0.932622][0.5,0.541667,0][0.403178,0.705929,1.11085][0.321977,0.339273,0.883869][0.458333,0.541667,0][0.367067,1.00291,0.943326][0.220733,0.720778,0.657081][0.458333,0.5,0][0.367067,1.00291,0.943326][0.220733,0.720778,0.657081][0.458333,0.5,0][0,1.00312,1.00159][-0.00388667,0.734926,0.678136][0.5,0.5,0][0,0.706252,1.17964][-0.00205191,0.36085,0.932622][0.5,0.541667,0][-0.403178,0.705929,1.11085][-0.332563,0.34275,0.878592][0.541667,0.541667,0][0,0.706252,1.17964][-0.00205191,0.36085,0.932622][0.5,0.541667,0][0,1.00312,1.00159][-0.00388667,0.734926,0.678136][0.5,0.5,0][0,1.00312,1.00159][-0.00388667,0.734926,0.678136][0.5,0.5,0][-0.367068,1.00291,0.943326][-0.228404,0.715269,0.660471][0.541667,0.5,0][-0.403178,0.705929,1.11085][-0.332563,0.34275,0.878592][0.541667,0.541667,0][-0.718518,0.705374,0.918966][-0.564244,0.280569,0.776473][0.583333,0.541667,0][-0.403178,0.705929,1.11085][-0.332563,0.34275,0.878592][0.541667,0.541667,0][-0.367068,1.00291,0.943326][-0.228404,0.715269,0.660471][0.541667,0.5,0][-0.367068,1.00291,0.943326][-0.228404,0.715269,0.660471][0.541667,0.5,0][-0.6883,0.97247,0.80035][-0.460839,0.641727,0.613037][0.583333,0.5,0][-0.718518,0.705374,0.918966][-0.564244,0.280569,0.776473][0.583333,0.541667,0][-0.974329,0.704988,0.688329][-0.770828,0.264879,0.579364][0.625,0.541667,0][-0.718518,0.705374,0.918966][-0.564244,0.280569,0.776473][0.583333,0.541667,0][-0.6883,0.97247,0.80035][-0.460839,0.641727,0.613037][0.583333,0.5,0][-0.6883,0.97247,0.80035][-0.460839,0.641727,0.613037][0.583333,0.5,0][-0.898983,0.913431,0.614927][-0.680039,0.552941,0.48146][0.625,0.5,0][-0.974329,0.704988,0.688329][-0.770828,0.264879,0.579364][0.625,0.541667,0][0.790945,0.378925,0.930724][0.634571,0.0725138,0.769455][0.416667,0.583333,0][0.999993,0.378706,0.711459][0.815927,0.0517733,0.575832][0.375,0.583333,0][0.974329,0.704988,0.688329][0.764345,0.279988,0.580847][0.375,0.541667,0][0.974329,0.704988,0.688329][0.764345,0.279988,0.580847][0.375,0.541667,0][0.718518,0.705374,0.918966][0.57628,0.28663,0.76534][0.416667,0.541667,0][0.790945,0.378925,0.930724][0.634571,0.0725138,0.769455][0.416667,0.583333,0][0.414051,0.379173,1.17773][0.360717,0.0948165,0.927843][0.458333,0.583333,0][0.790945,0.378925,0.930724][0.634571,0.0725138,0.769455][0.416667,0.583333,0][0.718518,0.705374,0.918966][0.57628,0.28663,0.76534][0.416667,0.541667,0][0.718518,0.705374,0.918966][0.57628,0.28663,0.76534][0.416667,0.541667,0][0.403178,0.705929,1.11085][0.321977,0.339273,0.883869][0.458333,0.541667,0][0.414051,0.379173,1.17773][0.360717,0.0948165,0.927843][0.458333,0.583333,0][0,0.379304,1.25085][-0.000764135,0.105168,0.994454][0.5,0.583333,0][0.414051,0.379173,1.17773][0.360717,0.0948165,0.927843][0.458333,0.583333,0][0.403178,0.705929,1.11085][0.321977,0.339273,0.883869][0.458333,0.541667,0][0.403178,0.705929,1.11085][0.321977,0.339273,0.883869][0.458333,0.541667,0][0,0.706252,1.17964][-0.00205191,0.36085,0.932622][0.5,0.541667,0][0,0.379304,1.25085][-0.000764135,0.105168,0.994454][0.5,0.583333,0][-0.414051,0.379173,1.17773][-0.363629,0.0994759,0.926217][0.541667,0.583333,0][0,0.379304,1.25085][-0.000764135,0.105168,0.994454][0.5,0.583333,0][0,0.706252,1.17964][-0.00205191,0.36085,0.932622][0.5,0.541667,0][0,0.706252,1.17964][-0.00205191,0.36085,0.932622][0.5,0.541667,0][-0.403178,0.705929,1.11085][-0.332563,0.34275,0.878592][0.541667,0.541667,0][-0.414051,0.379173,1.17773][-0.363629,0.0994759,0.926217][0.541667,0.583333,0][-0.790945,0.378925,0.930724][-0.638663,0.0875305,0.764492][0.583333,0.583333,0][-0.414051,0.379173,1.17773][-0.363629,0.0994759,0.926217][0.541667,0.583333,0][-0.403178,0.705929,1.11085][-0.332563,0.34275,0.878592][0.541667,0.541667,0][-0.403178,0.705929,1.11085][-0.332563,0.34275,0.878592][0.541667,0.541667,0][-0.718518,0.705374,0.918966][-0.564244,0.280569,0.776473][0.583333,0.541667,0][-0.790945,0.378925,0.930724][-0.638663,0.0875305,0.764492][0.583333,0.583333,0][-0.999993,0.378706,0.711459][-0.810168,0.0617994,0.582931][0.625,0.583333,0][-0.790945,0.378925,0.930724][-0.638663,0.0875305,0.764492][0.583333,0.583333,0][-0.718518,0.705374,0.918966][-0.564244,0.280569,0.776473][0.583333,0.541667,0][-0.718518,0.705374,0.918966][-0.564244,0.280569,0.776473][0.583333,0.541667,0][-0.974329,0.704988,0.688329][-0.770828,0.264879,0.579364][0.625,0.541667,0][-0.999993,0.378706,0.711459][-0.810168,0.0617994,0.582931][0.625,0.583333,0][0.791065,-0.00752069,0.930677][0.640255,1.34458e-005,0.768162][0.416667,0.625,0][1.0001,-0.00752069,0.711352][0.817629,1.02197e-005,0.575746][0.375,0.625,0][0.999993,0.378706,0.711459][0.815927,0.0517733,0.575832][0.375,0.583333,0][0.999993,0.378706,0.711459][0.815927,0.0517733,0.575832][0.375,0.583333,0][0.790945,0.378925,0.930724][0.634571,0.0725138,0.769455][0.416667,0.583333,0][0.791065,-0.00752069,0.930677][0.640255,1.34458e-005,0.768162][0.416667,0.625,0][0.41416,-0.00752068,1.17776][0.368669,3.85545e-005,0.929561][0.458333,0.625,0][0.791065,-0.00752069,0.930677][0.640255,1.34458e-005,0.768162][0.416667,0.625,0][0.790945,0.378925,0.930724][0.634571,0.0725138,0.769455][0.416667,0.583333,0][0.790945,0.378925,0.930724][0.634571,0.0725138,0.769455][0.416667,0.583333,0][0.414051,0.379173,1.17773][0.360717,0.0948165,0.927843][0.458333,0.583333,0][0.41416,-0.00752068,1.17776][0.368669,3.85545e-005,0.929561][0.458333,0.625,0][0,-0.00752068,1.25093][-2.58413e-006,7.11205e-005,1][0.5,0.625,0][0.41416,-0.00752068,1.17776][0.368669,3.85545e-005,0.929561][0.458333,0.625,0][0.414051,0.379173,1.17773][0.360717,0.0948165,0.927843][0.458333,0.583333,0][0.414051,0.379173,1.17773][0.360717,0.0948165,0.927843][0.458333,0.583333,0][0,0.379304,1.25085][-0.000764135,0.105168,0.994454][0.5,0.583333,0][0,-0.00752068,1.25093][-2.58413e-006,7.11205e-005,1][0.5,0.625,0][-0.41416,-0.00752067,1.17776][-0.368672,8.24001e-005,0.92956][0.541667,0.625,0][0,-0.00752068,1.25093][-2.58413e-006,7.11205e-005,1][0.5,0.625,0][0,0.379304,1.25085][-0.000764135,0.105168,0.994454][0.5,0.583333,0][0,0.379304,1.25085][-0.000764135,0.105168,0.994454][0.5,0.583333,0][-0.414051,0.379173,1.17773][-0.363629,0.0994759,0.926217][0.541667,0.583333,0][-0.41416,-0.00752067,1.17776][-0.368672,8.24001e-005,0.92956][0.541667,0.625,0][-0.791065,-0.00752066,0.930678][-0.640263,6.07413e-005,0.768156][0.583333,0.625,0][-0.41416,-0.00752067,1.17776][-0.368672,8.24001e-005,0.92956][0.541667,0.625,0][-0.414051,0.379173,1.17773][-0.363629,0.0994759,0.926217][0.541667,0.583333,0][-0.414051,0.379173,1.17773][-0.363629,0.0994759,0.926217][0.541667,0.583333,0][-0.790945,0.378925,0.930724][-0.638663,0.0875305,0.764492][0.583333,0.583333,0][-0.791065,-0.00752066,0.930678][-0.640263,6.07413e-005,0.768156][0.583333,0.625,0][-1.0001,-0.00752066,0.711352][-0.817628,4.28302e-005,0.575747][0.625,0.625,0][-0.791065,-0.00752066,0.930678][-0.640263,6.07413e-005,0.768156][0.583333,0.625,0][-0.790945,0.378925,0.930724][-0.638663,0.0875305,0.764492][0.583333,0.583333,0][-0.790945,0.378925,0.930724][-0.638663,0.0875305,0.764492][0.583333,0.583333,0][-0.999993,0.378706,0.711459][-0.810168,0.0617994,0.582931][0.625,0.583333,0][-1.0001,-0.00752066,0.711352][-0.817628,4.28302e-005,0.575747][0.625,0.625,0][0.791002,-0.450399,0.930718][0.63579,-0.03773,0.770939][0.416667,0.666667,0][1.00011,-0.450357,0.711332][0.817567,-0.0339249,0.574834][0.375,0.666667,0][1.0001,-0.00752069,0.711352][0.817629,1.02197e-005,0.575746][0.375,0.625,0][1.0001,-0.00752069,0.711352][0.817629,1.02197e-005,0.575746][0.375,0.625,0][0.791065,-0.00752069,0.930677][0.640255,1.34458e-005,0.768162][0.416667,0.625,0][0.791002,-0.450399,0.930718][0.63579,-0.03773,0.770939][0.416667,0.666667,0][0.414057,-0.450565,1.17778][0.366868,-0.0547207,0.928662][0.458333,0.666667,0][0.791002,-0.450399,0.930718][0.63579,-0.03773,0.770939][0.416667,0.666667,0][0.791065,-0.00752069,0.930677][0.640255,1.34458e-005,0.768162][0.416667,0.625,0][0.791065,-0.00752069,0.930677][0.640255,1.34458e-005,0.768162][0.416667,0.625,0][0.41416,-0.00752068,1.17776][0.368669,3.85545e-005,0.929561][0.458333,0.625,0][0.414057,-0.450565,1.17778][0.366868,-0.0547207,0.928662][0.458333,0.666667,0][0,-0.45066,1.25091][0.00031916,-0.0565239,0.998401][0.5,0.666667,0][0.414057,-0.450565,1.17778][0.366868,-0.0547207,0.928662][0.458333,0.666667,0][0.41416,-0.00752068,1.17776][0.368669,3.85545e-005,0.929561][0.458333,0.625,0][0.41416,-0.00752068,1.17776][0.368669,3.85545e-005,0.929561][0.458333,0.625,0][0,-0.00752068,1.25093][-2.58413e-006,7.11205e-005,1][0.5,0.625,0][0,-0.45066,1.25091][0.00031916,-0.0565239,0.998401][0.5,0.666667,0][-0.414058,-0.450565,1.17778][-0.362193,-0.0485299,0.930839][0.541667,0.666667,0][0,-0.45066,1.25091][0.00031916,-0.0565239,0.998401][0.5,0.666667,0][0,-0.00752068,1.25093][-2.58413e-006,7.11205e-005,1][0.5,0.625,0][0,-0.00752068,1.25093][-2.58413e-006,7.11205e-005,1][0.5,0.625,0][-0.41416,-0.00752067,1.17776][-0.368672,8.24001e-005,0.92956][0.541667,0.625,0][-0.414058,-0.450565,1.17778][-0.362193,-0.0485299,0.930839][0.541667,0.666667,0][-0.791002,-0.450399,0.930718][-0.640435,-0.0322006,0.767337][0.583333,0.666667,0][-0.414058,-0.450565,1.17778][-0.362193,-0.0485299,0.930839][0.541667,0.666667,0][-0.41416,-0.00752067,1.17776][-0.368672,8.24001e-005,0.92956][0.541667,0.625,0][-0.41416,-0.00752067,1.17776][-0.368672,8.24001e-005,0.92956][0.541667,0.625,0][-0.791065,-0.00752066,0.930678][-0.640263,6.07413e-005,0.768156][0.583333,0.625,0][-0.791002,-0.450399,0.930718][-0.640435,-0.0322006,0.767337][0.583333,0.666667,0][-1.00011,-0.450356,0.711332][-0.817544,-0.0346347,0.574824][0.625,0.666667,0][-0.791002,-0.450399,0.930718][-0.640435,-0.0322006,0.767337][0.583333,0.666667,0][-0.791065,-0.00752066,0.930678][-0.640263,6.07413e-005,0.768156][0.583333,0.625,0][-0.791065,-0.00752066,0.930678][-0.640263,6.07413e-005,0.768156][0.583333,0.625,0][-1.0001,-0.00752066,0.711352][-0.817628,4.28302e-005,0.575747][0.625,0.625,0][-1.00011,-0.450356,0.711332][-0.817544,-0.0346347,0.574824][0.625,0.666667,0][0.765106,-0.977414,0.908485][0.583368,-0.326438,0.74372][0.416667,0.708333,0][0.96774,-0.977183,0.694265][0.776709,-0.307163,0.549885][0.375,0.708333,0][1.00011,-0.450357,0.711332][0.817567,-0.0339249,0.574834][0.375,0.666667,0][1.00011,-0.450357,0.711332][0.817567,-0.0339249,0.574834][0.375,0.666667,0][0.791002,-0.450399,0.930718][0.63579,-0.03773,0.770939][0.416667,0.666667,0][0.765106,-0.977414,0.908485][0.583368,-0.326438,0.74372][0.416667,0.708333,0][0.400337,-0.977911,1.12085][0.322351,-0.361305,0.874956][0.458333,0.708333,0][0.765106,-0.977414,0.908485][0.583368,-0.326438,0.74372][0.416667,0.708333,0][0.791002,-0.450399,0.930718][0.63579,-0.03773,0.770939][0.416667,0.666667,0][0.791002,-0.450399,0.930718][0.63579,-0.03773,0.770939][0.416667,0.666667,0][0.414057,-0.450565,1.17778][0.366868,-0.0547207,0.928662][0.458333,0.666667,0][0.400337,-0.977911,1.12085][0.322351,-0.361305,0.874956][0.458333,0.708333,0][0,-0.978148,1.19027][0.00154895,-0.375836,0.926685][0.5,0.708333,0][0.400337,-0.977911,1.12085][0.322351,-0.361305,0.874956][0.458333,0.708333,0][0.414057,-0.450565,1.17778][0.366868,-0.0547207,0.928662][0.458333,0.666667,0][0.414057,-0.450565,1.17778][0.366868,-0.0547207,0.928662][0.458333,0.666667,0][0,-0.45066,1.25091][0.00031916,-0.0565239,0.998401][0.5,0.666667,0][0,-0.978148,1.19027][0.00154895,-0.375836,0.926685][0.5,0.708333,0][-0.400337,-0.977911,1.12085][-0.312905,-0.361555,0.878276][0.541667,0.708333,0][0,-0.978148,1.19027][0.00154895,-0.375836,0.926685][0.5,0.708333,0][0,-0.45066,1.25091][0.00031916,-0.0565239,0.998401][0.5,0.666667,0][0,-0.45066,1.25091][0.00031916,-0.0565239,0.998401][0.5,0.666667,0][-0.414058,-0.450565,1.17778][-0.362193,-0.0485299,0.930839][0.541667,0.666667,0][-0.400337,-0.977911,1.12085][-0.312905,-0.361555,0.878276][0.541667,0.708333,0][-0.765106,-0.977414,0.908485][-0.587393,-0.315628,0.745217][0.583333,0.708333,0][-0.400337,-0.977911,1.12085][-0.312905,-0.361555,0.878276][0.541667,0.708333,0][-0.414058,-0.450565,1.17778][-0.362193,-0.0485299,0.930839][0.541667,0.666667,0][-0.414058,-0.450565,1.17778][-0.362193,-0.0485299,0.930839][0.541667,0.666667,0][-0.791002,-0.450399,0.930718][-0.640435,-0.0322006,0.767337][0.583333,0.666667,0][-0.765106,-0.977414,0.908485][-0.587393,-0.315628,0.745217][0.583333,0.708333,0][-0.96774,-0.977183,0.694265][-0.784476,-0.296824,0.544512][0.625,0.708333,0][-0.765106,-0.977414,0.908485][-0.587393,-0.315628,0.745217][0.583333,0.708333,0][-0.791002,-0.450399,0.930718][-0.640435,-0.0322006,0.767337][0.583333,0.666667,0][-0.791002,-0.450399,0.930718][-0.640435,-0.0322006,0.767337][0.583333,0.666667,0][-1.00011,-0.450356,0.711332][-0.817544,-0.0346347,0.574824][0.625,0.666667,0][-0.96774,-0.977183,0.694265][-0.784476,-0.296824,0.544512][0.625,0.708333,0][0.632422,-1.26205,0.762417][0.282679,-0.863526,0.41763][0.416667,0.75,0][0.804368,-1.26175,0.624658][0.418149,-0.836811,0.353409][0.375,0.75,0][0.96774,-0.977183,0.694265][0.776709,-0.307163,0.549885][0.375,0.708333,0][0.96774,-0.977183,0.694265][0.776709,-0.307163,0.549885][0.375,0.708333,0][0.765106,-0.977414,0.908485][0.583368,-0.326438,0.74372][0.416667,0.708333,0][0.632422,-1.26205,0.762417][0.282679,-0.863526,0.41763][0.416667,0.75,0][0.350411,-1.26216,0.903767][0.159009,-0.87678,0.453842][0.458333,0.75,0][0.632422,-1.26205,0.762417][0.282679,-0.863526,0.41763][0.416667,0.75,0][0.765106,-0.977414,0.908485][0.583368,-0.326438,0.74372][0.416667,0.708333,0][0.765106,-0.977414,0.908485][0.583368,-0.326438,0.74372][0.416667,0.708333,0][0.400337,-0.977911,1.12085][0.322351,-0.361305,0.874956][0.458333,0.708333,0][0.350411,-1.26216,0.903767][0.159009,-0.87678,0.453842][0.458333,0.75,0][0,-1.26224,0.95968][0.00196494,-0.884202,0.467101][0.5,0.75,0][0.350411,-1.26216,0.903767][0.159009,-0.87678,0.453842][0.458333,0.75,0][0.400337,-0.977911,1.12085][0.322351,-0.361305,0.874956][0.458333,0.708333,0][0.400337,-0.977911,1.12085][0.322351,-0.361305,0.874956][0.458333,0.708333,0][0,-0.978148,1.19027][0.00154895,-0.375836,0.926685][0.5,0.708333,0][0,-1.26224,0.95968][0.00196494,-0.884202,0.467101][0.5,0.75,0][-0.350411,-1.26216,0.903767][-0.149272,-0.880984,0.448983][0.541667,0.75,0][0,-1.26224,0.95968][0.00196494,-0.884202,0.467101][0.5,0.75,0][0,-0.978148,1.19027][0.00154895,-0.375836,0.926685][0.5,0.708333,0][0,-0.978148,1.19027][0.00154895,-0.375836,0.926685][0.5,0.708333,0][-0.400337,-0.977911,1.12085][-0.312905,-0.361555,0.878276][0.541667,0.708333,0][-0.350411,-1.26216,0.903767][-0.149272,-0.880984,0.448983][0.541667,0.75,0][-0.632422,-1.26205,0.762417][-0.268379,-0.873471,0.406228][0.583333,0.75,0][-0.350411,-1.26216,0.903767][-0.149272,-0.880984,0.448983][0.541667,0.75,0][-0.400337,-0.977911,1.12085][-0.312905,-0.361555,0.878276][0.541667,0.708333,0][-0.400337,-0.977911,1.12085][-0.312905,-0.361555,0.878276][0.541667,0.708333,0][-0.765106,-0.977414,0.908485][-0.587393,-0.315628,0.745217][0.583333,0.708333,0][-0.632422,-1.26205,0.762417][-0.268379,-0.873471,0.406228][0.583333,0.75,0][-0.804368,-1.26175,0.624658][-0.415183,-0.849539,0.325433][0.625,0.75,0][-0.632422,-1.26205,0.762417][-0.268379,-0.873471,0.406228][0.583333,0.75,0][-0.765106,-0.977414,0.908485][-0.587393,-0.315628,0.745217][0.583333,0.708333,0][-0.765106,-0.977414,0.908485][-0.587393,-0.315628,0.745217][0.583333,0.708333,0][-0.96774,-0.977183,0.694265][-0.784476,-0.296824,0.544512][0.625,0.708333,0][-0.804368,-1.26175,0.624658][-0.415183,-0.849539,0.325433][0.625,0.75,0][0.764405,-1.26305,0.538671][0.0458085,-4.13024,0.0290526][0.416667,0.791667,0][0.912141,-1.26188,0.411078][0.487913,-0.857884,0.161173][0.375,0.791667,0][0.804368,-1.26175,0.624658][0.418149,-0.836811,0.353409][0.375,0.75,0][0.804368,-1.26175,0.624658][0.418149,-0.836811,0.353409][0.375,0.75,0][0.632422,-1.26205,0.762417][0.282679,-0.863526,0.41763][0.416667,0.75,0][0.764405,-1.26305,0.538671][0.0458085,-4.13024,0.0290526][0.416667,0.791667,0][0.409039,-1.26305,0.733775][0.00940376,-3.52645,0.0217391][0.458333,0.791667,0][0.764405,-1.26305,0.538671][0.0458085,-4.13024,0.0290526][0.416667,0.791667,0][0.632422,-1.26205,0.762417][0.282679,-0.863526,0.41763][0.416667,0.75,0][0.632422,-1.26205,0.762417][0.282679,-0.863526,0.41763][0.416667,0.75,0][0.350411,-1.26216,0.903767][0.159009,-0.87678,0.453842][0.458333,0.75,0][0.409039,-1.26305,0.733775][0.00940376,-3.52645,0.0217391][0.458333,0.791667,0][0,-1.26305,0.781913][0.000568503,-3.37585,0.0157803][0.5,0.791667,0][0.409039,-1.26305,0.733775][0.00940376,-3.52645,0.0217391][0.458333,0.791667,0][0.350411,-1.26216,0.903767][0.159009,-0.87678,0.453842][0.458333,0.75,0][0.350411,-1.26216,0.903767][0.159009,-0.87678,0.453842][0.458333,0.75,0][0,-1.26224,0.95968][0.00196494,-0.884202,0.467101][0.5,0.75,0][0,-1.26305,0.781913][0.000568503,-3.37585,0.0157803][0.5,0.791667,0][-0.409039,-1.26305,0.733775][-0.00956087,-3.52645,0.02143][0.541667,0.791667,0][0,-1.26305,0.781913][0.000568503,-3.37585,0.0157803][0.5,0.791667,0][0,-1.26224,0.95968][0.00196494,-0.884202,0.467101][0.5,0.75,0][0,-1.26224,0.95968][0.00196494,-0.884202,0.467101][0.5,0.75,0][-0.350411,-1.26216,0.903767][-0.149272,-0.880984,0.448983][0.541667,0.75,0][-0.409039,-1.26305,0.733775][-0.00956087,-3.52645,0.02143][0.541667,0.791667,0][-0.764405,-1.26305,0.538671][-0.075534,-4.12928,0.0572309][0.583333,0.791667,0][-0.409039,-1.26305,0.733775][-0.00956087,-3.52645,0.02143][0.541667,0.791667,0][-0.350411,-1.26216,0.903767][-0.149272,-0.880984,0.448983][0.541667,0.75,0][-0.350411,-1.26216,0.903767][-0.149272,-0.880984,0.448983][0.541667,0.75,0][-0.632422,-1.26205,0.762417][-0.268379,-0.873471,0.406228][0.583333,0.75,0][-0.764405,-1.26305,0.538671][-0.075534,-4.12928,0.0572309][0.583333,0.791667,0][-0.912141,-1.26188,0.411078][-0.500476,-0.852443,0.151213][0.625,0.791667,0][-0.764405,-1.26305,0.538671][-0.075534,-4.12928,0.0572309][0.583333,0.791667,0][-0.632422,-1.26205,0.762417][-0.268379,-0.873471,0.406228][0.583333,0.75,0][-0.632422,-1.26205,0.762417][-0.268379,-0.873471,0.406228][0.583333,0.75,0][-0.804368,-1.26175,0.624658][-0.415183,-0.849539,0.325433][0.625,0.75,0][-0.912141,-1.26188,0.411078][-0.500476,-0.852443,0.151213][0.625,0.791667,0][0.78309,-1.26305,0.304342][0.021251,-3.16444,0.00459968][0.416667,0.833333,0][0.931586,-1.26235,0.203439][0.442976,-0.895697,0.0387112][0.375,0.833333,0][0.912141,-1.26188,0.411078][0.487913,-0.857884,0.161173][0.375,0.791667,0][0.912141,-1.26188,0.411078][0.487913,-0.857884,0.161173][0.375,0.791667,0][0.764405,-1.26305,0.538671][0.0458085,-4.13024,0.0290526][0.416667,0.791667,0][0.78309,-1.26305,0.304342][0.021251,-3.16444,0.00459968][0.416667,0.833333,0][-0.931586,-1.26235,0.203439][-0.456833,-0.888347,0.0462953][0.625,0.833333,0][-0.78309,-1.26305,0.304342][-0.0157342,-3.16447,0.00122208][0.583333,0.833333,0][-0.764405,-1.26305,0.538671][-0.075534,-4.12928,0.0572309][0.583333,0.791667,0][-0.764405,-1.26305,0.538671][-0.075534,-4.12928,0.0572309][0.583333,0.791667,0][-0.912141,-1.26188,0.411078][-0.500476,-0.852443,0.151213][0.625,0.791667,0][-0.931586,-1.26235,0.203439][-0.456833,-0.888347,0.0462953][0.625,0.833333,0][0.800548,-1.26305,-0.00351102][0.0154552,-3.25485,0.000158861][0.416667,0.875,0][0.943231,-1.26238,-0.003511][0.447603,-0.894219,-0.00483311][0.375,0.875,0][0.931586,-1.26235,0.203439][0.442976,-0.895697,0.0387112][0.375,0.833333,0][0.931586,-1.26235,0.203439][0.442976,-0.895697,0.0387112][0.375,0.833333,0][0.78309,-1.26305,0.304342][0.021251,-3.16444,0.00459968][0.416667,0.833333,0][0.800548,-1.26305,-0.00351102][0.0154552,-3.25485,0.000158861][0.416667,0.875,0][-0.943231,-1.26238,-0.00351128][-0.447606,-0.894218,0.00483209][0.625,0.875,0][-0.800548,-1.26305,-0.00351126][-0.0154879,-3.25485,-0.0001513][0.583333,0.875,0][-0.78309,-1.26305,0.304342][-0.0157342,-3.16447,0.00122208][0.583333,0.833333,0][-0.78309,-1.26305,0.304342][-0.0157342,-3.16447,0.00122208][0.583333,0.833333,0][-0.931586,-1.26235,0.203439][-0.456833,-0.888347,0.0462953][0.625,0.833333,0][-0.943231,-1.26238,-0.00351128][-0.447606,-0.894218,0.00483209][0.625,0.875,0][0.78309,-1.26305,-0.311363][0.0209612,-3.14512,-0.00905346][0.416667,0.916667,0][0.931586,-1.26235,-0.21046][0.456695,-0.8884,-0.0466367][0.375,0.916667,0][0.943231,-1.26238,-0.003511][0.447603,-0.894219,-0.00483311][0.375,0.875,0][0.943231,-1.26238,-0.003511][0.447603,-0.894219,-0.00483311][0.375,0.875,0][0.800548,-1.26305,-0.00351102][0.0154552,-3.25485,0.000158861][0.416667,0.875,0][0.78309,-1.26305,-0.311363][0.0209612,-3.14512,-0.00905346][0.416667,0.916667,0][-0.931586,-1.26235,-0.21046][-0.442982,-0.89569,-0.0388178][0.625,0.916667,0][-0.78309,-1.26305,-0.311363][-0.019603,-3.14513,-0.00812419][0.583333,0.916667,0][-0.800548,-1.26305,-0.00351126][-0.0154879,-3.25485,-0.0001513][0.583333,0.875,0][-0.800548,-1.26305,-0.00351126][-0.0154879,-3.25485,-0.0001513][0.583333,0.875,0][-0.943231,-1.26238,-0.00351128][-0.447606,-0.894218,0.00483209][0.625,0.875,0][-0.931586,-1.26235,-0.21046][-0.442982,-0.89569,-0.0388178][0.625,0.916667,0][0.766663,-1.2621,-0.583531][1.84834,-2.82316,-1.58156][0.395833,0.979167,0][0.912121,-1.2618,-0.418544][0.488836,-0.85109,-0.191534][0.375,0.958333,0][0.931586,-1.26235,-0.21046][0.456695,-0.8884,-0.0466367][0.375,0.916667,0][0.931586,-1.26235,-0.21046][0.456695,-0.8884,-0.0466367][0.375,0.916667,0][0.78309,-1.26305,-0.311363][0.0209612,-3.14512,-0.00905346][0.416667,0.916667,0][0.766663,-1.2621,-0.583531][1.84834,-2.82316,-1.58156][0.395833,0.979167,0][-0.912121,-1.2618,-0.418544][-0.488374,-0.836013,-0.250144][0.625,0.958333,0][-0.766664,-1.2621,-0.583531][-1.97273,-2.80428,-1.43598][0.604167,0.979167,0][-0.78309,-1.26305,-0.311363][-0.019603,-3.14513,-0.00812419][0.583333,0.916667,0][-0.78309,-1.26305,-0.311363][-0.019603,-3.14513,-0.00812419][0.583333,0.916667,0][-0.931586,-1.26235,-0.21046][-0.442982,-0.89569,-0.0388178][0.625,0.916667,0][-0.912121,-1.2618,-0.418544][-0.488374,-0.836013,-0.250144][0.625,0.958333,0][0.372386,-1.2416,-0.956151][0.113469,-0.635659,-0.763585][0.458333,1,0][0.673588,-1.124,-0.95419][0.383455,-0.350212,-0.854584][0.416667,1,0][0.766663,-1.2621,-0.583531][1.84834,-2.82316,-1.58156][0.395833,0.979167,0][0.766663,-1.2621,-0.583531][1.84834,-2.82316,-1.58156][0.395833,0.979167,0][0.551262,-1.26207,-0.755093][0.762507,-3.35957,-1.02416][0.458333,0.958333,0][0.372386,-1.2416,-0.956151][0.113469,-0.635659,-0.763585][0.458333,1,0][2.87951e-007,-1.24089,-1.01239][0.00197415,-0.564659,-0.825322][0.5,1,0][0.372386,-1.2416,-0.956151][0.113469,-0.635659,-0.763585][0.458333,1,0][0.551262,-1.26207,-0.755093][0.762507,-3.35957,-1.02416][0.458333,0.958333,0][0.551262,-1.26207,-0.755093][0.762507,-3.35957,-1.02416][0.458333,0.958333,0][2.64033e-007,-1.26298,-0.856166][0.0119295,-3.46582,-0.482013][0.5,0.958333,0][2.87951e-007,-1.24089,-1.01239][0.00197415,-0.564659,-0.825322][0.5,1,0][-0.372386,-1.2416,-0.956151][-0.125178,-0.628649,-0.767549][0.541667,1,0][2.87951e-007,-1.24089,-1.01239][0.00197415,-0.564659,-0.825322][0.5,1,0][2.64033e-007,-1.26298,-0.856166][0.0119295,-3.46582,-0.482013][0.5,0.958333,0][2.64033e-007,-1.26298,-0.856166][0.0119295,-3.46582,-0.482013][0.5,0.958333,0][-0.551262,-1.26207,-0.755092][-0.981899,-3.19924,-1.24823][0.541667,0.958333,0][-0.372386,-1.2416,-0.956151][-0.125178,-0.628649,-0.767549][0.541667,1,0][-0.673588,-1.124,-0.95419][-0.298119,-0.377152,-0.876859][0.583333,1,0][-0.372386,-1.2416,-0.956151][-0.125178,-0.628649,-0.767549][0.541667,1,0][-0.551262,-1.26207,-0.755092][-0.981899,-3.19924,-1.24823][0.541667,0.958333,0][-0.551262,-1.26207,-0.755092][-0.981899,-3.19924,-1.24823][0.541667,0.958333,0][-0.766664,-1.2621,-0.583531][-1.97273,-2.80428,-1.43598][0.604167,0.979167,0][-0.673588,-1.124,-0.95419][-0.298119,-0.377152,-0.876859][0.583333,1,0][-0.96774,-0.977183,0.694265][-0.784476,-0.296824,0.544512][0.875,0.041667,0][-1.09933,-0.977407,0.429942][-0.89482,-0.32267,0.308515][0.833333,0.041667,0][-0.912141,-1.26188,0.411078][-0.500476,-0.852443,0.151213][0.833333,0,0][-0.912141,-1.26188,0.411078][-0.500476,-0.852443,0.151213][0.833333,0,0][-0.804368,-1.26175,0.624658][-0.415183,-0.849539,0.325433][0.875,0,0][-0.96774,-0.977183,0.694265][-0.784476,-0.296824,0.544512][0.875,0.041667,0][-1.09933,-0.977407,0.429942][-0.89482,-0.32267,0.308515][0.833333,0.041667,0][-1.1498,-0.977784,0.213083][-0.921463,-0.355691,0.156174][0.791667,0.041667,0][-0.931586,-1.26235,0.203439][-0.456833,-0.888347,0.0462953][0.791667,0,0][-0.931586,-1.26235,0.203439][-0.456833,-0.888347,0.0462953][0.791667,0,0][-0.912141,-1.26188,0.411078][-0.500476,-0.852443,0.151213][0.833333,0,0][-1.09933,-0.977407,0.429942][-0.89482,-0.32267,0.308515][0.833333,0.041667,0][-1.1498,-0.977784,0.213083][-0.921463,-0.355691,0.156174][0.791667,0.041667,0][-1.17525,-0.977902,-0.00349432][-0.93336,-0.358922,0.00383497][0.75,0.041667,0][-0.943231,-1.26238,-0.00351128][-0.447606,-0.894218,0.00483209][0.75,0,0][-0.943231,-1.26238,-0.00351128][-0.447606,-0.894218,0.00483209][0.75,0,0][-0.931586,-1.26235,0.203439][-0.456833,-0.888347,0.0462953][0.791667,0,0][-1.1498,-0.977784,0.213083][-0.921463,-0.355691,0.156174][0.791667,0.041667,0][-1.17525,-0.977902,-0.00349432][-0.93336,-0.358922,0.00383497][0.75,0.041667,0][-1.1498,-0.977784,-0.220072][-0.9271,-0.342532,-0.152177][0.708333,0.041667,0][-0.931586,-1.26235,-0.21046][-0.442982,-0.89569,-0.0388178][0.708333,0,0][-0.931586,-1.26235,-0.21046][-0.442982,-0.89569,-0.0388178][0.708333,0,0][-0.943231,-1.26238,-0.00351128][-0.447606,-0.894218,0.00483209][0.75,0,0][-1.17525,-0.977902,-0.00349432][-0.93336,-0.358922,0.00383497][0.75,0.041667,0][-1.1498,-0.977784,-0.220072][-0.9271,-0.342532,-0.152177][0.708333,0.041667,0][-1.09919,-0.977587,-0.43715][-0.884616,-0.327026,-0.332428][0.666667,0.041667,0][-0.912121,-1.2618,-0.418544][-0.488374,-0.836013,-0.250144][0.666667,0,0][-0.912121,-1.2618,-0.418544][-0.488374,-0.836013,-0.250144][0.666667,0,0][-0.931586,-1.26235,-0.21046][-0.442982,-0.89569,-0.0388178][0.708333,0,0][-1.1498,-0.977784,-0.220072][-0.9271,-0.342532,-0.152177][0.708333,0.041667,0][-1.09919,-0.977587,-0.43715][-0.884616,-0.327026,-0.332428][0.666667,0.041667,0][-0.967858,-0.977384,-0.70097][-0.789303,-0.339013,-0.511928][0.625,0.041667,0][-0.766664,-1.2621,-0.583531][-1.97273,-2.80428,-1.43598][0.625,0,0][-0.766664,-1.2621,-0.583531][-1.97273,-2.80428,-1.43598][0.625,0,0][-0.912121,-1.2618,-0.418544][-0.488374,-0.836013,-0.250144][0.666667,0,0][-1.09919,-0.977587,-0.43715][-0.884616,-0.327026,-0.332428][0.666667,0.041667,0][-1.00011,-0.450356,0.711332][-0.817544,-0.0346347,0.574824][0.875,0.083333,0][-1.13602,-0.450378,0.440846][-0.939373,-0.0362973,0.340972][0.833333,0.083333,0][-1.09933,-0.977407,0.429942][-0.89482,-0.32267,0.308515][0.833333,0.041667,0][-1.09933,-0.977407,0.429942][-0.89482,-0.32267,0.308515][0.833333,0.041667,0][-0.96774,-0.977183,0.694265][-0.784476,-0.296824,0.544512][0.875,0.041667,0][-1.00011,-0.450356,0.711332][-0.817544,-0.0346347,0.574824][0.875,0.083333,0][-1.13602,-0.450378,0.440846][-0.939373,-0.0362973,0.340972][0.833333,0.083333,0][-1.18836,-0.450387,0.218713][-0.984111,-0.0369041,0.173678][0.791667,0.083333,0][-1.1498,-0.977784,0.213083][-0.921463,-0.355691,0.156174][0.791667,0.041667,0][-1.1498,-0.977784,0.213083][-0.921463,-0.355691,0.156174][0.791667,0.041667,0][-1.09933,-0.977407,0.429942][-0.89482,-0.32267,0.308515][0.833333,0.041667,0][-1.13602,-0.450378,0.440846][-0.939373,-0.0362973,0.340972][0.833333,0.083333,0][-1.18836,-0.450387,0.218713][-0.984111,-0.0369041,0.173678][0.791667,0.083333,0][-1.21475,-0.450394,-0.00351132][-0.999309,-0.0371767,7.28416e-005][0.75,0.083333,0][-1.17525,-0.977902,-0.00349432][-0.93336,-0.358922,0.00383497][0.75,0.041667,0][-1.17525,-0.977902,-0.00349432][-0.93336,-0.358922,0.00383497][0.75,0.041667,0][-1.1498,-0.977784,0.213083][-0.921463,-0.355691,0.156174][0.791667,0.041667,0][-1.18836,-0.450387,0.218713][-0.984111,-0.0369041,0.173678][0.791667,0.083333,0][-1.21475,-0.450394,-0.00351132][-0.999309,-0.0371767,7.28416e-005][0.75,0.083333,0][-1.18836,-0.450387,-0.225734][-0.984132,-0.0366417,-0.173615][0.708333,0.083333,0][-1.1498,-0.977784,-0.220072][-0.9271,-0.342532,-0.152177][0.708333,0.041667,0][-1.1498,-0.977784,-0.220072][-0.9271,-0.342532,-0.152177][0.708333,0.041667,0][-1.17525,-0.977902,-0.00349432][-0.93336,-0.358922,0.00383497][0.75,0.041667,0][-1.21475,-0.450394,-0.00351132][-0.999309,-0.0371767,7.28416e-005][0.75,0.083333,0][-1.18836,-0.450387,-0.225734][-0.984132,-0.0366417,-0.173615][0.708333,0.083333,0][-1.13602,-0.450378,-0.447867][-0.939441,-0.0358051,-0.340835][0.666667,0.083333,0][-1.09919,-0.977587,-0.43715][-0.884616,-0.327026,-0.332428][0.666667,0.041667,0][-1.09919,-0.977587,-0.43715][-0.884616,-0.327026,-0.332428][0.666667,0.041667,0][-1.1498,-0.977784,-0.220072][-0.9271,-0.342532,-0.152177][0.708333,0.041667,0][-1.18836,-0.450387,-0.225734][-0.984132,-0.0366417,-0.173615][0.708333,0.083333,0][-1.13602,-0.450378,-0.447867][-0.939441,-0.0358051,-0.340835][0.666667,0.083333,0][-1.00011,-0.450262,-0.718347][-0.82311,-0.035163,-0.566792][0.625,0.083333,0][-0.967858,-0.977384,-0.70097][-0.789303,-0.339013,-0.511928][0.625,0.041667,0][-0.967858,-0.977384,-0.70097][-0.789303,-0.339013,-0.511928][0.625,0.041667,0][-1.09919,-0.977587,-0.43715][-0.884616,-0.327026,-0.332428][0.666667,0.041667,0][-1.13602,-0.450378,-0.447867][-0.939441,-0.0358051,-0.340835][0.666667,0.083333,0][-1.0001,-0.00752066,0.711352][-0.817628,4.28302e-005,0.575747][0.875,0.125,0][-1.13603,-0.00752066,0.44086][-0.939875,2.33645e-005,0.341518][0.833333,0.125,0][-1.13602,-0.450378,0.440846][-0.939373,-0.0362973,0.340972][0.833333,0.083333,0][-1.13602,-0.450378,0.440846][-0.939373,-0.0362973,0.340972][0.833333,0.083333,0][-1.00011,-0.450356,0.711332][-0.817544,-0.0346347,0.574824][0.875,0.083333,0][-1.0001,-0.00752066,0.711352][-0.817628,4.28302e-005,0.575747][0.875,0.125,0][-1.13603,-0.00752066,0.44086][-0.939875,2.33645e-005,0.341518][0.833333,0.125,0][-1.18836,-0.00752066,0.21872][-0.984761,1.02717e-005,0.173915][0.791667,0.125,0][-1.18836,-0.450387,0.218713][-0.984111,-0.0369041,0.173678][0.791667,0.083333,0][-1.18836,-0.450387,0.218713][-0.984111,-0.0369041,0.173678][0.791667,0.083333,0][-1.13602,-0.450378,0.440846][-0.939373,-0.0362973,0.340972][0.833333,0.083333,0][-1.13603,-0.00752066,0.44086][-0.939875,2.33645e-005,0.341518][0.833333,0.125,0][-1.18836,-0.00752066,0.21872][-0.984761,1.02717e-005,0.173915][0.791667,0.125,0][-1.21476,-0.00752066,-0.00351132][-1,9.70469e-006,-2.62232e-007][0.75,0.125,0][-1.21475,-0.450394,-0.00351132][-0.999309,-0.0371767,7.28416e-005][0.75,0.083333,0][-1.21475,-0.450394,-0.00351132][-0.999309,-0.0371767,7.28416e-005][0.75,0.083333,0][-1.18836,-0.450387,0.218713][-0.984111,-0.0369041,0.173678][0.791667,0.083333,0][-1.18836,-0.00752066,0.21872][-0.984761,1.02717e-005,0.173915][0.791667,0.125,0][-1.21476,-0.00752066,-0.00351132][-1,9.70469e-006,-2.62232e-007][0.75,0.125,0][-1.18836,-0.00752066,-0.225741][-0.984761,1.04732e-005,-0.173914][0.708333,0.125,0][-1.18836,-0.450387,-0.225734][-0.984132,-0.0366417,-0.173615][0.708333,0.083333,0][-1.18836,-0.450387,-0.225734][-0.984132,-0.0366417,-0.173615][0.708333,0.083333,0][-1.21475,-0.450394,-0.00351132][-0.999309,-0.0371767,7.28416e-005][0.75,0.083333,0][-1.21476,-0.00752066,-0.00351132][-1,9.70469e-006,-2.62232e-007][0.75,0.125,0][-1.18836,-0.00752066,-0.225741][-0.984761,1.04732e-005,-0.173914][0.708333,0.125,0][-1.13603,-0.00752066,-0.447881][-0.939862,2.7076e-005,-0.341555][0.666667,0.125,0][-1.13602,-0.450378,-0.447867][-0.939441,-0.0358051,-0.340835][0.666667,0.083333,0][-1.13602,-0.450378,-0.447867][-0.939441,-0.0358051,-0.340835][0.666667,0.083333,0][-1.18836,-0.450387,-0.225734][-0.984132,-0.0366417,-0.173615][0.708333,0.083333,0][-1.18836,-0.00752066,-0.225741][-0.984761,1.04732e-005,-0.173914][0.708333,0.125,0][-1.13603,-0.00752066,-0.447881][-0.939862,2.7076e-005,-0.341555][0.666667,0.125,0][-0.999958,-0.0074148,-0.718571][-0.806146,0.00871239,-0.591653][0.625,0.125,0][-1.00011,-0.450262,-0.718347][-0.82311,-0.035163,-0.566792][0.625,0.083333,0][-1.00011,-0.450262,-0.718347][-0.82311,-0.035163,-0.566792][0.625,0.083333,0][-1.13602,-0.450378,-0.447867][-0.939441,-0.0358051,-0.340835][0.666667,0.083333,0][-1.13603,-0.00752066,-0.447881][-0.939862,2.7076e-005,-0.341555][0.666667,0.125,0][-0.999993,0.378706,0.711459][-0.810168,0.0617994,0.582931][0.875,0.166667,0][-1.13601,0.378541,0.440867][-0.938453,0.0493391,0.341866][0.833333,0.166667,0][-1.13603,-0.00752066,0.44086][-0.939875,2.33645e-005,0.341518][0.833333,0.125,0][-1.13603,-0.00752066,0.44086][-0.939875,2.33645e-005,0.341518][0.833333,0.125,0][-1.0001,-0.00752066,0.711352][-0.817628,4.28302e-005,0.575747][0.875,0.125,0][-0.999993,0.378706,0.711459][-0.810168,0.0617994,0.582931][0.875,0.166667,0][-1.13601,0.378541,0.440867][-0.938453,0.0493391,0.341866][0.833333,0.166667,0][-1.18835,0.378517,0.218723][-0.983598,0.0475809,0.173985][0.791667,0.166667,0][-1.18836,-0.00752066,0.21872][-0.984761,1.02717e-005,0.173915][0.791667,0.125,0][-1.18836,-0.00752066,0.21872][-0.984761,1.02717e-005,0.173915][0.791667,0.125,0][-1.13603,-0.00752066,0.44086][-0.939875,2.33645e-005,0.341518][0.833333,0.125,0][-1.13601,0.378541,0.440867][-0.938453,0.0493391,0.341866][0.833333,0.166667,0][-1.18835,0.378517,0.218723][-0.983598,0.0475809,0.173985][0.791667,0.166667,0][-1.21474,0.378515,-0.00351132][-0.998884,0.0472245,6.99707e-005][0.75,0.166667,0][-1.21476,-0.00752066,-0.00351132][-1,9.70469e-006,-2.62232e-007][0.75,0.125,0][-1.21476,-0.00752066,-0.00351132][-1,9.70469e-006,-2.62232e-007][0.75,0.125,0][-1.18836,-0.00752066,0.21872][-0.984761,1.02717e-005,0.173915][0.791667,0.125,0][-1.18835,0.378517,0.218723][-0.983598,0.0475809,0.173985][0.791667,0.166667,0][-1.21474,0.378515,-0.00351132][-0.998884,0.0472245,6.99707e-005][0.75,0.166667,0][-1.18835,0.378517,-0.225744][-0.983626,0.0473249,-0.173899][0.708333,0.166667,0][-1.18836,-0.00752066,-0.225741][-0.984761,1.04732e-005,-0.173914][0.708333,0.125,0][-1.18836,-0.00752066,-0.225741][-0.984761,1.04732e-005,-0.173914][0.708333,0.125,0][-1.21476,-0.00752066,-0.00351132][-1,9.70469e-006,-2.62232e-007][0.75,0.125,0][-1.21474,0.378515,-0.00351132][-0.998884,0.0472245,6.99707e-005][0.75,0.166667,0][-1.18835,0.378517,-0.225744][-0.983626,0.0473249,-0.173899][0.708333,0.166667,0][-1.13601,0.378541,-0.447888][-0.938531,0.0487946,-0.341728][0.666667,0.166667,0][-1.13603,-0.00752066,-0.447881][-0.939862,2.7076e-005,-0.341555][0.666667,0.125,0][-1.13603,-0.00752066,-0.447881][-0.939862,2.7076e-005,-0.341555][0.666667,0.125,0][-1.18836,-0.00752066,-0.225741][-0.984761,1.04732e-005,-0.173914][0.708333,0.125,0][-1.18835,0.378517,-0.225744][-0.983626,0.0473249,-0.173899][0.708333,0.166667,0][-1.13601,0.378541,-0.447888][-0.938531,0.0487946,-0.341728][0.666667,0.166667,0][-0.999852,0.378584,-0.718684][-0.799792,0.0518419,-0.598035][0.625,0.166667,0][-0.999958,-0.0074148,-0.718571][-0.806146,0.00871239,-0.591653][0.625,0.125,0][-0.999958,-0.0074148,-0.718571][-0.806146,0.00871239,-0.591653][0.625,0.125,0][-1.13603,-0.00752066,-0.447881][-0.939862,2.7076e-005,-0.341555][0.666667,0.125,0][-1.13601,0.378541,-0.447888][-0.938531,0.0487946,-0.341728][0.666667,0.166667,0][-0.974329,0.704988,0.688329][-0.770828,0.264879,0.579364][0.875,0.208333,0][-1.10703,0.704758,0.426456][-0.906774,0.246288,0.342204][0.833333,0.208333,0][-1.13601,0.378541,0.440867][-0.938453,0.0493391,0.341866][0.833333,0.166667,0][-1.13601,0.378541,0.440867][-0.938453,0.0493391,0.341866][0.833333,0.166667,0][-0.999993,0.378706,0.711459][-0.810168,0.0617994,0.582931][0.875,0.166667,0][-0.974329,0.704988,0.688329][-0.770828,0.264879,0.579364][0.875,0.208333,0][-1.10703,0.704758,0.426456][-0.906774,0.246288,0.342204][0.833333,0.208333,0][-1.1581,0.704661,0.211354][-0.956494,0.24021,0.165587][0.791667,0.208333,0][-1.18835,0.378517,0.218723][-0.983598,0.0475809,0.173985][0.791667,0.166667,0][-1.18835,0.378517,0.218723][-0.983598,0.0475809,0.173985][0.791667,0.166667,0][-1.13601,0.378541,0.440867][-0.938453,0.0493391,0.341866][0.833333,0.166667,0][-1.10703,0.704758,0.426456][-0.906774,0.246288,0.342204][0.833333,0.208333,0][-1.1581,0.704661,0.211354][-0.956494,0.24021,0.165587][0.791667,0.208333,0][-1.18378,0.704738,-0.00351132][-0.96784,0.251548,-0.00299688][0.75,0.208333,0][-1.21474,0.378515,-0.00351132][-0.998884,0.0472245,6.99707e-005][0.75,0.166667,0][-1.21474,0.378515,-0.00351132][-0.998884,0.0472245,6.99707e-005][0.75,0.166667,0][-1.18835,0.378517,0.218723][-0.983598,0.0475809,0.173985][0.791667,0.166667,0][-1.1581,0.704661,0.211354][-0.956494,0.24021,0.165587][0.791667,0.208333,0][-1.18378,0.704738,-0.00351132][-0.96784,0.251548,-0.00299688][0.75,0.208333,0][-1.1581,0.704661,-0.218376][-0.953652,0.250121,-0.167296][0.708333,0.208333,0][-1.18835,0.378517,-0.225744][-0.983626,0.0473249,-0.173899][0.708333,0.166667,0][-1.18835,0.378517,-0.225744][-0.983626,0.0473249,-0.173899][0.708333,0.166667,0][-1.21474,0.378515,-0.00351132][-0.998884,0.0472245,6.99707e-005][0.75,0.166667,0][-1.18378,0.704738,-0.00351132][-0.96784,0.251548,-0.00299688][0.75,0.208333,0][-1.1581,0.704661,-0.218376][-0.953652,0.250121,-0.167296][0.708333,0.208333,0][-1.10703,0.704758,-0.433477][-0.910258,0.245983,-0.333049][0.666667,0.208333,0][-1.13601,0.378541,-0.447888][-0.938531,0.0487946,-0.341728][0.666667,0.166667,0][-1.13601,0.378541,-0.447888][-0.938531,0.0487946,-0.341728][0.666667,0.166667,0][-1.18835,0.378517,-0.225744][-0.983626,0.0473249,-0.173899][0.708333,0.166667,0][-1.1581,0.704661,-0.218376][-0.953652,0.250121,-0.167296][0.708333,0.208333,0][-1.10703,0.704758,-0.433477][-0.910258,0.245983,-0.333049][0.666667,0.208333,0][-0.974333,0.704904,-0.695385][-0.76594,0.271558,-0.582746][0.625,0.208333,0][-0.999852,0.378584,-0.718684][-0.799792,0.0518419,-0.598035][0.625,0.166667,0][-0.999852,0.378584,-0.718684][-0.799792,0.0518419,-0.598035][0.625,0.166667,0][-1.13601,0.378541,-0.447888][-0.938531,0.0487946,-0.341728][0.666667,0.166667,0][-1.10703,0.704758,-0.433477][-0.910258,0.245983,-0.333049][0.666667,0.208333,0][-0.898983,0.913431,0.614927][-0.680039,0.552941,0.48146][0.875,0.25,0][-1.01873,0.973705,0.343956][-0.731553,0.626961,0.267861][0.833333,0.25,0][-1.10703,0.704758,0.426456][-0.906774,0.246288,0.342204][0.833333,0.208333,0][-1.10703,0.704758,0.426456][-0.906774,0.246288,0.342204][0.833333,0.208333,0][-0.974329,0.704988,0.688329][-0.770828,0.264879,0.579364][0.875,0.208333,0][-0.898983,0.913431,0.614927][-0.680039,0.552941,0.48146][0.875,0.25,0][-1.01873,0.973705,0.343956][-0.731553,0.626961,0.267861][0.833333,0.25,0][-1.04107,0.989304,0.17003][-0.735335,0.669768,0.103405][0.791667,0.25,0][-1.1581,0.704661,0.211354][-0.956494,0.24021,0.165587][0.791667,0.208333,0][-1.1581,0.704661,0.211354][-0.956494,0.24021,0.165587][0.791667,0.208333,0][-1.10703,0.704758,0.426456][-0.906774,0.246288,0.342204][0.833333,0.208333,0][-1.01873,0.973705,0.343956][-0.731553,0.626961,0.267861][0.833333,0.25,0][-1.04107,0.989304,0.17003][-0.735335,0.669768,0.103405][0.791667,0.25,0][-1.05418,0.989323,-0.0035113][-0.744604,0.667456,-0.00824392][0.75,0.25,0][-1.18378,0.704738,-0.00351132][-0.96784,0.251548,-0.00299688][0.75,0.208333,0][-1.18378,0.704738,-0.00351132][-0.96784,0.251548,-0.00299688][0.75,0.208333,0][-1.1581,0.704661,0.211354][-0.956494,0.24021,0.165587][0.791667,0.208333,0][-1.04107,0.989304,0.17003][-0.735335,0.669768,0.103405][0.791667,0.25,0][-1.05418,0.989323,-0.0035113][-0.744604,0.667456,-0.00824392][0.75,0.25,0][-1.04107,0.989304,-0.177051][-0.733815,0.670982,-0.106296][0.708333,0.25,0][-1.1581,0.704661,-0.218376][-0.953652,0.250121,-0.167296][0.708333,0.208333,0][-1.1581,0.704661,-0.218376][-0.953652,0.250121,-0.167296][0.708333,0.208333,0][-1.18378,0.704738,-0.00351132][-0.96784,0.251548,-0.00299688][0.75,0.208333,0][-1.05418,0.989323,-0.0035113][-0.744604,0.667456,-0.00824392][0.75,0.25,0][-1.04107,0.989304,-0.177051][-0.733815,0.670982,-0.106296][0.708333,0.25,0][-1.01873,0.973705,-0.350978][-0.724099,0.643779,-0.247444][0.666667,0.25,0][-1.10703,0.704758,-0.433477][-0.910258,0.245983,-0.333049][0.666667,0.208333,0][-1.10703,0.704758,-0.433477][-0.910258,0.245983,-0.333049][0.666667,0.208333,0][-1.1581,0.704661,-0.218376][-0.953652,0.250121,-0.167296][0.708333,0.208333,0][-1.04107,0.989304,-0.177051][-0.733815,0.670982,-0.106296][0.708333,0.25,0][-1.01873,0.973705,-0.350978][-0.724099,0.643779,-0.247444][0.666667,0.25,0][-0.898993,0.913461,-0.621904][-0.663467,0.559097,-0.497215][0.625,0.25,0][-0.974333,0.704904,-0.695385][-0.76594,0.271558,-0.582746][0.625,0.208333,0][-0.974333,0.704904,-0.695385][-0.76594,0.271558,-0.582746][0.625,0.208333,0][-1.10703,0.704758,-0.433477][-0.910258,0.245983,-0.333049][0.666667,0.208333,0][-1.01873,0.973705,-0.350978][-0.724099,0.643779,-0.247444][0.666667,0.25,0][1.09933,-0.977407,0.429942][0.895132,-0.311499,0.318915][0.166667,0.041667,0][0.96774,-0.977183,0.694265][0.776709,-0.307163,0.549885][0.125,0.041667,0][0.804368,-1.26175,0.624658][0.418149,-0.836811,0.353409][0.125,0,0][0.804368,-1.26175,0.624658][0.418149,-0.836811,0.353409][0.125,0,0][0.912141,-1.26188,0.411078][0.487913,-0.857884,0.161173][0.166667,0,0][1.09933,-0.977407,0.429942][0.895132,-0.311499,0.318915][0.166667,0.041667,0][1.1498,-0.977784,0.213083][0.927091,-0.342586,0.152109][0.208333,0.041667,0][1.09933,-0.977407,0.429942][0.895132,-0.311499,0.318915][0.166667,0.041667,0][0.912141,-1.26188,0.411078][0.487913,-0.857884,0.161173][0.166667,0,0][0.912141,-1.26188,0.411078][0.487913,-0.857884,0.161173][0.166667,0,0][0.931586,-1.26235,0.203439][0.442976,-0.895697,0.0387112][0.208333,0,0][1.1498,-0.977784,0.213083][0.927091,-0.342586,0.152109][0.208333,0.041667,0][1.17525,-0.977902,-0.00349396][0.93336,-0.358922,-0.00382958][0.25,0.041667,0][1.1498,-0.977784,0.213083][0.927091,-0.342586,0.152109][0.208333,0.041667,0][0.931586,-1.26235,0.203439][0.442976,-0.895697,0.0387112][0.208333,0,0][0.931586,-1.26235,0.203439][0.442976,-0.895697,0.0387112][0.208333,0,0][0.943231,-1.26238,-0.003511][0.447603,-0.894219,-0.00483311][0.25,0,0][1.17525,-0.977902,-0.00349396][0.93336,-0.358922,-0.00382958][0.25,0.041667,0][1.1498,-0.977784,-0.220072][0.921476,-0.355645,-0.1562][0.291667,0.041667,0][1.17525,-0.977902,-0.00349396][0.93336,-0.358922,-0.00382958][0.25,0.041667,0][0.943231,-1.26238,-0.003511][0.447603,-0.894219,-0.00483311][0.25,0,0][0.943231,-1.26238,-0.003511][0.447603,-0.894219,-0.00483311][0.25,0,0][0.931586,-1.26235,-0.21046][0.456695,-0.8884,-0.0466367][0.291667,0,0][1.1498,-0.977784,-0.220072][0.921476,-0.355645,-0.1562][0.291667,0.041667,0][1.09919,-0.977587,-0.43715][0.894783,-0.322762,-0.308527][0.333333,0.041667,0][1.1498,-0.977784,-0.220072][0.921476,-0.355645,-0.1562][0.291667,0.041667,0][0.931586,-1.26235,-0.21046][0.456695,-0.8884,-0.0466367][0.291667,0,0][0.931586,-1.26235,-0.21046][0.456695,-0.8884,-0.0466367][0.291667,0,0][0.912121,-1.2618,-0.418544][0.488836,-0.85109,-0.191534][0.333333,0,0][1.09919,-0.977587,-0.43715][0.894783,-0.322762,-0.308527][0.333333,0.041667,0][0.967858,-0.977384,-0.70097][0.764182,-0.339961,-0.548135][0.375,0.041667,0][1.09919,-0.977587,-0.43715][0.894783,-0.322762,-0.308527][0.333333,0.041667,0][0.912121,-1.2618,-0.418544][0.488836,-0.85109,-0.191534][0.333333,0,0][0.912121,-1.2618,-0.418544][0.488836,-0.85109,-0.191534][0.333333,0,0][0.766663,-1.2621,-0.583531][1.84834,-2.82316,-1.58156][0.375,0,0][0.967858,-0.977384,-0.70097][0.764182,-0.339961,-0.548135][0.375,0.041667,0][1.13602,-0.450378,0.440846][0.939436,-0.0357515,0.340854][0.166667,0.083333,0][1.00011,-0.450357,0.711332][0.817567,-0.0339249,0.574834][0.125,0.083333,0][0.96774,-0.977183,0.694265][0.776709,-0.307163,0.549885][0.125,0.041667,0][0.96774,-0.977183,0.694265][0.776709,-0.307163,0.549885][0.125,0.041667,0][1.09933,-0.977407,0.429942][0.895132,-0.311499,0.318915][0.166667,0.041667,0][1.13602,-0.450378,0.440846][0.939436,-0.0357515,0.340854][0.166667,0.083333,0][1.18836,-0.450387,0.218713][0.984137,-0.0366103,0.173593][0.208333,0.083333,0][1.13602,-0.450378,0.440846][0.939436,-0.0357515,0.340854][0.166667,0.083333,0][1.09933,-0.977407,0.429942][0.895132,-0.311499,0.318915][0.166667,0.041667,0][1.09933,-0.977407,0.429942][0.895132,-0.311499,0.318915][0.166667,0.041667,0][1.1498,-0.977784,0.213083][0.927091,-0.342586,0.152109][0.208333,0.041667,0][1.18836,-0.450387,0.218713][0.984137,-0.0366103,0.173593][0.208333,0.083333,0][1.21475,-0.450394,-0.00351096][0.999309,-0.0371768,-7.56541e-005][0.25,0.083333,0][1.18836,-0.450387,0.218713][0.984137,-0.0366103,0.173593][0.208333,0.083333,0][1.1498,-0.977784,0.213083][0.927091,-0.342586,0.152109][0.208333,0.041667,0][1.1498,-0.977784,0.213083][0.927091,-0.342586,0.152109][0.208333,0.041667,0][1.17525,-0.977902,-0.00349396][0.93336,-0.358922,-0.00382958][0.25,0.041667,0][1.21475,-0.450394,-0.00351096][0.999309,-0.0371768,-7.56541e-005][0.25,0.083333,0][1.18836,-0.450387,-0.225734][0.98411,-0.0369094,-0.173679][0.291667,0.083333,0][1.21475,-0.450394,-0.00351096][0.999309,-0.0371768,-7.56541e-005][0.25,0.083333,0][1.17525,-0.977902,-0.00349396][0.93336,-0.358922,-0.00382958][0.25,0.041667,0][1.17525,-0.977902,-0.00349396][0.93336,-0.358922,-0.00382958][0.25,0.041667,0][1.1498,-0.977784,-0.220072][0.921476,-0.355645,-0.1562][0.291667,0.041667,0][1.18836,-0.450387,-0.225734][0.98411,-0.0369094,-0.173679][0.291667,0.083333,0][1.13602,-0.450378,-0.447867][0.939366,-0.0363125,-0.340988][0.333333,0.083333,0][1.18836,-0.450387,-0.225734][0.98411,-0.0369094,-0.173679][0.291667,0.083333,0][1.1498,-0.977784,-0.220072][0.921476,-0.355645,-0.1562][0.291667,0.041667,0][1.1498,-0.977784,-0.220072][0.921476,-0.355645,-0.1562][0.291667,0.041667,0][1.09919,-0.977587,-0.43715][0.894783,-0.322762,-0.308527][0.333333,0.041667,0][1.13602,-0.450378,-0.447867][0.939366,-0.0363125,-0.340988][0.333333,0.083333,0][1.00011,-0.450262,-0.718347][0.819063,-0.0259986,-0.573114][0.375,0.083333,0][1.13602,-0.450378,-0.447867][0.939366,-0.0363125,-0.340988][0.333333,0.083333,0][1.09919,-0.977587,-0.43715][0.894783,-0.322762,-0.308527][0.333333,0.041667,0][1.09919,-0.977587,-0.43715][0.894783,-0.322762,-0.308527][0.333333,0.041667,0][0.967858,-0.977384,-0.70097][0.764182,-0.339961,-0.548135][0.375,0.041667,0][1.00011,-0.450262,-0.718347][0.819063,-0.0259986,-0.573114][0.375,0.083333,0][1.13603,-0.00752069,0.44086][0.939879,1.18921e-005,0.341508][0.166667,0.125,0][1.0001,-0.00752069,0.711352][0.817629,1.02197e-005,0.575746][0.125,0.125,0][1.00011,-0.450357,0.711332][0.817567,-0.0339249,0.574834][0.125,0.083333,0][1.00011,-0.450357,0.711332][0.817567,-0.0339249,0.574834][0.125,0.083333,0][1.13602,-0.450378,0.440846][0.939436,-0.0357515,0.340854][0.166667,0.083333,0][1.13603,-0.00752069,0.44086][0.939879,1.18921e-005,0.341508][0.166667,0.125,0][1.18836,-0.00752069,0.21872][0.984761,1.04732e-005,0.173914][0.208333,0.125,0][1.13603,-0.00752069,0.44086][0.939879,1.18921e-005,0.341508][0.166667,0.125,0][1.13602,-0.450378,0.440846][0.939436,-0.0357515,0.340854][0.166667,0.083333,0][1.13602,-0.450378,0.440846][0.939436,-0.0357515,0.340854][0.166667,0.083333,0][1.18836,-0.450387,0.218713][0.984137,-0.0366103,0.173593][0.208333,0.083333,0][1.18836,-0.00752069,0.21872][0.984761,1.04732e-005,0.173914][0.208333,0.125,0][1.21476,-0.00752069,-0.00351096][1,9.70469e-006,-2.50845e-007][0.25,0.125,0][1.18836,-0.00752069,0.21872][0.984761,1.04732e-005,0.173914][0.208333,0.125,0][1.18836,-0.450387,0.218713][0.984137,-0.0366103,0.173593][0.208333,0.083333,0][1.18836,-0.450387,0.218713][0.984137,-0.0366103,0.173593][0.208333,0.083333,0][1.21475,-0.450394,-0.00351096][0.999309,-0.0371768,-7.56541e-005][0.25,0.083333,0][1.21476,-0.00752069,-0.00351096][1,9.70469e-006,-2.50845e-007][0.25,0.125,0][1.18836,-0.00752069,-0.225741][0.984761,1.02688e-005,-0.173915][0.291667,0.125,0][1.21476,-0.00752069,-0.00351096][1,9.70469e-006,-2.50845e-007][0.25,0.125,0][1.21475,-0.450394,-0.00351096][0.999309,-0.0371768,-7.56541e-005][0.25,0.083333,0][1.21475,-0.450394,-0.00351096][0.999309,-0.0371768,-7.56541e-005][0.25,0.083333,0][1.18836,-0.450387,-0.225734][0.98411,-0.0369094,-0.173679][0.291667,0.083333,0][1.18836,-0.00752069,-0.225741][0.984761,1.02688e-005,-0.173915][0.291667,0.125,0][1.13603,-0.00752069,-0.447881][0.939854,2.16672e-005,-0.341577][0.333333,0.125,0][1.18836,-0.00752069,-0.225741][0.984761,1.02688e-005,-0.173915][0.291667,0.125,0][1.18836,-0.450387,-0.225734][0.98411,-0.0369094,-0.173679][0.291667,0.083333,0][1.18836,-0.450387,-0.225734][0.98411,-0.0369094,-0.173679][0.291667,0.083333,0][1.13602,-0.450378,-0.447867][0.939366,-0.0363125,-0.340988][0.333333,0.083333,0][1.13603,-0.00752069,-0.447881][0.939854,2.16672e-005,-0.341577][0.333333,0.125,0][0.999958,-0.00741483,-0.718571][0.801255,-9.87201e-005,-0.598323][0.375,0.125,0][1.13603,-0.00752069,-0.447881][0.939854,2.16672e-005,-0.341577][0.333333,0.125,0][1.13602,-0.450378,-0.447867][0.939366,-0.0363125,-0.340988][0.333333,0.083333,0][1.13602,-0.450378,-0.447867][0.939366,-0.0363125,-0.340988][0.333333,0.083333,0][1.00011,-0.450262,-0.718347][0.819063,-0.0259986,-0.573114][0.375,0.083333,0][0.999958,-0.00741483,-0.718571][0.801255,-9.87201e-005,-0.598323][0.375,0.125,0][1.13601,0.378541,0.440867][0.938555,0.0487897,0.341664][0.166667,0.166667,0][0.999993,0.378706,0.711459][0.815927,0.0517733,0.575832][0.125,0.166667,0][1.0001,-0.00752069,0.711352][0.817629,1.02197e-005,0.575746][0.125,0.125,0][1.0001,-0.00752069,0.711352][0.817629,1.02197e-005,0.575746][0.125,0.125,0][1.13603,-0.00752069,0.44086][0.939879,1.18921e-005,0.341508][0.166667,0.125,0][1.13601,0.378541,0.440867][0.938555,0.0487897,0.341664][0.166667,0.166667,0][1.18835,0.378517,0.218723][0.983626,0.0473251,0.173899][0.208333,0.166667,0][1.13601,0.378541,0.440867][0.938555,0.0487897,0.341664][0.166667,0.166667,0][1.13603,-0.00752069,0.44086][0.939879,1.18921e-005,0.341508][0.166667,0.125,0][1.13603,-0.00752069,0.44086][0.939879,1.18921e-005,0.341508][0.166667,0.125,0][1.18836,-0.00752069,0.21872][0.984761,1.04732e-005,0.173914][0.208333,0.125,0][1.18835,0.378517,0.218723][0.983626,0.0473251,0.173899][0.208333,0.166667,0][1.21474,0.378515,-0.00351096][0.998884,0.0472245,-7.04417e-005][0.25,0.166667,0][1.18835,0.378517,0.218723][0.983626,0.0473251,0.173899][0.208333,0.166667,0][1.18836,-0.00752069,0.21872][0.984761,1.04732e-005,0.173914][0.208333,0.125,0][1.18836,-0.00752069,0.21872][0.984761,1.04732e-005,0.173914][0.208333,0.125,0][1.21476,-0.00752069,-0.00351096][1,9.70469e-006,-2.50845e-007][0.25,0.125,0][1.21474,0.378515,-0.00351096][0.998884,0.0472245,-7.04417e-005][0.25,0.166667,0][1.18835,0.378517,-0.225744][0.983598,0.0475808,-0.173985][0.291667,0.166667,0][1.21474,0.378515,-0.00351096][0.998884,0.0472245,-7.04417e-005][0.25,0.166667,0][1.21476,-0.00752069,-0.00351096][1,9.70469e-006,-2.50845e-007][0.25,0.125,0][1.21476,-0.00752069,-0.00351096][1,9.70469e-006,-2.50845e-007][0.25,0.125,0][1.18836,-0.00752069,-0.225741][0.984761,1.02688e-005,-0.173915][0.291667,0.125,0][1.18835,0.378517,-0.225744][0.983598,0.0475808,-0.173985][0.291667,0.166667,0][1.13601,0.378541,-0.447888][0.938438,0.0493228,-0.341908][0.333333,0.166667,0][1.18835,0.378517,-0.225744][0.983598,0.0475808,-0.173985][0.291667,0.166667,0][1.18836,-0.00752069,-0.225741][0.984761,1.02688e-005,-0.173915][0.291667,0.125,0][1.18836,-0.00752069,-0.225741][0.984761,1.02688e-005,-0.173915][0.291667,0.125,0][1.13603,-0.00752069,-0.447881][0.939854,2.16672e-005,-0.341577][0.333333,0.125,0][1.13601,0.378541,-0.447888][0.938438,0.0493228,-0.341908][0.333333,0.166667,0][0.999852,0.378584,-0.718684][0.799736,0.0525348,-0.598048][0.375,0.166667,0][1.13601,0.378541,-0.447888][0.938438,0.0493228,-0.341908][0.333333,0.166667,0][1.13603,-0.00752069,-0.447881][0.939854,2.16672e-005,-0.341577][0.333333,0.125,0][1.13603,-0.00752069,-0.447881][0.939854,2.16672e-005,-0.341577][0.333333,0.125,0][0.999958,-0.00741483,-0.718571][0.801255,-9.87201e-005,-0.598323][0.375,0.125,0][0.999852,0.378584,-0.718684][0.799736,0.0525348,-0.598048][0.375,0.166667,0][1.10703,0.704758,0.426456][0.910267,0.24599,0.333022][0.166667,0.208333,0][0.974329,0.704988,0.688329][0.764345,0.279988,0.580847][0.125,0.208333,0][0.999993,0.378706,0.711459][0.815927,0.0517733,0.575832][0.125,0.166667,0][0.999993,0.378706,0.711459][0.815927,0.0517733,0.575832][0.125,0.166667,0][1.13601,0.378541,0.440867][0.938555,0.0487897,0.341664][0.166667,0.166667,0][1.10703,0.704758,0.426456][0.910267,0.24599,0.333022][0.166667,0.208333,0][1.1581,0.704661,0.211354][0.953651,0.250122,0.167295][0.208333,0.208333,0][1.10703,0.704758,0.426456][0.910267,0.24599,0.333022][0.166667,0.208333,0][1.13601,0.378541,0.440867][0.938555,0.0487897,0.341664][0.166667,0.166667,0][1.13601,0.378541,0.440867][0.938555,0.0487897,0.341664][0.166667,0.166667,0][1.18835,0.378517,0.218723][0.983626,0.0473251,0.173899][0.208333,0.166667,0][1.1581,0.704661,0.211354][0.953651,0.250122,0.167295][0.208333,0.208333,0][1.18378,0.704738,-0.00351096][0.96784,0.25155,0.00299678][0.25,0.208333,0][1.1581,0.704661,0.211354][0.953651,0.250122,0.167295][0.208333,0.208333,0][1.18835,0.378517,0.218723][0.983626,0.0473251,0.173899][0.208333,0.166667,0][1.18835,0.378517,0.218723][0.983626,0.0473251,0.173899][0.208333,0.166667,0][1.21474,0.378515,-0.00351096][0.998884,0.0472245,-7.04417e-005][0.25,0.166667,0][1.18378,0.704738,-0.00351096][0.96784,0.25155,0.00299678][0.25,0.208333,0][1.1581,0.704661,-0.218376][0.956493,0.240211,-0.165587][0.291667,0.208333,0][1.18378,0.704738,-0.00351096][0.96784,0.25155,0.00299678][0.25,0.208333,0][1.21474,0.378515,-0.00351096][0.998884,0.0472245,-7.04417e-005][0.25,0.166667,0][1.21474,0.378515,-0.00351096][0.998884,0.0472245,-7.04417e-005][0.25,0.166667,0][1.18835,0.378517,-0.225744][0.983598,0.0475808,-0.173985][0.291667,0.166667,0][1.1581,0.704661,-0.218376][0.956493,0.240211,-0.165587][0.291667,0.208333,0][1.10703,0.704758,-0.433477][0.906773,0.246294,-0.342201][0.333333,0.208333,0][1.1581,0.704661,-0.218376][0.956493,0.240211,-0.165587][0.291667,0.208333,0][1.18835,0.378517,-0.225744][0.983598,0.0475808,-0.173985][0.291667,0.166667,0][1.18835,0.378517,-0.225744][0.983598,0.0475808,-0.173985][0.291667,0.166667,0][1.13601,0.378541,-0.447888][0.938438,0.0493228,-0.341908][0.333333,0.166667,0][1.10703,0.704758,-0.433477][0.906773,0.246294,-0.342201][0.333333,0.208333,0][0.974333,0.704904,-0.695385][0.77444,0.266809,-0.573634][0.375,0.208333,0][1.10703,0.704758,-0.433477][0.906773,0.246294,-0.342201][0.333333,0.208333,0][1.13601,0.378541,-0.447888][0.938438,0.0493228,-0.341908][0.333333,0.166667,0][1.13601,0.378541,-0.447888][0.938438,0.0493228,-0.341908][0.333333,0.166667,0][0.999852,0.378584,-0.718684][0.799736,0.0525348,-0.598048][0.375,0.166667,0][0.974333,0.704904,-0.695385][0.77444,0.266809,-0.573634][0.375,0.208333,0][1.01873,0.973705,0.343956][0.724097,0.643784,0.247438][0.166667,0.25,0][0.898983,0.913431,0.614927][0.662476,0.55737,0.500463][0.125,0.25,0][0.974329,0.704988,0.688329][0.764345,0.279988,0.580847][0.125,0.208333,0][0.974329,0.704988,0.688329][0.764345,0.279988,0.580847][0.125,0.208333,0][1.10703,0.704758,0.426456][0.910267,0.24599,0.333022][0.166667,0.208333,0][1.01873,0.973705,0.343956][0.724097,0.643784,0.247438][0.166667,0.25,0][1.04107,0.989304,0.17003][0.733815,0.670982,0.106295][0.208333,0.25,0][1.01873,0.973705,0.343956][0.724097,0.643784,0.247438][0.166667,0.25,0][1.10703,0.704758,0.426456][0.910267,0.24599,0.333022][0.166667,0.208333,0][1.10703,0.704758,0.426456][0.910267,0.24599,0.333022][0.166667,0.208333,0][1.1581,0.704661,0.211354][0.953651,0.250122,0.167295][0.208333,0.208333,0][1.04107,0.989304,0.17003][0.733815,0.670982,0.106295][0.208333,0.25,0][1.05418,0.989323,-0.00351098][0.744603,0.667457,0.00824349][0.25,0.25,0][1.04107,0.989304,0.17003][0.733815,0.670982,0.106295][0.208333,0.25,0][1.1581,0.704661,0.211354][0.953651,0.250122,0.167295][0.208333,0.208333,0][1.1581,0.704661,0.211354][0.953651,0.250122,0.167295][0.208333,0.208333,0][1.18378,0.704738,-0.00351096][0.96784,0.25155,0.00299678][0.25,0.208333,0][1.05418,0.989323,-0.00351098][0.744603,0.667457,0.00824349][0.25,0.25,0][1.04107,0.989304,-0.177051][0.735334,0.66977,-0.103403][0.291667,0.25,0][1.05418,0.989323,-0.00351098][0.744603,0.667457,0.00824349][0.25,0.25,0][1.18378,0.704738,-0.00351096][0.96784,0.25155,0.00299678][0.25,0.208333,0][1.18378,0.704738,-0.00351096][0.96784,0.25155,0.00299678][0.25,0.208333,0][1.1581,0.704661,-0.218376][0.956493,0.240211,-0.165587][0.291667,0.208333,0][1.04107,0.989304,-0.177051][0.735334,0.66977,-0.103403][0.291667,0.25,0][1.01873,0.973705,-0.350978][0.731555,0.626961,-0.267857][0.333333,0.25,0][1.04107,0.989304,-0.177051][0.735334,0.66977,-0.103403][0.291667,0.25,0][1.1581,0.704661,-0.218376][0.956493,0.240211,-0.165587][0.291667,0.208333,0][1.1581,0.704661,-0.218376][0.956493,0.240211,-0.165587][0.291667,0.208333,0][1.10703,0.704758,-0.433477][0.906773,0.246294,-0.342201][0.333333,0.208333,0][1.01873,0.973705,-0.350978][0.731555,0.626961,-0.267857][0.333333,0.25,0][0.898993,0.913461,-0.621904][0.68004,0.552932,-0.481469][0.375,0.25,0][1.01873,0.973705,-0.350978][0.731555,0.626961,-0.267857][0.333333,0.25,0][1.10703,0.704758,-0.433477][0.906773,0.246294,-0.342201][0.333333,0.208333,0][1.10703,0.704758,-0.433477][0.906773,0.246294,-0.342201][0.333333,0.208333,0][0.974333,0.704904,-0.695385][0.77444,0.266809,-0.573634][0.375,0.208333,0][0.898993,0.913461,-0.621904][0.68004,0.552932,-0.481469][0.375,0.25,0][0.369387,-1.20991,-0.951638][0.118802,-0.202465,-0.972057][0.458333,0,0][0.641619,-1.09854,-0.941235][0.0880257,0.0129887,-0.996033][0.416667,0,0][0.673588,-1.124,-0.95419][0.383455,-0.350212,-0.854584][0.416667,0,0][0.673588,-1.124,-0.95419][0.383455,-0.350212,-0.854584][0.416667,0,0][0.372386,-1.2416,-0.956151][0.113469,-0.635659,-0.763585][0.458333,0,0][0.369387,-1.20991,-0.951638][0.118802,-0.202465,-0.972057][0.458333,0,0][0.641619,-1.09854,-0.941235][0.0880257,0.0129887,-0.996033][0.416667,0,0][0.713392,-0.967098,-0.933528][0.11913,-0.0337288,-0.992306][0.416667,0.041667,0][0.74557,-0.975513,-0.940985][0.389939,-0.179604,-0.903155][0.416667,0.041667,0][0.74557,-0.975513,-0.940985][0.389939,-0.179604,-0.903155][0.416667,0.041667,0][0.673588,-1.124,-0.95419][0.383455,-0.350212,-0.854584][0.416667,0,0][0.641619,-1.09854,-0.941235][0.0880257,0.0129887,-0.996033][0.416667,0,0][2.87687e-007,-1.21136,-1.00772][-0.00252853,-0.266283,-0.963891][0.5,0,0][0.369387,-1.20991,-0.951638][0.118802,-0.202465,-0.972057][0.458333,0,0][0.372386,-1.2416,-0.956151][0.113469,-0.635659,-0.763585][0.458333,0,0][0.372386,-1.2416,-0.956151][0.113469,-0.635659,-0.763585][0.458333,0,0][2.87951e-007,-1.24089,-1.01239][0.00197415,-0.564659,-0.825322][0.5,0,0][2.87687e-007,-1.21136,-1.00772][-0.00252853,-0.266283,-0.963891][0.5,0,0][-0.369387,-1.20991,-0.951637][-0.14904,-0.178976,-0.972499][0.541667,0,0][2.87687e-007,-1.21136,-1.00772][-0.00252853,-0.266283,-0.963891][0.5,0,0][2.87951e-007,-1.24089,-1.01239][0.00197415,-0.564659,-0.825322][0.5,0,0][2.87951e-007,-1.24089,-1.01239][0.00197415,-0.564659,-0.825322][0.5,0,0][-0.372386,-1.2416,-0.956151][-0.125178,-0.628649,-0.767549][0.541667,0,0][-0.369387,-1.20991,-0.951637][-0.14904,-0.178976,-0.972499][0.541667,0,0][-0.641618,-1.09854,-0.941235][0.0986083,0.176726,-0.979308][0.583333,0,0][-0.369387,-1.20991,-0.951637][-0.14904,-0.178976,-0.972499][0.541667,0,0][-0.372386,-1.2416,-0.956151][-0.125178,-0.628649,-0.767549][0.541667,0,0][-0.372386,-1.2416,-0.956151][-0.125178,-0.628649,-0.767549][0.541667,0,0][-0.673588,-1.124,-0.95419][-0.298119,-0.377152,-0.876859][0.583333,0,0][-0.641618,-1.09854,-0.941235][0.0986083,0.176726,-0.979308][0.583333,0,0][-0.713392,-0.967098,-0.933528][-0.0737817,-0.0516099,-0.995938][0.583333,0.041667,0][-0.641618,-1.09854,-0.941235][0.0986083,0.176726,-0.979308][0.583333,0,0][-0.673588,-1.124,-0.95419][-0.298119,-0.377152,-0.876859][0.583333,0,0][-0.673588,-1.124,-0.95419][-0.298119,-0.377152,-0.876859][0.583333,0,0][-0.74557,-0.975513,-0.940985][-0.35926,-0.0879137,-0.929087][0.583333,0.041667,0][-0.713392,-0.967098,-0.933528][-0.0737817,-0.0516099,-0.995938][0.583333,0.041667,0][0.713392,-0.967098,-0.933528][0.11913,-0.0337288,-0.992306][0.416667,0.041667,0][0.739254,-0.452498,-0.964538][0.201668,-0.0134942,-0.979361][0.416667,0.083333,0][0.770664,-0.450137,-0.969399][0.340495,-0.00987715,-0.940194][0.416667,0.083333,0][0.770664,-0.450137,-0.969399][0.340495,-0.00987715,-0.940194][0.416667,0.083333,0][0.74557,-0.975513,-0.940985][0.389939,-0.179604,-0.903155][0.416667,0.041667,0][0.713392,-0.967098,-0.933528][0.11913,-0.0337288,-0.992306][0.416667,0.041667,0][-0.739703,-0.452501,-0.964421][-0.199914,-0.0496835,-0.978553][0.583333,0.083333,0][-0.713392,-0.967098,-0.933528][-0.0737817,-0.0516099,-0.995938][0.583333,0.041667,0][-0.74557,-0.975513,-0.940985][-0.35926,-0.0879137,-0.929087][0.583333,0.041667,0][-0.74557,-0.975513,-0.940985][-0.35926,-0.0879137,-0.929087][0.583333,0.041667,0][-0.771223,-0.450143,-0.969151][-0.349339,-0.0392046,-0.936176][0.583333,0.083333,0][-0.739703,-0.452501,-0.964421][-0.199914,-0.0496835,-0.978553][0.583333,0.083333,0][0.739254,-0.452498,-0.964538][0.201668,-0.0134942,-0.979361][0.416667,0.083333,0][0.700281,-0.00745488,-0.972009][1.76922,0.0644863,-4.29757][0.416667,0.125,0][0.746582,-0.00736333,-0.956316][0.514472,0.00964094,-0.857453][0.416667,0.125,0][0.746582,-0.00736333,-0.956316][0.514472,0.00964094,-0.857453][0.416667,0.125,0][0.770664,-0.450137,-0.969399][0.340495,-0.00987715,-0.940194][0.416667,0.083333,0][0.739254,-0.452498,-0.964538][0.201668,-0.0134942,-0.979361][0.416667,0.083333,0][-0.701888,-0.00741671,-0.983881][-2.34908,0.199335,-4.03004][0.583333,0.125,0][-0.739703,-0.452501,-0.964421][-0.199914,-0.0496835,-0.978553][0.583333,0.083333,0][-0.771223,-0.450143,-0.969151][-0.349339,-0.0392046,-0.936176][0.583333,0.083333,0][-0.771223,-0.450143,-0.969151][-0.349339,-0.0392046,-0.936176][0.583333,0.083333,0][-0.747657,-0.00736045,-0.955664][-0.606073,0.0298999,-0.794847][0.583333,0.125,0][-0.701888,-0.00741671,-0.983881][-2.34908,0.199335,-4.03004][0.583333,0.125,0][0.697635,0.345801,-0.973049][1.71128,-0.541574,-4.05337][0.416667,0.166667,0][0.369497,0.429748,-1.13804][0.715738,-1.61735,-2.97751][0.458333,0.166667,0][0.388293,0.479712,-1.16082][0.303373,-0.137809,-0.942854][0.458333,0.166667,0][0.388293,0.479712,-1.16082][0.303373,-0.137809,-0.942854][0.458333,0.166667,0][0.747728,0.377897,-0.955617][0.56821,0.0229971,-0.822562][0.416667,0.166667,0][0.697635,0.345801,-0.973049][1.71128,-0.541574,-4.05337][0.416667,0.166667,0][0.700281,-0.00745488,-0.972009][1.76922,0.0644863,-4.29757][0.416667,0.125,0][0.697635,0.345801,-0.973049][1.71128,-0.541574,-4.05337][0.416667,0.166667,0][0.747728,0.377897,-0.955617][0.56821,0.0229971,-0.822562][0.416667,0.166667,0][0.747728,0.377897,-0.955617][0.56821,0.0229971,-0.822562][0.416667,0.166667,0][0.746582,-0.00736333,-0.956316][0.514472,0.00964094,-0.857453][0.416667,0.125,0][0.700281,-0.00745488,-0.972009][1.76922,0.0644863,-4.29757][0.416667,0.125,0][0.369497,0.429748,-1.13804][0.715738,-1.61735,-2.97751][0.458333,0.166667,0][3.40741e-007,0.433002,-1.19681][0.0138997,-1.30709,-2.97625][0.5,0.166667,0][3.44476e-007,0.47928,-1.21698][-0.00243697,-0.133644,-0.991026][0.5,0.166667,0][3.44476e-007,0.47928,-1.21698][-0.00243697,-0.133644,-0.991026][0.5,0.166667,0][0.388293,0.479712,-1.16082][0.303373,-0.137809,-0.942854][0.458333,0.166667,0][0.369497,0.429748,-1.13804][0.715738,-1.61735,-2.97751][0.458333,0.166667,0][3.40741e-007,0.433002,-1.19681][0.0138997,-1.30709,-2.97625][0.5,0.166667,0][-0.369672,0.430374,-1.1382][-0.797981,-1.58232,-2.96054][0.541667,0.166667,0][-0.388358,0.480036,-1.16083][-0.302342,-0.141773,-0.942597][0.541667,0.166667,0][-0.388358,0.480036,-1.16083][-0.302342,-0.141773,-0.942597][0.541667,0.166667,0][3.44476e-007,0.47928,-1.21698][-0.00243697,-0.133644,-0.991026][0.5,0.166667,0][3.40741e-007,0.433002,-1.19681][0.0138997,-1.30709,-2.97625][0.5,0.166667,0][-0.699612,0.346456,-0.982231][-2.07721,0.194064,-3.9595][0.583333,0.166667,0][-0.701888,-0.00741671,-0.983881][-2.34908,0.199335,-4.03004][0.583333,0.125,0][-0.747657,-0.00736045,-0.955664][-0.606073,0.0298999,-0.794847][0.583333,0.125,0][-0.747657,-0.00736045,-0.955664][-0.606073,0.0298999,-0.794847][0.583333,0.125,0][-0.748123,0.378099,-0.955337][-0.590107,0.0458042,-0.806024][0.583333,0.166667,0][-0.699612,0.346456,-0.982231][-2.07721,0.194064,-3.9595][0.583333,0.166667,0][-0.369672,0.430374,-1.1382][-0.797981,-1.58232,-2.96054][0.541667,0.166667,0][-0.699612,0.346456,-0.982231][-2.07721,0.194064,-3.9595][0.583333,0.166667,0][-0.748123,0.378099,-0.955337][-0.590107,0.0458042,-0.806024][0.583333,0.166667,0][-0.748123,0.378099,-0.955337][-0.590107,0.0458042,-0.806024][0.583333,0.166667,0][-0.388358,0.480036,-1.16083][-0.302342,-0.141773,-0.942597][0.541667,0.166667,0][-0.369672,0.430374,-1.1382][-0.797981,-1.58232,-2.96054][0.541667,0.166667,0][0.740734,-0.97299,-0.928288][-0.365432,0.173813,0.914466][0.416667,0.041667,0][0.669721,-1.11851,-0.942115][-0.356849,0.328084,0.874654][0.416667,0,0][0.764466,-1.24923,-0.580859][-1.86781,2.79911,1.57613][0.375,0,0][0.764466,-1.24923,-0.580859][-1.86781,2.79911,1.57613][0.375,0,0][0.957014,-0.97299,-0.693617][-0.766472,0.33725,0.546611][0.375,0.041667,0][0.740734,-0.97299,-0.928288][-0.365432,0.173813,0.914466][0.416667,0.041667,0][0.391145,-0.972336,-1.11668][-0.305324,0.336682,0.890743][0.458333,0.041667,0][0.367712,-1.20886,-0.937961][-0.107949,0.127702,0.985921][0.458333,0,0][0.641161,-1.09847,-0.927424][-0.0510406,-0.0664104,0.996486][0.416667,0,0][0.641161,-1.09847,-0.927424][-0.0510406,-0.0664104,0.996486][0.416667,0,0][0.712547,-0.966245,-0.919762][-0.0830325,0.0226362,0.99629][0.416667,0.041667,0][0.391145,-0.972336,-1.11668][-0.305324,0.336682,0.890743][0.458333,0.041667,0][3.18008e-007,-0.971626,-1.18487][0.00223611,0.371579,0.928399][0.5,0.041667,0][2.85687e-007,-1.20853,-0.994198][0.0036976,0.21763,0.976024][0.5,0,0][0.367712,-1.20886,-0.937961][-0.107949,0.127702,0.985921][0.458333,0,0][0.367712,-1.20886,-0.937961][-0.107949,0.127702,0.985921][0.458333,0,0][0.391145,-0.972336,-1.11668][-0.305324,0.336682,0.890743][0.458333,0.041667,0][3.18008e-007,-0.971626,-1.18487][0.00223611,0.371579,0.928399][0.5,0.041667,0][-0.391145,-0.972336,-1.11668][0.329318,0.354219,0.875259][0.541667,0.041667,0][-0.367712,-1.20886,-0.937961][0.135979,0.102761,0.985368][0.541667,0,0][2.85687e-007,-1.20853,-0.994198][0.0036976,0.21763,0.976024][0.5,0,0][2.85687e-007,-1.20853,-0.994198][0.0036976,0.21763,0.976024][0.5,0,0][3.18008e-007,-0.971626,-1.18487][0.00223611,0.371579,0.928399][0.5,0.041667,0][-0.391145,-0.972336,-1.11668][0.329318,0.354219,0.875259][0.541667,0.041667,0][-0.712547,-0.966245,-0.919762][0.0357721,0.0400703,0.998556][0.583333,0.041667,0][-0.641161,-1.09847,-0.927423][-0.133059,-0.226312,0.964924][0.583333,0,0][-0.367712,-1.20886,-0.937961][0.135979,0.102761,0.985368][0.541667,0,0][-0.367712,-1.20886,-0.937961][0.135979,0.102761,0.985368][0.541667,0,0][-0.391145,-0.972336,-1.11668][0.329318,0.354219,0.875259][0.541667,0.041667,0][-0.712547,-0.966245,-0.919762][0.0357721,0.0400703,0.998556][0.583333,0.041667,0][-0.957014,-0.97299,-0.693617][0.791086,0.335801,0.511294][0.625,0.041667,0][-0.764466,-1.24923,-0.580859][1.98923,2.78137,1.42994][0.625,0,0][-0.669721,-1.11851,-0.942115][0.272738,0.357886,0.893046][0.583333,0,0][-0.669721,-1.11851,-0.942115][0.272738,0.357886,0.893046][0.583333,0,0][-0.740734,-0.97299,-0.928288][0.336091,0.0812715,0.938316][0.583333,0.041667,0][-0.957014,-0.97299,-0.693617][0.791086,0.335801,0.511294][0.625,0.041667,0][0.765338,-0.449887,-0.95665][-0.327433,0.0102891,0.944819][0.416667,0.083333,0][0.740734,-0.97299,-0.928288][-0.365432,0.173813,0.914466][0.416667,0.041667,0][0.957014,-0.97299,-0.693617][-0.766472,0.33725,0.546611][0.375,0.041667,0][0.957014,-0.97299,-0.693617][-0.766472,0.33725,0.546611][0.375,0.041667,0][0.988802,-0.449887,-0.710417][-0.819991,0.0253017,0.571817][0.375,0.083333,0][0.765338,-0.449887,-0.95665][-0.327433,0.0102891,0.944819][0.416667,0.083333,0][0.402933,-0.454103,-1.17172][-0.364665,-0.000807264,0.931138][0.458333,0.083333,0][0.391145,-0.972336,-1.11668][-0.305324,0.336682,0.890743][0.458333,0.041667,0][0.712547,-0.966245,-0.919762][-0.0830325,0.0226362,0.99629][0.416667,0.041667,0][0.712547,-0.966245,-0.919762][-0.0830325,0.0226362,0.99629][0.416667,0.041667,0][0.735986,-0.452271,-0.951113][-0.184721,0.0139988,0.982691][0.416667,0.083333,0][0.402933,-0.454103,-1.17172][-0.364665,-0.000807264,0.931138][0.458333,0.083333,0][3.34456e-007,-0.453904,-1.24271][0.00150658,0.00122732,0.999998][0.5,0.083333,0][3.18008e-007,-0.971626,-1.18487][0.00223611,0.371579,0.928399][0.5,0.041667,0][0.391145,-0.972336,-1.11668][-0.305324,0.336682,0.890743][0.458333,0.041667,0][0.391145,-0.972336,-1.11668][-0.305324,0.336682,0.890743][0.458333,0.041667,0][0.402933,-0.454103,-1.17172][-0.364665,-0.000807264,0.931138][0.458333,0.083333,0][3.34456e-007,-0.453904,-1.24271][0.00150658,0.00122732,0.999998][0.5,0.083333,0][-0.402934,-0.454103,-1.17172][0.356923,0.00939631,0.934087][0.541667,0.083333,0][-0.391145,-0.972336,-1.11668][0.329318,0.354219,0.875259][0.541667,0.041667,0][3.18008e-007,-0.971626,-1.18487][0.00223611,0.371579,0.928399][0.5,0.041667,0][3.18008e-007,-0.971626,-1.18487][0.00223611,0.371579,0.928399][0.5,0.041667,0][3.34456e-007,-0.453904,-1.24271][0.00150658,0.00122732,0.999998][0.5,0.083333,0][-0.402934,-0.454103,-1.17172][0.356923,0.00939631,0.934087][0.541667,0.083333,0][-0.735987,-0.452271,-0.951113][0.18004,0.0510073,0.982336][0.583333,0.083333,0][-0.712547,-0.966245,-0.919762][0.0357721,0.0400703,0.998556][0.583333,0.041667,0][-0.391145,-0.972336,-1.11668][0.329318,0.354219,0.875259][0.541667,0.041667,0][-0.391145,-0.972336,-1.11668][0.329318,0.354219,0.875259][0.541667,0.041667,0][-0.402934,-0.454103,-1.17172][0.356923,0.00939631,0.934087][0.541667,0.083333,0][-0.735987,-0.452271,-0.951113][0.18004,0.0510073,0.982336][0.583333,0.083333,0][-0.988802,-0.449887,-0.710417][0.82397,0.0347341,0.565569][0.625,0.083333,0][-0.957014,-0.97299,-0.693617][0.791086,0.335801,0.511294][0.625,0.041667,0][-0.740734,-0.97299,-0.928288][0.336091,0.0812715,0.938316][0.583333,0.041667,0][-0.740734,-0.97299,-0.928288][0.336091,0.0812715,0.938316][0.583333,0.041667,0][-0.765338,-0.449887,-0.95665][0.334431,0.0408993,0.941532][0.583333,0.083333,0][-0.988802,-0.449887,-0.710417][0.82397,0.0347341,0.565569][0.625,0.083333,0][0.739963,-0.00752069,-0.944186][-0.514687,-0.00954207,0.857325][0.416667,0.125,0][0.765338,-0.449887,-0.95665][-0.327433,0.0102891,0.944819][0.416667,0.083333,0][0.988802,-0.449887,-0.710417][-0.819991,0.0253017,0.571817][0.375,0.083333,0][0.988802,-0.449887,-0.710417][-0.819991,0.0253017,0.571817][0.375,0.083333,0][0.988802,-0.00752069,-0.710417][-0.801473,0,0.59803][0.375,0.125,0][0.739963,-0.00752069,-0.944186][-0.514687,-0.00954207,0.857325][0.416667,0.125,0][0.402764,-0.0255995,-1.12431][-1.17945,-0.286199,3.13208][0.458333,0.125,0][0.402933,-0.454103,-1.17172][-0.364665,-0.000807264,0.931138][0.458333,0.083333,0][0.735986,-0.452271,-0.951113][-0.184721,0.0139988,0.982691][0.416667,0.083333,0][0.735986,-0.452271,-0.951113][-0.184721,0.0139988,0.982691][0.416667,0.083333,0][0.694424,-0.00788499,-0.9596][-1.76806,-0.064462,4.29176][0.416667,0.125,0][0.402764,-0.0255995,-1.12431][-1.17945,-0.286199,3.13208][0.458333,0.125,0][3.33907e-007,0.0512524,-1.18922][0.00920382,-0.292318,2.72877][0.5,0.125,0][3.34456e-007,-0.453904,-1.24271][0.00150658,0.00122732,0.999998][0.5,0.083333,0][0.402933,-0.454103,-1.17172][-0.364665,-0.000807264,0.931138][0.458333,0.083333,0][0.402933,-0.454103,-1.17172][-0.364665,-0.000807264,0.931138][0.458333,0.083333,0][0.402764,-0.0255995,-1.12431][-1.17945,-0.286199,3.13208][0.458333,0.125,0][3.33907e-007,0.0512524,-1.18922][0.00920382,-0.292318,2.72877][0.5,0.125,0][-0.37076,-0.0255995,-1.12755][1.00405,-0.395739,3.22005][0.541667,0.125,0][-0.402934,-0.454103,-1.17172][0.356923,0.00939631,0.934087][0.541667,0.083333,0][3.34456e-007,-0.453904,-1.24271][0.00150658,0.00122732,0.999998][0.5,0.083333,0][3.34456e-007,-0.453904,-1.24271][0.00150658,0.00122732,0.999998][0.5,0.083333,0][3.33907e-007,0.0512524,-1.18922][0.00920382,-0.292318,2.72877][0.5,0.125,0][-0.37076,-0.0255995,-1.12755][1.00405,-0.395739,3.22005][0.541667,0.125,0][-0.694978,-0.00788497,-0.971931][2.34758,-0.198959,4.02594][0.583333,0.125,0][-0.735987,-0.452271,-0.951113][0.18004,0.0510073,0.982336][0.583333,0.083333,0][-0.402934,-0.454103,-1.17172][0.356923,0.00939631,0.934087][0.541667,0.083333,0][-0.402934,-0.454103,-1.17172][0.356923,0.00939631,0.934087][0.541667,0.083333,0][-0.37076,-0.0255995,-1.12755][1.00405,-0.395739,3.22005][0.541667,0.125,0][-0.694978,-0.00788497,-0.971931][2.34758,-0.198959,4.02594][0.583333,0.125,0][-0.988802,-0.00752066,-0.710417][0.806312,-0.00894957,0.591422][0.625,0.125,0][-0.988802,-0.449887,-0.710417][0.82397,0.0347341,0.565569][0.625,0.083333,0][-0.765338,-0.449887,-0.95665][0.334431,0.0408993,0.941532][0.583333,0.083333,0][-0.765338,-0.449887,-0.95665][0.334431,0.0408993,0.941532][0.583333,0.083333,0][-0.739964,-0.00752066,-0.944186][0.606015,-0.0300106,0.794887][0.583333,0.125,0][-0.988802,-0.00752066,-0.710417][0.806312,-0.00894957,0.591422][0.625,0.125,0][0.739963,0.377865,-0.944186][-0.568105,-0.0226809,0.822643][0.416667,0.166667,0][0.739963,-0.00752069,-0.944186][-0.514687,-0.00954207,0.857325][0.416667,0.125,0][0.988802,-0.00752069,-0.710417][-0.801473,0,0.59803][0.375,0.125,0][0.988802,-0.00752069,-0.710417][-0.801473,0,0.59803][0.375,0.125,0][0.988802,0.377865,-0.710417][-0.799832,-0.0522881,0.597943][0.375,0.166667,0][0.739963,0.377865,-0.944186][-0.568105,-0.0226809,0.822643][0.416667,0.166667,0][-0.988802,0.377865,-0.710417][0.799867,-0.0515951,0.597955][0.625,0.166667,0][-0.988802,-0.00752066,-0.710417][0.806312,-0.00894957,0.591422][0.625,0.125,0][-0.739964,-0.00752066,-0.944186][0.606015,-0.0300106,0.794887][0.583333,0.125,0][-0.739964,-0.00752066,-0.944186][0.606015,-0.0300106,0.794887][0.583333,0.125,0][-0.739964,0.377865,-0.944186][0.590939,-0.0461039,0.805398][0.583333,0.166667,0][-0.988802,0.377865,-0.710417][0.799867,-0.0515951,0.597955][0.625,0.166667,0][0.710601,0.701305,-0.923835][-0.563446,-0.266719,0.781914][0.416667,0.208333,0][0.739963,0.377865,-0.944186][-0.568105,-0.0226809,0.822643][0.416667,0.166667,0][0.988802,0.377865,-0.710417][-0.799832,-0.0522881,0.597943][0.375,0.166667,0][0.988802,0.377865,-0.710417][-0.799832,-0.0522881,0.597943][0.375,0.166667,0][0.963655,0.701305,-0.687384][-0.774644,-0.26668,0.573419][0.375,0.208333,0][0.710601,0.701305,-0.923835][-0.563446,-0.266719,0.781914][0.416667,0.208333,0][0.398661,0.701305,-1.10566][-0.330292,-0.321337,0.887496][0.458333,0.208333,0][0.383983,0.481295,-1.14778][-0.302439,0.143605,0.942289][0.458333,0.166667,0][0.739963,0.377865,-0.944186][-0.568105,-0.0226809,0.822643][0.416667,0.166667,0][0.739963,0.377865,-0.944186][-0.568105,-0.0226809,0.822643][0.416667,0.166667,0][0.710601,0.701305,-0.923835][-0.563446,-0.266719,0.781914][0.416667,0.208333,0][0.398661,0.701305,-1.10566][-0.330292,-0.321337,0.887496][0.458333,0.208333,0][3.41259e-007,0.701305,-1.17376][0.00340276,-0.325893,0.945401][0.5,0.208333,0][3.42442e-007,0.481295,-1.20331][0.00228089,0.136526,0.990634][0.5,0.166667,0][0.383983,0.481295,-1.14778][-0.302439,0.143605,0.942289][0.458333,0.166667,0][0.383983,0.481295,-1.14778][-0.302439,0.143605,0.942289][0.458333,0.166667,0][0.398661,0.701305,-1.10566][-0.330292,-0.321337,0.887496][0.458333,0.208333,0][3.41259e-007,0.701305,-1.17376][0.00340276,-0.325893,0.945401][0.5,0.208333,0][-0.398661,0.701305,-1.10566][0.318401,-0.31543,0.893938][0.541667,0.208333,0][-0.383983,0.481295,-1.14778][0.300956,0.147786,0.942117][0.541667,0.166667,0][3.42442e-007,0.481295,-1.20331][0.00228089,0.136526,0.990634][0.5,0.166667,0][3.42442e-007,0.481295,-1.20331][0.00228089,0.136526,0.990634][0.5,0.166667,0][3.41259e-007,0.701305,-1.17376][0.00340276,-0.325893,0.945401][0.5,0.208333,0][-0.398661,0.701305,-1.10566][0.318401,-0.31543,0.893938][0.541667,0.208333,0][-0.710601,0.701305,-0.923835][0.577741,-0.265114,0.771965][0.583333,0.208333,0][-0.739964,0.377865,-0.944186][0.590939,-0.0461039,0.805398][0.583333,0.166667,0][-0.383983,0.481295,-1.14778][0.300956,0.147786,0.942117][0.541667,0.166667,0][-0.383983,0.481295,-1.14778][0.300956,0.147786,0.942117][0.541667,0.166667,0][-0.398661,0.701305,-1.10566][0.318401,-0.31543,0.893938][0.541667,0.208333,0][-0.710601,0.701305,-0.923835][0.577741,-0.265114,0.771965][0.583333,0.208333,0][-0.963655,0.701305,-0.687384][0.765836,-0.271559,0.582881][0.625,0.208333,0][-0.988802,0.377865,-0.710417][0.799867,-0.0515951,0.597955][0.625,0.166667,0][-0.739964,0.377865,-0.944186][0.590939,-0.0461039,0.805398][0.583333,0.166667,0][-0.739964,0.377865,-0.944186][0.590939,-0.0461039,0.805398][0.583333,0.166667,0][-0.710601,0.701305,-0.923835][0.577741,-0.265114,0.771965][0.583333,0.208333,0][-0.963655,0.701305,-0.687384][0.765836,-0.271559,0.582881][0.625,0.208333,0][0.68184,0.963486,-0.799095][-0.460925,-0.648519,0.605782][0.416667,0.25,0][0.710601,0.701305,-0.923835][-0.563446,-0.266719,0.781914][0.416667,0.208333,0][0.963655,0.701305,-0.687384][-0.774644,-0.26668,0.573419][0.375,0.208333,0][0.963655,0.701305,-0.687384][-0.774644,-0.26668,0.573419][0.375,0.208333,0][0.889634,0.905954,-0.615045][-0.680262,-0.552994,0.481084][0.375,0.25,0][0.68184,0.963486,-0.799095][-0.460925,-0.648519,0.605782][0.416667,0.25,0][0.363891,0.993003,-0.941255][-0.225016,-0.717515,0.659196][0.458333,0.25,0][0.398661,0.701305,-1.10566][-0.330292,-0.321337,0.887496][0.458333,0.208333,0][0.710601,0.701305,-0.923835][-0.563446,-0.266719,0.781914][0.416667,0.208333,0][0.710601,0.701305,-0.923835][-0.563446,-0.266719,0.781914][0.416667,0.208333,0][0.68184,0.963486,-0.799095][-0.460925,-0.648519,0.605782][0.416667,0.25,0][0.363891,0.993003,-0.941255][-0.225016,-0.717515,0.659196][0.458333,0.25,0][3.19248e-007,0.993003,-0.999199][-0.0037986,-0.735447,0.677572][0.5,0.25,0][3.41259e-007,0.701305,-1.17376][0.00340276,-0.325893,0.945401][0.5,0.208333,0][0.398661,0.701305,-1.10566][-0.330292,-0.321337,0.887496][0.458333,0.208333,0][0.398661,0.701305,-1.10566][-0.330292,-0.321337,0.887496][0.458333,0.208333,0][0.363891,0.993003,-0.941255][-0.225016,-0.717515,0.659196][0.458333,0.25,0][3.19248e-007,0.993003,-0.999199][-0.0037986,-0.735447,0.677572][0.5,0.25,0][-0.363892,0.993003,-0.941255][0.220532,-0.721267,0.656613][0.541667,0.25,0][-0.398661,0.701305,-1.10566][0.318401,-0.31543,0.893938][0.541667,0.208333,0][3.41259e-007,0.701305,-1.17376][0.00340276,-0.325893,0.945401][0.5,0.208333,0][3.41259e-007,0.701305,-1.17376][0.00340276,-0.325893,0.945401][0.5,0.208333,0][3.19248e-007,0.993003,-0.999199][-0.0037986,-0.735447,0.677572][0.5,0.25,0][-0.363892,0.993003,-0.941255][0.220532,-0.721267,0.656613][0.541667,0.25,0][-0.68184,0.963486,-0.799095][0.476278,-0.646864,0.595589][0.583333,0.25,0][-0.710601,0.701305,-0.923835][0.577741,-0.265114,0.771965][0.583333,0.208333,0][-0.398661,0.701305,-1.10566][0.318401,-0.31543,0.893938][0.541667,0.208333,0][-0.398661,0.701305,-1.10566][0.318401,-0.31543,0.893938][0.541667,0.208333,0][-0.363892,0.993003,-0.941255][0.220532,-0.721267,0.656613][0.541667,0.25,0][-0.68184,0.963486,-0.799095][0.476278,-0.646864,0.595589][0.583333,0.25,0][-0.889634,0.905954,-0.615045][0.663021,-0.559606,0.497237][0.625,0.25,0][-0.963655,0.701305,-0.687384][0.765836,-0.271559,0.582881][0.625,0.208333,0][-0.710601,0.701305,-0.923835][0.577741,-0.265114,0.771965][0.583333,0.208333,0][-0.710601,0.701305,-0.923835][0.577741,-0.265114,0.771965][0.583333,0.208333,0][-0.68184,0.963486,-0.799095][0.476278,-0.646864,0.595589][0.583333,0.25,0][-0.889634,0.905954,-0.615045][0.663021,-0.559606,0.497237][0.625,0.25,0][0.748691,1.06106,-0.548442][-0.373461,-0.872403,0.315341][0.416667,0.291667,0][0.68184,0.963486,-0.799095][-0.460925,-0.648519,0.605782][0.416667,0.25,0][0.889634,0.905954,-0.615045][-0.680262,-0.552994,0.481084][0.375,0.25,0][0.889634,0.905954,-0.615045][-0.680262,-0.552994,0.481084][0.375,0.25,0][1.00866,0.96504,-0.34717][-0.731578,-0.627069,0.267542][0.375,0.291667,0][0.748691,1.06106,-0.548442][-0.373461,-0.872403,0.315341][0.416667,0.291667,0][0.376829,1.08715,-0.734723][-0.126904,-0.947003,0.295094][0.458333,0.291667,0][0.363891,0.993003,-0.941255][-0.225016,-0.717515,0.659196][0.458333,0.25,0][0.68184,0.963486,-0.799095][-0.460925,-0.648519,0.605782][0.416667,0.25,0][0.68184,0.963486,-0.799095][-0.460925,-0.648519,0.605782][0.416667,0.25,0][0.748691,1.06106,-0.548442][-0.373461,-0.872403,0.315341][0.416667,0.291667,0][0.376829,1.08715,-0.734723][-0.126904,-0.947003,0.295094][0.458333,0.291667,0][2.87538e-007,1.08715,-0.779905][-0.00387829,-0.960636,0.277782][0.5,0.291667,0][3.19248e-007,0.993003,-0.999199][-0.0037986,-0.735447,0.677572][0.5,0.25,0][0.363891,0.993003,-0.941255][-0.225016,-0.717515,0.659196][0.458333,0.25,0][0.363891,0.993003,-0.941255][-0.225016,-0.717515,0.659196][0.458333,0.25,0][0.376829,1.08715,-0.734723][-0.126904,-0.947003,0.295094][0.458333,0.291667,0][2.87538e-007,1.08715,-0.779905][-0.00387829,-0.960636,0.277782][0.5,0.291667,0][-0.376829,1.08715,-0.734723][0.1288,-0.94605,0.29732][0.541667,0.291667,0][-0.363892,0.993003,-0.941255][0.220532,-0.721267,0.656613][0.541667,0.25,0][3.19248e-007,0.993003,-0.999199][-0.0037986,-0.735447,0.677572][0.5,0.25,0][3.19248e-007,0.993003,-0.999199][-0.0037986,-0.735447,0.677572][0.5,0.25,0][2.87538e-007,1.08715,-0.779905][-0.00387829,-0.960636,0.277782][0.5,0.291667,0][-0.376829,1.08715,-0.734723][0.1288,-0.94605,0.29732][0.541667,0.291667,0][-0.748691,1.06106,-0.548442][0.392073,-0.861875,0.321636][0.583333,0.291667,0][-0.68184,0.963486,-0.799095][0.476278,-0.646864,0.595589][0.583333,0.25,0][-0.363892,0.993003,-0.941255][0.220532,-0.721267,0.656613][0.541667,0.25,0][-0.363892,0.993003,-0.941255][0.220532,-0.721267,0.656613][0.541667,0.25,0][-0.376829,1.08715,-0.734723][0.1288,-0.94605,0.29732][0.541667,0.291667,0][-0.748691,1.06106,-0.548442][0.392073,-0.861875,0.321636][0.583333,0.291667,0][-1.00866,0.96504,-0.34717][0.723345,-0.644957,0.246581][0.625,0.291667,0][-0.889634,0.905954,-0.615045][0.663021,-0.559606,0.497237][0.625,0.25,0][-0.68184,0.963486,-0.799095][0.476278,-0.646864,0.595589][0.583333,0.25,0][-0.68184,0.963486,-0.799095][0.476278,-0.646864,0.595589][0.583333,0.25,0][-0.748691,1.06106,-0.548442][0.392073,-0.861875,0.321636][0.583333,0.291667,0][-1.00866,0.96504,-0.34717][0.723345,-0.644957,0.246581][0.625,0.291667,0][0.78317,1.10325,-0.314024][-0.301538,-0.944156,0.132833][0.416667,0.333333,0][0.748691,1.06106,-0.548442][-0.373461,-0.872403,0.315341][0.416667,0.291667,0][1.00866,0.96504,-0.34717][-0.731578,-0.627069,0.267542][0.375,0.291667,0][1.00866,0.96504,-0.34717][-0.731578,-0.627069,0.267542][0.375,0.291667,0][1.03091,0.980097,-0.17534][-0.735417,-0.669709,0.103211][0.375,0.333333,0][0.78317,1.10325,-0.314024][-0.301538,-0.944156,0.132833][0.416667,0.333333,0][0.398076,1.1345,-0.396345][-0.0606162,-0.99341,0.0972724][0.458333,0.333333,0][0.376829,1.08715,-0.734723][-0.126904,-0.947003,0.295094][0.458333,0.291667,0][0.748691,1.06106,-0.548442][-0.373461,-0.872403,0.315341][0.416667,0.291667,0][0.748691,1.06106,-0.548442][-0.373461,-0.872403,0.315341][0.416667,0.291667,0][0.78317,1.10325,-0.314024][-0.301538,-0.944156,0.132833][0.416667,0.333333,0][0.398076,1.1345,-0.396345][-0.0606162,-0.99341,0.0972724][0.458333,0.333333,0][2.33993e-007,1.1345,-0.420619][-0.0013731,-0.99632,0.0857049][0.5,0.333333,0][2.87538e-007,1.08715,-0.779905][-0.00387829,-0.960636,0.277782][0.5,0.291667,0][0.376829,1.08715,-0.734723][-0.126904,-0.947003,0.295094][0.458333,0.291667,0][0.376829,1.08715,-0.734723][-0.126904,-0.947003,0.295094][0.458333,0.291667,0][0.398076,1.1345,-0.396345][-0.0606162,-0.99341,0.0972724][0.458333,0.333333,0][2.33993e-007,1.1345,-0.420619][-0.0013731,-0.99632,0.0857049][0.5,0.333333,0][-0.398076,1.1345,-0.396345][0.0538746,-0.99425,0.0925493][0.541667,0.333333,0][-0.376829,1.08715,-0.734723][0.1288,-0.94605,0.29732][0.541667,0.291667,0][2.87538e-007,1.08715,-0.779905][-0.00387829,-0.960636,0.277782][0.5,0.291667,0][2.87538e-007,1.08715,-0.779905][-0.00387829,-0.960636,0.277782][0.5,0.291667,0][2.33993e-007,1.1345,-0.420619][-0.0013731,-0.99632,0.0857049][0.5,0.333333,0][-0.398076,1.1345,-0.396345][0.0538746,-0.99425,0.0925493][0.541667,0.333333,0][-0.78317,1.10325,-0.314024][0.324152,-0.935903,0.137882][0.583333,0.333333,0][-0.748691,1.06106,-0.548442][0.392073,-0.861875,0.321636][0.583333,0.291667,0][-0.376829,1.08715,-0.734723][0.1288,-0.94605,0.29732][0.541667,0.291667,0][-0.376829,1.08715,-0.734723][0.1288,-0.94605,0.29732][0.541667,0.291667,0][-0.398076,1.1345,-0.396345][0.0538746,-0.99425,0.0925493][0.541667,0.333333,0][-0.78317,1.10325,-0.314024][0.324152,-0.935903,0.137882][0.583333,0.333333,0][-1.03091,0.980097,-0.17534][0.733747,-0.671098,0.106033][0.625,0.333333,0][-1.00866,0.96504,-0.34717][0.723345,-0.644957,0.246581][0.625,0.291667,0][-0.748691,1.06106,-0.548442][0.392073,-0.861875,0.321636][0.583333,0.291667,0][-0.748691,1.06106,-0.548442][0.392073,-0.861875,0.321636][0.583333,0.291667,0][-0.78317,1.10325,-0.314024][0.324152,-0.935903,0.137882][0.583333,0.333333,0][-1.03091,0.980097,-0.17534][0.733747,-0.671098,0.106033][0.625,0.333333,0][0.800626,1.11756,-0.00351102][-0.296218,-0.955119,-0.00151375][0.416667,0.375,0][0.78317,1.10325,-0.314024][-0.301538,-0.944156,0.132833][0.416667,0.333333,0][1.03091,0.980097,-0.17534][-0.735417,-0.669709,0.103211][0.375,0.333333,0][1.03091,0.980097,-0.17534][-0.735417,-0.669709,0.103211][0.375,0.333333,0][1.04389,0.980097,-0.00351098][-0.744623,-0.667433,-0.00841279][0.375,0.375,0][0.800626,1.11756,-0.00351102][-0.296218,-0.955119,-0.00151375][0.416667,0.375,0][0.409064,1.1488,-0.00351108][-0.042113,-0.999112,0.00159856][0.458333,0.375,0][0.398076,1.1345,-0.396345][-0.0606162,-0.99341,0.0972724][0.458333,0.333333,0][0.78317,1.10325,-0.314024][-0.301538,-0.944156,0.132833][0.416667,0.333333,0][0.78317,1.10325,-0.314024][-0.301538,-0.944156,0.132833][0.416667,0.333333,0][0.800626,1.11756,-0.00351102][-0.296218,-0.955119,-0.00151375][0.416667,0.375,0][0.409064,1.1488,-0.00351108][-0.042113,-0.999112,0.00159856][0.458333,0.375,0][1.71224e-007,1.1488,-0.00351114][0,-1,0][0.5,0.375,0][2.33993e-007,1.1345,-0.420619][-0.0013731,-0.99632,0.0857049][0.5,0.333333,0][0.398076,1.1345,-0.396345][-0.0606162,-0.99341,0.0972724][0.458333,0.333333,0][0.398076,1.1345,-0.396345][-0.0606162,-0.99341,0.0972724][0.458333,0.333333,0][0.409064,1.1488,-0.00351108][-0.042113,-0.999112,0.00159856][0.458333,0.375,0][1.71224e-007,1.1488,-0.00351114][0,-1,0][0.5,0.375,0][-0.409064,1.1488,-0.0035112][0.042113,-0.999112,-0.00159846][0.541667,0.375,0][-0.398076,1.1345,-0.396345][0.0538746,-0.99425,0.0925493][0.541667,0.333333,0][2.33993e-007,1.1345,-0.420619][-0.0013731,-0.99632,0.0857049][0.5,0.333333,0][2.33993e-007,1.1345,-0.420619][-0.0013731,-0.99632,0.0857049][0.5,0.333333,0][1.71224e-007,1.1488,-0.00351114][0,-1,0][0.5,0.375,0][-0.409064,1.1488,-0.0035112][0.042113,-0.999112,-0.00159846][0.541667,0.375,0][-0.800626,1.11756,-0.00351126][0.296217,-0.955119,0.00151367][0.583333,0.375,0][-0.78317,1.10325,-0.314024][0.324152,-0.935903,0.137882][0.583333,0.333333,0][-0.398076,1.1345,-0.396345][0.0538746,-0.99425,0.0925493][0.541667,0.333333,0][-0.398076,1.1345,-0.396345][0.0538746,-0.99425,0.0925493][0.541667,0.333333,0][-0.409064,1.1488,-0.0035112][0.042113,-0.999112,-0.00159846][0.541667,0.375,0][-0.800626,1.11756,-0.00351126][0.296217,-0.955119,0.00151367][0.583333,0.375,0][-1.04389,0.980097,-0.0035113][0.744623,-0.667432,0.00841215][0.625,0.375,0][-1.03091,0.980097,-0.17534][0.733747,-0.671098,0.106033][0.625,0.333333,0][-0.78317,1.10325,-0.314024][0.324152,-0.935903,0.137882][0.583333,0.333333,0][-0.78317,1.10325,-0.314024][0.324152,-0.935903,0.137882][0.583333,0.333333,0][-0.800626,1.11756,-0.00351126][0.296217,-0.955119,0.00151367][0.583333,0.375,0][-1.04389,0.980097,-0.0035113][0.744623,-0.667432,0.00841215][0.625,0.375,0][0.78317,1.10325,0.307003][-0.324152,-0.935903,-0.137881][0.416667,0.416667,0][0.800626,1.11756,-0.00351102][-0.296218,-0.955119,-0.00151375][0.416667,0.375,0][1.04389,0.980097,-0.00351098][-0.744623,-0.667433,-0.00841279][0.375,0.375,0][1.04389,0.980097,-0.00351098][-0.744623,-0.667433,-0.00841279][0.375,0.375,0][1.03091,0.980097,0.168319][-0.733747,-0.671098,-0.106031][0.375,0.416667,0][0.78317,1.10325,0.307003][-0.324152,-0.935903,-0.137881][0.416667,0.416667,0][0.398076,1.1345,0.389324][-0.0538747,-0.99425,-0.0925495][0.458333,0.416667,0][0.409064,1.1488,-0.00351108][-0.042113,-0.999112,0.00159856][0.458333,0.375,0][0.800626,1.11756,-0.00351102][-0.296218,-0.955119,-0.00151375][0.416667,0.375,0][0.800626,1.11756,-0.00351102][-0.296218,-0.955119,-0.00151375][0.416667,0.375,0][0.78317,1.10325,0.307003][-0.324152,-0.935903,-0.137881][0.416667,0.416667,0][0.398076,1.1345,0.389324][-0.0538747,-0.99425,-0.0925495][0.458333,0.416667,0][0,1.1345,0.413598][0.00137311,-0.99632,-0.085705][0.5,0.416667,0][1.71224e-007,1.1488,-0.00351114][0,-1,0][0.5,0.375,0][0.409064,1.1488,-0.00351108][-0.042113,-0.999112,0.00159856][0.458333,0.375,0][0.409064,1.1488,-0.00351108][-0.042113,-0.999112,0.00159856][0.458333,0.375,0][0.398076,1.1345,0.389324][-0.0538747,-0.99425,-0.0925495][0.458333,0.416667,0][0,1.1345,0.413598][0.00137311,-0.99632,-0.085705][0.5,0.416667,0][-0.398076,1.1345,0.389324][0.0606161,-0.99341,-0.0972725][0.541667,0.416667,0][-0.409064,1.1488,-0.0035112][0.042113,-0.999112,-0.00159846][0.541667,0.375,0][1.71224e-007,1.1488,-0.00351114][0,-1,0][0.5,0.375,0][1.71224e-007,1.1488,-0.00351114][0,-1,0][0.5,0.375,0][0,1.1345,0.413598][0.00137311,-0.99632,-0.085705][0.5,0.416667,0][-0.398076,1.1345,0.389324][0.0606161,-0.99341,-0.0972725][0.541667,0.416667,0][-0.78317,1.10325,0.307003][0.301538,-0.944156,-0.132833][0.583333,0.416667,0][-0.800626,1.11756,-0.00351126][0.296217,-0.955119,0.00151367][0.583333,0.375,0][-0.409064,1.1488,-0.0035112][0.042113,-0.999112,-0.00159846][0.541667,0.375,0][-0.409064,1.1488,-0.0035112][0.042113,-0.999112,-0.00159846][0.541667,0.375,0][-0.398076,1.1345,0.389324][0.0606161,-0.99341,-0.0972725][0.541667,0.416667,0][-0.78317,1.10325,0.307003][0.301538,-0.944156,-0.132833][0.583333,0.416667,0][-1.03091,0.980097,0.168319][0.735416,-0.669709,-0.103212][0.625,0.416667,0][-1.04389,0.980097,-0.0035113][0.744623,-0.667432,0.00841215][0.625,0.375,0][-0.800626,1.11756,-0.00351126][0.296217,-0.955119,0.00151367][0.583333,0.375,0][-0.800626,1.11756,-0.00351126][0.296217,-0.955119,0.00151367][0.583333,0.375,0][-0.78317,1.10325,0.307003][0.301538,-0.944156,-0.132833][0.583333,0.416667,0][-1.03091,0.980097,0.168319][0.735416,-0.669709,-0.103212][0.625,0.416667,0][0.748691,1.06106,0.541421][-0.392073,-0.861875,-0.321637][0.416667,0.458333,0][0.78317,1.10325,0.307003][-0.324152,-0.935903,-0.137881][0.416667,0.416667,0][1.03091,0.980097,0.168319][-0.733747,-0.671098,-0.106031][0.375,0.416667,0][1.03091,0.980097,0.168319][-0.733747,-0.671098,-0.106031][0.375,0.416667,0][1.00866,0.96504,0.340148][-0.723345,-0.644957,-0.246582][0.375,0.458333,0][0.748691,1.06106,0.541421][-0.392073,-0.861875,-0.321637][0.416667,0.458333,0][0.376829,1.08715,0.727701][-0.1288,-0.94605,-0.29732][0.458333,0.458333,0][0.398076,1.1345,0.389324][-0.0538747,-0.99425,-0.0925495][0.458333,0.416667,0][0.78317,1.10325,0.307003][-0.324152,-0.935903,-0.137881][0.416667,0.416667,0][0.78317,1.10325,0.307003][-0.324152,-0.935903,-0.137881][0.416667,0.416667,0][0.748691,1.06106,0.541421][-0.392073,-0.861875,-0.321637][0.416667,0.458333,0][0.376829,1.08715,0.727701][-0.1288,-0.94605,-0.29732][0.458333,0.458333,0][0,1.08715,0.772883][0.00387805,-0.960636,-0.277782][0.5,0.458333,0][0,1.1345,0.413598][0.00137311,-0.99632,-0.085705][0.5,0.416667,0][0.398076,1.1345,0.389324][-0.0538747,-0.99425,-0.0925495][0.458333,0.416667,0][0.398076,1.1345,0.389324][-0.0538747,-0.99425,-0.0925495][0.458333,0.416667,0][0.376829,1.08715,0.727701][-0.1288,-0.94605,-0.29732][0.458333,0.458333,0][0,1.08715,0.772883][0.00387805,-0.960636,-0.277782][0.5,0.458333,0][-0.376829,1.08715,0.727701][0.126904,-0.947003,-0.295093][0.541667,0.458333,0][-0.398076,1.1345,0.389324][0.0606161,-0.99341,-0.0972725][0.541667,0.416667,0][0,1.1345,0.413598][0.00137311,-0.99632,-0.085705][0.5,0.416667,0][0,1.1345,0.413598][0.00137311,-0.99632,-0.085705][0.5,0.416667,0][0,1.08715,0.772883][0.00387805,-0.960636,-0.277782][0.5,0.458333,0][-0.376829,1.08715,0.727701][0.126904,-0.947003,-0.295093][0.541667,0.458333,0][-0.748691,1.06106,0.541421][0.373461,-0.872403,-0.315342][0.583333,0.458333,0][-0.78317,1.10325,0.307003][0.301538,-0.944156,-0.132833][0.583333,0.416667,0][-0.398076,1.1345,0.389324][0.0606161,-0.99341,-0.0972725][0.541667,0.416667,0][-0.398076,1.1345,0.389324][0.0606161,-0.99341,-0.0972725][0.541667,0.416667,0][-0.376829,1.08715,0.727701][0.126904,-0.947003,-0.295093][0.541667,0.458333,0][-0.748691,1.06106,0.541421][0.373461,-0.872403,-0.315342][0.583333,0.458333,0][-1.00866,0.96504,0.340148][0.731578,-0.627069,-0.267542][0.625,0.458333,0][-1.03091,0.980097,0.168319][0.735416,-0.669709,-0.103212][0.625,0.416667,0][-0.78317,1.10325,0.307003][0.301538,-0.944156,-0.132833][0.583333,0.416667,0][-0.78317,1.10325,0.307003][0.301538,-0.944156,-0.132833][0.583333,0.416667,0][-0.748691,1.06106,0.541421][0.373461,-0.872403,-0.315342][0.583333,0.458333,0][-1.00866,0.96504,0.340148][0.731578,-0.627069,-0.267542][0.625,0.458333,0][0.68184,0.963486,0.792073][-0.480138,-0.6407,-0.599142][0.416667,0.5,0][0.748691,1.06106,0.541421][-0.392073,-0.861875,-0.321637][0.416667,0.458333,0][1.00866,0.96504,0.340148][-0.723345,-0.644957,-0.246582][0.375,0.458333,0][1.00866,0.96504,0.340148][-0.723345,-0.644957,-0.246582][0.375,0.458333,0][0.889634,0.905954,0.608024][-0.662035,-0.557836,-0.500528][0.375,0.5,0][0.68184,0.963486,0.792073][-0.480138,-0.6407,-0.599142][0.416667,0.5,0][0.363891,0.993003,0.934234][-0.220531,-0.721267,-0.656612][0.458333,0.5,0][0.376829,1.08715,0.727701][-0.1288,-0.94605,-0.29732][0.458333,0.458333,0][0.748691,1.06106,0.541421][-0.392073,-0.861875,-0.321637][0.416667,0.458333,0][0.748691,1.06106,0.541421][-0.392073,-0.861875,-0.321637][0.416667,0.458333,0][0.68184,0.963486,0.792073][-0.480138,-0.6407,-0.599142][0.416667,0.5,0][0.363891,0.993003,0.934234][-0.220531,-0.721267,-0.656612][0.458333,0.5,0][0,0.993003,0.992177][0.0037983,-0.735447,-0.677572][0.5,0.5,0][0,1.08715,0.772883][0.00387805,-0.960636,-0.277782][0.5,0.458333,0][0.376829,1.08715,0.727701][-0.1288,-0.94605,-0.29732][0.458333,0.458333,0][0.376829,1.08715,0.727701][-0.1288,-0.94605,-0.29732][0.458333,0.458333,0][0.363891,0.993003,0.934234][-0.220531,-0.721267,-0.656612][0.458333,0.5,0][0,0.993003,0.992177][0.0037983,-0.735447,-0.677572][0.5,0.5,0][-0.363892,0.993003,0.934234][0.228252,-0.715702,-0.660054][0.541667,0.5,0][-0.376829,1.08715,0.727701][0.126904,-0.947003,-0.295093][0.541667,0.458333,0][0,1.08715,0.772883][0.00387805,-0.960636,-0.277782][0.5,0.458333,0][0,1.08715,0.772883][0.00387805,-0.960636,-0.277782][0.5,0.458333,0][0,0.993003,0.992177][0.0037983,-0.735447,-0.677572][0.5,0.5,0][-0.363892,0.993003,0.934234][0.228252,-0.715702,-0.660054][0.541667,0.5,0][-0.68184,0.963486,0.792073][0.460709,-0.642021,-0.612826][0.583333,0.5,0][-0.748691,1.06106,0.541421][0.373461,-0.872403,-0.315342][0.583333,0.458333,0][-0.376829,1.08715,0.727701][0.126904,-0.947003,-0.295093][0.541667,0.458333,0][-0.376829,1.08715,0.727701][0.126904,-0.947003,-0.295093][0.541667,0.458333,0][-0.363892,0.993003,0.934234][0.228252,-0.715702,-0.660054][0.541667,0.5,0][-0.68184,0.963486,0.792073][0.460709,-0.642021,-0.612826][0.583333,0.5,0][-0.889634,0.905954,0.608024][0.680262,-0.552993,-0.481085][0.625,0.5,0][-1.00866,0.96504,0.340148][0.731578,-0.627069,-0.267542][0.625,0.458333,0][-0.748691,1.06106,0.541421][0.373461,-0.872403,-0.315342][0.583333,0.458333,0][-0.748691,1.06106,0.541421][0.373461,-0.872403,-0.315342][0.583333,0.458333,0][-0.68184,0.963486,0.792073][0.460709,-0.642021,-0.612826][0.583333,0.5,0][-0.889634,0.905954,0.608024][0.680262,-0.552993,-0.481085][0.625,0.5,0][0.710601,0.701305,0.908396][-0.576567,-0.285773,-0.765444][0.416667,0.541667,0][0.68184,0.963486,0.792073][-0.480138,-0.6407,-0.599142][0.416667,0.5,0][0.889634,0.905954,0.608024][-0.662035,-0.557836,-0.500528][0.375,0.5,0][0.889634,0.905954,0.608024][-0.662035,-0.557836,-0.500528][0.375,0.5,0][0.963655,0.701305,0.680362][-0.764197,-0.279969,-0.581051][0.375,0.541667,0][0.710601,0.701305,0.908396][-0.576567,-0.285773,-0.765444][0.416667,0.541667,0][0.398661,0.701305,1.09863][-0.322189,-0.338729,-0.884][0.458333,0.541667,0][0.363891,0.993003,0.934234][-0.220531,-0.721267,-0.656612][0.458333,0.5,0][0.68184,0.963486,0.792073][-0.480138,-0.6407,-0.599142][0.416667,0.5,0][0.68184,0.963486,0.792073][-0.480138,-0.6407,-0.599142][0.416667,0.5,0][0.710601,0.701305,0.908396][-0.576567,-0.285773,-0.765444][0.416667,0.541667,0][0.398661,0.701305,1.09863][-0.322189,-0.338729,-0.884][0.458333,0.541667,0][0,0.701305,1.16674][0.00198484,-0.360296,-0.932836][0.5,0.541667,0][0,0.993003,0.992177][0.0037983,-0.735447,-0.677572][0.5,0.5,0][0.363891,0.993003,0.934234][-0.220531,-0.721267,-0.656612][0.458333,0.5,0][0.363891,0.993003,0.934234][-0.220531,-0.721267,-0.656612][0.458333,0.5,0][0.398661,0.701305,1.09863][-0.322189,-0.338729,-0.884][0.458333,0.541667,0][0,0.701305,1.16674][0.00198484,-0.360296,-0.932836][0.5,0.541667,0][-0.398661,0.701305,1.09863][0.332794,-0.342182,-0.878726][0.541667,0.541667,0][-0.363892,0.993003,0.934234][0.228252,-0.715702,-0.660054][0.541667,0.5,0][0,0.993003,0.992177][0.0037983,-0.735447,-0.677572][0.5,0.5,0][0,0.993003,0.992177][0.0037983,-0.735447,-0.677572][0.5,0.5,0][0,0.701305,1.16674][0.00198484,-0.360296,-0.932836][0.5,0.541667,0][-0.398661,0.701305,1.09863][0.332794,-0.342182,-0.878726][0.541667,0.541667,0][-0.710601,0.701305,0.908396][0.564367,-0.279632,-0.776721][0.583333,0.541667,0][-0.68184,0.963486,0.792073][0.460709,-0.642021,-0.612826][0.583333,0.5,0][-0.363892,0.993003,0.934234][0.228252,-0.715702,-0.660054][0.541667,0.5,0][-0.363892,0.993003,0.934234][0.228252,-0.715702,-0.660054][0.541667,0.5,0][-0.398661,0.701305,1.09863][0.332794,-0.342182,-0.878726][0.541667,0.541667,0][-0.710601,0.701305,0.908396][0.564367,-0.279632,-0.776721][0.583333,0.541667,0][-0.963655,0.701305,0.680362][0.771005,-0.264693,-0.579214][0.625,0.541667,0][-0.889634,0.905954,0.608024][0.680262,-0.552993,-0.481085][0.625,0.5,0][-0.68184,0.963486,0.792073][0.460709,-0.642021,-0.612826][0.583333,0.5,0][-0.68184,0.963486,0.792073][0.460709,-0.642021,-0.612826][0.583333,0.5,0][-0.710601,0.701305,0.908396][0.564367,-0.279632,-0.776721][0.583333,0.541667,0][-0.963655,0.701305,0.680362][0.771005,-0.264693,-0.579214][0.625,0.541667,0][0.782216,0.377865,0.920063][-0.634704,-0.0723022,-0.769366][0.416667,0.583333,0][0.710601,0.701305,0.908396][-0.576567,-0.285773,-0.765444][0.416667,0.541667,0][0.963655,0.701305,0.680362][-0.764197,-0.279969,-0.581051][0.375,0.541667,0][0.963655,0.701305,0.680362][-0.764197,-0.279969,-0.581051][0.375,0.541667,0][0.988802,0.377865,0.703396][-0.815993,-0.051485,-0.575765][0.375,0.583333,0][0.782216,0.377865,0.920063][-0.634704,-0.0723022,-0.769366][0.416667,0.583333,0][0.409064,0.377865,1.16491][-0.360868,-0.0946683,-0.9278][0.458333,0.583333,0][0.398661,0.701305,1.09863][-0.322189,-0.338729,-0.884][0.458333,0.541667,0][0.710601,0.701305,0.908396][-0.576567,-0.285773,-0.765444][0.416667,0.541667,0][0.710601,0.701305,0.908396][-0.576567,-0.285773,-0.765444][0.416667,0.541667,0][0.782216,0.377865,0.920063][-0.634704,-0.0723022,-0.769366][0.416667,0.583333,0][0.409064,0.377865,1.16491][-0.360868,-0.0946683,-0.9278][0.458333,0.583333,0][0,0.377865,1.23711][0.000726831,-0.104977,-0.994474][0.5,0.583333,0][0,0.701305,1.16674][0.00198484,-0.360296,-0.932836][0.5,0.541667,0][0.398661,0.701305,1.09863][-0.322189,-0.338729,-0.884][0.458333,0.541667,0][0.398661,0.701305,1.09863][-0.322189,-0.338729,-0.884][0.458333,0.541667,0][0.409064,0.377865,1.16491][-0.360868,-0.0946683,-0.9278][0.458333,0.583333,0][0,0.377865,1.23711][0.000726831,-0.104977,-0.994474][0.5,0.583333,0][-0.409064,0.377865,1.16491][0.363763,-0.0992866,-0.926185][0.541667,0.583333,0][-0.398661,0.701305,1.09863][0.332794,-0.342182,-0.878726][0.541667,0.541667,0][0,0.701305,1.16674][0.00198484,-0.360296,-0.932836][0.5,0.541667,0][0,0.701305,1.16674][0.00198484,-0.360296,-0.932836][0.5,0.541667,0][0,0.377865,1.23711][0.000726831,-0.104977,-0.994474][0.5,0.583333,0][-0.409064,0.377865,1.16491][0.363763,-0.0992866,-0.926185][0.541667,0.583333,0][-0.782216,0.377865,0.920063][0.638825,-0.0873504,-0.764377][0.583333,0.583333,0][-0.710601,0.701305,0.908396][0.564367,-0.279632,-0.776721][0.583333,0.541667,0][-0.398661,0.701305,1.09863][0.332794,-0.342182,-0.878726][0.541667,0.541667,0][-0.398661,0.701305,1.09863][0.332794,-0.342182,-0.878726][0.541667,0.541667,0][-0.409064,0.377865,1.16491][0.363763,-0.0992866,-0.926185][0.541667,0.583333,0][-0.782216,0.377865,0.920063][0.638825,-0.0873504,-0.764377][0.583333,0.583333,0][-0.988802,0.377865,0.703396][0.810197,-0.0615556,-0.582917][0.625,0.583333,0][-0.963655,0.701305,0.680362][0.771005,-0.264693,-0.579214][0.625,0.541667,0][-0.710601,0.701305,0.908396][0.564367,-0.279632,-0.776721][0.583333,0.541667,0][-0.710601,0.701305,0.908396][0.564367,-0.279632,-0.776721][0.583333,0.541667,0][-0.782216,0.377865,0.920063][0.638825,-0.0873504,-0.764377][0.583333,0.583333,0][-0.988802,0.377865,0.703396][0.810197,-0.0615556,-0.582917][0.625,0.583333,0][0.782216,-0.00752069,0.920063][-0.640351,0,-0.768082][0.416667,0.625,0][0.782216,0.377865,0.920063][-0.634704,-0.0723022,-0.769366][0.416667,0.583333,0][0.988802,0.377865,0.703396][-0.815993,-0.051485,-0.575765][0.375,0.583333,0][0.988802,0.377865,0.703396][-0.815993,-0.051485,-0.575765][0.375,0.583333,0][0.988802,-0.00752069,0.703396][-0.817622,0,-0.575755][0.375,0.625,0][0.782216,-0.00752069,0.920063][-0.640351,0,-0.768082][0.416667,0.625,0][0.409064,-0.00752068,1.16491][-0.368781,0,-0.929516][0.458333,0.625,0][0.409064,0.377865,1.16491][-0.360868,-0.0946683,-0.9278][0.458333,0.583333,0][0.782216,0.377865,0.920063][-0.634704,-0.0723022,-0.769366][0.416667,0.583333,0][0.782216,0.377865,0.920063][-0.634704,-0.0723022,-0.769366][0.416667,0.583333,0][0.782216,-0.00752069,0.920063][-0.640351,0,-0.768082][0.416667,0.625,0][0.409064,-0.00752068,1.16491][-0.368781,0,-0.929516][0.458333,0.625,0][0,-0.00752068,1.23711][1.46068e-007,0,-1][0.5,0.625,0][0,0.377865,1.23711][0.000726831,-0.104977,-0.994474][0.5,0.583333,0][0.409064,0.377865,1.16491][-0.360868,-0.0946683,-0.9278][0.458333,0.583333,0][0.409064,0.377865,1.16491][-0.360868,-0.0946683,-0.9278][0.458333,0.583333,0][0.409064,-0.00752068,1.16491][-0.368781,0,-0.929516][0.458333,0.625,0][0,-0.00752068,1.23711][1.46068e-007,0,-1][0.5,0.625,0][-0.409064,-0.00752067,1.16491][0.368781,0,-0.929516][0.541667,0.625,0][-0.409064,0.377865,1.16491][0.363763,-0.0992866,-0.926185][0.541667,0.583333,0][0,0.377865,1.23711][0.000726831,-0.104977,-0.994474][0.5,0.583333,0][0,0.377865,1.23711][0.000726831,-0.104977,-0.994474][0.5,0.583333,0][0,-0.00752068,1.23711][1.46068e-007,0,-1][0.5,0.625,0][-0.409064,-0.00752067,1.16491][0.368781,0,-0.929516][0.541667,0.625,0][-0.782216,-0.00752066,0.920063][0.640352,0,-0.768082][0.583333,0.625,0][-0.782216,0.377865,0.920063][0.638825,-0.0873504,-0.764377][0.583333,0.583333,0][-0.409064,0.377865,1.16491][0.363763,-0.0992866,-0.926185][0.541667,0.583333,0][-0.409064,0.377865,1.16491][0.363763,-0.0992866,-0.926185][0.541667,0.583333,0][-0.409064,-0.00752067,1.16491][0.368781,0,-0.929516][0.541667,0.625,0][-0.782216,-0.00752066,0.920063][0.640352,0,-0.768082][0.583333,0.625,0][-0.988802,-0.00752066,0.703396][0.817623,0,-0.575754][0.625,0.625,0][-0.988802,0.377865,0.703396][0.810197,-0.0615556,-0.582917][0.625,0.583333,0][-0.782216,0.377865,0.920063][0.638825,-0.0873504,-0.764377][0.583333,0.583333,0][-0.782216,0.377865,0.920063][0.638825,-0.0873504,-0.764377][0.583333,0.583333,0][-0.782216,-0.00752066,0.920063][0.640352,0,-0.768082][0.583333,0.625,0][-0.988802,-0.00752066,0.703396][0.817623,0,-0.575754][0.625,0.625,0][0.782216,-0.449887,0.920063][-0.635913,0.0372702,-0.770861][0.416667,0.666667,0][0.782216,-0.00752069,0.920063][-0.640351,0,-0.768082][0.416667,0.625,0][0.988802,-0.00752069,0.703396][-0.817622,0,-0.575755][0.375,0.625,0][0.988802,-0.00752069,0.703396][-0.817622,0,-0.575755][0.375,0.625,0][0.988802,-0.449887,0.703396][-0.817593,0.0335063,-0.57482][0.375,0.666667,0][0.782216,-0.449887,0.920063][-0.635913,0.0372702,-0.770861][0.416667,0.666667,0][0.409064,-0.449887,1.16491][-0.367038,0.054282,-0.928621][0.458333,0.666667,0][0.409064,-0.00752068,1.16491][-0.368781,0,-0.929516][0.458333,0.625,0][0.782216,-0.00752069,0.920063][-0.640351,0,-0.768082][0.416667,0.625,0][0.782216,-0.00752069,0.920063][-0.640351,0,-0.768082][0.416667,0.625,0][0.782216,-0.449887,0.920063][-0.635913,0.0372702,-0.770861][0.416667,0.666667,0][0.409064,-0.449887,1.16491][-0.367038,0.054282,-0.928621][0.458333,0.666667,0][0,-0.449887,1.23711][-0.000283784,0.0560893,-0.998426][0.5,0.666667,0][0,-0.00752068,1.23711][1.46068e-007,0,-1][0.5,0.625,0][0.409064,-0.00752068,1.16491][-0.368781,0,-0.929516][0.458333,0.625,0][0.409064,-0.00752068,1.16491][-0.368781,0,-0.929516][0.458333,0.625,0][0.409064,-0.449887,1.16491][-0.367038,0.054282,-0.928621][0.458333,0.666667,0][0,-0.449887,1.23711][-0.000283784,0.0560893,-0.998426][0.5,0.666667,0][-0.409064,-0.449887,1.16491][0.362353,0.048119,-0.930798][0.541667,0.666667,0][-0.409064,-0.00752067,1.16491][0.368781,0,-0.929516][0.541667,0.625,0][0,-0.00752068,1.23711][1.46068e-007,0,-1][0.5,0.625,0][0,-0.00752068,1.23711][1.46068e-007,0,-1][0.5,0.625,0][0,-0.449887,1.23711][-0.000283784,0.0560893,-0.998426][0.5,0.666667,0][-0.409064,-0.449887,1.16491][0.362353,0.048119,-0.930798][0.541667,0.666667,0][-0.782216,-0.449887,0.920063][0.640572,0.0317753,-0.76724][0.583333,0.666667,0][-0.782216,-0.00752066,0.920063][0.640352,0,-0.768082][0.583333,0.625,0][-0.409064,-0.00752067,1.16491][0.368781,0,-0.929516][0.541667,0.625,0][-0.409064,-0.00752067,1.16491][0.368781,0,-0.929516][0.541667,0.625,0][-0.409064,-0.449887,1.16491][0.362353,0.048119,-0.930798][0.541667,0.666667,0][-0.782216,-0.449887,0.920063][0.640572,0.0317753,-0.76724][0.583333,0.666667,0][-0.988802,-0.449887,0.703396][0.817536,0.0342366,-0.57486][0.625,0.666667,0][-0.988802,-0.00752066,0.703396][0.817623,0,-0.575754][0.625,0.625,0][-0.782216,-0.00752066,0.920063][0.640352,0,-0.768082][0.583333,0.625,0][-0.782216,-0.00752066,0.920063][0.640352,0,-0.768082][0.583333,0.625,0][-0.782216,-0.449887,0.920063][0.640572,0.0317753,-0.76724][0.583333,0.666667,0][-0.988802,-0.449887,0.703396][0.817536,0.0342366,-0.57486][0.625,0.666667,0][0.75707,-0.97299,0.898151][-0.583769,0.324954,-0.744056][0.416667,0.708333,0][0.782216,-0.449887,0.920063][-0.635913,0.0372702,-0.770861][0.416667,0.666667,0][0.988802,-0.449887,0.703396][-0.817593,0.0335063,-0.57482][0.375,0.666667,0][0.988802,-0.449887,0.703396][-0.817593,0.0335063,-0.57482][0.375,0.666667,0][0.957014,-0.97299,0.686628][-0.777249,0.30543,-0.550087][0.375,0.708333,0][0.75707,-0.97299,0.898151][-0.583769,0.324954,-0.744056][0.416667,0.708333,0][0.395914,-0.97299,1.10872][-0.322539,0.360174,-0.875353][0.458333,0.708333,0][0.409064,-0.449887,1.16491][-0.367038,0.054282,-0.928621][0.458333,0.666667,0][0.782216,-0.449887,0.920063][-0.635913,0.0372702,-0.770861][0.416667,0.666667,0][0.782216,-0.449887,0.920063][-0.635913,0.0372702,-0.770861][0.416667,0.666667,0][0.75707,-0.97299,0.898151][-0.583769,0.324954,-0.744056][0.416667,0.708333,0][0.395914,-0.97299,1.10872][-0.322539,0.360174,-0.875353][0.458333,0.708333,0][0,-0.97299,1.17745][-0.00149572,0.374763,-0.927119][0.5,0.708333,0][0,-0.449887,1.23711][-0.000283784,0.0560893,-0.998426][0.5,0.666667,0][0.409064,-0.449887,1.16491][-0.367038,0.054282,-0.928621][0.458333,0.666667,0][0.409064,-0.449887,1.16491][-0.367038,0.054282,-0.928621][0.458333,0.666667,0][0.395914,-0.97299,1.10872][-0.322539,0.360174,-0.875353][0.458333,0.708333,0][0,-0.97299,1.17745][-0.00149572,0.374763,-0.927119][0.5,0.708333,0][-0.395914,-0.97299,1.10872][0.313023,0.360427,-0.878697][0.541667,0.708333,0][-0.409064,-0.449887,1.16491][0.362353,0.048119,-0.930798][0.541667,0.666667,0][0,-0.449887,1.23711][-0.000283784,0.0560893,-0.998426][0.5,0.666667,0][0,-0.449887,1.23711][-0.000283784,0.0560893,-0.998426][0.5,0.666667,0][0,-0.97299,1.17745][-0.00149572,0.374763,-0.927119][0.5,0.708333,0][-0.395914,-0.97299,1.10872][0.313023,0.360427,-0.878697][0.541667,0.708333,0][-0.75707,-0.97299,0.898151][0.587785,0.313963,-0.745611][0.583333,0.708333,0][-0.782216,-0.449887,0.920063][0.640572,0.0317753,-0.76724][0.583333,0.666667,0][-0.409064,-0.449887,1.16491][0.362353,0.048119,-0.930798][0.541667,0.666667,0][-0.409064,-0.449887,1.16491][0.362353,0.048119,-0.930798][0.541667,0.666667,0][-0.395914,-0.97299,1.10872][0.313023,0.360427,-0.878697][0.541667,0.708333,0][-0.75707,-0.97299,0.898151][0.587785,0.313963,-0.745611][0.583333,0.708333,0][-0.957014,-0.97299,0.686628][0.785026,0.294949,-0.544738][0.625,0.708333,0][-0.988802,-0.449887,0.703396][0.817536,0.0342366,-0.57486][0.625,0.666667,0][-0.782216,-0.449887,0.920063][0.640572,0.0317753,-0.76724][0.583333,0.666667,0][-0.782216,-0.449887,0.920063][0.640572,0.0317753,-0.76724][0.583333,0.666667,0][-0.75707,-0.97299,0.898151][0.587785,0.313963,-0.745611][0.583333,0.708333,0][-0.957014,-0.97299,0.686628][0.785026,0.294949,-0.544738][0.625,0.708333,0][0.628471,-1.25001,0.756924][-0.280699,0.866212,-0.413383][0.416667,0.75,0][0.75707,-0.97299,0.898151][-0.583769,0.324954,-0.744056][0.416667,0.708333,0][0.957014,-0.97299,0.686628][-0.777249,0.30543,-0.550087][0.375,0.708333,0][0.957014,-0.97299,0.686628][-0.777249,0.30543,-0.550087][0.375,0.708333,0][0.798599,-1.25001,0.620226][-0.412321,0.841838,-0.348282][0.375,0.75,0][0.628471,-1.25001,0.756924][-0.280699,0.866212,-0.413383][0.416667,0.75,0][0.348201,-1.25001,0.897571][-0.158544,0.878747,-0.450186][0.458333,0.75,0][0.395914,-0.97299,1.10872][-0.322539,0.360174,-0.875353][0.458333,0.708333,0][0.75707,-0.97299,0.898151][-0.583769,0.324954,-0.744056][0.416667,0.708333,0][0.75707,-0.97299,0.898151][-0.583769,0.324954,-0.744056][0.416667,0.708333,0][0.628471,-1.25001,0.756924][-0.280699,0.866212,-0.413383][0.416667,0.75,0][0.348201,-1.25001,0.897571][-0.158544,0.878747,-0.450186][0.458333,0.75,0][0,-1.25001,0.953249][-0.00182802,0.88577,-0.464121][0.5,0.75,0][0,-0.97299,1.17745][-0.00149572,0.374763,-0.927119][0.5,0.708333,0][0.395914,-0.97299,1.10872][-0.322539,0.360174,-0.875353][0.458333,0.708333,0][0.395914,-0.97299,1.10872][-0.322539,0.360174,-0.875353][0.458333,0.708333,0][0.348201,-1.25001,0.897571][-0.158544,0.878747,-0.450186][0.458333,0.75,0][0,-1.25001,0.953249][-0.00182802,0.88577,-0.464121][0.5,0.75,0][-0.348201,-1.25001,0.897571][0.148466,0.883021,-0.445232][0.541667,0.75,0][-0.395914,-0.97299,1.10872][0.313023,0.360427,-0.878697][0.541667,0.708333,0][0,-0.97299,1.17745][-0.00149572,0.374763,-0.927119][0.5,0.708333,0][0,-0.97299,1.17745][-0.00149572,0.374763,-0.927119][0.5,0.708333,0][0,-1.25001,0.953249][-0.00182802,0.88577,-0.464121][0.5,0.75,0][-0.348201,-1.25001,0.897571][0.148466,0.883021,-0.445232][0.541667,0.75,0][-0.628471,-1.25001,0.756924][0.266166,0.875973,-0.402277][0.583333,0.75,0][-0.75707,-0.97299,0.898151][0.587785,0.313963,-0.745611][0.583333,0.708333,0][-0.395914,-0.97299,1.10872][0.313023,0.360427,-0.878697][0.541667,0.708333,0][-0.395914,-0.97299,1.10872][0.313023,0.360427,-0.878697][0.541667,0.708333,0][-0.348201,-1.25001,0.897571][0.148466,0.883021,-0.445232][0.541667,0.75,0][-0.628471,-1.25001,0.756924][0.266166,0.875973,-0.402277][0.583333,0.75,0][-0.798599,-1.25001,0.620226][0.414763,0.849821,-0.325233][0.625,0.75,0][-0.957014,-0.97299,0.686628][0.785026,0.294949,-0.544738][0.625,0.708333,0][-0.75707,-0.97299,0.898151][0.587785,0.313963,-0.745611][0.583333,0.708333,0][-0.75707,-0.97299,0.898151][0.587785,0.313963,-0.745611][0.583333,0.708333,0][-0.628471,-1.25001,0.756924][0.266166,0.875973,-0.402277][0.583333,0.75,0][-0.798599,-1.25001,0.620226][0.414763,0.849821,-0.325233][0.625,0.75,0][0.764466,-1.24923,0.538713][0.031132,4.13041,0.0198723][0.416667,0.791667,0][0.628471,-1.25001,0.756924][-0.280699,0.866212,-0.413383][0.416667,0.75,0][0.798599,-1.25001,0.620226][-0.412321,0.841838,-0.348282][0.375,0.75,0][0.798599,-1.25001,0.620226][-0.412321,0.841838,-0.348282][0.375,0.75,0][0.905448,-1.25001,0.4088][-0.482958,0.86071,-0.16103][0.375,0.791667,0][0.764466,-1.24923,0.538713][0.031132,4.13041,0.0198723][0.416667,0.791667,0][0.409064,-1.24923,0.733846][0.00775718,3.52651,0.0193087][0.458333,0.791667,0][0.348201,-1.25001,0.897571][-0.158544,0.878747,-0.450186][0.458333,0.75,0][0.628471,-1.25001,0.756924][-0.280699,0.866212,-0.413383][0.416667,0.75,0][0.628471,-1.25001,0.756924][-0.280699,0.866212,-0.413383][0.416667,0.75,0][0.764466,-1.24923,0.538713][0.031132,4.13041,0.0198723][0.416667,0.791667,0][0.409064,-1.24923,0.733846][0.00775718,3.52651,0.0193087][0.458333,0.791667,0][0,-1.24923,0.781978][0.000260797,3.3758,0.0154587][0.5,0.791667,0][0,-1.25001,0.953249][-0.00182802,0.88577,-0.464121][0.5,0.75,0][0.348201,-1.25001,0.897571][-0.158544,0.878747,-0.450186][0.458333,0.75,0][0.348201,-1.25001,0.897571][-0.158544,0.878747,-0.450186][0.458333,0.75,0][0.409064,-1.24923,0.733846][0.00775718,3.52651,0.0193087][0.458333,0.791667,0][0,-1.24923,0.781978][0.000260797,3.3758,0.0154587][0.5,0.791667,0][-0.409064,-1.24923,0.733846][-0.00871059,3.5265,0.0197755][0.541667,0.791667,0][-0.348201,-1.25001,0.897571][0.148466,0.883021,-0.445232][0.541667,0.75,0][0,-1.25001,0.953249][-0.00182802,0.88577,-0.464121][0.5,0.75,0][0,-1.25001,0.953249][-0.00182802,0.88577,-0.464121][0.5,0.75,0][0,-1.24923,0.781978][0.000260797,3.3758,0.0154587][0.5,0.791667,0][-0.409064,-1.24923,0.733846][-0.00871059,3.5265,0.0197755][0.541667,0.791667,0][-0.764466,-1.24923,0.538713][-0.0650242,4.12955,0.0502552][0.583333,0.791667,0][-0.628471,-1.25001,0.756924][0.266166,0.875973,-0.402277][0.583333,0.75,0][-0.348201,-1.25001,0.897571][0.148466,0.883021,-0.445232][0.541667,0.75,0][-0.348201,-1.25001,0.897571][0.148466,0.883021,-0.445232][0.541667,0.75,0][-0.409064,-1.24923,0.733846][-0.00871059,3.5265,0.0197755][0.541667,0.791667,0][-0.764466,-1.24923,0.538713][-0.0650242,4.12955,0.0502552][0.583333,0.791667,0][-0.905448,-1.25001,0.4088][0.494565,0.856091,-0.150047][0.625,0.791667,0][-0.798599,-1.25001,0.620226][0.414763,0.849821,-0.325233][0.625,0.75,0][-0.628471,-1.25001,0.756924][0.266166,0.875973,-0.402277][0.583333,0.75,0][-0.628471,-1.25001,0.756924][0.266166,0.875973,-0.402277][0.583333,0.75,0][-0.764466,-1.24923,0.538713][-0.0650242,4.12955,0.0502552][0.583333,0.791667,0][-0.905448,-1.25001,0.4088][0.494565,0.856091,-0.150047][0.625,0.791667,0][0.78317,-1.24923,0.304347][0.0184397,3.16454,0.00148691][0.416667,0.833333,0][0.764466,-1.24923,0.538713][0.031132,4.13041,0.0198723][0.416667,0.791667,0][0.905448,-1.25001,0.4088][-0.482958,0.86071,-0.16103][0.375,0.791667,0][0.905448,-1.25001,0.4088][-0.482958,0.86071,-0.16103][0.375,0.791667,0][0.925416,-1.25001,0.202645][-0.439389,0.897467,-0.0385947][0.375,0.833333,0][0.78317,-1.24923,0.304347][0.0184397,3.16454,0.00148691][0.416667,0.833333,0][-0.925416,-1.25001,0.202645][0.453158,0.890223,-0.0463718][0.625,0.833333,0][-0.905448,-1.25001,0.4088][0.494565,0.856091,-0.150047][0.625,0.791667,0][-0.764466,-1.24923,0.538713][-0.0650242,4.12955,0.0502552][0.583333,0.791667,0][-0.764466,-1.24923,0.538713][-0.0650242,4.12955,0.0502552][0.583333,0.791667,0][-0.78317,-1.24923,0.304347][-0.0181928,3.16454,0.00133423][0.583333,0.833333,0][-0.925416,-1.25001,0.202645][0.453158,0.890223,-0.0463718][0.625,0.833333,0][0.800626,-1.24923,-0.00351102][0.0184831,3.25482,-1.04649e-006][0.416667,0.875,0][0.78317,-1.24923,0.304347][0.0184397,3.16454,0.00148691][0.416667,0.833333,0][0.925416,-1.25001,0.202645][-0.439389,0.897467,-0.0385947][0.375,0.833333,0][0.925416,-1.25001,0.202645][-0.439389,0.897467,-0.0385947][0.375,0.833333,0][0.93707,-1.25001,-0.003511][-0.443889,0.896068,0.00495835][0.375,0.875,0][0.800626,-1.24923,-0.00351102][0.0184831,3.25482,-1.04649e-006][0.416667,0.875,0][-0.93707,-1.25001,-0.00351128][0.443889,0.896068,-0.00495641][0.625,0.875,0][-0.925416,-1.25001,0.202645][0.453158,0.890223,-0.0463718][0.625,0.833333,0][-0.78317,-1.24923,0.304347][-0.0181928,3.16454,0.00133423][0.583333,0.833333,0][-0.78317,-1.24923,0.304347][-0.0181928,3.16454,0.00133423][0.583333,0.833333,0][-0.800626,-1.24923,-0.00351126][-0.0184831,3.25482,1.04307e-006][0.583333,0.875,0][-0.93707,-1.25001,-0.00351128][0.443889,0.896068,-0.00495641][0.625,0.875,0][0.78317,-1.24923,-0.311369][0.0180308,3.15419,-0.00118651][0.416667,0.916667,0][0.800626,-1.24923,-0.00351102][0.0184831,3.25482,-1.04649e-006][0.416667,0.875,0][0.93707,-1.25001,-0.003511][-0.443889,0.896068,0.00495835][0.375,0.875,0][0.93707,-1.25001,-0.003511][-0.443889,0.896068,0.00495835][0.375,0.875,0][0.925416,-1.25001,-0.209666][-0.45316,0.890222,0.0463794][0.375,0.916667,0][0.78317,-1.24923,-0.311369][0.0180308,3.15419,-0.00118651][0.416667,0.916667,0][-0.925416,-1.25001,-0.209666][0.439392,0.897466,0.0385952][0.625,0.916667,0][-0.93707,-1.25001,-0.00351128][0.443889,0.896068,-0.00495641][0.625,0.875,0][-0.800626,-1.24923,-0.00351126][-0.0184831,3.25482,1.04307e-006][0.583333,0.875,0][-0.800626,-1.24923,-0.00351126][-0.0184831,3.25482,1.04307e-006][0.583333,0.875,0][-0.78317,-1.24923,-0.311369][-0.0184248,3.15419,-0.00142765][0.583333,0.916667,0][-0.925416,-1.25001,-0.209666][0.439392,0.897466,0.0385952][0.625,0.916667,0][0.764466,-1.24923,-0.580859][-1.86781,2.79911,1.57613][0.395833,0.979167,0][0.78317,-1.24923,-0.311369][0.0180308,3.15419,-0.00118651][0.416667,0.916667,0][0.925416,-1.25001,-0.209666][-0.45316,0.890222,0.0463794][0.375,0.916667,0][0.925416,-1.25001,-0.209666][-0.45316,0.890222,0.0463794][0.375,0.916667,0][0.905448,-1.25001,-0.415822][-0.485332,0.853775,0.18847][0.375,0.958333,0][0.764466,-1.24923,-0.580859][-1.86781,2.79911,1.57613][0.395833,0.979167,0][-0.905448,-1.25001,-0.415822][0.484538,0.839785,0.244916][0.625,0.958333,0][-0.925416,-1.25001,-0.209666][0.439392,0.897466,0.0385952][0.625,0.916667,0][-0.78317,-1.24923,-0.311369][-0.0184248,3.15419,-0.00142765][0.583333,0.916667,0][-0.78317,-1.24923,-0.311369][-0.0184248,3.15419,-0.00142765][0.583333,0.916667,0][-0.764466,-1.24923,-0.580859][1.98923,2.78137,1.42994][0.604167,0.979167,0][-0.905448,-1.25001,-0.415822][0.484538,0.839785,0.244916][0.625,0.958333,0][0.371055,-1.23356,-0.944994][-0.102007,0.596748,0.795919][0.458333,1,0][0.548903,-1.24923,-0.751719][-0.670099,3.41849,0.895633][0.458333,0.958333,0][0.764466,-1.24923,-0.580859][-1.86781,2.79911,1.57613][0.395833,0.979167,0][0.764466,-1.24923,-0.580859][-1.86781,2.79911,1.57613][0.395833,0.979167,0][0.669721,-1.11851,-0.942115][-0.356849,0.328084,0.874654][0.416667,1,0][0.371055,-1.23356,-0.944994][-0.102007,0.596748,0.795919][0.458333,1,0][2.86292e-007,-1.23356,-1.00067][2.93304e-005,0.537998,0.842946][0.5,1,0][2.64027e-007,-1.24923,-0.85477][-0.006086,3.49036,0.370883][0.5,0.958333,0][0.548903,-1.24923,-0.751719][-0.670099,3.41849,0.895633][0.458333,0.958333,0][0.548903,-1.24923,-0.751719][-0.670099,3.41849,0.895633][0.458333,0.958333,0][0.371055,-1.23356,-0.944994][-0.102007,0.596748,0.795919][0.458333,1,0][2.86292e-007,-1.23356,-1.00067][2.93304e-005,0.537998,0.842946][0.5,1,0][-0.371055,-1.23356,-0.944994][0.111157,0.591594,0.798537][0.541667,1,0][-0.548903,-1.24923,-0.751719][0.973106,3.20975,1.21676][0.541667,0.958333,0][2.64027e-007,-1.24923,-0.85477][-0.006086,3.49036,0.370883][0.5,0.958333,0][2.64027e-007,-1.24923,-0.85477][-0.006086,3.49036,0.370883][0.5,0.958333,0][2.86292e-007,-1.23356,-1.00067][2.93304e-005,0.537998,0.842946][0.5,1,0][-0.371055,-1.23356,-0.944994][0.111157,0.591594,0.798537][0.541667,1,0][-0.669721,-1.11851,-0.942115][0.272738,0.357886,0.893046][0.583333,1,0][-0.764466,-1.24923,-0.580859][1.98923,2.78137,1.42994][0.604167,0.979167,0][-0.548903,-1.24923,-0.751719][0.973106,3.20975,1.21676][0.541667,0.958333,0][-0.548903,-1.24923,-0.751719][0.973106,3.20975,1.21676][0.541667,0.958333,0][-0.371055,-1.23356,-0.944994][0.111157,0.591594,0.798537][0.541667,1,0][-0.669721,-1.11851,-0.942115][0.272738,0.357886,0.893046][0.583333,1,0][-0.957014,-0.97299,0.686628][0.785026,0.294949,-0.544738][0.875,0.041667,0][-0.798599,-1.25001,0.620226][0.414763,0.849821,-0.325233][0.875,0,0][-0.905448,-1.25001,0.4088][0.494565,0.856091,-0.150047][0.833333,0,0][-0.905448,-1.25001,0.4088][0.494565,0.856091,-0.150047][0.833333,0,0][-1.08693,-0.97299,0.425721][0.895437,0.32103,-0.308434][0.833333,0.041667,0][-0.957014,-0.97299,0.686628][0.785026,0.294949,-0.544738][0.875,0.041667,0][-1.08693,-0.97299,0.425721][0.895437,0.32103,-0.308434][0.833333,0.041667,0][-0.905448,-1.25001,0.4088][0.494565,0.856091,-0.150047][0.833333,0,0][-0.925416,-1.25001,0.202645][0.453158,0.890223,-0.0463718][0.791667,0,0][-0.925416,-1.25001,0.202645][0.453158,0.890223,-0.0463718][0.791667,0,0][-1.13699,-0.97299,0.211113][0.922015,0.35424,-0.156215][0.791667,0.041667,0][-1.08693,-0.97299,0.425721][0.895437,0.32103,-0.308434][0.833333,0.041667,0][-1.13699,-0.97299,0.211113][0.922015,0.35424,-0.156215][0.791667,0.041667,0][-0.925416,-1.25001,0.202645][0.453158,0.890223,-0.0463718][0.791667,0,0][-0.93707,-1.25001,-0.00351128][0.443889,0.896068,-0.00495641][0.75,0,0][-0.93707,-1.25001,-0.00351128][0.443889,0.896068,-0.00495641][0.75,0,0][-1.16233,-0.97299,-0.00349432][0.933867,0.3576,-0.00389849][0.75,0.041667,0][-1.13699,-0.97299,0.211113][0.922015,0.35424,-0.156215][0.791667,0.041667,0][-1.16233,-0.97299,-0.00349432][0.933867,0.3576,-0.00389849][0.75,0.041667,0][-0.93707,-1.25001,-0.00351128][0.443889,0.896068,-0.00495641][0.75,0,0][-0.925416,-1.25001,-0.209666][0.439392,0.897466,0.0385952][0.708333,0,0][-0.925416,-1.25001,-0.209666][0.439392,0.897466,0.0385952][0.708333,0,0][-1.13699,-0.97299,-0.218102][0.927629,0.341039,0.152304][0.708333,0.041667,0][-1.16233,-0.97299,-0.00349432][0.933867,0.3576,-0.00389849][0.75,0.041667,0][-1.13699,-0.97299,-0.218102][0.927629,0.341039,0.152304][0.708333,0.041667,0][-0.925416,-1.25001,-0.209666][0.439392,0.897466,0.0385952][0.708333,0,0][-0.905448,-1.25001,-0.415822][0.484538,0.839785,0.244916][0.666667,0,0][-0.905448,-1.25001,-0.415822][0.484538,0.839785,0.244916][0.666667,0,0][-1.08693,-0.97299,-0.43271][0.88568,0.324592,0.331981][0.666667,0.041667,0][-1.13699,-0.97299,-0.218102][0.927629,0.341039,0.152304][0.708333,0.041667,0][-1.08693,-0.97299,-0.43271][0.88568,0.324592,0.331981][0.666667,0.041667,0][-0.905448,-1.25001,-0.415822][0.484538,0.839785,0.244916][0.666667,0,0][-0.764466,-1.24923,-0.580859][1.98923,2.78137,1.42994][0.625,0,0][-0.764466,-1.24923,-0.580859][1.98923,2.78137,1.42994][0.625,0,0][-0.957014,-0.97299,-0.693617][0.791086,0.335801,0.511294][0.625,0.041667,0][-1.08693,-0.97299,-0.43271][0.88568,0.324592,0.331981][0.666667,0.041667,0][-0.988802,-0.449887,0.703396][0.817536,0.0342366,-0.57486][0.875,0.083333,0][-0.957014,-0.97299,0.686628][0.785026,0.294949,-0.544738][0.875,0.041667,0][-1.08693,-0.97299,0.425721][0.895437,0.32103,-0.308434][0.833333,0.041667,0][-1.08693,-0.97299,0.425721][0.895437,0.32103,-0.308434][0.833333,0.041667,0][-1.12304,-0.449887,0.436144][0.939464,0.035825,-0.34077][0.833333,0.083333,0][-0.988802,-0.449887,0.703396][0.817536,0.0342366,-0.57486][0.875,0.083333,0][-1.12304,-0.449887,0.436144][0.939464,0.035825,-0.34077][0.833333,0.083333,0][-1.08693,-0.97299,0.425721][0.895437,0.32103,-0.308434][0.833333,0.041667,0][-1.13699,-0.97299,0.211113][0.922015,0.35424,-0.156215][0.791667,0.041667,0][-1.13699,-0.97299,0.211113][0.922015,0.35424,-0.156215][0.791667,0.041667,0][-1.17475,-0.449887,0.216316][0.984127,0.0363713,-0.173697][0.791667,0.083333,0][-1.12304,-0.449887,0.436144][0.939464,0.035825,-0.34077][0.833333,0.083333,0][-1.17475,-0.449887,0.216316][0.984127,0.0363713,-0.173697][0.791667,0.083333,0][-1.13699,-0.97299,0.211113][0.922015,0.35424,-0.156215][0.791667,0.041667,0][-1.16233,-0.97299,-0.00349432][0.933867,0.3576,-0.00389849][0.75,0.041667,0][-1.16233,-0.97299,-0.00349432][0.933867,0.3576,-0.00389849][0.75,0.041667,0][-1.20094,-0.449887,-0.00351132][0.999328,0.0366476,-6.09619e-005][0.75,0.083333,0][-1.17475,-0.449887,0.216316][0.984127,0.0363713,-0.173697][0.791667,0.083333,0][-1.20094,-0.449887,-0.00351132][0.999328,0.0366476,-6.09619e-005][0.75,0.083333,0][-1.16233,-0.97299,-0.00349432][0.933867,0.3576,-0.00389849][0.75,0.041667,0][-1.13699,-0.97299,-0.218102][0.927629,0.341039,0.152304][0.708333,0.041667,0][-1.13699,-0.97299,-0.218102][0.927629,0.341039,0.152304][0.708333,0.041667,0][-1.17475,-0.449887,-0.223338][0.984145,0.0361491,0.173643][0.708333,0.083333,0][-1.20094,-0.449887,-0.00351132][0.999328,0.0366476,-6.09619e-005][0.75,0.083333,0][-1.17475,-0.449887,-0.223338][0.984145,0.0361491,0.173643][0.708333,0.083333,0][-1.13699,-0.97299,-0.218102][0.927629,0.341039,0.152304][0.708333,0.041667,0][-1.08693,-0.97299,-0.43271][0.88568,0.324592,0.331981][0.666667,0.041667,0][-1.08693,-0.97299,-0.43271][0.88568,0.324592,0.331981][0.666667,0.041667,0][-1.12304,-0.449887,-0.443165][0.939531,0.0353624,0.340633][0.666667,0.083333,0][-1.17475,-0.449887,-0.223338][0.984145,0.0361491,0.173643][0.708333,0.083333,0][-1.12304,-0.449887,-0.443165][0.939531,0.0353624,0.340633][0.666667,0.083333,0][-1.08693,-0.97299,-0.43271][0.88568,0.324592,0.331981][0.666667,0.041667,0][-0.957014,-0.97299,-0.693617][0.791086,0.335801,0.511294][0.625,0.041667,0][-0.957014,-0.97299,-0.693617][0.791086,0.335801,0.511294][0.625,0.041667,0][-0.988802,-0.449887,-0.710417][0.82397,0.0347341,0.565569][0.625,0.083333,0][-1.12304,-0.449887,-0.443165][0.939531,0.0353624,0.340633][0.666667,0.083333,0][-0.988802,-0.00752066,0.703396][0.817623,0,-0.575754][0.875,0.125,0][-0.988802,-0.449887,0.703396][0.817536,0.0342366,-0.57486][0.875,0.083333,0][-1.12304,-0.449887,0.436144][0.939464,0.035825,-0.34077][0.833333,0.083333,0][-1.12304,-0.449887,0.436144][0.939464,0.035825,-0.34077][0.833333,0.083333,0][-1.12304,-0.00752066,0.436144][0.939966,0,-0.341269][0.833333,0.125,0][-0.988802,-0.00752066,0.703396][0.817623,0,-0.575754][0.875,0.125,0][-1.12304,-0.00752066,0.436144][0.939966,0,-0.341269][0.833333,0.125,0][-1.12304,-0.449887,0.436144][0.939464,0.035825,-0.34077][0.833333,0.083333,0][-1.17475,-0.449887,0.216316][0.984127,0.0363713,-0.173697][0.791667,0.083333,0][-1.17475,-0.449887,0.216316][0.984127,0.0363713,-0.173697][0.791667,0.083333,0][-1.17475,-0.00752066,0.216316][0.984759,0,-0.173922][0.791667,0.125,0][-1.12304,-0.00752066,0.436144][0.939966,0,-0.341269][0.833333,0.125,0][-1.17475,-0.00752066,0.216316][0.984759,0,-0.173922][0.791667,0.125,0][-1.17475,-0.449887,0.216316][0.984127,0.0363713,-0.173697][0.791667,0.083333,0][-1.20094,-0.449887,-0.00351132][0.999328,0.0366476,-6.09619e-005][0.75,0.083333,0][-1.20094,-0.449887,-0.00351132][0.999328,0.0366476,-6.09619e-005][0.75,0.083333,0][-1.20094,-0.00752066,-0.00351132][1,0,2.64777e-007][0.75,0.125,0][-1.17475,-0.00752066,0.216316][0.984759,0,-0.173922][0.791667,0.125,0][-1.20094,-0.00752066,-0.00351132][1,0,2.64777e-007][0.75,0.125,0][-1.20094,-0.449887,-0.00351132][0.999328,0.0366476,-6.09619e-005][0.75,0.083333,0][-1.17475,-0.449887,-0.223338][0.984145,0.0361491,0.173643][0.708333,0.083333,0][-1.17475,-0.449887,-0.223338][0.984145,0.0361491,0.173643][0.708333,0.083333,0][-1.17475,-0.00752066,-0.223338][0.984759,0,0.173923][0.708333,0.125,0][-1.20094,-0.00752066,-0.00351132][1,0,2.64777e-007][0.75,0.125,0][-1.17475,-0.00752066,-0.223338][0.984759,0,0.173923][0.708333,0.125,0][-1.17475,-0.449887,-0.223338][0.984145,0.0361491,0.173643][0.708333,0.083333,0][-1.12304,-0.449887,-0.443165][0.939531,0.0353624,0.340633][0.666667,0.083333,0][-1.12304,-0.449887,-0.443165][0.939531,0.0353624,0.340633][0.666667,0.083333,0][-1.12304,-0.00752066,-0.443165][0.939966,0,0.341269][0.666667,0.125,0][-1.17475,-0.00752066,-0.223338][0.984759,0,0.173923][0.708333,0.125,0][-1.12304,-0.00752066,-0.443165][0.939966,0,0.341269][0.666667,0.125,0][-1.12304,-0.449887,-0.443165][0.939531,0.0353624,0.340633][0.666667,0.083333,0][-0.988802,-0.449887,-0.710417][0.82397,0.0347341,0.565569][0.625,0.083333,0][-0.988802,-0.449887,-0.710417][0.82397,0.0347341,0.565569][0.625,0.083333,0][-0.988802,-0.00752066,-0.710417][0.806312,-0.00894957,0.591422][0.625,0.125,0][-1.12304,-0.00752066,-0.443165][0.939966,0,0.341269][0.666667,0.125,0][-0.988802,0.377865,0.703396][0.810197,-0.0615556,-0.582917][0.875,0.166667,0][-0.988802,-0.00752066,0.703396][0.817623,0,-0.575754][0.875,0.125,0][-1.12304,-0.00752066,0.436144][0.939966,0,-0.341269][0.833333,0.125,0][-1.12304,-0.00752066,0.436144][0.939966,0,-0.341269][0.833333,0.125,0][-1.12304,0.377865,0.436144][0.938575,-0.0490684,-0.341569][0.833333,0.166667,0][-0.988802,0.377865,0.703396][0.810197,-0.0615556,-0.582917][0.875,0.166667,0][-1.12304,0.377865,0.436144][0.938575,-0.0490684,-0.341569][0.833333,0.166667,0][-1.12304,-0.00752066,0.436144][0.939966,0,-0.341269][0.833333,0.125,0][-1.17475,-0.00752066,0.216316][0.984759,0,-0.173922][0.791667,0.125,0][-1.17475,-0.00752066,0.216316][0.984759,0,-0.173922][0.791667,0.125,0][-1.17475,0.377865,0.216316][0.983611,-0.0473403,-0.173979][0.791667,0.166667,0][-1.12304,0.377865,0.436144][0.938575,-0.0490684,-0.341569][0.833333,0.166667,0][-1.17475,0.377865,0.216316][0.983611,-0.0473403,-0.173979][0.791667,0.166667,0][-1.17475,-0.00752066,0.216316][0.984759,0,-0.173922][0.791667,0.125,0][-1.20094,-0.00752066,-0.00351132][1,0,2.64777e-007][0.75,0.125,0][-1.20094,-0.00752066,-0.00351132][1,0,2.64777e-007][0.75,0.125,0][-1.20094,0.377865,-0.00351132][0.998896,-0.0469803,-7.83065e-005][0.75,0.166667,0][-1.17475,0.377865,0.216316][0.983611,-0.0473403,-0.173979][0.791667,0.166667,0][-1.20094,0.377865,-0.00351132][0.998896,-0.0469803,-7.83065e-005][0.75,0.166667,0][-1.20094,-0.00752066,-0.00351132][1,0,2.64777e-007][0.75,0.125,0][-1.17475,-0.00752066,-0.223338][0.984759,0,0.173923][0.708333,0.125,0][-1.17475,-0.00752066,-0.223338][0.984759,0,0.173923][0.708333,0.125,0][-1.17475,0.377865,-0.223338][0.983636,-0.0470792,0.173907][0.708333,0.166667,0][-1.20094,0.377865,-0.00351132][0.998896,-0.0469803,-7.83065e-005][0.75,0.166667,0][-1.17475,0.377865,-0.223338][0.983636,-0.0470792,0.173907][0.708333,0.166667,0][-1.17475,-0.00752066,-0.223338][0.984759,0,0.173923][0.708333,0.125,0][-1.12304,-0.00752066,-0.443165][0.939966,0,0.341269][0.666667,0.125,0][-1.12304,-0.00752066,-0.443165][0.939966,0,0.341269][0.666667,0.125,0][-1.12304,0.377865,-0.443165][0.938663,-0.0485424,0.341403][0.666667,0.166667,0][-1.17475,0.377865,-0.223338][0.983636,-0.0470792,0.173907][0.708333,0.166667,0][-1.12304,0.377865,-0.443165][0.938663,-0.0485424,0.341403][0.666667,0.166667,0][-1.12304,-0.00752066,-0.443165][0.939966,0,0.341269][0.666667,0.125,0][-0.988802,-0.00752066,-0.710417][0.806312,-0.00894957,0.591422][0.625,0.125,0][-0.988802,-0.00752066,-0.710417][0.806312,-0.00894957,0.591422][0.625,0.125,0][-0.988802,0.377865,-0.710417][0.799867,-0.0515951,0.597955][0.625,0.166667,0][-1.12304,0.377865,-0.443165][0.938663,-0.0485424,0.341403][0.666667,0.166667,0][-0.963655,0.701305,0.680362][0.771005,-0.264693,-0.579214][0.875,0.208333,0][-0.988802,0.377865,0.703396][0.810197,-0.0615556,-0.582917][0.875,0.166667,0][-1.12304,0.377865,0.436144][0.938575,-0.0490684,-0.341569][0.833333,0.166667,0][-1.12304,0.377865,0.436144][0.938575,-0.0490684,-0.341569][0.833333,0.166667,0][-1.09448,0.701305,0.421818][0.906934,-0.245638,-0.342247][0.833333,0.208333,0][-0.963655,0.701305,0.680362][0.771005,-0.264693,-0.579214][0.875,0.208333,0][-1.09448,0.701305,0.421818][0.906934,-0.245638,-0.342247][0.833333,0.208333,0][-1.12304,0.377865,0.436144][0.938575,-0.0490684,-0.341569][0.833333,0.166667,0][-1.17475,0.377865,0.216316][0.983611,-0.0473403,-0.173979][0.791667,0.166667,0][-1.17475,0.377865,0.216316][0.983611,-0.0473403,-0.173979][0.791667,0.166667,0][-1.14488,0.701305,0.209154][0.956746,-0.239155,-0.165653][0.791667,0.208333,0][-1.09448,0.701305,0.421818][0.906934,-0.245638,-0.342247][0.833333,0.208333,0][-1.14488,0.701305,0.209154][0.956746,-0.239155,-0.165653][0.791667,0.208333,0][-1.17475,0.377865,0.216316][0.983611,-0.0473403,-0.173979][0.791667,0.166667,0][-1.20094,0.377865,-0.00351132][0.998896,-0.0469803,-7.83065e-005][0.75,0.166667,0][-1.20094,0.377865,-0.00351132][0.998896,-0.0469803,-7.83065e-005][0.75,0.166667,0][-1.1704,0.701305,-0.00351132][0.968089,-0.25059,0.00304216][0.75,0.208333,0][-1.14488,0.701305,0.209154][0.956746,-0.239155,-0.165653][0.791667,0.208333,0][-1.1704,0.701305,-0.00351132][0.968089,-0.25059,0.00304216][0.75,0.208333,0][-1.20094,0.377865,-0.00351132][0.998896,-0.0469803,-7.83065e-005][0.75,0.166667,0][-1.17475,0.377865,-0.223338][0.983636,-0.0470792,0.173907][0.708333,0.166667,0][-1.17475,0.377865,-0.223338][0.983636,-0.0470792,0.173907][0.708333,0.166667,0][-1.14488,0.701305,-0.216175][0.953894,-0.249156,0.167354][0.708333,0.208333,0][-1.1704,0.701305,-0.00351132][0.968089,-0.25059,0.00304216][0.75,0.208333,0][-1.14488,0.701305,-0.216175][0.953894,-0.249156,0.167354][0.708333,0.208333,0][-1.17475,0.377865,-0.223338][0.983636,-0.0470792,0.173907][0.708333,0.166667,0][-1.12304,0.377865,-0.443165][0.938663,-0.0485424,0.341403][0.666667,0.166667,0][-1.12304,0.377865,-0.443165][0.938663,-0.0485424,0.341403][0.666667,0.166667,0][-1.09448,0.701305,-0.428839][0.910558,-0.245055,0.332914][0.666667,0.208333,0][-1.14488,0.701305,-0.216175][0.953894,-0.249156,0.167354][0.708333,0.208333,0][-1.09448,0.701305,-0.428839][0.910558,-0.245055,0.332914][0.666667,0.208333,0][-1.12304,0.377865,-0.443165][0.938663,-0.0485424,0.341403][0.666667,0.166667,0][-0.988802,0.377865,-0.710417][0.799867,-0.0515951,0.597955][0.625,0.166667,0][-0.988802,0.377865,-0.710417][0.799867,-0.0515951,0.597955][0.625,0.166667,0][-0.963655,0.701305,-0.687384][0.765836,-0.271559,0.582881][0.625,0.208333,0][-1.09448,0.701305,-0.428839][0.910558,-0.245055,0.332914][0.666667,0.208333,0][-0.889634,0.905954,0.608024][0.680262,-0.552993,-0.481085][0.875,0.25,0][-0.963655,0.701305,0.680362][0.771005,-0.264693,-0.579214][0.875,0.208333,0][-1.09448,0.701305,0.421818][0.906934,-0.245638,-0.342247][0.833333,0.208333,0][-1.09448,0.701305,0.421818][0.906934,-0.245638,-0.342247][0.833333,0.208333,0][-1.00866,0.96504,0.340148][0.731578,-0.627069,-0.267542][0.833333,0.25,0][-0.889634,0.905954,0.608024][0.680262,-0.552993,-0.481085][0.875,0.25,0][-1.00866,0.96504,0.340148][0.731578,-0.627069,-0.267542][0.833333,0.25,0][-1.09448,0.701305,0.421818][0.906934,-0.245638,-0.342247][0.833333,0.208333,0][-1.14488,0.701305,0.209154][0.956746,-0.239155,-0.165653][0.791667,0.208333,0][-1.14488,0.701305,0.209154][0.956746,-0.239155,-0.165653][0.791667,0.208333,0][-1.03091,0.980097,0.168319][0.735416,-0.669709,-0.103212][0.791667,0.25,0][-1.00866,0.96504,0.340148][0.731578,-0.627069,-0.267542][0.833333,0.25,0][-1.03091,0.980097,0.168319][0.735416,-0.669709,-0.103212][0.791667,0.25,0][-1.14488,0.701305,0.209154][0.956746,-0.239155,-0.165653][0.791667,0.208333,0][-1.1704,0.701305,-0.00351132][0.968089,-0.25059,0.00304216][0.75,0.208333,0][-1.1704,0.701305,-0.00351132][0.968089,-0.25059,0.00304216][0.75,0.208333,0][-1.04389,0.980097,-0.0035113][0.744623,-0.667432,0.00841215][0.75,0.25,0][-1.03091,0.980097,0.168319][0.735416,-0.669709,-0.103212][0.791667,0.25,0][-1.04389,0.980097,-0.0035113][0.744623,-0.667432,0.00841215][0.75,0.25,0][-1.1704,0.701305,-0.00351132][0.968089,-0.25059,0.00304216][0.75,0.208333,0][-1.14488,0.701305,-0.216175][0.953894,-0.249156,0.167354][0.708333,0.208333,0][-1.14488,0.701305,-0.216175][0.953894,-0.249156,0.167354][0.708333,0.208333,0][-1.03091,0.980097,-0.17534][0.733747,-0.671098,0.106033][0.708333,0.25,0][-1.04389,0.980097,-0.0035113][0.744623,-0.667432,0.00841215][0.75,0.25,0][-1.03091,0.980097,-0.17534][0.733747,-0.671098,0.106033][0.708333,0.25,0][-1.14488,0.701305,-0.216175][0.953894,-0.249156,0.167354][0.708333,0.208333,0][-1.09448,0.701305,-0.428839][0.910558,-0.245055,0.332914][0.666667,0.208333,0][-1.09448,0.701305,-0.428839][0.910558,-0.245055,0.332914][0.666667,0.208333,0][-1.00866,0.96504,-0.34717][0.723345,-0.644957,0.246581][0.666667,0.25,0][-1.03091,0.980097,-0.17534][0.733747,-0.671098,0.106033][0.708333,0.25,0][-1.00866,0.96504,-0.34717][0.723345,-0.644957,0.246581][0.666667,0.25,0][-1.09448,0.701305,-0.428839][0.910558,-0.245055,0.332914][0.666667,0.208333,0][-0.963655,0.701305,-0.687384][0.765836,-0.271559,0.582881][0.625,0.208333,0][-0.963655,0.701305,-0.687384][0.765836,-0.271559,0.582881][0.625,0.208333,0][-0.889634,0.905954,-0.615045][0.663021,-0.559606,0.497237][0.625,0.25,0][-1.00866,0.96504,-0.34717][0.723345,-0.644957,0.246581][0.666667,0.25,0][1.08693,-0.97299,0.425721][-0.895724,0.309779,-0.318928][0.166667,0.041667,0][0.905448,-1.25001,0.4088][-0.482958,0.86071,-0.16103][0.166667,0,0][0.798599,-1.25001,0.620226][-0.412321,0.841838,-0.348282][0.125,0,0][0.798599,-1.25001,0.620226][-0.412321,0.841838,-0.348282][0.125,0,0][0.957014,-0.97299,0.686628][-0.777249,0.30543,-0.550087][0.125,0.041667,0][1.08693,-0.97299,0.425721][-0.895724,0.309779,-0.318928][0.166667,0.041667,0][1.13699,-0.97299,0.211113][-0.927629,0.341038,-0.152306][0.208333,0.041667,0][0.925416,-1.25001,0.202645][-0.439389,0.897467,-0.0385947][0.208333,0,0][0.905448,-1.25001,0.4088][-0.482958,0.86071,-0.16103][0.166667,0,0][0.905448,-1.25001,0.4088][-0.482958,0.86071,-0.16103][0.166667,0,0][1.08693,-0.97299,0.425721][-0.895724,0.309779,-0.318928][0.166667,0.041667,0][1.13699,-0.97299,0.211113][-0.927629,0.341038,-0.152306][0.208333,0.041667,0][1.16233,-0.97299,-0.00349396][-0.933867,0.357599,0.00389297][0.25,0.041667,0][0.93707,-1.25001,-0.003511][-0.443889,0.896068,0.00495835][0.25,0,0][0.925416,-1.25001,0.202645][-0.439389,0.897467,-0.0385947][0.208333,0,0][0.925416,-1.25001,0.202645][-0.439389,0.897467,-0.0385947][0.208333,0,0][1.13699,-0.97299,0.211113][-0.927629,0.341038,-0.152306][0.208333,0.041667,0][1.16233,-0.97299,-0.00349396][-0.933867,0.357599,0.00389297][0.25,0.041667,0][1.13699,-0.97299,-0.218102][-0.922015,0.35424,0.156212][0.291667,0.041667,0][0.925416,-1.25001,-0.209666][-0.45316,0.890222,0.0463794][0.291667,0,0][0.93707,-1.25001,-0.003511][-0.443889,0.896068,0.00495835][0.25,0,0][0.93707,-1.25001,-0.003511][-0.443889,0.896068,0.00495835][0.25,0,0][1.16233,-0.97299,-0.00349396][-0.933867,0.357599,0.00389297][0.25,0.041667,0][1.13699,-0.97299,-0.218102][-0.922015,0.35424,0.156212][0.291667,0.041667,0][1.08693,-0.97299,-0.43271][-0.895439,0.32103,0.308429][0.333333,0.041667,0][0.905448,-1.25001,-0.415822][-0.485332,0.853775,0.18847][0.333333,0,0][0.925416,-1.25001,-0.209666][-0.45316,0.890222,0.0463794][0.291667,0,0][0.925416,-1.25001,-0.209666][-0.45316,0.890222,0.0463794][0.291667,0,0][1.13699,-0.97299,-0.218102][-0.922015,0.35424,0.156212][0.291667,0.041667,0][1.08693,-0.97299,-0.43271][-0.895439,0.32103,0.308429][0.333333,0.041667,0][0.957014,-0.97299,-0.693617][-0.766472,0.33725,0.546611][0.375,0.041667,0][0.764466,-1.24923,-0.580859][-1.86781,2.79911,1.57613][0.375,0,0][0.905448,-1.25001,-0.415822][-0.485332,0.853775,0.18847][0.333333,0,0][0.905448,-1.25001,-0.415822][-0.485332,0.853775,0.18847][0.333333,0,0][1.08693,-0.97299,-0.43271][-0.895439,0.32103,0.308429][0.333333,0.041667,0][0.957014,-0.97299,-0.693617][-0.766472,0.33725,0.546611][0.375,0.041667,0][1.12304,-0.449887,0.436144][-0.939532,0.0353521,-0.340631][0.166667,0.083333,0][1.08693,-0.97299,0.425721][-0.895724,0.309779,-0.318928][0.166667,0.041667,0][0.957014,-0.97299,0.686628][-0.777249,0.30543,-0.550087][0.125,0.041667,0][0.957014,-0.97299,0.686628][-0.777249,0.30543,-0.550087][0.125,0.041667,0][0.988802,-0.449887,0.703396][-0.817593,0.0335063,-0.57482][0.125,0.083333,0][1.12304,-0.449887,0.436144][-0.939532,0.0353521,-0.340631][0.166667,0.083333,0][1.17476,-0.449887,0.216316][-0.984145,0.0361438,-0.173642][0.208333,0.083333,0][1.13699,-0.97299,0.211113][-0.927629,0.341038,-0.152306][0.208333,0.041667,0][1.08693,-0.97299,0.425721][-0.895724,0.309779,-0.318928][0.166667,0.041667,0][1.08693,-0.97299,0.425721][-0.895724,0.309779,-0.318928][0.166667,0.041667,0][1.12304,-0.449887,0.436144][-0.939532,0.0353521,-0.340631][0.166667,0.083333,0][1.17476,-0.449887,0.216316][-0.984145,0.0361438,-0.173642][0.208333,0.083333,0][1.20094,-0.449887,-0.00351096][-0.999328,0.0366477,6.33096e-005][0.25,0.083333,0][1.16233,-0.97299,-0.00349396][-0.933867,0.357599,0.00389297][0.25,0.041667,0][1.13699,-0.97299,0.211113][-0.927629,0.341038,-0.152306][0.208333,0.041667,0][1.13699,-0.97299,0.211113][-0.927629,0.341038,-0.152306][0.208333,0.041667,0][1.17476,-0.449887,0.216316][-0.984145,0.0361438,-0.173642][0.208333,0.083333,0][1.20094,-0.449887,-0.00351096][-0.999328,0.0366477,6.33096e-005][0.25,0.083333,0][1.17476,-0.449887,-0.223338][-0.984127,0.0363769,0.173698][0.291667,0.083333,0][1.13699,-0.97299,-0.218102][-0.922015,0.35424,0.156212][0.291667,0.041667,0][1.16233,-0.97299,-0.00349396][-0.933867,0.357599,0.00389297][0.25,0.041667,0][1.16233,-0.97299,-0.00349396][-0.933867,0.357599,0.00389297][0.25,0.041667,0][1.20094,-0.449887,-0.00351096][-0.999328,0.0366477,6.33096e-005][0.25,0.083333,0][1.17476,-0.449887,-0.223338][-0.984127,0.0363769,0.173698][0.291667,0.083333,0][1.12304,-0.449887,-0.443165][-0.939462,0.0358354,0.340773][0.333333,0.083333,0][1.08693,-0.97299,-0.43271][-0.895439,0.32103,0.308429][0.333333,0.041667,0][1.13699,-0.97299,-0.218102][-0.922015,0.35424,0.156212][0.291667,0.041667,0][1.13699,-0.97299,-0.218102][-0.922015,0.35424,0.156212][0.291667,0.041667,0][1.17476,-0.449887,-0.223338][-0.984127,0.0363769,0.173698][0.291667,0.083333,0][1.12304,-0.449887,-0.443165][-0.939462,0.0358354,0.340773][0.333333,0.083333,0][0.988802,-0.449887,-0.710417][-0.819991,0.0253017,0.571817][0.375,0.083333,0][0.957014,-0.97299,-0.693617][-0.766472,0.33725,0.546611][0.375,0.041667,0][1.08693,-0.97299,-0.43271][-0.895439,0.32103,0.308429][0.333333,0.041667,0][1.08693,-0.97299,-0.43271][-0.895439,0.32103,0.308429][0.333333,0.041667,0][1.12304,-0.449887,-0.443165][-0.939462,0.0358354,0.340773][0.333333,0.083333,0][0.988802,-0.449887,-0.710417][-0.819991,0.0253017,0.571817][0.375,0.083333,0][1.12304,-0.00752069,0.436144][-0.939966,0,-0.341269][0.166667,0.125,0][1.12304,-0.449887,0.436144][-0.939532,0.0353521,-0.340631][0.166667,0.083333,0][0.988802,-0.449887,0.703396][-0.817593,0.0335063,-0.57482][0.125,0.083333,0][0.988802,-0.449887,0.703396][-0.817593,0.0335063,-0.57482][0.125,0.083333,0][0.988802,-0.00752069,0.703396][-0.817622,0,-0.575755][0.125,0.125,0][1.12304,-0.00752069,0.436144][-0.939966,0,-0.341269][0.166667,0.125,0][1.17476,-0.00752069,0.216316][-0.984759,0,-0.173922][0.208333,0.125,0][1.17476,-0.449887,0.216316][-0.984145,0.0361438,-0.173642][0.208333,0.083333,0][1.12304,-0.449887,0.436144][-0.939532,0.0353521,-0.340631][0.166667,0.083333,0][1.12304,-0.449887,0.436144][-0.939532,0.0353521,-0.340631][0.166667,0.083333,0][1.12304,-0.00752069,0.436144][-0.939966,0,-0.341269][0.166667,0.125,0][1.17476,-0.00752069,0.216316][-0.984759,0,-0.173922][0.208333,0.125,0][1.20094,-0.00752069,-0.00351096][-1,0,-2.73942e-007][0.25,0.125,0][1.20094,-0.449887,-0.00351096][-0.999328,0.0366477,6.33096e-005][0.25,0.083333,0][1.17476,-0.449887,0.216316][-0.984145,0.0361438,-0.173642][0.208333,0.083333,0][1.17476,-0.449887,0.216316][-0.984145,0.0361438,-0.173642][0.208333,0.083333,0][1.17476,-0.00752069,0.216316][-0.984759,0,-0.173922][0.208333,0.125,0][1.20094,-0.00752069,-0.00351096][-1,0,-2.73942e-007][0.25,0.125,0][1.17476,-0.00752069,-0.223338][-0.984759,0,0.173922][0.291667,0.125,0][1.17476,-0.449887,-0.223338][-0.984127,0.0363769,0.173698][0.291667,0.083333,0][1.20094,-0.449887,-0.00351096][-0.999328,0.0366477,6.33096e-005][0.25,0.083333,0][1.20094,-0.449887,-0.00351096][-0.999328,0.0366477,6.33096e-005][0.25,0.083333,0][1.20094,-0.00752069,-0.00351096][-1,0,-2.73942e-007][0.25,0.125,0][1.17476,-0.00752069,-0.223338][-0.984759,0,0.173922][0.291667,0.125,0][1.12304,-0.00752069,-0.443165][-0.939966,0,0.341269][0.333333,0.125,0][1.12304,-0.449887,-0.443165][-0.939462,0.0358354,0.340773][0.333333,0.083333,0][1.17476,-0.449887,-0.223338][-0.984127,0.0363769,0.173698][0.291667,0.083333,0][1.17476,-0.449887,-0.223338][-0.984127,0.0363769,0.173698][0.291667,0.083333,0][1.17476,-0.00752069,-0.223338][-0.984759,0,0.173922][0.291667,0.125,0][1.12304,-0.00752069,-0.443165][-0.939966,0,0.341269][0.333333,0.125,0][0.988802,-0.00752069,-0.710417][-0.801473,0,0.59803][0.375,0.125,0][0.988802,-0.449887,-0.710417][-0.819991,0.0253017,0.571817][0.375,0.083333,0][1.12304,-0.449887,-0.443165][-0.939462,0.0358354,0.340773][0.333333,0.083333,0][1.12304,-0.449887,-0.443165][-0.939462,0.0358354,0.340773][0.333333,0.083333,0][1.12304,-0.00752069,-0.443165][-0.939966,0,0.341269][0.333333,0.125,0][0.988802,-0.00752069,-0.710417][-0.801473,0,0.59803][0.375,0.125,0][1.12304,0.377865,0.436144][-0.938663,-0.0485423,-0.341403][0.166667,0.166667,0][1.12304,-0.00752069,0.436144][-0.939966,0,-0.341269][0.166667,0.125,0][0.988802,-0.00752069,0.703396][-0.817622,0,-0.575755][0.125,0.125,0][0.988802,-0.00752069,0.703396][-0.817622,0,-0.575755][0.125,0.125,0][0.988802,0.377865,0.703396][-0.815993,-0.051485,-0.575765][0.125,0.166667,0][1.12304,0.377865,0.436144][-0.938663,-0.0485423,-0.341403][0.166667,0.166667,0][1.17476,0.377865,0.216316][-0.983636,-0.047079,-0.173907][0.208333,0.166667,0][1.17476,-0.00752069,0.216316][-0.984759,0,-0.173922][0.208333,0.125,0][1.12304,-0.00752069,0.436144][-0.939966,0,-0.341269][0.166667,0.125,0][1.12304,-0.00752069,0.436144][-0.939966,0,-0.341269][0.166667,0.125,0][1.12304,0.377865,0.436144][-0.938663,-0.0485423,-0.341403][0.166667,0.166667,0][1.17476,0.377865,0.216316][-0.983636,-0.047079,-0.173907][0.208333,0.166667,0][1.20094,0.377865,-0.00351096][-0.998896,-0.0469803,7.83539e-005][0.25,0.166667,0][1.20094,-0.00752069,-0.00351096][-1,0,-2.73942e-007][0.25,0.125,0][1.17476,-0.00752069,0.216316][-0.984759,0,-0.173922][0.208333,0.125,0][1.17476,-0.00752069,0.216316][-0.984759,0,-0.173922][0.208333,0.125,0][1.17476,0.377865,0.216316][-0.983636,-0.047079,-0.173907][0.208333,0.166667,0][1.20094,0.377865,-0.00351096][-0.998896,-0.0469803,7.83539e-005][0.25,0.166667,0][1.17476,0.377865,-0.223338][-0.983611,-0.0473405,0.173979][0.291667,0.166667,0][1.17476,-0.00752069,-0.223338][-0.984759,0,0.173922][0.291667,0.125,0][1.20094,-0.00752069,-0.00351096][-1,0,-2.73942e-007][0.25,0.125,0][1.20094,-0.00752069,-0.00351096][-1,0,-2.73942e-007][0.25,0.125,0][1.20094,0.377865,-0.00351096][-0.998896,-0.0469803,7.83539e-005][0.25,0.166667,0][1.17476,0.377865,-0.223338][-0.983611,-0.0473405,0.173979][0.291667,0.166667,0][1.12304,0.377865,-0.443165][-0.938575,-0.0490682,0.34157][0.333333,0.166667,0][1.12304,-0.00752069,-0.443165][-0.939966,0,0.341269][0.333333,0.125,0][1.17476,-0.00752069,-0.223338][-0.984759,0,0.173922][0.291667,0.125,0][1.17476,-0.00752069,-0.223338][-0.984759,0,0.173922][0.291667,0.125,0][1.17476,0.377865,-0.223338][-0.983611,-0.0473405,0.173979][0.291667,0.166667,0][1.12304,0.377865,-0.443165][-0.938575,-0.0490682,0.34157][0.333333,0.166667,0][0.988802,0.377865,-0.710417][-0.799832,-0.0522881,0.597943][0.375,0.166667,0][0.988802,-0.00752069,-0.710417][-0.801473,0,0.59803][0.375,0.125,0][1.12304,-0.00752069,-0.443165][-0.939966,0,0.341269][0.333333,0.125,0][1.12304,-0.00752069,-0.443165][-0.939966,0,0.341269][0.333333,0.125,0][1.12304,0.377865,-0.443165][-0.938575,-0.0490682,0.34157][0.333333,0.166667,0][0.988802,0.377865,-0.710417][-0.799832,-0.0522881,0.597943][0.375,0.166667,0][1.09448,0.701305,0.421818][-0.910558,-0.245055,-0.332915][0.166667,0.208333,0][1.12304,0.377865,0.436144][-0.938663,-0.0485423,-0.341403][0.166667,0.166667,0][0.988802,0.377865,0.703396][-0.815993,-0.051485,-0.575765][0.125,0.166667,0][0.988802,0.377865,0.703396][-0.815993,-0.051485,-0.575765][0.125,0.166667,0][0.963655,0.701305,0.680362][-0.764197,-0.279969,-0.581051][0.125,0.208333,0][1.09448,0.701305,0.421818][-0.910558,-0.245055,-0.332915][0.166667,0.208333,0][1.14488,0.701305,0.209154][-0.953894,-0.249156,-0.167353][0.208333,0.208333,0][1.17476,0.377865,0.216316][-0.983636,-0.047079,-0.173907][0.208333,0.166667,0][1.12304,0.377865,0.436144][-0.938663,-0.0485423,-0.341403][0.166667,0.166667,0][1.12304,0.377865,0.436144][-0.938663,-0.0485423,-0.341403][0.166667,0.166667,0][1.09448,0.701305,0.421818][-0.910558,-0.245055,-0.332915][0.166667,0.208333,0][1.14488,0.701305,0.209154][-0.953894,-0.249156,-0.167353][0.208333,0.208333,0][1.1704,0.701305,-0.00351096][-0.968088,-0.250591,-0.00304206][0.25,0.208333,0][1.20094,0.377865,-0.00351096][-0.998896,-0.0469803,7.83539e-005][0.25,0.166667,0][1.17476,0.377865,0.216316][-0.983636,-0.047079,-0.173907][0.208333,0.166667,0][1.17476,0.377865,0.216316][-0.983636,-0.047079,-0.173907][0.208333,0.166667,0][1.14488,0.701305,0.209154][-0.953894,-0.249156,-0.167353][0.208333,0.208333,0][1.1704,0.701305,-0.00351096][-0.968088,-0.250591,-0.00304206][0.25,0.208333,0][1.14488,0.701305,-0.216175][-0.956746,-0.239156,0.165653][0.291667,0.208333,0][1.17476,0.377865,-0.223338][-0.983611,-0.0473405,0.173979][0.291667,0.166667,0][1.20094,0.377865,-0.00351096][-0.998896,-0.0469803,7.83539e-005][0.25,0.166667,0][1.20094,0.377865,-0.00351096][-0.998896,-0.0469803,7.83539e-005][0.25,0.166667,0][1.1704,0.701305,-0.00351096][-0.968088,-0.250591,-0.00304206][0.25,0.208333,0][1.14488,0.701305,-0.216175][-0.956746,-0.239156,0.165653][0.291667,0.208333,0][1.09448,0.701305,-0.428839][-0.906934,-0.245638,0.342247][0.333333,0.208333,0][1.12304,0.377865,-0.443165][-0.938575,-0.0490682,0.34157][0.333333,0.166667,0][1.17476,0.377865,-0.223338][-0.983611,-0.0473405,0.173979][0.291667,0.166667,0][1.17476,0.377865,-0.223338][-0.983611,-0.0473405,0.173979][0.291667,0.166667,0][1.14488,0.701305,-0.216175][-0.956746,-0.239156,0.165653][0.291667,0.208333,0][1.09448,0.701305,-0.428839][-0.906934,-0.245638,0.342247][0.333333,0.208333,0][0.963655,0.701305,-0.687384][-0.774644,-0.26668,0.573419][0.375,0.208333,0][0.988802,0.377865,-0.710417][-0.799832,-0.0522881,0.597943][0.375,0.166667,0][1.12304,0.377865,-0.443165][-0.938575,-0.0490682,0.34157][0.333333,0.166667,0][1.12304,0.377865,-0.443165][-0.938575,-0.0490682,0.34157][0.333333,0.166667,0][1.09448,0.701305,-0.428839][-0.906934,-0.245638,0.342247][0.333333,0.208333,0][0.963655,0.701305,-0.687384][-0.774644,-0.26668,0.573419][0.375,0.208333,0][1.00866,0.96504,0.340148][-0.723345,-0.644957,-0.246582][0.166667,0.25,0][1.09448,0.701305,0.421818][-0.910558,-0.245055,-0.332915][0.166667,0.208333,0][0.963655,0.701305,0.680362][-0.764197,-0.279969,-0.581051][0.125,0.208333,0][0.963655,0.701305,0.680362][-0.764197,-0.279969,-0.581051][0.125,0.208333,0][0.889634,0.905954,0.608024][-0.662035,-0.557836,-0.500528][0.125,0.25,0][1.00866,0.96504,0.340148][-0.723345,-0.644957,-0.246582][0.166667,0.25,0][1.03091,0.980097,0.168319][-0.733747,-0.671098,-0.106031][0.208333,0.25,0][1.14488,0.701305,0.209154][-0.953894,-0.249156,-0.167353][0.208333,0.208333,0][1.09448,0.701305,0.421818][-0.910558,-0.245055,-0.332915][0.166667,0.208333,0][1.09448,0.701305,0.421818][-0.910558,-0.245055,-0.332915][0.166667,0.208333,0][1.00866,0.96504,0.340148][-0.723345,-0.644957,-0.246582][0.166667,0.25,0][1.03091,0.980097,0.168319][-0.733747,-0.671098,-0.106031][0.208333,0.25,0][1.04389,0.980097,-0.00351098][-0.744623,-0.667433,-0.00841279][0.25,0.25,0][1.1704,0.701305,-0.00351096][-0.968088,-0.250591,-0.00304206][0.25,0.208333,0][1.14488,0.701305,0.209154][-0.953894,-0.249156,-0.167353][0.208333,0.208333,0][1.14488,0.701305,0.209154][-0.953894,-0.249156,-0.167353][0.208333,0.208333,0][1.03091,0.980097,0.168319][-0.733747,-0.671098,-0.106031][0.208333,0.25,0][1.04389,0.980097,-0.00351098][-0.744623,-0.667433,-0.00841279][0.25,0.25,0][1.03091,0.980097,-0.17534][-0.735417,-0.669709,0.103211][0.291667,0.25,0][1.14488,0.701305,-0.216175][-0.956746,-0.239156,0.165653][0.291667,0.208333,0][1.1704,0.701305,-0.00351096][-0.968088,-0.250591,-0.00304206][0.25,0.208333,0][1.1704,0.701305,-0.00351096][-0.968088,-0.250591,-0.00304206][0.25,0.208333,0][1.04389,0.980097,-0.00351098][-0.744623,-0.667433,-0.00841279][0.25,0.25,0][1.03091,0.980097,-0.17534][-0.735417,-0.669709,0.103211][0.291667,0.25,0][1.00866,0.96504,-0.34717][-0.731578,-0.627069,0.267542][0.333333,0.25,0][1.09448,0.701305,-0.428839][-0.906934,-0.245638,0.342247][0.333333,0.208333,0][1.14488,0.701305,-0.216175][-0.956746,-0.239156,0.165653][0.291667,0.208333,0][1.14488,0.701305,-0.216175][-0.956746,-0.239156,0.165653][0.291667,0.208333,0][1.03091,0.980097,-0.17534][-0.735417,-0.669709,0.103211][0.291667,0.25,0][1.00866,0.96504,-0.34717][-0.731578,-0.627069,0.267542][0.333333,0.25,0][0.889634,0.905954,-0.615045][-0.680262,-0.552994,0.481084][0.375,0.25,0][0.963655,0.701305,-0.687384][-0.774644,-0.26668,0.573419][0.375,0.208333,0][1.09448,0.701305,-0.428839][-0.906934,-0.245638,0.342247][0.333333,0.208333,0][1.09448,0.701305,-0.428839][-0.906934,-0.245638,0.342247][0.333333,0.208333,0][1.00866,0.96504,-0.34717][-0.731578,-0.627069,0.267542][0.333333,0.25,0][0.889634,0.905954,-0.615045][-0.680262,-0.552994,0.481084][0.375,0.25,0][0.367712,-1.20886,-0.937961][-0.107949,0.127702,0.985921][0.458333,0,0][0.371055,-1.23356,-0.944994][-0.102007,0.596748,0.795919][0.458333,0,0][0.669721,-1.11851,-0.942115][-0.356849,0.328084,0.874654][0.416667,0,0][0.669721,-1.11851,-0.942115][-0.356849,0.328084,0.874654][0.416667,0,0][0.641161,-1.09847,-0.927424][-0.0510406,-0.0664104,0.996486][0.416667,0,0][0.367712,-1.20886,-0.937961][-0.107949,0.127702,0.985921][0.458333,0,0][0.641161,-1.09847,-0.927424][-0.0510406,-0.0664104,0.996486][0.416667,0,0][0.669721,-1.11851,-0.942115][-0.356849,0.328084,0.874654][0.416667,0,0][0.740734,-0.97299,-0.928288][-0.365432,0.173813,0.914466][0.416667,0.041667,0][0.740734,-0.97299,-0.928288][-0.365432,0.173813,0.914466][0.416667,0.041667,0][0.712547,-0.966245,-0.919762][-0.0830325,0.0226362,0.99629][0.416667,0.041667,0][0.641161,-1.09847,-0.927424][-0.0510406,-0.0664104,0.996486][0.416667,0,0][2.85687e-007,-1.20853,-0.994198][0.0036976,0.21763,0.976024][0.5,0,0][2.86292e-007,-1.23356,-1.00067][2.93304e-005,0.537998,0.842946][0.5,0,0][0.371055,-1.23356,-0.944994][-0.102007,0.596748,0.795919][0.458333,0,0][0.371055,-1.23356,-0.944994][-0.102007,0.596748,0.795919][0.458333,0,0][0.367712,-1.20886,-0.937961][-0.107949,0.127702,0.985921][0.458333,0,0][2.85687e-007,-1.20853,-0.994198][0.0036976,0.21763,0.976024][0.5,0,0][-0.367712,-1.20886,-0.937961][0.135979,0.102761,0.985368][0.541667,0,0][-0.371055,-1.23356,-0.944994][0.111157,0.591594,0.798537][0.541667,0,0][2.86292e-007,-1.23356,-1.00067][2.93304e-005,0.537998,0.842946][0.5,0,0][2.86292e-007,-1.23356,-1.00067][2.93304e-005,0.537998,0.842946][0.5,0,0][2.85687e-007,-1.20853,-0.994198][0.0036976,0.21763,0.976024][0.5,0,0][-0.367712,-1.20886,-0.937961][0.135979,0.102761,0.985368][0.541667,0,0][-0.641161,-1.09847,-0.927423][-0.133059,-0.226312,0.964924][0.583333,0,0][-0.669721,-1.11851,-0.942115][0.272738,0.357886,0.893046][0.583333,0,0][-0.371055,-1.23356,-0.944994][0.111157,0.591594,0.798537][0.541667,0,0][-0.371055,-1.23356,-0.944994][0.111157,0.591594,0.798537][0.541667,0,0][-0.367712,-1.20886,-0.937961][0.135979,0.102761,0.985368][0.541667,0,0][-0.641161,-1.09847,-0.927423][-0.133059,-0.226312,0.964924][0.583333,0,0][-0.712547,-0.966245,-0.919762][0.0357721,0.0400703,0.998556][0.583333,0.041667,0][-0.740734,-0.97299,-0.928288][0.336091,0.0812715,0.938316][0.583333,0.041667,0][-0.669721,-1.11851,-0.942115][0.272738,0.357886,0.893046][0.583333,0,0][-0.669721,-1.11851,-0.942115][0.272738,0.357886,0.893046][0.583333,0,0][-0.641161,-1.09847,-0.927423][-0.133059,-0.226312,0.964924][0.583333,0,0][-0.712547,-0.966245,-0.919762][0.0357721,0.0400703,0.998556][0.583333,0.041667,0][0.712547,-0.966245,-0.919762][-0.0830325,0.0226362,0.99629][0.416667,0.041667,0][0.740734,-0.97299,-0.928288][-0.365432,0.173813,0.914466][0.416667,0.041667,0][0.765338,-0.449887,-0.95665][-0.327433,0.0102891,0.944819][0.416667,0.083333,0][0.765338,-0.449887,-0.95665][-0.327433,0.0102891,0.944819][0.416667,0.083333,0][0.735986,-0.452271,-0.951113][-0.184721,0.0139988,0.982691][0.416667,0.083333,0][0.712547,-0.966245,-0.919762][-0.0830325,0.0226362,0.99629][0.416667,0.041667,0][-0.735987,-0.452271,-0.951113][0.18004,0.0510073,0.982336][0.583333,0.083333,0][-0.765338,-0.449887,-0.95665][0.334431,0.0408993,0.941532][0.583333,0.083333,0][-0.740734,-0.97299,-0.928288][0.336091,0.0812715,0.938316][0.583333,0.041667,0][-0.740734,-0.97299,-0.928288][0.336091,0.0812715,0.938316][0.583333,0.041667,0][-0.712547,-0.966245,-0.919762][0.0357721,0.0400703,0.998556][0.583333,0.041667,0][-0.735987,-0.452271,-0.951113][0.18004,0.0510073,0.982336][0.583333,0.083333,0][0.735986,-0.452271,-0.951113][-0.184721,0.0139988,0.982691][0.416667,0.083333,0][0.765338,-0.449887,-0.95665][-0.327433,0.0102891,0.944819][0.416667,0.083333,0][0.739963,-0.00752069,-0.944186][-0.514687,-0.00954207,0.857325][0.416667,0.125,0][0.739963,-0.00752069,-0.944186][-0.514687,-0.00954207,0.857325][0.416667,0.125,0][0.694424,-0.00788499,-0.9596][-1.76806,-0.064462,4.29176][0.416667,0.125,0][0.735986,-0.452271,-0.951113][-0.184721,0.0139988,0.982691][0.416667,0.083333,0][-0.694978,-0.00788497,-0.971931][2.34758,-0.198959,4.02594][0.583333,0.125,0][-0.739964,-0.00752066,-0.944186][0.606015,-0.0300106,0.794887][0.583333,0.125,0][-0.765338,-0.449887,-0.95665][0.334431,0.0408993,0.941532][0.583333,0.083333,0][-0.765338,-0.449887,-0.95665][0.334431,0.0408993,0.941532][0.583333,0.083333,0][-0.735987,-0.452271,-0.951113][0.18004,0.0510073,0.982336][0.583333,0.083333,0][-0.694978,-0.00788497,-0.971931][2.34758,-0.198959,4.02594][0.583333,0.125,0][0.692904,0.348366,-0.960597][-1.70986,0.54681,4.04724][0.416667,0.166667,0][0.739963,0.377865,-0.944186][-0.568105,-0.0226809,0.822643][0.416667,0.166667,0][0.383983,0.481295,-1.14778][-0.302439,0.143605,0.942289][0.458333,0.166667,0][0.383983,0.481295,-1.14778][-0.302439,0.143605,0.942289][0.458333,0.166667,0][0.366093,0.435323,-1.12597][-0.700973,1.66938,2.96462][0.458333,0.166667,0][0.692904,0.348366,-0.960597][-1.70986,0.54681,4.04724][0.416667,0.166667,0][0.694424,-0.00788499,-0.9596][-1.76806,-0.064462,4.29176][0.416667,0.125,0][0.739963,-0.00752069,-0.944186][-0.514687,-0.00954207,0.857325][0.416667,0.125,0][0.739963,0.377865,-0.944186][-0.568105,-0.0226809,0.822643][0.416667,0.166667,0][0.739963,0.377865,-0.944186][-0.568105,-0.0226809,0.822643][0.416667,0.166667,0][0.692904,0.348366,-0.960597][-1.70986,0.54681,4.04724][0.416667,0.166667,0][0.694424,-0.00788499,-0.9596][-1.76806,-0.064462,4.29176][0.416667,0.125,0][0.366093,0.435323,-1.12597][-0.700973,1.66938,2.96462][0.458333,0.166667,0][0.383983,0.481295,-1.14778][-0.302439,0.143605,0.942289][0.458333,0.166667,0][3.42442e-007,0.481295,-1.20331][0.00228089,0.136526,0.990634][0.5,0.166667,0][3.42442e-007,0.481295,-1.20331][0.00228089,0.136526,0.990634][0.5,0.166667,0][3.38974e-007,0.439034,-1.18451][-0.0151897,1.33269,2.97273][0.5,0.166667,0][0.366093,0.435323,-1.12597][-0.700973,1.66938,2.96462][0.458333,0.166667,0][3.38974e-007,0.439034,-1.18451][-0.0151897,1.33269,2.97273][0.5,0.166667,0][3.42442e-007,0.481295,-1.20331][0.00228089,0.136526,0.990634][0.5,0.166667,0][-0.383983,0.481295,-1.14778][0.300956,0.147786,0.942117][0.541667,0.166667,0][-0.383983,0.481295,-1.14778][0.300956,0.147786,0.942117][0.541667,0.166667,0][-0.366094,0.435323,-1.12597][0.782598,1.63589,2.94686][0.541667,0.166667,0][3.38974e-007,0.439034,-1.18451][-0.0151897,1.33269,2.97273][0.5,0.166667,0][-0.693458,0.348366,-0.970193][2.08777,-0.198899,3.94503][0.583333,0.166667,0][-0.739964,0.377865,-0.944186][0.590939,-0.0461039,0.805398][0.583333,0.166667,0][-0.739964,-0.00752066,-0.944186][0.606015,-0.0300106,0.794887][0.583333,0.125,0][-0.739964,-0.00752066,-0.944186][0.606015,-0.0300106,0.794887][0.583333,0.125,0][-0.694978,-0.00788497,-0.971931][2.34758,-0.198959,4.02594][0.583333,0.125,0][-0.693458,0.348366,-0.970193][2.08777,-0.198899,3.94503][0.583333,0.166667,0][-0.366094,0.435323,-1.12597][0.782598,1.63589,2.94686][0.541667,0.166667,0][-0.383983,0.481295,-1.14778][0.300956,0.147786,0.942117][0.541667,0.166667,0][-0.739964,0.377865,-0.944186][0.590939,-0.0461039,0.805398][0.583333,0.166667,0][-0.739964,0.377865,-0.944186][0.590939,-0.0461039,0.805398][0.583333,0.166667,0][-0.693458,0.348366,-0.970193][2.08777,-0.198899,3.94503][0.583333,0.166667,0][-0.366094,0.435323,-1.12597][0.782598,1.63589,2.94686][0.541667,0.166667,0][0.700281,-0.00745488,-0.972009][1.76922,0.0644863,-4.29757][0.416667,0.125,0][0.407585,-0.0244322,-1.13695][1.17824,0.285699,-3.12865][0.458333,0.125,0][0.402764,-0.0255995,-1.12431][-1.17945,-0.286199,3.13208][0.458333,0.125,0][0.402764,-0.0255995,-1.12431][-1.17945,-0.286199,3.13208][0.458333,0.125,0][0.694424,-0.00788499,-0.9596][-1.76806,-0.064462,4.29176][0.416667,0.125,0][0.700281,-0.00745488,-0.972009][1.76922,0.0644863,-4.29757][0.416667,0.125,0][0.407585,-0.0244322,-1.13695][1.17824,0.285699,-3.12865][0.458333,0.125,0][-2.2664e-005,0.0527334,-1.20274][-0.00895335,0.293439,-2.73187][0.5,0.125,0][3.33907e-007,0.0512524,-1.18922][0.00920382,-0.292318,2.72877][0.5,0.125,0][3.33907e-007,0.0512524,-1.18922][0.00920382,-0.292318,2.72877][0.5,0.125,0][0.402764,-0.0255995,-1.12431][-1.17945,-0.286199,3.13208][0.458333,0.125,0][0.407585,-0.0244322,-1.13695][1.17824,0.285699,-3.12865][0.458333,0.125,0][-2.2664e-005,0.0527334,-1.20274][-0.00895335,0.293439,-2.73187][0.5,0.125,0][-0.375409,-0.0244026,-1.1403][-1.00193,0.396075,-3.21653][0.541667,0.125,0][-0.37076,-0.0255995,-1.12755][1.00405,-0.395739,3.22005][0.541667,0.125,0][-0.37076,-0.0255995,-1.12755][1.00405,-0.395739,3.22005][0.541667,0.125,0][3.33907e-007,0.0512524,-1.18922][0.00920382,-0.292318,2.72877][0.5,0.125,0][-2.2664e-005,0.0527334,-1.20274][-0.00895335,0.293439,-2.73187][0.5,0.125,0][-0.375409,-0.0244026,-1.1403][-1.00193,0.396075,-3.21653][0.541667,0.125,0][-0.701888,-0.00741671,-0.983881][-2.34908,0.199335,-4.03004][0.583333,0.125,0][-0.694978,-0.00788497,-0.971931][2.34758,-0.198959,4.02594][0.583333,0.125,0][-0.694978,-0.00788497,-0.971931][2.34758,-0.198959,4.02594][0.583333,0.125,0][-0.37076,-0.0255995,-1.12755][1.00405,-0.395739,3.22005][0.541667,0.125,0][-0.375409,-0.0244026,-1.1403][-1.00193,0.396075,-3.21653][0.541667,0.125,0][0.764405,-1.26305,0.538671][0.0458085,-4.13024,0.0290526][0.416667,0.791667,0][0.409039,-1.26305,0.733775][0.00940376,-3.52645,0.0217391][0.458333,0.791667,0][0.409064,-1.24923,0.733846][0.00775718,3.52651,0.0193087][0.458333,0.791667,0][0.409064,-1.24923,0.733846][0.00775718,3.52651,0.0193087][0.458333,0.791667,0][0.764466,-1.24923,0.538713][0.031132,4.13041,0.0198723][0.416667,0.791667,0][0.764405,-1.26305,0.538671][0.0458085,-4.13024,0.0290526][0.416667,0.791667,0][0.409039,-1.26305,0.733775][0.00940376,-3.52645,0.0217391][0.458333,0.791667,0][0,-1.26305,0.781913][0.000568503,-3.37585,0.0157803][0.5,0.791667,0][0,-1.24923,0.781978][0.000260797,3.3758,0.0154587][0.5,0.791667,0][0,-1.24923,0.781978][0.000260797,3.3758,0.0154587][0.5,0.791667,0][0.409064,-1.24923,0.733846][0.00775718,3.52651,0.0193087][0.458333,0.791667,0][0.409039,-1.26305,0.733775][0.00940376,-3.52645,0.0217391][0.458333,0.791667,0][0,-1.26305,0.781913][0.000568503,-3.37585,0.0157803][0.5,0.791667,0][-0.409039,-1.26305,0.733775][-0.00956087,-3.52645,0.02143][0.541667,0.791667,0][-0.409064,-1.24923,0.733846][-0.00871059,3.5265,0.0197755][0.541667,0.791667,0][-0.409064,-1.24923,0.733846][-0.00871059,3.5265,0.0197755][0.541667,0.791667,0][0,-1.24923,0.781978][0.000260797,3.3758,0.0154587][0.5,0.791667,0][0,-1.26305,0.781913][0.000568503,-3.37585,0.0157803][0.5,0.791667,0][-0.409039,-1.26305,0.733775][-0.00956087,-3.52645,0.02143][0.541667,0.791667,0][-0.764405,-1.26305,0.538671][-0.075534,-4.12928,0.0572309][0.583333,0.791667,0][-0.764466,-1.24923,0.538713][-0.0650242,4.12955,0.0502552][0.583333,0.791667,0][-0.764466,-1.24923,0.538713][-0.0650242,4.12955,0.0502552][0.583333,0.791667,0][-0.409064,-1.24923,0.733846][-0.00871059,3.5265,0.0197755][0.541667,0.791667,0][-0.409039,-1.26305,0.733775][-0.00956087,-3.52645,0.02143][0.541667,0.791667,0][0.78309,-1.26305,0.304342][0.021251,-3.16444,0.00459968][0.416667,0.833333,0][0.764405,-1.26305,0.538671][0.0458085,-4.13024,0.0290526][0.416667,0.791667,0][0.764466,-1.24923,0.538713][0.031132,4.13041,0.0198723][0.416667,0.791667,0][0.764466,-1.24923,0.538713][0.031132,4.13041,0.0198723][0.416667,0.791667,0][0.78317,-1.24923,0.304347][0.0184397,3.16454,0.00148691][0.416667,0.833333,0][0.78309,-1.26305,0.304342][0.021251,-3.16444,0.00459968][0.416667,0.833333,0][-0.764405,-1.26305,0.538671][-0.075534,-4.12928,0.0572309][0.583333,0.791667,0][-0.78309,-1.26305,0.304342][-0.0157342,-3.16447,0.00122208][0.583333,0.833333,0][-0.78317,-1.24923,0.304347][-0.0181928,3.16454,0.00133423][0.583333,0.833333,0][-0.78317,-1.24923,0.304347][-0.0181928,3.16454,0.00133423][0.583333,0.833333,0][-0.764466,-1.24923,0.538713][-0.0650242,4.12955,0.0502552][0.583333,0.791667,0][-0.764405,-1.26305,0.538671][-0.075534,-4.12928,0.0572309][0.583333,0.791667,0][0.800548,-1.26305,-0.00351102][0.0154552,-3.25485,0.000158861][0.416667,0.875,0][0.78309,-1.26305,0.304342][0.021251,-3.16444,0.00459968][0.416667,0.833333,0][0.78317,-1.24923,0.304347][0.0184397,3.16454,0.00148691][0.416667,0.833333,0][0.78317,-1.24923,0.304347][0.0184397,3.16454,0.00148691][0.416667,0.833333,0][0.800626,-1.24923,-0.00351102][0.0184831,3.25482,-1.04649e-006][0.416667,0.875,0][0.800548,-1.26305,-0.00351102][0.0154552,-3.25485,0.000158861][0.416667,0.875,0][-0.78309,-1.26305,0.304342][-0.0157342,-3.16447,0.00122208][0.583333,0.833333,0][-0.800548,-1.26305,-0.00351126][-0.0154879,-3.25485,-0.0001513][0.583333,0.875,0][-0.800626,-1.24923,-0.00351126][-0.0184831,3.25482,1.04307e-006][0.583333,0.875,0][-0.800626,-1.24923,-0.00351126][-0.0184831,3.25482,1.04307e-006][0.583333,0.875,0][-0.78317,-1.24923,0.304347][-0.0181928,3.16454,0.00133423][0.583333,0.833333,0][-0.78309,-1.26305,0.304342][-0.0157342,-3.16447,0.00122208][0.583333,0.833333,0][0.78309,-1.26305,-0.311363][0.0209612,-3.14512,-0.00905346][0.416667,0.916667,0][0.800548,-1.26305,-0.00351102][0.0154552,-3.25485,0.000158861][0.416667,0.875,0][0.800626,-1.24923,-0.00351102][0.0184831,3.25482,-1.04649e-006][0.416667,0.875,0][0.800626,-1.24923,-0.00351102][0.0184831,3.25482,-1.04649e-006][0.416667,0.875,0][0.78317,-1.24923,-0.311369][0.0180308,3.15419,-0.00118651][0.416667,0.916667,0][0.78309,-1.26305,-0.311363][0.0209612,-3.14512,-0.00905346][0.416667,0.916667,0][-0.800548,-1.26305,-0.00351126][-0.0154879,-3.25485,-0.0001513][0.583333,0.875,0][-0.78309,-1.26305,-0.311363][-0.019603,-3.14513,-0.00812419][0.583333,0.916667,0][-0.78317,-1.24923,-0.311369][-0.0184248,3.15419,-0.00142765][0.583333,0.916667,0][-0.78317,-1.24923,-0.311369][-0.0184248,3.15419,-0.00142765][0.583333,0.916667,0][-0.800626,-1.24923,-0.00351126][-0.0184831,3.25482,1.04307e-006][0.583333,0.875,0][-0.800548,-1.26305,-0.00351126][-0.0154879,-3.25485,-0.0001513][0.583333,0.875,0][0.766663,-1.2621,-0.583531][1.84834,-2.82316,-1.58156][0.395833,0.979167,0][0.78309,-1.26305,-0.311363][0.0209612,-3.14512,-0.00905346][0.416667,0.916667,0][0.78317,-1.24923,-0.311369][0.0180308,3.15419,-0.00118651][0.416667,0.916667,0][0.78317,-1.24923,-0.311369][0.0180308,3.15419,-0.00118651][0.416667,0.916667,0][0.764466,-1.24923,-0.580859][-1.86781,2.79911,1.57613][0.395833,0.979167,0][0.766663,-1.2621,-0.583531][1.84834,-2.82316,-1.58156][0.395833,0.979167,0][-0.78309,-1.26305,-0.311363][-0.019603,-3.14513,-0.00812419][0.583333,0.916667,0][-0.766664,-1.2621,-0.583531][-1.97273,-2.80428,-1.43598][0.604167,0.979167,0][-0.764466,-1.24923,-0.580859][1.98923,2.78137,1.42994][0.604167,0.979167,0][-0.764466,-1.24923,-0.580859][1.98923,2.78137,1.42994][0.604167,0.979167,0][-0.78317,-1.24923,-0.311369][-0.0184248,3.15419,-0.00142765][0.583333,0.916667,0][-0.78309,-1.26305,-0.311363][-0.019603,-3.14513,-0.00812419][0.583333,0.916667,0][0.551262,-1.26207,-0.755093][0.762507,-3.35957,-1.02416][0.458333,0.958333,0][0.766663,-1.2621,-0.583531][1.84834,-2.82316,-1.58156][0.395833,0.979167,0][0.764466,-1.24923,-0.580859][-1.86781,2.79911,1.57613][0.395833,0.979167,0][0.764466,-1.24923,-0.580859][-1.86781,2.79911,1.57613][0.395833,0.979167,0][0.548903,-1.24923,-0.751719][-0.670099,3.41849,0.895633][0.458333,0.958333,0][0.551262,-1.26207,-0.755093][0.762507,-3.35957,-1.02416][0.458333,0.958333,0][2.64033e-007,-1.26298,-0.856166][0.0119295,-3.46582,-0.482013][0.5,0.958333,0][0.551262,-1.26207,-0.755093][0.762507,-3.35957,-1.02416][0.458333,0.958333,0][0.548903,-1.24923,-0.751719][-0.670099,3.41849,0.895633][0.458333,0.958333,0][0.548903,-1.24923,-0.751719][-0.670099,3.41849,0.895633][0.458333,0.958333,0][2.64027e-007,-1.24923,-0.85477][-0.006086,3.49036,0.370883][0.5,0.958333,0][2.64033e-007,-1.26298,-0.856166][0.0119295,-3.46582,-0.482013][0.5,0.958333,0][-0.551262,-1.26207,-0.755092][-0.981899,-3.19924,-1.24823][0.541667,0.958333,0][2.64033e-007,-1.26298,-0.856166][0.0119295,-3.46582,-0.482013][0.5,0.958333,0][2.64027e-007,-1.24923,-0.85477][-0.006086,3.49036,0.370883][0.5,0.958333,0][2.64027e-007,-1.24923,-0.85477][-0.006086,3.49036,0.370883][0.5,0.958333,0][-0.548903,-1.24923,-0.751719][0.973106,3.20975,1.21676][0.541667,0.958333,0][-0.551262,-1.26207,-0.755092][-0.981899,-3.19924,-1.24823][0.541667,0.958333,0][-0.766664,-1.2621,-0.583531][-1.97273,-2.80428,-1.43598][0.604167,0.979167,0][-0.551262,-1.26207,-0.755092][-0.981899,-3.19924,-1.24823][0.541667,0.958333,0][-0.548903,-1.24923,-0.751719][0.973106,3.20975,1.21676][0.541667,0.958333,0][-0.548903,-1.24923,-0.751719][0.973106,3.20975,1.21676][0.541667,0.958333,0][-0.764466,-1.24923,-0.580859][1.98923,2.78137,1.42994][0.604167,0.979167,0][-0.766664,-1.2621,-0.583531][-1.97273,-2.80428,-1.43598][0.604167,0.979167,0][0.369497,0.429748,-1.13804][0.715738,-1.61735,-2.97751][0.458333,0.166667,0][0.697635,0.345801,-0.973049][1.71128,-0.541574,-4.05337][0.416667,0.166667,0][0.692904,0.348366,-0.960597][-1.70986,0.54681,4.04724][0.416667,0.166667,0][0.692904,0.348366,-0.960597][-1.70986,0.54681,4.04724][0.416667,0.166667,0][0.366093,0.435323,-1.12597][-0.700973,1.66938,2.96462][0.458333,0.166667,0][0.369497,0.429748,-1.13804][0.715738,-1.61735,-2.97751][0.458333,0.166667,0][0.697635,0.345801,-0.973049][1.71128,-0.541574,-4.05337][0.416667,0.166667,0][0.700281,-0.00745488,-0.972009][1.76922,0.0644863,-4.29757][0.416667,0.125,0][0.694424,-0.00788499,-0.9596][-1.76806,-0.064462,4.29176][0.416667,0.125,0][0.694424,-0.00788499,-0.9596][-1.76806,-0.064462,4.29176][0.416667,0.125,0][0.692904,0.348366,-0.960597][-1.70986,0.54681,4.04724][0.416667,0.166667,0][0.697635,0.345801,-0.973049][1.71128,-0.541574,-4.05337][0.416667,0.166667,0][3.40741e-007,0.433002,-1.19681][0.0138997,-1.30709,-2.97625][0.5,0.166667,0][0.369497,0.429748,-1.13804][0.715738,-1.61735,-2.97751][0.458333,0.166667,0][0.366093,0.435323,-1.12597][-0.700973,1.66938,2.96462][0.458333,0.166667,0][0.366093,0.435323,-1.12597][-0.700973,1.66938,2.96462][0.458333,0.166667,0][3.38974e-007,0.439034,-1.18451][-0.0151897,1.33269,2.97273][0.5,0.166667,0][3.40741e-007,0.433002,-1.19681][0.0138997,-1.30709,-2.97625][0.5,0.166667,0][-0.369672,0.430374,-1.1382][-0.797981,-1.58232,-2.96054][0.541667,0.166667,0][3.40741e-007,0.433002,-1.19681][0.0138997,-1.30709,-2.97625][0.5,0.166667,0][3.38974e-007,0.439034,-1.18451][-0.0151897,1.33269,2.97273][0.5,0.166667,0][3.38974e-007,0.439034,-1.18451][-0.0151897,1.33269,2.97273][0.5,0.166667,0][-0.366094,0.435323,-1.12597][0.782598,1.63589,2.94686][0.541667,0.166667,0][-0.369672,0.430374,-1.1382][-0.797981,-1.58232,-2.96054][0.541667,0.166667,0][-0.701888,-0.00741671,-0.983881][-2.34908,0.199335,-4.03004][0.583333,0.125,0][-0.699612,0.346456,-0.982231][-2.07721,0.194064,-3.9595][0.583333,0.166667,0][-0.693458,0.348366,-0.970193][2.08777,-0.198899,3.94503][0.583333,0.166667,0][-0.693458,0.348366,-0.970193][2.08777,-0.198899,3.94503][0.583333,0.166667,0][-0.694978,-0.00788497,-0.971931][2.34758,-0.198959,4.02594][0.583333,0.125,0][-0.701888,-0.00741671,-0.983881][-2.34908,0.199335,-4.03004][0.583333,0.125,0][-0.699612,0.346456,-0.982231][-2.07721,0.194064,-3.9595][0.583333,0.166667,0][-0.369672,0.430374,-1.1382][-0.797981,-1.58232,-2.96054][0.541667,0.166667,0][-0.366094,0.435323,-1.12597][0.782598,1.63589,2.94686][0.541667,0.166667,0][-0.366094,0.435323,-1.12597][0.782598,1.63589,2.94686][0.541667,0.166667,0][-0.693458,0.348366,-0.970193][2.08777,-0.198899,3.94503][0.583333,0.166667,0][-0.699612,0.346456,-0.982231][-2.07721,0.194064,-3.9595][0.583333,0.166667,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/PaperBag.mesh b/shareddata/charcustom/hats/fonts/PaperBag.mesh deleted file mode 100644 index caf22e2..0000000 --- a/shareddata/charcustom/hats/fonts/PaperBag.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -696 -[1.55725,-1.71948,-1.31556][-1.05464,-1.68926,0.167229][1,0,0][1.4489,-1.63021,-1.0088][-1.57996,-2.39871,0.733937][1,0.142857,0][1.01676,-1.34195,-0.910514][0.146499,-0.984685,-0.0945186][0.875,0.142857,0][1.01676,-1.34195,-0.910514][0.146499,-0.984685,-0.0945186][0.875,0.142857,0][1.07789,-1.43431,-1.31887][0.869614,-2.23699,0.278618][0.875,0,0][1.55725,-1.71948,-1.31556][-1.05464,-1.68926,0.167229][1,0,0][1.07789,-1.43431,-1.31887][0.869614,-2.23699,0.278618][0.875,0,0][1.01676,-1.34195,-0.910514][0.146499,-0.984685,-0.0945186][0.875,0.142857,0][0.691402,-1.78166,-0.997908][0.133718,-0.988202,-0.0746696][0.75,0.142857,0][0.691402,-1.78166,-0.997908][0.133718,-0.988202,-0.0746696][0.75,0.142857,0][0.799749,-1.64903,-1.39704][-0.219088,-2.48168,-0.589658][0.75,0,0][1.07789,-1.43431,-1.31887][0.869614,-2.23699,0.278618][0.875,0,0][0.799749,-1.64903,-1.39704][-0.219088,-2.48168,-0.589658][0.75,0,0][0.691402,-1.78166,-0.997908][0.133718,-0.988202,-0.0746696][0.75,0.142857,0][0.269132,-1.49668,-1.02265][-0.0210753,-0.969116,-0.245703][0.625,0.142857,0][0.269132,-1.49668,-1.02265][-0.0210753,-0.969116,-0.245703][0.625,0.142857,0][0.329608,-1.47863,-1.36857][0.887299,-2.48049,0.123581][0.625,0,0][0.799749,-1.64903,-1.39704][-0.219088,-2.48168,-0.589658][0.75,0,0][0.329608,-1.47863,-1.36857][0.887299,-2.48049,0.123581][0.625,0,0][0.269132,-1.49668,-1.02265][-0.0210753,-0.969116,-0.245703][0.625,0.142857,0][-0.0660983,-1.71811,-0.866518][0.0957395,-0.984017,0.15015][0.5,0.142857,0][-0.0660983,-1.71811,-0.866518][0.0957395,-0.984017,0.15015][0.5,0.142857,0][0.0422493,-1.74044,-1.36736][-0.257425,-2.44378,-0.139213][0.5,0,0][0.329608,-1.47863,-1.36857][0.887299,-2.48049,0.123581][0.625,0,0][0.0422493,-1.74044,-1.36736][-0.257425,-2.44378,-0.139213][0.5,0,0][-0.0660983,-1.71811,-0.866518][0.0957395,-0.984017,0.15015][0.5,0.142857,0][-0.488368,-1.54901,-0.859612][0.0267913,-0.996661,-0.0771352][0.375,0.142857,0][-0.488368,-1.54901,-0.859612][0.0267913,-0.996661,-0.0771352][0.375,0.142857,0][-0.427892,-1.42492,-1.3346][0.705262,-2.29828,-0.310348][0.375,0,0][0.0422493,-1.74044,-1.36736][-0.257425,-2.44378,-0.139213][0.5,0,0][-0.427892,-1.42492,-1.3346][0.705262,-2.29828,-0.310348][0.375,0,0][-0.488368,-1.54901,-0.859612][0.0267913,-0.996661,-0.0771352][0.375,0.142857,0][-0.823598,-1.76564,-0.811005][0.0299089,-0.983065,0.180801][0.25,0.142857,0][-0.823598,-1.76564,-0.811005][0.0299089,-0.983065,0.180801][0.25,0.142857,0][-0.715251,-1.74243,-1.34909][-0.370836,-2.3181,-0.122578][0.25,0,0][-0.427892,-1.42492,-1.3346][0.705262,-2.29828,-0.310348][0.375,0,0][-0.715251,-1.74243,-1.34909][-0.370836,-2.3181,-0.122578][0.25,0,0][-0.823598,-1.76564,-0.811005][0.0299089,-0.983065,0.180801][0.25,0.142857,0][-1.24587,-1.42296,-1.10385][0.00430179,-0.999104,-0.0420943][0.125,0.142857,0][-1.24587,-1.42296,-1.10385][0.00430179,-0.999104,-0.0420943][0.125,0.142857,0][-1.18539,-1.43034,-1.39019][0.580442,-2.44767,-0.070826][0.125,0,0][-0.715251,-1.74243,-1.34909][-0.370836,-2.3181,-0.122578][0.25,0,0][-1.18539,-1.43034,-1.39019][0.580442,-2.44767,-0.070826][0.125,0,0][-1.24587,-1.42296,-1.10385][0.00430179,-0.999104,-0.0420943][0.125,0.142857,0][-1.5811,-1.70132,-1.04564][1.70962,-2.37644,-0.256489][0,0.142857,0][-1.5811,-1.70132,-1.04564][1.70962,-2.37644,-0.256489][0,0.142857,0][-1.47275,-1.59917,-1.32227][0.47848,-0.867954,-0.13309][0,0,0][-1.18539,-1.43034,-1.39019][0.580442,-2.44767,-0.070826][0.125,0,0][1.4489,-1.63021,-1.0088][-1.57996,-2.39871,0.733937][1,0.142857,0][1.70952,-1.64483,-0.558129][-1.51847,-2.29029,-0.519997][1,0.285714,0][1.34235,-1.36635,-0.566735][0.112236,-0.99366,0.00652026][0.875,0.285714,0][1.34235,-1.36635,-0.566735][0.112236,-0.99366,0.00652026][0.875,0.285714,0][1.01676,-1.34195,-0.910514][0.146499,-0.984685,-0.0945186][0.875,0.142857,0][1.4489,-1.63021,-1.0088][-1.57996,-2.39871,0.733937][1,0.142857,0][1.01676,-1.34195,-0.910514][0.146499,-0.984685,-0.0945186][0.875,0.142857,0][1.34235,-1.36635,-0.566735][0.112236,-0.99366,0.00652026][0.875,0.285714,0][0.952022,-1.81727,-0.62614][0.139961,-0.981879,-0.127771][0.75,0.285714,0][0.952022,-1.81727,-0.62614][0.139961,-0.981879,-0.127771][0.75,0.285714,0][0.691402,-1.78166,-0.997908][0.133718,-0.988202,-0.0746696][0.75,0.142857,0][1.01676,-1.34195,-0.910514][0.146499,-0.984685,-0.0945186][0.875,0.142857,0][0.691402,-1.78166,-0.997908][0.133718,-0.988202,-0.0746696][0.75,0.142857,0][0.952022,-1.81727,-0.62614][0.139961,-0.981879,-0.127771][0.75,0.285714,0][0.567903,-1.59051,-0.585605][-0.0580518,-0.986226,0.154882][0.625,0.285714,0][0.567903,-1.59051,-0.585605][-0.0580518,-0.986226,0.154882][0.625,0.285714,0][0.269132,-1.49668,-1.02265][-0.0210753,-0.969116,-0.245703][0.625,0.142857,0][0.691402,-1.78166,-0.997908][0.133718,-0.988202,-0.0746696][0.75,0.142857,0][0.269132,-1.49668,-1.02265][-0.0210753,-0.969116,-0.245703][0.625,0.142857,0][0.567903,-1.59051,-0.585605][-0.0580518,-0.986226,0.154882][0.625,0.285714,0][0.194522,-1.73473,-0.705925][-0.0733629,-0.997026,-0.0236087][0.5,0.285714,0][0.194522,-1.73473,-0.705925][-0.0733629,-0.997026,-0.0236087][0.5,0.285714,0][-0.0660983,-1.71811,-0.866518][0.0957395,-0.984017,0.15015][0.5,0.142857,0][0.269132,-1.49668,-1.02265][-0.0210753,-0.969116,-0.245703][0.625,0.142857,0][-0.0660983,-1.71811,-0.866518][0.0957395,-0.984017,0.15015][0.5,0.142857,0][0.194522,-1.73473,-0.705925][-0.0733629,-0.997026,-0.0236087][0.5,0.285714,0][-0.189597,-1.50866,-0.642624][0.0448723,-0.958489,0.281576][0.375,0.285714,0][-0.189597,-1.50866,-0.642624][0.0448723,-0.958489,0.281576][0.375,0.285714,0][-0.488368,-1.54901,-0.859612][0.0267913,-0.996661,-0.0771352][0.375,0.142857,0][-0.0660983,-1.71811,-0.866518][0.0957395,-0.984017,0.15015][0.5,0.142857,0][-0.488368,-1.54901,-0.859612][0.0267913,-0.996661,-0.0771352][0.375,0.142857,0][-0.189597,-1.50866,-0.642624][0.0448723,-0.958489,0.281576][0.375,0.285714,0][-0.562978,-1.65723,-0.598769][-0.0432896,-0.99645,-0.0721976][0.25,0.285714,0][-0.562978,-1.65723,-0.598769][-0.0432896,-0.99645,-0.0721976][0.25,0.285714,0][-0.823598,-1.76564,-0.811005][0.0299089,-0.983065,0.180801][0.25,0.142857,0][-0.488368,-1.54901,-0.859612][0.0267913,-0.996661,-0.0771352][0.375,0.142857,0][-0.823598,-1.76564,-0.811005][0.0299089,-0.983065,0.180801][0.25,0.142857,0][-0.562978,-1.65723,-0.598769][-0.0432896,-0.99645,-0.0721976][0.25,0.285714,0][-0.947097,-1.36951,-0.54696][0.0866243,-0.958169,0.272778][0.125,0.285714,0][-0.947097,-1.36951,-0.54696][0.0866243,-0.958169,0.272778][0.125,0.285714,0][-1.24587,-1.42296,-1.10385][0.00430179,-0.999104,-0.0420943][0.125,0.142857,0][-0.823598,-1.76564,-0.811005][0.0299089,-0.983065,0.180801][0.25,0.142857,0][-1.24587,-1.42296,-1.10385][0.00430179,-0.999104,-0.0420943][0.125,0.142857,0][-0.947097,-1.36951,-0.54696][0.0866243,-0.958169,0.272778][0.125,0.285714,0][-1.32048,-1.68846,-0.535494][1.8512,-2.24932,-0.394104][0,0.285714,0][-1.32048,-1.68846,-0.535494][1.8512,-2.24932,-0.394104][0,0.285714,0][-1.5811,-1.70132,-1.04564][1.70962,-2.37644,-0.256489][0,0.142857,0][-1.24587,-1.42296,-1.10385][0.00430179,-0.999104,-0.0420943][0.125,0.142857,0][1.70952,-1.64483,-0.558129][-1.51847,-2.29029,-0.519997][1,0.285714,0][1.61851,-1.7501,-0.158419][-0.915007,-2.52099,0.517523][1,0.428571,0][1.10353,-1.48856,-0.161725][0.108223,-0.986591,-0.122176][0.875,0.428571,0][1.10353,-1.48856,-0.161725][0.108223,-0.986591,-0.122176][0.875,0.428571,0][1.34235,-1.36635,-0.566735][0.112236,-0.99366,0.00652026][0.875,0.285714,0][1.70952,-1.64483,-0.558129][-1.51847,-2.29029,-0.519997][1,0.285714,0][1.34235,-1.36635,-0.566735][0.112236,-0.99366,0.00652026][0.875,0.285714,0][1.10353,-1.48856,-0.161725][0.108223,-0.986591,-0.122176][0.875,0.428571,0][0.861006,-1.73839,-0.239896][0.0743569,-0.977243,0.198661][0.75,0.428571,0][0.861006,-1.73839,-0.239896][0.0743569,-0.977243,0.198661][0.75,0.428571,0][0.952022,-1.81727,-0.62614][0.139961,-0.981879,-0.127771][0.75,0.285714,0][1.34235,-1.36635,-0.566735][0.112236,-0.99366,0.00652026][0.875,0.285714,0][0.952022,-1.81727,-0.62614][0.139961,-0.981879,-0.127771][0.75,0.285714,0][0.861006,-1.73839,-0.239896][0.0743569,-0.977243,0.198661][0.75,0.428571,0][0.357725,-1.45508,-0.211425][0.0683121,-0.982443,0.173607][0.625,0.428571,0][0.357725,-1.45508,-0.211425][0.0683121,-0.982443,0.173607][0.625,0.428571,0][0.567903,-1.59051,-0.585605][-0.0580518,-0.986226,0.154882][0.625,0.285714,0][0.952022,-1.81727,-0.62614][0.139961,-0.981879,-0.127771][0.75,0.285714,0][0.567903,-1.59051,-0.585605][-0.0580518,-0.986226,0.154882][0.625,0.285714,0][0.357725,-1.45508,-0.211425][0.0683121,-0.982443,0.173607][0.625,0.428571,0][0.103506,-1.64677,-0.210221][-0.0622459,-0.997123,0.0432508][0.5,0.428571,0][0.103506,-1.64677,-0.210221][-0.0622459,-0.997123,0.0432508][0.5,0.428571,0][0.194522,-1.73473,-0.705925][-0.0733629,-0.997026,-0.0236087][0.5,0.285714,0][0.567903,-1.59051,-0.585605][-0.0580518,-0.986226,0.154882][0.625,0.285714,0][0.194522,-1.73473,-0.705925][-0.0733629,-0.997026,-0.0236087][0.5,0.285714,0][0.103506,-1.64677,-0.210221][-0.0622459,-0.997123,0.0432508][0.5,0.428571,0][-0.399775,-1.33949,-0.177461][0.0204913,-0.997913,0.0612355][0.375,0.428571,0][-0.399775,-1.33949,-0.177461][0.0204913,-0.997913,0.0612355][0.375,0.428571,0][-0.189597,-1.50866,-0.642624][0.0448723,-0.958489,0.281576][0.375,0.285714,0][0.194522,-1.73473,-0.705925][-0.0733629,-0.997026,-0.0236087][0.5,0.285714,0][-0.189597,-1.50866,-0.642624][0.0448723,-0.958489,0.281576][0.375,0.285714,0][-0.399775,-1.33949,-0.177461][0.0204913,-0.997913,0.0612355][0.375,0.428571,0][-0.653994,-1.68854,-0.191949][0.0626162,-0.97672,0.205178][0.25,0.428571,0][-0.653994,-1.68854,-0.191949][0.0626162,-0.97672,0.205178][0.25,0.428571,0][-0.562978,-1.65723,-0.598769][-0.0432896,-0.99645,-0.0721976][0.25,0.285714,0][-0.189597,-1.50866,-0.642624][0.0448723,-0.958489,0.281576][0.375,0.285714,0][-0.562978,-1.65723,-0.598769][-0.0432896,-0.99645,-0.0721976][0.25,0.285714,0][-0.653994,-1.68854,-0.191949][0.0626162,-0.97672,0.205178][0.25,0.428571,0][-1.15727,-1.38876,-0.233047][0.112008,-0.992025,-0.0577907][0.125,0.428571,0][-1.15727,-1.38876,-0.233047][0.112008,-0.992025,-0.0577907][0.125,0.428571,0][-0.947097,-1.36951,-0.54696][0.0866243,-0.958169,0.272778][0.125,0.285714,0][-0.562978,-1.65723,-0.598769][-0.0432896,-0.99645,-0.0721976][0.25,0.285714,0][-0.947097,-1.36951,-0.54696][0.0866243,-0.958169,0.272778][0.125,0.285714,0][-1.15727,-1.38876,-0.233047][0.112008,-0.992025,-0.0577907][0.125,0.428571,0][-1.41149,-1.69361,-0.16513][2.14015,-1.90034,0.57995][0,0.428571,0][-1.41149,-1.69361,-0.16513][2.14015,-1.90034,0.57995][0,0.428571,0][-1.32048,-1.68846,-0.535494][1.8512,-2.24932,-0.394104][0,0.285714,0][-0.947097,-1.36951,-0.54696][0.0866243,-0.958169,0.272778][0.125,0.285714,0][1.61851,-1.7501,-0.158419][-0.915007,-2.52099,0.517523][1,0.428571,0][1.56947,-1.49246,0.201533][-0.232078,-2.79896,0.697531][1,0.571429,0][1.29694,-1.47788,0.198923][0.194227,-0.942014,0.27365][0.875,0.571429,0][1.29694,-1.47788,0.198923][0.194227,-0.942014,0.27365][0.875,0.571429,0][1.10353,-1.48856,-0.161725][0.108223,-0.986591,-0.122176][0.875,0.428571,0][1.61851,-1.7501,-0.158419][-0.915007,-2.52099,0.517523][1,0.428571,0][1.10353,-1.48856,-0.161725][0.108223,-0.986591,-0.122176][0.875,0.428571,0][1.29694,-1.47788,0.198923][0.194227,-0.942014,0.27365][0.875,0.571429,0][0.811965,-1.75651,0.14373][0.01885,-0.982649,-0.184514][0.75,0.571429,0][0.811965,-1.75651,0.14373][0.01885,-0.982649,-0.184514][0.75,0.571429,0][0.861006,-1.73839,-0.239896][0.0743569,-0.977243,0.198661][0.75,0.428571,0][1.10353,-1.48856,-0.161725][0.108223,-0.986591,-0.122176][0.875,0.428571,0][0.861006,-1.73839,-0.239896][0.0743569,-0.977243,0.198661][0.75,0.428571,0][0.811965,-1.75651,0.14373][0.01885,-0.982649,-0.184514][0.75,0.571429,0][0.532727,-1.3304,0.231037][-0.0935641,-0.970711,-0.221282][0.625,0.571429,0][0.532727,-1.3304,0.231037][-0.0935641,-0.970711,-0.221282][0.625,0.571429,0][0.357725,-1.45508,-0.211425][0.0683121,-0.982443,0.173607][0.625,0.428571,0][0.861006,-1.73839,-0.239896][0.0743569,-0.977243,0.198661][0.75,0.428571,0][0.357725,-1.45508,-0.211425][0.0683121,-0.982443,0.173607][0.625,0.428571,0][0.532727,-1.3304,0.231037][-0.0935641,-0.970711,-0.221282][0.625,0.571429,0][0.0544652,-1.72956,0.0561451][0.0172395,-0.990018,-0.139884][0.5,0.571429,0][0.0544652,-1.72956,0.0561451][0.0172395,-0.990018,-0.139884][0.5,0.571429,0][0.103506,-1.64677,-0.210221][-0.0622459,-0.997123,0.0432508][0.5,0.428571,0][0.357725,-1.45508,-0.211425][0.0683121,-0.982443,0.173607][0.625,0.428571,0][0.103506,-1.64677,-0.210221][-0.0622459,-0.997123,0.0432508][0.5,0.428571,0][0.0544652,-1.72956,0.0561451][0.0172395,-0.990018,-0.139884][0.5,0.571429,0][-0.224773,-1.49606,0.129131][-0.183096,-0.96683,-0.178088][0.375,0.571429,0][-0.224773,-1.49606,0.129131][-0.183096,-0.96683,-0.178088][0.375,0.571429,0][-0.399775,-1.33949,-0.177461][0.0204913,-0.997913,0.0612355][0.375,0.428571,0][0.103506,-1.64677,-0.210221][-0.0622459,-0.997123,0.0432508][0.5,0.428571,0][-0.399775,-1.33949,-0.177461][0.0204913,-0.997913,0.0612355][0.375,0.428571,0][-0.224773,-1.49606,0.129131][-0.183096,-0.96683,-0.178088][0.375,0.571429,0][-0.703035,-1.59478,0.134377][-0.0553761,-0.982974,-0.175202][0.25,0.571429,0][-0.703035,-1.59478,0.134377][-0.0553761,-0.982974,-0.175202][0.25,0.571429,0][-0.653994,-1.68854,-0.191949][0.0626162,-0.97672,0.205178][0.25,0.428571,0][-0.399775,-1.33949,-0.177461][0.0204913,-0.997913,0.0612355][0.375,0.428571,0][-0.653994,-1.68854,-0.191949][0.0626162,-0.97672,0.205178][0.25,0.428571,0][-0.703035,-1.59478,0.134377][-0.0553761,-0.982974,-0.175202][0.25,0.571429,0][-0.982273,-1.40302,0.204029][0.0583267,-0.996403,0.0614809][0.125,0.571429,0][-0.982273,-1.40302,0.204029][0.0583267,-0.996403,0.0614809][0.125,0.571429,0][-1.15727,-1.38876,-0.233047][0.112008,-0.992025,-0.0577907][0.125,0.428571,0][-0.653994,-1.68854,-0.191949][0.0626162,-0.97672,0.205178][0.25,0.428571,0][-1.15727,-1.38876,-0.233047][0.112008,-0.992025,-0.0577907][0.125,0.428571,0][-0.982273,-1.40302,0.204029][0.0583267,-0.996403,0.0614809][0.125,0.571429,0][-1.46053,-1.76794,0.232154][1.93984,-2.18505,-0.0459622][0,0.571429,0][-1.46053,-1.76794,0.232154][1.93984,-2.18505,-0.0459622][0,0.571429,0][-1.41149,-1.69361,-0.16513][2.14015,-1.90034,0.57995][0,0.428571,0][-1.15727,-1.38876,-0.233047][0.112008,-0.992025,-0.0577907][0.125,0.428571,0][1.56947,-1.49246,0.201533][-0.232078,-2.79896,0.697531][1,0.571429,0][1.51488,-1.48273,0.613009][-0.806205,-2.42499,-0.515454][1,0.714286,0][0.97965,-1.41324,0.609704][0.284837,-0.915219,0.28503][0.875,0.714286,0][0.97965,-1.41324,0.609704][0.284837,-0.915219,0.28503][0.875,0.714286,0][1.29694,-1.47788,0.198923][0.194227,-0.942014,0.27365][0.875,0.571429,0][1.56947,-1.49246,0.201533][-0.232078,-2.79896,0.697531][1,0.571429,0][1.29694,-1.47788,0.198923][0.194227,-0.942014,0.27365][0.875,0.571429,0][0.97965,-1.41324,0.609704][0.284837,-0.915219,0.28503][0.875,0.714286,0][0.757381,-1.70263,0.531533][0.166107,-0.954138,0.249055][0.75,0.714286,0][0.757381,-1.70263,0.531533][0.166107,-0.954138,0.249055][0.75,0.714286,0][0.811965,-1.75651,0.14373][0.01885,-0.982649,-0.184514][0.75,0.571429,0][1.29694,-1.47788,0.198923][0.194227,-0.942014,0.27365][0.875,0.571429,0][0.811965,-1.75651,0.14373][0.01885,-0.982649,-0.184514][0.75,0.571429,0][0.757381,-1.70263,0.531533][0.166107,-0.954138,0.249055][0.75,0.714286,0][0.236037,-1.61572,0.560004][0.0129163,-0.999662,-0.0225499][0.625,0.714286,0][0.236037,-1.61572,0.560004][0.0129163,-0.999662,-0.0225499][0.625,0.714286,0][0.532727,-1.3304,0.231037][-0.0935641,-0.970711,-0.221282][0.625,0.571429,0][0.811965,-1.75651,0.14373][0.01885,-0.982649,-0.184514][0.75,0.571429,0][0.532727,-1.3304,0.231037][-0.0935641,-0.970711,-0.221282][0.625,0.571429,0][0.236037,-1.61572,0.560004][0.0129163,-0.999662,-0.0225499][0.625,0.714286,0][-0.000119392,-1.68593,0.561208][-0.0540058,-0.993836,-0.0968188][0.5,0.714286,0][-0.000119392,-1.68593,0.561208][-0.0540058,-0.993836,-0.0968188][0.5,0.714286,0][0.0544652,-1.72956,0.0561451][0.0172395,-0.990018,-0.139884][0.5,0.571429,0][0.532727,-1.3304,0.231037][-0.0935641,-0.970711,-0.221282][0.625,0.571429,0][0.0544652,-1.72956,0.0561451][0.0172395,-0.990018,-0.139884][0.5,0.571429,0][-0.000119392,-1.68593,0.561208][-0.0540058,-0.993836,-0.0968188][0.5,0.714286,0][-0.521463,-1.41499,0.593968][0.0454728,-0.998494,0.0306929][0.375,0.714286,0][-0.521463,-1.41499,0.593968][0.0454728,-0.998494,0.0306929][0.375,0.714286,0][-0.224773,-1.49606,0.129131][-0.183096,-0.96683,-0.178088][0.375,0.571429,0][0.0544652,-1.72956,0.0561451][0.0172395,-0.990018,-0.139884][0.5,0.571429,0][-0.224773,-1.49606,0.129131][-0.183096,-0.96683,-0.178088][0.375,0.571429,0][-0.521463,-1.41499,0.593968][0.0454728,-0.998494,0.0306929][0.375,0.714286,0][-0.757619,-1.63451,0.579479][0.135553,-0.987619,-0.078952][0.25,0.714286,0][-0.757619,-1.63451,0.579479][0.135553,-0.987619,-0.078952][0.25,0.714286,0][-0.703035,-1.59478,0.134377][-0.0553761,-0.982974,-0.175202][0.25,0.571429,0][-0.224773,-1.49606,0.129131][-0.183096,-0.96683,-0.178088][0.375,0.571429,0][-0.703035,-1.59478,0.134377][-0.0553761,-0.982974,-0.175202][0.25,0.571429,0][-0.757619,-1.63451,0.579479][0.135553,-0.987619,-0.078952][0.25,0.714286,0][-1.27896,-1.45159,0.538382][0.105216,-0.988604,-0.107668][0.125,0.714286,0][-1.27896,-1.45159,0.538382][0.105216,-0.988604,-0.107668][0.125,0.714286,0][-0.982273,-1.40302,0.204029][0.0583267,-0.996403,0.0614809][0.125,0.571429,0][-0.703035,-1.59478,0.134377][-0.0553761,-0.982974,-0.175202][0.25,0.571429,0][-0.982273,-1.40302,0.204029][0.0583267,-0.996403,0.0614809][0.125,0.571429,0][-1.27896,-1.45159,0.538382][0.105216,-0.988604,-0.107668][0.125,0.714286,0][-1.51512,-1.69513,0.606298][1.90534,-1.70506,1.41318][0,0.714286,0][-1.51512,-1.69513,0.606298][1.90534,-1.70506,1.41318][0,0.714286,0][-1.46053,-1.76794,0.232154][1.93984,-2.18505,-0.0459622][0,0.571429,0][-0.982273,-1.40302,0.204029][0.0583267,-0.996403,0.0614809][0.125,0.571429,0][1.51488,-1.48273,0.613009][-0.806205,-2.42499,-0.515454][1,0.714286,0][1.23661,-1.59718,0.906729][-1.83672,-1.94816,-0.368415][1,0.857143,0][0.920818,-1.33739,0.985008][0.047224,-0.973016,-0.225852][0.875,0.857143,0][0.920818,-1.33739,0.985008][0.047224,-0.973016,-0.225852][0.875,0.857143,0][0.97965,-1.41324,0.609704][0.284837,-0.915219,0.28503][0.875,0.714286,0][1.51488,-1.48273,0.613009][-0.806205,-2.42499,-0.515454][1,0.714286,0][0.97965,-1.41324,0.609704][0.284837,-0.915219,0.28503][0.875,0.714286,0][0.920818,-1.33739,0.985008][0.047224,-0.973016,-0.225852][0.875,0.857143,0][0.479106,-1.71542,0.921863][0.0473032,-0.986343,0.157766][0.75,0.857143,0][0.479106,-1.71542,0.921863][0.0473032,-0.986343,0.157766][0.75,0.857143,0][0.757381,-1.70263,0.531533][0.166107,-0.954138,0.249055][0.75,0.714286,0][0.97965,-1.41324,0.609704][0.284837,-0.915219,0.28503][0.875,0.714286,0][0.757381,-1.70263,0.531533][0.166107,-0.954138,0.249055][0.75,0.714286,0][0.479106,-1.71542,0.921863][0.0473032,-0.986343,0.157766][0.75,0.857143,0][0.165678,-1.44191,0.960731][-0.0697353,-0.996207,-0.0520469][0.625,0.857143,0][0.165678,-1.44191,0.960731][-0.0697353,-0.996207,-0.0520469][0.625,0.857143,0][0.236037,-1.61572,0.560004][0.0129163,-0.999662,-0.0225499][0.625,0.714286,0][0.757381,-1.70263,0.531533][0.166107,-0.954138,0.249055][0.75,0.714286,0][0.236037,-1.61572,0.560004][0.0129163,-0.999662,-0.0225499][0.625,0.714286,0][0.165678,-1.44191,0.960731][-0.0697353,-0.996207,-0.0520469][0.625,0.857143,0][-0.278394,-1.6473,1.0311][-0.104923,-0.969381,0.222017][0.5,0.857143,0][-0.278394,-1.6473,1.0311][-0.104923,-0.969381,0.222017][0.5,0.857143,0][-0.000119392,-1.68593,0.561208][-0.0540058,-0.993836,-0.0968188][0.5,0.714286,0][0.236037,-1.61572,0.560004][0.0129163,-0.999662,-0.0225499][0.625,0.714286,0][-0.000119392,-1.68593,0.561208][-0.0540058,-0.993836,-0.0968188][0.5,0.714286,0][-0.278394,-1.6473,1.0311][-0.104923,-0.969381,0.222017][0.5,0.857143,0][-0.591821,-1.48462,1.09783][0.0648398,-0.989967,-0.125545][0.375,0.857143,0][-0.591821,-1.48462,1.09783][0.0648398,-0.989967,-0.125545][0.375,0.857143,0][-0.521463,-1.41499,0.593968][0.0454728,-0.998494,0.0306929][0.375,0.714286,0][-0.000119392,-1.68593,0.561208][-0.0540058,-0.993836,-0.0968188][0.5,0.714286,0][-0.521463,-1.41499,0.593968][0.0454728,-0.998494,0.0306929][0.375,0.714286,0][-0.591821,-1.48462,1.09783][0.0648398,-0.989967,-0.125545][0.375,0.857143,0][-1.03589,-1.77431,1.12089][0.0128867,-0.98343,0.180829][0.25,0.857143,0][-1.03589,-1.77431,1.12089][0.0128867,-0.98343,0.180829][0.25,0.857143,0][-0.757619,-1.63451,0.579479][0.135553,-0.987619,-0.078952][0.25,0.714286,0][-0.521463,-1.41499,0.593968][0.0454728,-0.998494,0.0306929][0.375,0.714286,0][-0.757619,-1.63451,0.579479][0.135553,-0.987619,-0.078952][0.25,0.714286,0][-1.03589,-1.77431,1.12089][0.0128867,-0.98343,0.180829][0.25,0.857143,0][-1.34932,-1.58688,0.784191][-0.030581,-0.990578,-0.133491][0.125,0.857143,0][-1.34932,-1.58688,0.784191][-0.030581,-0.990578,-0.133491][0.125,0.857143,0][-1.27896,-1.45159,0.538382][0.105216,-0.988604,-0.107668][0.125,0.714286,0][-0.757619,-1.63451,0.579479][0.135553,-0.987619,-0.078952][0.25,0.714286,0][-1.27896,-1.45159,0.538382][0.105216,-0.988604,-0.107668][0.125,0.714286,0][-1.34932,-1.58688,0.784191][-0.030581,-0.990578,-0.133491][0.125,0.857143,0][-1.79339,-1.74473,0.84309][1.21881,-2.24716,0.225003][0,0.857143,0][-1.79339,-1.74473,0.84309][1.21881,-2.24716,0.225003][0,0.857143,0][-1.51512,-1.69513,0.606298][1.90534,-1.70506,1.41318][0,0.714286,0][-1.27896,-1.45159,0.538382][0.105216,-0.988604,-0.107668][0.125,0.714286,0][1.23661,-1.59718,0.906729][-1.83672,-1.94816,-0.368415][1,0.857143,0][1.45698,-1.69764,1.38444][-0.684889,-0.7093,0.166795][1,1,0][1.29876,-1.54563,1.38113][-1.04756,-2.23706,-0.290321][0.875,1,0][1.29876,-1.54563,1.38113][-1.04756,-2.23706,-0.290321][0.875,1,0][0.920818,-1.33739,0.985008][0.047224,-0.973016,-0.225852][0.875,0.857143,0][1.23661,-1.59718,0.906729][-1.83672,-1.94816,-0.368415][1,0.857143,0][0.920818,-1.33739,0.985008][0.047224,-0.973016,-0.225852][0.875,0.857143,0][1.29876,-1.54563,1.38113][-1.04756,-2.23706,-0.290321][0.875,1,0][0.699484,-1.67292,1.30296][0.385468,-2.23186,-0.539658][0.75,1,0][0.699484,-1.67292,1.30296][0.385468,-2.23186,-0.539658][0.75,1,0][0.479106,-1.71542,0.921863][0.0473032,-0.986343,0.157766][0.75,0.857143,0][0.920818,-1.33739,0.985008][0.047224,-0.973016,-0.225852][0.875,0.857143,0][0.479106,-1.71542,0.921863][0.0473032,-0.986343,0.157766][0.75,0.857143,0][0.699484,-1.67292,1.30296][0.385468,-2.23186,-0.539658][0.75,1,0][0.528175,-1.54963,1.33143][-0.831132,-2.3374,0.247897][0.625,1,0][0.528175,-1.54963,1.33143][-0.831132,-2.3374,0.247897][0.625,1,0][0.165678,-1.44191,0.960731][-0.0697353,-0.996207,-0.0520469][0.625,0.857143,0][0.479106,-1.71542,0.921863][0.0473032,-0.986343,0.157766][0.75,0.857143,0][0.165678,-1.44191,0.960731][-0.0697353,-0.996207,-0.0520469][0.625,0.857143,0][0.528175,-1.54963,1.33143][-0.831132,-2.3374,0.247897][0.625,1,0][-0.0580164,-1.72968,1.33264][-0.211281,-2.10231,-0.497345][0.5,1,0][-0.0580164,-1.72968,1.33264][-0.211281,-2.10231,-0.497345][0.5,1,0][-0.278394,-1.6473,1.0311][-0.104923,-0.969381,0.222017][0.5,0.857143,0][0.165678,-1.44191,0.960731][-0.0697353,-0.996207,-0.0520469][0.625,0.857143,0][-0.278394,-1.6473,1.0311][-0.104923,-0.969381,0.222017][0.5,0.857143,0][-0.0580164,-1.72968,1.33264][-0.211281,-2.10231,-0.497345][0.5,1,0][-0.229325,-1.39006,1.3654][-0.544839,-1.9617,0.671864][0.375,1,0][-0.229325,-1.39006,1.3654][-0.544839,-1.9617,0.671864][0.375,1,0][-0.591821,-1.48462,1.09783][0.0648398,-0.989967,-0.125545][0.375,0.857143,0][-0.278394,-1.6473,1.0311][-0.104923,-0.969381,0.222017][0.5,0.857143,0][-0.591821,-1.48462,1.09783][0.0648398,-0.989967,-0.125545][0.375,0.857143,0][-0.229325,-1.39006,1.3654][-0.544839,-1.9617,0.671864][0.375,1,0][-0.815516,-1.75312,1.35091][0.287513,-1.78927,-0.102337][0.25,1,0][-0.815516,-1.75312,1.35091][0.287513,-1.78927,-0.102337][0.25,1,0][-1.03589,-1.77431,1.12089][0.0128867,-0.98343,0.180829][0.25,0.857143,0][-0.591821,-1.48462,1.09783][0.0648398,-0.989967,-0.125545][0.375,0.857143,0][-1.03589,-1.77431,1.12089][0.0128867,-0.98343,0.180829][0.25,0.857143,0][-0.815516,-1.75312,1.35091][0.287513,-1.78927,-0.102337][0.25,1,0][-0.986825,-1.36465,1.30981][-0.988153,-1.30215,1.34076][0.125,1,0][-0.986825,-1.36465,1.30981][-0.988153,-1.30215,1.34076][0.125,1,0][-1.34932,-1.58688,0.784191][-0.030581,-0.990578,-0.133491][0.125,0.857143,0][-1.03589,-1.77431,1.12089][0.0128867,-0.98343,0.180829][0.25,0.857143,0][-1.34932,-1.58688,0.784191][-0.030581,-0.990578,-0.133491][0.125,0.857143,0][-0.986825,-1.36465,1.30981][-0.988153,-1.30215,1.34076][0.125,1,0][-1.57302,-1.67568,1.37773][0.805443,-1.82295,0.0308321][0,1,0][-1.57302,-1.67568,1.37773][0.805443,-1.82295,0.0308321][0,1,0][-1.79339,-1.74473,0.84309][1.21881,-2.24716,0.225003][0,0.857143,0][-1.34932,-1.58688,0.784191][-0.030581,-0.990578,-0.133491][0.125,0.857143,0][1.61533,1.58052,-1.52725][0.0521218,1.95133,-0.435331][0,0,0][1.23658,1.60015,-1.4799][-0.230379,2.79164,-0.100553][0.125,0,0][1.20802,1.69252,-1.07401][-0.206657,0.978392,0.00650204][0.125,0.142857,0][1.20802,1.69252,-1.07401][-0.206657,0.978392,0.00650204][0.125,0.142857,0][1.58677,1.66979,-1.1259][0.127683,2.97295,-0.168222][0,0.142857,0][1.61533,1.58052,-1.52725][0.0521218,1.95133,-0.435331][0,0,0][1.23658,1.60015,-1.4799][-0.230379,2.79164,-0.100553][0.125,0,0][0.857826,1.65097,-1.46317][0.098348,2.82879,0.7328][0.25,0,0][0.82927,1.51834,-1.10074][-0.0712085,0.976706,0.202421][0.25,0.142857,0][0.82927,1.51834,-1.10074][-0.0712085,0.976706,0.202421][0.25,0.142857,0][1.20802,1.69252,-1.07401][-0.206657,0.978392,0.00650204][0.125,0.142857,0][1.23658,1.60015,-1.4799][-0.230379,2.79164,-0.100553][0.125,0,0][0.857826,1.65097,-1.46317][0.098348,2.82879,0.7328][0.25,0,0][0.479076,1.57134,-1.38999][-0.15979,2.97218,0.0192374][0.375,0,0][0.45052,1.55329,-1.02176][0.0905792,0.988532,0.120832][0.375,0.142857,0][0.45052,1.55329,-1.02176][0.0905792,0.988532,0.120832][0.375,0.142857,0][0.82927,1.51834,-1.10074][-0.0712085,0.976706,0.202421][0.25,0.142857,0][0.857826,1.65097,-1.46317][0.098348,2.82879,0.7328][0.25,0,0][0.479076,1.57134,-1.38999][-0.15979,2.97218,0.0192374][0.375,0,0][0.100326,1.55956,-1.37106][-0.134256,2.92771,0.0932585][0.5,0,0][0.0717699,1.58189,-1.02854][-0.067617,0.997709,-0.00219857][0.5,0.142857,0][0.0717699,1.58189,-1.02854][-0.067617,0.997709,-0.00219857][0.5,0.142857,0][0.45052,1.55329,-1.02176][0.0905792,0.988532,0.120832][0.375,0.142857,0][0.479076,1.57134,-1.38999][-0.15979,2.97218,0.0192374][0.375,0,0][0.100326,1.55956,-1.37106][-0.134256,2.92771,0.0932585][0.5,0,0][-0.278424,1.62505,-1.42623][0.0710019,2.91364,0.539217][0.625,0,0][-0.30698,1.50096,-0.921261][0.007411,0.999479,-0.0314288][0.625,0.142857,0][-0.30698,1.50096,-0.921261][0.007411,0.999479,-0.0314288][0.625,0.142857,0][0.0717699,1.58189,-1.02854][-0.067617,0.997709,-0.00219857][0.5,0.142857,0][0.100326,1.55956,-1.37106][-0.134256,2.92771,0.0932585][0.5,0,0][-0.278424,1.62505,-1.42623][0.0710019,2.91364,0.539217][0.625,0,0][-0.657174,1.55757,-1.25884][0.216491,2.9488,0.128663][0.75,0,0][-0.68573,1.53436,-0.909552][0.116809,0.988794,-0.0929672][0.75,0.142857,0][-0.68573,1.53436,-0.909552][0.116809,0.988794,-0.0929672][0.75,0.142857,0][-0.30698,1.50096,-0.921261][0.007411,0.999479,-0.0314288][0.625,0.142857,0][-0.278424,1.62505,-1.42623][0.0710019,2.91364,0.539217][0.625,0,0][-0.657174,1.55757,-1.25884][0.216491,2.9488,0.128663][0.75,0,0][-1.03592,1.61962,-1.50821][0.404232,2.87754,0.289462][0.875,0,0][-1.06448,1.62701,-1.07348][0.064208,0.997262,-0.0366776][0.875,0.142857,0][-1.06448,1.62701,-1.07348][0.064208,0.997262,-0.0366776][0.875,0.142857,0][-0.68573,1.53436,-0.909552][0.116809,0.988794,-0.0929672][0.75,0.142857,0][-0.657174,1.55757,-1.25884][0.216491,2.9488,0.128663][0.75,0,0][-1.03592,1.61962,-1.50821][0.404232,2.87754,0.289462][0.875,0,0][-1.41467,1.70083,-1.36114][0.314986,0.894494,0.317277][1,0,0][-1.44323,1.59868,-1.04481][0.164754,2.88857,0.302624][1,0.142857,0][-1.44323,1.59868,-1.04481][0.164754,2.88857,0.302624][1,0.142857,0][-1.06448,1.62701,-1.07348][0.064208,0.997262,-0.0366776][0.875,0.142857,0][-1.03592,1.61962,-1.50821][0.404232,2.87754,0.289462][0.875,0,0][1.58677,1.66979,-1.1259][0.127683,2.97295,-0.168222][0,0.142857,0][1.20802,1.69252,-1.07401][-0.206657,0.978392,0.00650204][0.125,0.142857,0][1.41588,1.66812,-0.694891][-0.10998,0.986356,0.122499][0.125,0.285714,0][1.41588,1.66812,-0.694891][-0.10998,0.986356,0.122499][0.125,0.285714,0][1.79463,1.65517,-0.70663][0.107868,2.88323,0.684451][0,0.285714,0][1.58677,1.66979,-1.1259][0.127683,2.97295,-0.168222][0,0.142857,0][1.20802,1.69252,-1.07401][-0.206657,0.978392,0.00650204][0.125,0.142857,0][0.82927,1.51834,-1.10074][-0.0712085,0.976706,0.202421][0.25,0.142857,0][1.03713,1.48273,-0.780876][-0.240772,0.97051,-0.0118355][0.25,0.285714,0][1.03713,1.48273,-0.780876][-0.240772,0.97051,-0.0118355][0.25,0.285714,0][1.41588,1.66812,-0.694891][-0.10998,0.986356,0.122499][0.125,0.285714,0][1.20802,1.69252,-1.07401][-0.206657,0.978392,0.00650204][0.125,0.142857,0][0.82927,1.51834,-1.10074][-0.0712085,0.976706,0.202421][0.25,0.142857,0][0.45052,1.55329,-1.02176][0.0905792,0.988532,0.120832][0.375,0.142857,0][0.658375,1.45946,-0.68281][0.111721,0.993217,-0.0322242][0.375,0.285714,0][0.658375,1.45946,-0.68281][0.111721,0.993217,-0.0322242][0.375,0.285714,0][1.03713,1.48273,-0.780876][-0.240772,0.97051,-0.0118355][0.25,0.285714,0][0.82927,1.51834,-1.10074][-0.0712085,0.976706,0.202421][0.25,0.142857,0][0.45052,1.55329,-1.02176][0.0905792,0.988532,0.120832][0.375,0.142857,0][0.0717699,1.58189,-1.02854][-0.067617,0.997709,-0.00219857][0.5,0.142857,0][0.279625,1.56527,-0.544742][0.129647,0.989767,-0.0596091][0.5,0.285714,0][0.279625,1.56527,-0.544742][0.129647,0.989767,-0.0596091][0.5,0.285714,0][0.658375,1.45946,-0.68281][0.111721,0.993217,-0.0322242][0.375,0.285714,0][0.45052,1.55329,-1.02176][0.0905792,0.988532,0.120832][0.375,0.142857,0][0.0717699,1.58189,-1.02854][-0.067617,0.997709,-0.00219857][0.5,0.142857,0][-0.30698,1.50096,-0.921261][0.007411,0.999479,-0.0314288][0.625,0.142857,0][-0.0991249,1.54131,-0.643458][-0.035696,0.984364,-0.172489][0.625,0.285714,0][-0.0991249,1.54131,-0.643458][-0.035696,0.984364,-0.172489][0.625,0.285714,0][0.279625,1.56527,-0.544742][0.129647,0.989767,-0.0596091][0.5,0.285714,0][0.0717699,1.58189,-1.02854][-0.067617,0.997709,-0.00219857][0.5,0.142857,0][-0.30698,1.50096,-0.921261][0.007411,0.999479,-0.0314288][0.625,0.142857,0][-0.68573,1.53436,-0.909552][0.116809,0.988794,-0.0929672][0.75,0.142857,0][-0.477875,1.64277,-0.545808][0.145155,0.987265,-0.0651][0.75,0.285714,0][-0.477875,1.64277,-0.545808][0.145155,0.987265,-0.0651][0.75,0.285714,0][-0.0991249,1.54131,-0.643458][-0.035696,0.984364,-0.172489][0.625,0.285714,0][-0.30698,1.50096,-0.921261][0.007411,0.999479,-0.0314288][0.625,0.142857,0][-0.68573,1.53436,-0.909552][0.116809,0.988794,-0.0929672][0.75,0.142857,0][-1.06448,1.62701,-1.07348][0.064208,0.997262,-0.0366776][0.875,0.142857,0][-0.856625,1.68045,-0.586973][-0.000996195,0.991871,-0.127246][0.875,0.285714,0][-0.856625,1.68045,-0.586973][-0.000996195,0.991871,-0.127246][0.875,0.285714,0][-0.477875,1.64277,-0.545808][0.145155,0.987265,-0.0651][0.75,0.285714,0][-0.68573,1.53436,-0.909552][0.116809,0.988794,-0.0929672][0.75,0.142857,0][-1.06448,1.62701,-1.07348][0.064208,0.997262,-0.0366776][0.875,0.142857,0][-1.44323,1.59868,-1.04481][0.164754,2.88857,0.302624][1,0.142857,0][-1.23537,1.61154,-0.692617][-0.398113,2.96628,-0.115282][1,0.285714,0][-1.23537,1.61154,-0.692617][-0.398113,2.96628,-0.115282][1,0.285714,0][-0.856625,1.68045,-0.586973][-0.000996195,0.991871,-0.127246][0.875,0.285714,0][-1.06448,1.62701,-1.07348][0.064208,0.997262,-0.0366776][0.875,0.142857,0][1.79463,1.65517,-0.70663][0.107868,2.88323,0.684451][0,0.285714,0][1.41588,1.66812,-0.694891][-0.10998,0.986356,0.122499][0.125,0.285714,0][1.10982,1.5459,-0.322755][0.0210167,0.984825,0.172271][0.125,0.428571,0][1.10982,1.5459,-0.322755][0.0210167,0.984825,0.172271][0.125,0.428571,0][1.48857,1.5499,-0.370111][-0.515797,2.75415,0.0534013][0,0.428571,0][1.79463,1.65517,-0.70663][0.107868,2.88323,0.684451][0,0.285714,0][1.41588,1.66812,-0.694891][-0.10998,0.986356,0.122499][0.125,0.285714,0][1.03713,1.48273,-0.780876][-0.240772,0.97051,-0.0118355][0.25,0.285714,0][0.73107,1.56161,-0.306031][0.0360526,0.993522,-0.107766][0.25,0.428571,0][0.73107,1.56161,-0.306031][0.0360526,0.993522,-0.107766][0.25,0.428571,0][1.10982,1.5459,-0.322755][0.0210167,0.984825,0.172271][0.125,0.428571,0][1.41588,1.66812,-0.694891][-0.10998,0.986356,0.122499][0.125,0.285714,0][1.03713,1.48273,-0.780876][-0.240772,0.97051,-0.0118355][0.25,0.285714,0][0.658375,1.45946,-0.68281][0.111721,0.993217,-0.0322242][0.375,0.285714,0][0.35232,1.59489,-0.232848][-0.0288358,0.983666,-0.17768][0.375,0.428571,0][0.35232,1.59489,-0.232848][-0.0288358,0.983666,-0.17768][0.375,0.428571,0][0.73107,1.56161,-0.306031][0.0360526,0.993522,-0.107766][0.25,0.428571,0][1.03713,1.48273,-0.780876][-0.240772,0.97051,-0.0118355][0.25,0.285714,0][0.658375,1.45946,-0.68281][0.111721,0.993217,-0.0322242][0.375,0.285714,0][0.279625,1.56527,-0.544742][0.129647,0.989767,-0.0596091][0.5,0.285714,0][-0.0264297,1.65323,-0.213913][0.120311,0.990786,0.062202][0.5,0.428571,0][-0.0264297,1.65323,-0.213913][0.120311,0.990786,0.062202][0.5,0.428571,0][0.35232,1.59489,-0.232848][-0.0288358,0.983666,-0.17768][0.375,0.428571,0][0.658375,1.45946,-0.68281][0.111721,0.993217,-0.0322242][0.375,0.285714,0][0.279625,1.56527,-0.544742][0.129647,0.989767,-0.0596091][0.5,0.285714,0][-0.0991249,1.54131,-0.643458][-0.035696,0.984364,-0.172489][0.625,0.285714,0][-0.40518,1.71048,-0.269083][-0.00534056,0.99051,-0.13734][0.625,0.428571,0][-0.40518,1.71048,-0.269083][-0.00534056,0.99051,-0.13734][0.625,0.428571,0][-0.0264297,1.65323,-0.213913][0.120311,0.990786,0.062202][0.5,0.428571,0][0.279625,1.56527,-0.544742][0.129647,0.989767,-0.0596091][0.5,0.285714,0][-0.0991249,1.54131,-0.643458][-0.035696,0.984364,-0.172489][0.625,0.285714,0][-0.477875,1.64277,-0.545808][0.145155,0.987265,-0.0651][0.75,0.285714,0][-0.78393,1.61146,-0.101692][-0.0475648,0.992273,-0.114594][0.75,0.428571,0][-0.78393,1.61146,-0.101692][-0.0475648,0.992273,-0.114594][0.75,0.428571,0][-0.40518,1.71048,-0.269083][-0.00534056,0.99051,-0.13734][0.625,0.428571,0][-0.0991249,1.54131,-0.643458][-0.035696,0.984364,-0.172489][0.625,0.285714,0][-0.477875,1.64277,-0.545808][0.145155,0.987265,-0.0651][0.75,0.285714,0][-0.856625,1.68045,-0.586973][-0.000996195,0.991871,-0.127246][0.875,0.285714,0][-1.16268,1.66121,-0.351071][-0.041417,0.996352,0.0746114][0.875,0.428571,0][-1.16268,1.66121,-0.351071][-0.041417,0.996352,0.0746114][0.875,0.428571,0][-0.78393,1.61146,-0.101692][-0.0475648,0.992273,-0.114594][0.75,0.428571,0][-0.477875,1.64277,-0.545808][0.145155,0.987265,-0.0651][0.75,0.285714,0][-0.856625,1.68045,-0.586973][-0.000996195,0.991871,-0.127246][0.875,0.285714,0][-1.23537,1.61154,-0.692617][-0.398113,2.96628,-0.115282][1,0.285714,0][-1.54143,1.60639,-0.204][-0.421004,2.90899,-0.0544358][1,0.428571,0][-1.54143,1.60639,-0.204][-0.421004,2.90899,-0.0544358][1,0.428571,0][-1.16268,1.66121,-0.351071][-0.041417,0.996352,0.0746114][0.875,0.428571,0][-0.856625,1.68045,-0.586973][-0.000996195,0.991871,-0.127246][0.875,0.285714,0][1.48857,1.5499,-0.370111][-0.515797,2.75415,0.0534013][0,0.428571,0][1.10982,1.5459,-0.322755][0.0210167,0.984825,0.172271][0.125,0.428571,0][1.29976,1.55658,0.0563956][-0.203206,0.963385,-0.174921][0.125,0.571429,0][1.29976,1.55658,0.0563956][-0.203206,0.963385,-0.174921][0.125,0.571429,0][1.67851,1.80754,0.0607543][-1.50257,2.39949,-0.968175][0,0.571429,0][1.48857,1.5499,-0.370111][-0.515797,2.75415,0.0534013][0,0.428571,0][1.10982,1.5459,-0.322755][0.0210167,0.984825,0.172271][0.125,0.428571,0][0.73107,1.56161,-0.306031][0.0360526,0.993522,-0.107766][0.25,0.428571,0][0.921008,1.54349,0.00327147][0.0783623,0.996807,0.0153031][0.25,0.571429,0][0.921008,1.54349,0.00327147][0.0783623,0.996807,0.0153031][0.25,0.571429,0][1.29976,1.55658,0.0563956][-0.203206,0.963385,-0.174921][0.125,0.571429,0][1.10982,1.5459,-0.322755][0.0210167,0.984825,0.172271][0.125,0.428571,0][0.73107,1.56161,-0.306031][0.0360526,0.993522,-0.107766][0.25,0.428571,0][0.35232,1.59489,-0.232848][-0.0288358,0.983666,-0.17768][0.375,0.428571,0][0.542258,1.71957,0.127193][0.0827466,0.994733,0.0604864][0.375,0.571429,0][0.542258,1.71957,0.127193][0.0827466,0.994733,0.0604864][0.375,0.571429,0][0.921008,1.54349,0.00327147][0.0783623,0.996807,0.0153031][0.25,0.571429,0][0.73107,1.56161,-0.306031][0.0360526,0.993522,-0.107766][0.25,0.428571,0][0.35232,1.59489,-0.232848][-0.0288358,0.983666,-0.17768][0.375,0.428571,0][-0.0264297,1.65323,-0.213913][0.120311,0.990786,0.062202][0.5,0.428571,0][0.163508,1.57044,0.232474][-0.121037,0.98961,-0.0776019][0.5,0.571429,0][0.163508,1.57044,0.232474][-0.121037,0.98961,-0.0776019][0.5,0.571429,0][0.542258,1.71957,0.127193][0.0827466,0.994733,0.0604864][0.375,0.571429,0][0.35232,1.59489,-0.232848][-0.0288358,0.983666,-0.17768][0.375,0.428571,0][-0.0264297,1.65323,-0.213913][0.120311,0.990786,0.062202][0.5,0.428571,0][-0.40518,1.71048,-0.269083][-0.00534056,0.99051,-0.13734][0.625,0.428571,0][-0.215242,1.55391,0.113041][0.146314,0.983227,0.108888][0.625,0.571429,0][-0.215242,1.55391,0.113041][0.146314,0.983227,0.108888][0.625,0.571429,0][0.163508,1.57044,0.232474][-0.121037,0.98961,-0.0776019][0.5,0.571429,0][-0.0264297,1.65323,-0.213913][0.120311,0.990786,0.062202][0.5,0.428571,0][-0.40518,1.71048,-0.269083][-0.00534056,0.99051,-0.13734][0.625,0.428571,0][-0.78393,1.61146,-0.101692][-0.0475648,0.992273,-0.114594][0.75,0.428571,0][-0.593992,1.70522,0.241056][0.0302206,0.999135,0.0285687][0.75,0.571429,0][-0.593992,1.70522,0.241056][0.0302206,0.999135,0.0285687][0.75,0.571429,0][-0.215242,1.55391,0.113041][0.146314,0.983227,0.108888][0.625,0.571429,0][-0.40518,1.71048,-0.269083][-0.00534056,0.99051,-0.13734][0.625,0.428571,0][-0.78393,1.61146,-0.101692][-0.0475648,0.992273,-0.114594][0.75,0.428571,0][-1.16268,1.66121,-0.351071][-0.041417,0.996352,0.0746114][0.875,0.428571,0][-0.972742,1.64695,0.0788173][-0.0956076,0.994781,-0.0356354][0.875,0.571429,0][-0.972742,1.64695,0.0788173][-0.0956076,0.994781,-0.0356354][0.875,0.571429,0][-0.593992,1.70522,0.241056][0.0302206,0.999135,0.0285687][0.75,0.571429,0][-0.78393,1.61146,-0.101692][-0.0475648,0.992273,-0.114594][0.75,0.428571,0][-1.16268,1.66121,-0.351071][-0.041417,0.996352,0.0746114][0.875,0.428571,0][-1.54143,1.60639,-0.204][-0.421004,2.90899,-0.0544358][1,0.428571,0][-1.35149,1.53206,0.140048][-0.635304,2.81644,0.0712694][1,0.571429,0][-1.35149,1.53206,0.140048][-0.635304,2.81644,0.0712694][1,0.571429,0][-0.972742,1.64695,0.0788173][-0.0956076,0.994781,-0.0356354][0.875,0.571429,0][-1.16268,1.66121,-0.351071][-0.041417,0.996352,0.0746114][0.875,0.428571,0][1.67851,1.80754,0.0607543][-1.50257,2.39949,-0.968175][0,0.571429,0][1.29976,1.55658,0.0563956][-0.203206,0.963385,-0.174921][0.125,0.571429,0][1.08493,1.62122,0.448673][-0.319954,0.908145,-0.270006][0.125,0.714286,0][1.08493,1.62122,0.448673][-0.319954,0.908145,-0.270006][0.125,0.714286,0][1.46368,1.81727,0.401317][-0.98004,2.60788,-0.438301][0,0.714286,0][1.67851,1.80754,0.0607543][-1.50257,2.39949,-0.968175][0,0.571429,0][1.29976,1.55658,0.0563956][-0.203206,0.963385,-0.174921][0.125,0.571429,0][0.921008,1.54349,0.00327147][0.0783623,0.996807,0.0153031][0.25,0.571429,0][0.706176,1.59737,0.465397][-0.159039,0.971837,-0.173896][0.25,0.714286,0][0.706176,1.59737,0.465397][-0.159039,0.971837,-0.173896][0.25,0.714286,0][1.08493,1.62122,0.448673][-0.319954,0.908145,-0.270006][0.125,0.714286,0][1.29976,1.55658,0.0563956][-0.203206,0.963385,-0.174921][0.125,0.571429,0][0.921008,1.54349,0.00327147][0.0783623,0.996807,0.0153031][0.25,0.571429,0][0.542258,1.71957,0.127193][0.0827466,0.994733,0.0604864][0.375,0.571429,0][0.327425,1.43425,0.538581][0.122946,0.990668,0.0588306][0.375,0.714286,0][0.327425,1.43425,0.538581][0.122946,0.990668,0.0588306][0.375,0.714286,0][0.706176,1.59737,0.465397][-0.159039,0.971837,-0.173896][0.25,0.714286,0][0.921008,1.54349,0.00327147][0.0783623,0.996807,0.0153031][0.25,0.571429,0][0.542258,1.71957,0.127193][0.0827466,0.994733,0.0604864][0.375,0.571429,0][0.163508,1.57044,0.232474][-0.121037,0.98961,-0.0776019][0.5,0.571429,0][-0.0513245,1.61407,0.557516][0.0303641,0.999137,0.0283324][0.5,0.714286,0][-0.0513245,1.61407,0.557516][0.0303641,0.999137,0.0283324][0.5,0.714286,0][0.327425,1.43425,0.538581][0.122946,0.990668,0.0588306][0.375,0.714286,0][0.542258,1.71957,0.127193][0.0827466,0.994733,0.0604864][0.375,0.571429,0][0.163508,1.57044,0.232474][-0.121037,0.98961,-0.0776019][0.5,0.571429,0][-0.215242,1.55391,0.113041][0.146314,0.983227,0.108888][0.625,0.571429,0][-0.430074,1.63498,0.502345][0.0462145,0.998291,0.0357595][0.625,0.714286,0][-0.430074,1.63498,0.502345][0.0462145,0.998291,0.0357595][0.625,0.714286,0][-0.0513245,1.61407,0.557516][0.0303641,0.999137,0.0283324][0.5,0.714286,0][0.163508,1.57044,0.232474][-0.121037,0.98961,-0.0776019][0.5,0.571429,0][-0.215242,1.55391,0.113041][0.146314,0.983227,0.108888][0.625,0.571429,0][-0.593992,1.70522,0.241056][0.0302206,0.999135,0.0285687][0.75,0.571429,0][-0.808824,1.66549,0.669736][-0.00973265,0.983108,0.182768][0.75,0.714286,0][-0.808824,1.66549,0.669736][-0.00973265,0.983108,0.182768][0.75,0.714286,0][-0.430074,1.63498,0.502345][0.0462145,0.998291,0.0357595][0.625,0.714286,0][-0.215242,1.55391,0.113041][0.146314,0.983227,0.108888][0.625,0.571429,0][-0.593992,1.70522,0.241056][0.0302206,0.999135,0.0285687][0.75,0.571429,0][-0.972742,1.64695,0.0788173][-0.0956076,0.994781,-0.0356354][0.875,0.571429,0][-1.18757,1.59838,0.420357][-0.0312368,0.985191,0.16859][0.875,0.714286,0][-1.18757,1.59838,0.420357][-0.0312368,0.985191,0.16859][0.875,0.714286,0][-0.808824,1.66549,0.669736][-0.00973265,0.983108,0.182768][0.75,0.714286,0][-0.593992,1.70522,0.241056][0.0302206,0.999135,0.0285687][0.75,0.571429,0][-0.972742,1.64695,0.0788173][-0.0956076,0.994781,-0.0356354][0.875,0.571429,0][-1.35149,1.53206,0.140048][-0.635304,2.81644,0.0712694][1,0.571429,0][-1.56632,1.60487,0.567428][-0.14469,2.85067,0.0556274][1,0.714286,0][-1.56632,1.60487,0.567428][-0.14469,2.85067,0.0556274][1,0.714286,0][-1.18757,1.59838,0.420357][-0.0312368,0.985191,0.16859][0.875,0.714286,0][-0.972742,1.64695,0.0788173][-0.0956076,0.994781,-0.0356354][0.875,0.571429,0][1.46368,1.81727,0.401317][-0.98004,2.60788,-0.438301][0,0.714286,0][1.08493,1.62122,0.448673][-0.319954,0.908145,-0.270006][0.125,0.714286,0][0.95405,1.69707,0.79417][-0.149733,0.986539,0.0657267][0.125,0.857143,0][0.95405,1.69707,0.79417][-0.149733,0.986539,0.0657267][0.125,0.857143,0][1.3328,1.70282,0.849167][-0.336528,2.71319,1.16465][0,0.857143,0][1.46368,1.81727,0.401317][-0.98004,2.60788,-0.438301][0,0.714286,0][1.08493,1.62122,0.448673][-0.319954,0.908145,-0.270006][0.125,0.714286,0][0.706176,1.59737,0.465397][-0.159039,0.971837,-0.173896][0.25,0.714286,0][0.5753,1.58458,0.825646][-0.123601,0.991948,0.0275899][0.25,0.857143,0][0.5753,1.58458,0.825646][-0.123601,0.991948,0.0275899][0.25,0.857143,0][0.95405,1.69707,0.79417][-0.149733,0.986539,0.0657267][0.125,0.857143,0][1.08493,1.62122,0.448673][-0.319954,0.908145,-0.270006][0.125,0.714286,0][0.706176,1.59737,0.465397][-0.159039,0.971837,-0.173896][0.25,0.714286,0][0.327425,1.43425,0.538581][0.122946,0.990668,0.0588306][0.375,0.714286,0][0.19655,1.60805,0.954709][0.0417674,0.998032,-0.0467788][0.375,0.857143,0][0.19655,1.60805,0.954709][0.0417674,0.998032,-0.0467788][0.375,0.857143,0][0.5753,1.58458,0.825646][-0.123601,0.991948,0.0275899][0.25,0.857143,0][0.706176,1.59737,0.465397][-0.159039,0.971837,-0.173896][0.25,0.714286,0][0.327425,1.43425,0.538581][0.122946,0.990668,0.0588306][0.375,0.714286,0][-0.0513245,1.61407,0.557516][0.0303641,0.999137,0.0283324][0.5,0.714286,0][-0.1822,1.6527,0.887302][0.0654594,0.995229,-0.0723506][0.5,0.857143,0][-0.1822,1.6527,0.887302][0.0654594,0.995229,-0.0723506][0.5,0.857143,0][0.19655,1.60805,0.954709][0.0417674,0.998032,-0.0467788][0.375,0.857143,0][0.327425,1.43425,0.538581][0.122946,0.990668,0.0588306][0.375,0.714286,0][-0.0513245,1.61407,0.557516][0.0303641,0.999137,0.0283324][0.5,0.714286,0][-0.430074,1.63498,0.502345][0.0462145,0.998291,0.0357595][0.625,0.714286,0][-0.56095,1.56535,1.02138][-0.17244,0.984959,-0.0109156][0.625,0.857143,0][-0.56095,1.56535,1.02138][-0.17244,0.984959,-0.0109156][0.625,0.857143,0][-0.1822,1.6527,0.887302][0.0654594,0.995229,-0.0723506][0.5,0.857143,0][-0.0513245,1.61407,0.557516][0.0303641,0.999137,0.0283324][0.5,0.714286,0][-0.430074,1.63498,0.502345][0.0462145,0.998291,0.0357595][0.625,0.714286,0][-0.808824,1.66549,0.669736][-0.00973265,0.983108,0.182768][0.75,0.714286,0][-0.9397,1.52569,1.0085][0.0846863,0.996073,-0.0258174][0.75,0.857143,0][-0.9397,1.52569,1.0085][0.0846863,0.996073,-0.0258174][0.75,0.857143,0][-0.56095,1.56535,1.02138][-0.17244,0.984959,-0.0109156][0.625,0.857143,0][-0.430074,1.63498,0.502345][0.0462145,0.998291,0.0357595][0.625,0.714286,0][-0.808824,1.66549,0.669736][-0.00973265,0.983108,0.182768][0.75,0.714286,0][-1.18757,1.59838,0.420357][-0.0312368,0.985191,0.16859][0.875,0.714286,0][-1.31845,1.46308,0.843906][-0.0467746,0.996434,-0.0702286][0.875,0.857143,0][-1.31845,1.46308,0.843906][-0.0467746,0.996434,-0.0702286][0.875,0.857143,0][-0.9397,1.52569,1.0085][0.0846863,0.996073,-0.0258174][0.75,0.857143,0][-0.808824,1.66549,0.669736][-0.00973265,0.983108,0.182768][0.75,0.714286,0][-1.18757,1.59838,0.420357][-0.0312368,0.985191,0.16859][0.875,0.714286,0][-1.56632,1.60487,0.567428][-0.14469,2.85067,0.0556274][1,0.714286,0][-1.6972,1.55527,0.914096][0.546907,2.81112,0.269092][1,0.857143,0][-1.6972,1.55527,0.914096][0.546907,2.81112,0.269092][1,0.857143,0][-1.31845,1.46308,0.843906][-0.0467746,0.996434,-0.0702286][0.875,0.857143,0][-1.18757,1.59838,0.420357][-0.0312368,0.985191,0.16859][0.875,0.714286,0][1.3328,1.70282,0.849167][-0.336528,2.71319,1.16465][0,0.857143,0][0.95405,1.69707,0.79417][-0.149733,0.986539,0.0657267][0.125,0.857143,0][1.237,1.48883,1.2201][0.0552885,2.65564,1.14941][0.125,1,0][1.237,1.48883,1.2201][0.0552885,2.65564,1.14941][0.125,1,0][1.61575,1.60236,1.17275][-0.204605,0.869812,0.448959][0,1,0][1.3328,1.70282,0.849167][-0.336528,2.71319,1.16465][0,0.857143,0][0.95405,1.69707,0.79417][-0.149733,0.986539,0.0657267][0.125,0.857143,0][0.5753,1.58458,0.825646][-0.123601,0.991948,0.0275899][0.25,0.857143,0][0.858255,1.62708,1.23683][-0.230414,2.81908,0.416403][0.25,1,0][0.858255,1.62708,1.23683][-0.230414,2.81908,0.416403][0.25,1,0][1.237,1.48883,1.2201][0.0552885,2.65564,1.14941][0.125,1,0][0.95405,1.69707,0.79417][-0.149733,0.986539,0.0657267][0.125,0.857143,0][0.5753,1.58458,0.825646][-0.123601,0.991948,0.0275899][0.25,0.857143,0][0.19655,1.60805,0.954709][0.0417674,0.998032,-0.0467788][0.375,0.857143,0][0.479505,1.50034,1.31001][0.0162523,2.89325,0.446263][0.375,1,0][0.479505,1.50034,1.31001][0.0162523,2.89325,0.446263][0.375,1,0][0.858255,1.62708,1.23683][-0.230414,2.81908,0.416403][0.25,1,0][0.5753,1.58458,0.825646][-0.123601,0.991948,0.0275899][0.25,0.857143,0][0.19655,1.60805,0.954709][0.0417674,0.998032,-0.0467788][0.375,0.857143,0][-0.1822,1.6527,0.887302][0.0654594,0.995229,-0.0723506][0.5,0.857143,0][0.100755,1.57032,1.32894][0.506043,2.93301,0.307101][0.5,1,0][0.100755,1.57032,1.32894][0.506043,2.93301,0.307101][0.5,1,0][0.479505,1.50034,1.31001][0.0162523,2.89325,0.446263][0.375,1,0][0.19655,1.60805,0.954709][0.0417674,0.998032,-0.0467788][0.375,0.857143,0][-0.1822,1.6527,0.887302][0.0654594,0.995229,-0.0723506][0.5,0.857143,0][-0.56095,1.56535,1.02138][-0.17244,0.984959,-0.0109156][0.625,0.857143,0][-0.277995,1.6599,1.27377][-0.322283,2.89315,-0.0681588][0.625,1,0][-0.277995,1.6599,1.27377][-0.322283,2.89315,-0.0681588][0.625,1,0][0.100755,1.57032,1.32894][0.506043,2.93301,0.307101][0.5,1,0][-0.1822,1.6527,0.887302][0.0654594,0.995229,-0.0723506][0.5,0.857143,0][-0.56095,1.56535,1.02138][-0.17244,0.984959,-0.0109156][0.625,0.857143,0][-0.9397,1.52569,1.0085][0.0846863,0.996073,-0.0258174][0.75,0.857143,0][-0.656745,1.54688,1.44116][0.127968,2.70632,-0.388807][0.75,1,0][-0.656745,1.54688,1.44116][0.127968,2.70632,-0.388807][0.75,1,0][-0.277995,1.6599,1.27377][-0.322283,2.89315,-0.0681588][0.625,1,0][-0.56095,1.56535,1.02138][-0.17244,0.984959,-0.0109156][0.625,0.857143,0][-0.9397,1.52569,1.0085][0.0846863,0.996073,-0.0258174][0.75,0.857143,0][-1.31845,1.46308,0.843906][-0.0467746,0.996434,-0.0702286][0.875,0.857143,0][-1.0355,1.68532,1.19179][0.386144,2.4344,-1.33826][0.875,1,0][-1.0355,1.68532,1.19179][0.386144,2.4344,-1.33826][0.875,1,0][-0.656745,1.54688,1.44116][0.127968,2.70632,-0.388807][0.75,1,0][-0.9397,1.52569,1.0085][0.0846863,0.996073,-0.0258174][0.75,0.857143,0][-1.31845,1.46308,0.843906][-0.0467746,0.996434,-0.0702286][0.875,0.857143,0][-1.6972,1.55527,0.914096][0.546907,2.81112,0.269092][1,0.857143,0][-1.41425,1.62432,1.33886][-0.099167,1.84109,-0.61895][1,1,0][-1.41425,1.62432,1.33886][-0.099167,1.84109,-0.61895][1,1,0][-1.0355,1.68532,1.19179][0.386144,2.4344,-1.33826][0.875,1,0][-1.31845,1.46308,0.843906][-0.0467746,0.996434,-0.0702286][0.875,0.857143,0][1.55725,-1.71948,-1.31556][-1.05464,-1.68926,0.167229][0,0,0][1.07789,-1.43431,-1.31887][0.869614,-2.23699,0.278618][0.125,0,0][1.04576,-1.28735,-1.35466][0.130383,0.120244,-0.984145][0.125,0.125,0][1.04576,-1.28735,-1.35466][0.130383,0.120244,-0.984145][0.125,0.125,0][1.42451,-1.30698,-1.2519][0.372874,0.67451,-2.79596][0,0.125,0][1.55725,-1.71948,-1.31556][-1.05464,-1.68926,0.167229][0,0,0][1.07789,-1.43431,-1.31887][0.869614,-2.23699,0.278618][0.125,0,0][0.799749,-1.64903,-1.39704][-0.219088,-2.48168,-0.589658][0.25,0,0][0.667008,-1.23653,-1.35923][0.170469,0.0657278,-0.983168][0.25,0.125,0][0.667008,-1.23653,-1.35923][0.170469,0.0657278,-0.983168][0.25,0.125,0][1.04576,-1.28735,-1.35466][0.130383,0.120244,-0.984145][0.125,0.125,0][1.07789,-1.43431,-1.31887][0.869614,-2.23699,0.278618][0.125,0,0][0.799749,-1.64903,-1.39704][-0.219088,-2.48168,-0.589658][0.25,0,0][0.329608,-1.47863,-1.36857][0.887299,-2.48049,0.123581][0.375,0,0][0.288258,-1.31616,-1.46457][0.0406433,-0.233356,-0.971542][0.375,0.125,0][0.288258,-1.31616,-1.46457][0.0406433,-0.233356,-0.971542][0.375,0.125,0][0.667008,-1.23653,-1.35923][0.170469,0.0657278,-0.983168][0.25,0.125,0][0.799749,-1.64903,-1.39704][-0.219088,-2.48168,-0.589658][0.25,0,0][0.329608,-1.47863,-1.36857][0.887299,-2.48049,0.123581][0.375,0,0][0.0422493,-1.74044,-1.36736][-0.257425,-2.44378,-0.139213][0.5,0,0][-0.0904917,-1.32794,-1.41319][-0.112284,-0.279424,-0.95358][0.5,0.125,0][-0.0904917,-1.32794,-1.41319][-0.112284,-0.279424,-0.95358][0.5,0.125,0][0.288258,-1.31616,-1.46457][0.0406433,-0.233356,-0.971542][0.375,0.125,0][0.329608,-1.47863,-1.36857][0.887299,-2.48049,0.123581][0.375,0,0][0.0422493,-1.74044,-1.36736][-0.257425,-2.44378,-0.139213][0.5,0,0][-0.427892,-1.42492,-1.3346][0.705262,-2.29828,-0.310348][0.625,0,0][-0.469242,-1.26245,-1.30438][-0.0265741,0.00752476,-0.999619][0.625,0.125,0][-0.469242,-1.26245,-1.30438][-0.0265741,0.00752476,-0.999619][0.625,0.125,0][-0.0904917,-1.32794,-1.41319][-0.112284,-0.279424,-0.95358][0.5,0.125,0][0.0422493,-1.74044,-1.36736][-0.257425,-2.44378,-0.139213][0.5,0,0][-0.427892,-1.42492,-1.3346][0.705262,-2.29828,-0.310348][0.625,0,0][-0.715251,-1.74243,-1.34909][-0.370836,-2.3181,-0.122578][0.75,0,0][-0.847992,-1.32993,-1.30924][0.0745516,0.0109301,-0.997157][0.75,0.125,0][-0.847992,-1.32993,-1.30924][0.0745516,0.0109301,-0.997157][0.75,0.125,0][-0.469242,-1.26245,-1.30438][-0.0265741,0.00752476,-0.999619][0.625,0.125,0][-0.427892,-1.42492,-1.3346][0.705262,-2.29828,-0.310348][0.625,0,0][-0.715251,-1.74243,-1.34909][-0.370836,-2.3181,-0.122578][0.75,0,0][-1.18539,-1.43034,-1.39019][0.580442,-2.44767,-0.070826][0.875,0,0][-1.22674,-1.26788,-1.36439][0.158143,0.0807542,-0.984109][0.875,0.125,0][-1.22674,-1.26788,-1.36439][0.158143,0.0807542,-0.984109][0.875,0.125,0][-0.847992,-1.32993,-1.30924][0.0745516,0.0109301,-0.997157][0.75,0.125,0][-0.715251,-1.74243,-1.34909][-0.370836,-2.3181,-0.122578][0.75,0,0][-1.18539,-1.43034,-1.39019][0.580442,-2.44767,-0.070826][0.875,0,0][-1.47275,-1.59917,-1.32227][0.47848,-0.867954,-0.13309][1,0,0][-1.60549,-1.18667,-1.4646][0.561169,0.114402,-2.8007][1,0.125,0][-1.60549,-1.18667,-1.4646][0.561169,0.114402,-2.8007][1,0.125,0][-1.22674,-1.26788,-1.36439][0.158143,0.0807542,-0.984109][0.875,0.125,0][-1.18539,-1.43034,-1.39019][0.580442,-2.44767,-0.070826][0.875,0,0][1.42451,-1.30698,-1.2519][0.372874,0.67451,-2.79596][0,0.125,0][1.04576,-1.28735,-1.35466][0.130383,0.120244,-0.984145][0.125,0.125,0][0.991733,-0.87485,-1.17352][0.0543028,-0.0715885,-0.995955][0.125,0.25,0][0.991733,-0.87485,-1.17352][0.0543028,-0.0715885,-0.995955][0.125,0.25,0][1.37048,-0.894481,-1.232][0.00258675,-0.876439,-2.69764][0,0.25,0][1.42451,-1.30698,-1.2519][0.372874,0.67451,-2.79596][0,0.125,0][1.04576,-1.28735,-1.35466][0.130383,0.120244,-0.984145][0.125,0.125,0][0.667008,-1.23653,-1.35923][0.170469,0.0657278,-0.983168][0.25,0.125,0][0.612983,-0.824027,-1.30919][0.298934,-0.0208187,-0.954047][0.25,0.25,0][0.612983,-0.824027,-1.30919][0.298934,-0.0208187,-0.954047][0.25,0.25,0][0.991733,-0.87485,-1.17352][0.0543028,-0.0715885,-0.995955][0.125,0.25,0][1.04576,-1.28735,-1.35466][0.130383,0.120244,-0.984145][0.125,0.125,0][0.667008,-1.23653,-1.35923][0.170469,0.0657278,-0.983168][0.25,0.125,0][0.288258,-1.31616,-1.46457][0.0406433,-0.233356,-0.971542][0.375,0.125,0][0.234233,-0.903659,-1.46125][0.158905,0.0579181,-0.985594][0.375,0.25,0][0.234233,-0.903659,-1.46125][0.158905,0.0579181,-0.985594][0.375,0.25,0][0.612983,-0.824027,-1.30919][0.298934,-0.0208187,-0.954047][0.25,0.25,0][0.667008,-1.23653,-1.35923][0.170469,0.0657278,-0.983168][0.25,0.125,0][-0.469242,-1.26245,-1.30438][-0.0265741,0.00752476,-0.999619][0.625,0.125,0][-0.847992,-1.32993,-1.30924][0.0745516,0.0109301,-0.997157][0.75,0.125,0][-0.902017,-0.917433,-1.35607][0.0849167,-0.0891552,-0.992391][0.75,0.25,0][-0.902017,-0.917433,-1.35607][0.0849167,-0.0891552,-0.992391][0.75,0.25,0][-0.523267,-0.849952,-1.32216][0.0366317,-0.0902685,-0.995244][0.625,0.25,0][-0.469242,-1.26245,-1.30438][-0.0265741,0.00752476,-0.999619][0.625,0.125,0][-0.847992,-1.32993,-1.30924][0.0745516,0.0109301,-0.997157][0.75,0.125,0][-1.22674,-1.26788,-1.36439][0.158143,0.0807542,-0.984109][0.875,0.125,0][-1.28077,-0.855378,-1.43331][0.0408566,-0.0343515,-0.998574][0.875,0.25,0][-1.28077,-0.855378,-1.43331][0.0408566,-0.0343515,-0.998574][0.875,0.25,0][-0.902017,-0.917433,-1.35607][0.0849167,-0.0891552,-0.992391][0.75,0.25,0][-0.847992,-1.32993,-1.30924][0.0745516,0.0109301,-0.997157][0.75,0.125,0][-1.22674,-1.26788,-1.36439][0.158143,0.0807542,-0.984109][0.875,0.125,0][-1.60549,-1.18667,-1.4646][0.561169,0.114402,-2.8007][1,0.125,0][-1.65952,-0.774171,-1.38146][0.00418769,0.122968,-2.88612][1,0.25,0][-1.65952,-0.774171,-1.38146][0.00418769,0.122968,-2.88612][1,0.25,0][-1.28077,-0.855378,-1.43331][0.0408566,-0.0343515,-0.998574][0.875,0.25,0][-1.22674,-1.26788,-1.36439][0.158143,0.0807542,-0.984109][0.875,0.125,0][1.37048,-0.894481,-1.232][0.00258675,-0.876439,-2.69764][0,0.25,0][0.991733,-0.87485,-1.17352][0.0543028,-0.0715885,-0.995955][0.125,0.25,0][1.2352,-0.46235,-1.47276][-0.0654229,-0.24914,-0.966255][0.125,0.375,0][1.2352,-0.46235,-1.47276][-0.0654229,-0.24914,-0.966255][0.125,0.375,0][1.61395,-0.481981,-1.32863][0.942767,-0.374846,-2.76137][0,0.375,0][1.37048,-0.894481,-1.232][0.00258675,-0.876439,-2.69764][0,0.25,0][0.991733,-0.87485,-1.17352][0.0543028,-0.0715885,-0.995955][0.125,0.25,0][0.612983,-0.824027,-1.30919][0.298934,-0.0208187,-0.954047][0.25,0.25,0][0.856454,-0.411528,-1.36226][0.017048,-0.138705,-0.990187][0.25,0.375,0][0.856454,-0.411528,-1.36226][0.017048,-0.138705,-0.990187][0.25,0.375,0][1.2352,-0.46235,-1.47276][-0.0654229,-0.24914,-0.966255][0.125,0.375,0][0.991733,-0.87485,-1.17352][0.0543028,-0.0715885,-0.995955][0.125,0.25,0][0.612983,-0.824027,-1.30919][0.298934,-0.0208187,-0.954047][0.25,0.25,0][0.234233,-0.903659,-1.46125][0.158905,0.0579181,-0.985594][0.375,0.25,0][0.477704,-0.491159,-1.45977][0.177503,-0.0243922,-0.983818][0.375,0.375,0][0.477704,-0.491159,-1.45977][0.177503,-0.0243922,-0.983818][0.375,0.375,0][0.856454,-0.411528,-1.36226][0.017048,-0.138705,-0.990187][0.25,0.375,0][0.612983,-0.824027,-1.30919][0.298934,-0.0208187,-0.954047][0.25,0.25,0][0.234233,-0.903659,-1.46125][0.158905,0.0579181,-0.985594][0.375,0.25,0][-0.144517,-0.915438,-1.45089][-0.126813,0.166289,-0.977889][0.5,0.25,0][0.0989539,-0.502938,-1.37994][-0.0947862,0.169997,-0.980875][0.5,0.375,0][0.0989539,-0.502938,-1.37994][-0.0947862,0.169997,-0.980875][0.5,0.375,0][0.477704,-0.491159,-1.45977][0.177503,-0.0243922,-0.983818][0.375,0.375,0][0.234233,-0.903659,-1.46125][0.158905,0.0579181,-0.985594][0.375,0.25,0][-0.144517,-0.915438,-1.45089][-0.126813,0.166289,-0.977889][0.5,0.25,0][-0.523267,-0.849952,-1.32216][0.0366317,-0.0902685,-0.995244][0.625,0.25,0][-0.279796,-0.437452,-1.35068][-0.0426108,0.0379954,-0.998369][0.625,0.375,0][-0.279796,-0.437452,-1.35068][-0.0426108,0.0379954,-0.998369][0.625,0.375,0][0.0989539,-0.502938,-1.37994][-0.0947862,0.169997,-0.980875][0.5,0.375,0][-0.144517,-0.915438,-1.45089][-0.126813,0.166289,-0.977889][0.5,0.25,0][-0.523267,-0.849952,-1.32216][0.0366317,-0.0902685,-0.995244][0.625,0.25,0][-0.902017,-0.917433,-1.35607][0.0849167,-0.0891552,-0.992391][0.75,0.25,0][-0.658546,-0.504933,-1.4246][0.0346396,-0.00703915,-0.999375][0.75,0.375,0][-0.658546,-0.504933,-1.4246][0.0346396,-0.00703915,-0.999375][0.75,0.375,0][-0.279796,-0.437452,-1.35068][-0.0426108,0.0379954,-0.998369][0.625,0.375,0][-0.523267,-0.849952,-1.32216][0.0366317,-0.0902685,-0.995244][0.625,0.25,0][-0.902017,-0.917433,-1.35607][0.0849167,-0.0891552,-0.992391][0.75,0.25,0][-1.28077,-0.855378,-1.43331][0.0408566,-0.0343515,-0.998574][0.875,0.25,0][-1.0373,-0.442878,-1.37693][-0.00451662,0.120689,-0.99268][0.875,0.375,0][-1.0373,-0.442878,-1.37693][-0.00451662,0.120689,-0.99268][0.875,0.375,0][-0.658546,-0.504933,-1.4246][0.0346396,-0.00703915,-0.999375][0.75,0.375,0][-0.902017,-0.917433,-1.35607][0.0849167,-0.0891552,-0.992391][0.75,0.25,0][-1.28077,-0.855378,-1.43331][0.0408566,-0.0343515,-0.998574][0.875,0.25,0][-1.65952,-0.774171,-1.38146][0.00418769,0.122968,-2.88612][1,0.25,0][-1.41605,-0.361671,-1.37654][-0.0283857,0.508901,-2.93168][1,0.375,0][-1.41605,-0.361671,-1.37654][-0.0283857,0.508901,-2.93168][1,0.375,0][-1.0373,-0.442878,-1.37693][-0.00451662,0.120689,-0.99268][0.875,0.375,0][-1.28077,-0.855378,-1.43331][0.0408566,-0.0343515,-0.998574][0.875,0.25,0][1.61395,-0.481981,-1.32863][0.942767,-0.374846,-2.76137][0,0.375,0][1.2352,-0.46235,-1.47276][-0.0654229,-0.24914,-0.966255][0.125,0.375,0][1.16674,-0.0498499,-1.47533][0.036248,0.00730342,-0.999316][0.125,0.5,0][1.16674,-0.0498499,-1.47533][0.036248,0.00730342,-0.999316][0.125,0.5,0][1.54549,-0.0694807,-1.36613][0.893171,0.220211,-2.84243][0,0.5,0][1.61395,-0.481981,-1.32863][0.942767,-0.374846,-2.76137][0,0.375,0][1.2352,-0.46235,-1.47276][-0.0654229,-0.24914,-0.966255][0.125,0.375,0][0.856454,-0.411528,-1.36226][0.017048,-0.138705,-0.990187][0.25,0.375,0][0.787987,0.000972509,-1.36529][-0.198744,-0.0413547,-0.979179][0.25,0.5,0][0.787987,0.000972509,-1.36529][-0.198744,-0.0413547,-0.979179][0.25,0.5,0][1.16674,-0.0498499,-1.47533][0.036248,0.00730342,-0.999316][0.125,0.5,0][1.2352,-0.46235,-1.47276][-0.0654229,-0.24914,-0.966255][0.125,0.375,0][0.856454,-0.411528,-1.36226][0.017048,-0.138705,-0.990187][0.25,0.375,0][0.477704,-0.491159,-1.45977][0.177503,-0.0243922,-0.983818][0.375,0.375,0][0.409237,-0.0786589,-1.33635][0.0809356,0.0686977,-0.994349][0.375,0.5,0][0.409237,-0.0786589,-1.33635][0.0809356,0.0686977,-0.994349][0.375,0.5,0][0.787987,0.000972509,-1.36529][-0.198744,-0.0413547,-0.979179][0.25,0.5,0][0.856454,-0.411528,-1.36226][0.017048,-0.138705,-0.990187][0.25,0.375,0][-0.658546,-0.504933,-1.4246][0.0346396,-0.00703915,-0.999375][0.75,0.375,0][-1.0373,-0.442878,-1.37693][-0.00451662,0.120689,-0.99268][0.875,0.375,0][-1.10576,-0.0303776,-1.2961][-0.0421289,0.0410242,-0.99827][0.875,0.5,0][-1.10576,-0.0303776,-1.2961][-0.0421289,0.0410242,-0.99827][0.875,0.5,0][-0.727013,-0.0924333,-1.29603][0.0721085,0.102638,-0.992102][0.75,0.5,0][-0.658546,-0.504933,-1.4246][0.0346396,-0.00703915,-0.999375][0.75,0.375,0][-1.0373,-0.442878,-1.37693][-0.00451662,0.120689,-0.99268][0.875,0.375,0][-1.41605,-0.361671,-1.37654][-0.0283857,0.508901,-2.93168][1,0.375,0][-1.48451,0.0508286,-1.24807][-0.200255,0.209172,-2.87459][1,0.5,0][-1.48451,0.0508286,-1.24807][-0.200255,0.209172,-2.87459][1,0.5,0][-1.10576,-0.0303776,-1.2961][-0.0421289,0.0410242,-0.99827][0.875,0.5,0][-1.0373,-0.442878,-1.37693][-0.00451662,0.120689,-0.99268][0.875,0.375,0][1.54549,-0.0694807,-1.36613][0.893171,0.220211,-2.84243][0,0.5,0][1.16674,-0.0498499,-1.47533][0.036248,0.00730342,-0.999316][0.125,0.5,0][1.12855,0.36265,-1.44299][0.140763,0.102595,-0.984713][0.125,0.625,0][1.12855,0.36265,-1.44299][0.140763,0.102595,-0.984713][0.125,0.625,0][1.5073,0.343019,-1.30837][0.353069,-0.0363108,-2.76107][0,0.625,0][1.54549,-0.0694807,-1.36613][0.893171,0.220211,-2.84243][0,0.5,0][1.16674,-0.0498499,-1.47533][0.036248,0.00730342,-0.999316][0.125,0.5,0][0.787987,0.000972509,-1.36529][-0.198744,-0.0413547,-0.979179][0.25,0.5,0][0.749802,0.413472,-1.38953][-0.159075,-0.0331094,-0.986711][0.25,0.625,0][0.749802,0.413472,-1.38953][-0.159075,-0.0331094,-0.986711][0.25,0.625,0][1.12855,0.36265,-1.44299][0.140763,0.102595,-0.984713][0.125,0.625,0][1.16674,-0.0498499,-1.47533][0.036248,0.00730342,-0.999316][0.125,0.5,0][0.787987,0.000972509,-1.36529][-0.198744,-0.0413547,-0.979179][0.25,0.5,0][0.409237,-0.0786589,-1.33635][0.0809356,0.0686977,-0.994349][0.375,0.5,0][0.371052,0.333841,-1.31796][0.00859974,-0.0294823,-0.999528][0.375,0.625,0][0.371052,0.333841,-1.31796][0.00859974,-0.0294823,-0.999528][0.375,0.625,0][0.749802,0.413472,-1.38953][-0.159075,-0.0331094,-0.986711][0.25,0.625,0][0.787987,0.000972509,-1.36529][-0.198744,-0.0413547,-0.979179][0.25,0.5,0][0.409237,-0.0786589,-1.33635][0.0809356,0.0686977,-0.994349][0.375,0.5,0][0.0304869,-0.0904378,-1.38669][-0.0153446,-0.199765,-0.979724][0.5,0.5,0][-0.00769828,0.322062,-1.41453][0.173968,0.0469331,-0.983632][0.5,0.625,0][-0.00769828,0.322062,-1.41453][0.173968,0.0469331,-0.983632][0.5,0.625,0][0.371052,0.333841,-1.31796][0.00859974,-0.0294823,-0.999528][0.375,0.625,0][0.409237,-0.0786589,-1.33635][0.0809356,0.0686977,-0.994349][0.375,0.5,0][0.0304869,-0.0904378,-1.38669][-0.0153446,-0.199765,-0.979724][0.5,0.5,0][-0.348263,-0.0249524,-1.26417][-0.232627,-0.297418,-0.925974][0.625,0.5,0][-0.386448,0.387547,-1.48229][-0.188206,-0.0909455,-0.97791][0.625,0.625,0][-0.386448,0.387547,-1.48229][-0.188206,-0.0909455,-0.97791][0.625,0.625,0][-0.00769828,0.322062,-1.41453][0.173968,0.0469331,-0.983632][0.5,0.625,0][0.0304869,-0.0904378,-1.38669][-0.0153446,-0.199765,-0.979724][0.5,0.5,0][-0.348263,-0.0249524,-1.26417][-0.232627,-0.297418,-0.925974][0.625,0.5,0][-0.727013,-0.0924333,-1.29603][0.0721085,0.102638,-0.992102][0.75,0.5,0][-0.765198,0.320067,-1.26386][-0.146214,-0.00369724,-0.989246][0.75,0.625,0][-0.765198,0.320067,-1.26386][-0.146214,-0.00369724,-0.989246][0.75,0.625,0][-0.386448,0.387547,-1.48229][-0.188206,-0.0909455,-0.97791][0.625,0.625,0][-0.348263,-0.0249524,-1.26417][-0.232627,-0.297418,-0.925974][0.625,0.5,0][-0.727013,-0.0924333,-1.29603][0.0721085,0.102638,-0.992102][0.75,0.5,0][-1.10576,-0.0303776,-1.2961][-0.0421289,0.0410242,-0.99827][0.875,0.5,0][-1.14395,0.382122,-1.327][0.163455,0.0845347,-0.982922][0.875,0.625,0][-1.14395,0.382122,-1.327][0.163455,0.0845347,-0.982922][0.875,0.625,0][-0.765198,0.320067,-1.26386][-0.146214,-0.00369724,-0.989246][0.75,0.625,0][-0.727013,-0.0924333,-1.29603][0.0721085,0.102638,-0.992102][0.75,0.5,0][-1.10576,-0.0303776,-1.2961][-0.0421289,0.0410242,-0.99827][0.875,0.5,0][-1.48451,0.0508286,-1.24807][-0.200255,0.209172,-2.87459][1,0.5,0][-1.5227,0.463329,-1.36098][-0.00604995,-0.30198,-2.9339][1,0.625,0][-1.5227,0.463329,-1.36098][-0.00604995,-0.30198,-2.9339][1,0.625,0][-1.14395,0.382122,-1.327][0.163455,0.0845347,-0.982922][0.875,0.625,0][-1.10576,-0.0303776,-1.2961][-0.0421289,0.0410242,-0.99827][0.875,0.5,0][1.5073,0.343019,-1.30837][0.353069,-0.0363108,-2.76107][0,0.625,0][1.12855,0.36265,-1.44299][0.140763,0.102595,-0.984713][0.125,0.625,0][1.24267,0.77515,-1.35708][-0.0438346,-0.0690676,-0.996648][0.125,0.75,0][1.24267,0.77515,-1.35708][-0.0438346,-0.0690676,-0.996648][0.125,0.75,0][1.62142,0.755519,-1.48665][-0.410754,-0.20362,-2.73708][0,0.75,0][1.5073,0.343019,-1.30837][0.353069,-0.0363108,-2.76107][0,0.625,0][1.12855,0.36265,-1.44299][0.140763,0.102595,-0.984713][0.125,0.625,0][0.749802,0.413472,-1.38953][-0.159075,-0.0331094,-0.986711][0.25,0.625,0][0.863923,0.825972,-1.40229][0.00925795,0.0438551,-0.998995][0.25,0.75,0][0.863923,0.825972,-1.40229][0.00925795,0.0438551,-0.998995][0.25,0.75,0][1.24267,0.77515,-1.35708][-0.0438346,-0.0690676,-0.996648][0.125,0.75,0][1.12855,0.36265,-1.44299][0.140763,0.102595,-0.984713][0.125,0.625,0][0.749802,0.413472,-1.38953][-0.159075,-0.0331094,-0.986711][0.25,0.625,0][0.371052,0.333841,-1.31796][0.00859974,-0.0294823,-0.999528][0.375,0.625,0][0.485173,0.746341,-1.3791][-0.0289635,-0.0862837,-0.995849][0.375,0.75,0][0.485173,0.746341,-1.3791][-0.0289635,-0.0862837,-0.995849][0.375,0.75,0][0.863923,0.825972,-1.40229][0.00925795,0.0438551,-0.998995][0.25,0.75,0][0.749802,0.413472,-1.38953][-0.159075,-0.0331094,-0.986711][0.25,0.625,0][0.371052,0.333841,-1.31796][0.00859974,-0.0294823,-0.999528][0.375,0.625,0][-0.00769828,0.322062,-1.41453][0.173968,0.0469331,-0.983632][0.5,0.625,0][0.106423,0.734562,-1.36928][0.00262953,-0.0570666,-0.998367][0.5,0.75,0][0.106423,0.734562,-1.36928][0.00262953,-0.0570666,-0.998367][0.5,0.75,0][0.485173,0.746341,-1.3791][-0.0289635,-0.0862837,-0.995849][0.375,0.75,0][0.371052,0.333841,-1.31796][0.00859974,-0.0294823,-0.999528][0.375,0.625,0][-0.00769828,0.322062,-1.41453][0.173968,0.0469331,-0.983632][0.5,0.625,0][-0.386448,0.387547,-1.48229][-0.188206,-0.0909455,-0.97791][0.625,0.625,0][-0.272327,0.800047,-1.37915][-0.0479492,0.135078,-0.989674][0.625,0.75,0][-0.272327,0.800047,-1.37915][-0.0479492,0.135078,-0.989674][0.625,0.75,0][0.106423,0.734562,-1.36928][0.00262953,-0.0570666,-0.998367][0.5,0.75,0][-0.00769828,0.322062,-1.41453][0.173968,0.0469331,-0.983632][0.5,0.625,0][-0.386448,0.387547,-1.48229][-0.188206,-0.0909455,-0.97791][0.625,0.625,0][-0.765198,0.320067,-1.26386][-0.146214,-0.00369724,-0.989246][0.75,0.625,0][-0.651077,0.732567,-1.32728][-0.282603,0.0572643,-0.957526][0.75,0.75,0][-0.651077,0.732567,-1.32728][-0.282603,0.0572643,-0.957526][0.75,0.75,0][-0.272327,0.800047,-1.37915][-0.0479492,0.135078,-0.989674][0.625,0.75,0][-0.386448,0.387547,-1.48229][-0.188206,-0.0909455,-0.97791][0.625,0.625,0][-0.765198,0.320067,-1.26386][-0.146214,-0.00369724,-0.989246][0.75,0.625,0][-1.14395,0.382122,-1.327][0.163455,0.0845347,-0.982922][0.875,0.625,0][-1.02983,0.794622,-1.17275][0.0524479,0.0485264,-0.997444][0.875,0.75,0][-1.02983,0.794622,-1.17275][0.0524479,0.0485264,-0.997444][0.875,0.75,0][-0.651077,0.732567,-1.32728][-0.282603,0.0572643,-0.957526][0.75,0.75,0][-0.765198,0.320067,-1.26386][-0.146214,-0.00369724,-0.989246][0.75,0.625,0][-1.14395,0.382122,-1.327][0.163455,0.0845347,-0.982922][0.875,0.625,0][-1.5227,0.463329,-1.36098][-0.00604995,-0.30198,-2.9339][1,0.625,0][-1.40858,0.875829,-1.33283][0.929807,0.412773,-2.77375][1,0.75,0][-1.40858,0.875829,-1.33283][0.929807,0.412773,-2.77375][1,0.75,0][-1.02983,0.794622,-1.17275][0.0524479,0.0485264,-0.997444][0.875,0.75,0][-1.14395,0.382122,-1.327][0.163455,0.0845347,-0.982922][0.875,0.625,0][1.62142,0.755519,-1.48665][-0.410754,-0.20362,-2.73708][0,0.75,0][1.24267,0.77515,-1.35708][-0.0438346,-0.0690676,-0.996648][0.125,0.75,0][1.21356,1.18765,-1.44474][-0.056228,-0.0858638,-0.994719][0.125,0.875,0][1.21356,1.18765,-1.44474][-0.056228,-0.0858638,-0.994719][0.125,0.875,0][1.59231,1.16802,-1.3534][0.332514,-0.160105,-2.80387][0,0.875,0][1.62142,0.755519,-1.48665][-0.410754,-0.20362,-2.73708][0,0.75,0][1.24267,0.77515,-1.35708][-0.0438346,-0.0690676,-0.996648][0.125,0.75,0][0.863923,0.825972,-1.40229][0.00925795,0.0438551,-0.998995][0.25,0.75,0][0.834808,1.23847,-1.37475][-0.057355,-0.0778295,-0.995315][0.25,0.875,0][0.834808,1.23847,-1.37475][-0.057355,-0.0778295,-0.995315][0.25,0.875,0][1.21356,1.18765,-1.44474][-0.056228,-0.0858638,-0.994719][0.125,0.875,0][1.24267,0.77515,-1.35708][-0.0438346,-0.0690676,-0.996648][0.125,0.75,0][0.863923,0.825972,-1.40229][0.00925795,0.0438551,-0.998995][0.25,0.75,0][0.485173,0.746341,-1.3791][-0.0289635,-0.0862837,-0.995849][0.375,0.75,0][0.456058,1.15884,-1.39453][0.0440317,0.0334986,-0.998468][0.375,0.875,0][0.456058,1.15884,-1.39453][0.0440317,0.0334986,-0.998468][0.375,0.875,0][0.834808,1.23847,-1.37475][-0.057355,-0.0778295,-0.995315][0.25,0.875,0][0.863923,0.825972,-1.40229][0.00925795,0.0438551,-0.998995][0.25,0.75,0][0.485173,0.746341,-1.3791][-0.0289635,-0.0862837,-0.995849][0.375,0.75,0][0.106423,0.734562,-1.36928][0.00262953,-0.0570666,-0.998367][0.5,0.75,0][0.077308,1.14706,-1.44894][-0.0175914,-0.0376321,-0.999137][0.5,0.875,0][0.077308,1.14706,-1.44894][-0.0175914,-0.0376321,-0.999137][0.5,0.875,0][0.456058,1.15884,-1.39453][0.0440317,0.0334986,-0.998468][0.375,0.875,0][0.485173,0.746341,-1.3791][-0.0289635,-0.0862837,-0.995849][0.375,0.75,0][0.106423,0.734562,-1.36928][0.00262953,-0.0570666,-0.998367][0.5,0.75,0][-0.272327,0.800047,-1.37915][-0.0479492,0.135078,-0.989674][0.625,0.75,0][-0.301442,1.21255,-1.35483][-0.225362,-0.059311,-0.972468][0.625,0.875,0][-0.301442,1.21255,-1.35483][-0.225362,-0.059311,-0.972468][0.625,0.875,0][0.077308,1.14706,-1.44894][-0.0175914,-0.0376321,-0.999137][0.5,0.875,0][0.106423,0.734562,-1.36928][0.00262953,-0.0570666,-0.998367][0.5,0.75,0][-0.272327,0.800047,-1.37915][-0.0479492,0.135078,-0.989674][0.625,0.75,0][-0.651077,0.732567,-1.32728][-0.282603,0.0572643,-0.957526][0.75,0.75,0][-0.680192,1.14507,-1.26825][-0.0423619,-0.0345253,-0.998506][0.75,0.875,0][-0.680192,1.14507,-1.26825][-0.0423619,-0.0345253,-0.998506][0.75,0.875,0][-0.301442,1.21255,-1.35483][-0.225362,-0.059311,-0.972468][0.625,0.875,0][-0.272327,0.800047,-1.37915][-0.0479492,0.135078,-0.989674][0.625,0.75,0][-0.651077,0.732567,-1.32728][-0.282603,0.0572643,-0.957526][0.75,0.75,0][-1.02983,0.794622,-1.17275][0.0524479,0.0485264,-0.997444][0.875,0.75,0][-1.05894,1.20712,-1.24609][-0.159228,-0.249684,-0.955146][0.875,0.875,0][-1.05894,1.20712,-1.24609][-0.159228,-0.249684,-0.955146][0.875,0.875,0][-0.680192,1.14507,-1.26825][-0.0423619,-0.0345253,-0.998506][0.75,0.875,0][-0.651077,0.732567,-1.32728][-0.282603,0.0572643,-0.957526][0.75,0.75,0][-1.02983,0.794622,-1.17275][0.0524479,0.0485264,-0.997444][0.875,0.75,0][-1.40858,0.875829,-1.33283][0.929807,0.412773,-2.77375][1,0.75,0][-1.43769,1.28833,-1.27361][0.473731,-0.223592,-2.85892][1,0.875,0][-1.43769,1.28833,-1.27361][0.473731,-0.223592,-2.85892][1,0.875,0][-1.05894,1.20712,-1.24609][-0.159228,-0.249684,-0.955146][0.875,0.875,0][-1.02983,0.794622,-1.17275][0.0524479,0.0485264,-0.997444][0.875,0.75,0][1.59231,1.16802,-1.3534][0.332514,-0.160105,-2.80387][0,0.875,0][1.21356,1.18765,-1.44474][-0.056228,-0.0858638,-0.994719][0.125,0.875,0][1.23658,1.60015,-1.4799][-0.230379,2.79164,-0.100553][0.125,1,0][1.23658,1.60015,-1.4799][-0.230379,2.79164,-0.100553][0.125,1,0][1.61533,1.58052,-1.52725][0.0521218,1.95133,-0.435331][0,1,0][1.59231,1.16802,-1.3534][0.332514,-0.160105,-2.80387][0,0.875,0][1.21356,1.18765,-1.44474][-0.056228,-0.0858638,-0.994719][0.125,0.875,0][0.834808,1.23847,-1.37475][-0.057355,-0.0778295,-0.995315][0.25,0.875,0][0.857826,1.65097,-1.46317][0.098348,2.82879,0.7328][0.25,1,0][0.857826,1.65097,-1.46317][0.098348,2.82879,0.7328][0.25,1,0][1.23658,1.60015,-1.4799][-0.230379,2.79164,-0.100553][0.125,1,0][1.21356,1.18765,-1.44474][-0.056228,-0.0858638,-0.994719][0.125,0.875,0][0.834808,1.23847,-1.37475][-0.057355,-0.0778295,-0.995315][0.25,0.875,0][0.456058,1.15884,-1.39453][0.0440317,0.0334986,-0.998468][0.375,0.875,0][0.479076,1.57134,-1.38999][-0.15979,2.97218,0.0192374][0.375,1,0][0.479076,1.57134,-1.38999][-0.15979,2.97218,0.0192374][0.375,1,0][0.857826,1.65097,-1.46317][0.098348,2.82879,0.7328][0.25,1,0][0.834808,1.23847,-1.37475][-0.057355,-0.0778295,-0.995315][0.25,0.875,0][0.456058,1.15884,-1.39453][0.0440317,0.0334986,-0.998468][0.375,0.875,0][0.077308,1.14706,-1.44894][-0.0175914,-0.0376321,-0.999137][0.5,0.875,0][0.100326,1.55956,-1.37106][-0.134256,2.92771,0.0932585][0.5,1,0][0.100326,1.55956,-1.37106][-0.134256,2.92771,0.0932585][0.5,1,0][0.479076,1.57134,-1.38999][-0.15979,2.97218,0.0192374][0.375,1,0][0.456058,1.15884,-1.39453][0.0440317,0.0334986,-0.998468][0.375,0.875,0][0.077308,1.14706,-1.44894][-0.0175914,-0.0376321,-0.999137][0.5,0.875,0][-0.301442,1.21255,-1.35483][-0.225362,-0.059311,-0.972468][0.625,0.875,0][-0.278424,1.62505,-1.42623][0.0710019,2.91364,0.539217][0.625,1,0][-0.278424,1.62505,-1.42623][0.0710019,2.91364,0.539217][0.625,1,0][0.100326,1.55956,-1.37106][-0.134256,2.92771,0.0932585][0.5,1,0][0.077308,1.14706,-1.44894][-0.0175914,-0.0376321,-0.999137][0.5,0.875,0][-0.301442,1.21255,-1.35483][-0.225362,-0.059311,-0.972468][0.625,0.875,0][-0.680192,1.14507,-1.26825][-0.0423619,-0.0345253,-0.998506][0.75,0.875,0][-0.657174,1.55757,-1.25884][0.216491,2.9488,0.128663][0.75,1,0][-0.657174,1.55757,-1.25884][0.216491,2.9488,0.128663][0.75,1,0][-0.278424,1.62505,-1.42623][0.0710019,2.91364,0.539217][0.625,1,0][-0.301442,1.21255,-1.35483][-0.225362,-0.059311,-0.972468][0.625,0.875,0][-0.680192,1.14507,-1.26825][-0.0423619,-0.0345253,-0.998506][0.75,0.875,0][-1.05894,1.20712,-1.24609][-0.159228,-0.249684,-0.955146][0.875,0.875,0][-1.03592,1.61962,-1.50821][0.404232,2.87754,0.289462][0.875,1,0][-1.03592,1.61962,-1.50821][0.404232,2.87754,0.289462][0.875,1,0][-0.657174,1.55757,-1.25884][0.216491,2.9488,0.128663][0.75,1,0][-0.680192,1.14507,-1.26825][-0.0423619,-0.0345253,-0.998506][0.75,0.875,0][-1.05894,1.20712,-1.24609][-0.159228,-0.249684,-0.955146][0.875,0.875,0][-1.43769,1.28833,-1.27361][0.473731,-0.223592,-2.85892][1,0.875,0][-1.41467,1.70083,-1.36114][0.314986,0.894494,0.317277][1,1,0][-1.41467,1.70083,-1.36114][0.314986,0.894494,0.317277][1,1,0][-1.03592,1.61962,-1.50821][0.404232,2.87754,0.289462][0.875,1,0][-1.05894,1.20712,-1.24609][-0.159228,-0.249684,-0.955146][0.875,0.875,0][-1.47275,-1.59917,-1.32227][0.47848,-0.867954,-0.13309][0,0,0][-1.5811,-1.70132,-1.04564][1.70962,-2.37644,-0.256489][0.142857,0,0][-1.55318,-1.28882,-0.99854][-0.962852,-0.0867076,0.255728][0.142857,0.125,0][-1.55318,-1.28882,-0.99854][-0.962852,-0.0867076,0.255728][0.142857,0.125,0][-1.60549,-1.18667,-1.4646][0.561169,0.114402,-2.8007][0,0.125,0][-1.47275,-1.59917,-1.32227][0.47848,-0.867954,-0.13309][0,0,0][-1.5811,-1.70132,-1.04564][1.70962,-2.37644,-0.256489][0.142857,0,0][-1.32048,-1.68846,-0.535494][1.8512,-2.24932,-0.394104][0.285714,0,0][-1.33293,-1.27596,-0.672051][-0.990396,-0.00514561,0.138166][0.285714,0.125,0][-1.33293,-1.27596,-0.672051][-0.990396,-0.00514561,0.138166][0.285714,0.125,0][-1.55318,-1.28882,-0.99854][-0.962852,-0.0867076,0.255728][0.142857,0.125,0][-1.5811,-1.70132,-1.04564][1.70962,-2.37644,-0.256489][0.142857,0,0][-1.32048,-1.68846,-0.535494][1.8512,-2.24932,-0.394104][0.285714,0,0][-1.41149,-1.69361,-0.16513][2.14015,-1.90034,0.57995][0.428571,0,0][-1.42907,-1.28111,-0.307461][-0.989342,-0.0955467,-0.109876][0.428571,0.125,0][-1.42907,-1.28111,-0.307461][-0.989342,-0.0955467,-0.109876][0.428571,0.125,0][-1.33293,-1.27596,-0.672051][-0.990396,-0.00514561,0.138166][0.285714,0.125,0][-1.32048,-1.68846,-0.535494][1.8512,-2.24932,-0.394104][0.285714,0,0][-1.41149,-1.69361,-0.16513][2.14015,-1.90034,0.57995][0.428571,0,0][-1.46053,-1.76794,0.232154][1.93984,-2.18505,-0.0459622][0.571429,0,0][-1.37602,-1.35544,0.0953891][-0.982425,-0.0100697,-0.186385][0.571429,0.125,0][-1.37602,-1.35544,0.0953891][-0.982425,-0.0100697,-0.186385][0.571429,0.125,0][-1.42907,-1.28111,-0.307461][-0.989342,-0.0955467,-0.109876][0.428571,0.125,0][-1.41149,-1.69361,-0.16513][2.14015,-1.90034,0.57995][0.428571,0,0][-1.46053,-1.76794,0.232154][1.93984,-2.18505,-0.0459622][0.571429,0,0][-1.51512,-1.69513,0.606298][1.90534,-1.70506,1.41318][0.714286,0,0][-1.64851,-1.28263,0.463967][-0.971464,0.0695867,-0.226749][0.714286,0.125,0][-1.64851,-1.28263,0.463967][-0.971464,0.0695867,-0.226749][0.714286,0.125,0][-1.37602,-1.35544,0.0953891][-0.982425,-0.0100697,-0.186385][0.571429,0.125,0][-1.46053,-1.76794,0.232154][1.93984,-2.18505,-0.0459622][0.571429,0,0][-1.51512,-1.69513,0.606298][1.90534,-1.70506,1.41318][0.714286,0,0][-1.79339,-1.74473,0.84309][1.21881,-2.24716,0.225003][0.857143,0,0][-1.65107,-1.33223,0.95864][-0.986944,0.122508,0.104566][0.857143,0.125,0][-1.65107,-1.33223,0.95864][-0.986944,0.122508,0.104566][0.857143,0.125,0][-1.64851,-1.28263,0.463967][-0.971464,0.0695867,-0.226749][0.714286,0.125,0][-1.51512,-1.69513,0.606298][1.90534,-1.70506,1.41318][0.714286,0,0][-1.79339,-1.74473,0.84309][1.21881,-2.24716,0.225003][0.857143,0,0][-1.57302,-1.67568,1.37773][0.805443,-1.82295,0.0308321][1,0,0][-1.4355,-1.26318,1.2354][-2.40005,0.264822,1.53312][1,0.125,0][-1.4355,-1.26318,1.2354][-2.40005,0.264822,1.53312][1,0.125,0][-1.65107,-1.33223,0.95864][-0.986944,0.122508,0.104566][0.857143,0.125,0][-1.79339,-1.74473,0.84309][1.21881,-2.24716,0.225003][0.857143,0,0][-1.60549,-1.18667,-1.4646][0.561169,0.114402,-2.8007][0,0.125,0][-1.55318,-1.28882,-0.99854][-0.962852,-0.0867076,0.255728][0.142857,0.125,0][-1.6325,-0.876319,-1.10033][-0.939896,-0.0785564,0.332302][0.142857,0.25,0][-1.6325,-0.876319,-1.10033][-0.939896,-0.0785564,0.332302][0.142857,0.25,0][-1.65952,-0.774171,-1.38146][0.00418769,0.122968,-2.88612][0,0.25,0][-1.60549,-1.18667,-1.4646][0.561169,0.114402,-2.8007][0,0.125,0][-1.55318,-1.28882,-0.99854][-0.962852,-0.0867076,0.255728][0.142857,0.125,0][-1.33293,-1.27596,-0.672051][-0.990396,-0.00514561,0.138166][0.285714,0.125,0][-1.32979,-0.863461,-0.608284][-0.993567,-0.036437,0.107223][0.285714,0.25,0][-1.32979,-0.863461,-0.608284][-0.993567,-0.036437,0.107223][0.285714,0.25,0][-1.6325,-0.876319,-1.10033][-0.939896,-0.0785564,0.332302][0.142857,0.25,0][-1.55318,-1.28882,-0.99854][-0.962852,-0.0867076,0.255728][0.142857,0.125,0][-1.33293,-1.27596,-0.672051][-0.990396,-0.00514561,0.138166][0.285714,0.125,0][-1.42907,-1.28111,-0.307461][-0.989342,-0.0955467,-0.109876][0.428571,0.125,0][-1.45216,-0.868614,-0.224321][-0.994752,0.00736987,-0.102051][0.428571,0.25,0][-1.45216,-0.868614,-0.224321][-0.994752,0.00736987,-0.102051][0.428571,0.25,0][-1.32979,-0.863461,-0.608284][-0.993567,-0.036437,0.107223][0.285714,0.25,0][-1.33293,-1.27596,-0.672051][-0.990396,-0.00514561,0.138166][0.285714,0.125,0][-1.42907,-1.28111,-0.307461][-0.989342,-0.0955467,-0.109876][0.428571,0.125,0][-1.37602,-1.35544,0.0953891][-0.982425,-0.0100697,-0.186385][0.571429,0.125,0][-1.49376,-0.942941,0.206341][-0.997314,-0.0221986,-0.0698009][0.571429,0.25,0][-1.49376,-0.942941,0.206341][-0.997314,-0.0221986,-0.0698009][0.571429,0.25,0][-1.45216,-0.868614,-0.224321][-0.994752,0.00736987,-0.102051][0.428571,0.25,0][-1.42907,-1.28111,-0.307461][-0.989342,-0.0955467,-0.109876][0.428571,0.125,0][-1.37602,-1.35544,0.0953891][-0.982425,-0.0100697,-0.186385][0.571429,0.125,0][-1.64851,-1.28263,0.463967][-0.971464,0.0695867,-0.226749][0.714286,0.125,0][-1.49776,-0.870133,0.547108][-0.982729,-0.0189825,-0.184076][0.714286,0.25,0][-1.49776,-0.870133,0.547108][-0.982729,-0.0189825,-0.184076][0.714286,0.25,0][-1.49376,-0.942941,0.206341][-0.997314,-0.0221986,-0.0698009][0.571429,0.25,0][-1.37602,-1.35544,0.0953891][-0.982425,-0.0100697,-0.186385][0.571429,0.125,0][-1.64851,-1.28263,0.463967][-0.971464,0.0695867,-0.226749][0.714286,0.125,0][-1.65107,-1.33223,0.95864][-0.986944,0.122508,0.104566][0.857143,0.125,0][-1.50537,-0.91973,0.815857][-0.995016,-0.00103225,0.0997144][0.857143,0.25,0][-1.50537,-0.91973,0.815857][-0.995016,-0.00103225,0.0997144][0.857143,0.25,0][-1.49776,-0.870133,0.547108][-0.982729,-0.0189825,-0.184076][0.714286,0.25,0][-1.64851,-1.28263,0.463967][-0.971464,0.0695867,-0.226749][0.714286,0.125,0][-1.65107,-1.33223,0.95864][-0.986944,0.122508,0.104566][0.857143,0.125,0][-1.4355,-1.26318,1.2354][-2.40005,0.264822,1.53312][1,0.125,0][-1.49754,-0.85068,1.31854][-2.68187,0.104088,0.616356][1,0.25,0][-1.49754,-0.85068,1.31854][-2.68187,0.104088,0.616356][1,0.25,0][-1.50537,-0.91973,0.815857][-0.995016,-0.00103225,0.0997144][0.857143,0.25,0][-1.65107,-1.33223,0.95864][-0.986944,0.122508,0.104566][0.857143,0.125,0][-1.65952,-0.774171,-1.38146][0.00418769,0.122968,-2.88612][0,0.25,0][-1.6325,-0.876319,-1.10033][-0.939896,-0.0785564,0.332302][0.142857,0.25,0][-1.59149,-0.463819,-0.934875][-0.974976,0.131896,0.178957][0.142857,0.375,0][-1.59149,-0.463819,-0.934875][-0.974976,0.131896,0.178957][0.142857,0.375,0][-1.41605,-0.361671,-1.37654][-0.0283857,0.508901,-2.93168][0,0.375,0][-1.65952,-0.774171,-1.38146][0.00418769,0.122968,-2.88612][0,0.25,0][-1.6325,-0.876319,-1.10033][-0.939896,-0.0785564,0.332302][0.142857,0.25,0][-1.32979,-0.863461,-0.608284][-0.993567,-0.036437,0.107223][0.285714,0.25,0][-1.32787,-0.450962,-0.61975][-0.983466,-0.117942,0.137418][0.285714,0.375,0][-1.32787,-0.450962,-0.61975][-0.983466,-0.117942,0.137418][0.285714,0.375,0][-1.59149,-0.463819,-0.934875][-0.974976,0.131896,0.178957][0.142857,0.375,0][-1.6325,-0.876319,-1.10033][-0.939896,-0.0785564,0.332302][0.142857,0.25,0][-1.32979,-0.863461,-0.608284][-0.993567,-0.036437,0.107223][0.285714,0.25,0][-1.45216,-0.868614,-0.224321][-0.994752,0.00736987,-0.102051][0.428571,0.25,0][-1.51751,-0.456114,-0.219394][-0.991245,-0.131853,-0.00698345][0.428571,0.375,0][-1.51751,-0.456114,-0.219394][-0.991245,-0.131853,-0.00698345][0.428571,0.375,0][-1.32787,-0.450962,-0.61975][-0.983466,-0.117942,0.137418][0.285714,0.375,0][-1.32979,-0.863461,-0.608284][-0.993567,-0.036437,0.107223][0.285714,0.25,0][-1.45216,-0.868614,-0.224321][-0.994752,0.00736987,-0.102051][0.428571,0.25,0][-1.49376,-0.942941,0.206341][-0.997314,-0.0221986,-0.0698009][0.571429,0.25,0][-1.35133,-0.530441,0.115254][-0.999498,0.0163566,-0.0271364][0.571429,0.375,0][-1.35133,-0.530441,0.115254][-0.999498,0.0163566,-0.0271364][0.571429,0.375,0][-1.51751,-0.456114,-0.219394][-0.991245,-0.131853,-0.00698345][0.428571,0.375,0][-1.45216,-0.868614,-0.224321][-0.994752,0.00736987,-0.102051][0.428571,0.25,0][-1.49376,-0.942941,0.206341][-0.997314,-0.0221986,-0.0698009][0.571429,0.25,0][-1.49776,-0.870133,0.547108][-0.982729,-0.0189825,-0.184076][0.714286,0.25,0][-1.52149,-0.457633,0.552034][-0.931881,0.0655049,-0.356801][0.714286,0.375,0][-1.52149,-0.457633,0.552034][-0.931881,0.0655049,-0.356801][0.714286,0.375,0][-1.35133,-0.530441,0.115254][-0.999498,0.0163566,-0.0271364][0.571429,0.375,0][-1.49376,-0.942941,0.206341][-0.997314,-0.0221986,-0.0698009][0.571429,0.25,0][-1.49776,-0.870133,0.547108][-0.982729,-0.0189825,-0.184076][0.714286,0.25,0][-1.50537,-0.91973,0.815857][-0.995016,-0.00103225,0.0997144][0.857143,0.25,0][-1.72711,-0.50723,1.03029][-0.952002,-0.264174,0.154609][0.857143,0.375,0][-1.72711,-0.50723,1.03029][-0.952002,-0.264174,0.154609][0.857143,0.375,0][-1.52149,-0.457633,0.552034][-0.931881,0.0655049,-0.356801][0.714286,0.375,0][-1.49776,-0.870133,0.547108][-0.982729,-0.0189825,-0.184076][0.714286,0.25,0][-1.50537,-0.91973,0.815857][-0.995016,-0.00103225,0.0997144][0.857143,0.25,0][-1.49754,-0.85068,1.31854][-2.68187,0.104088,0.616356][1,0.25,0][-1.48975,-0.43818,1.32346][-2.27615,-0.811934,1.24203][1,0.375,0][-1.48975,-0.43818,1.32346][-2.27615,-0.811934,1.24203][1,0.375,0][-1.72711,-0.50723,1.03029][-0.952002,-0.264174,0.154609][0.857143,0.375,0][-1.50537,-0.91973,0.815857][-0.995016,-0.00103225,0.0997144][0.857143,0.25,0][-1.41605,-0.361671,-1.37654][-0.0283857,0.508901,-2.93168][0,0.375,0][-1.59149,-0.463819,-0.934875][-0.974976,0.131896,0.178957][0.142857,0.375,0][-1.47097,-0.0513188,-0.893565][-0.996914,0.0708436,0.0338154][0.142857,0.5,0][-1.47097,-0.0513188,-0.893565][-0.996914,0.0708436,0.0338154][0.142857,0.5,0][-1.48451,0.0508286,-1.24807][-0.200255,0.209172,-2.87459][0,0.5,0][-1.41605,-0.361671,-1.37654][-0.0283857,0.508901,-2.93168][0,0.375,0][-1.59149,-0.463819,-0.934875][-0.974976,0.131896,0.178957][0.142857,0.375,0][-1.32787,-0.450962,-0.61975][-0.983466,-0.117942,0.137418][0.285714,0.375,0][-1.44129,-0.0384614,-0.599306][-0.999665,-0.00848001,-0.0244585][0.285714,0.5,0][-1.44129,-0.0384614,-0.599306][-0.999665,-0.00848001,-0.0244585][0.285714,0.5,0][-1.47097,-0.0513188,-0.893565][-0.996914,0.0708436,0.0338154][0.142857,0.5,0][-1.59149,-0.463819,-0.934875][-0.974976,0.131896,0.178957][0.142857,0.375,0][-1.32787,-0.450962,-0.61975][-0.983466,-0.117942,0.137418][0.285714,0.375,0][-1.51751,-0.456114,-0.219394][-0.991245,-0.131853,-0.00698345][0.428571,0.375,0][-1.55919,-0.043614,-0.0909235][-0.995092,-0.0940376,0.0308158][0.428571,0.5,0][-1.55919,-0.043614,-0.0909235][-0.995092,-0.0940376,0.0308158][0.428571,0.5,0][-1.44129,-0.0384614,-0.599306][-0.999665,-0.00848001,-0.0244585][0.285714,0.5,0][-1.32787,-0.450962,-0.61975][-0.983466,-0.117942,0.137418][0.285714,0.375,0][-1.51751,-0.456114,-0.219394][-0.991245,-0.131853,-0.00698345][0.428571,0.375,0][-1.35133,-0.530441,0.115254][-0.999498,0.0163566,-0.0271364][0.571429,0.375,0][-1.43555,-0.117941,0.214554][-0.988341,-0.109625,0.105666][0.571429,0.5,0][-1.43555,-0.117941,0.214554][-0.988341,-0.109625,0.105666][0.571429,0.5,0][-1.55919,-0.043614,-0.0909235][-0.995092,-0.0940376,0.0308158][0.428571,0.5,0][-1.51751,-0.456114,-0.219394][-0.991245,-0.131853,-0.00698345][0.428571,0.375,0][-1.35133,-0.530441,0.115254][-0.999498,0.0163566,-0.0271364][0.571429,0.375,0][-1.52149,-0.457633,0.552034][-0.931881,0.0655049,-0.356801][0.714286,0.375,0][-1.51516,-0.0451334,0.680505][-0.918916,0.00109208,-0.394452][0.714286,0.5,0][-1.51516,-0.0451334,0.680505][-0.918916,0.00109208,-0.394452][0.714286,0.5,0][-1.43555,-0.117941,0.214554][-0.988341,-0.109625,0.105666][0.571429,0.5,0][-1.35133,-0.530441,0.115254][-0.999498,0.0163566,-0.0271364][0.571429,0.375,0][-1.52149,-0.457633,0.552034][-0.931881,0.0655049,-0.356801][0.714286,0.375,0][-1.72711,-0.50723,1.03029][-0.952002,-0.264174,0.154609][0.857143,0.375,0][-1.7393,-0.0947299,1.01221][-0.99815,0.0496233,-0.0351382][0.857143,0.5,0][-1.7393,-0.0947299,1.01221][-0.99815,0.0496233,-0.0351382][0.857143,0.5,0][-1.51516,-0.0451334,0.680505][-0.918916,0.00109208,-0.394452][0.714286,0.5,0][-1.52149,-0.457633,0.552034][-0.931881,0.0655049,-0.356801][0.714286,0.375,0][-1.72711,-0.50723,1.03029][-0.952002,-0.264174,0.154609][0.857143,0.375,0][-1.48975,-0.43818,1.32346][-2.27615,-0.811934,1.24203][1,0.375,0][-1.50761,-0.0256803,1.45193][-2.49981,-0.175617,1.56887][1,0.5,0][-1.50761,-0.0256803,1.45193][-2.49981,-0.175617,1.56887][1,0.5,0][-1.7393,-0.0947299,1.01221][-0.99815,0.0496233,-0.0351382][0.857143,0.5,0][-1.72711,-0.50723,1.03029][-0.952002,-0.264174,0.154609][0.857143,0.375,0][-1.48451,0.0508286,-1.24807][-0.200255,0.209172,-2.87459][0,0.5,0][-1.47097,-0.0513188,-0.893565][-0.996914,0.0708436,0.0338154][0.142857,0.5,0][-1.51403,0.361181,-0.981031][-0.978459,-0.0851542,0.188062][0.142857,0.625,0][-1.51403,0.361181,-0.981031][-0.978459,-0.0851542,0.188062][0.142857,0.625,0][-1.5227,0.463329,-1.36098][-0.00604995,-0.30198,-2.9339][0,0.625,0][-1.48451,0.0508286,-1.24807][-0.200255,0.209172,-2.87459][0,0.5,0][-1.47097,-0.0513188,-0.893565][-0.996914,0.0708436,0.0338154][0.142857,0.5,0][-1.44129,-0.0384614,-0.599306][-0.999665,-0.00848001,-0.0244585][0.285714,0.5,0][-1.37957,0.374038,-0.569401][-0.977401,0.124027,-0.171187][0.285714,0.625,0][-1.37957,0.374038,-0.569401][-0.977401,0.124027,-0.171187][0.285714,0.625,0][-1.51403,0.361181,-0.981031][-0.978459,-0.0851542,0.188062][0.142857,0.625,0][-1.47097,-0.0513188,-0.893565][-0.996914,0.0708436,0.0338154][0.142857,0.5,0][-1.44129,-0.0384614,-0.599306][-0.999665,-0.00848001,-0.0244585][0.285714,0.5,0][-1.55919,-0.043614,-0.0909235][-0.995092,-0.0940376,0.0308158][0.428571,0.5,0][-1.59224,0.368886,-0.203841][-0.999416,0.0336288,-0.00614482][0.428571,0.625,0][-1.59224,0.368886,-0.203841][-0.999416,0.0336288,-0.00614482][0.428571,0.625,0][-1.37957,0.374038,-0.569401][-0.977401,0.124027,-0.171187][0.285714,0.625,0][-1.44129,-0.0384614,-0.599306][-0.999665,-0.00848001,-0.0244585][0.285714,0.5,0][-1.55919,-0.043614,-0.0909235][-0.995092,-0.0940376,0.0308158][0.428571,0.5,0][-1.43555,-0.117941,0.214554][-0.988341,-0.109625,0.105666][0.571429,0.5,0][-1.43613,0.294559,0.22247][-0.994439,0.0771514,0.0716909][0.571429,0.625,0][-1.43613,0.294559,0.22247][-0.994439,0.0771514,0.0716909][0.571429,0.625,0][-1.59224,0.368886,-0.203841][-0.999416,0.0336288,-0.00614482][0.428571,0.625,0][-1.55919,-0.043614,-0.0909235][-0.995092,-0.0940376,0.0308158][0.428571,0.5,0][-1.43555,-0.117941,0.214554][-0.988341,-0.109625,0.105666][0.571429,0.5,0][-1.51516,-0.0451334,0.680505][-0.918916,0.00109208,-0.394452][0.714286,0.5,0][-1.49215,0.367367,0.567588][-0.91761,-0.0241212,-0.396749][0.714286,0.625,0][-1.49215,0.367367,0.567588][-0.91761,-0.0241212,-0.396749][0.714286,0.625,0][-1.43613,0.294559,0.22247][-0.994439,0.0771514,0.0716909][0.571429,0.625,0][-1.43555,-0.117941,0.214554][-0.988341,-0.109625,0.105666][0.571429,0.5,0][-1.51516,-0.0451334,0.680505][-0.918916,0.00109208,-0.394452][0.714286,0.5,0][-1.7393,-0.0947299,1.01221][-0.99815,0.0496233,-0.0351382][0.857143,0.5,0][-1.71503,0.31777,0.938923][-0.991667,-0.100989,-0.0799828][0.857143,0.625,0][-1.71503,0.31777,0.938923][-0.991667,-0.100989,-0.0799828][0.857143,0.625,0][-1.49215,0.367367,0.567588][-0.91761,-0.0241212,-0.396749][0.714286,0.625,0][-1.51516,-0.0451334,0.680505][-0.918916,0.00109208,-0.394452][0.714286,0.5,0][-1.7393,-0.0947299,1.01221][-0.99815,0.0496233,-0.0351382][0.857143,0.5,0][-1.50761,-0.0256803,1.45193][-2.49981,-0.175617,1.56887][1,0.5,0][-1.53687,0.38682,1.33902][-2.69101,0.0177812,1.26856][1,0.625,0][-1.53687,0.38682,1.33902][-2.69101,0.0177812,1.26856][1,0.625,0][-1.71503,0.31777,0.938923][-0.991667,-0.100989,-0.0799828][0.857143,0.625,0][-1.7393,-0.0947299,1.01221][-0.99815,0.0496233,-0.0351382][0.857143,0.5,0][-1.5227,0.463329,-1.36098][-0.00604995,-0.30198,-2.9339][0,0.625,0][-1.51403,0.361181,-0.981031][-0.978459,-0.0851542,0.188062][0.142857,0.625,0][-1.62044,0.773681,-1.03323][-0.996027,0.0602473,0.0655806][0.142857,0.75,0][-1.62044,0.773681,-1.03323][-0.996027,0.0602473,0.0655806][0.142857,0.75,0][-1.40858,0.875829,-1.33283][0.929807,0.412773,-2.77375][0,0.75,0][-1.5227,0.463329,-1.36098][-0.00604995,-0.30198,-2.9339][0,0.625,0][-1.51403,0.361181,-0.981031][-0.978459,-0.0851542,0.188062][0.142857,0.625,0][-1.37957,0.374038,-0.569401][-0.977401,0.124027,-0.171187][0.285714,0.625,0][-1.29906,0.786538,-0.508459][-0.998324,0.0240114,-0.0526599][0.285714,0.75,0][-1.29906,0.786538,-0.508459][-0.998324,0.0240114,-0.0526599][0.285714,0.75,0][-1.62044,0.773681,-1.03323][-0.996027,0.0602473,0.0655806][0.142857,0.75,0][-1.51403,0.361181,-0.981031][-0.978459,-0.0851542,0.188062][0.142857,0.625,0][-1.37957,0.374038,-0.569401][-0.977401,0.124027,-0.171187][0.285714,0.625,0][-1.59224,0.368886,-0.203841][-0.999416,0.0336288,-0.00614482][0.428571,0.625,0][-1.59518,0.781386,-0.175687][-0.989812,0.128965,-0.0603275][0.428571,0.75,0][-1.59518,0.781386,-0.175687][-0.989812,0.128965,-0.0603275][0.428571,0.75,0][-1.29906,0.786538,-0.508459][-0.998324,0.0240114,-0.0526599][0.285714,0.75,0][-1.37957,0.374038,-0.569401][-0.977401,0.124027,-0.171187][0.285714,0.625,0][-1.59224,0.368886,-0.203841][-0.999416,0.0336288,-0.00614482][0.428571,0.625,0][-1.43613,0.294559,0.22247][-0.994439,0.0771514,0.0716909][0.571429,0.625,0][-1.35659,0.707059,0.255237][-0.997516,0.0654562,0.0260376][0.571429,0.75,0][-1.35659,0.707059,0.255237][-0.997516,0.0654562,0.0260376][0.571429,0.75,0][-1.59518,0.781386,-0.175687][-0.989812,0.128965,-0.0603275][0.428571,0.75,0][-1.59224,0.368886,-0.203841][-0.999416,0.0336288,-0.00614482][0.428571,0.625,0][-1.43613,0.294559,0.22247][-0.994439,0.0771514,0.0716909][0.571429,0.625,0][-1.49215,0.367367,0.567588][-0.91761,-0.0241212,-0.396749][0.714286,0.625,0][-1.46587,0.779867,0.595741][-0.881389,0.0381998,-0.470844][0.714286,0.75,0][-1.46587,0.779867,0.595741][-0.881389,0.0381998,-0.470844][0.714286,0.75,0][-1.35659,0.707059,0.255237][-0.997516,0.0654562,0.0260376][0.571429,0.75,0][-1.43613,0.294559,0.22247][-0.994439,0.0771514,0.0716909][0.571429,0.625,0][-1.49215,0.367367,0.567588][-0.91761,-0.0241212,-0.396749][0.714286,0.625,0][-1.71503,0.31777,0.938923][-0.991667,-0.100989,-0.0799828][0.857143,0.625,0][-1.79082,0.73027,0.883648][-0.985227,0.00367351,-0.171214][0.857143,0.75,0][-1.79082,0.73027,0.883648][-0.985227,0.00367351,-0.171214][0.857143,0.75,0][-1.46587,0.779867,0.595741][-0.881389,0.0381998,-0.470844][0.714286,0.75,0][-1.49215,0.367367,0.567588][-0.91761,-0.0241212,-0.396749][0.714286,0.625,0][-1.71503,0.31777,0.938923][-0.991667,-0.100989,-0.0799828][0.857143,0.625,0][-1.53687,0.38682,1.33902][-2.69101,0.0177812,1.26856][1,0.625,0][-1.60082,0.79932,1.36717][-2.73957,-0.263823,1.16575][1,0.75,0][-1.60082,0.79932,1.36717][-2.73957,-0.263823,1.16575][1,0.75,0][-1.79082,0.73027,0.883648][-0.985227,0.00367351,-0.171214][0.857143,0.75,0][-1.71503,0.31777,0.938923][-0.991667,-0.100989,-0.0799828][0.857143,0.625,0][-1.40858,0.875829,-1.33283][0.929807,0.412773,-2.77375][0,0.75,0][-1.62044,0.773681,-1.03323][-0.996027,0.0602473,0.0655806][0.142857,0.75,0][-1.49356,1.18618,-0.903643][-0.971719,0.229901,0.0539278][0.142857,0.875,0][-1.49356,1.18618,-0.903643][-0.971719,0.229901,0.0539278][0.142857,0.875,0][-1.43769,1.28833,-1.27361][0.473731,-0.223592,-2.85892][0,0.875,0][-1.40858,0.875829,-1.33283][0.929807,0.412773,-2.77375][0,0.75,0][-1.62044,0.773681,-1.03323][-0.996027,0.0602473,0.0655806][0.142857,0.75,0][-1.29906,0.786538,-0.508459][-0.998324,0.0240114,-0.0526599][0.285714,0.75,0][-1.37858,1.19904,-0.537899][-0.998707,0.0475612,-0.0179254][0.285714,0.875,0][-1.37858,1.19904,-0.537899][-0.998707,0.0475612,-0.0179254][0.285714,0.875,0][-1.49356,1.18618,-0.903643][-0.971719,0.229901,0.0539278][0.142857,0.875,0][-1.62044,0.773681,-1.03323][-0.996027,0.0602473,0.0655806][0.142857,0.75,0][-1.29906,0.786538,-0.508459][-0.998324,0.0240114,-0.0526599][0.285714,0.75,0][-1.59518,0.781386,-0.175687][-0.989812,0.128965,-0.0603275][0.428571,0.75,0][-1.52178,1.19389,-0.116472][-0.998772,0.0174811,0.0463647][0.428571,0.875,0][-1.52178,1.19389,-0.116472][-0.998772,0.0174811,0.0463647][0.428571,0.875,0][-1.37858,1.19904,-0.537899][-0.998707,0.0475612,-0.0179254][0.285714,0.875,0][-1.29906,0.786538,-0.508459][-0.998324,0.0240114,-0.0526599][0.285714,0.75,0][-1.59518,0.781386,-0.175687][-0.989812,0.128965,-0.0603275][0.428571,0.75,0][-1.35659,0.707059,0.255237][-0.997516,0.0654562,0.0260376][0.571429,0.75,0][-1.29362,1.11956,0.269942][-0.999921,0.00493307,-0.0115955][0.571429,0.875,0][-1.29362,1.11956,0.269942][-0.999921,0.00493307,-0.0115955][0.571429,0.875,0][-1.52178,1.19389,-0.116472][-0.998772,0.0174811,0.0463647][0.428571,0.875,0][-1.59518,0.781386,-0.175687][-0.989812,0.128965,-0.0603275][0.428571,0.75,0][-1.35659,0.707059,0.255237][-0.997516,0.0654562,0.0260376][0.571429,0.75,0][-1.46587,0.779867,0.595741][-0.881389,0.0381998,-0.470844][0.714286,0.75,0][-1.57859,1.19237,0.654957][-0.884227,-0.0607727,-0.463087][0.714286,0.875,0][-1.57859,1.19237,0.654957][-0.884227,-0.0607727,-0.463087][0.714286,0.875,0][-1.29362,1.11956,0.269942][-0.999921,0.00493307,-0.0115955][0.571429,0.875,0][-1.35659,0.707059,0.255237][-0.997516,0.0654562,0.0260376][0.571429,0.75,0][-1.46587,0.779867,0.595741][-0.881389,0.0381998,-0.470844][0.714286,0.75,0][-1.79082,0.73027,0.883648][-0.985227,0.00367351,-0.171214][0.857143,0.75,0][-1.74817,1.14277,0.980534][-0.986957,0.134384,-0.0886373][0.857143,0.875,0][-1.74817,1.14277,0.980534][-0.986957,0.134384,-0.0886373][0.857143,0.875,0][-1.57859,1.19237,0.654957][-0.884227,-0.0607727,-0.463087][0.714286,0.875,0][-1.46587,0.779867,0.595741][-0.881389,0.0381998,-0.470844][0.714286,0.75,0][-1.79082,0.73027,0.883648][-0.985227,0.00367351,-0.171214][0.857143,0.75,0][-1.60082,0.79932,1.36717][-2.73957,-0.263823,1.16575][1,0.75,0][-1.56835,1.21182,1.42639][-2.73324,0.418046,1.0282][1,0.875,0][-1.56835,1.21182,1.42639][-2.73324,0.418046,1.0282][1,0.875,0][-1.74817,1.14277,0.980534][-0.986957,0.134384,-0.0886373][0.857143,0.875,0][-1.79082,0.73027,0.883648][-0.985227,0.00367351,-0.171214][0.857143,0.75,0][-1.43769,1.28833,-1.27361][0.473731,-0.223592,-2.85892][0,0.875,0][-1.49356,1.18618,-0.903643][-0.971719,0.229901,0.0539278][0.142857,0.875,0][-1.44323,1.59868,-1.04481][0.164754,2.88857,0.302624][0.142857,1,0][-1.44323,1.59868,-1.04481][0.164754,2.88857,0.302624][0.142857,1,0][-1.41467,1.70083,-1.36114][0.314986,0.894494,0.317277][0,1,0][-1.43769,1.28833,-1.27361][0.473731,-0.223592,-2.85892][0,0.875,0][-1.49356,1.18618,-0.903643][-0.971719,0.229901,0.0539278][0.142857,0.875,0][-1.37858,1.19904,-0.537899][-0.998707,0.0475612,-0.0179254][0.285714,0.875,0][-1.23537,1.61154,-0.692617][-0.398113,2.96628,-0.115282][0.285714,1,0][-1.23537,1.61154,-0.692617][-0.398113,2.96628,-0.115282][0.285714,1,0][-1.44323,1.59868,-1.04481][0.164754,2.88857,0.302624][0.142857,1,0][-1.49356,1.18618,-0.903643][-0.971719,0.229901,0.0539278][0.142857,0.875,0][-1.37858,1.19904,-0.537899][-0.998707,0.0475612,-0.0179254][0.285714,0.875,0][-1.52178,1.19389,-0.116472][-0.998772,0.0174811,0.0463647][0.428571,0.875,0][-1.54143,1.60639,-0.204][-0.421004,2.90899,-0.0544358][0.428571,1,0][-1.54143,1.60639,-0.204][-0.421004,2.90899,-0.0544358][0.428571,1,0][-1.23537,1.61154,-0.692617][-0.398113,2.96628,-0.115282][0.285714,1,0][-1.37858,1.19904,-0.537899][-0.998707,0.0475612,-0.0179254][0.285714,0.875,0][-1.52178,1.19389,-0.116472][-0.998772,0.0174811,0.0463647][0.428571,0.875,0][-1.29362,1.11956,0.269942][-0.999921,0.00493307,-0.0115955][0.571429,0.875,0][-1.35149,1.53206,0.140048][-0.635304,2.81644,0.0712694][0.571429,1,0][-1.35149,1.53206,0.140048][-0.635304,2.81644,0.0712694][0.571429,1,0][-1.54143,1.60639,-0.204][-0.421004,2.90899,-0.0544358][0.428571,1,0][-1.52178,1.19389,-0.116472][-0.998772,0.0174811,0.0463647][0.428571,0.875,0][-1.29362,1.11956,0.269942][-0.999921,0.00493307,-0.0115955][0.571429,0.875,0][-1.57859,1.19237,0.654957][-0.884227,-0.0607727,-0.463087][0.714286,0.875,0][-1.56632,1.60487,0.567428][-0.14469,2.85067,0.0556274][0.714286,1,0][-1.56632,1.60487,0.567428][-0.14469,2.85067,0.0556274][0.714286,1,0][-1.35149,1.53206,0.140048][-0.635304,2.81644,0.0712694][0.571429,1,0][-1.29362,1.11956,0.269942][-0.999921,0.00493307,-0.0115955][0.571429,0.875,0][-1.57859,1.19237,0.654957][-0.884227,-0.0607727,-0.463087][0.714286,0.875,0][-1.74817,1.14277,0.980534][-0.986957,0.134384,-0.0886373][0.857143,0.875,0][-1.6972,1.55527,0.914096][0.546907,2.81112,0.269092][0.857143,1,0][-1.6972,1.55527,0.914096][0.546907,2.81112,0.269092][0.857143,1,0][-1.56632,1.60487,0.567428][-0.14469,2.85067,0.0556274][0.714286,1,0][-1.57859,1.19237,0.654957][-0.884227,-0.0607727,-0.463087][0.714286,0.875,0][-1.74817,1.14277,0.980534][-0.986957,0.134384,-0.0886373][0.857143,0.875,0][-1.56835,1.21182,1.42639][-2.73324,0.418046,1.0282][1,0.875,0][-1.41425,1.62432,1.33886][-0.099167,1.84109,-0.61895][1,1,0][-1.41425,1.62432,1.33886][-0.099167,1.84109,-0.61895][1,1,0][-1.6972,1.55527,0.914096][0.546907,2.81112,0.269092][0.857143,1,0][-1.74817,1.14277,0.980534][-0.986957,0.134384,-0.0886373][0.857143,0.875,0][-1.57302,-1.67568,1.37773][0.805443,-1.82295,0.0308321][0,0,0][-0.986825,-1.36465,1.30981][-0.988153,-1.30215,1.34076][0.125,0,0][-1.05675,-1.20218,1.33561][-0.153442,0.0722313,0.985514][0.125,0.125,0][-1.05675,-1.20218,1.33561][-0.153442,0.0722313,0.985514][0.125,0.125,0][-1.4355,-1.26318,1.2354][-2.40005,0.264822,1.53312][0,0.125,0][-1.57302,-1.67568,1.37773][0.805443,-1.82295,0.0308321][0,0,0][-0.986825,-1.36465,1.30981][-0.988153,-1.30215,1.34076][0.125,0,0][-0.815516,-1.75312,1.35091][0.287513,-1.78927,-0.102337][0.25,0,0][-0.677999,-1.34062,1.39076][-0.120357,-0.0217178,0.992493][0.25,0.125,0][-0.677999,-1.34062,1.39076][-0.120357,-0.0217178,0.992493][0.25,0.125,0][-1.05675,-1.20218,1.33561][-0.153442,0.0722313,0.985514][0.125,0.125,0][-0.986825,-1.36465,1.30981][-0.988153,-1.30215,1.34076][0.125,0,0][-0.815516,-1.75312,1.35091][0.287513,-1.78927,-0.102337][0.25,0,0][-0.229325,-1.39006,1.3654][-0.544839,-1.9617,0.671864][0.375,0,0][-0.299249,-1.2276,1.39562][0.163754,-0.010059,0.98645][0.375,0.125,0][-0.299249,-1.2276,1.39562][0.163754,-0.010059,0.98645][0.375,0.125,0][-0.677999,-1.34062,1.39076][-0.120357,-0.0217178,0.992493][0.25,0.125,0][-0.815516,-1.75312,1.35091][0.287513,-1.78927,-0.102337][0.25,0,0][-0.229325,-1.39006,1.3654][-0.544839,-1.9617,0.671864][0.375,0,0][-0.0580164,-1.72968,1.33264][-0.211281,-2.10231,-0.497345][0.5,0,0][0.0795012,-1.31718,1.28681][0.189618,0.0442727,0.980859][0.5,0.125,0][0.0795012,-1.31718,1.28681][0.189618,0.0442727,0.980859][0.5,0.125,0][-0.299249,-1.2276,1.39562][0.163754,-0.010059,0.98645][0.375,0.125,0][-0.229325,-1.39006,1.3654][-0.544839,-1.9617,0.671864][0.375,0,0][-0.0580164,-1.72968,1.33264][-0.211281,-2.10231,-0.497345][0.5,0,0][0.528175,-1.54963,1.33143][-0.831132,-2.3374,0.247897][0.625,0,0][0.458251,-1.38716,1.23543][-0.138048,0.118607,0.983298][0.625,0.125,0][0.458251,-1.38716,1.23543][-0.138048,0.118607,0.983298][0.625,0.125,0][0.0795012,-1.31718,1.28681][0.189618,0.0442727,0.980859][0.5,0.125,0][-0.0580164,-1.72968,1.33264][-0.211281,-2.10231,-0.497345][0.5,0,0][0.528175,-1.54963,1.33143][-0.831132,-2.3374,0.247897][0.625,0,0][0.699484,-1.67292,1.30296][0.385468,-2.23186,-0.539658][0.75,0,0][0.837001,-1.26042,1.34077][-0.189083,-0.100017,0.976854][0.75,0.125,0][0.837001,-1.26042,1.34077][-0.189083,-0.100017,0.976854][0.75,0.125,0][0.458251,-1.38716,1.23543][-0.138048,0.118607,0.983298][0.625,0.125,0][0.528175,-1.54963,1.33143][-0.831132,-2.3374,0.247897][0.625,0,0][0.699484,-1.67292,1.30296][0.385468,-2.23186,-0.539658][0.75,0,0][1.29876,-1.54563,1.38113][-1.04756,-2.23706,-0.290321][0.875,0,0][1.21575,-1.39867,1.34534][-0.110096,-0.123694,0.986194][0.875,0.125,0][1.21575,-1.39867,1.34534][-0.110096,-0.123694,0.986194][0.875,0.125,0][0.837001,-1.26042,1.34077][-0.189083,-0.100017,0.976854][0.75,0.125,0][0.699484,-1.67292,1.30296][0.385468,-2.23186,-0.539658][0.75,0,0][1.29876,-1.54563,1.38113][-1.04756,-2.23706,-0.290321][0.875,0,0][1.45698,-1.69764,1.38444][-0.684889,-0.7093,0.166795][1,0,0][1.5945,-1.28514,1.4481][-0.645857,-0.118618,2.91032][1,0.125,0][1.5945,-1.28514,1.4481][-0.645857,-0.118618,2.91032][1,0.125,0][1.21575,-1.39867,1.34534][-0.110096,-0.123694,0.986194][0.875,0.125,0][1.29876,-1.54563,1.38113][-1.04756,-2.23706,-0.290321][0.875,0,0][-1.4355,-1.26318,1.2354][-2.40005,0.264822,1.53312][0,0.125,0][-1.05675,-1.20218,1.33561][-0.153442,0.0722313,0.985514][0.125,0.125,0][-1.11879,-0.789682,1.26669][-0.0286385,-0.00341075,0.999584][0.125,0.25,0][-1.11879,-0.789682,1.26669][-0.0286385,-0.00341075,0.999584][0.125,0.25,0][-1.49754,-0.85068,1.31854][-2.68187,0.104088,0.616356][0,0.25,0][-1.4355,-1.26318,1.2354][-2.40005,0.264822,1.53312][0,0.125,0][-1.05675,-1.20218,1.33561][-0.153442,0.0722313,0.985514][0.125,0.125,0][-0.677999,-1.34062,1.39076][-0.120357,-0.0217178,0.992493][0.25,0.125,0][-0.740044,-0.92812,1.34393][-0.14328,0.122036,0.982129][0.25,0.25,0][-0.740044,-0.92812,1.34393][-0.14328,0.122036,0.982129][0.25,0.25,0][-1.11879,-0.789682,1.26669][-0.0286385,-0.00341075,0.999584][0.125,0.25,0][-1.05675,-1.20218,1.33561][-0.153442,0.0722313,0.985514][0.125,0.125,0][-0.677999,-1.34062,1.39076][-0.120357,-0.0217178,0.992493][0.25,0.125,0][-0.299249,-1.2276,1.39562][0.163754,-0.010059,0.98645][0.375,0.125,0][-0.361294,-0.815096,1.37784][0.0787384,0.0332376,0.996341][0.375,0.25,0][-0.361294,-0.815096,1.37784][0.0787384,0.0332376,0.996341][0.375,0.25,0][-0.740044,-0.92812,1.34393][-0.14328,0.122036,0.982129][0.25,0.25,0][-0.677999,-1.34062,1.39076][-0.120357,-0.0217178,0.992493][0.25,0.125,0][-0.299249,-1.2276,1.39562][0.163754,-0.010059,0.98645][0.375,0.125,0][0.0795012,-1.31718,1.28681][0.189618,0.0442727,0.980859][0.5,0.125,0][0.0174561,-0.904676,1.24911][0.197853,-0.00358058,0.980225][0.5,0.25,0][0.0174561,-0.904676,1.24911][0.197853,-0.00358058,0.980225][0.5,0.25,0][-0.361294,-0.815096,1.37784][0.0787384,0.0332376,0.996341][0.375,0.25,0][-0.299249,-1.2276,1.39562][0.163754,-0.010059,0.98645][0.375,0.125,0][0.0795012,-1.31718,1.28681][0.189618,0.0442727,0.980859][0.5,0.125,0][0.458251,-1.38716,1.23543][-0.138048,0.118607,0.983298][0.625,0.125,0][0.396206,-0.974659,1.23875][-0.136895,0.0291996,0.990155][0.625,0.25,0][0.396206,-0.974659,1.23875][-0.136895,0.0291996,0.990155][0.625,0.25,0][0.0174561,-0.904676,1.24911][0.197853,-0.00358058,0.980225][0.5,0.25,0][0.0795012,-1.31718,1.28681][0.189618,0.0442727,0.980859][0.5,0.125,0][0.458251,-1.38716,1.23543][-0.138048,0.118607,0.983298][0.625,0.125,0][0.837001,-1.26042,1.34077][-0.189083,-0.100017,0.976854][0.75,0.125,0][0.774956,-0.847921,1.39081][-0.200689,0.0799731,0.976385][0.75,0.25,0][0.774956,-0.847921,1.39081][-0.200689,0.0799731,0.976385][0.75,0.25,0][0.396206,-0.974659,1.23875][-0.136895,0.0291996,0.990155][0.625,0.25,0][0.458251,-1.38716,1.23543][-0.138048,0.118607,0.983298][0.625,0.125,0][0.837001,-1.26042,1.34077][-0.189083,-0.100017,0.976854][0.75,0.125,0][1.21575,-1.39867,1.34534][-0.110096,-0.123694,0.986194][0.875,0.125,0][1.15371,-0.986173,1.52648][-0.13876,0.0763904,0.987375][0.875,0.25,0][1.15371,-0.986173,1.52648][-0.13876,0.0763904,0.987375][0.875,0.25,0][0.774956,-0.847921,1.39081][-0.200689,0.0799731,0.976385][0.75,0.25,0][0.837001,-1.26042,1.34077][-0.189083,-0.100017,0.976854][0.75,0.125,0][1.21575,-1.39867,1.34534][-0.110096,-0.123694,0.986194][0.875,0.125,0][1.5945,-1.28514,1.4481][-0.645857,-0.118618,2.91032][1,0.125,0][1.53246,-0.872637,1.468][0.0907872,-0.214981,2.83895][1,0.25,0][1.53246,-0.872637,1.468][0.0907872,-0.214981,2.83895][1,0.25,0][1.15371,-0.986173,1.52648][-0.13876,0.0763904,0.987375][0.875,0.25,0][1.21575,-1.39867,1.34534][-0.110096,-0.123694,0.986194][0.875,0.125,0][-1.49754,-0.85068,1.31854][-2.68187,0.104088,0.616356][0,0.25,0][-1.11879,-0.789682,1.26669][-0.0286385,-0.00341075,0.999584][0.125,0.25,0][-1.111,-0.377182,1.32307][0.0344364,-0.162307,0.986139][0.125,0.375,0][-1.111,-0.377182,1.32307][0.0344364,-0.162307,0.986139][0.125,0.375,0][-1.48975,-0.43818,1.32346][-2.27615,-0.811934,1.24203][0,0.375,0][-1.49754,-0.85068,1.31854][-2.68187,0.104088,0.616356][0,0.25,0][-1.11879,-0.789682,1.26669][-0.0286385,-0.00341075,0.999584][0.125,0.25,0][-0.740044,-0.92812,1.34393][-0.14328,0.122036,0.982129][0.25,0.25,0][-0.732249,-0.51562,1.2754][-0.0696249,-0.104509,0.992084][0.25,0.375,0][-0.732249,-0.51562,1.2754][-0.0696249,-0.104509,0.992084][0.25,0.375,0][-1.111,-0.377182,1.32307][0.0344364,-0.162307,0.986139][0.125,0.375,0][-1.11879,-0.789682,1.26669][-0.0286385,-0.00341075,0.999584][0.125,0.25,0][-0.740044,-0.92812,1.34393][-0.14328,0.122036,0.982129][0.25,0.25,0][-0.361294,-0.815096,1.37784][0.0787384,0.0332376,0.996341][0.375,0.25,0][-0.353499,-0.402596,1.34932][-0.00619951,-0.0128221,0.999899][0.375,0.375,0][-0.353499,-0.402596,1.34932][-0.00619951,-0.0128221,0.999899][0.375,0.375,0][-0.732249,-0.51562,1.2754][-0.0696249,-0.104509,0.992084][0.25,0.375,0][-0.740044,-0.92812,1.34393][-0.14328,0.122036,0.982129][0.25,0.25,0][-0.361294,-0.815096,1.37784][0.0787384,0.0332376,0.996341][0.375,0.25,0][0.0174561,-0.904676,1.24911][0.197853,-0.00358058,0.980225][0.5,0.25,0][0.0252509,-0.492176,1.32006][0.109702,-0.0877525,0.990083][0.5,0.375,0][0.0252509,-0.492176,1.32006][0.109702,-0.0877525,0.990083][0.5,0.375,0][-0.353499,-0.402596,1.34932][-0.00619951,-0.0128221,0.999899][0.375,0.375,0][-0.361294,-0.815096,1.37784][0.0787384,0.0332376,0.996341][0.375,0.25,0][0.0174561,-0.904676,1.24911][0.197853,-0.00358058,0.980225][0.5,0.25,0][0.396206,-0.974659,1.23875][-0.136895,0.0291996,0.990155][0.625,0.25,0][0.404001,-0.562159,1.24023][0.00260184,-0.124859,0.992171][0.625,0.375,0][0.404001,-0.562159,1.24023][0.00260184,-0.124859,0.992171][0.625,0.375,0][0.0252509,-0.492176,1.32006][0.109702,-0.0877525,0.990083][0.5,0.375,0][0.0174561,-0.904676,1.24911][0.197853,-0.00358058,0.980225][0.5,0.25,0][0.396206,-0.974659,1.23875][-0.136895,0.0291996,0.990155][0.625,0.25,0][0.774956,-0.847921,1.39081][-0.200689,0.0799731,0.976385][0.75,0.25,0][0.782751,-0.435421,1.33774][-0.00257965,0.0481453,0.998837][0.75,0.375,0][0.782751,-0.435421,1.33774][-0.00257965,0.0481453,0.998837][0.75,0.375,0][0.404001,-0.562159,1.24023][0.00260184,-0.124859,0.992171][0.625,0.375,0][0.396206,-0.974659,1.23875][-0.136895,0.0291996,0.990155][0.625,0.25,0][0.774956,-0.847921,1.39081][-0.200689,0.0799731,0.976385][0.75,0.25,0][1.15371,-0.986173,1.52648][-0.13876,0.0763904,0.987375][0.875,0.25,0][1.1615,-0.573673,1.22724][-0.100913,0.239007,0.96576][0.875,0.375,0][1.1615,-0.573673,1.22724][-0.100913,0.239007,0.96576][0.875,0.375,0][0.782751,-0.435421,1.33774][-0.00257965,0.0481453,0.998837][0.75,0.375,0][0.774956,-0.847921,1.39081][-0.200689,0.0799731,0.976385][0.75,0.25,0][1.15371,-0.986173,1.52648][-0.13876,0.0763904,0.987375][0.875,0.25,0][1.53246,-0.872637,1.468][0.0907872,-0.214981,2.83895][1,0.25,0][1.54025,-0.460137,1.37137][-0.726162,0.827731,2.62082][1,0.375,0][1.54025,-0.460137,1.37137][-0.726162,0.827731,2.62082][1,0.375,0][1.1615,-0.573673,1.22724][-0.100913,0.239007,0.96576][0.875,0.375,0][1.15371,-0.986173,1.52648][-0.13876,0.0763904,0.987375][0.875,0.25,0][-1.48975,-0.43818,1.32346][-2.27615,-0.811934,1.24203][0,0.375,0][-1.111,-0.377182,1.32307][0.0344364,-0.162307,0.986139][0.125,0.375,0][-1.12886,0.035318,1.4039][0.0115011,-0.102557,0.994661][0.125,0.5,0][-1.12886,0.035318,1.4039][0.0115011,-0.102557,0.994661][0.125,0.5,0][-1.50761,-0.0256803,1.45193][-2.49981,-0.175617,1.56887][0,0.5,0][-1.48975,-0.43818,1.32346][-2.27615,-0.811934,1.24203][0,0.375,0][-1.111,-0.377182,1.32307][0.0344364,-0.162307,0.986139][0.125,0.375,0][-0.732249,-0.51562,1.2754][-0.0696249,-0.104509,0.992084][0.25,0.375,0][-0.750115,-0.10312,1.40397][0.0388718,-0.0805486,0.995992][0.25,0.5,0][-0.750115,-0.10312,1.40397][0.0388718,-0.0805486,0.995992][0.25,0.5,0][-1.12886,0.035318,1.4039][0.0115011,-0.102557,0.994661][0.125,0.5,0][-1.111,-0.377182,1.32307][0.0344364,-0.162307,0.986139][0.125,0.375,0][-0.732249,-0.51562,1.2754][-0.0696249,-0.104509,0.992084][0.25,0.375,0][-0.353499,-0.402596,1.34932][-0.00619951,-0.0128221,0.999899][0.375,0.375,0][-0.371365,0.00990355,1.43584][0.0383026,0.0543748,0.997786][0.375,0.5,0][-0.371365,0.00990355,1.43584][0.0383026,0.0543748,0.997786][0.375,0.5,0][-0.750115,-0.10312,1.40397][0.0388718,-0.0805486,0.995992][0.25,0.5,0][-0.732249,-0.51562,1.2754][-0.0696249,-0.104509,0.992084][0.25,0.375,0][-0.353499,-0.402596,1.34932][-0.00619951,-0.0128221,0.999899][0.375,0.375,0][0.0252509,-0.492176,1.32006][0.109702,-0.0877525,0.990083][0.5,0.375,0][0.00738543,-0.0796764,1.31331][0.0272874,-0.0129743,0.999543][0.5,0.5,0][0.00738543,-0.0796764,1.31331][0.0272874,-0.0129743,0.999543][0.5,0.5,0][-0.371365,0.00990355,1.43584][0.0383026,0.0543748,0.997786][0.375,0.5,0][-0.353499,-0.402596,1.34932][-0.00619951,-0.0128221,0.999899][0.375,0.375,0][0.0252509,-0.492176,1.32006][0.109702,-0.0877525,0.990083][0.5,0.375,0][0.404001,-0.562159,1.24023][0.00260184,-0.124859,0.992171][0.625,0.375,0][0.386135,-0.149659,1.36365][0.0497371,-0.0959006,0.994148][0.625,0.5,0][0.386135,-0.149659,1.36365][0.0497371,-0.0959006,0.994148][0.625,0.5,0][0.00738543,-0.0796764,1.31331][0.0272874,-0.0129743,0.999543][0.5,0.5,0][0.0252509,-0.492176,1.32006][0.109702,-0.0877525,0.990083][0.5,0.375,0][0.404001,-0.562159,1.24023][0.00260184,-0.124859,0.992171][0.625,0.375,0][0.782751,-0.435421,1.33774][-0.00257965,0.0481453,0.998837][0.75,0.375,0][0.764885,-0.0229207,1.33471][0.11615,-0.0316733,0.992727][0.75,0.5,0][0.764885,-0.0229207,1.33471][0.11615,-0.0316733,0.992727][0.75,0.5,0][0.386135,-0.149659,1.36365][0.0497371,-0.0959006,0.994148][0.625,0.5,0][0.404001,-0.562159,1.24023][0.00260184,-0.124859,0.992171][0.625,0.375,0][0.782751,-0.435421,1.33774][-0.00257965,0.0481453,0.998837][0.75,0.375,0][1.1615,-0.573673,1.22724][-0.100913,0.239007,0.96576][0.875,0.375,0][1.14364,-0.161173,1.22467][0.00278715,-0.0473233,0.998876][0.875,0.5,0][1.14364,-0.161173,1.22467][0.00278715,-0.0473233,0.998876][0.875,0.5,0][0.764885,-0.0229207,1.33471][0.11615,-0.0316733,0.992727][0.75,0.5,0][0.782751,-0.435421,1.33774][-0.00257965,0.0481453,0.998837][0.75,0.375,0][1.1615,-0.573673,1.22724][-0.100913,0.239007,0.96576][0.875,0.375,0][1.54025,-0.460137,1.37137][-0.726162,0.827731,2.62082][1,0.375,0][1.52239,-0.0476369,1.33387][-0.879748,-0.0889276,2.8478][1,0.5,0][1.52239,-0.0476369,1.33387][-0.879748,-0.0889276,2.8478][1,0.5,0][1.14364,-0.161173,1.22467][0.00278715,-0.0473233,0.998876][0.875,0.5,0][1.1615,-0.573673,1.22724][-0.100913,0.239007,0.96576][0.875,0.375,0][-1.50761,-0.0256803,1.45193][-2.49981,-0.175617,1.56887][0,0.5,0][-1.12886,0.035318,1.4039][0.0115011,-0.102557,0.994661][0.125,0.5,0][-1.15812,0.447818,1.373][-0.00597526,-0.0212092,0.999757][0.125,0.625,0][-1.15812,0.447818,1.373][-0.00597526,-0.0212092,0.999757][0.125,0.625,0][-1.53687,0.38682,1.33902][-2.69101,0.0177812,1.26856][0,0.625,0][-1.50761,-0.0256803,1.45193][-2.49981,-0.175617,1.56887][0,0.5,0][-1.12886,0.035318,1.4039][0.0115011,-0.102557,0.994661][0.125,0.5,0][-0.750115,-0.10312,1.40397][0.0388718,-0.0805486,0.995992][0.25,0.5,0][-0.779375,0.30938,1.43614][0.145188,0.0212422,0.989176][0.25,0.625,0][-0.779375,0.30938,1.43614][0.145188,0.0212422,0.989176][0.25,0.625,0][-1.15812,0.447818,1.373][-0.00597526,-0.0212092,0.999757][0.125,0.625,0][-1.12886,0.035318,1.4039][0.0115011,-0.102557,0.994661][0.125,0.5,0][-0.750115,-0.10312,1.40397][0.0388718,-0.0805486,0.995992][0.25,0.5,0][-0.371365,0.00990355,1.43584][0.0383026,0.0543748,0.997786][0.375,0.5,0][-0.400625,0.422404,1.21771][0.089293,0.0658675,0.993825][0.375,0.625,0][-0.400625,0.422404,1.21771][0.089293,0.0658675,0.993825][0.375,0.625,0][-0.779375,0.30938,1.43614][0.145188,0.0212422,0.989176][0.25,0.625,0][-0.750115,-0.10312,1.40397][0.0388718,-0.0805486,0.995992][0.25,0.5,0][-0.371365,0.00990355,1.43584][0.0383026,0.0543748,0.997786][0.375,0.5,0][0.00738543,-0.0796764,1.31331][0.0272874,-0.0129743,0.999543][0.5,0.5,0][-0.0218746,0.332824,1.28547][-0.0674867,0.08012,0.994498][0.5,0.625,0][-0.0218746,0.332824,1.28547][-0.0674867,0.08012,0.994498][0.5,0.625,0][-0.400625,0.422404,1.21771][0.089293,0.0658675,0.993825][0.375,0.625,0][-0.371365,0.00990355,1.43584][0.0383026,0.0543748,0.997786][0.375,0.5,0][0.00738543,-0.0796764,1.31331][0.0272874,-0.0129743,0.999543][0.5,0.5,0][0.386135,-0.149659,1.36365][0.0497371,-0.0959006,0.994148][0.625,0.5,0][0.356875,0.262841,1.38204][-0.0395781,0.0471109,0.998105][0.625,0.625,0][0.356875,0.262841,1.38204][-0.0395781,0.0471109,0.998105][0.625,0.625,0][-0.0218746,0.332824,1.28547][-0.0674867,0.08012,0.994498][0.5,0.625,0][0.00738543,-0.0796764,1.31331][0.0272874,-0.0129743,0.999543][0.5,0.5,0][0.386135,-0.149659,1.36365][0.0497371,-0.0959006,0.994148][0.625,0.5,0][0.764885,-0.0229207,1.33471][0.11615,-0.0316733,0.992727][0.75,0.5,0][0.735625,0.389579,1.31047][0.0901468,-0.00367852,0.995922][0.75,0.625,0][0.735625,0.389579,1.31047][0.0901468,-0.00367852,0.995922][0.75,0.625,0][0.356875,0.262841,1.38204][-0.0395781,0.0471109,0.998105][0.625,0.625,0][0.386135,-0.149659,1.36365][0.0497371,-0.0959006,0.994148][0.625,0.5,0][0.764885,-0.0229207,1.33471][0.11615,-0.0316733,0.992727][0.75,0.5,0][1.14364,-0.161173,1.22467][0.00278715,-0.0473233,0.998876][0.875,0.5,0][1.11438,0.251327,1.25701][0.0248763,-0.0182731,0.999524][0.875,0.625,0][1.11438,0.251327,1.25701][0.0248763,-0.0182731,0.999524][0.875,0.625,0][0.735625,0.389579,1.31047][0.0901468,-0.00367852,0.995922][0.75,0.625,0][0.764885,-0.0229207,1.33471][0.11615,-0.0316733,0.992727][0.75,0.5,0][1.14364,-0.161173,1.22467][0.00278715,-0.0473233,0.998876][0.875,0.5,0][1.52239,-0.0476369,1.33387][-0.879748,-0.0889276,2.8478][1,0.5,0][1.49313,0.364863,1.39163][-0.939147,0.063705,2.76998][1,0.625,0][1.49313,0.364863,1.39163][-0.939147,0.063705,2.76998][1,0.625,0][1.11438,0.251327,1.25701][0.0248763,-0.0182731,0.999524][0.875,0.625,0][1.14364,-0.161173,1.22467][0.00278715,-0.0473233,0.998876][0.875,0.5,0][-1.53687,0.38682,1.33902][-2.69101,0.0177812,1.26856][0,0.625,0][-1.15812,0.447818,1.373][-0.00597526,-0.0212092,0.999757][0.125,0.625,0][-1.22207,0.860318,1.52725][-0.0180609,-0.103232,0.994493][0.125,0.75,0][-1.22207,0.860318,1.52725][-0.0180609,-0.103232,0.994493][0.125,0.75,0][-1.60082,0.79932,1.36717][-2.73957,-0.263823,1.16575][0,0.75,0][-1.53687,0.38682,1.33902][-2.69101,0.0177812,1.26856][0,0.625,0][-1.15812,0.447818,1.373][-0.00597526,-0.0212092,0.999757][0.125,0.625,0][-0.779375,0.30938,1.43614][0.145188,0.0212422,0.989176][0.25,0.625,0][-0.843316,0.721879,1.37272][0.166997,-0.0667249,0.983697][0.25,0.75,0][-0.843316,0.721879,1.37272][0.166997,-0.0667249,0.983697][0.25,0.75,0][-1.22207,0.860318,1.52725][-0.0180609,-0.103232,0.994493][0.125,0.75,0][-1.15812,0.447818,1.373][-0.00597526,-0.0212092,0.999757][0.125,0.625,0][-0.779375,0.30938,1.43614][0.145188,0.0212422,0.989176][0.25,0.625,0][-0.400625,0.422404,1.21771][0.089293,0.0658675,0.993825][0.375,0.625,0][-0.464566,0.834904,1.32085][0.159041,-0.0303506,0.986805][0.375,0.75,0][-0.464566,0.834904,1.32085][0.159041,-0.0303506,0.986805][0.375,0.75,0][-0.843316,0.721879,1.37272][0.166997,-0.0667249,0.983697][0.25,0.75,0][-0.779375,0.30938,1.43614][0.145188,0.0212422,0.989176][0.25,0.625,0][-0.400625,0.422404,1.21771][0.089293,0.0658675,0.993825][0.375,0.625,0][-0.0218746,0.332824,1.28547][-0.0674867,0.08012,0.994498][0.5,0.625,0][-0.0858162,0.745324,1.33072][-0.0573512,-0.0137481,0.998259][0.5,0.75,0][-0.0858162,0.745324,1.33072][-0.0573512,-0.0137481,0.998259][0.5,0.75,0][-0.464566,0.834904,1.32085][0.159041,-0.0303506,0.986805][0.375,0.75,0][-0.400625,0.422404,1.21771][0.089293,0.0658675,0.993825][0.375,0.625,0][-0.0218746,0.332824,1.28547][-0.0674867,0.08012,0.994498][0.5,0.625,0][0.356875,0.262841,1.38204][-0.0395781,0.0471109,0.998105][0.625,0.625,0][0.292934,0.675341,1.3209][-0.0266968,0.0256906,0.999313][0.625,0.75,0][0.292934,0.675341,1.3209][-0.0266968,0.0256906,0.999313][0.625,0.75,0][-0.0858162,0.745324,1.33072][-0.0573512,-0.0137481,0.998259][0.5,0.75,0][-0.0218746,0.332824,1.28547][-0.0674867,0.08012,0.994498][0.5,0.625,0][0.356875,0.262841,1.38204][-0.0395781,0.0471109,0.998105][0.625,0.625,0][0.735625,0.389579,1.31047][0.0901468,-0.00367852,0.995922][0.75,0.625,0][0.671684,0.802079,1.29771][0.0443975,0.0467644,0.997919][0.75,0.75,0][0.671684,0.802079,1.29771][0.0443975,0.0467644,0.997919][0.75,0.75,0][0.292934,0.675341,1.3209][-0.0266968,0.0256906,0.999313][0.625,0.75,0][0.356875,0.262841,1.38204][-0.0395781,0.0471109,0.998105][0.625,0.625,0][0.735625,0.389579,1.31047][0.0901468,-0.00367852,0.995922][0.75,0.625,0][1.11438,0.251327,1.25701][0.0248763,-0.0182731,0.999524][0.875,0.625,0][1.05043,0.663827,1.34292][0.0651166,-0.0345775,0.997278][0.875,0.75,0][1.05043,0.663827,1.34292][0.0651166,-0.0345775,0.997278][0.875,0.75,0][0.671684,0.802079,1.29771][0.0443975,0.0467644,0.997919][0.75,0.75,0][0.735625,0.389579,1.31047][0.0901468,-0.00367852,0.995922][0.75,0.625,0][1.11438,0.251327,1.25701][0.0248763,-0.0182731,0.999524][0.875,0.625,0][1.49313,0.364863,1.39163][-0.939147,0.063705,2.76998][1,0.625,0][1.42918,0.777363,1.21335][0.347199,-0.137013,2.65325][1,0.75,0][1.42918,0.777363,1.21335][0.347199,-0.137013,2.65325][1,0.75,0][1.05043,0.663827,1.34292][0.0651166,-0.0345775,0.997278][0.875,0.75,0][1.11438,0.251327,1.25701][0.0248763,-0.0182731,0.999524][0.875,0.625,0][-1.60082,0.79932,1.36717][-2.73957,-0.263823,1.16575][0,0.75,0][-1.22207,0.860318,1.52725][-0.0180609,-0.103232,0.994493][0.125,0.75,0][-1.1896,1.27282,1.45391][-0.129671,0.237037,0.962808][0.125,0.875,0][-1.1896,1.27282,1.45391][-0.129671,0.237037,0.962808][0.125,0.875,0][-1.56835,1.21182,1.42639][-2.73324,0.418046,1.0282][0,0.875,0][-1.60082,0.79932,1.36717][-2.73957,-0.263823,1.16575][0,0.75,0][-1.22207,0.860318,1.52725][-0.0180609,-0.103232,0.994493][0.125,0.75,0][-0.843316,0.721879,1.37272][0.166997,-0.0667249,0.983697][0.25,0.75,0][-0.810853,1.13438,1.43175][0.235405,-0.0474633,0.970738][0.25,0.875,0][-0.810853,1.13438,1.43175][0.235405,-0.0474633,0.970738][0.25,0.875,0][-1.1896,1.27282,1.45391][-0.129671,0.237037,0.962808][0.125,0.875,0][-1.22207,0.860318,1.52725][-0.0180609,-0.103232,0.994493][0.125,0.75,0][-0.843316,0.721879,1.37272][0.166997,-0.0667249,0.983697][0.25,0.75,0][-0.464566,0.834904,1.32085][0.159041,-0.0303506,0.986805][0.375,0.75,0][-0.432103,1.2474,1.34517][0.156719,-0.0422262,0.98674][0.375,0.875,0][-0.432103,1.2474,1.34517][0.156719,-0.0422262,0.98674][0.375,0.875,0][-0.810853,1.13438,1.43175][0.235405,-0.0474633,0.970738][0.25,0.875,0][-0.843316,0.721879,1.37272][0.166997,-0.0667249,0.983697][0.25,0.75,0][-0.464566,0.834904,1.32085][0.159041,-0.0303506,0.986805][0.375,0.75,0][-0.0858162,0.745324,1.33072][-0.0573512,-0.0137481,0.998259][0.5,0.75,0][-0.0533531,1.15782,1.25106][0.0335052,-0.0149946,0.999326][0.5,0.875,0][-0.0533531,1.15782,1.25106][0.0335052,-0.0149946,0.999326][0.5,0.875,0][-0.432103,1.2474,1.34517][0.156719,-0.0422262,0.98674][0.375,0.875,0][-0.464566,0.834904,1.32085][0.159041,-0.0303506,0.986805][0.375,0.75,0][-0.0858162,0.745324,1.33072][-0.0573512,-0.0137481,0.998259][0.5,0.75,0][0.292934,0.675341,1.3209][-0.0266968,0.0256906,0.999313][0.625,0.75,0][0.325397,1.08784,1.30547][-0.0320765,0.0806454,0.996227][0.625,0.875,0][0.325397,1.08784,1.30547][-0.0320765,0.0806454,0.996227][0.625,0.875,0][-0.0533531,1.15782,1.25106][0.0335052,-0.0149946,0.999326][0.5,0.875,0][-0.0858162,0.745324,1.33072][-0.0573512,-0.0137481,0.998259][0.5,0.75,0][0.292934,0.675341,1.3209][-0.0266968,0.0256906,0.999313][0.625,0.75,0][0.671684,0.802079,1.29771][0.0443975,0.0467644,0.997919][0.75,0.75,0][0.704147,1.21458,1.32525][0.0556664,0.0561451,0.99687][0.75,0.875,0][0.704147,1.21458,1.32525][0.0556664,0.0561451,0.99687][0.75,0.875,0][0.325397,1.08784,1.30547][-0.0320765,0.0806454,0.996227][0.625,0.875,0][0.292934,0.675341,1.3209][-0.0266968,0.0256906,0.999313][0.625,0.75,0][0.671684,0.802079,1.29771][0.0443975,0.0467644,0.997919][0.75,0.75,0][1.05043,0.663827,1.34292][0.0651166,-0.0345775,0.997278][0.875,0.75,0][1.0829,1.07633,1.25526][-0.0376057,0.152982,0.987513][0.875,0.875,0][1.0829,1.07633,1.25526][-0.0376057,0.152982,0.987513][0.875,0.875,0][0.704147,1.21458,1.32525][0.0556664,0.0561451,0.99687][0.75,0.875,0][0.671684,0.802079,1.29771][0.0443975,0.0467644,0.997919][0.75,0.75,0][1.05043,0.663827,1.34292][0.0651166,-0.0345775,0.997278][0.875,0.75,0][1.42918,0.777363,1.21335][0.347199,-0.137013,2.65325][1,0.75,0][1.46165,1.18986,1.3466][-0.238528,0.379894,2.6136][1,0.875,0][1.46165,1.18986,1.3466][-0.238528,0.379894,2.6136][1,0.875,0][1.0829,1.07633,1.25526][-0.0376057,0.152982,0.987513][0.875,0.875,0][1.05043,0.663827,1.34292][0.0651166,-0.0345775,0.997278][0.875,0.75,0][-1.56835,1.21182,1.42639][-2.73324,0.418046,1.0282][0,0.875,0][-1.1896,1.27282,1.45391][-0.129671,0.237037,0.962808][0.125,0.875,0][-1.0355,1.68532,1.19179][0.386144,2.4344,-1.33826][0.125,1,0][-1.0355,1.68532,1.19179][0.386144,2.4344,-1.33826][0.125,1,0][-1.41425,1.62432,1.33886][-0.099167,1.84109,-0.61895][0,1,0][-1.56835,1.21182,1.42639][-2.73324,0.418046,1.0282][0,0.875,0][-1.1896,1.27282,1.45391][-0.129671,0.237037,0.962808][0.125,0.875,0][-0.810853,1.13438,1.43175][0.235405,-0.0474633,0.970738][0.25,0.875,0][-0.656745,1.54688,1.44116][0.127968,2.70632,-0.388807][0.25,1,0][-0.656745,1.54688,1.44116][0.127968,2.70632,-0.388807][0.25,1,0][-1.0355,1.68532,1.19179][0.386144,2.4344,-1.33826][0.125,1,0][-1.1896,1.27282,1.45391][-0.129671,0.237037,0.962808][0.125,0.875,0][-0.810853,1.13438,1.43175][0.235405,-0.0474633,0.970738][0.25,0.875,0][-0.432103,1.2474,1.34517][0.156719,-0.0422262,0.98674][0.375,0.875,0][-0.277995,1.6599,1.27377][-0.322283,2.89315,-0.0681588][0.375,1,0][-0.277995,1.6599,1.27377][-0.322283,2.89315,-0.0681588][0.375,1,0][-0.656745,1.54688,1.44116][0.127968,2.70632,-0.388807][0.25,1,0][-0.810853,1.13438,1.43175][0.235405,-0.0474633,0.970738][0.25,0.875,0][-0.432103,1.2474,1.34517][0.156719,-0.0422262,0.98674][0.375,0.875,0][-0.0533531,1.15782,1.25106][0.0335052,-0.0149946,0.999326][0.5,0.875,0][0.100755,1.57032,1.32894][0.506043,2.93301,0.307101][0.5,1,0][0.100755,1.57032,1.32894][0.506043,2.93301,0.307101][0.5,1,0][-0.277995,1.6599,1.27377][-0.322283,2.89315,-0.0681588][0.375,1,0][-0.432103,1.2474,1.34517][0.156719,-0.0422262,0.98674][0.375,0.875,0][-0.0533531,1.15782,1.25106][0.0335052,-0.0149946,0.999326][0.5,0.875,0][0.325397,1.08784,1.30547][-0.0320765,0.0806454,0.996227][0.625,0.875,0][0.479505,1.50034,1.31001][0.0162523,2.89325,0.446263][0.625,1,0][0.479505,1.50034,1.31001][0.0162523,2.89325,0.446263][0.625,1,0][0.100755,1.57032,1.32894][0.506043,2.93301,0.307101][0.5,1,0][-0.0533531,1.15782,1.25106][0.0335052,-0.0149946,0.999326][0.5,0.875,0][0.325397,1.08784,1.30547][-0.0320765,0.0806454,0.996227][0.625,0.875,0][0.704147,1.21458,1.32525][0.0556664,0.0561451,0.99687][0.75,0.875,0][0.858255,1.62708,1.23683][-0.230414,2.81908,0.416403][0.75,1,0][0.858255,1.62708,1.23683][-0.230414,2.81908,0.416403][0.75,1,0][0.479505,1.50034,1.31001][0.0162523,2.89325,0.446263][0.625,1,0][0.325397,1.08784,1.30547][-0.0320765,0.0806454,0.996227][0.625,0.875,0][0.704147,1.21458,1.32525][0.0556664,0.0561451,0.99687][0.75,0.875,0][1.0829,1.07633,1.25526][-0.0376057,0.152982,0.987513][0.875,0.875,0][1.237,1.48883,1.2201][0.0552885,2.65564,1.14941][0.875,1,0][1.237,1.48883,1.2201][0.0552885,2.65564,1.14941][0.875,1,0][0.858255,1.62708,1.23683][-0.230414,2.81908,0.416403][0.75,1,0][0.704147,1.21458,1.32525][0.0556664,0.0561451,0.99687][0.75,0.875,0][1.0829,1.07633,1.25526][-0.0376057,0.152982,0.987513][0.875,0.875,0][1.46165,1.18986,1.3466][-0.238528,0.379894,2.6136][1,0.875,0][1.61575,1.60236,1.17275][-0.204605,0.869812,0.448959][1,1,0][1.61575,1.60236,1.17275][-0.204605,0.869812,0.448959][1,1,0][1.237,1.48883,1.2201][0.0552885,2.65564,1.14941][0.875,1,0][1.0829,1.07633,1.25526][-0.0376057,0.152982,0.987513][0.875,0.875,0][1.45698,-1.69764,1.38444][-0.684889,-0.7093,0.166795][0,0,0][1.23661,-1.59718,0.906729][-1.83672,-1.94816,-0.368415][0.142857,0,0][1.37893,-1.18468,1.03988][0.919725,-0.265173,-0.289463][0.142857,0.125,0][1.37893,-1.18468,1.03988][0.919725,-0.265173,-0.289463][0.142857,0.125,0][1.5945,-1.28514,1.4481][-0.645857,-0.118618,2.91032][0,0.125,0][1.45698,-1.69764,1.38444][-0.684889,-0.7093,0.166795][0,0,0][1.23661,-1.59718,0.906729][-1.83672,-1.94816,-0.368415][0.142857,0,0][1.51488,-1.48273,0.613009][-0.806205,-2.42499,-0.515454][0.285714,0,0][1.38149,-1.07023,0.676669][0.931311,-0.0804139,0.355238][0.285714,0.125,0][1.38149,-1.07023,0.676669][0.931311,-0.0804139,0.355238][0.285714,0.125,0][1.37893,-1.18468,1.03988][0.919725,-0.265173,-0.289463][0.142857,0.125,0][1.23661,-1.59718,0.906729][-1.83672,-1.94816,-0.368415][0.142857,0,0][1.51488,-1.48273,0.613009][-0.806205,-2.42499,-0.515454][0.285714,0,0][1.56947,-1.49246,0.201533][-0.232078,-2.79896,0.697531][0.428571,0,0][1.65398,-1.07996,0.394569][0.97111,0.0558665,0.232][0.428571,0.125,0][1.65398,-1.07996,0.394569][0.97111,0.0558665,0.232][0.428571,0.125,0][1.38149,-1.07023,0.676669][0.931311,-0.0804139,0.355238][0.285714,0.125,0][1.51488,-1.48273,0.613009][-0.806205,-2.42499,-0.515454][0.285714,0,0][1.56947,-1.49246,0.201533][-0.232078,-2.79896,0.697531][0.428571,0,0][1.61851,-1.7501,-0.158419][-0.915007,-2.52099,0.517523][0.571429,0,0][1.60093,-1.3376,-0.0947594][0.986157,-0.00885891,0.165576][0.571429,0.125,0][1.60093,-1.3376,-0.0947594][0.986157,-0.00885891,0.165576][0.571429,0.125,0][1.65398,-1.07996,0.394569][0.97111,0.0558665,0.232][0.428571,0.125,0][1.56947,-1.49246,0.201533][-0.232078,-2.79896,0.697531][0.428571,0,0][1.61851,-1.7501,-0.158419][-0.915007,-2.52099,0.517523][0.571429,0,0][1.70952,-1.64483,-0.558129][-1.51847,-2.29029,-0.519997][0.714286,0,0][1.69707,-1.23233,-0.375239][0.994232,0.0610389,-0.0881875][0.714286,0.125,0][1.69707,-1.23233,-0.375239][0.994232,0.0610389,-0.0881875][0.714286,0.125,0][1.60093,-1.3376,-0.0947594][0.986157,-0.00885891,0.165576][0.571429,0.125,0][1.61851,-1.7501,-0.158419][-0.915007,-2.52099,0.517523][0.571429,0,0][1.70952,-1.64483,-0.558129][-1.51847,-2.29029,-0.519997][0.714286,0,0][1.4489,-1.63021,-1.0088][-1.57996,-2.39871,0.733937][0.857143,0,0][1.47682,-1.21771,-0.914922][0.949282,0.139985,-0.281546][0.857143,0.125,0][1.47682,-1.21771,-0.914922][0.949282,0.139985,-0.281546][0.857143,0.125,0][1.69707,-1.23233,-0.375239][0.994232,0.0610389,-0.0881875][0.714286,0.125,0][1.70952,-1.64483,-0.558129][-1.51847,-2.29029,-0.519997][0.714286,0,0][1.4489,-1.63021,-1.0088][-1.57996,-2.39871,0.733937][0.857143,0,0][1.55725,-1.71948,-1.31556][-1.05464,-1.68926,0.167229][1,0,0][1.42451,-1.30698,-1.2519][0.372874,0.67451,-2.79596][1,0.125,0][1.42451,-1.30698,-1.2519][0.372874,0.67451,-2.79596][1,0.125,0][1.47682,-1.21771,-0.914922][0.949282,0.139985,-0.281546][0.857143,0.125,0][1.4489,-1.63021,-1.0088][-1.57996,-2.39871,0.733937][0.857143,0,0][1.5945,-1.28514,1.4481][-0.645857,-0.118618,2.91032][0,0.125,0][1.37893,-1.18468,1.03988][0.919725,-0.265173,-0.289463][0.142857,0.125,0][1.52463,-0.772179,1.09578][0.986241,0.157763,0.0493939][0.142857,0.25,0][1.52463,-0.772179,1.09578][0.986241,0.157763,0.0493939][0.142857,0.25,0][1.53246,-0.872637,1.468][0.0907872,-0.214981,2.83895][0,0.25,0][1.5945,-1.28514,1.4481][-0.645857,-0.118618,2.91032][0,0.125,0][1.37893,-1.18468,1.03988][0.919725,-0.265173,-0.289463][0.142857,0.125,0][1.38149,-1.07023,0.676669][0.931311,-0.0804139,0.355238][0.285714,0.125,0][1.53224,-0.657728,0.696571][0.979744,-0.192528,0.0550807][0.285714,0.25,0][1.53224,-0.657728,0.696571][0.979744,-0.192528,0.0550807][0.285714,0.25,0][1.52463,-0.772179,1.09578][0.986241,0.157763,0.0493939][0.142857,0.25,0][1.37893,-1.18468,1.03988][0.919725,-0.265173,-0.289463][0.142857,0.125,0][1.38149,-1.07023,0.676669][0.931311,-0.0804139,0.355238][0.285714,0.125,0][1.65398,-1.07996,0.394569][0.97111,0.0558665,0.232][0.428571,0.125,0][1.53624,-0.667458,0.320885][0.994968,-0.0519993,0.0856457][0.428571,0.25,0][1.53624,-0.667458,0.320885][0.994968,-0.0519993,0.0856457][0.428571,0.25,0][1.53224,-0.657728,0.696571][0.979744,-0.192528,0.0550807][0.285714,0.25,0][1.38149,-1.07023,0.676669][0.931311,-0.0804139,0.355238][0.285714,0.125,0][1.65398,-1.07996,0.394569][0.97111,0.0558665,0.232][0.428571,0.125,0][1.60093,-1.3376,-0.0947594][0.986157,-0.00885891,0.165576][0.571429,0.125,0][1.57784,-0.925101,-0.0748576][0.973503,0.141701,0.179478][0.571429,0.25,0][1.57784,-0.925101,-0.0748576][0.973503,0.141701,0.179478][0.571429,0.25,0][1.53624,-0.667458,0.320885][0.994968,-0.0519993,0.0856457][0.428571,0.25,0][1.65398,-1.07996,0.394569][0.97111,0.0558665,0.232][0.428571,0.125,0][1.60093,-1.3376,-0.0947594][0.986157,-0.00885891,0.165576][0.571429,0.125,0][1.69707,-1.23233,-0.375239][0.994232,0.0610389,-0.0881875][0.714286,0.125,0][1.70021,-0.819828,-0.427138][0.989556,-0.0725044,-0.124591][0.714286,0.25,0][1.70021,-0.819828,-0.427138][0.989556,-0.0725044,-0.124591][0.714286,0.25,0][1.57784,-0.925101,-0.0748576][0.973503,0.141701,0.179478][0.571429,0.25,0][1.60093,-1.3376,-0.0947594][0.986157,-0.00885891,0.165576][0.571429,0.125,0][1.69707,-1.23233,-0.375239][0.994232,0.0610389,-0.0881875][0.714286,0.125,0][1.47682,-1.21771,-0.914922][0.949282,0.139985,-0.281546][0.857143,0.125,0][1.3975,-0.805214,-0.808363][0.972291,-0.0633331,-0.22503][0.857143,0.25,0][1.3975,-0.805214,-0.808363][0.972291,-0.0633331,-0.22503][0.857143,0.25,0][1.70021,-0.819828,-0.427138][0.989556,-0.0725044,-0.124591][0.714286,0.25,0][1.69707,-1.23233,-0.375239][0.994232,0.0610389,-0.0881875][0.714286,0.125,0][1.47682,-1.21771,-0.914922][0.949282,0.139985,-0.281546][0.857143,0.125,0][1.42451,-1.30698,-1.2519][0.372874,0.67451,-2.79596][1,0.125,0][1.37048,-0.894481,-1.232][0.00258675,-0.876439,-2.69764][1,0.25,0][1.37048,-0.894481,-1.232][0.00258675,-0.876439,-2.69764][1,0.25,0][1.3975,-0.805214,-0.808363][0.972291,-0.0633331,-0.22503][0.857143,0.25,0][1.47682,-1.21771,-0.914922][0.949282,0.139985,-0.281546][0.857143,0.125,0][1.53246,-0.872637,1.468][0.0907872,-0.214981,2.83895][0,0.25,0][1.52463,-0.772179,1.09578][0.986241,0.157763,0.0493939][0.142857,0.25,0][1.30289,-0.359679,0.852767][0.949421,0.223082,0.220986][0.142857,0.375,0][1.30289,-0.359679,0.852767][0.949421,0.223082,0.220986][0.142857,0.375,0][1.54025,-0.460137,1.37137][-0.726162,0.827731,2.62082][0,0.375,0][1.53246,-0.872637,1.468][0.0907872,-0.214981,2.83895][0,0.25,0][1.52463,-0.772179,1.09578][0.986241,0.157763,0.0493939][0.142857,0.25,0][1.53224,-0.657728,0.696571][0.979744,-0.192528,0.0550807][0.285714,0.25,0][1.50851,-0.245228,0.599939][0.884748,0.19372,0.423903][0.285714,0.375,0][1.50851,-0.245228,0.599939][0.884748,0.19372,0.423903][0.285714,0.375,0][1.30289,-0.359679,0.852767][0.949421,0.223082,0.220986][0.142857,0.375,0][1.52463,-0.772179,1.09578][0.986241,0.157763,0.0493939][0.142857,0.25,0][1.53224,-0.657728,0.696571][0.979744,-0.192528,0.0550807][0.285714,0.25,0][1.53624,-0.667458,0.320885][0.994968,-0.0519993,0.0856457][0.428571,0.25,0][1.67867,-0.254958,0.237675][0.999736,-0.0179201,-0.0144074][0.428571,0.375,0][1.67867,-0.254958,0.237675][0.999736,-0.0179201,-0.0144074][0.428571,0.375,0][1.50851,-0.245228,0.599939][0.884748,0.19372,0.423903][0.285714,0.375,0][1.53224,-0.657728,0.696571][0.979744,-0.192528,0.0550807][0.285714,0.25,0][1.53624,-0.667458,0.320885][0.994968,-0.0519993,0.0856457][0.428571,0.25,0][1.57784,-0.925101,-0.0748576][0.973503,0.141701,0.179478][0.571429,0.25,0][1.51249,-0.512601,-0.171489][0.979668,0.0961488,0.176087][0.571429,0.375,0][1.51249,-0.512601,-0.171489][0.979668,0.0961488,0.176087][0.571429,0.375,0][1.67867,-0.254958,0.237675][0.999736,-0.0179201,-0.0144074][0.428571,0.375,0][1.53624,-0.667458,0.320885][0.994968,-0.0519993,0.0856457][0.428571,0.25,0][1.57784,-0.925101,-0.0748576][0.973503,0.141701,0.179478][0.571429,0.25,0][1.70021,-0.819828,-0.427138][0.989556,-0.0725044,-0.124591][0.714286,0.25,0][1.70213,-0.407328,-0.483044][0.990493,0.09647,0.0980631][0.714286,0.375,0][1.70213,-0.407328,-0.483044][0.990493,0.09647,0.0980631][0.714286,0.375,0][1.51249,-0.512601,-0.171489][0.979668,0.0961488,0.176087][0.571429,0.375,0][1.57784,-0.925101,-0.0748576][0.973503,0.141701,0.179478][0.571429,0.25,0][1.70021,-0.819828,-0.427138][0.989556,-0.0725044,-0.124591][0.714286,0.25,0][1.3975,-0.805214,-0.808363][0.972291,-0.0633331,-0.22503][0.857143,0.25,0][1.43851,-0.392715,-0.998536][0.985991,-0.122789,-0.112895][0.857143,0.375,0][1.43851,-0.392715,-0.998536][0.985991,-0.122789,-0.112895][0.857143,0.375,0][1.70213,-0.407328,-0.483044][0.990493,0.09647,0.0980631][0.714286,0.375,0][1.70021,-0.819828,-0.427138][0.989556,-0.0725044,-0.124591][0.714286,0.25,0][1.3975,-0.805214,-0.808363][0.972291,-0.0633331,-0.22503][0.857143,0.25,0][1.37048,-0.894481,-1.232][0.00258675,-0.876439,-2.69764][1,0.25,0][1.61395,-0.481981,-1.32863][0.942767,-0.374846,-2.76137][1,0.375,0][1.61395,-0.481981,-1.32863][0.942767,-0.374846,-2.76137][1,0.375,0][1.43851,-0.392715,-0.998536][0.985991,-0.122789,-0.112895][0.857143,0.375,0][1.3975,-0.805214,-0.808363][0.972291,-0.0633331,-0.22503][0.857143,0.25,0][1.54025,-0.460137,1.37137][-0.726162,0.827731,2.62082][0,0.375,0][1.30289,-0.359679,0.852767][0.949421,0.223082,0.220986][0.142857,0.375,0][1.2907,0.0528212,0.919449][0.998793,-0.0375197,0.0316955][0.142857,0.5,0][1.2907,0.0528212,0.919449][0.998793,-0.0375197,0.0316955][0.142857,0.5,0][1.52239,-0.0476369,1.33387][-0.879748,-0.0889276,2.8478][0,0.5,0][1.54025,-0.460137,1.37137][-0.726162,0.827731,2.62082][0,0.375,0][1.30289,-0.359679,0.852767][0.949421,0.223082,0.220986][0.142857,0.375,0][1.50851,-0.245228,0.599939][0.884748,0.19372,0.423903][0.285714,0.375,0][1.51484,0.167272,0.562438][0.921195,-0.0387915,0.387163][0.285714,0.5,0][1.51484,0.167272,0.562438][0.921195,-0.0387915,0.387163][0.285714,0.5,0][1.2907,0.0528212,0.919449][0.998793,-0.0375197,0.0316955][0.142857,0.5,0][1.30289,-0.359679,0.852767][0.949421,0.223082,0.220986][0.142857,0.375,0][1.50851,-0.245228,0.599939][0.884748,0.19372,0.423903][0.285714,0.375,0][1.67867,-0.254958,0.237675][0.999736,-0.0179201,-0.0144074][0.428571,0.375,0][1.59445,0.157542,0.219291][0.99501,0.0920631,-0.0384732][0.428571,0.5,0][1.59445,0.157542,0.219291][0.99501,0.0920631,-0.0384732][0.428571,0.5,0][1.51484,0.167272,0.562438][0.921195,-0.0387915,0.387163][0.285714,0.5,0][1.50851,-0.245228,0.599939][0.884748,0.19372,0.423903][0.285714,0.375,0][1.67867,-0.254958,0.237675][0.999736,-0.0179201,-0.0144074][0.428571,0.375,0][1.51249,-0.512601,-0.171489][0.979668,0.0961488,0.176087][0.571429,0.375,0][1.47081,-0.100101,-0.208991][0.998468,0.051452,0.0203718][0.571429,0.5,0][1.47081,-0.100101,-0.208991][0.998468,0.051452,0.0203718][0.571429,0.5,0][1.59445,0.157542,0.219291][0.99501,0.0920631,-0.0384732][0.428571,0.5,0][1.67867,-0.254958,0.237675][0.999736,-0.0179201,-0.0144074][0.428571,0.375,0][1.51249,-0.512601,-0.171489][0.979668,0.0961488,0.176087][0.571429,0.375,0][1.70213,-0.407328,-0.483044][0.990493,0.09647,0.0980631][0.714286,0.375,0][1.58871,0.0051719,-0.527419][0.98442,0.0852633,0.153775][0.714286,0.5,0][1.58871,0.0051719,-0.527419][0.98442,0.0852633,0.153775][0.714286,0.5,0][1.47081,-0.100101,-0.208991][0.998468,0.051452,0.0203718][0.571429,0.5,0][1.51249,-0.512601,-0.171489][0.979668,0.0961488,0.176087][0.571429,0.375,0][1.70213,-0.407328,-0.483044][0.990493,0.09647,0.0980631][0.714286,0.375,0][1.43851,-0.392715,-0.998536][0.985991,-0.122789,-0.112895][0.857143,0.375,0][1.55903,0.0197855,-1.00633][0.993875,0.00652982,-0.110316][0.857143,0.5,0][1.55903,0.0197855,-1.00633][0.993875,0.00652982,-0.110316][0.857143,0.5,0][1.58871,0.0051719,-0.527419][0.98442,0.0852633,0.153775][0.714286,0.5,0][1.70213,-0.407328,-0.483044][0.990493,0.09647,0.0980631][0.714286,0.375,0][1.43851,-0.392715,-0.998536][0.985991,-0.122789,-0.112895][0.857143,0.375,0][1.61395,-0.481981,-1.32863][0.942767,-0.374846,-2.76137][1,0.375,0][1.54549,-0.0694807,-1.36613][0.893171,0.220211,-2.84243][1,0.5,0][1.54549,-0.0694807,-1.36613][0.893171,0.220211,-2.84243][1,0.5,0][1.55903,0.0197855,-1.00633][0.993875,0.00652982,-0.110316][0.857143,0.5,0][1.43851,-0.392715,-0.998536][0.985991,-0.122789,-0.112895][0.857143,0.375,0][1.52239,-0.0476369,1.33387][-0.879748,-0.0889276,2.8478][0,0.5,0][1.2907,0.0528212,0.919449][0.998793,-0.0375197,0.0316955][0.142857,0.5,0][1.31497,0.465321,0.957271][0.987345,0.115692,0.10847][0.142857,0.625,0][1.31497,0.465321,0.957271][0.987345,0.115692,0.10847][0.142857,0.625,0][1.49313,0.364863,1.39163][-0.939147,0.063705,2.76998][0,0.625,0][1.52239,-0.0476369,1.33387][-0.879748,-0.0889276,2.8478][0,0.5,0][1.2907,0.0528212,0.919449][0.998793,-0.0375197,0.0316955][0.142857,0.5,0][1.51484,0.167272,0.562438][0.921195,-0.0387915,0.387163][0.285714,0.5,0][1.53785,0.579772,0.620201][0.921654,-0.0242589,0.387253][0.285714,0.625,0][1.53785,0.579772,0.620201][0.921654,-0.0242589,0.387253][0.285714,0.625,0][1.31497,0.465321,0.957271][0.987345,0.115692,0.10847][0.142857,0.625,0][1.2907,0.0528212,0.919449][0.998793,-0.0375197,0.0316955][0.142857,0.5,0][1.51484,0.167272,0.562438][0.921195,-0.0387915,0.387163][0.285714,0.5,0][1.59445,0.157542,0.219291][0.99501,0.0920631,-0.0384732][0.428571,0.5,0][1.59387,0.570042,0.269933][0.99214,-0.101595,-0.0730469][0.428571,0.625,0][1.59387,0.570042,0.269933][0.99214,-0.101595,-0.0730469][0.428571,0.625,0][1.53785,0.579772,0.620201][0.921654,-0.0242589,0.387253][0.285714,0.625,0][1.51484,0.167272,0.562438][0.921195,-0.0387915,0.387163][0.285714,0.5,0][1.59445,0.157542,0.219291][0.99501,0.0920631,-0.0384732][0.428571,0.5,0][1.47081,-0.100101,-0.208991][0.998468,0.051452,0.0203718][0.571429,0.5,0][1.43776,0.312399,-0.151228][0.981568,0.0711533,0.177371][0.571429,0.625,0][1.43776,0.312399,-0.151228][0.981568,0.0711533,0.177371][0.571429,0.625,0][1.59387,0.570042,0.269933][0.99214,-0.101595,-0.0730469][0.428571,0.625,0][1.59445,0.157542,0.219291][0.99501,0.0920631,-0.0384732][0.428571,0.5,0][1.47081,-0.100101,-0.208991][0.998468,0.051452,0.0203718][0.571429,0.5,0][1.58871,0.0051719,-0.527419][0.98442,0.0852633,0.153775][0.714286,0.5,0][1.65043,0.417672,-0.465955][0.994114,-0.0810058,0.0719347][0.714286,0.625,0][1.65043,0.417672,-0.465955][0.994114,-0.0810058,0.0719347][0.714286,0.625,0][1.43776,0.312399,-0.151228][0.981568,0.0711533,0.177371][0.571429,0.625,0][1.47081,-0.100101,-0.208991][0.998468,0.051452,0.0203718][0.571429,0.5,0][1.58871,0.0051719,-0.527419][0.98442,0.0852633,0.153775][0.714286,0.5,0][1.55903,0.0197855,-1.00633][0.993875,0.00652982,-0.110316][0.857143,0.5,0][1.51597,0.432286,-0.973723][0.997393,0.0641131,-0.0331028][0.857143,0.625,0][1.51597,0.432286,-0.973723][0.997393,0.0641131,-0.0331028][0.857143,0.625,0][1.65043,0.417672,-0.465955][0.994114,-0.0810058,0.0719347][0.714286,0.625,0][1.58871,0.0051719,-0.527419][0.98442,0.0852633,0.153775][0.714286,0.5,0][1.55903,0.0197855,-1.00633][0.993875,0.00652982,-0.110316][0.857143,0.5,0][1.54549,-0.0694807,-1.36613][0.893171,0.220211,-2.84243][1,0.5,0][1.5073,0.343019,-1.30837][0.353069,-0.0363108,-2.76107][1,0.625,0][1.5073,0.343019,-1.30837][0.353069,-0.0363108,-2.76107][1,0.625,0][1.51597,0.432286,-0.973723][0.997393,0.0641131,-0.0331028][0.857143,0.625,0][1.55903,0.0197855,-1.00633][0.993875,0.00652982,-0.110316][0.857143,0.5,0][1.49313,0.364863,1.39163][-0.939147,0.063705,2.76998][0,0.625,0][1.31497,0.465321,0.957271][0.987345,0.115692,0.10847][0.142857,0.625,0][1.23918,0.877821,0.84343][0.996022,0.027122,0.0848741][0.142857,0.75,0][1.23918,0.877821,0.84343][0.996022,0.027122,0.0848741][0.142857,0.75,0][1.42918,0.777363,1.21335][0.347199,-0.137013,2.65325][0,0.75,0][1.49313,0.364863,1.39163][-0.939147,0.063705,2.76998][0,0.625,0][1.31497,0.465321,0.957271][0.987345,0.115692,0.10847][0.142857,0.625,0][1.53785,0.579772,0.620201][0.921654,-0.0242589,0.387253][0.285714,0.625,0][1.56413,0.992272,0.441923][0.835018,0.0631316,0.546588][0.285714,0.75,0][1.56413,0.992272,0.441923][0.835018,0.0631316,0.546588][0.285714,0.75,0][1.23918,0.877821,0.84343][0.996022,0.027122,0.0848741][0.142857,0.75,0][1.31497,0.465321,0.957271][0.987345,0.115692,0.10847][0.142857,0.625,0][1.53785,0.579772,0.620201][0.921654,-0.0242589,0.387253][0.285714,0.625,0][1.59387,0.570042,0.269933][0.99214,-0.101595,-0.0730469][0.428571,0.625,0][1.67341,0.982542,0.133837][0.991909,-0.105318,-0.07088][0.428571,0.75,0][1.67341,0.982542,0.133837][0.991909,-0.105318,-0.07088][0.428571,0.75,0][1.56413,0.992272,0.441923][0.835018,0.0631316,0.546588][0.285714,0.75,0][1.53785,0.579772,0.620201][0.921654,-0.0242589,0.387253][0.285714,0.625,0][1.59387,0.570042,0.269933][0.99214,-0.101595,-0.0730469][0.428571,0.625,0][1.43776,0.312399,-0.151228][0.981568,0.0711533,0.177371][0.571429,0.625,0][1.43482,0.724899,-0.329506][0.982555,-0.0668835,0.173531][0.571429,0.75,0][1.43482,0.724899,-0.329506][0.982555,-0.0668835,0.173531][0.571429,0.75,0][1.67341,0.982542,0.133837][0.991909,-0.105318,-0.07088][0.428571,0.75,0][1.59387,0.570042,0.269933][0.99214,-0.101595,-0.0730469][0.428571,0.625,0][1.43776,0.312399,-0.151228][0.981568,0.0711533,0.177371][0.571429,0.625,0][1.65043,0.417672,-0.465955][0.994114,-0.0810058,0.0719347][0.714286,0.625,0][1.73094,0.830172,-0.568083][0.982149,0.0280388,0.186002][0.714286,0.75,0][1.73094,0.830172,-0.568083][0.982149,0.0280388,0.186002][0.714286,0.75,0][1.43482,0.724899,-0.329506][0.982555,-0.0668835,0.173531][0.571429,0.75,0][1.43776,0.312399,-0.151228][0.981568,0.0711533,0.177371][0.571429,0.625,0][1.65043,0.417672,-0.465955][0.994114,-0.0810058,0.0719347][0.714286,0.625,0][1.51597,0.432286,-0.973723][0.997393,0.0641131,-0.0331028][0.857143,0.625,0][1.40956,0.844785,-1.09027][0.997344,-0.0635911,-0.0355067][0.857143,0.75,0][1.40956,0.844785,-1.09027][0.997344,-0.0635911,-0.0355067][0.857143,0.75,0][1.73094,0.830172,-0.568083][0.982149,0.0280388,0.186002][0.714286,0.75,0][1.65043,0.417672,-0.465955][0.994114,-0.0810058,0.0719347][0.714286,0.625,0][1.51597,0.432286,-0.973723][0.997393,0.0641131,-0.0331028][0.857143,0.625,0][1.5073,0.343019,-1.30837][0.353069,-0.0363108,-2.76107][1,0.625,0][1.62142,0.755519,-1.48665][-0.410754,-0.20362,-2.73708][1,0.75,0][1.62142,0.755519,-1.48665][-0.410754,-0.20362,-2.73708][1,0.75,0][1.40956,0.844785,-1.09027][0.997344,-0.0635911,-0.0355067][0.857143,0.75,0][1.51597,0.432286,-0.973723][0.997393,0.0641131,-0.0331028][0.857143,0.625,0][1.42918,0.777363,1.21335][0.347199,-0.137013,2.65325][0,0.75,0][1.23918,0.877821,0.84343][0.996022,0.027122,0.0848741][0.142857,0.75,0][1.28183,1.29032,0.874536][0.999405,-0.0330715,0.00976489][0.142857,0.875,0][1.28183,1.29032,0.874536][0.999405,-0.0330715,0.00976489][0.142857,0.875,0][1.46165,1.18986,1.3466][-0.238528,0.379894,2.6136][0,0.875,0][1.42918,0.777363,1.21335][0.347199,-0.137013,2.65325][0,0.75,0][1.23918,0.877821,0.84343][0.996022,0.027122,0.0848741][0.142857,0.75,0][1.56413,0.992272,0.441923][0.835018,0.0631316,0.546588][0.285714,0.75,0][1.45141,1.40477,0.575166][0.80962,0.109475,0.576655][0.285714,0.875,0][1.45141,1.40477,0.575166][0.80962,0.109475,0.576655][0.285714,0.875,0][1.28183,1.29032,0.874536][0.999405,-0.0330715,0.00976489][0.142857,0.875,0][1.23918,0.877821,0.84343][0.996022,0.027122,0.0848741][0.142857,0.75,0][1.56413,0.992272,0.441923][0.835018,0.0631316,0.546588][0.285714,0.75,0][1.67341,0.982542,0.133837][0.991909,-0.105318,-0.07088][0.428571,0.75,0][1.73638,1.39504,0.245908][0.997528,-0.00865554,0.0697347][0.428571,0.875,0][1.73638,1.39504,0.245908][0.997528,-0.00865554,0.0697347][0.428571,0.875,0][1.45141,1.40477,0.575166][0.80962,0.109475,0.576655][0.285714,0.875,0][1.56413,0.992272,0.441923][0.835018,0.0631316,0.546588][0.285714,0.75,0][1.67341,0.982542,0.133837][0.991909,-0.105318,-0.07088][0.428571,0.75,0][1.43482,0.724899,-0.329506][0.982555,-0.0668835,0.173531][0.571429,0.75,0][1.50822,1.1374,-0.196262][0.998848,-0.0443201,0.0184042][0.571429,0.875,0][1.50822,1.1374,-0.196262][0.998848,-0.0443201,0.0184042][0.571429,0.875,0][1.73638,1.39504,0.245908][0.997528,-0.00865554,0.0697347][0.428571,0.875,0][1.67341,0.982542,0.133837][0.991909,-0.105318,-0.07088][0.428571,0.75,0][1.43482,0.724899,-0.329506][0.982555,-0.0668835,0.173531][0.571429,0.75,0][1.73094,0.830172,-0.568083][0.982149,0.0280388,0.186002][0.714286,0.75,0][1.65142,1.24267,-0.505757][0.979635,-0.161865,0.118804][0.714286,0.875,0][1.65142,1.24267,-0.505757][0.979635,-0.161865,0.118804][0.714286,0.875,0][1.50822,1.1374,-0.196262][0.998848,-0.0443201,0.0184042][0.571429,0.875,0][1.43482,0.724899,-0.329506][0.982555,-0.0668835,0.173531][0.571429,0.75,0][1.73094,0.830172,-0.568083][0.982149,0.0280388,0.186002][0.714286,0.75,0][1.40956,0.844785,-1.09027][0.997344,-0.0635911,-0.0355067][0.857143,0.75,0][1.53644,1.25729,-0.982796][0.991473,-0.0923548,-0.0919316][0.857143,0.875,0][1.53644,1.25729,-0.982796][0.991473,-0.0923548,-0.0919316][0.857143,0.875,0][1.65142,1.24267,-0.505757][0.979635,-0.161865,0.118804][0.714286,0.875,0][1.73094,0.830172,-0.568083][0.982149,0.0280388,0.186002][0.714286,0.75,0][1.40956,0.844785,-1.09027][0.997344,-0.0635911,-0.0355067][0.857143,0.75,0][1.62142,0.755519,-1.48665][-0.410754,-0.20362,-2.73708][1,0.75,0][1.59231,1.16802,-1.3534][0.332514,-0.160105,-2.80387][1,0.875,0][1.59231,1.16802,-1.3534][0.332514,-0.160105,-2.80387][1,0.875,0][1.53644,1.25729,-0.982796][0.991473,-0.0923548,-0.0919316][0.857143,0.875,0][1.40956,0.844785,-1.09027][0.997344,-0.0635911,-0.0355067][0.857143,0.75,0][1.46165,1.18986,1.3466][-0.238528,0.379894,2.6136][0,0.875,0][1.28183,1.29032,0.874536][0.999405,-0.0330715,0.00976489][0.142857,0.875,0][1.3328,1.70282,0.849167][-0.336528,2.71319,1.16465][0.142857,1,0][1.3328,1.70282,0.849167][-0.336528,2.71319,1.16465][0.142857,1,0][1.61575,1.60236,1.17275][-0.204605,0.869812,0.448959][0,1,0][1.46165,1.18986,1.3466][-0.238528,0.379894,2.6136][0,0.875,0][1.28183,1.29032,0.874536][0.999405,-0.0330715,0.00976489][0.142857,0.875,0][1.45141,1.40477,0.575166][0.80962,0.109475,0.576655][0.285714,0.875,0][1.46368,1.81727,0.401317][-0.98004,2.60788,-0.438301][0.285714,1,0][1.46368,1.81727,0.401317][-0.98004,2.60788,-0.438301][0.285714,1,0][1.3328,1.70282,0.849167][-0.336528,2.71319,1.16465][0.142857,1,0][1.28183,1.29032,0.874536][0.999405,-0.0330715,0.00976489][0.142857,0.875,0][1.45141,1.40477,0.575166][0.80962,0.109475,0.576655][0.285714,0.875,0][1.73638,1.39504,0.245908][0.997528,-0.00865554,0.0697347][0.428571,0.875,0][1.67851,1.80754,0.0607543][-1.50257,2.39949,-0.968175][0.428571,1,0][1.67851,1.80754,0.0607543][-1.50257,2.39949,-0.968175][0.428571,1,0][1.46368,1.81727,0.401317][-0.98004,2.60788,-0.438301][0.285714,1,0][1.45141,1.40477,0.575166][0.80962,0.109475,0.576655][0.285714,0.875,0][1.73638,1.39504,0.245908][0.997528,-0.00865554,0.0697347][0.428571,0.875,0][1.50822,1.1374,-0.196262][0.998848,-0.0443201,0.0184042][0.571429,0.875,0][1.48857,1.5499,-0.370111][-0.515797,2.75415,0.0534013][0.571429,1,0][1.48857,1.5499,-0.370111][-0.515797,2.75415,0.0534013][0.571429,1,0][1.67851,1.80754,0.0607543][-1.50257,2.39949,-0.968175][0.428571,1,0][1.73638,1.39504,0.245908][0.997528,-0.00865554,0.0697347][0.428571,0.875,0][1.50822,1.1374,-0.196262][0.998848,-0.0443201,0.0184042][0.571429,0.875,0][1.65142,1.24267,-0.505757][0.979635,-0.161865,0.118804][0.714286,0.875,0][1.79463,1.65517,-0.70663][0.107868,2.88323,0.684451][0.714286,1,0][1.79463,1.65517,-0.70663][0.107868,2.88323,0.684451][0.714286,1,0][1.48857,1.5499,-0.370111][-0.515797,2.75415,0.0534013][0.571429,1,0][1.50822,1.1374,-0.196262][0.998848,-0.0443201,0.0184042][0.571429,0.875,0][1.65142,1.24267,-0.505757][0.979635,-0.161865,0.118804][0.714286,0.875,0][1.53644,1.25729,-0.982796][0.991473,-0.0923548,-0.0919316][0.857143,0.875,0][1.58677,1.66979,-1.1259][0.127683,2.97295,-0.168222][0.857143,1,0][1.58677,1.66979,-1.1259][0.127683,2.97295,-0.168222][0.857143,1,0][1.79463,1.65517,-0.70663][0.107868,2.88323,0.684451][0.714286,1,0][1.65142,1.24267,-0.505757][0.979635,-0.161865,0.118804][0.714286,0.875,0][1.53644,1.25729,-0.982796][0.991473,-0.0923548,-0.0919316][0.857143,0.875,0][1.59231,1.16802,-1.3534][0.332514,-0.160105,-2.80387][1,0.875,0][1.61533,1.58052,-1.52725][0.0521218,1.95133,-0.435331][1,1,0][1.61533,1.58052,-1.52725][0.0521218,1.95133,-0.435331][1,1,0][1.58677,1.66979,-1.1259][0.127683,2.97295,-0.168222][0.857143,1,0][1.53644,1.25729,-0.982796][0.991473,-0.0923548,-0.0919316][0.857143,0.875,0][-0.658546,-0.504933,-1.4246][0.0346396,-0.00703915,-0.999375][0.75,0.375,0][-0.727013,-0.0924333,-1.29603][0.0721085,0.102638,-0.992102][0.75,0.5,0][-0.348263,-0.0249524,-1.26417][-0.232627,-0.297418,-0.925974][0.625,0.5,0][-0.348263,-0.0249524,-1.26417][-0.232627,-0.297418,-0.925974][0.625,0.5,0][-0.279796,-0.437452,-1.35068][-0.0426108,0.0379954,-0.998369][0.625,0.375,0][-0.658546,-0.504933,-1.4246][0.0346396,-0.00703915,-0.999375][0.75,0.375,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/PirateHat.mesh b/shareddata/charcustom/hats/fonts/PirateHat.mesh deleted file mode 100644 index 5eae798..0000000 --- a/shareddata/charcustom/hats/fonts/PirateHat.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -592 -[-0.614146,0.399843,0.0480231][0.20986,0.187658,-1.49396][0.705664,0.008659,0][-0.973899,0.279509,-0.017627][-0.0466457,0.200218,-3.19192][0.850472,0.008456,0][-1.1025,0.596676,0.00414702][-0.0328061,0.107507,-0.993663][0.849561,0.14373,0][-0.614146,0.399843,0.0480231][0.20986,0.187658,-1.49396][0.705664,0.008659,0][-1.1025,0.596676,0.00414702][-0.0328061,0.107507,-0.993663][0.849561,0.14373,0][-0.74275,0.717011,0.0697981][0.387844,0.524017,-3.08581][0.704753,0.143933,0][-0.973899,0.279509,-0.017627][-0.0466457,0.200218,-3.19192][0.850472,0.008456,0][-1.31722,0.115283,0.040448][-0.253596,8.21697e-005,-1.49896][0.996062,0.009309,0][-1.44583,0.43245,0.062223][-0.585901,0.129907,-3.0963][0.995151,0.144582,0][-0.973899,0.279509,-0.017627][-0.0466457,0.200218,-3.19192][0.850472,0.008456,0][-1.44583,0.43245,0.062223][-0.585901,0.129907,-3.0963][0.995151,0.144582,0][-1.1025,0.596676,0.00414702][-0.0328061,0.107507,-0.993663][0.849561,0.14373,0][-0.74275,0.717011,0.0697981][0.387844,0.524017,-3.08581][0.704753,0.143933,0][-1.1025,0.596676,0.00414702][-0.0328061,0.107507,-0.993663][0.849561,0.14373,0][-1.22699,0.902853,0.056907][-0.0795512,0.222415,-0.971701][0.848846,0.28418,0][-0.74275,0.717011,0.0697981][0.387844,0.524017,-3.08581][0.704753,0.143933,0][-1.22699,0.902853,0.056907][-0.0795512,0.222415,-0.971701][0.848846,0.28418,0][-0.86724,1.02319,0.122557][0.254098,0.888357,-3.02075][0.704038,0.284383,0][-1.1025,0.596676,0.00414702][-0.0328061,0.107507,-0.993663][0.849561,0.14373,0][-1.44583,0.43245,0.062223][-0.585901,0.129907,-3.0963][0.995151,0.144582,0][-1.57032,0.738627,0.114983][-0.744426,0.484218,-3.03151][0.994436,0.285033,0][-1.1025,0.596676,0.00414702][-0.0328061,0.107507,-0.993663][0.849561,0.14373,0][-1.57032,0.738627,0.114983][-0.744426,0.484218,-3.03151][0.994436,0.285033,0][-1.22699,0.902853,0.056907][-0.0795512,0.222415,-0.971701][0.848846,0.28418,0][-0.86724,1.02319,0.122557][0.254098,0.888357,-3.02075][0.704038,0.284383,0][-1.22699,0.902853,0.056907][-0.0795512,0.222415,-0.971701][0.848846,0.28418,0][-1.34494,1.19156,0.158907][-0.119334,0.319865,-0.939918][0.848442,0.412769,0][-0.86724,1.02319,0.122557][0.254098,0.888357,-3.02075][0.704038,0.284383,0][-1.34494,1.19156,0.158907][-0.119334,0.319865,-0.939918][0.848442,0.412769,0][-0.98519,1.3119,0.224558][0.1315,1.19577,-2.91238][0.703634,0.412972,0][-1.22699,0.902853,0.056907][-0.0795512,0.222415,-0.971701][0.848846,0.28418,0][-1.57032,0.738627,0.114983][-0.744426,0.484218,-3.03151][0.994436,0.285033,0][-1.68827,1.02734,0.216983][-0.872155,0.78955,-2.92319][0.994032,0.413622,0][-1.22699,0.902853,0.056907][-0.0795512,0.222415,-0.971701][0.848846,0.28418,0][-1.68827,1.02734,0.216983][-0.872155,0.78955,-2.92319][0.994032,0.413622,0][-1.34494,1.19156,0.158907][-0.119334,0.319865,-0.939918][0.848442,0.412769,0][-0.98519,1.3119,0.224558][0.1315,1.19577,-2.91238][0.703634,0.412972,0][-1.34494,1.19156,0.158907][-0.119334,0.319865,-0.939918][0.848442,0.412769,0][-1.46028,1.47328,0.280606][-0.168792,0.440514,-0.881735][0.848163,0.541526,0][-0.98519,1.3119,0.224558][0.1315,1.19577,-2.91238][0.703634,0.412972,0][-1.46028,1.47328,0.280606][-0.168792,0.440514,-0.881735][0.848163,0.541526,0][-1.10053,1.59362,0.346257][-0.0299106,1.58193,-2.73574][0.703355,0.541729,0][-1.34494,1.19156,0.158907][-0.119334,0.319865,-0.939918][0.848442,0.412769,0][-1.68827,1.02734,0.216983][-0.872155,0.78955,-2.92319][0.994032,0.413622,0][-1.8036,1.30906,0.338682][-1.02805,1.17795,-2.74649][0.993753,0.542379,0][-1.34494,1.19156,0.158907][-0.119334,0.319865,-0.939918][0.848442,0.412769,0][-1.8036,1.30906,0.338682][-1.02805,1.17795,-2.74649][0.993753,0.542379,0][-1.46028,1.47328,0.280606][-0.168792,0.440514,-0.881735][0.848163,0.541526,0][-1.10053,1.59362,0.346257][-0.0299106,1.58193,-2.73574][0.703355,0.541729,0][-1.46028,1.47328,0.280606][-0.168792,0.440514,-0.881735][0.848163,0.541526,0][-1.56626,1.73003,0.472728][-0.241058,0.615563,-0.750316][0.848329,0.680709,0][-1.10053,1.59362,0.346257][-0.0299106,1.58193,-2.73574][0.703355,0.541729,0][-1.56626,1.73003,0.472728][-0.241058,0.615563,-0.750316][0.848329,0.680709,0][-1.20651,1.85036,0.538378][-0.289932,2.1291,-2.3138][0.703522,0.680911,0][-1.46028,1.47328,0.280606][-0.168792,0.440514,-0.881735][0.848163,0.541526,0][-1.8036,1.30906,0.338682][-1.02805,1.17795,-2.74649][0.993753,0.542379,0][-1.90958,1.5658,0.530804][-1.22963,1.74878,-2.32393][0.993919,0.681561,0][-1.46028,1.47328,0.280606][-0.168792,0.440514,-0.881735][0.848163,0.541526,0][-1.90958,1.5658,0.530804][-1.22963,1.74878,-2.32393][0.993919,0.681561,0][-1.56626,1.73003,0.472728][-0.241058,0.615563,-0.750316][0.848329,0.680709,0][-1.20651,1.85036,0.538378][-0.289932,2.1291,-2.3138][0.703522,0.680911,0][-1.56626,1.73003,0.472728][-0.241058,0.615563,-0.750316][0.848329,0.680709,0][-1.65502,1.94237,0.73392][-0.898822,2.27818,-2.15756][0.848997,0.810203,0][-1.20651,1.85036,0.538378][-0.289932,2.1291,-2.3138][0.703522,0.680911,0][-1.65502,1.94237,0.73392][-0.898822,2.27818,-2.15756][0.848997,0.810203,0][-1.29527,2.06271,0.799571][-0.195124,1.11331,-0.971407][0.704189,0.810405,0][-1.56626,1.73003,0.472728][-0.241058,0.615563,-0.750316][0.848329,0.680709,0][-1.90958,1.5658,0.530804][-1.22963,1.74878,-2.32393][0.993919,0.681561,0][-1.99834,1.77814,0.791996][-0.616125,0.942914,-0.975944][0.994587,0.811055,0][-1.56626,1.73003,0.472728][-0.241058,0.615563,-0.750316][0.848329,0.680709,0][-1.99834,1.77814,0.791996][-0.616125,0.942914,-0.975944][0.994587,0.811055,0][-1.65502,1.94237,0.73392][-0.898822,2.27818,-2.15756][0.848997,0.810203,0][-1.29527,2.06271,0.799571][-0.195124,1.11331,-0.971407][0.704189,0.810405,0][-1.65502,1.94237,0.73392][-0.898822,2.27818,-2.15756][0.848997,0.810203,0][-1.65417,1.94011,0.740281][-1.23482,3.01807,1.23507][0.849037,0.810257,0][-1.29527,2.06271,0.799571][-0.195124,1.11331,-0.971407][0.704189,0.810405,0][-1.65417,1.94011,0.740281][-1.23482,3.01807,1.23507][0.849037,0.810257,0][-1.29442,2.06045,0.805931][-0.495095,1.21011,0.494925][0.704229,0.81046,0][-1.65502,1.94237,0.73392][-0.898822,2.27818,-2.15756][0.848997,0.810203,0][-1.99834,1.77814,0.791996][-0.616125,0.942914,-0.975944][0.994587,0.811055,0][-1.9975,1.77589,0.798357][-0.495212,1.21029,0.494934][0.994627,0.81111,0][-1.65502,1.94237,0.73392][-0.898822,2.27818,-2.15756][0.848997,0.810203,0][-1.9975,1.77589,0.798357][-0.495212,1.21029,0.494934][0.994627,0.81111,0][-1.65417,1.94011,0.740281][-1.23482,3.01807,1.23507][0.849037,0.810257,0][-1.29442,2.06045,0.805931][-0.495095,1.21011,0.494925][0.704229,0.81046,0][-1.65417,1.94011,0.740281][-1.23482,3.01807,1.23507][0.849037,0.810257,0][-1.56542,1.72777,0.479088][0.241057,-0.615563,0.750315][0.848369,0.680763,0][-1.29442,2.06045,0.805931][-0.495095,1.21011,0.494925][0.704229,0.81046,0][-1.56542,1.72777,0.479088][0.241057,-0.615563,0.750315][0.848369,0.680763,0][-1.20566,1.84811,0.544739][0.289935,-2.1291,2.31381][0.703562,0.680966,0][-1.65417,1.94011,0.740281][-1.23482,3.01807,1.23507][0.849037,0.810257,0][-1.9975,1.77589,0.798357][-0.495212,1.21029,0.494934][0.994627,0.81111,0][-1.90874,1.56355,0.537165][1.22962,-1.74878,2.32392][0.99396,0.681615,0][-1.65417,1.94011,0.740281][-1.23482,3.01807,1.23507][0.849037,0.810257,0][-1.90874,1.56355,0.537165][1.22962,-1.74878,2.32392][0.99396,0.681615,0][-1.56542,1.72777,0.479088][0.241057,-0.615563,0.750315][0.848369,0.680763,0][-1.20566,1.84811,0.544739][0.289935,-2.1291,2.31381][0.703562,0.680966,0][-1.56542,1.72777,0.479088][0.241057,-0.615563,0.750315][0.848369,0.680763,0][-1.45943,1.47103,0.286967][0.168791,-0.440515,0.881735][0.848203,0.541581,0][-1.20566,1.84811,0.544739][0.289935,-2.1291,2.31381][0.703562,0.680966,0][-1.45943,1.47103,0.286967][0.168791,-0.440515,0.881735][0.848203,0.541581,0][-1.09968,1.59136,0.352617][0.0299145,-1.58194,2.73574][0.703396,0.541783,0][-1.56542,1.72777,0.479088][0.241057,-0.615563,0.750315][0.848369,0.680763,0][-1.90874,1.56355,0.537165][1.22962,-1.74878,2.32392][0.99396,0.681615,0][-1.80276,1.3068,0.345042][1.02804,-1.17795,2.74649][0.993794,0.542433,0][-1.56542,1.72777,0.479088][0.241057,-0.615563,0.750315][0.848369,0.680763,0][-1.80276,1.3068,0.345042][1.02804,-1.17795,2.74649][0.993794,0.542433,0][-1.45943,1.47103,0.286967][0.168791,-0.440515,0.881735][0.848203,0.541581,0][-1.09968,1.59136,0.352617][0.0299145,-1.58194,2.73574][0.703396,0.541783,0][-1.45943,1.47103,0.286967][0.168791,-0.440515,0.881735][0.848203,0.541581,0][-1.3441,1.18931,0.165268][0.119334,-0.319864,0.939918][0.848482,0.412824,0][-1.09968,1.59136,0.352617][0.0299145,-1.58194,2.73574][0.703396,0.541783,0][-1.3441,1.18931,0.165268][0.119334,-0.319864,0.939918][0.848482,0.412824,0][-0.984345,1.30964,0.230918][-0.131491,-1.19576,2.91238][0.703675,0.413026,0][-1.45943,1.47103,0.286967][0.168791,-0.440515,0.881735][0.848203,0.541581,0][-1.80276,1.3068,0.345042][1.02804,-1.17795,2.74649][0.993794,0.542433,0][-1.68742,1.02508,0.223343][0.872148,-0.789552,2.92319][0.994072,0.413676,0][-1.45943,1.47103,0.286967][0.168791,-0.440515,0.881735][0.848203,0.541581,0][-1.68742,1.02508,0.223343][0.872148,-0.789552,2.92319][0.994072,0.413676,0][-1.3441,1.18931,0.165268][0.119334,-0.319864,0.939918][0.848482,0.412824,0][-0.984345,1.30964,0.230918][-0.131491,-1.19576,2.91238][0.703675,0.413026,0][-1.3441,1.18931,0.165268][0.119334,-0.319864,0.939918][0.848482,0.412824,0][-1.22615,0.900597,0.063268][0.079551,-0.222416,0.971701][0.848886,0.284234,0][-0.984345,1.30964,0.230918][-0.131491,-1.19576,2.91238][0.703675,0.413026,0][-1.22615,0.900597,0.063268][0.079551,-0.222416,0.971701][0.848886,0.284234,0][-0.866395,1.02093,0.128917][-0.254091,-0.888356,3.02075][0.704078,0.284437,0][-1.3441,1.18931,0.165268][0.119334,-0.319864,0.939918][0.848482,0.412824,0][-1.68742,1.02508,0.223343][0.872148,-0.789552,2.92319][0.994072,0.413676,0][-1.56947,0.736371,0.121343][0.744419,-0.484222,3.03151][0.994476,0.285086,0][-1.3441,1.18931,0.165268][0.119334,-0.319864,0.939918][0.848482,0.412824,0][-1.56947,0.736371,0.121343][0.744419,-0.484222,3.03151][0.994476,0.285086,0][-1.22615,0.900597,0.063268][0.079551,-0.222416,0.971701][0.848886,0.284234,0][-0.866395,1.02093,0.128917][-0.254091,-0.888356,3.02075][0.704078,0.284437,0][-1.22615,0.900597,0.063268][0.079551,-0.222416,0.971701][0.848886,0.284234,0][-1.10166,0.594419,0.010508][0.0328071,-0.107508,0.993663][0.849601,0.143784,0][-0.866395,1.02093,0.128917][-0.254091,-0.888356,3.02075][0.704078,0.284437,0][-1.10166,0.594419,0.010508][0.0328071,-0.107508,0.993663][0.849601,0.143784,0][-0.741905,0.714755,0.0761581][-0.387841,-0.524012,3.08581][0.704793,0.143987,0][-1.22615,0.900597,0.063268][0.079551,-0.222416,0.971701][0.848886,0.284234,0][-1.56947,0.736371,0.121343][0.744419,-0.484222,3.03151][0.994476,0.285086,0][-1.44498,0.430196,0.068583][0.585896,-0.129907,3.0963][0.995191,0.144637,0][-1.22615,0.900597,0.063268][0.079551,-0.222416,0.971701][0.848886,0.284234,0][-1.44498,0.430196,0.068583][0.585896,-0.129907,3.0963][0.995191,0.144637,0][-1.10166,0.594419,0.010508][0.0328071,-0.107508,0.993663][0.849601,0.143784,0][-0.741905,0.714755,0.0761581][-0.387841,-0.524012,3.08581][0.704793,0.143987,0][-1.10166,0.594419,0.010508][0.0328071,-0.107508,0.993663][0.849601,0.143784,0][-0.973055,0.277253,-0.011267][0.046649,-0.200223,3.19192][0.850512,0.008511,0][-0.741905,0.714755,0.0761581][-0.387841,-0.524012,3.08581][0.704793,0.143987,0][-0.973055,0.277253,-0.011267][0.046649,-0.200223,3.19192][0.850512,0.008511,0][-0.613301,0.397587,0.0543841][-0.209862,-0.187656,1.49396][0.705704,0.008713,0][-1.10166,0.594419,0.010508][0.0328071,-0.107508,0.993663][0.849601,0.143784,0][-1.44498,0.430196,0.068583][0.585896,-0.129907,3.0963][0.995191,0.144637,0][-1.31638,0.113027,0.046809][0.253597,-7.95572e-005,1.49895][0.996102,0.009363,0][-1.10166,0.594419,0.010508][0.0328071,-0.107508,0.993663][0.849601,0.143784,0][-1.31638,0.113027,0.046809][0.253597,-7.95572e-005,1.49895][0.996102,0.009363,0][-0.973055,0.277253,-0.011267][0.046649,-0.200223,3.19192][0.850512,0.008511,0][-0.613301,0.397587,0.0543841][-0.209862,-0.187656,1.49396][0.705704,0.008713,0][-0.973055,0.277253,-0.011267][0.046649,-0.200223,3.19192][0.850512,0.008511,0][-0.973899,0.279509,-0.017627][-0.0466457,0.200218,-3.19192][0.850472,0.008456,0][-0.613301,0.397587,0.0543841][-0.209862,-0.187656,1.49396][0.705704,0.008713,0][-0.973899,0.279509,-0.017627][-0.0466457,0.200218,-3.19192][0.850472,0.008456,0][-0.614146,0.399843,0.0480231][0.20986,0.187658,-1.49396][0.705664,0.008659,0][-0.973055,0.277253,-0.011267][0.046649,-0.200223,3.19192][0.850512,0.008511,0][-1.31638,0.113027,0.046809][0.253597,-7.95572e-005,1.49895][0.996102,0.009363,0][-1.31722,0.115283,0.040448][-0.253596,8.21697e-005,-1.49896][0.996062,0.009309,0][-0.973055,0.277253,-0.011267][0.046649,-0.200223,3.19192][0.850512,0.008511,0][-1.31722,0.115283,0.040448][-0.253596,8.21697e-005,-1.49896][0.996062,0.009309,0][-0.973899,0.279509,-0.017627][-0.0466457,0.200218,-3.19192][0.850472,0.008456,0][-1.31722,0.115283,0.040448][-0.253596,8.21697e-005,-1.49896][0.996062,0.009309,0][-1.31638,0.113027,0.046809][0.253597,-7.95572e-005,1.49895][0.996102,0.009363,0][-1.44498,0.430196,0.068583][0.585896,-0.129907,3.0963][0.995191,0.144637,0][-1.31722,0.115283,0.040448][-0.253596,8.21697e-005,-1.49896][0.996062,0.009309,0][-1.44498,0.430196,0.068583][0.585896,-0.129907,3.0963][0.995191,0.144637,0][-1.44583,0.43245,0.062223][-0.585901,0.129907,-3.0963][0.995151,0.144582,0][-1.44583,0.43245,0.062223][-0.585901,0.129907,-3.0963][0.995151,0.144582,0][-1.44498,0.430196,0.068583][0.585896,-0.129907,3.0963][0.995191,0.144637,0][-1.56947,0.736371,0.121343][0.744419,-0.484222,3.03151][0.994476,0.285086,0][-1.44583,0.43245,0.062223][-0.585901,0.129907,-3.0963][0.995151,0.144582,0][-1.56947,0.736371,0.121343][0.744419,-0.484222,3.03151][0.994476,0.285086,0][-1.57032,0.738627,0.114983][-0.744426,0.484218,-3.03151][0.994436,0.285033,0][-1.57032,0.738627,0.114983][-0.744426,0.484218,-3.03151][0.994436,0.285033,0][-1.56947,0.736371,0.121343][0.744419,-0.484222,3.03151][0.994476,0.285086,0][-1.68742,1.02508,0.223343][0.872148,-0.789552,2.92319][0.994072,0.413676,0][-1.57032,0.738627,0.114983][-0.744426,0.484218,-3.03151][0.994436,0.285033,0][-1.68742,1.02508,0.223343][0.872148,-0.789552,2.92319][0.994072,0.413676,0][-1.68827,1.02734,0.216983][-0.872155,0.78955,-2.92319][0.994032,0.413622,0][-1.68827,1.02734,0.216983][-0.872155,0.78955,-2.92319][0.994032,0.413622,0][-1.68742,1.02508,0.223343][0.872148,-0.789552,2.92319][0.994072,0.413676,0][-1.80276,1.3068,0.345042][1.02804,-1.17795,2.74649][0.993794,0.542433,0][-1.68827,1.02734,0.216983][-0.872155,0.78955,-2.92319][0.994032,0.413622,0][-1.80276,1.3068,0.345042][1.02804,-1.17795,2.74649][0.993794,0.542433,0][-1.8036,1.30906,0.338682][-1.02805,1.17795,-2.74649][0.993753,0.542379,0][-1.8036,1.30906,0.338682][-1.02805,1.17795,-2.74649][0.993753,0.542379,0][-1.80276,1.3068,0.345042][1.02804,-1.17795,2.74649][0.993794,0.542433,0][-1.90874,1.56355,0.537165][1.22962,-1.74878,2.32392][0.99396,0.681615,0][-1.8036,1.30906,0.338682][-1.02805,1.17795,-2.74649][0.993753,0.542379,0][-1.90874,1.56355,0.537165][1.22962,-1.74878,2.32392][0.99396,0.681615,0][-1.90958,1.5658,0.530804][-1.22963,1.74878,-2.32393][0.993919,0.681561,0][-1.90958,1.5658,0.530804][-1.22963,1.74878,-2.32393][0.993919,0.681561,0][-1.90874,1.56355,0.537165][1.22962,-1.74878,2.32392][0.99396,0.681615,0][-1.9975,1.77589,0.798357][-0.495212,1.21029,0.494934][0.994627,0.81111,0][-1.90958,1.5658,0.530804][-1.22963,1.74878,-2.32393][0.993919,0.681561,0][-1.9975,1.77589,0.798357][-0.495212,1.21029,0.494934][0.994627,0.81111,0][-1.99834,1.77814,0.791996][-0.616125,0.942914,-0.975944][0.994587,0.811055,0][-0.613301,0.397587,0.0543841][-0.209862,-0.187656,1.49396][0.705704,0.008713,0][-0.614146,0.399843,0.0480231][0.20986,0.187658,-1.49396][0.705664,0.008659,0][-0.74275,0.717011,0.0697981][0.387844,0.524017,-3.08581][0.704753,0.143933,0][-0.613301,0.397587,0.0543841][-0.209862,-0.187656,1.49396][0.705704,0.008713,0][-0.74275,0.717011,0.0697981][0.387844,0.524017,-3.08581][0.704753,0.143933,0][-0.741905,0.714755,0.0761581][-0.387841,-0.524012,3.08581][0.704793,0.143987,0][-0.741905,0.714755,0.0761581][-0.387841,-0.524012,3.08581][0.704793,0.143987,0][-0.74275,0.717011,0.0697981][0.387844,0.524017,-3.08581][0.704753,0.143933,0][-0.86724,1.02319,0.122557][0.254098,0.888357,-3.02075][0.704038,0.284383,0][-0.741905,0.714755,0.0761581][-0.387841,-0.524012,3.08581][0.704793,0.143987,0][-0.86724,1.02319,0.122557][0.254098,0.888357,-3.02075][0.704038,0.284383,0][-0.866395,1.02093,0.128917][-0.254091,-0.888356,3.02075][0.704078,0.284437,0][-0.866395,1.02093,0.128917][-0.254091,-0.888356,3.02075][0.704078,0.284437,0][-0.86724,1.02319,0.122557][0.254098,0.888357,-3.02075][0.704038,0.284383,0][-0.98519,1.3119,0.224558][0.1315,1.19577,-2.91238][0.703634,0.412972,0][-0.866395,1.02093,0.128917][-0.254091,-0.888356,3.02075][0.704078,0.284437,0][-0.98519,1.3119,0.224558][0.1315,1.19577,-2.91238][0.703634,0.412972,0][-0.984345,1.30964,0.230918][-0.131491,-1.19576,2.91238][0.703675,0.413026,0][-0.984345,1.30964,0.230918][-0.131491,-1.19576,2.91238][0.703675,0.413026,0][-0.98519,1.3119,0.224558][0.1315,1.19577,-2.91238][0.703634,0.412972,0][-1.10053,1.59362,0.346257][-0.0299106,1.58193,-2.73574][0.703355,0.541729,0][-0.984345,1.30964,0.230918][-0.131491,-1.19576,2.91238][0.703675,0.413026,0][-1.10053,1.59362,0.346257][-0.0299106,1.58193,-2.73574][0.703355,0.541729,0][-1.09968,1.59136,0.352617][0.0299145,-1.58194,2.73574][0.703396,0.541783,0][-1.09968,1.59136,0.352617][0.0299145,-1.58194,2.73574][0.703396,0.541783,0][-1.10053,1.59362,0.346257][-0.0299106,1.58193,-2.73574][0.703355,0.541729,0][-1.20651,1.85036,0.538378][-0.289932,2.1291,-2.3138][0.703522,0.680911,0][-1.09968,1.59136,0.352617][0.0299145,-1.58194,2.73574][0.703396,0.541783,0][-1.20651,1.85036,0.538378][-0.289932,2.1291,-2.3138][0.703522,0.680911,0][-1.20566,1.84811,0.544739][0.289935,-2.1291,2.31381][0.703562,0.680966,0][-1.20566,1.84811,0.544739][0.289935,-2.1291,2.31381][0.703562,0.680966,0][-1.20651,1.85036,0.538378][-0.289932,2.1291,-2.3138][0.703522,0.680911,0][-1.29527,2.06271,0.799571][-0.195124,1.11331,-0.971407][0.704189,0.810405,0][-1.20566,1.84811,0.544739][0.289935,-2.1291,2.31381][0.703562,0.680966,0][-1.29527,2.06271,0.799571][-0.195124,1.11331,-0.971407][0.704189,0.810405,0][-1.29442,2.06045,0.805931][-0.495095,1.21011,0.494925][0.704229,0.81046,0][1.93926e-007,-0.800332,-1.28374][-2.2431e-007,-0.611045,-0.791596][0.387965,0.983622,0][-0.375282,-0.800332,-1.2447][-0.157109,-0.61278,-0.774479][0.327168,0.983622,0][-0.352134,-0.130986,-1.11494][-0.207148,0.223033,-0.952547][0.330918,0.866324,0][1.93926e-007,-0.800332,-1.28374][-2.2431e-007,-0.611045,-0.791596][0.387965,0.983622,0][-0.352134,-0.130986,-1.11494][-0.207148,0.223033,-0.952547][0.330918,0.866324,0][1.7334e-007,-0.109768,-1.14741][-1.08787e-006,0.22349,-0.974706][0.387965,0.86623,0][-0.741147,-0.800332,-1.13266][-0.352858,-0.597272,-0.720248][0.267897,0.983622,0][-1.23626,-0.800332,-0.784064][-0.365933,-0.661542,-0.654565][0.187687,0.983622,0][-1.19748,-0.400705,-0.716646][-0.487603,0.21869,-0.845233][0.193971,0.912286,0][-0.741147,-0.800332,-1.13266][-0.352858,-0.597272,-0.720248][0.267897,0.983622,0][-1.19748,-0.400705,-0.716646][-0.487603,0.21869,-0.845233][0.193971,0.912286,0][-0.695434,-0.177296,-1.0093][-0.442834,0.227251,-0.867326][0.275303,0.866529,0][-1.23626,-0.800332,-0.784064][-0.365933,-0.661542,-0.654565][0.187687,0.983622,0][-1.61256,-0.800332,-0.62654][-0.269826,-0.638216,-0.721023][0.126725,0.983622,0][-1.57039,-0.497479,-0.57346][-0.349691,0.231702,-0.907761][0.133557,0.929561,0][-1.23626,-0.800332,-0.784064][-0.365933,-0.661542,-0.654565][0.187687,0.983622,0][-1.57039,-0.497479,-0.57346][-0.349691,0.231702,-0.907761][0.133557,0.929561,0][-1.19748,-0.400705,-0.716646][-0.487603,0.21869,-0.845233][0.193971,0.912286,0][1.7334e-007,-0.109768,-1.14741][-1.08787e-006,0.22349,-0.974706][0.387965,0.86623,0][-0.352134,-0.130986,-1.11494][-0.207148,0.223033,-0.952547][0.330918,0.866324,0][-0.328987,0.522987,-0.948707][-0.218457,0.274767,-0.936365][0.334668,0.752758,0][1.7334e-007,-0.109768,-1.14741][-1.08787e-006,0.22349,-0.974706][0.387965,0.86623,0][-0.328987,0.522987,-0.948707][-0.218457,0.274767,-0.936365][0.334668,0.752758,0][1.47001e-007,0.54806,-0.972977][0,0.275138,-0.961405][0.387965,0.75303,0][-0.695434,-0.177296,-1.0093][-0.442834,0.227251,-0.867326][0.275303,0.866529,0][-1.19748,-0.400705,-0.716646][-0.487603,0.21869,-0.845233][0.193971,0.912286,0][-1.15282,-0.0110025,-0.632566][-0.508328,0.25909,-0.821264][0.201205,0.842722,0][-0.695434,-0.177296,-1.0093][-0.442834,0.227251,-0.867326][0.275303,0.866529,0][-1.15282,-0.0110025,-0.632566][-0.508328,0.25909,-0.821264][0.201205,0.842722,0][-0.64972,0.441333,-0.851061][-0.462686,0.273677,-0.843221][0.282708,0.751873,0][-1.19748,-0.400705,-0.716646][-0.487603,0.21869,-0.845233][0.193971,0.912286,0][-1.57039,-0.497479,-0.57346][-0.349691,0.231702,-0.907761][0.133557,0.929561,0][-1.52545,-0.217103,-0.508035][-0.362658,0.276891,-0.889838][0.140838,0.879512,0][-1.19748,-0.400705,-0.716646][-0.487603,0.21869,-0.845233][0.193971,0.912286,0][-1.52545,-0.217103,-0.508035][-0.362658,0.276891,-0.889838][0.140838,0.879512,0][-1.15282,-0.0110025,-0.632566][-0.508328,0.25909,-0.821264][0.201205,0.842722,0][1.47001e-007,0.54806,-0.972977][0,0.275138,-0.961405][0.387965,0.75303,0][-0.328987,0.522987,-0.948707][-0.218457,0.274767,-0.936365][0.334668,0.752758,0][-0.30584,0.982356,-0.809133][-0.26702,0.774639,-0.573267][0.338418,0.671773,0][1.47001e-007,0.54806,-0.972977][0,0.275138,-0.961405][0.387965,0.75303,0][-0.30584,0.982356,-0.809133][-0.26702,0.774639,-0.573267][0.338418,0.671773,0][1.25476e-007,1.02118,-0.830423][0,0.808298,-0.588773][0.387965,0.671318,0][-0.64972,0.441333,-0.851061][-0.462686,0.273677,-0.843221][0.282708,0.751873,0][-1.15282,-0.0110025,-0.632566][-0.508328,0.25909,-0.821264][0.201205,0.842722,0][-1.10336,0.378697,-0.533099][-0.691697,0.56665,-0.447732][0.209218,0.773158,0][-0.64972,0.441333,-0.851061][-0.462686,0.273677,-0.843221][0.282708,0.751873,0][-1.10336,0.378697,-0.533099][-0.691697,0.56665,-0.447732][0.209218,0.773158,0][-0.62131,0.86712,-0.714391][-0.553662,0.694194,-0.459949][0.287311,0.673124,0][-1.15282,-0.0110025,-0.632566][-0.508328,0.25909,-0.821264][0.201205,0.842722,0][-1.52545,-0.217103,-0.508035][-0.362658,0.276891,-0.889838][0.140838,0.879512,0][-1.47512,0.0697794,-0.430443][-0.540342,0.65455,-0.528768][0.148992,0.828302,0][-1.15282,-0.0110025,-0.632566][-0.508328,0.25909,-0.821264][0.201205,0.842722,0][-1.47512,0.0697794,-0.430443][-0.540342,0.65455,-0.528768][0.148992,0.828302,0][-1.10336,0.378697,-0.533099][-0.691697,0.56665,-0.447732][0.209218,0.773158,0][1.25476e-007,1.02118,-0.830423][0,0.808298,-0.588773][0.29063,0.254772,0][-0.30584,0.982356,-0.809133][-0.26702,0.774639,-0.573267][0.292932,0.221706,0][-0.30584,0.981385,-0.637289][-0.172557,0.923958,0.341358][0.311511,0.221706,0][1.25476e-007,1.02118,-0.830423][0,0.808298,-0.588773][0.29063,0.254772,0][-0.30584,0.981385,-0.637289][-0.172557,0.923958,0.341358][0.311511,0.221706,0][0,1.02023,-0.654539][5.73032e-007,0.934363,0.356323][0.309646,0.254772,0][-0.62131,0.86712,-0.714391][-0.553662,0.694194,-0.459949][0.303175,0.187599,0][-1.10336,0.378697,-0.533099][-0.691697,0.56665,-0.447732][0.322775,0.135481,0][-1.10336,0.379376,-0.368876][-0.567381,0.739895,0.361433][0.34053,0.135481,0][-0.62131,0.86712,-0.714391][-0.553662,0.694194,-0.459949][0.303175,0.187599,0][-1.10336,0.379376,-0.368876][-0.567381,0.739895,0.361433][0.34053,0.135481,0][-0.62131,0.866122,-0.546485][-0.419333,0.839193,0.346287][0.321328,0.187599,0][-1.10336,0.378697,-0.533099][-0.691697,0.56665,-0.447732][0.322775,0.135481,0][-1.47512,0.0697794,-0.430443][-0.540342,0.65455,-0.528768][0.333874,0.095288,0][-1.47709,0.0694256,-0.286941][-0.439982,0.828369,0.346729][0.349389,0.095075,0][-1.10336,0.378697,-0.533099][-0.691697,0.56665,-0.447732][0.322775,0.135481,0][-1.47709,0.0694256,-0.286941][-0.439982,0.828369,0.346729][0.349389,0.095075,0][-1.10336,0.379376,-0.368876][-0.567381,0.739895,0.361433][0.34053,0.135481,0][0,0.875451,-0.507686][2.22541e-006,0.888843,0.458211][0.325523,0.254772,0][-0.303111,0.843003,-0.489472][-0.121257,0.883214,0.453024][0.327492,0.222001,0][-0.30584,0.776656,0.000568149][-0.212406,0.977181,0][0.380473,0.221706,0][0,0.875451,-0.507686][2.22541e-006,0.888843,0.458211][0.325523,0.254772,0][-0.30584,0.776656,0.000568149][-0.212406,0.977181,0][0.380473,0.221706,0][0,0.809567,0.000568196][0,1,0][0.380473,0.254772,0][-0.61592,0.733982,-0.397729][-0.407954,0.817135,0.407264][0.337411,0.188181,0][-1.10766,0.252816,-0.248065][-0.542622,0.740642,0.396247][0.353592,0.135017,0][-1.11872,0.205884,0.000568001][-0.62965,0.776879,0][0.380473,0.133821,0][-0.61592,0.733982,-0.397729][-0.407954,0.817135,0.407264][0.337411,0.188181,0][-1.11872,0.205884,0.000568001][-0.62965,0.776879,0][0.380473,0.133821,0][-0.62131,0.667182,0.000568096][-0.525983,0.850495,-5.98605e-007][0.380473,0.187599,0][-1.10766,0.252816,-0.248065][-0.542622,0.740642,0.396247][0.353592,0.135017,0][-1.47364,-0.0239477,-0.181514][-0.402083,0.82588,0.395287][0.360787,0.095448,0][-1.48397,-0.0572691,0.000567934][-0.458762,0.888559,3.24019e-007][0.380473,0.094332,0][-1.10766,0.252816,-0.248065][-0.542622,0.740642,0.396247][0.353592,0.135017,0][-1.48397,-0.0572691,0.000567934][-0.458762,0.888559,3.24019e-007][0.380473,0.094332,0][-1.11872,0.205884,0.000568001][-0.62965,0.776879,0][0.380473,0.133821,0][0,-0.11896,0.000568156][0,-1,0][0.141064,0.255248,0][-0.548214,-0.144164,0.000568072][0.197954,-0.980211,0][0.200335,0.255248,0][-0.548214,-0.193817,-0.415946][0.22415,-0.955086,0.193825][0.200335,0.300279,0][0,-0.11896,0.000568156][0,-1,0][0.141064,0.255248,0][-0.548214,-0.193817,-0.415946][0.22415,-0.955086,0.193825][0.200335,0.300279,0][0,-0.141337,-0.431799][0,-0.990667,0.136307][0.141064,0.301993,0][-0.967376,-0.312442,0.000568001][0.634363,-0.773036,2.79391e-007][0.245653,0.255248,0][-1.1511,-0.568565,0.000567962][0.91273,-0.408563,8.07309e-007][0.265516,0.255248,0][-1.10198,-0.568565,-0.300376][0.875733,-0.397187,0.274471][0.260206,0.287784,0][-0.967376,-0.312442,0.000568001][0.634363,-0.773036,2.79391e-007][0.245653,0.255248,0][-1.10198,-0.568565,-0.300376][0.875733,-0.397187,0.274471][0.260206,0.287784,0][-0.914596,-0.314008,-0.355076][0.60631,-0.760255,0.233239][0.239947,0.293698,0][-1.23626,-0.800332,0.000567939][0,-1,0][0.140561,0.122025,0][-1.60322,-0.800332,0.000567884][-0.000754917,-1,0][0.140561,0.082351,0][-1.60406,-0.800332,-0.19727][0,-1,0][0.16195,0.08226,0][-1.23626,-0.800332,0.000567939][0,-1,0][0.140561,0.122025,0][-1.60406,-0.800332,-0.19727][0,-1,0][0.16195,0.08226,0][-1.23626,-0.800332,-0.245676][0,-1,0][0.167184,0.122025,0][1.3917e-007,-0.239794,-0.921115][0,-0.838468,0.544951][0.141064,0.354896,0][-0.375282,-0.290267,-0.891019][0.244584,-0.782581,0.57249][0.181638,0.351642,0][-0.375282,-0.572028,-1.08187][0.321479,-0.36047,0.875621][0.181638,0.372276,0][1.3917e-007,-0.239794,-0.921115][0,-0.838468,0.544951][0.141064,0.354896,0][-0.375282,-0.572028,-1.08187][0.321479,-0.36047,0.875621][0.181638,0.372276,0][1.75504e-007,-0.570228,-1.16174][0,-0.366376,0.930467][0.141064,0.380911,0][-0.659875,-0.303988,-0.744016][0.37824,-0.83076,0.408377][0.297539,0.515954,0][-0.911465,-0.568565,-0.702197][0.744448,-0.353565,0.566382][0.30206,0.544559,0][-0.709102,-0.568565,-0.893327][0.546265,-0.398091,0.736965][0.281396,0.544559,0][-1.23626,-0.800332,-0.540428][0,-1,0][0.199051,0.122025,0][-1.61521,-0.800332,-0.422864][0,-1,0][0.186341,0.081055,0][-1.61256,-0.800332,-0.62654][-0.269826,-0.638216,-0.721023][0.208361,0.081341,0][-1.23626,-0.800332,-0.540428][0,-1,0][0.199051,0.122025,0][-1.61256,-0.800332,-0.62654][-0.269826,-0.638216,-0.721023][0.208361,0.081341,0][-1.23626,-0.800332,-0.784064][-0.365933,-0.661542,-0.654565][0.225392,0.122025,0][-2.27934,-0.800332,-0.127049][-0.564629,-0.789526,0.240505][0.151035,0.611307,0][-2.27429,-0.7918,0.000567783][-0.719064,-0.694944,2.79533e-006][0.137237,0.610384,0][-2.27382,-0.62147,0.000567791][-0.99634,0.0854743,6.80975e-007][0.137237,0.591969,0][-2.27934,-0.800332,-0.127049][-0.564629,-0.789526,0.240505][0.151035,0.611307,0][-2.27382,-0.62147,0.000567791][-0.99634,0.0854743,6.80975e-007][0.137237,0.591969,0][-2.27758,-0.629738,-0.118866][-0.933722,0.0583984,0.353204][0.15015,0.592863,0][-2.33054,-0.800332,-0.386299][-0.626979,-0.556596,-0.545068][0.179064,0.611307,0][-2.34649,-0.800332,-0.209707][-0.744567,-0.631468,0.216491][0.159971,0.611307,0][-2.34377,-0.617772,-0.200562][-0.957406,0.0698482,0.28017][0.158983,0.591569,0][-2.33054,-0.800332,-0.386299][-0.626979,-0.556596,-0.545068][0.179064,0.611307,0][-2.34377,-0.617772,-0.200562][-0.957406,0.0698482,0.28017][0.158983,0.591569,0][-2.32499,-0.612895,-0.357896][-0.765638,0.164588,-0.621859][0.175993,0.591042,0][-2.27758,-0.629738,-0.118866][-0.933722,0.0583984,0.353204][0.15015,0.592863,0][-2.27382,-0.62147,0.000567791][-0.99634,0.0854743,6.80975e-007][0.137237,0.591969,0][-2.24676,-0.451579,0.000567802][-0.986141,0.165911,0][0.137237,0.573601,0][-2.27758,-0.629738,-0.118866][-0.933722,0.0583984,0.353204][0.15015,0.592863,0][-2.24676,-0.451579,0.000567802][-0.986141,0.165911,0][0.137237,0.573601,0][-2.25297,-0.469652,-0.112164][-0.921143,0.137226,0.364231][0.149426,0.575555,0][-2.32499,-0.612895,-0.357896][-0.765638,0.164588,-0.621859][0.175993,0.591042,0][-2.34377,-0.617772,-0.200562][-0.957406,0.0698482,0.28017][0.158983,0.591569,0][-2.31794,-0.446103,-0.189157][-0.941051,0.17186,0.291354][0.15775,0.573009,0][-2.32499,-0.612895,-0.357896][-0.765638,0.164588,-0.621859][0.175993,0.591042,0][-2.31794,-0.446103,-0.189157][-0.941051,0.17186,0.291354][0.15775,0.573009,0][-2.30272,-0.442719,-0.327128][-0.753311,0.254758,-0.606317][0.172667,0.572643,0][-2.25297,-0.469652,-0.112164][-0.921143,0.137226,0.364231][0.149426,0.575555,0][-2.24676,-0.451579,0.000567802][-0.986141,0.165911,0][0.137237,0.573601,0][-2.22416,-0.325181,0.000567811][-0.792546,0.609812,0][0.137237,0.559936,0][-2.25297,-0.469652,-0.112164][-0.921143,0.137226,0.364231][0.149426,0.575555,0][-2.22416,-0.325181,0.000567811][-0.792546,0.609812,0][0.137237,0.559936,0][-2.21753,-0.307364,-0.0981452][-0.671619,0.586607,0.45257][0.14791,0.558009,0][-2.30272,-0.442719,-0.327128][-0.753311,0.254758,-0.606317][0.172667,0.572643,0][-2.31794,-0.446103,-0.189157][-0.941051,0.17186,0.291354][0.15775,0.573009,0][-2.25989,-0.238137,-0.174997][-0.687169,0.63696,0.3494][0.156219,0.550525,0][-2.30272,-0.442719,-0.327128][-0.753311,0.254758,-0.606317][0.172667,0.572643,0][-2.25989,-0.238137,-0.174997][-0.687169,0.63696,0.3494][0.156219,0.550525,0][-2.24803,-0.233367,-0.289566][-0.6385,0.599653,-0.482425][0.168605,0.550009,0][0,1.02023,-0.654539][5.73032e-007,0.934363,0.356323][0.309646,0.254772,0][-0.30584,0.981385,-0.637289][-0.172557,0.923958,0.341358][0.311511,0.221706,0][-0.303111,0.843003,-0.489472][-0.121257,0.883214,0.453024][0.327492,0.222001,0][0,1.02023,-0.654539][5.73032e-007,0.934363,0.356323][0.309646,0.254772,0][-0.303111,0.843003,-0.489472][-0.121257,0.883214,0.453024][0.327492,0.222001,0][0,0.875451,-0.507686][2.22541e-006,0.888843,0.458211][0.325523,0.254772,0][-0.62131,0.866122,-0.546485][-0.419333,0.839193,0.346287][0.321328,0.187599,0][-1.10336,0.379376,-0.368876][-0.567381,0.739895,0.361433][0.34053,0.135481,0][-1.10766,0.252816,-0.248065][-0.542622,0.740642,0.396247][0.353592,0.135017,0][-0.62131,0.866122,-0.546485][-0.419333,0.839193,0.346287][0.321328,0.187599,0][-1.10766,0.252816,-0.248065][-0.542622,0.740642,0.396247][0.353592,0.135017,0][-0.61592,0.733982,-0.397729][-0.407954,0.817135,0.407264][0.337411,0.188181,0][-1.10336,0.379376,-0.368876][-0.567381,0.739895,0.361433][0.34053,0.135481,0][-1.47709,0.0694256,-0.286941][-0.439982,0.828369,0.346729][0.349389,0.095075,0][-1.47364,-0.0239477,-0.181514][-0.402083,0.82588,0.395287][0.360787,0.095448,0][-1.10336,0.379376,-0.368876][-0.567381,0.739895,0.361433][0.34053,0.135481,0][-1.47364,-0.0239477,-0.181514][-0.402083,0.82588,0.395287][0.360787,0.095448,0][-1.10766,0.252816,-0.248065][-0.542622,0.740642,0.396247][0.353592,0.135017,0][-2.31794,-0.446103,-0.189157][-0.941051,0.17186,0.291354][0.15775,0.573009,0][-2.25297,-0.469652,-0.112164][-0.921143,0.137226,0.364231][0.149426,0.575555,0][-2.21753,-0.307364,-0.0981452][-0.671619,0.586607,0.45257][0.14791,0.558009,0][-2.31794,-0.446103,-0.189157][-0.941051,0.17186,0.291354][0.15775,0.573009,0][-2.21753,-0.307364,-0.0981452][-0.671619,0.586607,0.45257][0.14791,0.558009,0][-2.25989,-0.238137,-0.174997][-0.687169,0.63696,0.3494][0.156219,0.550525,0][-2.34377,-0.617772,-0.200562][-0.957406,0.0698482,0.28017][0.158983,0.591569,0][-2.27758,-0.629738,-0.118866][-0.933722,0.0583984,0.353204][0.15015,0.592863,0][-2.25297,-0.469652,-0.112164][-0.921143,0.137226,0.364231][0.149426,0.575555,0][-2.34377,-0.617772,-0.200562][-0.957406,0.0698482,0.28017][0.158983,0.591569,0][-2.25297,-0.469652,-0.112164][-0.921143,0.137226,0.364231][0.149426,0.575555,0][-2.31794,-0.446103,-0.189157][-0.941051,0.17186,0.291354][0.15775,0.573009,0][-2.34649,-0.800332,-0.209707][-0.744567,-0.631468,0.216491][0.159971,0.611307,0][-2.27934,-0.800332,-0.127049][-0.564629,-0.789526,0.240505][0.151035,0.611307,0][-2.27758,-0.629738,-0.118866][-0.933722,0.0583984,0.353204][0.15015,0.592863,0][-2.34649,-0.800332,-0.209707][-0.744567,-0.631468,0.216491][0.159971,0.611307,0][-2.27758,-0.629738,-0.118866][-0.933722,0.0583984,0.353204][0.15015,0.592863,0][-2.34377,-0.617772,-0.200562][-0.957406,0.0698482,0.28017][0.158983,0.591569,0][-1.23626,-0.800332,-0.245676][0,-1,0][0.167184,0.122025,0][-1.60406,-0.800332,-0.19727][0,-1,0][0.16195,0.08226,0][-1.61521,-0.800332,-0.422864][0,-1,0][0.186341,0.081055,0][-1.23626,-0.800332,-0.245676][0,-1,0][0.167184,0.122025,0][-1.61521,-0.800332,-0.422864][0,-1,0][0.186341,0.081055,0][-1.23626,-0.800332,-0.540428][0,-1,0][0.199051,0.122025,0][-0.914596,-0.314008,-0.355076][0.60631,-0.760255,0.233239][0.239947,0.293698,0][-1.10198,-0.568565,-0.300376][0.875733,-0.397187,0.274471][0.260206,0.287784,0][-0.911465,-0.568565,-0.702197][0.744448,-0.353565,0.566382][0.239608,0.331228,0][-0.914596,-0.314008,-0.355076][0.60631,-0.760255,0.233239][0.239947,0.293698,0][-0.911465,-0.568565,-0.702197][0.744448,-0.353565,0.566382][0.239608,0.331228,0][-0.659875,-0.303988,-0.744016][0.37824,-0.83076,0.408377][0.212407,0.335749,0][0,-0.141337,-0.431799][0,-0.990667,0.136307][0.141064,0.301993,0][-0.548214,-0.193817,-0.415946][0.22415,-0.955086,0.193825][0.200335,0.300279,0][-0.375282,-0.290267,-0.891019][0.244584,-0.782581,0.57249][0.181638,0.351642,0][0,-0.141337,-0.431799][0,-0.990667,0.136307][0.141064,0.301993,0][-0.375282,-0.290267,-0.891019][0.244584,-0.782581,0.57249][0.181638,0.351642,0][1.3917e-007,-0.239794,-0.921115][0,-0.838468,0.544951][0.141064,0.354896,0][-1.60322,-0.800332,0.000567884][-0.000754917,-1,0][0.140561,0.082351,0][-2.27429,-0.7918,0.000567783][-0.719064,-0.694944,2.79533e-006][0.140561,0.009798,0][-2.27934,-0.800332,-0.127049][-0.564629,-0.789526,0.240505][0.154359,0.009252,0][-1.60322,-0.800332,0.000567884][-0.000754917,-1,0][0.140561,0.082351,0][-2.27934,-0.800332,-0.127049][-0.564629,-0.789526,0.240505][0.154359,0.009252,0][-1.60406,-0.800332,-0.19727][0,-1,0][0.16195,0.08226,0][-1.61521,-0.800332,-0.422864][0,-1,0][0.186341,0.081055,0][-1.60406,-0.800332,-0.19727][0,-1,0][0.16195,0.08226,0][-2.27934,-0.800332,-0.127049][-0.564629,-0.789526,0.240505][0.154359,0.009252,0][-1.61521,-0.800332,-0.422864][0,-1,0][0.186341,0.081055,0][-2.27934,-0.800332,-0.127049][-0.564629,-0.789526,0.240505][0.154359,0.009252,0][-2.34649,-0.800332,-0.209707][-0.744567,-0.631468,0.216491][0.163295,0.001992,0][-1.61256,-0.800332,-0.62654][-0.269826,-0.638216,-0.721023][0.208361,0.081341,0][-1.61521,-0.800332,-0.422864][0,-1,0][0.186341,0.081055,0][-2.34649,-0.800332,-0.209707][-0.744567,-0.631468,0.216491][0.163295,0.001992,0][-1.61256,-0.800332,-0.62654][-0.269826,-0.638216,-0.721023][0.208361,0.081341,0][-2.34649,-0.800332,-0.209707][-0.744567,-0.631468,0.216491][0.163295,0.001992,0][-2.33054,-0.800332,-0.386299][-0.626979,-0.556596,-0.545068][0.182387,0.003716,0][-1.57039,-0.497479,-0.57346][-0.349691,0.231702,-0.907761][0.133557,0.929561,0][-1.61256,-0.800332,-0.62654][-0.269826,-0.638216,-0.721023][0.126725,0.983622,0][-2.33054,-0.800332,-0.386299][-0.626979,-0.556596,-0.545068][0.01041,0.983622,0][-1.57039,-0.497479,-0.57346][-0.349691,0.231702,-0.907761][0.133557,0.929561,0][-2.33054,-0.800332,-0.386299][-0.626979,-0.556596,-0.545068][0.01041,0.983622,0][-2.32499,-0.612895,-0.357896][-0.765638,0.164588,-0.621859][0.011309,0.950163,0][-1.52545,-0.217103,-0.508035][-0.362658,0.276891,-0.889838][0.140838,0.879512,0][-1.57039,-0.497479,-0.57346][-0.349691,0.231702,-0.907761][0.133557,0.929561,0][-2.32499,-0.612895,-0.357896][-0.765638,0.164588,-0.621859][0.011309,0.950163,0][-1.52545,-0.217103,-0.508035][-0.362658,0.276891,-0.889838][0.140838,0.879512,0][-2.32499,-0.612895,-0.357896][-0.765638,0.164588,-0.621859][0.011309,0.950163,0][-2.30272,-0.442719,-0.327128][-0.753311,0.254758,-0.606317][0.014918,0.919786,0][-1.47512,0.0697794,-0.430443][-0.540342,0.65455,-0.528768][0.148992,0.828302,0][-1.52545,-0.217103,-0.508035][-0.362658,0.276891,-0.889838][0.140838,0.879512,0][-2.30272,-0.442719,-0.327128][-0.753311,0.254758,-0.606317][0.014918,0.919786,0][-1.47512,0.0697794,-0.430443][-0.540342,0.65455,-0.528768][0.148992,0.828302,0][-2.30272,-0.442719,-0.327128][-0.753311,0.254758,-0.606317][0.014918,0.919786,0][-2.24803,-0.233367,-0.289566][-0.6385,0.599653,-0.482425][0.023778,0.882415,0][-1.47709,0.0694256,-0.286941][-0.439982,0.828369,0.346729][0.349389,0.095075,0][-1.47512,0.0697794,-0.430443][-0.540342,0.65455,-0.528768][0.333874,0.095288,0][-2.24803,-0.233367,-0.289566][-0.6385,0.599653,-0.482425][0.349105,0.011724,0][-1.47709,0.0694256,-0.286941][-0.439982,0.828369,0.346729][0.349389,0.095075,0][-2.24803,-0.233367,-0.289566][-0.6385,0.599653,-0.482425][0.349105,0.011724,0][-2.25989,-0.238137,-0.174997][-0.687169,0.63696,0.3494][0.361492,0.010442,0][-1.47364,-0.0239477,-0.181514][-0.402083,0.82588,0.395287][0.360787,0.095448,0][-1.47709,0.0694256,-0.286941][-0.439982,0.828369,0.346729][0.349389,0.095075,0][-2.25989,-0.238137,-0.174997][-0.687169,0.63696,0.3494][0.361492,0.010442,0][-1.47364,-0.0239477,-0.181514][-0.402083,0.82588,0.395287][0.360787,0.095448,0][-2.25989,-0.238137,-0.174997][-0.687169,0.63696,0.3494][0.361492,0.010442,0][-2.21753,-0.307364,-0.0981452][-0.671619,0.586607,0.45257][0.369801,0.015022,0][-1.48397,-0.0572691,0.000567934][-0.458762,0.888559,3.24019e-007][0.380473,0.094332,0][-1.47364,-0.0239477,-0.181514][-0.402083,0.82588,0.395287][0.360787,0.095448,0][-2.21753,-0.307364,-0.0981452][-0.671619,0.586607,0.45257][0.369801,0.015022,0][-1.48397,-0.0572691,0.000567934][-0.458762,0.888559,3.24019e-007][0.380473,0.094332,0][-2.21753,-0.307364,-0.0981452][-0.671619,0.586607,0.45257][0.369801,0.015022,0][-2.22416,-0.325181,0.000567811][-0.792546,0.609812,0][0.380473,0.014305,0][-1.19185,-0.800332,0.000567946][0.633827,-0.773475,7.74719e-007][0.140561,0.126827,0][-1.23626,-0.800332,0.000567939][0,-1,0][0.140561,0.122025,0][-1.23626,-0.800332,-0.245676][0,-1,0][0.167184,0.122025,0][-1.19185,-0.800332,0.000567946][0.633827,-0.773475,7.74719e-007][0.140561,0.126827,0][-1.23626,-0.800332,-0.245676][0,-1,0][0.167184,0.122025,0][-1.18263,-0.800332,-0.245676][0.551708,-0.823471,0.132342][0.167184,0.127823,0][-1.03178,-0.800332,-0.62451][0.481205,-0.834966,0.26697][0.208142,0.144132,0][-1.18263,-0.800332,-0.245676][0.551708,-0.823471,0.132342][0.167184,0.127823,0][-1.23626,-0.800332,-0.245676][0,-1,0][0.167184,0.122025,0][-1.03178,-0.800332,-0.62451][0.481205,-0.834966,0.26697][0.208142,0.144132,0][-1.23626,-0.800332,-0.245676][0,-1,0][0.167184,0.122025,0][-1.23626,-0.800332,-0.540428][0,-1,0][0.199051,0.122025,0][-0.741147,-0.800332,-0.98803][0.276269,-0.875667,0.396085][0.247444,0.175554,0][-1.03178,-0.800332,-0.62451][0.481205,-0.834966,0.26697][0.208142,0.144132,0][-1.23626,-0.800332,-0.540428][0,-1,0][0.199051,0.122025,0][-0.741147,-0.800332,-0.98803][0.276269,-0.875667,0.396085][0.247444,0.175554,0][-1.23626,-0.800332,-0.540428][0,-1,0][0.199051,0.122025,0][-1.23626,-0.800332,-0.784064][-0.365933,-0.661542,-0.654565][0.225392,0.122025,0][-0.741147,-0.800332,-0.98803][0.276269,-0.875667,0.396085][0.247444,0.175554,0][-1.23626,-0.800332,-0.784064][-0.365933,-0.661542,-0.654565][0.225392,0.122025,0][-0.741147,-0.800332,-1.13266][-0.352858,-0.597272,-0.720248][0.26308,0.175554,0][1.797e-007,-0.800331,-1.18953][1.61979e-007,-0.785275,0.619147][0.26923,0.255684,0][-0.375282,-0.800332,-1.12496][0.191476,-0.795932,0.574307][0.262249,0.21511,0][-0.375282,-0.800332,-1.2447][-0.157109,-0.61278,-0.774479][0.275194,0.21511,0][1.797e-007,-0.800331,-1.18953][1.61979e-007,-0.785275,0.619147][0.26923,0.255684,0][-0.375282,-0.800332,-1.2447][-0.157109,-0.61278,-0.774479][0.275194,0.21511,0][1.93926e-007,-0.800332,-1.28374][-2.2431e-007,-0.611045,-0.791596][0.279415,0.255684,0][-0.548214,-0.144164,0.000568072][0.197954,-0.980211,0][0.200335,0.255248,0][-0.967376,-0.312442,0.000568001][0.634363,-0.773036,2.79391e-007][0.245653,0.255248,0][-0.914596,-0.314008,-0.355076][0.60631,-0.760255,0.233239][0.239947,0.293698,0][-0.548214,-0.144164,0.000568072][0.197954,-0.980211,0][0.200335,0.255248,0][-0.914596,-0.314008,-0.355076][0.60631,-0.760255,0.233239][0.239947,0.293698,0][-0.548214,-0.193817,-0.415946][0.22415,-0.955086,0.193825][0.200335,0.300279,0][-0.375282,-0.290267,-0.891019][0.244584,-0.782581,0.57249][0.181638,0.351642,0][-0.548214,-0.193817,-0.415946][0.22415,-0.955086,0.193825][0.200335,0.300279,0][-0.914596,-0.314008,-0.355076][0.60631,-0.760255,0.233239][0.239947,0.293698,0][-0.375282,-0.290267,-0.891019][0.244584,-0.782581,0.57249][0.181638,0.351642,0][-0.914596,-0.314008,-0.355076][0.60631,-0.760255,0.233239][0.239947,0.293698,0][-0.659875,-0.303988,-0.744016][0.37824,-0.83076,0.408377][0.212407,0.335749,0][-0.375282,-0.572028,-1.08187][0.321479,-0.36047,0.875621][0.181638,0.372276,0][-0.375282,-0.290267,-0.891019][0.244584,-0.782581,0.57249][0.181638,0.351642,0][-0.659875,-0.303988,-0.744016][0.37824,-0.83076,0.408377][0.212407,0.335749,0][-0.375282,-0.572028,-1.08187][0.321479,-0.36047,0.875621][0.181638,0.372276,0][-0.659875,-0.303988,-0.744016][0.37824,-0.83076,0.408377][0.212407,0.335749,0][-0.709102,-0.568565,-0.893327][0.546265,-0.398091,0.736965][0.217729,0.351892,0][-0.375282,-0.800332,-1.2447][-0.157109,-0.61278,-0.774479][0.275194,0.21511,0][-0.375282,-0.800332,-1.12496][0.191476,-0.795932,0.574307][0.262249,0.21511,0][-0.741147,-0.800332,-0.98803][0.276269,-0.875667,0.396085][0.247444,0.175554,0][-0.375282,-0.800332,-1.2447][-0.157109,-0.61278,-0.774479][0.275194,0.21511,0][-0.741147,-0.800332,-0.98803][0.276269,-0.875667,0.396085][0.247444,0.175554,0][-0.741147,-0.800332,-1.13266][-0.352858,-0.597272,-0.720248][0.26308,0.175554,0][-0.352134,-0.130986,-1.11494][-0.207148,0.223033,-0.952547][0.330918,0.866324,0][-0.375282,-0.800332,-1.2447][-0.157109,-0.61278,-0.774479][0.327168,0.983622,0][-0.741147,-0.800332,-1.13266][-0.352858,-0.597272,-0.720248][0.267897,0.983622,0][-0.352134,-0.130986,-1.11494][-0.207148,0.223033,-0.952547][0.330918,0.866324,0][-0.741147,-0.800332,-1.13266][-0.352858,-0.597272,-0.720248][0.267897,0.983622,0][-0.695434,-0.177296,-1.0093][-0.442834,0.227251,-0.867326][0.275303,0.866529,0][-0.328987,0.522987,-0.948707][-0.218457,0.274767,-0.936365][0.334668,0.752758,0][-0.352134,-0.130986,-1.11494][-0.207148,0.223033,-0.952547][0.330918,0.866324,0][-0.695434,-0.177296,-1.0093][-0.442834,0.227251,-0.867326][0.275303,0.866529,0][-0.328987,0.522987,-0.948707][-0.218457,0.274767,-0.936365][0.334668,0.752758,0][-0.695434,-0.177296,-1.0093][-0.442834,0.227251,-0.867326][0.275303,0.866529,0][-0.64972,0.441333,-0.851061][-0.462686,0.273677,-0.843221][0.282708,0.751873,0][-0.30584,0.982356,-0.809133][-0.26702,0.774639,-0.573267][0.338418,0.671773,0][-0.328987,0.522987,-0.948707][-0.218457,0.274767,-0.936365][0.334668,0.752758,0][-0.64972,0.441333,-0.851061][-0.462686,0.273677,-0.843221][0.282708,0.751873,0][-0.30584,0.982356,-0.809133][-0.26702,0.774639,-0.573267][0.338418,0.671773,0][-0.64972,0.441333,-0.851061][-0.462686,0.273677,-0.843221][0.282708,0.751873,0][-0.62131,0.86712,-0.714391][-0.553662,0.694194,-0.459949][0.287311,0.673124,0][-0.30584,0.981385,-0.637289][-0.172557,0.923958,0.341358][0.311511,0.221706,0][-0.30584,0.982356,-0.809133][-0.26702,0.774639,-0.573267][0.292932,0.221706,0][-0.62131,0.86712,-0.714391][-0.553662,0.694194,-0.459949][0.303175,0.187599,0][-0.30584,0.981385,-0.637289][-0.172557,0.923958,0.341358][0.311511,0.221706,0][-0.62131,0.86712,-0.714391][-0.553662,0.694194,-0.459949][0.303175,0.187599,0][-0.62131,0.866122,-0.546485][-0.419333,0.839193,0.346287][0.321328,0.187599,0][-0.303111,0.843003,-0.489472][-0.121257,0.883214,0.453024][0.327492,0.222001,0][-0.30584,0.981385,-0.637289][-0.172557,0.923958,0.341358][0.311511,0.221706,0][-0.62131,0.866122,-0.546485][-0.419333,0.839193,0.346287][0.321328,0.187599,0][-0.303111,0.843003,-0.489472][-0.121257,0.883214,0.453024][0.327492,0.222001,0][-0.62131,0.866122,-0.546485][-0.419333,0.839193,0.346287][0.321328,0.187599,0][-0.61592,0.733982,-0.397729][-0.407954,0.817135,0.407264][0.337411,0.188181,0][-0.30584,0.776656,0.000568149][-0.212406,0.977181,0][0.380473,0.221706,0][-0.303111,0.843003,-0.489472][-0.121257,0.883214,0.453024][0.327492,0.222001,0][-0.61592,0.733982,-0.397729][-0.407954,0.817135,0.407264][0.337411,0.188181,0][-0.30584,0.776656,0.000568149][-0.212406,0.977181,0][0.380473,0.221706,0][-0.61592,0.733982,-0.397729][-0.407954,0.817135,0.407264][0.337411,0.188181,0][-0.62131,0.667182,0.000568096][-0.525983,0.850495,-5.98605e-007][0.380473,0.187599,0][-1.1511,-0.568565,0.000567962][0.91273,-0.408563,8.07309e-007][0.37804,0.544559,0][-1.19185,-0.800332,0.000567946][0.633827,-0.773475,7.74719e-007][0.37804,0.569616,0][-1.18263,-0.800332,-0.245676][0.551708,-0.823471,0.132342][0.351417,0.569616,0][-1.1511,-0.568565,0.000567962][0.91273,-0.408563,8.07309e-007][0.37804,0.544559,0][-1.18263,-0.800332,-0.245676][0.551708,-0.823471,0.132342][0.351417,0.569616,0][-1.10198,-0.568565,-0.300376][0.875733,-0.397187,0.274471][0.345503,0.544559,0][-0.911465,-0.568565,-0.702197][0.744448,-0.353565,0.566382][0.30206,0.544559,0][-1.10198,-0.568565,-0.300376][0.875733,-0.397187,0.274471][0.345503,0.544559,0][-1.18263,-0.800332,-0.245676][0.551708,-0.823471,0.132342][0.351417,0.569616,0][-0.911465,-0.568565,-0.702197][0.744448,-0.353565,0.566382][0.30206,0.544559,0][-1.18263,-0.800332,-0.245676][0.551708,-0.823471,0.132342][0.351417,0.569616,0][-1.03178,-0.800332,-0.62451][0.481205,-0.834966,0.26697][0.310459,0.569616,0][-0.709102,-0.568565,-0.893327][0.546265,-0.398091,0.736965][0.281396,0.544559,0][-0.911465,-0.568565,-0.702197][0.744448,-0.353565,0.566382][0.30206,0.544559,0][-1.03178,-0.800332,-0.62451][0.481205,-0.834966,0.26697][0.310459,0.569616,0][-0.709102,-0.568565,-0.893327][0.546265,-0.398091,0.736965][0.281396,0.544559,0][-1.03178,-0.800332,-0.62451][0.481205,-0.834966,0.26697][0.310459,0.569616,0][-0.741147,-0.800332,-0.98803][0.276269,-0.875667,0.396085][0.271157,0.569616,0][-0.375282,-0.800332,-1.12496][0.191476,-0.795932,0.574307][0.537121,0.619857,0][-0.375282,-0.572028,-1.08187][0.321479,-0.36047,0.875621][0.537121,0.64454,0][-0.709102,-0.568565,-0.893327][0.546265,-0.398091,0.736965][0.50103,0.644914,0][-0.375282,-0.800332,-1.12496][0.191476,-0.795932,0.574307][0.537121,0.619857,0][-0.709102,-0.568565,-0.893327][0.546265,-0.398091,0.736965][0.50103,0.644914,0][-0.741147,-0.800332,-0.98803][0.276269,-0.875667,0.396085][0.497566,0.619857,0][1.75504e-007,-0.570228,-1.16174][0,-0.366376,0.930467][0.577695,0.644735,0][-0.375282,-0.572028,-1.08187][0.321479,-0.36047,0.875621][0.537121,0.64454,0][-0.375282,-0.800332,-1.12496][0.191476,-0.795932,0.574307][0.537121,0.619857,0][1.75504e-007,-0.570228,-1.16174][0,-0.366376,0.930467][0.577695,0.644735,0][-0.375282,-0.800332,-1.12496][0.191476,-0.795932,0.574307][0.537121,0.619857,0][1.797e-007,-0.800331,-1.18953][1.61979e-007,-0.785275,0.619147][0.577695,0.619857,0][-1.93926e-007,-0.800333,1.28488][0,-0.611041,0.791599][0.68638,0.25396,0][-1.7334e-007,-0.109768,1.14855][0,0.22349,0.974706][0.611719,0.25396,0][-0.352134,-0.130986,1.11608][-0.207148,0.223033,0.952547][0.614013,0.215889,0][-1.93926e-007,-0.800333,1.28488][0,-0.611041,0.791599][0.68638,0.25396,0][-0.352134,-0.130986,1.11608][-0.207148,0.223033,0.952547][0.614013,0.215889,0][-0.375282,-0.800332,1.24584][-0.157111,-0.61278,0.774479][0.68638,0.213387,0][-0.741147,-0.800332,1.13379][-0.352858,-0.597272,0.720248][0.68638,0.173831,0][-0.695434,-0.177296,1.01044][-0.442835,0.227251,0.867326][0.61902,0.178773,0][-1.19748,-0.400705,0.717782][-0.487603,0.21869,0.845232][0.643174,0.124495,0][-0.741147,-0.800332,1.13379][-0.352858,-0.597272,0.720248][0.68638,0.173831,0][-1.19748,-0.400705,0.717782][-0.487603,0.21869,0.845232][0.643174,0.124495,0][-1.23627,-0.800332,0.7852][-0.365933,-0.661542,0.654565][0.68638,0.120301,0][-1.23627,-0.800332,0.7852][-0.365933,-0.661542,0.654565][0.68638,0.120301,0][-1.19748,-0.400705,0.717782][-0.487603,0.21869,0.845232][0.643174,0.124495,0][-1.57039,-0.497481,0.574596][-0.349691,0.231701,0.907761][0.653637,0.084176,0][-1.23627,-0.800332,0.7852][-0.365933,-0.661542,0.654565][0.68638,0.120301,0][-1.57039,-0.497481,0.574596][-0.349691,0.231701,0.907761][0.653637,0.084176,0][-1.61256,-0.800332,0.627676][-0.269826,-0.638216,0.721023][0.68638,0.079617,0][-1.7334e-007,-0.109768,1.14855][0,0.22349,0.974706][0.611719,0.25396,0][-1.47001e-007,0.548059,0.974113][0,0.275138,0.961405][0.540598,0.25396,0][-0.328987,0.522987,0.949843][-0.218457,0.274767,0.936365][0.543308,0.218392,0][-1.7334e-007,-0.109768,1.14855][0,0.22349,0.974706][0.611719,0.25396,0][-0.328987,0.522987,0.949843][-0.218457,0.274767,0.936365][0.543308,0.218392,0][-0.352134,-0.130986,1.11608][-0.207148,0.223033,0.952547][0.614013,0.215889,0][-0.695434,-0.177296,1.01044][-0.442835,0.227251,0.867326][0.61902,0.178773,0][-0.64972,0.441333,0.852197][-0.462686,0.273677,0.843221][0.552137,0.183716,0][-1.15282,-0.0110026,0.633702][-0.508329,0.25909,0.821264][0.601041,0.129323,0][-0.695434,-0.177296,1.01044][-0.442835,0.227251,0.867326][0.61902,0.178773,0][-1.15282,-0.0110026,0.633702][-0.508329,0.25909,0.821264][0.601041,0.129323,0][-1.19748,-0.400705,0.717782][-0.487603,0.21869,0.845232][0.643174,0.124495,0][-1.19748,-0.400705,0.717782][-0.487603,0.21869,0.845232][0.643174,0.124495,0][-1.15282,-0.0110026,0.633702][-0.508329,0.25909,0.821264][0.601041,0.129323,0][-1.52545,-0.217103,0.509171][-0.362658,0.27689,0.889838][0.623324,0.089036,0][-1.19748,-0.400705,0.717782][-0.487603,0.21869,0.845232][0.643174,0.124495,0][-1.52545,-0.217103,0.509171][-0.362658,0.27689,0.889838][0.623324,0.089036,0][-1.57039,-0.497481,0.574596][-0.349691,0.231701,0.907761][0.653637,0.084176,0][-1.47001e-007,0.548059,0.974113][0,0.275138,0.961405][0.540598,0.25396,0][-1.25476e-007,1.02118,0.831559][0,0.808297,0.588775][0.489446,0.25396,0][-0.30584,0.982356,0.810269][-0.267018,0.77464,0.573267][0.493643,0.220894,0][-1.47001e-007,0.548059,0.974113][0,0.275138,0.961405][0.540598,0.25396,0][-0.30584,0.982356,0.810269][-0.267018,0.77464,0.573267][0.493643,0.220894,0][-0.328987,0.522987,0.949843][-0.218457,0.274767,0.936365][0.543308,0.218392,0][-0.64972,0.441333,0.852197][-0.462686,0.273677,0.843221][0.552137,0.183716,0][-0.62131,0.86712,0.715527][-0.553662,0.694194,0.459949][0.506102,0.186787,0][-1.10336,0.378697,0.534235][-0.691697,0.56665,0.447731][0.558908,0.13467,0][-0.64972,0.441333,0.852197][-0.462686,0.273677,0.843221][0.552137,0.183716,0][-1.10336,0.378697,0.534235][-0.691697,0.56665,0.447731][0.558908,0.13467,0][-1.15282,-0.0110026,0.633702][-0.508329,0.25909,0.821264][0.601041,0.129323,0][-1.15282,-0.0110026,0.633702][-0.508329,0.25909,0.821264][0.601041,0.129323,0][-1.10336,0.378697,0.534235][-0.691697,0.56665,0.447731][0.558908,0.13467,0][-1.47512,0.0697794,0.431579][-0.540342,0.65455,0.528768][0.592307,0.094477,0][-1.15282,-0.0110026,0.633702][-0.508329,0.25909,0.821264][0.601041,0.129323,0][-1.47512,0.0697794,0.431579][-0.540342,0.65455,0.528768][0.592307,0.094477,0][-1.52545,-0.217103,0.509171][-0.362658,0.27689,0.889838][0.623324,0.089036,0][-1.25476e-007,1.02118,0.831559][0,0.808297,0.588775][0.470316,0.254772,0][0,1.02023,0.655675][0,0.934364,-0.356319][0.4513,0.254772,0][-0.30584,0.981385,0.638425][-0.172555,0.923959,-0.341357][0.449435,0.221706,0][-1.25476e-007,1.02118,0.831559][0,0.808297,0.588775][0.470316,0.254772,0][-0.30584,0.981385,0.638425][-0.172555,0.923959,-0.341357][0.449435,0.221706,0][-0.30584,0.982356,0.810269][-0.267018,0.77464,0.573267][0.468014,0.221706,0][-0.62131,0.86712,0.715527][-0.553662,0.694194,0.459949][0.457771,0.187599,0][-0.62131,0.866122,0.547622][-0.419333,0.839193,-0.346286][0.439618,0.187599,0][-1.10336,0.379376,0.370013][-0.567382,0.739895,-0.361431][0.420416,0.135481,0][-0.62131,0.86712,0.715527][-0.553662,0.694194,0.459949][0.457771,0.187599,0][-1.10336,0.379376,0.370013][-0.567382,0.739895,-0.361431][0.420416,0.135481,0][-1.10336,0.378697,0.534235][-0.691697,0.56665,0.447731][0.438171,0.135481,0][-1.10336,0.378697,0.534235][-0.691697,0.56665,0.447731][0.438171,0.135481,0][-1.10336,0.379376,0.370013][-0.567382,0.739895,-0.361431][0.420416,0.135481,0][-1.47709,0.0694256,0.288077][-0.43998,0.828368,-0.346732][0.411557,0.095075,0][-1.10336,0.378697,0.534235][-0.691697,0.56665,0.447731][0.438171,0.135481,0][-1.47709,0.0694256,0.288077][-0.43998,0.828368,-0.346732][0.411557,0.095075,0][-1.47512,0.0697794,0.431579][-0.540342,0.65455,0.528768][0.427072,0.095288,0][0,0.875451,0.508822][0,0.888844,-0.45821][0.435423,0.254772,0][0,0.809567,0.000568196][0,1,0][0.380473,0.254772,0][-0.30584,0.776656,0.000568149][-0.212406,0.977181,0][0.380473,0.221706,0][0,0.875451,0.508822][0,0.888844,-0.45821][0.435423,0.254772,0][-0.30584,0.776656,0.000568149][-0.212406,0.977181,0][0.380473,0.221706,0][-0.303111,0.843003,0.490608][-0.121257,0.883214,-0.453023][0.433454,0.222001,0][-0.615921,0.733982,0.398866][-0.407954,0.817135,-0.407264][0.423535,0.188181,0][-0.62131,0.667182,0.000568096][-0.525983,0.850495,-5.98605e-007][0.380473,0.187599,0][-1.11872,0.205884,0.000568001][-0.62965,0.776879,0][0.380473,0.133821,0][-0.615921,0.733982,0.398866][-0.407954,0.817135,-0.407264][0.423535,0.188181,0][-1.11872,0.205884,0.000568001][-0.62965,0.776879,0][0.380473,0.133821,0][-1.10766,0.252816,0.249201][-0.542623,0.740642,-0.396244][0.407354,0.135017,0][-1.10766,0.252816,0.249201][-0.542623,0.740642,-0.396244][0.407354,0.135017,0][-1.11872,0.205884,0.000568001][-0.62965,0.776879,0][0.380473,0.133821,0][-1.48397,-0.0572691,0.000567934][-0.458762,0.888559,3.24019e-007][0.380473,0.094332,0][-1.10766,0.252816,0.249201][-0.542623,0.740642,-0.396244][0.407354,0.135017,0][-1.48397,-0.0572691,0.000567934][-0.458762,0.888559,3.24019e-007][0.380473,0.094332,0][-1.47364,-0.0239477,0.182651][-0.402082,0.82588,-0.395289][0.400159,0.095448,0][0,-0.11896,0.000568156][0,-1,0][0.141064,0.255248,0][0,-0.141337,0.432935][0,-0.990666,-0.136309][0.141064,0.208502,0][-0.548214,-0.193817,0.417082][0.22415,-0.955085,-0.193827][0.200335,0.210216,0][0,-0.11896,0.000568156][0,-1,0][0.141064,0.255248,0][-0.548214,-0.193817,0.417082][0.22415,-0.955085,-0.193827][0.200335,0.210216,0][-0.548214,-0.144164,0.000568072][0.197954,-0.980211,0][0.200335,0.255248,0][-0.967376,-0.312442,0.000568001][0.634363,-0.773036,2.79391e-007][0.245653,0.255248,0][-0.914596,-0.314008,0.356212][0.60631,-0.760255,-0.233239][0.239947,0.216797,0][-1.10198,-0.568564,0.301512][0.875733,-0.397188,-0.27447][0.260206,0.222711,0][-0.967376,-0.312442,0.000568001][0.634363,-0.773036,2.79391e-007][0.245653,0.255248,0][-1.10198,-0.568564,0.301512][0.875733,-0.397188,-0.27447][0.260206,0.222711,0][-1.1511,-0.568565,0.000567962][0.91273,-0.408563,8.07309e-007][0.265516,0.255248,0][-1.23626,-0.800332,0.000567939][0,-1,0][0.140561,0.122025,0][-1.23626,-0.800332,0.246812][1.39697e-005,-1,-1.86523e-006][0.113938,0.122025,0][-1.60406,-0.800332,0.198406][0,-1,0][0.119172,0.08226,0][-1.23626,-0.800332,0.000567939][0,-1,0][0.140561,0.122025,0][-1.60406,-0.800332,0.198406][0,-1,0][0.119172,0.08226,0][-1.60322,-0.800332,0.000567884][-0.000754917,-1,0][0.140561,0.082351,0][-1.3917e-007,-0.239794,0.922251][2.74474e-007,-0.838469,-0.54495][0.141064,0.155599,0][-1.75504e-007,-0.570229,1.16288][-2.22248e-007,-0.366376,-0.930467][0.141064,0.129584,0][-0.375282,-0.572028,1.08301][0.321479,-0.360471,-0.875621][0.181638,0.138219,0][-1.3917e-007,-0.239794,0.922251][2.74474e-007,-0.838469,-0.54495][0.141064,0.155599,0][-0.375282,-0.572028,1.08301][0.321479,-0.360471,-0.875621][0.181638,0.138219,0][-0.375282,-0.29027,0.892155][0.244584,-0.782581,-0.57249][0.181638,0.158853,0][-0.659875,-0.303988,0.745153][0.378234,-0.830765,-0.408374][0.458541,0.515954,0][-0.709103,-0.568565,0.894463][0.546265,-0.39809,-0.736966][0.474684,0.544559,0][-0.911465,-0.568565,0.703334][0.744449,-0.353566,-0.566381][0.45402,0.544559,0][-1.23627,-0.800332,0.541564][0,-1,0][0.082071,0.122025,0][-1.23627,-0.800332,0.7852][-0.365933,-0.661542,0.654565][0.05573,0.122025,0][-1.61256,-0.800332,0.627676][-0.269826,-0.638216,0.721023][0.072761,0.081341,0][-1.23627,-0.800332,0.541564][0,-1,0][0.082071,0.122025,0][-1.61256,-0.800332,0.627676][-0.269826,-0.638216,0.721023][0.072761,0.081341,0][-1.61521,-0.800332,0.424][0,-1,0][0.094781,0.081055,0][-2.27934,-0.800332,0.128185][-0.564626,-0.789528,-0.240505][0.12344,0.611307,0][-2.27758,-0.629738,0.120002][-0.933722,0.0583976,-0.353204][0.124325,0.592863,0][-2.27382,-0.62147,0.000567791][-0.99634,0.0854743,6.80975e-007][0.137237,0.591969,0][-2.27934,-0.800332,0.128185][-0.564626,-0.789528,-0.240505][0.12344,0.611307,0][-2.27382,-0.62147,0.000567791][-0.99634,0.0854743,6.80975e-007][0.137237,0.591969,0][-2.27429,-0.7918,0.000567783][-0.719064,-0.694944,2.79533e-006][0.137237,0.610384,0][-2.33054,-0.800332,0.387435][-0.626979,-0.556596,0.545068][0.095411,0.611307,0][-2.32499,-0.612895,0.359032][-0.765639,0.164587,0.621858][0.098482,0.591042,0][-2.34377,-0.617772,0.201698][-0.957406,0.0698508,-0.28017][0.115492,0.591569,0][-2.33054,-0.800332,0.387435][-0.626979,-0.556596,0.545068][0.095411,0.611307,0][-2.34377,-0.617772,0.201698][-0.957406,0.0698508,-0.28017][0.115492,0.591569,0][-2.34649,-0.800332,0.210843][-0.744567,-0.631468,-0.216493][0.114503,0.611307,0][-2.27758,-0.629738,0.120002][-0.933722,0.0583976,-0.353204][0.124325,0.592863,0][-2.25297,-0.469652,0.113301][-0.921143,0.137226,-0.364232][0.125049,0.575555,0][-2.24676,-0.451579,0.000567802][-0.986141,0.165911,0][0.137237,0.573601,0][-2.27758,-0.629738,0.120002][-0.933722,0.0583976,-0.353204][0.124325,0.592863,0][-2.24676,-0.451579,0.000567802][-0.986141,0.165911,0][0.137237,0.573601,0][-2.27382,-0.62147,0.000567791][-0.99634,0.0854743,6.80975e-007][0.137237,0.591969,0][-2.32499,-0.612895,0.359032][-0.765639,0.164587,0.621858][0.098482,0.591042,0][-2.30272,-0.442719,0.328265][-0.753312,0.254755,0.606317][0.101808,0.572643,0][-2.31794,-0.446103,0.190293][-0.94105,0.17186,-0.291356][0.116725,0.573009,0][-2.32499,-0.612895,0.359032][-0.765639,0.164587,0.621858][0.098482,0.591042,0][-2.31794,-0.446103,0.190293][-0.94105,0.17186,-0.291356][0.116725,0.573009,0][-2.34377,-0.617772,0.201698][-0.957406,0.0698508,-0.28017][0.115492,0.591569,0][-2.25297,-0.469652,0.113301][-0.921143,0.137226,-0.364232][0.125049,0.575555,0][-2.21753,-0.307364,0.0992808][-0.67162,0.586607,-0.452569][0.126565,0.558009,0][-2.22416,-0.325181,0.000567811][-0.792546,0.609812,0][0.137237,0.559936,0][-2.25297,-0.469652,0.113301][-0.921143,0.137226,-0.364232][0.125049,0.575555,0][-2.22416,-0.325181,0.000567811][-0.792546,0.609812,0][0.137237,0.559936,0][-2.24676,-0.451579,0.000567802][-0.986141,0.165911,0][0.137237,0.573601,0][-2.30272,-0.442719,0.328265][-0.753312,0.254755,0.606317][0.101808,0.572643,0][-2.24803,-0.233367,0.290702][-0.638501,0.599654,0.482423][0.105869,0.550009,0][-2.25989,-0.238137,0.176133][-0.68717,0.636959,-0.349401][0.118256,0.550525,0][-2.30272,-0.442719,0.328265][-0.753312,0.254755,0.606317][0.101808,0.572643,0][-2.25989,-0.238137,0.176133][-0.68717,0.636959,-0.349401][0.118256,0.550525,0][-2.31794,-0.446103,0.190293][-0.94105,0.17186,-0.291356][0.116725,0.573009,0][0,1.02023,0.655675][0,0.934364,-0.356319][0.4513,0.254772,0][0,0.875451,0.508822][0,0.888844,-0.45821][0.435423,0.254772,0][-0.303111,0.843003,0.490608][-0.121257,0.883214,-0.453023][0.433454,0.222001,0][0,1.02023,0.655675][0,0.934364,-0.356319][0.4513,0.254772,0][-0.303111,0.843003,0.490608][-0.121257,0.883214,-0.453023][0.433454,0.222001,0][-0.30584,0.981385,0.638425][-0.172555,0.923959,-0.341357][0.449435,0.221706,0][-0.62131,0.866122,0.547622][-0.419333,0.839193,-0.346286][0.439618,0.187599,0][-0.615921,0.733982,0.398866][-0.407954,0.817135,-0.407264][0.423535,0.188181,0][-1.10766,0.252816,0.249201][-0.542623,0.740642,-0.396244][0.407354,0.135017,0][-0.62131,0.866122,0.547622][-0.419333,0.839193,-0.346286][0.439618,0.187599,0][-1.10766,0.252816,0.249201][-0.542623,0.740642,-0.396244][0.407354,0.135017,0][-1.10336,0.379376,0.370013][-0.567382,0.739895,-0.361431][0.420416,0.135481,0][-1.10336,0.379376,0.370013][-0.567382,0.739895,-0.361431][0.420416,0.135481,0][-1.10766,0.252816,0.249201][-0.542623,0.740642,-0.396244][0.407354,0.135017,0][-1.47364,-0.0239477,0.182651][-0.402082,0.82588,-0.395289][0.400159,0.095448,0][-1.10336,0.379376,0.370013][-0.567382,0.739895,-0.361431][0.420416,0.135481,0][-1.47364,-0.0239477,0.182651][-0.402082,0.82588,-0.395289][0.400159,0.095448,0][-1.47709,0.0694256,0.288077][-0.43998,0.828368,-0.346732][0.411557,0.095075,0][-2.31794,-0.446103,0.190293][-0.94105,0.17186,-0.291356][0.116725,0.573009,0][-2.25989,-0.238137,0.176133][-0.68717,0.636959,-0.349401][0.118256,0.550525,0][-2.21753,-0.307364,0.0992808][-0.67162,0.586607,-0.452569][0.126565,0.558009,0][-2.31794,-0.446103,0.190293][-0.94105,0.17186,-0.291356][0.116725,0.573009,0][-2.21753,-0.307364,0.0992808][-0.67162,0.586607,-0.452569][0.126565,0.558009,0][-2.25297,-0.469652,0.113301][-0.921143,0.137226,-0.364232][0.125049,0.575555,0][-2.34377,-0.617772,0.201698][-0.957406,0.0698508,-0.28017][0.115492,0.591569,0][-2.31794,-0.446103,0.190293][-0.94105,0.17186,-0.291356][0.116725,0.573009,0][-2.25297,-0.469652,0.113301][-0.921143,0.137226,-0.364232][0.125049,0.575555,0][-2.34377,-0.617772,0.201698][-0.957406,0.0698508,-0.28017][0.115492,0.591569,0][-2.25297,-0.469652,0.113301][-0.921143,0.137226,-0.364232][0.125049,0.575555,0][-2.27758,-0.629738,0.120002][-0.933722,0.0583976,-0.353204][0.124325,0.592863,0][-2.34649,-0.800332,0.210843][-0.744567,-0.631468,-0.216493][0.114503,0.611307,0][-2.34377,-0.617772,0.201698][-0.957406,0.0698508,-0.28017][0.115492,0.591569,0][-2.27758,-0.629738,0.120002][-0.933722,0.0583976,-0.353204][0.124325,0.592863,0][-2.34649,-0.800332,0.210843][-0.744567,-0.631468,-0.216493][0.114503,0.611307,0][-2.27758,-0.629738,0.120002][-0.933722,0.0583976,-0.353204][0.124325,0.592863,0][-2.27934,-0.800332,0.128185][-0.564626,-0.789528,-0.240505][0.12344,0.611307,0][-1.23626,-0.800332,0.246812][1.39697e-005,-1,-1.86523e-006][0.113938,0.122025,0][-1.23627,-0.800332,0.541564][0,-1,0][0.082071,0.122025,0][-1.61521,-0.800332,0.424][0,-1,0][0.094781,0.081055,0][-1.23626,-0.800332,0.246812][1.39697e-005,-1,-1.86523e-006][0.113938,0.122025,0][-1.61521,-0.800332,0.424][0,-1,0][0.094781,0.081055,0][-1.60406,-0.800332,0.198406][0,-1,0][0.119172,0.08226,0][-0.914596,-0.314008,0.356212][0.60631,-0.760255,-0.233239][0.239947,0.216797,0][-0.659875,-0.303988,0.745153][0.378234,-0.830765,-0.408374][0.212407,0.174746,0][-0.911465,-0.568565,0.703334][0.744449,-0.353566,-0.566381][0.239608,0.179268,0][-0.914596,-0.314008,0.356212][0.60631,-0.760255,-0.233239][0.239947,0.216797,0][-0.911465,-0.568565,0.703334][0.744449,-0.353566,-0.566381][0.239608,0.179268,0][-1.10198,-0.568564,0.301512][0.875733,-0.397188,-0.27447][0.260206,0.222711,0][0,-0.141337,0.432935][0,-0.990666,-0.136309][0.141064,0.208502,0][-1.3917e-007,-0.239794,0.922251][2.74474e-007,-0.838469,-0.54495][0.141064,0.155599,0][-0.375282,-0.29027,0.892155][0.244584,-0.782581,-0.57249][0.181638,0.158853,0][0,-0.141337,0.432935][0,-0.990666,-0.136309][0.141064,0.208502,0][-0.375282,-0.29027,0.892155][0.244584,-0.782581,-0.57249][0.181638,0.158853,0][-0.548214,-0.193817,0.417082][0.22415,-0.955085,-0.193827][0.200335,0.210216,0][-1.60322,-0.800332,0.000567884][-0.000754917,-1,0][0.140561,0.082351,0][-1.60406,-0.800332,0.198406][0,-1,0][0.119172,0.08226,0][-2.27934,-0.800332,0.128185][-0.564626,-0.789528,-0.240505][0.126764,0.009252,0][-1.60322,-0.800332,0.000567884][-0.000754917,-1,0][0.140561,0.082351,0][-2.27934,-0.800332,0.128185][-0.564626,-0.789528,-0.240505][0.126764,0.009252,0][-2.27429,-0.7918,0.000567783][-0.719064,-0.694944,2.79533e-006][0.140561,0.009798,0][-1.61521,-0.800332,0.424][0,-1,0][0.094781,0.081055,0][-2.34649,-0.800332,0.210843][-0.744567,-0.631468,-0.216493][0.117827,0.001992,0][-2.27934,-0.800332,0.128185][-0.564626,-0.789528,-0.240505][0.126764,0.009252,0][-1.61521,-0.800332,0.424][0,-1,0][0.094781,0.081055,0][-2.27934,-0.800332,0.128185][-0.564626,-0.789528,-0.240505][0.126764,0.009252,0][-1.60406,-0.800332,0.198406][0,-1,0][0.119172,0.08226,0][-1.61256,-0.800332,0.627676][-0.269826,-0.638216,0.721023][0.072761,0.081341,0][-2.33054,-0.800332,0.387435][-0.626979,-0.556596,0.545068][0.098735,0.003716,0][-2.34649,-0.800332,0.210843][-0.744567,-0.631468,-0.216493][0.117827,0.001992,0][-1.61256,-0.800332,0.627676][-0.269826,-0.638216,0.721023][0.072761,0.081341,0][-2.34649,-0.800332,0.210843][-0.744567,-0.631468,-0.216493][0.117827,0.001992,0][-1.61521,-0.800332,0.424][0,-1,0][0.094781,0.081055,0][-1.57039,-0.497481,0.574596][-0.349691,0.231701,0.907761][0.653637,0.084176,0][-2.32499,-0.612895,0.359032][-0.765639,0.164587,0.621858][0.666115,0.002592,0][-2.33054,-0.800332,0.387435][-0.626979,-0.556596,0.545068][0.68638,0.001992,0][-1.57039,-0.497481,0.574596][-0.349691,0.231701,0.907761][0.653637,0.084176,0][-2.33054,-0.800332,0.387435][-0.626979,-0.556596,0.545068][0.68638,0.001992,0][-1.61256,-0.800332,0.627676][-0.269826,-0.638216,0.721023][0.68638,0.079617,0][-1.52545,-0.217103,0.509171][-0.362658,0.27689,0.889838][0.623324,0.089036,0][-2.30272,-0.442719,0.328265][-0.753312,0.254755,0.606317][0.647716,0.005,0][-2.32499,-0.612895,0.359032][-0.765639,0.164587,0.621858][0.666115,0.002592,0][-1.52545,-0.217103,0.509171][-0.362658,0.27689,0.889838][0.623324,0.089036,0][-2.32499,-0.612895,0.359032][-0.765639,0.164587,0.621858][0.666115,0.002592,0][-1.57039,-0.497481,0.574596][-0.349691,0.231701,0.907761][0.653637,0.084176,0][-1.47512,0.0697794,0.431579][-0.540342,0.65455,0.528768][0.592307,0.094477,0][-2.24803,-0.233367,0.290702][-0.638501,0.599654,0.482423][0.625082,0.010913,0][-2.30272,-0.442719,0.328265][-0.753312,0.254755,0.606317][0.647716,0.005,0][-1.47512,0.0697794,0.431579][-0.540342,0.65455,0.528768][0.592307,0.094477,0][-2.30272,-0.442719,0.328265][-0.753312,0.254755,0.606317][0.647716,0.005,0][-1.52545,-0.217103,0.509171][-0.362658,0.27689,0.889838][0.623324,0.089036,0][-1.47709,0.0694256,0.288077][-0.43998,0.828368,-0.346732][0.411557,0.095075,0][-2.25989,-0.238137,0.176133][-0.68717,0.636959,-0.349401][0.399454,0.010442,0][-2.24803,-0.233367,0.290702][-0.638501,0.599654,0.482423][0.411841,0.011724,0][-1.47709,0.0694256,0.288077][-0.43998,0.828368,-0.346732][0.411557,0.095075,0][-2.24803,-0.233367,0.290702][-0.638501,0.599654,0.482423][0.411841,0.011724,0][-1.47512,0.0697794,0.431579][-0.540342,0.65455,0.528768][0.427072,0.095288,0][-1.47364,-0.0239477,0.182651][-0.402082,0.82588,-0.395289][0.400159,0.095448,0][-2.21753,-0.307364,0.0992808][-0.67162,0.586607,-0.452569][0.391146,0.015022,0][-2.25989,-0.238137,0.176133][-0.68717,0.636959,-0.349401][0.399454,0.010442,0][-1.47364,-0.0239477,0.182651][-0.402082,0.82588,-0.395289][0.400159,0.095448,0][-2.25989,-0.238137,0.176133][-0.68717,0.636959,-0.349401][0.399454,0.010442,0][-1.47709,0.0694256,0.288077][-0.43998,0.828368,-0.346732][0.411557,0.095075,0][-1.48397,-0.0572691,0.000567934][-0.458762,0.888559,3.24019e-007][0.380473,0.094332,0][-2.22416,-0.325181,0.000567811][-0.792546,0.609812,0][0.380473,0.014305,0][-2.21753,-0.307364,0.0992808][-0.67162,0.586607,-0.452569][0.391146,0.015022,0][-1.48397,-0.0572691,0.000567934][-0.458762,0.888559,3.24019e-007][0.380473,0.094332,0][-2.21753,-0.307364,0.0992808][-0.67162,0.586607,-0.452569][0.391146,0.015022,0][-1.47364,-0.0239477,0.182651][-0.402082,0.82588,-0.395289][0.400159,0.095448,0][-1.19185,-0.800332,0.000567946][0.633827,-0.773475,7.74719e-007][0.140561,0.126827,0][-1.18263,-0.80033,0.246812][0.551725,-0.823458,-0.132345][0.113938,0.127823,0][-1.23626,-0.800332,0.246812][1.39697e-005,-1,-1.86523e-006][0.113938,0.122025,0][-1.19185,-0.800332,0.000567946][0.633827,-0.773475,7.74719e-007][0.140561,0.126827,0][-1.23626,-0.800332,0.246812][1.39697e-005,-1,-1.86523e-006][0.113938,0.122025,0][-1.23626,-0.800332,0.000567939][0,-1,0][0.140561,0.122025,0][-1.03178,-0.800332,0.625647][0.481205,-0.834966,-0.26697][0.07298,0.144132,0][-1.23627,-0.800332,0.541564][0,-1,0][0.082071,0.122025,0][-1.23626,-0.800332,0.246812][1.39697e-005,-1,-1.86523e-006][0.113938,0.122025,0][-1.03178,-0.800332,0.625647][0.481205,-0.834966,-0.26697][0.07298,0.144132,0][-1.23626,-0.800332,0.246812][1.39697e-005,-1,-1.86523e-006][0.113938,0.122025,0][-1.18263,-0.80033,0.246812][0.551725,-0.823458,-0.132345][0.113938,0.127823,0][-0.741147,-0.800332,0.989166][0.276269,-0.875666,-0.396086][0.033678,0.175554,0][-0.741147,-0.800332,1.13379][-0.352858,-0.597272,0.720248][0.018042,0.175554,0][-1.23627,-0.800332,0.7852][-0.365933,-0.661542,0.654565][0.05573,0.122025,0][-0.741147,-0.800332,0.989166][0.276269,-0.875666,-0.396086][0.033678,0.175554,0][-1.23627,-0.800332,0.7852][-0.365933,-0.661542,0.654565][0.05573,0.122025,0][-1.23627,-0.800332,0.541564][0,-1,0][0.082071,0.122025,0][-0.741147,-0.800332,0.989166][0.276269,-0.875666,-0.396086][0.033678,0.175554,0][-1.23627,-0.800332,0.541564][0,-1,0][0.082071,0.122025,0][-1.03178,-0.800332,0.625647][0.481205,-0.834966,-0.26697][0.07298,0.144132,0][-1.797e-007,-0.800333,1.19067][0,-0.785281,-0.61914][0.011893,0.255684,0][-1.93926e-007,-0.800333,1.28488][0,-0.611041,0.791599][0.001707,0.255684,0][-0.375282,-0.800332,1.24584][-0.157111,-0.61278,0.774479][0.005928,0.21511,0][-1.797e-007,-0.800333,1.19067][0,-0.785281,-0.61914][0.011893,0.255684,0][-0.375282,-0.800332,1.24584][-0.157111,-0.61278,0.774479][0.005928,0.21511,0][-0.375282,-0.800332,1.1261][0.191474,-0.795932,-0.574308][0.018873,0.21511,0][-0.548214,-0.144164,0.000568072][0.197954,-0.980211,0][0.200335,0.255248,0][-0.548214,-0.193817,0.417082][0.22415,-0.955085,-0.193827][0.200335,0.210216,0][-0.914596,-0.314008,0.356212][0.60631,-0.760255,-0.233239][0.239947,0.216797,0][-0.548214,-0.144164,0.000568072][0.197954,-0.980211,0][0.200335,0.255248,0][-0.914596,-0.314008,0.356212][0.60631,-0.760255,-0.233239][0.239947,0.216797,0][-0.967376,-0.312442,0.000568001][0.634363,-0.773036,2.79391e-007][0.245653,0.255248,0][-0.375282,-0.29027,0.892155][0.244584,-0.782581,-0.57249][0.181638,0.158853,0][-0.659875,-0.303988,0.745153][0.378234,-0.830765,-0.408374][0.212407,0.174746,0][-0.914596,-0.314008,0.356212][0.60631,-0.760255,-0.233239][0.239947,0.216797,0][-0.375282,-0.29027,0.892155][0.244584,-0.782581,-0.57249][0.181638,0.158853,0][-0.914596,-0.314008,0.356212][0.60631,-0.760255,-0.233239][0.239947,0.216797,0][-0.548214,-0.193817,0.417082][0.22415,-0.955085,-0.193827][0.200335,0.210216,0][-0.375282,-0.572028,1.08301][0.321479,-0.360471,-0.875621][0.181638,0.138219,0][-0.709103,-0.568565,0.894463][0.546265,-0.39809,-0.736966][0.217729,0.158604,0][-0.659875,-0.303988,0.745153][0.378234,-0.830765,-0.408374][0.212407,0.174746,0][-0.375282,-0.572028,1.08301][0.321479,-0.360471,-0.875621][0.181638,0.138219,0][-0.659875,-0.303988,0.745153][0.378234,-0.830765,-0.408374][0.212407,0.174746,0][-0.375282,-0.29027,0.892155][0.244584,-0.782581,-0.57249][0.181638,0.158853,0][-0.375282,-0.800332,1.24584][-0.157111,-0.61278,0.774479][0.005928,0.21511,0][-0.741147,-0.800332,1.13379][-0.352858,-0.597272,0.720248][0.018042,0.175554,0][-0.741147,-0.800332,0.989166][0.276269,-0.875666,-0.396086][0.033678,0.175554,0][-0.375282,-0.800332,1.24584][-0.157111,-0.61278,0.774479][0.005928,0.21511,0][-0.741147,-0.800332,0.989166][0.276269,-0.875666,-0.396086][0.033678,0.175554,0][-0.375282,-0.800332,1.1261][0.191474,-0.795932,-0.574308][0.018873,0.21511,0][-0.352134,-0.130986,1.11608][-0.207148,0.223033,0.952547][0.614013,0.215889,0][-0.695434,-0.177296,1.01044][-0.442835,0.227251,0.867326][0.61902,0.178773,0][-0.741147,-0.800332,1.13379][-0.352858,-0.597272,0.720248][0.68638,0.173831,0][-0.352134,-0.130986,1.11608][-0.207148,0.223033,0.952547][0.614013,0.215889,0][-0.741147,-0.800332,1.13379][-0.352858,-0.597272,0.720248][0.68638,0.173831,0][-0.375282,-0.800332,1.24584][-0.157111,-0.61278,0.774479][0.68638,0.213387,0][-0.328987,0.522987,0.949843][-0.218457,0.274767,0.936365][0.543308,0.218392,0][-0.64972,0.441333,0.852197][-0.462686,0.273677,0.843221][0.552137,0.183716,0][-0.695434,-0.177296,1.01044][-0.442835,0.227251,0.867326][0.61902,0.178773,0][-0.328987,0.522987,0.949843][-0.218457,0.274767,0.936365][0.543308,0.218392,0][-0.695434,-0.177296,1.01044][-0.442835,0.227251,0.867326][0.61902,0.178773,0][-0.352134,-0.130986,1.11608][-0.207148,0.223033,0.952547][0.614013,0.215889,0][-0.30584,0.982356,0.810269][-0.267018,0.77464,0.573267][0.493643,0.220894,0][-0.62131,0.86712,0.715527][-0.553662,0.694194,0.459949][0.506102,0.186787,0][-0.64972,0.441333,0.852197][-0.462686,0.273677,0.843221][0.552137,0.183716,0][-0.30584,0.982356,0.810269][-0.267018,0.77464,0.573267][0.493643,0.220894,0][-0.64972,0.441333,0.852197][-0.462686,0.273677,0.843221][0.552137,0.183716,0][-0.328987,0.522987,0.949843][-0.218457,0.274767,0.936365][0.543308,0.218392,0][-0.30584,0.981385,0.638425][-0.172555,0.923959,-0.341357][0.449435,0.221706,0][-0.62131,0.866122,0.547622][-0.419333,0.839193,-0.346286][0.439618,0.187599,0][-0.62131,0.86712,0.715527][-0.553662,0.694194,0.459949][0.457771,0.187599,0][-0.30584,0.981385,0.638425][-0.172555,0.923959,-0.341357][0.449435,0.221706,0][-0.62131,0.86712,0.715527][-0.553662,0.694194,0.459949][0.457771,0.187599,0][-0.30584,0.982356,0.810269][-0.267018,0.77464,0.573267][0.468014,0.221706,0][-0.303111,0.843003,0.490608][-0.121257,0.883214,-0.453023][0.433454,0.222001,0][-0.615921,0.733982,0.398866][-0.407954,0.817135,-0.407264][0.423535,0.188181,0][-0.62131,0.866122,0.547622][-0.419333,0.839193,-0.346286][0.439618,0.187599,0][-0.303111,0.843003,0.490608][-0.121257,0.883214,-0.453023][0.433454,0.222001,0][-0.62131,0.866122,0.547622][-0.419333,0.839193,-0.346286][0.439618,0.187599,0][-0.30584,0.981385,0.638425][-0.172555,0.923959,-0.341357][0.449435,0.221706,0][-0.30584,0.776656,0.000568149][-0.212406,0.977181,0][0.380473,0.221706,0][-0.62131,0.667182,0.000568096][-0.525983,0.850495,-5.98605e-007][0.380473,0.187599,0][-0.615921,0.733982,0.398866][-0.407954,0.817135,-0.407264][0.423535,0.188181,0][-0.30584,0.776656,0.000568149][-0.212406,0.977181,0][0.380473,0.221706,0][-0.615921,0.733982,0.398866][-0.407954,0.817135,-0.407264][0.423535,0.188181,0][-0.303111,0.843003,0.490608][-0.121257,0.883214,-0.453023][0.433454,0.222001,0][-1.1511,-0.568565,0.000567962][0.91273,-0.408563,8.07309e-007][0.37804,0.544559,0][-1.10198,-0.568564,0.301512][0.875733,-0.397188,-0.27447][0.410577,0.544559,0][-1.18263,-0.80033,0.246812][0.551725,-0.823458,-0.132345][0.404663,0.569616,0][-1.1511,-0.568565,0.000567962][0.91273,-0.408563,8.07309e-007][0.37804,0.544559,0][-1.18263,-0.80033,0.246812][0.551725,-0.823458,-0.132345][0.404663,0.569616,0][-1.19185,-0.800332,0.000567946][0.633827,-0.773475,7.74719e-007][0.37804,0.569616,0][-0.911465,-0.568565,0.703334][0.744449,-0.353566,-0.566381][0.45402,0.544559,0][-1.03178,-0.800332,0.625647][0.481205,-0.834966,-0.26697][0.445621,0.569617,0][-1.18263,-0.80033,0.246812][0.551725,-0.823458,-0.132345][0.404663,0.569616,0][-0.911465,-0.568565,0.703334][0.744449,-0.353566,-0.566381][0.45402,0.544559,0][-1.18263,-0.80033,0.246812][0.551725,-0.823458,-0.132345][0.404663,0.569616,0][-1.10198,-0.568564,0.301512][0.875733,-0.397188,-0.27447][0.410577,0.544559,0][-0.709103,-0.568565,0.894463][0.546265,-0.39809,-0.736966][0.474684,0.544559,0][-0.741147,-0.800332,0.989166][0.276269,-0.875666,-0.396086][0.484923,0.569617,0][-1.03178,-0.800332,0.625647][0.481205,-0.834966,-0.26697][0.445621,0.569617,0][-0.709103,-0.568565,0.894463][0.546265,-0.39809,-0.736966][0.474684,0.544559,0][-1.03178,-0.800332,0.625647][0.481205,-0.834966,-0.26697][0.445621,0.569617,0][-0.911465,-0.568565,0.703334][0.744449,-0.353566,-0.566381][0.45402,0.544559,0][-0.375282,-0.800332,1.1261][0.191474,-0.795932,-0.574308][0.533674,0.6146,0][-0.741147,-0.800332,0.989166][0.276269,-0.875666,-0.396086][0.494118,0.6146,0][-0.709103,-0.568565,0.894463][0.546265,-0.39809,-0.736966][0.497583,0.589543,0][-0.375282,-0.800332,1.1261][0.191474,-0.795932,-0.574308][0.533674,0.6146,0][-0.709103,-0.568565,0.894463][0.546265,-0.39809,-0.736966][0.497583,0.589543,0][-0.375282,-0.572028,1.08301][0.321479,-0.360471,-0.875621][0.533674,0.589917,0][-1.75504e-007,-0.570229,1.16288][-2.22248e-007,-0.366376,-0.930467][0.574248,0.589723,0][-1.797e-007,-0.800333,1.19067][0,-0.785281,-0.61914][0.574248,0.6146,0][-0.375282,-0.800332,1.1261][0.191474,-0.795932,-0.574308][0.533674,0.6146,0][-1.75504e-007,-0.570229,1.16288][-2.22248e-007,-0.366376,-0.930467][0.574248,0.589723,0][-0.375282,-0.800332,1.1261][0.191474,-0.795932,-0.574308][0.533674,0.6146,0][-0.375282,-0.572028,1.08301][0.321479,-0.360471,-0.875621][0.533674,0.589917,0][1.93926e-007,-0.800332,-1.28374][-2.2431e-007,-0.611045,-0.791596][0.387965,0.983622,0][1.7334e-007,-0.109768,-1.14741][-1.08787e-006,0.22349,-0.974706][0.387965,0.86623,0][0.352134,-0.130986,-1.11494][0.207149,0.223033,-0.952547][0.445012,0.866324,0][1.93926e-007,-0.800332,-1.28374][-2.2431e-007,-0.611045,-0.791596][0.387965,0.983622,0][0.352134,-0.130986,-1.11494][0.207149,0.223033,-0.952547][0.445012,0.866324,0][0.375282,-0.800332,-1.2447][0.157109,-0.612783,-0.774476][0.448762,0.983622,0][0.741147,-0.800332,-1.13266][0.352858,-0.597273,-0.720248][0.508033,0.983622,0][0.695434,-0.177296,-1.0093][0.442836,0.227252,-0.867325][0.500627,0.866529,0][1.19748,-0.400705,-0.716646][0.487603,0.21869,-0.845232][0.58196,0.912286,0][0.741147,-0.800332,-1.13266][0.352858,-0.597273,-0.720248][0.508033,0.983622,0][1.19748,-0.400705,-0.716646][0.487603,0.21869,-0.845232][0.58196,0.912286,0][1.23627,-0.800332,-0.784064][0.365933,-0.661542,-0.654565][0.588244,0.983622,0][1.23627,-0.800332,-0.784064][0.365933,-0.661542,-0.654565][0.588244,0.983622,0][1.19748,-0.400705,-0.716646][0.487603,0.21869,-0.845232][0.58196,0.912286,0][1.57039,-0.497479,-0.57346][0.349691,0.231702,-0.907761][0.642374,0.929561,0][1.23627,-0.800332,-0.784064][0.365933,-0.661542,-0.654565][0.588244,0.983622,0][1.57039,-0.497479,-0.57346][0.349691,0.231702,-0.907761][0.642374,0.929561,0][1.61256,-0.800332,-0.62654][0.269826,-0.638215,-0.721024][0.649205,0.983622,0][1.7334e-007,-0.109768,-1.14741][-1.08787e-006,0.22349,-0.974706][0.387965,0.86623,0][1.47001e-007,0.54806,-0.972977][0,0.275138,-0.961405][0.387965,0.75303,0][0.328987,0.522987,-0.948707][0.218458,0.274767,-0.936365][0.441262,0.752758,0][1.7334e-007,-0.109768,-1.14741][-1.08787e-006,0.22349,-0.974706][0.387965,0.86623,0][0.328987,0.522987,-0.948707][0.218458,0.274767,-0.936365][0.441262,0.752758,0][0.352134,-0.130986,-1.11494][0.207149,0.223033,-0.952547][0.445012,0.866324,0][0.695434,-0.177296,-1.0093][0.442836,0.227252,-0.867325][0.500627,0.866529,0][0.64972,0.441335,-0.85106][0.462687,0.273677,-0.843221][0.493222,0.751873,0][1.15282,-0.0110025,-0.632566][0.508329,0.25909,-0.821264][0.574725,0.842722,0][0.695434,-0.177296,-1.0093][0.442836,0.227252,-0.867325][0.500627,0.866529,0][1.15282,-0.0110025,-0.632566][0.508329,0.25909,-0.821264][0.574725,0.842722,0][1.19748,-0.400705,-0.716646][0.487603,0.21869,-0.845232][0.58196,0.912286,0][1.19748,-0.400705,-0.716646][0.487603,0.21869,-0.845232][0.58196,0.912286,0][1.15282,-0.0110025,-0.632566][0.508329,0.25909,-0.821264][0.574725,0.842722,0][1.52545,-0.217103,-0.508035][0.362658,0.276891,-0.889837][0.635092,0.879512,0][1.19748,-0.400705,-0.716646][0.487603,0.21869,-0.845232][0.58196,0.912286,0][1.52545,-0.217103,-0.508035][0.362658,0.276891,-0.889837][0.635092,0.879512,0][1.57039,-0.497479,-0.57346][0.349691,0.231702,-0.907761][0.642374,0.929561,0][1.47001e-007,0.54806,-0.972977][0,0.275138,-0.961405][0.387965,0.75303,0][1.25476e-007,1.02118,-0.830423][0,0.808298,-0.588773][0.387965,0.671318,0][0.30584,0.982356,-0.809133][0.26702,0.774639,-0.573267][0.437512,0.671773,0][1.47001e-007,0.54806,-0.972977][0,0.275138,-0.961405][0.387965,0.75303,0][0.30584,0.982356,-0.809133][0.26702,0.774639,-0.573267][0.437512,0.671773,0][0.328987,0.522987,-0.948707][0.218458,0.274767,-0.936365][0.441262,0.752758,0][0.64972,0.441335,-0.85106][0.462687,0.273677,-0.843221][0.493222,0.751873,0][0.62131,0.86712,-0.714391][0.553662,0.694194,-0.459949][0.488619,0.673124,0][1.10336,0.378697,-0.533099][0.691697,0.566651,-0.447729][0.566713,0.773158,0][0.64972,0.441335,-0.85106][0.462687,0.273677,-0.843221][0.493222,0.751873,0][1.10336,0.378697,-0.533099][0.691697,0.566651,-0.447729][0.566713,0.773158,0][1.15282,-0.0110025,-0.632566][0.508329,0.25909,-0.821264][0.574725,0.842722,0][1.15282,-0.0110025,-0.632566][0.508329,0.25909,-0.821264][0.574725,0.842722,0][1.10336,0.378697,-0.533099][0.691697,0.566651,-0.447729][0.566713,0.773158,0][1.47512,0.0697794,-0.430443][0.540342,0.65455,-0.528768][0.626939,0.828302,0][1.15282,-0.0110025,-0.632566][0.508329,0.25909,-0.821264][0.574725,0.842722,0][1.47512,0.0697794,-0.430443][0.540342,0.65455,-0.528768][0.626939,0.828302,0][1.52545,-0.217103,-0.508035][0.362658,0.276891,-0.889837][0.635092,0.879512,0][1.25476e-007,1.02118,-0.830423][0,0.808298,-0.588773][0.29063,0.254772,0][0,1.02023,-0.654539][5.73032e-007,0.934363,0.356323][0.309646,0.254772,0][0.30584,0.981385,-0.637289][0.172556,0.923957,0.341361][0.311511,0.287838,0][1.25476e-007,1.02118,-0.830423][0,0.808298,-0.588773][0.29063,0.254772,0][0.30584,0.981385,-0.637289][0.172556,0.923957,0.341361][0.311511,0.287838,0][0.30584,0.982356,-0.809133][0.26702,0.774639,-0.573267][0.292932,0.287838,0][0.62131,0.86712,-0.714391][0.553662,0.694194,-0.459949][0.303175,0.321945,0][0.62131,0.866122,-0.546486][0.419333,0.839194,0.346286][0.321328,0.321945,0][1.10336,0.379376,-0.368877][0.567382,0.739895,0.361431][0.34053,0.374062,0][0.62131,0.86712,-0.714391][0.553662,0.694194,-0.459949][0.303175,0.321945,0][1.10336,0.379376,-0.368877][0.567382,0.739895,0.361431][0.34053,0.374062,0][1.10336,0.378697,-0.533099][0.691697,0.566651,-0.447729][0.322775,0.374062,0][1.10336,0.378697,-0.533099][0.691697,0.566651,-0.447729][0.322775,0.374062,0][1.10336,0.379376,-0.368877][0.567382,0.739895,0.361431][0.34053,0.374062,0][1.47709,0.0694256,-0.286941][0.439981,0.828369,0.34673][0.349389,0.414468,0][1.10336,0.378697,-0.533099][0.691697,0.566651,-0.447729][0.322775,0.374062,0][1.47709,0.0694256,-0.286941][0.439981,0.828369,0.34673][0.349389,0.414468,0][1.47512,0.0697794,-0.430443][0.540342,0.65455,-0.528768][0.333874,0.414256,0][0,0.875451,-0.507686][2.22541e-006,0.888843,0.458211][0.325523,0.254772,0][0,0.809567,0.000568196][0,1,0][0.380473,0.254772,0][0.30584,0.776656,0.000568241][0.212406,0.977181,-6.53079e-007][0.380473,0.287838,0][0,0.875451,-0.507686][2.22541e-006,0.888843,0.458211][0.325523,0.254772,0][0.30584,0.776656,0.000568241][0.212406,0.977181,-6.53079e-007][0.380473,0.287838,0][0.303111,0.843001,-0.489472][0.121258,0.883213,0.453024][0.327492,0.287543,0][0.61592,0.733982,-0.397729][0.407952,0.817137,0.407262][0.337411,0.321363,0][0.62131,0.667182,0.000568284][0.525982,0.850496,2.51562e-007][0.380473,0.321945,0][1.11872,0.205886,0.000568339][0.629652,0.776877,0][0.380473,0.375723,0][0.61592,0.733982,-0.397729][0.407952,0.817137,0.407262][0.337411,0.321363,0][1.11872,0.205886,0.000568339][0.629652,0.776877,0][0.380473,0.375723,0][1.10766,0.252816,-0.248065][0.542624,0.740643,0.396241][0.353592,0.374527,0][1.10766,0.252816,-0.248065][0.542624,0.740643,0.396241][0.353592,0.374527,0][1.11872,0.205886,0.000568339][0.629652,0.776877,0][0.380473,0.375723,0][1.48397,-0.0572701,0.000568383][0.458763,0.888559,-4.11284e-007][0.380473,0.415212,0][1.10766,0.252816,-0.248065][0.542624,0.740643,0.396241][0.353592,0.374527,0][1.48397,-0.0572701,0.000568383][0.458763,0.888559,-4.11284e-007][0.380473,0.415212,0][1.47364,-0.0239477,-0.181514][0.402082,0.825879,0.395289][0.360787,0.414095,0][0,-0.11896,0.000568156][0,-1,0][0.141064,0.255248,0][0,-0.141337,-0.431799][0,-0.990667,0.136307][0.141064,0.301993,0][0.548214,-0.193817,-0.415946][-0.22415,-0.955086,0.193825][0.081794,0.300279,0][0,-0.11896,0.000568156][0,-1,0][0.141064,0.255248,0][0.548214,-0.193817,-0.415946][-0.22415,-0.955086,0.193825][0.081794,0.300279,0][0.548214,-0.144164,0.000568238][-0.197954,-0.980211,-1.81974e-007][0.081794,0.255248,0][0.967376,-0.312442,0.000568293][-0.634363,-0.773035,-1.05774e-006][0.036476,0.255248,0][0.914596,-0.314008,-0.355076][-0.606311,-0.760255,0.233239][0.042182,0.293698,0][1.10198,-0.568565,-0.300376][-0.875733,-0.397187,0.27447][0.021922,0.287784,0][0.967376,-0.312442,0.000568293][-0.634363,-0.773035,-1.05774e-006][0.036476,0.255248,0][1.10198,-0.568565,-0.300376][-0.875733,-0.397187,0.27447][0.021922,0.287784,0][1.1511,-0.568565,0.00056831][-0.91273,-0.408564,-7.03976e-007][0.016612,0.255248,0][1.23626,-0.800331,0.000568313][9.29913e-006,-1,-3.7862e-007][0.140561,0.389344,0][1.23626,-0.800332,-0.245676][0,-1,1.37741e-006][0.167184,0.389344,0][1.60406,-0.800332,-0.19727][-1.7591e-006,-1,4.93393e-007][0.16195,0.429108,0][1.23626,-0.800331,0.000568313][9.29913e-006,-1,-3.7862e-007][0.140561,0.389344,0][1.60406,-0.800332,-0.19727][-1.7591e-006,-1,4.93393e-007][0.16195,0.429108,0][1.60322,-0.800333,0.000568368][0.000752113,-1,-2.26817e-006][0.140561,0.429018,0][1.3917e-007,-0.239794,-0.921115][0,-0.838468,0.544951][0.141064,0.354896,0][1.75504e-007,-0.570228,-1.16174][0,-0.366376,0.930467][0.141064,0.380911,0][0.375282,-0.572028,-1.08187][-0.321479,-0.360471,0.875621][0.10049,0.372276,0][1.3917e-007,-0.239794,-0.921115][0,-0.838468,0.544951][0.141064,0.354896,0][0.375282,-0.572028,-1.08187][-0.321479,-0.360471,0.875621][0.10049,0.372276,0][0.375282,-0.290267,-0.891019][-0.244584,-0.782581,0.57249][0.10049,0.351642,0][0.659875,-0.303988,-0.744017][-0.378241,-0.83076,0.408377][0.649038,0.673519,0][0.709103,-0.568565,-0.893327][-0.546266,-0.39809,0.736965][0.65436,0.644914,0][0.911465,-0.568565,-0.702197][-0.744449,-0.353566,0.56638][0.676239,0.644914,0][1.23627,-0.800332,-0.540428][-5.91144e-007,-1,-4.89018e-007][0.199051,0.389344,0][1.23627,-0.800332,-0.784064][0.365933,-0.661542,-0.654565][0.225392,0.389344,0][1.61256,-0.800332,-0.62654][0.269826,-0.638215,-0.721024][0.208361,0.430028,0][1.23627,-0.800332,-0.540428][-5.91144e-007,-1,-4.89018e-007][0.199051,0.389344,0][1.61256,-0.800332,-0.62654][0.269826,-0.638215,-0.721024][0.208361,0.430028,0][1.61521,-0.800333,-0.422864][-5.49796e-007,-1,-8.15484e-007][0.186341,0.430314,0][2.27934,-0.800333,-0.127049][0.564626,-0.789528,0.240506][0.12344,0.677861,0][2.27758,-0.629738,-0.118866][0.933722,0.0583994,0.353203][0.124325,0.659417,0][2.27382,-0.62147,0.000568477][0.996341,0.0854713,0][0.137237,0.658523,0][2.27934,-0.800333,-0.127049][0.564626,-0.789528,0.240506][0.12344,0.677861,0][2.27382,-0.62147,0.000568477][0.996341,0.0854713,0][0.137237,0.658523,0][2.27428,-0.791801,0.00056847][0.71906,-0.694948,0][0.137237,0.676939,0][2.33054,-0.800333,-0.386299][0.626979,-0.556596,-0.545067][0.095411,0.677861,0][2.32499,-0.612895,-0.357896][0.765639,0.164588,-0.621858][0.098482,0.657596,0][2.34377,-0.617774,-0.200562][0.957406,0.0698503,0.280171][0.115492,0.658124,0][2.33054,-0.800333,-0.386299][0.626979,-0.556596,-0.545067][0.095411,0.677861,0][2.34377,-0.617774,-0.200562][0.957406,0.0698503,0.280171][0.115492,0.658124,0][2.34649,-0.800333,-0.209707][0.744566,-0.631468,0.216493][0.114503,0.677861,0][2.27758,-0.629738,-0.118866][0.933722,0.0583994,0.353203][0.124325,0.659417,0][2.25297,-0.469652,-0.112165][0.921143,0.137228,0.36423][0.125049,0.642109,0][2.24676,-0.451577,0.000568481][0.986139,0.165919,-4.13122e-006][0.137237,0.640155,0][2.27758,-0.629738,-0.118866][0.933722,0.0583994,0.353203][0.124325,0.659417,0][2.24676,-0.451577,0.000568481][0.986139,0.165919,-4.13122e-006][0.137237,0.640155,0][2.27382,-0.62147,0.000568477][0.996341,0.0854713,0][0.137237,0.658523,0][2.32499,-0.612895,-0.357896][0.765639,0.164588,-0.621858][0.098482,0.657596,0][2.30272,-0.442719,-0.327128][0.753313,0.254757,-0.606315][0.101808,0.639197,0][2.31794,-0.446103,-0.189157][0.94105,0.171858,0.291359][0.116725,0.639563,0][2.32499,-0.612895,-0.357896][0.765639,0.164588,-0.621858][0.098482,0.657596,0][2.31794,-0.446103,-0.189157][0.94105,0.171858,0.291359][0.116725,0.639563,0][2.34377,-0.617774,-0.200562][0.957406,0.0698503,0.280171][0.115492,0.658124,0][2.25297,-0.469652,-0.112165][0.921143,0.137228,0.36423][0.125049,0.642109,0][2.21753,-0.307366,-0.0981445][0.671623,0.5866,0.452574][0.126565,0.624564,0][2.22416,-0.325182,0.000568483][0.792544,0.609815,-6.47534e-006][0.137237,0.62649,0][2.25297,-0.469652,-0.112165][0.921143,0.137228,0.36423][0.125049,0.642109,0][2.22416,-0.325182,0.000568483][0.792544,0.609815,-6.47534e-006][0.137237,0.62649,0][2.24676,-0.451577,0.000568481][0.986139,0.165919,-4.13122e-006][0.137237,0.640155,0][2.30272,-0.442719,-0.327128][0.753313,0.254757,-0.606315][0.101808,0.639197,0][2.24803,-0.233367,-0.289566][0.6385,0.599653,-0.482425][0.105869,0.616563,0][2.25989,-0.238137,-0.174997][0.687169,0.636958,0.349404][0.118256,0.617079,0][2.30272,-0.442719,-0.327128][0.753313,0.254757,-0.606315][0.101808,0.639197,0][2.25989,-0.238137,-0.174997][0.687169,0.636958,0.349404][0.118256,0.617079,0][2.31794,-0.446103,-0.189157][0.94105,0.171858,0.291359][0.116725,0.639563,0][0,1.02023,-0.654539][5.73032e-007,0.934363,0.356323][0.309646,0.254772,0][0,0.875451,-0.507686][2.22541e-006,0.888843,0.458211][0.325523,0.254772,0][0.303111,0.843001,-0.489472][0.121258,0.883213,0.453024][0.327492,0.287543,0][0,1.02023,-0.654539][5.73032e-007,0.934363,0.356323][0.309646,0.254772,0][0.303111,0.843001,-0.489472][0.121258,0.883213,0.453024][0.327492,0.287543,0][0.30584,0.981385,-0.637289][0.172556,0.923957,0.341361][0.311511,0.287838,0][0.62131,0.866122,-0.546486][0.419333,0.839194,0.346286][0.321328,0.321945,0][0.61592,0.733982,-0.397729][0.407952,0.817137,0.407262][0.337411,0.321363,0][1.10766,0.252816,-0.248065][0.542624,0.740643,0.396241][0.353592,0.374527,0][0.62131,0.866122,-0.546486][0.419333,0.839194,0.346286][0.321328,0.321945,0][1.10766,0.252816,-0.248065][0.542624,0.740643,0.396241][0.353592,0.374527,0][1.10336,0.379376,-0.368877][0.567382,0.739895,0.361431][0.34053,0.374062,0][1.10336,0.379376,-0.368877][0.567382,0.739895,0.361431][0.34053,0.374062,0][1.10766,0.252816,-0.248065][0.542624,0.740643,0.396241][0.353592,0.374527,0][1.47364,-0.0239477,-0.181514][0.402082,0.825879,0.395289][0.360787,0.414095,0][1.10336,0.379376,-0.368877][0.567382,0.739895,0.361431][0.34053,0.374062,0][1.47364,-0.0239477,-0.181514][0.402082,0.825879,0.395289][0.360787,0.414095,0][1.47709,0.0694256,-0.286941][0.439981,0.828369,0.34673][0.349389,0.414468,0][2.31794,-0.446103,-0.189157][0.94105,0.171858,0.291359][0.116725,0.639563,0][2.25989,-0.238137,-0.174997][0.687169,0.636958,0.349404][0.118256,0.617079,0][2.21753,-0.307366,-0.0981445][0.671623,0.5866,0.452574][0.126565,0.624564,0][2.31794,-0.446103,-0.189157][0.94105,0.171858,0.291359][0.116725,0.639563,0][2.21753,-0.307366,-0.0981445][0.671623,0.5866,0.452574][0.126565,0.624564,0][2.25297,-0.469652,-0.112165][0.921143,0.137228,0.36423][0.125049,0.642109,0][2.34377,-0.617774,-0.200562][0.957406,0.0698503,0.280171][0.115492,0.658124,0][2.31794,-0.446103,-0.189157][0.94105,0.171858,0.291359][0.116725,0.639563,0][2.25297,-0.469652,-0.112165][0.921143,0.137228,0.36423][0.125049,0.642109,0][2.34377,-0.617774,-0.200562][0.957406,0.0698503,0.280171][0.115492,0.658124,0][2.25297,-0.469652,-0.112165][0.921143,0.137228,0.36423][0.125049,0.642109,0][2.27758,-0.629738,-0.118866][0.933722,0.0583994,0.353203][0.124325,0.659417,0][2.34649,-0.800333,-0.209707][0.744566,-0.631468,0.216493][0.114503,0.677861,0][2.34377,-0.617774,-0.200562][0.957406,0.0698503,0.280171][0.115492,0.658124,0][2.27758,-0.629738,-0.118866][0.933722,0.0583994,0.353203][0.124325,0.659417,0][2.34649,-0.800333,-0.209707][0.744566,-0.631468,0.216493][0.114503,0.677861,0][2.27758,-0.629738,-0.118866][0.933722,0.0583994,0.353203][0.124325,0.659417,0][2.27934,-0.800333,-0.127049][0.564626,-0.789528,0.240506][0.12344,0.677861,0][1.23626,-0.800332,-0.245676][0,-1,1.37741e-006][0.167184,0.389344,0][1.23627,-0.800332,-0.540428][-5.91144e-007,-1,-4.89018e-007][0.199051,0.389344,0][1.61521,-0.800333,-0.422864][-5.49796e-007,-1,-8.15484e-007][0.186341,0.430314,0][1.23626,-0.800332,-0.245676][0,-1,1.37741e-006][0.167184,0.389344,0][1.61521,-0.800333,-0.422864][-5.49796e-007,-1,-8.15484e-007][0.186341,0.430314,0][1.60406,-0.800332,-0.19727][-1.7591e-006,-1,4.93393e-007][0.16195,0.429108,0][0.914596,-0.314008,-0.355076][-0.606311,-0.760255,0.233239][0.042182,0.293698,0][0.659875,-0.303988,-0.744017][-0.378241,-0.83076,0.408377][0.069721,0.335749,0][0.911465,-0.568565,-0.702197][-0.744449,-0.353566,0.56638][0.042521,0.331228,0][0.914596,-0.314008,-0.355076][-0.606311,-0.760255,0.233239][0.042182,0.293698,0][0.911465,-0.568565,-0.702197][-0.744449,-0.353566,0.56638][0.042521,0.331228,0][1.10198,-0.568565,-0.300376][-0.875733,-0.397187,0.27447][0.021922,0.287784,0][0,-0.141337,-0.431799][0,-0.990667,0.136307][0.141064,0.301993,0][1.3917e-007,-0.239794,-0.921115][0,-0.838468,0.544951][0.141064,0.354896,0][0.375282,-0.290267,-0.891019][-0.244584,-0.782581,0.57249][0.10049,0.351642,0][0,-0.141337,-0.431799][0,-0.990667,0.136307][0.141064,0.301993,0][0.375282,-0.290267,-0.891019][-0.244584,-0.782581,0.57249][0.10049,0.351642,0][0.548214,-0.193817,-0.415946][-0.22415,-0.955086,0.193825][0.081794,0.300279,0][1.60322,-0.800333,0.000568368][0.000752113,-1,-2.26817e-006][0.140561,0.429018,0][1.60406,-0.800332,-0.19727][-1.7591e-006,-1,4.93393e-007][0.16195,0.429108,0][2.27934,-0.800333,-0.127049][0.564626,-0.789528,0.240506][0.154359,0.502117,0][1.60322,-0.800333,0.000568368][0.000752113,-1,-2.26817e-006][0.140561,0.429018,0][2.27934,-0.800333,-0.127049][0.564626,-0.789528,0.240506][0.154359,0.502117,0][2.27428,-0.791801,0.00056847][0.71906,-0.694948,0][0.140561,0.50157,0][1.61521,-0.800333,-0.422864][-5.49796e-007,-1,-8.15484e-007][0.186341,0.430314,0][2.34649,-0.800333,-0.209707][0.744566,-0.631468,0.216493][0.163295,0.509376,0][2.27934,-0.800333,-0.127049][0.564626,-0.789528,0.240506][0.154359,0.502117,0][1.61521,-0.800333,-0.422864][-5.49796e-007,-1,-8.15484e-007][0.186341,0.430314,0][2.27934,-0.800333,-0.127049][0.564626,-0.789528,0.240506][0.154359,0.502117,0][1.60406,-0.800332,-0.19727][-1.7591e-006,-1,4.93393e-007][0.16195,0.429108,0][1.61256,-0.800332,-0.62654][0.269826,-0.638215,-0.721024][0.208361,0.430028,0][2.33054,-0.800333,-0.386299][0.626979,-0.556596,-0.545067][0.182387,0.507653,0][2.34649,-0.800333,-0.209707][0.744566,-0.631468,0.216493][0.163295,0.509376,0][1.61256,-0.800332,-0.62654][0.269826,-0.638215,-0.721024][0.208361,0.430028,0][2.34649,-0.800333,-0.209707][0.744566,-0.631468,0.216493][0.163295,0.509376,0][1.61521,-0.800333,-0.422864][-5.49796e-007,-1,-8.15484e-007][0.186341,0.430314,0][1.57039,-0.497479,-0.57346][0.349691,0.231702,-0.907761][0.642374,0.929561,0][2.32499,-0.612895,-0.357896][0.765639,0.164588,-0.621858][0.764621,0.950164,0][2.33054,-0.800333,-0.386299][0.626979,-0.556596,-0.545067][0.76552,0.983623,0][1.57039,-0.497479,-0.57346][0.349691,0.231702,-0.907761][0.642374,0.929561,0][2.33054,-0.800333,-0.386299][0.626979,-0.556596,-0.545067][0.76552,0.983623,0][1.61256,-0.800332,-0.62654][0.269826,-0.638215,-0.721024][0.649205,0.983622,0][1.52545,-0.217103,-0.508035][0.362658,0.276891,-0.889837][0.635092,0.879512,0][2.30272,-0.442719,-0.327128][0.753313,0.254757,-0.606315][0.761012,0.919786,0][2.32499,-0.612895,-0.357896][0.765639,0.164588,-0.621858][0.764621,0.950164,0][1.52545,-0.217103,-0.508035][0.362658,0.276891,-0.889837][0.635092,0.879512,0][2.32499,-0.612895,-0.357896][0.765639,0.164588,-0.621858][0.764621,0.950164,0][1.57039,-0.497479,-0.57346][0.349691,0.231702,-0.907761][0.642374,0.929561,0][1.47512,0.0697794,-0.430443][0.540342,0.65455,-0.528768][0.626939,0.828302,0][2.24803,-0.233367,-0.289566][0.6385,0.599653,-0.482425][0.752153,0.882415,0][2.30272,-0.442719,-0.327128][0.753313,0.254757,-0.606315][0.761012,0.919786,0][1.47512,0.0697794,-0.430443][0.540342,0.65455,-0.528768][0.626939,0.828302,0][2.30272,-0.442719,-0.327128][0.753313,0.254757,-0.606315][0.761012,0.919786,0][1.52545,-0.217103,-0.508035][0.362658,0.276891,-0.889837][0.635092,0.879512,0][1.47709,0.0694256,-0.286941][0.439981,0.828369,0.34673][0.349389,0.414468,0][2.25989,-0.238137,-0.174997][0.687169,0.636958,0.349404][0.361492,0.499102,0][2.24803,-0.233367,-0.289566][0.6385,0.599653,-0.482425][0.349105,0.497819,0][1.47709,0.0694256,-0.286941][0.439981,0.828369,0.34673][0.349389,0.414468,0][2.24803,-0.233367,-0.289566][0.6385,0.599653,-0.482425][0.349105,0.497819,0][1.47512,0.0697794,-0.430443][0.540342,0.65455,-0.528768][0.333874,0.414256,0][1.47364,-0.0239477,-0.181514][0.402082,0.825879,0.395289][0.360787,0.414095,0][2.21753,-0.307366,-0.0981445][0.671623,0.5866,0.452574][0.369801,0.494522,0][2.25989,-0.238137,-0.174997][0.687169,0.636958,0.349404][0.361492,0.499102,0][1.47364,-0.0239477,-0.181514][0.402082,0.825879,0.395289][0.360787,0.414095,0][2.25989,-0.238137,-0.174997][0.687169,0.636958,0.349404][0.361492,0.499102,0][1.47709,0.0694256,-0.286941][0.439981,0.828369,0.34673][0.349389,0.414468,0][1.48397,-0.0572701,0.000568383][0.458763,0.888559,-4.11284e-007][0.380473,0.415212,0][2.22416,-0.325182,0.000568483][0.792544,0.609815,-6.47534e-006][0.380473,0.495239,0][2.21753,-0.307366,-0.0981445][0.671623,0.5866,0.452574][0.369801,0.494522,0][1.48397,-0.0572701,0.000568383][0.458763,0.888559,-4.11284e-007][0.380473,0.415212,0][2.21753,-0.307366,-0.0981445][0.671623,0.5866,0.452574][0.369801,0.494522,0][1.47364,-0.0239477,-0.181514][0.402082,0.825879,0.395289][0.360787,0.414095,0][1.19185,-0.800332,0.000568306][-0.633819,-0.773481,7.74332e-007][0.140561,0.384541,0][1.18263,-0.800332,-0.245676][-0.551708,-0.823471,0.132342][0.167184,0.383545,0][1.23626,-0.800332,-0.245676][0,-1,1.37741e-006][0.167184,0.389344,0][1.19185,-0.800332,0.000568306][-0.633819,-0.773481,7.74332e-007][0.140561,0.384541,0][1.23626,-0.800332,-0.245676][0,-1,1.37741e-006][0.167184,0.389344,0][1.23626,-0.800331,0.000568313][9.29913e-006,-1,-3.7862e-007][0.140561,0.389344,0][1.03178,-0.800332,-0.62451][-0.481205,-0.834966,0.266969][0.208142,0.367236,0][1.23627,-0.800332,-0.540428][-5.91144e-007,-1,-4.89018e-007][0.199051,0.389344,0][1.23626,-0.800332,-0.245676][0,-1,1.37741e-006][0.167184,0.389344,0][1.03178,-0.800332,-0.62451][-0.481205,-0.834966,0.266969][0.208142,0.367236,0][1.23626,-0.800332,-0.245676][0,-1,1.37741e-006][0.167184,0.389344,0][1.18263,-0.800332,-0.245676][-0.551708,-0.823471,0.132342][0.167184,0.383545,0][0.741147,-0.800332,-0.98803][-0.276269,-0.875666,0.396086][0.247444,0.335814,0][0.741147,-0.800332,-1.13266][0.352858,-0.597273,-0.720248][0.26308,0.335814,0][1.23627,-0.800332,-0.784064][0.365933,-0.661542,-0.654565][0.225392,0.389344,0][0.741147,-0.800332,-0.98803][-0.276269,-0.875666,0.396086][0.247444,0.335814,0][1.23627,-0.800332,-0.784064][0.365933,-0.661542,-0.654565][0.225392,0.389344,0][1.23627,-0.800332,-0.540428][-5.91144e-007,-1,-4.89018e-007][0.199051,0.389344,0][0.741147,-0.800332,-0.98803][-0.276269,-0.875666,0.396086][0.247444,0.335814,0][1.23627,-0.800332,-0.540428][-5.91144e-007,-1,-4.89018e-007][0.199051,0.389344,0][1.03178,-0.800332,-0.62451][-0.481205,-0.834966,0.266969][0.208142,0.367236,0][1.797e-007,-0.800331,-1.18953][1.61979e-007,-0.785275,0.619147][0.26923,0.255684,0][1.93926e-007,-0.800332,-1.28374][-2.2431e-007,-0.611045,-0.791596][0.279415,0.255684,0][0.375282,-0.800332,-1.2447][0.157109,-0.612783,-0.774476][0.275194,0.296258,0][1.797e-007,-0.800331,-1.18953][1.61979e-007,-0.785275,0.619147][0.26923,0.255684,0][0.375282,-0.800332,-1.2447][0.157109,-0.612783,-0.774476][0.275194,0.296258,0][0.375282,-0.800331,-1.12496][-0.191477,-0.795929,0.574311][0.262249,0.296258,0][0.548214,-0.144164,0.000568238][-0.197954,-0.980211,-1.81974e-007][0.081794,0.255248,0][0.548214,-0.193817,-0.415946][-0.22415,-0.955086,0.193825][0.081794,0.300279,0][0.914596,-0.314008,-0.355076][-0.606311,-0.760255,0.233239][0.042182,0.293698,0][0.548214,-0.144164,0.000568238][-0.197954,-0.980211,-1.81974e-007][0.081794,0.255248,0][0.914596,-0.314008,-0.355076][-0.606311,-0.760255,0.233239][0.042182,0.293698,0][0.967376,-0.312442,0.000568293][-0.634363,-0.773035,-1.05774e-006][0.036476,0.255248,0][0.375282,-0.290267,-0.891019][-0.244584,-0.782581,0.57249][0.10049,0.351642,0][0.659875,-0.303988,-0.744017][-0.378241,-0.83076,0.408377][0.069721,0.335749,0][0.914596,-0.314008,-0.355076][-0.606311,-0.760255,0.233239][0.042182,0.293698,0][0.375282,-0.290267,-0.891019][-0.244584,-0.782581,0.57249][0.10049,0.351642,0][0.914596,-0.314008,-0.355076][-0.606311,-0.760255,0.233239][0.042182,0.293698,0][0.548214,-0.193817,-0.415946][-0.22415,-0.955086,0.193825][0.081794,0.300279,0][0.375282,-0.572028,-1.08187][-0.321479,-0.360471,0.875621][0.10049,0.372276,0][0.709103,-0.568565,-0.893327][-0.546266,-0.39809,0.736965][0.064399,0.351892,0][0.659875,-0.303988,-0.744017][-0.378241,-0.83076,0.408377][0.069721,0.335749,0][0.375282,-0.572028,-1.08187][-0.321479,-0.360471,0.875621][0.10049,0.372276,0][0.659875,-0.303988,-0.744017][-0.378241,-0.83076,0.408377][0.069721,0.335749,0][0.375282,-0.290267,-0.891019][-0.244584,-0.782581,0.57249][0.10049,0.351642,0][0.375282,-0.800332,-1.2447][0.157109,-0.612783,-0.774476][0.275194,0.296258,0][0.741147,-0.800332,-1.13266][0.352858,-0.597273,-0.720248][0.26308,0.335814,0][0.741147,-0.800332,-0.98803][-0.276269,-0.875666,0.396086][0.247444,0.335814,0][0.375282,-0.800332,-1.2447][0.157109,-0.612783,-0.774476][0.275194,0.296258,0][0.741147,-0.800332,-0.98803][-0.276269,-0.875666,0.396086][0.247444,0.335814,0][0.375282,-0.800331,-1.12496][-0.191477,-0.795929,0.574311][0.262249,0.296258,0][0.352134,-0.130986,-1.11494][0.207149,0.223033,-0.952547][0.445012,0.866324,0][0.695434,-0.177296,-1.0093][0.442836,0.227252,-0.867325][0.500627,0.866529,0][0.741147,-0.800332,-1.13266][0.352858,-0.597273,-0.720248][0.508033,0.983622,0][0.352134,-0.130986,-1.11494][0.207149,0.223033,-0.952547][0.445012,0.866324,0][0.741147,-0.800332,-1.13266][0.352858,-0.597273,-0.720248][0.508033,0.983622,0][0.375282,-0.800332,-1.2447][0.157109,-0.612783,-0.774476][0.448762,0.983622,0][0.328987,0.522987,-0.948707][0.218458,0.274767,-0.936365][0.441262,0.752758,0][0.64972,0.441335,-0.85106][0.462687,0.273677,-0.843221][0.493222,0.751873,0][0.695434,-0.177296,-1.0093][0.442836,0.227252,-0.867325][0.500627,0.866529,0][0.328987,0.522987,-0.948707][0.218458,0.274767,-0.936365][0.441262,0.752758,0][0.695434,-0.177296,-1.0093][0.442836,0.227252,-0.867325][0.500627,0.866529,0][0.352134,-0.130986,-1.11494][0.207149,0.223033,-0.952547][0.445012,0.866324,0][0.30584,0.982356,-0.809133][0.26702,0.774639,-0.573267][0.437512,0.671773,0][0.62131,0.86712,-0.714391][0.553662,0.694194,-0.459949][0.488619,0.673124,0][0.64972,0.441335,-0.85106][0.462687,0.273677,-0.843221][0.493222,0.751873,0][0.30584,0.982356,-0.809133][0.26702,0.774639,-0.573267][0.437512,0.671773,0][0.64972,0.441335,-0.85106][0.462687,0.273677,-0.843221][0.493222,0.751873,0][0.328987,0.522987,-0.948707][0.218458,0.274767,-0.936365][0.441262,0.752758,0][0.30584,0.981385,-0.637289][0.172556,0.923957,0.341361][0.311511,0.287838,0][0.62131,0.866122,-0.546486][0.419333,0.839194,0.346286][0.321328,0.321945,0][0.62131,0.86712,-0.714391][0.553662,0.694194,-0.459949][0.303175,0.321945,0][0.30584,0.981385,-0.637289][0.172556,0.923957,0.341361][0.311511,0.287838,0][0.62131,0.86712,-0.714391][0.553662,0.694194,-0.459949][0.303175,0.321945,0][0.30584,0.982356,-0.809133][0.26702,0.774639,-0.573267][0.292932,0.287838,0][0.303111,0.843001,-0.489472][0.121258,0.883213,0.453024][0.327492,0.287543,0][0.61592,0.733982,-0.397729][0.407952,0.817137,0.407262][0.337411,0.321363,0][0.62131,0.866122,-0.546486][0.419333,0.839194,0.346286][0.321328,0.321945,0][0.303111,0.843001,-0.489472][0.121258,0.883213,0.453024][0.327492,0.287543,0][0.62131,0.866122,-0.546486][0.419333,0.839194,0.346286][0.321328,0.321945,0][0.30584,0.981385,-0.637289][0.172556,0.923957,0.341361][0.311511,0.287838,0][0.30584,0.776656,0.000568241][0.212406,0.977181,-6.53079e-007][0.380473,0.287838,0][0.62131,0.667182,0.000568284][0.525982,0.850496,2.51562e-007][0.380473,0.321945,0][0.61592,0.733982,-0.397729][0.407952,0.817137,0.407262][0.337411,0.321363,0][0.30584,0.776656,0.000568241][0.212406,0.977181,-6.53079e-007][0.380473,0.287838,0][0.61592,0.733982,-0.397729][0.407952,0.817137,0.407262][0.337411,0.321363,0][0.303111,0.843001,-0.489472][0.121258,0.883213,0.453024][0.327492,0.287543,0][1.1511,-0.568565,0.00056831][-0.91273,-0.408564,-7.03976e-007][0.311101,0.611423,0][1.10198,-0.568565,-0.300376][-0.875733,-0.397187,0.27447][0.343638,0.611423,0][1.18263,-0.800332,-0.245676][-0.551708,-0.823471,0.132342][0.337724,0.636481,0][1.1511,-0.568565,0.00056831][-0.91273,-0.408564,-7.03976e-007][0.311101,0.611423,0][1.18263,-0.800332,-0.245676][-0.551708,-0.823471,0.132342][0.337724,0.636481,0][1.19185,-0.800332,0.000568306][-0.633819,-0.773481,7.74332e-007][0.311101,0.636481,0][0.911465,-0.568565,-0.702197][-0.744449,-0.353566,0.56638][0.387081,0.611423,0][1.03178,-0.800332,-0.62451][-0.481205,-0.834966,0.266969][0.378682,0.636481,0][1.18263,-0.800332,-0.245676][-0.551708,-0.823471,0.132342][0.337724,0.636481,0][0.911465,-0.568565,-0.702197][-0.744449,-0.353566,0.56638][0.387081,0.611423,0][1.18263,-0.800332,-0.245676][-0.551708,-0.823471,0.132342][0.337724,0.636481,0][1.10198,-0.568565,-0.300376][-0.875733,-0.397187,0.27447][0.343638,0.611423,0][0.709103,-0.568565,-0.893327][-0.546266,-0.39809,0.736965][0.65436,0.644914,0][0.741147,-0.800332,-0.98803][-0.276269,-0.875666,0.396086][0.657825,0.619857,0][1.03178,-0.800332,-0.62451][-0.481205,-0.834966,0.266969][0.689247,0.619857,0][0.709103,-0.568565,-0.893327][-0.546266,-0.39809,0.736965][0.65436,0.644914,0][1.03178,-0.800332,-0.62451][-0.481205,-0.834966,0.266969][0.689247,0.619857,0][0.911465,-0.568565,-0.702197][-0.744449,-0.353566,0.56638][0.676239,0.644914,0][0.375282,-0.800331,-1.12496][-0.191477,-0.795929,0.574311][0.618269,0.619857,0][0.741147,-0.800332,-0.98803][-0.276269,-0.875666,0.396086][0.657825,0.619857,0][0.709103,-0.568565,-0.893327][-0.546266,-0.39809,0.736965][0.65436,0.644914,0][0.375282,-0.800331,-1.12496][-0.191477,-0.795929,0.574311][0.618269,0.619857,0][0.709103,-0.568565,-0.893327][-0.546266,-0.39809,0.736965][0.65436,0.644914,0][0.375282,-0.572028,-1.08187][-0.321479,-0.360471,0.875621][0.618269,0.64454,0][1.75504e-007,-0.570228,-1.16174][0,-0.366376,0.930467][0.577695,0.644735,0][1.797e-007,-0.800331,-1.18953][1.61979e-007,-0.785275,0.619147][0.577695,0.619857,0][0.375282,-0.800331,-1.12496][-0.191477,-0.795929,0.574311][0.618269,0.619857,0][1.75504e-007,-0.570228,-1.16174][0,-0.366376,0.930467][0.577695,0.644735,0][0.375282,-0.800331,-1.12496][-0.191477,-0.795929,0.574311][0.618269,0.619857,0][0.375282,-0.572028,-1.08187][-0.321479,-0.360471,0.875621][0.618269,0.64454,0][-1.93926e-007,-0.800333,1.28488][0,-0.611041,0.791599][0.68638,0.25396,0][0.375282,-0.800332,1.24584][0.157111,-0.612779,0.774479][0.68638,0.294534,0][0.352134,-0.130986,1.11608][0.207147,0.223033,0.952547][0.614013,0.292032,0][-1.93926e-007,-0.800333,1.28488][0,-0.611041,0.791599][0.68638,0.25396,0][0.352134,-0.130986,1.11608][0.207147,0.223033,0.952547][0.614013,0.292032,0][-1.7334e-007,-0.109768,1.14855][0,0.22349,0.974706][0.611719,0.25396,0][0.741147,-0.800332,1.13379][0.352857,-0.597272,0.720248][0.68638,0.33409,0][1.23626,-0.800332,0.7852][0.365933,-0.661542,0.654565][0.68638,0.38762,0][1.19748,-0.400705,0.717782][0.487603,0.21869,0.845232][0.643174,0.383426,0][0.741147,-0.800332,1.13379][0.352857,-0.597272,0.720248][0.68638,0.33409,0][1.19748,-0.400705,0.717782][0.487603,0.21869,0.845232][0.643174,0.383426,0][0.695434,-0.177296,1.01044][0.442834,0.227251,0.867326][0.61902,0.329148,0][1.23626,-0.800332,0.7852][0.365933,-0.661542,0.654565][0.68638,0.38762,0][1.61256,-0.800332,0.627676][0.269826,-0.638216,0.721023][0.68638,0.428304,0][1.57039,-0.497481,0.574596][0.349691,0.231702,0.907761][0.653637,0.423745,0][1.23626,-0.800332,0.7852][0.365933,-0.661542,0.654565][0.68638,0.38762,0][1.57039,-0.497481,0.574596][0.349691,0.231702,0.907761][0.653637,0.423745,0][1.19748,-0.400705,0.717782][0.487603,0.21869,0.845232][0.643174,0.383426,0][-1.7334e-007,-0.109768,1.14855][0,0.22349,0.974706][0.611719,0.25396,0][0.352134,-0.130986,1.11608][0.207147,0.223033,0.952547][0.614013,0.292032,0][0.328987,0.522987,0.949843][0.218456,0.274767,0.936365][0.543308,0.289529,0][-1.7334e-007,-0.109768,1.14855][0,0.22349,0.974706][0.611719,0.25396,0][0.328987,0.522987,0.949843][0.218456,0.274767,0.936365][0.543308,0.289529,0][-1.47001e-007,0.548059,0.974113][0,0.275138,0.961405][0.540598,0.25396,0][0.695434,-0.177296,1.01044][0.442834,0.227251,0.867326][0.61902,0.329148,0][1.19748,-0.400705,0.717782][0.487603,0.21869,0.845232][0.643174,0.383426,0][1.15282,-0.0110026,0.633702][0.508329,0.25909,0.821264][0.601041,0.378598,0][0.695434,-0.177296,1.01044][0.442834,0.227251,0.867326][0.61902,0.329148,0][1.15282,-0.0110026,0.633702][0.508329,0.25909,0.821264][0.601041,0.378598,0][0.64972,0.441335,0.852197][0.462686,0.273678,0.843221][0.552136,0.324205,0][1.19748,-0.400705,0.717782][0.487603,0.21869,0.845232][0.643174,0.383426,0][1.57039,-0.497481,0.574596][0.349691,0.231702,0.907761][0.653637,0.423745,0][1.52545,-0.217103,0.509171][0.362657,0.276891,0.889838][0.623324,0.418885,0][1.19748,-0.400705,0.717782][0.487603,0.21869,0.845232][0.643174,0.383426,0][1.52545,-0.217103,0.509171][0.362657,0.276891,0.889838][0.623324,0.418885,0][1.15282,-0.0110026,0.633702][0.508329,0.25909,0.821264][0.601041,0.378598,0][-1.47001e-007,0.548059,0.974113][0,0.275138,0.961405][0.540598,0.25396,0][0.328987,0.522987,0.949843][0.218456,0.274767,0.936365][0.543308,0.289529,0][0.30584,0.982356,0.810269][0.267018,0.77464,0.573267][0.493643,0.287027,0][-1.47001e-007,0.548059,0.974113][0,0.275138,0.961405][0.540598,0.25396,0][0.30584,0.982356,0.810269][0.267018,0.77464,0.573267][0.493643,0.287027,0][-1.25476e-007,1.02118,0.831559][0,0.808297,0.588775][0.489446,0.25396,0][0.64972,0.441335,0.852197][0.462686,0.273678,0.843221][0.552136,0.324205,0][1.15282,-0.0110026,0.633702][0.508329,0.25909,0.821264][0.601041,0.378598,0][1.10336,0.378695,0.534235][0.691697,0.566649,0.447733][0.558909,0.373251,0][0.64972,0.441335,0.852197][0.462686,0.273678,0.843221][0.552136,0.324205,0][1.10336,0.378695,0.534235][0.691697,0.566649,0.447733][0.558909,0.373251,0][0.62131,0.86712,0.715527][0.553662,0.694194,0.459949][0.506102,0.321134,0][1.15282,-0.0110026,0.633702][0.508329,0.25909,0.821264][0.601041,0.378598,0][1.52545,-0.217103,0.509171][0.362657,0.276891,0.889838][0.623324,0.418885,0][1.47512,0.0697784,0.431579][0.54034,0.654549,0.52877][0.592307,0.413444,0][1.15282,-0.0110026,0.633702][0.508329,0.25909,0.821264][0.601041,0.378598,0][1.47512,0.0697784,0.431579][0.54034,0.654549,0.52877][0.592307,0.413444,0][1.10336,0.378695,0.534235][0.691697,0.566649,0.447733][0.558909,0.373251,0][-1.25476e-007,1.02118,0.831559][0,0.808297,0.588775][0.470316,0.254772,0][0.30584,0.982356,0.810269][0.267018,0.77464,0.573267][0.468014,0.287838,0][0.30584,0.981385,0.638425][0.172555,0.923959,-0.341357][0.449435,0.287838,0][-1.25476e-007,1.02118,0.831559][0,0.808297,0.588775][0.470316,0.254772,0][0.30584,0.981385,0.638425][0.172555,0.923959,-0.341357][0.449435,0.287838,0][0,1.02023,0.655675][0,0.934364,-0.356319][0.4513,0.254772,0][0.62131,0.86712,0.715527][0.553662,0.694194,0.459949][0.457771,0.321945,0][1.10336,0.378695,0.534235][0.691697,0.566649,0.447733][0.438171,0.374062,0][1.10336,0.379375,0.370012][0.567383,0.739896,-0.361429][0.420416,0.374062,0][0.62131,0.86712,0.715527][0.553662,0.694194,0.459949][0.457771,0.321945,0][1.10336,0.379375,0.370012][0.567383,0.739896,-0.361429][0.420416,0.374062,0][0.62131,0.866122,0.547622][0.419334,0.839193,-0.346286][0.439618,0.321945,0][1.10336,0.378695,0.534235][0.691697,0.566649,0.447733][0.438171,0.374062,0][1.47512,0.0697784,0.431579][0.54034,0.654549,0.52877][0.427072,0.414256,0][1.47709,0.0694256,0.288077][0.439982,0.82837,-0.346727][0.411557,0.414468,0][1.10336,0.378695,0.534235][0.691697,0.566649,0.447733][0.438171,0.374062,0][1.47709,0.0694256,0.288077][0.439982,0.82837,-0.346727][0.411557,0.414468,0][1.10336,0.379375,0.370012][0.567383,0.739896,-0.361429][0.420416,0.374062,0][0,0.875451,0.508822][0,0.888844,-0.45821][0.435423,0.254772,0][0.303111,0.843003,0.490608][0.121258,0.883214,-0.453023][0.433454,0.287543,0][0.30584,0.776656,0.000568241][0.212406,0.977181,-6.53079e-007][0.380473,0.287838,0][0,0.875451,0.508822][0,0.888844,-0.45821][0.435423,0.254772,0][0.30584,0.776656,0.000568241][0.212406,0.977181,-6.53079e-007][0.380473,0.287838,0][0,0.809567,0.000568196][0,1,0][0.380473,0.254772,0][0.61592,0.733982,0.398866][0.407953,0.817135,-0.407265][0.423535,0.321363,0][1.10766,0.252816,0.249201][0.542624,0.740643,-0.396242][0.407354,0.374527,0][1.11872,0.205886,0.000568339][0.629652,0.776877,0][0.380473,0.375723,0][0.61592,0.733982,0.398866][0.407953,0.817135,-0.407265][0.423535,0.321363,0][1.11872,0.205886,0.000568339][0.629652,0.776877,0][0.380473,0.375723,0][0.62131,0.667182,0.000568284][0.525982,0.850496,2.51562e-007][0.380473,0.321945,0][1.10766,0.252816,0.249201][0.542624,0.740643,-0.396242][0.407354,0.374527,0][1.47364,-0.0239477,0.18265][0.402082,0.825879,-0.395289][0.400159,0.414095,0][1.48397,-0.0572701,0.000568383][0.458763,0.888559,-4.11284e-007][0.380473,0.415212,0][1.10766,0.252816,0.249201][0.542624,0.740643,-0.396242][0.407354,0.374527,0][1.48397,-0.0572701,0.000568383][0.458763,0.888559,-4.11284e-007][0.380473,0.415212,0][1.11872,0.205886,0.000568339][0.629652,0.776877,0][0.380473,0.375723,0][0,-0.11896,0.000568156][0,-1,0][0.141064,0.255248,0][0.548214,-0.144164,0.000568238][-0.197954,-0.980211,-1.81974e-007][0.081794,0.255248,0][0.548214,-0.193817,0.417082][-0.22415,-0.955085,-0.193827][0.081794,0.210216,0][0,-0.11896,0.000568156][0,-1,0][0.141064,0.255248,0][0.548214,-0.193817,0.417082][-0.22415,-0.955085,-0.193827][0.081794,0.210216,0][0,-0.141337,0.432935][0,-0.990666,-0.136309][0.141064,0.208502,0][0.967376,-0.312442,0.000568293][-0.634363,-0.773035,-1.05774e-006][0.036476,0.255248,0][1.1511,-0.568565,0.00056831][-0.91273,-0.408564,-7.03976e-007][0.016612,0.255248,0][1.10198,-0.568565,0.301512][-0.875732,-0.39719,-0.274471][0.021922,0.222711,0][0.967376,-0.312442,0.000568293][-0.634363,-0.773035,-1.05774e-006][0.036476,0.255248,0][1.10198,-0.568565,0.301512][-0.875732,-0.39719,-0.274471][0.021922,0.222711,0][0.914595,-0.314008,0.356212][-0.60631,-0.760255,-0.23324][0.042182,0.216797,0][1.23626,-0.800331,0.000568313][9.29913e-006,-1,-3.7862e-007][0.140561,0.389344,0][1.60322,-0.800333,0.000568368][0.000752113,-1,-2.26817e-006][0.140561,0.429018,0][1.60406,-0.800333,0.198406][-1.56249e-006,-1,1.7324e-006][0.119172,0.429108,0][1.23626,-0.800331,0.000568313][9.29913e-006,-1,-3.7862e-007][0.140561,0.389344,0][1.60406,-0.800333,0.198406][-1.56249e-006,-1,1.7324e-006][0.119172,0.429108,0][1.23626,-0.800332,0.246812][-1.42539e-005,-1,-2.47144e-006][0.113938,0.389344,0][-1.3917e-007,-0.239794,0.922251][2.74474e-007,-0.838469,-0.54495][0.141064,0.155599,0][0.375282,-0.29027,0.892156][-0.244584,-0.78258,-0.572492][0.10049,0.158853,0][0.375282,-0.572029,1.08301][-0.321479,-0.360471,-0.875621][0.10049,0.138219,0][-1.3917e-007,-0.239794,0.922251][2.74474e-007,-0.838469,-0.54495][0.141064,0.155599,0][0.375282,-0.572029,1.08301][-0.321479,-0.360471,-0.875621][0.10049,0.138219,0][-1.75504e-007,-0.570229,1.16288][-2.22248e-007,-0.366376,-0.930467][0.141064,0.129584,0][0.659875,-0.303988,0.745153][-0.378234,-0.830765,-0.408373][0.645591,0.560938,0][0.911465,-0.568566,0.703334][-0.744449,-0.353566,-0.566381][0.672792,0.589543,0][0.709103,-0.568565,0.894463][-0.546265,-0.39809,-0.736966][0.650913,0.589543,0][1.23626,-0.800332,0.541564][0,-1,0][0.082071,0.389344,0][1.61521,-0.800332,0.424][-2.06891e-007,-1,1.75165e-006][0.094781,0.430314,0][1.61256,-0.800332,0.627676][0.269826,-0.638216,0.721023][0.072761,0.430028,0][1.23626,-0.800332,0.541564][0,-1,0][0.082071,0.389344,0][1.61256,-0.800332,0.627676][0.269826,-0.638216,0.721023][0.072761,0.430028,0][1.23626,-0.800332,0.7852][0.365933,-0.661542,0.654565][0.05573,0.389344,0][2.27934,-0.800333,0.128185][0.564626,-0.789529,-0.240502][0.151035,0.677861,0][2.27428,-0.791801,0.00056847][0.71906,-0.694948,0][0.137237,0.676939,0][2.27382,-0.62147,0.000568477][0.996341,0.0854713,0][0.137237,0.658523,0][2.27934,-0.800333,0.128185][0.564626,-0.789529,-0.240502][0.151035,0.677861,0][2.27382,-0.62147,0.000568477][0.996341,0.0854713,0][0.137237,0.658523,0][2.27758,-0.629738,0.120002][0.933722,0.0583971,-0.353204][0.15015,0.659417,0][2.33054,-0.800332,0.387435][0.626981,-0.556594,0.545067][0.179064,0.677861,0][2.34649,-0.800332,0.210843][0.744567,-0.631467,-0.216493][0.159972,0.677861,0][2.34377,-0.617772,0.201698][0.957406,0.0698514,-0.28017][0.158983,0.658123,0][2.33054,-0.800332,0.387435][0.626981,-0.556594,0.545067][0.179064,0.677861,0][2.34377,-0.617772,0.201698][0.957406,0.0698514,-0.28017][0.158983,0.658123,0][2.32499,-0.612895,0.359032][0.765638,0.164589,0.621859][0.175993,0.657596,0][2.27758,-0.629738,0.120002][0.933722,0.0583971,-0.353204][0.15015,0.659417,0][2.27382,-0.62147,0.000568477][0.996341,0.0854713,0][0.137237,0.658523,0][2.24676,-0.451577,0.000568481][0.986139,0.165919,-4.13122e-006][0.137237,0.640155,0][2.27758,-0.629738,0.120002][0.933722,0.0583971,-0.353204][0.15015,0.659417,0][2.24676,-0.451577,0.000568481][0.986139,0.165919,-4.13122e-006][0.137237,0.640155,0][2.25297,-0.469651,0.113301][0.921143,0.137227,-0.364232][0.149426,0.642109,0][2.32499,-0.612895,0.359032][0.765638,0.164589,0.621859][0.175993,0.657596,0][2.34377,-0.617772,0.201698][0.957406,0.0698514,-0.28017][0.158983,0.658123,0][2.31794,-0.446103,0.190293][0.94105,0.17186,-0.291356][0.15775,0.639563,0][2.32499,-0.612895,0.359032][0.765638,0.164589,0.621859][0.175993,0.657596,0][2.31794,-0.446103,0.190293][0.94105,0.17186,-0.291356][0.15775,0.639563,0][2.30272,-0.442719,0.328265][0.753312,0.254756,0.606317][0.172667,0.639197,0][2.25297,-0.469651,0.113301][0.921143,0.137227,-0.364232][0.149426,0.642109,0][2.24676,-0.451577,0.000568481][0.986139,0.165919,-4.13122e-006][0.137237,0.640155,0][2.22416,-0.325182,0.000568483][0.792544,0.609815,-6.47534e-006][0.137237,0.62649,0][2.25297,-0.469651,0.113301][0.921143,0.137227,-0.364232][0.149426,0.642109,0][2.22416,-0.325182,0.000568483][0.792544,0.609815,-6.47534e-006][0.137237,0.62649,0][2.21753,-0.307364,0.0992815][0.671619,0.586604,-0.452575][0.14791,0.624563,0][2.30272,-0.442719,0.328265][0.753312,0.254756,0.606317][0.172667,0.639197,0][2.31794,-0.446103,0.190293][0.94105,0.17186,-0.291356][0.15775,0.639563,0][2.25989,-0.238137,0.176133][0.68717,0.636959,-0.349401][0.156219,0.617079,0][2.30272,-0.442719,0.328265][0.753312,0.254756,0.606317][0.172667,0.639197,0][2.25989,-0.238137,0.176133][0.68717,0.636959,-0.349401][0.156219,0.617079,0][2.24803,-0.233367,0.290702][0.6385,0.599655,0.482423][0.168606,0.616563,0][0,1.02023,0.655675][0,0.934364,-0.356319][0.4513,0.254772,0][0.30584,0.981385,0.638425][0.172555,0.923959,-0.341357][0.449435,0.287838,0][0.303111,0.843003,0.490608][0.121258,0.883214,-0.453023][0.433454,0.287543,0][0,1.02023,0.655675][0,0.934364,-0.356319][0.4513,0.254772,0][0.303111,0.843003,0.490608][0.121258,0.883214,-0.453023][0.433454,0.287543,0][0,0.875451,0.508822][0,0.888844,-0.45821][0.435423,0.254772,0][0.62131,0.866122,0.547622][0.419334,0.839193,-0.346286][0.439618,0.321945,0][1.10336,0.379375,0.370012][0.567383,0.739896,-0.361429][0.420416,0.374062,0][1.10766,0.252816,0.249201][0.542624,0.740643,-0.396242][0.407354,0.374527,0][0.62131,0.866122,0.547622][0.419334,0.839193,-0.346286][0.439618,0.321945,0][1.10766,0.252816,0.249201][0.542624,0.740643,-0.396242][0.407354,0.374527,0][0.61592,0.733982,0.398866][0.407953,0.817135,-0.407265][0.423535,0.321363,0][1.10336,0.379375,0.370012][0.567383,0.739896,-0.361429][0.420416,0.374062,0][1.47709,0.0694256,0.288077][0.439982,0.82837,-0.346727][0.411557,0.414468,0][1.47364,-0.0239477,0.18265][0.402082,0.825879,-0.395289][0.400159,0.414095,0][1.10336,0.379375,0.370012][0.567383,0.739896,-0.361429][0.420416,0.374062,0][1.47364,-0.0239477,0.18265][0.402082,0.825879,-0.395289][0.400159,0.414095,0][1.10766,0.252816,0.249201][0.542624,0.740643,-0.396242][0.407354,0.374527,0][2.31794,-0.446103,0.190293][0.94105,0.17186,-0.291356][0.15775,0.639563,0][2.25297,-0.469651,0.113301][0.921143,0.137227,-0.364232][0.149426,0.642109,0][2.21753,-0.307364,0.0992815][0.671619,0.586604,-0.452575][0.14791,0.624563,0][2.31794,-0.446103,0.190293][0.94105,0.17186,-0.291356][0.15775,0.639563,0][2.21753,-0.307364,0.0992815][0.671619,0.586604,-0.452575][0.14791,0.624563,0][2.25989,-0.238137,0.176133][0.68717,0.636959,-0.349401][0.156219,0.617079,0][2.34377,-0.617772,0.201698][0.957406,0.0698514,-0.28017][0.158983,0.658123,0][2.27758,-0.629738,0.120002][0.933722,0.0583971,-0.353204][0.15015,0.659417,0][2.25297,-0.469651,0.113301][0.921143,0.137227,-0.364232][0.149426,0.642109,0][2.34377,-0.617772,0.201698][0.957406,0.0698514,-0.28017][0.158983,0.658123,0][2.25297,-0.469651,0.113301][0.921143,0.137227,-0.364232][0.149426,0.642109,0][2.31794,-0.446103,0.190293][0.94105,0.17186,-0.291356][0.15775,0.639563,0][2.34649,-0.800332,0.210843][0.744567,-0.631467,-0.216493][0.159972,0.677861,0][2.27934,-0.800333,0.128185][0.564626,-0.789529,-0.240502][0.151035,0.677861,0][2.27758,-0.629738,0.120002][0.933722,0.0583971,-0.353204][0.15015,0.659417,0][2.34649,-0.800332,0.210843][0.744567,-0.631467,-0.216493][0.159972,0.677861,0][2.27758,-0.629738,0.120002][0.933722,0.0583971,-0.353204][0.15015,0.659417,0][2.34377,-0.617772,0.201698][0.957406,0.0698514,-0.28017][0.158983,0.658123,0][1.23626,-0.800332,0.246812][-1.42539e-005,-1,-2.47144e-006][0.113938,0.389344,0][1.60406,-0.800333,0.198406][-1.56249e-006,-1,1.7324e-006][0.119172,0.429108,0][1.61521,-0.800332,0.424][-2.06891e-007,-1,1.75165e-006][0.094781,0.430314,0][1.23626,-0.800332,0.246812][-1.42539e-005,-1,-2.47144e-006][0.113938,0.389344,0][1.61521,-0.800332,0.424][-2.06891e-007,-1,1.75165e-006][0.094781,0.430314,0][1.23626,-0.800332,0.541564][0,-1,0][0.082071,0.389344,0][0.914595,-0.314008,0.356212][-0.60631,-0.760255,-0.23324][0.042182,0.216797,0][1.10198,-0.568565,0.301512][-0.875732,-0.39719,-0.274471][0.021922,0.222711,0][0.911465,-0.568566,0.703334][-0.744449,-0.353566,-0.566381][0.042521,0.179268,0][0.914595,-0.314008,0.356212][-0.60631,-0.760255,-0.23324][0.042182,0.216797,0][0.911465,-0.568566,0.703334][-0.744449,-0.353566,-0.566381][0.042521,0.179268,0][0.659875,-0.303988,0.745153][-0.378234,-0.830765,-0.408373][0.069721,0.174746,0][0,-0.141337,0.432935][0,-0.990666,-0.136309][0.141064,0.208502,0][0.548214,-0.193817,0.417082][-0.22415,-0.955085,-0.193827][0.081794,0.210216,0][0.375282,-0.29027,0.892156][-0.244584,-0.78258,-0.572492][0.10049,0.158853,0][0,-0.141337,0.432935][0,-0.990666,-0.136309][0.141064,0.208502,0][0.375282,-0.29027,0.892156][-0.244584,-0.78258,-0.572492][0.10049,0.158853,0][-1.3917e-007,-0.239794,0.922251][2.74474e-007,-0.838469,-0.54495][0.141064,0.155599,0][1.60322,-0.800333,0.000568368][0.000752113,-1,-2.26817e-006][0.140561,0.429018,0][2.27428,-0.791801,0.00056847][0.71906,-0.694948,0][0.140561,0.50157,0][2.27934,-0.800333,0.128185][0.564626,-0.789529,-0.240502][0.126764,0.502117,0][1.60322,-0.800333,0.000568368][0.000752113,-1,-2.26817e-006][0.140561,0.429018,0][2.27934,-0.800333,0.128185][0.564626,-0.789529,-0.240502][0.126764,0.502117,0][1.60406,-0.800333,0.198406][-1.56249e-006,-1,1.7324e-006][0.119172,0.429108,0][1.61521,-0.800332,0.424][-2.06891e-007,-1,1.75165e-006][0.094781,0.430314,0][1.60406,-0.800333,0.198406][-1.56249e-006,-1,1.7324e-006][0.119172,0.429108,0][2.27934,-0.800333,0.128185][0.564626,-0.789529,-0.240502][0.126764,0.502117,0][1.61521,-0.800332,0.424][-2.06891e-007,-1,1.75165e-006][0.094781,0.430314,0][2.27934,-0.800333,0.128185][0.564626,-0.789529,-0.240502][0.126764,0.502117,0][2.34649,-0.800332,0.210843][0.744567,-0.631467,-0.216493][0.117827,0.509376,0][1.61256,-0.800332,0.627676][0.269826,-0.638216,0.721023][0.072761,0.430028,0][1.61521,-0.800332,0.424][-2.06891e-007,-1,1.75165e-006][0.094781,0.430314,0][2.34649,-0.800332,0.210843][0.744567,-0.631467,-0.216493][0.117827,0.509376,0][1.61256,-0.800332,0.627676][0.269826,-0.638216,0.721023][0.072761,0.430028,0][2.34649,-0.800332,0.210843][0.744567,-0.631467,-0.216493][0.117827,0.509376,0][2.33054,-0.800332,0.387435][0.626981,-0.556594,0.545067][0.098735,0.507653,0][1.57039,-0.497481,0.574596][0.349691,0.231702,0.907761][0.653637,0.423745,0][1.61256,-0.800332,0.627676][0.269826,-0.638216,0.721023][0.68638,0.428304,0][2.33054,-0.800332,0.387435][0.626981,-0.556594,0.545067][0.68638,0.505929,0][1.57039,-0.497481,0.574596][0.349691,0.231702,0.907761][0.653637,0.423745,0][2.33054,-0.800332,0.387435][0.626981,-0.556594,0.545067][0.68638,0.505929,0][2.32499,-0.612895,0.359032][0.765638,0.164589,0.621859][0.666115,0.505329,0][1.52545,-0.217103,0.509171][0.362657,0.276891,0.889838][0.623324,0.418885,0][1.57039,-0.497481,0.574596][0.349691,0.231702,0.907761][0.653637,0.423745,0][2.32499,-0.612895,0.359032][0.765638,0.164589,0.621859][0.666115,0.505329,0][1.52545,-0.217103,0.509171][0.362657,0.276891,0.889838][0.623324,0.418885,0][2.32499,-0.612895,0.359032][0.765638,0.164589,0.621859][0.666115,0.505329,0][2.30272,-0.442719,0.328265][0.753312,0.254756,0.606317][0.647716,0.502921,0][1.47512,0.0697784,0.431579][0.54034,0.654549,0.52877][0.592307,0.413444,0][1.52545,-0.217103,0.509171][0.362657,0.276891,0.889838][0.623324,0.418885,0][2.30272,-0.442719,0.328265][0.753312,0.254756,0.606317][0.647716,0.502921,0][1.47512,0.0697784,0.431579][0.54034,0.654549,0.52877][0.592307,0.413444,0][2.30272,-0.442719,0.328265][0.753312,0.254756,0.606317][0.647716,0.502921,0][2.24803,-0.233367,0.290702][0.6385,0.599655,0.482423][0.625082,0.497008,0][1.47709,0.0694256,0.288077][0.439982,0.82837,-0.346727][0.411557,0.414468,0][1.47512,0.0697784,0.431579][0.54034,0.654549,0.52877][0.427072,0.414256,0][2.24803,-0.233367,0.290702][0.6385,0.599655,0.482423][0.411841,0.497819,0][1.47709,0.0694256,0.288077][0.439982,0.82837,-0.346727][0.411557,0.414468,0][2.24803,-0.233367,0.290702][0.6385,0.599655,0.482423][0.411841,0.497819,0][2.25989,-0.238137,0.176133][0.68717,0.636959,-0.349401][0.399454,0.499102,0][1.47364,-0.0239477,0.18265][0.402082,0.825879,-0.395289][0.400159,0.414095,0][1.47709,0.0694256,0.288077][0.439982,0.82837,-0.346727][0.411557,0.414468,0][2.25989,-0.238137,0.176133][0.68717,0.636959,-0.349401][0.399454,0.499102,0][1.47364,-0.0239477,0.18265][0.402082,0.825879,-0.395289][0.400159,0.414095,0][2.25989,-0.238137,0.176133][0.68717,0.636959,-0.349401][0.399454,0.499102,0][2.21753,-0.307364,0.0992815][0.671619,0.586604,-0.452575][0.391146,0.494522,0][1.48397,-0.0572701,0.000568383][0.458763,0.888559,-4.11284e-007][0.380473,0.415212,0][1.47364,-0.0239477,0.18265][0.402082,0.825879,-0.395289][0.400159,0.414095,0][2.21753,-0.307364,0.0992815][0.671619,0.586604,-0.452575][0.391146,0.494522,0][1.48397,-0.0572701,0.000568383][0.458763,0.888559,-4.11284e-007][0.380473,0.415212,0][2.21753,-0.307364,0.0992815][0.671619,0.586604,-0.452575][0.391146,0.494522,0][2.22416,-0.325182,0.000568483][0.792544,0.609815,-6.47534e-006][0.380473,0.495239,0][1.19185,-0.800332,0.000568306][-0.633819,-0.773481,7.74332e-007][0.140561,0.384541,0][1.23626,-0.800331,0.000568313][9.29913e-006,-1,-3.7862e-007][0.140561,0.389344,0][1.23626,-0.800332,0.246812][-1.42539e-005,-1,-2.47144e-006][0.113938,0.389344,0][1.19185,-0.800332,0.000568306][-0.633819,-0.773481,7.74332e-007][0.140561,0.384541,0][1.23626,-0.800332,0.246812][-1.42539e-005,-1,-2.47144e-006][0.113938,0.389344,0][1.18263,-0.80033,0.246812][-0.551724,-0.823459,-0.132345][0.113938,0.383545,0][1.03178,-0.800332,0.625647][-0.481205,-0.834967,-0.26697][0.07298,0.367236,0][1.18263,-0.80033,0.246812][-0.551724,-0.823459,-0.132345][0.113938,0.383545,0][1.23626,-0.800332,0.246812][-1.42539e-005,-1,-2.47144e-006][0.113938,0.389344,0][1.03178,-0.800332,0.625647][-0.481205,-0.834967,-0.26697][0.07298,0.367236,0][1.23626,-0.800332,0.246812][-1.42539e-005,-1,-2.47144e-006][0.113938,0.389344,0][1.23626,-0.800332,0.541564][0,-1,0][0.082071,0.389344,0][0.741147,-0.800332,0.989166][-0.276269,-0.875666,-0.396086][0.033678,0.335814,0][1.03178,-0.800332,0.625647][-0.481205,-0.834967,-0.26697][0.07298,0.367236,0][1.23626,-0.800332,0.541564][0,-1,0][0.082071,0.389344,0][0.741147,-0.800332,0.989166][-0.276269,-0.875666,-0.396086][0.033678,0.335814,0][1.23626,-0.800332,0.541564][0,-1,0][0.082071,0.389344,0][1.23626,-0.800332,0.7852][0.365933,-0.661542,0.654565][0.05573,0.389344,0][0.741147,-0.800332,0.989166][-0.276269,-0.875666,-0.396086][0.033678,0.335814,0][1.23626,-0.800332,0.7852][0.365933,-0.661542,0.654565][0.05573,0.389344,0][0.741147,-0.800332,1.13379][0.352857,-0.597272,0.720248][0.018042,0.335814,0][-1.797e-007,-0.800333,1.19067][0,-0.785281,-0.61914][0.011893,0.255684,0][0.375282,-0.800332,1.1261][-0.191474,-0.795932,-0.574308][0.018873,0.296258,0][0.375282,-0.800332,1.24584][0.157111,-0.612779,0.774479][0.005928,0.296258,0][-1.797e-007,-0.800333,1.19067][0,-0.785281,-0.61914][0.011893,0.255684,0][0.375282,-0.800332,1.24584][0.157111,-0.612779,0.774479][0.005928,0.296258,0][-1.93926e-007,-0.800333,1.28488][0,-0.611041,0.791599][0.001707,0.255684,0][0.548214,-0.144164,0.000568238][-0.197954,-0.980211,-1.81974e-007][0.081794,0.255248,0][0.967376,-0.312442,0.000568293][-0.634363,-0.773035,-1.05774e-006][0.036476,0.255248,0][0.914595,-0.314008,0.356212][-0.60631,-0.760255,-0.23324][0.042182,0.216797,0][0.548214,-0.144164,0.000568238][-0.197954,-0.980211,-1.81974e-007][0.081794,0.255248,0][0.914595,-0.314008,0.356212][-0.60631,-0.760255,-0.23324][0.042182,0.216797,0][0.548214,-0.193817,0.417082][-0.22415,-0.955085,-0.193827][0.081794,0.210216,0][0.375282,-0.29027,0.892156][-0.244584,-0.78258,-0.572492][0.10049,0.158853,0][0.548214,-0.193817,0.417082][-0.22415,-0.955085,-0.193827][0.081794,0.210216,0][0.914595,-0.314008,0.356212][-0.60631,-0.760255,-0.23324][0.042182,0.216797,0][0.375282,-0.29027,0.892156][-0.244584,-0.78258,-0.572492][0.10049,0.158853,0][0.914595,-0.314008,0.356212][-0.60631,-0.760255,-0.23324][0.042182,0.216797,0][0.659875,-0.303988,0.745153][-0.378234,-0.830765,-0.408373][0.069721,0.174746,0][0.375282,-0.572029,1.08301][-0.321479,-0.360471,-0.875621][0.10049,0.138219,0][0.375282,-0.29027,0.892156][-0.244584,-0.78258,-0.572492][0.10049,0.158853,0][0.659875,-0.303988,0.745153][-0.378234,-0.830765,-0.408373][0.069721,0.174746,0][0.375282,-0.572029,1.08301][-0.321479,-0.360471,-0.875621][0.10049,0.138219,0][0.659875,-0.303988,0.745153][-0.378234,-0.830765,-0.408373][0.069721,0.174746,0][0.709103,-0.568565,0.894463][-0.546265,-0.39809,-0.736966][0.064399,0.158604,0][0.375282,-0.800332,1.24584][0.157111,-0.612779,0.774479][0.005928,0.296258,0][0.375282,-0.800332,1.1261][-0.191474,-0.795932,-0.574308][0.018873,0.296258,0][0.741147,-0.800332,0.989166][-0.276269,-0.875666,-0.396086][0.033678,0.335814,0][0.375282,-0.800332,1.24584][0.157111,-0.612779,0.774479][0.005928,0.296258,0][0.741147,-0.800332,0.989166][-0.276269,-0.875666,-0.396086][0.033678,0.335814,0][0.741147,-0.800332,1.13379][0.352857,-0.597272,0.720248][0.018042,0.335814,0][0.352134,-0.130986,1.11608][0.207147,0.223033,0.952547][0.614013,0.292032,0][0.375282,-0.800332,1.24584][0.157111,-0.612779,0.774479][0.68638,0.294534,0][0.741147,-0.800332,1.13379][0.352857,-0.597272,0.720248][0.68638,0.33409,0][0.352134,-0.130986,1.11608][0.207147,0.223033,0.952547][0.614013,0.292032,0][0.741147,-0.800332,1.13379][0.352857,-0.597272,0.720248][0.68638,0.33409,0][0.695434,-0.177296,1.01044][0.442834,0.227251,0.867326][0.61902,0.329148,0][0.328987,0.522987,0.949843][0.218456,0.274767,0.936365][0.543308,0.289529,0][0.352134,-0.130986,1.11608][0.207147,0.223033,0.952547][0.614013,0.292032,0][0.695434,-0.177296,1.01044][0.442834,0.227251,0.867326][0.61902,0.329148,0][0.328987,0.522987,0.949843][0.218456,0.274767,0.936365][0.543308,0.289529,0][0.695434,-0.177296,1.01044][0.442834,0.227251,0.867326][0.61902,0.329148,0][0.64972,0.441335,0.852197][0.462686,0.273678,0.843221][0.552136,0.324205,0][0.30584,0.982356,0.810269][0.267018,0.77464,0.573267][0.493643,0.287027,0][0.328987,0.522987,0.949843][0.218456,0.274767,0.936365][0.543308,0.289529,0][0.64972,0.441335,0.852197][0.462686,0.273678,0.843221][0.552136,0.324205,0][0.30584,0.982356,0.810269][0.267018,0.77464,0.573267][0.493643,0.287027,0][0.64972,0.441335,0.852197][0.462686,0.273678,0.843221][0.552136,0.324205,0][0.62131,0.86712,0.715527][0.553662,0.694194,0.459949][0.506102,0.321134,0][0.30584,0.981385,0.638425][0.172555,0.923959,-0.341357][0.449435,0.287838,0][0.30584,0.982356,0.810269][0.267018,0.77464,0.573267][0.468014,0.287838,0][0.62131,0.86712,0.715527][0.553662,0.694194,0.459949][0.457771,0.321945,0][0.30584,0.981385,0.638425][0.172555,0.923959,-0.341357][0.449435,0.287838,0][0.62131,0.86712,0.715527][0.553662,0.694194,0.459949][0.457771,0.321945,0][0.62131,0.866122,0.547622][0.419334,0.839193,-0.346286][0.439618,0.321945,0][0.303111,0.843003,0.490608][0.121258,0.883214,-0.453023][0.433454,0.287543,0][0.30584,0.981385,0.638425][0.172555,0.923959,-0.341357][0.449435,0.287838,0][0.62131,0.866122,0.547622][0.419334,0.839193,-0.346286][0.439618,0.321945,0][0.303111,0.843003,0.490608][0.121258,0.883214,-0.453023][0.433454,0.287543,0][0.62131,0.866122,0.547622][0.419334,0.839193,-0.346286][0.439618,0.321945,0][0.61592,0.733982,0.398866][0.407953,0.817135,-0.407265][0.423535,0.321363,0][0.30584,0.776656,0.000568241][0.212406,0.977181,-6.53079e-007][0.380473,0.287838,0][0.303111,0.843003,0.490608][0.121258,0.883214,-0.453023][0.433454,0.287543,0][0.61592,0.733982,0.398866][0.407953,0.817135,-0.407265][0.423535,0.321363,0][0.30584,0.776656,0.000568241][0.212406,0.977181,-6.53079e-007][0.380473,0.287838,0][0.61592,0.733982,0.398866][0.407953,0.817135,-0.407265][0.423535,0.321363,0][0.62131,0.667182,0.000568284][0.525982,0.850496,2.51562e-007][0.380473,0.321945,0][1.1511,-0.568565,0.00056831][-0.91273,-0.408564,-7.03976e-007][0.311101,0.611423,0][1.19185,-0.800332,0.000568306][-0.633819,-0.773481,7.74332e-007][0.311101,0.636481,0][1.18263,-0.80033,0.246812][-0.551724,-0.823459,-0.132345][0.284479,0.63648,0][1.1511,-0.568565,0.00056831][-0.91273,-0.408564,-7.03976e-007][0.311101,0.611423,0][1.18263,-0.80033,0.246812][-0.551724,-0.823459,-0.132345][0.284479,0.63648,0][1.10198,-0.568565,0.301512][-0.875732,-0.39719,-0.274471][0.278565,0.611423,0][0.911465,-0.568566,0.703334][-0.744449,-0.353566,-0.566381][0.235121,0.611423,0][1.10198,-0.568565,0.301512][-0.875732,-0.39719,-0.274471][0.278565,0.611423,0][1.18263,-0.80033,0.246812][-0.551724,-0.823459,-0.132345][0.284479,0.63648,0][0.911465,-0.568566,0.703334][-0.744449,-0.353566,-0.566381][0.235121,0.611423,0][1.18263,-0.80033,0.246812][-0.551724,-0.823459,-0.132345][0.284479,0.63648,0][1.03178,-0.800332,0.625647][-0.481205,-0.834967,-0.26697][0.243521,0.636481,0][0.709103,-0.568565,0.894463][-0.546265,-0.39809,-0.736966][0.650913,0.589543,0][0.911465,-0.568566,0.703334][-0.744449,-0.353566,-0.566381][0.672792,0.589543,0][1.03178,-0.800332,0.625647][-0.481205,-0.834967,-0.26697][0.6858,0.6146,0][0.709103,-0.568565,0.894463][-0.546265,-0.39809,-0.736966][0.650913,0.589543,0][1.03178,-0.800332,0.625647][-0.481205,-0.834967,-0.26697][0.6858,0.6146,0][0.741147,-0.800332,0.989166][-0.276269,-0.875666,-0.396086][0.654378,0.6146,0][0.375282,-0.800332,1.1261][-0.191474,-0.795932,-0.574308][0.614822,0.6146,0][0.375282,-0.572029,1.08301][-0.321479,-0.360471,-0.875621][0.614822,0.589917,0][0.709103,-0.568565,0.894463][-0.546265,-0.39809,-0.736966][0.650913,0.589543,0][0.375282,-0.800332,1.1261][-0.191474,-0.795932,-0.574308][0.614822,0.6146,0][0.709103,-0.568565,0.894463][-0.546265,-0.39809,-0.736966][0.650913,0.589543,0][0.741147,-0.800332,0.989166][-0.276269,-0.875666,-0.396086][0.654378,0.6146,0][-1.75504e-007,-0.570229,1.16288][-2.22248e-007,-0.366376,-0.930467][0.574248,0.589723,0][0.375282,-0.572029,1.08301][-0.321479,-0.360471,-0.875621][0.614822,0.589917,0][0.375282,-0.800332,1.1261][-0.191474,-0.795932,-0.574308][0.614822,0.6146,0][-1.75504e-007,-0.570229,1.16288][-2.22248e-007,-0.366376,-0.930467][0.574248,0.589723,0][0.375282,-0.800332,1.1261][-0.191474,-0.795932,-0.574308][0.614822,0.6146,0][-1.797e-007,-0.800333,1.19067][0,-0.785281,-0.61914][0.574248,0.6146,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/PoliceCap.mesh b/shareddata/charcustom/hats/fonts/PoliceCap.mesh deleted file mode 100644 index cc8b2c1..0000000 --- a/shareddata/charcustom/hats/fonts/PoliceCap.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -426 -[-0.632497,-0.106265,1.22989][-1.50501,-0.288936,2.60519][0.897211,0.25494,0][-1.0955,-0.0680826,0.768462][-2.6157,-0.168918,1.51486][0.899109,0.145191,0][-1.09525,-0.481596,0.722794][-2.63976,-0.167485,1.50175][0.991902,0.144632,0][-1.09525,-0.481596,0.722794][-2.63976,-0.167485,1.50175][0.991902,0.144632,0][-0.632349,-0.51977,1.18412][-1.52881,-0.290503,2.61927][0.98853,0.254975,0][-0.632497,-0.106265,1.22989][-1.50501,-0.288936,2.60519][0.897211,0.25494,0][-1.50837e-005,-0.120243,1.39879][-9.86573e-007,-0.332653,3.00237][0.896352,0.405478,0][-0.632497,-0.106265,1.22989][-1.50501,-0.288936,2.60519][0.897211,0.25494,0][-0.632349,-0.51977,1.18412][-1.52881,-0.290503,2.61927][0.98853,0.254975,0][-0.632349,-0.51977,1.18412][-1.52881,-0.290503,2.61927][0.98853,0.254975,0][-1.50767e-005,-0.533742,1.35297][-1.01192e-006,-0.335712,3.02998][0.98767,0.405478,0][-1.50837e-005,-0.120243,1.39879][-9.86573e-007,-0.332653,3.00237][0.896352,0.405478,0][0.632467,-0.106265,1.22989][1.50501,-0.288936,2.60519][0.897211,0.556015,0][-1.50837e-005,-0.120243,1.39879][-9.86573e-007,-0.332653,3.00237][0.896352,0.405478,0][-1.50767e-005,-0.533742,1.35297][-1.01192e-006,-0.335712,3.02998][0.98767,0.405478,0][-1.50767e-005,-0.533742,1.35297][-1.01192e-006,-0.335712,3.02998][0.98767,0.405478,0][0.632319,-0.51977,1.18412][1.52881,-0.290503,2.61927][0.98853,0.55598,0][0.632467,-0.106265,1.22989][1.50501,-0.288936,2.60519][0.897211,0.556015,0][1.09547,-0.0680826,0.768462][2.6157,-0.168918,1.51486][0.899561,0.666216,0][0.632467,-0.106265,1.22989][1.50501,-0.288936,2.60519][0.897211,0.556015,0][0.632319,-0.51977,1.18412][1.52881,-0.290503,2.61927][0.98853,0.55598,0][0.632319,-0.51977,1.18412][1.52881,-0.290503,2.61927][0.98853,0.55598,0][1.09522,-0.481596,0.722795][2.63976,-0.167486,1.50176][0.990879,0.666155,0][1.09547,-0.0680826,0.768462][2.6157,-0.168918,1.51486][0.899561,0.666216,0][1.26495,-0.0159221,0.138136][3.03411,-0.00363456,0.0132788][0.862145,0.899429,0][1.09547,-0.0680826,0.768462][2.6157,-0.168918,1.51486][0.994047,0.89657,0][1.09522,-0.481596,0.722795][2.63976,-0.167486,1.50176][0.993516,0.984809,0][1.09522,-0.481596,0.722795][2.63976,-0.167486,1.50176][0.993516,0.984809,0][1.26465,-0.429448,0.0926159][3.03483,-0.000671991,-0.013642][0.861645,0.987667,0][1.26495,-0.0159221,0.138136][3.03411,-0.00363456,0.0132788][0.862145,0.899429,0][1.09547,0.0362373,-0.492191][2.63919,0.163138,-1.50179][0.730243,0.902288,0][1.26495,-0.0159221,0.138136][3.03411,-0.00363456,0.0132788][0.862145,0.899429,0][1.26465,-0.429448,0.0926159][3.03483,-0.000671991,-0.013642][0.861645,0.987667,0][1.26465,-0.429448,0.0926159][3.03483,-0.000671991,-0.013642][0.861645,0.987667,0][1.09522,-0.3773,-0.537563][2.61636,0.164667,-1.5156][0.729774,0.990525,0][1.09547,0.0362373,-0.492191][2.63919,0.163138,-1.50179][0.730243,0.902288,0][0.632467,0.0744203,-0.953622][1.5285,0.286126,-2.6191][0.632759,0.904251,0][1.09547,0.0362373,-0.492191][2.63919,0.163138,-1.50179][0.730243,0.902288,0][1.09522,-0.3773,-0.537563][2.61636,0.164667,-1.5156][0.729774,0.990525,0][1.09522,-0.3773,-0.537563][2.61636,0.164667,-1.5156][0.729774,0.990525,0][0.632319,-0.339123,-0.998886][1.50541,0.284728,-2.60625][0.632752,0.992519,0][0.632467,0.0744203,-0.953622][1.5285,0.286126,-2.6191][0.632759,0.904251,0][-1.4703e-005,0.088398,-1.12252][4.84912e-007,0.331326,-3.02973][0.500365,0.904951,0][0.632467,0.0744203,-0.953622][1.5285,0.286126,-2.6191][0.632759,0.904251,0][0.632319,-0.339123,-0.998886][1.50541,0.284728,-2.60625][0.632752,0.992519,0][0.632319,-0.339123,-0.998886][1.50541,0.284728,-2.60625][0.632752,0.992519,0][-1.46961e-005,-0.325152,-1.16774][4.46857e-007,0.32846,-3.00352][0.500365,0.993187,0][-1.4703e-005,0.088398,-1.12252][4.84912e-007,0.331326,-3.02973][0.500365,0.904951,0][-0.632496,0.0744203,-0.953622][-1.5285,0.286126,-2.6191][0.368433,0.904185,0][-1.4703e-005,0.088398,-1.12252][4.84912e-007,0.331326,-3.02973][0.500365,0.904951,0][-1.46961e-005,-0.325152,-1.16774][4.46857e-007,0.32846,-3.00352][0.500365,0.993187,0][-1.46961e-005,-0.325152,-1.16774][4.46857e-007,0.32846,-3.00352][0.500365,0.993187,0][-0.632348,-0.339123,-0.998886][-1.50541,0.284728,-2.60625][0.368464,0.992421,0][-0.632496,0.0744203,-0.953622][-1.5285,0.286126,-2.6191][0.368433,0.904185,0][-1.0955,0.0362373,-0.492191][-2.63919,0.163139,-1.50179][0.271326,0.902343,0][-0.632496,0.0744203,-0.953622][-1.5285,0.286126,-2.6191][0.368433,0.904185,0][-0.632348,-0.339123,-0.998886][-1.50541,0.284728,-2.60625][0.368464,0.992421,0][-0.632348,-0.339123,-0.998886][-1.50541,0.284728,-2.60625][0.368464,0.992421,0][-1.09525,-0.3773,-0.537563][-2.61635,0.164667,-1.5156][0.271719,0.990517,0][-1.0955,0.0362373,-0.492191][-2.63919,0.163139,-1.50179][0.271326,0.902343,0][-1.26498,-0.0159221,0.138136][-3.03411,-0.00363475,0.0132789][0.139161,0.899609,0][-1.0955,0.0362373,-0.492191][-2.63919,0.163139,-1.50179][0.271326,0.902343,0][-1.09525,-0.3773,-0.537563][-2.61635,0.164667,-1.5156][0.271719,0.990517,0][-1.09525,-0.3773,-0.537563][-2.61635,0.164667,-1.5156][0.271719,0.990517,0][-1.26468,-0.429448,0.0926155][-3.03483,-0.000671535,-0.0136419][0.139661,0.987847,0][-1.26498,-0.0159221,0.138136][-3.03411,-0.00363475,0.0132789][0.139161,0.899609,0][-1.0955,-0.0680826,0.768462][-2.6157,-0.168918,1.51486][0.007259,0.89675,0][-1.26498,-0.0159221,0.138136][-3.03411,-0.00363475,0.0132789][0.139161,0.899609,0][-1.26468,-0.429448,0.0926155][-3.03483,-0.000671535,-0.0136419][0.139661,0.987847,0][-1.26468,-0.429448,0.0926155][-3.03483,-0.000671535,-0.0136419][0.139661,0.987847,0][-1.09525,-0.481596,0.722794][-2.63976,-0.167485,1.50175][0.007789,0.984989,0][-1.0955,-0.0680826,0.768462][-2.6157,-0.168918,1.51486][0.007259,0.89675,0][-1.09417,0.276848,0.782005][-0.247677,0.918613,0.307907][0.587653,0.542323,0][-0.630879,0.21286,1.22302][-0.132883,0.909832,0.393125][0.476114,0.649524,0][-1.48993e-005,0.418513,0.177664][0,0.974291,0.225294][0.32423,0.394072,0][-0.630879,0.21286,1.22302][-0.132883,0.909832,0.393125][0.476114,0.649524,0][-1.50815e-005,0.173724,1.38418][0.000106126,0.901067,0.433679][0.32423,0.689093,0][-1.48993e-005,0.418513,0.177664][0,0.974291,0.225294][0.32423,0.394072,0][-1.50815e-005,0.173724,1.38418][0.000106126,0.901067,0.433679][0.32423,0.689093,0][0.630849,0.21286,1.22301][0.133328,0.90975,0.393164][0.172345,0.649524,0][-1.48993e-005,0.418513,0.177664][0,0.974291,0.225294][0.32423,0.394072,0][0.630849,0.21286,1.22301][0.133328,0.90975,0.393164][0.172345,0.649524,0][1.09414,0.276848,0.782005][0.247615,0.918464,0.308399][0.060806,0.542323,0][-1.48993e-005,0.418513,0.177664][0,0.974291,0.225294][0.32423,0.394072,0][1.09414,0.276848,0.782005][0.247615,0.918464,0.308399][0.060806,0.542323,0][1.26394,0.395508,0.177665][0.27974,0.927719,0.24715][0.019924,0.394647,0][-1.48993e-005,0.418513,0.177664][0,0.974291,0.225294][0.32423,0.394072,0][1.26394,0.395508,0.177665][0.27974,0.927719,0.24715][0.019924,0.394647,0][1.09763,0.620286,-0.506844][0.200826,0.977364,0.0665442][0.059966,0.225124,0][-1.48993e-005,0.418513,0.177664][0,0.974291,0.225294][0.32423,0.394072,0][1.09763,0.620286,-0.506844][0.200826,0.977364,0.0665442][0.059966,0.225124,0][0.631591,0.633402,-0.886533][0.183913,0.982841,0.0141432][0.172167,0.133877,0][-1.48993e-005,0.418513,0.177664][0,0.974291,0.225294][0.32423,0.394072,0][0.631591,0.633402,-0.886533][0.183913,0.982841,0.0141432][0.172167,0.133877,0][-1.46948e-005,0.8522,-1.17633][0.00341703,0.999901,-0.0136689][0.32423,0.059019,0][-1.48993e-005,0.418513,0.177664][0,0.974291,0.225294][0.32423,0.394072,0][-1.46948e-005,0.8522,-1.17633][0.00341703,0.999901,-0.0136689][0.32423,0.059019,0][-0.63162,0.633402,-0.886533][-0.187133,0.982198,0.016406][0.476292,0.133877,0][-1.48993e-005,0.418513,0.177664][0,0.974291,0.225294][0.32423,0.394072,0][-0.63162,0.633402,-0.886533][-0.187133,0.982198,0.016406][0.476292,0.133877,0][-1.09765,0.620286,-0.506844][-0.200369,0.977638,0.0638372][0.588493,0.225124,0][-1.48993e-005,0.418513,0.177664][0,0.974291,0.225294][0.32423,0.394072,0][-1.09765,0.620286,-0.506844][-0.200369,0.977638,0.0638372][0.588493,0.225124,0][-1.26397,0.395508,0.177664][-0.279643,0.927698,0.247338][0.628535,0.394647,0][-1.48993e-005,0.418513,0.177664][0,0.974291,0.225294][0.32423,0.394072,0][-1.26397,0.395508,0.177664][-0.279643,0.927698,0.247338][0.628535,0.394647,0][-1.09417,0.276848,0.782005][-0.247677,0.918613,0.307907][0.587653,0.542323,0][-1.48993e-005,0.418513,0.177664][0,0.974291,0.225294][0.32423,0.394072,0][0.966199,-0.456737,-0.872895][1.26724,2.503,-1.02164][0.568904,0.109246,0][0.632319,-0.520342,-1.53195][0.406678,2.15031,-0.731006][0.779448,0.204574,0][0.632319,-0.339123,-0.998886][1.50541,0.284728,-2.60625][0.613519,0.204574,0][0.632319,-0.339123,-0.998886][1.50541,0.284728,-2.60625][0.613519,0.204574,0][1.09522,-0.3773,-0.537563][2.61636,0.164667,-1.5156][0.463361,0.072408,0][0.966199,-0.456737,-0.872895][1.26724,2.503,-1.02164][0.568904,0.109246,0][0.632319,-0.520342,-1.53195][0.406678,2.15031,-0.731006][0.779448,0.204574,0][-1.46156e-005,-0.506366,-1.70081][4.03309e-006,2.50639,-0.85205][0.83441,0.385116,0][-1.46961e-005,-0.325152,-1.16774][4.46857e-007,0.32846,-3.00352][0.668481,0.385116,0][-1.46961e-005,-0.325152,-1.16774][4.46857e-007,0.32846,-3.00352][0.668481,0.385116,0][0.632319,-0.339123,-0.998886][1.50541,0.284728,-2.60625][0.613519,0.204574,0][0.632319,-0.520342,-1.53195][0.406678,2.15031,-0.731006][0.779448,0.204574,0][-1.46156e-005,-0.506366,-1.70081][4.03309e-006,2.50639,-0.85205][0.83441,0.385116,0][-0.632348,-0.520342,-1.53195][-0.403386,2.14824,-0.741483][0.779448,0.565659,0][-0.632348,-0.339123,-0.998886][-1.50541,0.284728,-2.60625][0.613519,0.565659,0][-0.632348,-0.339123,-0.998886][-1.50541,0.284728,-2.60625][0.613519,0.565659,0][-1.46961e-005,-0.325152,-1.16774][4.46857e-007,0.32846,-3.00352][0.668481,0.385116,0][-1.46156e-005,-0.506366,-1.70081][4.03309e-006,2.50639,-0.85205][0.83441,0.385116,0][-0.632348,-0.520342,-1.53195][-0.403386,2.14824,-0.741483][0.779448,0.565659,0][-0.966228,-0.456737,-0.872895][-2.05269,1.78169,-1.21185][0.568904,0.660987,0][-1.09525,-0.3773,-0.537563][-2.61635,0.164667,-1.5156][0.463361,0.697825,0][-1.09525,-0.3773,-0.537563][-2.61635,0.164667,-1.5156][0.463361,0.697825,0][-0.632348,-0.339123,-0.998886][-1.50541,0.284728,-2.60625][0.613519,0.565659,0][-0.632348,-0.520342,-1.53195][-0.403386,2.14824,-0.741483][0.779448,0.565659,0][-0.668702,0.0855662,1.2872][-0.491515,-0.121941,0.86229][0.854234,0.248082,0][-1.16162,0.155677,0.814605][-0.85764,-0.119465,0.500182][0.848401,0.150169,0][-1.0955,-0.0680826,0.768462][-2.6157,-0.168918,1.51486][0.899109,0.145191,0][-1.0955,-0.0680826,0.768462][-2.6157,-0.168918,1.51486][0.899109,0.145191,0][-0.632497,-0.106265,1.22989][-1.50501,-0.288936,2.60519][0.897211,0.25494,0][-0.668702,0.0855662,1.2872][-0.491515,-0.121941,0.86229][0.854234,0.248082,0][-1.50925e-005,0.0434043,1.45757][0.000188382,-0.133157,0.991095][0.856162,0.405477,0][-0.668702,0.0855662,1.2872][-0.491515,-0.121941,0.86229][0.854234,0.248082,0][-0.632497,-0.106265,1.22989][-1.50501,-0.288936,2.60519][0.897211,0.25494,0][-0.632497,-0.106265,1.22989][-1.50501,-0.288936,2.60519][0.897211,0.25494,0][-1.50837e-005,-0.120243,1.39879][-9.86573e-007,-0.332653,3.00237][0.896352,0.405478,0][-1.50925e-005,0.0434043,1.45757][0.000188382,-0.133157,0.991095][0.856162,0.405477,0][0.668672,0.0855672,1.2872][0.490855,-0.121725,0.862696][0.854235,0.562873,0][-1.50925e-005,0.0434043,1.45757][0.000188382,-0.133157,0.991095][0.856162,0.405477,0][-1.50837e-005,-0.120243,1.39879][-9.86573e-007,-0.332653,3.00237][0.896352,0.405478,0][-1.50837e-005,-0.120243,1.39879][-9.86573e-007,-0.332653,3.00237][0.896352,0.405478,0][0.632467,-0.106265,1.22989][1.50501,-0.288936,2.60519][0.897211,0.556015,0][0.668672,0.0855672,1.2872][0.490855,-0.121725,0.862696][0.854235,0.562873,0][1.16159,0.155677,0.814606][0.859141,-0.122162,0.496944][0.848212,0.660774,0][0.668672,0.0855672,1.2872][0.490855,-0.121725,0.862696][0.854235,0.562873,0][0.632467,-0.106265,1.22989][1.50501,-0.288936,2.60519][0.897211,0.556015,0][0.632467,-0.106265,1.22989][1.50501,-0.288936,2.60519][0.897211,0.556015,0][1.09547,-0.0680826,0.768462][2.6157,-0.168918,1.51486][0.899561,0.666216,0][1.16159,0.155677,0.814606][0.859141,-0.122162,0.496944][0.848212,0.660774,0][1.3475,0.282338,0.166938][0.998376,-0.056176,0.00942039][0.861669,0.835875,0][1.16159,0.155677,0.814606][0.859141,-0.122162,0.496944][0.99878,0.848352,0][1.09547,-0.0680826,0.768462][2.6157,-0.168918,1.51486][0.994047,0.89657,0][1.09547,-0.0680826,0.768462][2.6157,-0.168918,1.51486][0.994047,0.89657,0][1.26495,-0.0159221,0.138136][3.03411,-0.00363456,0.0132788][0.862145,0.899429,0][1.3475,0.282338,0.166938][0.998376,-0.056176,0.00942039][0.861669,0.835875,0][1.17492,0.523446,-0.552515][0.857918,0.0478911,-0.51155][0.707189,0.800835,0][1.3475,0.282338,0.166938][0.998376,-0.056176,0.00942039][0.861669,0.835875,0][1.26495,-0.0159221,0.138136][3.03411,-0.00363456,0.0132788][0.862145,0.899429,0][1.26495,-0.0159221,0.138136][3.03411,-0.00363456,0.0132788][0.862145,0.899429,0][1.09547,0.0362373,-0.492191][2.63919,0.163138,-1.50179][0.730243,0.902288,0][1.17492,0.523446,-0.552515][0.857918,0.0478911,-0.51155][0.707189,0.800835,0][0.677909,0.538537,-0.977553][0.543661,0.0964138,-0.833749][0.641653,0.806868,0][1.17492,0.523446,-0.552515][0.857918,0.0478911,-0.51155][0.707189,0.800835,0][1.09547,0.0362373,-0.492191][2.63919,0.163138,-1.50179][0.730243,0.902288,0][1.09547,0.0362373,-0.492191][2.63919,0.163138,-1.50179][0.730243,0.902288,0][0.632467,0.0744203,-0.953622][1.5285,0.286126,-2.6191][0.632759,0.904251,0][0.677909,0.538537,-0.977553][0.543661,0.0964138,-0.833749][0.641653,0.806868,0][-1.46818e-005,0.775051,-1.26239][-0.00403637,0.111669,-0.993737][0.500365,0.763172,0][0.677909,0.538537,-0.977553][0.543661,0.0964138,-0.833749][0.641653,0.806868,0][0.632467,0.0744203,-0.953622][1.5285,0.286126,-2.6191][0.632759,0.904251,0][0.632467,0.0744203,-0.953622][1.5285,0.286126,-2.6191][0.632759,0.904251,0][-1.4703e-005,0.088398,-1.12252][4.84912e-007,0.331326,-3.02973][0.500365,0.904951,0][-1.46818e-005,0.775051,-1.26239][-0.00403637,0.111669,-0.993737][0.500365,0.763172,0][-0.677938,0.538537,-0.977554][-0.51954,0.093149,-0.849353][0.358954,0.806803,0][-1.46818e-005,0.775051,-1.26239][-0.00403637,0.111669,-0.993737][0.500365,0.763172,0][-1.4703e-005,0.088398,-1.12252][4.84912e-007,0.331326,-3.02973][0.500365,0.904951,0][-1.4703e-005,0.088398,-1.12252][4.84912e-007,0.331326,-3.02973][0.500365,0.904951,0][-0.632496,0.0744203,-0.953622][-1.5285,0.286126,-2.6191][0.368433,0.904185,0][-0.677938,0.538537,-0.977554][-0.51954,0.093149,-0.849353][0.358954,0.806803,0][-1.17495,0.523445,-0.552515][-0.861363,0.062435,-0.504138][0.294301,0.80089,0][-0.677938,0.538537,-0.977554][-0.51954,0.093149,-0.849353][0.358954,0.806803,0][-0.632496,0.0744203,-0.953622][-1.5285,0.286126,-2.6191][0.368433,0.904185,0][-0.632496,0.0744203,-0.953622][-1.5285,0.286126,-2.6191][0.368433,0.904185,0][-1.0955,0.0362373,-0.492191][-2.63919,0.163139,-1.50179][0.271326,0.902343,0][-1.17495,0.523445,-0.552515][-0.861363,0.062435,-0.504138][0.294301,0.80089,0][-1.34753,0.282338,0.166937][-0.998715,-0.0487186,0.0139384][0.139637,0.836056,0][-1.17495,0.523445,-0.552515][-0.861363,0.062435,-0.504138][0.294301,0.80089,0][-1.0955,0.0362373,-0.492191][-2.63919,0.163139,-1.50179][0.271326,0.902343,0][-1.0955,0.0362373,-0.492191][-2.63919,0.163139,-1.50179][0.271326,0.902343,0][-1.26498,-0.0159221,0.138136][-3.03411,-0.00363475,0.0132789][0.139161,0.899609,0][-1.34753,0.282338,0.166937][-0.998715,-0.0487186,0.0139384][0.139637,0.836056,0][-1.16162,0.155677,0.814605][-0.85764,-0.119465,0.500182][0.002525,0.848532,0][-1.34753,0.282338,0.166937][-0.998715,-0.0487186,0.0139384][0.139637,0.836056,0][-1.26498,-0.0159221,0.138136][-3.03411,-0.00363475,0.0132789][0.139161,0.899609,0][-1.26498,-0.0159221,0.138136][-3.03411,-0.00363475,0.0132789][0.139161,0.899609,0][-1.0955,-0.0680826,0.768462][-2.6157,-0.168918,1.51486][0.007259,0.89675,0][-1.16162,0.155677,0.814605][-0.85764,-0.119465,0.500182][0.002525,0.848532,0][-1.33358,0.359283,0.174305][-0.833464,0.53359,0.143594][0.139772,0.819661,0][-1.34753,0.282338,0.166937][-0.998715,-0.0487186,0.0139384][0.139637,0.836056,0][-1.16162,0.155677,0.814605][-0.85764,-0.119465,0.500182][0.002525,0.848532,0][-1.16162,0.155677,0.814605][-0.85764,-0.119465,0.500182][0.002525,0.848532,0][-1.15318,0.234336,0.813157][-0.71722,0.48116,0.504064][0.004527,0.83197,0][-1.33358,0.359283,0.174305][-0.833464,0.53359,0.143594][0.139772,0.819661,0][-1.26397,0.395508,0.177664][-0.279643,0.927698,0.247338][0.628535,0.394647,0][-1.33358,0.359283,0.174305][-0.833464,0.53359,0.143594][0.645294,0.394747,0][-1.15318,0.234336,0.813157][-0.71722,0.48116,0.504064][0.601862,0.550845,0][-1.15318,0.234336,0.813157][-0.71722,0.48116,0.504064][0.601862,0.550845,0][-1.09417,0.276848,0.782005][-0.247677,0.918613,0.307907][0.587653,0.542323,0][-1.26397,0.395508,0.177664][-0.279643,0.927698,0.247338][0.628535,0.394647,0][-0.665238,0.166563,1.28041][-0.399717,0.471796,0.785897][0.484386,0.664424,0][-0.630879,0.21286,1.22302][-0.132883,0.909832,0.393125][0.476114,0.649524,0][-1.09417,0.276848,0.782005][-0.247677,0.918613,0.307907][0.587653,0.542323,0][-1.09417,0.276848,0.782005][-0.247677,0.918613,0.307907][0.587653,0.542323,0][-1.15318,0.234336,0.813157][-0.71722,0.48116,0.504064][0.601862,0.550845,0][-0.665238,0.166563,1.28041][-0.399717,0.471796,0.785897][0.484386,0.664424,0][-0.668702,0.0855662,1.2872][-0.491515,-0.121941,0.86229][0.854234,0.248082,0][-0.665238,0.166563,1.28041][-0.399717,0.471796,0.785897][0.835228,0.248898,0][-1.15318,0.234336,0.813157][-0.71722,0.48116,0.504064][0.830984,0.148064,0][-1.15318,0.234336,0.813157][-0.71722,0.48116,0.504064][0.830984,0.148064,0][-1.16162,0.155677,0.814605][-0.85764,-0.119465,0.500182][0.848401,0.150169,0][-0.668702,0.0855662,1.2872][-0.491515,-0.121941,0.86229][0.854234,0.248082,0][-1.50915e-005,0.125347,1.45067][-0.000282365,0.452911,0.891555][0.32423,0.706222,0][-1.50815e-005,0.173724,1.38418][0.000106126,0.901067,0.433679][0.32423,0.689093,0][-0.630879,0.21286,1.22302][-0.132883,0.909832,0.393125][0.476114,0.649524,0][-0.630879,0.21286,1.22302][-0.132883,0.909832,0.393125][0.476114,0.649524,0][-0.665238,0.166563,1.28041][-0.399717,0.471796,0.785897][0.484386,0.664424,0][-1.50915e-005,0.125347,1.45067][-0.000282365,0.452911,0.891555][0.32423,0.706222,0][-1.50925e-005,0.0434043,1.45757][0.000188382,-0.133157,0.991095][0.856162,0.405477,0][-1.50915e-005,0.125347,1.45067][-0.000282365,0.452911,0.891555][0.840784,0.405477,0][-0.665238,0.166563,1.28041][-0.399717,0.471796,0.785897][0.835228,0.248898,0][-0.665238,0.166563,1.28041][-0.399717,0.471796,0.785897][0.835228,0.248898,0][-0.668702,0.0855662,1.2872][-0.491515,-0.121941,0.86229][0.854234,0.248082,0][-1.50925e-005,0.0434043,1.45757][0.000188382,-0.133157,0.991095][0.856162,0.405477,0][0.665208,0.166564,1.28041][0.400181,0.472156,0.785445][0.164073,0.664424,0][0.630849,0.21286,1.22301][0.133328,0.90975,0.393164][0.172345,0.649524,0][-1.50815e-005,0.173724,1.38418][0.000106126,0.901067,0.433679][0.32423,0.689093,0][-1.50815e-005,0.173724,1.38418][0.000106126,0.901067,0.433679][0.32423,0.689093,0][-1.50915e-005,0.125347,1.45067][-0.000282365,0.452911,0.891555][0.32423,0.706222,0][0.665208,0.166564,1.28041][0.400181,0.472156,0.785445][0.164073,0.664424,0][0.668672,0.0855672,1.2872][0.490855,-0.121725,0.862696][0.854235,0.562873,0][0.665208,0.166564,1.28041][0.400181,0.472156,0.785445][0.835228,0.562058,0][-1.50915e-005,0.125347,1.45067][-0.000282365,0.452911,0.891555][0.840784,0.405477,0][-1.50915e-005,0.125347,1.45067][-0.000282365,0.452911,0.891555][0.840784,0.405477,0][-1.50925e-005,0.0434043,1.45757][0.000188382,-0.133157,0.991095][0.856162,0.405477,0][0.668672,0.0855672,1.2872][0.490855,-0.121725,0.862696][0.854235,0.562873,0][1.15315,0.234336,0.813158][0.715917,0.481695,0.505404][0.046597,0.550845,0][1.09414,0.276848,0.782005][0.247615,0.918464,0.308399][0.060806,0.542323,0][0.630849,0.21286,1.22301][0.133328,0.90975,0.393164][0.172345,0.649524,0][0.630849,0.21286,1.22301][0.133328,0.90975,0.393164][0.172345,0.649524,0][0.665208,0.166564,1.28041][0.400181,0.472156,0.785445][0.164073,0.664424,0][1.15315,0.234336,0.813158][0.715917,0.481695,0.505404][0.046597,0.550845,0][1.16159,0.155677,0.814606][0.859141,-0.122162,0.496944][0.848212,0.660774,0][1.15315,0.234336,0.813158][0.715917,0.481695,0.505404][0.830795,0.662879,0][0.665208,0.166564,1.28041][0.400181,0.472156,0.785445][0.835228,0.562058,0][0.665208,0.166564,1.28041][0.400181,0.472156,0.785445][0.835228,0.562058,0][0.668672,0.0855672,1.2872][0.490855,-0.121725,0.862696][0.854235,0.562873,0][1.16159,0.155677,0.814606][0.859141,-0.122162,0.496944][0.848212,0.660774,0][1.33355,0.359283,0.174306][0.832549,0.534724,0.14468][0.003165,0.394747,0][1.26394,0.395508,0.177665][0.27974,0.927719,0.24715][0.019924,0.394647,0][1.09414,0.276848,0.782005][0.247615,0.918464,0.308399][0.060806,0.542323,0][1.09414,0.276848,0.782005][0.247615,0.918464,0.308399][0.060806,0.542323,0][1.15315,0.234336,0.813158][0.715917,0.481695,0.505404][0.046597,0.550845,0][1.33355,0.359283,0.174306][0.832549,0.534724,0.14468][0.003165,0.394747,0][1.3475,0.282338,0.166938][0.998376,-0.056176,0.00942039][0.861669,0.835875,0][1.33355,0.359283,0.174306][0.832549,0.534724,0.14468][0.861534,0.819481,0][1.15315,0.234336,0.813158][0.715917,0.481695,0.505404][0.996779,0.83179,0][1.15315,0.234336,0.813158][0.715917,0.481695,0.505404][0.996779,0.83179,0][1.16159,0.155677,0.814606][0.859141,-0.122162,0.496944][0.99878,0.848352,0][1.3475,0.282338,0.166938][0.998376,-0.056176,0.00942039][0.861669,0.835875,0][1.15756,0.595322,-0.543398][0.686029,0.655723,-0.315263][0.045537,0.216994,0][1.09763,0.620286,-0.506844][0.200826,0.977364,0.0665442][0.059966,0.225124,0][1.26394,0.395508,0.177665][0.27974,0.927719,0.24715][0.019924,0.394647,0][1.26394,0.395508,0.177665][0.27974,0.927719,0.24715][0.019924,0.394647,0][1.33355,0.359283,0.174306][0.832549,0.534724,0.14468][0.003165,0.394747,0][1.15756,0.595322,-0.543398][0.686029,0.655723,-0.315263][0.045537,0.216994,0][1.17492,0.523446,-0.552515][0.857918,0.0478911,-0.51155][0.707189,0.800835,0][1.15756,0.595322,-0.543398][0.686029,0.655723,-0.315263][0.707526,0.785471,0][1.33355,0.359283,0.174306][0.832549,0.534724,0.14468][0.861534,0.819481,0][1.33355,0.359283,0.174306][0.832549,0.534724,0.14468][0.861534,0.819481,0][1.3475,0.282338,0.166938][0.998376,-0.056176,0.00942039][0.861669,0.835875,0][1.17492,0.523446,-0.552515][0.857918,0.0478911,-0.51155][0.707189,0.800835,0][0.66781,0.611129,-0.951619][0.472276,0.68126,-0.559321][0.163446,0.118847,0][0.631591,0.633402,-0.886533][0.183913,0.982841,0.0141432][0.172167,0.133877,0][1.09763,0.620286,-0.506844][0.200826,0.977364,0.0665442][0.059966,0.225124,0][1.09763,0.620286,-0.506844][0.200826,0.977364,0.0665442][0.059966,0.225124,0][1.15756,0.595322,-0.543398][0.686029,0.655723,-0.315263][0.045537,0.216994,0][0.66781,0.611129,-0.951619][0.472276,0.68126,-0.559321][0.163446,0.118847,0][0.677909,0.538537,-0.977553][0.543661,0.0964138,-0.833749][0.641653,0.806868,0][0.66781,0.611129,-0.951619][0.472276,0.68126,-0.559321][0.640171,0.791017,0][1.15756,0.595322,-0.543398][0.686029,0.655723,-0.315263][0.707526,0.785471,0][1.15756,0.595322,-0.543398][0.686029,0.655723,-0.315263][0.707526,0.785471,0][1.17492,0.523446,-0.552515][0.857918,0.0478911,-0.51155][0.707189,0.800835,0][0.677909,0.538537,-0.977553][0.543661,0.0964138,-0.833749][0.641653,0.806868,0][-1.4685e-005,0.838285,-1.24147][0.00385852,0.731485,-0.681846][0.32423,0.04377,0][-1.46948e-005,0.8522,-1.17633][0.00341703,0.999901,-0.0136689][0.32423,0.059019,0][0.631591,0.633402,-0.886533][0.183913,0.982841,0.0141432][0.172167,0.133877,0][0.631591,0.633402,-0.886533][0.183913,0.982841,0.0141432][0.172167,0.133877,0][0.66781,0.611129,-0.951619][0.472276,0.68126,-0.559321][0.163446,0.118847,0][-1.4685e-005,0.838285,-1.24147][0.00385852,0.731485,-0.681846][0.32423,0.04377,0][-1.46818e-005,0.775051,-1.26239][-0.00403637,0.111669,-0.993737][0.500365,0.763172,0][-1.4685e-005,0.838285,-1.24147][0.00385852,0.731485,-0.681846][0.50034,0.740734,0][0.66781,0.611129,-0.951619][0.472276,0.68126,-0.559321][0.640171,0.791017,0][0.66781,0.611129,-0.951619][0.472276,0.68126,-0.559321][0.640171,0.791017,0][0.677909,0.538537,-0.977553][0.543661,0.0964138,-0.833749][0.641653,0.806868,0][-1.46818e-005,0.775051,-1.26239][-0.00403637,0.111669,-0.993737][0.500365,0.763172,0][-0.66784,0.611129,-0.95162][-0.479711,0.679552,-0.555056][0.485013,0.118847,0][-0.63162,0.633402,-0.886533][-0.187133,0.982198,0.016406][0.476292,0.133877,0][-1.46948e-005,0.8522,-1.17633][0.00341703,0.999901,-0.0136689][0.32423,0.059019,0][-1.46948e-005,0.8522,-1.17633][0.00341703,0.999901,-0.0136689][0.32423,0.059019,0][-1.4685e-005,0.838285,-1.24147][0.00385852,0.731485,-0.681846][0.32423,0.04377,0][-0.66784,0.611129,-0.95162][-0.479711,0.679552,-0.555056][0.485013,0.118847,0][-0.677938,0.538537,-0.977554][-0.51954,0.093149,-0.849353][0.358954,0.806803,0][-0.66784,0.611129,-0.95162][-0.479711,0.679552,-0.555056][0.36106,0.790919,0][-1.4685e-005,0.838285,-1.24147][0.00385852,0.731485,-0.681846][0.50034,0.740734,0][-1.4685e-005,0.838285,-1.24147][0.00385852,0.731485,-0.681846][0.50034,0.740734,0][-1.46818e-005,0.775051,-1.26239][-0.00403637,0.111669,-0.993737][0.500365,0.763172,0][-0.677938,0.538537,-0.977554][-0.51954,0.093149,-0.849353][0.358954,0.806803,0][-1.15759,0.595322,-0.543398][-0.685211,0.654716,-0.319111][0.602922,0.216994,0][-1.09765,0.620286,-0.506844][-0.200369,0.977638,0.0638372][0.588493,0.225124,0][-0.63162,0.633402,-0.886533][-0.187133,0.982198,0.016406][0.476292,0.133877,0][-0.63162,0.633402,-0.886533][-0.187133,0.982198,0.016406][0.476292,0.133877,0][-0.66784,0.611129,-0.95162][-0.479711,0.679552,-0.555056][0.485013,0.118847,0][-1.15759,0.595322,-0.543398][-0.685211,0.654716,-0.319111][0.602922,0.216994,0][-1.17495,0.523445,-0.552515][-0.861363,0.062435,-0.504138][0.294301,0.80089,0][-1.15759,0.595322,-0.543398][-0.685211,0.654716,-0.319111][0.293764,0.785463,0][-0.66784,0.611129,-0.95162][-0.479711,0.679552,-0.555056][0.36106,0.790919,0][-0.66784,0.611129,-0.95162][-0.479711,0.679552,-0.555056][0.36106,0.790919,0][-0.677938,0.538537,-0.977554][-0.51954,0.093149,-0.849353][0.358954,0.806803,0][-1.17495,0.523445,-0.552515][-0.861363,0.062435,-0.504138][0.294301,0.80089,0][-1.33358,0.359283,0.174305][-0.833464,0.53359,0.143594][0.645294,0.394747,0][-1.26397,0.395508,0.177664][-0.279643,0.927698,0.247338][0.628535,0.394647,0][-1.09765,0.620286,-0.506844][-0.200369,0.977638,0.0638372][0.588493,0.225124,0][-1.09765,0.620286,-0.506844][-0.200369,0.977638,0.0638372][0.588493,0.225124,0][-1.15759,0.595322,-0.543398][-0.685211,0.654716,-0.319111][0.602922,0.216994,0][-1.33358,0.359283,0.174305][-0.833464,0.53359,0.143594][0.645294,0.394747,0][-1.34753,0.282338,0.166937][-0.998715,-0.0487186,0.0139384][0.139637,0.836056,0][-1.33358,0.359283,0.174305][-0.833464,0.53359,0.143594][0.139772,0.819661,0][-1.15759,0.595322,-0.543398][-0.685211,0.654716,-0.319111][0.293764,0.785463,0][-1.15759,0.595322,-0.543398][-0.685211,0.654716,-0.319111][0.293764,0.785463,0][-1.17495,0.523445,-0.552515][-0.861363,0.062435,-0.504138][0.294301,0.80089,0][-1.34753,0.282338,0.166937][-0.998715,-0.0487186,0.0139384][0.139637,0.836056,0][-1.26468,-0.429448,0.0926155][-3.03483,-0.000671535,-0.0136419][0.693655,0.751541,0][-1.14847,-0.446047,0.293214][-0.0458425,-3.13207,-0.232624][0.709812,0.737591,0][-1.1233,-0.459201,0.45216][7.31677e-006,-3.44313,-0.284928][0.735442,0.711659,0][-1.09525,-0.481596,0.722794][-2.63976,-0.167485,1.50175][0.781922,0.664208,0][-1.26468,-0.429448,0.0926155][-3.03483,-0.000671535,-0.0136419][0.693655,0.751541,0][-1.1233,-0.459201,0.45216][7.31677e-006,-3.44313,-0.284928][0.735442,0.711659,0][-1.09525,-0.481596,0.722794][-2.63976,-0.167485,1.50175][0.781922,0.664208,0][-1.1233,-0.459201,0.45216][7.31677e-006,-3.44313,-0.284928][0.735442,0.711659,0][-0.955532,-0.486447,0.781414][1.32461e-005,-3.44365,-0.284971][0.766369,0.683651,0][-0.955532,-0.486447,0.781414][1.32461e-005,-3.44365,-0.284971][0.766369,0.683651,0][-0.741858,-0.504128,0.995088][-0.0322832,-3.13016,-0.24032][0.766347,0.688782,0][-0.632349,-0.51977,1.18412][-1.52881,-0.290503,2.61927][0.781573,0.675637,0][-1.09525,-0.481596,0.722794][-2.63976,-0.167485,1.50175][0.781922,0.664208,0][-0.955532,-0.486447,0.781414][1.32461e-005,-3.44365,-0.284971][0.766369,0.683651,0][-0.632349,-0.51977,1.18412][-1.52881,-0.290503,2.61927][0.781573,0.675637,0][-1.26468,-0.429448,0.0926155][-3.03483,-0.000671535,-0.0136419][0.139661,0.987847,0][-1.09525,-0.3773,-0.537563][-2.61635,0.164667,-1.5156][0.271719,0.990517,0][-0.966228,-0.456737,-0.872895][-2.05269,1.78169,-1.21185][0.568904,0.660987,0][-0.966228,-0.456737,-0.872895][-2.05269,1.78169,-1.21185][0.738112,0.717688,0][-0.632348,-0.520342,-1.53195][-0.403386,2.14824,-0.741483][0.759918,0.707815,0][-1.46156e-005,-0.506366,-1.70081][4.03309e-006,2.50639,-0.85205][0.765611,0.689116,0][-1.46156e-005,-0.506366,-1.70081][4.03309e-006,2.50639,-0.85205][0.765611,0.689116,0][0.632319,-0.520342,-1.53195][0.406678,2.15031,-0.731006][0.759918,0.670417,0][0.966199,-0.456737,-0.872895][1.26724,2.503,-1.02164][0.738112,0.660544,0][-1.15835,-0.444166,0.230817][-0.390107,-3.12175,-0.0323301][0.708529,0.738838,0][-1.14847,-0.446047,0.293214][-0.0458425,-3.13207,-0.232624][0.709812,0.737591,0][-1.26468,-0.429448,0.0926155][-3.03483,-0.000671535,-0.0136419][0.693655,0.751541,0][-1.18043,-0.439919,0.0871795][-0.428944,-3.43277,-0.0355697][0.70567,0.741629,0][-1.15835,-0.444166,0.230817][-0.390107,-3.12175,-0.0323301][0.708529,0.738838,0][-1.26468,-0.429448,0.0926155][-3.03483,-0.000671535,-0.0136419][0.693655,0.751541,0][-1.11898,-0.44373,-0.28612][-0.429967,-3.44086,-0.0356551][0.715786,0.73441,0][-1.18043,-0.439919,0.0871795][-0.428944,-3.43277,-0.0355697][0.70567,0.741629,0][-1.26468,-0.429448,0.0926155][-3.03483,-0.000671535,-0.0136419][0.693655,0.751541,0][-1.11898,-0.44373,-0.28612][-0.429967,-3.44086,-0.0356551][0.715786,0.73441,0][-1.26468,-0.429448,0.0926155][-3.03483,-0.000671535,-0.0136419][0.693655,0.751541,0][-0.966228,-0.456737,-0.872895][-2.05269,1.78169,-1.21185][0.738112,0.717688,0][-0.941571,-0.462428,-0.621016][-0.316548,-3.41977,-0.0462771][0.743139,0.712824,0][-1.11898,-0.44373,-0.28612][-0.429967,-3.44086,-0.0356551][0.715786,0.73441,0][-0.966228,-0.456737,-0.872895][-2.05269,1.78169,-1.21185][0.738112,0.717688,0][-0.689777,-0.456807,-0.870624][-0.00197212,-3.4463,0.134387][0.738112,0.709381,0][-0.941571,-0.462428,-0.621016][-0.316548,-3.41977,-0.0462771][0.743139,0.712824,0][-0.966228,-0.456737,-0.872895][-2.05269,1.78169,-1.21185][0.738112,0.717688,0][-0.364981,-0.466522,-1.03612][-0.000150099,-3.45001,0.20626][0.743533,0.699908,0][-0.689777,-0.456807,-0.870624][-0.00197212,-3.4463,0.134387][0.738112,0.709381,0][-0.966228,-0.456737,-0.872895][-2.05269,1.78169,-1.21185][0.738112,0.717688,0][-0.364981,-0.466522,-1.03612][-0.000150099,-3.45001,0.20626][0.743533,0.699908,0][-0.966228,-0.456737,-0.872895][-2.05269,1.78169,-1.21185][0.738112,0.717688,0][-1.46156e-005,-0.506366,-1.70081][4.03309e-006,2.50639,-0.85205][0.765611,0.689116,0][0,-0.469987,-1.09392][0,-3.45011,0.206815][0.745453,0.689115,0][-0.364981,-0.466522,-1.03612][-0.000150099,-3.45001,0.20626][0.743533,0.699908,0][-1.46156e-005,-0.506366,-1.70081][4.03309e-006,2.50639,-0.85205][0.765611,0.689116,0][0.364981,-0.466522,-1.03612][0.000149991,-3.45001,0.20626][0.743533,0.678322,0][0,-0.469987,-1.09392][0,-3.45011,0.206815][0.745453,0.689115,0][-1.46156e-005,-0.506366,-1.70081][4.03309e-006,2.50639,-0.85205][0.765611,0.689116,0][0.364981,-0.466522,-1.03612][0.000149991,-3.45001,0.20626][0.743533,0.678322,0][-1.46156e-005,-0.506366,-1.70081][4.03309e-006,2.50639,-0.85205][0.765611,0.689116,0][0.966199,-0.456737,-0.872895][1.26724,2.503,-1.02164][0.738112,0.660544,0][0.364981,-0.466522,-1.03612][0.000149991,-3.45001,0.20626][0.743533,0.678322,0][0.966199,-0.456737,-0.872895][1.26724,2.503,-1.02164][0.738112,0.660544,0][0.689777,-0.456807,-0.870624][0.00191998,-3.44352,0.128115][0.738208,0.668515,0][0.966199,-0.456737,-0.872895][1.26724,2.503,-1.02164][0.738112,0.660544,0][1.09522,-0.3773,-0.537563][2.61636,0.164667,-1.5156][0.727181,0.656728,0][1.26465,-0.429448,0.0926159][3.03483,-0.000671991,-0.013642][0.768431,0.751523,0][1.1233,-0.459201,0.45216][-5.94233e-006,-3.44313,-0.284928][0.774837,0.745525,0][1.14848,-0.446042,0.293144][0.0458453,-3.13208,-0.232624][0.770846,0.743308,0][1.26465,-0.429448,0.0926159][3.03483,-0.000671991,-0.013642][0.768431,0.751523,0][1.1233,-0.459201,0.45216][-5.94233e-006,-3.44313,-0.284928][0.774837,0.745525,0][1.26465,-0.429448,0.0926159][3.03483,-0.000671991,-0.013642][0.768431,0.751523,0][1.09522,-0.481596,0.722795][2.63976,-0.167486,1.50176][0.782089,0.751227,0][0.955532,-0.486447,0.781414][-1.37568e-005,-3.44365,-0.284973][0.779514,0.735036,0][1.1233,-0.459201,0.45216][-5.94233e-006,-3.44313,-0.284928][0.774837,0.745525,0][1.09522,-0.481596,0.722795][2.63976,-0.167486,1.50176][0.782089,0.751227,0][1.09522,-0.481596,0.722795][2.63976,-0.167486,1.50176][0.782089,0.751227,0][0.632319,-0.51977,1.18412][1.52881,-0.290503,2.61927][0.781573,0.706812,0][0.741788,-0.504134,0.995158][0.0322903,-3.13016,-0.240314][0.779298,0.714553,0][0.955532,-0.486447,0.781414][-1.37568e-005,-3.44365,-0.284973][0.779514,0.735036,0][1.09522,-0.481596,0.722795][2.63976,-0.167486,1.50176][0.782089,0.751227,0][0.741788,-0.504134,0.995158][0.0322903,-3.13016,-0.240314][0.779298,0.714553,0][1.11896,-0.443728,-0.286155][0.429959,-3.44084,-0.0356527][0.756212,0.712514,0][0.941559,-0.462426,-0.621028][0.326961,-3.41554,-0.0451538][0.744436,0.671466,0][0.966199,-0.456737,-0.872895][1.26724,2.503,-1.02164][0.738112,0.660544,0][1.11896,-0.443728,-0.286155][0.429959,-3.44084,-0.0356527][0.756212,0.712514,0][0.966199,-0.456737,-0.872895][1.26724,2.503,-1.02164][0.738112,0.660544,0][1.26465,-0.429448,0.0926159][3.03483,-0.000671991,-0.013642][0.768431,0.751523,0][1.18043,-0.439916,0.0871798][0.42896,-3.4328,-0.0355658][0.766462,0.73845,0][1.11896,-0.443728,-0.286155][0.429959,-3.44084,-0.0356527][0.756212,0.712514,0][1.26465,-0.429448,0.0926159][3.03483,-0.000671991,-0.013642][0.768431,0.751523,0][1.26465,-0.429448,0.0926159][3.03483,-0.000671991,-0.013642][0.768431,0.751523,0][1.14848,-0.446042,0.293144][0.0458453,-3.13208,-0.232624][0.770846,0.743308,0][1.15833,-0.444166,0.23094][0.390078,-3.12175,-0.0323473][0.769526,0.741872,0][1.18043,-0.439916,0.0871798][0.42896,-3.4328,-0.0355658][0.766462,0.73845,0][1.26465,-0.429448,0.0926159][3.03483,-0.000671991,-0.013642][0.768431,0.751523,0][1.15833,-0.444166,0.23094][0.390078,-3.12175,-0.0323473][0.769526,0.741872,0][0.36498,-0.521951,1.21047][-1.7306e-006,-3.44483,-0.28506][0.781559,0.700222,0][0.416707,-0.51977,1.18412][2.59336e-007,-3.13109,-0.234528][0.781573,0.701497,0][0.632319,-0.51977,1.18412][1.52881,-0.290503,2.61927][0.781573,0.706812,0][-2.60787e-007,-0.526734,1.26828][-3.04846e-007,-3.44504,-0.285057][0.781529,0.691225,0][0.36498,-0.521951,1.21047][-1.7306e-006,-3.44483,-0.28506][0.781559,0.700222,0][0.632319,-0.51977,1.18412][1.52881,-0.290503,2.61927][0.781573,0.706812,0][-2.60787e-007,-0.526734,1.26828][-3.04846e-007,-3.44504,-0.285057][0.781529,0.691225,0][0.632319,-0.51977,1.18412][1.52881,-0.290503,2.61927][0.781573,0.706812,0][-1.50767e-005,-0.533742,1.35297][-1.01192e-006,-0.335712,3.02998][0.781484,0.691225,0][-0.364981,-0.521951,1.21047][3.66701e-007,-3.44483,-0.285045][0.781559,0.682228,0][-2.60787e-007,-0.526734,1.26828][-3.04846e-007,-3.44504,-0.285057][0.781529,0.691225,0][-1.50767e-005,-0.533742,1.35297][-1.01192e-006,-0.335712,3.02998][0.781484,0.691225,0][-0.364981,-0.521951,1.21047][3.66701e-007,-3.44483,-0.285045][0.781559,0.682228,0][-1.50767e-005,-0.533742,1.35297][-1.01192e-006,-0.335712,3.02998][0.781484,0.691225,0][-0.632349,-0.51977,1.18412][-1.52881,-0.290503,2.61927][0.781573,0.675637,0][-0.364981,-0.521951,1.21047][3.66701e-007,-3.44483,-0.285045][0.781559,0.682228,0][-0.632349,-0.51977,1.18412][-1.52881,-0.290503,2.61927][0.781573,0.675637,0][-0.416708,-0.51977,1.18412][0,-3.13109,-0.234529][0.781573,0.680953,0][0.651758,-0.5161,1.06435][0.273014,-3.12304,-0.0513862][0.779043,0.704118,0][0.632319,-0.51977,1.18412][1.52881,-0.290503,2.61927][0.781573,0.706812,0][0.416707,-0.51977,1.18412][2.59336e-007,-3.13109,-0.234528][0.781573,0.701497,0][-0.571182,-0.517358,1.10541][2.1706e-006,-3.14012,-0.0962198][0.77991,0.675059,0][-0.632349,-0.51977,1.18412][-1.52881,-0.290503,2.61927][0.781573,0.675637,0][-0.65179,-0.5161,1.06434][-0.273036,-3.12303,-0.0513762][0.779042,0.678085,0][-0.694235,-0.510572,1.04271][-0.428319,-3.42779,-0.0355182][0.773038,0.683112,0][-0.65179,-0.5161,1.06434][-0.273036,-3.12303,-0.0513762][0.779042,0.678085,0][-0.632349,-0.51977,1.18412][-1.52881,-0.290503,2.61927][0.781573,0.675637,0][-0.632349,-0.51977,1.18412][-1.52881,-0.290503,2.61927][0.781573,0.675637,0][-0.741858,-0.504128,0.995088][-0.0322832,-3.13016,-0.24032][0.766347,0.688782,0][-0.694235,-0.510572,1.04271][-0.428319,-3.42779,-0.0355182][0.773038,0.683112,0][0.694234,-0.510568,1.04271][0.428314,-3.4278,-0.035517][0.779434,0.709561,0][0.741788,-0.504134,0.995158][0.0322903,-3.13016,-0.240314][0.779298,0.714553,0][0.632319,-0.51977,1.18412][1.52881,-0.290503,2.61927][0.781573,0.706812,0][0.632319,-0.51977,1.18412][1.52881,-0.290503,2.61927][0.781573,0.706812,0][0.651758,-0.5161,1.06435][0.273014,-3.12304,-0.0513862][0.779043,0.704118,0][0.694234,-0.510568,1.04271][0.428314,-3.4278,-0.035517][0.779434,0.709561,0][-0.416708,-0.51977,1.18412][0,-3.13109,-0.234529][0.781573,0.680953,0][-0.632349,-0.51977,1.18412][-1.52881,-0.290503,2.61927][0.781573,0.675637,0][-0.571182,-0.517358,1.10541][2.1706e-006,-3.14012,-0.0962198][0.77991,0.675059,0][0.689777,-0.456807,-0.870624][0.00191998,-3.44352,0.128115][0.738208,0.668515,0][0.966199,-0.456737,-0.872895][1.26724,2.503,-1.02164][0.738112,0.660544,0][0.845284,-0.461505,-0.717302][0.020106,-3.14715,-0.0808097][0.741399,0.661685,0][0.845284,-0.461505,-0.717302][0.020106,-3.14715,-0.0808097][0.741399,0.661685,0][0.966199,-0.456737,-0.872895][1.26724,2.503,-1.02164][0.738112,0.660544,0][0.941559,-0.462426,-0.621028][0.326961,-3.41554,-0.0451538][0.744436,0.671466,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][-0.546147,0.162684,0.264633][0.0820257,-0.996274,-0.0266518][0.754921,0.708795,0][-0.574252,0.162684,0.0871796][0.0862469,-0.996274,0][0.756154,0.701014,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][-0.46458,0.162684,0.424717][0.0697753,-0.996274,-0.0506947][0.751345,0.715814,0][-0.546147,0.162684,0.264633][0.0820257,-0.996274,-0.0266518][0.754921,0.708795,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][-0.337537,0.162684,0.55176][0.0506947,-0.996274,-0.0697753][0.745775,0.721384,0][-0.46458,0.162684,0.424717][0.0697753,-0.996274,-0.0506947][0.751345,0.715814,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][-0.177454,0.162684,0.633326][0.0266518,-0.996274,-0.0820258][0.738756,0.72496,0][-0.337537,0.162684,0.55176][0.0506947,-0.996274,-0.0697753][0.745775,0.721384,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][-1.77319e-007,0.162684,0.661432][0,-0.996274,-0.0862469][0.730975,0.726192,0][-0.177454,0.162684,0.633326][0.0266518,-0.996274,-0.0820258][0.738756,0.72496,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][0.177454,0.162684,0.633326][-0.0266518,-0.996274,-0.0820258][0.723195,0.72496,0][-1.77319e-007,0.162684,0.661432][0,-0.996274,-0.0862469][0.730975,0.726192,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][0.337537,0.162684,0.55176][-0.0506947,-0.996274,-0.0697753][0.716176,0.721384,0][0.177454,0.162684,0.633326][-0.0266518,-0.996274,-0.0820258][0.723195,0.72496,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][0.46458,0.162684,0.424717][-0.0697752,-0.996274,-0.0506947][0.710606,0.715814,0][0.337537,0.162684,0.55176][-0.0506947,-0.996274,-0.0697753][0.716176,0.721384,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][0.546146,0.162684,0.264633][-0.0820257,-0.996274,-0.0266518][0.707029,0.708795,0][0.46458,0.162684,0.424717][-0.0697752,-0.996274,-0.0506947][0.710606,0.715814,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][0.574252,0.162684,0.0871798][-0.0862469,-0.996274,0][0.705797,0.701014,0][0.546146,0.162684,0.264633][-0.0820257,-0.996274,-0.0266518][0.707029,0.708795,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][0.546146,0.162684,-0.090274][-0.0820257,-0.996274,0.0266517][0.707029,0.693234,0][0.574252,0.162684,0.0871798][-0.0862469,-0.996274,0][0.705797,0.701014,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][0.46458,0.162684,-0.250357][-0.0697752,-0.996274,0.0506947][0.710606,0.686215,0][0.546146,0.162684,-0.090274][-0.0820257,-0.996274,0.0266517][0.707029,0.693234,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][0.337537,0.162684,-0.3774][-0.0506946,-0.996274,0.0697752][0.716176,0.680645,0][0.46458,0.162684,-0.250357][-0.0697752,-0.996274,0.0506947][0.710606,0.686215,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][0.177454,0.162684,-0.458967][-0.0266518,-0.996274,0.0820257][0.723195,0.677069,0][0.337537,0.162684,-0.3774][-0.0506946,-0.996274,0.0697752][0.716176,0.680645,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][0,0.162684,-0.487073][0,-0.996274,0.0862469][0.730975,0.675836,0][0.177454,0.162684,-0.458967][-0.0266518,-0.996274,0.0820257][0.723195,0.677069,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][-0.177454,0.162684,-0.458967][0.0266518,-0.996274,0.0820256][0.738756,0.677069,0][0,0.162684,-0.487073][0,-0.996274,0.0862469][0.730975,0.675836,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][-0.337537,0.162684,-0.3774][0.0506947,-0.996274,0.0697752][0.745775,0.680645,0][-0.177454,0.162684,-0.458967][0.0266518,-0.996274,0.0820256][0.738756,0.677069,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][-0.46458,0.162684,-0.250357][0.0697752,-0.996274,0.0506946][0.751345,0.686215,0][-0.337537,0.162684,-0.3774][0.0506947,-0.996274,0.0697752][0.745775,0.680645,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][-0.546146,0.162684,-0.090274][0.0820257,-0.996274,0.0266517][0.754921,0.693234,0][-0.46458,0.162684,-0.250357][0.0697752,-0.996274,0.0506946][0.751345,0.686215,0][0,0.162684,0.0871797][0,-1,0][0.730975,0.701014,0][-0.574252,0.162684,0.0871796][0.0862469,-0.996274,0][0.756154,0.701014,0][-0.546146,0.162684,-0.090274][0.0820257,-0.996274,0.0266517][0.754921,0.693234,0][-0.724495,0.132983,0.322582][0.307215,-0.946391,-0.0998201][0.762741,0.711336,0][-0.761779,0.132983,0.0871796][0.323025,-0.946391,0][0.764376,0.701014,0][-0.574252,0.162684,0.0871796][0.0862469,-0.996274,0][0.756154,0.701014,0][-0.574252,0.162684,0.0871796][0.0862469,-0.996274,0][0.756154,0.701014,0][-0.546147,0.162684,0.264633][0.0820257,-0.996274,-0.0266518][0.754921,0.708795,0][-0.724495,0.132983,0.322582][0.307215,-0.946391,-0.0998201][0.762741,0.711336,0][-0.616293,0.132983,0.534942][0.261332,-0.946391,-0.189869][0.757997,0.720647,0][-0.724495,0.132983,0.322582][0.307215,-0.946391,-0.0998201][0.762741,0.711336,0][-0.546147,0.162684,0.264633][0.0820257,-0.996274,-0.0266518][0.754921,0.708795,0][-0.546147,0.162684,0.264633][0.0820257,-0.996274,-0.0266518][0.754921,0.708795,0][-0.46458,0.162684,0.424717][0.0697753,-0.996274,-0.0506947][0.751345,0.715814,0][-0.616293,0.132983,0.534942][0.261332,-0.946391,-0.189869][0.757997,0.720647,0][-0.447763,0.132983,0.703472][0.189869,-0.946391,-0.261332][0.750608,0.728036,0][-0.616293,0.132983,0.534942][0.261332,-0.946391,-0.189869][0.757997,0.720647,0][-0.46458,0.162684,0.424717][0.0697753,-0.996274,-0.0506947][0.751345,0.715814,0][-0.46458,0.162684,0.424717][0.0697753,-0.996274,-0.0506947][0.751345,0.715814,0][-0.337537,0.162684,0.55176][0.0506947,-0.996274,-0.0697753][0.745775,0.721384,0][-0.447763,0.132983,0.703472][0.189869,-0.946391,-0.261332][0.750608,0.728036,0][-0.235403,0.132983,0.811675][0.0998201,-0.946391,-0.307215][0.741297,0.73278,0][-0.447763,0.132983,0.703472][0.189869,-0.946391,-0.261332][0.750608,0.728036,0][-0.337537,0.162684,0.55176][0.0506947,-0.996274,-0.0697753][0.745775,0.721384,0][-0.337537,0.162684,0.55176][0.0506947,-0.996274,-0.0697753][0.745775,0.721384,0][-0.177454,0.162684,0.633326][0.0266518,-0.996274,-0.0820258][0.738756,0.72496,0][-0.235403,0.132983,0.811675][0.0998201,-0.946391,-0.307215][0.741297,0.73278,0][-1.97437e-007,0.132983,0.848959][0,-0.946391,-0.323025][0.730975,0.734415,0][-0.235403,0.132983,0.811675][0.0998201,-0.946391,-0.307215][0.741297,0.73278,0][-0.177454,0.162684,0.633326][0.0266518,-0.996274,-0.0820258][0.738756,0.72496,0][-0.177454,0.162684,0.633326][0.0266518,-0.996274,-0.0820258][0.738756,0.72496,0][-1.77319e-007,0.162684,0.661432][0,-0.996274,-0.0862469][0.730975,0.726192,0][-1.97437e-007,0.132983,0.848959][0,-0.946391,-0.323025][0.730975,0.734415,0][0.235403,0.132983,0.811675][-0.0998201,-0.946391,-0.307215][0.720654,0.73278,0][-1.97437e-007,0.132983,0.848959][0,-0.946391,-0.323025][0.730975,0.734415,0][-1.77319e-007,0.162684,0.661432][0,-0.996274,-0.0862469][0.730975,0.726192,0][-1.77319e-007,0.162684,0.661432][0,-0.996274,-0.0862469][0.730975,0.726192,0][0.177454,0.162684,0.633326][-0.0266518,-0.996274,-0.0820258][0.723195,0.72496,0][0.235403,0.132983,0.811675][-0.0998201,-0.946391,-0.307215][0.720654,0.73278,0][0.447762,0.132983,0.703472][-0.189869,-0.946391,-0.261333][0.711343,0.728036,0][0.235403,0.132983,0.811675][-0.0998201,-0.946391,-0.307215][0.720654,0.73278,0][0.177454,0.162684,0.633326][-0.0266518,-0.996274,-0.0820258][0.723195,0.72496,0][0.177454,0.162684,0.633326][-0.0266518,-0.996274,-0.0820258][0.723195,0.72496,0][0.337537,0.162684,0.55176][-0.0506947,-0.996274,-0.0697753][0.716176,0.721384,0][0.447762,0.132983,0.703472][-0.189869,-0.946391,-0.261333][0.711343,0.728036,0][0.616292,0.132983,0.534942][-0.261332,-0.946391,-0.189869][0.703954,0.720647,0][0.447762,0.132983,0.703472][-0.189869,-0.946391,-0.261333][0.711343,0.728036,0][0.337537,0.162684,0.55176][-0.0506947,-0.996274,-0.0697753][0.716176,0.721384,0][0.337537,0.162684,0.55176][-0.0506947,-0.996274,-0.0697753][0.716176,0.721384,0][0.46458,0.162684,0.424717][-0.0697752,-0.996274,-0.0506947][0.710606,0.715814,0][0.616292,0.132983,0.534942][-0.261332,-0.946391,-0.189869][0.703954,0.720647,0][0.724495,0.132983,0.322583][-0.307215,-0.946391,-0.0998201][0.69921,0.711336,0][0.616292,0.132983,0.534942][-0.261332,-0.946391,-0.189869][0.703954,0.720647,0][0.46458,0.162684,0.424717][-0.0697752,-0.996274,-0.0506947][0.710606,0.715814,0][0.46458,0.162684,0.424717][-0.0697752,-0.996274,-0.0506947][0.710606,0.715814,0][0.546146,0.162684,0.264633][-0.0820257,-0.996274,-0.0266518][0.707029,0.708795,0][0.724495,0.132983,0.322583][-0.307215,-0.946391,-0.0998201][0.69921,0.711336,0][0.761779,0.132983,0.0871798][-0.323025,-0.946391,-1.33942e-007][0.697575,0.701014,0][0.724495,0.132983,0.322583][-0.307215,-0.946391,-0.0998201][0.69921,0.711336,0][0.546146,0.162684,0.264633][-0.0820257,-0.996274,-0.0266518][0.707029,0.708795,0][0.546146,0.162684,0.264633][-0.0820257,-0.996274,-0.0266518][0.707029,0.708795,0][0.574252,0.162684,0.0871798][-0.0862469,-0.996274,0][0.705797,0.701014,0][0.761779,0.132983,0.0871798][-0.323025,-0.946391,-1.33942e-007][0.697575,0.701014,0][0.724495,0.132983,-0.148223][-0.307215,-0.946391,0.09982][0.69921,0.690693,0][0.761779,0.132983,0.0871798][-0.323025,-0.946391,-1.33942e-007][0.697575,0.701014,0][0.574252,0.162684,0.0871798][-0.0862469,-0.996274,0][0.705797,0.701014,0][0.574252,0.162684,0.0871798][-0.0862469,-0.996274,0][0.705797,0.701014,0][0.546146,0.162684,-0.090274][-0.0820257,-0.996274,0.0266517][0.707029,0.693234,0][0.724495,0.132983,-0.148223][-0.307215,-0.946391,0.09982][0.69921,0.690693,0][0.616292,0.132983,-0.360583][-0.261332,-0.946391,0.189869][0.703954,0.681382,0][0.724495,0.132983,-0.148223][-0.307215,-0.946391,0.09982][0.69921,0.690693,0][0.546146,0.162684,-0.090274][-0.0820257,-0.996274,0.0266517][0.707029,0.693234,0][0.546146,0.162684,-0.090274][-0.0820257,-0.996274,0.0266517][0.707029,0.693234,0][0.46458,0.162684,-0.250357][-0.0697752,-0.996274,0.0506947][0.710606,0.686215,0][0.616292,0.132983,-0.360583][-0.261332,-0.946391,0.189869][0.703954,0.681382,0][0.447763,0.132983,-0.529113][-0.189869,-0.946391,0.261332][0.711343,0.673993,0][0.616292,0.132983,-0.360583][-0.261332,-0.946391,0.189869][0.703954,0.681382,0][0.46458,0.162684,-0.250357][-0.0697752,-0.996274,0.0506947][0.710606,0.686215,0][0.46458,0.162684,-0.250357][-0.0697752,-0.996274,0.0506947][0.710606,0.686215,0][0.337537,0.162684,-0.3774][-0.0506946,-0.996274,0.0697752][0.716176,0.680645,0][0.447763,0.132983,-0.529113][-0.189869,-0.946391,0.261332][0.711343,0.673993,0][0.235403,0.132983,-0.637315][-0.0998201,-0.946391,0.307215][0.720654,0.669249,0][0.447763,0.132983,-0.529113][-0.189869,-0.946391,0.261332][0.711343,0.673993,0][0.337537,0.162684,-0.3774][-0.0506946,-0.996274,0.0697752][0.716176,0.680645,0][0.337537,0.162684,-0.3774][-0.0506946,-0.996274,0.0697752][0.716176,0.680645,0][0.177454,0.162684,-0.458967][-0.0266518,-0.996274,0.0820257][0.723195,0.677069,0][0.235403,0.132983,-0.637315][-0.0998201,-0.946391,0.307215][0.720654,0.669249,0][0,0.132983,-0.6746][0,-0.946391,0.323025][0.730975,0.667614,0][0.235403,0.132983,-0.637315][-0.0998201,-0.946391,0.307215][0.720654,0.669249,0][0.177454,0.162684,-0.458967][-0.0266518,-0.996274,0.0820257][0.723195,0.677069,0][0.177454,0.162684,-0.458967][-0.0266518,-0.996274,0.0820257][0.723195,0.677069,0][0,0.162684,-0.487073][0,-0.996274,0.0862469][0.730975,0.675836,0][0,0.132983,-0.6746][0,-0.946391,0.323025][0.730975,0.667614,0][-0.235403,0.132983,-0.637316][0.0998201,-0.946391,0.307215][0.741297,0.669249,0][0,0.132983,-0.6746][0,-0.946391,0.323025][0.730975,0.667614,0][0,0.162684,-0.487073][0,-0.996274,0.0862469][0.730975,0.675836,0][0,0.162684,-0.487073][0,-0.996274,0.0862469][0.730975,0.675836,0][-0.177454,0.162684,-0.458967][0.0266518,-0.996274,0.0820256][0.738756,0.677069,0][-0.235403,0.132983,-0.637316][0.0998201,-0.946391,0.307215][0.741297,0.669249,0][-0.447763,0.132983,-0.529113][0.189869,-0.946391,0.261332][0.750608,0.673993,0][-0.235403,0.132983,-0.637316][0.0998201,-0.946391,0.307215][0.741297,0.669249,0][-0.177454,0.162684,-0.458967][0.0266518,-0.996274,0.0820256][0.738756,0.677069,0][-0.177454,0.162684,-0.458967][0.0266518,-0.996274,0.0820256][0.738756,0.677069,0][-0.337537,0.162684,-0.3774][0.0506947,-0.996274,0.0697752][0.745775,0.680645,0][-0.447763,0.132983,-0.529113][0.189869,-0.946391,0.261332][0.750608,0.673993,0][-0.616293,0.132983,-0.360583][0.261332,-0.946391,0.189869][0.757997,0.681382,0][-0.447763,0.132983,-0.529113][0.189869,-0.946391,0.261332][0.750608,0.673993,0][-0.337537,0.162684,-0.3774][0.0506947,-0.996274,0.0697752][0.745775,0.680645,0][-0.337537,0.162684,-0.3774][0.0506947,-0.996274,0.0697752][0.745775,0.680645,0][-0.46458,0.162684,-0.250357][0.0697752,-0.996274,0.0506946][0.751345,0.686215,0][-0.616293,0.132983,-0.360583][0.261332,-0.946391,0.189869][0.757997,0.681382,0][-0.724495,0.132983,-0.148223][0.307215,-0.946391,0.0998201][0.762741,0.690693,0][-0.616293,0.132983,-0.360583][0.261332,-0.946391,0.189869][0.757997,0.681382,0][-0.46458,0.162684,-0.250357][0.0697752,-0.996274,0.0506946][0.751345,0.686215,0][-0.46458,0.162684,-0.250357][0.0697752,-0.996274,0.0506946][0.751345,0.686215,0][-0.546146,0.162684,-0.090274][0.0820257,-0.996274,0.0266517][0.754921,0.693234,0][-0.724495,0.132983,-0.148223][0.307215,-0.946391,0.0998201][0.762741,0.690693,0][-0.761779,0.132983,0.0871796][0.323025,-0.946391,0][0.764376,0.701014,0][-0.724495,0.132983,-0.148223][0.307215,-0.946391,0.0998201][0.762741,0.690693,0][-0.546146,0.162684,-0.090274][0.0820257,-0.996274,0.0266517][0.754921,0.693234,0][-0.546146,0.162684,-0.090274][0.0820257,-0.996274,0.0266517][0.754921,0.693234,0][-0.574252,0.162684,0.0871796][0.0862469,-0.996274,0][0.756154,0.701014,0][-0.761779,0.132983,0.0871796][0.323025,-0.946391,0][0.764376,0.701014,0][-0.885386,0.0467861,0.374859][0.568566,-0.801626,-0.184738][0.769795,0.713628,0][-0.93095,0.0467861,0.0871796][0.597826,-0.801626,0][0.771793,0.701014,0][-0.761779,0.132983,0.0871796][0.323025,-0.946391,0][0.764376,0.701014,0][-0.761779,0.132983,0.0871796][0.323025,-0.946391,0][0.764376,0.701014,0][-0.724495,0.132983,0.322582][0.307215,-0.946391,-0.0998201][0.762741,0.711336,0][-0.885386,0.0467861,0.374859][0.568566,-0.801626,-0.184738][0.769795,0.713628,0][-0.753154,0.046786,0.634378][0.483651,-0.801626,-0.351393][0.763997,0.725006,0][-0.885386,0.0467861,0.374859][0.568566,-0.801626,-0.184738][0.769795,0.713628,0][-0.724495,0.132983,0.322582][0.307215,-0.946391,-0.0998201][0.762741,0.711336,0][-0.724495,0.132983,0.322582][0.307215,-0.946391,-0.0998201][0.762741,0.711336,0][-0.616293,0.132983,0.534942][0.261332,-0.946391,-0.189869][0.757997,0.720647,0][-0.753154,0.046786,0.634378][0.483651,-0.801626,-0.351393][0.763997,0.725006,0][-0.547199,0.046786,0.840334][0.351393,-0.801626,-0.483651][0.754967,0.734036,0][-0.753154,0.046786,0.634378][0.483651,-0.801626,-0.351393][0.763997,0.725006,0][-0.616293,0.132983,0.534942][0.261332,-0.946391,-0.189869][0.757997,0.720647,0][-0.616293,0.132983,0.534942][0.261332,-0.946391,-0.189869][0.757997,0.720647,0][-0.447763,0.132983,0.703472][0.189869,-0.946391,-0.261332][0.750608,0.728036,0][-0.547199,0.046786,0.840334][0.351393,-0.801626,-0.483651][0.754967,0.734036,0][-0.28768,0.046786,0.972566][0.184738,-0.801626,-0.568566][0.743589,0.739834,0][-0.547199,0.046786,0.840334][0.351393,-0.801626,-0.483651][0.754967,0.734036,0][-0.447763,0.132983,0.703472][0.189869,-0.946391,-0.261332][0.750608,0.728036,0][-0.447763,0.132983,0.703472][0.189869,-0.946391,-0.261332][0.750608,0.728036,0][-0.235403,0.132983,0.811675][0.0998201,-0.946391,-0.307215][0.741297,0.73278,0][-0.28768,0.046786,0.972566][0.184738,-0.801626,-0.568566][0.743589,0.739834,0][-2.15587e-007,0.046786,1.01813][0,-0.801626,-0.597826][0.730975,0.741832,0][-0.28768,0.046786,0.972566][0.184738,-0.801626,-0.568566][0.743589,0.739834,0][-0.235403,0.132983,0.811675][0.0998201,-0.946391,-0.307215][0.741297,0.73278,0][-0.235403,0.132983,0.811675][0.0998201,-0.946391,-0.307215][0.741297,0.73278,0][-1.97437e-007,0.132983,0.848959][0,-0.946391,-0.323025][0.730975,0.734415,0][-2.15587e-007,0.046786,1.01813][0,-0.801626,-0.597826][0.730975,0.741832,0][0.287679,0.046786,0.972566][-0.184738,-0.801626,-0.568566][0.718362,0.739834,0][-2.15587e-007,0.046786,1.01813][0,-0.801626,-0.597826][0.730975,0.741832,0][-1.97437e-007,0.132983,0.848959][0,-0.946391,-0.323025][0.730975,0.734415,0][-1.97437e-007,0.132983,0.848959][0,-0.946391,-0.323025][0.730975,0.734415,0][0.235403,0.132983,0.811675][-0.0998201,-0.946391,-0.307215][0.720654,0.73278,0][0.287679,0.046786,0.972566][-0.184738,-0.801626,-0.568566][0.718362,0.739834,0][0.547198,0.046786,0.840334][-0.351393,-0.801626,-0.483651][0.706983,0.734036,0][0.287679,0.046786,0.972566][-0.184738,-0.801626,-0.568566][0.718362,0.739834,0][0.235403,0.132983,0.811675][-0.0998201,-0.946391,-0.307215][0.720654,0.73278,0][0.235403,0.132983,0.811675][-0.0998201,-0.946391,-0.307215][0.720654,0.73278,0][0.447762,0.132983,0.703472][-0.189869,-0.946391,-0.261333][0.711343,0.728036,0][0.547198,0.046786,0.840334][-0.351393,-0.801626,-0.483651][0.706983,0.734036,0][0.753154,0.046786,0.634378][-0.483651,-0.801626,-0.351393][0.697953,0.725006,0][0.547198,0.046786,0.840334][-0.351393,-0.801626,-0.483651][0.706983,0.734036,0][0.447762,0.132983,0.703472][-0.189869,-0.946391,-0.261333][0.711343,0.728036,0][0.447762,0.132983,0.703472][-0.189869,-0.946391,-0.261333][0.711343,0.728036,0][0.616292,0.132983,0.534942][-0.261332,-0.946391,-0.189869][0.703954,0.720647,0][0.753154,0.046786,0.634378][-0.483651,-0.801626,-0.351393][0.697953,0.725006,0][0.885386,0.0467861,0.374859][-0.568566,-0.801626,-0.184738][0.692155,0.713628,0][0.753154,0.046786,0.634378][-0.483651,-0.801626,-0.351393][0.697953,0.725006,0][0.616292,0.132983,0.534942][-0.261332,-0.946391,-0.189869][0.703954,0.720647,0][0.616292,0.132983,0.534942][-0.261332,-0.946391,-0.189869][0.703954,0.720647,0][0.724495,0.132983,0.322583][-0.307215,-0.946391,-0.0998201][0.69921,0.711336,0][0.885386,0.0467861,0.374859][-0.568566,-0.801626,-0.184738][0.692155,0.713628,0][0.93095,0.0467861,0.0871798][-0.597826,-0.801626,0][0.690158,0.701014,0][0.885386,0.0467861,0.374859][-0.568566,-0.801626,-0.184738][0.692155,0.713628,0][0.724495,0.132983,0.322583][-0.307215,-0.946391,-0.0998201][0.69921,0.711336,0][0.724495,0.132983,0.322583][-0.307215,-0.946391,-0.0998201][0.69921,0.711336,0][0.761779,0.132983,0.0871798][-0.323025,-0.946391,-1.33942e-007][0.697575,0.701014,0][0.93095,0.0467861,0.0871798][-0.597826,-0.801626,0][0.690158,0.701014,0][0.885386,0.0467861,-0.2005][-0.568566,-0.801626,0.184738][0.692155,0.688401,0][0.93095,0.0467861,0.0871798][-0.597826,-0.801626,0][0.690158,0.701014,0][0.761779,0.132983,0.0871798][-0.323025,-0.946391,-1.33942e-007][0.697575,0.701014,0][0.761779,0.132983,0.0871798][-0.323025,-0.946391,-1.33942e-007][0.697575,0.701014,0][0.724495,0.132983,-0.148223][-0.307215,-0.946391,0.09982][0.69921,0.690693,0][0.885386,0.0467861,-0.2005][-0.568566,-0.801626,0.184738][0.692155,0.688401,0][0.753154,0.0467861,-0.460019][-0.483651,-0.801626,0.351393][0.697953,0.677022,0][0.885386,0.0467861,-0.2005][-0.568566,-0.801626,0.184738][0.692155,0.688401,0][0.724495,0.132983,-0.148223][-0.307215,-0.946391,0.09982][0.69921,0.690693,0][0.724495,0.132983,-0.148223][-0.307215,-0.946391,0.09982][0.69921,0.690693,0][0.616292,0.132983,-0.360583][-0.261332,-0.946391,0.189869][0.703954,0.681382,0][0.753154,0.0467861,-0.460019][-0.483651,-0.801626,0.351393][0.697953,0.677022,0][0.547199,0.0467861,-0.665975][-0.351393,-0.801626,0.483651][0.706983,0.667992,0][0.753154,0.0467861,-0.460019][-0.483651,-0.801626,0.351393][0.697953,0.677022,0][0.616292,0.132983,-0.360583][-0.261332,-0.946391,0.189869][0.703954,0.681382,0][0.616292,0.132983,-0.360583][-0.261332,-0.946391,0.189869][0.703954,0.681382,0][0.447763,0.132983,-0.529113][-0.189869,-0.946391,0.261332][0.711343,0.673993,0][0.547199,0.0467861,-0.665975][-0.351393,-0.801626,0.483651][0.706983,0.667992,0][0.287679,0.0467861,-0.798206][-0.184738,-0.801626,0.568566][0.718362,0.662194,0][0.547199,0.0467861,-0.665975][-0.351393,-0.801626,0.483651][0.706983,0.667992,0][0.447763,0.132983,-0.529113][-0.189869,-0.946391,0.261332][0.711343,0.673993,0][0.447763,0.132983,-0.529113][-0.189869,-0.946391,0.261332][0.711343,0.673993,0][0.235403,0.132983,-0.637315][-0.0998201,-0.946391,0.307215][0.720654,0.669249,0][0.287679,0.0467861,-0.798206][-0.184738,-0.801626,0.568566][0.718362,0.662194,0][0,0.0467861,-0.84377][0,-0.801626,0.597826][0.730975,0.660197,0][0.287679,0.0467861,-0.798206][-0.184738,-0.801626,0.568566][0.718362,0.662194,0][0.235403,0.132983,-0.637315][-0.0998201,-0.946391,0.307215][0.720654,0.669249,0][0.235403,0.132983,-0.637315][-0.0998201,-0.946391,0.307215][0.720654,0.669249,0][0,0.132983,-0.6746][0,-0.946391,0.323025][0.730975,0.667614,0][0,0.0467861,-0.84377][0,-0.801626,0.597826][0.730975,0.660197,0][-0.287679,0.0467861,-0.798206][0.184738,-0.801626,0.568566][0.743589,0.662194,0][0,0.0467861,-0.84377][0,-0.801626,0.597826][0.730975,0.660197,0][0,0.132983,-0.6746][0,-0.946391,0.323025][0.730975,0.667614,0][0,0.132983,-0.6746][0,-0.946391,0.323025][0.730975,0.667614,0][-0.235403,0.132983,-0.637316][0.0998201,-0.946391,0.307215][0.741297,0.669249,0][-0.287679,0.0467861,-0.798206][0.184738,-0.801626,0.568566][0.743589,0.662194,0][-0.547199,0.0467861,-0.665974][0.351393,-0.801626,0.483651][0.754967,0.667992,0][-0.287679,0.0467861,-0.798206][0.184738,-0.801626,0.568566][0.743589,0.662194,0][-0.235403,0.132983,-0.637316][0.0998201,-0.946391,0.307215][0.741297,0.669249,0][-0.235403,0.132983,-0.637316][0.0998201,-0.946391,0.307215][0.741297,0.669249,0][-0.447763,0.132983,-0.529113][0.189869,-0.946391,0.261332][0.750608,0.673993,0][-0.547199,0.0467861,-0.665974][0.351393,-0.801626,0.483651][0.754967,0.667992,0][-0.753154,0.0467861,-0.460019][0.483651,-0.801626,0.351393][0.763997,0.677022,0][-0.547199,0.0467861,-0.665974][0.351393,-0.801626,0.483651][0.754967,0.667992,0][-0.447763,0.132983,-0.529113][0.189869,-0.946391,0.261332][0.750608,0.673993,0][-0.447763,0.132983,-0.529113][0.189869,-0.946391,0.261332][0.750608,0.673993,0][-0.616293,0.132983,-0.360583][0.261332,-0.946391,0.189869][0.757997,0.681382,0][-0.753154,0.0467861,-0.460019][0.483651,-0.801626,0.351393][0.763997,0.677022,0][-0.885386,0.0467861,-0.2005][0.568566,-0.801626,0.184738][0.769795,0.688401,0][-0.753154,0.0467861,-0.460019][0.483651,-0.801626,0.351393][0.763997,0.677022,0][-0.616293,0.132983,-0.360583][0.261332,-0.946391,0.189869][0.757997,0.681382,0][-0.616293,0.132983,-0.360583][0.261332,-0.946391,0.189869][0.757997,0.681382,0][-0.724495,0.132983,-0.148223][0.307215,-0.946391,0.0998201][0.762741,0.690693,0][-0.885386,0.0467861,-0.2005][0.568566,-0.801626,0.184738][0.769795,0.688401,0][-0.93095,0.0467861,0.0871796][0.597826,-0.801626,0][0.771793,0.701014,0][-0.885386,0.0467861,-0.2005][0.568566,-0.801626,0.184738][0.769795,0.688401,0][-0.724495,0.132983,-0.148223][0.307215,-0.946391,0.0998201][0.762741,0.690693,0][-0.724495,0.132983,-0.148223][0.307215,-0.946391,0.0998201][0.762741,0.690693,0][-0.761779,0.132983,0.0871796][0.323025,-0.946391,0][0.764376,0.701014,0][-0.93095,0.0467861,0.0871796][0.597826,-0.801626,0][0.771793,0.701014,0][-1.01307,-0.0874684,0.416346][0.774422,-0.580478,-0.251625][0.775393,0.715447,0][-1.0652,-0.0874684,0.0871795][0.814276,-0.580478,0][0.777679,0.701014,0][-0.93095,0.0467861,0.0871796][0.597826,-0.801626,0][0.771793,0.701014,0][-0.93095,0.0467861,0.0871796][0.597826,-0.801626,0][0.771793,0.701014,0][-0.885386,0.0467861,0.374859][0.568566,-0.801626,-0.184738][0.769795,0.713628,0][-1.01307,-0.0874684,0.416346][0.774422,-0.580478,-0.251625][0.775393,0.715447,0][-0.861769,-0.0874684,0.713291][0.658763,-0.580478,-0.478619][0.76876,0.728466,0][-1.01307,-0.0874684,0.416346][0.774422,-0.580478,-0.251625][0.775393,0.715447,0][-0.885386,0.0467861,0.374859][0.568566,-0.801626,-0.184738][0.769795,0.713628,0][-0.885386,0.0467861,0.374859][0.568566,-0.801626,-0.184738][0.769795,0.713628,0][-0.753154,0.046786,0.634378][0.483651,-0.801626,-0.351393][0.763997,0.725006,0][-0.861769,-0.0874684,0.713291][0.658763,-0.580478,-0.478619][0.76876,0.728466,0][-0.626112,-0.0874684,0.948948][0.478619,-0.580478,-0.658763][0.758427,0.738799,0][-0.861769,-0.0874684,0.713291][0.658763,-0.580478,-0.478619][0.76876,0.728466,0][-0.753154,0.046786,0.634378][0.483651,-0.801626,-0.351393][0.763997,0.725006,0][-0.753154,0.046786,0.634378][0.483651,-0.801626,-0.351393][0.763997,0.725006,0][-0.547199,0.046786,0.840334][0.351393,-0.801626,-0.483651][0.754967,0.734036,0][-0.626112,-0.0874684,0.948948][0.478619,-0.580478,-0.658763][0.758427,0.738799,0][-0.329167,-0.0874684,1.10025][0.251625,-0.580478,-0.774422][0.745408,0.745432,0][-0.626112,-0.0874684,0.948948][0.478619,-0.580478,-0.658763][0.758427,0.738799,0][-0.547199,0.046786,0.840334][0.351393,-0.801626,-0.483651][0.754967,0.734036,0][-0.547199,0.046786,0.840334][0.351393,-0.801626,-0.483651][0.754967,0.734036,0][-0.28768,0.046786,0.972566][0.184738,-0.801626,-0.568566][0.743589,0.739834,0][-0.329167,-0.0874684,1.10025][0.251625,-0.580478,-0.774422][0.745408,0.745432,0][-2.2999e-007,-0.0874684,1.15238][0,-0.580478,-0.814276][0.730975,0.747718,0][-0.329167,-0.0874684,1.10025][0.251625,-0.580478,-0.774422][0.745408,0.745432,0][-0.28768,0.046786,0.972566][0.184738,-0.801626,-0.568566][0.743589,0.739834,0][-0.28768,0.046786,0.972566][0.184738,-0.801626,-0.568566][0.743589,0.739834,0][-2.15587e-007,0.046786,1.01813][0,-0.801626,-0.597826][0.730975,0.741832,0][-2.2999e-007,-0.0874684,1.15238][0,-0.580478,-0.814276][0.730975,0.747718,0][0.329166,-0.0874684,1.10025][-0.251625,-0.580478,-0.774422][0.716543,0.745432,0][-2.2999e-007,-0.0874684,1.15238][0,-0.580478,-0.814276][0.730975,0.747718,0][-2.15587e-007,0.046786,1.01813][0,-0.801626,-0.597826][0.730975,0.741832,0][-2.15587e-007,0.046786,1.01813][0,-0.801626,-0.597826][0.730975,0.741832,0][0.287679,0.046786,0.972566][-0.184738,-0.801626,-0.568566][0.718362,0.739834,0][0.329166,-0.0874684,1.10025][-0.251625,-0.580478,-0.774422][0.716543,0.745432,0][0.626111,-0.0874684,0.948948][-0.478619,-0.580478,-0.658763][0.703523,0.738799,0][0.329166,-0.0874684,1.10025][-0.251625,-0.580478,-0.774422][0.716543,0.745432,0][0.287679,0.046786,0.972566][-0.184738,-0.801626,-0.568566][0.718362,0.739834,0][0.287679,0.046786,0.972566][-0.184738,-0.801626,-0.568566][0.718362,0.739834,0][0.547198,0.046786,0.840334][-0.351393,-0.801626,-0.483651][0.706983,0.734036,0][0.626111,-0.0874684,0.948948][-0.478619,-0.580478,-0.658763][0.703523,0.738799,0][0.861768,-0.0874684,0.713291][-0.658763,-0.580478,-0.478619][0.693191,0.728466,0][0.626111,-0.0874684,0.948948][-0.478619,-0.580478,-0.658763][0.703523,0.738799,0][0.547198,0.046786,0.840334][-0.351393,-0.801626,-0.483651][0.706983,0.734036,0][0.547198,0.046786,0.840334][-0.351393,-0.801626,-0.483651][0.706983,0.734036,0][0.753154,0.046786,0.634378][-0.483651,-0.801626,-0.351393][0.697953,0.725006,0][0.861768,-0.0874684,0.713291][-0.658763,-0.580478,-0.478619][0.693191,0.728466,0][1.01307,-0.0874684,0.416346][-0.774422,-0.580478,-0.251625][0.686557,0.715447,0][0.861768,-0.0874684,0.713291][-0.658763,-0.580478,-0.478619][0.693191,0.728466,0][0.753154,0.046786,0.634378][-0.483651,-0.801626,-0.351393][0.697953,0.725006,0][0.753154,0.046786,0.634378][-0.483651,-0.801626,-0.351393][0.697953,0.725006,0][0.885386,0.0467861,0.374859][-0.568566,-0.801626,-0.184738][0.692155,0.713628,0][1.01307,-0.0874684,0.416346][-0.774422,-0.580478,-0.251625][0.686557,0.715447,0][1.0652,-0.0874684,0.0871798][-0.814276,-0.580478,0][0.684271,0.701014,0][1.01307,-0.0874684,0.416346][-0.774422,-0.580478,-0.251625][0.686557,0.715447,0][0.885386,0.0467861,0.374859][-0.568566,-0.801626,-0.184738][0.692155,0.713628,0][0.885386,0.0467861,0.374859][-0.568566,-0.801626,-0.184738][0.692155,0.713628,0][0.93095,0.0467861,0.0871798][-0.597826,-0.801626,0][0.690158,0.701014,0][1.0652,-0.0874684,0.0871798][-0.814276,-0.580478,0][0.684271,0.701014,0][1.01307,-0.0874684,-0.241986][-0.774422,-0.580478,0.251625][0.686557,0.686582,0][1.0652,-0.0874684,0.0871798][-0.814276,-0.580478,0][0.684271,0.701014,0][0.93095,0.0467861,0.0871798][-0.597826,-0.801626,0][0.690158,0.701014,0][0.93095,0.0467861,0.0871798][-0.597826,-0.801626,0][0.690158,0.701014,0][0.885386,0.0467861,-0.2005][-0.568566,-0.801626,0.184738][0.692155,0.688401,0][1.01307,-0.0874684,-0.241986][-0.774422,-0.580478,0.251625][0.686557,0.686582,0][0.861768,-0.0874684,-0.538932][-0.658763,-0.580478,0.478619][0.693191,0.673562,0][1.01307,-0.0874684,-0.241986][-0.774422,-0.580478,0.251625][0.686557,0.686582,0][0.885386,0.0467861,-0.2005][-0.568566,-0.801626,0.184738][0.692155,0.688401,0][0.885386,0.0467861,-0.2005][-0.568566,-0.801626,0.184738][0.692155,0.688401,0][0.753154,0.0467861,-0.460019][-0.483651,-0.801626,0.351393][0.697953,0.677022,0][0.861768,-0.0874684,-0.538932][-0.658763,-0.580478,0.478619][0.693191,0.673562,0][0.626111,-0.0874683,-0.774589][-0.478619,-0.580478,0.658763][0.703523,0.66323,0][0.861768,-0.0874684,-0.538932][-0.658763,-0.580478,0.478619][0.693191,0.673562,0][0.753154,0.0467861,-0.460019][-0.483651,-0.801626,0.351393][0.697953,0.677022,0][0.753154,0.0467861,-0.460019][-0.483651,-0.801626,0.351393][0.697953,0.677022,0][0.547199,0.0467861,-0.665975][-0.351393,-0.801626,0.483651][0.706983,0.667992,0][0.626111,-0.0874683,-0.774589][-0.478619,-0.580478,0.658763][0.703523,0.66323,0][0.329166,-0.0874683,-0.92589][-0.251625,-0.580478,0.774422][0.716543,0.656596,0][0.626111,-0.0874683,-0.774589][-0.478619,-0.580478,0.658763][0.703523,0.66323,0][0.547199,0.0467861,-0.665975][-0.351393,-0.801626,0.483651][0.706983,0.667992,0][0.547199,0.0467861,-0.665975][-0.351393,-0.801626,0.483651][0.706983,0.667992,0][0.287679,0.0467861,-0.798206][-0.184738,-0.801626,0.568566][0.718362,0.662194,0][0.329166,-0.0874683,-0.92589][-0.251625,-0.580478,0.774422][0.716543,0.656596,0][0,-0.0874683,-0.978025][0,-0.580478,0.814276][0.730975,0.65431,0][0.329166,-0.0874683,-0.92589][-0.251625,-0.580478,0.774422][0.716543,0.656596,0][0.287679,0.0467861,-0.798206][-0.184738,-0.801626,0.568566][0.718362,0.662194,0][0.287679,0.0467861,-0.798206][-0.184738,-0.801626,0.568566][0.718362,0.662194,0][0,0.0467861,-0.84377][0,-0.801626,0.597826][0.730975,0.660197,0][0,-0.0874683,-0.978025][0,-0.580478,0.814276][0.730975,0.65431,0][-0.329166,-0.0874683,-0.92589][0.251625,-0.580478,0.774422][0.745408,0.656596,0][0,-0.0874683,-0.978025][0,-0.580478,0.814276][0.730975,0.65431,0][0,0.0467861,-0.84377][0,-0.801626,0.597826][0.730975,0.660197,0][0,0.0467861,-0.84377][0,-0.801626,0.597826][0.730975,0.660197,0][-0.287679,0.0467861,-0.798206][0.184738,-0.801626,0.568566][0.743589,0.662194,0][-0.329166,-0.0874683,-0.92589][0.251625,-0.580478,0.774422][0.745408,0.656596,0][-0.626112,-0.0874683,-0.774589][0.478619,-0.580478,0.658763][0.758427,0.66323,0][-0.329166,-0.0874683,-0.92589][0.251625,-0.580478,0.774422][0.745408,0.656596,0][-0.287679,0.0467861,-0.798206][0.184738,-0.801626,0.568566][0.743589,0.662194,0][-0.287679,0.0467861,-0.798206][0.184738,-0.801626,0.568566][0.743589,0.662194,0][-0.547199,0.0467861,-0.665974][0.351393,-0.801626,0.483651][0.754967,0.667992,0][-0.626112,-0.0874683,-0.774589][0.478619,-0.580478,0.658763][0.758427,0.66323,0][-0.861769,-0.0874684,-0.538932][0.658763,-0.580478,0.478619][0.76876,0.673562,0][-0.626112,-0.0874683,-0.774589][0.478619,-0.580478,0.658763][0.758427,0.66323,0][-0.547199,0.0467861,-0.665974][0.351393,-0.801626,0.483651][0.754967,0.667992,0][-0.547199,0.0467861,-0.665974][0.351393,-0.801626,0.483651][0.754967,0.667992,0][-0.753154,0.0467861,-0.460019][0.483651,-0.801626,0.351393][0.763997,0.677022,0][-0.861769,-0.0874684,-0.538932][0.658763,-0.580478,0.478619][0.76876,0.673562,0][-1.01307,-0.0874684,-0.241987][0.774422,-0.580478,0.251625][0.775393,0.686582,0][-0.861769,-0.0874684,-0.538932][0.658763,-0.580478,0.478619][0.76876,0.673562,0][-0.753154,0.0467861,-0.460019][0.483651,-0.801626,0.351393][0.763997,0.677022,0][-0.753154,0.0467861,-0.460019][0.483651,-0.801626,0.351393][0.763997,0.677022,0][-0.885386,0.0467861,-0.2005][0.568566,-0.801626,0.184738][0.769795,0.688401,0][-1.01307,-0.0874684,-0.241987][0.774422,-0.580478,0.251625][0.775393,0.686582,0][-1.0652,-0.0874684,0.0871795][0.814276,-0.580478,0][0.777679,0.701014,0][-1.01307,-0.0874684,-0.241987][0.774422,-0.580478,0.251625][0.775393,0.686582,0][-0.885386,0.0467861,-0.2005][0.568566,-0.801626,0.184738][0.769795,0.688401,0][-0.885386,0.0467861,-0.2005][0.568566,-0.801626,0.184738][0.769795,0.688401,0][-0.93095,0.0467861,0.0871796][0.597826,-0.801626,0][0.771793,0.701014,0][-1.0652,-0.0874684,0.0871795][0.814276,-0.580478,0][0.777679,0.701014,0][-1.09505,-0.256639,0.442982][0.905884,-0.304531,-0.294339][0.778988,0.716615,0][-1.1514,-0.256639,0.0871795][0.952843,-0.30346,0.00141965][0.781459,0.701014,0][-1.0652,-0.0874684,0.0871795][0.814276,-0.580478,0][0.777679,0.701014,0][-1.0652,-0.0874684,0.0871795][0.814276,-0.580478,0][0.777679,0.701014,0][-1.01307,-0.0874684,0.416346][0.774422,-0.580478,-0.251625][0.775393,0.715447,0][-1.09505,-0.256639,0.442982][0.905884,-0.304531,-0.294339][0.778988,0.716615,0][-0.931503,-0.256639,0.763956][0.770591,-0.30453,-0.559867][0.771817,0.730688,0][-1.09505,-0.256639,0.442982][0.905884,-0.304531,-0.294339][0.778988,0.716615,0][-1.01307,-0.0874684,0.416346][0.774422,-0.580478,-0.251625][0.775393,0.715447,0][-1.01307,-0.0874684,0.416346][0.774422,-0.580478,-0.251625][0.775393,0.715447,0][-0.861769,-0.0874684,0.713291][0.658763,-0.580478,-0.478619][0.76876,0.728466,0][-0.931503,-0.256639,0.763956][0.770591,-0.30453,-0.559867][0.771817,0.730688,0][-0.676777,-0.256639,1.01868][0.559867,-0.304531,-0.770591][0.760649,0.741856,0][-0.931503,-0.256639,0.763956][0.770591,-0.30453,-0.559867][0.771817,0.730688,0][-0.861769,-0.0874684,0.713291][0.658763,-0.580478,-0.478619][0.76876,0.728466,0][-0.861769,-0.0874684,0.713291][0.658763,-0.580478,-0.478619][0.76876,0.728466,0][-0.626112,-0.0874684,0.948948][0.478619,-0.580478,-0.658763][0.758427,0.738799,0][-0.676777,-0.256639,1.01868][0.559867,-0.304531,-0.770591][0.760649,0.741856,0][-0.355803,-0.256639,1.18223][0.29434,-0.30453,-0.905884][0.746576,0.749027,0][-0.676777,-0.256639,1.01868][0.559867,-0.304531,-0.770591][0.760649,0.741856,0][-0.626112,-0.0874684,0.948948][0.478619,-0.580478,-0.658763][0.758427,0.738799,0][-0.626112,-0.0874684,0.948948][0.478619,-0.580478,-0.658763][0.758427,0.738799,0][-0.329167,-0.0874684,1.10025][0.251625,-0.580478,-0.774422][0.745408,0.745432,0][-0.355803,-0.256639,1.18223][0.29434,-0.30453,-0.905884][0.746576,0.749027,0][-2.39238e-007,-0.256639,1.23858][0,-0.30453,-0.952503][0.730975,0.751498,0][-0.355803,-0.256639,1.18223][0.29434,-0.30453,-0.905884][0.746576,0.749027,0][-0.329167,-0.0874684,1.10025][0.251625,-0.580478,-0.774422][0.745408,0.745432,0][-0.329167,-0.0874684,1.10025][0.251625,-0.580478,-0.774422][0.745408,0.745432,0][-2.2999e-007,-0.0874684,1.15238][0,-0.580478,-0.814276][0.730975,0.747718,0][-2.39238e-007,-0.256639,1.23858][0,-0.30453,-0.952503][0.730975,0.751498,0][0.355802,-0.256639,1.18223][-0.294339,-0.304531,-0.905884][0.715375,0.749027,0][-2.39238e-007,-0.256639,1.23858][0,-0.30453,-0.952503][0.730975,0.751498,0][-2.2999e-007,-0.0874684,1.15238][0,-0.580478,-0.814276][0.730975,0.747718,0][-2.2999e-007,-0.0874684,1.15238][0,-0.580478,-0.814276][0.730975,0.747718,0][0.329166,-0.0874684,1.10025][-0.251625,-0.580478,-0.774422][0.716543,0.745432,0][0.355802,-0.256639,1.18223][-0.294339,-0.304531,-0.905884][0.715375,0.749027,0][0.676776,-0.256639,1.01868][-0.559867,-0.304531,-0.770591][0.701302,0.741856,0][0.355802,-0.256639,1.18223][-0.294339,-0.304531,-0.905884][0.715375,0.749027,0][0.329166,-0.0874684,1.10025][-0.251625,-0.580478,-0.774422][0.716543,0.745432,0][0.329166,-0.0874684,1.10025][-0.251625,-0.580478,-0.774422][0.716543,0.745432,0][0.626111,-0.0874684,0.948948][-0.478619,-0.580478,-0.658763][0.703523,0.738799,0][0.676776,-0.256639,1.01868][-0.559867,-0.304531,-0.770591][0.701302,0.741856,0][0.931503,-0.256639,0.763956][-0.770591,-0.304531,-0.559867][0.690133,0.730688,0][0.676776,-0.256639,1.01868][-0.559867,-0.304531,-0.770591][0.701302,0.741856,0][0.626111,-0.0874684,0.948948][-0.478619,-0.580478,-0.658763][0.703523,0.738799,0][0.626111,-0.0874684,0.948948][-0.478619,-0.580478,-0.658763][0.703523,0.738799,0][0.861768,-0.0874684,0.713291][-0.658763,-0.580478,-0.478619][0.693191,0.728466,0][0.931503,-0.256639,0.763956][-0.770591,-0.304531,-0.559867][0.690133,0.730688,0][1.09505,-0.256639,0.442982][-0.905884,-0.304531,-0.29434][0.682963,0.716615,0][0.931503,-0.256639,0.763956][-0.770591,-0.304531,-0.559867][0.690133,0.730688,0][0.861768,-0.0874684,0.713291][-0.658763,-0.580478,-0.478619][0.693191,0.728466,0][0.861768,-0.0874684,0.713291][-0.658763,-0.580478,-0.478619][0.693191,0.728466,0][1.01307,-0.0874684,0.416346][-0.774422,-0.580478,-0.251625][0.686557,0.715447,0][1.09505,-0.256639,0.442982][-0.905884,-0.304531,-0.29434][0.682963,0.716615,0][1.1514,-0.256639,0.0871798][-0.952503,-0.30453,0][0.680492,0.701014,0][1.09505,-0.256639,0.442982][-0.905884,-0.304531,-0.29434][0.682963,0.716615,0][1.01307,-0.0874684,0.416346][-0.774422,-0.580478,-0.251625][0.686557,0.715447,0][1.01307,-0.0874684,0.416346][-0.774422,-0.580478,-0.251625][0.686557,0.715447,0][1.0652,-0.0874684,0.0871798][-0.814276,-0.580478,0][0.684271,0.701014,0][1.1514,-0.256639,0.0871798][-0.952503,-0.30453,0][0.680492,0.701014,0][1.09505,-0.256639,-0.268623][-0.90704,-0.301849,0.293541][0.682963,0.685414,0][1.1514,-0.256639,0.0871798][-0.952503,-0.30453,0][0.680492,0.701014,0][1.0652,-0.0874684,0.0871798][-0.814276,-0.580478,0][0.684271,0.701014,0][1.0652,-0.0874684,0.0871798][-0.814276,-0.580478,0][0.684271,0.701014,0][1.01307,-0.0874684,-0.241986][-0.774422,-0.580478,0.251625][0.686557,0.686582,0][1.09505,-0.256639,-0.268623][-0.90704,-0.301849,0.293541][0.682963,0.685414,0][0.931503,-0.256639,-0.589597][-0.770591,-0.304531,0.559867][0.690133,0.671341,0][1.09505,-0.256639,-0.268623][-0.90704,-0.301849,0.293541][0.682963,0.685414,0][1.01307,-0.0874684,-0.241986][-0.774422,-0.580478,0.251625][0.686557,0.686582,0][1.01307,-0.0874684,-0.241986][-0.774422,-0.580478,0.251625][0.686557,0.686582,0][0.861768,-0.0874684,-0.538932][-0.658763,-0.580478,0.478619][0.693191,0.673562,0][0.931503,-0.256639,-0.589597][-0.770591,-0.304531,0.559867][0.690133,0.671341,0][0.676776,-0.256639,-0.844323][-0.559867,-0.304531,0.770591][0.701302,0.660172,0][0.931503,-0.256639,-0.589597][-0.770591,-0.304531,0.559867][0.690133,0.671341,0][0.861768,-0.0874684,-0.538932][-0.658763,-0.580478,0.478619][0.693191,0.673562,0][0.861768,-0.0874684,-0.538932][-0.658763,-0.580478,0.478619][0.693191,0.673562,0][0.626111,-0.0874683,-0.774589][-0.478619,-0.580478,0.658763][0.703523,0.66323,0][0.676776,-0.256639,-0.844323][-0.559867,-0.304531,0.770591][0.701302,0.660172,0][0.355802,-0.256639,-1.00787][-0.294339,-0.304531,0.905884][0.715375,0.653002,0][0.676776,-0.256639,-0.844323][-0.559867,-0.304531,0.770591][0.701302,0.660172,0][0.626111,-0.0874683,-0.774589][-0.478619,-0.580478,0.658763][0.703523,0.66323,0][0.626111,-0.0874683,-0.774589][-0.478619,-0.580478,0.658763][0.703523,0.66323,0][0.329166,-0.0874683,-0.92589][-0.251625,-0.580478,0.774422][0.716543,0.656596,0][0.355802,-0.256639,-1.00787][-0.294339,-0.304531,0.905884][0.715375,0.653002,0][0,-0.256639,-1.06422][-1.20681e-007,-0.304531,0.952503][0.730975,0.650531,0][0.355802,-0.256639,-1.00787][-0.294339,-0.304531,0.905884][0.715375,0.653002,0][0.329166,-0.0874683,-0.92589][-0.251625,-0.580478,0.774422][0.716543,0.656596,0][0.329166,-0.0874683,-0.92589][-0.251625,-0.580478,0.774422][0.716543,0.656596,0][0,-0.0874683,-0.978025][0,-0.580478,0.814276][0.730975,0.65431,0][0,-0.256639,-1.06422][-1.20681e-007,-0.304531,0.952503][0.730975,0.650531,0][-0.355803,-0.256639,-1.00787][0.294339,-0.304531,0.905884][0.746576,0.653002,0][0,-0.256639,-1.06422][-1.20681e-007,-0.304531,0.952503][0.730975,0.650531,0][0,-0.0874683,-0.978025][0,-0.580478,0.814276][0.730975,0.65431,0][0,-0.0874683,-0.978025][0,-0.580478,0.814276][0.730975,0.65431,0][-0.329166,-0.0874683,-0.92589][0.251625,-0.580478,0.774422][0.745408,0.656596,0][-0.355803,-0.256639,-1.00787][0.294339,-0.304531,0.905884][0.746576,0.653002,0][-0.676777,-0.256639,-0.844323][0.559867,-0.304531,0.770591][0.760649,0.660173,0][-0.355803,-0.256639,-1.00787][0.294339,-0.304531,0.905884][0.746576,0.653002,0][-0.329166,-0.0874683,-0.92589][0.251625,-0.580478,0.774422][0.745408,0.656596,0][-0.329166,-0.0874683,-0.92589][0.251625,-0.580478,0.774422][0.745408,0.656596,0][-0.626112,-0.0874683,-0.774589][0.478619,-0.580478,0.658763][0.758427,0.66323,0][-0.676777,-0.256639,-0.844323][0.559867,-0.304531,0.770591][0.760649,0.660173,0][-0.931503,-0.256639,-0.589597][0.770591,-0.304531,0.559867][0.771817,0.671341,0][-0.676777,-0.256639,-0.844323][0.559867,-0.304531,0.770591][0.760649,0.660173,0][-0.626112,-0.0874683,-0.774589][0.478619,-0.580478,0.658763][0.758427,0.66323,0][-0.626112,-0.0874683,-0.774589][0.478619,-0.580478,0.658763][0.758427,0.66323,0][-0.861769,-0.0874684,-0.538932][0.658763,-0.580478,0.478619][0.76876,0.673562,0][-0.931503,-0.256639,-0.589597][0.770591,-0.304531,0.559867][0.771817,0.671341,0][-1.09505,-0.256639,-0.268623][0.907824,-0.300719,0.292275][0.778988,0.685414,0][-0.931503,-0.256639,-0.589597][0.770591,-0.304531,0.559867][0.771817,0.671341,0][-0.861769,-0.0874684,-0.538932][0.658763,-0.580478,0.478619][0.76876,0.673562,0][-0.861769,-0.0874684,-0.538932][0.658763,-0.580478,0.478619][0.76876,0.673562,0][-1.01307,-0.0874684,-0.241987][0.774422,-0.580478,0.251625][0.775393,0.686582,0][-1.09505,-0.256639,-0.268623][0.907824,-0.300719,0.292275][0.778988,0.685414,0][-1.1514,-0.256639,0.0871795][0.952843,-0.30346,0.00141965][0.781459,0.701014,0][-1.09505,-0.256639,-0.268623][0.907824,-0.300719,0.292275][0.778988,0.685414,0][-1.01307,-0.0874684,-0.241987][0.774422,-0.580478,0.251625][0.775393,0.686582,0][-1.01307,-0.0874684,-0.241987][0.774422,-0.580478,0.251625][0.775393,0.686582,0][-1.0652,-0.0874684,0.0871795][0.814276,-0.580478,0][0.777679,0.701014,0][-1.1514,-0.256639,0.0871795][0.952843,-0.30346,0.00141965][0.781459,0.701014,0][-0.955532,-0.444166,0.781414][0.806561,-0.0778553,-0.586001][0.772871,0.731453,0][-1.1233,-0.444166,0.45216][0.94817,-0.0778511,-0.308079][0.780226,0.717017,0][-1.09505,-0.256639,0.442982][0.905884,-0.304531,-0.294339][0.778988,0.716615,0][-1.09505,-0.256639,0.442982][0.905884,-0.304531,-0.294339][0.778988,0.716615,0][-0.931503,-0.256639,0.763956][0.770591,-0.30453,-0.559867][0.771817,0.730688,0][-0.955532,-0.444166,0.781414][0.806561,-0.0778553,-0.586001][0.772871,0.731453,0][-0.694235,-0.444166,1.04271][0.586001,-0.0778547,-0.806561][0.761414,0.74291,0][-0.955532,-0.444166,0.781414][0.806561,-0.0778553,-0.586001][0.772871,0.731453,0][-0.931503,-0.256639,0.763956][0.770591,-0.30453,-0.559867][0.771817,0.730688,0][-0.931503,-0.256639,0.763956][0.770591,-0.30453,-0.559867][0.771817,0.730688,0][-0.676777,-0.256639,1.01868][0.559867,-0.304531,-0.770591][0.760649,0.741856,0][-0.694235,-0.444166,1.04271][0.586001,-0.0778547,-0.806561][0.761414,0.74291,0][-0.364981,-0.444166,1.21047][0.308079,-0.077855,-0.94817][0.746978,0.750265,0][-0.694235,-0.444166,1.04271][0.586001,-0.0778547,-0.806561][0.761414,0.74291,0][-0.676777,-0.256639,1.01868][0.559867,-0.304531,-0.770591][0.760649,0.741856,0][-0.676777,-0.256639,1.01868][0.559867,-0.304531,-0.770591][0.760649,0.741856,0][-0.355803,-0.256639,1.18223][0.29434,-0.30453,-0.905884][0.746576,0.749027,0][-0.364981,-0.444166,1.21047][0.308079,-0.077855,-0.94817][0.746978,0.750265,0][-2.42424e-007,-0.444166,1.26828][0,-0.0778548,-0.996965][0.730975,0.7528,0][-0.364981,-0.444166,1.21047][0.308079,-0.077855,-0.94817][0.746978,0.750265,0][-0.355803,-0.256639,1.18223][0.29434,-0.30453,-0.905884][0.746576,0.749027,0][-0.355803,-0.256639,1.18223][0.29434,-0.30453,-0.905884][0.746576,0.749027,0][-2.39238e-007,-0.256639,1.23858][0,-0.30453,-0.952503][0.730975,0.751498,0][-2.42424e-007,-0.444166,1.26828][0,-0.0778548,-0.996965][0.730975,0.7528,0][0.36498,-0.444166,1.21047][-0.308079,-0.0778544,-0.94817][0.714973,0.750265,0][-2.42424e-007,-0.444166,1.26828][0,-0.0778548,-0.996965][0.730975,0.7528,0][-2.39238e-007,-0.256639,1.23858][0,-0.30453,-0.952503][0.730975,0.751498,0][-2.39238e-007,-0.256639,1.23858][0,-0.30453,-0.952503][0.730975,0.751498,0][0.355802,-0.256639,1.18223][-0.294339,-0.304531,-0.905884][0.715375,0.749027,0][0.36498,-0.444166,1.21047][-0.308079,-0.0778544,-0.94817][0.714973,0.750265,0][0.694234,-0.444166,1.04271][-0.586001,-0.0778548,-0.806562][0.700537,0.74291,0][0.36498,-0.444166,1.21047][-0.308079,-0.0778544,-0.94817][0.714973,0.750265,0][0.355802,-0.256639,1.18223][-0.294339,-0.304531,-0.905884][0.715375,0.749027,0][0.355802,-0.256639,1.18223][-0.294339,-0.304531,-0.905884][0.715375,0.749027,0][0.676776,-0.256639,1.01868][-0.559867,-0.304531,-0.770591][0.701302,0.741856,0][0.694234,-0.444166,1.04271][-0.586001,-0.0778548,-0.806562][0.700537,0.74291,0][0.955532,-0.444166,0.781414][-0.806561,-0.0778548,-0.586001][0.68908,0.731453,0][0.694234,-0.444166,1.04271][-0.586001,-0.0778548,-0.806562][0.700537,0.74291,0][0.676776,-0.256639,1.01868][-0.559867,-0.304531,-0.770591][0.701302,0.741856,0][0.676776,-0.256639,1.01868][-0.559867,-0.304531,-0.770591][0.701302,0.741856,0][0.931503,-0.256639,0.763956][-0.770591,-0.304531,-0.559867][0.690133,0.730688,0][0.955532,-0.444166,0.781414][-0.806561,-0.0778548,-0.586001][0.68908,0.731453,0][1.1233,-0.444166,0.45216][-0.94817,-0.0778546,-0.308079][0.681724,0.717017,0][0.955532,-0.444166,0.781414][-0.806561,-0.0778548,-0.586001][0.68908,0.731453,0][0.931503,-0.256639,0.763956][-0.770591,-0.304531,-0.559867][0.690133,0.730688,0][0.931503,-0.256639,0.763956][-0.770591,-0.304531,-0.559867][0.690133,0.730688,0][1.09505,-0.256639,0.442982][-0.905884,-0.304531,-0.29434][0.682963,0.716615,0][1.1233,-0.444166,0.45216][-0.94817,-0.0778546,-0.308079][0.681724,0.717017,0][1.09505,-0.256639,-0.268623][-0.90704,-0.301849,0.293541][0.682963,0.685414,0][0.931503,-0.256639,-0.589597][-0.770591,-0.304531,0.559867][0.690133,0.671341,0][0.955532,-0.444166,-0.607055][-0.830497,0.0448393,0.555215][0.68908,0.670576,0][0.955532,-0.444166,-0.607055][-0.830497,0.0448393,0.555215][0.68908,0.670576,0][0.941559,-0.462426,-0.621028][0.326961,-3.41554,-0.0451538][0.689358,0.669774,0][1.11896,-0.443728,-0.286155][0.429959,-3.44084,-0.0356527][0.682099,0.684277,0][1.09505,-0.256639,-0.268623][-0.90704,-0.301849,0.293541][0.682963,0.685414,0][0.955532,-0.444166,-0.607055][-0.830497,0.0448393,0.555215][0.68908,0.670576,0][1.11896,-0.443728,-0.286155][0.429959,-3.44084,-0.0356527][0.682099,0.684277,0][0.694234,-0.444166,-0.868352][-0.599847,-0.042665,0.798977][0.700537,0.659119,0][0.955532,-0.444166,-0.607055][-0.830497,0.0448393,0.555215][0.68908,0.670576,0][0.931503,-0.256639,-0.589597][-0.770591,-0.304531,0.559867][0.690133,0.671341,0][0.931503,-0.256639,-0.589597][-0.770591,-0.304531,0.559867][0.690133,0.671341,0][0.676776,-0.256639,-0.844323][-0.559867,-0.304531,0.770591][0.701302,0.660172,0][0.694234,-0.444166,-0.868352][-0.599847,-0.042665,0.798977][0.700537,0.659119,0][0.364981,-0.444166,-1.03612][-0.308079,-0.0778549,0.94817][0.714973,0.651763,0][0.694234,-0.444166,-0.868352][-0.599847,-0.042665,0.798977][0.700537,0.659119,0][0.676776,-0.256639,-0.844323][-0.559867,-0.304531,0.770591][0.701302,0.660172,0][0.676776,-0.256639,-0.844323][-0.559867,-0.304531,0.770591][0.701302,0.660172,0][0.355802,-0.256639,-1.00787][-0.294339,-0.304531,0.905884][0.715375,0.653002,0][0.364981,-0.444166,-1.03612][-0.308079,-0.0778549,0.94817][0.714973,0.651763,0][0,-0.444166,-1.09392][0,-0.0778548,0.996965][0.730975,0.649229,0][0.364981,-0.444166,-1.03612][-0.308079,-0.0778549,0.94817][0.714973,0.651763,0][0.355802,-0.256639,-1.00787][-0.294339,-0.304531,0.905884][0.715375,0.653002,0][0.355802,-0.256639,-1.00787][-0.294339,-0.304531,0.905884][0.715375,0.653002,0][0,-0.256639,-1.06422][-1.20681e-007,-0.304531,0.952503][0.730975,0.650531,0][0,-0.444166,-1.09392][0,-0.0778548,0.996965][0.730975,0.649229,0][-0.364981,-0.444166,-1.03612][0.308079,-0.0778522,0.94817][0.746978,0.651763,0][0,-0.444166,-1.09392][0,-0.0778548,0.996965][0.730975,0.649229,0][0,-0.256639,-1.06422][-1.20681e-007,-0.304531,0.952503][0.730975,0.650531,0][0,-0.256639,-1.06422][-1.20681e-007,-0.304531,0.952503][0.730975,0.650531,0][-0.355803,-0.256639,-1.00787][0.294339,-0.304531,0.905884][0.746576,0.653002,0][-0.364981,-0.444166,-1.03612][0.308079,-0.0778522,0.94817][0.746978,0.651763,0][-0.694235,-0.444166,-0.868352][0.600639,-0.041741,0.79843][0.761414,0.659119,0][-0.364981,-0.444166,-1.03612][0.308079,-0.0778522,0.94817][0.746978,0.651763,0][-0.355803,-0.256639,-1.00787][0.294339,-0.304531,0.905884][0.746576,0.653002,0][-0.355803,-0.256639,-1.00787][0.294339,-0.304531,0.905884][0.746576,0.653002,0][-0.676777,-0.256639,-0.844323][0.559867,-0.304531,0.770591][0.760649,0.660173,0][-0.694235,-0.444166,-0.868352][0.600639,-0.041741,0.79843][0.761414,0.659119,0][-0.955532,-0.444166,-0.607055][0.830491,0.0446941,0.555237][0.772871,0.670576,0][-0.694235,-0.444166,-0.868352][0.600639,-0.041741,0.79843][0.761414,0.659119,0][-0.676777,-0.256639,-0.844323][0.559867,-0.304531,0.770591][0.760649,0.660173,0][-0.676777,-0.256639,-0.844323][0.559867,-0.304531,0.770591][0.760649,0.660173,0][-0.931503,-0.256639,-0.589597][0.770591,-0.304531,0.559867][0.771817,0.671341,0][-0.955532,-0.444166,-0.607055][0.830491,0.0446941,0.555237][0.772871,0.670576,0][-0.955532,-0.444166,0.781414][0.806561,-0.0778553,-0.586001][0.689547,0.7528,0][-0.955532,-0.486447,0.781414][1.32461e-005,-3.44365,-0.284971][0.689547,0.748987,0][-1.1233,-0.459201,0.45216][7.31677e-006,-3.44313,-0.284928][0.684368,0.751444,0][-1.1233,-0.459201,0.45216][7.31677e-006,-3.44313,-0.284928][0.684368,0.751444,0][-1.1233,-0.444166,0.45216][0.94817,-0.0778511,-0.308079][0.684368,0.7528,0][-0.955532,-0.444166,0.781414][0.806561,-0.0778553,-0.586001][0.689547,0.7528,0][-2.42424e-007,-0.444166,1.26828][0,-0.0778548,-0.996965][0.705083,0.7528,0][-2.60787e-007,-0.526734,1.26828][-3.04846e-007,-3.44504,-0.285057][0.705083,0.745354,0][-0.364981,-0.521951,1.21047][3.66701e-007,-3.44483,-0.285045][0.699904,0.745785,0][-0.364981,-0.521951,1.21047][3.66701e-007,-3.44483,-0.285045][0.699904,0.745785,0][-0.364981,-0.444166,1.21047][0.308079,-0.077855,-0.94817][0.699904,0.7528,0][-2.42424e-007,-0.444166,1.26828][0,-0.0778548,-0.996965][0.705083,0.7528,0][1.1233,-0.444166,0.45216][-0.94817,-0.0778546,-0.308079][0.725797,0.7528,0][1.1233,-0.459201,0.45216][-5.94233e-006,-3.44313,-0.284928][0.725797,0.751444,0][0.955532,-0.486447,0.781414][-1.37568e-005,-3.44365,-0.284973][0.720618,0.748987,0][0.955532,-0.486447,0.781414][-1.37568e-005,-3.44365,-0.284973][0.720618,0.748987,0][0.955532,-0.444166,0.781414][-0.806561,-0.0778548,-0.586001][0.720618,0.7528,0][1.1233,-0.444166,0.45216][-0.94817,-0.0778546,-0.308079][0.725797,0.7528,0][0.694234,-0.444166,-0.868352][-0.599847,-0.042665,0.798977][0.746511,0.7528,0][0.689777,-0.456807,-0.870624][0.00191998,-3.44352,0.128115][0.746651,0.751666,0][0.845284,-0.461505,-0.717302][0.020106,-3.14715,-0.0808097][0.743517,0.751236,0][0.694234,-0.444166,-0.868352][-0.599847,-0.042665,0.798977][0.746511,0.7528,0][0.845284,-0.461505,-0.717302][0.020106,-3.14715,-0.0808097][0.743517,0.751236,0][0.941559,-0.462426,-0.621028][0.326961,-3.41554,-0.0451538][0.741886,0.751009,0][0.955532,-0.444166,-0.607055][-0.830497,0.0448393,0.555215][0.741332,0.7528,0][0.694234,-0.444166,-0.868352][-0.599847,-0.042665,0.798977][0.746511,0.7528,0][0.941559,-0.462426,-0.621028][0.326961,-3.41554,-0.0451538][0.741886,0.751009,0][0,-0.444166,-1.09392][0,-0.0778548,0.996965][0.756868,0.7528,0][0,-0.469987,-1.09392][0,-3.45011,0.206815][0.756868,0.750471,0][0.364981,-0.466522,-1.03612][0.000149991,-3.45001,0.20626][0.75169,0.750784,0][0.364981,-0.466522,-1.03612][0.000149991,-3.45001,0.20626][0.75169,0.750784,0][0.364981,-0.444166,-1.03612][-0.308079,-0.0778549,0.94817][0.75169,0.7528,0][0,-0.444166,-1.09392][0,-0.0778548,0.996965][0.756868,0.7528,0][-0.955532,-0.444166,-0.607055][0.830491,0.0446941,0.555237][0.772404,0.7528,0][-1.11898,-0.44373,-0.28612][-0.429967,-3.44086,-0.0356551][0.77732,0.7528,0][-0.941571,-0.462428,-0.621016][-0.316548,-3.41977,-0.0462771][0.772404,0.751297,0][-0.694235,-0.444166,-0.868352][0.600639,-0.041741,0.79843][0.767225,0.7528,0][-0.955532,-0.444166,-0.607055][0.830491,0.0446941,0.555237][0.772404,0.7528,0][-0.941571,-0.462428,-0.621016][-0.316548,-3.41977,-0.0462771][0.772404,0.751297,0][-0.694235,-0.444166,-0.868352][0.600639,-0.041741,0.79843][0.767225,0.7528,0][-0.941571,-0.462428,-0.621016][-0.316548,-3.41977,-0.0462771][0.772404,0.751297,0][-0.689777,-0.456807,-0.870624][-0.00197212,-3.4463,0.134387][0.767225,0.751654,0][-0.694235,-0.444166,-0.868352][0.600639,-0.041741,0.79843][0.767225,0.7528,0][-0.689777,-0.456807,-0.870624][-0.00197212,-3.4463,0.134387][0.767225,0.751654,0][-0.364981,-0.466522,-1.03612][-0.000150099,-3.45001,0.20626][0.762047,0.750784,0][-0.364981,-0.444166,-1.03612][0.308079,-0.0778522,0.94817][0.762047,0.7528,0][-0.694235,-0.444166,-0.868352][0.600639,-0.041741,0.79843][0.767225,0.7528,0][-0.364981,-0.466522,-1.03612][-0.000150099,-3.45001,0.20626][0.762047,0.750784,0][-1.14847,-0.446047,0.293214][-0.0458425,-3.13207,-0.232624][0.682113,0.75263,0][-1.15835,-0.444166,0.230817][-0.390107,-3.12175,-0.0323301][0.681228,0.7528,0][-1.1233,-0.444166,0.45216][0.94817,-0.0778511,-0.308079][0.684368,0.7528,0][-1.1233,-0.444166,0.45216][0.94817,-0.0778511,-0.308079][0.684368,0.7528,0][-1.1233,-0.459201,0.45216][7.31677e-006,-3.44313,-0.284928][0.684368,0.751444,0][-1.14847,-0.446047,0.293214][-0.0458425,-3.13207,-0.232624][0.682113,0.75263,0][-0.741858,-0.504128,0.995088][-0.0322832,-3.13016,-0.24032][0.693782,0.747393,0][-0.955532,-0.486447,0.781414][1.32461e-005,-3.44365,-0.284971][0.689547,0.748987,0][-0.955532,-0.444166,0.781414][0.806561,-0.0778553,-0.586001][0.689547,0.7528,0][-0.741858,-0.504128,0.995088][-0.0322832,-3.13016,-0.24032][0.693782,0.747393,0][-0.955532,-0.444166,0.781414][0.806561,-0.0778553,-0.586001][0.689547,0.7528,0][-0.694235,-0.444166,1.04271][0.586001,-0.0778547,-0.806561][0.694725,0.7528,0][-0.741858,-0.504128,0.995088][-0.0322832,-3.13016,-0.24032][0.693782,0.747393,0][-0.694235,-0.444166,1.04271][0.586001,-0.0778547,-0.806561][0.694725,0.7528,0][-0.694235,-0.510572,1.04271][-0.428319,-3.42779,-0.0355182][0.694725,0.746811,0][0.364981,-0.444166,-1.03612][-0.308079,-0.0778549,0.94817][0.75169,0.7528,0][0.364981,-0.466522,-1.03612][0.000149991,-3.45001,0.20626][0.75169,0.750784,0][0.689777,-0.456807,-0.870624][0.00191998,-3.44352,0.128115][0.746651,0.751666,0][0.689777,-0.456807,-0.870624][0.00191998,-3.44352,0.128115][0.746651,0.751666,0][0.694234,-0.444166,-0.868352][-0.599847,-0.042665,0.798977][0.746511,0.7528,0][0.364981,-0.444166,-1.03612][-0.308079,-0.0778549,0.94817][0.75169,0.7528,0][-0.364981,-0.444166,-1.03612][0.308079,-0.0778522,0.94817][0.762047,0.7528,0][-0.364981,-0.466522,-1.03612][-0.000150099,-3.45001,0.20626][0.762047,0.750784,0][0,-0.469987,-1.09392][0,-3.45011,0.206815][0.756868,0.750471,0][0,-0.469987,-1.09392][0,-3.45011,0.206815][0.756868,0.750471,0][0,-0.444166,-1.09392][0,-0.0778548,0.996965][0.756868,0.7528,0][-0.364981,-0.444166,-1.03612][0.308079,-0.0778522,0.94817][0.762047,0.7528,0][0.741788,-0.504134,0.995158][0.0322903,-3.13016,-0.240314][0.716382,0.747392,0][0.694234,-0.510568,1.04271][0.428314,-3.4278,-0.035517][0.71544,0.746812,0][0.694234,-0.444166,1.04271][-0.586001,-0.0778548,-0.806562][0.71544,0.7528,0][0.741788,-0.504134,0.995158][0.0322903,-3.13016,-0.240314][0.716382,0.747392,0][0.694234,-0.444166,1.04271][-0.586001,-0.0778548,-0.806562][0.71544,0.7528,0][0.955532,-0.444166,0.781414][-0.806561,-0.0778548,-0.586001][0.720618,0.7528,0][0.955532,-0.486447,0.781414][-1.37568e-005,-3.44365,-0.284973][0.720618,0.748987,0][0.741788,-0.504134,0.995158][0.0322903,-3.13016,-0.240314][0.716382,0.747392,0][0.955532,-0.444166,0.781414][-0.806561,-0.0778548,-0.586001][0.720618,0.7528,0][1.1233,-0.444166,0.45216][-0.94817,-0.0778546,-0.308079][0.725797,0.7528,0][1.15833,-0.444166,0.23094][0.390078,-3.12175,-0.0323473][0.728936,0.7528,0][1.14848,-0.446042,0.293144][0.0458453,-3.13208,-0.232624][0.728053,0.752631,0][1.14848,-0.446042,0.293144][0.0458453,-3.13208,-0.232624][0.728053,0.752631,0][1.1233,-0.459201,0.45216][-5.94233e-006,-3.44313,-0.284928][0.725797,0.751444,0][1.1233,-0.444166,0.45216][-0.94817,-0.0778546,-0.308079][0.725797,0.7528,0][1.15833,-0.444166,0.23094][0.390078,-3.12175,-0.0323473][0.680188,0.707318,0][1.1233,-0.444166,0.45216][-0.94817,-0.0778546,-0.308079][0.681724,0.717017,0][1.09505,-0.256639,0.442982][-0.905884,-0.304531,-0.29434][0.682963,0.716615,0][1.15833,-0.444166,0.23094][0.390078,-3.12175,-0.0323473][0.680188,0.707318,0][1.09505,-0.256639,0.442982][-0.905884,-0.304531,-0.29434][0.682963,0.716615,0][1.1514,-0.256639,0.0871798][-0.952503,-0.30453,0][0.680492,0.701014,0][1.18043,-0.439916,0.0871798][0.42896,-3.4328,-0.0355658][0.679219,0.701014,0][1.15833,-0.444166,0.23094][0.390078,-3.12175,-0.0323473][0.680188,0.707318,0][1.1514,-0.256639,0.0871798][-0.952503,-0.30453,0][0.680492,0.701014,0][1.09505,-0.256639,-0.268623][-0.90704,-0.301849,0.293541][0.682963,0.685414,0][1.11896,-0.443728,-0.286155][0.429959,-3.44084,-0.0356527][0.682099,0.684277,0][1.18043,-0.439916,0.0871798][0.42896,-3.4328,-0.0355658][0.679219,0.701014,0][1.18043,-0.439916,0.0871798][0.42896,-3.4328,-0.0355658][0.679219,0.701014,0][1.1514,-0.256639,0.0871798][-0.952503,-0.30453,0][0.680492,0.701014,0][1.09505,-0.256639,-0.268623][-0.90704,-0.301849,0.293541][0.682963,0.685414,0][-0.65179,-0.5161,1.06434][-0.273036,-3.12303,-0.0513762][0.695393,0.746313,0][-0.694235,-0.510572,1.04271][-0.428319,-3.42779,-0.0355182][0.694725,0.746811,0][-0.694235,-0.444166,1.04271][0.586001,-0.0778547,-0.806561][0.694725,0.7528,0][-0.571182,-0.517358,1.10541][2.1706e-006,-3.14012,-0.0962198][0.696661,0.746199,0][-0.65179,-0.5161,1.06434][-0.273036,-3.12303,-0.0513762][0.695393,0.746313,0][-0.694235,-0.444166,1.04271][0.586001,-0.0778547,-0.806561][0.694725,0.7528,0][-0.416708,-0.51977,1.18412][0,-3.13109,-0.234529][0.69909,0.745982,0][-0.571182,-0.517358,1.10541][2.1706e-006,-3.14012,-0.0962198][0.696661,0.746199,0][-0.694235,-0.444166,1.04271][0.586001,-0.0778547,-0.806561][0.694725,0.7528,0][-0.416708,-0.51977,1.18412][0,-3.13109,-0.234529][0.69909,0.745982,0][-0.694235,-0.444166,1.04271][0.586001,-0.0778547,-0.806561][0.694725,0.7528,0][-0.364981,-0.444166,1.21047][0.308079,-0.077855,-0.94817][0.699904,0.7528,0][-0.364981,-0.521951,1.21047][3.66701e-007,-3.44483,-0.285045][0.699904,0.745785,0][-0.416708,-0.51977,1.18412][0,-3.13109,-0.234529][0.69909,0.745982,0][-0.364981,-0.444166,1.21047][0.308079,-0.077855,-0.94817][0.699904,0.7528,0][0.36498,-0.444166,1.21047][-0.308079,-0.0778544,-0.94817][0.710261,0.7528,0][0.36498,-0.521951,1.21047][-1.7306e-006,-3.44483,-0.28506][0.710261,0.745785,0][-2.60787e-007,-0.526734,1.26828][-3.04846e-007,-3.44504,-0.285057][0.705083,0.745354,0][-2.60787e-007,-0.526734,1.26828][-3.04846e-007,-3.44504,-0.285057][0.705083,0.745354,0][-2.42424e-007,-0.444166,1.26828][0,-0.0778548,-0.996965][0.705083,0.7528,0][0.36498,-0.444166,1.21047][-0.308079,-0.0778544,-0.94817][0.710261,0.7528,0][0.416707,-0.51977,1.18412][2.59336e-007,-3.13109,-0.234528][0.711075,0.745982,0][0.36498,-0.521951,1.21047][-1.7306e-006,-3.44483,-0.28506][0.710261,0.745785,0][0.36498,-0.444166,1.21047][-0.308079,-0.0778544,-0.94817][0.710261,0.7528,0][0.694234,-0.444166,1.04271][-0.586001,-0.0778548,-0.806562][0.71544,0.7528,0][0.694234,-0.510568,1.04271][0.428314,-3.4278,-0.035517][0.71544,0.746812,0][0.651758,-0.5161,1.06435][0.273014,-3.12304,-0.0513862][0.714772,0.746313,0][0.36498,-0.444166,1.21047][-0.308079,-0.0778544,-0.94817][0.710261,0.7528,0][0.694234,-0.444166,1.04271][-0.586001,-0.0778548,-0.806562][0.71544,0.7528,0][0.651758,-0.5161,1.06435][0.273014,-3.12304,-0.0513862][0.714772,0.746313,0][0.416707,-0.51977,1.18412][2.59336e-007,-3.13109,-0.234528][0.711075,0.745982,0][0.36498,-0.444166,1.21047][-0.308079,-0.0778544,-0.94817][0.710261,0.7528,0][0.651758,-0.5161,1.06435][0.273014,-3.12304,-0.0513862][0.714772,0.746313,0][-1.1514,-0.256639,0.0871795][0.952843,-0.30346,0.00141965][0.781459,0.701014,0][-1.18043,-0.439919,0.0871795][-0.428944,-3.43277,-0.0355697][0.782731,0.701014,0][-1.11898,-0.44373,-0.28612][-0.429967,-3.44086,-0.0356551][0.780221,0.685014,0][-1.11898,-0.44373,-0.28612][-0.429967,-3.44086,-0.0356551][0.780221,0.685014,0][-1.09505,-0.256639,-0.268623][0.907824,-0.300719,0.292275][0.778988,0.685414,0][-1.1514,-0.256639,0.0871795][0.952843,-0.30346,0.00141965][0.781459,0.701014,0][-1.18043,-0.439919,0.0871795][-0.428944,-3.43277,-0.0355697][0.782731,0.701014,0][-1.1514,-0.256639,0.0871795][0.952843,-0.30346,0.00141965][0.781459,0.701014,0][-1.09505,-0.256639,0.442982][0.905884,-0.304531,-0.294339][0.778988,0.716615,0][-1.18043,-0.439919,0.0871795][-0.428944,-3.43277,-0.0355697][0.782731,0.701014,0][-1.09505,-0.256639,0.442982][0.905884,-0.304531,-0.294339][0.778988,0.716615,0][-1.1233,-0.444166,0.45216][0.94817,-0.0778511,-0.308079][0.780226,0.717017,0][-1.15835,-0.444166,0.230817][-0.390107,-3.12175,-0.0323301][0.781763,0.707312,0][-1.18043,-0.439919,0.0871795][-0.428944,-3.43277,-0.0355697][0.782731,0.701014,0][-1.1233,-0.444166,0.45216][0.94817,-0.0778511,-0.308079][0.780226,0.717017,0][-1.11898,-0.44373,-0.28612][-0.429967,-3.44086,-0.0356551][0.780221,0.685014,0][-0.955532,-0.444166,-0.607055][0.830491,0.0446941,0.555237][0.772871,0.670576,0][-0.931503,-0.256639,-0.589597][0.770591,-0.304531,0.559867][0.771817,0.671341,0][-0.931503,-0.256639,-0.589597][0.770591,-0.304531,0.559867][0.771817,0.671341,0][-1.09505,-0.256639,-0.268623][0.907824,-0.300719,0.292275][0.778988,0.685414,0][-1.11898,-0.44373,-0.28612][-0.429967,-3.44086,-0.0356551][0.780221,0.685014,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/RubberDuckie.mesh b/shareddata/charcustom/hats/fonts/RubberDuckie.mesh deleted file mode 100644 index 88cb1e0..0000000 --- a/shareddata/charcustom/hats/fonts/RubberDuckie.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -442 -[-0.327341,0.36447,-1.1941][-0.934298,-0.23321,-0.269631][0.448424,0.697716,0][-0.319967,0.331362,-1.19102][-0.934298,-0.23321,-0.269631][0.455098,0.686845,0][-0.341699,0.319352,-1.10532][-0.934298,-0.23321,-0.269631][0.485736,0.70184,0][-0.327341,0.36447,-1.1941][-0.934298,-0.23321,-0.269631][0.448424,0.697716,0][-0.341699,0.319352,-1.10532][-0.934298,-0.23321,-0.269631][0.485736,0.70184,0][-0.348659,0.353338,-1.10998][-0.936136,-0.228311,-0.267439][0.477403,0.711986,0][0,0.649035,-1.40963][-0.377026,0.919896,0.107904][0.283719,0.753836,0][-0.174654,0.574744,-1.38655][-0.377026,0.919896,0.107904][0.339651,0.722533,0][-0.190045,0.556064,-1.28107][-0.377026,0.919896,0.107904][0.369535,0.741707,0][0,0.649035,-1.40963][-0.377026,0.919896,0.107904][0.283719,0.753836,0][-0.190045,0.556064,-1.28107][-0.377026,0.919896,0.107904][0.369535,0.741707,0][0,0.636961,-1.30937][-0.375239,0.920279,0.110822][0.307344,0.781011,0][0,0.324583,-1.25274][0.0591651,-0.98771,-0.144666][0.106178,0.915713,0][0,0.295712,-1.05562][0.0591651,-0.98771,-0.144666][0.159149,0.866801,0][-0.203675,0.277236,-1.01277][0.0591651,-0.98771,-0.144666][0.223852,0.910068,0][0,0.324583,-1.25274][0.0591651,-0.98771,-0.144666][0.106178,0.915713,0][-0.203675,0.277236,-1.01277][0.0591651,-0.98771,-0.144666][0.223852,0.910068,0][-0.17556,0.290735,-1.22181][0.182559,-0.982425,-0.0388902][0.162754,0.954271,0][-0.250894,0.405318,-1.31382][-0.474098,-0.158429,-0.866101][0.39417,0.684252,0][-0.262168,0.442083,-1.31438][-0.474098,-0.158429,-0.866101][0.391306,0.6979,0][-0.174654,0.574744,-1.38655][-0.377026,0.919896,0.107904][0.339651,0.722533,0][-0.250894,0.405318,-1.31382][-0.474098,-0.158429,-0.866101][0.39417,0.684252,0][-0.174654,0.574744,-1.38655][-0.377026,0.919896,0.107904][0.339651,0.722533,0][-0.177633,0.50069,-1.37331][-0.517103,-0.130419,-0.845929][0.346879,0.699533,0][0,0.6418,-1.22582][-0.413408,0.873383,-0.257481][0.326295,0.804822,0][-0.20287,0.555397,-1.19317][-0.413408,0.873383,-0.257481][0.394649,0.761286,0][-0.222343,0.625608,-0.92375][-0.413408,0.873383,-0.257481][0.459104,0.841016,0][0,0.6418,-1.22582][-0.413408,0.873383,-0.257481][0.326295,0.804822,0][-0.222343,0.625608,-0.92375][-0.413408,0.873383,-0.257481][0.459104,0.841016,0][0,0.72498,-0.92375][-0.395722,0.885413,-0.243818][0.391525,0.899385,0][-0.348659,0.353338,-1.10998][-0.936136,-0.228311,-0.267439][0.477403,0.711986,0][-0.341699,0.319352,-1.10532][-0.934298,-0.23321,-0.269631][0.485736,0.70184,0][-0.384603,0.28733,-0.87878][-0.95134,-0.223811,-0.211805][0.562596,0.743023,0][-0.348659,0.353338,-1.10998][-0.936136,-0.228311,-0.267439][0.477403,0.711986,0][-0.384603,0.28733,-0.87878][-0.95134,-0.223811,-0.211805][0.562596,0.743023,0][-0.389567,0.324558,-0.885599][-0.966349,-0.164998,-0.197346][0.552042,0.753156,0][-0.20287,0.555397,-1.19317][-0.413408,0.873383,-0.257481][0.394649,0.761286,0][-0.348659,0.353338,-1.10998][-0.936136,-0.228311,-0.267439][0.477403,0.711986,0][-0.389567,0.324558,-0.885599][-0.966349,-0.164998,-0.197346][0.552042,0.753156,0][-0.20287,0.555397,-1.19317][-0.413408,0.873383,-0.257481][0.394649,0.761286,0][-0.389567,0.324558,-0.885599][-0.966349,-0.164998,-0.197346][0.552042,0.753156,0][-0.222343,0.625608,-0.92375][-0.413408,0.873383,-0.257481][0.459104,0.841016,0][-0.17556,0.290735,-1.22181][0.182559,-0.982425,-0.0388902][0.162754,0.954271,0][-0.203675,0.277236,-1.01277][0.0591651,-0.98771,-0.144666][0.223852,0.910068,0][-0.322582,0.263542,-0.994787][0.106835,-0.993031,-0.0497599][0.258229,0.937961,0][-0.17556,0.290735,-1.22181][0.182559,-0.982425,-0.0388902][0.162754,0.954271,0][-0.322582,0.263542,-0.994787][0.106835,-0.993031,-0.0497599][0.258229,0.937961,0][-0.26351,0.274392,-1.18501][0.183,-0.983113,0.000754234][0.1933,0.968039,0][-0.363599,0.261861,-0.869841][0.118167,-0.992668,0.0254337][0.302887,0.918243,0][-0.322582,0.263542,-0.994787][0.106835,-0.993031,-0.0497599][0.258229,0.937961,0][-0.203675,0.277236,-1.01277][0.0591651,-0.98771,-0.144666][0.223852,0.910068,0][-0.363599,0.261861,-0.869841][0.118167,-0.992668,0.0254337][0.302887,0.918243,0][-0.203675,0.277236,-1.01277][0.0591651,-0.98771,-0.144666][0.223852,0.910068,0][-0.209418,0.27527,-0.903117][0.0837437,-0.996396,-0.0134827][0.255228,0.884333,0][0,0.649035,-1.40963][-0.377026,0.919896,0.107904][0.283719,0.753836,0][0,0.582512,-1.39343][-0.00107123,-0.236582,-0.971611][0.283719,0.729492,0][-0.177633,0.50069,-1.37331][-0.517103,-0.130419,-0.845929][0.346879,0.699533,0][0,0.649035,-1.40963][-0.377026,0.919896,0.107904][0.283719,0.753836,0][-0.177633,0.50069,-1.37331][-0.517103,-0.130419,-0.845929][0.346879,0.699533,0][-0.174654,0.574744,-1.38655][-0.377026,0.919896,0.107904][0.339651,0.722533,0][0,0.371737,-1.30607][0.0277395,-0.748911,-0.662089][0.084712,0.931287,0][0,0.324583,-1.25274][0.0591651,-0.98771,-0.144666][0.106178,0.915713,0][-0.17556,0.290735,-1.22181][0.182559,-0.982425,-0.0388902][0.162754,0.954271,0][0,0.371737,-1.30607][0.0277395,-0.748911,-0.662089][0.084712,0.931287,0][-0.17556,0.290735,-1.22181][0.182559,-0.982425,-0.0388902][0.162754,0.954271,0][-0.168874,0.334962,-1.28343][0.10032,-0.813451,-0.572917][0.140737,0.968933,0][-0.26351,0.274392,-1.18501][0.183,-0.983113,0.000754234][0.1933,0.968039,0][-0.168874,0.334962,-1.28343][0.10032,-0.813451,-0.572917][0.140737,0.968933,0][-0.17556,0.290735,-1.22181][0.182559,-0.982425,-0.0388902][0.162754,0.954271,0][-0.337563,0.292297,-1.0015][-0.852257,-0.426961,-0.302263][0.262244,0.949752,0][-0.276593,0.31059,-1.19925][-0.852257,-0.426961,-0.302263][0.191286,0.982369,0][-0.26351,0.274392,-1.18501][0.183,-0.983113,0.000754234][0.1933,0.968039,0][-0.337563,0.292297,-1.0015][-0.852257,-0.426961,-0.302263][0.262244,0.949752,0][-0.26351,0.274392,-1.18501][0.183,-0.983113,0.000754234][0.1933,0.968039,0][-0.322582,0.263542,-0.994787][0.106835,-0.993031,-0.0497599][0.258229,0.937961,0][-0.384603,0.28733,-0.87878][-0.95134,-0.223811,-0.211805][0.307281,0.930221,0][-0.337563,0.292297,-1.0015][-0.852257,-0.426961,-0.302263][0.262244,0.949752,0][-0.322582,0.263542,-0.994787][0.106835,-0.993031,-0.0497599][0.258229,0.937961,0][-0.384603,0.28733,-0.87878][-0.95134,-0.223811,-0.211805][0.307281,0.930221,0][-0.322582,0.263542,-0.994787][0.106835,-0.993031,-0.0497599][0.258229,0.937961,0][-0.363599,0.261861,-0.869841][0.118167,-0.992668,0.0254337][0.302887,0.918243,0][-0.176716,0.37791,-1.30555][-0.0186145,-0.456968,-0.889288][0.12885,0.982369,0][0,0.418049,-1.32987][-0.0186145,-0.456968,-0.889288][0.067901,0.941797,0][0,0.371737,-1.30607][0.0277395,-0.748911,-0.662089][0.084712,0.931287,0][-0.176716,0.37791,-1.30555][-0.0186145,-0.456968,-0.889288][0.12885,0.982369,0][0,0.371737,-1.30607][0.0277395,-0.748911,-0.662089][0.084712,0.931287,0][-0.168874,0.334962,-1.28343][0.10032,-0.813451,-0.572917][0.140737,0.968933,0][-0.276593,0.31059,-1.19925][-0.852257,-0.426961,-0.302263][0.191286,0.982369,0][-0.176716,0.37791,-1.30555][-0.0186145,-0.456968,-0.889288][0.12885,0.982369,0][-0.168874,0.334962,-1.28343][0.10032,-0.813451,-0.572917][0.140737,0.968933,0][-0.276593,0.31059,-1.19925][-0.852257,-0.426961,-0.302263][0.191286,0.982369,0][-0.168874,0.334962,-1.28343][0.10032,-0.813451,-0.572917][0.140737,0.968933,0][-0.26351,0.274392,-1.18501][0.183,-0.983113,0.000754234][0.1933,0.968039,0][-0.163189,0.484138,-1.22448][0.436763,-0.894138,-0.0987634][0.158257,0.811764,0][0,0.566613,-1.24949][0.436763,-0.894138,-0.0987634][0.110997,0.76449,0][0,0.547534,-1.07676][0.436763,-0.894138,-0.0987634][0.162654,0.728833,0][-0.163189,0.484138,-1.22448][0.436763,-0.894138,-0.0987634][0.158257,0.811764,0][0,0.547534,-1.07676][0.436763,-0.894138,-0.0987634][0.162654,0.728833,0][-0.147566,0.466234,-1.0635][0.46779,-0.872291,-0.142414][0.203695,0.774415,0][0,0.418049,-1.32987][-0.0186145,-0.456968,-0.889288][0.528767,0.935062,0][-0.176716,0.37791,-1.30555][-0.0186145,-0.456968,-0.889288][0.471157,0.974949,0][-0.146649,0.36565,-1.03891][-0.211969,0.974857,0.0687241][0.412709,0.897418,0][0,0.418049,-1.32987][-0.0186145,-0.456968,-0.889288][0.528767,0.935062,0][-0.146649,0.36565,-1.03891][-0.211969,0.974857,0.0687241][0.412709,0.897418,0][0,0.396496,-1.05144][-0.19905,0.977066,0.0756331][0.459353,0.861769,0][-0.176716,0.37791,-1.30555][-0.0186145,-0.456968,-0.889288][0.471157,0.974949,0][-0.276593,0.31059,-1.19925][-0.852257,-0.426961,-0.302263][0.413091,0.974949,0][-0.232148,0.332513,-1.01783][-0.53681,0.843183,0.0296172][0.383008,0.913985,0][-0.176716,0.37791,-1.30555][-0.0186145,-0.456968,-0.889288][0.471157,0.974949,0][-0.232148,0.332513,-1.01783][-0.53681,0.843183,0.0296172][0.383008,0.913985,0][-0.146649,0.36565,-1.03891][-0.211969,0.974857,0.0687241][0.412709,0.897418,0][-0.341699,0.319352,-1.10532][-0.934298,-0.23321,-0.269631][0.247419,0.852681,0][-0.319967,0.331362,-1.19102][-0.934298,-0.23321,-0.269631][0.217925,0.865435,0][-0.245328,0.40822,-1.20569][0.722932,-0.685384,0.0872851][0.189296,0.838732,0][-0.341699,0.319352,-1.10532][-0.934298,-0.23321,-0.269631][0.247419,0.852681,0][-0.245328,0.40822,-1.20569][0.722932,-0.685384,0.0872851][0.189296,0.838732,0][-0.236003,0.412786,-1.0225][0.669035,-0.743068,-0.0155382][0.238612,0.794226,0][-0.341699,0.319352,-1.10532][-0.934298,-0.23321,-0.269631][0.247419,0.852681,0][-0.236003,0.412786,-1.0225][0.669035,-0.743068,-0.0155382][0.238612,0.794226,0][-0.301829,0.365536,-0.974166][0.621562,-0.778712,0.0852557][0.270661,0.805859,0][-0.276593,0.31059,-1.19925][-0.852257,-0.426961,-0.302263][0.413091,0.974949,0][-0.337563,0.292297,-1.0015][-0.852257,-0.426961,-0.302263][0.348518,0.93662,0][-0.319188,0.303985,-0.952][-0.434781,0.899098,-0.0508823][0.342437,0.91804,0][-0.276593,0.31059,-1.19925][-0.852257,-0.426961,-0.302263][0.413091,0.974949,0][-0.319188,0.303985,-0.952][-0.434781,0.899098,-0.0508823][0.342437,0.91804,0][-0.232148,0.332513,-1.01783][-0.53681,0.843183,0.0296172][0.383008,0.913985,0][-0.384603,0.28733,-0.87878][-0.95134,-0.223811,-0.211805][0.323301,0.816375,0][-0.341699,0.319352,-1.10532][-0.934298,-0.23321,-0.269631][0.247419,0.852681,0][-0.301829,0.365536,-0.974166][0.621562,-0.778712,0.0852557][0.270661,0.805859,0][-0.384603,0.28733,-0.87878][-0.95134,-0.223811,-0.211805][0.323301,0.816375,0][-0.301829,0.365536,-0.974166][0.621562,-0.778712,0.0852557][0.270661,0.805859,0][-0.342842,0.309398,-0.886424][0.381958,-0.849153,-0.364757][0.311078,0.804144,0][-0.337563,0.292297,-1.0015][-0.852257,-0.426961,-0.302263][0.348518,0.93662,0][-0.384603,0.28733,-0.87878][-0.95134,-0.223811,-0.211805][0.306454,0.914462,0][-0.342842,0.309398,-0.886424][0.381958,-0.849153,-0.364757][0.320856,0.904885,0][-0.337563,0.292297,-1.0015][-0.852257,-0.426961,-0.302263][0.348518,0.93662,0][-0.342842,0.309398,-0.886424][0.381958,-0.849153,-0.364757][0.320856,0.904885,0][-0.319188,0.303985,-0.952][-0.434781,0.899098,-0.0508823][0.342437,0.91804,0][-0.262168,0.442083,-1.31438][-0.474098,-0.158429,-0.866101][0.391306,0.6979,0][-0.327341,0.36447,-1.1941][-0.934298,-0.23321,-0.269631][0.448424,0.697716,0][-0.190045,0.556064,-1.28107][-0.377026,0.919896,0.107904][0.369535,0.741707,0][-0.262168,0.442083,-1.31438][-0.474098,-0.158429,-0.866101][0.391306,0.6979,0][-0.190045,0.556064,-1.28107][-0.377026,0.919896,0.107904][0.369535,0.741707,0][-0.174654,0.574744,-1.38655][-0.377026,0.919896,0.107904][0.339651,0.722533,0][-0.245328,0.40822,-1.20569][0.722932,-0.685384,0.0872851][0.189296,0.838732,0][-0.163189,0.484138,-1.22448][0.436763,-0.894138,-0.0987634][0.158257,0.811764,0][-0.147566,0.466234,-1.0635][0.46779,-0.872291,-0.142414][0.203695,0.774415,0][-0.245328,0.40822,-1.20569][0.722932,-0.685384,0.0872851][0.189296,0.838732,0][-0.147566,0.466234,-1.0635][0.46779,-0.872291,-0.142414][0.203695,0.774415,0][-0.236003,0.412786,-1.0225][0.669035,-0.743068,-0.0155382][0.238612,0.794226,0][-0.327341,0.36447,-1.1941][-0.934298,-0.23321,-0.269631][0.448424,0.697716,0][-0.262168,0.442083,-1.31438][-0.474098,-0.158429,-0.866101][0.391306,0.6979,0][-0.250894,0.405318,-1.31382][-0.474098,-0.158429,-0.866101][0.39417,0.684252,0][-0.327341,0.36447,-1.1941][-0.934298,-0.23321,-0.269631][0.448424,0.697716,0][-0.250894,0.405318,-1.31382][-0.474098,-0.158429,-0.866101][0.39417,0.684252,0][-0.319967,0.331362,-1.19102][-0.934298,-0.23321,-0.269631][0.455098,0.686845,0][-0.245328,0.40822,-1.20569][0.722932,-0.685384,0.0872851][0.189296,0.838732,0][-0.319967,0.331362,-1.19102][-0.934298,-0.23321,-0.269631][0.217925,0.865435,0][-0.250894,0.405318,-1.31382][-0.474098,-0.158429,-0.866101][0.160583,0.865435,0][-0.190045,0.556064,-1.28107][-0.377026,0.919896,0.107904][0.369535,0.741707,0][-0.327341,0.36447,-1.1941][-0.934298,-0.23321,-0.269631][0.448424,0.697716,0][-0.348659,0.353338,-1.10998][-0.936136,-0.228311,-0.267439][0.477403,0.711986,0][-0.190045,0.556064,-1.28107][-0.377026,0.919896,0.107904][0.369535,0.741707,0][-0.348659,0.353338,-1.10998][-0.936136,-0.228311,-0.267439][0.477403,0.711986,0][-0.20287,0.555397,-1.19317][-0.413408,0.873383,-0.257481][0.394649,0.761286,0][0,0.636961,-1.30937][-0.375239,0.920279,0.110822][0.307344,0.781011,0][-0.190045,0.556064,-1.28107][-0.377026,0.919896,0.107904][0.369535,0.741707,0][-0.20287,0.555397,-1.19317][-0.413408,0.873383,-0.257481][0.394649,0.761286,0][0,0.636961,-1.30937][-0.375239,0.920279,0.110822][0.307344,0.781011,0][-0.20287,0.555397,-1.19317][-0.413408,0.873383,-0.257481][0.394649,0.761286,0][0,0.6418,-1.22582][-0.413408,0.873383,-0.257481][0.326295,0.804822,0][-0.245328,0.40822,-1.20569][0.722932,-0.685384,0.0872851][0.189296,0.838732,0][-0.250894,0.405318,-1.31382][-0.474098,-0.158429,-0.866101][0.160583,0.865435,0][-0.177633,0.50069,-1.37331][-0.517103,-0.130419,-0.845929][0.116166,0.846189,0][-0.245328,0.40822,-1.20569][0.722932,-0.685384,0.0872851][0.189296,0.838732,0][-0.177633,0.50069,-1.37331][-0.517103,-0.130419,-0.845929][0.116166,0.846189,0][-0.163189,0.484138,-1.22448][0.436763,-0.894138,-0.0987634][0.158257,0.811764,0][-0.177633,0.50069,-1.37331][-0.517103,-0.130419,-0.845929][0.116166,0.846189,0][0,0.582512,-1.39343][-0.00107123,-0.236582,-0.971611][0.067901,0.794118,0][0,0.566613,-1.24949][0.436763,-0.894138,-0.0987634][0.110997,0.76449,0][-0.177633,0.50069,-1.37331][-0.517103,-0.130419,-0.845929][0.116166,0.846189,0][0,0.566613,-1.24949][0.436763,-0.894138,-0.0987634][0.110997,0.76449,0][-0.163189,0.484138,-1.22448][0.436763,-0.894138,-0.0987634][0.158257,0.811764,0][-0.208093,-0.0695008,-0.364725][-0.387089,-0.836854,0.387089][0.815984,0.448889,0][-0.120142,-0.0695008,-0.276774][-0.387089,-0.836854,0.387089][0.858503,0.449154,0][-0.221994,0.0592109,-0.100362][-0.387089,-0.836854,0.387089][0.869923,0.523425,0][-0.208093,-0.0695008,-0.364725][-0.387089,-0.836854,0.387089][0.815984,0.448889,0][-0.221994,0.0592109,-0.100362][-0.387089,-0.836854,0.387089][0.869923,0.523425,0][-0.384504,0.0592108,-0.262873][-0.387091,-0.836853,0.387088][0.802455,0.521508,0][-0.120142,-0.0695008,-0.276774][-0.387089,-0.836854,0.387089][0.858503,0.449154,0][0,-0.0695008,-0.244582][-0.141685,-0.836853,0.528774][0.896951,0.435719,0][0,0.0592109,-0.0408789][-0.141685,-0.836853,0.528774][0.938645,0.502704,0][-0.120142,-0.0695008,-0.276774][-0.387089,-0.836854,0.387089][0.858503,0.449154,0][0,0.0592109,-0.0408789][-0.141685,-0.836853,0.528774][0.938645,0.502704,0][-0.221994,0.0592109,-0.100362][-0.387089,-0.836854,0.387089][0.869923,0.523425,0][0,-0.0695008,-0.725151][-0.141685,-0.836854,-0.528773][0.702425,0.334379,0][-0.120142,-0.0695008,-0.692959][-0.141685,-0.836854,-0.528773][0.714303,0.375241,0][-0.221994,0.0592108,-0.869371][-0.141685,-0.836854,-0.528773][0.646018,0.407253,0][0,-0.0695008,-0.725151][-0.141685,-0.836854,-0.528773][0.702425,0.334379,0][-0.221994,0.0592108,-0.869371][-0.141685,-0.836854,-0.528773][0.646018,0.407253,0][0,0.0592109,-0.928855][-0.141686,-0.836854,-0.528772][0.623322,0.338746,0][-0.120142,-0.0695008,-0.692959][-0.141685,-0.836854,-0.528773][0.714303,0.375241,0][-0.208093,-0.0695008,-0.605009][-0.387088,-0.836853,-0.387092][0.73983,0.410089,0][-0.384504,0.0592108,-0.706861][-0.387088,-0.836853,-0.387092][0.686536,0.461374,0][-0.120142,-0.0695008,-0.692959][-0.141685,-0.836854,-0.528773][0.714303,0.375241,0][-0.384504,0.0592108,-0.706861][-0.387088,-0.836853,-0.387092][0.686536,0.461374,0][-0.221994,0.0592108,-0.869371][-0.141685,-0.836854,-0.528773][0.646018,0.407253,0][-0.208093,-0.0695008,-0.605009][-0.387088,-0.836853,-0.387092][0.73983,0.410089,0][-0.240284,-0.0695008,-0.484867][-0.528774,-0.836854,-0.14168][0.774996,0.435392,0][-0.443987,0.0592108,-0.484867][-0.528774,-0.836854,-0.14168][0.740018,0.500101,0][-0.208093,-0.0695008,-0.605009][-0.387088,-0.836853,-0.387092][0.73983,0.410089,0][-0.443987,0.0592108,-0.484867][-0.528774,-0.836854,-0.14168][0.740018,0.500101,0][-0.384504,0.0592108,-0.706861][-0.387088,-0.836853,-0.387092][0.686536,0.461374,0][-0.240284,-0.0695008,-0.484867][-0.528774,-0.836854,-0.14168][0.774996,0.435392,0][-0.208093,-0.0695008,-0.364725][-0.387089,-0.836854,0.387089][0.815984,0.448889,0][-0.384504,0.0592108,-0.262873][-0.387091,-0.836853,0.387088][0.802455,0.521508,0][-0.240284,-0.0695008,-0.484867][-0.528774,-0.836854,-0.14168][0.774996,0.435392,0][-0.384504,0.0592108,-0.262873][-0.387091,-0.836853,0.387088][0.802455,0.521508,0][-0.443987,0.0592108,-0.484867][-0.528774,-0.836854,-0.14168][0.740018,0.500101,0][-0.384504,0.0592108,-0.262873][-0.387091,-0.836853,0.387088][0.802455,0.521508,0][-0.221994,0.0592109,-0.100362][-0.387089,-0.836854,0.387089][0.869923,0.523425,0][-0.290049,0.251841,0.0175121][-0.584045,-0.563726,0.584041][0.876327,0.593507,0][-0.384504,0.0592108,-0.262873][-0.387091,-0.836853,0.387088][0.802455,0.521508,0][-0.290049,0.251841,0.0175121][-0.584045,-0.563726,0.584041][0.876327,0.593507,0][-0.502379,0.251841,-0.194818][-0.584042,-0.563729,0.584042][0.789318,0.588049,0][-0.221994,0.0592109,-0.100362][-0.387089,-0.836854,0.387089][0.869923,0.523425,0][0,0.0592109,-0.0408789][-0.141685,-0.836853,0.528774][0.938645,0.502704,0][0,0.25184,0.0952311][-0.213774,-0.56373,0.797815][0.968062,0.574789,0][-0.221994,0.0592109,-0.100362][-0.387089,-0.836854,0.387089][0.869923,0.523425,0][0,0.25184,0.0952311][-0.213774,-0.56373,0.797815][0.968062,0.574789,0][-0.290049,0.251841,0.0175121][-0.584045,-0.563726,0.584041][0.876327,0.593507,0][0,0.0592109,-0.928855][-0.141686,-0.836854,-0.528772][0.623322,0.338746,0][-0.221994,0.0592108,-0.869371][-0.141685,-0.836854,-0.528773][0.646018,0.407253,0][-0.290049,0.251841,-0.987246][-0.213777,-0.563729,-0.797815][0.585313,0.441949,0][0,0.0592109,-0.928855][-0.141686,-0.836854,-0.528772][0.623322,0.338746,0][-0.290049,0.251841,-0.987246][-0.213777,-0.563729,-0.797815][0.585313,0.441949,0][0,0.251841,-1.06496][-0.213776,-0.563728,-0.797816][0.548019,0.355783,0][-0.221994,0.0592108,-0.869371][-0.141685,-0.836854,-0.528773][0.646018,0.407253,0][-0.384504,0.0592108,-0.706861][-0.387088,-0.836853,-0.387092][0.686536,0.461374,0][-0.502379,0.251841,-0.774916][-0.584042,-0.563729,-0.584042][0.639667,0.510144,0][-0.221994,0.0592108,-0.869371][-0.141685,-0.836854,-0.528773][0.646018,0.407253,0][-0.502379,0.251841,-0.774916][-0.584042,-0.563729,-0.584042][0.639667,0.510144,0][-0.290049,0.251841,-0.987246][-0.213777,-0.563729,-0.797815][0.585313,0.441949,0][-0.384504,0.0592108,-0.706861][-0.387088,-0.836853,-0.387092][0.686536,0.461374,0][-0.443987,0.0592108,-0.484867][-0.528774,-0.836854,-0.14168][0.740018,0.500101,0][-0.580098,0.251841,-0.484867][-0.797815,-0.563731,-0.213773][0.709002,0.559642,0][-0.384504,0.0592108,-0.706861][-0.387088,-0.836853,-0.387092][0.686536,0.461374,0][-0.580098,0.251841,-0.484867][-0.797815,-0.563731,-0.213773][0.709002,0.559642,0][-0.502379,0.251841,-0.774916][-0.584042,-0.563729,-0.584042][0.639667,0.510144,0][-0.443987,0.0592108,-0.484867][-0.528774,-0.836854,-0.14168][0.740018,0.500101,0][-0.384504,0.0592108,-0.262873][-0.387091,-0.836853,0.387088][0.802455,0.521508,0][-0.502379,0.251841,-0.194818][-0.584042,-0.563729,0.584042][0.789318,0.588049,0][-0.443987,0.0592108,-0.484867][-0.528774,-0.836854,-0.14168][0.740018,0.500101,0][-0.502379,0.251841,-0.194818][-0.584042,-0.563729,0.584042][0.789318,0.588049,0][-0.580098,0.251841,-0.484867][-0.797815,-0.563731,-0.213773][0.709002,0.559642,0][-0.502379,0.251841,-0.194818][-0.584042,-0.563729,0.584042][0.789318,0.588049,0][-0.290049,0.251841,0.0175121][-0.584045,-0.563726,0.584041][0.876327,0.593507,0][-0.313947,0.479064,0.0589051][-0.692948,-0.199114,0.692948][0.879397,0.665468,0][-0.502379,0.251841,-0.194818][-0.584042,-0.563729,0.584042][0.789318,0.588049,0][-0.313947,0.479064,0.0589051][-0.692948,-0.199114,0.692948][0.879397,0.665468,0][-0.543771,0.479064,-0.17092][-0.69295,-0.199111,0.692947][0.774857,0.656789,0][-0.290049,0.251841,0.0175121][-0.584045,-0.563726,0.584041][0.876327,0.593507,0][0,0.25184,0.0952311][-0.213774,-0.56373,0.797815][0.968062,0.574789,0][0,0.479064,0.143027][-0.253639,-0.199111,0.946584][0.98482,0.649459,0][-0.290049,0.251841,0.0175121][-0.584045,-0.563726,0.584041][0.876327,0.593507,0][0,0.479064,0.143027][-0.253639,-0.199111,0.946584][0.98482,0.649459,0][-0.313947,0.479064,0.0589051][-0.692948,-0.199114,0.692948][0.879397,0.665468,0][0,0.251841,-1.06496][-0.213776,-0.563728,-0.797816][0.548019,0.355783,0][-0.290049,0.251841,-0.987246][-0.213777,-0.563729,-0.797815][0.585313,0.441949,0][-0.313947,0.479064,-1.02864][-0.253639,-0.19911,-0.946585][0.524748,0.481021,0][0,0.251841,-1.06496][-0.213776,-0.563728,-0.797816][0.548019,0.355783,0][-0.313947,0.479064,-1.02864][-0.253639,-0.19911,-0.946585][0.524748,0.481021,0][0,0.479064,-1.11276][-0.25364,-0.199112,-0.946584][0.477138,0.384967,0][-0.290049,0.251841,-0.987246][-0.213777,-0.563729,-0.797815][0.585313,0.441949,0][-0.502379,0.251841,-0.774916][-0.584042,-0.563729,-0.584042][0.639667,0.510144,0][-0.543771,0.479064,-0.798814][-0.692948,-0.199111,-0.692948][0.591998,0.561742,0][-0.290049,0.251841,-0.987246][-0.213777,-0.563729,-0.797815][0.585313,0.441949,0][-0.543771,0.479064,-0.798814][-0.692948,-0.199111,-0.692948][0.591998,0.561742,0][-0.313947,0.479064,-1.02864][-0.253639,-0.19911,-0.946585][0.524748,0.481021,0][-0.502379,0.251841,-0.774916][-0.584042,-0.563729,-0.584042][0.639667,0.510144,0][-0.580098,0.251841,-0.484867][-0.797815,-0.563731,-0.213773][0.709002,0.559642,0][-0.627894,0.479064,-0.484867][-0.946584,-0.199112,-0.253638][0.677025,0.621617,0][-0.502379,0.251841,-0.774916][-0.584042,-0.563729,-0.584042][0.639667,0.510144,0][-0.627894,0.479064,-0.484867][-0.946584,-0.199112,-0.253638][0.677025,0.621617,0][-0.543771,0.479064,-0.798814][-0.692948,-0.199111,-0.692948][0.591998,0.561742,0][-0.580098,0.251841,-0.484867][-0.797815,-0.563731,-0.213773][0.709002,0.559642,0][-0.502379,0.251841,-0.194818][-0.584042,-0.563729,0.584042][0.789318,0.588049,0][-0.543771,0.479064,-0.17092][-0.69295,-0.199111,0.692947][0.774857,0.656789,0][-0.580098,0.251841,-0.484867][-0.797815,-0.563731,-0.213773][0.709002,0.559642,0][-0.543771,0.479064,-0.17092][-0.69295,-0.199111,0.692947][0.774857,0.656789,0][-0.627894,0.479064,-0.484867][-0.946584,-0.199112,-0.253638][0.677025,0.621617,0][-0.543771,0.479064,-0.17092][-0.69295,-0.199111,0.692947][0.451077,0.425801,0][-0.313947,0.479064,0.0589051][-0.692948,-0.199114,0.692948][0.527316,0.512289,0][-0.290049,0.706287,0.0175121][-0.692949,0.199114,0.692946][0.462074,0.557001,0][-0.543771,0.479064,-0.17092][-0.69295,-0.199111,0.692947][0.451077,0.425801,0][-0.290049,0.706287,0.0175121][-0.692949,0.199114,0.692946][0.462074,0.557001,0][-0.502379,0.706286,-0.194818][-0.692948,0.199111,0.692948][0.400365,0.483857,0][-0.313947,0.479064,0.0589051][-0.692948,-0.199114,0.692948][0.527316,0.512289,0][0,0.479064,0.143027][-0.253639,-0.199111,0.946584][0.582479,0.616197,0][0,0.706287,0.0952311][-0.253637,0.199113,0.946585][0.50562,0.650379,0][-0.313947,0.479064,0.0589051][-0.692948,-0.199114,0.692948][0.527316,0.512289,0][0,0.706287,0.0952311][-0.253637,0.199113,0.946585][0.50562,0.650379,0][-0.290049,0.706287,0.0175121][-0.692949,0.199114,0.692946][0.462074,0.557001,0][0,0.479064,-1.11276][-0.25364,-0.199112,-0.946584][0.01749,0.341591,0][-0.313947,0.479064,-1.02864][-0.253639,-0.19911,-0.946585][0.132645,0.320807,0][-0.290049,0.706286,-0.987246][-0.25364,0.199111,-0.946584][0.138213,0.399651,0][0,0.479064,-1.11276][-0.25364,-0.199112,-0.946584][0.01749,0.341591,0][-0.290049,0.706286,-0.987246][-0.25364,0.199111,-0.946584][0.138213,0.399651,0][0,0.706287,-1.06496][-0.253639,0.199113,-0.946584][0.038156,0.422989,0][-0.313947,0.479064,-1.02864][-0.253639,-0.19911,-0.946585][0.132645,0.320807,0][-0.543771,0.479064,-0.798814][-0.692948,-0.199111,-0.692948][0.247585,0.327131,0][-0.502379,0.706286,-0.774916][-0.692948,0.199111,-0.692949][0.233824,0.402977,0][-0.313947,0.479064,-1.02864][-0.253639,-0.19911,-0.946585][0.132645,0.320807,0][-0.502379,0.706286,-0.774916][-0.692948,0.199111,-0.692949][0.233824,0.402977,0][-0.290049,0.706286,-0.987246][-0.25364,0.199111,-0.946584][0.138213,0.399651,0][-0.543771,0.479064,-0.798814][-0.692948,-0.199111,-0.692948][0.247585,0.327131,0][-0.627894,0.479064,-0.484867][-0.946584,-0.199112,-0.253638][0.355976,0.362721,0][-0.580098,0.706286,-0.484867][-0.946584,0.199113,-0.25364][0.322795,0.431682,0][-0.543771,0.479064,-0.798814][-0.692948,-0.199111,-0.692948][0.247585,0.327131,0][-0.580098,0.706286,-0.484867][-0.946584,0.199113,-0.25364][0.322795,0.431682,0][-0.502379,0.706286,-0.774916][-0.692948,0.199111,-0.692949][0.233824,0.402977,0][-0.627894,0.479064,-0.484867][-0.946584,-0.199112,-0.253638][0.355976,0.362721,0][-0.543771,0.479064,-0.17092][-0.69295,-0.199111,0.692947][0.451077,0.425801,0][-0.502379,0.706286,-0.194818][-0.692948,0.199111,0.692948][0.400365,0.483857,0][-0.627894,0.479064,-0.484867][-0.946584,-0.199112,-0.253638][0.355976,0.362721,0][-0.502379,0.706286,-0.194818][-0.692948,0.199111,0.692948][0.400365,0.483857,0][-0.580098,0.706286,-0.484867][-0.946584,0.199113,-0.25364][0.322795,0.431682,0][-0.502379,0.706286,-0.194818][-0.692948,0.199111,0.692948][0.400365,0.483857,0][-0.290049,0.706287,0.0175121][-0.692949,0.199114,0.692946][0.462074,0.557001,0][-0.221994,0.898918,-0.100362][-0.584045,0.563723,0.584045][0.396546,0.596918,0][-0.502379,0.706286,-0.194818][-0.692948,0.199111,0.692948][0.400365,0.483857,0][-0.221994,0.898918,-0.100362][-0.584045,0.563723,0.584045][0.396546,0.596918,0][-0.384504,0.898918,-0.262873][-0.584046,0.563725,0.584042][0.350444,0.53879,0][-0.290049,0.706287,0.0175121][-0.692949,0.199114,0.692946][0.462074,0.557001,0][0,0.706287,0.0952311][-0.253637,0.199113,0.946585][0.50562,0.650379,0][-1.30065e-007,0.898918,-0.0408789][-0.213777,0.563724,0.797819][0.423537,0.671373,0][-0.290049,0.706287,0.0175121][-0.692949,0.199114,0.692946][0.462074,0.557001,0][-1.30065e-007,0.898918,-0.0408789][-0.213777,0.563724,0.797819][0.423537,0.671373,0][-0.221994,0.898918,-0.100362][-0.584045,0.563723,0.584045][0.396546,0.596918,0][0,0.706287,-1.06496][-0.253639,0.199113,-0.946584][0.038156,0.422989,0][-0.290049,0.706286,-0.987246][-0.25364,0.199111,-0.946584][0.138213,0.399651,0][-0.221994,0.898918,-0.869371][-0.213777,0.563725,-0.797818][0.147381,0.476332,0][0,0.706287,-1.06496][-0.253639,0.199113,-0.946584][0.038156,0.422989,0][-0.221994,0.898918,-0.869371][-0.213777,0.563725,-0.797818][0.147381,0.476332,0][-1.30065e-007,0.898919,-0.928854][-0.213777,0.563725,-0.797818][0.07263,0.501165,0][-0.290049,0.706286,-0.987246][-0.25364,0.199111,-0.946584][0.138213,0.399651,0][-0.502379,0.706286,-0.774916][-0.692948,0.199111,-0.692949][0.233824,0.402977,0][-0.384504,0.898918,-0.706861][-0.584044,0.563725,-0.584044][0.221448,0.476373,0][-0.290049,0.706286,-0.987246][-0.25364,0.199111,-0.946584][0.138213,0.399651,0][-0.384504,0.898918,-0.706861][-0.584044,0.563725,-0.584044][0.221448,0.476373,0][-0.221994,0.898918,-0.869371][-0.213777,0.563725,-0.797818][0.147381,0.476332,0][-0.502379,0.706286,-0.774916][-0.692948,0.199111,-0.692949][0.233824,0.402977,0][-0.580098,0.706286,-0.484867][-0.946584,0.199113,-0.25364][0.322795,0.431682,0][-0.443987,0.898918,-0.484867][-0.797817,0.563727,-0.213776][0.290593,0.497945,0][-0.502379,0.706286,-0.774916][-0.692948,0.199111,-0.692949][0.233824,0.402977,0][-0.443987,0.898918,-0.484867][-0.797817,0.563727,-0.213776][0.290593,0.497945,0][-0.384504,0.898918,-0.706861][-0.584044,0.563725,-0.584044][0.221448,0.476373,0][-0.580098,0.706286,-0.484867][-0.946584,0.199113,-0.25364][0.322795,0.431682,0][-0.502379,0.706286,-0.194818][-0.692948,0.199111,0.692948][0.400365,0.483857,0][-0.384504,0.898918,-0.262873][-0.584046,0.563725,0.584042][0.350444,0.53879,0][-0.580098,0.706286,-0.484867][-0.946584,0.199113,-0.25364][0.322795,0.431682,0][-0.384504,0.898918,-0.262873][-0.584046,0.563725,0.584042][0.350444,0.53879,0][-0.443987,0.898918,-0.484867][-0.797817,0.563727,-0.213776][0.290593,0.497945,0][-0.384504,0.898918,-0.262873][-0.584046,0.563725,0.584042][0.350444,0.53879,0][-0.221994,0.898918,-0.100362][-0.584045,0.563723,0.584045][0.396546,0.596918,0][-0.120142,1.02763,-0.276774][-0.387088,0.836855,0.387086][0.322621,0.634123,0][-0.384504,0.898918,-0.262873][-0.584046,0.563725,0.584042][0.350444,0.53879,0][-0.120142,1.02763,-0.276774][-0.387088,0.836855,0.387086][0.322621,0.634123,0][-0.208093,1.02763,-0.364725][-0.387088,0.836855,0.387088][0.293552,0.596678,0][-0.221994,0.898918,-0.100362][-0.584045,0.563723,0.584045][0.396546,0.596918,0][-1.30065e-007,0.898918,-0.0408789][-0.213777,0.563724,0.797819][0.423537,0.671373,0][-1.495e-007,1.02763,-0.244582][-0.141684,0.836855,0.528771][0.3369,0.678582,0][-0.221994,0.898918,-0.100362][-0.584045,0.563723,0.584045][0.396546,0.596918,0][-1.495e-007,1.02763,-0.244582][-0.141684,0.836855,0.528771][0.3369,0.678582,0][-0.120142,1.02763,-0.276774][-0.387088,0.836855,0.387086][0.322621,0.634123,0][-1.30065e-007,0.898919,-0.928854][-0.213777,0.563725,-0.797818][0.07263,0.501165,0][-0.221994,0.898918,-0.869371][-0.213777,0.563725,-0.797818][0.147381,0.476332,0][-0.120142,1.02763,-0.692959][-0.141687,0.836856,-0.52877][0.162179,0.557456,0][-1.30065e-007,0.898919,-0.928854][-0.213777,0.563725,-0.797818][0.07263,0.501165,0][-0.120142,1.02763,-0.692959][-0.141687,0.836856,-0.52877][0.162179,0.557456,0][-1.495e-007,1.02763,-0.725151][-0.141683,0.836857,-0.528768][0.120414,0.573369,0][-0.221994,0.898918,-0.869371][-0.213777,0.563725,-0.797818][0.147381,0.476332,0][-0.384504,0.898918,-0.706861][-0.584044,0.563725,-0.584044][0.221448,0.476373,0][-0.208093,1.02763,-0.605009][-0.387088,0.836855,-0.387088][0.208828,0.556445,0][-0.221994,0.898918,-0.869371][-0.213777,0.563725,-0.797818][0.147381,0.476332,0][-0.208093,1.02763,-0.605009][-0.387088,0.836855,-0.387088][0.208828,0.556445,0][-0.120142,1.02763,-0.692959][-0.141687,0.836856,-0.52877][0.162179,0.557456,0][-0.384504,0.898918,-0.706861][-0.584044,0.563725,-0.584044][0.221448,0.476373,0][-0.443987,0.898918,-0.484867][-0.797817,0.563727,-0.213776][0.290593,0.497945,0][-0.240284,1.02763,-0.484867][-0.528771,0.836855,-0.141684][0.254203,0.569997,0][-0.384504,0.898918,-0.706861][-0.584044,0.563725,-0.584044][0.221448,0.476373,0][-0.240284,1.02763,-0.484867][-0.528771,0.836855,-0.141684][0.254203,0.569997,0][-0.208093,1.02763,-0.605009][-0.387088,0.836855,-0.387088][0.208828,0.556445,0][-0.443987,0.898918,-0.484867][-0.797817,0.563727,-0.213776][0.290593,0.497945,0][-0.384504,0.898918,-0.262873][-0.584046,0.563725,0.584042][0.350444,0.53879,0][-0.208093,1.02763,-0.364725][-0.387088,0.836855,0.387088][0.293552,0.596678,0][-0.443987,0.898918,-0.484867][-0.797817,0.563727,-0.213776][0.290593,0.497945,0][-0.208093,1.02763,-0.364725][-0.387088,0.836855,0.387088][0.293552,0.596678,0][-0.240284,1.02763,-0.484867][-0.528771,0.836855,-0.141684][0.254203,0.569997,0][-0.208093,1.02763,-0.364725][-0.387088,0.836855,0.387088][0.293552,0.596678,0][-0.120142,1.02763,-0.276774][-0.387088,0.836855,0.387086][0.322621,0.634123,0][-1.56325e-007,1.07283,-0.484867][-0.13516,0.981562,0.13516][0.2369,0.670661,0][-0.120142,1.02763,-0.276774][-0.387088,0.836855,0.387086][0.322621,0.634123,0][-1.495e-007,1.02763,-0.244582][-0.141684,0.836855,0.528771][0.3369,0.678582,0][-1.56325e-007,1.07283,-0.484867][-0.13516,0.981562,0.13516][0.245239,0.683499,0][-1.495e-007,1.02763,-0.725151][-0.141683,0.836857,-0.528768][0.120414,0.573369,0][-0.120142,1.02763,-0.692959][-0.141687,0.836856,-0.52877][0.162179,0.557456,0][-1.56325e-007,1.07283,-0.484867][-0.13516,0.981562,0.13516][0.17155,0.64481,0][-0.120142,1.02763,-0.692959][-0.141687,0.836856,-0.52877][0.162179,0.557456,0][-0.208093,1.02763,-0.605009][-0.387088,0.836855,-0.387088][0.208828,0.556445,0][-1.56325e-007,1.07283,-0.484867][-0.13516,0.981562,0.13516][0.187424,0.645633,0][-0.208093,1.02763,-0.605009][-0.387088,0.836855,-0.387088][0.208828,0.556445,0][-0.240284,1.02763,-0.484867][-0.528771,0.836855,-0.141684][0.254203,0.569997,0][-1.56325e-007,1.07283,-0.484867][-0.13516,0.981562,0.13516][0.205753,0.649482,0][-0.240284,1.02763,-0.484867][-0.528771,0.836855,-0.141684][0.254203,0.569997,0][-0.208093,1.02763,-0.364725][-0.387088,0.836855,0.387088][0.293552,0.596678,0][-1.56325e-007,1.07283,-0.484867][-0.13516,0.981562,0.13516][0.223155,0.658145,0][1.56325e-007,-0.997757,-0.924002][-0.145697,-0.736772,-0.660258][0.059946,0,0][-0.407561,-0.997757,-0.834067][-0.145697,-0.736772,-0.660258][0.18279,0.035281,0][-0.499972,-0.789165,-1.04644][-0.145697,-0.736772,-0.660258][0.158647,0.117501,0][1.56325e-007,-0.997757,-0.924002][-0.145697,-0.736772,-0.660258][0.059946,0,0][-0.499972,-0.789165,-1.04644][-0.145697,-0.736772,-0.660258][0.158647,0.117501,0][1.24828e-007,-0.789165,-1.15677][-0.145697,-0.736773,-0.660256][0.019926,0.085008,0][1.24828e-007,-0.789165,-1.15677][-0.145697,-0.736773,-0.660256][0.019926,0.085008,0][-0.499972,-0.789165,-1.04644][-0.145697,-0.736772,-0.660258][0.158647,0.117501,0][-0.530576,-0.546867,-1.11677][-0.205783,-0.296678,-0.932543][0.148749,0.179852,0][1.24828e-007,-0.789165,-1.15677][-0.145697,-0.736773,-0.660256][0.019926,0.085008,0][-0.530576,-0.546867,-1.11677][-0.205783,-0.296678,-0.932543][0.148749,0.179852,0][0,-0.546868,-1.23385][-0.205782,-0.296678,-0.932543][0,0.160878,0][0,-0.546868,-1.23385][-0.205782,-0.296678,-0.932543][0,0.160878,0][-0.530576,-0.546867,-1.11677][-0.205783,-0.296678,-0.932543][0.148749,0.179852,0][-0.499972,-0.304568,-1.04644][-0.205782,0.296677,-0.932543][0.147258,0.244852,0][0,-0.546868,-1.23385][-0.205782,-0.296678,-0.932543][0,0.160878,0][-0.499972,-0.304568,-1.04644][-0.205782,0.296677,-0.932543][0.147258,0.244852,0][0,-0.304568,-1.15677][-0.205783,0.296674,-0.932544][0.00031,0.239113,0][0,-0.304568,-1.15677][-0.205783,0.296674,-0.932544][0.00031,0.239113,0][-0.499972,-0.304568,-1.04644][-0.205782,0.296677,-0.932543][0.147258,0.244852,0][-0.429374,-0.141697,-0.942974][-0.175392,0.580941,-0.794824][0.143496,0.302722,0][0,-0.304568,-1.15677][-0.205783,0.296674,-0.932544][0.00031,0.239113,0][-0.429374,-0.141697,-0.942974][-0.175392,0.580941,-0.794824][0.143496,0.302722,0][0,-0.141697,-1.03809][-0.176233,0.579684,-0.795555][0.00748,0.301032,0][0,-0.141697,-1.03809][-0.176233,0.579684,-0.795555][0.988246,0.830177,0][-0.429374,-0.141697,-0.942974][-0.175392,0.580941,-0.794824][0.964636,0.912688,0][-0.328856,-0.021594,-0.693246][-0.0891249,0.911147,-0.402329][0.912807,0.888485,0][0,-0.141697,-1.03809][-0.176233,0.579684,-0.795555][0.988246,0.830177,0][-0.328856,-0.021594,-0.693246][-0.0891249,0.911147,-0.402329][0.912807,0.888485,0][0,-0.00861444,-0.782325][-0.158033,0.875949,-0.455783][0.932082,0.825226,0][0,0.0957862,0.00374914][-0.137496,0.989918,-0.0340115][0.776792,0.822001,0][-0.347371,0.047516,0.00311714][-0.137496,0.989918,-0.0340115][0.7776,0.890066,0][-0.323678,0.064973,0.415428][-0.137496,0.989918,-0.0340115][0.698022,0.886122,0][0,0.0957862,0.00374914][-0.137496,0.989918,-0.0340115][0.776792,0.822001,0][-0.323678,0.064973,0.415428][-0.137496,0.989918,-0.0340115][0.698022,0.886122,0][0,0.110834,0.39975][-0.141972,0.989157,-0.037588][0.699519,0.822756,0][-0.379894,0.0200702,0.747827][-0.21953,0.975494,0.0147718][0.634145,0.900326,0][0,0.103121,0.909119][-0.21953,0.975494,0.0147718][0.600438,0.825981,0][0,0.110834,0.39975][-0.141972,0.989157,-0.037588][0.699519,0.822756,0][-0.379894,0.0200702,0.747827][-0.21953,0.975494,0.0147718][0.634145,0.900326,0][0,0.110834,0.39975][-0.141972,0.989157,-0.037588][0.699519,0.822756,0][-0.323678,0.064973,0.415428][-0.137496,0.989918,-0.0340115][0.698022,0.886122,0][0,0.14663,1.29137][-0.648847,0.648429,0.398168][0.984306,0.373164,0][-0.436109,-0.100664,0.98342][-0.648847,0.648429,0.398168][0.807563,0.322664,0][-0.553427,-0.304568,1.12431][-0.648847,0.648429,0.398168][0.812325,0.242761,0][0,-0.304568,1.36188][-0.378615,0.280594,0.881996][0.990064,0.233902,0][-0.553427,-0.304568,1.12431][-0.648847,0.648429,0.398168][0.812325,0.242761,0][-0.587303,-0.546867,1.18685][-0.378615,0.280594,0.881996][0.812186,0.17617,0][0,-0.304568,1.36188][-0.378615,0.280594,0.881996][0.990064,0.233902,0][-0.587303,-0.546867,1.18685][-0.378615,0.280594,0.881996][0.812186,0.17617,0][0,-0.546868,1.39309][-0.328918,0.120678,0.936616][0.989042,0.1566,0][0,-0.546868,1.39309][-0.328918,0.120678,0.936616][0.989042,0.1566,0][-0.587303,-0.546867,1.18685][-0.378615,0.280594,0.881996][0.812186,0.17617,0][-0.553427,-0.789165,1.12431][-0.31824,-0.278404,0.906209][0.802336,0.111517,0][0,-0.546868,1.39309][-0.328918,0.120678,0.936616][0.989042,0.1566,0][-0.553427,-0.789165,1.12431][-0.31824,-0.278404,0.906209][0.802336,0.111517,0][1.24829e-007,-0.789167,1.32727][-0.333644,-0.247126,0.909731][0.969027,0.079254,0][1.24829e-007,-0.789167,1.32727][-0.333644,-0.247126,0.909731][0.969027,0.079254,0][-0.553427,-0.789165,1.12431][-0.31824,-0.278404,0.906209][0.802336,0.111517,0][-0.451135,-0.997757,0.935451][-0.241189,-0.713684,0.657634][0.779464,0.029921,0][1.24829e-007,-0.789167,1.32727][-0.333644,-0.247126,0.909731][0.969027,0.079254,0][-0.451135,-0.997757,0.935451][-0.241189,-0.713684,0.657634][0.779464,0.029921,0][1.56325e-007,-0.997757,1.12911][-0.297162,-0.657642,0.692244][0.928433,0,0][1.56325e-007,-0.997757,1.12911][-0.297162,-0.657642,0.692244][0.588979,0.812006,0][-0.451135,-0.997757,0.935451][-0.241189,-0.713684,0.657634][0.626479,0.72465,0][-0.679464,-0.997757,0.459542][0,-1,0][0.718633,0.680437,0][1.56325e-007,-0.997757,1.12911][-0.297162,-0.657642,0.692244][0.588979,0.812006,0][-0.679464,-0.997757,0.459542][0,-1,0][0.718633,0.680437,0][1.56325e-007,-0.997757,0.459542][1.75446e-007,-1,0][0.718633,0.812007,0][1.56325e-007,-0.997757,0.459542][1.75446e-007,-1,0][0.718633,0.812007,0][-0.679464,-0.997757,0.459542][0,-1,0][0.718633,0.680437,0][-0.746653,-0.997757,0.00270119][1.75446e-007,-1,0][0.807094,0.667427,0][1.56325e-007,-0.997757,0.459542][1.75446e-007,-1,0][0.718633,0.812007,0][-0.746653,-0.997757,0.00270119][1.75446e-007,-1,0][0.807094,0.667427,0][1.56325e-007,-0.997757,0.00270119][1.59658e-007,-1,1.30471e-007][0.807094,0.812007,0][1.56325e-007,-0.997757,-0.448708][1.75671e-007,-1,0][0.894503,0.812007,0][-0.678594,-0.997757,-0.448708][1.75671e-007,-1,0][0.894503,0.680606,0][-0.407561,-0.997757,-0.834067][-0.145697,-0.736772,-0.660258][0.969123,0.733088,0][1.56325e-007,-0.997757,-0.448708][1.75671e-007,-1,0][0.894503,0.812007,0][-0.407561,-0.997757,-0.834067][-0.145697,-0.736772,-0.660258][0.969123,0.733088,0][1.56325e-007,-0.997757,-0.924002][-0.145697,-0.736772,-0.660258][0.986538,0.812007,0][-0.679464,-0.997757,0.459542][0,-1,0][0.614797,0.033746,0][-0.451135,-0.997757,0.935451][-0.241189,-0.713684,0.657634][0.779464,0.029921,0][-0.553427,-0.789165,1.12431][-0.31824,-0.278404,0.906209][0.802336,0.111517,0][-0.679464,-0.997757,0.459542][0,-1,0][0.614797,0.033746,0][-0.553427,-0.789165,1.12431][-0.31824,-0.278404,0.906209][0.802336,0.111517,0][-0.833527,-0.789165,0.607587][-0.625527,-0.702666,0.339083][0.642439,0.116156,0][-0.746653,-0.997757,0.00270119][1.75446e-007,-1,0][0.468852,0.038255,0][-0.679464,-0.997757,0.459542][0,-1,0][0.614797,0.033746,0][-0.833527,-0.789165,0.607587][-0.625527,-0.702666,0.339083][0.642439,0.116156,0][-0.746653,-0.997757,0.00270119][1.75446e-007,-1,0][0.468852,0.038255,0][-0.833527,-0.789165,0.607587][-0.625527,-0.702666,0.339083][0.642439,0.116156,0][-0.915951,-0.789165,0.00174517][-0.772383,-0.626404,0.105082][0.469108,0.117792,0][-0.407561,-0.997757,-0.834067][-0.145697,-0.736772,-0.660258][0.18279,0.035281,0][-0.678594,-0.997757,-0.448708][1.75671e-007,-1,0][0.325927,0.041277,0][-0.83246,-0.789165,-0.614746][-0.560936,-0.727808,-0.394521][0.298707,0.123146,0][-0.407561,-0.997757,-0.834067][-0.145697,-0.736772,-0.660258][0.18279,0.035281,0][-0.83246,-0.789165,-0.614746][-0.560936,-0.727808,-0.394521][0.298707,0.123146,0][-0.499972,-0.789165,-1.04644][-0.145697,-0.736772,-0.660258][0.158647,0.117501,0][-0.833527,-0.789165,0.607587][-0.625527,-0.702666,0.339083][0.642439,0.116156,0][-0.553427,-0.789165,1.12431][-0.31824,-0.278404,0.906209][0.802336,0.111517,0][-0.587303,-0.546867,1.18685][-0.378615,0.280594,0.881996][0.812186,0.17617,0][-0.833527,-0.789165,0.607587][-0.625527,-0.702666,0.339083][0.642439,0.116156,0][-0.587303,-0.546867,1.18685][-0.378615,0.280594,0.881996][0.812186,0.17617,0][-0.884548,-0.546867,0.656615][-0.839404,-0.271971,0.470565][0.652545,0.184563,0][-0.915951,-0.789165,0.00174517][-0.772383,-0.626404,0.105082][0.469108,0.117792,0][-0.833527,-0.789165,0.607587][-0.625527,-0.702666,0.339083][0.642439,0.116156,0][-0.884548,-0.546867,0.656615][-0.839404,-0.271971,0.470565][0.652545,0.184563,0][-0.915951,-0.789165,0.00174517][-0.772383,-0.626404,0.105082][0.469108,0.117792,0][-0.884548,-0.546867,0.656615][-0.839404,-0.271971,0.470565][0.652545,0.184563,0][-0.972017,-0.546867,0.00142816][-0.966157,-0.223393,0.128984][0.469923,0.187939,0][-0.499972,-0.789165,-1.04644][-0.145697,-0.736772,-0.660258][0.158647,0.117501,0][-0.83246,-0.789165,-0.614746][-0.560936,-0.727808,-0.394521][0.298707,0.123146,0][-0.883416,-0.546867,-0.669733][-0.757772,-0.291811,-0.583633][0.289458,0.187739,0][-0.499972,-0.789165,-1.04644][-0.145697,-0.736772,-0.660258][0.158647,0.117501,0][-0.883416,-0.546867,-0.669733][-0.757772,-0.291811,-0.583633][0.289458,0.187739,0][-0.530576,-0.546867,-1.11677][-0.205783,-0.296678,-0.932543][0.148749,0.179852,0][-0.884548,-0.546867,0.656615][-0.839404,-0.271971,0.470565][0.652545,0.184563,0][-0.587303,-0.546867,1.18685][-0.378615,0.280594,0.881996][0.812186,0.17617,0][-0.553427,-0.304568,1.12431][-0.648847,0.648429,0.398168][0.812325,0.242761,0][-0.884548,-0.546867,0.656615][-0.839404,-0.271971,0.470565][0.652545,0.184563,0][-0.553427,-0.304568,1.12431][-0.648847,0.648429,0.398168][0.812325,0.242761,0][-0.833527,-0.304568,0.607587][-0.84624,0.271014,0.458726][0.647,0.254393,0][-0.972017,-0.546867,0.00142816][-0.966157,-0.223393,0.128984][0.469923,0.187939,0][-0.884548,-0.546867,0.656615][-0.839404,-0.271971,0.470565][0.652545,0.184563,0][-0.833527,-0.304568,0.607587][-0.84624,0.271014,0.458726][0.647,0.254393,0][-0.972017,-0.546867,0.00142816][-0.966157,-0.223393,0.128984][0.469923,0.187939,0][-0.833527,-0.304568,0.607587][-0.84624,0.271014,0.458726][0.647,0.254393,0][-0.915951,-0.304568,0.00174515][-0.965848,0.223317,0.131402][0.470082,0.258416,0][-0.530576,-0.546867,-1.11677][-0.205783,-0.296678,-0.932543][0.148749,0.179852,0][-0.883416,-0.546867,-0.669733][-0.757772,-0.291811,-0.583633][0.289458,0.187739,0][-0.83246,-0.304568,-0.614746][-0.750667,0.292326,-0.592491][0.294551,0.253712,0][-0.530576,-0.546867,-1.11677][-0.205783,-0.296678,-0.932543][0.148749,0.179852,0][-0.83246,-0.304568,-0.614746][-0.750667,0.292326,-0.592491][0.294551,0.253712,0][-0.499972,-0.304568,-1.04644][-0.205782,0.296677,-0.932543][0.147258,0.244852,0][-0.833527,-0.304568,0.607587][-0.84624,0.271014,0.458726][0.647,0.254393,0][-0.553427,-0.304568,1.12431][-0.648847,0.648429,0.398168][0.812325,0.242761,0][-0.436109,-0.100664,0.98342][-0.648847,0.648429,0.398168][0.807563,0.322664,0][-0.833527,-0.304568,0.607587][-0.84624,0.271014,0.458726][0.647,0.254393,0][-0.436109,-0.100664,0.98342][-0.648847,0.648429,0.398168][0.807563,0.322664,0][-0.718595,-0.116742,0.528267][-0.691722,0.595683,0.408268][0.638082,0.323364,0][-0.915951,-0.304568,0.00174515][-0.965848,0.223317,0.131402][0.470082,0.258416,0][-0.833527,-0.304568,0.607587][-0.84624,0.271014,0.458726][0.647,0.254393,0][-0.718595,-0.116742,0.528267][-0.691722,0.595683,0.408268][0.638082,0.323364,0][-0.915951,-0.304568,0.00174515][-0.965848,0.223317,0.131402][0.470082,0.258416,0][-0.718595,-0.116742,0.528267][-0.691722,0.595683,0.408268][0.638082,0.323364,0][-0.789654,-0.124537,0.00208414][-0.814503,0.571206,0.101533][0.469315,0.324285,0][-0.499972,-0.304568,-1.04644][-0.205782,0.296677,-0.932543][0.147258,0.244852,0][-0.83246,-0.304568,-0.614746][-0.750667,0.292326,-0.592491][0.294551,0.253712,0][-0.717676,-0.13189,-0.539266][-0.620653,0.621517,-0.478024][0.29819,0.316682,0][-0.499972,-0.304568,-1.04644][-0.205782,0.296677,-0.932543][0.147258,0.244852,0][-0.717676,-0.13189,-0.539266][-0.620653,0.621517,-0.478024][0.29819,0.316682,0][-0.429374,-0.141697,-0.942974][-0.175392,0.580941,-0.794824][0.143496,0.302722,0][-0.328856,-0.021594,-0.693246][-0.0891249,0.911147,-0.402329][0.912807,0.888485,0][-0.429374,-0.141697,-0.942974][-0.175392,0.580941,-0.794824][0.964636,0.912688,0][-0.717676,-0.13189,-0.539266][-0.620653,0.621517,-0.478024][0.884865,0.967652,0][-0.328856,-0.021594,-0.693246][-0.0891249,0.911147,-0.402329][0.912807,0.888485,0][-0.717676,-0.13189,-0.539266][-0.620653,0.621517,-0.478024][0.884865,0.967652,0][-0.529325,-0.0271139,-0.462165][-0.367915,0.880768,-0.298137][0.867963,0.926576,0][-0.554202,0.00972374,0.462732][-0.502936,0.864308,0.00515395][0.689958,0.931647,0][-0.595328,-0.0114631,0.00255414][-0.502936,0.864308,0.00515395][0.778306,0.939277,0][-0.789654,-0.124537,0.00208414][-0.814503,0.571206,0.101533][0.779396,0.982912,0][-0.554202,0.00972374,0.462732][-0.502936,0.864308,0.00515395][0.689958,0.931647,0][-0.789654,-0.124537,0.00208414][-0.814503,0.571206,0.101533][0.779396,0.982912,0][-0.718595,-0.116742,0.528267][-0.691722,0.595683,0.408268][0.676461,0.971346,0][-0.436109,-0.100664,0.98342][-0.648847,0.648429,0.398168][0.58549,0.919903,0][-0.379894,0.0200702,0.747827][-0.21953,0.975494,0.0147718][0.634145,0.900326,0][-0.554202,0.00972374,0.462732][-0.502936,0.864308,0.00515395][0.689958,0.931647,0][-0.436109,-0.100664,0.98342][-0.648847,0.648429,0.398168][0.58549,0.919903,0][-0.554202,0.00972374,0.462732][-0.502936,0.864308,0.00515395][0.689958,0.931647,0][-0.718595,-0.116742,0.528267][-0.691722,0.595683,0.408268][0.676461,0.971346,0][-0.554202,0.00972374,0.462732][-0.502936,0.864308,0.00515395][0.689958,0.931647,0][-0.379894,0.0200702,0.747827][-0.21953,0.975494,0.0147718][0.634145,0.900326,0][-0.323678,0.064973,0.415428][-0.137496,0.989918,-0.0340115][0.698022,0.886122,0][-0.323678,0.064973,0.415428][-0.137496,0.989918,-0.0340115][0.698022,0.886122,0][-0.347371,0.047516,0.00311714][-0.137496,0.989918,-0.0340115][0.7776,0.890066,0][-0.595328,-0.0114631,0.00255414][-0.502936,0.864308,0.00515395][0.778306,0.939277,0][-0.323678,0.064973,0.415428][-0.137496,0.989918,-0.0340115][0.698022,0.886122,0][-0.595328,-0.0114631,0.00255414][-0.502936,0.864308,0.00515395][0.778306,0.939277,0][-0.554202,0.00972374,0.462732][-0.502936,0.864308,0.00515395][0.689958,0.931647,0][-0.308571,0.0310527,-0.388919][-0.203772,0.966881,-0.153682][0.853425,0.882687,0][-0.328856,-0.021594,-0.693246][-0.0891249,0.911147,-0.402329][0.912807,0.888485,0][-0.529325,-0.0271139,-0.462165][-0.367915,0.880768,-0.298137][0.867963,0.926576,0][0,-0.00861444,-0.782325][-0.158033,0.875949,-0.455783][0.932082,0.825226,0][-0.328856,-0.021594,-0.693246][-0.0891249,0.911147,-0.402329][0.912807,0.888485,0][-0.308571,0.0310527,-0.388919][-0.203772,0.966881,-0.153682][0.853425,0.882687,0][0,-0.00861444,-0.782325][-0.158033,0.875949,-0.455783][0.932082,0.825226,0][-0.308571,0.0310527,-0.388919][-0.203772,0.966881,-0.153682][0.853425,0.882687,0][0,0.0815955,-0.382883][-0.153618,0.963856,-0.217677][0.852241,0.821973,0][0,0.103121,0.909119][-0.21953,0.975494,0.0147718][0.600438,0.825981,0][-0.379894,0.0200702,0.747827][-0.21953,0.975494,0.0147718][0.634145,0.900326,0][-0.436109,-0.100664,0.98342][-0.648847,0.648429,0.398168][0.58549,0.919903,0][0,0.103121,0.909119][-0.21953,0.975494,0.0147718][0.600438,0.825981,0][-0.436109,-0.100664,0.98342][-0.648847,0.648429,0.398168][0.58549,0.919903,0][0,0.14663,1.29137][-0.648847,0.648429,0.398168][0.525402,0.821973,0][0,0.0815955,-0.382883][-0.153618,0.963856,-0.217677][0.852241,0.821973,0][-0.308571,0.0310527,-0.388919][-0.203772,0.966881,-0.153682][0.853425,0.882687,0][-0.347371,0.047516,0.00311714][-0.137496,0.989918,-0.0340115][0.7776,0.890066,0][0,0.0815955,-0.382883][-0.153618,0.963856,-0.217677][0.852241,0.821973,0][-0.347371,0.047516,0.00311714][-0.137496,0.989918,-0.0340115][0.7776,0.890066,0][0,0.0957862,0.00374914][-0.137496,0.989918,-0.0340115][0.776792,0.822001,0][-0.595328,-0.0114631,0.00255414][-0.502936,0.864308,0.00515395][0.778306,0.939277,0][-0.347371,0.047516,0.00311714][-0.137496,0.989918,-0.0340115][0.7776,0.890066,0][-0.308571,0.0310527,-0.388919][-0.203772,0.966881,-0.153682][0.853425,0.882687,0][-0.595328,-0.0114631,0.00255414][-0.502936,0.864308,0.00515395][0.778306,0.939277,0][-0.308571,0.0310527,-0.388919][-0.203772,0.966881,-0.153682][0.853425,0.882687,0][-0.529325,-0.0271139,-0.462165][-0.367915,0.880768,-0.298137][0.867963,0.926576,0][-0.789654,-0.124537,0.00208414][-0.814503,0.571206,0.101533][0.779396,0.982912,0][-0.595328,-0.0114631,0.00255414][-0.502936,0.864308,0.00515395][0.778306,0.939277,0][-0.529325,-0.0271139,-0.462165][-0.367915,0.880768,-0.298137][0.867963,0.926576,0][-0.789654,-0.124537,0.00208414][-0.814503,0.571206,0.101533][0.779396,0.982912,0][-0.529325,-0.0271139,-0.462165][-0.367915,0.880768,-0.298137][0.867963,0.926576,0][-0.717676,-0.13189,-0.539266][-0.620653,0.621517,-0.478024][0.884865,0.967652,0][-0.83246,-0.304568,-0.614746][-0.750667,0.292326,-0.592491][0.294551,0.253712,0][-0.915951,-0.304568,0.00174515][-0.965848,0.223317,0.131402][0.470082,0.258416,0][-0.789654,-0.124537,0.00208414][-0.814503,0.571206,0.101533][0.469315,0.324285,0][-0.83246,-0.304568,-0.614746][-0.750667,0.292326,-0.592491][0.294551,0.253712,0][-0.789654,-0.124537,0.00208414][-0.814503,0.571206,0.101533][0.469315,0.324285,0][-0.717676,-0.13189,-0.539266][-0.620653,0.621517,-0.478024][0.29819,0.316682,0][-0.883416,-0.546867,-0.669733][-0.757772,-0.291811,-0.583633][0.289458,0.187739,0][-0.972017,-0.546867,0.00142816][-0.966157,-0.223393,0.128984][0.469923,0.187939,0][-0.915951,-0.304568,0.00174515][-0.965848,0.223317,0.131402][0.470082,0.258416,0][-0.883416,-0.546867,-0.669733][-0.757772,-0.291811,-0.583633][0.289458,0.187739,0][-0.915951,-0.304568,0.00174515][-0.965848,0.223317,0.131402][0.470082,0.258416,0][-0.83246,-0.304568,-0.614746][-0.750667,0.292326,-0.592491][0.294551,0.253712,0][-0.83246,-0.789165,-0.614746][-0.560936,-0.727808,-0.394521][0.298707,0.123146,0][-0.915951,-0.789165,0.00174517][-0.772383,-0.626404,0.105082][0.469108,0.117792,0][-0.972017,-0.546867,0.00142816][-0.966157,-0.223393,0.128984][0.469923,0.187939,0][-0.83246,-0.789165,-0.614746][-0.560936,-0.727808,-0.394521][0.298707,0.123146,0][-0.972017,-0.546867,0.00142816][-0.966157,-0.223393,0.128984][0.469923,0.187939,0][-0.883416,-0.546867,-0.669733][-0.757772,-0.291811,-0.583633][0.289458,0.187739,0][-0.678594,-0.997757,-0.448708][1.75671e-007,-1,0][0.325927,0.041277,0][-0.746653,-0.997757,0.00270119][1.75446e-007,-1,0][0.468852,0.038255,0][-0.915951,-0.789165,0.00174517][-0.772383,-0.626404,0.105082][0.469108,0.117792,0][-0.678594,-0.997757,-0.448708][1.75671e-007,-1,0][0.325927,0.041277,0][-0.915951,-0.789165,0.00174517][-0.772383,-0.626404,0.105082][0.469108,0.117792,0][-0.83246,-0.789165,-0.614746][-0.560936,-0.727808,-0.394521][0.298707,0.123146,0][1.56325e-007,-0.997757,0.00270119][1.59658e-007,-1,1.30471e-007][0.807094,0.812007,0][-0.746653,-0.997757,0.00270119][1.75446e-007,-1,0][0.807094,0.667427,0][-0.678594,-0.997757,-0.448708][1.75671e-007,-1,0][0.894503,0.680606,0][1.56325e-007,-0.997757,0.00270119][1.59658e-007,-1,1.30471e-007][0.807094,0.812007,0][-0.678594,-0.997757,-0.448708][1.75671e-007,-1,0][0.894503,0.680606,0][1.56325e-007,-0.997757,-0.448708][1.75671e-007,-1,0][0.894503,0.812007,0][0,0.14663,1.29137][-0.648847,0.648429,0.398168][0.984306,0.373164,0][-0.553427,-0.304568,1.12431][-0.648847,0.648429,0.398168][0.812325,0.242761,0][0,-0.304568,1.36188][-0.378615,0.280594,0.881996][0.990064,0.233902,0][0.327341,0.36447,-1.1941][0.936136,-0.22831,-0.267438][0.448424,0.697716,0][0.348659,0.353338,-1.10998][0.936136,-0.22831,-0.267438][0.477403,0.711986,0][0.341699,0.319352,-1.10532][0.936136,-0.22831,-0.267438][0.485736,0.70184,0][0.327341,0.36447,-1.1941][0.936136,-0.22831,-0.267438][0.448424,0.697716,0][0.341699,0.319352,-1.10532][0.936136,-0.22831,-0.267438][0.485736,0.70184,0][0.319967,0.331361,-1.19102][0.934301,-0.233202,-0.269628][0.455098,0.686845,0][0,0.649035,-1.40963][-0.377026,0.919896,0.107904][0.283719,0.753836,0][0,0.636961,-1.30937][-0.375239,0.920279,0.110822][0.307344,0.781011,0][0.190045,0.556064,-1.28107][0.375239,0.920279,0.110822][0.369535,0.741707,0][0,0.649035,-1.40963][-0.377026,0.919896,0.107904][0.283719,0.753836,0][0.190045,0.556064,-1.28107][0.375239,0.920279,0.110822][0.369535,0.741707,0][0.174654,0.574744,-1.38655][0.377025,0.919896,0.107904][0.339651,0.722533,0][0,0.324583,-1.25274][0.0591651,-0.98771,-0.144666][0.106178,0.915713,0][0.17556,0.290735,-1.22181][-0.182559,-0.982426,-0.0388902][0.162754,0.954271,0][0.203675,0.277236,-1.01277][-0.182559,-0.982426,-0.0388902][0.223852,0.910068,0][0,0.324583,-1.25274][0.0591651,-0.98771,-0.144666][0.106178,0.915713,0][0.203675,0.277236,-1.01277][-0.182559,-0.982426,-0.0388902][0.223852,0.910068,0][0,0.295712,-1.05562][0.0591651,-0.98771,-0.144666][0.159149,0.866801,0][0.250894,0.405318,-1.31382][0.517103,-0.130419,-0.845929][0.39417,0.684252,0][0.177633,0.50069,-1.37331][0.517103,-0.130419,-0.845929][0.346879,0.699533,0][0.174654,0.574744,-1.38655][0.377025,0.919896,0.107904][0.339651,0.722533,0][0.250894,0.405318,-1.31382][0.517103,-0.130419,-0.845929][0.39417,0.684252,0][0.174654,0.574744,-1.38655][0.377025,0.919896,0.107904][0.339651,0.722533,0][0.262168,0.442083,-1.31438][0.474098,-0.158429,-0.866101][0.391306,0.6979,0][0,0.6418,-1.22582][-0.413408,0.873383,-0.257481][0.326295,0.804822,0][0,0.72498,-0.92375][-0.395722,0.885413,-0.243818][0.391525,0.899385,0][0.222343,0.625607,-0.92375][0.395725,0.885412,-0.243818][0.459104,0.841016,0][0,0.6418,-1.22582][-0.413408,0.873383,-0.257481][0.326295,0.804822,0][0.222343,0.625607,-0.92375][0.395725,0.885412,-0.243818][0.459104,0.841016,0][0.20287,0.555397,-1.19317][0.413407,0.873384,-0.257478][0.394649,0.761286,0][0.348659,0.353338,-1.10998][0.936136,-0.22831,-0.267438][0.477403,0.711986,0][0.389567,0.324557,-0.885599][0.966348,-0.165002,-0.197348][0.552042,0.753156,0][0.384603,0.28733,-0.87878][0.966348,-0.165002,-0.197348][0.562596,0.743023,0][0.348659,0.353338,-1.10998][0.936136,-0.22831,-0.267438][0.477403,0.711986,0][0.384603,0.28733,-0.87878][0.966348,-0.165002,-0.197348][0.562596,0.743023,0][0.341699,0.319352,-1.10532][0.936136,-0.22831,-0.267438][0.485736,0.70184,0][0.20287,0.555397,-1.19317][0.413407,0.873384,-0.257478][0.394649,0.761286,0][0.222343,0.625607,-0.92375][0.395725,0.885412,-0.243818][0.459104,0.841016,0][0.389567,0.324557,-0.885599][0.966348,-0.165002,-0.197348][0.552042,0.753156,0][0.20287,0.555397,-1.19317][0.413407,0.873384,-0.257478][0.394649,0.761286,0][0.389567,0.324557,-0.885599][0.966348,-0.165002,-0.197348][0.552042,0.753156,0][0.348659,0.353338,-1.10998][0.936136,-0.22831,-0.267438][0.477403,0.711986,0][0.17556,0.290735,-1.22181][-0.182559,-0.982426,-0.0388902][0.162754,0.954271,0][0.26351,0.274392,-1.18501][-0.183,-0.983113,0.000754389][0.1933,0.968039,0][0.322582,0.263542,-0.994787][-0.183,-0.983113,0.000754389][0.258229,0.937961,0][0.17556,0.290735,-1.22181][-0.182559,-0.982426,-0.0388902][0.162754,0.954271,0][0.322582,0.263542,-0.994787][-0.183,-0.983113,0.000754389][0.258229,0.937961,0][0.203675,0.277236,-1.01277][-0.182559,-0.982426,-0.0388902][0.223852,0.910068,0][0.363599,0.261861,-0.869841][-0.0837435,-0.996396,-0.0134827][0.302887,0.918243,0][0.209418,0.27527,-0.903117][-0.0837435,-0.996396,-0.0134827][0.255228,0.884333,0][0.203675,0.277236,-1.01277][-0.182559,-0.982426,-0.0388902][0.223852,0.910068,0][0.363599,0.261861,-0.869841][-0.0837435,-0.996396,-0.0134827][0.302887,0.918243,0][0.203675,0.277236,-1.01277][-0.182559,-0.982426,-0.0388902][0.223852,0.910068,0][0.322582,0.263542,-0.994787][-0.183,-0.983113,0.000754389][0.258229,0.937961,0][0,0.649035,-1.40963][-0.377026,0.919896,0.107904][0.283719,0.753836,0][0.174654,0.574744,-1.38655][0.377025,0.919896,0.107904][0.339651,0.722533,0][0.177633,0.50069,-1.37331][0.517103,-0.130419,-0.845929][0.346879,0.699533,0][0,0.649035,-1.40963][-0.377026,0.919896,0.107904][0.283719,0.753836,0][0.177633,0.50069,-1.37331][0.517103,-0.130419,-0.845929][0.346879,0.699533,0][0,0.582512,-1.39343][-0.00107123,-0.236582,-0.971611][0.283719,0.729492,0][0,0.371737,-1.30607][0.0277395,-0.748911,-0.662089][0.084712,0.931287,0][0.168874,0.334962,-1.28343][-0.100319,-0.813451,-0.572917][0.140737,0.968933,0][0.17556,0.290735,-1.22181][-0.182559,-0.982426,-0.0388902][0.162754,0.954271,0][0,0.371737,-1.30607][0.0277395,-0.748911,-0.662089][0.084712,0.931287,0][0.17556,0.290735,-1.22181][-0.182559,-0.982426,-0.0388902][0.162754,0.954271,0][0,0.324583,-1.25274][0.0591651,-0.98771,-0.144666][0.106178,0.915713,0][0.26351,0.274392,-1.18501][-0.183,-0.983113,0.000754389][0.1933,0.968039,0][0.17556,0.290735,-1.22181][-0.182559,-0.982426,-0.0388902][0.162754,0.954271,0][0.168874,0.334962,-1.28343][-0.100319,-0.813451,-0.572917][0.140737,0.968933,0][0.337563,0.292298,-1.0015][0.821778,-0.49434,-0.283389][0.262244,0.949752,0][0.322582,0.263542,-0.994787][-0.183,-0.983113,0.000754389][0.258229,0.937961,0][0.26351,0.274392,-1.18501][-0.183,-0.983113,0.000754389][0.1933,0.968039,0][0.337563,0.292298,-1.0015][0.821778,-0.49434,-0.283389][0.262244,0.949752,0][0.26351,0.274392,-1.18501][-0.183,-0.983113,0.000754389][0.1933,0.968039,0][0.276593,0.31059,-1.19925][0.852257,-0.42696,-0.302263][0.191286,0.982369,0][0.384603,0.28733,-0.87878][0.966348,-0.165002,-0.197348][0.307281,0.930221,0][0.363599,0.261861,-0.869841][-0.0837435,-0.996396,-0.0134827][0.302887,0.918243,0][0.322582,0.263542,-0.994787][-0.183,-0.983113,0.000754389][0.258229,0.937961,0][0.384603,0.28733,-0.87878][0.966348,-0.165002,-0.197348][0.307281,0.930221,0][0.322582,0.263542,-0.994787][-0.183,-0.983113,0.000754389][0.258229,0.937961,0][0.337563,0.292298,-1.0015][0.821778,-0.49434,-0.283389][0.262244,0.949752,0][0.176716,0.37791,-1.30555][0.018731,-0.460451,-0.887487][0.12885,0.982369,0][0.168874,0.334962,-1.28343][-0.100319,-0.813451,-0.572917][0.140737,0.968933,0][0,0.371737,-1.30607][0.0277395,-0.748911,-0.662089][0.084712,0.931287,0][0.176716,0.37791,-1.30555][0.018731,-0.460451,-0.887487][0.12885,0.982369,0][0,0.371737,-1.30607][0.0277395,-0.748911,-0.662089][0.084712,0.931287,0][0,0.418049,-1.32987][-0.0186145,-0.456968,-0.889288][0.067901,0.941797,0][0.276593,0.31059,-1.19925][0.852257,-0.42696,-0.302263][0.191286,0.982369,0][0.26351,0.274392,-1.18501][-0.183,-0.983113,0.000754389][0.1933,0.968039,0][0.168874,0.334962,-1.28343][-0.100319,-0.813451,-0.572917][0.140737,0.968933,0][0.276593,0.31059,-1.19925][0.852257,-0.42696,-0.302263][0.191286,0.982369,0][0.168874,0.334962,-1.28343][-0.100319,-0.813451,-0.572917][0.140737,0.968933,0][0.176716,0.37791,-1.30555][0.018731,-0.460451,-0.887487][0.12885,0.982369,0][0.163189,0.484138,-1.22448][-0.467789,-0.872291,-0.142414][0.158257,0.811764,0][0.147566,0.466234,-1.0635][-0.467789,-0.872291,-0.142414][0.203695,0.774415,0][0,0.547534,-1.07676][0.436763,-0.894138,-0.0987634][0.162654,0.728833,0][0.163189,0.484138,-1.22448][-0.467789,-0.872291,-0.142414][0.158257,0.811764,0][0,0.547534,-1.07676][0.436763,-0.894138,-0.0987634][0.162654,0.728833,0][0,0.566613,-1.24949][0.436763,-0.894138,-0.0987634][0.110997,0.76449,0][0,0.418049,-1.32987][-0.0186145,-0.456968,-0.889288][0.528767,0.935062,0][0,0.396496,-1.05144][-0.19905,0.977066,0.0756331][0.459353,0.861769,0][0.146649,0.36565,-1.03891][0.19905,0.977066,0.0756331][0.412709,0.897418,0][0,0.418049,-1.32987][-0.0186145,-0.456968,-0.889288][0.528767,0.935062,0][0.146649,0.36565,-1.03891][0.19905,0.977066,0.0756331][0.412709,0.897418,0][0.176716,0.37791,-1.30555][0.018731,-0.460451,-0.887487][0.471157,0.974949,0][0.176716,0.37791,-1.30555][0.018731,-0.460451,-0.887487][0.471157,0.974949,0][0.146649,0.36565,-1.03891][0.19905,0.977066,0.0756331][0.412709,0.897418,0][0.232148,0.332513,-1.01783][0.342607,0.935923,0.0816651][0.383008,0.913985,0][0.176716,0.37791,-1.30555][0.018731,-0.460451,-0.887487][0.471157,0.974949,0][0.232148,0.332513,-1.01783][0.342607,0.935923,0.0816651][0.383008,0.913985,0][0.276593,0.31059,-1.19925][0.852257,-0.42696,-0.302263][0.413091,0.974949,0][0.341699,0.319352,-1.10532][0.936136,-0.22831,-0.267438][0.247419,0.852681,0][0.301829,0.365536,-0.974166][-0.621562,-0.778712,0.0852555][0.270661,0.805859,0][0.236003,0.412786,-1.0225][-0.621562,-0.778712,0.0852555][0.238612,0.794226,0][0.341699,0.319352,-1.10532][0.936136,-0.22831,-0.267438][0.247419,0.852681,0][0.236003,0.412786,-1.0225][-0.621562,-0.778712,0.0852555][0.238612,0.794226,0][0.245328,0.40822,-1.20569][-0.669035,-0.743069,-0.0155381][0.189296,0.838732,0][0.341699,0.319352,-1.10532][0.936136,-0.22831,-0.267438][0.247419,0.852681,0][0.245328,0.40822,-1.20569][-0.669035,-0.743069,-0.0155381][0.189296,0.838732,0][0.319967,0.331361,-1.19102][0.934301,-0.233202,-0.269628][0.217925,0.865435,0][0.276593,0.31059,-1.19925][0.852257,-0.42696,-0.302263][0.413091,0.974949,0][0.232148,0.332513,-1.01783][0.342607,0.935923,0.0816651][0.383008,0.913985,0][0.319188,0.303985,-0.952][0.333225,0.942296,-0.0322329][0.342437,0.91804,0][0.276593,0.31059,-1.19925][0.852257,-0.42696,-0.302263][0.413091,0.974949,0][0.319188,0.303985,-0.952][0.333225,0.942296,-0.0322329][0.342437,0.91804,0][0.337563,0.292298,-1.0015][0.821778,-0.49434,-0.283389][0.348518,0.93662,0][0.384603,0.28733,-0.87878][0.966348,-0.165002,-0.197348][0.323301,0.816375,0][0.342842,0.309398,-0.886424][-0.381957,-0.849153,-0.364757][0.311078,0.804144,0][0.301829,0.365536,-0.974166][-0.621562,-0.778712,0.0852555][0.270661,0.805859,0][0.384603,0.28733,-0.87878][0.966348,-0.165002,-0.197348][0.323301,0.816375,0][0.301829,0.365536,-0.974166][-0.621562,-0.778712,0.0852555][0.270661,0.805859,0][0.341699,0.319352,-1.10532][0.936136,-0.22831,-0.267438][0.247419,0.852681,0][0.337563,0.292298,-1.0015][0.821778,-0.49434,-0.283389][0.348518,0.93662,0][0.319188,0.303985,-0.952][0.333225,0.942296,-0.0322329][0.342437,0.91804,0][0.342842,0.309398,-0.886424][-0.381957,-0.849153,-0.364757][0.320856,0.904885,0][0.337563,0.292298,-1.0015][0.821778,-0.49434,-0.283389][0.348518,0.93662,0][0.342842,0.309398,-0.886424][-0.381957,-0.849153,-0.364757][0.320856,0.904885,0][0.384603,0.28733,-0.87878][0.966348,-0.165002,-0.197348][0.306454,0.914462,0][0.262168,0.442083,-1.31438][0.474098,-0.158429,-0.866101][0.391306,0.6979,0][0.174654,0.574744,-1.38655][0.377025,0.919896,0.107904][0.339651,0.722533,0][0.190045,0.556064,-1.28107][0.375239,0.920279,0.110822][0.369535,0.741707,0][0.262168,0.442083,-1.31438][0.474098,-0.158429,-0.866101][0.391306,0.6979,0][0.190045,0.556064,-1.28107][0.375239,0.920279,0.110822][0.369535,0.741707,0][0.327341,0.36447,-1.1941][0.936136,-0.22831,-0.267438][0.448424,0.697716,0][0.245328,0.40822,-1.20569][-0.669035,-0.743069,-0.0155381][0.189296,0.838732,0][0.236003,0.412786,-1.0225][-0.621562,-0.778712,0.0852555][0.238612,0.794226,0][0.147566,0.466234,-1.0635][-0.467789,-0.872291,-0.142414][0.203695,0.774415,0][0.245328,0.40822,-1.20569][-0.669035,-0.743069,-0.0155381][0.189296,0.838732,0][0.147566,0.466234,-1.0635][-0.467789,-0.872291,-0.142414][0.203695,0.774415,0][0.163189,0.484138,-1.22448][-0.467789,-0.872291,-0.142414][0.158257,0.811764,0][0.327341,0.36447,-1.1941][0.936136,-0.22831,-0.267438][0.448424,0.697716,0][0.319967,0.331361,-1.19102][0.934301,-0.233202,-0.269628][0.455098,0.686845,0][0.250894,0.405318,-1.31382][0.517103,-0.130419,-0.845929][0.39417,0.684252,0][0.327341,0.36447,-1.1941][0.936136,-0.22831,-0.267438][0.448424,0.697716,0][0.250894,0.405318,-1.31382][0.517103,-0.130419,-0.845929][0.39417,0.684252,0][0.262168,0.442083,-1.31438][0.474098,-0.158429,-0.866101][0.391306,0.6979,0][0.245328,0.40822,-1.20569][-0.669035,-0.743069,-0.0155381][0.189296,0.838732,0][0.250894,0.405318,-1.31382][0.517103,-0.130419,-0.845929][0.160583,0.865435,0][0.319967,0.331361,-1.19102][0.934301,-0.233202,-0.269628][0.217925,0.865435,0][0.190045,0.556064,-1.28107][0.375239,0.920279,0.110822][0.369535,0.741707,0][0.20287,0.555397,-1.19317][0.413407,0.873384,-0.257478][0.394649,0.761286,0][0.348659,0.353338,-1.10998][0.936136,-0.22831,-0.267438][0.477403,0.711986,0][0.190045,0.556064,-1.28107][0.375239,0.920279,0.110822][0.369535,0.741707,0][0.348659,0.353338,-1.10998][0.936136,-0.22831,-0.267438][0.477403,0.711986,0][0.327341,0.36447,-1.1941][0.936136,-0.22831,-0.267438][0.448424,0.697716,0][0,0.636961,-1.30937][-0.375239,0.920279,0.110822][0.307344,0.781011,0][0,0.6418,-1.22582][-0.413408,0.873383,-0.257481][0.326295,0.804822,0][0.20287,0.555397,-1.19317][0.413407,0.873384,-0.257478][0.394649,0.761286,0][0,0.636961,-1.30937][-0.375239,0.920279,0.110822][0.307344,0.781011,0][0.20287,0.555397,-1.19317][0.413407,0.873384,-0.257478][0.394649,0.761286,0][0.190045,0.556064,-1.28107][0.375239,0.920279,0.110822][0.369535,0.741707,0][0.245328,0.40822,-1.20569][-0.669035,-0.743069,-0.0155381][0.189296,0.838732,0][0.163189,0.484138,-1.22448][-0.467789,-0.872291,-0.142414][0.158257,0.811764,0][0.177633,0.50069,-1.37331][0.517103,-0.130419,-0.845929][0.116166,0.846189,0][0.245328,0.40822,-1.20569][-0.669035,-0.743069,-0.0155381][0.189296,0.838732,0][0.177633,0.50069,-1.37331][0.517103,-0.130419,-0.845929][0.116166,0.846189,0][0.250894,0.405318,-1.31382][0.517103,-0.130419,-0.845929][0.160583,0.865435,0][0.177633,0.50069,-1.37331][0.517103,-0.130419,-0.845929][0.116166,0.846189,0][0.163189,0.484138,-1.22448][-0.467789,-0.872291,-0.142414][0.158257,0.811764,0][0,0.566613,-1.24949][0.436763,-0.894138,-0.0987634][0.110997,0.76449,0][0.177633,0.50069,-1.37331][0.517103,-0.130419,-0.845929][0.116166,0.846189,0][0,0.566613,-1.24949][0.436763,-0.894138,-0.0987634][0.110997,0.76449,0][0,0.582512,-1.39343][-0.00107123,-0.236582,-0.971611][0.067901,0.794118,0][0.208093,-0.0694998,-0.364725][0.387093,-0.836854,0.387086][0.815984,0.448889,0][0.384504,0.0592119,-0.262873][0.387093,-0.836854,0.387086][0.802455,0.521508,0][0.221994,0.0592109,-0.100362][0.387093,-0.836854,0.387085][0.869923,0.523425,0][0.208093,-0.0694998,-0.364725][0.387093,-0.836854,0.387086][0.815984,0.448889,0][0.221994,0.0592109,-0.100362][0.387093,-0.836854,0.387085][0.869923,0.523425,0][0.120142,-0.0694998,-0.276774][0.387087,-0.836856,0.387087][0.858503,0.449154,0][0.120142,-0.0694998,-0.276774][0.387087,-0.836856,0.387087][0.858503,0.449154,0][0.221994,0.0592109,-0.100362][0.387093,-0.836854,0.387085][0.869923,0.523425,0][0,0.0592109,-0.0408789][-0.141685,-0.836853,0.528774][0.938645,0.502704,0][0.120142,-0.0694998,-0.276774][0.387087,-0.836856,0.387087][0.858503,0.449154,0][0,0.0592109,-0.0408789][-0.141685,-0.836853,0.528774][0.938645,0.502704,0][0,-0.0695008,-0.244582][-0.141685,-0.836853,0.528774][0.896951,0.435719,0][0,-0.0695008,-0.725151][-0.141685,-0.836854,-0.528773][0.702425,0.334379,0][0,0.0592109,-0.928855][-0.141686,-0.836854,-0.528772][0.623322,0.338746,0][0.221994,0.0592119,-0.869371][0.14169,-0.836854,-0.528772][0.646018,0.407253,0][0,-0.0695008,-0.725151][-0.141685,-0.836854,-0.528773][0.702425,0.334379,0][0.221994,0.0592119,-0.869371][0.14169,-0.836854,-0.528772][0.646018,0.407253,0][0.120142,-0.0694989,-0.692959][0.141696,-0.836857,-0.528765][0.714303,0.375241,0][0.120142,-0.0694989,-0.692959][0.141696,-0.836857,-0.528765][0.714303,0.375241,0][0.221994,0.0592119,-0.869371][0.14169,-0.836854,-0.528772][0.646018,0.407253,0][0.384504,0.0592109,-0.706861][0.387084,-0.836856,-0.387089][0.686536,0.461374,0][0.120142,-0.0694989,-0.692959][0.141696,-0.836857,-0.528765][0.714303,0.375241,0][0.384504,0.0592109,-0.706861][0.387084,-0.836856,-0.387089][0.686536,0.461374,0][0.208093,-0.0694998,-0.605009][0.387083,-0.836854,-0.387096][0.73983,0.410089,0][0.208093,-0.0694998,-0.605009][0.387083,-0.836854,-0.387096][0.73983,0.410089,0][0.384504,0.0592109,-0.706861][0.387084,-0.836856,-0.387089][0.686536,0.461374,0][0.443987,0.059211,-0.484867][0.528773,-0.836854,-0.141684][0.740018,0.500101,0][0.208093,-0.0694998,-0.605009][0.387083,-0.836854,-0.387096][0.73983,0.410089,0][0.443987,0.059211,-0.484867][0.528773,-0.836854,-0.141684][0.740018,0.500101,0][0.240284,-0.0694998,-0.484867][0.528772,-0.836856,-0.14168][0.774996,0.435392,0][0.240284,-0.0694998,-0.484867][0.528772,-0.836856,-0.14168][0.774996,0.435392,0][0.443987,0.059211,-0.484867][0.528773,-0.836854,-0.141684][0.740018,0.500101,0][0.384504,0.0592119,-0.262873][0.387093,-0.836854,0.387086][0.802455,0.521508,0][0.240284,-0.0694998,-0.484867][0.528772,-0.836856,-0.14168][0.774996,0.435392,0][0.384504,0.0592119,-0.262873][0.387093,-0.836854,0.387086][0.802455,0.521508,0][0.208093,-0.0694998,-0.364725][0.387093,-0.836854,0.387086][0.815984,0.448889,0][0.384504,0.0592119,-0.262873][0.387093,-0.836854,0.387086][0.802455,0.521508,0][0.502379,0.251841,-0.194818][0.584041,-0.56373,0.584041][0.789318,0.588049,0][0.290049,0.251841,0.0175121][0.584041,-0.56373,0.584041][0.876327,0.593507,0][0.384504,0.0592119,-0.262873][0.387093,-0.836854,0.387086][0.802455,0.521508,0][0.290049,0.251841,0.0175121][0.584041,-0.56373,0.584041][0.876327,0.593507,0][0.221994,0.0592109,-0.100362][0.387093,-0.836854,0.387085][0.869923,0.523425,0][0.221994,0.0592109,-0.100362][0.387093,-0.836854,0.387085][0.869923,0.523425,0][0.290049,0.251841,0.0175121][0.584041,-0.56373,0.584041][0.876327,0.593507,0][0,0.25184,0.0952311][-0.213774,-0.56373,0.797815][0.968062,0.574789,0][0.221994,0.0592109,-0.100362][0.387093,-0.836854,0.387085][0.869923,0.523425,0][0,0.25184,0.0952311][-0.213774,-0.56373,0.797815][0.968062,0.574789,0][0,0.0592109,-0.0408789][-0.141685,-0.836853,0.528774][0.938645,0.502704,0][0,0.0592109,-0.928855][-0.141686,-0.836854,-0.528772][0.623322,0.338746,0][0,0.251841,-1.06496][-0.213776,-0.563728,-0.797816][0.548019,0.355783,0][0.290049,0.251841,-0.987246][0.213776,-0.563728,-0.797816][0.585313,0.441949,0][0,0.0592109,-0.928855][-0.141686,-0.836854,-0.528772][0.623322,0.338746,0][0.290049,0.251841,-0.987246][0.213776,-0.563728,-0.797816][0.585313,0.441949,0][0.221994,0.0592119,-0.869371][0.14169,-0.836854,-0.528772][0.646018,0.407253,0][0.221994,0.0592119,-0.869371][0.14169,-0.836854,-0.528772][0.646018,0.407253,0][0.290049,0.251841,-0.987246][0.213776,-0.563728,-0.797816][0.585313,0.441949,0][0.502379,0.251841,-0.774916][0.584041,-0.56373,-0.584041][0.639667,0.510144,0][0.221994,0.0592119,-0.869371][0.14169,-0.836854,-0.528772][0.646018,0.407253,0][0.502379,0.251841,-0.774916][0.584041,-0.56373,-0.584041][0.639667,0.510144,0][0.384504,0.0592109,-0.706861][0.387084,-0.836856,-0.387089][0.686536,0.461374,0][0.384504,0.0592109,-0.706861][0.387084,-0.836856,-0.387089][0.686536,0.461374,0][0.502379,0.251841,-0.774916][0.584041,-0.56373,-0.584041][0.639667,0.510144,0][0.580098,0.251841,-0.484867][0.797816,-0.563729,-0.213776][0.709002,0.559642,0][0.384504,0.0592109,-0.706861][0.387084,-0.836856,-0.387089][0.686536,0.461374,0][0.580098,0.251841,-0.484867][0.797816,-0.563729,-0.213776][0.709002,0.559642,0][0.443987,0.059211,-0.484867][0.528773,-0.836854,-0.141684][0.740018,0.500101,0][0.443987,0.059211,-0.484867][0.528773,-0.836854,-0.141684][0.740018,0.500101,0][0.580098,0.251841,-0.484867][0.797816,-0.563729,-0.213776][0.709002,0.559642,0][0.502379,0.251841,-0.194818][0.584041,-0.56373,0.584041][0.789318,0.588049,0][0.443987,0.059211,-0.484867][0.528773,-0.836854,-0.141684][0.740018,0.500101,0][0.502379,0.251841,-0.194818][0.584041,-0.56373,0.584041][0.789318,0.588049,0][0.384504,0.0592119,-0.262873][0.387093,-0.836854,0.387086][0.802455,0.521508,0][0.502379,0.251841,-0.194818][0.584041,-0.56373,0.584041][0.789318,0.588049,0][0.543771,0.479064,-0.17092][0.69295,-0.199111,0.692947][0.774857,0.656789,0][0.313947,0.479064,0.0589051][0.69295,-0.199111,0.692947][0.879397,0.665468,0][0.502379,0.251841,-0.194818][0.584041,-0.56373,0.584041][0.789318,0.588049,0][0.313947,0.479064,0.0589051][0.69295,-0.199111,0.692947][0.879397,0.665468,0][0.290049,0.251841,0.0175121][0.584041,-0.56373,0.584041][0.876327,0.593507,0][0.290049,0.251841,0.0175121][0.584041,-0.56373,0.584041][0.876327,0.593507,0][0.313947,0.479064,0.0589051][0.69295,-0.199111,0.692947][0.879397,0.665468,0][0,0.479064,0.143027][-0.253639,-0.199111,0.946584][0.98482,0.649459,0][0.290049,0.251841,0.0175121][0.584041,-0.56373,0.584041][0.876327,0.593507,0][0,0.479064,0.143027][-0.253639,-0.199111,0.946584][0.98482,0.649459,0][0,0.25184,0.0952311][-0.213774,-0.56373,0.797815][0.968062,0.574789,0][0,0.251841,-1.06496][-0.213776,-0.563728,-0.797816][0.548019,0.355783,0][0,0.479064,-1.11276][-0.25364,-0.199112,-0.946584][0.477138,0.384967,0][0.313947,0.479064,-1.02864][0.25364,-0.199112,-0.946584][0.524748,0.481021,0][0,0.251841,-1.06496][-0.213776,-0.563728,-0.797816][0.548019,0.355783,0][0.313947,0.479064,-1.02864][0.25364,-0.199112,-0.946584][0.524748,0.481021,0][0.290049,0.251841,-0.987246][0.213776,-0.563728,-0.797816][0.585313,0.441949,0][0.290049,0.251841,-0.987246][0.213776,-0.563728,-0.797816][0.585313,0.441949,0][0.313947,0.479064,-1.02864][0.25364,-0.199112,-0.946584][0.524748,0.481021,0][0.543771,0.479064,-0.798814][0.692948,-0.19911,-0.692949][0.591998,0.561742,0][0.290049,0.251841,-0.987246][0.213776,-0.563728,-0.797816][0.585313,0.441949,0][0.543771,0.479064,-0.798814][0.692948,-0.19911,-0.692949][0.591998,0.561742,0][0.502379,0.251841,-0.774916][0.584041,-0.56373,-0.584041][0.639667,0.510144,0][0.502379,0.251841,-0.774916][0.584041,-0.56373,-0.584041][0.639667,0.510144,0][0.543771,0.479064,-0.798814][0.692948,-0.19911,-0.692949][0.591998,0.561742,0][0.627894,0.479064,-0.484867][0.946584,-0.19911,-0.25364][0.677025,0.621617,0][0.502379,0.251841,-0.774916][0.584041,-0.56373,-0.584041][0.639667,0.510144,0][0.627894,0.479064,-0.484867][0.946584,-0.19911,-0.25364][0.677025,0.621617,0][0.580098,0.251841,-0.484867][0.797816,-0.563729,-0.213776][0.709002,0.559642,0][0.580098,0.251841,-0.484867][0.797816,-0.563729,-0.213776][0.709002,0.559642,0][0.627894,0.479064,-0.484867][0.946584,-0.19911,-0.25364][0.677025,0.621617,0][0.543771,0.479064,-0.17092][0.69295,-0.199111,0.692947][0.774857,0.656789,0][0.580098,0.251841,-0.484867][0.797816,-0.563729,-0.213776][0.709002,0.559642,0][0.543771,0.479064,-0.17092][0.69295,-0.199111,0.692947][0.774857,0.656789,0][0.502379,0.251841,-0.194818][0.584041,-0.56373,0.584041][0.789318,0.588049,0][0.543771,0.479064,-0.17092][0.69295,-0.199111,0.692947][0.451077,0.425801,0][0.502379,0.706287,-0.194818][0.692949,0.199112,0.692948][0.400365,0.483857,0][0.290049,0.706288,0.0175121][0.692949,0.199112,0.692948][0.462074,0.557001,0][0.543771,0.479064,-0.17092][0.69295,-0.199111,0.692947][0.451077,0.425801,0][0.290049,0.706288,0.0175121][0.692949,0.199112,0.692948][0.462074,0.557001,0][0.313947,0.479064,0.0589051][0.69295,-0.199111,0.692947][0.527316,0.512289,0][0.313947,0.479064,0.0589051][0.69295,-0.199111,0.692947][0.527316,0.512289,0][0.290049,0.706288,0.0175121][0.692949,0.199112,0.692948][0.462074,0.557001,0][0,0.706287,0.0952311][-0.253637,0.199113,0.946585][0.50562,0.650379,0][0.313947,0.479064,0.0589051][0.69295,-0.199111,0.692947][0.527316,0.512289,0][0,0.706287,0.0952311][-0.253637,0.199113,0.946585][0.50562,0.650379,0][0,0.479064,0.143027][-0.253639,-0.199111,0.946584][0.582479,0.616197,0][0,0.479064,-1.11276][-0.25364,-0.199112,-0.946584][0.01749,0.341591,0][0,0.706287,-1.06496][-0.253639,0.199113,-0.946584][0.038156,0.422989,0][0.290049,0.706287,-0.987246][0.253639,0.199113,-0.946584][0.138213,0.399651,0][0,0.479064,-1.11276][-0.25364,-0.199112,-0.946584][0.01749,0.341591,0][0.290049,0.706287,-0.987246][0.253639,0.199113,-0.946584][0.138213,0.399651,0][0.313947,0.479064,-1.02864][0.25364,-0.199112,-0.946584][0.132645,0.320807,0][0.313947,0.479064,-1.02864][0.25364,-0.199112,-0.946584][0.132645,0.320807,0][0.290049,0.706287,-0.987246][0.253639,0.199113,-0.946584][0.138213,0.399651,0][0.502379,0.706287,-0.774916][0.692948,0.199111,-0.692948][0.233824,0.402977,0][0.313947,0.479064,-1.02864][0.25364,-0.199112,-0.946584][0.132645,0.320807,0][0.502379,0.706287,-0.774916][0.692948,0.199111,-0.692948][0.233824,0.402977,0][0.543771,0.479064,-0.798814][0.692948,-0.19911,-0.692949][0.247585,0.327131,0][0.543771,0.479064,-0.798814][0.692948,-0.19911,-0.692949][0.247585,0.327131,0][0.502379,0.706287,-0.774916][0.692948,0.199111,-0.692948][0.233824,0.402977,0][0.580098,0.706287,-0.484867][0.946585,0.199111,-0.253638][0.322795,0.431682,0][0.543771,0.479064,-0.798814][0.692948,-0.19911,-0.692949][0.247585,0.327131,0][0.580098,0.706287,-0.484867][0.946585,0.199111,-0.253638][0.322795,0.431682,0][0.627894,0.479064,-0.484867][0.946584,-0.19911,-0.25364][0.355976,0.362721,0][0.627894,0.479064,-0.484867][0.946584,-0.19911,-0.25364][0.355976,0.362721,0][0.580098,0.706287,-0.484867][0.946585,0.199111,-0.253638][0.322795,0.431682,0][0.502379,0.706287,-0.194818][0.692949,0.199112,0.692948][0.400365,0.483857,0][0.627894,0.479064,-0.484867][0.946584,-0.19911,-0.25364][0.355976,0.362721,0][0.502379,0.706287,-0.194818][0.692949,0.199112,0.692948][0.400365,0.483857,0][0.543771,0.479064,-0.17092][0.69295,-0.199111,0.692947][0.451077,0.425801,0][0.502379,0.706287,-0.194818][0.692949,0.199112,0.692948][0.400365,0.483857,0][0.384504,0.898918,-0.262873][0.584045,0.563725,0.584042][0.350444,0.53879,0][0.221994,0.898918,-0.100362][0.584045,0.563725,0.584042][0.396546,0.596918,0][0.502379,0.706287,-0.194818][0.692949,0.199112,0.692948][0.400365,0.483857,0][0.221994,0.898918,-0.100362][0.584045,0.563725,0.584042][0.396546,0.596918,0][0.290049,0.706288,0.0175121][0.692949,0.199112,0.692948][0.462074,0.557001,0][0.290049,0.706288,0.0175121][0.692949,0.199112,0.692948][0.462074,0.557001,0][0.221994,0.898918,-0.100362][0.584045,0.563725,0.584042][0.396546,0.596918,0][-1.30065e-007,0.898918,-0.0408789][-0.213777,0.563724,0.797819][0.423537,0.671373,0][0.290049,0.706288,0.0175121][0.692949,0.199112,0.692948][0.462074,0.557001,0][-1.30065e-007,0.898918,-0.0408789][-0.213777,0.563724,0.797819][0.423537,0.671373,0][0,0.706287,0.0952311][-0.253637,0.199113,0.946585][0.50562,0.650379,0][0,0.706287,-1.06496][-0.253639,0.199113,-0.946584][0.038156,0.422989,0][-1.30065e-007,0.898919,-0.928854][-0.213777,0.563725,-0.797818][0.07263,0.501165,0][0.221994,0.898918,-0.869371][0.213777,0.563725,-0.797818][0.147381,0.476332,0][0,0.706287,-1.06496][-0.253639,0.199113,-0.946584][0.038156,0.422989,0][0.221994,0.898918,-0.869371][0.213777,0.563725,-0.797818][0.147381,0.476332,0][0.290049,0.706287,-0.987246][0.253639,0.199113,-0.946584][0.138213,0.399651,0][0.290049,0.706287,-0.987246][0.253639,0.199113,-0.946584][0.138213,0.399651,0][0.221994,0.898918,-0.869371][0.213777,0.563725,-0.797818][0.147381,0.476332,0][0.384504,0.898919,-0.70686][0.584044,0.563725,-0.584044][0.221448,0.476373,0][0.290049,0.706287,-0.987246][0.253639,0.199113,-0.946584][0.138213,0.399651,0][0.384504,0.898919,-0.70686][0.584044,0.563725,-0.584044][0.221448,0.476373,0][0.502379,0.706287,-0.774916][0.692948,0.199111,-0.692948][0.233824,0.402977,0][0.502379,0.706287,-0.774916][0.692948,0.199111,-0.692948][0.233824,0.402977,0][0.384504,0.898919,-0.70686][0.584044,0.563725,-0.584044][0.221448,0.476373,0][0.443987,0.898919,-0.484867][0.797819,0.563724,-0.213776][0.290593,0.497945,0][0.502379,0.706287,-0.774916][0.692948,0.199111,-0.692948][0.233824,0.402977,0][0.443987,0.898919,-0.484867][0.797819,0.563724,-0.213776][0.290593,0.497945,0][0.580098,0.706287,-0.484867][0.946585,0.199111,-0.253638][0.322795,0.431682,0][0.580098,0.706287,-0.484867][0.946585,0.199111,-0.253638][0.322795,0.431682,0][0.443987,0.898919,-0.484867][0.797819,0.563724,-0.213776][0.290593,0.497945,0][0.384504,0.898918,-0.262873][0.584045,0.563725,0.584042][0.350444,0.53879,0][0.580098,0.706287,-0.484867][0.946585,0.199111,-0.253638][0.322795,0.431682,0][0.384504,0.898918,-0.262873][0.584045,0.563725,0.584042][0.350444,0.53879,0][0.502379,0.706287,-0.194818][0.692949,0.199112,0.692948][0.400365,0.483857,0][0.384504,0.898918,-0.262873][0.584045,0.563725,0.584042][0.350444,0.53879,0][0.208093,1.02763,-0.364725][0.387084,0.836854,0.387093][0.293552,0.596678,0][0.120142,1.02763,-0.276774][0.387084,0.836854,0.387093][0.322621,0.634123,0][0.384504,0.898918,-0.262873][0.584045,0.563725,0.584042][0.350444,0.53879,0][0.120142,1.02763,-0.276774][0.387084,0.836854,0.387093][0.322621,0.634123,0][0.221994,0.898918,-0.100362][0.584045,0.563725,0.584042][0.396546,0.596918,0][0.221994,0.898918,-0.100362][0.584045,0.563725,0.584042][0.396546,0.596918,0][0.120142,1.02763,-0.276774][0.387084,0.836854,0.387093][0.322621,0.634123,0][-1.495e-007,1.02763,-0.244582][-0.141684,0.836855,0.528771][0.3369,0.678582,0][0.221994,0.898918,-0.100362][0.584045,0.563725,0.584042][0.396546,0.596918,0][-1.495e-007,1.02763,-0.244582][-0.141684,0.836855,0.528771][0.3369,0.678582,0][-1.30065e-007,0.898918,-0.0408789][-0.213777,0.563724,0.797819][0.423537,0.671373,0][-1.30065e-007,0.898919,-0.928854][-0.213777,0.563725,-0.797818][0.07263,0.501165,0][-1.495e-007,1.02763,-0.725151][-0.141683,0.836857,-0.528768][0.120414,0.573369,0][0.120142,1.02763,-0.692958][0.141688,0.836857,-0.528768][0.162179,0.557456,0][-1.30065e-007,0.898919,-0.928854][-0.213777,0.563725,-0.797818][0.07263,0.501165,0][0.120142,1.02763,-0.692958][0.141688,0.836857,-0.528768][0.162179,0.557456,0][0.221994,0.898918,-0.869371][0.213777,0.563725,-0.797818][0.147381,0.476332,0][0.221994,0.898918,-0.869371][0.213777,0.563725,-0.797818][0.147381,0.476332,0][0.120142,1.02763,-0.692958][0.141688,0.836857,-0.528768][0.162179,0.557456,0][0.208093,1.02763,-0.605009][0.387075,0.836858,-0.387093][0.208828,0.556445,0][0.221994,0.898918,-0.869371][0.213777,0.563725,-0.797818][0.147381,0.476332,0][0.208093,1.02763,-0.605009][0.387075,0.836858,-0.387093][0.208828,0.556445,0][0.384504,0.898919,-0.70686][0.584044,0.563725,-0.584044][0.221448,0.476373,0][0.384504,0.898919,-0.70686][0.584044,0.563725,-0.584044][0.221448,0.476373,0][0.208093,1.02763,-0.605009][0.387075,0.836858,-0.387093][0.208828,0.556445,0][0.240284,1.02763,-0.484867][0.528775,0.836854,-0.141681][0.254203,0.569997,0][0.384504,0.898919,-0.70686][0.584044,0.563725,-0.584044][0.221448,0.476373,0][0.240284,1.02763,-0.484867][0.528775,0.836854,-0.141681][0.254203,0.569997,0][0.443987,0.898919,-0.484867][0.797819,0.563724,-0.213776][0.290593,0.497945,0][0.443987,0.898919,-0.484867][0.797819,0.563724,-0.213776][0.290593,0.497945,0][0.240284,1.02763,-0.484867][0.528775,0.836854,-0.141681][0.254203,0.569997,0][0.208093,1.02763,-0.364725][0.387084,0.836854,0.387093][0.293552,0.596678,0][0.443987,0.898919,-0.484867][0.797819,0.563724,-0.213776][0.290593,0.497945,0][0.208093,1.02763,-0.364725][0.387084,0.836854,0.387093][0.293552,0.596678,0][0.384504,0.898918,-0.262873][0.584045,0.563725,0.584042][0.350444,0.53879,0][0.208093,1.02763,-0.364725][0.387084,0.836854,0.387093][0.293552,0.596678,0][-1.56325e-007,1.07283,-0.484867][-0.13516,0.981562,0.13516][0.2369,0.670661,0][0.120142,1.02763,-0.276774][0.387084,0.836854,0.387093][0.322621,0.634123,0][0.120142,1.02763,-0.276774][0.387084,0.836854,0.387093][0.322621,0.634123,0][-1.56325e-007,1.07283,-0.484867][-0.13516,0.981562,0.13516][0.245239,0.683499,0][-1.495e-007,1.02763,-0.244582][-0.141684,0.836855,0.528771][0.3369,0.678582,0][-1.495e-007,1.02763,-0.725151][-0.141683,0.836857,-0.528768][0.120414,0.573369,0][-1.56325e-007,1.07283,-0.484867][-0.13516,0.981562,0.13516][0.17155,0.64481,0][0.120142,1.02763,-0.692958][0.141688,0.836857,-0.528768][0.162179,0.557456,0][0.120142,1.02763,-0.692958][0.141688,0.836857,-0.528768][0.162179,0.557456,0][-1.56325e-007,1.07283,-0.484867][-0.13516,0.981562,0.13516][0.187424,0.645633,0][0.208093,1.02763,-0.605009][0.387075,0.836858,-0.387093][0.208828,0.556445,0][0.208093,1.02763,-0.605009][0.387075,0.836858,-0.387093][0.208828,0.556445,0][-1.56325e-007,1.07283,-0.484867][-0.13516,0.981562,0.13516][0.205753,0.649482,0][0.240284,1.02763,-0.484867][0.528775,0.836854,-0.141681][0.254203,0.569997,0][0.240284,1.02763,-0.484867][0.528775,0.836854,-0.141681][0.254203,0.569997,0][-1.56325e-007,1.07283,-0.484867][-0.13516,0.981562,0.13516][0.223155,0.658145,0][0.208093,1.02763,-0.364725][0.387084,0.836854,0.387093][0.293552,0.596678,0][1.56325e-007,-0.997757,-0.924002][-0.145697,-0.736772,-0.660258][0.059946,0,0][1.24828e-007,-0.789165,-1.15677][-0.145697,-0.736773,-0.660256][0.019926,0.085008,0][0.499972,-0.789165,-1.04644][0.145698,-0.736773,-0.660256][0.158647,0.117501,0][1.56325e-007,-0.997757,-0.924002][-0.145697,-0.736772,-0.660258][0.059946,0,0][0.499972,-0.789165,-1.04644][0.145698,-0.736773,-0.660256][0.158647,0.117501,0][0.407561,-0.997757,-0.834067][0.145697,-0.736771,-0.660258][0.18279,0.035281,0][1.24828e-007,-0.789165,-1.15677][-0.145697,-0.736773,-0.660256][0.019926,0.085008,0][0,-0.546868,-1.23385][-0.205782,-0.296678,-0.932543][0,0.160878,0][0.530576,-0.546867,-1.11677][0.205783,-0.296678,-0.932543][0.148749,0.179852,0][1.24828e-007,-0.789165,-1.15677][-0.145697,-0.736773,-0.660256][0.019926,0.085008,0][0.530576,-0.546867,-1.11677][0.205783,-0.296678,-0.932543][0.148749,0.179852,0][0.499972,-0.789165,-1.04644][0.145698,-0.736773,-0.660256][0.158647,0.117501,0][0,-0.546868,-1.23385][-0.205782,-0.296678,-0.932543][0,0.160878,0][0,-0.304568,-1.15677][-0.205783,0.296674,-0.932544][0.00031,0.239113,0][0.499972,-0.304568,-1.04644][0.205783,0.296675,-0.932544][0.147258,0.244852,0][0,-0.546868,-1.23385][-0.205782,-0.296678,-0.932543][0,0.160878,0][0.499972,-0.304568,-1.04644][0.205783,0.296675,-0.932544][0.147258,0.244852,0][0.530576,-0.546867,-1.11677][0.205783,-0.296678,-0.932543][0.148749,0.179852,0][0,-0.304568,-1.15677][-0.205783,0.296674,-0.932544][0.00031,0.239113,0][0,-0.141697,-1.03809][-0.176233,0.579684,-0.795555][0.00748,0.301032,0][0.429374,-0.141697,-0.942975][0.176231,0.579685,-0.795555][0.143496,0.302722,0][0,-0.304568,-1.15677][-0.205783,0.296674,-0.932544][0.00031,0.239113,0][0.429374,-0.141697,-0.942975][0.176231,0.579685,-0.795555][0.143496,0.302722,0][0.499972,-0.304568,-1.04644][0.205783,0.296675,-0.932544][0.147258,0.244852,0][0,-0.141697,-1.03809][-0.176233,0.579684,-0.795555][0.988246,0.830177,0][0,-0.00861444,-0.782325][-0.158033,0.875949,-0.455783][0.932082,0.825226,0][0.328856,-0.0215939,-0.693246][0.158033,0.875949,-0.455783][0.912807,0.888485,0][0,-0.141697,-1.03809][-0.176233,0.579684,-0.795555][0.988246,0.830177,0][0.328856,-0.0215939,-0.693246][0.158033,0.875949,-0.455783][0.912807,0.888485,0][0.429374,-0.141697,-0.942975][0.176231,0.579685,-0.795555][0.964636,0.912688,0][0,0.0957862,0.00374914][-0.137496,0.989918,-0.0340115][0.776792,0.822001,0][0,0.110834,0.39975][-0.141972,0.989157,-0.037588][0.699519,0.822756,0][0.323678,0.064974,0.415428][0.141969,0.989157,-0.037588][0.698022,0.886122,0][0,0.0957862,0.00374914][-0.137496,0.989918,-0.0340115][0.776792,0.822001,0][0.323678,0.064974,0.415428][0.141969,0.989157,-0.037588][0.698022,0.886122,0][0.347371,0.0475161,0.00311714][0.137496,0.989918,-0.0340138][0.7776,0.890066,0][0.379894,0.0200703,0.747827][0.134186,0.984794,0.110342][0.634145,0.900326,0][0.323678,0.064974,0.415428][0.141969,0.989157,-0.037588][0.698022,0.886122,0][0,0.110834,0.39975][-0.141972,0.989157,-0.037588][0.699519,0.822756,0][0.379894,0.0200703,0.747827][0.134186,0.984794,0.110342][0.634145,0.900326,0][0,0.110834,0.39975][-0.141972,0.989157,-0.037588][0.699519,0.822756,0][0,0.103121,0.909119][-0.21953,0.975494,0.0147718][0.600438,0.825981,0][0,0.14663,1.29137][-0.648847,0.648429,0.398168][0.984306,0.373164,0][0.553427,-0.304568,1.12431][0.648848,0.64843,0.398165][0.812325,0.242761,0][0.436109,-0.100665,0.98342][0.648847,0.64843,0.398165][0.807563,0.322664,0][0,-0.304568,1.36188][-0.378615,0.280594,0.881996][0.990064,0.233902,0][0,-0.546868,1.39309][-0.328918,0.120678,0.936616][0.989042,0.1566,0][0.587303,-0.546867,1.18685][0.328918,0.120678,0.936616][0.812186,0.17617,0][0,-0.304568,1.36188][-0.378615,0.280594,0.881996][0.990064,0.233902,0][0.587303,-0.546867,1.18685][0.328918,0.120678,0.936616][0.812186,0.17617,0][0.553427,-0.304568,1.12431][0.648848,0.64843,0.398165][0.812325,0.242761,0][0,-0.546868,1.39309][-0.328918,0.120678,0.936616][0.989042,0.1566,0][1.24829e-007,-0.789167,1.32727][-0.333644,-0.247126,0.909731][0.969027,0.079254,0][0.553427,-0.789167,1.12431][0.333643,-0.247126,0.909731][0.802336,0.111517,0][0,-0.546868,1.39309][-0.328918,0.120678,0.936616][0.989042,0.1566,0][0.553427,-0.789167,1.12431][0.333643,-0.247126,0.909731][0.802336,0.111517,0][0.587303,-0.546867,1.18685][0.328918,0.120678,0.936616][0.812186,0.17617,0][1.24829e-007,-0.789167,1.32727][-0.333644,-0.247126,0.909731][0.969027,0.079254,0][1.56325e-007,-0.997757,1.12911][-0.297162,-0.657642,0.692244][0.928433,0,0][0.451135,-0.997757,0.935451][0.297162,-0.657642,0.692244][0.779464,0.029921,0][1.24829e-007,-0.789167,1.32727][-0.333644,-0.247126,0.909731][0.969027,0.079254,0][0.451135,-0.997757,0.935451][0.297162,-0.657642,0.692244][0.779464,0.029921,0][0.553427,-0.789167,1.12431][0.333643,-0.247126,0.909731][0.802336,0.111517,0][1.56325e-007,-0.997757,1.12911][-0.297162,-0.657642,0.692244][0.588979,0.812006,0][1.56325e-007,-0.997757,0.459542][1.75446e-007,-1,0][0.718633,0.812007,0][0.679464,-0.997757,0.459542][0,-1,0][0.718633,0.680437,0][1.56325e-007,-0.997757,1.12911][-0.297162,-0.657642,0.692244][0.588979,0.812006,0][0.679464,-0.997757,0.459542][0,-1,0][0.718633,0.680437,0][0.451135,-0.997757,0.935451][0.297162,-0.657642,0.692244][0.626479,0.72465,0][1.56325e-007,-0.997757,0.459542][1.75446e-007,-1,0][0.718633,0.812007,0][1.56325e-007,-0.997757,0.00270119][1.59658e-007,-1,1.30471e-007][0.807094,0.812007,0][0.746653,-0.997757,0.00270119][1.59658e-007,-1,1.30471e-007][0.807094,0.667427,0][1.56325e-007,-0.997757,0.459542][1.75446e-007,-1,0][0.718633,0.812007,0][0.746653,-0.997757,0.00270119][1.59658e-007,-1,1.30471e-007][0.807094,0.667427,0][0.679464,-0.997757,0.459542][0,-1,0][0.718633,0.680437,0][1.56325e-007,-0.997757,-0.448708][1.75671e-007,-1,0][0.894503,0.812007,0][1.56325e-007,-0.997757,-0.924002][-0.145697,-0.736772,-0.660258][0.986538,0.812007,0][0.407561,-0.997757,-0.834067][0.145697,-0.736771,-0.660258][0.969123,0.733088,0][1.56325e-007,-0.997757,-0.448708][1.75671e-007,-1,0][0.894503,0.812007,0][0.407561,-0.997757,-0.834067][0.145697,-0.736771,-0.660258][0.969123,0.733088,0][0.678594,-0.997757,-0.448708][1.75671e-007,-1,0][0.894503,0.680606,0][0.679464,-0.997757,0.459542][0,-1,0][0.614797,0.033746,0][0.833527,-0.789165,0.607587][0.625528,-0.702665,0.339081][0.642439,0.116156,0][0.553427,-0.789167,1.12431][0.333643,-0.247126,0.909731][0.802336,0.111517,0][0.679464,-0.997757,0.459542][0,-1,0][0.614797,0.033746,0][0.553427,-0.789167,1.12431][0.333643,-0.247126,0.909731][0.802336,0.111517,0][0.451135,-0.997757,0.935451][0.297162,-0.657642,0.692244][0.779464,0.029921,0][0.746653,-0.997757,0.00270119][1.59658e-007,-1,1.30471e-007][0.468852,0.038255,0][0.915951,-0.789165,0.00174517][0.772384,-0.626404,0.105082][0.469108,0.117792,0][0.833527,-0.789165,0.607587][0.625528,-0.702665,0.339081][0.642439,0.116156,0][0.746653,-0.997757,0.00270119][1.59658e-007,-1,1.30471e-007][0.468852,0.038255,0][0.833527,-0.789165,0.607587][0.625528,-0.702665,0.339081][0.642439,0.116156,0][0.679464,-0.997757,0.459542][0,-1,0][0.614797,0.033746,0][0.407561,-0.997757,-0.834067][0.145697,-0.736771,-0.660258][0.18279,0.035281,0][0.499972,-0.789165,-1.04644][0.145698,-0.736773,-0.660256][0.158647,0.117501,0][0.83246,-0.789165,-0.614746][0.568038,-0.697084,-0.4375][0.298707,0.123146,0][0.407561,-0.997757,-0.834067][0.145697,-0.736771,-0.660258][0.18279,0.035281,0][0.83246,-0.789165,-0.614746][0.568038,-0.697084,-0.4375][0.298707,0.123146,0][0.678594,-0.997757,-0.448708][1.75671e-007,-1,0][0.325927,0.041277,0][0.833527,-0.789165,0.607587][0.625528,-0.702665,0.339081][0.642439,0.116156,0][0.884548,-0.546867,0.656615][0.839405,-0.271971,0.470565][0.652545,0.184563,0][0.587303,-0.546867,1.18685][0.328918,0.120678,0.936616][0.812186,0.17617,0][0.833527,-0.789165,0.607587][0.625528,-0.702665,0.339081][0.642439,0.116156,0][0.587303,-0.546867,1.18685][0.328918,0.120678,0.936616][0.812186,0.17617,0][0.553427,-0.789167,1.12431][0.333643,-0.247126,0.909731][0.802336,0.111517,0][0.915951,-0.789165,0.00174517][0.772384,-0.626404,0.105082][0.469108,0.117792,0][0.972017,-0.546867,0.00142816][0.966157,-0.223392,0.128984][0.469923,0.187939,0][0.884548,-0.546867,0.656615][0.839405,-0.271971,0.470565][0.652545,0.184563,0][0.915951,-0.789165,0.00174517][0.772384,-0.626404,0.105082][0.469108,0.117792,0][0.884548,-0.546867,0.656615][0.839405,-0.271971,0.470565][0.652545,0.184563,0][0.833527,-0.789165,0.607587][0.625528,-0.702665,0.339081][0.642439,0.116156,0][0.499972,-0.789165,-1.04644][0.145698,-0.736773,-0.660256][0.158647,0.117501,0][0.530576,-0.546867,-1.11677][0.205783,-0.296678,-0.932543][0.148749,0.179852,0][0.883416,-0.546867,-0.669733][0.756083,-0.26872,-0.596765][0.289458,0.187739,0][0.499972,-0.789165,-1.04644][0.145698,-0.736773,-0.660256][0.158647,0.117501,0][0.883416,-0.546867,-0.669733][0.756083,-0.26872,-0.596765][0.289458,0.187739,0][0.83246,-0.789165,-0.614746][0.568038,-0.697084,-0.4375][0.298707,0.123146,0][0.884548,-0.546867,0.656615][0.839405,-0.271971,0.470565][0.652545,0.184563,0][0.833527,-0.304568,0.607587][0.84624,0.271014,0.458726][0.647,0.254393,0][0.553427,-0.304568,1.12431][0.648848,0.64843,0.398165][0.812325,0.242761,0][0.884548,-0.546867,0.656615][0.839405,-0.271971,0.470565][0.652545,0.184563,0][0.553427,-0.304568,1.12431][0.648848,0.64843,0.398165][0.812325,0.242761,0][0.587303,-0.546867,1.18685][0.328918,0.120678,0.936616][0.812186,0.17617,0][0.972017,-0.546867,0.00142816][0.966157,-0.223392,0.128984][0.469923,0.187939,0][0.915951,-0.304568,0.00174515][0.965848,0.223317,0.131402][0.470082,0.258416,0][0.833527,-0.304568,0.607587][0.84624,0.271014,0.458726][0.647,0.254393,0][0.972017,-0.546867,0.00142816][0.966157,-0.223392,0.128984][0.469923,0.187939,0][0.833527,-0.304568,0.607587][0.84624,0.271014,0.458726][0.647,0.254393,0][0.884548,-0.546867,0.656615][0.839405,-0.271971,0.470565][0.652545,0.184563,0][0.530576,-0.546867,-1.11677][0.205783,-0.296678,-0.932543][0.148749,0.179852,0][0.499972,-0.304568,-1.04644][0.205783,0.296675,-0.932544][0.147258,0.244852,0][0.83246,-0.304567,-0.614746][0.763468,0.267113,-0.58802][0.294551,0.253712,0][0.530576,-0.546867,-1.11677][0.205783,-0.296678,-0.932543][0.148749,0.179852,0][0.83246,-0.304567,-0.614746][0.763468,0.267113,-0.58802][0.294551,0.253712,0][0.883416,-0.546867,-0.669733][0.756083,-0.26872,-0.596765][0.289458,0.187739,0][0.833527,-0.304568,0.607587][0.84624,0.271014,0.458726][0.647,0.254393,0][0.718595,-0.116742,0.528267][0.691721,0.595683,0.408269][0.638082,0.323364,0][0.436109,-0.100665,0.98342][0.648847,0.64843,0.398165][0.807563,0.322664,0][0.833527,-0.304568,0.607587][0.84624,0.271014,0.458726][0.647,0.254393,0][0.436109,-0.100665,0.98342][0.648847,0.64843,0.398165][0.807563,0.322664,0][0.553427,-0.304568,1.12431][0.648848,0.64843,0.398165][0.812325,0.242761,0][0.915951,-0.304568,0.00174515][0.965848,0.223317,0.131402][0.470082,0.258416,0][0.789654,-0.124537,0.00208414][0.814502,0.571207,0.101533][0.469315,0.324285,0][0.718595,-0.116742,0.528267][0.691721,0.595683,0.408269][0.638082,0.323364,0][0.915951,-0.304568,0.00174515][0.965848,0.223317,0.131402][0.470082,0.258416,0][0.718595,-0.116742,0.528267][0.691721,0.595683,0.408269][0.638082,0.323364,0][0.833527,-0.304568,0.607587][0.84624,0.271014,0.458726][0.647,0.254393,0][0.499972,-0.304568,-1.04644][0.205783,0.296675,-0.932544][0.147258,0.244852,0][0.429374,-0.141697,-0.942975][0.176231,0.579685,-0.795555][0.143496,0.302722,0][0.717676,-0.13189,-0.539266][0.651835,0.587314,-0.479764][0.29819,0.316682,0][0.499972,-0.304568,-1.04644][0.205783,0.296675,-0.932544][0.147258,0.244852,0][0.717676,-0.13189,-0.539266][0.651835,0.587314,-0.479764][0.29819,0.316682,0][0.83246,-0.304567,-0.614746][0.763468,0.267113,-0.58802][0.294551,0.253712,0][0.328856,-0.0215939,-0.693246][0.158033,0.875949,-0.455783][0.912807,0.888485,0][0.529325,-0.0271137,-0.462165][0.367915,0.880769,-0.298137][0.867963,0.926576,0][0.717676,-0.13189,-0.539266][0.651835,0.587314,-0.479764][0.884865,0.967652,0][0.328856,-0.0215939,-0.693246][0.158033,0.875949,-0.455783][0.912807,0.888485,0][0.717676,-0.13189,-0.539266][0.651835,0.587314,-0.479764][0.884865,0.967652,0][0.429374,-0.141697,-0.942975][0.176231,0.579685,-0.795555][0.964636,0.912688,0][0.554202,0.00972391,0.462732][0.591178,0.803675,0.06793][0.689958,0.931647,0][0.718595,-0.116742,0.528267][0.691721,0.595683,0.408269][0.676461,0.971346,0][0.789654,-0.124537,0.00208414][0.814502,0.571207,0.101533][0.779396,0.982912,0][0.554202,0.00972391,0.462732][0.591178,0.803675,0.06793][0.689958,0.931647,0][0.789654,-0.124537,0.00208414][0.814502,0.571207,0.101533][0.779396,0.982912,0][0.595328,-0.0114629,0.00255414][0.502936,0.864309,0.00515395][0.778306,0.939277,0][0.436109,-0.100665,0.98342][0.648847,0.64843,0.398165][0.58549,0.919903,0][0.718595,-0.116742,0.528267][0.691721,0.595683,0.408269][0.676461,0.971346,0][0.554202,0.00972391,0.462732][0.591178,0.803675,0.06793][0.689958,0.931647,0][0.436109,-0.100665,0.98342][0.648847,0.64843,0.398165][0.58549,0.919903,0][0.554202,0.00972391,0.462732][0.591178,0.803675,0.06793][0.689958,0.931647,0][0.379894,0.0200703,0.747827][0.134186,0.984794,0.110342][0.634145,0.900326,0][0.554202,0.00972391,0.462732][0.591178,0.803675,0.06793][0.689958,0.931647,0][0.323678,0.064974,0.415428][0.141969,0.989157,-0.037588][0.698022,0.886122,0][0.379894,0.0200703,0.747827][0.134186,0.984794,0.110342][0.634145,0.900326,0][0.323678,0.064974,0.415428][0.141969,0.989157,-0.037588][0.698022,0.886122,0][0.554202,0.00972391,0.462732][0.591178,0.803675,0.06793][0.689958,0.931647,0][0.595328,-0.0114629,0.00255414][0.502936,0.864309,0.00515395][0.778306,0.939277,0][0.323678,0.064974,0.415428][0.141969,0.989157,-0.037588][0.698022,0.886122,0][0.595328,-0.0114629,0.00255414][0.502936,0.864309,0.00515395][0.778306,0.939277,0][0.347371,0.0475161,0.00311714][0.137496,0.989918,-0.0340138][0.7776,0.890066,0][0.308571,0.0310528,-0.388919][0.203772,0.966881,-0.153682][0.853425,0.882687,0][0.529325,-0.0271137,-0.462165][0.367915,0.880769,-0.298137][0.867963,0.926576,0][0.328856,-0.0215939,-0.693246][0.158033,0.875949,-0.455783][0.912807,0.888485,0][0,-0.00861444,-0.782325][-0.158033,0.875949,-0.455783][0.932082,0.825226,0][0,0.0815955,-0.382883][-0.153618,0.963856,-0.217677][0.852241,0.821973,0][0.308571,0.0310528,-0.388919][0.203772,0.966881,-0.153682][0.853425,0.882687,0][0,-0.00861444,-0.782325][-0.158033,0.875949,-0.455783][0.932082,0.825226,0][0.308571,0.0310528,-0.388919][0.203772,0.966881,-0.153682][0.853425,0.882687,0][0.328856,-0.0215939,-0.693246][0.158033,0.875949,-0.455783][0.912807,0.888485,0][0,0.103121,0.909119][-0.21953,0.975494,0.0147718][0.600438,0.825981,0][0,0.14663,1.29137][-0.648847,0.648429,0.398168][0.525402,0.821973,0][0.436109,-0.100665,0.98342][0.648847,0.64843,0.398165][0.58549,0.919903,0][0,0.103121,0.909119][-0.21953,0.975494,0.0147718][0.600438,0.825981,0][0.436109,-0.100665,0.98342][0.648847,0.64843,0.398165][0.58549,0.919903,0][0.379894,0.0200703,0.747827][0.134186,0.984794,0.110342][0.634145,0.900326,0][0,0.0815955,-0.382883][-0.153618,0.963856,-0.217677][0.852241,0.821973,0][0,0.0957862,0.00374914][-0.137496,0.989918,-0.0340115][0.776792,0.822001,0][0.347371,0.0475161,0.00311714][0.137496,0.989918,-0.0340138][0.7776,0.890066,0][0,0.0815955,-0.382883][-0.153618,0.963856,-0.217677][0.852241,0.821973,0][0.347371,0.0475161,0.00311714][0.137496,0.989918,-0.0340138][0.7776,0.890066,0][0.308571,0.0310528,-0.388919][0.203772,0.966881,-0.153682][0.853425,0.882687,0][0.595328,-0.0114629,0.00255414][0.502936,0.864309,0.00515395][0.778306,0.939277,0][0.529325,-0.0271137,-0.462165][0.367915,0.880769,-0.298137][0.867963,0.926576,0][0.308571,0.0310528,-0.388919][0.203772,0.966881,-0.153682][0.853425,0.882687,0][0.595328,-0.0114629,0.00255414][0.502936,0.864309,0.00515395][0.778306,0.939277,0][0.308571,0.0310528,-0.388919][0.203772,0.966881,-0.153682][0.853425,0.882687,0][0.347371,0.0475161,0.00311714][0.137496,0.989918,-0.0340138][0.7776,0.890066,0][0.789654,-0.124537,0.00208414][0.814502,0.571207,0.101533][0.779396,0.982912,0][0.717676,-0.13189,-0.539266][0.651835,0.587314,-0.479764][0.884865,0.967652,0][0.529325,-0.0271137,-0.462165][0.367915,0.880769,-0.298137][0.867963,0.926576,0][0.789654,-0.124537,0.00208414][0.814502,0.571207,0.101533][0.779396,0.982912,0][0.529325,-0.0271137,-0.462165][0.367915,0.880769,-0.298137][0.867963,0.926576,0][0.595328,-0.0114629,0.00255414][0.502936,0.864309,0.00515395][0.778306,0.939277,0][0.83246,-0.304567,-0.614746][0.763468,0.267113,-0.58802][0.294551,0.253712,0][0.717676,-0.13189,-0.539266][0.651835,0.587314,-0.479764][0.29819,0.316682,0][0.789654,-0.124537,0.00208414][0.814502,0.571207,0.101533][0.469315,0.324285,0][0.83246,-0.304567,-0.614746][0.763468,0.267113,-0.58802][0.294551,0.253712,0][0.789654,-0.124537,0.00208414][0.814502,0.571207,0.101533][0.469315,0.324285,0][0.915951,-0.304568,0.00174515][0.965848,0.223317,0.131402][0.470082,0.258416,0][0.883416,-0.546867,-0.669733][0.756083,-0.26872,-0.596765][0.289458,0.187739,0][0.83246,-0.304567,-0.614746][0.763468,0.267113,-0.58802][0.294551,0.253712,0][0.915951,-0.304568,0.00174515][0.965848,0.223317,0.131402][0.470082,0.258416,0][0.883416,-0.546867,-0.669733][0.756083,-0.26872,-0.596765][0.289458,0.187739,0][0.915951,-0.304568,0.00174515][0.965848,0.223317,0.131402][0.470082,0.258416,0][0.972017,-0.546867,0.00142816][0.966157,-0.223392,0.128984][0.469923,0.187939,0][0.83246,-0.789165,-0.614746][0.568038,-0.697084,-0.4375][0.298707,0.123146,0][0.883416,-0.546867,-0.669733][0.756083,-0.26872,-0.596765][0.289458,0.187739,0][0.972017,-0.546867,0.00142816][0.966157,-0.223392,0.128984][0.469923,0.187939,0][0.83246,-0.789165,-0.614746][0.568038,-0.697084,-0.4375][0.298707,0.123146,0][0.972017,-0.546867,0.00142816][0.966157,-0.223392,0.128984][0.469923,0.187939,0][0.915951,-0.789165,0.00174517][0.772384,-0.626404,0.105082][0.469108,0.117792,0][0.678594,-0.997757,-0.448708][1.75671e-007,-1,0][0.325927,0.041277,0][0.83246,-0.789165,-0.614746][0.568038,-0.697084,-0.4375][0.298707,0.123146,0][0.915951,-0.789165,0.00174517][0.772384,-0.626404,0.105082][0.469108,0.117792,0][0.678594,-0.997757,-0.448708][1.75671e-007,-1,0][0.325927,0.041277,0][0.915951,-0.789165,0.00174517][0.772384,-0.626404,0.105082][0.469108,0.117792,0][0.746653,-0.997757,0.00270119][1.59658e-007,-1,1.30471e-007][0.468852,0.038255,0][1.56325e-007,-0.997757,0.00270119][1.59658e-007,-1,1.30471e-007][0.807094,0.812007,0][1.56325e-007,-0.997757,-0.448708][1.75671e-007,-1,0][0.894503,0.812007,0][0.678594,-0.997757,-0.448708][1.75671e-007,-1,0][0.894503,0.680606,0][1.56325e-007,-0.997757,0.00270119][1.59658e-007,-1,1.30471e-007][0.807094,0.812007,0][0.678594,-0.997757,-0.448708][1.75671e-007,-1,0][0.894503,0.680606,0][0.746653,-0.997757,0.00270119][1.59658e-007,-1,1.30471e-007][0.807094,0.667427,0][0,0.14663,1.29137][-0.648847,0.648429,0.398168][0.984306,0.373164,0][0,-0.304568,1.36188][-0.378615,0.280594,0.881996][0.990064,0.233902,0][0.553427,-0.304568,1.12431][0.648848,0.64843,0.398165][0.812325,0.242761,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/SantaHat.mesh b/shareddata/charcustom/hats/fonts/SantaHat.mesh deleted file mode 100644 index cfd4011..0000000 --- a/shareddata/charcustom/hats/fonts/SantaHat.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -854 -[-0.849858,0.482622,7.07818e-007][-0.913596,0.405951,0.0233465][0.2309,0.387171,0][-0.898697,0.243419,0.303609][-0.900438,0.333669,0.279065][0.167443,0.437166,0][-0.729134,0.70585,0.130422][-0.871273,0.47766,0.112806][0.20364,0.340514,0][0.728969,1.85899,-0.235635][0.375554,0.184848,-0.90818][0.643927,0.0994954,0][0.808619,1.79383,-0.193009][0.64946,-0.0384623,-0.759422][0.652836,0.113114,0][0.699801,1.07324,-0.315136][0.824418,0.0560789,-0.563197][0.62731,0.263726,0][0.0281239,0,1.05689][0.0154793,0.965037,2.4819][0.914076,0.488043,0][0.35472,0,1.00516][0.224919,0.551876,1.42007][0.903264,0.488043,0][0.273347,0.878875,0.676493][0.277064,0.324141,0.904527][0.83457,0.30435,0][-0.826917,0,0.621224][0,-2.43473,0][0.823018,0.488043,0][-0.826918,0,-0.621222][0,-2.51327,0][0.563335,0.488043,0][1.08501,0,0][0,-2.59181,0][0.693176,0.488043,0][-0.168217,1.24397,0.431713][-0.503277,0.567901,0.651307][0.140668,0.228041,0][-0.124607,1.00708,0.610274][-0.302557,0.457351,0.836235][0.103347,0.277553,0][0.0860952,1.35942,0.477705][-0.249463,0.513647,0.820935][0.131055,0.203912,0][0.671196,1.90626,-0.235635][0.0830045,0.41191,-0.907436][0.28015,0.0896171,0][0.382497,1.64555,-0.368398][-0.0729991,0.468239,-0.880581][0.307898,0.144108,0][0.751085,2.08796,-0.132824][-0.165166,0.661114,-0.73188][0.258661,0.0516391,0][-0.499966,0.182249,0.923209][-0.00517577,0.999861,0.0158438][0.138426,0.598638,0][-0.587999,0.154875,0.770512][0.313957,0.824604,-0.470594][0.170341,0.592917,0][-0.80313,0.135706,0.56217][0.245016,0.916799,-0.315352][0.213886,0.58891,0][-0.0425376,0.129121,1.17491][-0.0171125,0.634941,0.772371][0.582222,0.679029,0][-0.245152,0.0188195,1.19288][-0.189165,0.0673815,0.979631][0.585978,0.655975,0][0.140175,0.013697,1.21477][0.097076,-0.0409346,0.994435][0.590554,0.654904,0][-0.764066,-0.153167,0.740235][0.107275,-0.992221,0.0631661][0.176669,0.528533,0][-0.913379,-0.126039,0.303664][0.646254,-0.732866,-0.212753][0.267917,0.534203,0][-0.57056,-0.0958356,0.743122][0.39094,-0.744485,-0.54121][0.176066,0.540516,0][-0.169468,-0.0952725,0.924527][0.165562,-0.68265,-0.711743][0.13815,0.540634,0][-0.0303804,-0.141087,1.01689][-0.0371145,-0.98286,-0.180579][0.118845,0.531058,0][-0.823353,-0.134698,0.804054][-0.250039,-0.862688,0.439602][0.16333,0.532393,0][-0.357874,0.420968,-0.809125][-0.402638,0.376846,-0.834188][0.400015,0.400057,0][-0.593101,0,-0.85504][-1.05758,0.624285,-1.16138][0.409611,0.488043,0][-0.499288,0.662361,-0.589522][-0.581832,0.429403,-0.690713][0.354115,0.349603,0][-0.826918,0,-0.621222][0,-2.51327,0][0.563335,0.488043,0][0.507939,-1.2087e-007,-0.941693][0,-2.74889,1.20158e-007][0.496353,0.488043,0][1.08501,0,0][0,-2.59181,0][0.693176,0.488043,0][0.981113,-0.142346,0.265592][-0.157941,-0.98283,-0.0953895][0.392166,0.62229,0][0.912511,-0.106362,0.255835][-0.609722,-0.75665,-0.236049][0.390126,0.629811,0][0.926938,-0.0683631,-0.0459559][-0.811245,-0.58463,-0.00942857][0.327049,0.637753,0][1.10441,0.179189,-0.0879798][0.222288,0.974981,0.000437925][0.318266,0.689494,0][1.04556,0.177135,-0.420503][0.177534,0.978831,-0.101846][0.248765,0.689064,0][1.01792,0.173416,0.263312][0.0190881,0.999447,0.0272208][0.391689,0.688287,0][-1.02144,-0.177575,0.200632][0.718,-0.694922,-0.0394894][0.289451,0.523432,0][-1.03008,-0.167882,-0.122019][0.893366,-0.449286,0.00632539][0.356889,0.525458,0][-0.913379,-0.126039,0.303664][0.646254,-0.732866,-0.212753][0.267917,0.534203,0][-0.844325,0.158148,-0.625008][0.238468,0.956082,0.170412][0.462018,0.593601,0][-0.868679,0.115683,-0.450257][0.634884,0.69357,0.340417][0.425493,0.584725,0][-0.545884,0.0422081,-0.776463][0.58989,0.223486,0.775941][0.493674,0.569368,0][-0.869499,-0.000281773,-0.877665][-0.721219,0.0318246,-0.691976][0.153214,0.651982,0][-0.815674,0.139803,-0.834896][-0.338818,0.868249,-0.362416][0.162153,0.681262,0][-0.670173,0.136489,-0.962239][-0.329259,0.847904,-0.415508][0.135537,0.680569,0][-1.18548,-0.0228728,-0.299121][-0.95742,-0.112476,-0.265886][0.274135,0.647261,0][-1.14065,0.0940102,-0.312672][-0.765956,0.618254,-0.176277][0.271303,0.67169,0][-1.09039,0.071416,-0.508853][-0.859529,0.350196,-0.372253][0.230299,0.666968,0][0.3733,-0.163265,-1.09091][0.171497,-0.841421,-0.512444][0.559396,0.526422,0][0.574987,-0.0627342,-1.09214][0.427397,-0.362641,-0.828144][0.559654,0.547434,0][0.855179,-0.0797928,-0.886679][0.563947,-0.551418,-0.614737][0.51671,0.543869,0][0.43708,0.097067,-0.854276][-0.400855,0.646044,0.649571][0.158102,0.672329,0][0.415389,0.0263701,-0.816313][-0.499727,0.264193,0.824909][0.166037,0.657553,0][0.639929,0.0361261,-0.657771][-0.654276,0.313054,0.688418][0.199174,0.659592,0][-0.844325,0.158148,-0.625008][0.238468,0.956082,0.170412][0.462018,0.593601,0][-0.545884,0.0422081,-0.776463][0.58989,0.223486,0.775941][0.493674,0.569368,0][-0.434514,0.108111,-0.88703][0.36384,0.555769,0.74749][0.516783,0.583143,0][-0.156803,-0.171805,-1.12598][-0.0640342,-0.963518,-0.259871][0.566726,0.524638,0][-0.301273,-0.148268,-0.97666][0.113418,-0.858065,0.500859][0.535517,0.529557,0][-0.588528,-0.13729,-0.836179][0.357216,-0.763381,0.538188][0.506155,0.531851,0][-0.729134,0.70585,0.130422][-0.871273,0.47766,0.112806][0.20364,0.340514,0][-0.606715,0.918732,-0.118783][-0.82612,0.553412,-0.106113][0.255726,0.296019,0][-0.838765,0.481231,-0.142058][-0.899377,0.401956,-0.171907][0.260591,0.387461,0][0.0860952,1.35942,0.477705][-0.249463,0.513647,0.820935][0.131055,0.203912,0][0.218505,1.74859,0.227683][-0.455598,0.692628,0.559193][0.183312,0.122571,0][-0.168217,1.24397,0.431713][-0.503277,0.567901,0.651307][0.140668,0.228041,0][-0.235054,-0.0933124,1.1447][-0.130327,-0.739664,0.660236][0.575907,0.632538,0][-0.395056,-0.116515,1.0616][-0.173889,-0.892706,0.41574][0.55854,0.627689,0][0.13406,-0.145709,1.09706][-0.0120323,-0.952659,0.303803][0.56595,0.621587,0][-1.15186,0.032244,0.439469][-0.79769,0.547267,0.253357][0.428508,0.658781,0][-1.02627,0.109059,0.542669][-0.493167,0.84343,0.213102][0.450078,0.674836,0][-1.16114,0.100178,0.059324][-0.575505,0.815196,0.0651912][0.349054,0.67298,0][0.819887,0.555474,0.234641][0.906512,0.273161,0.321899][0.742219,0.371944,0][0.64038,0.601182,0.536918][0.752421,0.283643,0.594482][0.805397,0.36239,0][0.780167,0.278353,0.533768][0.763684,0.388516,0.515599][0.804739,0.429865,0][0.35472,0,1.00516][0.224919,0.551876,1.42007][0.903264,0.488043,0][-0.826917,0,0.621224][0,-2.43473,0][0.823018,0.488043,0][1.08501,0,0][0,-2.59181,0][0.693176,0.488043,0][0.926938,-0.0683631,-0.0459559][-0.811245,-0.58463,-0.00942857][0.327049,0.637753,0][1.02405,-0.134767,-0.0630025][-0.177018,-0.984194,0.00509674][0.323486,0.623874,0][0.981113,-0.142346,0.265592][-0.157941,-0.98283,-0.0953895][0.392166,0.62229,0][0.869439,-0.12949,-0.485315][-0.391334,-0.873626,0.289198][0.235219,0.624977,0][0.818027,-0.0741065,-0.451186][-0.729688,-0.549367,0.407125][0.242352,0.636552,0][0.638916,-0.04625,-0.655239][-0.647019,-0.329276,0.687709][0.199703,0.642375,0][1.20413,0.0361795,-0.294733][0.979506,0.104485,-0.172196][0.392987,0.568108,0][1.11332,0.142551,-0.455818][0.575975,0.792788,-0.199347][0.426656,0.590341,0][1.17604,0.143261,-0.101126][0.728111,0.68497,-0.0258946][0.352522,0.590489,0][0.972224,0.0919753,-0.769733][0.606789,0.601631,-0.519468][0.492267,0.57977,0][0.872237,0.000153834,-0.906709][0.666296,0.0253514,-0.745256][0.520896,0.560579,0][0.721754,0.0683565,-0.994283][0.458434,0.504602,-0.731584][0.5392,0.574834,0][0.981113,-0.142346,0.265592][-0.157941,-0.98283,-0.0953895][0.392166,0.62229,0][0.724922,-0.163861,0.719778][-0.0849094,-0.990982,-0.103662][0.487095,0.617793,0][0.912511,-0.106362,0.255835][-0.609722,-0.75665,-0.236049][0.390126,0.629811,0][0.130864,-0.10961,0.943977][-0.164423,-0.559635,-0.812264][0.533955,0.629132,0][0.129876,-0.0391991,0.903293][-0.0954299,-0.262111,-0.960308][0.525451,0.643848,0][0.407698,-0.0112935,0.816741][-0.4555,-0.0528526,-0.888665][0.507361,0.649681,0][0.884423,0.139878,0.409708][-0.64107,0.700861,-0.312768][0.422287,0.681277,0][1.01792,0.173416,0.263312][0.0190881,0.999447,0.0272208][0.391689,0.688287,0][0.975081,0.151071,0.0957407][-0.587392,0.808209,-0.0420508][0.356665,0.683617,0][0.27899,0.0741288,0.890145][-0.252383,0.482863,-0.838538][0.522703,0.667535,0][0.407698,-0.0112935,0.816741][-0.4555,-0.0528526,-0.888665][0.507361,0.649681,0][0.272127,-0.00564807,0.870069][-0.279542,0.338212,-0.898593][0.518507,0.650861,0][1.31232,2.1306,0.0687786][0.85376,-0.444748,0.270729][0.494157,0.914588,0][1.32328,2.32801,0.11229][0.871484,0.237054,0.429326][0.491867,0.873327,0][1.27687,2.2015,0.177887][0.678472,-0.239137,0.694614][0.501567,0.899769,0][0.851112,2.2015,-0.0438002][-0.97313,-0.170718,-0.154511][0.0747728,0.99,0][0.908474,2.08678,-0.00212442][-0.718412,-0.694103,0.0458877][0.0987511,0.978011,0][0.886564,2.1306,0.0653084][-0.821546,-0.506627,0.261515][0.0895922,0.98259,0][0.790725,1.20385,0.0722324][0.992677,-0.0535538,0.108281][0.708274,0.236426,0][0.776086,1.39824,0.175855][0.899364,-0.0897434,0.427891][0.729932,0.195798,0][0.693441,0.905796,0.358862][0.87134,0.0882126,0.482686][0.768182,0.298723,0][0.407597,1.8648,0.221299][-0.318501,0.664012,0.676495][0.184646,0.0982825,0][0.643021,1.92931,0.226895][-0.0149847,0.483065,0.875456][0.183476,0.0847996,0][0.751085,2.08796,0.132824][-0.118599,0.63005,0.767445][0.203138,0.0516391,0][0.922196,2.19562,-0.179111][-0.66893,-0.367799,-0.645954][0.0760021,0.975143,0][0.886564,2.1306,-0.0695573][-0.808301,-0.489681,-0.326898][0.0895922,0.98259,0][0.851112,2.2015,-0.0438002][-0.97313,-0.170718,-0.154511][0.0747728,0.99,0][1.21655,2.32213,-0.225957][0.490929,0.20104,-0.847686][0.0495604,0.913619,0][1.31345,2.39303,-0.0695573][0.870404,0.435991,-0.228712][0.034741,0.893368,0][1.32328,2.32801,-0.116539][0.913329,0.22673,-0.338266][0.048331,0.891313,0][0.0238805,-0.13829,-1.19868][-0.047955,-0.676699,-0.734696][0.581921,0.531642,0][0.0277378,-0.0683013,-1.23874][0.0469238,-0.28212,-0.958231][0.590294,0.546271,0][0.220523,-0.0304661,-1.21809][0.236126,-0.0855595,-0.967948][0.585978,0.554179,0][-0.670173,0.136489,-0.962239][-0.329259,0.847904,-0.415508][0.135537,0.680569,0][-0.76231,0.162541,-0.784333][-0.0543918,0.995927,-0.0719098][0.172721,0.686014,0][-0.326554,0.142233,-1.0871][-0.0376472,0.958504,-0.282582][0.10944,0.681769,0][-0.606715,0.918732,-0.118783][-0.82612,0.553412,-0.106113][0.255726,0.296019,0][-0.729134,0.70585,0.130422][-0.871273,0.47766,0.112806][0.20364,0.340514,0][-0.327681,1.30656,-0.0955081][-0.762453,0.629528,-0.149534][0.250862,0.21496,0][0.382497,1.64555,-0.368398][-0.0729991,0.468239,-0.880581][0.307898,0.144108,0][0.25193,1.72759,-0.273902][-0.367009,0.638862,-0.676136][0.288148,0.12696,0][0.569512,1.98944,-0.168696][-0.273012,0.693498,-0.666727][0.266159,0.0722306,0][-0.943136,-0.136206,-0.664218][-0.409153,-0.868458,-0.279953][0.197827,0.623573,0][-0.988039,-0.0801959,-0.688873][-0.740815,-0.465411,-0.484341][0.192673,0.63528,0][-0.840207,-0.111369,-0.845488][-0.556189,-0.641667,-0.528126][0.159939,0.628764,0][-1.04123,-0.142485,-0.482088][-0.444563,-0.873017,-0.200509][0.235893,0.622261,0][-1.18548,-0.0228728,-0.299121][-0.95742,-0.112476,-0.265886][0.274135,0.647261,0][-1.09206,-0.0877226,-0.4949][-0.835444,-0.436777,-0.333556][0.233216,0.633707,0][0.135691,-0.10126,1.16822][0.0565671,-0.646236,0.761038][0.087217,0.539382,0][0.140175,0.013697,1.21477][0.097076,-0.0409346,0.994435][0.077486,0.563409,0][-0.0557947,-0.0234923,1.2136][-0.05711,-0.208462,0.976362][0.0777306,0.555636,0][0.860618,0.000630117,0.835027][0.745796,-0.0922656,0.659754][0.156857,0.560678,0][0.805856,-0.142495,0.792698][0.475068,-0.780231,0.406878][0.165704,0.530764,0][0.929811,-0.133043,0.6333][0.490353,-0.806856,0.329449][0.19902,0.532739,0][0.969817,0,0.479815][0.896916,0.432149,0.291424][0.793462,0.488043,0][1.072,0,0.165331][1.30668,0.647,0.384929][0.727732,0.488043,0][0.908152,0.262314,0.280618][0.871414,0.388507,0.299498][0.751828,0.433217,0][0.941159,0.258178,-0.142059][0.913365,0.38602,-0.129432][0.663485,0.434081,0][0.854043,0.269095,-0.41227][0.824702,0.386224,-0.413155][0.607008,0.4318,0][0.791383,0.711982,-0.211654][0.933145,0.20162,-0.297641][0.648939,0.339232,0][0.451855,0.482395,-0.742841][0.461347,0.329512,-0.82376][0.537915,0.387218,0][0.561456,0.461657,-0.674486][0.62333,0.292223,-0.725304][0.552202,0.391552,0][0.883162,0,-0.621223][0.082139,0.0435687,-0.118484][0.563335,0.488043,0][0.0799565,0.552761,-0.83371][0.0117295,0.354687,-0.934912][0.518923,0.372511,0][0.382706,1.2211,-0.52954][0.545522,0.146805,-0.825139][0.582497,0.232821,0][0.208104,0.528515,-0.823446][0.237864,0.356444,-0.903531][0.521068,0.377578,0][-1.21797,-0.126086,0.104586][-0.874292,-0.482019,-0.0571869][0.358514,0.625688,0][-1.15935,-0.175458,0.0866602][-0.40527,-0.911791,-0.0662822][0.354767,0.615369,0][-1.17308,-0.159447,0.277156][-0.50724,-0.854702,0.11042][0.394583,0.618715,0][-0.743173,-0.0276365,0.967832][-0.511557,-0.401452,0.759701][0.538941,0.646265,0][-0.745699,0.0132188,0.971718][-0.597551,0.102645,0.795234][0.539753,0.654804,0][-0.999484,-0.0212405,0.745957][-0.738984,0.124406,0.662137][0.492567,0.647602,0][1.12587,-0.108258,-0.263447][0.53543,-0.839102,-0.0960319][0.386448,0.53792,0][1.18318,-0.0451213,-0.2845][0.847545,-0.505444,-0.161846][0.390849,0.551116,0][1.13528,-0.113093,0.0969853][0.610446,-0.789926,0.0580649][0.311114,0.536909,0][0.73503,-0.0113983,-1.01061][0.545912,-0.0766649,-0.834328][0.542612,0.558164,0][0.855179,-0.0797928,-0.886679][0.563947,-0.551418,-0.614737][0.51671,0.543869,0][0.574987,-0.0627342,-1.09214][0.427397,-0.362641,-0.828144][0.559654,0.547434,0][-0.887257,0.0414162,-0.292242][0.937882,0.26583,0.22296][0.392467,0.569203,0][-0.926431,0.110962,-0.302059][0.660001,0.731454,0.171387][0.394519,0.583739,0][-0.953592,0.097452,0.151959][0.612605,0.787628,-0.0660029][0.299624,0.580915,0][-0.953592,0.097452,0.151959][0.612605,0.787628,-0.0660029][0.299624,0.580915,0][-1.02415,0.129857,0.177487][0.0512775,0.998655,0.00771456][0.294289,0.587688,0][-0.955591,0.139846,0.487167][-0.127966,0.991421,-0.0266348][0.229563,0.589776,0][-0.319499,0.159871,0.917721][0.162323,0.822015,-0.545841][0.139573,0.593961,0][-0.499966,0.182249,0.923209][-0.00517577,0.999861,0.0158438][0.138426,0.598638,0][0.141893,0.158668,1.01658][0.0225128,0.960289,-0.278096][0.11891,0.59371,0][0.131686,0.043177,0.903801][-0.066218,0.267845,-0.961184][0.525558,0.661066,0][0.13648,0.115446,0.945318][0.0185653,0.723634,-0.689935][0.534235,0.676171,0][0.27899,0.0741288,0.890145][-0.252383,0.482863,-0.838538][0.522703,0.667535,0][0.331808,0.115946,1.12873][0.247478,0.703541,0.666172][0.0954697,0.58478,0][0.52439,-0.00156935,1.09647][0.45658,0.0383579,0.888855][0.102212,0.560218,0][0.6938,0.0733359,0.96398][0.494438,0.547315,0.67526][0.129904,0.575874,0][0.847956,0.0786369,0.820737][0.65569,0.464722,0.595066][0.159843,0.576982,0][0.860618,0.000630117,0.835027][0.745796,-0.0922656,0.659754][0.156857,0.560678,0][1.0976,0.0177882,0.478723][0.901134,0.0151601,0.433276][0.231328,0.564264,0][1.25496,2.08678,0.110454][0.511921,-0.699539,0.49858][0.506146,0.923747,0][1.27687,2.2015,0.177887][0.678472,-0.239137,0.694614][0.501567,0.899769,0][1.09818,2.1306,0.221708][0.0154248,-0.531807,0.846725][0.538914,0.914588,0][1.11578,2.06971,-0.175814][0.152257,-0.742893,-0.651864][0.102319,0.934682,0][1.09818,2.1306,-0.225957][0.0402535,-0.44521,-0.894521][0.0895922,0.93836,0][1.25496,2.08678,-0.114703][0.562894,-0.708479,-0.425685][0.0987511,0.905593,0][0.925923,0.0907754,-0.0494777][-0.863204,0.504853,0.00165961][0.326313,0.671014,0][0.89068,0.00974836,-0.184495][-0.978056,-0.0353922,0.205315][0.298093,0.654079,0][0.905117,0.0095525,-0.0437636][-0.999599,-0.0206828,-0.0193643][0.327507,0.654038,0][0.329637,0.132566,-0.979345][-0.037065,0.991858,0.121833][0.131962,0.679749,0][0.670857,0.108103,-0.691406][-0.506415,0.654287,0.561651][0.192144,0.674636,0][0.824299,0.15754,-0.639161][-0.183524,0.979977,0.0772238][0.203064,0.684969,0][1.04264,2.5114,0.0395513][-0.166864,0.9537,0.250224][0.550522,0.834996,0][0.945053,2.43685,0.110454][-0.60818,0.694103,0.385148][0.570919,0.850578,0][1.01067,2.45392,0.147665][-0.225494,0.765507,0.602621][0.557204,0.84701,0][1.12192,2.5114,-0.0695573][0.110013,0.934483,-0.338585][0.01,0.9334,0][1.10183,2.39303,-0.225957][0.00650135,0.562933,-0.826477][0.034741,0.937598,0][1.01067,2.45392,-0.151913][-0.331496,0.736052,-0.590201][0.0220143,0.95665,0][0.35472,0,1.00516][0.224919,0.551876,1.42007][0.903264,0.488043,0][-0.298472,0,1.00516][0,-2.51327,0][0.903265,0.488043,0][-0.826917,0,0.621224][0,-2.43473,0][0.823018,0.488043,0][-0.411279,0.212997,0.87541][-0.445537,0.340092,0.828151][0.0479305,0.443525,0][-0.401542,0.643866,0.674486][-0.487591,0.421573,0.764546][0.0899255,0.353469,0][-0.719209,0,0.747333][-0.853624,0.535487,1.01981][0.0746998,0.488043,0][0.211726,0.0839651,-1.17187][0.158111,0.681481,-0.714552][0.576317,0.578096,0][0.022224,0.130278,-1.12298][0.0328135,0.920631,-0.389051][0.566099,0.587776,0][0.684111,0.127024,-0.945059][0.19799,0.89897,-0.390708][0.528912,0.587096,0][0.0292531,0.014075,-1.23744][0.0614803,0.359155,-0.931251][0.371606,0.99,0][0.022224,0.130278,-1.12298][0.0328135,0.920631,-0.389051][0.371076,0.966039,0][0.211726,0.0839651,-1.17187][0.158111,0.681481,-0.714552][0.410253,0.977802,0][-0.385166,0.159121,1.06691][-0.207462,0.846007,0.491154][0.559649,0.685299,0][-0.426137,0.0184248,1.13941][-0.37319,0.113589,0.920775][0.574802,0.655892,0][-0.234954,0.0985992,1.17372][-0.167458,0.510449,0.843445][0.581973,0.67265,0][-0.728962,0.094029,0.951868][-0.507551,0.560867,0.65408][0.535604,0.671694,0][-0.999484,-0.0212405,0.745957][-0.738984,0.124406,0.662137][0.492567,0.647602,0][-0.745699,0.0132188,0.971718][-0.597551,0.102645,0.795234][0.539753,0.654804,0][-1.16114,0.100178,0.059324][-0.575505,0.815196,0.0651912][0.349054,0.67298,0][-1.23463,-0.00780537,0.0978408][-0.979773,0.193795,0.0498782][0.357104,0.65041,0][-1.15186,0.032244,0.439469][-0.79769,0.547267,0.253357][0.428508,0.658781,0][-1.15071,-0.126895,0.455403][-0.678985,-0.662585,0.316166][0.431838,0.625519,0][-1.17152,-0.0505837,0.462046][-0.932351,0.0103318,0.361406][0.433226,0.641469,0][-1.21998,-0.0545221,0.291464][-0.982111,0.0472976,0.182266][0.397573,0.640646,0][1.13528,-0.113093,0.0969853][0.610446,-0.789926,0.0580649][0.311114,0.536909,0][1.22339,0.0338603,-0.104533][0.99949,-0.0316782,-0.00400833][0.353234,0.567624,0][1.21288,0.0294806,0.0905947][0.990983,-0.0418889,0.12727][0.31245,0.566708,0][0.929811,-0.133043,0.6333][0.490353,-0.806856,0.329449][0.19902,0.532739,0][0.805856,-0.142495,0.792698][0.475068,-0.780231,0.406878][0.165704,0.530764,0][0.99348,-0.143279,0.450226][0.351352,-0.927649,0.126567][0.237284,0.5306,0][-0.588528,-0.13729,-0.836179][0.357216,-0.763381,0.538188][0.506155,0.531851,0][-0.546919,-0.040168,-0.776863][0.577888,-0.326997,0.747742][0.493757,0.552151,0][-0.671759,-0.0752003,-0.68937][0.655507,-0.471575,0.589854][0.47547,0.544829,0][-0.934418,-0.08531,-0.138446][0.842914,-0.527385,0.106589][0.360322,0.542716,0][-1.03008,-0.167882,-0.122019][0.893366,-0.449286,0.00632539][0.356889,0.525458,0][-0.899897,-0.135437,-0.448857][0.564728,-0.781888,0.264072][0.425201,0.532239,0][0.882463,1.73342,-0.0373209][0.949773,0.295348,-0.103448][0.685376,0.125741,0][0.882463,1.73342,0.0373203][0.960932,-0.252907,0.112458][0.700977,0.125741,0][0.790725,1.20385,0.0722324][0.992677,-0.0535538,0.108281][0.708274,0.236426,0][0.574302,1.32171,0.411421][0.568879,0.161894,0.806329][0.779167,0.211793,0][0.587278,1.73562,0.312964][0.22365,0.301747,0.926784][0.758589,0.125283,0][0.273347,0.878875,0.676493][0.277064,0.324141,0.904527][0.83457,0.30435,0][0.451615,-0.153831,-0.879014][-0.400738,0.0728588,0.913291][0.152932,0.619889,0][0.691924,-0.141717,-0.709115][-0.326989,-0.856444,0.399478][0.188443,0.622421,0][0.290679,-0.0977864,-0.886699][-0.286799,-0.487428,0.824718][0.151326,0.631603,0][0.00456253,-0.0584856,-0.931307][-0.0691712,-0.31798,0.945571][0.142002,0.639817,0][0.00940505,-0.157403,-1.007][-0.054517,-0.802869,0.593658][0.126183,0.619143,0][0.290679,-0.0977864,-0.886699][-0.286799,-0.487428,0.824718][0.151326,0.631603,0][0.923143,2.32213,0.177887][-0.668152,0.179748,0.721985][0.575499,0.874556,0][0.966964,2.39303,0.177887][-0.461784,0.48968,0.739574][0.56634,0.859737,0][0.945053,2.43685,0.110454][-0.60818,0.694103,0.385148][0.570919,0.850578,0][0.983457,2.2015,0.221708][-0.481138,-0.186663,0.856542][0.562892,0.899769,0][1.09818,2.1306,0.221708][0.0154248,-0.531807,0.846725][0.538914,0.914588,0][1.13983,2.19562,0.245574][0.176133,-0.250814,0.951877][0.53021,0.900998,0][-0.57056,-0.0958356,0.743122][0.39094,-0.744485,-0.54121][0.176066,0.540516,0][-0.464491,-0.115469,0.849119][0.102474,-0.989507,-0.101855][0.153911,0.536412,0][-0.764066,-0.153167,0.740235][0.107275,-0.992221,0.0631661][0.176669,0.528533,0][-0.155759,0.0572934,0.887584][0.218986,0.0842997,-0.972079][0.145872,0.572521,0][-0.157569,-0.0250827,0.885835][0.226027,-0.255412,-0.940041][0.146237,0.555304,0][-0.544189,-0.0250008,0.709689][0.543142,-0.277962,-0.792297][0.183054,0.555321,0][-0.357874,0.420968,-0.809125][-0.402638,0.376846,-0.834188][0.400015,0.400057,0][-0.499288,0.662361,-0.589522][-0.581832,0.429403,-0.690713][0.354115,0.349603,0][-0.289622,1.06024,-0.484315][-0.532148,0.508043,-0.677282][0.332126,0.266442,0][-0.289622,1.06024,-0.484315][-0.532148,0.508043,-0.677282][0.332126,0.266442,0][-0.535573,0.900617,-0.344723][-0.732053,0.526276,-0.432588][0.30295,0.299806,0][-0.272734,1.28499,-0.277176][-0.669266,0.607672,-0.427571][0.288832,0.219468,0][-0.179216,1.48313,3.65519e-007][-0.715081,0.698701,-0.0218033][0.2309,0.178054,0][-0.448659,1.11148,0.211654][-0.752347,0.57426,0.3228][0.186662,0.255733,0][-0.155434,1.47204,0.165677][-0.680188,0.663334,0.31198][0.196272,0.180372,0][0.524466,2.02629,0.0737229][-0.466166,0.843634,0.266403][0.215491,0.0645284,0][0.524466,2.02629,-0.0737227][-0.448515,0.857009,-0.253712][0.246308,0.0645284,0][0.336299,1.91606,-0.0489582][-0.552679,0.8268,-0.104635][0.241132,0.0875687,0][0.700718,0.126513,0.686512][-0.399389,0.83356,-0.381663][0.480142,0.678484,0][0.743582,0.0324345,0.522262][-0.815842,0.258045,-0.517507][0.445812,0.658821,0][0.65996,0.0669656,0.65074][-0.622233,0.45152,-0.639497][0.472665,0.666038,0][0.724922,-0.163861,0.719778][-0.0849094,-0.990982,-0.103662][0.487095,0.617793,0][0.676573,-0.124633,0.673098][-0.505143,-0.710075,-0.490535][0.477338,0.625992,0][0.912511,-0.106362,0.255835][-0.609722,-0.75665,-0.236049][0.390126,0.629811,0][-0.147204,0.137236,-1.03704][0.0567344,0.97506,0.214567][0.548136,0.58923,0][-0.326554,0.142233,-1.0871][-0.0376472,0.958504,-0.282582][0.5586,0.590275,0][-0.76231,0.162541,-0.784333][-0.0543918,0.995927,-0.0719098][0.495319,0.594519,0][0.0151988,0.132921,-1.04061][0.000755939,0.974509,0.224348][0.119158,0.679823,0][0.00903557,0.0939686,-0.970002][-0.0288356,0.730125,0.682705][0.133915,0.671682,0][0.292191,0.0613521,-0.887641][-0.29554,0.408466,0.863604][0.151129,0.664865,0][-0.539935,-0.00449521,-1.13039][-0.461088,0.0209924,-0.887106][0.100391,0.651102,0][-0.523346,-0.117653,-1.09007][-0.381388,-0.643711,-0.663461][0.108819,0.627451,0][-0.712794,-0.00137417,-1.02104][-0.593703,-0.0923674,-0.799365][0.123247,0.651754,0][-0.164802,-0.0200268,-1.23998][-0.112393,-0.130344,-0.985078][0.077486,0.647856,0][0.0212981,-0.162503,-1.16613][-0.0265358,-0.903526,-0.427711][0.092921,0.618077,0][-0.338689,-0.149375,-1.12968][-0.137856,-0.857226,-0.496144][0.100541,0.620821,0][0.948664,-0.101762,-0.746352][0.596673,-0.721055,-0.352222][0.48738,0.539277,0][1.08474,0.0268643,-0.639541][0.879868,-0.13081,-0.456859][0.465056,0.566161,0][1.18318,-0.0451213,-0.2845][0.847545,-0.505444,-0.161846][0.390849,0.551116,0][1.08474,0.0268643,-0.639541][0.879868,-0.13081,-0.456859][0.465056,0.566161,0][1.06633,0.104413,-0.628253][0.653398,0.629066,-0.421125][0.462696,0.58237,0][1.13726,0.111986,-0.467393][0.835515,0.488789,-0.250999][0.429075,0.583953,0][0.00940505,-0.157403,-1.007][-0.054517,-0.802869,0.593658][0.541857,0.527648,0][0.00456253,-0.0584856,-0.931307][-0.0691712,-0.31798,0.945571][0.526038,0.548322,0][-0.282756,-0.0504053,-0.902912][0.209084,-0.378239,0.901786][0.520103,0.550011,0][-0.419758,-0.0450573,-0.852073][0.401458,-0.304306,0.863846][0.509477,0.551129,0][-0.588528,-0.13729,-0.836179][0.357216,-0.763381,0.538188][0.506155,0.531851,0][-0.301273,-0.148268,-0.97666][0.113418,-0.858065,0.500859][0.535517,0.529557,0][0.454128,0.648608,0.676557][0.527235,0.279253,0.802522][0.834583,0.352478,0][0.574302,1.32171,0.411421][0.568879,0.161894,0.806329][0.779167,0.211793,0][0.333097,0.504865,0.792905][0.51228,0.342006,0.787783][0.858901,0.382522,0][0.333097,0.504865,0.792905][0.51228,0.342006,0.787783][0.858901,0.382522,0][0.507941,0,0.941693][0.795412,0.733051,1.65457][0.889999,0.488043,0][0.454128,0.648608,0.676557][0.527235,0.279253,0.802522][0.834583,0.352478,0][0.808619,1.79383,-0.193009][0.64946,-0.0384623,-0.759422][0.652836,0.113114,0][0.728969,1.85899,-0.235635][0.375554,0.184848,-0.90818][0.643927,0.0994954,0][1.09175,2.2758,-0.0152055][0.592515,-0.0628258,-0.46715][0.689998,0.0123798,0][0.882463,1.73342,0.0373203][0.960932,-0.252907,0.112458][0.700977,0.125741,0][0.86461,1.74803,-0.108309][0.888663,-0.202213,-0.411568][0.670539,0.122688,0][1.09175,2.2758,-0.0152055][0.592515,-0.0628258,-0.46715][0.689998,0.0123798,0][0.790725,1.20385,0.0722324][0.992677,-0.0535538,0.108281][0.708274,0.236426,0][0.693441,0.905796,0.358862][0.87134,0.0882126,0.482686][0.768182,0.298723,0][0.774166,0.874114,0.188664][0.948427,0.110069,0.297272][0.732609,0.305345,0][0.941159,0.258178,0.142057][0.913649,0.391758,0.108498][0.722868,0.434081,0][0.941159,0.258178,-0.142059][0.913365,0.38602,-0.129432][0.663485,0.434081,0][0.791383,0.711982,-0.211654][0.933145,0.20162,-0.297641][0.648939,0.339232,0][1.27687,2.2015,-0.182136][0.633168,-0.244279,-0.734456][0.0747728,0.901013,0][1.09818,2.1306,-0.225957][0.0402535,-0.44521,-0.894521][0.0895922,0.93836,0][1.13983,2.19562,-0.249823][0.0394769,-0.22673,-0.973157][0.0760021,0.929656,0][0.923143,2.32213,-0.182136][-0.721862,0.233804,-0.651345][0.0495604,0.974945,0][1.01067,2.45392,-0.151913][-0.331496,0.736052,-0.590201][0.0220143,0.95665,0][0.986627,2.32801,-0.225923][-0.391392,0.251143,-0.885291][0.048331,0.961676,0][1.16572,0.139328,0.0870666][0.69293,0.711056,0.119364][0.313188,0.589667,0][1.21288,0.0294806,0.0905947][0.990983,-0.0418889,0.12727][0.31245,0.566708,0][1.22339,0.0338603,-0.104533][0.99949,-0.0316782,-0.00400833][0.353234,0.567624,0][1.0786,0.0961145,0.470652][0.784955,0.487194,0.382737][0.233015,0.580635,0][1.02665,0.150766,0.453864][0.429602,0.871759,0.235537][0.236523,0.592058,0][0.977069,0.0882719,0.653029][0.746135,0.377081,0.548718][0.194896,0.578996,0][-0.826918,0,-0.621222][0,-2.51327,0][0.563335,0.488043,0][-0.137211,-1.25279e-007,-1.04388][0,-2.43473,0][0.474996,0.488043,0][0.507939,-1.2087e-007,-0.941693][0,-2.74889,1.20158e-007][0.496353,0.488043,0][0.193456,-1.25309e-007,-1.04388][0,0.483188,-1.25436][0.474996,0.488043,0][-0.137211,-1.25279e-007,-1.04388][0,-2.43473,0][0.474996,0.488043,0][0.00495275,0.762982,-0.74997][-0.0609775,0.39931,-0.914786][0.536425,0.328573,0][-0.699126,0.700172,-0.25763][-0.835889,0.465032,-0.291607][0.284747,0.3417,0][-0.535573,0.900617,-0.344723][-0.732053,0.526276,-0.432588][0.30295,0.299806,0][-0.751649,0.470314,-0.41227][-0.816471,0.379059,-0.435533][0.317068,0.389743,0][-0.826917,0,0.621224][0,-2.43473,0][0.823018,0.488043,0][-1.01575,0,-0.165333][0,-2.67035,0][0.65862,0.488043,0][-0.826918,0,-0.621222][0,-2.51327,0][0.563335,0.488043,0][0.141893,0.158668,1.01658][0.0225128,0.960289,-0.278096][0.11891,0.59371,0][-0.0308467,0.168452,1.1043][0.0308151,0.963223,0.26693][0.100575,0.595754,0][0.488895,0.145942,0.990606][0.243992,0.904599,0.349527][0.124339,0.59105,0][-0.0308467,0.168452,1.1043][0.0308151,0.963223,0.26693][0.100575,0.595754,0][0.141893,0.158668,1.01658][0.0225128,0.960289,-0.278096][0.11891,0.59371,0][-0.499966,0.182249,0.923209][-0.00517577,0.999861,0.0158438][0.138426,0.598638,0][0.854043,0.269095,-0.41227][0.824702,0.386224,-0.413155][0.607008,0.4318,0][0.941159,0.258178,-0.142059][0.913365,0.38602,-0.129432][0.663485,0.434081,0][1.03328,0,-0.326596][2.54973,1.3029,-0.816645][0.624915,0.488043,0][0.507939,-1.2087e-007,-0.941693][0,-2.74889,1.20158e-007][0.496353,0.488043,0][0.883162,0,-0.621223][0.082139,0.0435687,-0.118484][0.563335,0.488043,0][1.08501,0,0][0,-2.59181,0][0.693176,0.488043,0][1.26032,2.45392,-0.0707987][0.581801,0.773308,-0.251996][0.0220143,0.904472,0][1.31345,2.39303,-0.0695573][0.870404,0.435991,-0.228712][0.034741,0.893368,0][1.23009,2.39303,-0.184281][0.524639,0.522939,-0.671781][0.034741,0.910789,0][1.21486,2.45392,0.129122][0.449151,0.761654,0.467062][0.514527,0.84701,0][1.31345,2.39303,0.0653084][0.83456,0.499586,0.232214][0.493922,0.859737,0][1.17091,2.5114,-0.00212445][0.297185,0.951159,0.0835357][0.523713,0.834996,0][-1.03856,0.133151,-0.503348][-0.49468,0.842758,-0.212251][0.23145,0.679871,0][-1.09039,0.071416,-0.508853][-0.859529,0.350196,-0.372253][0.230299,0.666968,0][-1.14065,0.0940102,-0.312672][-0.765956,0.618254,-0.176277][0.271303,0.67169,0][-1.02415,0.129857,0.177487][0.0512775,0.998655,0.00771456][0.294289,0.587688,0][-0.953592,0.097452,0.151959][0.612605,0.787628,-0.0660029][0.299624,0.580915,0][-0.926431,0.110962,-0.302059][0.660001,0.731454,0.171387][0.394519,0.583739,0][-1.09711,-0.0388447,0.613567][-0.854501,0.0254147,0.518827][0.464896,0.643922,0][-1.07787,-0.115688,0.604006][-0.688104,-0.560082,0.461326][0.462897,0.627862,0][-0.982334,-0.0988274,0.733889][-0.581941,-0.556274,0.593215][0.490044,0.631386,0][-0.464491,-0.115469,0.849119][0.102474,-0.989507,-0.101855][0.153911,0.536412,0][-0.823353,-0.134698,0.804054][-0.250039,-0.862688,0.439602][0.16333,0.532393,0][-0.764066,-0.153167,0.740235][0.107275,-0.992221,0.0631661][0.176669,0.528533,0][-0.35606,1.08165,0.40259][-0.634612,0.535931,0.556817][0.146755,0.261968,0][-0.155434,1.47204,0.165677][-0.680188,0.663334,0.31198][0.196272,0.180372,0][-0.448659,1.11148,0.211654][-0.752347,0.57426,0.3228][0.186662,0.255733,0][-0.751648,0.470314,0.412271][-0.807114,0.405672,0.42895][0.144731,0.389743,0][-0.699126,0.700172,0.257631][-0.808754,0.47751,0.343367][0.177052,0.3417,0][-0.898697,0.243419,0.303609][-0.900438,0.333669,0.279065][0.167443,0.437166,0][1.31345,2.39303,-0.0695573][0.870404,0.435991,-0.228712][0.034741,0.893368,0][1.34789,2.19562,0.0365472][0.970764,-0.200906,0.131356][0.0760021,0.88617,0][1.32586,2.2015,-0.114703][0.912333,-0.178949,-0.368273][0.0747728,0.890773,0][1.15737,2.01222,-0.0438002][0.282473,-0.950217,-0.13152][0.114333,0.92599,0][1.31232,2.1306,-0.0730275][0.845459,-0.49173,-0.208328][0.0895922,0.893604,0][1.27007,2.06971,0.0365472][0.595821,-0.798345,0.087423][0.102319,0.902434,0][0.028881,1.61873,-0.209629][-0.593448,0.695215,-0.40558][0.274714,0.149713,0][0.25193,1.72759,-0.273902][-0.367009,0.638862,-0.676136][0.288148,0.12696,0][-0.0368969,1.41677,-0.379109][-0.454375,0.589281,-0.668051][0.310137,0.191925,0][-0.179216,1.48313,3.65519e-007][-0.715081,0.698701,-0.0218033][0.2309,0.178054,0][-0.155434,1.47204,0.165677][-0.680188,0.663334,0.31198][0.196272,0.180372,0][0.159904,1.78541,0.0605962][-0.601117,0.779938,0.174228][0.218234,0.114875,0][1.11332,0.142551,-0.455818][0.575975,0.792788,-0.199347][0.426656,0.590341,0][1.13726,0.111986,-0.467393][0.835515,0.488789,-0.250999][0.429075,0.583953,0][1.06633,0.104413,-0.628253][0.653398,0.629066,-0.421125][0.462696,0.58237,0][0.684111,0.127024,-0.945059][0.19799,0.89897,-0.390708][0.528912,0.587096,0][0.329637,0.132566,-0.979345][-0.037065,0.991858,0.121833][0.536078,0.588254,0][0.824299,0.15754,-0.639161][-0.183524,0.979977,0.0772238][0.464976,0.593474,0][0.493084,-0.176767,-0.949697][0.0707232,-0.996045,-0.0537756][0.529881,0.5236,0][0.3733,-0.163265,-1.09091][0.171497,-0.841421,-0.512444][0.559396,0.526422,0][0.810399,-0.139047,-0.83651][0.338409,-0.878616,-0.336917][0.506224,0.531484,0][0.0122331,-0.174511,-1.04564][-0.0130506,-0.989549,0.143603][0.549934,0.524072,0][-0.156803,-0.171805,-1.12598][-0.0640342,-0.963518,-0.259871][0.566726,0.524638,0][0.0212981,-0.162503,-1.16613][-0.0265358,-0.903526,-0.427711][0.575119,0.526582,0][-0.738499,0.00202291,0.513499][0.794215,0.0349176,-0.606633][0.224059,0.560969,0][-0.662464,-0.0702684,0.632407][0.733462,-0.170155,-0.658088][0.199206,0.54586,0][-0.913379,-0.126039,0.303664][0.646254,-0.732866,-0.212753][0.267917,0.534203,0][-0.953592,0.097452,0.151959][0.612605,0.787628,-0.0660029][0.299624,0.580915,0][-0.875782,0.0316185,0.27557][0.92319,0.259649,-0.283376][0.273788,0.567155,0][-0.913465,-0.00429873,-0.143983][0.98599,-0.10629,0.128551][0.361479,0.559648,0][1.18318,-0.0451213,-0.2845][0.847545,-0.505444,-0.161846][0.390849,0.551116,0][1.12587,-0.108258,-0.263447][0.53543,-0.839102,-0.0960319][0.386448,0.53792,0][0.948664,-0.101762,-0.746352][0.596673,-0.721055,-0.352222][0.48738,0.539277,0][0.810399,-0.139047,-0.83651][0.338409,-0.878616,-0.336917][0.506224,0.531484,0][1.00525,-0.139362,-0.392051][0.121702,-0.992015,-0.0330727][0.413328,0.531419,0][0.750517,-0.161722,-0.771202][0.0634641,-0.997952,0.00797214][0.492574,0.526745,0][0.985152,2.06971,0.129122][-0.408672,-0.769116,0.491373][0.562538,0.927315,0][0.886564,2.1306,0.0653084][-0.821546,-0.506627,0.261515][0.583144,0.914588,0][0.908474,2.08678,-0.00212442][-0.718412,-0.694103,0.0458877][0.578565,0.923747,0][1.15737,2.01222,-0.0438002][0.282473,-0.950217,-0.13152][0.526544,0.939329,0][1.27007,2.06971,0.0365472][0.595821,-0.798345,0.087423][0.502988,0.927315,0][1.07809,2.01222,0.0653084][-0.0273457,-0.951727,0.305724][0.543112,0.939329,0][-0.245152,0.0188195,1.19288][-0.189165,0.0673815,0.979631][0.585978,0.655975,0][-0.0557947,-0.0234923,1.2136][-0.05711,-0.208462,0.976362][0.590309,0.647131,0][0.140175,0.013697,1.21477][0.097076,-0.0409346,0.994435][0.590554,0.654904,0][-0.419527,-0.0602226,1.11781][-0.32278,-0.527482,0.78586][0.570287,0.639454,0][-0.593874,0.0174512,1.06432][-0.441354,0.0793077,0.893822][0.559108,0.655689,0][-0.743173,-0.0276365,0.967832][-0.511557,-0.401452,0.759701][0.538941,0.646265,0][-0.520991,0.107403,-1.08883][-0.310038,0.669133,-0.67538][0.109077,0.67449,0][-0.539935,-0.00449521,-1.13039][-0.461088,0.0209924,-0.887106][0.100391,0.651102,0][-0.712794,-0.00137417,-1.02104][-0.593703,-0.0923674,-0.799365][0.123247,0.651754,0][-0.343291,0.101004,-1.15653][-0.178977,0.667023,-0.72322][0.0949277,0.673152,0][-0.355831,-0.0113315,-1.20322][-0.283619,0.0743696,-0.956049][0.0851693,0.649673,0][-0.520991,0.107403,-1.08883][-0.310038,0.669133,-0.67538][0.109077,0.67449,0][1.01792,0.173416,0.263312][0.0190881,0.999447,0.0272208][0.391689,0.688287,0][0.884423,0.139878,0.409708][-0.64107,0.700861,-0.312768][0.422287,0.681277,0][0.700718,0.126513,0.686512][-0.399389,0.83356,-0.381663][0.480142,0.678484,0][0.488895,0.145942,0.990606][0.243992,0.904599,0.349527][0.124339,0.59105,0][0.600733,0.140938,0.826926][-0.212792,0.941052,-0.262946][0.15855,0.590004,0][0.141893,0.158668,1.01658][0.0225128,0.960289,-0.278096][0.11891,0.59371,0][0.751085,2.08796,-0.132824][-0.165166,0.661114,-0.73188][0.665415,0.0516391,0][1.09175,2.2758,-0.0152055][0.592515,-0.0628258,-0.46715][0.689998,0.0123798,0][0.671196,1.90626,-0.235635][0.0830045,0.41191,-0.907436][0.643927,0.0896171,0][0.524466,2.02629,-0.0737227][-0.448515,0.857009,-0.253712][0.246308,0.0645284,0][0.524466,2.02629,0.0737229][-0.466166,0.843634,0.266403][0.215491,0.0645284,0][0.89091,2.21842,0.0140458][-0.357686,0.918735,0.167292][0.227964,0.0243726,0][0.702127,-0.0049209,0.982153][0.617227,-0.0982616,0.780625][0.126106,0.559518,0][0.6938,0.0733359,0.96398][0.494438,0.547315,0.67526][0.129904,0.575874,0][0.52439,-0.00156935,1.09647][0.45658,0.0383579,0.888855][0.102212,0.560218,0][0.52439,-0.00156935,1.09647][0.45658,0.0383579,0.888855][0.102212,0.560218,0][0.50534,-0.116874,1.05909][0.3507,-0.605722,0.71422][0.110025,0.536119,0][0.702127,-0.0049209,0.982153][0.617227,-0.0982616,0.780625][0.126106,0.559518,0][0.728969,1.85899,-0.235635][0.375554,0.184848,-0.90818][0.643927,0.0994954,0][0.699801,1.07324,-0.315136][0.824418,0.0560789,-0.563197][0.62731,0.263726,0][0.592303,1.12337,-0.433747][0.626988,0.136686,-0.766944][0.602519,0.253249,0][0.561456,0.461657,-0.674486][0.62333,0.292223,-0.725304][0.552202,0.391552,0][0.451855,0.482395,-0.742841][0.461347,0.329512,-0.82376][0.537915,0.387218,0][0.409275,1.01732,-0.580652][0.479636,0.261064,-0.837732][0.571815,0.275413,0][1.21486,2.45392,0.129122][0.449151,0.761654,0.467062][0.514527,0.84701,0][1.21655,2.32213,0.221708][0.499871,0.23149,0.834591][0.514173,0.874556,0][1.31345,2.39303,0.0653084][0.83456,0.499586,0.232214][0.493922,0.859737,0][1.15919,2.43685,0.180032][0.155062,0.702186,0.694903][0.526162,0.850578,0][1.13728,2.32213,0.247465][0.0907094,0.242698,0.965852][0.530742,0.874556,0][1.21655,2.32213,0.221708][0.499871,0.23149,0.834591][0.514173,0.874556,0][0.87415,2.32213,0.110454][-0.898059,0.18909,0.397158][0.585739,0.874556,0][0.887692,2.39303,0.0687787][-0.824464,0.509546,0.246217][0.582908,0.859737,0][0.852125,2.32801,-0.0407961][-0.970226,0.194618,-0.144172][0.590342,0.873327,0][0.852125,2.32801,-0.0407961][-0.970226,0.194618,-0.144172][0.048331,0.989788,0][0.887692,2.39303,-0.0730275][-0.80624,0.503502,-0.310585][0.034741,0.982355,0][0.923143,2.32213,-0.182136][-0.721862,0.233804,-0.651345][0.0495604,0.974945,0][0.969817,0,0.479815][0.896916,0.432149,0.291424][0.793462,0.488043,0][0.35472,0,1.00516][0.224919,0.551876,1.42007][0.903264,0.488043,0][1.08501,0,0][0,-2.59181,0][0.693176,0.488043,0][0.507941,0,0.941693][0.795412,0.733051,1.65457][0.889999,0.488043,0][0.580825,0.303334,0.73467][0.646705,0.347404,0.679031][0.84673,0.424643,0][0.552579,0.623539,0.6143][0.628646,0.287661,0.722534][0.821571,0.357717,0][0.926938,-0.0683631,-0.0459559][-0.811245,-0.58463,-0.00942857][0.327049,0.637753,0][0.905117,0.0095525,-0.0437636][-0.999599,-0.0206828,-0.0193643][0.327507,0.654038,0][0.89068,0.00974836,-0.184495][-0.978056,-0.0353922,0.205315][0.298093,0.654079,0][0.824299,0.15754,-0.639161][-0.183524,0.979977,0.0772238][0.203064,0.684969,0][0.670857,0.108103,-0.691406][-0.506415,0.654287,0.561651][0.192144,0.674636,0][0.875424,0.0887662,-0.329668][-0.779865,0.558359,0.282923][0.267751,0.670594,0][-0.662464,-0.0702684,0.632407][0.733462,-0.170155,-0.658088][0.199206,0.54586,0][-0.738499,0.00202291,0.513499][0.794215,0.0349176,-0.606633][0.224059,0.560969,0][-0.544189,-0.0250008,0.709689][0.543142,-0.277962,-0.792297][0.183054,0.555321,0][-0.57056,-0.0958356,0.743122][0.39094,-0.744485,-0.54121][0.176066,0.540516,0][-0.544189,-0.0250008,0.709689][0.543142,-0.277962,-0.792297][0.183054,0.555321,0][-0.157569,-0.0250827,0.885835][0.226027,-0.255412,-0.940041][0.146237,0.555304,0][-0.899897,-0.135437,-0.448857][0.564728,-0.781888,0.264072][0.425201,0.532239,0][-1.03468,-0.168013,-0.291314][-0.0216539,-0.997304,-0.0701186][0.392273,0.52543,0][-0.766163,-0.155736,-0.776447][-0.386739,-0.900444,-0.199079][0.49367,0.527996,0][-0.672572,-0.139147,-0.958937][-0.36429,-0.809404,-0.460607][0.136227,0.622958,0][-0.766163,-0.155736,-0.776447][-0.386739,-0.900444,-0.199079][0.17437,0.619491,0][-1.03468,-0.168013,-0.291314][-0.0216539,-0.997304,-0.0701186][0.275767,0.616925,0][-0.593874,0.0174512,1.06432][-0.441354,0.0793077,0.893822][0.559108,0.655689,0][-0.543841,0.159252,0.993567][-0.264402,0.801483,0.536392][0.544319,0.685327,0][-0.728962,0.094029,0.951868][-0.507551,0.560867,0.65408][0.535604,0.671694,0][-0.80313,0.135706,0.56217][0.245016,0.916799,-0.315352][0.213886,0.58891,0][-0.955591,0.139846,0.487167][-0.127966,0.991421,-0.0266348][0.229563,0.589776,0][-0.499966,0.182249,0.923209][-0.00517577,0.999861,0.0158438][0.138426,0.598638,0][-0.0303804,-0.141087,1.01689][-0.0371145,-0.98286,-0.180579][0.549195,0.622553,0][0.13406,-0.145709,1.09706][-0.0120323,-0.952659,0.303803][0.56595,0.621587,0][-0.395056,-0.116515,1.0616][-0.173889,-0.892706,0.41574][0.55854,0.627689,0][0.659004,-0.147096,0.92741][0.395968,-0.789808,0.468415][0.137548,0.529802,0][0.702127,-0.0049209,0.982153][0.617227,-0.0982616,0.780625][0.126106,0.559518,0][0.50534,-0.116874,1.05909][0.3507,-0.605722,0.71422][0.110025,0.536119,0][-0.913465,-0.00429873,-0.143983][0.98599,-0.10629,0.128551][0.361479,0.559648,0][-0.934418,-0.08531,-0.138446][0.842914,-0.527385,0.106589][0.360322,0.542716,0][-0.847508,-0.0759333,-0.433841][0.821599,-0.412094,0.393895][0.422062,0.544676,0][-0.671759,-0.0752003,-0.68937][0.655507,-0.471575,0.589854][0.47547,0.544829,0][-0.899897,-0.135437,-0.448857][0.564728,-0.781888,0.264072][0.425201,0.532239,0][-0.588528,-0.13729,-0.836179][0.357216,-0.763381,0.538188][0.506155,0.531851,0][-1.02547,-0.166577,0.563929][-0.298952,-0.923124,0.241804][0.454521,0.617225,0][-0.982334,-0.0988274,0.733889][-0.581941,-0.556274,0.593215][0.490044,0.631386,0][-1.07787,-0.115688,0.604006][-0.688104,-0.560082,0.461326][0.462897,0.627862,0][-1.01941,-0.186301,0.3715][0.0834112,-0.996467,-0.00979269][0.414302,0.613103,0][-1.17308,-0.159447,0.277156][-0.50724,-0.854702,0.11042][0.394583,0.618715,0][-1.15935,-0.175458,0.0866602][-0.40527,-0.911791,-0.0662822][0.354767,0.615369,0][0.648459,-0.0540569,0.644055][-0.677967,-0.229081,-0.698485][0.471268,0.640743,0][0.65996,0.0669656,0.65074][-0.622233,0.45152,-0.639497][0.472665,0.666038,0][0.743582,0.0324345,0.522262][-0.815842,0.258045,-0.517507][0.445812,0.658821,0][0.676573,-0.124633,0.673098][-0.505143,-0.710075,-0.490535][0.477338,0.625992,0][0.724922,-0.163861,0.719778][-0.0849094,-0.990982,-0.103662][0.487095,0.617793,0][0.451072,-0.164026,0.924802][-0.103849,-0.978355,-0.178987][0.529947,0.617758,0][0.925923,0.0907754,-0.0494777][-0.863204,0.504853,0.00165961][0.326313,0.671014,0][0.905117,0.0095525,-0.0437636][-0.999599,-0.0206828,-0.0193643][0.327507,0.654038,0][0.871764,0.0443309,0.246563][-0.889391,0.408635,-0.204943][0.388189,0.661307,0][0.819023,-0.0440294,0.39133][-0.88339,-0.187882,-0.429327][0.418446,0.642839,0][0.912511,-0.106362,0.255835][-0.609722,-0.75665,-0.236049][0.390126,0.629811,0][0.676573,-0.124633,0.673098][-0.505143,-0.710075,-0.490535][0.477338,0.625992,0][-0.977037,0,0.326597][-1.03284,0.399103,0.52626][0.162638,0.488043,0][-0.826917,0,0.621224][0,-2.43473,0][0.101058,0.488043,0][-0.751648,0.470314,0.412271][-0.807114,0.405672,0.42895][0.144731,0.389743,0][-0.826917,0,0.621224][0,-2.43473,0][0.823018,0.488043,0][-0.977037,0,0.326597][-1.03284,0.399103,0.52626][0.761438,0.488043,0][-1.01575,0,-0.165333][0,-2.67035,0][0.65862,0.488043,0][-0.124607,1.00708,0.610274][-0.302557,0.457351,0.836235][0.103347,0.277553,0][-0.168217,1.24397,0.431713][-0.503277,0.567901,0.651307][0.140668,0.228041,0][-0.401542,0.643866,0.674486][-0.487591,0.421573,0.764546][0.0899255,0.353469,0][-0.448659,1.11148,0.211654][-0.752347,0.57426,0.3228][0.186662,0.255733,0][-0.58277,0.678156,0.490043][-0.697758,0.458665,0.550237][0.128476,0.346302,0][-0.35606,1.08165,0.40259][-0.634612,0.535931,0.556817][0.146755,0.261968,0][1.07809,2.01222,0.0653084][-0.0273457,-0.951727,0.305724][0.114333,0.942559,0][1.0291,2.01222,-0.00212443][-0.308972,-0.95103,0.00889753][0.114333,0.952798,0][1.07809,2.01222,-0.0695573][-0.10394,-0.95103,-0.2911][0.114333,0.942559,0][0.939691,2.06971,-0.0707987][-0.57291,-0.742893,-0.346243][0.102319,0.971486,0][1.04082,2.08678,-0.184281][-0.326131,-0.670847,-0.666035][0.0987511,0.95035,0][1.07809,2.01222,-0.0695573][-0.10394,-0.95103,-0.2911][0.114333,0.942559,0][-0.869499,-0.000281773,-0.877665][-0.721219,0.0318246,-0.691976][0.153214,0.651982,0][-0.840207,-0.111369,-0.845488][-0.556189,-0.641667,-0.528126][0.159939,0.628764,0][-0.988039,-0.0801959,-0.688873][-0.740815,-0.465411,-0.484341][0.192673,0.63528,0][-0.815674,0.139803,-0.834896][-0.338818,0.868249,-0.362416][0.162153,0.681262,0][-0.869499,-0.000281773,-0.877665][-0.721219,0.0318246,-0.691976][0.153214,0.651982,0][-0.986038,0.0789427,-0.699849][-0.754516,0.42672,-0.498613][0.190379,0.668541,0][0.00903557,0.0939686,-0.970002][-0.0288356,0.730125,0.682705][0.534125,0.580187,0][0.0151988,0.132921,-1.04061][0.000755939,0.974509,0.224348][0.548882,0.588328,0][-0.147204,0.137236,-1.03704][0.0567344,0.97506,0.214567][0.548136,0.58923,0][-0.291261,0.102572,-0.939522][0.233875,0.660794,0.7132][0.527754,0.581985,0][-0.418808,0.0373188,-0.850806][0.41011,0.246435,0.878111][0.509212,0.568347,0][-0.139275,0.0272654,-0.927272][0.116782,0.244828,0.962508][0.525194,0.566245,0][0.82329,0.701702,0][0.985822,0.167623,-0.00756116][0.693176,0.341381,0][0.774165,0.874114,-0.188665][0.957379,0.0870037,-0.275419][0.653744,0.305345,0][0.790725,1.20385,-0.0722335][0.993517,0.0812246,-0.0795379][0.678079,0.236426,0][0.749194,1.41514,-0.227683][0.983125,-0.133311,-0.125271][0.645589,0.192266,0][0.790725,1.20385,-0.0722335][0.993517,0.0812246,-0.0795379][0.678079,0.236426,0][0.774165,0.874114,-0.188665][0.957379,0.0870037,-0.275419][0.653744,0.305345,0][0.00495392,0.762982,0.74997][-0.0709285,0.39875,0.914313][0.849927,0.328573,0][0.0281239,0,1.05689][0.0154793,0.965037,2.4819][0.914076,0.488043,0][0.326764,1.45651,0.456064][0.00584289,0.420704,0.907179][0.788498,0.183618,0][-0.401542,0.643866,0.674486][-0.487591,0.421573,0.764546][0.0899255,0.353469,0][-0.411279,0.212997,0.87541][-0.445537,0.340092,0.828151][0.0479305,0.443525,0][-0.124607,1.00708,0.610274][-0.302557,0.457351,0.836235][0.103347,0.277553,0][1.06018,2.32801,0.245574][-0.124189,0.326282,0.937079][0.546856,0.873327,0][0.966964,2.39303,0.177887][-0.461784,0.48968,0.739574][0.56634,0.859737,0][0.923143,2.32213,0.177887][-0.668152,0.179748,0.721985][0.575499,0.874556,0][0.985152,2.06971,0.129122][-0.408672,-0.769116,0.491373][0.562538,0.927315,0][0.969916,2.1306,0.180032][-0.516925,-0.483155,0.706647][0.565723,0.914588,0][0.886564,2.1306,0.0653084][-0.821546,-0.506627,0.261515][0.583144,0.914588,0][0.208104,0.528515,-0.823446][0.237864,0.356444,-0.903531][0.521068,0.377578,0][0.409275,1.01732,-0.580652][0.479636,0.261064,-0.837732][0.571815,0.275413,0][0.451855,0.482395,-0.742841][0.461347,0.329512,-0.82376][0.537915,0.387218,0][-0.137211,-1.25279e-007,-1.04388][0,-2.43473,0][0.474996,0.488043,0][0.193456,-1.25309e-007,-1.04388][0,0.483188,-1.25436][0.474996,0.488043,0][0.507939,-1.2087e-007,-0.941693][0,-2.74889,1.20158e-007][0.496353,0.488043,0][1.09629,-0.118293,0.280313][0.62762,-0.766513,0.136202][0.272797,0.535822,0][1.17111,0.0241022,0.286288][0.967239,-0.0342246,0.251551][0.271548,0.565584,0][1.07886,-0.0630241,0.475145][0.803996,-0.482228,0.347918][0.232075,0.547374,0][1.17111,0.0241022,0.286288][0.967239,-0.0342246,0.251551][0.271548,0.565584,0][1.12584,0.134041,0.276542][0.672309,0.714337,0.194225][0.273585,0.588562,0][1.0786,0.0961145,0.470652][0.784955,0.487194,0.382737][0.233015,0.580635,0][0.211726,0.0839651,-1.17187][0.158111,0.681481,-0.714552][0.576317,0.578096,0][0.220523,-0.0304661,-1.21809][0.236126,-0.0855595,-0.967948][0.585978,0.554179,0][0.0292531,0.014075,-1.23744][0.0614803,0.359155,-0.931251][0.590021,0.563488,0][0.568005,0.058457,-1.08071][0.339249,0.491161,-0.802291][0.557264,0.572765,0][0.73503,-0.0113983,-1.01061][0.545912,-0.0766649,-0.834328][0.542612,0.558164,0][0.405334,-0.0284817,-1.16833][0.285596,-0.0509241,-0.956996][0.575577,0.554594,0][-1.03856,0.133151,-0.503348][-0.49468,0.842758,-0.212251][0.23145,0.679871,0][-1.03353,0.150264,-0.315318][-0.177737,0.983989,-0.0132714][0.27075,0.683448,0][-0.76231,0.162541,-0.784333][-0.0543918,0.995927,-0.0719098][0.172721,0.686014,0][-0.76231,0.162541,-0.784333][-0.0543918,0.995927,-0.0719098][0.172721,0.686014,0][-0.670173,0.136489,-0.962239][-0.329259,0.847904,-0.415508][0.135537,0.680569,0][-0.939754,0.13943,-0.680409][-0.443896,0.852882,-0.274863][0.194442,0.681184,0][0.360866,1.89839,-0.142083][-0.473661,0.760013,-0.445001][0.260596,0.0912604,0][0.336299,1.91606,-0.0489582][-0.552679,0.8268,-0.104635][0.241132,0.0875687,0][0.524466,2.02629,-0.0737227][-0.448515,0.857009,-0.253712][0.246308,0.0645284,0][0.159903,1.78541,-0.0605957][-0.615734,0.77069,-0.164038][0.243565,0.114875,0][0.360866,1.89839,-0.142083][-0.473661,0.760013,-0.445001][0.260596,0.0912604,0][0.028881,1.61873,-0.209629][-0.593448,0.695215,-0.40558][0.274714,0.149713,0][0.757144,1.83595,0.226895][0.490874,0.0860341,0.866972][0.7406,0.104313,0][0.792855,1.58782,0.183955][0.813806,-0.0742917,0.576368][0.731625,0.156174,0][0.995795,2.10817,0.063489][0.724392,-0.159798,0.670612][0.706446,0.047416,0][0.89091,2.21842,0.0140458][-0.357686,0.918735,0.167292][0.227964,0.0243726,0][0.901967,2.20679,-0.0527757][-0.247832,0.812664,-0.527405][0.24193,0.0268019,0][0.524466,2.02629,-0.0737227][-0.448515,0.857009,-0.253712][0.246308,0.0645284,0][0.0277378,-0.0683013,-1.23874][0.0469238,-0.28212,-0.958231][0.0777459,0.637766,0][0.0238805,-0.13829,-1.19868][-0.047955,-0.676699,-0.734696][0.0861184,0.623137,0][-0.164802,-0.0200268,-1.23998][-0.112393,-0.130344,-0.985078][0.077486,0.647856,0][-0.355831,-0.0113315,-1.20322][-0.283619,0.0743696,-0.956049][0.0851693,0.649673,0][-0.343291,0.101004,-1.15653][-0.178977,0.667023,-0.72322][0.0949277,0.673152,0][-0.161578,0.0598636,-1.21703][-0.0566902,0.561279,-0.825683][0.0822839,0.664553,0][-0.672572,-0.139147,-0.958937][-0.36429,-0.809404,-0.460607][0.136227,0.622958,0][-0.712794,-0.00137417,-1.02104][-0.593703,-0.0923674,-0.799365][0.123247,0.651754,0][-0.523346,-0.117653,-1.09007][-0.381388,-0.643711,-0.663461][0.108819,0.627451,0][-0.766163,-0.155736,-0.776447][-0.386739,-0.900444,-0.199079][0.17437,0.619491,0][-0.672572,-0.139147,-0.958937][-0.36429,-0.809404,-0.460607][0.136227,0.622958,0][-0.338689,-0.149375,-1.12968][-0.137856,-0.857226,-0.496144][0.100541,0.620821,0][1.04082,2.08678,-0.184281][-0.326131,-0.670847,-0.666035][0.0987511,0.95035,0][0.886564,2.1306,-0.0695573][-0.808301,-0.489681,-0.326898][0.0895922,0.98259,0][0.983457,2.2015,-0.225957][-0.407149,-0.249376,-0.878659][0.0747728,0.962339,0][1.09818,2.1306,-0.225957][0.0402535,-0.44521,-0.894521][0.0895922,0.93836,0][0.983457,2.2015,-0.225957][-0.407149,-0.249376,-0.878659][0.0747728,0.962339,0][1.13728,2.32213,-0.251714][0.0958692,0.177468,-0.979446][0.0495604,0.930188,0][0.00495275,0.762982,-0.74997][-0.0609775,0.39931,-0.914786][0.387651,0.328573,0][-0.173183,0.600658,-0.792906][-0.242749,0.406287,-0.880911][0.396625,0.3625,0][-0.0243644,1.18751,-0.543989][-0.264934,0.476493,-0.83831][0.344599,0.239841,0][0.25193,1.72759,-0.273902][-0.367009,0.638862,-0.676136][0.288148,0.12696,0][0.382497,1.64555,-0.368398][-0.0729991,0.468239,-0.880581][0.307898,0.144108,0][-0.0243644,1.18751,-0.543989][-0.264934,0.476493,-0.83831][0.344599,0.239841,0][0.480254,-0.16149,0.997651][0.11215,-0.950323,0.290359][0.545173,0.618288,0][-0.0303804,-0.141087,1.01689][-0.0371145,-0.98286,-0.180579][0.549195,0.622553,0][0.451072,-0.164026,0.924802][-0.103849,-0.978355,-0.178987][0.529947,0.617758,0][0.13406,-0.145709,1.09706][-0.0120323,-0.952659,0.303803][0.56595,0.621587,0][-0.0303804,-0.141087,1.01689][-0.0371145,-0.98286,-0.180579][0.549195,0.622553,0][0.480254,-0.16149,0.997651][0.11215,-0.950323,0.290359][0.545173,0.618288,0][0.855179,-0.0797928,-0.886679][0.563947,-0.551418,-0.614737][0.51671,0.543869,0][0.872237,0.000153834,-0.906709][0.666296,0.0253514,-0.745256][0.520896,0.560579,0][0.989103,0.0138912,-0.784125][0.789439,-0.071561,-0.609643][0.495275,0.56345,0][0.972224,0.0919753,-0.769733][0.606789,0.601631,-0.519468][0.492267,0.57977,0][0.989103,0.0138912,-0.784125][0.789439,-0.071561,-0.609643][0.495275,0.56345,0][0.872237,0.000153834,-0.906709][0.666296,0.0253514,-0.745256][0.520896,0.560579,0][0.3733,-0.163265,-1.09091][0.171497,-0.841421,-0.512444][0.559396,0.526422,0][0.493084,-0.176767,-0.949697][0.0707232,-0.996045,-0.0537756][0.529881,0.5236,0][0.0122331,-0.174511,-1.04564][-0.0130506,-0.989549,0.143603][0.549934,0.524072,0][0.00940505,-0.157403,-1.007][-0.054517,-0.802869,0.593658][0.126183,0.619143,0][0.451615,-0.153831,-0.879014][-0.400738,0.0728588,0.913291][0.152932,0.619889,0][0.290679,-0.0977864,-0.886699][-0.286799,-0.487428,0.824718][0.151326,0.631603,0][-1.15935,-0.175458,0.0866602][-0.40527,-0.911791,-0.0662822][0.354767,0.615369,0][-1.21797,-0.126086,0.104586][-0.874292,-0.482019,-0.0571869][0.358514,0.625688,0][-1.22874,-0.0379823,-0.0938634][-0.983836,-0.102591,-0.146769][0.317036,0.644103,0][-1.18277,0.0805455,-0.116692][-0.799773,0.594269,-0.0848969][0.312265,0.668876,0][-1.22874,-0.0379823,-0.0938634][-0.983836,-0.102591,-0.146769][0.317036,0.644103,0][-1.23463,-0.00780537,0.0978408][-0.979773,0.193795,0.0498782][0.357104,0.65041,0][-0.847508,-0.0759333,-0.433841][0.821599,-0.412094,0.393895][0.422062,0.544676,0][-0.832486,0.0450917,-0.433111][0.860073,0.211615,0.464212][0.42191,0.569971,0][-0.887257,0.0414162,-0.292242][0.937882,0.26583,0.22296][0.392467,0.569203,0][-0.926431,0.110962,-0.302059][0.660001,0.731454,0.171387][0.394519,0.583739,0][-0.887257,0.0414162,-0.292242][0.937882,0.26583,0.22296][0.392467,0.569203,0][-0.832486,0.0450917,-0.433111][0.860073,0.211615,0.464212][0.42191,0.569971,0][1.04556,0.177135,-0.420503][0.177534,0.978831,-0.101846][0.590554,0.827712,0][1.0064,0.172895,-0.229047][-0.109018,0.98762,0.112792][0.583945,0.787406,0][0.975081,0.151071,0.0957407][-0.587392,0.808209,-0.0420508][0.580065,0.719317,0][0.975081,0.151071,0.0957407][-0.587392,0.808209,-0.0420508][0.356665,0.683617,0][1.01792,0.173416,0.263312][0.0190881,0.999447,0.0272208][0.391689,0.688287,0][1.04556,0.177135,-0.420503][0.177534,0.978831,-0.101846][0.248765,0.689064,0][0.331808,0.115946,1.12873][0.247478,0.703541,0.666172][0.0954697,0.58478,0][0.488895,0.145942,0.990606][0.243992,0.904599,0.349527][0.124339,0.59105,0][-0.0308467,0.168452,1.1043][0.0308151,0.963223,0.26693][0.100575,0.595754,0][0.140175,0.013697,1.21477][0.097076,-0.0409346,0.994435][0.590554,0.654904,0][0.143703,0.0921268,1.19385][0.0970247,0.548667,0.830392][0.586181,0.671297,0][-0.0425376,0.129121,1.17491][-0.0171125,0.634941,0.772371][0.582222,0.679029,0][-1.15935,-0.175458,0.0866602][-0.40527,-0.911791,-0.0662822][0.354767,0.615369,0][-1.03468,-0.168013,-0.291314][-0.0216539,-0.997304,-0.0701186][0.275767,0.616925,0][-1.01941,-0.186301,0.3715][0.0834112,-0.996467,-0.00979269][0.414302,0.613103,0][-1.18548,-0.0228728,-0.299121][-0.95742,-0.112476,-0.265886][0.274135,0.647261,0][-1.04123,-0.142485,-0.482088][-0.444563,-0.873017,-0.200509][0.235893,0.622261,0][-1.14981,-0.165675,-0.0990524][-0.55197,-0.824536,-0.124377][0.315951,0.617414,0][0.27899,0.0741288,0.890145][-0.252383,0.482863,-0.838538][0.522703,0.667535,0][0.272127,-0.00564807,0.870069][-0.279542,0.338212,-0.898593][0.518507,0.650861,0][0.131686,0.043177,0.903801][-0.066218,0.267845,-0.961184][0.525558,0.661066,0][-0.157569,-0.0250827,0.885835][0.226027,-0.255412,-0.940041][0.146237,0.555304,0][-0.169468,-0.0952725,0.924527][0.165562,-0.68265,-0.711743][0.13815,0.540634,0][-0.57056,-0.0958356,0.743122][0.39094,-0.744485,-0.54121][0.176066,0.540516,0][0.028881,1.61873,-0.209629][-0.593448,0.695215,-0.40558][0.274714,0.149713,0][-0.179216,1.48313,3.65519e-007][-0.715081,0.698701,-0.0218033][0.2309,0.178054,0][0.159903,1.78541,-0.0605957][-0.615734,0.77069,-0.164038][0.243565,0.114875,0][-0.272734,1.28499,-0.277176][-0.669266,0.607672,-0.427571][0.288832,0.219468,0][-0.606715,0.918732,-0.118783][-0.82612,0.553412,-0.106113][0.255726,0.296019,0][-0.327681,1.30656,-0.0955081][-0.762453,0.629528,-0.149534][0.250862,0.21496,0][-1.03008,-0.167882,-0.122019][0.893366,-0.449286,0.00632539][0.356889,0.525458,0][-0.934418,-0.08531,-0.138446][0.842914,-0.527385,0.106589][0.360322,0.542716,0][-0.927063,-0.0919544,0.153973][0.895766,-0.411936,-0.167067][0.299203,0.541327,0][-0.832994,0.073257,0.408494][0.770182,0.442984,-0.458895][0.246006,0.575858,0][-0.875086,-0.0507577,0.279532][0.915689,-0.257999,-0.308141][0.27296,0.549938,0][-0.875782,0.0316185,0.27557][0.92319,0.259649,-0.283376][0.273788,0.567155,0][-0.999484,-0.0212405,0.745957][-0.738984,0.124406,0.662137][0.492567,0.647602,0][-0.728962,0.094029,0.951868][-0.507551,0.560867,0.65408][0.535604,0.671694,0][-1.07812,0.043451,0.590053][-0.734467,0.534698,0.417918][0.459981,0.661123,0][-1.15186,0.032244,0.439469][-0.79769,0.547267,0.253357][0.428508,0.658781,0][-1.21998,-0.0545221,0.291464][-0.982111,0.0472976,0.182266][0.397573,0.640646,0][-1.17152,-0.0505837,0.462046][-0.932351,0.0103318,0.361406][0.433226,0.641469,0][-0.543841,0.159252,0.993567][-0.264402,0.801483,0.536392][0.544319,0.685327,0][-0.593874,0.0174512,1.06432][-0.441354,0.0793077,0.893822][0.559108,0.655689,0][-0.426137,0.0184248,1.13941][-0.37319,0.113589,0.920775][0.574802,0.655892,0][-0.419527,-0.0602226,1.11781][-0.32278,-0.527482,0.78586][0.570287,0.639454,0][-0.426137,0.0184248,1.13941][-0.37319,0.113589,0.920775][0.574802,0.655892,0][-0.593874,0.0174512,1.06432][-0.441354,0.0793077,0.893822][0.559108,0.655689,0][0.0288813,1.61873,0.20963][-0.57474,0.687302,0.444175][0.187085,0.149713,0][-0.168217,1.24397,0.431713][-0.503277,0.567901,0.651307][0.140668,0.228041,0][0.218505,1.74859,0.227683][-0.455598,0.692628,0.559193][0.183312,0.122571,0][0.218505,1.74859,0.227683][-0.455598,0.692628,0.559193][0.183312,0.122571,0][0.159904,1.78541,0.0605962][-0.601117,0.779938,0.174228][0.218234,0.114875,0][0.0288813,1.61873,0.20963][-0.57474,0.687302,0.444175][0.187085,0.149713,0][-0.582771,0.678156,-0.490042][-0.698626,0.447202,-0.558509][0.333323,0.346302,0][-0.751649,0.470314,-0.41227][-0.816471,0.379059,-0.435533][0.317068,0.389743,0][-0.535573,0.900617,-0.344723][-0.732053,0.526276,-0.432588][0.30295,0.299806,0][-0.535573,0.900617,-0.344723][-0.732053,0.526276,-0.432588][0.30295,0.299806,0][-0.289622,1.06024,-0.484315][-0.532148,0.508043,-0.677282][0.332126,0.266442,0][-0.499288,0.662361,-0.589522][-0.581832,0.429403,-0.690713][0.354115,0.349603,0][0.898882,-0.101626,-0.337433][-0.467095,-0.864758,0.184432][0.266128,0.630801,0][0.911842,-0.0682274,-0.189904][-0.817102,-0.537027,0.209632][0.296963,0.637781,0][0.818027,-0.0741065,-0.451186][-0.729688,-0.549367,0.407125][0.242352,0.636552,0][0.911842,-0.0682274,-0.189904][-0.817102,-0.537027,0.209632][0.296963,0.637781,0][0.89068,0.00974836,-0.184495][-0.978056,-0.0353922,0.205315][0.298093,0.654079,0][0.799615,0.00447513,-0.440893][-0.871607,-0.0200763,0.489793][0.244504,0.652977,0][0.724459,2.11267,0.0965024][-0.316864,0.80516,0.501313][0.21073,0.0464755,0][0.89091,2.21842,0.0140458][-0.357686,0.918735,0.167292][0.227964,0.0243726,0][0.524466,2.02629,0.0737229][-0.466166,0.843634,0.266403][0.215491,0.0645284,0][0.751085,2.08796,0.132824][-0.118599,0.63005,0.767445][0.720938,0.0516391,0][0.643021,1.92931,0.226895][-0.0149847,0.483065,0.875456][0.7406,0.0847996,0][1.0822,2.28718,0.00904882][0.145177,0.116169,0.417752][0.695068,0.01,0][0.691924,-0.141717,-0.709115][-0.326989,-0.856444,0.399478][0.188443,0.622421,0][0.638916,-0.04625,-0.655239][-0.647019,-0.329276,0.687709][0.199703,0.642375,0][0.414438,-0.056006,-0.814908][-0.464014,-0.146007,0.873712][0.166331,0.640336,0][0.146554,-0.0185205,-0.906011][-0.184575,0.000473701,0.982818][0.147289,0.64817,0][0.292191,0.0613521,-0.887641][-0.29554,0.408466,0.863604][0.151129,0.664865,0][0.00530766,0.0238906,-0.930004][-0.080415,0.245478,0.966061][0.142275,0.657035,0][-0.301273,-0.148268,-0.97666][0.113418,-0.858065,0.500859][0.535517,0.529557,0][-0.282756,-0.0504053,-0.902912][0.209084,-0.378239,0.901786][0.520103,0.550011,0][-0.419758,-0.0450573,-0.852073][0.401458,-0.304306,0.863846][0.509477,0.551129,0][-0.434514,0.108111,-0.88703][0.36384,0.555769,0.74749][0.516783,0.583143,0][-0.545884,0.0422081,-0.776463][0.58989,0.223486,0.775941][0.493674,0.569368,0][-0.418808,0.0373188,-0.850806][0.41011,0.246435,0.878111][0.509212,0.568347,0][0.292191,0.0613521,-0.887641][-0.29554,0.408466,0.863604][0.151129,0.664865,0][0.43708,0.097067,-0.854276][-0.400855,0.646044,0.649571][0.158102,0.672329,0][0.0151988,0.132921,-1.04061][0.000755939,0.974509,0.224348][0.119158,0.679823,0][0.329637,0.132566,-0.979345][-0.037065,0.991858,0.121833][0.536078,0.588254,0][0.684111,0.127024,-0.945059][0.19799,0.89897,-0.390708][0.528912,0.587096,0][0.022224,0.130278,-1.12298][0.0328135,0.920631,-0.389051][0.566099,0.587776,0][0.676945,1.26582,0.326505][0.741205,0.0978063,0.664115][0.761419,0.223476,0][0.693441,0.905796,0.358862][0.87134,0.0882126,0.482686][0.768182,0.298723,0][0.776086,1.39824,0.175855][0.899364,-0.0897434,0.427891][0.729932,0.195798,0][0.757144,1.83595,0.226895][0.490874,0.0860341,0.866972][0.7406,0.104313,0][0.574302,1.32171,0.411421][0.568879,0.161894,0.806329][0.779167,0.211793,0][0.792855,1.58782,0.183955][0.813806,-0.0742917,0.576368][0.731625,0.156174,0][0.407698,-0.0112935,0.816741][-0.4555,-0.0528526,-0.888665][0.507361,0.649681,0][0.424682,-0.123694,0.860418][-0.335629,-0.678446,-0.653502][0.51649,0.626188,0][0.130864,-0.10961,0.943977][-0.164423,-0.559635,-0.812264][0.533955,0.629132,0][0.424682,-0.123694,0.860418][-0.335629,-0.678446,-0.653502][0.51649,0.626188,0][0.407698,-0.0112935,0.816741][-0.4555,-0.0528526,-0.888665][0.507361,0.649681,0][0.648459,-0.0540569,0.644055][-0.677967,-0.229081,-0.698485][0.471268,0.640743,0][1.13728,2.32213,0.247465][0.0907094,0.242698,0.965852][0.530742,0.874556,0][0.983457,2.2015,0.221708][-0.481138,-0.186663,0.856542][0.562892,0.899769,0][1.13983,2.19562,0.245574][0.176133,-0.250814,0.951877][0.53021,0.900998,0][0.983457,2.2015,0.221708][-0.481138,-0.186663,0.856542][0.562892,0.899769,0][1.06018,2.32801,0.245574][-0.124189,0.326282,0.937079][0.546856,0.873327,0][0.923143,2.32213,0.177887][-0.668152,0.179748,0.721985][0.575499,0.874556,0][0.724922,-0.163861,0.719778][-0.0849094,-0.990982,-0.103662][0.180945,0.526298,0][0.99348,-0.143279,0.450226][0.351352,-0.927649,0.126567][0.237284,0.5306,0][0.805856,-0.142495,0.792698][0.475068,-0.780231,0.406878][0.165704,0.530764,0][0.50534,-0.116874,1.05909][0.3507,-0.605722,0.71422][0.110025,0.536119,0][0.480254,-0.16149,0.997651][0.11215,-0.950323,0.290359][0.122867,0.526793,0][0.659004,-0.147096,0.92741][0.395968,-0.789808,0.468415][0.137548,0.529802,0][1.0976,0.0177882,0.478723][0.901134,0.0151601,0.433276][0.231328,0.564264,0][1.07886,-0.0630241,0.475145][0.803996,-0.482228,0.347918][0.232075,0.547374,0][1.17111,0.0241022,0.286288][0.967239,-0.0342246,0.251551][0.271548,0.565584,0][0.975929,-0.0708667,0.656592][0.748486,-0.390797,0.535767][0.194151,0.545735,0][1.0976,0.0177882,0.478723][0.901134,0.0151601,0.433276][0.231328,0.564264,0][0.860618,0.000630117,0.835027][0.745796,-0.0922656,0.659754][0.156857,0.560678,0][0.0122331,-0.174511,-1.04564][-0.0130506,-0.989549,0.143603][0.549934,0.524072,0][0.0212981,-0.162503,-1.16613][-0.0265358,-0.903526,-0.427711][0.575119,0.526582,0][0.3733,-0.163265,-1.09091][0.171497,-0.841421,-0.512444][0.559396,0.526422,0][0.405334,-0.0284817,-1.16833][0.285596,-0.0509241,-0.956996][0.575577,0.554594,0][0.3733,-0.163265,-1.09091][0.171497,-0.841421,-0.512444][0.559396,0.526422,0][0.0238805,-0.13829,-1.19868][-0.047955,-0.676699,-0.734696][0.581921,0.531642,0][0.643021,1.92931,0.226895][-0.0149847,0.483065,0.875456][0.183476,0.0847996,0][0.407597,1.8648,0.221299][-0.318501,0.664012,0.676495][0.184646,0.0982825,0][0.0860952,1.35942,0.477705][-0.249463,0.513647,0.820935][0.131055,0.203912,0][0.0860952,1.35942,0.477705][-0.249463,0.513647,0.820935][0.131055,0.203912,0][0.00495392,0.762982,0.74997][-0.0709285,0.39875,0.914313][0.0741487,0.328573,0][0.326764,1.45651,0.456064][0.00584289,0.420704,0.907179][0.135578,0.183618,0][1.12192,2.5114,-0.0695573][0.110013,0.934483,-0.338585][0.01,0.9334,0][1.23009,2.39303,-0.184281][0.524639,0.522939,-0.671781][0.034741,0.910789,0][1.10183,2.39303,-0.225957][0.00650135,0.562933,-0.826477][0.034741,0.937598,0][1.21655,2.32213,-0.225957][0.490929,0.20104,-0.847686][0.0495604,0.913619,0][1.27687,2.2015,-0.182136][0.633168,-0.244279,-0.734456][0.0747728,0.901013,0][1.13983,2.19562,-0.249823][0.0394769,-0.22673,-0.973157][0.0760021,0.929656,0][-0.699126,0.700172,0.257631][-0.808754,0.47751,0.343367][0.177052,0.3417,0][-0.751648,0.470314,0.412271][-0.807114,0.405672,0.42895][0.144731,0.389743,0][-0.448659,1.11148,0.211654][-0.752347,0.57426,0.3228][0.186662,0.255733,0][-0.472541,1.11917,0.107147][-0.815635,0.574398,0.0693237][0.208505,0.254125,0][-0.327681,1.30656,-0.0955081][-0.762453,0.629528,-0.149534][0.250862,0.21496,0][-0.729134,0.70585,0.130422][-0.871273,0.47766,0.112806][0.20364,0.340514,0][0.99348,-0.143279,0.450226][0.351352,-0.927649,0.126567][0.237284,0.5306,0][1.09629,-0.118293,0.280313][0.62762,-0.766513,0.136202][0.272797,0.535822,0][0.929811,-0.133043,0.6333][0.490353,-0.806856,0.329449][0.19902,0.532739,0][1.13528,-0.113093,0.0969853][0.610446,-0.789926,0.0580649][0.311114,0.536909,0][0.99348,-0.143279,0.450226][0.351352,-0.927649,0.126567][0.237284,0.5306,0][1.02405,-0.134767,-0.0630025][-0.177018,-0.984194,0.00509674][0.344553,0.532379,0][1.31232,2.1306,-0.0730275][0.845459,-0.49173,-0.208328][0.0895922,0.893604,0][1.31232,2.1306,0.0687786][0.85376,-0.444748,0.270729][0.0895922,0.893604,0][1.27007,2.06971,0.0365472][0.595821,-0.798345,0.087423][0.102319,0.902434,0][1.25496,2.08678,0.110454][0.511921,-0.699539,0.49858][0.506146,0.923747,0][1.31232,2.1306,0.0687786][0.85376,-0.444748,0.270729][0.494157,0.914588,0][1.27687,2.2015,0.177887][0.678472,-0.239137,0.694614][0.501567,0.899769,0][0.691924,-0.141717,-0.709115][-0.326989,-0.856444,0.399478][0.188443,0.622421,0][0.750517,-0.161722,-0.771202][0.0634641,-0.997952,0.00797214][0.175466,0.61824,0][1.00525,-0.139362,-0.392051][0.121702,-0.992015,-0.0330727][0.254712,0.622913,0][0.911842,-0.0682274,-0.189904][-0.817102,-0.537027,0.209632][0.296963,0.637781,0][0.898882,-0.101626,-0.337433][-0.467095,-0.864758,0.184432][0.266128,0.630801,0][1.02405,-0.134767,-0.0630025][-0.177018,-0.984194,0.00509674][0.323486,0.623874,0][1.04264,2.5114,0.0395513][-0.166864,0.9537,0.250224][0.550522,0.834996,0][1.01067,2.45392,0.147665][-0.225494,0.765507,0.602621][0.557204,0.84701,0][1.17091,2.5114,-0.00212445][0.297185,0.951159,0.0835357][0.523713,0.834996,0][1.26032,2.45392,-0.0707987][0.581801,0.773308,-0.251996][0.0220143,0.904472,0][1.23009,2.39303,-0.184281][0.524639,0.522939,-0.671781][0.034741,0.910789,0][1.12192,2.5114,-0.0695573][0.110013,0.934483,-0.338585][0.01,0.9334,0][1.09818,2.1306,0.221708][0.0154248,-0.531807,0.846725][0.538914,0.914588,0][0.969916,2.1306,0.180032][-0.516925,-0.483155,0.706647][0.565723,0.914588,0][0.985152,2.06971,0.129122][-0.408672,-0.769116,0.491373][0.562538,0.927315,0][1.07809,2.01222,0.0653084][-0.0273457,-0.951727,0.305724][0.543112,0.939329,0][1.25496,2.08678,0.110454][0.511921,-0.699539,0.49858][0.506146,0.923747,0][1.11578,2.06971,0.171565][-0.0490418,-0.751333,0.658098][0.535236,0.927315,0][0.900519,0.155845,0.610398][0.196927,0.962392,0.187139][0.203806,0.59312,0][0.977069,0.0882719,0.653029][0.746135,0.377081,0.548718][0.194896,0.578996,0][1.02665,0.150766,0.453864][0.429602,0.871759,0.235537][0.236523,0.592058,0][0.6938,0.0733359,0.96398][0.494438,0.547315,0.67526][0.129904,0.575874,0][0.809753,0.133141,0.784861][0.368979,0.846999,0.382684][0.167342,0.588374,0][0.331808,0.115946,1.12873][0.247478,0.703541,0.666172][0.0954697,0.58478,0][-0.593101,0,-0.85504][-1.05758,0.624285,-1.16138][0.409611,0.488043,0][-0.826918,0,-0.621222][0,-2.51327,0][0.360741,0.488043,0][-0.582771,0.678156,-0.490042][-0.698626,0.447202,-0.558509][0.333323,0.346302,0][-0.826918,0,-0.621222][0,-2.51327,0][0.563335,0.488043,0][-0.593101,0,-0.85504][-1.05758,0.624285,-1.16138][0.514465,0.488043,0][-0.137211,-1.25279e-007,-1.04388][0,-2.43473,0][0.474996,0.488043,0][-0.173183,0.600658,-0.792906][-0.242749,0.406287,-0.880911][0.396625,0.3625,0][0.00495275,0.762982,-0.74997][-0.0609775,0.39931,-0.914786][0.387651,0.328573,0][-0.137211,-1.25279e-007,-1.04388][0,-2.43473,0][0.44908,0.488043,0][-0.137211,-1.25279e-007,-1.04388][0,-2.43473,0][0.44908,0.488043,0][-0.593101,0,-0.85504][-1.05758,0.624285,-1.16138][0.409611,0.488043,0][-0.357874,0.420968,-0.809125][-0.402638,0.376846,-0.834188][0.400015,0.400057,0][0.0281239,0,1.05689][0.0154793,0.965037,2.4819][0.01,0.488043,0][-0.173182,0.600658,0.792906][-0.254028,0.398154,0.881444][0.0651746,0.3625,0][-0.298472,0,1.00516][0,-2.51327,0][0.0208115,0.488043,0][0.35472,0,1.00516][0.224919,0.551876,1.42007][0.903264,0.488043,0][0.0281239,0,1.05689][0.0154793,0.965037,2.4819][0.914076,0.488043,0][-0.298472,0,1.00516][0,-2.51327,0][0.903265,0.488043,0][1.27687,2.2015,-0.182136][0.633168,-0.244279,-0.734456][0.0747728,0.901013,0][1.25496,2.08678,-0.114703][0.562894,-0.708479,-0.425685][0.0987511,0.905593,0][1.09818,2.1306,-0.225957][0.0402535,-0.44521,-0.894521][0.0895922,0.93836,0][1.32586,2.2015,-0.114703][0.912333,-0.178949,-0.368273][0.0747728,0.890773,0][1.31232,2.1306,0.0687786][0.85376,-0.444748,0.270729][0.0895922,0.893604,0][1.31232,2.1306,-0.0730275][0.845459,-0.49173,-0.208328][0.0895922,0.893604,0][-0.743173,-0.0276365,0.967832][-0.511557,-0.401452,0.759701][0.538941,0.646265,0][-0.823353,-0.134698,0.804054][-0.250039,-0.862688,0.439602][0.50471,0.623888,0][-0.419527,-0.0602226,1.11781][-0.32278,-0.527482,0.78586][0.570287,0.639454,0][-0.982334,-0.0988274,0.733889][-0.581941,-0.556274,0.593215][0.490044,0.631386,0][-1.02547,-0.166577,0.563929][-0.298952,-0.923124,0.241804][0.454521,0.617225,0][-0.823353,-0.134698,0.804054][-0.250039,-0.862688,0.439602][0.50471,0.623888,0][0.852125,2.32801,-0.0407961][-0.970226,0.194618,-0.144172][0.048331,0.989788,0][0.887692,2.39303,0.0687787][-0.824464,0.509546,0.246217][0.034741,0.982355,0][0.887692,2.39303,-0.0730275][-0.80624,0.503502,-0.310585][0.034741,0.982355,0][0.929942,2.45392,-0.0407961][-0.63609,0.759925,-0.133806][0.574078,0.84701,0][0.945053,2.43685,0.110454][-0.60818,0.694103,0.385148][0.570919,0.850578,0][1.04264,2.5114,0.0395513][-0.166864,0.9537,0.250224][0.550522,0.834996,0][-0.898697,0.243419,0.303609][-0.900438,0.333669,0.279065][0.167443,0.437166,0][-0.849858,0.482622,7.07818e-007][-0.913596,0.405951,0.0233465][0.2309,0.387171,0][-1.01575,0,-0.165333][0,-2.67035,0][0.265456,0.488043,0][-0.838765,0.481231,-0.142058][-0.899377,0.401956,-0.171907][0.260591,0.387461,0][-0.751649,0.470314,-0.41227][-0.816471,0.379059,-0.435533][0.317068,0.389743,0][-1.01575,0,-0.165333][0,-2.67035,0][0.265456,0.488043,0][0.382706,1.2211,-0.52954][0.545522,0.146805,-0.825139][0.582497,0.232821,0][0.0799565,0.552761,-0.83371][0.0117295,0.354687,-0.934912][0.518923,0.372511,0][0.671196,1.90626,-0.235635][0.0830045,0.41191,-0.907436][0.643927,0.0896171,0][0.382706,1.2211,-0.52954][0.545522,0.146805,-0.825139][0.582497,0.232821,0][0.728969,1.85899,-0.235635][0.375554,0.184848,-0.90818][0.643927,0.0994954,0][0.592303,1.12337,-0.433747][0.626988,0.136686,-0.766944][0.602519,0.253249,0][-0.955591,0.139846,0.487167][-0.127966,0.991421,-0.0266348][0.229563,0.589776,0][-0.80313,0.135706,0.56217][0.245016,0.916799,-0.315352][0.213886,0.58891,0][-0.915283,0.0990168,0.291209][0.582319,0.778312,-0.23481][0.27052,0.581242,0][-0.875782,0.0316185,0.27557][0.92319,0.259649,-0.283376][0.273788,0.567155,0][-0.915283,0.0990168,0.291209][0.582319,0.778312,-0.23481][0.27052,0.581242,0][-0.832994,0.073257,0.408494][0.770182,0.442984,-0.458895][0.246006,0.575858,0][0.524466,2.02629,-0.0737227][-0.448515,0.857009,-0.253712][0.246308,0.0645284,0][0.569512,1.98944,-0.168696][-0.273012,0.693498,-0.666727][0.266159,0.0722306,0][0.360866,1.89839,-0.142083][-0.473661,0.760013,-0.445001][0.260596,0.0912604,0][0.751085,2.08796,-0.132824][-0.165166,0.661114,-0.73188][0.258661,0.0516391,0][0.524466,2.02629,-0.0737227][-0.448515,0.857009,-0.253712][0.246308,0.0645284,0][0.901967,2.20679,-0.0527757][-0.247832,0.812664,-0.527405][0.24193,0.0268019,0][0.790725,1.20385,0.0722324][0.992677,-0.0535538,0.108281][0.708274,0.236426,0][0.749194,1.41514,-0.227683][0.983125,-0.133311,-0.125271][0.645589,0.192266,0][0.86461,1.74803,-0.108309][0.888663,-0.202213,-0.411568][0.670539,0.122688,0][0.86461,1.74803,-0.108309][0.888663,-0.202213,-0.411568][0.670539,0.122688,0][0.808619,1.79383,-0.193009][0.64946,-0.0384623,-0.759422][0.652836,0.113114,0][1.09175,2.2758,-0.0152055][0.592515,-0.0628258,-0.46715][0.689998,0.0123798,0][0.643021,1.92931,0.226895][-0.0149847,0.483065,0.875456][0.7406,0.0847996,0][0.587278,1.73562,0.312964][0.22365,0.301747,0.926784][0.758589,0.125283,0][1.0822,2.28718,0.00904882][0.145177,0.116169,0.417752][0.695068,0.01,0][0.995795,2.10817,0.063489][0.724392,-0.159798,0.670612][0.706446,0.047416,0][1.0822,2.28718,0.00904882][0.145177,0.116169,0.417752][0.695068,0.01,0][0.757144,1.83595,0.226895][0.490874,0.0860341,0.866972][0.7406,0.104313,0][1.32328,2.32801,0.11229][0.871484,0.237054,0.429326][0.491867,0.873327,0][1.34789,2.19562,0.0365472][0.970764,-0.200906,0.131356][0.486723,0.900998,0][1.31345,2.39303,-0.0695573][0.870404,0.435991,-0.228712][0.493922,0.859737,0][1.31345,2.39303,0.0653084][0.83456,0.499586,0.232214][0.034741,0.893368,0][1.31345,2.39303,-0.0695573][0.870404,0.435991,-0.228712][0.034741,0.893368,0][1.26032,2.45392,-0.0707987][0.581801,0.773308,-0.251996][0.0220143,0.904472,0][-0.401542,0.643866,0.674486][-0.487591,0.421573,0.764546][0.0899255,0.353469,0][-0.58277,0.678156,0.490043][-0.697758,0.458665,0.550237][0.128476,0.346302,0][-0.719209,0,0.747333][-0.853624,0.535487,1.01981][0.0746998,0.488043,0][-0.401542,0.643866,0.674486][-0.487591,0.421573,0.764546][0.0899255,0.353469,0][-0.35606,1.08165,0.40259][-0.634612,0.535931,0.556817][0.146755,0.261968,0][-0.58277,0.678156,0.490043][-0.697758,0.458665,0.550237][0.128476,0.346302,0][1.15715,0.0344441,-0.474879][0.931562,-0.113787,-0.345319][0.43064,0.567746,0][1.18318,-0.0451213,-0.2845][0.847545,-0.505444,-0.161846][0.390849,0.551116,0][1.08474,0.0268643,-0.639541][0.879868,-0.13081,-0.456859][0.465056,0.566161,0][1.22339,0.0338603,-0.104533][0.99949,-0.0316782,-0.00400833][0.353234,0.567624,0][1.13528,-0.113093,0.0969853][0.610446,-0.789926,0.0580649][0.311114,0.536909,0][1.18318,-0.0451213,-0.2845][0.847545,-0.505444,-0.161846][0.390849,0.551116,0][-0.169468,-0.0952725,0.924527][0.165562,-0.68265,-0.711743][0.13815,0.540634,0][-0.157569,-0.0250827,0.885835][0.226027,-0.255412,-0.940041][0.146237,0.555304,0][0.129876,-0.0391991,0.903293][-0.0954299,-0.262111,-0.960308][0.142588,0.552353,0][0.129876,-0.0391991,0.903293][-0.0954299,-0.262111,-0.960308][0.142588,0.552353,0][0.130864,-0.10961,0.943977][-0.164423,-0.559635,-0.812264][0.134085,0.537637,0][-0.169468,-0.0952725,0.924527][0.165562,-0.68265,-0.711743][0.13815,0.540634,0][0.791383,0.711982,-0.211654][0.933145,0.20162,-0.297641][0.648939,0.339232,0][0.82329,0.701702,0][0.985822,0.167623,-0.00756116][0.693176,0.341381,0][0.941159,0.258178,0.142057][0.913649,0.391758,0.108498][0.722868,0.434081,0][0.780167,0.278353,0.533768][0.763684,0.388516,0.515599][0.804739,0.429865,0][0.908152,0.262314,0.280618][0.871414,0.388507,0.299498][0.751828,0.433217,0][0.819887,0.555474,0.234641][0.906512,0.273161,0.321899][0.742219,0.371944,0][1.15919,2.43685,0.180032][0.155062,0.702186,0.694903][0.526162,0.850578,0][0.966964,2.39303,0.177887][-0.461784,0.48968,0.739574][0.56634,0.859737,0][1.13728,2.32213,0.247465][0.0907094,0.242698,0.965852][0.530742,0.874556,0][1.17091,2.5114,-0.00212445][0.297185,0.951159,0.0835357][0.523713,0.834996,0][1.01067,2.45392,0.147665][-0.225494,0.765507,0.602621][0.557204,0.84701,0][1.15919,2.43685,0.180032][0.155062,0.702186,0.694903][0.526162,0.850578,0][-1.02415,0.129857,0.177487][0.0512775,0.998655,0.00771456][0.373751,0.679183,0][-1.16114,0.100178,0.059324][-0.575505,0.815196,0.0651912][0.349054,0.67298,0][-1.02627,0.109059,0.542669][-0.493167,0.84343,0.213102][0.450078,0.674836,0][-1.14065,0.0940102,-0.312672][-0.765956,0.618254,-0.176277][0.271303,0.67169,0][-1.11228,0.13049,-0.13394][-0.193551,0.977902,0.0790338][0.30866,0.679315,0][-1.03856,0.133151,-0.503348][-0.49468,0.842758,-0.212251][0.23145,0.679871,0][-0.298648,0.100117,0.862038][0.259071,0.661676,-0.70361][0.151211,0.581472,0][-0.155759,0.0572934,0.887584][0.218986,0.0842997,-0.972079][0.145872,0.572521,0][-0.543417,0.0573753,0.710089][0.509132,0.358456,-0.782492][0.18297,0.572538,0][-0.738499,0.00202291,0.513499][0.794215,0.0349176,-0.606633][0.224059,0.560969,0][-0.587999,0.154875,0.770512][0.313957,0.824604,-0.470594][0.170341,0.592917,0][-0.543417,0.0573753,0.710089][0.509132,0.358456,-0.782492][0.18297,0.572538,0][1.13983,2.19562,0.245574][0.176133,-0.250814,0.951877][0.53021,0.900998,0][1.09818,2.1306,0.221708][0.0154248,-0.531807,0.846725][0.538914,0.914588,0][1.27687,2.2015,0.177887][0.678472,-0.239137,0.694614][0.501567,0.899769,0][1.32328,2.32801,0.11229][0.871484,0.237054,0.429326][0.491867,0.873327,0][1.21655,2.32213,0.221708][0.499871,0.23149,0.834591][0.514173,0.874556,0][1.27687,2.2015,0.177887][0.678472,-0.239137,0.694614][0.501567,0.899769,0][0.409275,1.01732,-0.580652][0.479636,0.261064,-0.837732][0.571815,0.275413,0][0.635522,0.928528,-0.431712][0.745757,0.165828,-0.64525][0.602944,0.293972,0][0.561456,0.461657,-0.674486][0.62333,0.292223,-0.725304][0.552202,0.391552,0][0.791383,0.711982,-0.211654][0.933145,0.20162,-0.297641][0.648939,0.339232,0][0.640379,0.601183,-0.536919][0.775387,0.236771,-0.585418][0.580955,0.36239,0][0.635522,0.928528,-0.431712][0.745757,0.165828,-0.64525][0.602944,0.293972,0][-0.663576,0.171398,0.86963][-0.226715,0.949743,0.215842][0.518415,0.687865,0][-0.728962,0.094029,0.951868][-0.507551,0.560867,0.65408][0.535604,0.671694,0][-0.543841,0.159252,0.993567][-0.264402,0.801483,0.536392][0.544319,0.685327,0][-0.499966,0.182249,0.923209][-0.00517577,0.999861,0.0158438][0.529614,0.690133,0][-0.543841,0.159252,0.993567][-0.264402,0.801483,0.536392][0.544319,0.685327,0][-0.0308467,0.168452,1.1043][0.0308151,0.963223,0.26693][0.567465,0.687249,0][0.871764,0.0443309,0.246563][-0.889391,0.408635,-0.204943][0.388189,0.661307,0][0.884423,0.139878,0.409708][-0.64107,0.700861,-0.312768][0.422287,0.681277,0][0.975081,0.151071,0.0957407][-0.587392,0.808209,-0.0420508][0.356665,0.683617,0][0.743582,0.0324345,0.522262][-0.815842,0.258045,-0.517507][0.445812,0.658821,0][0.819023,-0.0440294,0.39133][-0.88339,-0.187882,-0.429327][0.418446,0.642839,0][0.743742,-0.0499416,0.524848][-0.833698,-0.136285,-0.535139][0.446353,0.641603,0][0.813534,0.136589,-0.844348][0.263913,0.894556,-0.36072][0.507862,0.589095,0][0.972224,0.0919753,-0.769733][0.606789,0.601631,-0.519468][0.492267,0.57977,0][0.721754,0.0683565,-0.994283][0.458434,0.504602,-0.731584][0.5392,0.574834,0][0.972224,0.0919753,-0.769733][0.606789,0.601631,-0.519468][0.492267,0.57977,0][0.813534,0.136589,-0.844348][0.263913,0.894556,-0.36072][0.507862,0.589095,0][1.04556,0.177135,-0.420503][0.177534,0.978831,-0.101846][0.419275,0.597569,0][-0.147204,0.137236,-1.03704][0.0567344,0.97506,0.214567][0.548136,0.58923,0][0.0151988,0.132921,-1.04061][0.000755939,0.974509,0.224348][0.548882,0.588328,0][-0.326554,0.142233,-1.0871][-0.0376472,0.958504,-0.282582][0.5586,0.590275,0][-0.161578,0.0598636,-1.21703][-0.0566902,0.561279,-0.825683][0.0822839,0.664553,0][-0.343291,0.101004,-1.15653][-0.178977,0.667023,-0.72322][0.0949277,0.673152,0][0.022224,0.130278,-1.12298][0.0328135,0.920631,-0.389051][0.10194,0.679271,0][0.326764,1.45651,0.456064][0.00584289,0.420704,0.907179][0.788498,0.183618,0][0.273347,0.878875,0.676493][0.277064,0.324141,0.904527][0.83457,0.30435,0][0.587278,1.73562,0.312964][0.22365,0.301747,0.926784][0.758589,0.125283,0][0.273347,0.878875,0.676493][0.277064,0.324141,0.904527][0.83457,0.30435,0][0.326764,1.45651,0.456064][0.00584289,0.420704,0.907179][0.788498,0.183618,0][0.0281239,0,1.05689][0.0154793,0.965037,2.4819][0.914076,0.488043,0][-1.03468,-0.168013,-0.291314][-0.0216539,-0.997304,-0.0701186][0.275767,0.616925,0][-0.943136,-0.136206,-0.664218][-0.409153,-0.868458,-0.279953][0.197827,0.623573,0][-0.672572,-0.139147,-0.958937][-0.36429,-0.809404,-0.460607][0.136227,0.622958,0][-1.03468,-0.168013,-0.291314][-0.0216539,-0.997304,-0.0701186][0.275767,0.616925,0][-1.14981,-0.165675,-0.0990524][-0.55197,-0.824536,-0.124377][0.315951,0.617414,0][-0.943136,-0.136206,-0.664218][-0.409153,-0.868458,-0.279953][0.197827,0.623573,0][0.524466,2.02629,0.0737229][-0.466166,0.843634,0.266403][0.215491,0.0645284,0][0.407597,1.8648,0.221299][-0.318501,0.664012,0.676495][0.184646,0.0982825,0][0.724459,2.11267,0.0965024][-0.316864,0.80516,0.501313][0.21073,0.0464755,0][0.159904,1.78541,0.0605962][-0.601117,0.779938,0.174228][0.218234,0.114875,0][0.218505,1.74859,0.227683][-0.455598,0.692628,0.559193][0.183312,0.122571,0][0.524466,2.02629,0.0737229][-0.466166,0.843634,0.266403][0.215491,0.0645284,0][-1.07812,0.043451,0.590053][-0.734467,0.534698,0.417918][0.459981,0.661123,0][-0.819456,0.140938,0.794313][-0.455594,0.819059,0.348678][0.502674,0.681499,0][-1.02627,0.109059,0.542669][-0.493167,0.84343,0.213102][0.450078,0.674836,0][-0.819456,0.140938,0.794313][-0.455594,0.819059,0.348678][0.502674,0.681499,0][-0.663576,0.171398,0.86963][-0.226715,0.949743,0.215842][0.518415,0.687865,0][-0.955591,0.139846,0.487167][-0.127966,0.991421,-0.0266348][0.438477,0.681271,0][0.983457,2.2015,-0.225957][-0.407149,-0.249376,-0.878659][0.0747728,0.962339,0][0.986627,2.32801,-0.225923][-0.391392,0.251143,-0.885291][0.048331,0.961676,0][1.13728,2.32213,-0.251714][0.0958692,0.177468,-0.979446][0.0495604,0.930188,0][1.13728,2.32213,-0.251714][0.0958692,0.177468,-0.979446][0.0495604,0.930188,0][1.10183,2.39303,-0.225957][0.00650135,0.562933,-0.826477][0.034741,0.937598,0][1.21655,2.32213,-0.225957][0.490929,0.20104,-0.847686][0.0495604,0.913619,0][0.407698,-0.0112935,0.816741][-0.4555,-0.0528526,-0.888665][0.507361,0.649681,0][0.27899,0.0741288,0.890145][-0.252383,0.482863,-0.838538][0.522703,0.667535,0][0.560484,0.0988917,0.77275][-0.440293,0.704935,-0.556066][0.498167,0.672711,0][0.700718,0.126513,0.686512][-0.399389,0.83356,-0.381663][0.480142,0.678484,0][0.600733,0.140938,0.826926][-0.212792,0.941052,-0.262946][0.50949,0.681499,0][0.900519,0.155845,0.610398][0.196927,0.962392,0.187139][0.464233,0.684614,0][-0.868679,0.115683,-0.450257][0.634884,0.69357,0.340417][0.425493,0.584725,0][-0.844325,0.158148,-0.625008][0.238468,0.956082,0.170412][0.462018,0.593601,0][-0.99434,0.147865,-0.312201][0.243962,0.965523,0.090814][0.396638,0.591452,0][-1.03353,0.150264,-0.315318][-0.177737,0.983989,-0.0132714][0.39729,0.591953,0][-0.99434,0.147865,-0.312201][0.243962,0.965523,0.090814][0.396638,0.591452,0][-0.844325,0.158148,-0.625008][0.238468,0.956082,0.170412][0.462018,0.593601,0][1.01792,0.173416,0.263312][0.0190881,0.999447,0.0272208][0.276351,0.596792,0][1.02665,0.150766,0.453864][0.429602,0.871759,0.235537][0.236523,0.592058,0][1.10441,0.179189,-0.0879798][0.222288,0.974981,0.000437925][0.349774,0.597999,0][1.02665,0.150766,0.453864][0.429602,0.871759,0.235537][0.236523,0.592058,0][1.0786,0.0961145,0.470652][0.784955,0.487194,0.382737][0.233015,0.580635,0][1.12584,0.134041,0.276542][0.672309,0.714337,0.194225][0.273585,0.588562,0][-0.0243644,1.18751,-0.543989][-0.264934,0.476493,-0.83831][0.344599,0.239841,0][-0.0368969,1.41677,-0.379109][-0.454375,0.589281,-0.668051][0.310137,0.191925,0][0.25193,1.72759,-0.273902][-0.367009,0.638862,-0.676136][0.288148,0.12696,0][-0.289622,1.06024,-0.484315][-0.532148,0.508043,-0.677282][0.332126,0.266442,0][-0.0243644,1.18751,-0.543989][-0.264934,0.476493,-0.83831][0.344599,0.239841,0][-0.357874,0.420968,-0.809125][-0.402638,0.376846,-0.834188][0.400015,0.400057,0][0.639929,0.0361261,-0.657771][-0.654276,0.313054,0.688418][0.199174,0.659592,0][0.638916,-0.04625,-0.655239][-0.647019,-0.329276,0.687709][0.199703,0.642375,0][0.799615,0.00447513,-0.440893][-0.871607,-0.0200763,0.489793][0.244504,0.652977,0][0.799615,0.00447513,-0.440893][-0.871607,-0.0200763,0.489793][0.244504,0.652977,0][0.875424,0.0887662,-0.329668][-0.779865,0.558359,0.282923][0.267751,0.670594,0][0.670857,0.108103,-0.691406][-0.506415,0.654287,0.561651][0.192144,0.674636,0][0.923143,2.32213,-0.182136][-0.721862,0.233804,-0.651345][0.0495604,0.974945,0][0.887692,2.39303,-0.0730275][-0.80624,0.503502,-0.310585][0.034741,0.982355,0][1.01067,2.45392,-0.151913][-0.331496,0.736052,-0.590201][0.0220143,0.95665,0][1.04264,2.5114,-0.0438002][-0.242033,0.9542,-0.175847][0.01,0.949968,0][1.01067,2.45392,-0.151913][-0.331496,0.736052,-0.590201][0.0220143,0.95665,0][0.929942,2.45392,-0.0407961][-0.63609,0.759925,-0.133806][0.0220143,0.973524,0][0.454128,0.648608,0.676557][0.527235,0.279253,0.802522][0.834583,0.352478,0][0.552579,0.623539,0.6143][0.628646,0.287661,0.722534][0.821571,0.357717,0][0.676945,1.26582,0.326505][0.741205,0.0978063,0.664115][0.761419,0.223476,0][0.552579,0.623539,0.6143][0.628646,0.287661,0.722534][0.821571,0.357717,0][0.454128,0.648608,0.676557][0.527235,0.279253,0.802522][0.834583,0.352478,0][0.507941,0,0.941693][0.795412,0.733051,1.65457][0.889999,0.488043,0][0.776086,1.39824,0.175855][0.899364,-0.0897434,0.427891][0.729932,0.195798,0][0.790725,1.20385,0.0722324][0.992677,-0.0535538,0.108281][0.708274,0.236426,0][0.882463,1.73342,0.0373203][0.960932,-0.252907,0.112458][0.700977,0.125741,0][0.792855,1.58782,0.183955][0.813806,-0.0742917,0.576368][0.731625,0.156174,0][0.882463,1.73342,0.0373203][0.960932,-0.252907,0.112458][0.700977,0.125741,0][1.01089,2.0923,0.0277455][0.866408,-0.302895,0.396979][0.698976,0.0507328,0][0.580825,0.303334,0.73467][0.646705,0.347404,0.679031][0.84673,0.424643,0][0.780167,0.278353,0.533768][0.763684,0.388516,0.515599][0.804739,0.429865,0][0.64038,0.601182,0.536918][0.752421,0.283643,0.594482][0.805397,0.36239,0][0.969817,0,0.479815][0.896916,0.432149,0.291424][0.793462,0.488043,0][0.775456,0,0.747331][0,-2.74889,1.20158e-007][0.849376,0.488043,0][0.35472,0,1.00516][0.224919,0.551876,1.42007][0.903264,0.488043,0][-0.913379,-0.126039,0.303664][0.646254,-0.732866,-0.212753][0.267917,0.534203,0][-0.764066,-0.153167,0.740235][0.107275,-0.992221,0.0631661][0.176669,0.528533,0][-1.01941,-0.186301,0.3715][0.0834112,-0.996467,-0.00979269][0.253738,0.521608,0][-1.17308,-0.159447,0.277156][-0.50724,-0.854702,0.11042][0.394583,0.618715,0][-1.01941,-0.186301,0.3715][0.0834112,-0.996467,-0.00979269][0.414302,0.613103,0][-1.02547,-0.166577,0.563929][-0.298952,-0.923124,0.241804][0.454521,0.617225,0][-0.291261,0.102572,-0.939522][0.233875,0.660794,0.7132][0.527754,0.581985,0][-0.139275,0.0272654,-0.927272][0.116782,0.244828,0.962508][0.525194,0.566245,0][0.00903557,0.0939686,-0.970002][-0.0288356,0.730125,0.682705][0.534125,0.580187,0][0.00903557,0.0939686,-0.970002][-0.0288356,0.730125,0.682705][0.133915,0.671682,0][0.00530766,0.0238906,-0.930004][-0.080415,0.245478,0.966061][0.142275,0.657035,0][0.292191,0.0613521,-0.887641][-0.29554,0.408466,0.863604][0.151129,0.664865,0][1.0064,0.172895,-0.229047][-0.109018,0.98762,0.112792][0.288781,0.688178,0][0.875424,0.0887662,-0.329668][-0.779865,0.558359,0.282923][0.267751,0.670594,0][0.925923,0.0907754,-0.0494777][-0.863204,0.504853,0.00165961][0.326313,0.671014,0][0.875424,0.0887662,-0.329668][-0.779865,0.558359,0.282923][0.267751,0.670594,0][1.0064,0.172895,-0.229047][-0.109018,0.98762,0.112792][0.288781,0.688178,0][0.824299,0.15754,-0.639161][-0.183524,0.979977,0.0772238][0.203064,0.684969,0][0.141893,0.158668,1.01658][0.0225128,0.960289,-0.278096][0.11891,0.59371,0][0.13648,0.115446,0.945318][0.0185653,0.723634,-0.689935][0.133805,0.584676,0][-0.298648,0.100117,0.862038][0.259071,0.661676,-0.70361][0.151211,0.581472,0][0.141893,0.158668,1.01658][0.0225128,0.960289,-0.278096][0.11891,0.59371,0][0.27899,0.0741288,0.890145][-0.252383,0.482863,-0.838538][0.145336,0.57604,0][0.13648,0.115446,0.945318][0.0185653,0.723634,-0.689935][0.133805,0.584676,0][1.11332,0.142551,-0.455818][0.575975,0.792788,-0.199347][0.426656,0.590341,0][1.20413,0.0361795,-0.294733][0.979506,0.104485,-0.172196][0.392987,0.568108,0][1.13726,0.111986,-0.467393][0.835515,0.488789,-0.250999][0.429075,0.583953,0][1.18318,-0.0451213,-0.2845][0.847545,-0.505444,-0.161846][0.390849,0.551116,0][1.15715,0.0344441,-0.474879][0.931562,-0.113787,-0.345319][0.43064,0.567746,0][1.20413,0.0361795,-0.294733][0.979506,0.104485,-0.172196][0.392987,0.568108,0][-0.426137,0.0184248,1.13941][-0.37319,0.113589,0.920775][0.574802,0.655892,0][-0.419527,-0.0602226,1.11781][-0.32278,-0.527482,0.78586][0.570287,0.639454,0][-0.245225,-0.0223106,1.18666][-0.198485,-0.331875,0.922206][0.584678,0.647378,0][-0.419527,-0.0602226,1.11781][-0.32278,-0.527482,0.78586][0.570287,0.639454,0][-0.395056,-0.116515,1.0616][-0.173889,-0.892706,0.41574][0.55854,0.627689,0][-0.235054,-0.0933124,1.1447][-0.130327,-0.739664,0.660236][0.575907,0.632538,0][0.568005,0.058457,-1.08071][0.339249,0.491161,-0.802291][0.557264,0.572765,0][0.211726,0.0839651,-1.17187][0.158111,0.681481,-0.714552][0.576317,0.578096,0][0.684111,0.127024,-0.945059][0.19799,0.89897,-0.390708][0.528912,0.587096,0][0.220523,-0.0304661,-1.21809][0.236126,-0.0855595,-0.967948][0.585978,0.554179,0][0.211726,0.0839651,-1.17187][0.158111,0.681481,-0.714552][0.576317,0.578096,0][0.568005,0.058457,-1.08071][0.339249,0.491161,-0.802291][0.557264,0.572765,0][-0.826918,0,-0.621222][0,-2.51327,0][0.360741,0.488043,0][-1.01575,0,-0.165333][0,-2.67035,0][0.265456,0.488043,0][-0.751649,0.470314,-0.41227][-0.816471,0.379059,-0.435533][0.317068,0.389743,0][-0.751649,0.470314,-0.41227][-0.816471,0.379059,-0.435533][0.317068,0.389743,0][-0.582771,0.678156,-0.490042][-0.698626,0.447202,-0.558509][0.333323,0.346302,0][-0.826918,0,-0.621222][0,-2.51327,0][0.360741,0.488043,0][0.989103,0.0138912,-0.784125][0.789439,-0.071561,-0.609643][0.495275,0.56345,0][0.948664,-0.101762,-0.746352][0.596673,-0.721055,-0.352222][0.48738,0.539277,0][0.855179,-0.0797928,-0.886679][0.563947,-0.551418,-0.614737][0.51671,0.543869,0][0.810399,-0.139047,-0.83651][0.338409,-0.878616,-0.336917][0.506224,0.531484,0][0.948664,-0.101762,-0.746352][0.596673,-0.721055,-0.352222][0.48738,0.539277,0][1.12587,-0.108258,-0.263447][0.53543,-0.839102,-0.0960319][0.386448,0.53792,0][-1.07812,0.043451,0.590053][-0.734467,0.534698,0.417918][0.459981,0.661123,0][-1.09711,-0.0388447,0.613567][-0.854501,0.0254147,0.518827][0.464896,0.643922,0][-0.999484,-0.0212405,0.745957][-0.738984,0.124406,0.662137][0.492567,0.647602,0][-0.982334,-0.0988274,0.733889][-0.581941,-0.556274,0.593215][0.490044,0.631386,0][-0.999484,-0.0212405,0.745957][-0.738984,0.124406,0.662137][0.492567,0.647602,0][-1.09711,-0.0388447,0.613567][-0.854501,0.0254147,0.518827][0.464896,0.643922,0][0.824299,0.15754,-0.639161][-0.183524,0.979977,0.0772238][0.464976,0.593474,0][1.04556,0.177135,-0.420503][0.177534,0.978831,-0.101846][0.419275,0.597569,0][0.813534,0.136589,-0.844348][0.263913,0.894556,-0.36072][0.507862,0.589095,0][1.0064,0.172895,-0.229047][-0.109018,0.98762,0.112792][0.288781,0.688178,0][1.04556,0.177135,-0.420503][0.177534,0.978831,-0.101846][0.248765,0.689064,0][0.824299,0.15754,-0.639161][-0.183524,0.979977,0.0772238][0.203064,0.684969,0][-0.523346,-0.117653,-1.09007][-0.381388,-0.643711,-0.663461][0.108819,0.627451,0][-0.338689,-0.149375,-1.12968][-0.137856,-0.857226,-0.496144][0.100541,0.620821,0][-0.672572,-0.139147,-0.958937][-0.36429,-0.809404,-0.460607][0.136227,0.622958,0][-0.338689,-0.149375,-1.12968][-0.137856,-0.857226,-0.496144][0.571124,0.754403,0][-0.351889,-0.0910096,-1.18427][-0.20044,-0.497915,-0.843744][0.570752,0.766137,0][-0.164802,-0.0200268,-1.23998][-0.112393,-0.130344,-0.985078][0.529961,0.766972,0][-0.543417,0.0573753,0.710089][0.509132,0.358456,-0.782492][0.18297,0.572538,0][-0.587999,0.154875,0.770512][0.313957,0.824604,-0.470594][0.170341,0.592917,0][-0.319499,0.159871,0.917721][0.162323,0.822015,-0.545841][0.139573,0.593961,0][-0.499966,0.182249,0.923209][-0.00517577,0.999861,0.0158438][0.138426,0.598638,0][-0.319499,0.159871,0.917721][0.162323,0.822015,-0.545841][0.139573,0.593961,0][-0.587999,0.154875,0.770512][0.313957,0.824604,-0.470594][0.170341,0.592917,0][-0.927063,-0.0919544,0.153973][0.895766,-0.411936,-0.167067][0.299203,0.541327,0][-0.913379,-0.126039,0.303664][0.646254,-0.732866,-0.212753][0.267917,0.534203,0][-1.03008,-0.167882,-0.122019][0.893366,-0.449286,0.00632539][0.356889,0.525458,0][-0.913379,-0.126039,0.303664][0.646254,-0.732866,-0.212753][0.267917,0.534203,0][-0.875086,-0.0507577,0.279532][0.915689,-0.257999,-0.308141][0.27296,0.549938,0][-0.738499,0.00202291,0.513499][0.794215,0.0349176,-0.606633][0.224059,0.560969,0][0.923143,2.32213,-0.182136][-0.721862,0.233804,-0.651345][0.0495604,0.974945,0][0.986627,2.32801,-0.225923][-0.391392,0.251143,-0.885291][0.048331,0.961676,0][0.983457,2.2015,-0.225957][-0.407149,-0.249376,-0.878659][0.0747728,0.962339,0][0.923143,2.32213,-0.182136][-0.721862,0.233804,-0.651345][0.0495604,0.974945,0][0.922196,2.19562,-0.179111][-0.66893,-0.367799,-0.645954][0.0760021,0.975143,0][0.851112,2.2015,-0.0438002][-0.97313,-0.170718,-0.154511][0.0747728,0.99,0][1.27687,2.2015,-0.182136][0.633168,-0.244279,-0.734456][0.0747728,0.901013,0][1.21655,2.32213,-0.225957][0.490929,0.20104,-0.847686][0.0495604,0.913619,0][1.32328,2.32801,-0.116539][0.913329,0.22673,-0.338266][0.048331,0.891313,0][1.25496,2.08678,-0.114703][0.562894,-0.708479,-0.425685][0.0987511,0.905593,0][1.27687,2.2015,-0.182136][0.633168,-0.244279,-0.734456][0.0747728,0.901013,0][1.32586,2.2015,-0.114703][0.912333,-0.178949,-0.368273][0.0747728,0.890773,0][1.09175,2.2758,-0.0152055][0.592515,-0.0628258,-0.46715][0.689998,0.0123798,0][1.01089,2.0923,0.0277455][0.866408,-0.302895,0.396979][0.698976,0.0507328,0][0.882463,1.73342,0.0373203][0.960932,-0.252907,0.112458][0.700977,0.125741,0][1.09175,2.2758,-0.0152055][0.592515,-0.0628258,-0.46715][0.689998,0.0123798,0][1.0822,2.28718,0.00904882][0.145177,0.116169,0.417752][0.695068,0.01,0][1.09902,2.26713,0.00698902][0.902483,0.757265,3.43348e-006][0.694637,0.0141904,0][0.87415,2.32213,0.110454][-0.898059,0.18909,0.397158][0.585739,0.874556,0][0.851112,2.2015,-0.0438002][-0.97313,-0.170718,-0.154511][0.590554,0.899769,0][0.876735,2.19562,0.11229][-0.864634,-0.207643,0.457486][0.585198,0.900998,0][0.876735,2.19562,0.11229][-0.864634,-0.207643,0.457486][0.585198,0.900998,0][0.969916,2.1306,0.180032][-0.516925,-0.483155,0.706647][0.565723,0.914588,0][0.923143,2.32213,0.177887][-0.668152,0.179748,0.721985][0.575499,0.874556,0][0.331808,0.115946,1.12873][0.247478,0.703541,0.666172][0.0954697,0.58478,0][0.33503,0.00628045,1.1743][0.300248,0.000114532,0.953861][0.0859444,0.561859,0][0.52439,-0.00156935,1.09647][0.45658,0.0383579,0.888855][0.102212,0.560218,0][0.50534,-0.116874,1.05909][0.3507,-0.605722,0.71422][0.110025,0.536119,0][0.52439,-0.00156935,1.09647][0.45658,0.0383579,0.888855][0.102212,0.560218,0][0.33503,0.00628045,1.1743][0.300248,0.000114532,0.953861][0.0859444,0.561859,0][0.638916,-0.04625,-0.655239][-0.647019,-0.329276,0.687709][0.199703,0.642375,0][0.691924,-0.141717,-0.709115][-0.326989,-0.856444,0.399478][0.188443,0.622421,0][0.869439,-0.12949,-0.485315][-0.391334,-0.873626,0.289198][0.235219,0.624977,0][1.00525,-0.139362,-0.392051][0.121702,-0.992015,-0.0330727][0.254712,0.622913,0][0.869439,-0.12949,-0.485315][-0.391334,-0.873626,0.289198][0.235219,0.624977,0][0.691924,-0.141717,-0.709115][-0.326989,-0.856444,0.399478][0.188443,0.622421,0][0.774165,0.874114,-0.188665][0.957379,0.0870037,-0.275419][0.653744,0.305345,0][0.699801,1.07324,-0.315136][0.824418,0.0560789,-0.563197][0.62731,0.263726,0][0.749194,1.41514,-0.227683][0.983125,-0.133311,-0.125271][0.645589,0.192266,0][0.635522,0.928528,-0.431712][0.745757,0.165828,-0.64525][0.602944,0.293972,0][0.699801,1.07324,-0.315136][0.824418,0.0560789,-0.563197][0.62731,0.263726,0][0.791383,0.711982,-0.211654][0.933145,0.20162,-0.297641][0.648939,0.339232,0][-0.161578,0.0598636,-1.21703][-0.0566902,0.561279,-0.825683][0.0822839,0.664553,0][-0.164802,-0.0200268,-1.23998][-0.112393,-0.130344,-0.985078][0.077486,0.647856,0][-0.355831,-0.0113315,-1.20322][-0.283619,0.0743696,-0.956049][0.0851693,0.649673,0][-0.351889,-0.0910096,-1.18427][-0.20044,-0.497915,-0.843744][0.0891302,0.63302,0][-0.355831,-0.0113315,-1.20322][-0.283619,0.0743696,-0.956049][0.0851693,0.649673,0][-0.164802,-0.0200268,-1.23998][-0.112393,-0.130344,-0.985078][0.077486,0.647856,0][-0.738499,0.00202291,0.513499][0.794215,0.0349176,-0.606633][0.224059,0.560969,0][-0.832994,0.073257,0.408494][0.770182,0.442984,-0.458895][0.246006,0.575858,0][-0.587999,0.154875,0.770512][0.313957,0.824604,-0.470594][0.170341,0.592917,0][-0.875086,-0.0507577,0.279532][0.915689,-0.257999,-0.308141][0.27296,0.549938,0][-0.832994,0.073257,0.408494][0.770182,0.442984,-0.458895][0.246006,0.575858,0][-0.738499,0.00202291,0.513499][0.794215,0.0349176,-0.606633][0.224059,0.560969,0][-0.419758,-0.0450573,-0.852073][0.401458,-0.304306,0.863846][0.509477,0.551129,0][-0.418808,0.0373188,-0.850806][0.41011,0.246435,0.878111][0.509212,0.568347,0][-0.545884,0.0422081,-0.776463][0.58989,0.223486,0.775941][0.493674,0.569368,0][-0.546919,-0.040168,-0.776863][0.577888,-0.326997,0.747742][0.493757,0.552151,0][-0.545884,0.0422081,-0.776463][0.58989,0.223486,0.775941][0.493674,0.569368,0][-0.868679,0.115683,-0.450257][0.634884,0.69357,0.340417][0.425493,0.584725,0][-1.00366,-0.00155977,-0.701869][-0.844522,-0.0268741,-0.534846][0.189957,0.651715,0][-1.09206,-0.0877226,-0.4949][-0.835444,-0.436777,-0.333556][0.233216,0.633707,0][-1.18548,-0.0228728,-0.299121][-0.95742,-0.112476,-0.265886][0.274135,0.647261,0][-0.988039,-0.0801959,-0.688873][-0.740815,-0.465411,-0.484341][0.192673,0.63528,0][-1.00366,-0.00155977,-0.701869][-0.844522,-0.0268741,-0.534846][0.189957,0.651715,0][-0.869499,-0.000281773,-0.877665][-0.721219,0.0318246,-0.691976][0.153214,0.651982,0][-1.21998,-0.0545221,0.291464][-0.982111,0.0472976,0.182266][0.397573,0.640646,0][-1.19828,-0.130597,0.288008][-0.855129,-0.489999,0.169279][0.396851,0.624745,0][-1.15071,-0.126895,0.455403][-0.678985,-0.662585,0.316166][0.431838,0.625519,0][-1.21797,-0.126086,0.104586][-0.874292,-0.482019,-0.0571869][0.358514,0.625688,0][-1.21998,-0.0545221,0.291464][-0.982111,0.0472976,0.182266][0.397573,0.640646,0][-1.22874,-0.0379823,-0.0938634][-0.983836,-0.102591,-0.146769][0.317036,0.644103,0][0.13406,-0.145709,1.09706][-0.0120323,-0.952659,0.303803][0.56595,0.621587,0][0.135691,-0.10126,1.16822][0.0565671,-0.646236,0.761038][0.580823,0.630877,0][-0.235054,-0.0933124,1.1447][-0.130327,-0.739664,0.660236][0.575907,0.632538,0][0.323202,-0.10911,1.13153][0.190397,-0.648588,0.736941][0.0948846,0.537741,0][0.13406,-0.145709,1.09706][-0.0120323,-0.952659,0.303803][0.10209,0.530092,0][0.480254,-0.16149,0.997651][0.11215,-0.950323,0.290359][0.122867,0.526793,0][0.901967,2.20679,-0.0527757][-0.247832,0.812664,-0.527405][0.24193,0.0268019,0][0.89091,2.21842,0.0140458][-0.357686,0.918735,0.167292][0.227964,0.0243726,0][1.0822,2.28718,0.00904882][0.145177,0.116169,0.417752][0.229008,0.01,0][0.89091,2.21842,0.0140458][-0.357686,0.918735,0.167292][0.227964,0.0243726,0][0.751085,2.08796,0.132824][-0.118599,0.63005,0.767445][0.203138,0.0516391,0][1.0822,2.28718,0.00904882][0.145177,0.116169,0.417752][0.229008,0.01,0][-0.832486,0.0450917,-0.433111][0.860073,0.211615,0.464212][0.42191,0.569971,0][-0.847508,-0.0759333,-0.433841][0.821599,-0.412094,0.393895][0.422062,0.544676,0][-0.671759,-0.0752003,-0.68937][0.655507,-0.471575,0.589854][0.47547,0.544829,0][-0.671759,-0.0752003,-0.68937][0.655507,-0.471575,0.589854][0.47547,0.544829,0][-0.546919,-0.040168,-0.776863][0.577888,-0.326997,0.747742][0.493757,0.552151,0][-0.832486,0.0450917,-0.433111][0.860073,0.211615,0.464212][0.42191,0.569971,0][0.659004,-0.147096,0.92741][0.395968,-0.789808,0.468415][0.137548,0.529802,0][0.480254,-0.16149,0.997651][0.11215,-0.950323,0.290359][0.122867,0.526793,0][0.724922,-0.163861,0.719778][-0.0849094,-0.990982,-0.103662][0.180945,0.526298,0][0.480254,-0.16149,0.997651][0.11215,-0.950323,0.290359][0.122867,0.526793,0][0.451072,-0.164026,0.924802][-0.103849,-0.978355,-0.178987][0.138093,0.526264,0][0.724922,-0.163861,0.719778][-0.0849094,-0.990982,-0.103662][0.180945,0.526298,0][-0.670173,0.136489,-0.962239][-0.329259,0.847904,-0.415508][0.135537,0.680569,0][-0.701006,0.0781278,-1.0064][-0.55252,0.472428,-0.686682][0.126308,0.668371,0][-0.869499,-0.000281773,-0.877665][-0.721219,0.0318246,-0.691976][0.153214,0.651982,0][-0.840207,-0.111369,-0.845488][-0.556189,-0.641667,-0.528126][0.159939,0.628764,0][-0.869499,-0.000281773,-0.877665][-0.721219,0.0318246,-0.691976][0.153214,0.651982,0][-0.712794,-0.00137417,-1.02104][-0.593703,-0.0923674,-0.799365][0.123247,0.651754,0][0.898882,-0.101626,-0.337433][-0.467095,-0.864758,0.184432][0.266128,0.630801,0][1.00525,-0.139362,-0.392051][0.121702,-0.992015,-0.0330727][0.254712,0.622913,0][1.02405,-0.134767,-0.0630025][-0.177018,-0.984194,0.00509674][0.323486,0.623874,0][1.13528,-0.113093,0.0969853][0.610446,-0.789926,0.0580649][0.311114,0.536909,0][1.02405,-0.134767,-0.0630025][-0.177018,-0.984194,0.00509674][0.344553,0.532379,0][1.00525,-0.139362,-0.392051][0.121702,-0.992015,-0.0330727][0.413328,0.531419,0][1.32328,2.32801,0.11229][0.871484,0.237054,0.429326][0.048331,0.891313,0][1.31345,2.39303,-0.0695573][0.870404,0.435991,-0.228712][0.034741,0.893368,0][1.31345,2.39303,0.0653084][0.83456,0.499586,0.232214][0.034741,0.893368,0][1.32328,2.32801,0.11229][0.871484,0.237054,0.429326][0.491867,0.873327,0][1.31345,2.39303,0.0653084][0.83456,0.499586,0.232214][0.493922,0.859737,0][1.21655,2.32213,0.221708][0.499871,0.23149,0.834591][0.514173,0.874556,0][-0.535573,0.900617,-0.344723][-0.732053,0.526276,-0.432588][0.30295,0.299806,0][-0.699126,0.700172,-0.25763][-0.835889,0.465032,-0.291607][0.284747,0.3417,0][-0.606715,0.918732,-0.118783][-0.82612,0.553412,-0.106113][0.255726,0.296019,0][-0.606715,0.918732,-0.118783][-0.82612,0.553412,-0.106113][0.255726,0.296019,0][-0.272734,1.28499,-0.277176][-0.669266,0.607672,-0.427571][0.288832,0.219468,0][-0.535573,0.900617,-0.344723][-0.732053,0.526276,-0.432588][0.30295,0.299806,0][0.0238805,-0.13829,-1.19868][-0.047955,-0.676699,-0.734696][0.581921,0.531642,0][0.220523,-0.0304661,-1.21809][0.236126,-0.0855595,-0.967948][0.585978,0.554179,0][0.405334,-0.0284817,-1.16833][0.285596,-0.0509241,-0.956996][0.575577,0.554594,0][0.568005,0.058457,-1.08071][0.339249,0.491161,-0.802291][0.557264,0.572765,0][0.405334,-0.0284817,-1.16833][0.285596,-0.0509241,-0.956996][0.575577,0.554594,0][0.220523,-0.0304661,-1.21809][0.236126,-0.0855595,-0.967948][0.585978,0.554179,0][0.65996,0.0669656,0.65074][-0.622233,0.45152,-0.639497][0.472665,0.666038,0][0.648459,-0.0540569,0.644055][-0.677967,-0.229081,-0.698485][0.471268,0.640743,0][0.407698,-0.0112935,0.816741][-0.4555,-0.0528526,-0.888665][0.507361,0.649681,0][0.560484,0.0988917,0.77275][-0.440293,0.704935,-0.556066][0.498167,0.672711,0][0.65996,0.0669656,0.65074][-0.622233,0.45152,-0.639497][0.472665,0.666038,0][0.407698,-0.0112935,0.816741][-0.4555,-0.0528526,-0.888665][0.507361,0.649681,0][0.985152,2.06971,0.129122][-0.408672,-0.769116,0.491373][0.562538,0.927315,0][0.908474,2.08678,-0.00212442][-0.718412,-0.694103,0.0458877][0.578565,0.923747,0][1.0291,2.01222,-0.00212443][-0.308972,-0.95103,0.00889753][0.553352,0.939329,0][0.851112,2.2015,-0.0438002][-0.97313,-0.170718,-0.154511][0.0747728,0.99,0][0.886564,2.1306,-0.0695573][-0.808301,-0.489681,-0.326898][0.0895922,0.98259,0][0.908474,2.08678,-0.00212442][-0.718412,-0.694103,0.0458877][0.0987511,0.978011,0][1.08501,0,0][0,-2.59181,0][0.693176,0.488043,0][1.03328,0,-0.326596][2.54973,1.3029,-0.816645][0.624915,0.488043,0][0.941159,0.258178,-0.142059][0.913365,0.38602,-0.129432][0.663485,0.434081,0][0.941159,0.258178,-0.142059][0.913365,0.38602,-0.129432][0.663485,0.434081,0][0.941159,0.258178,0.142057][0.913649,0.391758,0.108498][0.722868,0.434081,0][1.08501,0,0][0,-2.59181,0][0.693176,0.488043,0][0.671196,1.90626,-0.235635][0.0830045,0.41191,-0.907436][0.643927,0.0896171,0][0.00495275,0.762982,-0.74997][-0.0609775,0.39931,-0.914786][0.536425,0.328573,0][0.382497,1.64555,-0.368398][-0.0729991,0.468239,-0.880581][0.616178,0.144108,0][0.00495275,0.762982,-0.74997][-0.0609775,0.39931,-0.914786][0.387651,0.328573,0][-0.0243644,1.18751,-0.543989][-0.264934,0.476493,-0.83831][0.344599,0.239841,0][0.382497,1.64555,-0.368398][-0.0729991,0.468239,-0.880581][0.307898,0.144108,0][0.524466,2.02629,0.0737229][-0.466166,0.843634,0.266403][0.215491,0.0645284,0][0.336299,1.91606,-0.0489582][-0.552679,0.8268,-0.104635][0.241132,0.0875687,0][0.159904,1.78541,0.0605962][-0.601117,0.779938,0.174228][0.218234,0.114875,0][0.159904,1.78541,0.0605962][-0.601117,0.779938,0.174228][0.218234,0.114875,0][0.159903,1.78541,-0.0605957][-0.615734,0.77069,-0.164038][0.243565,0.114875,0][-0.179216,1.48313,3.65519e-007][-0.715081,0.698701,-0.0218033][0.2309,0.178054,0][0.774166,0.874114,0.188664][0.948427,0.110069,0.297272][0.732609,0.305345,0][0.82329,0.701702,0][0.985822,0.167623,-0.00756116][0.693176,0.341381,0][0.790725,1.20385,-0.0722335][0.993517,0.0812246,-0.0795379][0.678079,0.236426,0][0.819887,0.555474,0.234641][0.906512,0.273161,0.321899][0.742219,0.371944,0][0.908152,0.262314,0.280618][0.871414,0.388507,0.299498][0.751828,0.433217,0][0.82329,0.701702,0][0.985822,0.167623,-0.00756116][0.693176,0.341381,0][-0.759414,0.234726,0.577497][-0.748947,0.357668,0.55781][0.110197,0.438983,0][-0.719209,0,0.747333][-0.853624,0.535487,1.01981][0.0746998,0.488043,0][-0.58277,0.678156,0.490043][-0.697758,0.458665,0.550237][0.128476,0.346302,0][-0.58277,0.678156,0.490043][-0.697758,0.458665,0.550237][0.128476,0.346302,0][-0.448659,1.11148,0.211654][-0.752347,0.57426,0.3228][0.186662,0.255733,0][-0.751648,0.470314,0.412271][-0.807114,0.405672,0.42895][0.144731,0.389743,0][-1.02627,0.109059,0.542669][-0.493167,0.84343,0.213102][0.450078,0.674836,0][-1.15186,0.032244,0.439469][-0.79769,0.547267,0.253357][0.428508,0.658781,0][-1.07812,0.043451,0.590053][-0.734467,0.534698,0.417918][0.459981,0.661123,0][-1.09711,-0.0388447,0.613567][-0.854501,0.0254147,0.518827][0.464896,0.643922,0][-1.07812,0.043451,0.590053][-0.734467,0.534698,0.417918][0.459981,0.661123,0][-1.15186,0.032244,0.439469][-0.79769,0.547267,0.253357][0.428508,0.658781,0][0.912511,-0.106362,0.255835][-0.609722,-0.75665,-0.236049][0.390126,0.629811,0][0.905117,0.0095525,-0.0437636][-0.999599,-0.0206828,-0.0193643][0.327507,0.654038,0][0.926938,-0.0683631,-0.0459559][-0.811245,-0.58463,-0.00942857][0.327049,0.637753,0][0.912511,-0.106362,0.255835][-0.609722,-0.75665,-0.236049][0.390126,0.629811,0][0.819023,-0.0440294,0.39133][-0.88339,-0.187882,-0.429327][0.418446,0.642839,0][0.905117,0.0095525,-0.0437636][-0.999599,-0.0206828,-0.0193643][0.327507,0.654038,0][0.600733,0.140938,0.826926][-0.212792,0.941052,-0.262946][0.50949,0.681499,0][0.488895,0.145942,0.990606][0.243992,0.904599,0.349527][0.543701,0.682545,0][0.900519,0.155845,0.610398][0.196927,0.962392,0.187139][0.464233,0.684614,0][0.900519,0.155845,0.610398][0.196927,0.962392,0.187139][0.203806,0.59312,0][0.809753,0.133141,0.784861][0.368979,0.846999,0.382684][0.167342,0.588374,0][0.977069,0.0882719,0.653029][0.746135,0.377081,0.548718][0.194896,0.578996,0][0.883162,0,-0.621223][0.082139,0.0435687,-0.118484][0.563335,0.488043,0][0.507939,-1.2087e-007,-0.941693][0,-2.74889,1.20158e-007][0.496353,0.488043,0][0.451855,0.482395,-0.742841][0.461347,0.329512,-0.82376][0.537915,0.387218,0][0.451855,0.482395,-0.742841][0.461347,0.329512,-0.82376][0.537915,0.387218,0][0.507939,-1.2087e-007,-0.941693][0,-2.74889,1.20158e-007][0.496353,0.488043,0][0.208104,0.528515,-0.823446][0.237864,0.356444,-0.903531][0.521068,0.377578,0][0.292191,0.0613521,-0.887641][-0.29554,0.408466,0.863604][0.151129,0.664865,0][0.146554,-0.0185205,-0.906011][-0.184575,0.000473701,0.982818][0.147289,0.64817,0][0.414438,-0.056006,-0.814908][-0.464014,-0.146007,0.873712][0.166331,0.640336,0][0.414438,-0.056006,-0.814908][-0.464014,-0.146007,0.873712][0.166331,0.640336,0][0.290679,-0.0977864,-0.886699][-0.286799,-0.487428,0.824718][0.151326,0.631603,0][0.691924,-0.141717,-0.709115][-0.326989,-0.856444,0.399478][0.188443,0.622421,0][-0.434514,0.108111,-0.88703][0.36384,0.555769,0.74749][0.516783,0.583143,0][-0.147204,0.137236,-1.03704][0.0567344,0.97506,0.214567][0.548136,0.58923,0][-0.76231,0.162541,-0.784333][-0.0543918,0.995927,-0.0719098][0.495319,0.594519,0][-0.434514,0.108111,-0.88703][0.36384,0.555769,0.74749][0.516783,0.583143,0][-0.418808,0.0373188,-0.850806][0.41011,0.246435,0.878111][0.509212,0.568347,0][-0.291261,0.102572,-0.939522][0.233875,0.660794,0.7132][0.527754,0.581985,0][1.03328,0,-0.326596][2.54973,1.3029,-0.816645][0.624915,0.488043,0][0.883162,0,-0.621223][0.082139,0.0435687,-0.118484][0.563335,0.488043,0][0.854043,0.269095,-0.41227][0.824702,0.386224,-0.413155][0.607008,0.4318,0][0.883162,0,-0.621223][0.082139,0.0435687,-0.118484][0.563335,0.488043,0][1.03328,0,-0.326596][2.54973,1.3029,-0.816645][0.624915,0.488043,0][1.08501,0,0][0,-2.59181,0][0.693176,0.488043,0][0.87415,2.32213,0.110454][-0.898059,0.18909,0.397158][0.585739,0.874556,0][0.852125,2.32801,-0.0407961][-0.970226,0.194618,-0.144172][0.590342,0.873327,0][0.851112,2.2015,-0.0438002][-0.97313,-0.170718,-0.154511][0.590554,0.899769,0][0.851112,2.2015,-0.0438002][-0.97313,-0.170718,-0.154511][0.0747728,0.99,0][0.852125,2.32801,-0.0407961][-0.970226,0.194618,-0.144172][0.048331,0.989788,0][0.923143,2.32213,-0.182136][-0.721862,0.233804,-0.651345][0.0495604,0.974945,0][0.809753,0.133141,0.784861][0.368979,0.846999,0.382684][0.167342,0.588374,0][0.847956,0.0786369,0.820737][0.65569,0.464722,0.595066][0.159843,0.576982,0][0.977069,0.0882719,0.653029][0.746135,0.377081,0.548718][0.194896,0.578996,0][1.0976,0.0177882,0.478723][0.901134,0.0151601,0.433276][0.231328,0.564264,0][0.977069,0.0882719,0.653029][0.746135,0.377081,0.548718][0.194896,0.578996,0][0.847956,0.0786369,0.820737][0.65569,0.464722,0.595066][0.159843,0.576982,0][0.749194,1.41514,-0.227683][0.983125,-0.133311,-0.125271][0.645589,0.192266,0][0.790725,1.20385,0.0722324][0.992677,-0.0535538,0.108281][0.708274,0.236426,0][0.790725,1.20385,-0.0722335][0.993517,0.0812246,-0.0795379][0.678079,0.236426,0][0.790725,1.20385,-0.0722335][0.993517,0.0812246,-0.0795379][0.678079,0.236426,0][0.790725,1.20385,0.0722324][0.992677,-0.0535538,0.108281][0.708274,0.236426,0][0.774166,0.874114,0.188664][0.948427,0.110069,0.297272][0.732609,0.305345,0][-0.139275,0.0272654,-0.927272][0.116782,0.244828,0.962508][0.525194,0.566245,0][-0.282756,-0.0504053,-0.902912][0.209084,-0.378239,0.901786][0.520103,0.550011,0][0.00456253,-0.0584856,-0.931307][-0.0691712,-0.31798,0.945571][0.526038,0.548322,0][0.00530766,0.0238906,-0.930004][-0.080415,0.245478,0.966061][0.142275,0.657035,0][0.00456253,-0.0584856,-0.931307][-0.0691712,-0.31798,0.945571][0.142002,0.639817,0][0.146554,-0.0185205,-0.906011][-0.184575,0.000473701,0.982818][0.147289,0.64817,0][-1.11228,0.13049,-0.13394][-0.193551,0.977902,0.0790338][0.30866,0.679315,0][-1.18277,0.0805455,-0.116692][-0.799773,0.594269,-0.0848969][0.312265,0.668876,0][-1.16114,0.100178,0.059324][-0.575505,0.815196,0.0651912][0.349054,0.67298,0][-1.23463,-0.00780537,0.0978408][-0.979773,0.193795,0.0498782][0.357104,0.65041,0][-1.16114,0.100178,0.059324][-0.575505,0.815196,0.0651912][0.349054,0.67298,0][-1.18277,0.0805455,-0.116692][-0.799773,0.594269,-0.0848969][0.312265,0.668876,0][0.600733,0.140938,0.826926][-0.212792,0.941052,-0.262946][0.50949,0.681499,0][0.560484,0.0988917,0.77275][-0.440293,0.704935,-0.556066][0.498167,0.672711,0][0.27899,0.0741288,0.890145][-0.252383,0.482863,-0.838538][0.522703,0.667535,0][0.27899,0.0741288,0.890145][-0.252383,0.482863,-0.838538][0.522703,0.667535,0][0.141893,0.158668,1.01658][0.0225128,0.960289,-0.278096][0.54913,0.685205,0][0.600733,0.140938,0.826926][-0.212792,0.941052,-0.262946][0.50949,0.681499,0][0.143703,0.0921268,1.19385][0.0970247,0.548667,0.830392][0.0818583,0.579802,0][-0.0308467,0.168452,1.1043][0.0308151,0.963223,0.26693][0.100575,0.595754,0][-0.0425376,0.129121,1.17491][-0.0171125,0.634941,0.772371][0.085818,0.587534,0][-0.0308467,0.168452,1.1043][0.0308151,0.963223,0.26693][0.567465,0.687249,0][-0.385166,0.159121,1.06691][-0.207462,0.846007,0.491154][0.559649,0.685299,0][-0.0425376,0.129121,1.17491][-0.0171125,0.634941,0.772371][0.582222,0.679029,0][0.638916,-0.04625,-0.655239][-0.647019,-0.329276,0.687709][0.199703,0.642375,0][0.639929,0.0361261,-0.657771][-0.654276,0.313054,0.688418][0.199174,0.659592,0][0.415389,0.0263701,-0.816313][-0.499727,0.264193,0.824909][0.166037,0.657553,0][0.415389,0.0263701,-0.816313][-0.499727,0.264193,0.824909][0.166037,0.657553,0][0.414438,-0.056006,-0.814908][-0.464014,-0.146007,0.873712][0.166331,0.640336,0][0.638916,-0.04625,-0.655239][-0.647019,-0.329276,0.687709][0.199703,0.642375,0][1.13528,-0.113093,0.0969853][0.610446,-0.789926,0.0580649][0.311114,0.536909,0][1.21288,0.0294806,0.0905947][0.990983,-0.0418889,0.12727][0.31245,0.566708,0][1.17111,0.0241022,0.286288][0.967239,-0.0342246,0.251551][0.271548,0.565584,0][1.12584,0.134041,0.276542][0.672309,0.714337,0.194225][0.273585,0.588562,0][1.17111,0.0241022,0.286288][0.967239,-0.0342246,0.251551][0.271548,0.565584,0][1.21288,0.0294806,0.0905947][0.990983,-0.0418889,0.12727][0.31245,0.566708,0][1.17604,0.143261,-0.101126][0.728111,0.68497,-0.0258946][0.352522,0.590489,0][1.22339,0.0338603,-0.104533][0.99949,-0.0316782,-0.00400833][0.353234,0.567624,0][1.20413,0.0361795,-0.294733][0.979506,0.104485,-0.172196][0.392987,0.568108,0][1.18318,-0.0451213,-0.2845][0.847545,-0.505444,-0.161846][0.390849,0.551116,0][1.20413,0.0361795,-0.294733][0.979506,0.104485,-0.172196][0.392987,0.568108,0][1.22339,0.0338603,-0.104533][0.99949,-0.0316782,-0.00400833][0.353234,0.567624,0][0.805856,-0.142495,0.792698][0.475068,-0.780231,0.406878][0.165704,0.530764,0][0.860618,0.000630117,0.835027][0.745796,-0.0922656,0.659754][0.156857,0.560678,0][0.702127,-0.0049209,0.982153][0.617227,-0.0982616,0.780625][0.126106,0.559518,0][0.6938,0.0733359,0.96398][0.494438,0.547315,0.67526][0.129904,0.575874,0][0.702127,-0.0049209,0.982153][0.617227,-0.0982616,0.780625][0.126106,0.559518,0][0.860618,0.000630117,0.835027][0.745796,-0.0922656,0.659754][0.156857,0.560678,0][0.948664,-0.101762,-0.746352][0.596673,-0.721055,-0.352222][0.48738,0.539277,0][0.989103,0.0138912,-0.784125][0.789439,-0.071561,-0.609643][0.495275,0.56345,0][1.08474,0.0268643,-0.639541][0.879868,-0.13081,-0.456859][0.465056,0.566161,0][1.06633,0.104413,-0.628253][0.653398,0.629066,-0.421125][0.462696,0.58237,0][1.08474,0.0268643,-0.639541][0.879868,-0.13081,-0.456859][0.465056,0.566161,0][0.989103,0.0138912,-0.784125][0.789439,-0.071561,-0.609643][0.495275,0.56345,0][0.326764,1.45651,0.456064][0.00584289,0.420704,0.907179][0.135578,0.183618,0][0.643021,1.92931,0.226895][-0.0149847,0.483065,0.875456][0.183476,0.0847996,0][0.0860952,1.35942,0.477705][-0.249463,0.513647,0.820935][0.131055,0.203912,0][0.587278,1.73562,0.312964][0.22365,0.301747,0.926784][0.758589,0.125283,0][0.643021,1.92931,0.226895][-0.0149847,0.483065,0.875456][0.7406,0.0847996,0][0.326764,1.45651,0.456064][0.00584289,0.420704,0.907179][0.788498,0.183618,0][-1.14981,-0.165675,-0.0990524][-0.55197,-0.824536,-0.124377][0.315951,0.617414,0][-1.22874,-0.0379823,-0.0938634][-0.983836,-0.102591,-0.146769][0.317036,0.644103,0][-1.18548,-0.0228728,-0.299121][-0.95742,-0.112476,-0.265886][0.274135,0.647261,0][-1.14065,0.0940102,-0.312672][-0.765956,0.618254,-0.176277][0.271303,0.67169,0][-1.18548,-0.0228728,-0.299121][-0.95742,-0.112476,-0.265886][0.274135,0.647261,0][-1.22874,-0.0379823,-0.0938634][-0.983836,-0.102591,-0.146769][0.317036,0.644103,0][0.884423,0.139878,0.409708][-0.64107,0.700861,-0.312768][0.422287,0.681277,0][0.871764,0.0443309,0.246563][-0.889391,0.408635,-0.204943][0.388189,0.661307,0][0.743582,0.0324345,0.522262][-0.815842,0.258045,-0.517507][0.445812,0.658821,0][0.743582,0.0324345,0.522262][-0.815842,0.258045,-0.517507][0.445812,0.658821,0][0.700718,0.126513,0.686512][-0.399389,0.83356,-0.381663][0.480142,0.678484,0][0.884423,0.139878,0.409708][-0.64107,0.700861,-0.312768][0.422287,0.681277,0][1.04264,2.5114,-0.0438002][-0.242033,0.9542,-0.175847][0.01,0.949968,0][0.929942,2.45392,-0.0407961][-0.63609,0.759925,-0.133806][0.0220143,0.973524,0][1.04264,2.5114,0.0395513][-0.166864,0.9537,0.250224][0.01,0.949968,0][1.17091,2.5114,-0.00212445][0.297185,0.951159,0.0835357][0.01,0.92316,0][1.04264,2.5114,-0.0438002][-0.242033,0.9542,-0.175847][0.01,0.949968,0][1.04264,2.5114,0.0395513][-0.166864,0.9537,0.250224][0.01,0.949968,0][-1.03353,0.150264,-0.315318][-0.177737,0.983989,-0.0132714][0.39729,0.591953,0][-1.02415,0.129857,0.177487][0.0512775,0.998655,0.00771456][0.294289,0.587688,0][-0.99434,0.147865,-0.312201][0.243962,0.965523,0.090814][0.396638,0.591452,0][-1.16114,0.100178,0.059324][-0.575505,0.815196,0.0651912][0.349054,0.67298,0][-1.02415,0.129857,0.177487][0.0512775,0.998655,0.00771456][0.373751,0.679183,0][-1.03353,0.150264,-0.315318][-0.177737,0.983989,-0.0132714][0.27075,0.683448,0][1.0822,2.28718,0.00904882][0.145177,0.116169,0.417752][0.695068,0.01,0][0.995795,2.10817,0.063489][0.724392,-0.159798,0.670612][0.706446,0.047416,0][1.09902,2.26713,0.00698902][0.902483,0.757265,3.43348e-006][0.694637,0.0141904,0][1.01089,2.0923,0.0277455][0.866408,-0.302895,0.396979][0.698976,0.0507328,0][1.09175,2.2758,-0.0152055][0.592515,-0.0628258,-0.46715][0.689998,0.0123798,0][1.09902,2.26713,0.00698902][0.902483,0.757265,3.43348e-006][0.694637,0.0141904,0][-0.764066,-0.153167,0.740235][0.107275,-0.992221,0.0631661][0.491371,0.620028,0][-0.823353,-0.134698,0.804054][-0.250039,-0.862688,0.439602][0.50471,0.623888,0][-1.02547,-0.166577,0.563929][-0.298952,-0.923124,0.241804][0.454521,0.617225,0][-1.02547,-0.166577,0.563929][-0.298952,-0.923124,0.241804][0.454521,0.617225,0][-1.01941,-0.186301,0.3715][0.0834112,-0.996467,-0.00979269][0.414302,0.613103,0][-0.764066,-0.153167,0.740235][0.107275,-0.992221,0.0631661][0.491371,0.620028,0][1.04082,2.08678,-0.184281][-0.326131,-0.670847,-0.666035][0.0987511,0.95035,0][0.983457,2.2015,-0.225957][-0.407149,-0.249376,-0.878659][0.0747728,0.962339,0][1.09818,2.1306,-0.225957][0.0402535,-0.44521,-0.894521][0.0895922,0.93836,0][1.04082,2.08678,-0.184281][-0.326131,-0.670847,-0.666035][0.0987511,0.95035,0][1.09818,2.1306,-0.225957][0.0402535,-0.44521,-0.894521][0.0895922,0.93836,0][1.11578,2.06971,-0.175814][0.152257,-0.742893,-0.651864][0.102319,0.934682,0][-0.124607,1.00708,0.610274][-0.302557,0.457351,0.836235][0.103347,0.277553,0][-0.173182,0.600658,0.792906][-0.254028,0.398154,0.881444][0.0651746,0.3625,0][0.0860952,1.35942,0.477705][-0.249463,0.513647,0.820935][0.131055,0.203912,0][-0.173182,0.600658,0.792906][-0.254028,0.398154,0.881444][0.0651746,0.3625,0][-0.124607,1.00708,0.610274][-0.302557,0.457351,0.836235][0.103347,0.277553,0][-0.411279,0.212997,0.87541][-0.445537,0.340092,0.828151][0.0479305,0.443525,0][1.11578,2.06971,-0.175814][0.152257,-0.742893,-0.651864][0.102319,0.934682,0][1.25496,2.08678,-0.114703][0.562894,-0.708479,-0.425685][0.0987511,0.905593,0][1.15737,2.01222,-0.0438002][0.282473,-0.950217,-0.13152][0.114333,0.92599,0][1.07809,2.01222,0.0653084][-0.0273457,-0.951727,0.305724][0.114333,0.942559,0][1.07809,2.01222,-0.0695573][-0.10394,-0.95103,-0.2911][0.114333,0.942559,0][1.15737,2.01222,-0.0438002][0.282473,-0.950217,-0.13152][0.114333,0.92599,0][-0.0308467,0.168452,1.1043][0.0308151,0.963223,0.26693][0.100575,0.595754,0][0.143703,0.0921268,1.19385][0.0970247,0.548667,0.830392][0.0818583,0.579802,0][0.331808,0.115946,1.12873][0.247478,0.703541,0.666172][0.0954697,0.58478,0][0.33503,0.00628045,1.1743][0.300248,0.000114532,0.953861][0.0859444,0.561859,0][0.331808,0.115946,1.12873][0.247478,0.703541,0.666172][0.0954697,0.58478,0][0.143703,0.0921268,1.19385][0.0970247,0.548667,0.830392][0.0818583,0.579802,0][-0.0368969,1.41677,-0.379109][-0.454375,0.589281,-0.668051][0.310137,0.191925,0][-0.272734,1.28499,-0.277176][-0.669266,0.607672,-0.427571][0.288832,0.219468,0][0.028881,1.61873,-0.209629][-0.593448,0.695215,-0.40558][0.274714,0.149713,0][-0.272734,1.28499,-0.277176][-0.669266,0.607672,-0.427571][0.288832,0.219468,0][-0.327681,1.30656,-0.0955081][-0.762453,0.629528,-0.149534][0.250862,0.21496,0][0.028881,1.61873,-0.209629][-0.593448,0.695215,-0.40558][0.274714,0.149713,0][0.808619,1.79383,-0.193009][0.64946,-0.0384623,-0.759422][0.652836,0.113114,0][0.86461,1.74803,-0.108309][0.888663,-0.202213,-0.411568][0.670539,0.122688,0][0.749194,1.41514,-0.227683][0.983125,-0.133311,-0.125271][0.645589,0.192266,0][0.749194,1.41514,-0.227683][0.983125,-0.133311,-0.125271][0.645589,0.192266,0][0.699801,1.07324,-0.315136][0.824418,0.0560789,-0.563197][0.62731,0.263726,0][0.808619,1.79383,-0.193009][0.64946,-0.0384623,-0.759422][0.652836,0.113114,0][-0.282756,-0.0504053,-0.902912][0.209084,-0.378239,0.901786][0.520103,0.550011,0][-0.301273,-0.148268,-0.97666][0.113418,-0.858065,0.500859][0.535517,0.529557,0][0.00940505,-0.157403,-1.007][-0.054517,-0.802869,0.593658][0.541857,0.527648,0][-0.301273,-0.148268,-0.97666][0.113418,-0.858065,0.500859][0.572083,0.721493,0][-0.156803,-0.171805,-1.12598][-0.0640342,-0.963518,-0.259871][0.53468,0.743557,0][0.0122331,-0.174511,-1.04564][-0.0130506,-0.989549,0.143603][0.505082,0.717981,0][1.16572,0.139328,0.0870666][0.69293,0.711056,0.119364][0.313188,0.589667,0][1.10441,0.179189,-0.0879798][0.222288,0.974981,0.000437925][0.349774,0.597999,0][1.02665,0.150766,0.453864][0.429602,0.871759,0.235537][0.236523,0.592058,0][1.22339,0.0338603,-0.104533][0.99949,-0.0316782,-0.00400833][0.353234,0.567624,0][1.17604,0.143261,-0.101126][0.728111,0.68497,-0.0258946][0.352522,0.590489,0][1.16572,0.139328,0.0870666][0.69293,0.711056,0.119364][0.313188,0.589667,0][-0.544189,-0.0250008,0.709689][0.543142,-0.277962,-0.792297][0.183054,0.555321,0][-0.57056,-0.0958356,0.743122][0.39094,-0.744485,-0.54121][0.176066,0.540516,0][-0.662464,-0.0702684,0.632407][0.733462,-0.170155,-0.658088][0.199206,0.54586,0][-0.662464,-0.0702684,0.632407][0.733462,-0.170155,-0.658088][0.199206,0.54586,0][-0.57056,-0.0958356,0.743122][0.39094,-0.744485,-0.54121][0.176066,0.540516,0][-0.913379,-0.126039,0.303664][0.646254,-0.732866,-0.212753][0.267917,0.534203,0][-0.245152,0.0188195,1.19288][-0.189165,0.0673815,0.979631][0.585978,0.655975,0][-0.234954,0.0985992,1.17372][-0.167458,0.510449,0.843445][0.581973,0.67265,0][-0.426137,0.0184248,1.13941][-0.37319,0.113589,0.920775][0.574802,0.655892,0][-0.245225,-0.0223106,1.18666][-0.198485,-0.331875,0.922206][0.584678,0.647378,0][-0.245152,0.0188195,1.19288][-0.189165,0.0673815,0.979631][0.585978,0.655975,0][-0.426137,0.0184248,1.13941][-0.37319,0.113589,0.920775][0.574802,0.655892,0][-1.02547,-0.166577,0.563929][-0.298952,-0.923124,0.241804][0.454521,0.617225,0][-1.07787,-0.115688,0.604006][-0.688104,-0.560082,0.461326][0.462897,0.627862,0][-1.17308,-0.159447,0.277156][-0.50724,-0.854702,0.11042][0.394583,0.618715,0][-1.17308,-0.159447,0.277156][-0.50724,-0.854702,0.11042][0.394583,0.618715,0][-1.15071,-0.126895,0.455403][-0.678985,-0.662585,0.316166][0.431838,0.625519,0][-1.19828,-0.130597,0.288008][-0.855129,-0.489999,0.169279][0.396851,0.624745,0][-0.282756,-0.0504053,-0.902912][0.209084,-0.378239,0.901786][0.520103,0.550011,0][-0.139275,0.0272654,-0.927272][0.116782,0.244828,0.962508][0.525194,0.566245,0][-0.418808,0.0373188,-0.850806][0.41011,0.246435,0.878111][0.509212,0.568347,0][-0.418808,0.0373188,-0.850806][0.41011,0.246435,0.878111][0.509212,0.568347,0][-0.419758,-0.0450573,-0.852073][0.401458,-0.304306,0.863846][0.509477,0.551129,0][-0.282756,-0.0504053,-0.902912][0.209084,-0.378239,0.901786][0.520103,0.550011,0][1.21655,2.32213,0.221708][0.499871,0.23149,0.834591][0.514173,0.874556,0][1.13983,2.19562,0.245574][0.176133,-0.250814,0.951877][0.53021,0.900998,0][1.27687,2.2015,0.177887][0.678472,-0.239137,0.694614][0.501567,0.899769,0][1.13728,2.32213,0.247465][0.0907094,0.242698,0.965852][0.530742,0.874556,0][1.13983,2.19562,0.245574][0.176133,-0.250814,0.951877][0.53021,0.900998,0][1.21655,2.32213,0.221708][0.499871,0.23149,0.834591][0.514173,0.874556,0][-0.939754,0.13943,-0.680409][-0.443896,0.852882,-0.274863][0.194442,0.681184,0][-0.986038,0.0789427,-0.699849][-0.754516,0.42672,-0.498613][0.190379,0.668541,0][-1.09039,0.071416,-0.508853][-0.859529,0.350196,-0.372253][0.230299,0.666968,0][-1.09039,0.071416,-0.508853][-0.859529,0.350196,-0.372253][0.230299,0.666968,0][-1.00366,-0.00155977,-0.701869][-0.844522,-0.0268741,-0.534846][0.189957,0.651715,0][-1.18548,-0.0228728,-0.299121][-0.95742,-0.112476,-0.265886][0.274135,0.647261,0][-0.999484,-0.0212405,0.745957][-0.738984,0.124406,0.662137][0.492567,0.647602,0][-0.982334,-0.0988274,0.733889][-0.581941,-0.556274,0.593215][0.490044,0.631386,0][-0.743173,-0.0276365,0.967832][-0.511557,-0.401452,0.759701][0.538941,0.646265,0][-0.823353,-0.134698,0.804054][-0.250039,-0.862688,0.439602][0.50471,0.623888,0][-0.743173,-0.0276365,0.967832][-0.511557,-0.401452,0.759701][0.538941,0.646265,0][-0.982334,-0.0988274,0.733889][-0.581941,-0.556274,0.593215][0.490044,0.631386,0][-0.235054,-0.0933124,1.1447][-0.130327,-0.739664,0.660236][0.575907,0.632538,0][-0.245225,-0.0223106,1.18666][-0.198485,-0.331875,0.922206][0.584678,0.647378,0][-0.419527,-0.0602226,1.11781][-0.32278,-0.527482,0.78586][0.570287,0.639454,0][-0.0557947,-0.0234923,1.2136][-0.05711,-0.208462,0.976362][0.590309,0.647131,0][-0.235054,-0.0933124,1.1447][-0.130327,-0.739664,0.660236][0.575907,0.632538,0][0.135691,-0.10126,1.16822][0.0565671,-0.646236,0.761038][0.580823,0.630877,0][1.07886,-0.0630241,0.475145][0.803996,-0.482228,0.347918][0.232075,0.547374,0][0.929811,-0.133043,0.6333][0.490353,-0.806856,0.329449][0.19902,0.532739,0][1.09629,-0.118293,0.280313][0.62762,-0.766513,0.136202][0.272797,0.535822,0][0.929811,-0.133043,0.6333][0.490353,-0.806856,0.329449][0.19902,0.532739,0][0.975929,-0.0708667,0.656592][0.748486,-0.390797,0.535767][0.194151,0.545735,0][0.860618,0.000630117,0.835027][0.745796,-0.0922656,0.659754][0.156857,0.560678,0][0.193456,-1.25309e-007,-1.04388][0,0.483188,-1.25436][0.474996,0.488043,0][0.208104,0.528515,-0.823446][0.237864,0.356444,-0.903531][0.521068,0.377578,0][0.507939,-1.2087e-007,-0.941693][0,-2.74889,1.20158e-007][0.496353,0.488043,0][0.0799565,0.552761,-0.83371][0.0117295,0.354687,-0.934912][0.518923,0.372511,0][0.208104,0.528515,-0.823446][0.237864,0.356444,-0.903531][0.521068,0.377578,0][0.193456,-1.25309e-007,-1.04388][0,0.483188,-1.25436][0.474996,0.488043,0][0.693441,0.905796,0.358862][0.87134,0.0882126,0.482686][0.768182,0.298723,0][0.676945,1.26582,0.326505][0.741205,0.0978063,0.664115][0.761419,0.223476,0][0.552579,0.623539,0.6143][0.628646,0.287661,0.722534][0.821571,0.357717,0][0.774166,0.874114,0.188664][0.948427,0.110069,0.297272][0.732609,0.305345,0][0.693441,0.905796,0.358862][0.87134,0.0882126,0.482686][0.768182,0.298723,0][0.64038,0.601182,0.536918][0.752421,0.283643,0.594482][0.805397,0.36239,0][0.750517,-0.161722,-0.771202][0.0634641,-0.997952,0.00797214][0.492574,0.526745,0][0.493084,-0.176767,-0.949697][0.0707232,-0.996045,-0.0537756][0.529881,0.5236,0][0.810399,-0.139047,-0.83651][0.338409,-0.878616,-0.336917][0.506224,0.531484,0][0.00940505,-0.157403,-1.007][-0.054517,-0.802869,0.593658][0.126183,0.619143,0][0.493084,-0.176767,-0.949697][0.0707232,-0.996045,-0.0537756][0.138159,0.615095,0][0.750517,-0.161722,-0.771202][0.0634641,-0.997952,0.00797214][0.175466,0.61824,0][0.022224,0.130278,-1.12298][0.0328135,0.920631,-0.389051][0.371076,0.966039,0][0.0292531,0.014075,-1.23744][0.0614803,0.359155,-0.931251][0.371606,0.99,0][-0.161578,0.0598636,-1.21703][-0.0566902,0.561279,-0.825683][0.331918,0.984174,0][-0.164802,-0.0200268,-1.23998][-0.112393,-0.130344,-0.985078][0.077486,0.647856,0][-0.161578,0.0598636,-1.21703][-0.0566902,0.561279,-0.825683][0.0822839,0.664553,0][0.0292531,0.014075,-1.23744][0.0614803,0.359155,-0.931251][0.0780184,0.654983,0][-0.155434,1.47204,0.165677][-0.680188,0.663334,0.31198][0.196272,0.180372,0][-0.35606,1.08165,0.40259][-0.634612,0.535931,0.556817][0.146755,0.261968,0][0.0288813,1.61873,0.20963][-0.57474,0.687302,0.444175][0.187085,0.149713,0][0.0288813,1.61873,0.20963][-0.57474,0.687302,0.444175][0.187085,0.149713,0][0.159904,1.78541,0.0605962][-0.601117,0.779938,0.174228][0.218234,0.114875,0][-0.155434,1.47204,0.165677][-0.680188,0.663334,0.31198][0.196272,0.180372,0][-0.819456,0.140938,0.794313][-0.455594,0.819059,0.348678][0.502674,0.681499,0][-1.07812,0.043451,0.590053][-0.734467,0.534698,0.417918][0.459981,0.661123,0][-0.728962,0.094029,0.951868][-0.507551,0.560867,0.65408][0.535604,0.671694,0][-0.728962,0.094029,0.951868][-0.507551,0.560867,0.65408][0.535604,0.671694,0][-0.663576,0.171398,0.86963][-0.226715,0.949743,0.215842][0.518415,0.687865,0][-0.819456,0.140938,0.794313][-0.455594,0.819059,0.348678][0.502674,0.681499,0][0.855179,-0.0797928,-0.886679][0.563947,-0.551418,-0.614737][0.51671,0.543869,0][0.810399,-0.139047,-0.83651][0.338409,-0.878616,-0.336917][0.506224,0.531484,0][0.3733,-0.163265,-1.09091][0.171497,-0.841421,-0.512444][0.559396,0.526422,0][0.810399,-0.139047,-0.83651][0.338409,-0.878616,-0.336917][0.506224,0.531484,0][0.855179,-0.0797928,-0.886679][0.563947,-0.551418,-0.614737][0.51671,0.543869,0][0.948664,-0.101762,-0.746352][0.596673,-0.721055,-0.352222][0.48738,0.539277,0][-0.934418,-0.08531,-0.138446][0.842914,-0.527385,0.106589][0.360322,0.542716,0][-0.913465,-0.00429873,-0.143983][0.98599,-0.10629,0.128551][0.361479,0.559648,0][-0.906776,-0.0103152,0.141766][0.927095,-0.361007,-0.100838][0.301755,0.558391,0][-0.906776,-0.0103152,0.141766][0.927095,-0.361007,-0.100838][0.301755,0.558391,0][-0.927063,-0.0919544,0.153973][0.895766,-0.411936,-0.167067][0.299203,0.541327,0][-0.934418,-0.08531,-0.138446][0.842914,-0.527385,0.106589][0.360322,0.542716,0][1.11332,0.142551,-0.455818][0.575975,0.792788,-0.199347][0.426656,0.590341,0][1.04556,0.177135,-0.420503][0.177534,0.978831,-0.101846][0.419275,0.597569,0][1.10441,0.179189,-0.0879798][0.222288,0.974981,0.000437925][0.349774,0.597999,0][1.06633,0.104413,-0.628253][0.653398,0.629066,-0.421125][0.462696,0.58237,0][1.04556,0.177135,-0.420503][0.177534,0.978831,-0.101846][0.419275,0.597569,0][1.11332,0.142551,-0.455818][0.575975,0.792788,-0.199347][0.426656,0.590341,0][-0.766163,-0.155736,-0.776447][-0.386739,-0.900444,-0.199079][0.49367,0.527996,0][-0.588528,-0.13729,-0.836179][0.357216,-0.763381,0.538188][0.506155,0.531851,0][-0.899897,-0.135437,-0.448857][0.564728,-0.781888,0.264072][0.425201,0.532239,0][-0.588528,-0.13729,-0.836179][0.357216,-0.763381,0.538188][0.506155,0.531851,0][-0.766163,-0.155736,-0.776447][-0.386739,-0.900444,-0.199079][0.49367,0.527996,0][-0.156803,-0.171805,-1.12598][-0.0640342,-0.963518,-0.259871][0.566726,0.524638,0][0.329637,0.132566,-0.979345][-0.037065,0.991858,0.121833][0.536078,0.588254,0][0.022224,0.130278,-1.12298][0.0328135,0.920631,-0.389051][0.566099,0.587776,0][0.0151988,0.132921,-1.04061][0.000755939,0.974509,0.224348][0.548882,0.588328,0][0.0151988,0.132921,-1.04061][0.000755939,0.974509,0.224348][0.548882,0.588328,0][0.022224,0.130278,-1.12298][0.0328135,0.920631,-0.389051][0.566099,0.587776,0][-0.326554,0.142233,-1.0871][-0.0376472,0.958504,-0.282582][0.5586,0.590275,0][-0.520991,0.107403,-1.08883][-0.310038,0.669133,-0.67538][0.109077,0.67449,0][-0.670173,0.136489,-0.962239][-0.329259,0.847904,-0.415508][0.135537,0.680569,0][-0.326554,0.142233,-1.0871][-0.0376472,0.958504,-0.282582][0.10944,0.681769,0][-0.701006,0.0781278,-1.0064][-0.55252,0.472428,-0.686682][0.126308,0.668371,0][-0.670173,0.136489,-0.962239][-0.329259,0.847904,-0.415508][0.135537,0.680569,0][-0.520991,0.107403,-1.08883][-0.310038,0.669133,-0.67538][0.109077,0.67449,0][0.728969,1.85899,-0.235635][0.375554,0.184848,-0.90818][0.643927,0.0994954,0][0.671196,1.90626,-0.235635][0.0830045,0.41191,-0.907436][0.643927,0.0896171,0][1.09175,2.2758,-0.0152055][0.592515,-0.0628258,-0.46715][0.689998,0.0123798,0][0.671196,1.90626,-0.235635][0.0830045,0.41191,-0.907436][0.643927,0.0896171,0][0.728969,1.85899,-0.235635][0.375554,0.184848,-0.90818][0.643927,0.0994954,0][0.382706,1.2211,-0.52954][0.545522,0.146805,-0.825139][0.582497,0.232821,0][-0.157569,-0.0250827,0.885835][0.226027,-0.255412,-0.940041][0.146237,0.555304,0][-0.155759,0.0572934,0.887584][0.218986,0.0842997,-0.972079][0.145872,0.572521,0][0.131686,0.043177,0.903801][-0.066218,0.267845,-0.961184][0.142482,0.569571,0][0.131686,0.043177,0.903801][-0.066218,0.267845,-0.961184][0.142482,0.569571,0][0.129876,-0.0391991,0.903293][-0.0954299,-0.262111,-0.960308][0.142588,0.552353,0][-0.157569,-0.0250827,0.885835][0.226027,-0.255412,-0.940041][0.146237,0.555304,0][0.561456,0.461657,-0.674486][0.62333,0.292223,-0.725304][0.552202,0.391552,0][0.854043,0.269095,-0.41227][0.824702,0.386224,-0.413155][0.607008,0.4318,0][0.883162,0,-0.621223][0.082139,0.0435687,-0.118484][0.563335,0.488043,0][0.640379,0.601183,-0.536919][0.775387,0.236771,-0.585418][0.580955,0.36239,0][0.791383,0.711982,-0.211654][0.933145,0.20162,-0.297641][0.648939,0.339232,0][0.854043,0.269095,-0.41227][0.824702,0.386224,-0.413155][0.607008,0.4318,0][-0.0303804,-0.141087,1.01689][-0.0371145,-0.98286,-0.180579][0.549195,0.622553,0][-0.169468,-0.0952725,0.924527][0.165562,-0.68265,-0.711743][0.529889,0.632128,0][0.130864,-0.10961,0.943977][-0.164423,-0.559635,-0.812264][0.533955,0.629132,0][-0.0303804,-0.141087,1.01689][-0.0371145,-0.98286,-0.180579][0.549195,0.622553,0][0.130864,-0.10961,0.943977][-0.164423,-0.559635,-0.812264][0.533955,0.629132,0][0.424682,-0.123694,0.860418][-0.335629,-0.678446,-0.653502][0.51649,0.626188,0][-1.21998,-0.0545221,0.291464][-0.982111,0.0472976,0.182266][0.397573,0.640646,0][-1.23463,-0.00780537,0.0978408][-0.979773,0.193795,0.0498782][0.357104,0.65041,0][-1.22874,-0.0379823,-0.0938634][-0.983836,-0.102591,-0.146769][0.317036,0.644103,0][-1.21998,-0.0545221,0.291464][-0.982111,0.0472976,0.182266][0.397573,0.640646,0][-1.15186,0.032244,0.439469][-0.79769,0.547267,0.253357][0.428508,0.658781,0][-1.23463,-0.00780537,0.0978408][-0.979773,0.193795,0.0498782][0.357104,0.65041,0][0.3733,-0.163265,-1.09091][0.171497,-0.841421,-0.512444][0.559396,0.526422,0][0.405334,-0.0284817,-1.16833][0.285596,-0.0509241,-0.956996][0.575577,0.554594,0][0.574987,-0.0627342,-1.09214][0.427397,-0.362641,-0.828144][0.559654,0.547434,0][0.73503,-0.0113983,-1.01061][0.545912,-0.0766649,-0.834328][0.542612,0.558164,0][0.574987,-0.0627342,-1.09214][0.427397,-0.362641,-0.828144][0.559654,0.547434,0][0.405334,-0.0284817,-1.16833][0.285596,-0.0509241,-0.956996][0.575577,0.554594,0][0.871764,0.0443309,0.246563][-0.889391,0.408635,-0.204943][0.388189,0.661307,0][0.975081,0.151071,0.0957407][-0.587392,0.808209,-0.0420508][0.356665,0.683617,0][0.925923,0.0907754,-0.0494777][-0.863204,0.504853,0.00165961][0.326313,0.671014,0][1.0064,0.172895,-0.229047][-0.109018,0.98762,0.112792][0.288781,0.688178,0][0.925923,0.0907754,-0.0494777][-0.863204,0.504853,0.00165961][0.326313,0.671014,0][0.975081,0.151071,0.0957407][-0.587392,0.808209,-0.0420508][0.356665,0.683617,0][-0.875086,-0.0507577,0.279532][0.915689,-0.257999,-0.308141][0.27296,0.549938,0][-0.913379,-0.126039,0.303664][0.646254,-0.732866,-0.212753][0.267917,0.534203,0][-0.927063,-0.0919544,0.153973][0.895766,-0.411936,-0.167067][0.299203,0.541327,0][-0.927063,-0.0919544,0.153973][0.895766,-0.411936,-0.167067][0.299203,0.541327,0][-0.906776,-0.0103152,0.141766][0.927095,-0.361007,-0.100838][0.301755,0.558391,0][-0.875086,-0.0507577,0.279532][0.915689,-0.257999,-0.308141][0.27296,0.549938,0][0.922196,2.19562,-0.179111][-0.66893,-0.367799,-0.645954][0.0760021,0.975143,0][0.983457,2.2015,-0.225957][-0.407149,-0.249376,-0.878659][0.0747728,0.962339,0][0.886564,2.1306,-0.0695573][-0.808301,-0.489681,-0.326898][0.0895922,0.98259,0][0.923143,2.32213,-0.182136][-0.721862,0.233804,-0.651345][0.0495604,0.974945,0][0.983457,2.2015,-0.225957][-0.407149,-0.249376,-0.878659][0.0747728,0.962339,0][0.922196,2.19562,-0.179111][-0.66893,-0.367799,-0.645954][0.0760021,0.975143,0][-0.0243644,1.18751,-0.543989][-0.264934,0.476493,-0.83831][0.344599,0.239841,0][-0.289622,1.06024,-0.484315][-0.532148,0.508043,-0.677282][0.332126,0.266442,0][-0.0368969,1.41677,-0.379109][-0.454375,0.589281,-0.668051][0.310137,0.191925,0][-0.272734,1.28499,-0.277176][-0.669266,0.607672,-0.427571][0.288832,0.219468,0][-0.0368969,1.41677,-0.379109][-0.454375,0.589281,-0.668051][0.310137,0.191925,0][-0.289622,1.06024,-0.484315][-0.532148,0.508043,-0.677282][0.332126,0.266442,0][1.0291,2.01222,-0.00212443][-0.308972,-0.95103,0.00889753][0.114333,0.952798,0][0.939691,2.06971,-0.0707987][-0.57291,-0.742893,-0.346243][0.102319,0.971486,0][1.07809,2.01222,-0.0695573][-0.10394,-0.95103,-0.2911][0.114333,0.942559,0][1.0291,2.01222,-0.00212443][-0.308972,-0.95103,0.00889753][0.114333,0.952798,0][0.908474,2.08678,-0.00212442][-0.718412,-0.694103,0.0458877][0.0987511,0.978011,0][0.939691,2.06971,-0.0707987][-0.57291,-0.742893,-0.346243][0.102319,0.971486,0][0.986627,2.32801,-0.225923][-0.391392,0.251143,-0.885291][0.048331,0.961676,0][1.10183,2.39303,-0.225957][0.00650135,0.562933,-0.826477][0.034741,0.937598,0][1.13728,2.32213,-0.251714][0.0958692,0.177468,-0.979446][0.0495604,0.930188,0][0.986627,2.32801,-0.225923][-0.391392,0.251143,-0.885291][0.048331,0.961676,0][1.01067,2.45392,-0.151913][-0.331496,0.736052,-0.590201][0.0220143,0.95665,0][1.10183,2.39303,-0.225957][0.00650135,0.562933,-0.826477][0.034741,0.937598,0][0.73503,-0.0113983,-1.01061][0.545912,-0.0766649,-0.834328][0.542612,0.558164,0][0.721754,0.0683565,-0.994283][0.458434,0.504602,-0.731584][0.5392,0.574834,0][0.872237,0.000153834,-0.906709][0.666296,0.0253514,-0.745256][0.520896,0.560579,0][0.855179,-0.0797928,-0.886679][0.563947,-0.551418,-0.614737][0.51671,0.543869,0][0.73503,-0.0113983,-1.01061][0.545912,-0.0766649,-0.834328][0.542612,0.558164,0][0.872237,0.000153834,-0.906709][0.666296,0.0253514,-0.745256][0.520896,0.560579,0][-1.01575,0,-0.165333][0,-2.67035,0][0.265456,0.488043,0][-0.977037,0,0.326597][-1.03284,0.399103,0.52626][0.162638,0.488043,0][-0.898697,0.243419,0.303609][-0.900438,0.333669,0.279065][0.167443,0.437166,0][-0.751648,0.470314,0.412271][-0.807114,0.405672,0.42895][0.144731,0.389743,0][-0.898697,0.243419,0.303609][-0.900438,0.333669,0.279065][0.167443,0.437166,0][-0.977037,0,0.326597][-1.03284,0.399103,0.52626][0.162638,0.488043,0][-0.76231,0.162541,-0.784333][-0.0543918,0.995927,-0.0719098][0.172721,0.686014,0][-0.939754,0.13943,-0.680409][-0.443896,0.852882,-0.274863][0.194442,0.681184,0][-1.03856,0.133151,-0.503348][-0.49468,0.842758,-0.212251][0.23145,0.679871,0][-1.09039,0.071416,-0.508853][-0.859529,0.350196,-0.372253][0.230299,0.666968,0][-1.03856,0.133151,-0.503348][-0.49468,0.842758,-0.212251][0.23145,0.679871,0][-0.939754,0.13943,-0.680409][-0.443896,0.852882,-0.274863][0.194442,0.681184,0][-0.539935,-0.00449521,-1.13039][-0.461088,0.0209924,-0.887106][0.100391,0.651102,0][-0.520991,0.107403,-1.08883][-0.310038,0.669133,-0.67538][0.109077,0.67449,0][-0.355831,-0.0113315,-1.20322][-0.283619,0.0743696,-0.956049][0.0851693,0.649673,0][-0.355831,-0.0113315,-1.20322][-0.283619,0.0743696,-0.956049][0.0851693,0.649673,0][-0.351889,-0.0910096,-1.18427][-0.20044,-0.497915,-0.843744][0.0891302,0.63302,0][-0.539935,-0.00449521,-1.13039][-0.461088,0.0209924,-0.887106][0.100391,0.651102,0][-0.327681,1.30656,-0.0955081][-0.762453,0.629528,-0.149534][0.250862,0.21496,0][-0.472541,1.11917,0.107147][-0.815635,0.574398,0.0693237][0.208505,0.254125,0][-0.179216,1.48313,3.65519e-007][-0.715081,0.698701,-0.0218033][0.2309,0.178054,0][-0.179216,1.48313,3.65519e-007][-0.715081,0.698701,-0.0218033][0.2309,0.178054,0][0.028881,1.61873,-0.209629][-0.593448,0.695215,-0.40558][0.274714,0.149713,0][-0.327681,1.30656,-0.0955081][-0.762453,0.629528,-0.149534][0.250862,0.21496,0][0.33503,0.00628045,1.1743][0.300248,0.000114532,0.953861][0.0859444,0.561859,0][0.323202,-0.10911,1.13153][0.190397,-0.648588,0.736941][0.0948846,0.537741,0][0.50534,-0.116874,1.05909][0.3507,-0.605722,0.71422][0.110025,0.536119,0][0.480254,-0.16149,0.997651][0.11215,-0.950323,0.290359][0.122867,0.526793,0][0.50534,-0.116874,1.05909][0.3507,-0.605722,0.71422][0.110025,0.536119,0][0.323202,-0.10911,1.13153][0.190397,-0.648588,0.736941][0.0948846,0.537741,0][-0.395056,-0.116515,1.0616][-0.173889,-0.892706,0.41574][0.55854,0.627689,0][-0.823353,-0.134698,0.804054][-0.250039,-0.862688,0.439602][0.50471,0.623888,0][-0.0303804,-0.141087,1.01689][-0.0371145,-0.98286,-0.180579][0.549195,0.622553,0][-0.395056,-0.116515,1.0616][-0.173889,-0.892706,0.41574][0.55854,0.627689,0][-0.419527,-0.0602226,1.11781][-0.32278,-0.527482,0.78586][0.570287,0.639454,0][-0.823353,-0.134698,0.804054][-0.250039,-0.862688,0.439602][0.50471,0.623888,0][-0.155759,0.0572934,0.887584][0.218986,0.0842997,-0.972079][0.145872,0.572521,0][-0.298648,0.100117,0.862038][0.259071,0.661676,-0.70361][0.151211,0.581472,0][0.13648,0.115446,0.945318][0.0185653,0.723634,-0.689935][0.133805,0.584676,0][0.13648,0.115446,0.945318][0.0185653,0.723634,-0.689935][0.133805,0.584676,0][0.131686,0.043177,0.903801][-0.066218,0.267845,-0.961184][0.142482,0.569571,0][-0.155759,0.0572934,0.887584][0.218986,0.0842997,-0.972079][0.145872,0.572521,0][0.323202,-0.10911,1.13153][0.190397,-0.648588,0.736941][0.0948846,0.537741,0][0.33503,0.00628045,1.1743][0.300248,0.000114532,0.953861][0.0859444,0.561859,0][0.140175,0.013697,1.21477][0.097076,-0.0409346,0.994435][0.077486,0.563409,0][0.143703,0.0921268,1.19385][0.0970247,0.548667,0.830392][0.0818583,0.579802,0][0.140175,0.013697,1.21477][0.097076,-0.0409346,0.994435][0.077486,0.563409,0][0.33503,0.00628045,1.1743][0.300248,0.000114532,0.953861][0.0859444,0.561859,0][0.64038,0.601182,0.536918][0.752421,0.283643,0.594482][0.805397,0.36239,0][0.819887,0.555474,0.234641][0.906512,0.273161,0.321899][0.742219,0.371944,0][0.774166,0.874114,0.188664][0.948427,0.110069,0.297272][0.732609,0.305345,0][0.819887,0.555474,0.234641][0.906512,0.273161,0.321899][0.742219,0.371944,0][0.82329,0.701702,0][0.985822,0.167623,-0.00756116][0.693176,0.341381,0][0.774166,0.874114,0.188664][0.948427,0.110069,0.297272][0.732609,0.305345,0][0.676573,-0.124633,0.673098][-0.505143,-0.710075,-0.490535][0.477338,0.625992,0][0.743742,-0.0499416,0.524848][-0.833698,-0.136285,-0.535139][0.446353,0.641603,0][0.819023,-0.0440294,0.39133][-0.88339,-0.187882,-0.429327][0.418446,0.642839,0][0.648459,-0.0540569,0.644055][-0.677967,-0.229081,-0.698485][0.471268,0.640743,0][0.676573,-0.124633,0.673098][-0.505143,-0.710075,-0.490535][0.477338,0.625992,0][0.424682,-0.123694,0.860418][-0.335629,-0.678446,-0.653502][0.51649,0.626188,0][-0.899897,-0.135437,-0.448857][0.564728,-0.781888,0.264072][0.425201,0.532239,0][-0.671759,-0.0752003,-0.68937][0.655507,-0.471575,0.589854][0.47547,0.544829,0][-0.847508,-0.0759333,-0.433841][0.821599,-0.412094,0.393895][0.422062,0.544676,0][-0.899897,-0.135437,-0.448857][0.564728,-0.781888,0.264072][0.425201,0.532239,0][-0.847508,-0.0759333,-0.433841][0.821599,-0.412094,0.393895][0.422062,0.544676,0][-0.934418,-0.08531,-0.138446][0.842914,-0.527385,0.106589][0.360322,0.542716,0][-0.840207,-0.111369,-0.845488][-0.556189,-0.641667,-0.528126][0.159939,0.628764,0][-0.672572,-0.139147,-0.958937][-0.36429,-0.809404,-0.460607][0.136227,0.622958,0][-0.943136,-0.136206,-0.664218][-0.409153,-0.868458,-0.279953][0.197827,0.623573,0][-0.712794,-0.00137417,-1.02104][-0.593703,-0.0923674,-0.799365][0.123247,0.651754,0][-0.672572,-0.139147,-0.958937][-0.36429,-0.809404,-0.460607][0.136227,0.622958,0][-0.840207,-0.111369,-0.845488][-0.556189,-0.641667,-0.528126][0.159939,0.628764,0][1.0822,2.28718,0.00904882][0.145177,0.116169,0.417752][0.229008,0.01,0][1.09175,2.2758,-0.0152055][0.592515,-0.0628258,-0.46715][0.234078,0.0123798,0][0.901967,2.20679,-0.0527757][-0.247832,0.812664,-0.527405][0.24193,0.0268019,0][0.751085,2.08796,-0.132824][-0.165166,0.661114,-0.73188][0.258661,0.0516391,0][0.901967,2.20679,-0.0527757][-0.247832,0.812664,-0.527405][0.24193,0.0268019,0][1.09175,2.2758,-0.0152055][0.592515,-0.0628258,-0.46715][0.234078,0.0123798,0][1.07809,2.01222,0.0653084][-0.0273457,-0.951727,0.305724][0.543112,0.939329,0][0.985152,2.06971,0.129122][-0.408672,-0.769116,0.491373][0.562538,0.927315,0][1.0291,2.01222,-0.00212443][-0.308972,-0.95103,0.00889753][0.553352,0.939329,0][1.07809,2.01222,0.0653084][-0.0273457,-0.951727,0.305724][0.543112,0.939329,0][1.09818,2.1306,0.221708][0.0154248,-0.531807,0.846725][0.538914,0.914588,0][0.985152,2.06971,0.129122][-0.408672,-0.769116,0.491373][0.562538,0.927315,0][1.17091,2.5114,-0.00212445][0.297185,0.951159,0.0835357][0.01,0.92316,0][1.26032,2.45392,-0.0707987][0.581801,0.773308,-0.251996][0.0220143,0.904472,0][1.12192,2.5114,-0.0695573][0.110013,0.934483,-0.338585][0.01,0.9334,0][1.17091,2.5114,-0.00212445][0.297185,0.951159,0.0835357][0.523713,0.834996,0][1.31345,2.39303,0.0653084][0.83456,0.499586,0.232214][0.493922,0.859737,0][1.26032,2.45392,-0.0707987][0.581801,0.773308,-0.251996][0.505026,0.84701,0][1.32328,2.32801,0.11229][0.871484,0.237054,0.429326][0.491867,0.873327,0][1.31232,2.1306,0.0687786][0.85376,-0.444748,0.270729][0.494157,0.914588,0][1.34789,2.19562,0.0365472][0.970764,-0.200906,0.131356][0.486723,0.900998,0][1.34789,2.19562,0.0365472][0.970764,-0.200906,0.131356][0.0760021,0.88617,0][1.31232,2.1306,0.0687786][0.85376,-0.444748,0.270729][0.0895922,0.893604,0][1.32586,2.2015,-0.114703][0.912333,-0.178949,-0.368273][0.0747728,0.890773,0][-0.147204,0.137236,-1.03704][0.0567344,0.97506,0.214567][0.548136,0.58923,0][-0.291261,0.102572,-0.939522][0.233875,0.660794,0.7132][0.527754,0.581985,0][0.00903557,0.0939686,-0.970002][-0.0288356,0.730125,0.682705][0.534125,0.580187,0][-0.291261,0.102572,-0.939522][0.233875,0.660794,0.7132][0.527754,0.581985,0][-0.147204,0.137236,-1.03704][0.0567344,0.97506,0.214567][0.548136,0.58923,0][-0.434514,0.108111,-0.88703][0.36384,0.555769,0.74749][0.516783,0.583143,0][1.07809,2.01222,0.0653084][-0.0273457,-0.951727,0.305724][0.543112,0.939329,0][1.27007,2.06971,0.0365472][0.595821,-0.798345,0.087423][0.502988,0.927315,0][1.25496,2.08678,0.110454][0.511921,-0.699539,0.49858][0.506146,0.923747,0][1.27007,2.06971,0.0365472][0.595821,-0.798345,0.087423][0.502988,0.927315,0][1.31232,2.1306,0.0687786][0.85376,-0.444748,0.270729][0.494157,0.914588,0][1.25496,2.08678,0.110454][0.511921,-0.699539,0.49858][0.506146,0.923747,0][1.17091,2.5114,-0.00212445][0.297185,0.951159,0.0835357][0.523713,0.834996,0][1.15919,2.43685,0.180032][0.155062,0.702186,0.694903][0.526162,0.850578,0][1.21486,2.45392,0.129122][0.449151,0.761654,0.467062][0.514527,0.84701,0][1.15919,2.43685,0.180032][0.155062,0.702186,0.694903][0.526162,0.850578,0][1.21655,2.32213,0.221708][0.499871,0.23149,0.834591][0.514173,0.874556,0][1.21486,2.45392,0.129122][0.449151,0.761654,0.467062][0.514527,0.84701,0][0.87415,2.32213,0.110454][-0.898059,0.18909,0.397158][0.585739,0.874556,0][0.876735,2.19562,0.11229][-0.864634,-0.207643,0.457486][0.585198,0.900998,0][0.923143,2.32213,0.177887][-0.668152,0.179748,0.721985][0.575499,0.874556,0][0.945053,2.43685,0.110454][-0.60818,0.694103,0.385148][0.570919,0.850578,0][0.87415,2.32213,0.110454][-0.898059,0.18909,0.397158][0.585739,0.874556,0][0.923143,2.32213,0.177887][-0.668152,0.179748,0.721985][0.575499,0.874556,0][-0.464491,-0.115469,0.849119][0.102474,-0.989507,-0.101855][0.153911,0.536412,0][-0.57056,-0.0958356,0.743122][0.39094,-0.744485,-0.54121][0.176066,0.540516,0][-0.169468,-0.0952725,0.924527][0.165562,-0.68265,-0.711743][0.13815,0.540634,0][-0.823353,-0.134698,0.804054][-0.250039,-0.862688,0.439602][0.16333,0.532393,0][-0.464491,-0.115469,0.849119][0.102474,-0.989507,-0.101855][0.153911,0.536412,0][-0.169468,-0.0952725,0.924527][0.165562,-0.68265,-0.711743][0.13815,0.540634,0][0.676945,1.26582,0.326505][0.741205,0.0978063,0.664115][0.761419,0.223476,0][0.776086,1.39824,0.175855][0.899364,-0.0897434,0.427891][0.729932,0.195798,0][0.792855,1.58782,0.183955][0.813806,-0.0742917,0.576368][0.731625,0.156174,0][0.882463,1.73342,0.0373203][0.960932,-0.252907,0.112458][0.700977,0.125741,0][0.792855,1.58782,0.183955][0.813806,-0.0742917,0.576368][0.731625,0.156174,0][0.776086,1.39824,0.175855][0.899364,-0.0897434,0.427891][0.729932,0.195798,0][0.451072,-0.164026,0.924802][-0.103849,-0.978355,-0.178987][0.529947,0.617758,0][0.424682,-0.123694,0.860418][-0.335629,-0.678446,-0.653502][0.51649,0.626188,0][0.676573,-0.124633,0.673098][-0.505143,-0.710075,-0.490535][0.477338,0.625992,0][0.424682,-0.123694,0.860418][-0.335629,-0.678446,-0.653502][0.51649,0.626188,0][0.451072,-0.164026,0.924802][-0.103849,-0.978355,-0.178987][0.529947,0.617758,0][-0.0303804,-0.141087,1.01689][-0.0371145,-0.98286,-0.180579][0.549195,0.622553,0][1.12192,2.5114,-0.0695573][0.110013,0.934483,-0.338585][0.01,0.9334,0][1.01067,2.45392,-0.151913][-0.331496,0.736052,-0.590201][0.0220143,0.95665,0][1.04264,2.5114,-0.0438002][-0.242033,0.9542,-0.175847][0.01,0.949968,0][1.17091,2.5114,-0.00212445][0.297185,0.951159,0.0835357][0.01,0.92316,0][1.12192,2.5114,-0.0695573][0.110013,0.934483,-0.338585][0.01,0.9334,0][1.04264,2.5114,-0.0438002][-0.242033,0.9542,-0.175847][0.01,0.949968,0][0.981113,-0.142346,0.265592][-0.157941,-0.98283,-0.0953895][0.275874,0.530795,0][0.99348,-0.143279,0.450226][0.351352,-0.927649,0.126567][0.237284,0.5306,0][0.724922,-0.163861,0.719778][-0.0849094,-0.990982,-0.103662][0.180945,0.526298,0][0.99348,-0.143279,0.450226][0.351352,-0.927649,0.126567][0.237284,0.5306,0][0.981113,-0.142346,0.265592][-0.157941,-0.98283,-0.0953895][0.275874,0.530795,0][1.02405,-0.134767,-0.0630025][-0.177018,-0.984194,0.00509674][0.344553,0.532379,0][1.27687,2.2015,-0.182136][0.633168,-0.244279,-0.734456][0.0747728,0.901013,0][1.32328,2.32801,-0.116539][0.913329,0.22673,-0.338266][0.048331,0.891313,0][1.32586,2.2015,-0.114703][0.912333,-0.178949,-0.368273][0.0747728,0.890773,0][1.32586,2.2015,-0.114703][0.912333,-0.178949,-0.368273][0.322735,0.932105,0][1.32328,2.32801,-0.116539][0.913329,0.22673,-0.338266][0.297076,0.9385,0][1.31345,2.39303,-0.0695573][0.870404,0.435991,-0.228712][0.281606,0.932033,0][0.724922,-0.163861,0.719778][-0.0849094,-0.990982,-0.103662][0.180945,0.526298,0][0.805856,-0.142495,0.792698][0.475068,-0.780231,0.406878][0.165704,0.530764,0][0.659004,-0.147096,0.92741][0.395968,-0.789808,0.468415][0.137548,0.529802,0][0.702127,-0.0049209,0.982153][0.617227,-0.0982616,0.780625][0.126106,0.559518,0][0.659004,-0.147096,0.92741][0.395968,-0.789808,0.468415][0.137548,0.529802,0][0.805856,-0.142495,0.792698][0.475068,-0.780231,0.406878][0.165704,0.530764,0][0.818027,-0.0741065,-0.451186][-0.729688,-0.549367,0.407125][0.242352,0.636552,0][0.799615,0.00447513,-0.440893][-0.871607,-0.0200763,0.489793][0.244504,0.652977,0][0.638916,-0.04625,-0.655239][-0.647019,-0.329276,0.687709][0.199703,0.642375,0][0.799615,0.00447513,-0.440893][-0.871607,-0.0200763,0.489793][0.244504,0.652977,0][0.818027,-0.0741065,-0.451186][-0.729688,-0.549367,0.407125][0.242352,0.636552,0][0.911842,-0.0682274,-0.189904][-0.817102,-0.537027,0.209632][0.296963,0.637781,0][0.159903,1.78541,-0.0605957][-0.615734,0.77069,-0.164038][0.243565,0.114875,0][0.159904,1.78541,0.0605962][-0.601117,0.779938,0.174228][0.218234,0.114875,0][0.336299,1.91606,-0.0489582][-0.552679,0.8268,-0.104635][0.241132,0.0875687,0][0.360866,1.89839,-0.142083][-0.473661,0.760013,-0.445001][0.260596,0.0912604,0][0.159903,1.78541,-0.0605957][-0.615734,0.77069,-0.164038][0.243565,0.114875,0][0.336299,1.91606,-0.0489582][-0.552679,0.8268,-0.104635][0.241132,0.0875687,0][1.00525,-0.139362,-0.392051][0.121702,-0.992015,-0.0330727][0.413328,0.531419,0][0.810399,-0.139047,-0.83651][0.338409,-0.878616,-0.336917][0.506224,0.531484,0][1.12587,-0.108258,-0.263447][0.53543,-0.839102,-0.0960319][0.386448,0.53792,0][1.00525,-0.139362,-0.392051][0.121702,-0.992015,-0.0330727][0.413328,0.531419,0][1.12587,-0.108258,-0.263447][0.53543,-0.839102,-0.0960319][0.386448,0.53792,0][1.13528,-0.113093,0.0969853][0.610446,-0.789926,0.0580649][0.311114,0.536909,0][-0.868679,0.115683,-0.450257][0.634884,0.69357,0.340417][0.425493,0.584725,0][-0.832486,0.0450917,-0.433111][0.860073,0.211615,0.464212][0.42191,0.569971,0][-0.546919,-0.040168,-0.776863][0.577888,-0.326997,0.747742][0.493757,0.552151,0][-0.832486,0.0450917,-0.433111][0.860073,0.211615,0.464212][0.42191,0.569971,0][-0.868679,0.115683,-0.450257][0.634884,0.69357,0.340417][0.425493,0.584725,0][-0.926431,0.110962,-0.302059][0.660001,0.731454,0.171387][0.394519,0.583739,0][0.0212981,-0.162503,-1.16613][-0.0265358,-0.903526,-0.427711][0.092921,0.618077,0][-0.164802,-0.0200268,-1.23998][-0.112393,-0.130344,-0.985078][0.077486,0.647856,0][0.0238805,-0.13829,-1.19868][-0.047955,-0.676699,-0.734696][0.0861184,0.623137,0][0.0238805,-0.13829,-1.19868][-0.047955,-0.676699,-0.734696][0.581921,0.531642,0][0.3733,-0.163265,-1.09091][0.171497,-0.841421,-0.512444][0.559396,0.526422,0][0.0212981,-0.162503,-1.16613][-0.0265358,-0.903526,-0.427711][0.575119,0.526582,0][0.524466,2.02629,-0.0737227][-0.448515,0.857009,-0.253712][0.246308,0.0645284,0][0.751085,2.08796,-0.132824][-0.165166,0.661114,-0.73188][0.258661,0.0516391,0][0.569512,1.98944,-0.168696][-0.273012,0.693498,-0.666727][0.266159,0.0722306,0][0.382497,1.64555,-0.368398][-0.0729991,0.468239,-0.880581][0.307898,0.144108,0][0.569512,1.98944,-0.168696][-0.273012,0.693498,-0.666727][0.266159,0.0722306,0][0.751085,2.08796,-0.132824][-0.165166,0.661114,-0.73188][0.258661,0.0516391,0][0.329637,0.132566,-0.979345][-0.037065,0.991858,0.121833][0.131962,0.679749,0][0.43708,0.097067,-0.854276][-0.400855,0.646044,0.649571][0.158102,0.672329,0][0.670857,0.108103,-0.691406][-0.506415,0.654287,0.561651][0.192144,0.674636,0][0.329637,0.132566,-0.979345][-0.037065,0.991858,0.121833][0.131962,0.679749,0][0.0151988,0.132921,-1.04061][0.000755939,0.974509,0.224348][0.119158,0.679823,0][0.43708,0.097067,-0.854276][-0.400855,0.646044,0.649571][0.158102,0.672329,0][-0.953592,0.097452,0.151959][0.612605,0.787628,-0.0660029][0.299624,0.580915,0][-0.913465,-0.00429873,-0.143983][0.98599,-0.10629,0.128551][0.361479,0.559648,0][-0.887257,0.0414162,-0.292242][0.937882,0.26583,0.22296][0.392467,0.569203,0][-0.847508,-0.0759333,-0.433841][0.821599,-0.412094,0.393895][0.422062,0.544676,0][-0.887257,0.0414162,-0.292242][0.937882,0.26583,0.22296][0.392467,0.569203,0][-0.913465,-0.00429873,-0.143983][0.98599,-0.10629,0.128551][0.361479,0.559648,0][-0.849858,0.482622,7.07818e-007][-0.913596,0.405951,0.0233465][0.2309,0.387171,0][-0.838765,0.481231,-0.142058][-0.899377,0.401956,-0.171907][0.260591,0.387461,0][-1.01575,0,-0.165333][0,-2.67035,0][0.265456,0.488043,0][-0.838765,0.481231,-0.142058][-0.899377,0.401956,-0.171907][0.260591,0.387461,0][-0.849858,0.482622,7.07818e-007][-0.913596,0.405951,0.0233465][0.2309,0.387171,0][-0.729134,0.70585,0.130422][-0.871273,0.47766,0.112806][0.20364,0.340514,0][1.21655,2.32213,-0.225957][0.490929,0.20104,-0.847686][0.0495604,0.913619,0][1.13983,2.19562,-0.249823][0.0394769,-0.22673,-0.973157][0.0760021,0.929656,0][1.13728,2.32213,-0.251714][0.0958692,0.177468,-0.979446][0.0495604,0.930188,0][1.13728,2.32213,-0.251714][0.0958692,0.177468,-0.979446][0.0495604,0.930188,0][1.13983,2.19562,-0.249823][0.0394769,-0.22673,-0.973157][0.0760021,0.929656,0][1.09818,2.1306,-0.225957][0.0402535,-0.44521,-0.894521][0.0895922,0.93836,0][0.218505,1.74859,0.227683][-0.455598,0.692628,0.559193][0.183312,0.122571,0][0.0860952,1.35942,0.477705][-0.249463,0.513647,0.820935][0.131055,0.203912,0][0.407597,1.8648,0.221299][-0.318501,0.664012,0.676495][0.184646,0.0982825,0][0.407597,1.8648,0.221299][-0.318501,0.664012,0.676495][0.184646,0.0982825,0][0.524466,2.02629,0.0737229][-0.466166,0.843634,0.266403][0.215491,0.0645284,0][0.218505,1.74859,0.227683][-0.455598,0.692628,0.559193][0.183312,0.122571,0][1.07809,2.01222,-0.0695573][-0.10394,-0.95103,-0.2911][0.114333,0.942559,0][1.11578,2.06971,-0.175814][0.152257,-0.742893,-0.651864][0.102319,0.934682,0][1.15737,2.01222,-0.0438002][0.282473,-0.950217,-0.13152][0.114333,0.92599,0][1.07809,2.01222,-0.0695573][-0.10394,-0.95103,-0.2911][0.114333,0.942559,0][1.04082,2.08678,-0.184281][-0.326131,-0.670847,-0.666035][0.0987511,0.95035,0][1.11578,2.06971,-0.175814][0.152257,-0.742893,-0.651864][0.102319,0.934682,0][-0.338689,-0.149375,-1.12968][-0.137856,-0.857226,-0.496144][0.100541,0.620821,0][-0.156803,-0.171805,-1.12598][-0.0640342,-0.963518,-0.259871][0.101314,0.616132,0][-0.766163,-0.155736,-0.776447][-0.386739,-0.900444,-0.199079][0.17437,0.619491,0][-0.156803,-0.171805,-1.12598][-0.0640342,-0.963518,-0.259871][0.101314,0.616132,0][-0.338689,-0.149375,-1.12968][-0.137856,-0.857226,-0.496144][0.100541,0.620821,0][0.0212981,-0.162503,-1.16613][-0.0265358,-0.903526,-0.427711][0.092921,0.618077,0][-1.02627,0.109059,0.542669][-0.493167,0.84343,0.213102][0.450078,0.674836,0][-0.955591,0.139846,0.487167][-0.127966,0.991421,-0.0266348][0.438477,0.681271,0][-1.02415,0.129857,0.177487][0.0512775,0.998655,0.00771456][0.373751,0.679183,0][-0.955591,0.139846,0.487167][-0.127966,0.991421,-0.0266348][0.438477,0.681271,0][-1.02627,0.109059,0.542669][-0.493167,0.84343,0.213102][0.450078,0.674836,0][-0.819456,0.140938,0.794313][-0.455594,0.819059,0.348678][0.502674,0.681499,0][-0.35606,1.08165,0.40259][-0.634612,0.535931,0.556817][0.146755,0.261968,0][-0.401542,0.643866,0.674486][-0.487591,0.421573,0.764546][0.0899255,0.353469,0][-0.168217,1.24397,0.431713][-0.503277,0.567901,0.651307][0.140668,0.228041,0][-0.168217,1.24397,0.431713][-0.503277,0.567901,0.651307][0.140668,0.228041,0][0.0288813,1.61873,0.20963][-0.57474,0.687302,0.444175][0.187085,0.149713,0][-0.35606,1.08165,0.40259][-0.634612,0.535931,0.556817][0.146755,0.261968,0][-0.728962,0.094029,0.951868][-0.507551,0.560867,0.65408][0.535604,0.671694,0][-0.745699,0.0132188,0.971718][-0.597551,0.102645,0.795234][0.539753,0.654804,0][-0.593874,0.0174512,1.06432][-0.441354,0.0793077,0.893822][0.559108,0.655689,0][-0.745699,0.0132188,0.971718][-0.597551,0.102645,0.795234][0.539753,0.654804,0][-0.743173,-0.0276365,0.967832][-0.511557,-0.401452,0.759701][0.538941,0.646265,0][-0.593874,0.0174512,1.06432][-0.441354,0.0793077,0.893822][0.559108,0.655689,0][-0.926431,0.110962,-0.302059][0.660001,0.731454,0.171387][0.394519,0.583739,0][-0.99434,0.147865,-0.312201][0.243962,0.965523,0.090814][0.396638,0.591452,0][-1.02415,0.129857,0.177487][0.0512775,0.998655,0.00771456][0.294289,0.587688,0][-0.99434,0.147865,-0.312201][0.243962,0.965523,0.090814][0.396638,0.591452,0][-0.926431,0.110962,-0.302059][0.660001,0.731454,0.171387][0.394519,0.583739,0][-0.868679,0.115683,-0.450257][0.634884,0.69357,0.340417][0.425493,0.584725,0][-0.906776,-0.0103152,0.141766][0.927095,-0.361007,-0.100838][0.301755,0.558391,0][-0.913465,-0.00429873,-0.143983][0.98599,-0.10629,0.128551][0.361479,0.559648,0][-0.875782,0.0316185,0.27557][0.92319,0.259649,-0.283376][0.273788,0.567155,0][-0.875782,0.0316185,0.27557][0.92319,0.259649,-0.283376][0.273788,0.567155,0][-0.875086,-0.0507577,0.279532][0.915689,-0.257999,-0.308141][0.27296,0.549938,0][-0.906776,-0.0103152,0.141766][0.927095,-0.361007,-0.100838][0.301755,0.558391,0][-0.729134,0.70585,0.130422][-0.871273,0.47766,0.112806][0.20364,0.340514,0][-0.898697,0.243419,0.303609][-0.900438,0.333669,0.279065][0.167443,0.437166,0][-0.699126,0.700172,0.257631][-0.808754,0.47751,0.343367][0.177052,0.3417,0][-0.699126,0.700172,0.257631][-0.808754,0.47751,0.343367][0.177052,0.3417,0][-0.472541,1.11917,0.107147][-0.815635,0.574398,0.0693237][0.208505,0.254125,0][-0.729134,0.70585,0.130422][-0.871273,0.47766,0.112806][0.20364,0.340514,0][0.809753,0.133141,0.784861][0.368979,0.846999,0.382684][0.167342,0.588374,0][0.6938,0.0733359,0.96398][0.494438,0.547315,0.67526][0.129904,0.575874,0][0.847956,0.0786369,0.820737][0.65569,0.464722,0.595066][0.159843,0.576982,0][0.860618,0.000630117,0.835027][0.745796,-0.0922656,0.659754][0.156857,0.560678,0][0.847956,0.0786369,0.820737][0.65569,0.464722,0.595066][0.159843,0.576982,0][0.6938,0.0733359,0.96398][0.494438,0.547315,0.67526][0.129904,0.575874,0][-0.663576,0.171398,0.86963][-0.226715,0.949743,0.215842][0.518415,0.687865,0][-0.499966,0.182249,0.923209][-0.00517577,0.999861,0.0158438][0.529614,0.690133,0][-0.955591,0.139846,0.487167][-0.127966,0.991421,-0.0266348][0.438477,0.681271,0][-0.543841,0.159252,0.993567][-0.264402,0.801483,0.536392][0.544319,0.685327,0][-0.499966,0.182249,0.923209][-0.00517577,0.999861,0.0158438][0.529614,0.690133,0][-0.663576,0.171398,0.86963][-0.226715,0.949743,0.215842][0.518415,0.687865,0][-0.544189,-0.0250008,0.709689][0.543142,-0.277962,-0.792297][0.183054,0.555321,0][-0.543417,0.0573753,0.710089][0.509132,0.358456,-0.782492][0.18297,0.572538,0][-0.155759,0.0572934,0.887584][0.218986,0.0842997,-0.972079][0.145872,0.572521,0][-0.543417,0.0573753,0.710089][0.509132,0.358456,-0.782492][0.18297,0.572538,0][-0.544189,-0.0250008,0.709689][0.543142,-0.277962,-0.792297][0.183054,0.555321,0][-0.738499,0.00202291,0.513499][0.794215,0.0349176,-0.606633][0.224059,0.560969,0][-0.298472,0,1.00516][0,-2.51327,0][0.903265,0.488043,0][-0.719209,0,0.747333][-0.853624,0.535487,1.01981][0.849376,0.488043,0][-0.826917,0,0.621224][0,-2.43473,0][0.823018,0.488043,0][-0.719209,0,0.747333][-0.853624,0.535487,1.01981][0.0746998,0.488043,0][-0.759414,0.234726,0.577497][-0.748947,0.357668,0.55781][0.110197,0.438983,0][-0.826917,0,0.621224][0,-2.43473,0][0.101058,0.488043,0][0.25193,1.72759,-0.273902][-0.367009,0.638862,-0.676136][0.288148,0.12696,0][0.028881,1.61873,-0.209629][-0.593448,0.695215,-0.40558][0.274714,0.149713,0][0.360866,1.89839,-0.142083][-0.473661,0.760013,-0.445001][0.260596,0.0912604,0][0.360866,1.89839,-0.142083][-0.473661,0.760013,-0.445001][0.260596,0.0912604,0][0.569512,1.98944,-0.168696][-0.273012,0.693498,-0.666727][0.266159,0.0722306,0][0.25193,1.72759,-0.273902][-0.367009,0.638862,-0.676136][0.288148,0.12696,0][0.908152,0.262314,0.280618][0.871414,0.388507,0.299498][0.751828,0.433217,0][0.941159,0.258178,0.142057][0.913649,0.391758,0.108498][0.722868,0.434081,0][0.82329,0.701702,0][0.985822,0.167623,-0.00756116][0.693176,0.341381,0][0.941159,0.258178,0.142057][0.913649,0.391758,0.108498][0.722868,0.434081,0][0.908152,0.262314,0.280618][0.871414,0.388507,0.299498][0.751828,0.433217,0][1.072,0,0.165331][1.30668,0.647,0.384929][0.727732,0.488043,0][1.10441,0.179189,-0.0879798][0.222288,0.974981,0.000437925][0.349774,0.597999,0][1.16572,0.139328,0.0870666][0.69293,0.711056,0.119364][0.313188,0.589667,0][1.17604,0.143261,-0.101126][0.728111,0.68497,-0.0258946][0.352522,0.590489,0][1.10441,0.179189,-0.0879798][0.222288,0.974981,0.000437925][0.349774,0.597999,0][1.17604,0.143261,-0.101126][0.728111,0.68497,-0.0258946][0.352522,0.590489,0][1.11332,0.142551,-0.455818][0.575975,0.792788,-0.199347][0.426656,0.590341,0][0.929942,2.45392,-0.0407961][-0.63609,0.759925,-0.133806][0.0220143,0.973524,0][0.887692,2.39303,-0.0730275][-0.80624,0.503502,-0.310585][0.034741,0.982355,0][0.887692,2.39303,0.0687787][-0.824464,0.509546,0.246217][0.034741,0.982355,0][1.01067,2.45392,-0.151913][-0.331496,0.736052,-0.590201][0.0220143,0.95665,0][0.887692,2.39303,-0.0730275][-0.80624,0.503502,-0.310585][0.034741,0.982355,0][0.929942,2.45392,-0.0407961][-0.63609,0.759925,-0.133806][0.0220143,0.973524,0][0.871764,0.0443309,0.246563][-0.889391,0.408635,-0.204943][0.388189,0.661307,0][0.905117,0.0095525,-0.0437636][-0.999599,-0.0206828,-0.0193643][0.327507,0.654038,0][0.819023,-0.0440294,0.39133][-0.88339,-0.187882,-0.429327][0.418446,0.642839,0][0.819023,-0.0440294,0.39133][-0.88339,-0.187882,-0.429327][0.418446,0.642839,0][0.743582,0.0324345,0.522262][-0.815842,0.258045,-0.517507][0.445812,0.658821,0][0.871764,0.0443309,0.246563][-0.889391,0.408635,-0.204943][0.388189,0.661307,0][-0.173182,0.600658,0.792906][-0.254028,0.398154,0.881444][0.0651746,0.3625,0][0.0281239,0,1.05689][0.0154793,0.965037,2.4819][0.01,0.488043,0][0.00495392,0.762982,0.74997][-0.0709285,0.39875,0.914313][0.0741487,0.328573,0][0.00495392,0.762982,0.74997][-0.0709285,0.39875,0.914313][0.0741487,0.328573,0][0.0860952,1.35942,0.477705][-0.249463,0.513647,0.820935][0.131055,0.203912,0][-0.173182,0.600658,0.792906][-0.254028,0.398154,0.881444][0.0651746,0.3625,0][0.82329,0.701702,0][0.985822,0.167623,-0.00756116][0.693176,0.341381,0][0.791383,0.711982,-0.211654][0.933145,0.20162,-0.297641][0.648939,0.339232,0][0.774165,0.874114,-0.188665][0.957379,0.0870037,-0.275419][0.653744,0.305345,0][0.699801,1.07324,-0.315136][0.824418,0.0560789,-0.563197][0.62731,0.263726,0][0.774165,0.874114,-0.188665][0.957379,0.0870037,-0.275419][0.653744,0.305345,0][0.791383,0.711982,-0.211654][0.933145,0.20162,-0.297641][0.648939,0.339232,0][0.875424,0.0887662,-0.329668][-0.779865,0.558359,0.282923][0.267751,0.670594,0][0.799615,0.00447513,-0.440893][-0.871607,-0.0200763,0.489793][0.244504,0.652977,0][0.89068,0.00974836,-0.184495][-0.978056,-0.0353922,0.205315][0.298093,0.654079,0][0.89068,0.00974836,-0.184495][-0.978056,-0.0353922,0.205315][0.298093,0.654079,0][0.925923,0.0907754,-0.0494777][-0.863204,0.504853,0.00165961][0.326313,0.671014,0][0.875424,0.0887662,-0.329668][-0.779865,0.558359,0.282923][0.267751,0.670594,0][1.072,0,0.165331][1.30668,0.647,0.384929][0.727732,0.488043,0][0.969817,0,0.479815][0.896916,0.432149,0.291424][0.793462,0.488043,0][1.08501,0,0][0,-2.59181,0][0.693176,0.488043,0][1.08501,0,0][0,-2.59181,0][0.693176,0.488043,0][0.941159,0.258178,0.142057][0.913649,0.391758,0.108498][0.722868,0.434081,0][1.072,0,0.165331][1.30668,0.647,0.384929][0.727732,0.488043,0][0.0122331,-0.174511,-1.04564][-0.0130506,-0.989549,0.143603][0.549934,0.524072,0][0.00940505,-0.157403,-1.007][-0.054517,-0.802869,0.593658][0.541857,0.527648,0][-0.301273,-0.148268,-0.97666][0.113418,-0.858065,0.500859][0.535517,0.529557,0][0.00940505,-0.157403,-1.007][-0.054517,-0.802869,0.593658][0.126183,0.619143,0][0.0122331,-0.174511,-1.04564][-0.0130506,-0.989549,0.143603][0.118105,0.615567,0][0.493084,-0.176767,-0.949697][0.0707232,-0.996045,-0.0537756][0.138159,0.615095,0][1.04556,0.177135,-0.420503][0.177534,0.978831,-0.101846][0.419275,0.597569,0][1.06633,0.104413,-0.628253][0.653398,0.629066,-0.421125][0.462696,0.58237,0][0.972224,0.0919753,-0.769733][0.606789,0.601631,-0.519468][0.492267,0.57977,0][0.989103,0.0138912,-0.784125][0.789439,-0.071561,-0.609643][0.495275,0.56345,0][0.972224,0.0919753,-0.769733][0.606789,0.601631,-0.519468][0.492267,0.57977,0][1.06633,0.104413,-0.628253][0.653398,0.629066,-0.421125][0.462696,0.58237,0][0.684111,0.127024,-0.945059][0.19799,0.89897,-0.390708][0.528912,0.587096,0][0.721754,0.0683565,-0.994283][0.458434,0.504602,-0.731584][0.5392,0.574834,0][0.568005,0.058457,-1.08071][0.339249,0.491161,-0.802291][0.557264,0.572765,0][0.73503,-0.0113983,-1.01061][0.545912,-0.0766649,-0.834328][0.542612,0.558164,0][0.568005,0.058457,-1.08071][0.339249,0.491161,-0.802291][0.557264,0.572765,0][0.721754,0.0683565,-0.994283][0.458434,0.504602,-0.731584][0.5392,0.574834,0][-0.234954,0.0985992,1.17372][-0.167458,0.510449,0.843445][0.581973,0.67265,0][-0.245152,0.0188195,1.19288][-0.189165,0.0673815,0.979631][0.585978,0.655975,0][-0.0425376,0.129121,1.17491][-0.0171125,0.634941,0.772371][0.582222,0.679029,0][-0.385166,0.159121,1.06691][-0.207462,0.846007,0.491154][0.559649,0.685299,0][-0.234954,0.0985992,1.17372][-0.167458,0.510449,0.843445][0.581973,0.67265,0][-0.0425376,0.129121,1.17491][-0.0171125,0.634941,0.772371][0.582222,0.679029,0][0.908152,0.262314,0.280618][0.871414,0.388507,0.299498][0.751828,0.433217,0][0.780167,0.278353,0.533768][0.763684,0.388516,0.515599][0.804739,0.429865,0][0.969817,0,0.479815][0.896916,0.432149,0.291424][0.793462,0.488043,0][0.775456,0,0.747331][0,-2.74889,1.20158e-007][0.849376,0.488043,0][0.969817,0,0.479815][0.896916,0.432149,0.291424][0.793462,0.488043,0][0.780167,0.278353,0.533768][0.763684,0.388516,0.515599][0.804739,0.429865,0][0.146554,-0.0185205,-0.906011][-0.184575,0.000473701,0.982818][0.147289,0.64817,0][0.290679,-0.0977864,-0.886699][-0.286799,-0.487428,0.824718][0.151326,0.631603,0][0.414438,-0.056006,-0.814908][-0.464014,-0.146007,0.873712][0.166331,0.640336,0][0.290679,-0.0977864,-0.886699][-0.286799,-0.487428,0.824718][0.151326,0.631603,0][0.146554,-0.0185205,-0.906011][-0.184575,0.000473701,0.982818][0.147289,0.64817,0][0.00456253,-0.0584856,-0.931307][-0.0691712,-0.31798,0.945571][0.142002,0.639817,0][0.792855,1.58782,0.183955][0.813806,-0.0742917,0.576368][0.731625,0.156174,0][0.574302,1.32171,0.411421][0.568879,0.161894,0.806329][0.779167,0.211793,0][0.676945,1.26582,0.326505][0.741205,0.0978063,0.664115][0.761419,0.223476,0][0.676945,1.26582,0.326505][0.741205,0.0978063,0.664115][0.761419,0.223476,0][0.574302,1.32171,0.411421][0.568879,0.161894,0.806329][0.779167,0.211793,0][0.454128,0.648608,0.676557][0.527235,0.279253,0.802522][0.834583,0.352478,0][-0.955591,0.139846,0.487167][-0.127966,0.991421,-0.0266348][0.229563,0.589776,0][-0.915283,0.0990168,0.291209][0.582319,0.778312,-0.23481][0.27052,0.581242,0][-0.953592,0.097452,0.151959][0.612605,0.787628,-0.0660029][0.299624,0.580915,0][-0.875782,0.0316185,0.27557][0.92319,0.259649,-0.283376][0.273788,0.567155,0][-0.953592,0.097452,0.151959][0.612605,0.787628,-0.0660029][0.299624,0.580915,0][-0.915283,0.0990168,0.291209][0.582319,0.778312,-0.23481][0.27052,0.581242,0][0.0292531,0.014075,-1.23744][0.0614803,0.359155,-0.931251][0.590021,0.563488,0][0.0277378,-0.0683013,-1.23874][0.0469238,-0.28212,-0.958231][0.590294,0.546271,0][-0.164802,-0.0200268,-1.23998][-0.112393,-0.130344,-0.985078][0.590554,0.556361,0][0.0277378,-0.0683013,-1.23874][0.0469238,-0.28212,-0.958231][0.590294,0.546271,0][0.0292531,0.014075,-1.23744][0.0614803,0.359155,-0.931251][0.590021,0.563488,0][0.220523,-0.0304661,-1.21809][0.236126,-0.0855595,-0.967948][0.585978,0.554179,0][-1.21998,-0.0545221,0.291464][-0.982111,0.0472976,0.182266][0.397573,0.640646,0][-1.21797,-0.126086,0.104586][-0.874292,-0.482019,-0.0571869][0.358514,0.625688,0][-1.19828,-0.130597,0.288008][-0.855129,-0.489999,0.169279][0.396851,0.624745,0][-1.17308,-0.159447,0.277156][-0.50724,-0.854702,0.11042][0.394583,0.618715,0][-1.19828,-0.130597,0.288008][-0.855129,-0.489999,0.169279][0.396851,0.624745,0][-1.21797,-0.126086,0.104586][-0.874292,-0.482019,-0.0571869][0.358514,0.625688,0][1.09629,-0.118293,0.280313][0.62762,-0.766513,0.136202][0.272797,0.535822,0][0.99348,-0.143279,0.450226][0.351352,-0.927649,0.126567][0.237284,0.5306,0][1.13528,-0.113093,0.0969853][0.610446,-0.789926,0.0580649][0.311114,0.536909,0][1.17111,0.0241022,0.286288][0.967239,-0.0342246,0.251551][0.271548,0.565584,0][1.09629,-0.118293,0.280313][0.62762,-0.766513,0.136202][0.272797,0.535822,0][1.13528,-0.113093,0.0969853][0.610446,-0.789926,0.0580649][0.311114,0.536909,0][0.587278,1.73562,0.312964][0.22365,0.301747,0.926784][0.758589,0.125283,0][0.757144,1.83595,0.226895][0.490874,0.0860341,0.866972][0.7406,0.104313,0][1.0822,2.28718,0.00904882][0.145177,0.116169,0.417752][0.695068,0.01,0][0.587278,1.73562,0.312964][0.22365,0.301747,0.926784][0.758589,0.125283,0][0.574302,1.32171,0.411421][0.568879,0.161894,0.806329][0.779167,0.211793,0][0.757144,1.83595,0.226895][0.490874,0.0860341,0.866972][0.7406,0.104313,0][0.750517,-0.161722,-0.771202][0.0634641,-0.997952,0.00797214][0.175466,0.61824,0][0.691924,-0.141717,-0.709115][-0.326989,-0.856444,0.399478][0.188443,0.622421,0][0.451615,-0.153831,-0.879014][-0.400738,0.0728588,0.913291][0.152932,0.619889,0][0.750517,-0.161722,-0.771202][0.0634641,-0.997952,0.00797214][0.175466,0.61824,0][0.451615,-0.153831,-0.879014][-0.400738,0.0728588,0.913291][0.152932,0.619889,0][0.00940505,-0.157403,-1.007][-0.054517,-0.802869,0.593658][0.126183,0.619143,0][-1.17152,-0.0505837,0.462046][-0.932351,0.0103318,0.361406][0.433226,0.641469,0][-1.15071,-0.126895,0.455403][-0.678985,-0.662585,0.316166][0.431838,0.625519,0][-1.09711,-0.0388447,0.613567][-0.854501,0.0254147,0.518827][0.464896,0.643922,0][-1.15186,0.032244,0.439469][-0.79769,0.547267,0.253357][0.428508,0.658781,0][-1.17152,-0.0505837,0.462046][-0.932351,0.0103318,0.361406][0.433226,0.641469,0][-1.09711,-0.0388447,0.613567][-0.854501,0.0254147,0.518827][0.464896,0.643922,0][0.635522,0.928528,-0.431712][0.745757,0.165828,-0.64525][0.602944,0.293972,0][0.409275,1.01732,-0.580652][0.479636,0.261064,-0.837732][0.571815,0.275413,0][0.592303,1.12337,-0.433747][0.626988,0.136686,-0.766944][0.602519,0.253249,0][0.592303,1.12337,-0.433747][0.626988,0.136686,-0.766944][0.602519,0.253249,0][0.699801,1.07324,-0.315136][0.824418,0.0560789,-0.563197][0.62731,0.263726,0][0.635522,0.928528,-0.431712][0.745757,0.165828,-0.64525][0.602944,0.293972,0][-0.472541,1.11917,0.107147][-0.815635,0.574398,0.0693237][0.208505,0.254125,0][-0.699126,0.700172,0.257631][-0.808754,0.47751,0.343367][0.177052,0.3417,0][-0.448659,1.11148,0.211654][-0.752347,0.57426,0.3228][0.186662,0.255733,0][-0.448659,1.11148,0.211654][-0.752347,0.57426,0.3228][0.186662,0.255733,0][-0.179216,1.48313,3.65519e-007][-0.715081,0.698701,-0.0218033][0.2309,0.178054,0][-0.472541,1.11917,0.107147][-0.815635,0.574398,0.0693237][0.208505,0.254125,0][1.32586,2.2015,-0.114703][0.912333,-0.178949,-0.368273][0.0747728,0.890773,0][1.31232,2.1306,-0.0730275][0.845459,-0.49173,-0.208328][0.0895922,0.893604,0][1.25496,2.08678,-0.114703][0.562894,-0.708479,-0.425685][0.0987511,0.905593,0][1.15737,2.01222,-0.0438002][0.282473,-0.950217,-0.13152][0.114333,0.92599,0][1.25496,2.08678,-0.114703][0.562894,-0.708479,-0.425685][0.0987511,0.905593,0][1.31232,2.1306,-0.0730275][0.845459,-0.49173,-0.208328][0.0895922,0.893604,0][-0.712794,-0.00137417,-1.02104][-0.593703,-0.0923674,-0.799365][0.123247,0.651754,0][-0.701006,0.0781278,-1.0064][-0.55252,0.472428,-0.686682][0.126308,0.668371,0][-0.520991,0.107403,-1.08883][-0.310038,0.669133,-0.67538][0.109077,0.67449,0][-0.701006,0.0781278,-1.0064][-0.55252,0.472428,-0.686682][0.126308,0.668371,0][-0.712794,-0.00137417,-1.02104][-0.593703,-0.0923674,-0.799365][0.123247,0.651754,0][-0.869499,-0.000281773,-0.877665][-0.721219,0.0318246,-0.691976][0.153214,0.651982,0][0.824299,0.15754,-0.639161][-0.183524,0.979977,0.0772238][0.464976,0.593474,0][0.813534,0.136589,-0.844348][0.263913,0.894556,-0.36072][0.507862,0.589095,0][0.684111,0.127024,-0.945059][0.19799,0.89897,-0.390708][0.528912,0.587096,0][0.721754,0.0683565,-0.994283][0.458434,0.504602,-0.731584][0.5392,0.574834,0][0.684111,0.127024,-0.945059][0.19799,0.89897,-0.390708][0.528912,0.587096,0][0.813534,0.136589,-0.844348][0.263913,0.894556,-0.36072][0.507862,0.589095,0][1.09818,2.1306,0.221708][0.0154248,-0.531807,0.846725][0.538914,0.914588,0][0.983457,2.2015,0.221708][-0.481138,-0.186663,0.856542][0.562892,0.899769,0][0.969916,2.1306,0.180032][-0.516925,-0.483155,0.706647][0.565723,0.914588,0][0.923143,2.32213,0.177887][-0.668152,0.179748,0.721985][0.575499,0.874556,0][0.969916,2.1306,0.180032][-0.516925,-0.483155,0.706647][0.565723,0.914588,0][0.983457,2.2015,0.221708][-0.481138,-0.186663,0.856542][0.562892,0.899769,0][-0.582771,0.678156,-0.490042][-0.698626,0.447202,-0.558509][0.333323,0.346302,0][-0.499288,0.662361,-0.589522][-0.581832,0.429403,-0.690713][0.354115,0.349603,0][-0.593101,0,-0.85504][-1.05758,0.624285,-1.16138][0.409611,0.488043,0][-0.499288,0.662361,-0.589522][-0.581832,0.429403,-0.690713][0.354115,0.349603,0][-0.582771,0.678156,-0.490042][-0.698626,0.447202,-0.558509][0.333323,0.346302,0][-0.535573,0.900617,-0.344723][-0.732053,0.526276,-0.432588][0.30295,0.299806,0][0.507941,0,0.941693][0.795412,0.733051,1.65457][0.889999,0.488043,0][0.333097,0.504865,0.792905][0.51228,0.342006,0.787783][0.858901,0.382522,0][0.35472,0,1.00516][0.224919,0.551876,1.42007][0.903264,0.488043,0][0.775456,0,0.747331][0,-2.74889,1.20158e-007][0.849376,0.488043,0][0.507941,0,0.941693][0.795412,0.733051,1.65457][0.889999,0.488043,0][0.35472,0,1.00516][0.224919,0.551876,1.42007][0.903264,0.488043,0][-0.815674,0.139803,-0.834896][-0.338818,0.868249,-0.362416][0.198442,0.899007,0][-0.939754,0.13943,-0.680409][-0.443896,0.852882,-0.274863][0.173794,0.865726,0][-0.670173,0.136489,-0.962239][-0.329259,0.847904,-0.415508][0.227787,0.926794,0][-0.986038,0.0789427,-0.699849][-0.754516,0.42672,-0.498613][0.190379,0.668541,0][-0.939754,0.13943,-0.680409][-0.443896,0.852882,-0.274863][0.194442,0.681184,0][-0.815674,0.139803,-0.834896][-0.338818,0.868249,-0.362416][0.162153,0.681262,0][-1.04123,-0.142485,-0.482088][-0.444563,-0.873017,-0.200509][0.235893,0.622261,0][-0.943136,-0.136206,-0.664218][-0.409153,-0.868458,-0.279953][0.197827,0.623573,0][-1.14981,-0.165675,-0.0990524][-0.55197,-0.824536,-0.124377][0.315951,0.617414,0][-0.988039,-0.0801959,-0.688873][-0.740815,-0.465411,-0.484341][0.192673,0.63528,0][-0.943136,-0.136206,-0.664218][-0.409153,-0.868458,-0.279953][0.197827,0.623573,0][-1.04123,-0.142485,-0.482088][-0.444563,-0.873017,-0.200509][0.235893,0.622261,0][0.00530766,0.0238906,-0.930004][-0.080415,0.245478,0.966061][0.525765,0.56554,0][0.00903557,0.0939686,-0.970002][-0.0288356,0.730125,0.682705][0.534125,0.580187,0][-0.139275,0.0272654,-0.927272][0.116782,0.244828,0.962508][0.525194,0.566245,0][0.00456253,-0.0584856,-0.931307][-0.0691712,-0.31798,0.945571][0.526038,0.548322,0][0.00530766,0.0238906,-0.930004][-0.080415,0.245478,0.966061][0.525765,0.56554,0][-0.139275,0.0272654,-0.927272][0.116782,0.244828,0.962508][0.525194,0.566245,0][0.818027,-0.0741065,-0.451186][-0.729688,-0.549367,0.407125][0.242352,0.636552,0][0.869439,-0.12949,-0.485315][-0.391334,-0.873626,0.289198][0.235219,0.624977,0][0.898882,-0.101626,-0.337433][-0.467095,-0.864758,0.184432][0.266128,0.630801,0][1.00525,-0.139362,-0.392051][0.121702,-0.992015,-0.0330727][0.254712,0.622913,0][0.898882,-0.101626,-0.337433][-0.467095,-0.864758,0.184432][0.266128,0.630801,0][0.869439,-0.12949,-0.485315][-0.391334,-0.873626,0.289198][0.235219,0.624977,0][0.780167,0.278353,0.533768][0.763684,0.388516,0.515599][0.804739,0.429865,0][0.580825,0.303334,0.73467][0.646705,0.347404,0.679031][0.84673,0.424643,0][0.775456,0,0.747331][0,-2.74889,1.20158e-007][0.849376,0.488043,0][0.507941,0,0.941693][0.795412,0.733051,1.65457][0.889999,0.488043,0][0.775456,0,0.747331][0,-2.74889,1.20158e-007][0.849376,0.488043,0][0.580825,0.303334,0.73467][0.646705,0.347404,0.679031][0.84673,0.424643,0][0.693441,0.905796,0.358862][0.87134,0.0882126,0.482686][0.768182,0.298723,0][0.552579,0.623539,0.6143][0.628646,0.287661,0.722534][0.821571,0.357717,0][0.64038,0.601182,0.536918][0.752421,0.283643,0.594482][0.805397,0.36239,0][0.64038,0.601182,0.536918][0.752421,0.283643,0.594482][0.805397,0.36239,0][0.552579,0.623539,0.6143][0.628646,0.287661,0.722534][0.821571,0.357717,0][0.580825,0.303334,0.73467][0.646705,0.347404,0.679031][0.84673,0.424643,0][1.0976,0.0177882,0.478723][0.901134,0.0151601,0.433276][0.231328,0.564264,0][1.0786,0.0961145,0.470652][0.784955,0.487194,0.382737][0.233015,0.580635,0][0.977069,0.0882719,0.653029][0.746135,0.377081,0.548718][0.194896,0.578996,0][1.0786,0.0961145,0.470652][0.784955,0.487194,0.382737][0.233015,0.580635,0][1.0976,0.0177882,0.478723][0.901134,0.0151601,0.433276][0.231328,0.564264,0][1.17111,0.0241022,0.286288][0.967239,-0.0342246,0.251551][0.271548,0.565584,0][-1.00366,-0.00155977,-0.701869][-0.844522,-0.0268741,-0.534846][0.189957,0.651715,0][-1.09039,0.071416,-0.508853][-0.859529,0.350196,-0.372253][0.230299,0.666968,0][-0.986038,0.0789427,-0.699849][-0.754516,0.42672,-0.498613][0.190379,0.668541,0][-1.00366,-0.00155977,-0.701869][-0.844522,-0.0268741,-0.534846][0.189957,0.651715,0][-0.986038,0.0789427,-0.699849][-0.754516,0.42672,-0.498613][0.190379,0.668541,0][-0.869499,-0.000281773,-0.877665][-0.721219,0.0318246,-0.691976][0.153214,0.651982,0][1.07809,2.01222,0.0653084][-0.0273457,-0.951727,0.305724][0.543112,0.939329,0][1.11578,2.06971,0.171565][-0.0490418,-0.751333,0.658098][0.535236,0.927315,0][1.09818,2.1306,0.221708][0.0154248,-0.531807,0.846725][0.538914,0.914588,0][1.25496,2.08678,0.110454][0.511921,-0.699539,0.49858][0.506146,0.923747,0][1.09818,2.1306,0.221708][0.0154248,-0.531807,0.846725][0.538914,0.914588,0][1.11578,2.06971,0.171565][-0.0490418,-0.751333,0.658098][0.535236,0.927315,0][0.882463,1.73342,0.0373203][0.960932,-0.252907,0.112458][0.700977,0.125741,0][0.882463,1.73342,-0.0373209][0.949773,0.295348,-0.103448][0.685376,0.125741,0][0.86461,1.74803,-0.108309][0.888663,-0.202213,-0.411568][0.670539,0.122688,0][0.86461,1.74803,-0.108309][0.888663,-0.202213,-0.411568][0.670539,0.122688,0][0.882463,1.73342,-0.0373209][0.949773,0.295348,-0.103448][0.685376,0.125741,0][0.790725,1.20385,0.0722324][0.992677,-0.0535538,0.108281][0.708274,0.236426,0][1.0976,0.0177882,0.478723][0.901134,0.0151601,0.433276][0.231328,0.564264,0][0.975929,-0.0708667,0.656592][0.748486,-0.390797,0.535767][0.194151,0.545735,0][1.07886,-0.0630241,0.475145][0.803996,-0.482228,0.347918][0.232075,0.547374,0][0.929811,-0.133043,0.6333][0.490353,-0.806856,0.329449][0.19902,0.532739,0][1.07886,-0.0630241,0.475145][0.803996,-0.482228,0.347918][0.232075,0.547374,0][0.975929,-0.0708667,0.656592][0.748486,-0.390797,0.535767][0.194151,0.545735,0][-0.523346,-0.117653,-1.09007][-0.381388,-0.643711,-0.663461][0.108819,0.627451,0][-0.539935,-0.00449521,-1.13039][-0.461088,0.0209924,-0.887106][0.100391,0.651102,0][-0.351889,-0.0910096,-1.18427][-0.20044,-0.497915,-0.843744][0.0891302,0.63302,0][-0.351889,-0.0910096,-1.18427][-0.20044,-0.497915,-0.843744][0.0891302,0.63302,0][-0.338689,-0.149375,-1.12968][-0.137856,-0.857226,-0.496144][0.100541,0.620821,0][-0.523346,-0.117653,-1.09007][-0.381388,-0.643711,-0.663461][0.108819,0.627451,0][0.809753,0.133141,0.784861][0.368979,0.846999,0.382684][0.167342,0.588374,0][0.900519,0.155845,0.610398][0.196927,0.962392,0.187139][0.203806,0.59312,0][0.488895,0.145942,0.990606][0.243992,0.904599,0.349527][0.124339,0.59105,0][0.488895,0.145942,0.990606][0.243992,0.904599,0.349527][0.124339,0.59105,0][0.331808,0.115946,1.12873][0.247478,0.703541,0.666172][0.0954697,0.58478,0][0.809753,0.133141,0.784861][0.368979,0.846999,0.382684][0.167342,0.588374,0][0.854043,0.269095,-0.41227][0.824702,0.386224,-0.413155][0.607008,0.4318,0][0.561456,0.461657,-0.674486][0.62333,0.292223,-0.725304][0.552202,0.391552,0][0.640379,0.601183,-0.536919][0.775387,0.236771,-0.585418][0.580955,0.36239,0][0.640379,0.601183,-0.536919][0.775387,0.236771,-0.585418][0.580955,0.36239,0][0.561456,0.461657,-0.674486][0.62333,0.292223,-0.725304][0.552202,0.391552,0][0.635522,0.928528,-0.431712][0.745757,0.165828,-0.64525][0.602944,0.293972,0][-0.588528,-0.13729,-0.836179][0.357216,-0.763381,0.538188][0.506155,0.531851,0][-0.419758,-0.0450573,-0.852073][0.401458,-0.304306,0.863846][0.509477,0.551129,0][-0.546919,-0.040168,-0.776863][0.577888,-0.326997,0.747742][0.493757,0.552151,0][-0.545884,0.0422081,-0.776463][0.58989,0.223486,0.775941][0.493674,0.569368,0][-0.546919,-0.040168,-0.776863][0.577888,-0.326997,0.747742][0.493757,0.552151,0][-0.419758,-0.0450573,-0.852073][0.401458,-0.304306,0.863846][0.509477,0.551129,0][-1.01941,-0.186301,0.3715][0.0834112,-0.996467,-0.00979269][0.253738,0.521608,0][-1.02144,-0.177575,0.200632][0.718,-0.694922,-0.0394894][0.289451,0.523432,0][-0.913379,-0.126039,0.303664][0.646254,-0.732866,-0.212753][0.267917,0.534203,0][-1.02144,-0.177575,0.200632][0.718,-0.694922,-0.0394894][0.289451,0.523432,0][-1.01941,-0.186301,0.3715][0.0834112,-0.996467,-0.00979269][0.253738,0.521608,0][-1.03468,-0.168013,-0.291314][-0.0216539,-0.997304,-0.0701186][0.392273,0.52543,0][-0.173182,0.600658,0.792906][-0.254028,0.398154,0.881444][0.0651746,0.3625,0][-0.411279,0.212997,0.87541][-0.445537,0.340092,0.828151][0.0479305,0.443525,0][-0.298472,0,1.00516][0,-2.51327,0][0.0208115,0.488043,0][-0.719209,0,0.747333][-0.853624,0.535487,1.01981][0.0746998,0.488043,0][-0.298472,0,1.00516][0,-2.51327,0][0.0208115,0.488043,0][-0.411279,0.212997,0.87541][-0.445537,0.340092,0.828151][0.0479305,0.443525,0][0.140175,0.013697,1.21477][0.097076,-0.0409346,0.994435][0.077486,0.563409,0][0.135691,-0.10126,1.16822][0.0565671,-0.646236,0.761038][0.087217,0.539382,0][0.323202,-0.10911,1.13153][0.190397,-0.648588,0.736941][0.0948846,0.537741,0][0.13406,-0.145709,1.09706][-0.0120323,-0.952659,0.303803][0.10209,0.530092,0][0.323202,-0.10911,1.13153][0.190397,-0.648588,0.736941][0.0948846,0.537741,0][0.135691,-0.10126,1.16822][0.0565671,-0.646236,0.761038][0.087217,0.539382,0][0.415389,0.0263701,-0.816313][-0.499727,0.264193,0.824909][0.166037,0.657553,0][0.43708,0.097067,-0.854276][-0.400855,0.646044,0.649571][0.158102,0.672329,0][0.292191,0.0613521,-0.887641][-0.29554,0.408466,0.863604][0.151129,0.664865,0][0.414438,-0.056006,-0.814908][-0.464014,-0.146007,0.873712][0.166331,0.640336,0][0.415389,0.0263701,-0.816313][-0.499727,0.264193,0.824909][0.166037,0.657553,0][0.292191,0.0613521,-0.887641][-0.29554,0.408466,0.863604][0.151129,0.664865,0][1.06018,2.32801,0.245574][-0.124189,0.326282,0.937079][0.546856,0.873327,0][1.13728,2.32213,0.247465][0.0907094,0.242698,0.965852][0.530742,0.874556,0][0.966964,2.39303,0.177887][-0.461784,0.48968,0.739574][0.56634,0.859737,0][1.13728,2.32213,0.247465][0.0907094,0.242698,0.965852][0.530742,0.874556,0][1.06018,2.32801,0.245574][-0.124189,0.326282,0.937079][0.546856,0.873327,0][0.983457,2.2015,0.221708][-0.481138,-0.186663,0.856542][0.562892,0.899769,0][-0.80313,0.135706,0.56217][0.245016,0.916799,-0.315352][0.213886,0.58891,0][-0.587999,0.154875,0.770512][0.313957,0.824604,-0.470594][0.170341,0.592917,0][-0.832994,0.073257,0.408494][0.770182,0.442984,-0.458895][0.246006,0.575858,0][-0.80313,0.135706,0.56217][0.245016,0.916799,-0.315352][0.213886,0.58891,0][-0.832994,0.073257,0.408494][0.770182,0.442984,-0.458895][0.246006,0.575858,0][-0.915283,0.0990168,0.291209][0.582319,0.778312,-0.23481][0.27052,0.581242,0][0.592303,1.12337,-0.433747][0.626988,0.136686,-0.766944][0.602519,0.253249,0][0.409275,1.01732,-0.580652][0.479636,0.261064,-0.837732][0.571815,0.275413,0][0.382706,1.2211,-0.52954][0.545522,0.146805,-0.825139][0.582497,0.232821,0][0.382706,1.2211,-0.52954][0.545522,0.146805,-0.825139][0.582497,0.232821,0][0.409275,1.01732,-0.580652][0.479636,0.261064,-0.837732][0.571815,0.275413,0][0.208104,0.528515,-0.823446][0.237864,0.356444,-0.903531][0.521068,0.377578,0][-0.343291,0.101004,-1.15653][-0.178977,0.667023,-0.72322][0.0949277,0.673152,0][-0.326554,0.142233,-1.0871][-0.0376472,0.958504,-0.282582][0.10944,0.681769,0][0.022224,0.130278,-1.12298][0.0328135,0.920631,-0.389051][0.10194,0.679271,0][-0.326554,0.142233,-1.0871][-0.0376472,0.958504,-0.282582][0.10944,0.681769,0][-0.343291,0.101004,-1.15653][-0.178977,0.667023,-0.72322][0.0949277,0.673152,0][-0.520991,0.107403,-1.08883][-0.310038,0.669133,-0.67538][0.109077,0.67449,0][0.799615,0.00447513,-0.440893][-0.871607,-0.0200763,0.489793][0.244504,0.652977,0][0.670857,0.108103,-0.691406][-0.506415,0.654287,0.561651][0.192144,0.674636,0][0.639929,0.0361261,-0.657771][-0.654276,0.313054,0.688418][0.199174,0.659592,0][0.639929,0.0361261,-0.657771][-0.654276,0.313054,0.688418][0.199174,0.659592,0][0.670857,0.108103,-0.691406][-0.506415,0.654287,0.561651][0.192144,0.674636,0][0.43708,0.097067,-0.854276][-0.400855,0.646044,0.649571][0.158102,0.672329,0][0.911842,-0.0682274,-0.189904][-0.817102,-0.537027,0.209632][0.296963,0.637781,0][1.02405,-0.134767,-0.0630025][-0.177018,-0.984194,0.00509674][0.323486,0.623874,0][0.926938,-0.0683631,-0.0459559][-0.811245,-0.58463,-0.00942857][0.327049,0.637753,0][0.89068,0.00974836,-0.184495][-0.978056,-0.0353922,0.205315][0.298093,0.654079,0][0.911842,-0.0682274,-0.189904][-0.817102,-0.537027,0.209632][0.296963,0.637781,0][0.926938,-0.0683631,-0.0459559][-0.811245,-0.58463,-0.00942857][0.327049,0.637753,0][0.129876,-0.0391991,0.903293][-0.0954299,-0.262111,-0.960308][0.525451,0.643848,0][0.131686,0.043177,0.903801][-0.066218,0.267845,-0.961184][0.525558,0.661066,0][0.272127,-0.00564807,0.870069][-0.279542,0.338212,-0.898593][0.518507,0.650861,0][0.272127,-0.00564807,0.870069][-0.279542,0.338212,-0.898593][0.518507,0.650861,0][0.407698,-0.0112935,0.816741][-0.4555,-0.0528526,-0.888665][0.507361,0.649681,0][0.129876,-0.0391991,0.903293][-0.0954299,-0.262111,-0.960308][0.525451,0.643848,0][-0.76231,0.162541,-0.784333][-0.0543918,0.995927,-0.0719098][0.495319,0.594519,0][-0.844325,0.158148,-0.625008][0.238468,0.956082,0.170412][0.462018,0.593601,0][-0.434514,0.108111,-0.88703][0.36384,0.555769,0.74749][0.516783,0.583143,0][-0.844325,0.158148,-0.625008][0.238468,0.956082,0.170412][0.462018,0.593601,0][-0.76231,0.162541,-0.784333][-0.0543918,0.995927,-0.0719098][0.495319,0.594519,0][-1.03353,0.150264,-0.315318][-0.177737,0.983989,-0.0132714][0.39729,0.591953,0][1.21655,2.32213,-0.225957][0.490929,0.20104,-0.847686][0.0495604,0.913619,0][1.23009,2.39303,-0.184281][0.524639,0.522939,-0.671781][0.034741,0.910789,0][1.31345,2.39303,-0.0695573][0.870404,0.435991,-0.228712][0.034741,0.893368,0][1.10183,2.39303,-0.225957][0.00650135,0.562933,-0.826477][0.034741,0.937598,0][1.23009,2.39303,-0.184281][0.524639,0.522939,-0.671781][0.034741,0.910789,0][1.21655,2.32213,-0.225957][0.490929,0.20104,-0.847686][0.0495604,0.913619,0][0.89091,2.21842,0.0140458][-0.357686,0.918735,0.167292][0.227964,0.0243726,0][0.724459,2.11267,0.0965024][-0.316864,0.80516,0.501313][0.21073,0.0464755,0][0.751085,2.08796,0.132824][-0.118599,0.63005,0.767445][0.203138,0.0516391,0][0.751085,2.08796,0.132824][-0.118599,0.63005,0.767445][0.203138,0.0516391,0][0.724459,2.11267,0.0965024][-0.316864,0.80516,0.501313][0.21073,0.0464755,0][0.407597,1.8648,0.221299][-0.318501,0.664012,0.676495][0.184646,0.0982825,0][-1.00366,-0.00155977,-0.701869][-0.844522,-0.0268741,-0.534846][0.189957,0.651715,0][-0.988039,-0.0801959,-0.688873][-0.740815,-0.465411,-0.484341][0.192673,0.63528,0][-1.09206,-0.0877226,-0.4949][-0.835444,-0.436777,-0.333556][0.233216,0.633707,0][-1.04123,-0.142485,-0.482088][-0.444563,-0.873017,-0.200509][0.235893,0.622261,0][-1.09206,-0.0877226,-0.4949][-0.835444,-0.436777,-0.333556][0.233216,0.633707,0][-0.988039,-0.0801959,-0.688873][-0.740815,-0.465411,-0.484341][0.192673,0.63528,0][-0.699126,0.700172,-0.25763][-0.835889,0.465032,-0.291607][0.284747,0.3417,0][-0.838765,0.481231,-0.142058][-0.899377,0.401956,-0.171907][0.260591,0.387461,0][-0.606715,0.918732,-0.118783][-0.82612,0.553412,-0.106113][0.255726,0.296019,0][-0.838765,0.481231,-0.142058][-0.899377,0.401956,-0.171907][0.260591,0.387461,0][-0.699126,0.700172,-0.25763][-0.835889,0.465032,-0.291607][0.284747,0.3417,0][-0.751649,0.470314,-0.41227][-0.816471,0.379059,-0.435533][0.317068,0.389743,0][-1.03468,-0.168013,-0.291314][-0.0216539,-0.997304,-0.0701186][0.275767,0.616925,0][-1.15935,-0.175458,0.0866602][-0.40527,-0.911791,-0.0662822][0.354767,0.615369,0][-1.14981,-0.165675,-0.0990524][-0.55197,-0.824536,-0.124377][0.315951,0.617414,0][-1.22874,-0.0379823,-0.0938634][-0.983836,-0.102591,-0.146769][0.317036,0.644103,0][-1.14981,-0.165675,-0.0990524][-0.55197,-0.824536,-0.124377][0.315951,0.617414,0][-1.15935,-0.175458,0.0866602][-0.40527,-0.911791,-0.0662822][0.354767,0.615369,0][0.333097,0.504865,0.792905][0.51228,0.342006,0.787783][0.858901,0.382522,0][0.273347,0.878875,0.676493][0.277064,0.324141,0.904527][0.83457,0.30435,0][0.35472,0,1.00516][0.224919,0.551876,1.42007][0.903264,0.488043,0][0.273347,0.878875,0.676493][0.277064,0.324141,0.904527][0.83457,0.30435,0][0.333097,0.504865,0.792905][0.51228,0.342006,0.787783][0.858901,0.382522,0][0.574302,1.32171,0.411421][0.568879,0.161894,0.806329][0.779167,0.211793,0][-1.07787,-0.115688,0.604006][-0.688104,-0.560082,0.461326][0.462897,0.627862,0][-1.09711,-0.0388447,0.613567][-0.854501,0.0254147,0.518827][0.464896,0.643922,0][-1.15071,-0.126895,0.455403][-0.678985,-0.662585,0.316166][0.431838,0.625519,0][-1.15071,-0.126895,0.455403][-0.678985,-0.662585,0.316166][0.431838,0.625519,0][-1.17308,-0.159447,0.277156][-0.50724,-0.854702,0.11042][0.394583,0.618715,0][-1.07787,-0.115688,0.604006][-0.688104,-0.560082,0.461326][0.462897,0.627862,0][0.700718,0.126513,0.686512][-0.399389,0.83356,-0.381663][0.480142,0.678484,0][0.65996,0.0669656,0.65074][-0.622233,0.45152,-0.639497][0.472665,0.666038,0][0.560484,0.0988917,0.77275][-0.440293,0.704935,-0.556066][0.498167,0.672711,0][0.560484,0.0988917,0.77275][-0.440293,0.704935,-0.556066][0.498167,0.672711,0][0.600733,0.140938,0.826926][-0.212792,0.941052,-0.262946][0.50949,0.681499,0][0.700718,0.126513,0.686512][-0.399389,0.83356,-0.381663][0.480142,0.678484,0][0.900519,0.155845,0.610398][0.196927,0.962392,0.187139][0.464233,0.684614,0][1.01792,0.173416,0.263312][0.0190881,0.999447,0.0272208][0.391689,0.688287,0][0.700718,0.126513,0.686512][-0.399389,0.83356,-0.381663][0.480142,0.678484,0][1.02665,0.150766,0.453864][0.429602,0.871759,0.235537][0.236523,0.592058,0][1.01792,0.173416,0.263312][0.0190881,0.999447,0.0272208][0.276351,0.596792,0][0.900519,0.155845,0.610398][0.196927,0.962392,0.187139][0.203806,0.59312,0][-0.759414,0.234726,0.577497][-0.748947,0.357668,0.55781][0.110197,0.438983,0][-0.751648,0.470314,0.412271][-0.807114,0.405672,0.42895][0.144731,0.389743,0][-0.826917,0,0.621224][0,-2.43473,0][0.101058,0.488043,0][-0.751648,0.470314,0.412271][-0.807114,0.405672,0.42895][0.144731,0.389743,0][-0.759414,0.234726,0.577497][-0.748947,0.357668,0.55781][0.110197,0.438983,0][-0.58277,0.678156,0.490043][-0.697758,0.458665,0.550237][0.128476,0.346302,0][-0.385166,0.159121,1.06691][-0.207462,0.846007,0.491154][0.559649,0.685299,0][-0.0308467,0.168452,1.1043][0.0308151,0.963223,0.26693][0.567465,0.687249,0][-0.543841,0.159252,0.993567][-0.264402,0.801483,0.536392][0.544319,0.685327,0][-0.426137,0.0184248,1.13941][-0.37319,0.113589,0.920775][0.574802,0.655892,0][-0.385166,0.159121,1.06691][-0.207462,0.846007,0.491154][0.559649,0.685299,0][-0.543841,0.159252,0.993567][-0.264402,0.801483,0.536392][0.544319,0.685327,0][0.00495275,0.762982,-0.74997][-0.0609775,0.39931,-0.914786][0.536425,0.328573,0][0.671196,1.90626,-0.235635][0.0830045,0.41191,-0.907436][0.643927,0.0896171,0][0.0799565,0.552761,-0.83371][0.0117295,0.354687,-0.934912][0.518923,0.372511,0][0.00495275,0.762982,-0.74997][-0.0609775,0.39931,-0.914786][0.387651,0.328573,0][0.0799565,0.552761,-0.83371][0.0117295,0.354687,-0.934912][0.405153,0.372511,0][0.193456,-1.25309e-007,-1.04388][0,0.483188,-1.25436][0.44908,0.488043,0][-0.357874,0.420968,-0.809125][-0.402638,0.376846,-0.834188][0.400015,0.400057,0][-0.0243644,1.18751,-0.543989][-0.264934,0.476493,-0.83831][0.344599,0.239841,0][-0.173183,0.600658,-0.792906][-0.242749,0.406287,-0.880911][0.396625,0.3625,0][-0.357874,0.420968,-0.809125][-0.402638,0.376846,-0.834188][0.400015,0.400057,0][-0.173183,0.600658,-0.792906][-0.242749,0.406287,-0.880911][0.396625,0.3625,0][-0.137211,-1.25279e-007,-1.04388][0,-2.43473,0][0.44908,0.488043,0][-0.235054,-0.0933124,1.1447][-0.130327,-0.739664,0.660236][0.575907,0.632538,0][-0.0557947,-0.0234923,1.2136][-0.05711,-0.208462,0.976362][0.590309,0.647131,0][-0.245225,-0.0223106,1.18666][-0.198485,-0.331875,0.922206][0.584678,0.647378,0][-0.245152,0.0188195,1.19288][-0.189165,0.0673815,0.979631][0.585978,0.655975,0][-0.245225,-0.0223106,1.18666][-0.198485,-0.331875,0.922206][0.584678,0.647378,0][-0.0557947,-0.0234923,1.2136][-0.05711,-0.208462,0.976362][0.590309,0.647131,0][0.929942,2.45392,-0.0407961][-0.63609,0.759925,-0.133806][0.574078,0.84701,0][0.887692,2.39303,0.0687787][-0.824464,0.509546,0.246217][0.582908,0.859737,0][0.945053,2.43685,0.110454][-0.60818,0.694103,0.385148][0.570919,0.850578,0][0.87415,2.32213,0.110454][-0.898059,0.18909,0.397158][0.585739,0.874556,0][0.945053,2.43685,0.110454][-0.60818,0.694103,0.385148][0.570919,0.850578,0][0.887692,2.39303,0.0687787][-0.824464,0.509546,0.246217][0.582908,0.859737,0][1.01089,2.0923,0.0277455][0.866408,-0.302895,0.396979][0.698976,0.0507328,0][0.995795,2.10817,0.063489][0.724392,-0.159798,0.670612][0.706446,0.047416,0][0.792855,1.58782,0.183955][0.813806,-0.0742917,0.576368][0.731625,0.156174,0][0.995795,2.10817,0.063489][0.724392,-0.159798,0.670612][0.706446,0.047416,0][1.01089,2.0923,0.0277455][0.866408,-0.302895,0.396979][0.698976,0.0507328,0][1.09902,2.26713,0.00698902][0.902483,0.757265,3.43348e-006][0.694637,0.0141904,0][-1.22874,-0.0379823,-0.0938634][-0.983836,-0.102591,-0.146769][0.317036,0.644103,0][-1.18277,0.0805455,-0.116692][-0.799773,0.594269,-0.0848969][0.312265,0.668876,0][-1.14065,0.0940102,-0.312672][-0.765956,0.618254,-0.176277][0.271303,0.67169,0][-1.11228,0.13049,-0.13394][-0.193551,0.977902,0.0790338][0.30866,0.679315,0][-1.14065,0.0940102,-0.312672][-0.765956,0.618254,-0.176277][0.271303,0.67169,0][-1.18277,0.0805455,-0.116692][-0.799773,0.594269,-0.0848969][0.312265,0.668876,0][-0.298648,0.100117,0.862038][0.259071,0.661676,-0.70361][0.151211,0.581472,0][-0.319499,0.159871,0.917721][0.162323,0.822015,-0.545841][0.139573,0.593961,0][0.141893,0.158668,1.01658][0.0225128,0.960289,-0.278096][0.11891,0.59371,0][-0.319499,0.159871,0.917721][0.162323,0.822015,-0.545841][0.139573,0.593961,0][-0.298648,0.100117,0.862038][0.259071,0.661676,-0.70361][0.151211,0.581472,0][-0.543417,0.0573753,0.710089][0.509132,0.358456,-0.782492][0.18297,0.572538,0][0.743582,0.0324345,0.522262][-0.815842,0.258045,-0.517507][0.445812,0.658821,0][0.743742,-0.0499416,0.524848][-0.833698,-0.136285,-0.535139][0.446353,0.641603,0][0.648459,-0.0540569,0.644055][-0.677967,-0.229081,-0.698485][0.471268,0.640743,0][0.676573,-0.124633,0.673098][-0.505143,-0.710075,-0.490535][0.477338,0.625992,0][0.648459,-0.0540569,0.644055][-0.677967,-0.229081,-0.698485][0.471268,0.640743,0][0.743742,-0.0499416,0.524848][-0.833698,-0.136285,-0.535139][0.446353,0.641603,0][-0.899897,-0.135437,-0.448857][0.564728,-0.781888,0.264072][0.425201,0.532239,0][-1.03008,-0.167882,-0.122019][0.893366,-0.449286,0.00632539][0.356889,0.525458,0][-1.03468,-0.168013,-0.291314][-0.0216539,-0.997304,-0.0701186][0.392273,0.52543,0][-1.03468,-0.168013,-0.291314][-0.0216539,-0.997304,-0.0701186][0.392273,0.52543,0][-1.03008,-0.167882,-0.122019][0.893366,-0.449286,0.00632539][0.356889,0.525458,0][-1.02144,-0.177575,0.200632][0.718,-0.694922,-0.0394894][0.289451,0.523432,0][-1.03353,0.150264,-0.315318][-0.177737,0.983989,-0.0132714][0.27075,0.683448,0][-1.03856,0.133151,-0.503348][-0.49468,0.842758,-0.212251][0.23145,0.679871,0][-1.11228,0.13049,-0.13394][-0.193551,0.977902,0.0790338][0.30866,0.679315,0][-1.03353,0.150264,-0.315318][-0.177737,0.983989,-0.0132714][0.1572,0.788708,0][-1.11228,0.13049,-0.13394][-0.193551,0.977902,0.0790338][0.142239,0.750182,0][-1.16114,0.100178,0.059324][-0.575505,0.815196,0.0651912][0.133619,0.709419,0][1.15715,0.0344441,-0.474879][0.931562,-0.113787,-0.345319][0.43064,0.567746,0][1.13726,0.111986,-0.467393][0.835515,0.488789,-0.250999][0.429075,0.583953,0][1.20413,0.0361795,-0.294733][0.979506,0.104485,-0.172196][0.392987,0.568108,0][1.13726,0.111986,-0.467393][0.835515,0.488789,-0.250999][0.429075,0.583953,0][1.15715,0.0344441,-0.474879][0.931562,-0.113787,-0.345319][0.43064,0.567746,0][1.08474,0.0268643,-0.639541][0.879868,-0.13081,-0.456859][0.465056,0.566161,0][1.21288,0.0294806,0.0905947][0.990983,-0.0418889,0.12727][0.31245,0.566708,0][1.16572,0.139328,0.0870666][0.69293,0.711056,0.119364][0.313188,0.589667,0][1.12584,0.134041,0.276542][0.672309,0.714337,0.194225][0.273585,0.588562,0][1.02665,0.150766,0.453864][0.429602,0.871759,0.235537][0.236523,0.592058,0][1.12584,0.134041,0.276542][0.672309,0.714337,0.194225][0.273585,0.588562,0][1.16572,0.139328,0.0870666][0.69293,0.711056,0.119364][0.313188,0.589667,0][0.876735,2.19562,0.11229][-0.864634,-0.207643,0.457486][0.585198,0.900998,0][0.886564,2.1306,0.0653084][-0.821546,-0.506627,0.261515][0.583144,0.914588,0][0.969916,2.1306,0.180032][-0.516925,-0.483155,0.706647][0.565723,0.914588,0][0.851112,2.2015,-0.0438002][-0.97313,-0.170718,-0.154511][0.590554,0.899769,0][0.886564,2.1306,0.0653084][-0.821546,-0.506627,0.261515][0.583144,0.914588,0][0.876735,2.19562,0.11229][-0.864634,-0.207643,0.457486][0.585198,0.900998,0][0.939691,2.06971,-0.0707987][-0.57291,-0.742893,-0.346243][0.102319,0.971486,0][0.886564,2.1306,-0.0695573][-0.808301,-0.489681,-0.326898][0.0895922,0.98259,0][1.04082,2.08678,-0.184281][-0.326131,-0.670847,-0.666035][0.0987511,0.95035,0][0.908474,2.08678,-0.00212442][-0.718412,-0.694103,0.0458877][0.0987511,0.978011,0][0.886564,2.1306,-0.0695573][-0.808301,-0.489681,-0.326898][0.0895922,0.98259,0][0.939691,2.06971,-0.0707987][-0.57291,-0.742893,-0.346243][0.102319,0.971486,0][1.01067,2.45392,0.147665][-0.225494,0.765507,0.602621][0.557204,0.84701,0][0.966964,2.39303,0.177887][-0.461784,0.48968,0.739574][0.56634,0.859737,0][1.15919,2.43685,0.180032][0.155062,0.702186,0.694903][0.526162,0.850578,0][0.945053,2.43685,0.110454][-0.60818,0.694103,0.385148][0.570919,0.850578,0][0.966964,2.39303,0.177887][-0.461784,0.48968,0.739574][0.56634,0.859737,0][1.01067,2.45392,0.147665][-0.225494,0.765507,0.602621][0.557204,0.84701,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/Satellite.mesh b/shareddata/charcustom/hats/fonts/Satellite.mesh deleted file mode 100644 index 5a74843..0000000 --- a/shareddata/charcustom/hats/fonts/Satellite.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -604 -[-14.3107,34.661,11.4568][-5.58745e-007,1,4.68843e-007][0.334198,0.497226,0][-9.53014,34.661,15.4681][-6.11268e-007,1,1.67945e-006][0.351437,0.48276,0][-3.66588,34.661,17.6026][0,1,0][0.372584,0.475064,0][-3.66588,34.661,17.6026][0,1,0][0.372584,0.475064,0][2.57474,34.661,17.6026][0,1,0][0.395087,0.475064,0][8.439,34.661,15.4681][-4.10884e-007,1,-6.1486e-007][0.416234,0.48276,0][8.439,34.661,15.4681][-4.10884e-007,1,-6.1486e-007][0.416234,0.48276,0][13.2196,34.661,11.4567][-1.14881e-006,1,-1.3691e-006][0.433473,0.497226,0][16.3399,34.661,6.05221][-5.29318e-007,1,-1.86017e-007][0.444725,0.516714,0][-3.66588,34.661,17.6026][0,1,0][0.372584,0.475064,0][8.439,34.661,15.4681][-4.10884e-007,1,-6.1486e-007][0.416234,0.48276,0][16.3399,34.661,6.05221][-5.29318e-007,1,-1.86017e-007][0.444725,0.516714,0][16.3399,34.661,6.05221][-5.29318e-007,1,-1.86017e-007][0.444725,0.516714,0][17.4236,34.661,-0.0935962][-1.76008e-006,1,3.1035e-007][0.448633,0.538876,0][16.3399,34.661,-6.23941][1.88886e-007,1,-5.47339e-007][0.444725,0.561038,0][16.3399,34.661,-6.23941][1.88886e-007,1,-5.47339e-007][0.444725,0.561038,0][13.2196,34.661,-11.6439][2.6966e-006,1,-2.26271e-006][0.433473,0.580527,0][8.439,34.661,-15.6553][4.71171e-007,1,-3.57446e-007][0.416234,0.594992,0][16.3399,34.661,6.05221][-5.29318e-007,1,-1.86017e-007][0.444725,0.516714,0][16.3399,34.661,-6.23941][1.88886e-007,1,-5.47339e-007][0.444725,0.561038,0][8.439,34.661,-15.6553][4.71171e-007,1,-3.57446e-007][0.416234,0.594992,0][8.439,34.661,-15.6553][4.71171e-007,1,-3.57446e-007][0.416234,0.594992,0][2.57474,34.661,-17.7898][0,1,0][0.395087,0.602689,0][-3.66588,34.661,-17.7898][0,1,0][0.372584,0.602689,0][-3.66588,34.661,-17.7898][0,1,0][0.372584,0.602689,0][-9.53014,34.661,-15.6553][0,1,0][0.351437,0.594992,0][-14.3107,34.661,-11.6439][5.82424e-007,1,2.18625e-007][0.334198,0.580527,0][8.439,34.661,-15.6553][4.71171e-007,1,-3.57446e-007][0.416234,0.594992,0][-3.66588,34.661,-17.7898][0,1,0][0.372584,0.602689,0][-14.3107,34.661,-11.6439][5.82424e-007,1,2.18625e-007][0.334198,0.580527,0][16.3399,34.661,6.05221][-5.29318e-007,1,-1.86017e-007][0.444725,0.516714,0][8.439,34.661,-15.6553][4.71171e-007,1,-3.57446e-007][0.416234,0.594992,0][-14.3107,34.661,-11.6439][5.82424e-007,1,2.18625e-007][0.334198,0.580527,0][-3.66588,34.661,17.6026][0,1,0][0.372584,0.475064,0][16.3399,34.661,6.05221][-5.29318e-007,1,-1.86017e-007][0.444725,0.516714,0][-14.3107,34.661,-11.6439][5.82424e-007,1,2.18625e-007][0.334198,0.580527,0][-14.3107,34.661,-11.6439][5.82424e-007,1,2.18625e-007][0.334198,0.580527,0][-17.431,34.661,-6.23941][3.30786e-006,1,1.20396e-006][0.322946,0.561038,0][-18.5147,34.661,-0.0935991][5.60723e-007,1,2.32762e-007][0.319038,0.538876,0][-3.66588,34.661,17.6026][0,1,0][0.372584,0.475064,0][-14.3107,34.661,-11.6439][5.82424e-007,1,2.18625e-007][0.334198,0.580527,0][-18.5147,34.661,-0.0935991][5.60723e-007,1,2.32762e-007][0.319038,0.538876,0][-14.3107,34.661,11.4568][-5.58745e-007,1,4.68843e-007][0.334198,0.497226,0][-3.66588,34.661,17.6026][0,1,0][0.372584,0.475064,0][-18.5147,34.661,-0.0935991][5.60723e-007,1,2.32762e-007][0.319038,0.538876,0][-17.431,34.661,6.05222][-1.76008e-006,1,3.10349e-007][0.322946,0.516714,0][-14.3107,34.661,11.4568][-5.58745e-007,1,4.68843e-007][0.334198,0.497226,0][-18.5147,34.661,-0.0935991][5.60723e-007,1,2.32762e-007][0.319038,0.538876,0][-20.5456,66.3469,-0.0935996][-0.998277,0,-0.0586746][0.767639,0.0198008,0.5][-19.3394,66.3469,-6.934][-0.918006,0,-0.396567][0.789309,0.0198008,0.500908][-19.3394,12.542,-6.934][-0.958141,0,-0.286295][0.789309,0.404416,0.500908][-19.3394,12.542,-6.934][-0.958141,0,-0.286295][0.789309,0.404416,0.500908][-20.5456,12.542,-0.0935993][-0.998277,0,0.0586743][0.767639,0.404416,0.5][-20.5456,66.3469,-0.0935996][-0.998277,0,-0.0586746][0.767639,0.0198008,0.5][-19.3394,66.3469,-6.934][-0.918006,0,-0.396567][0.789309,0.0198008,0.500908][-15.8665,66.3469,-12.9494][-0.72701,0,-0.686627][0.810836,0.0198008,0.503201][-15.8665,12.542,-12.9494][-0.80244,0,-0.596733][0.810836,0.404416,0.503201][-15.8665,12.542,-12.9494][-0.80244,0,-0.596733][0.810836,0.404416,0.503201][-19.3394,12.542,-6.934][-0.958141,0,-0.286295][0.789309,0.404416,0.500908][-19.3394,66.3469,-6.934][-0.918006,0,-0.396567][0.789309,0.0198008,0.500908][-15.8665,66.3469,-12.9494][-0.72701,0,-0.686627][0.810836,0.0198008,0.503201][-10.5456,66.3469,-17.4141][-0.448325,0,-0.893871][0.832146,0.0198008,0.505796][-10.5456,12.542,-17.4141][-0.549952,0,-0.835196][0.832146,0.404416,0.505796][-10.5456,12.542,-17.4141][-0.549952,0,-0.835196][0.832146,0.404416,0.505796][-15.8665,12.542,-12.9494][-0.80244,0,-0.596733][0.810836,0.404416,0.503201][-15.8665,66.3469,-12.9494][-0.72701,0,-0.686627][0.810836,0.0198008,0.503201][-10.5456,66.3469,-17.4141][-0.448325,0,-0.893871][0.832146,0.0198008,0.505796][-4.01853,66.3469,-19.7898][-0.115566,0,-0.9933][0.853268,0.0198008,0.507482][-4.01853,12.542,-19.7898][-0.231132,0,-0.972922][0.853268,0.404416,0.507482][-4.01853,12.542,-19.7898][-0.231132,0,-0.972922][0.853268,0.404416,0.507482][-10.5456,12.542,-17.4141][-0.549952,0,-0.835196][0.832146,0.404416,0.505796][-10.5456,66.3469,-17.4141][-0.448325,0,-0.893871][0.832146,0.0198008,0.505796][-4.01853,66.3469,-19.7898][-0.115566,0,-0.9933][0.853268,0.0198008,0.507482][2.9274,66.3469,-19.7898][0.231132,0,-0.972922][0.874318,0.0198008,0.507482][2.9274,12.542,-19.7898][0.115566,0,-0.9933][0.874318,0.404416,0.507482][2.9274,12.542,-19.7898][0.115566,0,-0.9933][0.874318,0.404416,0.507482][-4.01853,12.542,-19.7898][-0.231132,0,-0.972922][0.853268,0.404416,0.507482][-4.01853,66.3469,-19.7898][-0.115566,0,-0.9933][0.853268,0.0198008,0.507482][2.9274,66.3469,-19.7898][0.231132,0,-0.972922][0.874318,0.0198008,0.507482][9.45443,66.3469,-17.4141][0.549952,0,-0.835196][0.89544,0.0198008,0.505796][9.45443,12.542,-17.4141][0.448325,0,-0.89387][0.89544,0.404416,0.505796][9.45443,12.542,-17.4141][0.448325,0,-0.89387][0.89544,0.404416,0.505796][2.9274,12.542,-19.7898][0.115566,0,-0.9933][0.874318,0.404416,0.507482][2.9274,66.3469,-19.7898][0.231132,0,-0.972922][0.874318,0.0198008,0.507482][9.45443,66.3469,-17.4141][0.549952,0,-0.835196][0.89544,0.0198008,0.505796][14.7753,66.3469,-12.9493][0.80244,0,-0.596733][0.91675,0.0198008,0.503201][14.7753,12.542,-12.9493][0.72701,0,-0.686627][0.91675,0.404416,0.503201][14.7753,12.542,-12.9493][0.72701,0,-0.686627][0.91675,0.404416,0.503201][9.45443,12.542,-17.4141][0.448325,0,-0.89387][0.89544,0.404416,0.505796][9.45443,66.3469,-17.4141][0.549952,0,-0.835196][0.89544,0.0198008,0.505796][14.7753,66.3469,-12.9493][0.80244,0,-0.596733][0.91675,0.0198008,0.503201][18.2483,66.3469,-6.934][0.958142,0,-0.286295][0.938276,0.0198008,0.500908][18.2483,12.542,-6.934][0.918006,0,-0.396567][0.938276,0.404416,0.500908][18.2483,12.542,-6.934][0.918006,0,-0.396567][0.938276,0.404416,0.500908][14.7753,12.542,-12.9493][0.72701,0,-0.686627][0.91675,0.404416,0.503201][14.7753,66.3469,-12.9493][0.80244,0,-0.596733][0.91675,0.0198008,0.503201][18.2483,66.3469,-6.934][0.958142,0,-0.286295][0.938276,0.0198008,0.500908][19.4544,66.3469,-0.0935966][0.998277,0,0.0586745][0.959947,0.0198008,0.5][19.4544,12.542,-0.0935962][0.998277,0,-0.0586743][0.959947,0.404416,0.5][19.4544,12.542,-0.0935962][0.998277,0,-0.0586743][0.959947,0.404416,0.5][18.2483,12.542,-6.934][0.918006,0,-0.396567][0.938276,0.404416,0.500908][18.2483,66.3469,-6.934][0.958142,0,-0.286295][0.938276,0.0198008,0.500908][19.4544,66.3469,-0.0935966][0.998277,0,0.0586745][0.959947,0.0198008,0.5][18.2483,66.3469,6.74681][0.918006,0,0.396567][0.981617,0.0198008,0.500908][18.2483,12.542,6.74681][0.958142,0,0.286295][0.981617,0.404416,0.500908][18.2483,12.542,6.74681][0.958142,0,0.286295][0.981617,0.404416,0.500908][19.4544,12.542,-0.0935962][0.998277,0,-0.0586743][0.959947,0.404416,0.5][19.4544,66.3469,-0.0935966][0.998277,0,0.0586745][0.959947,0.0198008,0.5][18.2483,66.3469,6.74681][0.918006,0,0.396567][0.597002,0.0198008,0.500908][14.7753,66.3469,12.7622][0.72701,0,0.686627][0.618528,0.0198008,0.503201][14.7753,12.542,12.7622][0.80244,0,0.596733][0.618528,0.404416,0.503201][14.7753,12.542,12.7622][0.80244,0,0.596733][0.618528,0.404416,0.503201][18.2483,12.542,6.74681][0.958142,0,0.286295][0.597002,0.404416,0.500908][18.2483,66.3469,6.74681][0.918006,0,0.396567][0.597002,0.0198008,0.500908][14.7753,66.3469,12.7622][0.72701,0,0.686627][0.618528,0.0198008,0.503201][9.45443,66.3469,17.2269][0.448325,0,0.893871][0.639838,0.0198008,0.505796][9.45443,12.542,17.2269][0.549952,0,0.835196][0.639838,0.404416,0.505796][9.45443,12.542,17.2269][0.549952,0,0.835196][0.639838,0.404416,0.505796][14.7753,12.542,12.7622][0.80244,0,0.596733][0.618528,0.404416,0.503201][14.7753,66.3469,12.7622][0.72701,0,0.686627][0.618528,0.0198008,0.503201][9.45443,66.3469,17.2269][0.448325,0,0.893871][0.639838,0.0198008,0.505796][2.9274,66.3469,19.6026][0.115566,0,0.9933][0.66096,0.0198008,0.507482][2.9274,12.542,19.6026][0.231132,0,0.972922][0.66096,0.404416,0.507482][2.9274,12.542,19.6026][0.231132,0,0.972922][0.66096,0.404416,0.507482][9.45443,12.542,17.2269][0.549952,0,0.835196][0.639838,0.404416,0.505796][9.45443,66.3469,17.2269][0.448325,0,0.893871][0.639838,0.0198008,0.505796][2.9274,66.3469,19.6026][0.115566,0,0.9933][0.66096,0.0198008,0.507482][-4.01853,66.3469,19.6026][-0.231132,0,0.972923][0.68201,0.0198008,0.507482][-4.01853,12.542,19.6026][-0.115566,0,0.9933][0.68201,0.404416,0.507482][-4.01853,12.542,19.6026][-0.115566,0,0.9933][0.68201,0.404416,0.507482][2.9274,12.542,19.6026][0.231132,0,0.972922][0.66096,0.404416,0.507482][2.9274,66.3469,19.6026][0.115566,0,0.9933][0.66096,0.0198008,0.507482][-4.01853,66.3469,19.6026][-0.231132,0,0.972923][0.68201,0.0198008,0.507482][-10.5456,66.3469,17.2269][-0.549952,0,0.835196][0.703132,0.0198008,0.505796][-10.5456,12.542,17.2269][-0.448325,0,0.893871][0.703132,0.404416,0.505796][-10.5456,12.542,17.2269][-0.448325,0,0.893871][0.703132,0.404416,0.505796][-4.01853,12.542,19.6026][-0.115566,0,0.9933][0.68201,0.404416,0.507482][-4.01853,66.3469,19.6026][-0.231132,0,0.972923][0.68201,0.0198008,0.507482][-10.5456,66.3469,17.2269][-0.549952,0,0.835196][0.703132,0.0198008,0.505796][-15.8665,66.3469,12.7622][-0.802439,0,0.596734][0.724442,0.0198008,0.503201][-15.8665,12.542,12.7622][-0.727009,0,0.686628][0.724442,0.404416,0.503201][-15.8665,12.542,12.7622][-0.727009,0,0.686628][0.724442,0.404416,0.503201][-10.5456,12.542,17.2269][-0.448325,0,0.893871][0.703132,0.404416,0.505796][-10.5456,66.3469,17.2269][-0.549952,0,0.835196][0.703132,0.0198008,0.505796][-15.8665,66.3469,12.7622][-0.802439,0,0.596734][0.724442,0.0198008,0.503201][-19.3394,66.3469,6.74682][-0.958141,0,0.286295][0.745969,0.0198008,0.500908][-19.3394,12.542,6.74682][-0.918006,0,0.396567][0.745969,0.404416,0.500908][-19.3394,12.542,6.74682][-0.918006,0,0.396567][0.745969,0.404416,0.500908][-15.8665,12.542,12.7622][-0.727009,0,0.686628][0.724442,0.404416,0.503201][-15.8665,66.3469,12.7622][-0.802439,0,0.596734][0.724442,0.0198008,0.503201][-19.3394,66.3469,6.74682][-0.958141,0,0.286295][0.745969,0.0198008,0.500908][-20.5456,66.3469,-0.0935996][-0.998277,0,-0.0586746][0.767639,0.0198008,0.5][-20.5456,12.542,-0.0935993][-0.998277,0,0.0586743][0.767639,0.404416,0.5][-20.5456,12.542,-0.0935993][-0.998277,0,0.0586743][0.767639,0.404416,0.5][-19.3394,12.542,6.74682][-0.918006,0,0.396567][0.745969,0.404416,0.500908][-19.3394,66.3469,6.74682][-0.958141,0,0.286295][0.745969,0.0198008,0.500908][-12.4222,-48.0687,-0.093596][0,-1,0][0.612739,0.665097,0][-11.7059,-48.0687,-4.15563][0,-1,0][0.61422,0.656698,0][-9.64357,-48.0687,-7.72772][0,-1,0][0.618485,0.649311,0][-9.64357,-48.0687,-7.72772][0,-1,0][0.618485,0.649311,0][-6.48386,-48.0687,-10.379][0,-1,0][0.625019,0.643828,0][-2.60792,-48.0687,-11.7897][0,-1,0][0.633034,0.640911,0][-2.60792,-48.0687,-11.7897][0,-1,0][0.633034,0.640911,0][1.51678,-48.0687,-11.7897][0,-1,0][0.641564,0.640911,0][5.39272,-48.0687,-10.379][0,-1,0][0.649579,0.643828,0][-9.64357,-48.0687,-7.72772][0,-1,0][0.618485,0.649311,0][-2.60792,-48.0687,-11.7897][0,-1,0][0.633034,0.640911,0][5.39272,-48.0687,-10.379][0,-1,0][0.649579,0.643828,0][5.39272,-48.0687,-10.379][0,-1,0][0.649579,0.643828,0][8.55242,-48.0687,-7.72772][0,-1,0][0.656113,0.649311,0][10.6148,-48.0687,-4.15562][0,-1,0][0.660378,0.656698,0][10.6148,-48.0687,-4.15562][0,-1,0][0.660378,0.656698,0][11.331,-48.0687,-0.0935935][0,-1,0][0.661859,0.665097,0][10.6148,-48.0687,3.96844][0,-1,0][0.660378,0.673497,0][5.39272,-48.0687,-10.379][0,-1,0][0.649579,0.643828,0][10.6148,-48.0687,-4.15562][0,-1,0][0.660378,0.656698,0][10.6148,-48.0687,3.96844][0,-1,0][0.660378,0.673497,0][10.6148,-48.0687,3.96844][0,-1,0][0.660378,0.673497,0][8.55242,-48.0687,7.54053][0,-1,0][0.656113,0.680884,0][5.39272,-48.0687,10.1918][0,-1,0][0.649579,0.686367,0][5.39272,-48.0687,10.1918][0,-1,0][0.649579,0.686367,0][1.51678,-48.0687,11.6026][0,-1,0][0.641564,0.689284,0][-2.60792,-48.0687,11.6026][0,-1,0][0.633034,0.689284,0][10.6148,-48.0687,3.96844][0,-1,0][0.660378,0.673497,0][5.39272,-48.0687,10.1918][0,-1,0][0.649579,0.686367,0][-2.60792,-48.0687,11.6026][0,-1,0][0.633034,0.689284,0][5.39272,-48.0687,-10.379][0,-1,0][0.649579,0.643828,0][10.6148,-48.0687,3.96844][0,-1,0][0.660378,0.673497,0][-2.60792,-48.0687,11.6026][0,-1,0][0.633034,0.689284,0][-9.64357,-48.0687,-7.72772][0,-1,0][0.618485,0.649311,0][5.39272,-48.0687,-10.379][0,-1,0][0.649579,0.643828,0][-2.60792,-48.0687,11.6026][0,-1,0][0.633034,0.689284,0][-2.60792,-48.0687,11.6026][0,-1,0][0.633034,0.689284,0][-6.48386,-48.0687,10.1918][0,-1,0][0.625019,0.686367,0][-9.64356,-48.0687,7.54053][0,-1,0][0.618485,0.680884,0][-9.64357,-48.0687,-7.72772][0,-1,0][0.618485,0.649311,0][-2.60792,-48.0687,11.6026][0,-1,0][0.633034,0.689284,0][-9.64356,-48.0687,7.54053][0,-1,0][0.618485,0.680884,0][-12.4222,-48.0687,-0.093596][0,-1,0][0.612739,0.665097,0][-9.64357,-48.0687,-7.72772][0,-1,0][0.618485,0.649311,0][-9.64356,-48.0687,7.54053][0,-1,0][0.618485,0.680884,0][-11.7059,-48.0687,3.96845][0,-1,0][0.61422,0.673497,0][-12.4222,-48.0687,-0.093596][0,-1,0][0.612739,0.665097,0][-9.64356,-48.0687,7.54053][0,-1,0][0.618485,0.680884,0][-20.5456,12.542,-0.0935993][-0.998277,0,0.0586743][0.01,0.515765,0][-19.3394,12.542,-6.934][-0.958141,0,-0.286295][0.0143494,0.491099,0][-16.4769,12.542,-5.89211][0,-1,0][0.0246719,0.494856,0][-16.4769,12.542,-5.89211][0,-1,0][0.0246719,0.494856,0][-17.4993,12.542,-0.0935991][0,-1,0][0.020985,0.515765,0][-20.5456,12.542,-0.0935993][-0.998277,0,0.0586743][0.01,0.515765,0][-19.3394,12.542,-6.934][-0.958141,0,-0.286295][0.0143494,0.491099,0][-15.8665,12.542,-12.9494][-0.80244,0,-0.596733][0.026873,0.469407,0][-13.5329,12.542,-10.9912][0,-1,0][0.035288,0.476468,0][-13.5329,12.542,-10.9912][0,-1,0][0.035288,0.476468,0][-16.4769,12.542,-5.89211][0,-1,0][0.0246719,0.494856,0][-19.3394,12.542,-6.934][-0.958141,0,-0.286295][0.0143494,0.491099,0][-15.8665,12.542,-12.9494][-0.80244,0,-0.596733][0.026873,0.469407,0][-10.5456,12.542,-17.4141][-0.549952,0,-0.835196][0.0460603,0.453307,0][-9.02243,12.542,-14.776][0,-1,0][0.0515527,0.46282,0][-9.02243,12.542,-14.776][0,-1,0][0.0515527,0.46282,0][-13.5329,12.542,-10.9912][0,-1,0][0.035288,0.476468,0][-15.8665,12.542,-12.9494][-0.80244,0,-0.596733][0.026873,0.469407,0][-10.5456,12.542,-17.4141][-0.549952,0,-0.835196][0.0460603,0.453307,0][-4.01853,12.542,-19.7898][-0.231132,0,-0.972922][0.0695969,0.44474,0][-3.48955,12.542,-16.7898][0,-1,0][0.0715044,0.455559,0][-3.48955,12.542,-16.7898][0,-1,0][0.0715044,0.455559,0][-9.02243,12.542,-14.776][0,-1,0][0.0515527,0.46282,0][-10.5456,12.542,-17.4141][-0.549952,0,-0.835196][0.0460603,0.453307,0][-4.01853,12.542,-19.7898][-0.231132,0,-0.972922][0.0695969,0.44474,0][2.9274,12.542,-19.7898][0.115566,0,-0.9933][0.0946441,0.44474,0][2.39842,12.542,-16.7898][0,-1,0][0.0927366,0.455559,0][2.39842,12.542,-16.7898][0,-1,0][0.0927366,0.455559,0][-3.48955,12.542,-16.7898][0,-1,0][0.0715044,0.455559,0][-4.01853,12.542,-19.7898][-0.231132,0,-0.972922][0.0695969,0.44474,0][2.9274,12.542,-19.7898][0.115566,0,-0.9933][0.0946441,0.44474,0][9.45443,12.542,-17.4141][0.448325,0,-0.89387][0.118181,0.453307,0][7.93129,12.542,-14.7759][0,-1,0][0.112688,0.46282,0][7.93129,12.542,-14.7759][0,-1,0][0.112688,0.46282,0][2.39842,12.542,-16.7898][0,-1,0][0.0927366,0.455559,0][2.9274,12.542,-19.7898][0.115566,0,-0.9933][0.0946441,0.44474,0][9.45443,12.542,-17.4141][0.448325,0,-0.89387][0.118181,0.453307,0][14.7753,12.542,-12.9493][0.72701,0,-0.686627][0.137368,0.469407,0][12.4417,12.542,-10.9912][0,-1,0][0.128953,0.476468,0][12.4417,12.542,-10.9912][0,-1,0][0.128953,0.476468,0][7.93129,12.542,-14.7759][0,-1,0][0.112688,0.46282,0][9.45443,12.542,-17.4141][0.448325,0,-0.89387][0.118181,0.453307,0][14.7753,12.542,-12.9493][0.72701,0,-0.686627][0.137368,0.469407,0][18.2483,12.542,-6.934][0.918006,0,-0.396567][0.149892,0.491099,0][15.3857,12.542,-5.89211][0,-1,0][0.139569,0.494856,0][15.3857,12.542,-5.89211][0,-1,0][0.139569,0.494856,0][12.4417,12.542,-10.9912][0,-1,0][0.128953,0.476468,0][14.7753,12.542,-12.9493][0.72701,0,-0.686627][0.137368,0.469407,0][18.2483,12.542,-6.934][0.918006,0,-0.396567][0.149892,0.491099,0][19.4544,12.542,-0.0935962][0.998277,0,-0.0586743][0.154241,0.515765,0][16.4081,12.542,-0.0935963][0,-1,0][0.143256,0.515765,0][16.4081,12.542,-0.0935963][0,-1,0][0.143256,0.515765,0][15.3857,12.542,-5.89211][0,-1,0][0.139569,0.494856,0][18.2483,12.542,-6.934][0.918006,0,-0.396567][0.149892,0.491099,0][19.4544,12.542,-0.0935962][0.998277,0,-0.0586743][0.154241,0.515765,0][18.2483,12.542,6.74681][0.958142,0,0.286295][0.149892,0.540432,0][15.3857,12.542,5.70492][0,-1,0][0.139569,0.536675,0][15.3857,12.542,5.70492][0,-1,0][0.139569,0.536675,0][16.4081,12.542,-0.0935963][0,-1,0][0.143256,0.515765,0][19.4544,12.542,-0.0935962][0.998277,0,-0.0586743][0.154241,0.515765,0][18.2483,12.542,6.74681][0.958142,0,0.286295][0.149892,0.540432,0][14.7753,12.542,12.7622][0.80244,0,0.596733][0.137368,0.562123,0][12.4417,12.542,10.804][0,-1,0][0.128953,0.555062,0][12.4417,12.542,10.804][0,-1,0][0.128953,0.555062,0][15.3857,12.542,5.70492][0,-1,0][0.139569,0.536675,0][18.2483,12.542,6.74681][0.958142,0,0.286295][0.149892,0.540432,0][14.7753,12.542,12.7622][0.80244,0,0.596733][0.137368,0.562123,0][9.45443,12.542,17.2269][0.549952,0,0.835196][0.118181,0.578224,0][7.93129,12.542,14.5888][0,-1,0][0.112688,0.56871,0][7.93129,12.542,14.5888][0,-1,0][0.112688,0.56871,0][12.4417,12.542,10.804][0,-1,0][0.128953,0.555062,0][14.7753,12.542,12.7622][0.80244,0,0.596733][0.137368,0.562123,0][9.45443,12.542,17.2269][0.549952,0,0.835196][0.118181,0.578224,0][2.9274,12.542,19.6026][0.231132,0,0.972922][0.0946441,0.58679,0][2.39841,12.542,16.6026][0,-1,0][0.0927366,0.575972,0][2.39841,12.542,16.6026][0,-1,0][0.0927366,0.575972,0][7.93129,12.542,14.5888][0,-1,0][0.112688,0.56871,0][9.45443,12.542,17.2269][0.549952,0,0.835196][0.118181,0.578224,0][2.9274,12.542,19.6026][0.231132,0,0.972922][0.0946441,0.58679,0][-4.01853,12.542,19.6026][-0.115566,0,0.9933][0.069597,0.58679,0][-3.48955,12.542,16.6026][0,-1,0][0.0715045,0.575972,0][-3.48955,12.542,16.6026][0,-1,0][0.0715045,0.575972,0][2.39841,12.542,16.6026][0,-1,0][0.0927366,0.575972,0][2.9274,12.542,19.6026][0.231132,0,0.972922][0.0946441,0.58679,0][-4.01853,12.542,19.6026][-0.115566,0,0.9933][0.069597,0.58679,0][-10.5456,12.542,17.2269][-0.448325,0,0.893871][0.0460603,0.578224,0][-9.02243,12.542,14.5888][0,-1,0][0.0515528,0.56871,0][-9.02243,12.542,14.5888][0,-1,0][0.0515528,0.56871,0][-3.48955,12.542,16.6026][0,-1,0][0.0715045,0.575972,0][-4.01853,12.542,19.6026][-0.115566,0,0.9933][0.069597,0.58679,0][-10.5456,12.542,17.2269][-0.448325,0,0.893871][0.0460603,0.578224,0][-15.8665,12.542,12.7622][-0.727009,0,0.686628][0.026873,0.562123,0][-13.5329,12.542,10.804][0,-1,0][0.035288,0.555062,0][-13.5329,12.542,10.804][0,-1,0][0.035288,0.555062,0][-9.02243,12.542,14.5888][0,-1,0][0.0515528,0.56871,0][-10.5456,12.542,17.2269][-0.448325,0,0.893871][0.0460603,0.578224,0][-15.8665,12.542,12.7622][-0.727009,0,0.686628][0.026873,0.562123,0][-19.3394,12.542,6.74682][-0.918006,0,0.396567][0.0143494,0.540432,0][-16.4769,12.542,5.70493][0,-1,0][0.0246719,0.536675,0][-16.4769,12.542,5.70493][0,-1,0][0.0246719,0.536675,0][-13.5329,12.542,10.804][0,-1,0][0.035288,0.555062,0][-15.8665,12.542,12.7622][-0.727009,0,0.686628][0.026873,0.562123,0][-19.3394,12.542,6.74682][-0.918006,0,0.396567][0.0143494,0.540432,0][-20.5456,12.542,-0.0935993][-0.998277,0,0.0586743][0.01,0.515765,0][-17.4993,12.542,-0.0935991][0,-1,0][0.020985,0.515765,0][-17.4993,12.542,-0.0935991][0,-1,0][0.020985,0.515765,0][-16.4769,12.542,5.70493][0,-1,0][0.0246719,0.536675,0][-19.3394,12.542,6.74682][-0.918006,0,0.396567][0.0143494,0.540432,0][-17.4993,12.542,-0.0935991][0,-1,0][0.636357,0.729979,0][-16.4769,12.542,-5.89211][0,-1,0][0.624181,0.729979,0][-16.4769,-1.7144,-5.89211][-0.984808,0,-0.173648][0.624181,0.700498,0][-16.4769,-1.7144,-5.89211][-0.984808,0,-0.173648][0.624181,0.700498,0][-17.4993,-1.7144,-0.0935978][-0.984808,0,-0.173648][0.636357,0.700498,0][-17.4993,12.542,-0.0935991][0,-1,0][0.636357,0.729979,0][-16.4769,12.542,-5.89211][0,-1,0][0.624181,0.729979,0][-13.5329,12.542,-10.9912][0,-1,0][0.612739,0.729979,0][-13.5329,-1.7144,-10.9912][-0.866025,0,-0.5][0.612739,0.700498,0][-13.5329,-1.7144,-10.9912][-0.866025,0,-0.5][0.612739,0.700498,0][-16.4769,-1.7144,-5.89211][-0.984808,0,-0.173648][0.624181,0.700498,0][-16.4769,12.542,-5.89211][0,-1,0][0.624181,0.729979,0][-13.5329,12.542,-10.9912][0,-1,0][0.267461,0.711858,0][-9.02243,12.542,-14.776][0,-1,0][0.251196,0.711858,0][-9.02243,-1.7144,-14.7759][-0.642788,-1.53732e-007,-0.766044][0.251196,0.660449,0][-9.02243,-1.7144,-14.7759][-0.642788,-1.53732e-007,-0.766044][0.251196,0.660449,0][-13.5329,-1.7144,-10.9912][-0.866025,0,-0.5][0.267461,0.660449,0][-13.5329,12.542,-10.9912][0,-1,0][0.267461,0.711858,0][-9.02243,12.542,-14.776][0,-1,0][0.251196,0.711858,0][-3.48955,12.542,-16.7898][0,-1,0][0.231244,0.711858,0][-3.48955,-1.7144,-16.7898][-0.34202,-2.5144e-007,-0.939693][0.231244,0.660449,0][-3.48955,-1.7144,-16.7898][-0.34202,-2.5144e-007,-0.939693][0.231244,0.660449,0][-9.02243,-1.7144,-14.7759][-0.642788,-1.53732e-007,-0.766044][0.251196,0.660449,0][-9.02243,12.542,-14.776][0,-1,0][0.251196,0.711858,0][-3.48955,12.542,-16.7898][0,-1,0][0.231244,0.711858,0][2.39842,12.542,-16.7898][0,-1,0][0.210012,0.711858,0][2.39841,-1.7144,-16.7898][0,-2.67577e-007,-1][0.210012,0.660449,0][2.39841,-1.7144,-16.7898][0,-2.67577e-007,-1][0.210012,0.660449,0][-3.48955,-1.7144,-16.7898][-0.34202,-2.5144e-007,-0.939693][0.231244,0.660449,0][-3.48955,12.542,-16.7898][0,-1,0][0.231244,0.711858,0][2.39842,12.542,-16.7898][0,-1,0][0.210012,0.711858,0][7.93129,12.542,-14.7759][0,-1,0][0.190061,0.711858,0][7.93129,-1.7144,-14.7759][0.342021,0,-0.939692][0.190061,0.660449,0][7.93129,-1.7144,-14.7759][0.342021,0,-0.939692][0.190061,0.660449,0][2.39841,-1.7144,-16.7898][0,-2.67577e-007,-1][0.210012,0.660449,0][2.39842,12.542,-16.7898][0,-1,0][0.210012,0.711858,0][7.93129,12.542,-14.7759][0,-1,0][0.190061,0.711858,0][12.4417,12.542,-10.9912][0,-1,0][0.173796,0.711858,0][12.4417,-1.7144,-10.9912][0.642788,0,-0.766044][0.173796,0.660449,0][12.4417,-1.7144,-10.9912][0.642788,0,-0.766044][0.173796,0.660449,0][7.93129,-1.7144,-14.7759][0.342021,0,-0.939692][0.190061,0.660449,0][7.93129,12.542,-14.7759][0,-1,0][0.190061,0.711858,0][12.4417,12.542,-10.9912][0,-1,0][0.0621269,0.546677,0][15.3857,12.542,-5.89211][0,-1,0][0.0621269,0.525445,0][15.3857,-1.7144,-5.89211][0.866025,0,-0.5][0.113536,0.525445,0][15.3857,-1.7144,-5.89211][0.866025,0,-0.5][0.113536,0.525445,0][12.4417,-1.7144,-10.9912][0.642788,0,-0.766044][0.113536,0.546677,0][12.4417,12.542,-10.9912][0,-1,0][0.0621269,0.546677,0][15.3857,12.542,-5.89211][0,-1,0][0.0621269,0.525445,0][16.4081,12.542,-0.0935963][0,-1,0][0.0621269,0.505493,0][16.4081,-1.7144,-0.0935949][0.984808,0,-0.173648][0.113536,0.505493,0][16.4081,-1.7144,-0.0935949][0.984808,0,-0.173648][0.113536,0.505493,0][15.3857,-1.7144,-5.89211][0.866025,0,-0.5][0.113536,0.525445,0][15.3857,12.542,-5.89211][0,-1,0][0.0621269,0.525445,0][16.4081,12.542,-0.0935963][0,-1,0][0.0621269,0.505493,0][15.3857,12.542,5.70492][0,-1,0][0.0621269,0.489228,0][15.3857,-1.7144,5.70492][0.984808,0,0.173648][0.113536,0.489228,0][15.3857,-1.7144,5.70492][0.984808,0,0.173648][0.113536,0.489228,0][16.4081,-1.7144,-0.0935949][0.984808,0,-0.173648][0.113536,0.505493,0][16.4081,12.542,-0.0935963][0,-1,0][0.0621269,0.505493,0][15.3857,12.542,5.70492][0,-1,0][0.0724651,0.386558,0][12.4417,12.542,10.804][0,-1,0][0.051233,0.386558,0][12.4417,-1.7144,10.804][0.866025,0,0.5][0.051233,0.335149,0][12.4417,-1.7144,10.804][0.866025,0,0.5][0.051233,0.335149,0][15.3857,-1.7144,5.70492][0.984808,0,0.173648][0.0724651,0.335149,0][15.3857,12.542,5.70492][0,-1,0][0.0724651,0.386558,0][12.4417,12.542,10.804][0,-1,0][0.857736,0.617812,0][7.93129,12.542,14.5888][0,-1,0][0.848409,0.617812,0][7.93129,-1.7144,14.5888][0.642788,0,0.766044][0.848409,0.588331,0][7.93129,-1.7144,14.5888][0.642788,0,0.766044][0.848409,0.588331,0][12.4417,-1.7144,10.804][0.866025,0,0.5][0.857736,0.588331,0][12.4417,12.542,10.804][0,-1,0][0.857736,0.617812,0][7.93129,12.542,14.5888][0,-1,0][0.848409,0.617812,0][2.39841,12.542,16.6026][0,-1,0][0.836968,0.617812,0][2.39841,-1.7144,16.6026][0.34202,2.5144e-007,0.939693][0.836968,0.588331,0][2.39841,-1.7144,16.6026][0.34202,2.5144e-007,0.939693][0.836968,0.588331,0][7.93129,-1.7144,14.5888][0.642788,0,0.766044][0.848409,0.588331,0][7.93129,12.542,14.5888][0,-1,0][0.848409,0.617812,0][2.39841,12.542,16.6026][0,-1,0][0.836968,0.617812,0][-3.48955,12.542,16.6026][0,-1,0][0.824792,0.617812,0][-3.48955,-1.7144,16.6026][6.47881e-007,2.67577e-007,1][0.824792,0.588331,0][-3.48955,-1.7144,16.6026][6.47881e-007,2.67577e-007,1][0.824792,0.588331,0][2.39841,-1.7144,16.6026][0.34202,2.5144e-007,0.939693][0.836968,0.588331,0][2.39841,12.542,16.6026][0,-1,0][0.836968,0.617812,0][-3.48955,12.542,16.6026][0,-1,0][0.824792,0.617812,0][-9.02243,12.542,14.5888][0,-1,0][0.813351,0.617812,0][-9.02243,-1.7144,14.5888][-0.34202,1.8858e-007,0.939693][0.813351,0.588331,0][-9.02243,-1.7144,14.5888][-0.34202,1.8858e-007,0.939693][0.813351,0.588331,0][-3.48955,-1.7144,16.6026][6.47881e-007,2.67577e-007,1][0.824792,0.588331,0][-3.48955,12.542,16.6026][0,-1,0][0.824792,0.617812,0][-9.02243,12.542,14.5888][0,-1,0][0.813351,0.617812,0][-13.5329,12.542,10.804][0,-1,0][0.804023,0.617812,0][-13.5329,-1.7144,10.8041][-0.642787,1.53732e-007,0.766045][0.804023,0.588331,0][-13.5329,-1.7144,10.8041][-0.642787,1.53732e-007,0.766045][0.804023,0.588331,0][-9.02243,-1.7144,14.5888][-0.34202,1.8858e-007,0.939693][0.813351,0.588331,0][-9.02243,12.542,14.5888][0,-1,0][0.813351,0.617812,0][-13.5329,12.542,10.804][0,-1,0][0.657125,0.729979,0][-16.4769,12.542,5.70493][0,-1,0][0.647798,0.729979,0][-16.4769,-1.7144,5.70493][-0.866025,0,0.500001][0.647798,0.700498,0][-16.4769,-1.7144,5.70493][-0.866025,0,0.500001][0.647798,0.700498,0][-13.5329,-1.7144,10.8041][-0.642787,1.53732e-007,0.766045][0.657125,0.700498,0][-13.5329,12.542,10.804][0,-1,0][0.657125,0.729979,0][-16.4769,12.542,5.70493][0,-1,0][0.647798,0.729979,0][-17.4993,12.542,-0.0935991][0,-1,0][0.636357,0.729979,0][-17.4993,-1.7144,-0.0935978][-0.984808,0,-0.173648][0.636357,0.700498,0][-17.4993,-1.7144,-0.0935978][-0.984808,0,-0.173648][0.636357,0.700498,0][-16.4769,-1.7144,5.70493][-0.866025,0,0.500001][0.647798,0.700498,0][-16.4769,12.542,5.70493][0,-1,0][0.647798,0.729979,0][-17.4993,-1.7144,-0.0935978][-0.984808,0,-0.173648][0.01,0.666552,0][-16.4769,-1.7144,-5.89211][-0.984808,0,-0.173648][0.0136869,0.645642,0][-11.7059,-1.7144,-4.15563][0,-1,0][0.0308911,0.651904,0][-11.7059,-1.7144,-4.15563][0,-1,0][0.0308911,0.651904,0][-12.4222,-1.7144,-0.0935978][0,-1,0][0.0283083,0.666552,0][-17.4993,-1.7144,-0.0935978][-0.984808,0,-0.173648][0.01,0.666552,0][-16.4769,-1.7144,-5.89211][-0.984808,0,-0.173648][0.0136869,0.645642,0][-13.5329,-1.7144,-10.9912][-0.866025,0,-0.5][0.024303,0.627254,0][-9.64357,-1.7144,-7.72772][0,-1,0][0.038328,0.639023,0][-9.64357,-1.7144,-7.72772][0,-1,0][0.038328,0.639023,0][-11.7059,-1.7144,-4.15563][0,-1,0][0.0308911,0.651904,0][-16.4769,-1.7144,-5.89211][-0.984808,0,-0.173648][0.0136869,0.645642,0][-13.5329,-1.7144,-10.9912][-0.866025,0,-0.5][0.024303,0.627254,0][-9.02243,-1.7144,-14.7759][-0.642788,-1.53732e-007,-0.766044][0.0405678,0.613607,0][-6.48386,-1.7144,-10.379][0,-1,0][0.0497219,0.629462,0][-6.48386,-1.7144,-10.379][0,-1,0][0.0497219,0.629462,0][-9.64357,-1.7144,-7.72772][0,-1,0][0.038328,0.639023,0][-13.5329,-1.7144,-10.9912][-0.866025,0,-0.5][0.024303,0.627254,0][-9.02243,-1.7144,-14.7759][-0.642788,-1.53732e-007,-0.766044][0.0405678,0.613607,0][-3.48955,-1.7144,-16.7898][-0.34202,-2.5144e-007,-0.939693][0.0605195,0.606345,0][-2.60792,-1.7144,-11.7898][0,-1,0][0.0636987,0.624375,0][-2.60792,-1.7144,-11.7898][0,-1,0][0.0636987,0.624375,0][-6.48386,-1.7144,-10.379][0,-1,0][0.0497219,0.629462,0][-9.02243,-1.7144,-14.7759][-0.642788,-1.53732e-007,-0.766044][0.0405678,0.613607,0][-3.48955,-1.7144,-16.7898][-0.34202,-2.5144e-007,-0.939693][0.0605195,0.606345,0][2.39841,-1.7144,-16.7898][0,-2.67577e-007,-1][0.0817516,0.606345,0][1.51678,-1.7144,-11.7898][0,-1,0][0.0785724,0.624375,0][1.51678,-1.7144,-11.7898][0,-1,0][0.0785724,0.624375,0][-2.60792,-1.7144,-11.7898][0,-1,0][0.0636987,0.624375,0][-3.48955,-1.7144,-16.7898][-0.34202,-2.5144e-007,-0.939693][0.0605195,0.606345,0][2.39841,-1.7144,-16.7898][0,-2.67577e-007,-1][0.0817516,0.606345,0][7.93129,-1.7144,-14.7759][0.342021,0,-0.939692][0.101703,0.613607,0][5.39272,-1.7144,-10.379][0,-1,0][0.0925492,0.629462,0][5.39272,-1.7144,-10.379][0,-1,0][0.0925492,0.629462,0][1.51678,-1.7144,-11.7898][0,-1,0][0.0785724,0.624375,0][2.39841,-1.7144,-16.7898][0,-2.67577e-007,-1][0.0817516,0.606345,0][7.93129,-1.7144,-14.7759][0.342021,0,-0.939692][0.101703,0.613607,0][12.4417,-1.7144,-10.9912][0.642788,0,-0.766044][0.117968,0.627254,0][8.55242,-1.7144,-7.72772][0,-1,0][0.103943,0.639023,0][8.55242,-1.7144,-7.72772][0,-1,0][0.103943,0.639023,0][5.39272,-1.7144,-10.379][0,-1,0][0.0925492,0.629462,0][7.93129,-1.7144,-14.7759][0.342021,0,-0.939692][0.101703,0.613607,0][12.4417,-1.7144,-10.9912][0.642788,0,-0.766044][0.117968,0.627254,0][15.3857,-1.7144,-5.89211][0.866025,0,-0.5][0.128584,0.645642,0][10.6148,-1.7144,-4.15563][0,-1,0][0.11138,0.651904,0][10.6148,-1.7144,-4.15563][0,-1,0][0.11138,0.651904,0][8.55242,-1.7144,-7.72772][0,-1,0][0.103943,0.639023,0][12.4417,-1.7144,-10.9912][0.642788,0,-0.766044][0.117968,0.627254,0][15.3857,-1.7144,-5.89211][0.866025,0,-0.5][0.128584,0.645642,0][16.4081,-1.7144,-0.0935949][0.984808,0,-0.173648][0.132271,0.666552,0][11.331,-1.7144,-0.0935952][0,-1,0][0.113963,0.666552,0][11.331,-1.7144,-0.0935952][0,-1,0][0.113963,0.666552,0][10.6148,-1.7144,-4.15563][0,-1,0][0.11138,0.651904,0][15.3857,-1.7144,-5.89211][0.866025,0,-0.5][0.128584,0.645642,0][16.4081,-1.7144,-0.0935949][0.984808,0,-0.173648][0.132271,0.666552,0][15.3857,-1.7144,5.70492][0.984808,0,0.173648][0.128584,0.687461,0][10.6148,-1.7144,3.96844][0,-1,0][0.11138,0.681199,0][10.6148,-1.7144,3.96844][0,-1,0][0.11138,0.681199,0][11.331,-1.7144,-0.0935952][0,-1,0][0.113963,0.666552,0][16.4081,-1.7144,-0.0935949][0.984808,0,-0.173648][0.132271,0.666552,0][15.3857,-1.7144,5.70492][0.984808,0,0.173648][0.128584,0.687461,0][12.4417,-1.7144,10.804][0.866025,0,0.5][0.117968,0.705849,0][8.55242,-1.7144,7.54053][0,-1,0][0.103943,0.69408,0][8.55242,-1.7144,7.54053][0,-1,0][0.103943,0.69408,0][10.6148,-1.7144,3.96844][0,-1,0][0.11138,0.681199,0][15.3857,-1.7144,5.70492][0.984808,0,0.173648][0.128584,0.687461,0][12.4417,-1.7144,10.804][0.866025,0,0.5][0.117968,0.705849,0][7.93129,-1.7144,14.5888][0.642788,0,0.766044][0.101703,0.719497,0][5.39272,-1.7144,10.1918][0,-1,0][0.0925492,0.703641,0][5.39272,-1.7144,10.1918][0,-1,0][0.0925492,0.703641,0][8.55242,-1.7144,7.54053][0,-1,0][0.103943,0.69408,0][12.4417,-1.7144,10.804][0.866025,0,0.5][0.117968,0.705849,0][7.93129,-1.7144,14.5888][0.642788,0,0.766044][0.101703,0.719497,0][2.39841,-1.7144,16.6026][0.34202,2.5144e-007,0.939693][0.0817517,0.726758,0][1.51678,-1.7144,11.6026][0,-1,0][0.0785724,0.708728,0][1.51678,-1.7144,11.6026][0,-1,0][0.0785724,0.708728,0][5.39272,-1.7144,10.1918][0,-1,0][0.0925492,0.703641,0][7.93129,-1.7144,14.5888][0.642788,0,0.766044][0.101703,0.719497,0][2.39841,-1.7144,16.6026][0.34202,2.5144e-007,0.939693][0.0817517,0.726758,0][-3.48955,-1.7144,16.6026][6.47881e-007,2.67577e-007,1][0.0605195,0.726758,0][-2.60792,-1.7144,11.6026][0,-1,0][0.0636987,0.708728,0][-2.60792,-1.7144,11.6026][0,-1,0][0.0636987,0.708728,0][1.51678,-1.7144,11.6026][0,-1,0][0.0785724,0.708728,0][2.39841,-1.7144,16.6026][0.34202,2.5144e-007,0.939693][0.0817517,0.726758,0][-3.48955,-1.7144,16.6026][6.47881e-007,2.67577e-007,1][0.0605195,0.726758,0][-9.02243,-1.7144,14.5888][-0.34202,1.8858e-007,0.939693][0.0405678,0.719497,0][-6.48386,-1.7144,10.1918][0,-1,0][0.0497219,0.703641,0][-6.48386,-1.7144,10.1918][0,-1,0][0.0497219,0.703641,0][-2.60792,-1.7144,11.6026][0,-1,0][0.0636987,0.708728,0][-3.48955,-1.7144,16.6026][6.47881e-007,2.67577e-007,1][0.0605195,0.726758,0][-9.02243,-1.7144,14.5888][-0.34202,1.8858e-007,0.939693][0.0405678,0.719497,0][-13.5329,-1.7144,10.8041][-0.642787,1.53732e-007,0.766045][0.024303,0.705849,0][-9.64356,-1.7144,7.54053][0,-1,0][0.038328,0.69408,0][-9.64356,-1.7144,7.54053][0,-1,0][0.038328,0.69408,0][-6.48386,-1.7144,10.1918][0,-1,0][0.0497219,0.703641,0][-9.02243,-1.7144,14.5888][-0.34202,1.8858e-007,0.939693][0.0405678,0.719497,0][-13.5329,-1.7144,10.8041][-0.642787,1.53732e-007,0.766045][0.024303,0.705849,0][-16.4769,-1.7144,5.70493][-0.866025,0,0.500001][0.0136869,0.687461,0][-11.7059,-1.7144,3.96844][0,-1,0][0.0308911,0.681199,0][-11.7059,-1.7144,3.96844][0,-1,0][0.0308911,0.681199,0][-9.64356,-1.7144,7.54053][0,-1,0][0.038328,0.69408,0][-13.5329,-1.7144,10.8041][-0.642787,1.53732e-007,0.766045][0.024303,0.705849,0][-16.4769,-1.7144,5.70493][-0.866025,0,0.500001][0.0136869,0.687461,0][-17.4993,-1.7144,-0.0935978][-0.984808,0,-0.173648][0.01,0.666552,0][-12.4222,-1.7144,-0.0935978][0,-1,0][0.0283083,0.666552,0][-12.4222,-1.7144,-0.0935978][0,-1,0][0.0283083,0.666552,0][-11.7059,-1.7144,3.96844][0,-1,0][0.0308911,0.681199,0][-16.4769,-1.7144,5.70493][-0.866025,0,0.500001][0.0136869,0.687461,0][-12.4222,-1.7144,-0.0935978][0,-1,0][0.766184,0.447485,0][-11.7059,-1.7144,-4.15563][0,-1,0][0.766184,0.439086,0][-11.7059,-48.0687,-4.15563][0,-1,0][0.862041,0.439086,0][-11.7059,-48.0687,-4.15563][0,-1,0][0.862041,0.439086,0][-12.4222,-48.0687,-0.093596][0,-1,0][0.862041,0.447485,0][-12.4222,-1.7144,-0.0935978][0,-1,0][0.766184,0.447485,0][-11.7059,-1.7144,-4.15563][0,-1,0][0.766184,0.439086,0][-9.64357,-1.7144,-7.72772][0,-1,0][0.766184,0.431699,0][-9.64357,-48.0687,-7.72772][0,-1,0][0.862041,0.431699,0][-9.64357,-48.0687,-7.72772][0,-1,0][0.862041,0.431699,0][-11.7059,-48.0687,-4.15563][0,-1,0][0.862041,0.439086,0][-11.7059,-1.7144,-4.15563][0,-1,0][0.766184,0.439086,0][-9.64357,-1.7144,-7.72772][0,-1,0][0.612739,0.625959,0][-6.48386,-1.7144,-10.379][0,-1,0][0.612739,0.619425,0][-6.48386,-48.0687,-10.379][0,-1,0][0.708596,0.619425,0][-6.48386,-48.0687,-10.379][0,-1,0][0.708596,0.619425,0][-9.64357,-48.0687,-7.72772][0,-1,0][0.708596,0.625959,0][-9.64357,-1.7144,-7.72772][0,-1,0][0.612739,0.625959,0][-6.48386,-1.7144,-10.379][0,-1,0][0.612739,0.619425,0][-2.60792,-1.7144,-11.7898][0,-1,0][0.612739,0.61141,0][-2.60792,-48.0687,-11.7897][0,-1,0][0.708596,0.61141,0][-2.60792,-48.0687,-11.7897][0,-1,0][0.708596,0.61141,0][-6.48386,-48.0687,-10.379][0,-1,0][0.708596,0.619425,0][-6.48386,-1.7144,-10.379][0,-1,0][0.612739,0.619425,0][-2.60792,-1.7144,-11.7898][0,-1,0][0.612739,0.61141,0][1.51678,-1.7144,-11.7898][0,-1,0][0.612739,0.60288,0][1.51678,-48.0687,-11.7897][0,-1,0][0.708596,0.60288,0][1.51678,-48.0687,-11.7897][0,-1,0][0.708596,0.60288,0][-2.60792,-48.0687,-11.7897][0,-1,0][0.708596,0.61141,0][-2.60792,-1.7144,-11.7898][0,-1,0][0.612739,0.61141,0][1.51678,-1.7144,-11.7898][0,-1,0][0.612739,0.60288,0][5.39272,-1.7144,-10.379][0,-1,0][0.612739,0.594865,0][5.39272,-48.0687,-10.379][0,-1,0][0.708596,0.594865,0][5.39272,-48.0687,-10.379][0,-1,0][0.708596,0.594865,0][1.51678,-48.0687,-11.7897][0,-1,0][0.708596,0.60288,0][1.51678,-1.7144,-11.7898][0,-1,0][0.612739,0.60288,0][5.39272,-1.7144,-10.379][0,-1,0][0.612739,0.594865,0][8.55242,-1.7144,-7.72772][0,-1,0][0.612739,0.588331,0][8.55242,-48.0687,-7.72772][0,-1,0][0.708596,0.588331,0][8.55242,-48.0687,-7.72772][0,-1,0][0.708596,0.588331,0][5.39272,-48.0687,-10.379][0,-1,0][0.708596,0.594865,0][5.39272,-1.7144,-10.379][0,-1,0][0.612739,0.594865,0][8.55242,-1.7144,-7.72772][0,-1,0][0.796517,0.533094,0][10.6148,-1.7144,-4.15563][0,-1,0][0.796517,0.524564,0][10.6148,-48.0687,-4.15562][0,-1,0][0.892374,0.524564,0][10.6148,-48.0687,-4.15562][0,-1,0][0.892374,0.524564,0][8.55242,-48.0687,-7.72772][0,-1,0][0.892374,0.533094,0][8.55242,-1.7144,-7.72772][0,-1,0][0.796517,0.533094,0][10.6148,-1.7144,-4.15563][0,-1,0][0.796517,0.524564,0][11.331,-1.7144,-0.0935952][0,-1,0][0.796517,0.516549,0][11.331,-48.0687,-0.0935935][0,-1,0][0.892374,0.516549,0][11.331,-48.0687,-0.0935935][0,-1,0][0.892374,0.516549,0][10.6148,-48.0687,-4.15562][0,-1,0][0.892374,0.524564,0][10.6148,-1.7144,-4.15563][0,-1,0][0.796517,0.524564,0][11.331,-1.7144,-0.0935952][0,-1,0][0.796517,0.516549,0][10.6148,-1.7144,3.96844][0,-1,0][0.796517,0.510015,0][10.6148,-48.0687,3.96844][0,-1,0][0.892374,0.510015,0][10.6148,-48.0687,3.96844][0,-1,0][0.892374,0.510015,0][11.331,-48.0687,-0.0935935][0,-1,0][0.892374,0.516549,0][11.331,-1.7144,-0.0935952][0,-1,0][0.796517,0.516549,0][10.6148,-1.7144,3.96844][0,-1,0][0.559494,0.57236,0][8.55242,-1.7144,7.54053][0,-1,0][0.559494,0.563831,0][8.55242,-48.0687,7.54053][0,-1,0][0.65535,0.563831,0][8.55242,-48.0687,7.54053][0,-1,0][0.65535,0.563831,0][10.6148,-48.0687,3.96844][0,-1,0][0.65535,0.57236,0][10.6148,-1.7144,3.96844][0,-1,0][0.559494,0.57236,0][8.55242,-1.7144,7.54053][0,-1,0][0.685709,0.547643,0][5.39272,-1.7144,10.1918][0,-1,0][0.685709,0.541109,0][5.39272,-48.0687,10.1918][0,-1,0][0.781566,0.541109,0][5.39272,-48.0687,10.1918][0,-1,0][0.781566,0.541109,0][8.55242,-48.0687,7.54053][0,-1,0][0.781566,0.547643,0][8.55242,-1.7144,7.54053][0,-1,0][0.685709,0.547643,0][5.39272,-1.7144,10.1918][0,-1,0][0.685709,0.541109,0][1.51678,-1.7144,11.6026][0,-1,0][0.685709,0.533094,0][1.51678,-48.0687,11.6026][0,-1,0][0.781566,0.533094,0][1.51678,-48.0687,11.6026][0,-1,0][0.781566,0.533094,0][5.39272,-48.0687,10.1918][0,-1,0][0.781566,0.541109,0][5.39272,-1.7144,10.1918][0,-1,0][0.685709,0.541109,0][1.51678,-1.7144,11.6026][0,-1,0][0.685709,0.533094,0][-2.60792,-1.7144,11.6026][0,-1,0][0.685709,0.524564,0][-2.60792,-48.0687,11.6026][0,-1,0][0.781566,0.524564,0][-2.60792,-48.0687,11.6026][0,-1,0][0.781566,0.524564,0][1.51678,-48.0687,11.6026][0,-1,0][0.781566,0.533094,0][1.51678,-1.7144,11.6026][0,-1,0][0.685709,0.533094,0][-2.60792,-1.7144,11.6026][0,-1,0][0.685709,0.524564,0][-6.48386,-1.7144,10.1918][0,-1,0][0.685709,0.516549,0][-6.48386,-48.0687,10.1918][0,-1,0][0.781566,0.516549,0][-6.48386,-48.0687,10.1918][0,-1,0][0.781566,0.516549,0][-2.60792,-48.0687,11.6026][0,-1,0][0.781566,0.524564,0][-2.60792,-1.7144,11.6026][0,-1,0][0.685709,0.524564,0][-6.48386,-1.7144,10.1918][0,-1,0][0.685709,0.516549,0][-9.64356,-1.7144,7.54053][0,-1,0][0.685709,0.510015,0][-9.64356,-48.0687,7.54053][0,-1,0][0.781566,0.510015,0][-9.64356,-48.0687,7.54053][0,-1,0][0.781566,0.510015,0][-6.48386,-48.0687,10.1918][0,-1,0][0.781566,0.516549,0][-6.48386,-1.7144,10.1918][0,-1,0][0.685709,0.516549,0][-9.64356,-1.7144,7.54053][0,-1,0][0.766184,0.463272,0][-11.7059,-1.7144,3.96844][0,-1,0][0.766184,0.455885,0][-11.7059,-48.0687,3.96845][0,-1,0][0.862041,0.455885,0][-11.7059,-48.0687,3.96845][0,-1,0][0.862041,0.455885,0][-9.64356,-48.0687,7.54053][0,-1,0][0.862041,0.463272,0][-9.64356,-1.7144,7.54053][0,-1,0][0.766184,0.463272,0][-11.7059,-1.7144,3.96844][0,-1,0][0.766184,0.455885,0][-12.4222,-1.7144,-0.0935978][0,-1,0][0.766184,0.447485,0][-12.4222,-48.0687,-0.093596][0,-1,0][0.862041,0.447485,0][-12.4222,-48.0687,-0.093596][0,-1,0][0.862041,0.447485,0][-11.7059,-48.0687,3.96845][0,-1,0][0.862041,0.455885,0][-11.7059,-1.7144,3.96844][0,-1,0][0.766184,0.455885,0][-19.3394,66.3469,-6.934][-0.918006,0,-0.396567][0.41636,0.853459,0][-20.5456,66.3469,-0.0935996][-0.998277,0,-0.0586746][0.412011,0.828793,0][-18.5147,66.3469,-0.0935995][0,1,0][0.419334,0.828793,0][-18.5147,66.3469,-0.0935995][0,1,0][0.419334,0.828793,0][-17.431,66.3469,-6.23941][0,1,0][0.423242,0.850955,0][-19.3394,66.3469,-6.934][-0.918006,0,-0.396567][0.41636,0.853459,0][-20.5456,66.3469,-0.0935996][-0.998277,0,-0.0586746][0.412011,0.828793,0][-19.3394,66.3469,6.74682][-0.958141,0,0.286295][0.41636,0.804126,0][-17.431,66.3469,6.05222][0,1,0][0.423242,0.806631,0][-17.431,66.3469,6.05222][0,1,0][0.423242,0.806631,0][-18.5147,66.3469,-0.0935995][0,1,0][0.419334,0.828793,0][-20.5456,66.3469,-0.0935996][-0.998277,0,-0.0586746][0.412011,0.828793,0][-19.3394,66.3469,6.74682][-0.958141,0,0.286295][0.41636,0.804126,0][-15.8665,66.3469,12.7622][-0.802439,0,0.596734][0.428884,0.782434,0][-14.3107,66.3469,11.4568][0,1,0][0.434494,0.787142,0][-14.3107,66.3469,11.4568][0,1,0][0.434494,0.787142,0][-17.431,66.3469,6.05222][0,1,0][0.423242,0.806631,0][-19.3394,66.3469,6.74682][-0.958141,0,0.286295][0.41636,0.804126,0][-15.8665,66.3469,12.7622][-0.802439,0,0.596734][0.428884,0.782434,0][-10.5456,66.3469,17.2269][-0.549952,0,0.835196][0.448071,0.766334,0][-9.53014,66.3469,15.4681][0,1,0][0.451732,0.772677,0][-9.53014,66.3469,15.4681][0,1,0][0.451732,0.772677,0][-14.3107,66.3469,11.4568][0,1,0][0.434494,0.787142,0][-15.8665,66.3469,12.7622][-0.802439,0,0.596734][0.428884,0.782434,0][-10.5456,66.3469,17.2269][-0.549952,0,0.835196][0.448071,0.766334,0][-4.01853,66.3469,19.6026][-0.231132,0,0.972923][0.471607,0.757768,0][-3.66588,66.3469,17.6026][0,1,0][0.472879,0.76498,0][-3.66588,66.3469,17.6026][0,1,0][0.472879,0.76498,0][-9.53014,66.3469,15.4681][0,1,0][0.451732,0.772677,0][-10.5456,66.3469,17.2269][-0.549952,0,0.835196][0.448071,0.766334,0][-4.01853,66.3469,19.6026][-0.231132,0,0.972923][0.471607,0.757768,0][2.9274,66.3469,19.6026][0.115566,0,0.9933][0.496655,0.757768,0][2.57474,66.3469,17.6026][0,1,0][0.495383,0.76498,0][2.57474,66.3469,17.6026][0,1,0][0.495383,0.76498,0][-3.66588,66.3469,17.6026][0,1,0][0.472879,0.76498,0][-4.01853,66.3469,19.6026][-0.231132,0,0.972923][0.471607,0.757768,0][2.9274,66.3469,19.6026][0.115566,0,0.9933][0.496655,0.757768,0][9.45443,66.3469,17.2269][0.448325,0,0.893871][0.520191,0.766334,0][8.439,66.3469,15.4681][0,1,0][0.51653,0.772677,0][8.439,66.3469,15.4681][0,1,0][0.51653,0.772677,0][2.57474,66.3469,17.6026][0,1,0][0.495383,0.76498,0][2.9274,66.3469,19.6026][0.115566,0,0.9933][0.496655,0.757768,0][9.45443,66.3469,17.2269][0.448325,0,0.893871][0.520191,0.766334,0][14.7753,66.3469,12.7622][0.72701,0,0.686627][0.539379,0.782435,0][13.2196,66.3469,11.4567][0,1,0][0.533769,0.787142,0][13.2196,66.3469,11.4567][0,1,0][0.533769,0.787142,0][8.439,66.3469,15.4681][0,1,0][0.51653,0.772677,0][9.45443,66.3469,17.2269][0.448325,0,0.893871][0.520191,0.766334,0][14.7753,66.3469,12.7622][0.72701,0,0.686627][0.539379,0.782435,0][18.2483,66.3469,6.74681][0.918006,0,0.396567][0.551902,0.804126,0][16.3399,66.3469,6.05221][0,1,0][0.545021,0.806631,0][16.3399,66.3469,6.05221][0,1,0][0.545021,0.806631,0][13.2196,66.3469,11.4567][0,1,0][0.533769,0.787142,0][14.7753,66.3469,12.7622][0.72701,0,0.686627][0.539379,0.782435,0][18.2483,66.3469,6.74681][0.918006,0,0.396567][0.551902,0.804126,0][19.4544,66.3469,-0.0935966][0.998277,0,0.0586745][0.556252,0.828793,0][17.4236,66.3469,-0.0935966][0,1,0][0.548928,0.828793,0][17.4236,66.3469,-0.0935966][0,1,0][0.548928,0.828793,0][16.3399,66.3469,6.05221][0,1,0][0.545021,0.806631,0][18.2483,66.3469,6.74681][0.918006,0,0.396567][0.551902,0.804126,0][19.4544,66.3469,-0.0935966][0.998277,0,0.0586745][0.556252,0.828793,0][18.2483,66.3469,-6.934][0.958142,0,-0.286295][0.551902,0.853459,0][16.3399,66.3469,-6.23941][0,1,0][0.545021,0.850955,0][16.3399,66.3469,-6.23941][0,1,0][0.545021,0.850955,0][17.4236,66.3469,-0.0935966][0,1,0][0.548928,0.828793,0][19.4544,66.3469,-0.0935966][0.998277,0,0.0586745][0.556252,0.828793,0][18.2483,66.3469,-6.934][0.958142,0,-0.286295][0.551902,0.853459,0][14.7753,66.3469,-12.9493][0.80244,0,-0.596733][0.539379,0.875151,0][13.2196,66.3469,-11.6439][0,1,0][0.533769,0.870443,0][13.2196,66.3469,-11.6439][0,1,0][0.533769,0.870443,0][16.3399,66.3469,-6.23941][0,1,0][0.545021,0.850955,0][18.2483,66.3469,-6.934][0.958142,0,-0.286295][0.551902,0.853459,0][14.7753,66.3469,-12.9493][0.80244,0,-0.596733][0.539379,0.875151,0][9.45443,66.3469,-17.4141][0.549952,0,-0.835196][0.520191,0.891251,0][8.439,66.3469,-15.6553][0,1,0][0.51653,0.884909,0][8.439,66.3469,-15.6553][0,1,0][0.51653,0.884909,0][13.2196,66.3469,-11.6439][0,1,0][0.533769,0.870443,0][14.7753,66.3469,-12.9493][0.80244,0,-0.596733][0.539379,0.875151,0][9.45443,66.3469,-17.4141][0.549952,0,-0.835196][0.520191,0.891251,0][2.9274,66.3469,-19.7898][0.231132,0,-0.972922][0.496655,0.899817,0][2.57474,66.3469,-17.7898][0,1,0][0.495383,0.892605,0][2.57474,66.3469,-17.7898][0,1,0][0.495383,0.892605,0][8.439,66.3469,-15.6553][0,1,0][0.51653,0.884909,0][9.45443,66.3469,-17.4141][0.549952,0,-0.835196][0.520191,0.891251,0][2.9274,66.3469,-19.7898][0.231132,0,-0.972922][0.496655,0.899817,0][-4.01853,66.3469,-19.7898][-0.115566,0,-0.9933][0.471607,0.899817,0][-3.66588,66.3469,-17.7898][0,1,0][0.472879,0.892605,0][-3.66588,66.3469,-17.7898][0,1,0][0.472879,0.892605,0][2.57474,66.3469,-17.7898][0,1,0][0.495383,0.892605,0][2.9274,66.3469,-19.7898][0.231132,0,-0.972922][0.496655,0.899817,0][-4.01853,66.3469,-19.7898][-0.115566,0,-0.9933][0.471607,0.899817,0][-10.5456,66.3469,-17.4141][-0.448325,0,-0.893871][0.448071,0.891251,0][-9.53014,66.3469,-15.6553][0,1,0][0.451732,0.884909,0][-9.53014,66.3469,-15.6553][0,1,0][0.451732,0.884909,0][-3.66588,66.3469,-17.7898][0,1,0][0.472879,0.892605,0][-4.01853,66.3469,-19.7898][-0.115566,0,-0.9933][0.471607,0.899817,0][-10.5456,66.3469,-17.4141][-0.448325,0,-0.893871][0.448071,0.891251,0][-15.8665,66.3469,-12.9494][-0.72701,0,-0.686627][0.428884,0.875151,0][-14.3107,66.3469,-11.6439][0,1,0][0.434494,0.870443,0][-14.3107,66.3469,-11.6439][0,1,0][0.434494,0.870443,0][-9.53014,66.3469,-15.6553][0,1,0][0.451732,0.884909,0][-10.5456,66.3469,-17.4141][-0.448325,0,-0.893871][0.448071,0.891251,0][-15.8665,66.3469,-12.9494][-0.72701,0,-0.686627][0.428884,0.875151,0][-19.3394,66.3469,-6.934][-0.918006,0,-0.396567][0.41636,0.853459,0][-17.431,66.3469,-6.23941][0,1,0][0.423242,0.850955,0][-17.431,66.3469,-6.23941][0,1,0][0.423242,0.850955,0][-14.3107,66.3469,-11.6439][0,1,0][0.434494,0.870443,0][-15.8665,66.3469,-12.9494][-0.72701,0,-0.686627][0.428884,0.875151,0][-17.431,66.3469,-6.23941][0,1,0][0.01,0.810126,0][-18.5147,66.3469,-0.0935995][0,1,0][0.01,0.787964,0][-18.5147,34.661,-0.0935991][5.60723e-007,1,2.32762e-007][0.12426,0.787964,0][-18.5147,34.661,-0.0935991][5.60723e-007,1,2.32762e-007][0.12426,0.787964,0][-17.431,34.661,-6.23941][3.30786e-006,1,1.20396e-006][0.12426,0.810126,0][-17.431,66.3469,-6.23941][0,1,0][0.01,0.810126,0][-18.5147,66.3469,-0.0935995][0,1,0][0.01,0.787964,0][-17.431,66.3469,6.05222][0,1,0][0.01,0.765802,0][-17.431,34.661,6.05222][-1.76008e-006,1,3.10349e-007][0.12426,0.765802,0][-17.431,34.661,6.05222][-1.76008e-006,1,3.10349e-007][0.12426,0.765802,0][-18.5147,34.661,-0.0935991][5.60723e-007,1,2.32762e-007][0.12426,0.787964,0][-18.5147,66.3469,-0.0935995][0,1,0][0.01,0.787964,0][-17.431,66.3469,6.05222][0,1,0][0.01,0.765802,0][-14.3107,66.3469,11.4568][0,1,0][0.01,0.746313,0][-14.3107,34.661,11.4568][-5.58745e-007,1,4.68843e-007][0.12426,0.746313,0][-14.3107,34.661,11.4568][-5.58745e-007,1,4.68843e-007][0.12426,0.746313,0][-17.431,34.661,6.05222][-1.76008e-006,1,3.10349e-007][0.12426,0.765802,0][-17.431,66.3469,6.05222][0,1,0][0.01,0.765802,0][-14.3107,66.3469,11.4568][0,1,0][0.173796,0.529591,0][-9.53014,66.3469,15.4681][0,1,0][0.173796,0.512353,0][-9.53014,34.661,15.4681][-6.11268e-007,1,1.67945e-006][0.288056,0.512353,0][-9.53014,34.661,15.4681][-6.11268e-007,1,1.67945e-006][0.288056,0.512353,0][-14.3107,34.661,11.4568][-5.58745e-007,1,4.68843e-007][0.288056,0.529591,0][-14.3107,66.3469,11.4568][0,1,0][0.173796,0.529591,0][-9.53014,66.3469,15.4681][0,1,0][0.173796,0.512353,0][-3.66588,66.3469,17.6026][0,1,0][0.173796,0.491206,0][-3.66588,34.661,17.6026][0,1,0][0.288056,0.491206,0][-3.66588,34.661,17.6026][0,1,0][0.288056,0.491206,0][-9.53014,34.661,15.4681][-6.11268e-007,1,1.67945e-006][0.288056,0.512353,0][-9.53014,66.3469,15.4681][0,1,0][0.173796,0.512353,0][-3.66588,66.3469,17.6026][0,1,0][0.173796,0.491206,0][2.57474,66.3469,17.6026][0,1,0][0.173796,0.468702,0][2.57474,34.661,17.6026][0,1,0][0.288056,0.468702,0][2.57474,34.661,17.6026][0,1,0][0.288056,0.468702,0][-3.66588,34.661,17.6026][0,1,0][0.288056,0.491206,0][-3.66588,66.3469,17.6026][0,1,0][0.173796,0.491206,0][2.57474,66.3469,17.6026][0,1,0][0.173796,0.468702,0][8.439,66.3469,15.4681][0,1,0][0.173796,0.447555,0][8.439,34.661,15.4681][-4.10884e-007,1,-6.1486e-007][0.288056,0.447555,0][8.439,34.661,15.4681][-4.10884e-007,1,-6.1486e-007][0.288056,0.447555,0][2.57474,34.661,17.6026][0,1,0][0.288056,0.468702,0][2.57474,66.3469,17.6026][0,1,0][0.173796,0.468702,0][8.439,66.3469,15.4681][0,1,0][0.173796,0.447555,0][13.2196,66.3469,11.4567][0,1,0][0.173796,0.430316,0][13.2196,34.661,11.4567][-1.14881e-006,1,-1.3691e-006][0.288056,0.430316,0][13.2196,34.661,11.4567][-1.14881e-006,1,-1.3691e-006][0.288056,0.430316,0][8.439,34.661,15.4681][-4.10884e-007,1,-6.1486e-007][0.288056,0.447555,0][8.439,66.3469,15.4681][0,1,0][0.173796,0.447555,0][13.2196,66.3469,11.4567][0,1,0][0.723548,0.623249,0][16.3399,66.3469,6.05221][0,1,0][0.723548,0.610344,0][16.3399,34.661,6.05221][-5.29318e-007,1,-1.86017e-007][0.789072,0.610344,0][16.3399,34.661,6.05221][-5.29318e-007,1,-1.86017e-007][0.789072,0.610344,0][13.2196,34.661,11.4567][-1.14881e-006,1,-1.3691e-006][0.789072,0.623249,0][13.2196,66.3469,11.4567][0,1,0][0.723548,0.623249,0][16.3399,66.3469,6.05221][0,1,0][0.723548,0.610344,0][17.4236,66.3469,-0.0935966][0,1,0][0.723548,0.598217,0][17.4236,34.661,-0.0935962][-1.76008e-006,1,3.1035e-007][0.789072,0.598217,0][17.4236,34.661,-0.0935962][-1.76008e-006,1,3.1035e-007][0.789072,0.598217,0][16.3399,34.661,6.05221][-5.29318e-007,1,-1.86017e-007][0.789072,0.610344,0][16.3399,66.3469,6.05221][0,1,0][0.723548,0.610344,0][17.4236,66.3469,-0.0935966][0,1,0][0.723548,0.598217,0][16.3399,66.3469,-6.23941][0,1,0][0.723548,0.588331,0][16.3399,34.661,-6.23941][1.88886e-007,1,-5.47339e-007][0.789072,0.588331,0][16.3399,34.661,-6.23941][1.88886e-007,1,-5.47339e-007][0.789072,0.588331,0][17.4236,34.661,-0.0935962][-1.76008e-006,1,3.1035e-007][0.789072,0.598217,0][17.4236,66.3469,-0.0935966][0,1,0][0.723548,0.598217,0][16.3399,66.3469,-6.23941][0,1,0][0.766184,0.491129,0][13.2196,66.3469,-11.6439][0,1,0][0.766184,0.478224,0][13.2196,34.661,-11.6439][2.6966e-006,1,-2.26271e-006][0.831708,0.478224,0][13.2196,34.661,-11.6439][2.6966e-006,1,-2.26271e-006][0.831708,0.478224,0][16.3399,34.661,-6.23941][1.88886e-007,1,-5.47339e-007][0.831708,0.491129,0][16.3399,66.3469,-6.23941][0,1,0][0.766184,0.491129,0][13.2196,66.3469,-11.6439][0,1,0][0.685709,0.488629,0][8.439,66.3469,-15.6553][0,1,0][0.685709,0.478743,0][8.439,34.661,-15.6553][4.71171e-007,1,-3.57446e-007][0.751233,0.478743,0][8.439,34.661,-15.6553][4.71171e-007,1,-3.57446e-007][0.751233,0.478743,0][13.2196,34.661,-11.6439][2.6966e-006,1,-2.26271e-006][0.751233,0.488629,0][13.2196,66.3469,-11.6439][0,1,0][0.685709,0.488629,0][8.439,66.3469,-15.6553][0,1,0][0.685709,0.478743,0][2.57474,66.3469,-17.7898][0,1,0][0.685709,0.466616,0][2.57474,34.661,-17.7898][0,1,0][0.751233,0.466616,0][2.57474,34.661,-17.7898][0,1,0][0.751233,0.466616,0][8.439,34.661,-15.6553][4.71171e-007,1,-3.57446e-007][0.751233,0.478743,0][8.439,66.3469,-15.6553][0,1,0][0.685709,0.478743,0][2.57474,66.3469,-17.7898][0,1,0][0.685709,0.466616,0][-3.66588,66.3469,-17.7898][0,1,0][0.685709,0.453711,0][-3.66588,34.661,-17.7898][0,1,0][0.751233,0.453711,0][-3.66588,34.661,-17.7898][0,1,0][0.751233,0.453711,0][2.57474,34.661,-17.7898][0,1,0][0.751233,0.466616,0][2.57474,66.3469,-17.7898][0,1,0][0.685709,0.466616,0][-3.66588,66.3469,-17.7898][0,1,0][0.685709,0.453711,0][-9.53014,66.3469,-15.6553][0,1,0][0.685709,0.441585,0][-9.53014,34.661,-15.6553][0,1,0][0.751233,0.441585,0][-9.53014,34.661,-15.6553][0,1,0][0.751233,0.441585,0][-3.66588,34.661,-17.7898][0,1,0][0.751233,0.453711,0][-3.66588,66.3469,-17.7898][0,1,0][0.685709,0.453711,0][-9.53014,66.3469,-15.6553][0,1,0][0.685709,0.441585,0][-14.3107,66.3469,-11.6439][0,1,0][0.685709,0.431699,0][-14.3107,34.661,-11.6439][5.82424e-007,1,2.18625e-007][0.751233,0.431699,0][-14.3107,34.661,-11.6439][5.82424e-007,1,2.18625e-007][0.751233,0.431699,0][-9.53014,34.661,-15.6553][0,1,0][0.751233,0.441585,0][-9.53014,66.3469,-15.6553][0,1,0][0.685709,0.441585,0][-14.3107,66.3469,-11.6439][0,1,0][0.01,0.829615,0][-17.431,66.3469,-6.23941][0,1,0][0.01,0.810126,0][-17.431,34.661,-6.23941][3.30786e-006,1,1.20396e-006][0.12426,0.810126,0][-17.431,34.661,-6.23941][3.30786e-006,1,1.20396e-006][0.12426,0.810126,0][-14.3107,34.661,-11.6439][5.82424e-007,1,2.18625e-007][0.12426,0.829615,0][-14.3107,66.3469,-11.6439][0,1,0][0.01,0.829615,0][-2.76874,-50.0032,13.1802][-2.8737e-007,-1.41421,-1.41421][0.279895,0.564445,0][-2.76874,-47.5683,10.7453][-1.43685e-007,-0.707107,-0.707106][0.279895,0.555664,0][1.92451,-47.5683,10.7453][-2.8737e-007,-1.41421,-1.41421][0.296819,0.555664,0][1.92451,-47.5683,10.7453][-2.8737e-007,-1.41421,-1.41421][0.296819,0.555664,0][1.92451,-50.0032,13.1802][-1.43685e-007,-0.707107,-0.707106][0.296819,0.564445,0][-2.76874,-50.0032,13.1802][-2.8737e-007,-1.41421,-1.41421][0.279895,0.564445,0][-2.76874,-49.6677,13.5156][2.8737e-007,1.41421,1.41421][0.84666,0.478224,0][1.92451,-49.6677,13.5156][1.43685e-007,0.707107,0.707107][0.856365,0.478224,0][1.92451,-47.2329,11.0808][2.8737e-007,1.41421,1.41421][0.856365,0.483259,0][1.92451,-47.2329,11.0808][2.8737e-007,1.41421,1.41421][0.856365,0.483259,0][-2.76874,-47.2329,11.0808][1.43685e-007,0.707107,0.707107][0.84666,0.483259,0][-2.76874,-49.6677,13.5156][2.8737e-007,1.41421,1.41421][0.84666,0.478224,0][-2.76874,-50.0032,13.1802][-2.8737e-007,-1.41421,-1.41421][0.279895,0.564445,0][1.92451,-50.0032,13.1802][-1.43685e-007,-0.707107,-0.707106][0.296819,0.564445,0][1.92451,-49.6677,13.5156][1.43685e-007,0.707107,0.707107][0.296819,0.565654,0][1.92451,-49.6677,13.5156][1.43685e-007,0.707107,0.707107][0.296819,0.565654,0][-2.76874,-49.6677,13.5156][2.8737e-007,1.41421,1.41421][0.279895,0.565654,0][-2.76874,-50.0032,13.1802][-2.8737e-007,-1.41421,-1.41421][0.279895,0.564445,0][1.92451,-50.0032,13.1802][-1.43685e-007,-0.707107,-0.707106][0.0181114,0.46196,0][1.92451,-47.5683,10.7453][-2.8737e-007,-1.41421,-1.41421][0.0183548,0.449545,0][1.92451,-47.2329,11.0808][2.8737e-007,1.41421,1.41421][0.0200653,0.449578,0][1.92451,-47.2329,11.0808][2.8737e-007,1.41421,1.41421][0.0200653,0.449578,0][1.92451,-49.6677,13.5156][1.43685e-007,0.707107,0.707107][0.0198218,0.461993,0][1.92451,-50.0032,13.1802][-1.43685e-007,-0.707107,-0.707106][0.0181114,0.46196,0][1.92451,-47.5683,10.7453][-2.8737e-007,-1.41421,-1.41421][0.856365,0.483953,0][-2.76874,-47.5683,10.7453][-1.43685e-007,-0.707107,-0.707106][0.84666,0.483953,0][-2.76874,-47.2329,11.0808][1.43685e-007,0.707107,0.707107][0.84666,0.483259,0][-2.76874,-47.2329,11.0808][1.43685e-007,0.707107,0.707107][0.84666,0.483259,0][1.92451,-47.2329,11.0808][2.8737e-007,1.41421,1.41421][0.856365,0.483259,0][1.92451,-47.5683,10.7453][-2.8737e-007,-1.41421,-1.41421][0.856365,0.483953,0][-2.76874,-47.5683,10.7453][-1.43685e-007,-0.707107,-0.707106][0.154241,0.574375,0][-2.76874,-50.0032,13.1802][-2.8737e-007,-1.41421,-1.41421][0.153998,0.58679,0][-2.76874,-49.6677,13.5156][2.8737e-007,1.41421,1.41421][0.152287,0.586757,0][-2.76874,-49.6677,13.5156][2.8737e-007,1.41421,1.41421][0.152287,0.586757,0][-2.76874,-47.2329,11.0808][1.43685e-007,0.707107,0.707107][0.152531,0.574342,0][-2.76874,-47.5683,10.7453][-1.43685e-007,-0.707107,-0.707106][0.154241,0.574375,0][11.4478,-57.9905,21.179][2.95442,0.122786,-0.12279][0.892267,0.629352,0][10.7241,-55.0884,18.2769][2.71686,0.829894,-0.829895][0.88365,0.629249,0][10.7241,-54.7548,18.6105][2.83564,0.59913,-0.599129][0.883661,0.628274,0][10.7241,-54.7548,18.6105][2.83564,0.59913,-0.599129][0.883661,0.628274,0][11.4478,-57.6569,21.5126][2.95442,-0.12279,0.122786][0.892279,0.628377,0][11.4478,-57.9905,21.179][2.95442,0.122786,-0.12279][0.892267,0.629352,0][10.7241,-55.0884,18.2769][2.71686,0.829894,-0.829895][0.88365,0.629249,0][8.64034,-52.5363,15.7248][2.1516,1.4369,-1.43691][0.875552,0.629153,0][8.64034,-52.2027,16.0584][2.37484,1.24878,-1.24879][0.875563,0.628177,0][8.64034,-52.2027,16.0584][2.37484,1.24878,-1.24879][0.875563,0.628177,0][10.7241,-54.7548,18.6105][2.83564,0.59913,-0.599129][0.883661,0.628274,0][10.7241,-55.0884,18.2769][2.71686,0.829894,-0.829895][0.88365,0.629249,0][8.64034,-52.5363,15.7248][2.1516,1.4369,-1.43691][0.875552,0.629153,0][5.44781,-50.6421,13.8306][1.32683,1.8706,-1.8706][0.86895,0.629074,0][5.44781,-50.3085,14.1642][1.6276,1.74782,-1.74781][0.868962,0.628098,0][5.44781,-50.3085,14.1642][1.6276,1.74782,-1.74781][0.868962,0.628098,0][8.64034,-52.2027,16.0584][2.37484,1.24878,-1.24879][0.875563,0.628177,0][8.64034,-52.5363,15.7248][2.1516,1.4369,-1.43691][0.875552,0.629153,0][5.44781,-50.6421,13.8306][1.32683,1.8706,-1.8706][0.0556087,0.506025,0][1.53159,-49.6342,12.8227][0.342019,2.07866,-2.07869][0.0552596,0.521049,0][1.53159,-49.3006,13.1563][0.68404,2.03603,-2.03604][0.0535588,0.52101,0][1.53159,-49.3006,13.1563][0.68404,2.03603,-2.03604][0.0535588,0.52101,0][5.44781,-50.3085,14.1642][1.6276,1.74782,-1.74781][0.0539079,0.505986,0][5.44781,-50.6421,13.8306][1.32683,1.8706,-1.8706][0.0556087,0.506025,0][1.53159,-49.6342,12.8227][0.342019,2.07866,-2.07869][0.0457582,0.915955,0][-2.63597,-49.6342,12.8227][-0.68404,2.03603,-2.03604][0.0607865,0.915955,0][-2.63597,-49.3006,13.1563][-0.342021,2.07866,-2.07869][0.0607865,0.917157,0][-2.63597,-49.3006,13.1563][-0.342021,2.07866,-2.07869][0.0607865,0.917157,0][1.53159,-49.3006,13.1563][0.68404,2.03603,-2.03604][0.0457582,0.917157,0][1.53159,-49.6342,12.8227][0.342019,2.07866,-2.07869][0.0457582,0.915955,0][-2.63597,-49.6342,12.8227][-0.68404,2.03603,-2.03604][0.0549316,0.535168,0][-6.55219,-50.6421,13.8306][-1.62759,1.74781,-1.74781][0.0546641,0.546677,0][-6.55219,-50.3085,14.1642][-1.32683,1.8706,-1.8706][0.0529633,0.546637,0][-6.55219,-50.3085,14.1642][-1.32683,1.8706,-1.8706][0.0529633,0.546637,0][-2.63597,-49.3006,13.1563][-0.342021,2.07866,-2.07869][0.0532308,0.535128,0][-2.63597,-49.6342,12.8227][-0.68404,2.03603,-2.03604][0.0549316,0.535168,0][-6.55219,-50.6421,13.8306][-1.62759,1.74781,-1.74781][0.945943,0.628098,0][-9.74472,-52.5363,15.7248][-2.37484,1.24878,-1.24879][0.954561,0.628132,0][-9.74472,-52.2027,16.0584][-2.1516,1.4369,-1.43691][0.954557,0.629108,0][-9.74472,-52.2027,16.0584][-2.1516,1.4369,-1.43691][0.954557,0.629108,0][-6.55219,-50.3085,14.1642][-1.32683,1.8706,-1.8706][0.945939,0.629074,0][-6.55219,-50.6421,13.8306][-1.62759,1.74781,-1.74781][0.945943,0.628098,0][-9.74472,-52.5363,15.7248][-2.37484,1.24878,-1.24879][0.954561,0.628132,0][-11.8285,-55.0884,18.2769][-2.83564,0.599131,-0.599127][0.96266,0.628165,0][-11.8285,-54.7548,18.6105][-2.71686,0.829893,-0.829896][0.962656,0.62914,0][-11.8285,-54.7548,18.6105][-2.71686,0.829893,-0.829896][0.962656,0.62914,0][-9.74472,-52.2027,16.0584][-2.1516,1.4369,-1.43691][0.954557,0.629108,0][-9.74472,-52.5363,15.7248][-2.37484,1.24878,-1.24879][0.954561,0.628132,0][-11.8285,-55.0884,18.2769][-2.83564,0.599131,-0.599127][0.96266,0.628165,0][-12.5522,-57.9905,21.179][-2.95442,-0.122783,0.122791][0.969261,0.628191,0][-12.5522,-57.6569,21.5126][-2.95442,0.122792,-0.122785][0.969258,0.629166,0][-12.5522,-57.6569,21.5126][-2.95442,0.122792,-0.122785][0.969258,0.629166,0][-11.8285,-54.7548,18.6105][-2.71686,0.829893,-0.829896][0.962656,0.62914,0][-11.8285,-55.0884,18.2769][-2.83564,0.599131,-0.599127][0.96266,0.628165,0][-12.5522,-57.9905,21.179][-2.95442,-0.122783,0.122791][0.105952,0.47685,0][-11.8285,-60.8927,24.0812][-2.71686,-0.829889,0.829901][0.0909289,0.47644,0][-11.8285,-60.5591,24.4148][-2.83564,-0.599122,0.599135][0.0909753,0.47474,0][-11.8285,-60.5591,24.4148][-2.83564,-0.599122,0.599135][0.0909753,0.47474,0][-12.5522,-57.6569,21.5126][-2.95442,0.122792,-0.122785][0.105998,0.475149,0][-12.5522,-57.9905,21.179][-2.95442,-0.122783,0.122791][0.105952,0.47685,0][-11.8285,-60.8927,24.0812][-2.71686,-0.829889,0.829901][0.0909289,0.47644,0][-9.74472,-63.4448,26.6333][-2.1516,-1.43689,1.43691][0.0768122,0.476055,0][-9.74472,-63.1112,26.9669][-2.37484,-1.24877,1.24879][0.0768586,0.474355,0][-9.74472,-63.1112,26.9669][-2.37484,-1.24877,1.24879][0.0768586,0.474355,0][-11.8285,-60.5591,24.4148][-2.83564,-0.599122,0.599135][0.0909753,0.47474,0][-11.8285,-60.8927,24.0812][-2.71686,-0.829889,0.829901][0.0909289,0.47644,0][-9.74472,-63.4448,26.6333][-2.1516,-1.43689,1.43691][0.0768122,0.476055,0][-6.55219,-65.339,28.5275][-1.32683,-1.87059,1.87061][0.0653041,0.475741,0][-6.55219,-65.0054,28.8611][-1.6276,-1.7478,1.74782][0.0653505,0.474041,0][-6.55219,-65.0054,28.8611][-1.6276,-1.7478,1.74782][0.0653505,0.474041,0][-9.74472,-63.1112,26.9669][-2.37484,-1.24877,1.24879][0.0768586,0.474355,0][-9.74472,-63.4448,26.6333][-2.1516,-1.43689,1.43691][0.0768122,0.476055,0][-6.55219,-65.339,28.5275][-1.32683,-1.87059,1.87061][0.0668482,0.311409,0][-2.63597,-66.3469,29.5354][-0.342021,-2.07866,2.07869][0.0818746,0.311649,0][-2.63597,-66.0133,29.869][-0.684042,-2.03602,2.03604][0.0818474,0.31335,0][-2.63597,-66.0133,29.869][-0.684042,-2.03602,2.03604][0.0818474,0.31335,0][-6.55219,-65.0054,28.8611][-1.6276,-1.7478,1.74782][0.066821,0.31311,0][-6.55219,-65.339,28.5275][-1.32683,-1.87059,1.87061][0.0668482,0.311409,0][-2.63597,-66.3469,29.5354][-0.342021,-2.07866,2.07869][0.0818746,0.311649,0][1.53158,-66.3469,29.5354][0.68404,-2.03602,2.03604][0.0959948,0.311875,0][1.53158,-66.0133,29.869][0.34202,-2.07866,2.07869][0.0959676,0.313576,0][1.53158,-66.0133,29.869][0.34202,-2.07866,2.07869][0.0959676,0.313576,0][-2.63597,-66.0133,29.869][-0.684042,-2.03602,2.03604][0.0818474,0.31335,0][-2.63597,-66.3469,29.5354][-0.342021,-2.07866,2.07869][0.0818746,0.311649,0][1.53158,-66.3469,29.5354][0.68404,-2.03602,2.03604][0.0959948,0.311875,0][5.44781,-65.339,28.5275][1.62759,-1.74782,1.74781][0.107506,0.312059,0][5.44781,-65.0054,28.8611][1.32683,-1.87059,1.87061][0.107478,0.31376,0][5.44781,-65.0054,28.8611][1.32683,-1.87059,1.87061][0.107478,0.31376,0][1.53158,-66.0133,29.869][0.34202,-2.07866,2.07869][0.0959676,0.313576,0][1.53158,-66.3469,29.5354][0.68404,-2.03602,2.03604][0.0959948,0.311875,0][5.44781,-65.339,28.5275][1.62759,-1.74782,1.74781][0.0178357,0.58673,0][8.64034,-63.4448,26.6333][2.37484,-1.2488,1.24877][0.0183651,0.571711,0][8.64034,-63.1112,26.9669][2.1516,-1.43692,1.43689][0.0200653,0.571771,0][8.64034,-63.1112,26.9669][2.1516,-1.43692,1.43689][0.0200653,0.571771,0][5.44781,-65.0054,28.8611][1.32683,-1.87059,1.87061][0.0195359,0.58679,0][5.44781,-65.339,28.5275][1.62759,-1.74782,1.74781][0.0178357,0.58673,0][8.64034,-63.4448,26.6333][2.37484,-1.2488,1.24877][0.906966,0.629528,0][10.7241,-60.8927,24.0812][2.83564,-0.599128,0.599132][0.900365,0.629449,0][10.7241,-60.5591,24.4148][2.71686,-0.829898,0.829894][0.900377,0.628474,0][10.7241,-60.5591,24.4148][2.71686,-0.829898,0.829894][0.900377,0.628474,0][8.64034,-63.1112,26.9669][2.1516,-1.43692,1.43689][0.906978,0.628552,0][8.64034,-63.4448,26.6333][2.37484,-1.2488,1.24877][0.906966,0.629528,0][10.7241,-60.8927,24.0812][2.83564,-0.599128,0.599132][0.900365,0.629449,0][11.4478,-57.9905,21.179][2.95442,0.122786,-0.12279][0.892267,0.629352,0][11.4478,-57.6569,21.5126][2.95442,-0.12279,0.122786][0.892279,0.628377,0][11.4478,-57.6569,21.5126][2.95442,-0.12279,0.122786][0.892279,0.628377,0][10.7241,-60.5591,24.4148][2.71686,-0.829898,0.829894][0.900377,0.628474,0][10.7241,-60.8927,24.0812][2.83564,-0.599128,0.599132][0.900365,0.629449,0][8.64034,-63.4448,26.6333][2.37484,-1.2488,1.24877][0.0201238,0.866153,0][5.44781,-65.339,28.5275][1.62759,-1.74782,1.74781][0.0316362,0.859322,0][1.53158,-66.3469,29.5354][0.68404,-2.03602,2.03604][0.0457582,0.855688,0][1.53158,-66.3469,29.5354][0.68404,-2.03602,2.03604][0.0457582,0.855688,0][-2.63597,-66.3469,29.5354][-0.342021,-2.07866,2.07869][0.0607865,0.855688,0][-6.55219,-65.339,28.5275][-1.32683,-1.87059,1.87061][0.0749085,0.859322,0][-6.55219,-65.339,28.5275][-1.32683,-1.87059,1.87061][0.0749085,0.859322,0][-9.74472,-63.4448,26.6333][-2.1516,-1.43689,1.43691][0.0864208,0.866153,0][-11.8285,-60.8927,24.0812][-2.71686,-0.829889,0.829901][0.093935,0.875356,0][1.53158,-66.3469,29.5354][0.68404,-2.03602,2.03604][0.0457582,0.855688,0][-6.55219,-65.339,28.5275][-1.32683,-1.87059,1.87061][0.0749085,0.859322,0][-11.8285,-60.8927,24.0812][-2.71686,-0.829889,0.829901][0.093935,0.875356,0][-11.8285,-60.8927,24.0812][-2.71686,-0.829889,0.829901][0.093935,0.875356,0][-12.5522,-57.9905,21.179][-2.95442,-0.122783,0.122791][0.0965446,0.885821,0][-11.8285,-55.0884,18.2769][-2.83564,0.599131,-0.599127][0.093935,0.896286,0][-11.8285,-55.0884,18.2769][-2.83564,0.599131,-0.599127][0.093935,0.896286,0][-9.74472,-52.5363,15.7248][-2.37484,1.24878,-1.24879][0.0864208,0.905489,0][-6.55219,-50.6421,13.8306][-1.62759,1.74781,-1.74781][0.0749085,0.91232,0][-11.8285,-60.8927,24.0812][-2.71686,-0.829889,0.829901][0.093935,0.875356,0][-11.8285,-55.0884,18.2769][-2.83564,0.599131,-0.599127][0.093935,0.896286,0][-6.55219,-50.6421,13.8306][-1.62759,1.74781,-1.74781][0.0749085,0.91232,0][-6.55219,-50.6421,13.8306][-1.62759,1.74781,-1.74781][0.0749085,0.91232,0][-2.63597,-49.6342,12.8227][-0.68404,2.03603,-2.03604][0.0607865,0.915955,0][1.53159,-49.6342,12.8227][0.342019,2.07866,-2.07869][0.0457582,0.915955,0][1.53159,-49.6342,12.8227][0.342019,2.07866,-2.07869][0.0457582,0.915955,0][5.44781,-50.6421,13.8306][1.32683,1.8706,-1.8706][0.0316362,0.91232,0][8.64034,-52.5363,15.7248][2.1516,1.4369,-1.43691][0.0201238,0.905489,0][-6.55219,-50.6421,13.8306][-1.62759,1.74781,-1.74781][0.0749085,0.91232,0][1.53159,-49.6342,12.8227][0.342019,2.07866,-2.07869][0.0457582,0.915955,0][8.64034,-52.5363,15.7248][2.1516,1.4369,-1.43691][0.0201238,0.905489,0][-11.8285,-60.8927,24.0812][-2.71686,-0.829889,0.829901][0.093935,0.875356,0][-6.55219,-50.6421,13.8306][-1.62759,1.74781,-1.74781][0.0749085,0.91232,0][8.64034,-52.5363,15.7248][2.1516,1.4369,-1.43691][0.0201238,0.905489,0][1.53158,-66.3469,29.5354][0.68404,-2.03602,2.03604][0.0457582,0.855688,0][-11.8285,-60.8927,24.0812][-2.71686,-0.829889,0.829901][0.093935,0.875356,0][8.64034,-52.5363,15.7248][2.1516,1.4369,-1.43691][0.0201238,0.905489,0][8.64034,-52.5363,15.7248][2.1516,1.4369,-1.43691][0.0201238,0.905489,0][10.7241,-55.0884,18.2769][2.71686,0.829894,-0.829895][0.0126096,0.896286,0][11.4478,-57.9905,21.179][2.95442,0.122786,-0.12279][0.01,0.885821,0][1.53158,-66.3469,29.5354][0.68404,-2.03602,2.03604][0.0457582,0.855688,0][8.64034,-52.5363,15.7248][2.1516,1.4369,-1.43691][0.0201238,0.905489,0][11.4478,-57.9905,21.179][2.95442,0.122786,-0.12279][0.01,0.885821,0][8.64034,-63.4448,26.6333][2.37484,-1.2488,1.24877][0.0201238,0.866153,0][1.53158,-66.3469,29.5354][0.68404,-2.03602,2.03604][0.0457582,0.855688,0][11.4478,-57.9905,21.179][2.95442,0.122786,-0.12279][0.01,0.885821,0][10.7241,-60.8927,24.0812][2.83564,-0.599128,0.599132][0.0126096,0.875356,0][8.64034,-63.4448,26.6333][2.37484,-1.2488,1.24877][0.0201238,0.866153,0][11.4478,-57.9905,21.179][2.95442,0.122786,-0.12279][0.01,0.885821,0][10.7241,-54.7548,18.6105][2.83564,0.59913,-0.599129][0.257731,0.613079,0][8.64034,-52.2027,16.0584][2.37484,1.24878,-1.24879][0.250217,0.626094,0][5.44781,-50.3085,14.1642][1.6276,1.74782,-1.74781][0.238704,0.635754,0][5.44781,-50.3085,14.1642][1.6276,1.74782,-1.74781][0.238704,0.635754,0][1.53159,-49.3006,13.1563][0.68404,2.03603,-2.03604][0.224582,0.640894,0][-2.63597,-49.3006,13.1563][-0.342021,2.07866,-2.07869][0.209554,0.640894,0][-2.63597,-49.3006,13.1563][-0.342021,2.07866,-2.07869][0.209554,0.640894,0][-6.55219,-50.3085,14.1642][-1.32683,1.8706,-1.8706][0.195432,0.635754,0][-9.74472,-52.2027,16.0584][-2.1516,1.4369,-1.43691][0.18392,0.626094,0][5.44781,-50.3085,14.1642][1.6276,1.74782,-1.74781][0.238704,0.635754,0][-2.63597,-49.3006,13.1563][-0.342021,2.07866,-2.07869][0.209554,0.640894,0][-9.74472,-52.2027,16.0584][-2.1516,1.4369,-1.43691][0.18392,0.626094,0][-9.74472,-52.2027,16.0584][-2.1516,1.4369,-1.43691][0.18392,0.626094,0][-11.8285,-54.7548,18.6105][-2.71686,0.829893,-0.829896][0.176405,0.613079,0][-12.5522,-57.6569,21.5126][-2.95442,0.122792,-0.122785][0.173796,0.598279,0][-12.5522,-57.6569,21.5126][-2.95442,0.122792,-0.122785][0.173796,0.598279,0][-11.8285,-60.5591,24.4148][-2.83564,-0.599122,0.599135][0.176405,0.583479,0][-9.74472,-63.1112,26.9669][-2.37484,-1.24877,1.24879][0.18392,0.570464,0][-9.74472,-52.2027,16.0584][-2.1516,1.4369,-1.43691][0.18392,0.626094,0][-12.5522,-57.6569,21.5126][-2.95442,0.122792,-0.122785][0.173796,0.598279,0][-9.74472,-63.1112,26.9669][-2.37484,-1.24877,1.24879][0.18392,0.570464,0][-9.74472,-63.1112,26.9669][-2.37484,-1.24877,1.24879][0.18392,0.570464,0][-6.55219,-65.0054,28.8611][-1.6276,-1.7478,1.74782][0.195432,0.560804,0][-2.63597,-66.0133,29.869][-0.684042,-2.03602,2.03604][0.209554,0.555664,0][-2.63597,-66.0133,29.869][-0.684042,-2.03602,2.03604][0.209554,0.555664,0][1.53158,-66.0133,29.869][0.34202,-2.07866,2.07869][0.224582,0.555664,0][5.44781,-65.0054,28.8611][1.32683,-1.87059,1.87061][0.238704,0.560804,0][-9.74472,-63.1112,26.9669][-2.37484,-1.24877,1.24879][0.18392,0.570464,0][-2.63597,-66.0133,29.869][-0.684042,-2.03602,2.03604][0.209554,0.555664,0][5.44781,-65.0054,28.8611][1.32683,-1.87059,1.87061][0.238704,0.560804,0][-9.74472,-52.2027,16.0584][-2.1516,1.4369,-1.43691][0.18392,0.626094,0][-9.74472,-63.1112,26.9669][-2.37484,-1.24877,1.24879][0.18392,0.570464,0][5.44781,-65.0054,28.8611][1.32683,-1.87059,1.87061][0.238704,0.560804,0][5.44781,-50.3085,14.1642][1.6276,1.74782,-1.74781][0.238704,0.635754,0][-9.74472,-52.2027,16.0584][-2.1516,1.4369,-1.43691][0.18392,0.626094,0][5.44781,-65.0054,28.8611][1.32683,-1.87059,1.87061][0.238704,0.560804,0][5.44781,-65.0054,28.8611][1.32683,-1.87059,1.87061][0.238704,0.560804,0][8.64034,-63.1112,26.9669][2.1516,-1.43692,1.43689][0.250217,0.570464,0][10.7241,-60.5591,24.4148][2.71686,-0.829898,0.829894][0.257731,0.583479,0][5.44781,-50.3085,14.1642][1.6276,1.74782,-1.74781][0.238704,0.635754,0][5.44781,-65.0054,28.8611][1.32683,-1.87059,1.87061][0.238704,0.560804,0][10.7241,-60.5591,24.4148][2.71686,-0.829898,0.829894][0.257731,0.583479,0][10.7241,-54.7548,18.6105][2.83564,0.59913,-0.599129][0.257731,0.613079,0][5.44781,-50.3085,14.1642][1.6276,1.74782,-1.74781][0.238704,0.635754,0][10.7241,-60.5591,24.4148][2.71686,-0.829898,0.829894][0.257731,0.583479,0][11.4478,-57.6569,21.5126][2.95442,-0.12279,0.122786][0.26034,0.598279,0][10.7241,-54.7548,18.6105][2.83564,0.59913,-0.599129][0.257731,0.613079,0][10.7241,-60.5591,24.4148][2.71686,-0.829898,0.829894][0.257731,0.583479,0][-53.8115,-17.3923,22.1308][0,-1.41421,-1.41421][0.582781,0.282288,0][-53.8115,3.82093,0.917605][0,-0.707107,-0.707107][0.01855,0.283039,0][-41.8115,3.82093,0.917605][0,-1.41421,-1.41421][0.0184883,0.0137894,0][-41.8115,3.82093,0.917605][0,-1.41421,-1.41421][0.0184883,0.0137894,0][-41.8115,-17.3923,22.1308][0,-0.707107,-0.707107][0.582768,0.0129886,0][-53.8115,-17.3923,22.1308][0,-1.41421,-1.41421][0.582781,0.282288,0][-53.8115,-17.2509,22.2722][0,1.41421,1.41421][0.583204,0.0132399,0][-41.8115,-17.2509,22.2722][0,0.707107,0.707107][0.583207,0.282533,0][-41.8115,3.96235,1.05903][0,1.41421,1.41421][0.0187362,0.283145,0][-41.8115,3.96235,1.05903][0,1.41421,1.41421][0.0187362,0.283145,0][-53.8115,3.96235,1.05903][0,0.707107,0.707107][0.0186289,0.0138709,0][-53.8115,-17.2509,22.2722][0,1.41421,1.41421][0.583204,0.0132399,0][-53.8115,-17.3923,22.1308][0,-1.41421,-1.41421][0.867988,0.967242,0][-41.8115,-17.3923,22.1308][0,-0.707107,-0.707107][0.892803,0.967242,0][-41.8115,-17.2509,22.2722][0,0.707107,0.707107][0.892803,0.967534,0][-41.8115,-17.2509,22.2722][0,0.707107,0.707107][0.892803,0.967534,0][-53.8115,-17.2509,22.2722][0,1.41421,1.41421][0.867988,0.967534,0][-53.8115,-17.3923,22.1308][0,-1.41421,-1.41421][0.867988,0.967242,0][-41.8115,-17.3923,22.1308][0,-0.707107,-0.707107][0.853028,0.922865,0][-41.8115,3.82093,0.917605][0,-1.41421,-1.41421][0.791003,0.921648,0][-41.8115,3.96235,1.05903][0,1.41421,1.41421][0.791011,0.921235,0][-41.8115,3.96235,1.05903][0,1.41421,1.41421][0.791011,0.921235,0][-41.8115,-17.2509,22.2722][0,0.707107,0.707107][0.853036,0.922451,0][-41.8115,-17.3923,22.1308][0,-0.707107,-0.707107][0.853028,0.922865,0][-41.8115,3.82093,0.917605][0,-1.41421,-1.41421][0.01872,0.283145,0][-53.8115,3.82093,0.917605][0,-0.707107,-0.707107][0.0186162,0.0138709,0][-53.8115,3.96235,1.05903][0,0.707107,0.707107][0.0186289,0.0138709,0][-53.8115,3.96235,1.05903][0,0.707107,0.707107][0.0186289,0.0138709,0][-41.8115,3.96235,1.05903][0,1.41421,1.41421][0.0187362,0.283145,0][-41.8115,3.82093,0.917605][0,-1.41421,-1.41421][0.01872,0.283145,0][-53.8115,3.82093,0.917605][0,-0.707107,-0.707107][0.930013,0.935708,0][-53.8115,-17.3923,22.1308][0,-1.41421,-1.41421][0.867988,0.934492,0][-53.8115,-17.2509,22.2722][0,1.41421,1.41421][0.867996,0.934079,0][-53.8115,-17.2509,22.2722][0,1.41421,1.41421][0.867996,0.934079,0][-53.8115,3.96235,1.05903][0,0.707107,0.707107][0.930022,0.935295,0][-53.8115,3.82093,0.917605][0,-0.707107,-0.707107][0.930013,0.935708,0][-40.9414,-17.3923,22.1308][-1.19416e-007,-1.41421,-1.41421][0.583708,0.282223,0][-40.9414,3.82093,0.917605][0,-0.707107,-0.707107][0.0179212,0.283011,0][-28.9414,3.82093,0.917605][-1.19416e-007,-1.41421,-1.41421][0.018012,0.0137673,0][-28.9414,3.82093,0.917605][-1.19416e-007,-1.41421,-1.41421][0.018012,0.0137673,0][-28.9414,-17.3923,22.1308][0,-0.707107,-0.707107][0.583719,0.0129219,0][-40.9414,-17.3923,22.1308][-1.19416e-007,-1.41421,-1.41421][0.583708,0.282223,0][-40.9414,-17.2509,22.2722][0,1.41421,1.41421][0.583005,0.0134906,0][-28.9414,-17.2509,22.2722][0,0.707107,0.707107][0.583013,0.282778,0][-28.9414,3.96235,1.05903][0,1.41421,1.41421][0.0186518,0.283253,0][-28.9414,3.96235,1.05903][0,1.41421,1.41421][0.0186518,0.283253,0][-40.9414,3.96235,1.05903][0,0.707107,0.707107][0.0185651,0.0139507,0][-40.9414,-17.2509,22.2722][0,1.41421,1.41421][0.583005,0.0134906,0][-40.9414,-17.3923,22.1308][-1.19416e-007,-1.41421,-1.41421][0.944973,0.934079,0][-28.9414,-17.3923,22.1308][0,-0.707107,-0.707107][0.969788,0.934079,0][-28.9414,-17.2509,22.2722][0,0.707107,0.707107][0.969788,0.934371,0][-28.9414,-17.2509,22.2722][0,0.707107,0.707107][0.969788,0.934371,0][-40.9414,-17.2509,22.2722][0,1.41421,1.41421][0.944973,0.934371,0][-40.9414,-17.3923,22.1308][-1.19416e-007,-1.41421,-1.41421][0.944973,0.934079,0][-28.9414,-17.3923,22.1308][0,-0.707107,-0.707107][0.281956,0.99,0][-28.9414,3.82093,0.917605][-1.19416e-007,-1.41421,-1.41421][0.173796,0.987879,0][-28.9414,3.96235,1.05903][0,1.41421,1.41421][0.17381,0.987158,0][-28.9414,3.96235,1.05903][0,1.41421,1.41421][0.17381,0.987158,0][-28.9414,-17.2509,22.2722][0,0.707107,0.707107][0.28197,0.989279,0][-28.9414,-17.3923,22.1308][0,-0.707107,-0.707107][0.281956,0.99,0][-28.9414,3.82093,0.917605][-1.19416e-007,-1.41421,-1.41421][0.0186347,0.283253,0][-40.9414,3.82093,0.917605][0,-0.707107,-0.707107][0.0185523,0.0139507,0][-40.9414,3.96235,1.05903][0,0.707107,0.707107][0.0185651,0.0139507,0][-40.9414,3.96235,1.05903][0,0.707107,0.707107][0.0185651,0.0139507,0][-28.9414,3.96235,1.05903][0,1.41421,1.41421][0.0186518,0.283253,0][-28.9414,3.82093,0.917605][-1.19416e-007,-1.41421,-1.41421][0.0186347,0.283253,0][-40.9414,3.82093,0.917605][0,-0.707107,-0.707107][0.853028,0.95229,0][-40.9414,-17.3923,22.1308][-1.19416e-007,-1.41421,-1.41421][0.791003,0.951074,0][-40.9414,-17.2509,22.2722][0,1.41421,1.41421][0.791011,0.95066,0][-40.9414,-17.2509,22.2722][0,1.41421,1.41421][0.791011,0.95066,0][-40.9414,3.96235,1.05903][0,0.707107,0.707107][0.853036,0.951876,0][-40.9414,3.82093,0.917605][0,-0.707107,-0.707107][0.853028,0.95229,0][-40.9414,5.98653,-1.248][-1.19416e-007,-1.41421,-1.41421][0.583662,0.282612,0][-40.9414,27.1997,-22.4612][0,-0.707107,-0.707107][0.0179013,0.28318,0][-28.9414,27.1997,-22.4612][-1.19416e-007,-1.41421,-1.41421][0.0179972,0.0138957,0][-28.9414,27.1997,-22.4612][-1.19416e-007,-1.41421,-1.41421][0.0179972,0.0138957,0][-28.9414,5.98653,-1.248][0,-0.707107,-0.707107][0.583672,0.0133201,0][-40.9414,5.98653,-1.248][-1.19416e-007,-1.41421,-1.41421][0.583662,0.282612,0][-40.9414,6.12795,-1.10657][1.19416e-007,1.41421,1.41421][0.582664,0.0137341,0][-28.9414,6.12795,-1.10657][0,0.707107,0.707107][0.58268,0.283016,0][-28.9414,27.3412,-22.3198][1.19416e-007,1.41421,1.41421][0.0174726,0.283356,0][-28.9414,27.3412,-22.3198][1.19416e-007,1.41421,1.41421][0.0174726,0.283356,0][-40.9414,27.3412,-22.3198][0,0.707107,0.707107][0.0176727,0.0140294,0][-40.9414,6.12795,-1.10657][1.19416e-007,1.41421,1.41421][0.582664,0.0137341,0][-40.9414,5.98653,-1.248][-1.19416e-007,-1.41421,-1.41421][0.863777,0.889977,0][-28.9414,5.98653,-1.248][0,-0.707107,-0.707107][0.888592,0.889977,0][-28.9414,6.12795,-1.10657][0,0.707107,0.707107][0.888592,0.890391,0][-28.9414,6.12795,-1.10657][0,0.707107,0.707107][0.888592,0.890391,0][-40.9414,6.12795,-1.10657][1.19416e-007,1.41421,1.41421][0.863777,0.890391,0][-40.9414,5.98653,-1.248][-1.19416e-007,-1.41421,-1.41421][0.863777,0.889977,0][-28.9414,5.98653,-1.248][0,-0.707107,-0.707107][0.953422,0.807502,0][-28.9414,27.1997,-22.4612][-1.19416e-007,-1.41421,-1.41421][0.891397,0.806285,0][-28.9414,27.3412,-22.3198][1.19416e-007,1.41421,1.41421][0.891405,0.805872,0][-28.9414,27.3412,-22.3198][1.19416e-007,1.41421,1.41421][0.891405,0.805872,0][-28.9414,6.12795,-1.10657][0,0.707107,0.707107][0.95343,0.807088,0][-28.9414,5.98653,-1.248][0,-0.707107,-0.707107][0.953422,0.807502,0][-28.9414,27.1997,-22.4612][-1.19416e-007,-1.41421,-1.41421][0.961048,0.904493,0][-40.9414,27.1997,-22.4612][0,-0.707107,-0.707107][0.985863,0.904493,0][-40.9414,27.3412,-22.3198][0,0.707107,0.707107][0.985863,0.904906,0][-40.9414,27.3412,-22.3198][0,0.707107,0.707107][0.985863,0.904906,0][-28.9414,27.3412,-22.3198][1.19416e-007,1.41421,1.41421][0.961048,0.904906,0][-28.9414,27.1997,-22.4612][-1.19416e-007,-1.41421,-1.41421][0.961048,0.904493,0][-40.9414,27.1997,-22.4612][0,-0.707107,-0.707107][0.930013,0.95229,0][-40.9414,5.98653,-1.248][-1.19416e-007,-1.41421,-1.41421][0.867988,0.951074,0][-40.9414,6.12795,-1.10657][1.19416e-007,1.41421,1.41421][0.867996,0.95066,0][-40.9414,6.12795,-1.10657][1.19416e-007,1.41421,1.41421][0.867996,0.95066,0][-40.9414,27.3412,-22.3198][0,0.707107,0.707107][0.930022,0.951876,0][-40.9414,27.1997,-22.4612][0,-0.707107,-0.707107][0.930013,0.95229,0][-53.8115,5.98653,-1.248][0,-1.41421,-1.41421][0.583127,0.282744,0][-53.8115,27.1997,-22.4612][0,-0.707107,-0.707107][0.0176677,0.283238,0][-41.8115,27.1997,-22.4612][0,-1.41421,-1.41421][0.0178203,0.0139398,0][-41.8115,27.1997,-22.4612][0,-1.41421,-1.41421][0.0178203,0.0139398,0][-41.8115,5.98653,-1.248][0,-0.707107,-0.707107][0.583121,0.0134549,0][-53.8115,5.98653,-1.248][0,-1.41421,-1.41421][0.583127,0.282744,0][-53.8115,6.12795,-1.10657][0,1.41421,1.41421][0.583672,0.0135066,0][-41.8115,6.12795,-1.10657][0,0.707107,0.707107][0.583662,0.282794,0][-41.8115,27.3412,-22.3198][0,1.41421,1.41421][0.0179013,0.28326,0][-41.8115,27.3412,-22.3198][0,1.41421,1.41421][0.0179013,0.28326,0][-53.8115,27.3412,-22.3198][0,0.707107,0.707107][0.0179972,0.0139572,0][-53.8115,6.12795,-1.10657][0,1.41421,1.41421][0.583672,0.0135066,0][-53.8115,5.98653,-1.248][0,-1.41421,-1.41421][0.86425,0.921235,0][-41.8115,5.98653,-1.248][0,-0.707107,-0.707107][0.889065,0.921235,0][-41.8115,6.12795,-1.10657][0,0.707107,0.707107][0.889065,0.921649,0][-41.8115,6.12795,-1.10657][0,0.707107,0.707107][0.889065,0.921649,0][-53.8115,6.12795,-1.10657][0,1.41421,1.41421][0.86425,0.921649,0][-53.8115,5.98653,-1.248][0,-1.41421,-1.41421][0.86425,0.921235,0][-41.8115,5.98653,-1.248][0,-0.707107,-0.707107][0.973782,0.660022,0][-41.8115,27.1997,-22.4612][0,-1.41421,-1.41421][0.911757,0.658806,0][-41.8115,27.3412,-22.3198][0,1.41421,1.41421][0.911765,0.658393,0][-41.8115,27.3412,-22.3198][0,1.41421,1.41421][0.911765,0.658393,0][-41.8115,6.12795,-1.10657][0,0.707107,0.707107][0.97379,0.659609,0][-41.8115,5.98653,-1.248][0,-0.707107,-0.707107][0.973782,0.660022,0][-41.8115,27.1997,-22.4612][0,-1.41421,-1.41421][0.804023,0.629026,0][-53.8115,27.1997,-22.4612][0,-0.707107,-0.707107][0.828838,0.629026,0][-53.8115,27.3412,-22.3198][0,0.707107,0.707107][0.828838,0.62944,0][-53.8115,27.3412,-22.3198][0,0.707107,0.707107][0.828838,0.62944,0][-41.8115,27.3412,-22.3198][0,1.41421,1.41421][0.804023,0.62944,0][-41.8115,27.1997,-22.4612][0,-1.41421,-1.41421][0.804023,0.629026,0][-53.8115,27.1997,-22.4612][0,-0.707107,-0.707107][0.953422,0.820345,0][-53.8115,5.98653,-1.248][0,-1.41421,-1.41421][0.891397,0.819129,0][-53.8115,6.12795,-1.10657][0,1.41421,1.41421][0.891405,0.818715,0][-53.8115,6.12795,-1.10657][0,1.41421,1.41421][0.891405,0.818715,0][-53.8115,27.3412,-22.3198][0,0.707107,0.707107][0.95343,0.819932,0][-53.8115,27.1997,-22.4612][0,-0.707107,-0.707107][0.953422,0.820345,0][28.941,-17.3923,22.1308][0,-1.41421,-1.41421][0.58284,0.283049,0][28.941,3.82093,0.917605][0,-0.707107,-0.707107][0.0185763,0.283371,0][40.941,3.82093,0.917605][0,-1.41421,-1.41421][0.0185084,0.0140405,0][40.941,3.82093,0.917605][0,-1.41421,-1.41421][0.0185084,0.0140405,0][40.941,-17.3923,22.1308][0,-0.707107,-0.707107][0.582829,0.0137693,0][28.941,-17.3923,22.1308][0,-1.41421,-1.41421][0.58284,0.283049,0][28.941,-17.2509,22.2722][0,1.41421,1.41421][0.582919,0.0133712,0][40.941,-17.2509,22.2722][0,0.707107,0.707107][0.582928,0.282662,0][40.941,3.96235,1.05903][0,1.41421,1.41421][0.0186149,0.283202,0][40.941,3.96235,1.05903][0,1.41421,1.41421][0.0186149,0.283202,0][28.941,3.96235,1.05903][0,0.707107,0.707107][0.0185375,0.0139122,0][28.941,-17.2509,22.2722][0,1.41421,1.41421][0.582919,0.0133712,0][28.941,-17.3923,22.1308][0,-1.41421,-1.41421][0.944973,0.95066,0][40.941,-17.3923,22.1308][0,-0.707107,-0.707107][0.969788,0.95066,0][40.941,-17.2509,22.2722][0,0.707107,0.707107][0.969788,0.950953,0][40.941,-17.2509,22.2722][0,0.707107,0.707107][0.969788,0.950953,0][28.941,-17.2509,22.2722][0,1.41421,1.41421][0.944973,0.950953,0][28.941,-17.3923,22.1308][0,-1.41421,-1.41421][0.944973,0.95066,0][40.941,-17.3923,22.1308][0,-0.707107,-0.707107][0.978394,0.732104,0][40.941,3.82093,0.917605][0,-1.41421,-1.41421][0.916369,0.730888,0][40.941,3.96235,1.05903][0,1.41421,1.41421][0.916377,0.730474,0][40.941,3.96235,1.05903][0,1.41421,1.41421][0.916377,0.730474,0][40.941,-17.2509,22.2722][0,0.707107,0.707107][0.978402,0.73169,0][40.941,-17.3923,22.1308][0,-0.707107,-0.707107][0.978394,0.732104,0][40.941,3.82093,0.917605][0,-1.41421,-1.41421][0.0185978,0.283202,0][28.941,3.82093,0.917605][0,-0.707107,-0.707107][0.0185246,0.0139122,0][28.941,3.96235,1.05903][0,0.707107,0.707107][0.0185375,0.0139122,0][28.941,3.96235,1.05903][0,0.707107,0.707107][0.0185375,0.0139122,0][40.941,3.96235,1.05903][0,1.41421,1.41421][0.0186149,0.283202,0][40.941,3.82093,0.917605][0,-1.41421,-1.41421][0.0185978,0.283202,0][28.941,3.82093,0.917605][0,-0.707107,-0.707107][0.772151,0.564224,0][28.941,-17.3923,22.1308][0,-1.41421,-1.41421][0.710126,0.563008,0][28.941,-17.2509,22.2722][0,1.41421,1.41421][0.710134,0.562595,0][28.941,-17.2509,22.2722][0,1.41421,1.41421][0.710134,0.562595,0][28.941,3.96235,1.05903][0,0.707107,0.707107][0.77216,0.563811,0][28.941,3.82093,0.917605][0,-0.707107,-0.707107][0.772151,0.564224,0][41.811,-17.3923,22.1308][0,-1.41421,-1.41421][0.583279,0.28261,0][41.811,3.82093,0.917605][0,-0.707107,-0.707107][0.0187675,0.28318,0][53.811,3.82093,0.917605][0,-1.41421,-1.41421][0.0186523,0.0138957,0][53.811,3.82093,0.917605][0,-1.41421,-1.41421][0.0186523,0.0138957,0][53.811,-17.3923,22.1308][0,-0.707107,-0.707107][0.583278,0.0133186,0][41.811,-17.3923,22.1308][0,-1.41421,-1.41421][0.583279,0.28261,0][41.811,-17.2509,22.2722][0,1.41421,1.41421][0.584005,0.0135351,0][53.811,-17.2509,22.2722][0,0.707107,0.707107][0.583988,0.282822,0][53.811,3.96235,1.05903][0,1.41421,1.41421][0.0190769,0.283272,0][53.811,3.96235,1.05903][0,1.41421,1.41421][0.0190769,0.283272,0][41.811,3.96235,1.05903][0,0.707107,0.707107][0.0188866,0.0139656,0][41.811,-17.2509,22.2722][0,1.41421,1.41421][0.584005,0.0135351,0][41.811,-17.3923,22.1308][0,-1.41421,-1.41421][0.968382,0.818715,0][53.811,-17.3923,22.1308][0,-0.707107,-0.707107][0.993197,0.818715,0][53.811,-17.2509,22.2722][0,0.707107,0.707107][0.993197,0.819008,0][53.811,-17.2509,22.2722][0,0.707107,0.707107][0.993197,0.819008,0][41.811,-17.2509,22.2722][0,1.41421,1.41421][0.968382,0.819008,0][41.811,-17.3923,22.1308][0,-1.41421,-1.41421][0.968382,0.818715,0][53.811,-17.3923,22.1308][0,-0.707107,-0.707107][0.925803,0.878763,0][53.811,3.82093,0.917605][0,-1.41421,-1.41421][0.863777,0.877547,0][53.811,3.96235,1.05903][0,1.41421,1.41421][0.863786,0.877134,0][53.811,3.96235,1.05903][0,1.41421,1.41421][0.863786,0.877134,0][53.811,-17.2509,22.2722][0,0.707107,0.707107][0.925811,0.87835,0][53.811,-17.3923,22.1308][0,-0.707107,-0.707107][0.925803,0.878763,0][53.811,3.82093,0.917605][0,-1.41421,-1.41421][0.0190599,0.283272,0][41.811,3.82093,0.917605][0,-0.707107,-0.707107][0.0188739,0.0139656,0][41.811,3.96235,1.05903][0,0.707107,0.707107][0.0188866,0.0139656,0][41.811,3.96235,1.05903][0,0.707107,0.707107][0.0188866,0.0139656,0][53.811,3.96235,1.05903][0,1.41421,1.41421][0.0190769,0.283272,0][53.811,3.82093,0.917605][0,-1.41421,-1.41421][0.0190599,0.283272,0][41.811,3.82093,0.917605][0,-0.707107,-0.707107][0.853028,0.968872,0][41.811,-17.3923,22.1308][0,-1.41421,-1.41421][0.791003,0.967655,0][41.811,-17.2509,22.2722][0,1.41421,1.41421][0.791011,0.967242,0][41.811,-17.2509,22.2722][0,1.41421,1.41421][0.791011,0.967242,0][41.811,3.96235,1.05903][0,0.707107,0.707107][0.853036,0.968458,0][41.811,3.82093,0.917605][0,-0.707107,-0.707107][0.853028,0.968872,0][41.811,5.98653,-1.248][-1.19416e-007,-1.41421,-1.41421][0.583127,0.282407,0][41.811,27.1997,-22.4612][0,-0.707107,-0.707107][0.0176677,0.28309,0][53.811,27.1997,-22.4612][-1.19416e-007,-1.41421,-1.41421][0.0178203,0.0138284,0][53.811,27.1997,-22.4612][-1.19416e-007,-1.41421,-1.41421][0.0178203,0.0138284,0][53.811,5.98653,-1.248][0,-0.707107,-0.707107][0.583121,0.0131093,0][41.811,5.98653,-1.248][-1.19416e-007,-1.41421,-1.41421][0.583127,0.282407,0][41.811,6.12795,-1.10657][1.19416e-007,1.41421,1.41421][0.583541,0.0134162,0][53.811,6.12795,-1.10657][0,0.707107,0.707107][0.583535,0.282705,0][53.811,27.3412,-22.3198][1.19416e-007,1.41421,1.41421][0.0178452,0.283221,0][53.811,27.3412,-22.3198][1.19416e-007,1.41421,1.41421][0.0178452,0.283221,0][41.811,27.3412,-22.3198][0,0.707107,0.707107][0.0179553,0.0139271,0][41.811,6.12795,-1.10657][1.19416e-007,1.41421,1.41421][0.583541,0.0134162,0][41.811,5.98653,-1.248][-1.19416e-007,-1.41421,-1.41421][0.937025,0.877134,0][53.811,5.98653,-1.248][0,-0.707107,-0.707107][0.96184,0.877134,0][53.811,6.12795,-1.10657][0,0.707107,0.707107][0.96184,0.877547,0][53.811,6.12795,-1.10657][0,0.707107,0.707107][0.96184,0.877547,0][41.811,6.12795,-1.10657][1.19416e-007,1.41421,1.41421][0.937025,0.877547,0][41.811,5.98653,-1.248][-1.19416e-007,-1.41421,-1.41421][0.937025,0.877134,0][53.811,5.98653,-1.248][0,-0.707107,-0.707107][0.973782,0.757038,0][53.811,27.1997,-22.4612][-1.19416e-007,-1.41421,-1.41421][0.911757,0.755822,0][53.811,27.3412,-22.3198][1.19416e-007,1.41421,1.41421][0.911765,0.755408,0][53.811,27.3412,-22.3198][1.19416e-007,1.41421,1.41421][0.911765,0.755408,0][53.811,6.12795,-1.10657][0,0.707107,0.707107][0.97379,0.756624,0][53.811,5.98653,-1.248][0,-0.707107,-0.707107][0.973782,0.757038,0][53.811,27.1997,-22.4612][-1.19416e-007,-1.41421,-1.41421][0.964171,0.770241,0][41.811,27.1997,-22.4612][0,-0.707107,-0.707107][0.988986,0.770241,0][41.811,27.3412,-22.3198][0,0.707107,0.707107][0.988986,0.770654,0][41.811,27.3412,-22.3198][0,0.707107,0.707107][0.988986,0.770654,0][53.811,27.3412,-22.3198][1.19416e-007,1.41421,1.41421][0.964171,0.770654,0][53.811,27.1997,-22.4612][-1.19416e-007,-1.41421,-1.41421][0.964171,0.770241,0][41.811,27.1997,-22.4612][0,-0.707107,-0.707107][0.853028,0.985453,0][41.811,5.98653,-1.248][-1.19416e-007,-1.41421,-1.41421][0.791003,0.984237,0][41.811,6.12795,-1.10657][1.19416e-007,1.41421,1.41421][0.791011,0.983823,0][41.811,6.12795,-1.10657][1.19416e-007,1.41421,1.41421][0.791011,0.983823,0][41.811,27.3412,-22.3198][0,0.707107,0.707107][0.853036,0.98504,0][41.811,27.1997,-22.4612][0,-0.707107,-0.707107][0.853028,0.985453,0][28.941,5.98653,-1.248][0,-1.41421,-1.41421][0.583113,0.282402,0][28.941,27.1997,-22.4612][0,-0.707107,-0.707107][0.0176613,0.283089,0][40.941,27.1997,-22.4612][0,-1.41421,-1.41421][0.0178161,0.0138273,0][40.941,27.1997,-22.4612][0,-1.41421,-1.41421][0.0178161,0.0138273,0][40.941,5.98653,-1.248][0,-0.707107,-0.707107][0.583108,0.0131055,0][28.941,5.98653,-1.248][0,-1.41421,-1.41421][0.583113,0.282402,0][28.941,6.12795,-1.10657][0,1.41421,1.41421][0.583475,0.0137341,0][40.941,6.12795,-1.10657][0,0.707107,0.707107][0.583472,0.283015,0][40.941,27.3412,-22.3198][0,1.41421,1.41421][0.0178175,0.283356,0][40.941,27.3412,-22.3198][0,1.41421,1.41421][0.0178175,0.283356,0][28.941,27.3412,-22.3198][0,0.707107,0.707107][0.0179341,0.0140294,0][28.941,6.12795,-1.10657][0,1.41421,1.41421][0.583475,0.0137341,0][28.941,5.98653,-1.248][0,-1.41421,-1.41421][0.964644,0.805872,0][40.941,5.98653,-1.248][0,-0.707107,-0.707107][0.989459,0.805872,0][40.941,6.12795,-1.10657][0,0.707107,0.707107][0.989459,0.806285,0][40.941,6.12795,-1.10657][0,0.707107,0.707107][0.989459,0.806285,0][28.941,6.12795,-1.10657][0,1.41421,1.41421][0.964644,0.806285,0][28.941,5.98653,-1.248][0,-1.41421,-1.41421][0.964644,0.805872,0][40.941,5.98653,-1.248][0,-0.707107,-0.707107][0.973782,0.642541,0][40.941,27.1997,-22.4612][0,-1.41421,-1.41421][0.911757,0.641324,0][40.941,27.3412,-22.3198][0,1.41421,1.41421][0.911765,0.640911,0][40.941,27.3412,-22.3198][0,1.41421,1.41421][0.911765,0.640911,0][40.941,6.12795,-1.10657][0,0.707107,0.707107][0.97379,0.642127,0][40.941,5.98653,-1.248][0,-0.707107,-0.707107][0.973782,0.642541,0][40.941,27.1997,-22.4612][0,-1.41421,-1.41421][0.124089,0.344771,0][28.941,27.1997,-22.4612][0,-0.707107,-0.707107][0.124089,0.388044,0][28.941,27.3412,-22.3198][0,0.707107,0.707107][0.123368,0.388044,0][28.941,27.3412,-22.3198][0,0.707107,0.707107][0.123368,0.388044,0][40.941,27.3412,-22.3198][0,1.41421,1.41421][0.123368,0.344771,0][40.941,27.1997,-22.4612][0,-1.41421,-1.41421][0.124089,0.344771,0][28.941,27.1997,-22.4612][0,-0.707107,-0.707107][0.853028,0.935708,0][28.941,5.98653,-1.248][0,-1.41421,-1.41421][0.791003,0.934492,0][28.941,6.12795,-1.10657][0,1.41421,1.41421][0.791011,0.934079,0][28.941,6.12795,-1.10657][0,1.41421,1.41421][0.791011,0.934079,0][28.941,27.3412,-22.3198][0,0.707107,0.707107][0.853036,0.935295,0][28.941,27.1997,-22.4612][0,-0.707107,-0.707107][0.853028,0.935708,0][0.5,62.7291,10.4738][0,3,0][0.971175,0.548046,0][6.5,62.7291,10.4738][0,1,0][0.971175,0.560453,0][10.5,62.7291,6.47378][0,2,0][0.962903,0.568725,0][0.5,62.7291,10.4738][0,3,0][0.971175,0.548046,0][10.5,62.7291,6.47378][0,2,0][0.962903,0.568725,0][10.5,62.7291,0.473779][0,2,0][0.950496,0.568725,0][0.5,62.7291,10.4738][0,3,0][0.971175,0.548046,0][10.5,62.7291,0.473779][0,2,0][0.950496,0.568725,0][0.5,62.7291,0.47378][0,1,0][0.950496,0.548046,0][0.499999,34.7672,10.4738][0,-2,0][0.706388,0.562595,0][0.499998,34.7672,0.47378][0,-1,0][0.706388,0.583274,0][10.5,34.7672,0.473779][0,-3,0][0.685709,0.583274,0][10.5,34.7672,0.473779][0,-3,0][0.685709,0.583274,0][10.5,34.7672,6.47378][0,-1,0][0.685709,0.570866,0][6.5,34.7672,10.4738][0,-2,0][0.693981,0.562595,0][0.499999,34.7672,10.4738][0,-2,0][0.706388,0.562595,0][10.5,34.7672,0.473779][0,-3,0][0.685709,0.583274,0][6.5,34.7672,10.4738][0,-2,0][0.693981,0.562595,0][0.5,62.7291,10.4738][0,3,0][0.827051,0.696554,0][0.5,62.7291,0.47378][0,1,0][0.827051,0.675875,0][0.499998,34.7672,0.47378][0,-1,0][0.884874,0.675875,0][0.499998,34.7672,0.47378][0,-1,0][0.884874,0.675875,0][0.499999,34.7672,10.4738][0,-2,0][0.884874,0.696554,0][0.5,62.7291,10.4738][0,3,0][0.827051,0.696554,0][0.5,62.7291,0.47378][0,1,0][0.899826,0.696554,0][10.5,62.7291,0.473779][0,2,0][0.899826,0.675875,0][10.5,34.7672,0.473779][0,-3,0][0.957648,0.675875,0][10.5,34.7672,0.473779][0,-3,0][0.957648,0.675875,0][0.499998,34.7672,0.47378][0,-1,0][0.957648,0.696554,0][0.5,62.7291,0.47378][0,1,0][0.899826,0.696554,0][10.5,62.7291,0.473779][0,2,0][0.673073,0.79092,0][10.5,62.7291,6.47378][0,2,0][0.673073,0.778512,0][10.5,34.7672,6.47378][0,-1,0][0.730895,0.778512,0][10.5,34.7672,6.47378][0,-1,0][0.730895,0.778512,0][10.5,34.7672,0.473779][0,-3,0][0.730895,0.79092,0][10.5,62.7291,0.473779][0,2,0][0.673073,0.79092,0][6.5,62.7291,10.4738][0,1,0][0.818622,0.818279,0][0.5,62.7291,10.4738][0,3,0][0.818622,0.805872,0][0.499999,34.7672,10.4738][0,-2,0][0.876445,0.805872,0][0.499999,34.7672,10.4738][0,-2,0][0.876445,0.805872,0][6.5,34.7672,10.4738][0,-2,0][0.876445,0.818279,0][6.5,62.7291,10.4738][0,1,0][0.818622,0.818279,0][10.5,62.7291,6.47378][0,2,0][0.673073,0.778512,0][6.5,62.7291,10.4738][0,1,0][0.673073,0.770241,0][6.5,34.7672,10.4738][0,-2,0][0.730895,0.770241,0][6.5,34.7672,10.4738][0,-2,0][0.730895,0.770241,0][10.5,34.7672,6.47378][0,-1,0][0.730895,0.778512,0][10.5,62.7291,6.47378][0,2,0][0.673073,0.778512,0][-0.500001,62.7291,-10.5262][0,3,0][0.953982,0.481693,0][-6.5,62.7291,-10.5262][0,1,0][0.953982,0.469286,0][-10.5,62.7291,-6.52622][0,2,0][0.962254,0.461014,0][-0.500001,62.7291,-10.5262][0,3,0][0.953982,0.481693,0][-10.5,62.7291,-6.52622][0,2,0][0.962254,0.461014,0][-10.5,62.7291,-0.526219][0,2,0][0.974661,0.461014,0][-0.500001,62.7291,-10.5262][0,3,0][0.953982,0.481693,0][-10.5,62.7291,-0.526219][0,2,0][0.974661,0.461014,0][-0.5,62.7291,-0.52622][0,1,0][0.974661,0.481693,0][-0.5,34.7672,-10.5262][-3.8147e-007,-2,-3.8147e-007][0.115044,0.386558,0][-0.499999,34.7672,-0.526221][-3.8147e-007,-1,-3.8147e-007][0.0789834,0.386558,0][-10.5,34.7672,-0.52622][-3.8147e-007,-3,-3.8147e-007][0.0789834,0.350498,0][-10.5,34.7672,-0.52622][-3.8147e-007,-3,-3.8147e-007][0.0789834,0.350498,0][-10.5,34.7672,-6.52622][0,-1,0][0.10062,0.350498,0][-6.5,34.7672,-10.5262][0,-2,0][0.115044,0.364922,0][-0.5,34.7672,-10.5262][-3.8147e-007,-2,-3.8147e-007][0.115044,0.386558,0][-10.5,34.7672,-0.52622][-3.8147e-007,-3,-3.8147e-007][0.0789834,0.350498,0][-6.5,34.7672,-10.5262][0,-2,0][0.115044,0.364922,0][-0.500001,62.7291,-10.5262][0,3,0][0.173796,0.898952,0][-0.5,62.7291,-0.52622][0,1,0][0.173796,0.862891,0][-0.499999,34.7672,-0.526221][-3.8147e-007,-1,-3.8147e-007][0.274627,0.862891,0][-0.499999,34.7672,-0.526221][-3.8147e-007,-1,-3.8147e-007][0.274627,0.862891,0][-0.5,34.7672,-10.5262][-3.8147e-007,-2,-3.8147e-007][0.274627,0.898952,0][-0.500001,62.7291,-10.5262][0,3,0][0.173796,0.898952,0][-0.5,62.7291,-0.52622][0,1,0][0.173796,0.836818,0][-10.5,62.7291,-0.526219][0,2,0][0.173796,0.800758,0][-10.5,34.7672,-0.52622][-3.8147e-007,-3,-3.8147e-007][0.274627,0.800758,0][-10.5,34.7672,-0.52622][-3.8147e-007,-3,-3.8147e-007][0.274627,0.800758,0][-0.499999,34.7672,-0.526221][-3.8147e-007,-1,-3.8147e-007][0.274627,0.836818,0][-0.5,62.7291,-0.52622][0,1,0][0.173796,0.836818,0][-10.5,62.7291,-0.526219][0,2,0][0.891397,0.782648,0][-10.5,62.7291,-6.52622][0,2,0][0.891397,0.770241,0][-10.5,34.7672,-6.52622][0,-1,0][0.949219,0.770241,0][-10.5,34.7672,-6.52622][0,-1,0][0.949219,0.770241,0][-10.5,34.7672,-0.52622][-3.8147e-007,-3,-3.8147e-007][0.949219,0.782648,0][-10.5,62.7291,-0.526219][0,2,0][0.891397,0.782648,0][-6.5,62.7291,-10.5262][0,1,0][0.673073,0.85391,0][-0.500001,62.7291,-10.5262][0,3,0][0.673073,0.841503,0][-0.5,34.7672,-10.5262][-3.8147e-007,-2,-3.8147e-007][0.730895,0.841503,0][-0.5,34.7672,-10.5262][-3.8147e-007,-2,-3.8147e-007][0.730895,0.841503,0][-6.5,34.7672,-10.5262][0,-2,0][0.730895,0.85391,0][-6.5,62.7291,-10.5262][0,1,0][0.673073,0.85391,0][-10.5,62.7291,-6.52622][0,2,0][0.673073,0.862182,0][-6.5,62.7291,-10.5262][0,1,0][0.673073,0.85391,0][-6.5,34.7672,-10.5262][0,-2,0][0.730895,0.85391,0][-6.5,34.7672,-10.5262][0,-2,0][0.730895,0.85391,0][-10.5,34.7672,-6.52622][0,-1,0][0.730895,0.862182,0][-10.5,62.7291,-6.52622][0,2,0][0.673073,0.862182,0][-10.5,62.7291,0.473781][0,3,0][0.116099,0.891748,0][-10.5,62.7291,6.47378][0,1,0][0.116099,0.870112,0][-6.5,62.7291,10.4738][0,2,0][0.130523,0.855688,0][-10.5,62.7291,0.473781][0,3,0][0.116099,0.891748,0][-6.5,62.7291,10.4738][0,2,0][0.130523,0.855688,0][-0.5,62.7291,10.4738][0,2,0][0.15216,0.855688,0][-10.5,62.7291,0.473781][0,3,0][0.116099,0.891748,0][-0.5,62.7291,10.4738][0,2,0][0.15216,0.855688,0][-0.5,62.7291,0.47378][0,1,0][0.15216,0.891748,0][-10.5,34.7672,0.473779][0,-2,0][0.0910585,0.65008,0][-0.5,34.7672,0.473778][0,-1,0][0.0910585,0.68614,0][-0.5,34.7672,10.4738][0,-3,0][0.0549982,0.68614,0][-0.5,34.7672,10.4738][0,-3,0][0.0549982,0.68614,0][-6.5,34.7672,10.4738][0,-1,0][0.0549982,0.664504,0][-10.5,34.7672,6.47378][0,-2,0][0.0694223,0.65008,0][-10.5,34.7672,0.473779][0,-2,0][0.0910585,0.65008,0][-0.5,34.7672,10.4738][0,-3,0][0.0549982,0.68614,0][-10.5,34.7672,6.47378][0,-2,0][0.0694223,0.65008,0][-10.5,62.7291,0.473781][0,3,0][0.745847,0.79092,0][-0.5,62.7291,0.47378][0,1,0][0.745847,0.770241,0][-0.5,34.7672,0.473778][0,-1,0][0.80367,0.770241,0][-0.5,34.7672,0.473778][0,-1,0][0.80367,0.770241,0][-10.5,34.7672,0.473779][0,-2,0][0.80367,0.79092,0][-10.5,62.7291,0.473781][0,3,0][0.745847,0.79092,0][-0.5,62.7291,0.47378][0,1,0][0.907326,0.530694,0][-0.5,62.7291,10.4738][0,2,0][0.907326,0.510015,0][-0.5,34.7672,10.4738][0,-3,0][0.965149,0.510015,0][-0.5,34.7672,10.4738][0,-3,0][0.965149,0.510015,0][-0.5,34.7672,0.473778][0,-1,0][0.965149,0.530694,0][-0.5,62.7291,0.47378][0,1,0][0.907326,0.530694,0][-0.5,62.7291,10.4738][0,2,0][0.673073,0.826551,0][-6.5,62.7291,10.4738][0,2,0][0.673073,0.814143,0][-6.5,34.7672,10.4738][0,-1,0][0.730895,0.814143,0][-6.5,34.7672,10.4738][0,-1,0][0.730895,0.814143,0][-0.5,34.7672,10.4738][0,-3,0][0.730895,0.826551,0][-0.5,62.7291,10.4738][0,2,0][0.673073,0.826551,0][-10.5,62.7291,6.47378][0,1,0][0.745847,0.85391,0][-10.5,62.7291,0.473781][0,3,0][0.745847,0.841503,0][-10.5,34.7672,0.473779][0,-2,0][0.80367,0.841503,0][-10.5,34.7672,0.473779][0,-2,0][0.80367,0.841503,0][-10.5,34.7672,6.47378][0,-2,0][0.80367,0.85391,0][-10.5,62.7291,6.47378][0,1,0][0.745847,0.85391,0][-6.5,62.7291,10.4738][0,2,0][0.673073,0.814143,0][-10.5,62.7291,6.47378][0,1,0][0.673073,0.805872,0][-10.5,34.7672,6.47378][0,-2,0][0.730895,0.805872,0][-10.5,34.7672,6.47378][0,-2,0][0.730895,0.805872,0][-6.5,34.7672,10.4738][0,-1,0][0.730895,0.814143,0][-6.5,62.7291,10.4738][0,2,0][0.673073,0.814143,0][10.5,62.7291,-0.526221][0,3,0][0.993279,0.675875,0][10.5,62.7291,-6.52622][0,1,0][0.993279,0.688282,0][6.5,62.7291,-10.5262][0,2,0][0.985008,0.696554,0][10.5,62.7291,-0.526221][0,3,0][0.993279,0.675875,0][6.5,62.7291,-10.5262][0,2,0][0.985008,0.696554,0][0.499999,62.7291,-10.5262][0,2,0][0.9726,0.696554,0][10.5,62.7291,-0.526221][0,3,0][0.993279,0.675875,0][0.499999,62.7291,-10.5262][0,2,0][0.9726,0.696554,0][0.5,62.7291,-0.52622][0,1,0][0.9726,0.675875,0][10.5,34.7672,-0.526219][0,-2,0][0.693752,0.977346,0][0.5,34.7672,-0.526219][0,-1,0][0.673073,0.977346,0][0.499999,34.7672,-10.5262][0,-3,0][0.673073,0.956667,0][0.499999,34.7672,-10.5262][0,-3,0][0.673073,0.956667,0][6.5,34.7672,-10.5262][0,-1,0][0.68548,0.956667,0][10.5,34.7672,-6.52622][0,-2,0][0.693752,0.964939,0][10.5,34.7672,-0.526219][0,-2,0][0.693752,0.977346,0][0.499999,34.7672,-10.5262][0,-3,0][0.673073,0.956667,0][10.5,34.7672,-6.52622][0,-2,0][0.693752,0.964939,0][10.5,62.7291,-0.526221][0,3,0][0.745847,0.826551,0][0.5,62.7291,-0.52622][0,1,0][0.745847,0.805872,0][0.5,34.7672,-0.526219][0,-1,0][0.80367,0.805872,0][0.5,34.7672,-0.526219][0,-1,0][0.80367,0.805872,0][10.5,34.7672,-0.526219][0,-2,0][0.80367,0.826551,0][10.5,62.7291,-0.526221][0,3,0][0.745847,0.826551,0][0.5,62.7291,-0.52622][0,1,0][0.818622,0.79092,0][0.499999,62.7291,-10.5262][0,2,0][0.818622,0.770241,0][0.499999,34.7672,-10.5262][0,-3,0][0.876445,0.770241,0][0.499999,34.7672,-10.5262][0,-3,0][0.876445,0.770241,0][0.5,34.7672,-0.526219][0,-1,0][0.876445,0.79092,0][0.5,62.7291,-0.52622][0,1,0][0.818622,0.79092,0][0.499999,62.7291,-10.5262][0,2,0][0.173796,0.961085,0][6.5,62.7291,-10.5262][0,2,0][0.173796,0.939449,0][6.5,34.7672,-10.5262][0,-1,0][0.274627,0.939449,0][6.5,34.7672,-10.5262][0,-1,0][0.274627,0.939449,0][0.499999,34.7672,-10.5262][0,-3,0][0.274627,0.961085,0][0.499999,62.7291,-10.5262][0,2,0][0.173796,0.961085,0][10.5,62.7291,-6.52622][0,1,0][0.791003,0.889541,0][10.5,62.7291,-0.526221][0,3,0][0.791003,0.877134,0][10.5,34.7672,-0.526219][0,-2,0][0.848826,0.877134,0][10.5,34.7672,-0.526219][0,-2,0][0.848826,0.877134,0][10.5,34.7672,-6.52622][0,-2,0][0.848826,0.889541,0][10.5,62.7291,-6.52622][0,1,0][0.791003,0.889541,0][6.5,62.7291,-10.5262][0,2,0][0.173796,0.939449,0][10.5,62.7291,-6.52622][0,1,0][0.173796,0.925025,0][10.5,34.7672,-6.52622][0,-2,0][0.274627,0.925025,0][10.5,34.7672,-6.52622][0,-2,0][0.274627,0.925025,0][6.5,34.7672,-10.5262][0,-1,0][0.274627,0.939449,0][6.5,62.7291,-10.5262][0,2,0][0.173796,0.939449,0][0.0241239,-5.42764,-37.483][0,1,0][0.737556,0.921553,0][0.0241238,-6.92764,-40.081][-0.115074,0.553385,-0.824938][0.732184,0.921553,0][-2.22588,-6.92764,-38.782][-0.771955,0.553385,-0.312812][0.73487,0.9169,0][0.0241239,-5.42764,-37.483][0,1,0][0.737556,0.921553,0][-2.22588,-6.92764,-38.782][-0.771955,0.553385,-0.312812][0.73487,0.9169,0][-2.22588,-6.92764,-36.1839][-0.65688,0.553385,0.512126][0.740243,0.9169,0][0.0241239,-5.42764,-37.483][0,1,0][0.737556,0.921553,0][-2.22588,-6.92764,-36.1839][-0.65688,0.553385,0.512126][0.740243,0.9169,0][0.0241239,-6.92764,-34.8849][0.115074,0.553385,0.824938][0.742929,0.921553,0][0.0241239,-5.42764,-37.483][0,1,0][0.737556,0.921553,0][0.0241239,-6.92764,-34.8849][0.115074,0.553385,0.824938][0.742929,0.921553,0][2.27412,-6.92764,-36.1839][0.771954,0.553385,0.312812][0.740243,0.926206,0][0.0241239,-5.42764,-37.483][0,1,0][0.737556,0.921553,0][2.27412,-6.92764,-36.1839][0.771954,0.553385,0.312812][0.740243,0.926206,0][2.27412,-6.92764,-38.782][0.65688,0.553385,-0.512126][0.73487,0.926206,0][0.0241239,-5.42764,-37.483][0,1,0][0.737556,0.921553,0][2.27412,-6.92764,-38.782][0.65688,0.553385,-0.512126][0.73487,0.926206,0][0.0241238,-6.92764,-40.081][-0.115074,0.553385,-0.824938][0.732184,0.921553,0][-2.57395,-8.42764,-38.983][-1.94823,0.678134,-1.68722][0.0724651,0.323222,0][-2.22588,-6.92764,-38.782][-0.771955,0.553385,-0.312812][0.0712099,0.328631,0][0.0241238,-6.92764,-40.081][-0.115074,0.553385,-0.824938][0.0630964,0.328631,0][0.0241238,-6.92764,-40.081][-0.115074,0.553385,-0.824938][0.0630964,0.328631,0][0.0241237,-8.42764,-40.483][0.487058,0.678134,-2.53083][0.0630964,0.323222,0][-2.57395,-8.42764,-38.983][-1.94823,0.678134,-1.68722][0.0724651,0.323222,0][-2.57395,-8.42764,-35.983][-2.43529,0.678134,0.84361][0.0176486,0.620136,0][-2.22588,-6.92764,-36.1839][-0.65688,0.553385,0.512126][0.0120958,0.619411,0][-2.22588,-6.92764,-38.782][-0.771955,0.553385,-0.312812][0.0120958,0.610042,0][-2.22588,-6.92764,-38.782][-0.771955,0.553385,-0.312812][0.0120958,0.610042,0][-2.57395,-8.42764,-38.983][-1.94823,0.678134,-1.68722][0.0176486,0.609318,0][-2.57395,-8.42764,-35.983][-2.43529,0.678134,0.84361][0.0176486,0.620136,0][0.0241239,-8.42764,-34.483][-0.487058,0.678134,2.53083][0.125468,0.911303,0][0.0241239,-6.92764,-34.8849][0.115074,0.553385,0.824938][0.125468,0.916712,0][-2.22588,-6.92764,-36.1839][-0.65688,0.553385,0.512126][0.117355,0.916712,0][-2.22588,-6.92764,-36.1839][-0.65688,0.553385,0.512126][0.117355,0.916712,0][-2.57395,-8.42764,-35.983][-2.43529,0.678134,0.84361][0.116099,0.911303,0][0.0241239,-8.42764,-34.483][-0.487058,0.678134,2.53083][0.125468,0.911303,0][2.6222,-8.42764,-35.983][1.94823,0.678134,1.68722][0.134837,0.911303,0][2.27412,-6.92764,-36.1839][0.771954,0.553385,0.312812][0.133582,0.916712,0][0.0241239,-6.92764,-34.8849][0.115074,0.553385,0.824938][0.125468,0.916712,0][0.0241239,-6.92764,-34.8849][0.115074,0.553385,0.824938][0.125468,0.916712,0][0.0241239,-8.42764,-34.483][-0.487058,0.678134,2.53083][0.125468,0.911303,0][2.6222,-8.42764,-35.983][1.94823,0.678134,1.68722][0.134837,0.911303,0][2.6222,-8.42764,-38.983][2.43529,0.678134,-0.84361][0.0176486,0.726758,0][2.27412,-6.92764,-38.782][0.65688,0.553385,-0.512126][0.0120958,0.726034,0][2.27412,-6.92764,-36.1839][0.771954,0.553385,0.312812][0.0120958,0.716665,0][2.27412,-6.92764,-36.1839][0.771954,0.553385,0.312812][0.0120958,0.716665,0][2.6222,-8.42764,-35.983][1.94823,0.678134,1.68722][0.0176486,0.71594,0][2.6222,-8.42764,-38.983][2.43529,0.678134,-0.84361][0.0176486,0.726758,0][0.0241237,-8.42764,-40.483][0.487058,0.678134,-2.53083][0.0630964,0.323222,0][0.0241238,-6.92764,-40.081][-0.115074,0.553385,-0.824938][0.0630964,0.328631,0][2.27412,-6.92764,-38.782][0.65688,0.553385,-0.512126][0.0549828,0.328631,0][2.27412,-6.92764,-38.782][0.65688,0.553385,-0.512126][0.0549828,0.328631,0][2.6222,-8.42764,-38.983][2.43529,0.678134,-0.84361][0.0537276,0.323222,0][0.0241237,-8.42764,-40.483][0.487058,0.678134,-2.53083][0.0630964,0.323222,0][0.0241239,-8.42764,-37.483][0,-1,0][0.986304,0.515388,0][-2.57395,-8.42764,-38.983][-1.94823,0.678134,-1.68722][0.989406,0.510015,0][0.0241237,-8.42764,-40.483][0.487058,0.678134,-2.53083][0.992508,0.515388,0][0.0241239,-8.42764,-37.483][0,-1,0][0.986304,0.515388,0][-2.57395,-8.42764,-35.983][-2.43529,0.678134,0.84361][0.983202,0.510015,0][-2.57395,-8.42764,-38.983][-1.94823,0.678134,-1.68722][0.989406,0.510015,0][0.0241239,-8.42764,-37.483][0,-1,0][0.986304,0.515388,0][0.0241239,-8.42764,-34.483][-0.487058,0.678134,2.53083][0.980101,0.515388,0][-2.57395,-8.42764,-35.983][-2.43529,0.678134,0.84361][0.983202,0.510015,0][0.0241239,-8.42764,-37.483][0,-1,0][0.986304,0.515388,0][2.6222,-8.42764,-35.983][1.94823,0.678134,1.68722][0.983202,0.52076,0][0.0241239,-8.42764,-34.483][-0.487058,0.678134,2.53083][0.980101,0.515388,0][0.0241239,-8.42764,-37.483][0,-1,0][0.986304,0.515388,0][2.6222,-8.42764,-38.983][2.43529,0.678134,-0.84361][0.989406,0.52076,0][2.6222,-8.42764,-35.983][1.94823,0.678134,1.68722][0.983202,0.52076,0][0.0241239,-8.42764,-37.483][0,-1,0][0.986304,0.515388,0][0.0241237,-8.42764,-40.483][0.487058,0.678134,-2.53083][0.992508,0.515388,0][2.6222,-8.42764,-38.983][2.43529,0.678134,-0.84361][0.989406,0.52076,0][-0.432864,-5.45015,-37.5262][0,0,-2][0.154241,0.461993,0][-0.432864,-4.29584,-37.5262][0,0,-1][0.150079,0.461993,0][0.432864,-4.29584,-37.5262][0,0,-2][0.150079,0.458871,0][0.432864,-4.29584,-37.5262][0,0,-2][0.150079,0.458871,0][0.432864,-5.45015,-37.5262][0,0,-1][0.154241,0.458871,0][-0.432864,-5.45015,-37.5262][0,0,-2][0.154241,0.461993,0][-0.432864,-5.45015,37.4738][0,0,2][0.072831,0.558412,0][0.432864,-5.45015,37.4738][0,0,1][0.072831,0.561534,0][0.432864,-4.29585,37.4738][0,0,2][0.0686686,0.561534,0][0.432864,-4.29585,37.4738][0,0,2][0.0686686,0.561534,0][-0.432864,-4.29585,37.4738][0,0,1][0.0686686,0.558412,0][-0.432864,-5.45015,37.4738][0,0,2][0.072831,0.558412,0][-0.432864,-5.45015,-37.5262][0,0,-2][0.946096,0.904493,0][0.432864,-5.45015,-37.5262][0,0,-1][0.946096,0.906283,0][0.432864,-5.45015,37.4738][0,0,1][0.791003,0.906283,0][0.432864,-5.45015,37.4738][0,0,1][0.791003,0.906283,0][-0.432864,-5.45015,37.4738][0,0,2][0.791003,0.904493,0][-0.432864,-5.45015,-37.5262][0,0,-2][0.946096,0.904493,0][0.432864,-5.45015,-37.5262][0,0,-1][0.905155,0.730474,0][0.432864,-4.29584,-37.5262][0,0,-2][0.905155,0.732861,0][0.432864,-4.29585,37.4738][0,0,2][0.750062,0.732861,0][0.432864,-4.29585,37.4738][0,0,2][0.750062,0.732861,0][0.432864,-5.45015,37.4738][0,0,1][0.750062,0.730474,0][0.432864,-5.45015,-37.5262][0,0,-1][0.905155,0.730474,0][0.432864,-4.29584,-37.5262][0,0,-2][0.818622,0.856894,0][-0.432864,-4.29584,-37.5262][0,0,-1][0.818622,0.855103,0][-0.432864,-4.29585,37.4738][0,0,1][0.973715,0.855103,0][-0.432864,-4.29585,37.4738][0,0,1][0.973715,0.855103,0][0.432864,-4.29585,37.4738][0,0,2][0.973715,0.856894,0][0.432864,-4.29584,-37.5262][0,0,-2][0.818622,0.856894,0][-0.432864,-4.29584,-37.5262][0,0,-1][0.818622,0.84389,0][-0.432864,-5.45015,-37.5262][0,0,-2][0.818622,0.841503,0][-0.432864,-5.45015,37.4738][0,0,2][0.973715,0.841503,0][-0.432864,-5.45015,37.4738][0,0,2][0.973715,0.841503,0][-0.432864,-4.29585,37.4738][0,0,1][0.973715,0.84389,0][-0.432864,-4.29584,-37.5262][0,0,-1][0.818622,0.84389,0][0.0241239,-4.33514,37.483][0,-1,0][0.332314,0.765846,0][0.0241238,-2.83514,40.081][-0.115074,-0.553385,0.824938][0.322945,0.765846,0][-2.22588,-2.83514,38.782][-0.771954,-0.553385,0.312812][0.327629,0.757732,0][0.0241239,-4.33514,37.483][0,-1,0][0.332314,0.765846,0][-2.22588,-2.83514,38.782][-0.771954,-0.553385,0.312812][0.327629,0.757732,0][-2.22588,-2.83514,36.1839][-0.65688,-0.553385,-0.512126][0.336998,0.757732,0][0.0241239,-4.33514,37.483][0,-1,0][0.332314,0.765846,0][-2.22588,-2.83514,36.1839][-0.65688,-0.553385,-0.512126][0.336998,0.757732,0][0.0241239,-2.83514,34.8849][0.115074,-0.553385,-0.824938][0.341682,0.765846,0][0.0241239,-4.33514,37.483][0,-1,0][0.332314,0.765846,0][0.0241239,-2.83514,34.8849][0.115074,-0.553385,-0.824938][0.341682,0.765846,0][2.27412,-2.83514,36.1839][0.771954,-0.553385,-0.312812][0.336998,0.773959,0][0.0241239,-4.33514,37.483][0,-1,0][0.332314,0.765846,0][2.27412,-2.83514,36.1839][0.771954,-0.553385,-0.312812][0.336998,0.773959,0][2.27412,-2.83514,38.782][0.65688,-0.553385,0.512126][0.327629,0.773959,0][0.0241239,-4.33514,37.483][0,-1,0][0.332314,0.765846,0][2.27412,-2.83514,38.782][0.65688,-0.553385,0.512126][0.327629,0.773959,0][0.0241238,-2.83514,40.081][-0.115074,-0.553385,0.824938][0.322945,0.765846,0][-2.57395,-1.33514,38.983][-1.94823,-0.678134,1.68722][0.0814802,0.325242,0][-2.22588,-2.83514,38.782][-0.771954,-0.553385,0.312812][0.0868892,0.326497,0][0.0241238,-2.83514,40.081][-0.115074,-0.553385,0.824938][0.0868892,0.334611,0][0.0241238,-2.83514,40.081][-0.115074,-0.553385,0.824938][0.0868892,0.334611,0][0.0241237,-1.33514,40.483][0.487058,-0.678134,2.53083][0.0814802,0.334611,0][-2.57395,-1.33514,38.983][-1.94823,-0.678134,1.68722][0.0814802,0.325242,0][-2.57395,-1.33514,35.983][-2.43529,-0.678134,-0.84361][0.126718,0.71594,0][-2.22588,-2.83514,36.1839][-0.65688,-0.553385,-0.512126][0.132271,0.716665,0][-2.22588,-2.83514,38.782][-0.771954,-0.553385,0.312812][0.132271,0.726034,0][-2.22588,-2.83514,38.782][-0.771954,-0.553385,0.312812][0.132271,0.726034,0][-2.57395,-1.33514,38.983][-1.94823,-0.678134,1.68722][0.126718,0.726758,0][-2.57395,-1.33514,35.983][-2.43529,-0.678134,-0.84361][0.126718,0.71594,0][0.0241239,-1.33514,34.483][-0.487058,-0.678134,-2.53083][0.678445,0.991662,0][0.0241239,-2.83514,34.8849][0.115074,-0.553385,-0.824938][0.678445,0.98856,0][-2.22588,-2.83514,36.1839][-0.65688,-0.553385,-0.512126][0.683098,0.98856,0][-2.22588,-2.83514,36.1839][-0.65688,-0.553385,-0.512126][0.683098,0.98856,0][-2.57395,-1.33514,35.983][-2.43529,-0.678134,-0.84361][0.683818,0.991662,0][0.0241239,-1.33514,34.483][-0.487058,-0.678134,-2.53083][0.678445,0.991662,0][2.6222,-1.33514,35.983][1.94823,-0.678134,-1.68722][0.673073,0.991662,0][2.27412,-2.83514,36.1839][0.771954,-0.553385,-0.312812][0.673792,0.98856,0][0.0241239,-2.83514,34.8849][0.115074,-0.553385,-0.824938][0.678445,0.98856,0][0.0241239,-2.83514,34.8849][0.115074,-0.553385,-0.824938][0.678445,0.98856,0][0.0241239,-1.33514,34.483][-0.487058,-0.678134,-2.53083][0.678445,0.991662,0][2.6222,-1.33514,35.983][1.94823,-0.678134,-1.68722][0.673073,0.991662,0][2.6222,-1.33514,38.983][2.43529,-0.678134,0.84361][0.126718,0.609318,0][2.27412,-2.83514,38.782][0.65688,-0.553385,0.512126][0.132271,0.610042,0][2.27412,-2.83514,36.1839][0.771954,-0.553385,-0.312812][0.132271,0.619411,0][2.27412,-2.83514,36.1839][0.771954,-0.553385,-0.312812][0.132271,0.619411,0][2.6222,-1.33514,35.983][1.94823,-0.678134,-1.68722][0.126718,0.620136,0][2.6222,-1.33514,38.983][2.43529,-0.678134,0.84361][0.126718,0.609318,0][0.0241237,-1.33514,40.483][0.487058,-0.678134,2.53083][0.0814802,0.334611,0][0.0241238,-2.83514,40.081][-0.115074,-0.553385,0.824938][0.0868892,0.334611,0][2.27412,-2.83514,38.782][0.65688,-0.553385,0.512126][0.0868892,0.342724,0][2.27412,-2.83514,38.782][0.65688,-0.553385,0.512126][0.0868892,0.342724,0][2.6222,-1.33514,38.983][2.43529,-0.678134,0.84361][0.0814802,0.34398,0][0.0241237,-1.33514,40.483][0.487058,-0.678134,2.53083][0.0814802,0.334611,0][0.0241239,-1.33514,37.483][0,1,0][0.104226,0.334611,0][-2.57395,-1.33514,38.983][-1.94823,-0.678134,1.68722][0.109635,0.325242,0][0.0241237,-1.33514,40.483][0.487058,-0.678134,2.53083][0.115044,0.334611,0][0.0241239,-1.33514,37.483][0,1,0][0.104226,0.334611,0][-2.57395,-1.33514,35.983][-2.43529,-0.678134,-0.84361][0.0988165,0.325242,0][-2.57395,-1.33514,38.983][-1.94823,-0.678134,1.68722][0.109635,0.325242,0][0.0241239,-1.33514,37.483][0,1,0][0.104226,0.334611,0][0.0241239,-1.33514,34.483][-0.487058,-0.678134,-2.53083][0.0934075,0.334611,0][-2.57395,-1.33514,35.983][-2.43529,-0.678134,-0.84361][0.0988165,0.325242,0][0.0241239,-1.33514,37.483][0,1,0][0.104226,0.334611,0][2.6222,-1.33514,35.983][1.94823,-0.678134,-1.68722][0.0988165,0.34398,0][0.0241239,-1.33514,34.483][-0.487058,-0.678134,-2.53083][0.0934075,0.334611,0][0.0241239,-1.33514,37.483][0,1,0][0.104226,0.334611,0][2.6222,-1.33514,38.983][2.43529,-0.678134,0.84361][0.109635,0.34398,0][2.6222,-1.33514,35.983][1.94823,-0.678134,-1.68722][0.0988165,0.34398,0][0.0241239,-1.33514,37.483][0,1,0][0.104226,0.334611,0][0.0241237,-1.33514,40.483][0.487058,-0.678134,2.53083][0.115044,0.334611,0][2.6222,-1.33514,38.983][2.43529,-0.678134,0.84361][0.109635,0.34398,0][55,3.26643,-0.0262176][-4.72169e-007,-2.59808,0.5][0.900543,0.661527,0][55,4.14143,1.48933][-2.58537e-007,-0.866025,2.5][0.900543,0.664661,0][-55,4.14145,1.48932][-3.8723e-007,-1.73205,2][0.673073,0.664661,0][-55,4.14145,1.48932][-3.8723e-007,-1.73205,2][0.673073,0.664661,0][-55,3.26645,-0.0262224][-4.2882e-007,-2.59808,-0.5][0.673073,0.661527,0][55,3.26643,-0.0262176][-4.72169e-007,-2.59808,0.5][0.900543,0.661527,0][55,4.14143,1.48933][-2.58537e-007,-0.866025,2.5][0.900543,0.755408,0][55,5.89143,1.48933][2.13429e-007,1.73205,2][0.900543,0.759027,0][-55,5.89145,1.48932][0,0.866025,2.5][0.673073,0.759027,0][-55,5.89145,1.48932][0,0.866025,2.5][0.673073,0.759027,0][-55,4.14145,1.48932][-3.8723e-007,-1.73205,2][0.673073,0.755408,0][55,4.14143,1.48933][-2.58537e-007,-0.866025,2.5][0.900543,0.755408,0][55,5.89143,1.48933][2.13429e-007,1.73205,2][0.900543,0.640911,0][55,6.76643,-0.0262176][4.72169e-007,2.59808,-0.5][0.900543,0.644045,0][-55,6.76645,-0.0262224][4.2882e-007,2.59808,0.5][0.673073,0.644045,0][-55,6.76645,-0.0262224][4.2882e-007,2.59808,0.5][0.673073,0.644045,0][-55,5.89145,1.48932][0,0.866025,2.5][0.673073,0.640911,0][55,5.89143,1.48933][2.13429e-007,1.73205,2][0.900543,0.640911,0][55,6.76643,-0.0262176][4.72169e-007,2.59808,-0.5][0.900543,0.644045,0][55,5.89143,-1.54176][2.58537e-007,0.866026,-2.5][0.900543,0.647179,0][-55,5.89145,-1.54177][3.8723e-007,1.73205,-2][0.673073,0.647179,0][-55,5.89145,-1.54177][3.8723e-007,1.73205,-2][0.673073,0.647179,0][-55,6.76645,-0.0262224][4.2882e-007,2.59808,0.5][0.673073,0.644045,0][55,6.76643,-0.0262176][4.72169e-007,2.59808,-0.5][0.900543,0.644045,0][55,5.89143,-1.54176][2.58537e-007,0.866026,-2.5][0.750062,0.71926,0][55,4.14143,-1.54176][-2.13429e-007,-1.73205,-2][0.750062,0.715641,0][-55,4.14145,-1.54177][0,-0.866025,-2.5][0.977532,0.715641,0][-55,4.14145,-1.54177][0,-0.866025,-2.5][0.977532,0.715641,0][-55,5.89145,-1.54177][3.8723e-007,1.73205,-2][0.977532,0.71926,0][55,5.89143,-1.54176][2.58537e-007,0.866026,-2.5][0.750062,0.71926,0][55,4.14143,-1.54176][-2.13429e-007,-1.73205,-2][0.900543,0.658393,0][55,3.26643,-0.0262176][-4.72169e-007,-2.59808,0.5][0.900543,0.661527,0][-55,3.26645,-0.0262224][-4.2882e-007,-2.59808,-0.5][0.673073,0.661527,0][-55,3.26645,-0.0262224][-4.2882e-007,-2.59808,-0.5][0.673073,0.661527,0][-55,4.14145,-1.54177][0,-0.866025,-2.5][0.673073,0.658393,0][55,4.14143,-1.54176][-2.13429e-007,-1.73205,-2][0.900543,0.658393,0][55,5.89143,-1.54176][2.58537e-007,0.866026,-2.5][0.706775,0.962935,0][55,6.76643,-0.0262176][4.72169e-007,2.59808,-0.5][0.704966,0.959801,0][55,5.89143,1.48933][2.13429e-007,1.73205,2][0.706775,0.956667,0][55,5.89143,1.48933][2.13429e-007,1.73205,2][0.706775,0.956667,0][55,4.14143,1.48933][-2.58537e-007,-0.866025,2.5][0.710394,0.956667,0][55,3.26643,-0.0262176][-4.72169e-007,-2.59808,0.5][0.712203,0.959801,0][55,5.89143,-1.54176][2.58537e-007,0.866026,-2.5][0.706775,0.962935,0][55,5.89143,1.48933][2.13429e-007,1.73205,2][0.706775,0.956667,0][55,3.26643,-0.0262176][-4.72169e-007,-2.59808,0.5][0.712203,0.959801,0][55,4.14143,-1.54176][-2.13429e-007,-1.73205,-2][0.710394,0.962935,0][55,5.89143,-1.54176][2.58537e-007,0.866026,-2.5][0.706775,0.962935,0][55,3.26643,-0.0262176][-4.72169e-007,-2.59808,0.5][0.712203,0.959801,0][-55,4.14145,1.48932][-3.8723e-007,-1.73205,2][0.991555,0.554314,0][-55,5.89145,1.48932][0,0.866025,2.5][0.987936,0.554314,0][-55,6.76645,-0.0262224][4.2882e-007,2.59808,0.5][0.986127,0.551179,0][-55,6.76645,-0.0262224][4.2882e-007,2.59808,0.5][0.986127,0.551179,0][-55,5.89145,-1.54177][3.8723e-007,1.73205,-2][0.987936,0.548046,0][-55,4.14145,-1.54177][0,-0.866025,-2.5][0.991555,0.548046,0][-55,4.14145,1.48932][-3.8723e-007,-1.73205,2][0.991555,0.554314,0][-55,6.76645,-0.0262224][4.2882e-007,2.59808,0.5][0.986127,0.551179,0][-55,4.14145,-1.54177][0,-0.866025,-2.5][0.991555,0.548046,0][-55,3.26645,-0.0262224][-4.2882e-007,-2.59808,-0.5][0.993364,0.551179,0][-55,4.14145,1.48932][-3.8723e-007,-1.73205,2][0.991555,0.554314,0][-55,4.14145,-1.54177][0,-0.866025,-2.5][0.991555,0.548046,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/Shaggy.mesh b/shareddata/charcustom/hats/fonts/Shaggy.mesh deleted file mode 100644 index 05db758..0000000 --- a/shareddata/charcustom/hats/fonts/Shaggy.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -892 -[-0.120822,0.966665,-0.632182][0.206001,-0.876748,0.4346][0.935307,0.06719,0][0.0432793,0.961349,-0.720691][0.206001,-0.876748,0.4346][0.93244,0.066248,0][0.129944,1.11582,-0.450145][0.206001,-0.876748,0.4346][0.935755,0.061765,0][0.129944,1.11582,-0.450145][0.206001,-0.876748,0.4346][0.935755,0.061765,0][0.0443333,1.11864,-0.406673][0.196979,-0.873797,0.44461][0.937032,0.062665,0][-0.120822,0.966665,-0.632182][0.206001,-0.876748,0.4346][0.935307,0.06719,0][-0.251526,0.975845,-0.502552][0.304285,-0.87821,0.368997][0.937885,0.067471,0][-0.120822,0.966665,-0.632182][0.206001,-0.876748,0.4346][0.935307,0.06719,0][0.0443333,1.11864,-0.406673][0.196979,-0.873797,0.44461][0.937032,0.062665,0][0.0443333,1.11864,-0.406673][0.196979,-0.873797,0.44461][0.937032,0.062665,0][-0.0237377,1.12352,-0.33892][0.304277,-0.878205,0.369014][0.938379,0.063127,0][-0.251526,0.975845,-0.502552][0.304285,-0.87821,0.368997][0.937885,0.067471,0][-0.336069,0.988034,-0.338788][0.383939,-0.884794,0.264065][0.940209,0.067206,0][-0.251526,0.975845,-0.502552][0.304285,-0.87821,0.368997][0.937885,0.067471,0][-0.0237377,1.12352,-0.33892][0.304277,-0.878205,0.369014][0.938379,0.063127,0][-0.0237377,1.12352,-0.33892][0.304277,-0.878205,0.369014][0.938379,0.063127,0][-0.0676127,1.13,-0.253432][0.383937,-0.884789,0.264086][0.939696,0.063209,0][-0.336069,0.988034,-0.338788][0.383939,-0.884794,0.264065][0.940209,0.067206,0][-0.366022,1.00206,-0.156651][0.428,-0.893001,0.139161][0.94226,0.066499,0][-0.336069,0.988034,-0.338788][0.383939,-0.884794,0.264065][0.940209,0.067206,0][-0.0676127,1.13,-0.253432][0.383937,-0.884789,0.264086][0.939696,0.063209,0][-0.0676127,1.13,-0.253432][0.383937,-0.884789,0.264086][0.939696,0.063209,0][-0.0829557,1.13744,-0.158506][0.428006,-0.892993,0.139191][0.940915,0.062967,0][-0.366022,1.00206,-0.156651][0.428,-0.893001,0.139161][0.94226,0.066499,0][-0.338168,1.01657,0.0261576][0.431488,-0.9021,0.00584133][0.944012,0.065429,0][-0.366022,1.00206,-0.156651][0.428,-0.893001,0.139161][0.94226,0.066499,0][-0.0829557,1.13744,-0.158506][0.428006,-0.892993,0.139191][0.940915,0.062967,0][-0.0829557,1.13744,-0.158506][0.428006,-0.892993,0.139191][0.940915,0.062967,0][-0.0681867,1.14512,-0.0633975][0.431483,-0.902102,0.00583293][0.941984,0.062454,0][-0.338168,1.01657,0.0261576][0.431488,-0.9021,0.00584133][0.944012,0.065429,0][-0.254928,1.03013,0.191678][0.393086,-0.911234,-0.123031][0.945437,0.064063,0][-0.338168,1.01657,0.0261576][0.431488,-0.9021,0.00584133][0.944012,0.065429,0][-0.0681867,1.14512,-0.0633975][0.431483,-0.902102,0.00583293][0.941984,0.062454,0][-0.0681867,1.14512,-0.0633975][0.431483,-0.902102,0.00583293][0.941984,0.062454,0][-0.0246687,1.15229,0.0225635][0.39308,-0.911236,-0.123036][0.942867,0.061723,0][-0.254928,1.03013,0.191678][0.393086,-0.911234,-0.123031][0.945437,0.064063,0][-0.124239,1.0414,0.323479][0.315674,-0.919467,-0.234374][0.946509,0.062466,0][-0.254928,1.03013,0.191678][0.393086,-0.911234,-0.123031][0.945437,0.064063,0][-0.0246687,1.15229,0.0225635][0.39308,-0.911236,-0.123036][0.942867,0.061723,0][-0.0246687,1.15229,0.0225635][0.39308,-0.911236,-0.123036][0.942867,0.061723,0][0.0433943,1.15824,0.0908993][0.315652,-0.919472,-0.234383][0.943533,0.060821,0][-0.124239,1.0414,0.323479][0.315674,-0.919467,-0.234374][0.946509,0.062466,0][0.0411413,1.04925,0.408343][0.206334,-0.925911,-0.316409][0.947203,0.060698,0][-0.124239,1.0414,0.323479][0.315674,-0.919467,-0.234374][0.946509,0.062466,0][0.0433943,1.15824,0.0908993][0.315652,-0.919472,-0.234383][0.943533,0.060821,0][0.0433943,1.15824,0.0908993][0.315652,-0.919472,-0.234383][0.943533,0.060821,0][0.12935,1.16237,0.134838][0.206317,-0.925914,-0.316411][0.943959,0.0598,0][0.0411413,1.04925,0.408343][0.206334,-0.925911,-0.316409][0.947203,0.060698,0][0.0411413,1.04925,0.408343][0.206334,-0.925911,-0.316409][0.947203,0.060698,0][0.12935,1.16237,0.134838][0.206317,-0.925914,-0.316411][0.943959,0.0598,0][0.224741,1.16429,0.150006][0.0759661,-0.929828,-0.360069][0.944129,0.058709,0][0.224741,1.16429,0.150006][0.0759661,-0.929828,-0.360069][0.944129,0.058709,0][0.224864,1.0529,0.437691][0.0759559,-0.929826,-0.360076][0.947498,0.058824,0][0.0411413,1.04925,0.408343][0.206334,-0.925911,-0.316409][0.947203,0.060698,0][0.224864,1.0529,0.437691][0.0759559,-0.929826,-0.360076][0.947498,0.058824,0][0.224741,1.16429,0.150006][0.0759661,-0.929828,-0.360069][0.944129,0.058709,0][0.320151,1.1638,0.13488][-0.0619358,-0.930749,-0.360374][0.944032,0.057601,0][0.320151,1.1638,0.13488][-0.0619358,-0.930749,-0.360374][0.944032,0.057601,0][0.408657,1.05196,0.408522][-0.0619324,-0.93075,-0.360373][0.947377,0.056911,0][0.224864,1.0529,0.437691][0.0759559,-0.929826,-0.360076][0.947498,0.058824,0][0.408657,1.05196,0.408522][-0.0619324,-0.93075,-0.360373][0.947377,0.056911,0][0.320151,1.1638,0.13488][-0.0619358,-0.930749,-0.360374][0.944032,0.057601,0][0.406158,1.16095,0.0909634][-0.192748,-0.928574,-0.317173][0.943665,0.056531,0][0.406158,1.16095,0.0909634][-0.192748,-0.928574,-0.317173][0.943665,0.056531,0][0.574219,1.04654,0.323761][-0.192766,-0.928571,-0.317172][0.946827,0.055029,0][0.408657,1.05196,0.408522][-0.0619324,-0.93075,-0.360373][0.947377,0.056911,0][0.574219,1.04654,0.323761][-0.192766,-0.928571,-0.317172][0.946827,0.055029,0][0.406158,1.16095,0.0909634][-0.192748,-0.928574,-0.317173][0.943665,0.056531,0][0.474287,1.15602,0.0226162][-0.302841,-0.923553,-0.23524][0.943032,0.055558,0][0.474287,1.15602,0.0226162][-0.302841,-0.923553,-0.23524][0.943032,0.055558,0][0.705137,1.03719,0.19194][-0.30285,-0.923551,-0.235237][0.945839,0.053254,0][0.574219,1.04654,0.323761][-0.192766,-0.928571,-0.317172][0.946827,0.055029,0][0.705137,1.03719,0.19194][-0.30285,-0.923551,-0.235237][0.945839,0.053254,0][0.474287,1.15602,0.0226162][-0.302841,-0.923553,-0.23524][0.943032,0.055558,0][0.51786,1.1495,-0.0633859][-0.381004,-0.916277,-0.12358][0.942148,0.054746,0][0.51786,1.1495,-0.0633859][-0.381004,-0.916277,-0.12358][0.942148,0.054746,0][0.788566,1.02484,0.0262795][-0.381008,-0.916276,-0.123577][0.944405,0.051677,0][0.705137,1.03719,0.19194][-0.30285,-0.923551,-0.235237][0.945839,0.053254,0][0.788566,1.02484,0.0262795][-0.381008,-0.916276,-0.123577][0.944405,0.051677,0][0.51786,1.1495,-0.0633859][-0.381004,-0.916277,-0.12358][0.942148,0.054746,0][0.532656,1.14204,-0.158551][-0.419878,-0.907561,0.00589208][0.941039,0.054162,0][0.532656,1.14204,-0.158551][-0.419878,-0.907561,0.00589208][0.941039,0.054162,0][0.816501,1.01073,-0.156737][-0.419884,-0.907559,0.00590208][0.94253,0.050402,0][0.788566,1.02484,0.0262795][-0.381008,-0.916276,-0.123577][0.944405,0.051677,0][0.816501,1.01073,-0.156737][-0.419884,-0.907559,0.00590208][0.94253,0.050402,0][0.532656,1.14204,-0.158551][-0.419878,-0.907561,0.00589208][0.941039,0.054162,0][0.517304,1.13436,-0.253531][-0.416467,-0.898322,0.1399][0.939756,0.05388,0][0.517304,1.13436,-0.253531][-0.416467,-0.898322,0.1399][0.939756,0.05388,0][0.786497,0.996242,-0.339074][-0.416464,-0.898326,0.139884][0.940241,0.049567,0][0.816501,1.01073,-0.156737][-0.419884,-0.907559,0.00590208][0.94253,0.050402,0][0.786497,0.996242,-0.339074][-0.416464,-0.898326,0.139884][0.940241,0.049567,0][0.517304,1.13436,-0.253531][-0.416467,-0.898322,0.1399][0.939756,0.05388,0][0.473391,1.12723,-0.339046][-0.372081,-0.889485,0.265278][0.938375,0.053967,0][0.473391,1.12723,-0.339046][-0.372081,-0.889485,0.265278][0.938375,0.053967,0][0.701795,0.982802,-0.502949][-0.372082,-0.889487,0.265271][0.937586,0.049357,0][0.786497,0.996242,-0.339074][-0.416464,-0.898326,0.139884][0.940241,0.049567,0][0.701795,0.982802,-0.502949][-0.372082,-0.889487,0.265271][0.937586,0.049357,0][0.473391,1.12723,-0.339046][-0.372081,-0.889485,0.265278][0.938375,0.053967,0][0.405269,1.12133,-0.406789][-0.291877,-0.881858,0.370317][0.937016,0.054462,0][0.405269,1.12133,-0.406789][-0.291877,-0.881858,0.370317][0.937016,0.054462,0][0.570892,0.971704,-0.632559][-0.291883,-0.881861,0.370305][0.934825,0.04992,0][0.701795,0.982802,-0.502949][-0.372082,-0.889487,0.265271][0.937586,0.049357,0][0.570892,0.971704,-0.632559][-0.291883,-0.881861,0.370305][0.934825,0.04992,0][0.405269,1.12133,-0.406789][-0.291877,-0.881858,0.370317][0.937016,0.054462,0][0.319615,1.11723,-0.450214][-0.184019,-0.876105,0.445619][0.935809,0.055422,0][0.319615,1.11723,-0.450214][-0.184019,-0.876105,0.445619][0.935809,0.055422,0][0.406627,0.96401,-0.715867][-0.184622,-0.876316,0.444956][0.932008,0.051632,0][0.570892,0.971704,-0.632559][-0.291883,-0.881861,0.370305][0.934825,0.04992,0][0.406627,0.96401,-0.715867][-0.184622,-0.876316,0.444956][0.932008,0.051632,0][0.319615,1.11723,-0.450214][-0.184019,-0.876105,0.445619][0.935809,0.055422,0][0.224771,1.11533,-0.465143][-0.0587799,-0.872959,0.484239][0.934936,0.056765,0][0.224771,1.11533,-0.465143][-0.0587799,-0.872959,0.484239][0.934936,0.056765,0][0.225778,0.960404,-0.752763][-0.0789011,-0.877767,0.472546][0.929864,0.054173,0][0.406627,0.96401,-0.715867][-0.184622,-0.876316,0.444956][0.932008,0.051632,0][0.0432793,0.961349,-0.720691][0.206001,-0.876748,0.4346][0.928743,0.057404,0][0.225778,0.960404,-0.752763][-0.0789011,-0.877767,0.472546][0.929864,0.054173,0][0.224771,1.11533,-0.465143][-0.0587799,-0.872959,0.484239][0.934936,0.056765,0][0.224771,1.11533,-0.465143][-0.0587799,-0.872959,0.484239][0.934936,0.056765,0][0.129944,1.11582,-0.450145][0.206001,-0.876748,0.4346][0.934519,0.058364,0][0.0432793,0.961349,-0.720691][0.206001,-0.876748,0.4346][0.928743,0.057404,0][-0.184036,0.743683,-0.896353][0.145379,-0.708849,0.690216][0.933292,0.071946,0][0.12553,0.732233,-0.973316][0.145379,-0.708849,0.690216][0.928265,0.070993,0][0.0432793,0.961349,-0.720691][0.206001,-0.876748,0.4346][0.93244,0.066248,0][0.0432793,0.961349,-0.720691][0.206001,-0.876748,0.4346][0.93244,0.066248,0][-0.120822,0.966665,-0.632182][0.206001,-0.876748,0.4346][0.935307,0.06719,0][-0.184036,0.743683,-0.896353][0.145379,-0.708849,0.690216][0.933292,0.071946,0][-0.430171,0.761194,-0.670492][0.426219,-0.738982,0.521769][0.93775,0.071656,0][-0.184036,0.743683,-0.896353][0.145379,-0.708849,0.690216][0.933292,0.071946,0][-0.120822,0.966665,-0.632182][0.206001,-0.876748,0.4346][0.935307,0.06719,0][-0.120822,0.966665,-0.632182][0.206001,-0.876748,0.4346][0.935307,0.06719,0][-0.251526,0.975845,-0.502552][0.304285,-0.87821,0.368997][0.937885,0.067471,0][-0.430171,0.761194,-0.670492][0.426219,-0.738982,0.521769][0.93775,0.071656,0][-0.562725,0.778941,-0.414243][0.569808,-0.745219,0.346365][0.941092,0.070832,0][-0.430171,0.761194,-0.670492][0.426219,-0.738982,0.521769][0.93775,0.071656,0][-0.251526,0.975845,-0.502552][0.304285,-0.87821,0.368997][0.937885,0.067471,0][-0.251526,0.975845,-0.502552][0.304285,-0.87821,0.368997][0.937885,0.067471,0][-0.336069,0.988034,-0.338788][0.383939,-0.884794,0.264065][0.940209,0.067206,0][-0.562725,0.778941,-0.414243][0.569808,-0.745219,0.346365][0.941092,0.070832,0][-0.605389,0.798011,-0.153848][0.640047,-0.751512,0.159904][0.943766,0.069622,0][-0.562725,0.778941,-0.414243][0.569808,-0.745219,0.346365][0.941092,0.070832,0][-0.336069,0.988034,-0.338788][0.383939,-0.884794,0.264065][0.940209,0.067206,0][-0.336069,0.988034,-0.338788][0.383939,-0.884794,0.264065][0.940209,0.067206,0][-0.366022,1.00206,-0.156651][0.428,-0.893001,0.139161][0.94226,0.066499,0][-0.605389,0.798011,-0.153848][0.640047,-0.751512,0.159904][0.943766,0.069622,0][-0.566834,0.817752,0.103277][0.647984,-0.760667,-0.0387609][0.946011,0.068041,0][-0.605389,0.798011,-0.153848][0.640047,-0.751512,0.159904][0.943766,0.069622,0][-0.366022,1.00206,-0.156651][0.428,-0.893001,0.139161][0.94226,0.066499,0][-0.366022,1.00206,-0.156651][0.428,-0.893001,0.139161][0.94226,0.066499,0][-0.338168,1.01657,0.0261576][0.431488,-0.9021,0.00584133][0.944012,0.065429,0][-0.566834,0.817752,0.103277][0.647984,-0.760667,-0.0387609][0.946011,0.068041,0][-0.450231,0.836242,0.336433][0.591538,-0.771374,-0.234661][0.947843,0.066125,0][-0.566834,0.817752,0.103277][0.647984,-0.760667,-0.0387609][0.946011,0.068041,0][-0.338168,1.01657,0.0261576][0.431488,-0.9021,0.00584133][0.944012,0.065429,0][-0.338168,1.01657,0.0261576][0.431488,-0.9021,0.00584133][0.944012,0.065429,0][-0.254928,1.03013,0.191678][0.393086,-0.911234,-0.123031][0.945437,0.064063,0][-0.450231,0.836242,0.336433][0.591538,-0.771374,-0.234661][0.947843,0.066125,0][-0.266577,0.851635,0.52234][0.475333,-0.7811,-0.404897][0.949231,0.063939,0][-0.450231,0.836242,0.336433][0.591538,-0.771374,-0.234661][0.947843,0.066125,0][-0.254928,1.03013,0.191678][0.393086,-0.911234,-0.123031][0.945437,0.064063,0][-0.254928,1.03013,0.191678][0.393086,-0.911234,-0.123031][0.945437,0.064063,0][-0.124239,1.0414,0.323479][0.315674,-0.919467,-0.234374][0.946509,0.062466,0][-0.266577,0.851635,0.52234][0.475333,-0.7811,-0.404897][0.949231,0.063939,0][-0.0337797,0.862374,0.642183][0.30973,-0.78875,-0.53098][0.950149,0.061543,0][-0.266577,0.851635,0.52234][0.475333,-0.7811,-0.404897][0.949231,0.063939,0][-0.124239,1.0414,0.323479][0.315674,-0.919467,-0.234374][0.946509,0.062466,0][-0.124239,1.0414,0.323479][0.315674,-0.919467,-0.234374][0.946509,0.062466,0][0.0411413,1.04925,0.408343][0.206334,-0.925911,-0.316409][0.947203,0.060698,0][-0.0337797,0.862374,0.642183][0.30973,-0.78875,-0.53098][0.950149,0.061543,0][0.225062,0.867359,0.683694][0.111255,-0.79341,-0.598434][0.95057,0.059008,0][-0.0337797,0.862374,0.642183][0.30973,-0.78875,-0.53098][0.950149,0.061543,0][0.0411413,1.04925,0.408343][0.206334,-0.925911,-0.316409][0.947203,0.060698,0][0.0411413,1.04925,0.408343][0.206334,-0.925911,-0.316409][0.947203,0.060698,0][0.224864,1.0529,0.437691][0.0759559,-0.929826,-0.360076][0.947498,0.058824,0][0.225062,0.867359,0.683694][0.111255,-0.79341,-0.598434][0.95057,0.059008,0][0.225062,0.867359,0.683694][0.111255,-0.79341,-0.598434][0.95057,0.059008,0][0.224864,1.0529,0.437691][0.0759559,-0.929826,-0.360076][0.947498,0.058824,0][0.408657,1.05196,0.408522][-0.0619324,-0.93075,-0.360373][0.947377,0.056911,0][0.408657,1.05196,0.408522][-0.0619324,-0.93075,-0.360373][0.947377,0.056911,0][0.48404,0.866077,0.642555][-0.0991041,-0.794501,-0.599121][0.950469,0.056406,0][0.225062,0.867359,0.683694][0.111255,-0.79341,-0.598434][0.95057,0.059008,0][0.48404,0.866077,0.642555][-0.0991041,-0.794501,-0.599121][0.950469,0.056406,0][0.408657,1.05196,0.408522][-0.0619324,-0.93075,-0.360373][0.947377,0.056911,0][0.574219,1.04654,0.323761][-0.192766,-0.928571,-0.317172][0.946827,0.055029,0][0.574219,1.04654,0.323761][-0.192766,-0.928571,-0.317172][0.946827,0.055029,0][0.717193,0.858661,0.522928][-0.298522,-0.791889,-0.532725][0.949825,0.053814,0][0.48404,0.866077,0.642555][-0.0991041,-0.794501,-0.599121][0.950469,0.056406,0][0.717193,0.858661,0.522928][-0.298522,-0.791889,-0.532725][0.949825,0.053814,0][0.574219,1.04654,0.323761][-0.192766,-0.928571,-0.317172][0.946827,0.055029,0][0.705137,1.03719,0.19194][-0.30285,-0.923551,-0.235237][0.945839,0.053254,0][0.705137,1.03719,0.19194][-0.30285,-0.923551,-0.235237][0.945839,0.053254,0][0.901288,0.84587,0.336993][-0.465603,-0.785888,-0.406932][0.948616,0.051311,0][0.717193,0.858661,0.522928][-0.298522,-0.791889,-0.532725][0.949825,0.053814,0][0.901288,0.84587,0.336993][-0.465603,-0.785888,-0.406932][0.948616,0.051311,0][0.705137,1.03719,0.19194][-0.30285,-0.923551,-0.235237][0.945839,0.053254,0][0.788566,1.02484,0.0262795][-0.381008,-0.916276,-0.123577][0.944405,0.051677,0][0.788566,1.02484,0.0262795][-0.381008,-0.916276,-0.123577][0.944405,0.051677,0][1.01825,0.829011,0.103569][-0.583226,-0.777241,-0.236103][0.94681,0.048991,0][0.901288,0.84587,0.336993][-0.465603,-0.785888,-0.406932][0.948616,0.051311,0][1.01825,0.829011,0.103569][-0.583226,-0.777241,-0.236103][0.94681,0.048991,0][0.788566,1.02484,0.0262795][-0.381008,-0.916276,-0.123577][0.944405,0.051677,0][0.816501,1.01073,-0.156737][-0.419884,-0.907559,0.00590208][0.94253,0.050402,0][0.816501,1.01073,-0.156737][-0.419884,-0.907559,0.00590208][0.94253,0.050402,0][1.0568,0.809777,-0.154782][-0.640842,-0.766705,-0.0385398][0.944369,0.046962,0][1.01825,0.829011,0.103569][-0.583226,-0.777241,-0.236103][0.94681,0.048991,0][1.0568,0.809777,-0.154782][-0.640842,-0.766705,-0.0385398][0.944369,0.046962,0][0.816501,1.01073,-0.156737][-0.419884,-0.907559,0.00590208][0.94253,0.050402,0][0.786497,0.996242,-0.339074][-0.416464,-0.898326,0.139884][0.940241,0.049567,0][0.786497,0.996242,-0.339074][-0.416464,-0.898326,0.139884][0.940241,0.049567,0][1.00981,0.78631,-0.408836][-0.641116,-0.744233,0.187317][0.941258,0.045401,0][1.0568,0.809777,-0.154782][-0.640842,-0.766705,-0.0385398][0.944369,0.046962,0][1.00981,0.78631,-0.408836][-0.641116,-0.744233,0.187317][0.941258,0.045401,0][0.786497,0.996242,-0.339074][-0.416464,-0.898326,0.139884][0.940241,0.049567,0][0.701795,0.982802,-0.502949][-0.372082,-0.889487,0.265271][0.937586,0.049357,0][0.701795,0.982802,-0.502949][-0.372082,-0.889487,0.265271][0.937586,0.049357,0][0.973524,0.696617,-0.803543][-0.572482,-0.786593,0.231377][0.935835,0.041925,0][1.00981,0.78631,-0.408836][-0.641116,-0.744233,0.187317][0.941258,0.045401,0][0.973524,0.696617,-0.803543][-0.572482,-0.786593,0.231377][0.935835,0.041925,0][0.701795,0.982802,-0.502949][-0.372082,-0.889487,0.265271][0.937586,0.049357,0][0.570892,0.971704,-0.632559][-0.291883,-0.881861,0.370305][0.934825,0.04992,0][0.570892,0.971704,-0.632559][-0.291883,-0.881861,0.370305][0.934825,0.04992,0][0.929627,0.701107,-0.893585][-0.493986,-0.84648,0.198619][0.934254,0.04188,0][0.973524,0.696617,-0.803543][-0.572482,-0.786593,0.231377][0.935835,0.041925,0][0.97088,0.65004,-0.923312][0.594052,0.0116531,0.804342][0.932505,0.037769,0][0.929627,0.701107,-0.893585][-0.493986,-0.84648,0.198619][0.934254,0.04188,0][0.570892,0.971704,-0.632559][-0.291883,-0.881861,0.370305][0.934825,0.04992,0][0.570892,0.971704,-0.632559][-0.291883,-0.881861,0.370305][0.934825,0.04992,0][0.406627,0.96401,-0.715867][-0.184622,-0.876316,0.444956][0.932008,0.051632,0][0.97088,0.65004,-0.923312][0.594052,0.0116531,0.804342][0.932505,0.037769,0][0.375034,0.741044,-0.990911][-0.186587,-0.752579,0.631515][0.92601,0.048603,0][0.97088,0.65004,-0.923312][0.594052,0.0116531,0.804342][0.932505,0.037769,0][0.406627,0.96401,-0.715867][-0.184622,-0.876316,0.444956][0.932008,0.051632,0][0.406627,0.96401,-0.715867][-0.184622,-0.876316,0.444956][0.932008,0.051632,0][0.225778,0.960404,-0.752763][-0.0789011,-0.877767,0.472546][0.929864,0.054173,0][0.375034,0.741044,-0.990911][-0.186587,-0.752579,0.631515][0.92601,0.048603,0][0.12553,0.732233,-0.973316][0.145379,-0.708849,0.690216][0.923619,0.052938,0][0.375034,0.741044,-0.990911][-0.186587,-0.752579,0.631515][0.92601,0.048603,0][0.225778,0.960404,-0.752763][-0.0789011,-0.877767,0.472546][0.929864,0.054173,0][0.225778,0.960404,-0.752763][-0.0789011,-0.877767,0.472546][0.929864,0.054173,0][0.0432793,0.961349,-0.720691][0.206001,-0.876748,0.4346][0.928743,0.057404,0][0.12553,0.732233,-0.973316][0.145379,-0.708849,0.690216][0.923619,0.052938,0][-0.235768,0.493425,-1.08192][0.162463,-0.601497,0.782181][0.93266,0.076278,0][0.194746,0.509452,-1.15901][0.162463,-0.601497,0.782181][0.92602,0.075712,0][0.12553,0.732233,-0.973316][0.145379,-0.708849,0.690216][0.928265,0.070993,0][0.12553,0.732233,-0.973316][0.145379,-0.708849,0.690216][0.928265,0.070993,0][-0.184036,0.743683,-0.896353][0.145379,-0.708849,0.690216][0.933292,0.071946,0][-0.235768,0.493425,-1.08192][0.162463,-0.601497,0.782181][0.93266,0.076278,0][-0.59012,0.504592,-0.815603][0.475253,-0.585328,0.656907][0.938191,0.075665,0][-0.235768,0.493425,-1.08192][0.162463,-0.601497,0.782181][0.93266,0.076278,0][-0.184036,0.743683,-0.896353][0.145379,-0.708849,0.690216][0.933292,0.071946,0][-0.184036,0.743683,-0.896353][0.145379,-0.708849,0.690216][0.933292,0.071946,0][-0.430171,0.761194,-0.670492][0.426219,-0.738982,0.521769][0.93775,0.071656,0][-0.59012,0.504592,-0.815603][0.475253,-0.585328,0.656907][0.938191,0.075665,0][-0.738015,0.530469,-0.485752][0.687979,-0.63129,0.357993][0.942049,0.074215,0][-0.59012,0.504592,-0.815603][0.475253,-0.585328,0.656907][0.938191,0.075665,0][-0.430171,0.761194,-0.670492][0.426219,-0.738982,0.521769][0.93775,0.071656,0][-0.430171,0.761194,-0.670492][0.426219,-0.738982,0.521769][0.93775,0.071656,0][-0.562725,0.778941,-0.414243][0.569808,-0.745219,0.346365][0.941092,0.070832,0][-0.738015,0.530469,-0.485752][0.687979,-0.63129,0.357993][0.942049,0.074215,0][-0.790686,0.552575,-0.15045][0.783597,-0.599607,0.162622][0.945339,0.072503,0][-0.738015,0.530469,-0.485752][0.687979,-0.63129,0.357993][0.942049,0.074215,0][-0.562725,0.778941,-0.414243][0.569808,-0.745219,0.346365][0.941092,0.070832,0][-0.562725,0.778941,-0.414243][0.569808,-0.745219,0.346365][0.941092,0.070832,0][-0.605389,0.798011,-0.153848][0.640047,-0.751512,0.159904][0.943766,0.069622,0][-0.790686,0.552575,-0.15045][0.783597,-0.599607,0.162622][0.945339,0.072503,0][-0.744017,0.573073,0.164309][0.79509,-0.60136,-0.0787244][0.948006,0.070494,0][-0.790686,0.552575,-0.15045][0.783597,-0.599607,0.162622][0.945339,0.072503,0][-0.605389,0.798011,-0.153848][0.640047,-0.751512,0.159904][0.943766,0.069622,0][-0.605389,0.798011,-0.153848][0.640047,-0.751512,0.159904][0.943766,0.069622,0][-0.566834,0.817752,0.103277][0.647984,-0.760667,-0.0387609][0.946011,0.068041,0][-0.744017,0.573073,0.164309][0.79509,-0.60136,-0.0787244][0.948006,0.070494,0][-0.601691,0.596917,0.450003][0.730372,-0.607016,-0.313192][0.95018,0.068075,0][-0.744017,0.573073,0.164309][0.79509,-0.60136,-0.0787244][0.948006,0.070494,0][-0.566834,0.817752,0.103277][0.647984,-0.760667,-0.0387609][0.946011,0.068041,0][-0.566834,0.817752,0.103277][0.647984,-0.760667,-0.0387609][0.946011,0.068041,0][-0.450231,0.836242,0.336433][0.591538,-0.771374,-0.234661][0.947843,0.066125,0][-0.601691,0.596917,0.450003][0.730372,-0.607016,-0.313192][0.95018,0.068075,0][-0.377025,0.614175,0.678028][0.582498,-0.618769,-0.527087][0.951864,0.065366,0][-0.601691,0.596917,0.450003][0.730372,-0.607016,-0.313192][0.95018,0.068075,0][-0.450231,0.836242,0.336433][0.591538,-0.771374,-0.234661][0.947843,0.066125,0][-0.450231,0.836242,0.336433][0.591538,-0.771374,-0.234661][0.947843,0.066125,0][-0.266577,0.851635,0.52234][0.475333,-0.7811,-0.404897][0.949231,0.063939,0][-0.377025,0.614175,0.678028][0.582498,-0.618769,-0.527087][0.951864,0.065366,0][-0.0919027,0.627327,0.825142][0.380745,-0.624309,-0.682108][0.952994,0.062396,0][-0.377025,0.614175,0.678028][0.582498,-0.618769,-0.527087][0.951864,0.065366,0][-0.266577,0.851635,0.52234][0.475333,-0.7811,-0.404897][0.949231,0.063939,0][-0.266577,0.851635,0.52234][0.475333,-0.7811,-0.404897][0.949231,0.063939,0][-0.0337797,0.862374,0.642183][0.30973,-0.78875,-0.53098][0.950149,0.061543,0][-0.0919027,0.627327,0.825142][0.380745,-0.624309,-0.682108][0.952994,0.062396,0][0.225309,0.633029,0.876157][0.13443,-0.629156,-0.765566][0.953549,0.059257,0][-0.0919027,0.627327,0.825142][0.380745,-0.624309,-0.682108][0.952994,0.062396,0][-0.0337797,0.862374,0.642183][0.30973,-0.78875,-0.53098][0.950149,0.061543,0][-0.0337797,0.862374,0.642183][0.30973,-0.78875,-0.53098][0.950149,0.061543,0][0.225062,0.867359,0.683694][0.111255,-0.79341,-0.598434][0.95057,0.059008,0][0.225309,0.633029,0.876157][0.13443,-0.629156,-0.765566][0.953549,0.059257,0][0.225309,0.633029,0.876157][0.13443,-0.629156,-0.765566][0.953549,0.059257,0][0.225062,0.867359,0.683694][0.111255,-0.79341,-0.598434][0.95057,0.059008,0][0.48404,0.866077,0.642555][-0.0991041,-0.794501,-0.599121][0.950469,0.056406,0][0.48404,0.866077,0.642555][-0.0991041,-0.794501,-0.599121][0.950469,0.056406,0][0.542722,0.631633,0.825701][-0.124617,-0.630001,-0.766531][0.953496,0.056019,0][0.225309,0.633029,0.876157][0.13443,-0.629156,-0.765566][0.953549,0.059257,0][0.542722,0.631633,0.825701][-0.124617,-0.630001,-0.766531][0.953496,0.056019,0][0.48404,0.866077,0.642555][-0.0991041,-0.794501,-0.599121][0.950469,0.056406,0][0.717193,0.858661,0.522928][-0.298522,-0.791889,-0.532725][0.949825,0.053814,0][0.717193,0.858661,0.522928][-0.298522,-0.791889,-0.532725][0.949825,0.053814,0][0.828364,0.622054,0.678917][-0.372778,-0.626451,-0.68454][0.952813,0.052767,0][0.542722,0.631633,0.825701][-0.124617,-0.630001,-0.766531][0.953496,0.056019,0][0.828364,0.622054,0.678917][-0.372778,-0.626451,-0.68454][0.952813,0.052767,0][0.717193,0.858661,0.522928][-0.298522,-0.791889,-0.532725][0.949825,0.053814,0][0.901288,0.84587,0.336993][-0.465603,-0.785888,-0.406932][0.948616,0.051311,0][0.901288,0.84587,0.336993][-0.465603,-0.785888,-0.406932][0.948616,0.051311,0][1.05367,0.608089,0.450858][-0.575375,-0.622674,-0.530302][0.951454,0.049585,0][0.828364,0.622054,0.678917][-0.372778,-0.626451,-0.68454][0.952813,0.052767,0][1.05367,0.608089,0.450858][-0.575375,-0.622674,-0.530302][0.951454,0.049585,0][0.901288,0.84587,0.336993][-0.465603,-0.785888,-0.406932][0.948616,0.051311,0][1.01825,0.829011,0.103569][-0.583226,-0.777241,-0.236103][0.94681,0.048991,0][1.01825,0.829011,0.103569][-0.583226,-0.777241,-0.236103][0.94681,0.048991,0][1.19535,0.588465,0.158532][-0.729402,-0.608452,-0.312663][0.949328,0.046507,0][1.05367,0.608089,0.450858][-0.575375,-0.622674,-0.530302][0.951454,0.049585,0][1.19535,0.588465,0.158532][-0.729402,-0.608452,-0.312663][0.949328,0.046507,0][1.01825,0.829011,0.103569][-0.583226,-0.777241,-0.236103][0.94681,0.048991,0][1.0568,0.809777,-0.154782][-0.640842,-0.766705,-0.0385398][0.944369,0.046962,0][1.0568,0.809777,-0.154782][-0.640842,-0.766705,-0.0385398][0.944369,0.046962,0][1.23241,0.565542,-0.203382][-0.815415,-0.576968,-0.0469651][0.945973,0.043394,0][1.19535,0.588465,0.158532][-0.729402,-0.608452,-0.312663][0.949328,0.046507,0][1.23241,0.565542,-0.203382][-0.815415,-0.576968,-0.0469651][0.945973,0.043394,0][1.0568,0.809777,-0.154782][-0.640842,-0.766705,-0.0385398][0.944369,0.046962,0][1.00981,0.78631,-0.408836][-0.641116,-0.744233,0.187317][0.941258,0.045401,0][1.00981,0.78631,-0.408836][-0.641116,-0.744233,0.187317][0.941258,0.045401,0][1.15666,0.563938,-0.533302][-0.771463,-0.610249,0.180112][0.941631,0.041078,0][1.23241,0.565542,-0.203382][-0.815415,-0.576968,-0.0469651][0.945973,0.043394,0][1.15666,0.563938,-0.533302][-0.771463,-0.610249,0.180112][0.941631,0.041078,0][1.00981,0.78631,-0.408836][-0.641116,-0.744233,0.187317][0.941258,0.045401,0][0.973524,0.696617,-0.803543][-0.572482,-0.786593,0.231377][0.935835,0.041925,0][0.973524,0.696617,-0.803543][-0.572482,-0.786593,0.231377][0.935835,0.041925,0][1.08663,0.571198,-0.833568][-0.715969,-0.681721,0.150483][0.936747,0.039034,0][1.15666,0.563938,-0.533302][-0.771463,-0.610249,0.180112][0.941631,0.041078,0][0.693523,0.5242,-1.04505][-0.375566,-0.0664808,0.924408][0.926166,0.04046,0][1.02324,0.553438,-0.908986][-0.375566,-0.0664808,0.924408][0.931846,0.035602,0][0.97088,0.65004,-0.923312][0.594052,0.0116531,0.804342][0.932505,0.037769,0][0.97088,0.65004,-0.923312][0.594052,0.0116531,0.804342][0.932505,0.037769,0][0.375034,0.741044,-0.990911][-0.186587,-0.752579,0.631515][0.92601,0.048603,0][0.693523,0.5242,-1.04505][-0.375566,-0.0664808,0.924408][0.926166,0.04046,0][0.194746,0.509452,-1.15901][0.162463,-0.601497,0.782181][0.919199,0.048707,0][0.693523,0.5242,-1.04505][-0.375566,-0.0664808,0.924408][0.926166,0.04046,0][0.375034,0.741044,-0.990911][-0.186587,-0.752579,0.631515][0.92601,0.048603,0][0.375034,0.741044,-0.990911][-0.186587,-0.752579,0.631515][0.92601,0.048603,0][0.12553,0.732233,-0.973316][0.145379,-0.708849,0.690216][0.923619,0.052938,0][0.194746,0.509452,-1.15901][0.162463,-0.601497,0.782181][0.919199,0.048707,0][0.175575,0.304972,-1.26812][0.172147,-0.476253,0.862293][0.926142,0.079452,0][0.194746,0.509452,-1.15901][0.162463,-0.601497,0.782181][0.92602,0.075712,0][-0.235768,0.493425,-1.08192][0.162463,-0.601497,0.782181][0.93266,0.076278,0][-0.235768,0.493425,-1.08192][0.162463,-0.601497,0.782181][0.93266,0.076278,0][-0.313038,0.162241,-1.17516][0.26608,-0.31826,0.909897][0.933374,0.080821,0][0.175575,0.304972,-1.26812][0.172147,-0.476253,0.862293][0.926142,0.079452,0][-0.313038,0.162241,-1.17516][0.26608,-0.31826,0.909897][0.933374,0.080821,0][-0.235768,0.493425,-1.08192][0.162463,-0.601497,0.782181][0.93266,0.076278,0][-0.59012,0.504592,-0.815603][0.475253,-0.585328,0.656907][0.938191,0.075665,0][-0.59012,0.504592,-0.815603][0.475253,-0.585328,0.656907][0.938191,0.075665,0][-0.691242,0.11826,-0.87546][0.616497,-0.275639,0.737533][0.939381,0.080293,0][-0.313038,0.162241,-1.17516][0.26608,-0.31826,0.909897][0.933374,0.080821,0][-0.861501,0.178994,-0.516232][0.844654,-0.290729,0.449484][0.943649,0.07815,0][-0.691242,0.11826,-0.87546][0.616497,-0.275639,0.737533][0.939381,0.080293,0][-0.59012,0.504592,-0.815603][0.475253,-0.585328,0.656907][0.938191,0.075665,0][-0.59012,0.504592,-0.815603][0.475253,-0.585328,0.656907][0.938191,0.075665,0][-0.738015,0.530469,-0.485752][0.687979,-0.63129,0.357993][0.942049,0.074215,0][-0.861501,0.178994,-0.516232][0.844654,-0.290729,0.449484][0.943649,0.07815,0][-0.921172,0.192014,-0.146518][0.926614,-0.33956,0.161511][0.947454,0.07613,0][-0.861501,0.178994,-0.516232][0.844654,-0.290729,0.449484][0.943649,0.07815,0][-0.738015,0.530469,-0.485752][0.687979,-0.63129,0.357993][0.942049,0.074215,0][-0.738015,0.530469,-0.485752][0.687979,-0.63129,0.357993][0.942049,0.074215,0][-0.790686,0.552575,-0.15045][0.783597,-0.599607,0.162622][0.945339,0.072503,0][-0.921172,0.192014,-0.146518][0.926614,-0.33956,0.161511][0.947454,0.07613,0][-0.868737,0.189029,0.208928][0.930552,-0.338292,-0.140114][0.950783,0.073834,0][-0.921172,0.192014,-0.146518][0.926614,-0.33956,0.161511][0.947454,0.07613,0][-0.790686,0.552575,-0.15045][0.783597,-0.599607,0.162622][0.945339,0.072503,0][-0.790686,0.552575,-0.15045][0.783597,-0.599607,0.162622][0.945339,0.072503,0][-0.744017,0.573073,0.164309][0.79509,-0.60136,-0.0787244][0.948006,0.070494,0][-0.868737,0.189029,0.208928][0.930552,-0.338292,-0.140114][0.950783,0.073834,0][-0.708258,0.213455,0.531629][0.856431,-0.324756,-0.401321][0.953458,0.070808,0][-0.868737,0.189029,0.208928][0.930552,-0.338292,-0.140114][0.950783,0.073834,0][-0.744017,0.573073,0.164309][0.79509,-0.60136,-0.0787244][0.948006,0.070494,0][-0.744017,0.573073,0.164309][0.79509,-0.60136,-0.0787244][0.948006,0.070494,0][-0.601691,0.596917,0.450003][0.730372,-0.607016,-0.313192][0.95018,0.068075,0][-0.708258,0.213455,0.531629][0.856431,-0.324756,-0.401321][0.953458,0.070808,0][-0.454693,0.252786,0.789231][0.697567,-0.329318,-0.636356][0.955361,0.067313,0][-0.708258,0.213455,0.531629][0.856431,-0.324756,-0.401321][0.953458,0.070808,0][-0.601691,0.596917,0.450003][0.730372,-0.607016,-0.313192][0.95018,0.068075,0][-0.601691,0.596917,0.450003][0.730372,-0.607016,-0.313192][0.95018,0.068075,0][-0.377025,0.614175,0.678028][0.582498,-0.618769,-0.527087][0.951864,0.065366,0][-0.454693,0.252786,0.789231][0.697567,-0.329318,-0.636356][0.955361,0.067313,0][-0.132726,0.253447,0.95558][0.430774,-0.348707,-0.832368][0.956935,0.063653,0][-0.454693,0.252786,0.789231][0.697567,-0.329318,-0.636356][0.955361,0.067313,0][-0.377025,0.614175,0.678028][0.582498,-0.618769,-0.527087][0.951864,0.065366,0][-0.377025,0.614175,0.678028][0.582498,-0.618769,-0.527087][0.951864,0.065366,0][-0.0919027,0.627327,0.825142][0.380745,-0.624309,-0.682108][0.952994,0.062396,0][-0.132726,0.253447,0.95558][0.430774,-0.348707,-0.832368][0.956935,0.063653,0][0.225578,0.253773,1.0133][0.14985,-0.340233,-0.928325][0.957757,0.059725,0][-0.132726,0.253447,0.95558][0.430774,-0.348707,-0.832368][0.956935,0.063653,0][-0.0919027,0.627327,0.825142][0.380745,-0.624309,-0.682108][0.952994,0.062396,0][-0.0919027,0.627327,0.825142][0.380745,-0.624309,-0.682108][0.952994,0.062396,0][0.225309,0.633029,0.876157][0.13443,-0.629156,-0.765566][0.953549,0.059257,0][0.225578,0.253773,1.0133][0.14985,-0.340233,-0.928325][0.957757,0.059725,0][0.584123,0.289584,0.956164][-0.115108,-0.337868,-0.934128][0.957399,0.055644,0][0.225578,0.253773,1.0133][0.14985,-0.340233,-0.928325][0.957757,0.059725,0][0.225309,0.633029,0.876157][0.13443,-0.629156,-0.765566][0.953549,0.059257,0][0.225309,0.633029,0.876157][0.13443,-0.629156,-0.765566][0.953549,0.059257,0][0.542722,0.631633,0.825701][-0.124617,-0.630001,-0.766531][0.953496,0.056019,0][0.584123,0.289584,0.956164][-0.115108,-0.337868,-0.934128][0.957399,0.055644,0][0.584123,0.289584,0.956164][-0.115108,-0.337868,-0.934128][0.957399,0.055644,0][0.542722,0.631633,0.825701][-0.124617,-0.630001,-0.766531][0.953496,0.056019,0][0.828364,0.622054,0.678917][-0.372778,-0.626451,-0.68454][0.952813,0.052767,0][0.828364,0.622054,0.678917][-0.372778,-0.626451,-0.68454][0.952813,0.052767,0][0.90672,0.24375,0.790383][-0.467742,-0.337568,-0.816863][0.957089,0.051475,0][0.584123,0.289584,0.956164][-0.115108,-0.337868,-0.934128][0.957399,0.055644,0][0.90672,0.24375,0.790383][-0.467742,-0.337568,-0.816863][0.957089,0.051475,0][0.828364,0.622054,0.678917][-0.372778,-0.626451,-0.68454][0.952813,0.052767,0][1.05367,0.608089,0.450858][-0.575375,-0.622674,-0.530302][0.951454,0.049585,0][1.05367,0.608089,0.450858][-0.575375,-0.622674,-0.530302][0.951454,0.049585,0][1.16106,0.243226,0.532627][-0.668595,-0.344476,-0.659027][0.955457,0.04746,0][0.90672,0.24375,0.790383][-0.467742,-0.337568,-0.816863][0.957089,0.051475,0][1.16106,0.243226,0.532627][-0.668595,-0.344476,-0.659027][0.955457,0.04746,0][1.05367,0.608089,0.450858][-0.575375,-0.622674,-0.530302][0.951454,0.049585,0][1.19535,0.588465,0.158532][-0.729402,-0.608452,-0.312663][0.949328,0.046507,0][1.19535,0.588465,0.158532][-0.729402,-0.608452,-0.312663][0.949328,0.046507,0][1.32208,0.25133,0.208939][-0.826725,-0.37365,-0.420608][0.952819,0.043751,0][1.16106,0.243226,0.532627][-0.668595,-0.344476,-0.659027][0.955457,0.04746,0][1.32208,0.25133,0.208939][-0.826725,-0.37365,-0.420608][0.952819,0.043751,0][1.19535,0.588465,0.158532][-0.729402,-0.608452,-0.312663][0.949328,0.046507,0][1.23241,0.565542,-0.203382][-0.815415,-0.576968,-0.0469651][0.945973,0.043394,0][1.23241,0.565542,-0.203382][-0.815415,-0.576968,-0.0469651][0.945973,0.043394,0][1.35724,0.213407,-0.235076][-0.942827,-0.330026,-0.0464724][0.94892,0.039094,0][1.32208,0.25133,0.208939][-0.826725,-0.37365,-0.420608][0.952819,0.043751,0][1.35724,0.213407,-0.235076][-0.942827,-0.330026,-0.0464724][0.94892,0.039094,0][1.23241,0.565542,-0.203382][-0.815415,-0.576968,-0.0469651][0.945973,0.043394,0][1.15666,0.563938,-0.533302][-0.771463,-0.610249,0.180112][0.941631,0.041078,0][1.15666,0.563938,-0.533302][-0.771463,-0.610249,0.180112][0.941631,0.041078,0][1.23838,0.301904,-0.666263][-0.911301,-0.372856,0.17467][0.94238,0.036239,0][1.35724,0.213407,-0.235076][-0.942827,-0.330026,-0.0464724][0.94892,0.039094,0][1.23838,0.301904,-0.666263][-0.911301,-0.372856,0.17467][0.94238,0.036239,0][1.15666,0.563938,-0.533302][-0.771463,-0.610249,0.180112][0.941631,0.041078,0][1.08663,0.571198,-0.833568][-0.715969,-0.681721,0.150483][0.936747,0.039034,0][1.08663,0.571198,-0.833568][-0.715969,-0.681721,0.150483][0.936747,0.039034,0][1.07048,0.396855,-0.941657][-0.865578,-0.203485,0.457567][0.936307,0.035197,0][1.23838,0.301904,-0.666263][-0.911301,-0.372856,0.17467][0.94238,0.036239,0][1.00274,0.377278,-1.03617][-0.279558,-0.540427,0.793591][0.927654,0.033492,0][1.02324,0.553438,-0.908986][-0.375566,-0.0664808,0.924408][0.931846,0.035602,0][0.693523,0.5242,-1.04505][-0.375566,-0.0664808,0.924408][0.926166,0.04046,0][0.693523,0.5242,-1.04505][-0.375566,-0.0664808,0.924408][0.926166,0.04046,0][0.568221,0.375924,-1.23579][-0.321301,-0.633709,0.703689][0.92063,0.040122,0][1.00274,0.377278,-1.03617][-0.279558,-0.540427,0.793591][0.927654,0.033492,0][0.568221,0.375924,-1.23579][-0.321301,-0.633709,0.703689][0.92063,0.040122,0][0.693523,0.5242,-1.04505][-0.375566,-0.0664808,0.924408][0.926166,0.04046,0][0.194746,0.509452,-1.15901][0.162463,-0.601497,0.782181][0.919199,0.048707,0][0.194746,0.509452,-1.15901][0.162463,-0.601497,0.782181][0.919199,0.048707,0][0.175575,0.304972,-1.26812][0.172147,-0.476253,0.862293][0.9149,0.046486,0][0.568221,0.375924,-1.23579][-0.321301,-0.633709,0.703689][0.92063,0.040122,0][-0.118835,0.0403487,-1.21769][0.195446,-0.030647,0.980236][0.930745,0.082974,0][0.175575,0.304972,-1.26812][0.172147,-0.476253,0.862293][0.926142,0.079452,0][-0.313038,0.162241,-1.17516][0.26608,-0.31826,0.909897][0.933374,0.080821,0][-0.313038,0.162241,-1.17516][0.26608,-0.31826,0.909897][0.933374,0.080821,0][-0.447142,-0.192306,-1.09349][0.280085,0.113627,0.953227][0.936151,0.085221,0][-0.118835,0.0403487,-1.21769][0.195446,-0.030647,0.980236][0.930745,0.082974,0][-0.447142,-0.192306,-1.09349][0.280085,0.113627,0.953227][0.936151,0.085221,0][-0.313038,0.162241,-1.17516][0.26608,-0.31826,0.909897][0.933374,0.080821,0][-0.691242,0.11826,-0.87546][0.616497,-0.275639,0.737533][0.939381,0.080293,0][-0.691242,0.11826,-0.87546][0.616497,-0.275639,0.737533][0.939381,0.080293,0][-0.709955,-0.30179,-0.819338][0.707894,0.0624636,0.703551][0.941653,0.085465,0][-0.447142,-0.192306,-1.09349][0.280085,0.113627,0.953227][0.936151,0.085221,0][-0.709955,-0.30179,-0.819338][0.707894,0.0624636,0.703551][0.941653,0.085465,0][-0.691242,0.11826,-0.87546][0.616497,-0.275639,0.737533][0.939381,0.080293,0][-0.861501,0.178994,-0.516232][0.844654,-0.290729,0.449484][0.943649,0.07815,0][-0.861501,0.178994,-0.516232][0.844654,-0.290729,0.449484][0.943649,0.07815,0][-0.873385,-0.337253,-0.498017][0.891526,-0.00454127,0.452946][0.946597,0.084084,0][-0.709955,-0.30179,-0.819338][0.707894,0.0624636,0.703551][0.941653,0.085465,0][-0.873385,-0.337253,-0.498017][0.891526,-0.00454127,0.452946][0.946597,0.084084,0][-0.861501,0.178994,-0.516232][0.844654,-0.290729,0.449484][0.943649,0.07815,0][-0.921172,0.192014,-0.146518][0.926614,-0.33956,0.161511][0.947454,0.07613,0][-0.921172,0.192014,-0.146518][0.926614,-0.33956,0.161511][0.947454,0.07613,0][-0.933545,-0.367639,-0.141087][0.986171,-0.0202061,0.164497][0.951221,0.082174,0][-0.873385,-0.337253,-0.498017][0.891526,-0.00454127,0.452946][0.946597,0.084084,0][-0.880438,-0.346558,0.217956][0.989166,-0.0232755,-0.144944][0.955246,0.079002,0][-0.933545,-0.367639,-0.141087][0.986171,-0.0202061,0.164497][0.951221,0.082174,0][-0.921172,0.192014,-0.146518][0.926614,-0.33956,0.161511][0.947454,0.07613,0][-0.921172,0.192014,-0.146518][0.926614,-0.33956,0.161511][0.947454,0.07613,0][-0.868737,0.189029,0.208928][0.930552,-0.338292,-0.140114][0.950783,0.073834,0][-0.880438,-0.346558,0.217956][0.989166,-0.0232755,-0.144944][0.955246,0.079002,0][-0.880438,-0.346558,0.217956][0.989166,-0.0232755,-0.144944][0.955246,0.079002,0][-0.868737,0.189029,0.208928][0.930552,-0.338292,-0.140114][0.950783,0.073834,0][-0.708258,0.213455,0.531629][0.856431,-0.324756,-0.401321][0.953458,0.070808,0][-0.708258,0.213455,0.531629][0.856431,-0.324756,-0.401321][0.953458,0.070808,0][-0.718217,-0.384549,0.544132][0.893986,-0.0242435,-0.44744][0.95939,0.075748,0][-0.880438,-0.346558,0.217956][0.989166,-0.0232755,-0.144944][0.955246,0.079002,0][-0.462019,-0.312139,0.804195][0.715811,-0.0265106,-0.697791][0.961683,0.070796,0][-0.718217,-0.384549,0.544132][0.893986,-0.0242435,-0.44744][0.95939,0.075748,0][-0.708258,0.213455,0.531629][0.856431,-0.324756,-0.401321][0.953458,0.070808,0][-0.708258,0.213455,0.531629][0.856431,-0.324756,-0.401321][0.953458,0.070808,0][-0.454693,0.252786,0.789231][0.697567,-0.329318,-0.636356][0.955361,0.067313,0][-0.462019,-0.312139,0.804195][0.715811,-0.0265106,-0.697791][0.961683,0.070796,0][-0.462019,-0.312139,0.804195][0.715811,-0.0265106,-0.697791][0.961683,0.070796,0][-0.454693,0.252786,0.789231][0.697567,-0.329318,-0.636356][0.955361,0.067313,0][-0.132726,0.253447,0.95558][0.430774,-0.348707,-0.832368][0.956935,0.063653,0][-0.132726,0.253447,0.95558][0.430774,-0.348707,-0.832368][0.956935,0.063653,0][-0.13678,-0.343025,0.972286][0.456848,-0.028006,-0.889104][0.964325,0.066073,0][-0.462019,-0.312139,0.804195][0.715811,-0.0265106,-0.697791][0.961683,0.070796,0][0.225126,-0.326093,1.03051][0.160085,-0.0287219,-0.986685][0.965322,0.060631,0][-0.13678,-0.343025,0.972286][0.456848,-0.028006,-0.889104][0.964325,0.066073,0][-0.132726,0.253447,0.95558][0.430774,-0.348707,-0.832368][0.956935,0.063653,0][-0.132726,0.253447,0.95558][0.430774,-0.348707,-0.832368][0.956935,0.063653,0][0.225578,0.253773,1.0133][0.14985,-0.340233,-0.928325][0.957757,0.059725,0][0.225126,-0.326093,1.03051][0.160085,-0.0287219,-0.986685][0.965322,0.060631,0][0.225126,-0.326093,1.03051][0.160085,-0.0287219,-0.986685][0.965322,0.060631,0][0.225578,0.253773,1.0133][0.14985,-0.340233,-0.928325][0.957757,0.059725,0][0.584123,0.289584,0.956164][-0.115108,-0.337868,-0.934128][0.957399,0.055644,0][0.584123,0.289584,0.956164][-0.115108,-0.337868,-0.934128][0.957399,0.055644,0][0.58727,-0.384733,0.973118][-0.160509,-0.0255581,-0.986703][0.966411,0.05509,0][0.225126,-0.326093,1.03051][0.160085,-0.0287219,-0.986685][0.965322,0.060631,0][0.913126,-0.286572,0.805223][-0.452036,-0.024529,-0.891662][0.964101,0.049689,0][0.58727,-0.384733,0.973118][-0.160509,-0.0255581,-0.986703][0.966411,0.05509,0][0.584123,0.289584,0.956164][-0.115108,-0.337868,-0.934128][0.957399,0.055644,0][0.584123,0.289584,0.956164][-0.115108,-0.337868,-0.934128][0.957399,0.055644,0][0.90672,0.24375,0.790383][-0.467742,-0.337568,-0.816863][0.957089,0.051475,0][0.913126,-0.286572,0.805223][-0.452036,-0.024529,-0.891662][0.964101,0.049689,0][0.913126,-0.286572,0.805223][-0.452036,-0.024529,-0.891662][0.964101,0.049689,0][0.90672,0.24375,0.790383][-0.467742,-0.337568,-0.816863][0.957089,0.051475,0][1.16106,0.243226,0.532627][-0.668595,-0.344476,-0.659027][0.955457,0.04746,0][1.16106,0.243226,0.532627][-0.668595,-0.344476,-0.659027][0.955457,0.04746,0][1.16521,-0.292815,0.538532][-0.726824,-0.0131901,-0.686697][0.962295,0.044198,0][0.913126,-0.286572,0.805223][-0.452036,-0.024529,-0.891662][0.964101,0.049689,0][1.16521,-0.292815,0.538532][-0.726824,-0.0131901,-0.686697][0.962295,0.044198,0][1.16106,0.243226,0.532627][-0.668595,-0.344476,-0.659027][0.955457,0.04746,0][1.32208,0.25133,0.208939][-0.826725,-0.37365,-0.420608][0.952819,0.043751,0][1.32208,0.25133,0.208939][-0.826725,-0.37365,-0.420608][0.952819,0.043751,0][1.28195,-0.372426,0.126608][-0.952136,0.0993999,-0.289062][0.959797,0.037491,0][1.16521,-0.292815,0.538532][-0.726824,-0.0131901,-0.686697][0.962295,0.044198,0][1.28195,-0.372426,0.126608][-0.952136,0.0993999,-0.289062][0.959797,0.037491,0][1.32208,0.25133,0.208939][-0.826725,-0.37365,-0.420608][0.952819,0.043751,0][1.35724,0.213407,-0.235076][-0.942827,-0.330026,-0.0464724][0.94892,0.039094,0][1.35724,0.213407,-0.235076][-0.942827,-0.330026,-0.0464724][0.94892,0.039094,0][1.34235,-0.309134,-0.278801][-0.989184,0.0399886,-0.141123][0.954543,0.032563,0][1.28195,-0.372426,0.126608][-0.952136,0.0993999,-0.289062][0.959797,0.037491,0][1.25439,-0.077864,-0.656345][-0.972747,0.00832158,0.231718][0.946453,0.030872,0][1.34235,-0.309134,-0.278801][-0.989184,0.0399886,-0.141123][0.954543,0.032563,0][1.35724,0.213407,-0.235076][-0.942827,-0.330026,-0.0464724][0.94892,0.039094,0][1.35724,0.213407,-0.235076][-0.942827,-0.330026,-0.0464724][0.94892,0.039094,0][1.23838,0.301904,-0.666263][-0.911301,-0.372856,0.17467][0.94238,0.036239,0][1.25439,-0.077864,-0.656345][-0.972747,0.00832158,0.231718][0.946453,0.030872,0][1.03154,0.218299,-0.983916][-0.835298,-0.0208695,0.549401][0.936959,0.031485,0][1.25439,-0.077864,-0.656345][-0.972747,0.00832158,0.231718][0.946453,0.030872,0][1.23838,0.301904,-0.666263][-0.911301,-0.372856,0.17467][0.94238,0.036239,0][1.23838,0.301904,-0.666263][-0.911301,-0.372856,0.17467][0.94238,0.036239,0][1.07048,0.396855,-0.941657][-0.865578,-0.203485,0.457567][0.936307,0.035197,0][1.03154,0.218299,-0.983916][-0.835298,-0.0208695,0.549401][0.936959,0.031485,0][0.870682,0.237445,-1.11646][-0.413755,-0.126887,0.901502][0.923664,0.03352,0][1.00274,0.377278,-1.03617][-0.279558,-0.540427,0.793591][0.927654,0.033492,0][0.568221,0.375924,-1.23579][-0.321301,-0.633709,0.703689][0.92063,0.040122,0][0.568221,0.375924,-1.23579][-0.321301,-0.633709,0.703689][0.92063,0.040122,0][0.354978,0.22828,-1.28925][-0.317362,0.117664,0.940976][0.914886,0.04142,0][0.870682,0.237445,-1.11646][-0.413755,-0.126887,0.901502][0.923664,0.03352,0][0.354978,0.22828,-1.28925][-0.317362,0.117664,0.940976][0.914886,0.04142,0][0.568221,0.375924,-1.23579][-0.321301,-0.633709,0.703689][0.92063,0.040122,0][0.175575,0.304972,-1.26812][0.172147,-0.476253,0.862293][0.9149,0.046486,0][0.175575,0.304972,-1.26812][0.172147,-0.476253,0.862293][0.9149,0.046486,0][-0.118835,0.0403487,-1.21769][0.195446,-0.030647,0.980236][0.905835,0.048738,0][0.354978,0.22828,-1.28925][-0.317362,0.117664,0.940976][0.914886,0.04142,0][-0.300894,-0.0711866,-1.30511][0.552125,-0.828595,-0.092675][0.931566,0.085924,0][-0.118835,0.0403487,-1.21769][0.195446,-0.030647,0.980236][0.930745,0.082974,0][-0.447142,-0.192306,-1.09349][0.280085,0.113627,0.953227][0.936151,0.085221,0][-0.447142,-0.192306,-1.09349][0.280085,0.113627,0.953227][0.936151,0.085221,0][-0.561734,-0.41611,-1.02523][0.855698,-0.312268,0.412637][0.938692,0.088028,0][-0.300894,-0.0711866,-1.30511][0.552125,-0.828595,-0.092675][0.931566,0.085924,0][-0.561734,-0.41611,-1.02523][0.855698,-0.312268,0.412637][0.938692,0.088028,0][-0.447142,-0.192306,-1.09349][0.280085,0.113627,0.953227][0.936151,0.085221,0][-0.709955,-0.30179,-0.819338][0.707894,0.0624636,0.703551][0.941653,0.085465,0][-0.709955,-0.30179,-0.819338][0.707894,0.0624636,0.703551][0.941653,0.085465,0][-0.87437,-0.54703,-0.740974][0.707053,-0.264452,0.655852][0.94499,0.088327,0][-0.561734,-0.41611,-1.02523][0.855698,-0.312268,0.412637][0.938692,0.088028,0][-0.87437,-0.54703,-0.740974][0.707053,-0.264452,0.655852][0.94499,0.088327,0][-0.709955,-0.30179,-0.819338][0.707894,0.0624636,0.703551][0.941653,0.085465,0][-0.873385,-0.337253,-0.498017][0.891526,-0.00454127,0.452946][0.946597,0.084084,0][-0.873385,-0.337253,-0.498017][0.891526,-0.00454127,0.452946][0.946597,0.084084,0][-1.0295,-0.671411,-0.523687][0.835375,-0.417723,0.35729][0.948838,0.088447,0][-0.87437,-0.54703,-0.740974][0.707053,-0.264452,0.655852][0.94499,0.088327,0][-1.0295,-0.671411,-0.523687][0.835375,-0.417723,0.35729][0.948838,0.088447,0][-0.873385,-0.337253,-0.498017][0.891526,-0.00454127,0.452946][0.946597,0.084084,0][-0.933545,-0.367639,-0.141087][0.986171,-0.0202061,0.164497][0.951221,0.082174,0][-0.933545,-0.367639,-0.141087][0.986171,-0.0202061,0.164497][0.951221,0.082174,0][-1.09314,-0.771679,-0.141808][0.928445,-0.366847,0.0584158][0.954285,0.087465,0][-1.0295,-0.671411,-0.523687][0.835375,-0.417723,0.35729][0.948838,0.088447,0][-1.04328,-0.731522,0.252871][0.927146,-0.366087,-0.079881][0.958798,0.083809,0][-1.09314,-0.771679,-0.141808][0.928445,-0.366847,0.0584158][0.954285,0.087465,0][-0.933545,-0.367639,-0.141087][0.986171,-0.0202061,0.164497][0.951221,0.082174,0][-0.933545,-0.367639,-0.141087][0.986171,-0.0202061,0.164497][0.951221,0.082174,0][-0.880438,-0.346558,0.217956][0.989166,-0.0232755,-0.144944][0.955246,0.079002,0][-1.04328,-0.731522,0.252871][0.927146,-0.366087,-0.079881][0.958798,0.083809,0][-1.04328,-0.731522,0.252871][0.927146,-0.366087,-0.079881][0.958798,0.083809,0][-0.880438,-0.346558,0.217956][0.989166,-0.0232755,-0.144944][0.955246,0.079002,0][-0.718217,-0.384549,0.544132][0.893986,-0.0242435,-0.44744][0.95939,0.075748,0][-0.718217,-0.384549,0.544132][0.893986,-0.0242435,-0.44744][0.95939,0.075748,0][-0.840278,-0.765927,0.674912][0.810814,-0.404552,-0.422987][0.964458,0.079528,0][-1.04328,-0.731522,0.252871][0.927146,-0.366087,-0.079881][0.958798,0.083809,0][-0.532312,-0.708749,0.950832][0.646672,-0.424325,-0.633848][0.967528,0.073724,0][-0.840278,-0.765927,0.674912][0.810814,-0.404552,-0.422987][0.964458,0.079528,0][-0.718217,-0.384549,0.544132][0.893986,-0.0242435,-0.44744][0.95939,0.075748,0][-0.718217,-0.384549,0.544132][0.893986,-0.0242435,-0.44744][0.95939,0.075748,0][-0.462019,-0.312139,0.804195][0.715811,-0.0265106,-0.697791][0.961683,0.070796,0][-0.532312,-0.708749,0.950832][0.646672,-0.424325,-0.633848][0.967528,0.073724,0][-0.172195,-0.660279,1.09115][0.379812,-0.379268,-0.843741][0.969315,0.067772,0][-0.532312,-0.708749,0.950832][0.646672,-0.424325,-0.633848][0.967528,0.073724,0][-0.462019,-0.312139,0.804195][0.715811,-0.0265106,-0.697791][0.961683,0.070796,0][-0.462019,-0.312139,0.804195][0.715811,-0.0265106,-0.697791][0.961683,0.070796,0][-0.13678,-0.343025,0.972286][0.456848,-0.028006,-0.889104][0.964325,0.066073,0][-0.172195,-0.660279,1.09115][0.379812,-0.379268,-0.843741][0.969315,0.067772,0][-0.172195,-0.660279,1.09115][0.379812,-0.379268,-0.843741][0.969315,0.067772,0][-0.13678,-0.343025,0.972286][0.456848,-0.028006,-0.889104][0.964325,0.066073,0][0.225126,-0.326093,1.03051][0.160085,-0.0287219,-0.986685][0.965322,0.060631,0][0.225126,-0.326093,1.03051][0.160085,-0.0287219,-0.986685][0.965322,0.060631,0][0.226066,-0.732309,1.15057][0.0914752,-0.282056,-0.955027][0.971978,0.061503,0][-0.172195,-0.660279,1.09115][0.379812,-0.379268,-0.843741][0.969315,0.067772,0][0.226066,-0.732309,1.15057][0.0914752,-0.282056,-0.955027][0.971978,0.061503,0][0.225126,-0.326093,1.03051][0.160085,-0.0287219,-0.986685][0.965322,0.060631,0][0.58727,-0.384733,0.973118][-0.160509,-0.0255581,-0.986703][0.966411,0.05509,0][0.58727,-0.384733,0.973118][-0.160509,-0.0255581,-0.986703][0.966411,0.05509,0][0.624493,-0.788555,1.08743][-0.189017,-0.283556,-0.940143][0.973273,0.05481,0][0.226066,-0.732309,1.15057][0.0914752,-0.282056,-0.955027][0.971978,0.061503,0][0.98311,-0.723911,0.903004][-0.397622,-0.283665,-0.8726][0.971316,0.048096,0][0.624493,-0.788555,1.08743][-0.189017,-0.283556,-0.940143][0.973273,0.05481,0][0.58727,-0.384733,0.973118][-0.160509,-0.0255581,-0.986703][0.966411,0.05509,0][0.58727,-0.384733,0.973118][-0.160509,-0.0255581,-0.986703][0.966411,0.05509,0][0.913126,-0.286572,0.805223][-0.452036,-0.024529,-0.891662][0.964101,0.049689,0][0.98311,-0.723911,0.903004][-0.397622,-0.283665,-0.8726][0.971316,0.048096,0][0.98311,-0.723911,0.903004][-0.397622,-0.283665,-0.8726][0.971316,0.048096,0][0.913126,-0.286572,0.805223][-0.452036,-0.024529,-0.891662][0.964101,0.049689,0][1.16521,-0.292815,0.538532][-0.726824,-0.0131901,-0.686697][0.962295,0.044198,0][1.16521,-0.292815,0.538532][-0.726824,-0.0131901,-0.686697][0.962295,0.044198,0][1.24003,-0.733354,0.588403][-0.761937,-0.199178,-0.616263][0.969314,0.041279,0][0.98311,-0.723911,0.903004][-0.397622,-0.283665,-0.8726][0.971316,0.048096,0][1.24003,-0.733354,0.588403][-0.761937,-0.199178,-0.616263][0.969314,0.041279,0][1.16521,-0.292815,0.538532][-0.726824,-0.0131901,-0.686697][0.962295,0.044198,0][1.28195,-0.372426,0.126608][-0.952136,0.0993999,-0.289062][0.959797,0.037491,0][1.28195,-0.372426,0.126608][-0.952136,0.0993999,-0.289062][0.959797,0.037491,0][1.34969,-0.830584,0.0701987][-0.975448,-0.121619,-0.183605][0.965991,0.03207,0][1.24003,-0.733354,0.588403][-0.761937,-0.199178,-0.616263][0.969314,0.041279,0][1.44459,-0.674581,-0.318393][-0.955084,-0.107199,-0.276267][0.959404,0.027261,0][1.34969,-0.830584,0.0701987][-0.975448,-0.121619,-0.183605][0.965991,0.03207,0][1.28195,-0.372426,0.126608][-0.952136,0.0993999,-0.289062][0.959797,0.037491,0][1.28195,-0.372426,0.126608][-0.952136,0.0993999,-0.289062][0.959797,0.037491,0][1.34235,-0.309134,-0.278801][-0.989184,0.0399886,-0.141123][0.954543,0.032563,0][1.44459,-0.674581,-0.318393][-0.955084,-0.107199,-0.276267][0.959404,0.027261,0][1.40108,-0.395182,-0.606399][-0.960623,-0.257413,-0.104599][0.951666,0.027013,0][1.44459,-0.674581,-0.318393][-0.955084,-0.107199,-0.276267][0.959404,0.027261,0][1.34235,-0.309134,-0.278801][-0.989184,0.0399886,-0.141123][0.954543,0.032563,0][1.34235,-0.309134,-0.278801][-0.989184,0.0399886,-0.141123][0.954543,0.032563,0][1.25439,-0.077864,-0.656345][-0.972747,0.00832158,0.231718][0.946453,0.030872,0][1.40108,-0.395182,-0.606399][-0.960623,-0.257413,-0.104599][0.951666,0.027013,0][1.0941,0.00328189,-1.0145][-0.87995,-0.357531,0.312827][0.939441,0.027759,0][1.40108,-0.395182,-0.606399][-0.960623,-0.257413,-0.104599][0.951666,0.027013,0][1.25439,-0.077864,-0.656345][-0.972747,0.00832158,0.231718][0.946453,0.030872,0][1.25439,-0.077864,-0.656345][-0.972747,0.00832158,0.231718][0.946453,0.030872,0][1.03154,0.218299,-0.983916][-0.835298,-0.0208695,0.549401][0.936959,0.031485,0][1.0941,0.00328189,-1.0145][-0.87995,-0.357531,0.312827][0.939441,0.027759,0][0.705351,0.232262,-1.27791][0.010678,-0.999719,0.0211562][0.919,0.03397,0][0.870682,0.237445,-1.11646][-0.413755,-0.126887,0.901502][0.923664,0.03352,0][0.354978,0.22828,-1.28925][-0.317362,0.117664,0.940976][0.914886,0.04142,0][0.354978,0.22828,-1.28925][-0.317362,0.117664,0.940976][0.914886,0.04142,0][0.217294,0.0868329,-1.39792][-0.0191516,-0.597328,0.801769][0.909482,0.041327,0][0.705351,0.232262,-1.27791][0.010678,-0.999719,0.0211562][0.919,0.03397,0][0.217294,0.0868329,-1.39792][-0.0191516,-0.597328,0.801769][0.909482,0.041327,0][0.354978,0.22828,-1.28925][-0.317362,0.117664,0.940976][0.914886,0.04142,0][-0.118835,0.0403487,-1.21769][0.195446,-0.030647,0.980236][0.905835,0.048738,0][-0.118835,0.0403487,-1.21769][0.195446,-0.030647,0.980236][0.905835,0.048738,0][-0.300894,-0.0711866,-1.30511][0.552125,-0.828595,-0.092675][0.901214,0.049396,0][0.217294,0.0868329,-1.39792][-0.0191516,-0.597328,0.801769][0.909482,0.041327,0][-0.336727,-0.284662,-1.24772][0.675548,0.0835714,0.732564][0.933658,0.088384,0][-0.300894,-0.0711866,-1.30511][0.552125,-0.828595,-0.092675][0.931566,0.085924,0][-0.561734,-0.41611,-1.02523][0.855698,-0.312268,0.412637][0.938692,0.088028,0][-0.561734,-0.41611,-1.02523][0.855698,-0.312268,0.412637][0.938692,0.088028,0][-0.581696,-0.659688,-1.06085][0.739159,-0.156391,0.655123][0.939883,0.091406,0][-0.336727,-0.284662,-1.24772][0.675548,0.0835714,0.732564][0.933658,0.088384,0][-0.581696,-0.659688,-1.06085][0.739159,-0.156391,0.655123][0.939883,0.091406,0][-0.561734,-0.41611,-1.02523][0.855698,-0.312268,0.412637][0.938692,0.088028,0][-0.87437,-0.54703,-0.740974][0.707053,-0.264452,0.655852][0.94499,0.088327,0][-0.87437,-0.54703,-0.740974][0.707053,-0.264452,0.655852][0.94499,0.088327,0][-0.867222,-0.773923,-0.76793][0.726171,-0.0585069,0.68502][0.945574,0.091253,0][-0.581696,-0.659688,-1.06085][0.739159,-0.156391,0.655123][0.939883,0.091406,0][-0.867222,-0.773923,-0.76793][0.726171,-0.0585069,0.68502][0.945574,0.091253,0][-0.87437,-0.54703,-0.740974][0.707053,-0.264452,0.655852][0.94499,0.088327,0][-1.0295,-0.671411,-0.523687][0.835375,-0.417723,0.35729][0.948838,0.088447,0][-1.0295,-0.671411,-0.523687][0.835375,-0.417723,0.35729][0.948838,0.088447,0][-0.993661,-0.913774,-0.343836][0.830517,0.405876,0.381453][0.951743,0.09105,0][-0.867222,-0.773923,-0.76793][0.726171,-0.0585069,0.68502][0.945574,0.091253,0][-0.993661,-0.913774,-0.343836][0.830517,0.405876,0.381453][0.951743,0.09105,0][-1.0295,-0.671411,-0.523687][0.835375,-0.417723,0.35729][0.948838,0.088447,0][-1.09314,-0.771679,-0.141808][0.928445,-0.366847,0.0584158][0.954285,0.087465,0][-1.09314,-0.771679,-0.141808][0.928445,-0.366847,0.0584158][0.954285,0.087465,0][-1.0037,-0.959767,-0.288307][0.927113,0.188679,0.323825][0.953648,0.091663,0][-0.993661,-0.913774,-0.343836][0.830517,0.405876,0.381453][0.951743,0.09105,0][-1.0037,-0.959767,-0.288307][0.927113,0.188679,0.323825][0.953648,0.091663,0][-1.09314,-0.771679,-0.141808][0.928445,-0.366847,0.0584158][0.954285,0.087465,0][-1.04328,-0.731522,0.252871][0.927146,-0.366087,-0.079881][0.958798,0.083809,0][-1.04328,-0.731522,0.252871][0.927146,-0.366087,-0.079881][0.958798,0.083809,0][-0.909606,-1.04391,0.491761][0.936405,0.342594,-0.0759931][0.96529,0.085757,0][-1.0037,-0.959767,-0.288307][0.927113,0.188679,0.323825][0.953648,0.091663,0][-0.909606,-1.04391,0.491761][0.936405,0.342594,-0.0759931][0.96529,0.085757,0][-1.04328,-0.731522,0.252871][0.927146,-0.366087,-0.079881][0.958798,0.083809,0][-0.840278,-0.765927,0.674912][0.810814,-0.404552,-0.422987][0.964458,0.079528,0][-0.840278,-0.765927,0.674912][0.810814,-0.404552,-0.422987][0.964458,0.079528,0][-0.947245,-1.03133,0.54275][0.610392,-0.536298,0.582929][0.965724,0.084744,0][-0.909606,-1.04391,0.491761][0.936405,0.342594,-0.0759931][0.96529,0.085757,0][-0.546238,-1.05491,1.00115][0.753047,0.0239251,-0.657531][0.972794,0.076581,0][-0.947245,-1.03133,0.54275][0.610392,-0.536298,0.582929][0.965724,0.084744,0][-0.840278,-0.765927,0.674912][0.810814,-0.404552,-0.422987][0.964458,0.079528,0][-0.840278,-0.765927,0.674912][0.810814,-0.404552,-0.422987][0.964458,0.079528,0][-0.532312,-0.708749,0.950832][0.646672,-0.424325,-0.633848][0.967528,0.073724,0][-0.546238,-1.05491,1.00115][0.753047,0.0239251,-0.657531][0.972794,0.076581,0][-0.178143,-1.01442,1.11916][0.316711,-0.14891,-0.93676][0.975125,0.069807,0][-0.546238,-1.05491,1.00115][0.753047,0.0239251,-0.657531][0.972794,0.076581,0][-0.532312,-0.708749,0.950832][0.646672,-0.424325,-0.633848][0.967528,0.073724,0][-0.532312,-0.708749,0.950832][0.646672,-0.424325,-0.633848][0.967528,0.073724,0][-0.172195,-0.660279,1.09115][0.379812,-0.379268,-0.843741][0.969315,0.067772,0][-0.178143,-1.01442,1.11916][0.316711,-0.14891,-0.93676][0.975125,0.069807,0][-0.178143,-1.01442,1.11916][0.316711,-0.14891,-0.93676][0.975125,0.069807,0][-0.172195,-0.660279,1.09115][0.379812,-0.379268,-0.843741][0.969315,0.067772,0][0.226066,-0.732309,1.15057][0.0914752,-0.282056,-0.955027][0.971978,0.061503,0][0.226066,-0.732309,1.15057][0.0914752,-0.282056,-0.955027][0.971978,0.061503,0][0.425198,-1.11934,1.17226][0.085634,-0.0117811,-0.996257][0.979652,0.059364,0][-0.178143,-1.01442,1.11916][0.316711,-0.14891,-0.93676][0.975125,0.069807,0][0.226066,-0.732309,1.15057][0.0914752,-0.282056,-0.955027][0.971978,0.061503,0][0.624493,-0.788555,1.08743][-0.189017,-0.283556,-0.940143][0.973273,0.05481,0][0.439927,-1.09208,1.19311][-0.183119,-0.222088,-0.957677][0.978899,0.058542,0][0.439927,-1.09208,1.19311][-0.183119,-0.222088,-0.957677][0.978899,0.058542,0][0.425198,-1.11934,1.17226][0.085634,-0.0117811,-0.996257][0.979652,0.059364,0][0.226066,-0.732309,1.15057][0.0914752,-0.282056,-0.955027][0.971978,0.061503,0][0.994866,-1.08605,0.921945][-0.438158,-0.0461283,-0.897713][0.977831,0.046841,0][0.439927,-1.09208,1.19311][-0.183119,-0.222088,-0.957677][0.978899,0.058542,0][0.624493,-0.788555,1.08743][-0.189017,-0.283556,-0.940143][0.973273,0.05481,0][0.624493,-0.788555,1.08743][-0.189017,-0.283556,-0.940143][0.973273,0.05481,0][0.98311,-0.723911,0.903004][-0.397622,-0.283665,-0.8726][0.971316,0.048096,0][0.994866,-1.08605,0.921945][-0.438158,-0.0461283,-0.897713][0.977831,0.046841,0][1.27013,-1.06632,0.614035][-0.742338,-0.0590064,-0.667422][0.975272,0.039119,0][0.994866,-1.08605,0.921945][-0.438158,-0.0461283,-0.897713][0.977831,0.046841,0][0.98311,-0.723911,0.903004][-0.397622,-0.283665,-0.8726][0.971316,0.048096,0][0.98311,-0.723911,0.903004][-0.397622,-0.283665,-0.8726][0.971316,0.048096,0][1.24003,-0.733354,0.588403][-0.761937,-0.199178,-0.616263][0.969314,0.041279,0][1.27013,-1.06632,0.614035][-0.742338,-0.0590064,-0.667422][0.975272,0.039119,0][1.42394,-1.0165,0.204418][-0.925801,-0.111503,-0.361191][0.970595,0.031686,0][1.27013,-1.06632,0.614035][-0.742338,-0.0590064,-0.667422][0.975272,0.039119,0][1.24003,-0.733354,0.588403][-0.761937,-0.199178,-0.616263][0.969314,0.041279,0][1.24003,-0.733354,0.588403][-0.761937,-0.199178,-0.616263][0.969314,0.041279,0][1.34969,-0.830584,0.0701987][-0.975448,-0.121619,-0.183605][0.965991,0.03207,0][1.42394,-1.0165,0.204418][-0.925801,-0.111503,-0.361191][0.970595,0.031686,0][1.53598,-0.779357,-0.298928][-0.688785,-0.584597,-0.428743][0.961468,0.025418,0][1.42394,-1.0165,0.204418][-0.925801,-0.111503,-0.361191][0.970595,0.031686,0][1.34969,-0.830584,0.0701987][-0.975448,-0.121619,-0.183605][0.965991,0.03207,0][1.34969,-0.830584,0.0701987][-0.975448,-0.121619,-0.183605][0.965991,0.03207,0][1.44459,-0.674581,-0.318393][-0.955084,-0.107199,-0.276267][0.959404,0.027261,0][1.53598,-0.779357,-0.298928][-0.688785,-0.584597,-0.428743][0.961468,0.025418,0][1.43667,-0.509533,-0.567972][-0.650688,-0.642714,-0.404381][0.953746,0.025894,0][1.53598,-0.779357,-0.298928][-0.688785,-0.584597,-0.428743][0.961468,0.025418,0][1.44459,-0.674581,-0.318393][-0.955084,-0.107199,-0.276267][0.959404,0.027261,0][1.44459,-0.674581,-0.318393][-0.955084,-0.107199,-0.276267][0.959404,0.027261,0][1.40108,-0.395182,-0.606399][-0.960623,-0.257413,-0.104599][0.951666,0.027013,0][1.43667,-0.509533,-0.567972][-0.650688,-0.642714,-0.404381][0.953746,0.025894,0][1.21188,-0.244735,-0.912397][-0.868409,-0.107607,0.484032][0.94462,0.025371,0][1.43667,-0.509533,-0.567972][-0.650688,-0.642714,-0.404381][0.953746,0.025894,0][1.40108,-0.395182,-0.606399][-0.960623,-0.257413,-0.104599][0.951666,0.027013,0][1.40108,-0.395182,-0.606399][-0.960623,-0.257413,-0.104599][0.951666,0.027013,0][1.0941,0.00328189,-1.0145][-0.87995,-0.357531,0.312827][0.939441,0.027759,0][1.21188,-0.244735,-0.912397][-0.868409,-0.107607,0.484032][0.94462,0.025371,0][0.217294,0.0868329,-1.39792][-0.0191516,-0.597328,0.801769][0.909482,0.041327,0][0.182595,0.0562736,-1.46016][0.296015,-0.912329,0.282896][0.907334,0.040672,0][0.464685,0.184061,-1.34322][0.296015,-0.912329,0.282896][0.912816,0.036485,0][0.464685,0.184061,-1.34322][0.296015,-0.912329,0.282896][0.912816,0.036485,0][0.705351,0.232262,-1.27791][0.010678,-0.999719,0.0211562][0.919,0.03397,0][0.217294,0.0868329,-1.39792][-0.0191516,-0.597328,0.801769][0.909482,0.041327,0][0.182595,0.0562736,-1.46016][0.296015,-0.912329,0.282896][0.907334,0.040672,0][0.217294,0.0868329,-1.39792][-0.0191516,-0.597328,0.801769][0.909482,0.041327,0][-0.300894,-0.0711866,-1.30511][0.552125,-0.828595,-0.092675][0.901214,0.049396,0][-0.300894,-0.0711866,-1.30511][0.552125,-0.828595,-0.092675][0.901214,0.049396,0][-0.336727,-0.284662,-1.24772][0.675548,0.0835714,0.732564][0.897362,0.048339,0][0.182595,0.0562736,-1.46016][0.296015,-0.912329,0.282896][0.907334,0.040672,0][-0.801863,-0.504459,-1.30565][0.173784,-0.497291,-0.850001][0.59635,0.787614,0][-0.401544,-0.115181,-1.45155][0.173784,-0.497291,-0.850001][0.663521,0.745416,0][-0.361265,-0.171066,-1.41062][0.173784,-0.497291,-0.850001][0.670579,0.75588,0][-0.361265,-0.171066,-1.41062][0.173784,-0.497291,-0.850001][0.670579,0.75588,0][-0.707131,-0.592002,-1.28025][-0.00985976,-0.288427,-0.957451][0.602946,0.800809,0][-0.801863,-0.504459,-1.30565][0.173784,-0.497291,-0.850001][0.59635,0.787614,0][-0.801863,-0.504459,-1.30565][0.173784,-0.497291,-0.850001][0.59635,0.787614,0][-0.707131,-0.592002,-1.28025][-0.00985976,-0.288427,-0.957451][0.602946,0.800809,0][-1.01005,-0.715156,-0.983122][-0.400406,-0.627113,-0.668135][0.544773,0.819141,0][-1.01005,-0.715156,-0.983122][-0.400406,-0.627113,-0.668135][0.544773,0.819141,0][-1.08733,-0.620447,-0.95034][-0.680834,-0.328988,-0.654394][0.537274,0.804835,0][-0.801863,-0.504459,-1.30565][0.173784,-0.497291,-0.850001][0.59635,0.787614,0][-1.23954,-0.695034,-0.540545][-0.776774,-0.502267,-0.379934][0.475192,0.818953,0][-1.08733,-0.620447,-0.95034][-0.680834,-0.328988,-0.654394][0.537274,0.804835,0][-1.01005,-0.715156,-0.983122][-0.400406,-0.627113,-0.668135][0.544773,0.819141,0][-1.01005,-0.715156,-0.983122][-0.400406,-0.627113,-0.668135][0.544773,0.819141,0][-1.14734,-0.888751,-0.343588][-0.682804,-0.654692,-0.324279][0.417361,0.873427,0][-1.23954,-0.695034,-0.540545][-0.776774,-0.502267,-0.379934][0.475192,0.818953,0][-1.21806,-0.872777,-0.307505][-0.736116,-0.569188,-0.366277][0.387032,0.837951,0][-1.27337,-0.907536,-0.142327][-0.736116,-0.569188,-0.366277][0.379891,0.818827,0][-1.23954,-0.695034,-0.540545][-0.776774,-0.502267,-0.379934][0.475192,0.818953,0][-1.23954,-0.695034,-0.540545][-0.776774,-0.502267,-0.379934][0.475192,0.818953,0][-1.14734,-0.888751,-0.343588][-0.682804,-0.654692,-0.324279][0.417361,0.873427,0][-1.21806,-0.872777,-0.307505][-0.736116,-0.569188,-0.366277][0.387032,0.837951,0][-1.27337,-0.907536,-0.142327][-0.736116,-0.569188,-0.366277][0.379891,0.818827,0][-1.21806,-0.872777,-0.307505][-0.736116,-0.569188,-0.366277][0.387032,0.837951,0][-1.18725,-0.993745,0.387817][0.0942335,-0.980104,-0.174688][0.285273,0.779408,0][-1.18725,-0.993745,0.387817][0.0942335,-0.980104,-0.174688][0.285273,0.779408,0][-1.27935,-0.874486,0.320288][-0.79986,-0.599307,0.0324717][0.318771,0.770493,0][-1.27337,-0.907536,-0.142327][-0.736116,-0.569188,-0.366277][0.379891,0.818827,0][-1.27935,-0.874486,0.320288][-0.79986,-0.599307,0.0324717][0.318771,0.770493,0][-1.18725,-0.993745,0.387817][0.0942335,-0.980104,-0.174688][0.285273,0.779408,0][-1.10127,-0.994664,0.603709][-0.828419,-0.454021,0.328004][0.232264,0.697715,0][-1.10127,-0.994664,0.603709][-0.828419,-0.454021,0.328004][0.232264,0.697715,0][-0.986364,-0.897419,0.800639][-0.853865,-0.0417199,0.51882][0.227721,0.643077,0][-1.27935,-0.874486,0.320288][-0.79986,-0.599307,0.0324717][0.318771,0.770493,0][-0.986364,-0.897419,0.800639][-0.853865,-0.0417199,0.51882][0.227721,0.643077,0][-1.10127,-0.994664,0.603709][-0.828419,-0.454021,0.328004][0.232264,0.697715,0][-0.613048,-1.00944,1.14763][-0.683574,-0.41215,0.602378][0.173994,0.555394,0][-0.613048,-1.00944,1.14763][-0.683574,-0.41215,0.602378][0.173994,0.555394,0][-0.616285,-0.920907,1.14072][-0.675136,0.0328463,0.736962][0.187844,0.551947,0][-0.986364,-0.897419,0.800639][-0.853865,-0.0417199,0.51882][0.227721,0.643077,0][-0.616285,-0.920907,1.14072][-0.675136,0.0328463,0.736962][0.187844,0.551947,0][-0.613048,-1.00944,1.14763][-0.683574,-0.41215,0.602378][0.173994,0.555394,0][-0.19526,-0.895855,1.24134][-0.235695,0.0670672,0.96951][0.170681,0.47109,0][-0.19526,-0.895855,1.24134][-0.235695,0.0670672,0.96951][0.170681,0.47109,0][-0.212705,-0.745597,1.23314][-0.233826,0.0259128,0.971933][0.197802,0.472361,0][-0.616285,-0.920907,1.14072][-0.675136,0.0328463,0.736962][0.187844,0.551947,0][0.226428,-0.856126,1.2848][-0.106335,0.0418889,0.993448][0.178611,0.372169,0][-0.212705,-0.745597,1.23314][-0.233826,0.0259128,0.971933][0.197802,0.472361,0][-0.19526,-0.895855,1.24134][-0.235695,0.0670672,0.96951][0.170681,0.47109,0][-0.19526,-0.895855,1.24134][-0.235695,0.0670672,0.96951][0.170681,0.47109,0][0.428687,-1.00771,1.25088][-0.0691737,-0.304886,0.949874][0.137519,0.301054,0][0.226428,-0.856126,1.2848][-0.106335,0.0418889,0.993448][0.178611,0.372169,0][0.468107,-0.97768,1.2925][0.177298,0.409207,0.89505][0.154002,0.269161,0][0.665439,-0.894266,1.21527][0.177298,0.409207,0.89505][0.209971,0.247964,0][0.226428,-0.856126,1.2848][-0.106335,0.0418889,0.993448][0.178611,0.372169,0][0.226428,-0.856126,1.2848][-0.106335,0.0418889,0.993448][0.178611,0.372169,0][0.428687,-1.00771,1.25088][-0.0691737,-0.304886,0.949874][0.137519,0.301054,0][0.468107,-0.97768,1.2925][0.177298,0.409207,0.89505][0.154002,0.269161,0][0.665439,-0.894266,1.21527][0.177298,0.409207,0.89505][0.209971,0.247964,0][0.468107,-0.97768,1.2925][0.177298,0.409207,0.89505][0.154002,0.269161,0][1.04041,-0.986105,1.00565][0.434586,-0.219412,0.873495][0.269223,0.172331,0][1.04041,-0.986105,1.00565][0.434586,-0.219412,0.873495][0.269223,0.172331,0][1.06105,-0.876747,1.01285][0.455822,-0.143839,0.878372][0.284236,0.187769,0][0.665439,-0.894266,1.21527][0.177298,0.409207,0.89505][0.209971,0.247964,0][1.06105,-0.876747,1.01285][0.455822,-0.143839,0.878372][0.284236,0.187769,0][1.04041,-0.986105,1.00565][0.434586,-0.219412,0.873495][0.269223,0.172331,0][1.33557,-1.00905,0.666334][0.735799,-0.181784,0.652345][0.33953,0.120592,0][1.33557,-1.00905,0.666334][0.735799,-0.181784,0.652345][0.33953,0.120592,0][1.35888,-0.909171,0.676499][0.71657,-0.234063,0.657071][0.350034,0.135018,0][1.06105,-0.876747,1.01285][0.455822,-0.143839,0.878372][0.284236,0.187769,0][1.35888,-0.909171,0.676499][0.71657,-0.234063,0.657071][0.350034,0.135018,0][1.33557,-1.00905,0.666334][0.735799,-0.181784,0.652345][0.33953,0.120592,0][1.42394,-1.0165,0.204418][-0.925801,-0.111503,-0.361191][0.411666,0.068429,0][1.42394,-1.0165,0.204418][-0.925801,-0.111503,-0.361191][0.411666,0.068429,0][1.4899,-0.938028,0.11047][0.861032,-0.457231,0.222627][0.434039,0.075388,0][1.35888,-0.909171,0.676499][0.71657,-0.234063,0.657071][0.350034,0.135018,0][1.42394,-1.0165,0.204418][-0.925801,-0.111503,-0.361191][0.411666,0.068429,0][1.53598,-0.779357,-0.298928][-0.688785,-0.584597,-0.428743][0.515514,0.063977,0][1.4899,-0.938028,0.11047][0.861032,-0.457231,0.222627][0.434039,0.075388,0][1.53598,-0.779357,-0.298928][-0.688785,-0.584597,-0.428743][0.515514,0.063977,0][1.43667,-0.509533,-0.567972][-0.650688,-0.642714,-0.404381][0.588961,0.081391,0][1.4421,-0.492312,-0.573828][0.628571,-0.420818,-0.654073][0.595878,0.095312,0][1.4421,-0.492312,-0.573828][0.628571,-0.420818,-0.654073][0.595878,0.095312,0][1.43667,-0.509533,-0.567972][-0.650688,-0.642714,-0.404381][0.588961,0.081391,0][1.21188,-0.244735,-0.912397][-0.868409,-0.107607,0.484032][0.683835,0.098156,0][1.21188,-0.244735,-0.912397][-0.868409,-0.107607,0.484032][0.683835,0.098156,0][1.21713,-0.22346,-0.917591][0.65245,-0.327725,-0.683304][0.687309,0.112793,0][1.4421,-0.492312,-0.573828][0.628571,-0.420818,-0.654073][0.595878,0.095312,0][0.471787,0.207621,-1.35032][0.496667,-0.384201,-0.778275][0.813171,0.64073,0][0.464685,0.184061,-1.34322][0.296015,-0.912329,0.282896][0.814269,0.65035,0][0.182595,0.0562736,-1.46016][0.296015,-0.912329,0.282896][0.753275,0.6894,0][0.182595,0.0562736,-1.46016][0.296015,-0.912329,0.282896][0.753275,0.6894,0][0.147125,0.0881353,-1.43712][0.000711129,0.586468,-0.809972][0.741508,0.680793,0][0.471787,0.207621,-1.35032][0.496667,-0.384201,-0.778275][0.813171,0.64073,0][0.147125,0.0881353,-1.43712][0.000711129,0.586468,-0.809972][0.741508,0.680793,0][0.182595,0.0562736,-1.46016][0.296015,-0.912329,0.282896][0.753275,0.6894,0][-0.361265,-0.171066,-1.41062][0.173784,-0.497291,-0.850001][0.670579,0.75588,0][-0.361265,-0.171066,-1.41062][0.173784,-0.497291,-0.850001][0.670579,0.75588,0][-0.401544,-0.115181,-1.45155][0.173784,-0.497291,-0.850001][0.663521,0.745416,0][0.147125,0.0881353,-1.43712][0.000711129,0.586468,-0.809972][0.741508,0.680793,0][-0.569637,-0.317079,-1.18955][-0.688523,0.327098,-0.647258][0.600337,0.720303,0][-0.276602,0.00824666,-1.33686][-0.688523,0.327098,-0.647258][0.661433,0.692395,0][-0.336446,-0.105335,-1.3306][-0.688523,0.327098,-0.647258][0.647834,0.707001,0][-0.336446,-0.105335,-1.3306][-0.688523,0.327098,-0.647258][0.647834,0.707001,0][-0.61077,-0.46667,-1.1845][-0.60184,0.138919,-0.786441][0.590501,0.734296,0][-0.569637,-0.317079,-1.18955][-0.688523,0.327098,-0.647258][0.600337,0.720303,0][-0.910001,-0.459064,-0.897089][-0.681264,0.163219,-0.71361][0.544387,0.722649,0][-0.569637,-0.317079,-1.18955][-0.688523,0.327098,-0.647258][0.600337,0.720303,0][-0.61077,-0.46667,-1.1845][-0.60184,0.138919,-0.786441][0.590501,0.734296,0][-0.61077,-0.46667,-1.1845][-0.60184,0.138919,-0.786441][0.590501,0.734296,0][-0.921169,-0.605423,-0.893672][-0.691791,0.035949,-0.721202][0.537658,0.741629,0][-0.910001,-0.459064,-0.897089][-0.681264,0.163219,-0.71361][0.544387,0.722649,0][-1.04748,-0.581152,-0.530053][-0.941353,0.0640955,-0.331281][0.488978,0.721802,0][-0.910001,-0.459064,-0.897089][-0.681264,0.163219,-0.71361][0.544387,0.722649,0][-0.921169,-0.605423,-0.893672][-0.691791,0.035949,-0.721202][0.537658,0.741629,0][-0.921169,-0.605423,-0.893672][-0.691791,0.035949,-0.721202][0.537658,0.741629,0][-1.07555,-0.749044,-0.526814][-0.930926,0.149205,-0.33334][0.478534,0.74362,0][-1.04748,-0.581152,-0.530053][-0.941353,0.0640955,-0.331281][0.488978,0.721802,0][-1.11376,-0.701102,-0.138432][-0.979974,0.161592,-0.116357][0.430088,0.712431,0][-1.04748,-0.581152,-0.530053][-0.941353,0.0640955,-0.331281][0.488978,0.721802,0][-1.07555,-0.749044,-0.526814][-0.930926,0.149205,-0.33334][0.478534,0.74362,0][-1.07555,-0.749044,-0.526814][-0.930926,0.149205,-0.33334][0.478534,0.74362,0][-1.13631,-0.868187,-0.139776][-0.984501,0.133804,-0.113372][0.420074,0.734838,0][-1.11376,-0.701102,-0.138432][-0.979974,0.161592,-0.116357][0.430088,0.712431,0][-1.11376,-0.701102,-0.138432][-0.979974,0.161592,-0.116357][0.430088,0.712431,0][-1.13631,-0.868187,-0.139776][-0.984501,0.133804,-0.113372][0.420074,0.734838,0][-1.08859,-0.829027,0.262932][-0.985754,0.132225,0.103952][0.356025,0.704674,0][-1.08859,-0.829027,0.262932][-0.985754,0.132225,0.103952][0.356025,0.704674,0][-1.05966,-0.687817,0.262747][-0.972,0.199306,0.12447][0.371134,0.679488,0][-1.11376,-0.701102,-0.138432][-0.979974,0.161592,-0.116357][0.430088,0.712431,0][-0.855336,-0.750997,0.691404][-0.877309,0.180325,0.444761][0.298658,0.610543,0][-1.05966,-0.687817,0.262747][-0.972,0.199306,0.12447][0.371134,0.679488,0][-1.08859,-0.829027,0.262932][-0.985754,0.132225,0.103952][0.356025,0.704674,0][-1.08859,-0.829027,0.262932][-0.985754,0.132225,0.103952][0.356025,0.704674,0][-0.869554,-0.868392,0.714121][-0.87624,0.191679,0.442111][0.275878,0.620385,0][-0.855336,-0.750997,0.691404][-0.877309,0.180325,0.444761][0.298658,0.610543,0][-0.541162,-0.711774,0.971992][-0.665035,0.218725,0.714064][0.282926,0.534873,0][-0.855336,-0.750997,0.691404][-0.877309,0.180325,0.444761][0.298658,0.610543,0][-0.869554,-0.868392,0.714121][-0.87624,0.191679,0.442111][0.275878,0.620385,0][-0.869554,-0.868392,0.714121][-0.87624,0.191679,0.442111][0.275878,0.620385,0][-0.549138,-0.867551,1.01269][-0.665265,0.220416,0.713329][0.25582,0.539908,0][-0.541162,-0.711774,0.971992][-0.665035,0.218725,0.714064][0.282926,0.534873,0][-0.541162,-0.711774,0.971992][-0.665035,0.218725,0.714064][0.282926,0.534873,0][-0.549138,-0.867551,1.01269][-0.665265,0.220416,0.713329][0.25582,0.539908,0][-0.178929,-0.727285,1.12152][-0.359876,0.253033,0.898033][0.260324,0.464688,0][-0.178929,-0.727285,1.12152][-0.359876,0.253033,0.898033][0.260324,0.464688,0][-0.176054,-0.6641,1.10886][-0.366662,0.198861,0.908853][0.272992,0.462981,0][-0.541162,-0.711774,0.971992][-0.665035,0.218725,0.714064][0.282926,0.534873,0][0.226431,-0.74677,1.1672][-0.100225,0.199931,0.97467][0.259517,0.377386,0][-0.176054,-0.6641,1.10886][-0.366662,0.198861,0.908853][0.272992,0.462981,0][-0.178929,-0.727285,1.12152][-0.359876,0.253033,0.898033][0.260324,0.464688,0][-0.178929,-0.727285,1.12152][-0.359876,0.253033,0.898033][0.260324,0.464688,0][0.226367,-0.846696,1.17605][-0.10738,0.0877973,0.990334][0.238478,0.372332,0][0.226431,-0.74677,1.1672][-0.100225,0.199931,0.97467][0.259517,0.377386,0][0.628885,-0.798193,1.10359][0.166369,0.0869038,0.982227][0.284187,0.295208,0][0.226431,-0.74677,1.1672][-0.100225,0.199931,0.97467][0.259517,0.377386,0][0.226367,-0.846696,1.17605][-0.10738,0.0877973,0.990334][0.238478,0.372332,0][0.226367,-0.846696,1.17605][-0.10738,0.0877973,0.990334][0.238478,0.372332,0][0.631638,-0.882568,1.11187][0.164382,0.101758,0.981134][0.268951,0.286798,0][0.628885,-0.798193,1.10359][0.166369,0.0869038,0.982227][0.284187,0.295208,0][0.628885,-0.798193,1.10359][0.166369,0.0869038,0.982227][0.284187,0.295208,0][0.631638,-0.882568,1.11187][0.164382,0.101758,0.981134][0.268951,0.286798,0][0.99684,-0.857817,0.924978][0.44772,0.101887,0.88835][0.316618,0.221924,0][0.99684,-0.857817,0.924978][0.44772,0.101887,0.88835][0.316618,0.221924,0][0.991784,-0.732307,0.918165][0.444402,0.0663939,0.893364][0.336082,0.237254,0][0.628885,-0.798193,1.10359][0.166369,0.0869038,0.982227][0.284187,0.295208,0][0.991784,-0.732307,0.918165][0.444402,0.0663939,0.893364][0.336082,0.237254,0][0.99684,-0.857817,0.924978][0.44772,0.101887,0.88835][0.316618,0.221924,0][1.28157,-0.859966,0.622776][0.726467,0.0663916,0.683987][0.374983,0.165895,0][1.28157,-0.859966,0.622776][0.726467,0.0663916,0.683987][0.374983,0.165895,0][1.25482,-0.72599,0.602832][0.742844,0.24126,0.62448][0.391425,0.184605,0][0.991784,-0.732307,0.918165][0.444402,0.0663939,0.893364][0.336082,0.237254,0][1.36655,-0.807188,0.0795681][0.960917,0.217354,0.171452][0.462254,0.122327,0][1.25482,-0.72599,0.602832][0.742844,0.24126,0.62448][0.391425,0.184605,0][1.28157,-0.859966,0.622776][0.726467,0.0663916,0.683987][0.374983,0.165895,0][1.28157,-0.859966,0.622776][0.726467,0.0663916,0.683987][0.374983,0.165895,0][1.42111,-0.888009,0.046367][0.847997,0.498113,0.181064][0.458989,0.106456,0][1.36655,-0.807188,0.0795681][0.960917,0.217354,0.171452][0.462254,0.122327,0][1.36655,-0.807188,0.0795681][0.960917,0.217354,0.171452][0.462254,0.122327,0][1.42111,-0.888009,0.046367][0.847997,0.498113,0.181064][0.458989,0.106456,0][1.53598,-0.779357,-0.298928][-0.688785,-0.584597,-0.428743][0.515514,0.063977,0][1.53598,-0.779357,-0.298928][-0.688785,-0.584597,-0.428743][0.515514,0.063977,0][1.46643,-0.631295,-0.319945][0.809009,0.436009,0.394209][0.536428,0.093772,0][1.36655,-0.807188,0.0795681][0.960917,0.217354,0.171452][0.462254,0.122327,0][1.46643,-0.631295,-0.319945][0.809009,0.436009,0.394209][0.536428,0.093772,0][1.53598,-0.779357,-0.298928][-0.688785,-0.584597,-0.428743][0.515514,0.063977,0][1.4421,-0.492312,-0.573828][0.628571,-0.420818,-0.654073][0.595878,0.095312,0][1.4421,-0.492312,-0.573828][0.628571,-0.420818,-0.654073][0.595878,0.095312,0][1.41547,-0.316545,-0.638246][0.989433,0.144116,-0.0159058][0.620953,0.121518,0][1.46643,-0.631295,-0.319945][0.809009,0.436009,0.394209][0.536428,0.093772,0][1.41547,-0.316545,-0.638246][0.989433,0.144116,-0.0159058][0.620953,0.121518,0][1.4421,-0.492312,-0.573828][0.628571,-0.420818,-0.654073][0.595878,0.095312,0][1.21713,-0.22346,-0.917591][0.65245,-0.327725,-0.683304][0.687309,0.112793,0][1.21713,-0.22346,-0.917591][0.65245,-0.327725,-0.683304][0.687309,0.112793,0][1.12481,0.0277651,-1.02024][0.824602,0.0738313,-0.560874][0.728972,0.14796,0][1.41547,-0.316545,-0.638246][0.989433,0.144116,-0.0159058][0.620953,0.121518,0][0.286314,0.167673,-1.43036][0.149166,-0.978462,0.142691][0.767422,0.657935,0][0.738339,0.252535,-1.32098][0.149166,-0.978462,0.142691][0.863645,0.597369,0][0.471787,0.207621,-1.35032][0.496667,-0.384201,-0.778275][0.813171,0.64073,0][0.471787,0.207621,-1.35032][0.496667,-0.384201,-0.778275][0.813171,0.64073,0][0.147125,0.0881353,-1.43712][0.000711129,0.586468,-0.809972][0.741508,0.680793,0][0.286314,0.167673,-1.43036][0.149166,-0.978462,0.142691][0.767422,0.657935,0][-0.276602,0.00824666,-1.33686][-0.688523,0.327098,-0.647258][0.661433,0.692395,0][0.286314,0.167673,-1.43036][0.149166,-0.978462,0.142691][0.767422,0.657935,0][0.147125,0.0881353,-1.43712][0.000711129,0.586468,-0.809972][0.741508,0.680793,0][0.147125,0.0881353,-1.43712][0.000711129,0.586468,-0.809972][0.741508,0.680793,0][-0.336446,-0.105335,-1.3306][-0.688523,0.327098,-0.647258][0.647834,0.707001,0][-0.276602,0.00824666,-1.33686][-0.688523,0.327098,-0.647258][0.661433,0.692395,0][-0.45134,0.018576,-1.22489][-0.342945,0.721306,-0.601752][0.63077,0.682925,0][0.0382612,0.188703,-1.3][-0.342945,0.721306,-0.601752][0.713037,0.653047,0][-0.276602,0.00824666,-1.33686][-0.688523,0.327098,-0.647258][0.661433,0.692395,0][-0.276602,0.00824666,-1.33686][-0.688523,0.327098,-0.647258][0.661433,0.692395,0][-0.569637,-0.317079,-1.18955][-0.688523,0.327098,-0.647258][0.600337,0.720303,0][-0.45134,0.018576,-1.22489][-0.342945,0.721306,-0.601752][0.63077,0.682925,0][-0.764259,-0.110866,-0.874714][-0.766276,0.205979,-0.6086][0.565298,0.681427,0][-0.45134,0.018576,-1.22489][-0.342945,0.721306,-0.601752][0.63077,0.682925,0][-0.569637,-0.317079,-1.18955][-0.688523,0.327098,-0.647258][0.600337,0.720303,0][-0.569637,-0.317079,-1.18955][-0.688523,0.327098,-0.647258][0.600337,0.720303,0][-0.910001,-0.459064,-0.897089][-0.681264,0.163219,-0.71361][0.544387,0.722649,0][-0.764259,-0.110866,-0.874714][-0.766276,0.205979,-0.6086][0.565298,0.681427,0][-0.972844,-0.121403,-0.524719][-0.804019,0.366614,-0.468131][0.516479,0.665293,0][-0.764259,-0.110866,-0.874714][-0.766276,0.205979,-0.6086][0.565298,0.681427,0][-0.910001,-0.459064,-0.897089][-0.681264,0.163219,-0.71361][0.544387,0.722649,0][-0.910001,-0.459064,-0.897089][-0.681264,0.163219,-0.71361][0.544387,0.722649,0][-1.04748,-0.581152,-0.530053][-0.941353,0.0640955,-0.331281][0.488978,0.721802,0][-0.972844,-0.121403,-0.524719][-0.804019,0.366614,-0.468131][0.516479,0.665293,0][-1.03041,-0.188722,-0.13578][-0.98005,0.160465,-0.117271][0.467295,0.648268,0][-0.972844,-0.121403,-0.524719][-0.804019,0.366614,-0.468131][0.516479,0.665293,0][-1.04748,-0.581152,-0.530053][-0.941353,0.0640955,-0.331281][0.488978,0.721802,0][-1.04748,-0.581152,-0.530053][-0.941353,0.0640955,-0.331281][0.488978,0.721802,0][-1.11376,-0.701102,-0.138432][-0.979974,0.161592,-0.116357][0.430088,0.712431,0][-1.03041,-0.188722,-0.13578][-0.98005,0.160465,-0.117271][0.467295,0.648268,0][-1.03041,-0.188722,-0.13578][-0.98005,0.160465,-0.117271][0.467295,0.648268,0][-1.11376,-0.701102,-0.138432][-0.979974,0.161592,-0.116357][0.430088,0.712431,0][-1.05966,-0.687817,0.262747][-0.972,0.199306,0.12447][0.371134,0.679488,0][-1.05966,-0.687817,0.262747][-0.972,0.199306,0.12447][0.371134,0.679488,0][-0.970828,-0.215186,0.252865][-0.969316,0.18556,0.161228][0.421331,0.616658,0][-1.03041,-0.188722,-0.13578][-0.98005,0.160465,-0.117271][0.467295,0.648268,0][-0.776992,-0.311457,0.59272][-0.835091,0.167913,0.523859][0.372769,0.577537,0][-0.970828,-0.215186,0.252865][-0.969316,0.18556,0.161228][0.421331,0.616658,0][-1.05966,-0.687817,0.262747][-0.972,0.199306,0.12447][0.371134,0.679488,0][-1.05966,-0.687817,0.262747][-0.972,0.199306,0.12447][0.371134,0.679488,0][-0.855336,-0.750997,0.691404][-0.877309,0.180325,0.444761][0.298658,0.610543,0][-0.776992,-0.311457,0.59272][-0.835091,0.167913,0.523859][0.372769,0.577537,0][-0.776992,-0.311457,0.59272][-0.835091,0.167913,0.523859][0.372769,0.577537,0][-0.855336,-0.750997,0.691404][-0.877309,0.180325,0.444761][0.298658,0.610543,0][-0.541162,-0.711774,0.971992][-0.665035,0.218725,0.714064][0.282926,0.534873,0][-0.541162,-0.711774,0.971992][-0.665035,0.218725,0.714064][0.282926,0.534873,0][-0.514127,-0.27636,0.882218][-0.739029,0.17975,0.64925][0.354714,0.519055,0][-0.776992,-0.311457,0.59272][-0.835091,0.167913,0.523859][0.372769,0.577537,0][-0.148836,-0.333384,1.01718][-0.309733,0.210413,0.927249][0.335526,0.457768,0][-0.514127,-0.27636,0.882218][-0.739029,0.17975,0.64925][0.354714,0.519055,0][-0.541162,-0.711774,0.971992][-0.665035,0.218725,0.714064][0.282926,0.534873,0][-0.541162,-0.711774,0.971992][-0.665035,0.218725,0.714064][0.282926,0.534873,0][-0.176054,-0.6641,1.10886][-0.366662,0.198861,0.908853][0.272992,0.462981,0][-0.148836,-0.333384,1.01718][-0.309733,0.210413,0.927249][0.335526,0.457768,0][0.225698,-0.342576,1.07099][-0.130139,0.274802,0.952653][0.338823,0.394029,0][-0.148836,-0.333384,1.01718][-0.309733,0.210413,0.927249][0.335526,0.457768,0][-0.176054,-0.6641,1.10886][-0.366662,0.198861,0.908853][0.272992,0.462981,0][-0.176054,-0.6641,1.10886][-0.366662,0.198861,0.908853][0.272992,0.462981,0][0.226431,-0.74677,1.1672][-0.100225,0.199931,0.97467][0.259517,0.377386,0][0.225698,-0.342576,1.07099][-0.130139,0.274802,0.952653][0.338823,0.394029,0][0.5986,-0.389276,1.01208][0.179732,0.228098,0.956905][0.352812,0.330604,0][0.225698,-0.342576,1.07099][-0.130139,0.274802,0.952653][0.338823,0.394029,0][0.226431,-0.74677,1.1672][-0.100225,0.199931,0.97467][0.259517,0.377386,0][0.226431,-0.74677,1.1672][-0.100225,0.199931,0.97467][0.259517,0.377386,0][0.628885,-0.798193,1.10359][0.166369,0.0869038,0.982227][0.284187,0.295208,0][0.5986,-0.389276,1.01208][0.179732,0.228098,0.956905][0.352812,0.330604,0][0.5986,-0.389276,1.01208][0.179732,0.228098,0.956905][0.352812,0.330604,0][0.628885,-0.798193,1.10359][0.166369,0.0869038,0.982227][0.284187,0.295208,0][0.991784,-0.732307,0.918165][0.444402,0.0663939,0.893364][0.336082,0.237254,0][0.991784,-0.732307,0.918165][0.444402,0.0663939,0.893364][0.336082,0.237254,0][0.935,-0.277595,0.840312][0.391162,0.202555,0.897755][0.401694,0.287064,0][0.5986,-0.389276,1.01208][0.179732,0.228098,0.956905][0.352812,0.330604,0][0.935,-0.277595,0.840312][0.391162,0.202555,0.897755][0.401694,0.287064,0][0.991784,-0.732307,0.918165][0.444402,0.0663939,0.893364][0.336082,0.237254,0][1.25482,-0.72599,0.602832][0.742844,0.24126,0.62448][0.391425,0.184605,0][1.25482,-0.72599,0.602832][0.742844,0.24126,0.62448][0.391425,0.184605,0][1.19954,-0.249811,0.569475][0.702528,0.130572,0.699575][0.447209,0.244976,0][0.935,-0.277595,0.840312][0.391162,0.202555,0.897755][0.401694,0.287064,0][1.34165,-0.255475,0.167916][0.935084,0.131619,0.329082][0.501788,0.201907,0][1.19954,-0.249811,0.569475][0.702528,0.130572,0.699575][0.447209,0.244976,0][1.25482,-0.72599,0.602832][0.742844,0.24126,0.62448][0.391425,0.184605,0][1.25482,-0.72599,0.602832][0.742844,0.24126,0.62448][0.391425,0.184605,0][1.36655,-0.807188,0.0795681][0.960917,0.217354,0.171452][0.462254,0.122327,0][1.34165,-0.255475,0.167916][0.935084,0.131619,0.329082][0.501788,0.201907,0][1.34165,-0.255475,0.167916][0.935084,0.131619,0.329082][0.501788,0.201907,0][1.36655,-0.807188,0.0795681][0.960917,0.217354,0.171452][0.462254,0.122327,0][1.46643,-0.631295,-0.319945][0.809009,0.436009,0.394209][0.536428,0.093772,0][1.46643,-0.631295,-0.319945][0.809009,0.436009,0.394209][0.536428,0.093772,0][1.39864,-0.182444,-0.266773][0.980022,0.130187,0.150361][0.572894,0.172441,0][1.34165,-0.255475,0.167916][0.935084,0.131619,0.329082][0.501788,0.201907,0][1.39864,-0.182444,-0.266773][0.980022,0.130187,0.150361][0.572894,0.172441,0][1.46643,-0.631295,-0.319945][0.809009,0.436009,0.394209][0.536428,0.093772,0][1.41547,-0.316545,-0.638246][0.989433,0.144116,-0.0159058][0.620953,0.121518,0][1.41547,-0.316545,-0.638246][0.989433,0.144116,-0.0159058][0.620953,0.121518,0][1.28833,0.0648337,-0.696318][0.949552,0.306248,-0.0675548][0.665587,0.182823,0][1.39864,-0.182444,-0.266773][0.980022,0.130187,0.150361][0.572894,0.172441,0][1.28833,0.0648337,-0.696318][0.949552,0.306248,-0.0675548][0.665587,0.182823,0][1.41547,-0.316545,-0.638246][0.989433,0.144116,-0.0159058][0.620953,0.121518,0][1.12481,0.0277651,-1.02024][0.824602,0.0738313,-0.560874][0.728972,0.14796,0][1.12481,0.0277651,-1.02024][0.824602,0.0738313,-0.560874][0.728972,0.14796,0][1.07738,0.245709,-0.992728][0.854236,0.243879,-0.459135][0.748787,0.193055,0][1.28833,0.0648337,-0.696318][0.949552,0.306248,-0.0675548][0.665587,0.182823,0][0.474715,0.326208,-1.32356][0.247829,0.872009,-0.422114][0.794148,0.601475,0][0.887618,0.284855,-1.16657][0.247829,0.872009,-0.422114][0.901435,0.55078,0][0.738339,0.252535,-1.32098][0.149166,-0.978462,0.142691][0.863645,0.597369,0][0.738339,0.252535,-1.32098][0.149166,-0.978462,0.142691][0.863645,0.597369,0][0.286314,0.167673,-1.43036][0.149166,-0.978462,0.142691][0.767422,0.657935,0][0.474715,0.326208,-1.32356][0.247829,0.872009,-0.422114][0.794148,0.601475,0][0.0382612,0.188703,-1.3][-0.342945,0.721306,-0.601752][0.713037,0.653047,0][0.474715,0.326208,-1.32356][0.247829,0.872009,-0.422114][0.794148,0.601475,0][0.286314,0.167673,-1.43036][0.149166,-0.978462,0.142691][0.767422,0.657935,0][0.286314,0.167673,-1.43036][0.149166,-0.978462,0.142691][0.767422,0.657935,0][-0.276602,0.00824666,-1.33686][-0.688523,0.327098,-0.647258][0.661433,0.692395,0][0.0382612,0.188703,-1.3][-0.342945,0.721306,-0.601752][0.713037,0.653047,0][-0.31653,0.31087,-1.27244][-0.125776,-0.143838,-0.981576][0.654061,0.641034,0][0.214301,0.415399,-1.35577][-0.125776,-0.143838,-0.981576][0.733678,0.607611,0][0.0382612,0.188703,-1.3][-0.342945,0.721306,-0.601752][0.713037,0.653047,0][0.0382612,0.188703,-1.3][-0.342945,0.721306,-0.601752][0.713037,0.653047,0][-0.45134,0.018576,-1.22489][-0.342945,0.721306,-0.601752][0.63077,0.682925,0][-0.31653,0.31087,-1.27244][-0.125776,-0.143838,-0.981576][0.654061,0.641034,0][-0.765508,0.260552,-0.940421][-0.598699,0.148093,-0.787164][0.583929,0.640114,0][-0.31653,0.31087,-1.27244][-0.125776,-0.143838,-0.981576][0.654061,0.641034,0][-0.45134,0.018576,-1.22489][-0.342945,0.721306,-0.601752][0.63077,0.682925,0][-0.45134,0.018576,-1.22489][-0.342945,0.721306,-0.601752][0.63077,0.682925,0][-0.764259,-0.110866,-0.874714][-0.766276,0.205979,-0.6086][0.565298,0.681427,0][-0.765508,0.260552,-0.940421][-0.598699,0.148093,-0.787164][0.583929,0.640114,0][-0.951109,0.295237,-0.540809][-0.906818,-0.0763861,-0.414544][0.538967,0.621202,0][-0.765508,0.260552,-0.940421][-0.598699,0.148093,-0.787164][0.583929,0.640114,0][-0.764259,-0.110866,-0.874714][-0.766276,0.205979,-0.6086][0.565298,0.681427,0][-0.764259,-0.110866,-0.874714][-0.766276,0.205979,-0.6086][0.565298,0.681427,0][-0.972844,-0.121403,-0.524719][-0.804019,0.366614,-0.468131][0.516479,0.665293,0][-0.951109,0.295237,-0.540809][-0.906818,-0.0763861,-0.414544][0.538967,0.621202,0][-1.00689,0.282908,-0.13845][-0.989653,0.0463841,-0.135777][0.50021,0.600963,0][-0.951109,0.295237,-0.540809][-0.906818,-0.0763861,-0.414544][0.538967,0.621202,0][-0.972844,-0.121403,-0.524719][-0.804019,0.366614,-0.468131][0.516479,0.665293,0][-0.972844,-0.121403,-0.524719][-0.804019,0.366614,-0.468131][0.516479,0.665293,0][-1.03041,-0.188722,-0.13578][-0.98005,0.160465,-0.117271][0.467295,0.648268,0][-1.00689,0.282908,-0.13845][-0.989653,0.0463841,-0.135777][0.50021,0.600963,0][-0.946526,0.233994,0.242832][-0.985449,0.0500572,0.162434][0.464173,0.577014,0][-1.00689,0.282908,-0.13845][-0.989653,0.0463841,-0.135777][0.50021,0.600963,0][-1.03041,-0.188722,-0.13578][-0.98005,0.160465,-0.117271][0.467295,0.648268,0][-1.03041,-0.188722,-0.13578][-0.98005,0.160465,-0.117271][0.467295,0.648268,0][-0.970828,-0.215186,0.252865][-0.969316,0.18556,0.161228][0.421331,0.616658,0][-0.946526,0.233994,0.242832][-0.985449,0.0500572,0.162434][0.464173,0.577014,0][-0.772832,0.224241,0.587719][-0.890948,0.0582625,0.450352][0.437563,0.542336,0][-0.946526,0.233994,0.242832][-0.985449,0.0500572,0.162434][0.464173,0.577014,0][-0.970828,-0.215186,0.252865][-0.969316,0.18556,0.161228][0.421331,0.616658,0][-0.970828,-0.215186,0.252865][-0.969316,0.18556,0.161228][0.421331,0.616658,0][-0.776992,-0.311457,0.59272][-0.835091,0.167913,0.523859][0.372769,0.577537,0][-0.772832,0.224241,0.587719][-0.890948,0.0582625,0.450352][0.437563,0.542336,0][-0.772832,0.224241,0.587719][-0.890948,0.0582625,0.450352][0.437563,0.542336,0][-0.776992,-0.311457,0.59272][-0.835091,0.167913,0.523859][0.372769,0.577537,0][-0.514127,-0.27636,0.882218][-0.739029,0.17975,0.64925][0.354714,0.519055,0][-0.514127,-0.27636,0.882218][-0.739029,0.17975,0.64925][0.354714,0.519055,0][-0.504212,0.22576,0.86735][-0.720821,0.0347312,0.69225][0.420987,0.50094,0][-0.772832,0.224241,0.587719][-0.890948,0.0582625,0.450352][0.437563,0.542336,0][-0.154676,0.200258,1.0348][-0.429682,0.0352017,0.902294][0.411922,0.456621,0][-0.504212,0.22576,0.86735][-0.720821,0.0347312,0.69225][0.420987,0.50094,0][-0.514127,-0.27636,0.882218][-0.739029,0.17975,0.64925][0.354714,0.519055,0][-0.514127,-0.27636,0.882218][-0.739029,0.17975,0.64925][0.354714,0.519055,0][-0.148836,-0.333384,1.01718][-0.309733,0.210413,0.927249][0.335526,0.457768,0][-0.154676,0.200258,1.0348][-0.429682,0.0352017,0.902294][0.411922,0.456621,0][0.226445,0.185729,1.09521][-0.15774,-0.0343115,0.986884][0.414955,0.410847,0][-0.154676,0.200258,1.0348][-0.429682,0.0352017,0.902294][0.411922,0.456621,0][-0.148836,-0.333384,1.01718][-0.309733,0.210413,0.927249][0.335526,0.457768,0][-0.148836,-0.333384,1.01718][-0.309733,0.210413,0.927249][0.335526,0.457768,0][0.225698,-0.342576,1.07099][-0.130139,0.274802,0.952653][0.338823,0.394029,0][0.226445,0.185729,1.09521][-0.15774,-0.0343115,0.986884][0.414955,0.410847,0][0.607567,0.222572,1.03472][0.160861,-0.0454205,0.985931][0.434273,0.36896,0][0.226445,0.185729,1.09521][-0.15774,-0.0343115,0.986884][0.414955,0.410847,0][0.225698,-0.342576,1.07099][-0.130139,0.274802,0.952653][0.338823,0.394029,0][0.225698,-0.342576,1.07099][-0.130139,0.274802,0.952653][0.338823,0.394029,0][0.5986,-0.389276,1.01208][0.179732,0.228098,0.956905][0.352812,0.330604,0][0.607567,0.222572,1.03472][0.160861,-0.0454205,0.985931][0.434273,0.36896,0][0.607567,0.222572,1.03472][0.160861,-0.0454205,0.985931][0.434273,0.36896,0][0.5986,-0.389276,1.01208][0.179732,0.228098,0.956905][0.352812,0.330604,0][0.935,-0.277595,0.840312][0.391162,0.202555,0.897755][0.401694,0.287064,0][0.935,-0.277595,0.840312][0.391162,0.202555,0.897755][0.401694,0.287064,0][0.958163,0.198977,0.868986][0.422062,-0.0748714,0.90347][0.457112,0.327723,0][0.607567,0.222572,1.03472][0.160861,-0.0454205,0.985931][0.434273,0.36896,0][0.958163,0.198977,0.868986][0.422062,-0.0748714,0.90347][0.457112,0.327723,0][0.935,-0.277595,0.840312][0.391162,0.202555,0.897755][0.401694,0.287064,0][1.19954,-0.249811,0.569475][0.702528,0.130572,0.699575][0.447209,0.244976,0][1.19954,-0.249811,0.569475][0.702528,0.130572,0.699575][0.447209,0.244976,0][1.22423,0.224906,0.58668][0.729158,-0.0626359,0.681473][0.492858,0.295728,0][0.958163,0.198977,0.868986][0.422062,-0.0748714,0.90347][0.457112,0.327723,0][1.22423,0.224906,0.58668][0.729158,-0.0626359,0.681473][0.492858,0.295728,0][1.19954,-0.249811,0.569475][0.702528,0.130572,0.699575][0.447209,0.244976,0][1.34165,-0.255475,0.167916][0.935084,0.131619,0.329082][0.501788,0.201907,0][1.34165,-0.255475,0.167916][0.935084,0.131619,0.329082][0.501788,0.201907,0][1.40185,0.279541,0.24334][0.886835,-0.160855,0.433185][0.537864,0.273068,0][1.22423,0.224906,0.58668][0.729158,-0.0626359,0.681473][0.492858,0.295728,0][1.44602,0.268045,-0.231023][0.987661,-0.124521,0.0949791][0.598999,0.244184,0][1.40185,0.279541,0.24334][0.886835,-0.160855,0.433185][0.537864,0.273068,0][1.34165,-0.255475,0.167916][0.935084,0.131619,0.329082][0.501788,0.201907,0][1.34165,-0.255475,0.167916][0.935084,0.131619,0.329082][0.501788,0.201907,0][1.39864,-0.182444,-0.266773][0.980022,0.130187,0.150361][0.572894,0.172441,0][1.44602,0.268045,-0.231023][0.987661,-0.124521,0.0949791][0.598999,0.244184,0][1.44602,0.268045,-0.231023][0.987661,-0.124521,0.0949791][0.598999,0.244184,0][1.39864,-0.182444,-0.266773][0.980022,0.130187,0.150361][0.572894,0.172441,0][1.28833,0.0648337,-0.696318][0.949552,0.306248,-0.0675548][0.665587,0.182823,0][1.28833,0.0648337,-0.696318][0.949552,0.306248,-0.0675548][0.665587,0.182823,0][1.31914,0.383329,-0.692569][0.954502,-0.0889762,-0.284621][0.682329,0.241414,0][1.44602,0.268045,-0.231023][0.987661,-0.124521,0.0949791][0.598999,0.244184,0][1.31914,0.383329,-0.692569][0.954502,-0.0889762,-0.284621][0.682329,0.241414,0][1.28833,0.0648337,-0.696318][0.949552,0.306248,-0.0675548][0.665587,0.182823,0][1.07738,0.245709,-0.992728][0.854236,0.243879,-0.459135][0.748787,0.193055,0][1.07738,0.245709,-0.992728][0.854236,0.243879,-0.459135][0.748787,0.193055,0][1.12291,0.438309,-0.949779][0.788878,-0.0498868,-0.612522][0.745107,0.234224,0][1.31914,0.383329,-0.692569][0.954502,-0.0889762,-0.284621][0.682329,0.241414,0][0.698093,0.443966,-1.26315][0.460144,0.0092081,-0.887796][0.826098,0.551127,0][1.02395,0.430593,-1.0944][0.460144,0.0092081,-0.887796][0.897591,0.4849,0][0.887618,0.284855,-1.16657][0.247829,0.872009,-0.422114][0.901435,0.55078,0][0.887618,0.284855,-1.16657][0.247829,0.872009,-0.422114][0.901435,0.55078,0][0.474715,0.326208,-1.32356][0.247829,0.872009,-0.422114][0.794148,0.601475,0][0.698093,0.443966,-1.26315][0.460144,0.0092081,-0.887796][0.826098,0.551127,0][0.214301,0.415399,-1.35577][-0.125776,-0.143838,-0.981576][0.733678,0.607611,0][0.698093,0.443966,-1.26315][0.460144,0.0092081,-0.887796][0.826098,0.551127,0][0.474715,0.326208,-1.32356][0.247829,0.872009,-0.422114][0.794148,0.601475,0][0.474715,0.326208,-1.32356][0.247829,0.872009,-0.422114][0.794148,0.601475,0][0.0382612,0.188703,-1.3][-0.342945,0.721306,-0.601752][0.713037,0.653047,0][0.214301,0.415399,-1.35577][-0.125776,-0.143838,-0.981576][0.733678,0.607611,0][-0.295548,0.554249,-1.24217][-0.117446,0.333938,-0.935249][0.652031,0.608048,0][0.221028,0.571547,-1.30086][-0.117446,0.333938,-0.935249][0.72327,0.581136,0][0.214301,0.415399,-1.35577][-0.125776,-0.143838,-0.981576][0.733678,0.607611,0][0.214301,0.415399,-1.35577][-0.125776,-0.143838,-0.981576][0.733678,0.607611,0][-0.31653,0.31087,-1.27244][-0.125776,-0.143838,-0.981576][0.654061,0.641034,0][-0.295548,0.554249,-1.24217][-0.117446,0.333938,-0.935249][0.652031,0.608048,0][-0.708615,0.567279,-0.932232][-0.5904,0.149534,-0.793137][0.593942,0.606674,0][-0.295548,0.554249,-1.24217][-0.117446,0.333938,-0.935249][0.652031,0.608048,0][-0.31653,0.31087,-1.27244][-0.125776,-0.143838,-0.981576][0.654061,0.641034,0][-0.31653,0.31087,-1.27244][-0.125776,-0.143838,-0.981576][0.654061,0.641034,0][-0.765508,0.260552,-0.940421][-0.598699,0.148093,-0.787164][0.583929,0.640114,0][-0.708615,0.567279,-0.932232][-0.5904,0.149534,-0.793137][0.593942,0.606674,0][-0.708615,0.567279,-0.932232][-0.5904,0.149534,-0.793137][0.593942,0.606674,0][-0.765508,0.260552,-0.940421][-0.598699,0.148093,-0.787164][0.583929,0.640114,0][-0.951109,0.295237,-0.540809][-0.906818,-0.0763861,-0.414544][0.538967,0.621202,0][-0.951109,0.295237,-0.540809][-0.906818,-0.0763861,-0.414544][0.538967,0.621202,0][-0.947389,0.58011,-0.55569][-0.844657,-0.0169197,-0.53504][0.551819,0.594994,0][-0.708615,0.567279,-0.932232][-0.5904,0.149534,-0.793137][0.593942,0.606674,0][-0.981734,0.564677,-0.139003][-0.996609,0.00874013,-0.0818209][0.517048,0.577249,0][-0.947389,0.58011,-0.55569][-0.844657,-0.0169197,-0.53504][0.551819,0.594994,0][-0.951109,0.295237,-0.540809][-0.906818,-0.0763861,-0.414544][0.538967,0.621202,0][-0.951109,0.295237,-0.540809][-0.906818,-0.0763861,-0.414544][0.538967,0.621202,0][-1.00689,0.282908,-0.13845][-0.989653,0.0463841,-0.135777][0.50021,0.600963,0][-0.981734,0.564677,-0.139003][-0.996609,0.00874013,-0.0818209][0.517048,0.577249,0][-0.954145,0.560514,0.245388][-0.993422,0.0888294,0.0722634][0.489269,0.554483,0][-0.981734,0.564677,-0.139003][-0.996609,0.00874013,-0.0818209][0.517048,0.577249,0][-1.00689,0.282908,-0.13845][-0.989653,0.0463841,-0.135777][0.50021,0.600963,0][-1.00689,0.282908,-0.13845][-0.989653,0.0463841,-0.135777][0.50021,0.600963,0][-0.946526,0.233994,0.242832][-0.985449,0.0500572,0.162434][0.464173,0.577014,0][-0.954145,0.560514,0.245388][-0.993422,0.0888294,0.0722634][0.489269,0.554483,0][-0.954145,0.560514,0.245388][-0.993422,0.0888294,0.0722634][0.489269,0.554483,0][-0.946526,0.233994,0.242832][-0.985449,0.0500572,0.162434][0.464173,0.577014,0][-0.772832,0.224241,0.587719][-0.890948,0.0582625,0.450352][0.437563,0.542336,0][-0.772832,0.224241,0.587719][-0.890948,0.0582625,0.450352][0.437563,0.542336,0][-0.78007,0.575596,0.591235][-0.892599,-0.0228931,0.45027][0.46956,0.52517,0][-0.954145,0.560514,0.245388][-0.993422,0.0888294,0.0722634][0.489269,0.554483,0][-0.501566,0.563917,0.863504][-0.699357,-0.0215556,0.714448][0.455379,0.492289,0][-0.78007,0.575596,0.591235][-0.892599,-0.0228931,0.45027][0.46956,0.52517,0][-0.772832,0.224241,0.587719][-0.890948,0.0582625,0.450352][0.437563,0.542336,0][-0.772832,0.224241,0.587719][-0.890948,0.0582625,0.450352][0.437563,0.542336,0][-0.504212,0.22576,0.86735][-0.720821,0.0347312,0.69225][0.420987,0.50094,0][-0.501566,0.563917,0.863504][-0.699357,-0.0215556,0.714448][0.455379,0.492289,0][-0.156951,0.576244,1.04658][-0.469495,0.0137148,0.882828][0.451308,0.45652,0][-0.501566,0.563917,0.863504][-0.699357,-0.0215556,0.714448][0.455379,0.492289,0][-0.504212,0.22576,0.86735][-0.720821,0.0347312,0.69225][0.420987,0.50094,0][-0.504212,0.22576,0.86735][-0.720821,0.0347312,0.69225][0.420987,0.50094,0][-0.154676,0.200258,1.0348][-0.429682,0.0352017,0.902294][0.411922,0.456621,0][-0.156951,0.576244,1.04658][-0.469495,0.0137148,0.882828][0.451308,0.45652,0][0.227941,0.542896,1.06749][-0.05695,-0.0316194,0.997876][0.453077,0.419866,0][-0.156951,0.576244,1.04658][-0.469495,0.0137148,0.882828][0.451308,0.45652,0][-0.154676,0.200258,1.0348][-0.429682,0.0352017,0.902294][0.411922,0.456621,0][-0.154676,0.200258,1.0348][-0.429682,0.0352017,0.902294][0.411922,0.456621,0][0.226445,0.185729,1.09521][-0.15774,-0.0343115,0.986884][0.414955,0.410847,0][0.227941,0.542896,1.06749][-0.05695,-0.0316194,0.997876][0.453077,0.419866,0][0.227941,0.542896,1.06749][-0.05695,-0.0316194,0.997876][0.453077,0.419866,0][0.226445,0.185729,1.09521][-0.15774,-0.0343115,0.986884][0.414955,0.410847,0][0.607567,0.222572,1.03472][0.160861,-0.0454205,0.985931][0.434273,0.36896,0][0.607567,0.222572,1.03472][0.160861,-0.0454205,0.985931][0.434273,0.36896,0][0.599412,0.566692,1.00782][0.153048,0.0806321,0.984924][0.468115,0.385686,0][0.227941,0.542896,1.06749][-0.05695,-0.0316194,0.997876][0.453077,0.419866,0][0.946431,0.54686,0.851179][0.413902,0.080701,0.906738][0.487256,0.352699,0][0.599412,0.566692,1.00782][0.153048,0.0806321,0.984924][0.468115,0.385686,0][0.607567,0.222572,1.03472][0.160861,-0.0454205,0.985931][0.434273,0.36896,0][0.607567,0.222572,1.03472][0.160861,-0.0454205,0.985931][0.434273,0.36896,0][0.958163,0.198977,0.868986][0.422062,-0.0748714,0.90347][0.457112,0.327723,0][0.946431,0.54686,0.851179][0.413902,0.080701,0.906738][0.487256,0.352699,0][0.946431,0.54686,0.851179][0.413902,0.080701,0.906738][0.487256,0.352699,0][0.958163,0.198977,0.868986][0.422062,-0.0748714,0.90347][0.457112,0.327723,0][1.22423,0.224906,0.58668][0.729158,-0.0626359,0.681473][0.492858,0.295728,0][1.22423,0.224906,0.58668][0.729158,-0.0626359,0.681473][0.492858,0.295728,0][1.19318,0.553297,0.562867][0.753122,0.118153,0.647184][0.517284,0.326152,0][0.946431,0.54686,0.851179][0.413902,0.080701,0.906738][0.487256,0.352699,0][1.19318,0.553297,0.562867][0.753122,0.118153,0.647184][0.517284,0.326152,0][1.22423,0.224906,0.58668][0.729158,-0.0626359,0.681473][0.492858,0.295728,0][1.40185,0.279541,0.24334][0.886835,-0.160855,0.433185][0.537864,0.273068,0][1.40185,0.279541,0.24334][0.886835,-0.160855,0.433185][0.537864,0.273068,0][1.36077,0.563155,0.22258][0.883666,0.160186,0.439858][0.555261,0.304582,0][1.19318,0.553297,0.562867][0.753122,0.118153,0.647184][0.517284,0.326152,0][1.39085,0.550251,-0.206591][0.986915,0.14768,0.0647197][0.608498,0.285525,0][1.36077,0.563155,0.22258][0.883666,0.160186,0.439858][0.555261,0.304582,0][1.40185,0.279541,0.24334][0.886835,-0.160855,0.433185][0.537864,0.273068,0][1.40185,0.279541,0.24334][0.886835,-0.160855,0.433185][0.537864,0.273068,0][1.44602,0.268045,-0.231023][0.987661,-0.124521,0.0949791][0.598999,0.244184,0][1.39085,0.550251,-0.206591][0.986915,0.14768,0.0647197][0.608498,0.285525,0][1.28428,0.580163,-0.592918][0.947213,0.206417,-0.245314][0.675526,0.281972,0][1.39085,0.550251,-0.206591][0.986915,0.14768,0.0647197][0.608498,0.285525,0][1.44602,0.268045,-0.231023][0.987661,-0.124521,0.0949791][0.598999,0.244184,0][1.44602,0.268045,-0.231023][0.987661,-0.124521,0.0949791][0.598999,0.244184,0][1.31914,0.383329,-0.692569][0.954502,-0.0889762,-0.284621][0.682329,0.241414,0][1.28428,0.580163,-0.592918][0.947213,0.206417,-0.245314][0.675526,0.281972,0][1.1249,0.586335,-0.846928][0.786211,0.384261,-0.483959][0.747074,0.278155,0][1.28428,0.580163,-0.592918][0.947213,0.206417,-0.245314][0.675526,0.281972,0][1.31914,0.383329,-0.692569][0.954502,-0.0889762,-0.284621][0.682329,0.241414,0][1.31914,0.383329,-0.692569][0.954502,-0.0889762,-0.284621][0.682329,0.241414,0][1.12291,0.438309,-0.949779][0.788878,-0.0498868,-0.612522][0.745107,0.234224,0][1.1249,0.586335,-0.846928][0.786211,0.384261,-0.483959][0.747074,0.278155,0][0.77283,0.583857,-1.16307][0.507739,0.526304,-0.68206][0.819749,0.5053,0][1.04647,0.601524,-0.945738][0.507739,0.526304,-0.68206][0.874474,0.416136,0][1.02395,0.430593,-1.0944][0.460144,0.0092081,-0.887796][0.897591,0.4849,0][1.02395,0.430593,-1.0944][0.460144,0.0092081,-0.887796][0.897591,0.4849,0][0.698093,0.443966,-1.26315][0.460144,0.0092081,-0.887796][0.826098,0.551127,0][0.77283,0.583857,-1.16307][0.507739,0.526304,-0.68206][0.819749,0.5053,0][0.221028,0.571547,-1.30086][-0.117446,0.333938,-0.935249][0.72327,0.581136,0][0.77283,0.583857,-1.16307][0.507739,0.526304,-0.68206][0.819749,0.5053,0][0.698093,0.443966,-1.26315][0.460144,0.0092081,-0.887796][0.826098,0.551127,0][0.698093,0.443966,-1.26315][0.460144,0.0092081,-0.887796][0.826098,0.551127,0][0.214301,0.415399,-1.35577][-0.125776,-0.143838,-0.981576][0.733678,0.607611,0][0.221028,0.571547,-1.30086][-0.117446,0.333938,-0.935249][0.72327,0.581136,0][0.157113,0.742725,-1.24617][-0.117609,0.262141,-0.957836][0.699053,0.560528,0][0.221028,0.571547,-1.30086][-0.117446,0.333938,-0.935249][0.72327,0.581136,0][-0.295548,0.554249,-1.24217][-0.117446,0.333938,-0.935249][0.652031,0.608048,0][-0.295548,0.554249,-1.24217][-0.117446,0.333938,-0.935249][0.652031,0.608048,0][-0.271132,0.754518,-1.18128][-0.134594,0.303243,-0.94336][0.647175,0.582928,0][0.157113,0.742725,-1.24617][-0.117609,0.262141,-0.957836][0.699053,0.560528,0][-0.271132,0.754518,-1.18128][-0.134594,0.303243,-0.94336][0.647175,0.582928,0][-0.295548,0.554249,-1.24217][-0.117446,0.333938,-0.935249][0.652031,0.608048,0][-0.708615,0.567279,-0.932232][-0.5904,0.149534,-0.793137][0.593942,0.606674,0][-0.708615,0.567279,-0.932232][-0.5904,0.149534,-0.793137][0.593942,0.606674,0][-0.629917,0.784991,-0.866097][-0.578105,0.421254,-0.698813][0.597039,0.582177,0][-0.271132,0.754518,-1.18128][-0.134594,0.303243,-0.94336][0.647175,0.582928,0][-0.629917,0.784991,-0.866097][-0.578105,0.421254,-0.698813][0.597039,0.582177,0][-0.708615,0.567279,-0.932232][-0.5904,0.149534,-0.793137][0.593942,0.606674,0][-0.947389,0.58011,-0.55569][-0.844657,-0.0169197,-0.53504][0.551819,0.594994,0][-0.947389,0.58011,-0.55569][-0.844657,-0.0169197,-0.53504][0.551819,0.594994,0][-0.851938,0.808362,-0.510812][-0.758679,0.415861,-0.501463][0.559329,0.573182,0][-0.629917,0.784991,-0.866097][-0.578105,0.421254,-0.698813][0.597039,0.582177,0][-0.851938,0.808362,-0.510812][-0.758679,0.415861,-0.501463][0.559329,0.573182,0][-0.947389,0.58011,-0.55569][-0.844657,-0.0169197,-0.53504][0.551819,0.594994,0][-0.981734,0.564677,-0.139003][-0.996609,0.00874013,-0.0818209][0.517048,0.577249,0][-0.981734,0.564677,-0.139003][-0.996609,0.00874013,-0.0818209][0.517048,0.577249,0][-0.891263,0.79835,-0.141957][-0.929196,0.358628,-0.08933][0.530418,0.558367,0][-0.851938,0.808362,-0.510812][-0.758679,0.415861,-0.501463][0.559329,0.573182,0][-0.851611,0.79024,0.212409][-0.926214,0.360016,0.111878][0.506096,0.539501,0][-0.891263,0.79835,-0.141957][-0.929196,0.358628,-0.08933][0.530418,0.558367,0][-0.981734,0.564677,-0.139003][-0.996609,0.00874013,-0.0818209][0.517048,0.577249,0][-0.981734,0.564677,-0.139003][-0.996609,0.00874013,-0.0818209][0.517048,0.577249,0][-0.954145,0.560514,0.245388][-0.993422,0.0888294,0.0722634][0.489269,0.554483,0][-0.851611,0.79024,0.212409][-0.926214,0.360016,0.111878][0.506096,0.539501,0][-0.851611,0.79024,0.212409][-0.926214,0.360016,0.111878][0.506096,0.539501,0][-0.954145,0.560514,0.245388][-0.993422,0.0888294,0.0722634][0.489269,0.554483,0][-0.78007,0.575596,0.591235][-0.892599,-0.0228931,0.45027][0.46956,0.52517,0][-0.78007,0.575596,0.591235][-0.892599,-0.0228931,0.45027][0.46956,0.52517,0][-0.683108,0.786988,0.524631][-0.767801,0.484325,0.419419][0.488427,0.514867,0][-0.851611,0.79024,0.212409][-0.926214,0.360016,0.111878][0.506096,0.539501,0][-0.683108,0.786988,0.524631][-0.767801,0.484325,0.419419][0.488427,0.514867,0][-0.78007,0.575596,0.591235][-0.892599,-0.0228931,0.45027][0.46956,0.52517,0][-0.501566,0.563917,0.863504][-0.699357,-0.0215556,0.714448][0.455379,0.492289,0][-0.501566,0.563917,0.863504][-0.699357,-0.0215556,0.714448][0.455379,0.492289,0][-0.420788,0.800087,0.754295][-0.585678,0.496559,0.640633][0.479138,0.48625,0][-0.683108,0.786988,0.524631][-0.767801,0.484325,0.419419][0.488427,0.514867,0][-0.116412,0.78566,0.914627][-0.38714,0.492771,0.779295][0.473996,0.456715,0][-0.420788,0.800087,0.754295][-0.585678,0.496559,0.640633][0.479138,0.48625,0][-0.501566,0.563917,0.863504][-0.699357,-0.0215556,0.714448][0.455379,0.492289,0][-0.501566,0.563917,0.863504][-0.699357,-0.0215556,0.714448][0.455379,0.492289,0][-0.156951,0.576244,1.04658][-0.469495,0.0137148,0.882828][0.451308,0.45652,0][-0.116412,0.78566,0.914627][-0.38714,0.492771,0.779295][0.473996,0.456715,0][0.226311,0.782652,0.983725][-0.160662,0.548253,0.820735][0.476545,0.425845,0][-0.116412,0.78566,0.914627][-0.38714,0.492771,0.779295][0.473996,0.456715,0][-0.156951,0.576244,1.04658][-0.469495,0.0137148,0.882828][0.451308,0.45652,0][-0.156951,0.576244,1.04658][-0.469495,0.0137148,0.882828][0.451308,0.45652,0][0.227941,0.542896,1.06749][-0.05695,-0.0316194,0.997876][0.453077,0.419866,0][0.226311,0.782652,0.983725][-0.160662,0.548253,0.820735][0.476545,0.425845,0][0.226311,0.782652,0.983725][-0.160662,0.548253,0.820735][0.476545,0.425845,0][0.227941,0.542896,1.06749][-0.05695,-0.0316194,0.997876][0.453077,0.419866,0][0.599412,0.566692,1.00782][0.153048,0.0806321,0.984924][0.468115,0.385686,0][0.599412,0.566692,1.00782][0.153048,0.0806321,0.984924][0.468115,0.385686,0][0.579522,0.790238,0.944215][0.100749,0.280554,0.954536][0.487578,0.396129,0][0.226311,0.782652,0.983725][-0.160662,0.548253,0.820735][0.476545,0.425845,0][0.88568,0.80195,0.762288][0.48262,0.279142,0.830156][0.507685,0.370554,0][0.579522,0.790238,0.944215][0.100749,0.280554,0.954536][0.487578,0.396129,0][0.599412,0.566692,1.00782][0.153048,0.0806321,0.984924][0.468115,0.385686,0][0.599412,0.566692,1.00782][0.153048,0.0806321,0.984924][0.468115,0.385686,0][0.946431,0.54686,0.851179][0.413902,0.080701,0.906738][0.487256,0.352699,0][0.88568,0.80195,0.762288][0.48262,0.279142,0.830156][0.507685,0.370554,0][0.88568,0.80195,0.762288][0.48262,0.279142,0.830156][0.507685,0.370554,0][0.946431,0.54686,0.851179][0.413902,0.080701,0.906738][0.487256,0.352699,0][1.19318,0.553297,0.562867][0.753122,0.118153,0.647184][0.517284,0.326152,0][1.19318,0.553297,0.562867][0.753122,0.118153,0.647184][0.517284,0.326152,0][1.11068,0.79354,0.499586][0.703373,0.39688,0.589706][0.533794,0.348645,0][0.88568,0.80195,0.762288][0.48262,0.279142,0.830156][0.507685,0.370554,0][1.2769,0.766739,0.198327][0.819936,0.391572,0.417583][0.565124,0.328502,0][1.11068,0.79354,0.499586][0.703373,0.39688,0.589706][0.533794,0.348645,0][1.19318,0.553297,0.562867][0.753122,0.118153,0.647184][0.517284,0.326152,0][1.19318,0.553297,0.562867][0.753122,0.118153,0.647184][0.517284,0.326152,0][1.36077,0.563155,0.22258][0.883666,0.160186,0.439858][0.555261,0.304582,0][1.2769,0.766739,0.198327][0.819936,0.391572,0.417583][0.565124,0.328502,0][1.31437,0.759179,-0.175366][0.917755,0.388125,0.0841725][0.610321,0.316692,0][1.2769,0.766739,0.198327][0.819936,0.391572,0.417583][0.565124,0.328502,0][1.36077,0.563155,0.22258][0.883666,0.160186,0.439858][0.555261,0.304582,0][1.36077,0.563155,0.22258][0.883666,0.160186,0.439858][0.555261,0.304582,0][1.39085,0.550251,-0.206591][0.986915,0.14768,0.0647197][0.608498,0.285525,0][1.31437,0.759179,-0.175366][0.917755,0.388125,0.0841725][0.610321,0.316692,0][1.2414,0.762931,-0.505368][0.910731,0.362849,-0.197253][0.663648,0.316685,0][1.31437,0.759179,-0.175366][0.917755,0.388125,0.0841725][0.610321,0.316692,0][1.39085,0.550251,-0.206591][0.986915,0.14768,0.0647197][0.608498,0.285525,0][1.39085,0.550251,-0.206591][0.986915,0.14768,0.0647197][0.608498,0.285525,0][1.28428,0.580163,-0.592918][0.947213,0.206417,-0.245314][0.675526,0.281972,0][1.2414,0.762931,-0.505368][0.910731,0.362849,-0.197253][0.663648,0.316685,0][1.02134,0.739771,-0.839761][0.743318,0.422718,-0.518448][0.791262,0.343017,0][1.2414,0.762931,-0.505368][0.910731,0.362849,-0.197253][0.663648,0.316685,0][1.28428,0.580163,-0.592918][0.947213,0.206417,-0.245314][0.675526,0.281972,0][1.28428,0.580163,-0.592918][0.947213,0.206417,-0.245314][0.675526,0.281972,0][1.1249,0.586335,-0.846928][0.786211,0.384261,-0.483959][0.747074,0.278155,0][1.02134,0.739771,-0.839761][0.743318,0.422718,-0.518448][0.791262,0.343017,0][1.00595,0.689546,-0.98119][0.622808,-0.0281596,-0.781868][0.847026,0.406635,0][1.04647,0.601524,-0.945738][0.507739,0.526304,-0.68206][0.874474,0.416136,0][0.77283,0.583857,-1.16307][0.507739,0.526304,-0.68206][0.819749,0.5053,0][0.77283,0.583857,-1.16307][0.507739,0.526304,-0.68206][0.819749,0.5053,0][0.553306,0.751882,-1.14643][0.353484,0.537673,-0.765478][0.751343,0.509597,0][1.00595,0.689546,-0.98119][0.622808,-0.0281596,-0.781868][0.847026,0.406635,0][0.553306,0.751882,-1.14643][0.353484,0.537673,-0.765478][0.751343,0.509597,0][0.77283,0.583857,-1.16307][0.507739,0.526304,-0.68206][0.819749,0.5053,0][0.221028,0.571547,-1.30086][-0.117446,0.333938,-0.935249][0.72327,0.581136,0][0.221028,0.571547,-1.30086][-0.117446,0.333938,-0.935249][0.72327,0.581136,0][0.157113,0.742725,-1.24617][-0.117609,0.262141,-0.957836][0.699053,0.560528,0][0.553306,0.751882,-1.14643][0.353484,0.537673,-0.765478][0.751343,0.509597,0][0.0400103,0.920181,-1.09008][-0.101023,0.618666,-0.779132][0.666678,0.543227,0][0.157113,0.742725,-1.24617][-0.117609,0.262141,-0.957836][0.699053,0.560528,0][-0.271132,0.754518,-1.18128][-0.134594,0.303243,-0.94336][0.647175,0.582928,0][-0.271132,0.754518,-1.18128][-0.134594,0.303243,-0.94336][0.647175,0.582928,0][-0.266962,0.929612,-0.982765][-0.202965,0.73646,-0.645316][0.631836,0.558238,0][0.0400103,0.920181,-1.09008][-0.101023,0.618666,-0.779132][0.666678,0.543227,0][-0.266962,0.929612,-0.982765][-0.202965,0.73646,-0.645316][0.631836,0.558238,0][-0.271132,0.754518,-1.18128][-0.134594,0.303243,-0.94336][0.647175,0.582928,0][-0.629917,0.784991,-0.866097][-0.578105,0.421254,-0.698813][0.597039,0.582177,0][-0.629917,0.784991,-0.866097][-0.578105,0.421254,-0.698813][0.597039,0.582177,0][-0.514345,0.939968,-0.721305][-0.452189,0.765258,-0.458154][0.595054,0.558431,0][-0.266962,0.929612,-0.982765][-0.202965,0.73646,-0.645316][0.631836,0.558238,0][-0.514345,0.939968,-0.721305][-0.452189,0.765258,-0.458154][0.595054,0.558431,0][-0.629917,0.784991,-0.866097][-0.578105,0.421254,-0.698813][0.597039,0.582177,0][-0.851938,0.808362,-0.510812][-0.758679,0.415861,-0.501463][0.559329,0.573182,0][-0.851938,0.808362,-0.510812][-0.758679,0.415861,-0.501463][0.559329,0.573182,0][-0.675547,0.948026,-0.438496][-0.507721,0.802932,-0.312281][0.565348,0.552938,0][-0.514345,0.939968,-0.721305][-0.452189,0.765258,-0.458154][0.595054,0.558431,0][-0.675547,0.948026,-0.438496][-0.507721,0.802932,-0.312281][0.565348,0.552938,0][-0.851938,0.808362,-0.510812][-0.758679,0.415861,-0.501463][0.559329,0.573182,0][-0.891263,0.79835,-0.141957][-0.929196,0.358628,-0.08933][0.530418,0.558367,0][-0.891263,0.79835,-0.141957][-0.929196,0.358628,-0.08933][0.530418,0.558367,0][-0.73888,0.946312,-0.139588][-0.688451,0.711288,-0.141792][0.540515,0.542654,0][-0.675547,0.948026,-0.438496][-0.507721,0.802932,-0.312281][0.565348,0.552938,0][-0.682882,0.936883,0.155943][-0.68962,0.707769,0.153253][0.520615,0.526194,0][-0.73888,0.946312,-0.139588][-0.688451,0.711288,-0.141792][0.540515,0.542654,0][-0.891263,0.79835,-0.141957][-0.929196,0.358628,-0.08933][0.530418,0.558367,0][-0.891263,0.79835,-0.141957][-0.929196,0.358628,-0.08933][0.530418,0.558367,0][-0.851611,0.79024,0.212409][-0.926214,0.360016,0.111878][0.506096,0.539501,0][-0.682882,0.936883,0.155943][-0.68962,0.707769,0.153253][0.520615,0.526194,0][-0.682882,0.936883,0.155943][-0.68962,0.707769,0.153253][0.520615,0.526194,0][-0.851611,0.79024,0.212409][-0.926214,0.360016,0.111878][0.506096,0.539501,0][-0.683108,0.786988,0.524631][-0.767801,0.484325,0.419419][0.488427,0.514867,0][-0.683108,0.786988,0.524631][-0.767801,0.484325,0.419419][0.488427,0.514867,0][-0.542669,0.932767,0.419673][-0.562612,0.765966,0.311069][0.5056,0.505584,0][-0.682882,0.936883,0.155943][-0.68962,0.707769,0.153253][0.520615,0.526194,0][-0.542669,0.932767,0.419673][-0.562612,0.765966,0.311069][0.5056,0.505584,0][-0.683108,0.786988,0.524631][-0.767801,0.484325,0.419419][0.488427,0.514867,0][-0.420788,0.800087,0.754295][-0.585678,0.496559,0.640633][0.479138,0.48625,0][-0.420788,0.800087,0.754295][-0.585678,0.496559,0.640633][0.479138,0.48625,0][-0.322489,0.940983,0.612384][-0.435207,0.77134,0.464359][0.497845,0.481755,0][-0.542669,0.932767,0.419673][-0.562612,0.765966,0.311069][0.5056,0.505584,0][-0.0588237,0.932847,0.731649][-0.244409,0.767466,0.592673][0.495167,0.456825,0][-0.322489,0.940983,0.612384][-0.435207,0.77134,0.464359][0.497845,0.481755,0][-0.420788,0.800087,0.754295][-0.585678,0.496559,0.640633][0.479138,0.48625,0][-0.420788,0.800087,0.754295][-0.585678,0.496559,0.640633][0.479138,0.48625,0][-0.116412,0.78566,0.914627][-0.38714,0.492771,0.779295][0.473996,0.456715,0][-0.0588237,0.932847,0.731649][-0.244409,0.767466,0.592673][0.495167,0.456825,0][0.224541,0.942424,0.769095][-0.106372,0.790856,0.602688][0.499448,0.432028,0][-0.0588237,0.932847,0.731649][-0.244409,0.767466,0.592673][0.495167,0.456825,0][-0.116412,0.78566,0.914627][-0.38714,0.492771,0.779295][0.473996,0.456715,0][-0.116412,0.78566,0.914627][-0.38714,0.492771,0.779295][0.473996,0.456715,0][0.226311,0.782652,0.983725][-0.160662,0.548253,0.820735][0.476545,0.425845,0][0.224541,0.942424,0.769095][-0.106372,0.790856,0.602688][0.499448,0.432028,0][0.51758,0.9304,0.755673][0.0601492,0.800934,0.595724][0.506557,0.40679,0][0.224541,0.942424,0.769095][-0.106372,0.790856,0.602688][0.499448,0.432028,0][0.226311,0.782652,0.983725][-0.160662,0.548253,0.820735][0.476545,0.425845,0][0.226311,0.782652,0.983725][-0.160662,0.548253,0.820735][0.476545,0.425845,0][0.579522,0.790238,0.944215][0.100749,0.280554,0.954536][0.487578,0.396129,0][0.51758,0.9304,0.755673][0.0601492,0.800934,0.595724][0.506557,0.40679,0][0.51758,0.9304,0.755673][0.0601492,0.800934,0.595724][0.506557,0.40679,0][0.579522,0.790238,0.944215][0.100749,0.280554,0.954536][0.487578,0.396129,0][0.88568,0.80195,0.762288][0.48262,0.279142,0.830156][0.507685,0.370554,0][0.88568,0.80195,0.762288][0.48262,0.279142,0.830156][0.507685,0.370554,0][0.782506,0.959753,0.625939][0.239418,0.719667,0.651735][0.523577,0.385656,0][0.51758,0.9304,0.755673][0.0601492,0.800934,0.595724][0.506557,0.40679,0][0.782506,0.959753,0.625939][0.239418,0.719667,0.651735][0.523577,0.385656,0][0.88568,0.80195,0.762288][0.48262,0.279142,0.830156][0.507685,0.370554,0][1.11068,0.79354,0.499586][0.703373,0.39688,0.589706][0.533794,0.348645,0][1.11068,0.79354,0.499586][0.703373,0.39688,0.589706][0.533794,0.348645,0][0.969255,0.971786,0.3981][0.536305,0.696733,0.476381][0.547471,0.369942,0][0.782506,0.959753,0.625939][0.239418,0.719667,0.651735][0.523577,0.385656,0][1.10937,0.932771,0.143977][0.67527,0.68764,0.266761][0.574237,0.354086,0][0.969255,0.971786,0.3981][0.536305,0.696733,0.476381][0.547471,0.369942,0][1.11068,0.79354,0.499586][0.703373,0.39688,0.589706][0.533794,0.348645,0][1.11068,0.79354,0.499586][0.703373,0.39688,0.589706][0.533794,0.348645,0][1.2769,0.766739,0.198327][0.819936,0.391572,0.417583][0.565124,0.328502,0][1.10937,0.932771,0.143977][0.67527,0.68764,0.266761][0.574237,0.354086,0][1.16716,0.921619,-0.141217][0.681482,0.723555,0.109778][0.608457,0.345989,0][1.10937,0.932771,0.143977][0.67527,0.68764,0.266761][0.574237,0.354086,0][1.2769,0.766739,0.198327][0.819936,0.391572,0.417583][0.565124,0.328502,0][1.2769,0.766739,0.198327][0.819936,0.391572,0.417583][0.565124,0.328502,0][1.31437,0.759179,-0.175366][0.917755,0.388125,0.0841725][0.610321,0.316692,0][1.16716,0.921619,-0.141217][0.681482,0.723555,0.109778][0.608457,0.345989,0][1.11572,0.928727,-0.434436][0.72474,0.68008,-0.110653][0.651293,0.351832,0][1.16716,0.921619,-0.141217][0.681482,0.723555,0.109778][0.608457,0.345989,0][1.31437,0.759179,-0.175366][0.917755,0.388125,0.0841725][0.610321,0.316692,0][1.31437,0.759179,-0.175366][0.917755,0.388125,0.0841725][0.610321,0.316692,0][1.2414,0.762931,-0.505368][0.910731,0.362849,-0.197253][0.663648,0.316685,0][1.11572,0.928727,-0.434436][0.72474,0.68008,-0.110653][0.651293,0.351832,0][0.958629,0.937099,-0.682777][0.647336,0.656446,-0.387343][0.698872,0.381226,0][1.11572,0.928727,-0.434436][0.72474,0.68008,-0.110653][0.651293,0.351832,0][1.2414,0.762931,-0.505368][0.910731,0.362849,-0.197253][0.663648,0.316685,0][1.2414,0.762931,-0.505368][0.910731,0.362849,-0.197253][0.663648,0.316685,0][1.02134,0.739771,-0.839761][0.743318,0.422718,-0.518448][0.791262,0.343017,0][0.958629,0.937099,-0.682777][0.647336,0.656446,-0.387343][0.698872,0.381226,0][0.812795,0.924166,-0.843898][0.557503,0.618089,-0.554217][0.722543,0.423762,0][0.958629,0.937099,-0.682777][0.647336,0.656446,-0.387343][0.698872,0.381226,0][1.02134,0.739771,-0.839761][0.743318,0.422718,-0.518448][0.791262,0.343017,0][1.02134,0.739771,-0.839761][0.743318,0.422718,-0.518448][0.791262,0.343017,0][0.982824,0.750496,-0.951341][0.656068,0.73851,-0.155493][0.824727,0.392516,0][0.812795,0.924166,-0.843898][0.557503,0.618089,-0.554217][0.722543,0.423762,0][0.812795,0.924166,-0.843898][0.557503,0.618089,-0.554217][0.722543,0.423762,0][0.982824,0.750496,-0.951341][0.656068,0.73851,-0.155493][0.824727,0.392516,0][1.00595,0.689546,-0.98119][0.622808,-0.0281596,-0.781868][0.847026,0.406635,0][1.00595,0.689546,-0.98119][0.622808,-0.0281596,-0.781868][0.847026,0.406635,0][0.646215,0.915806,-0.961125][0.396327,0.684391,-0.611992][0.720244,0.464175,0][0.812795,0.924166,-0.843898][0.557503,0.618089,-0.554217][0.722543,0.423762,0][0.646215,0.915806,-0.961125][0.396327,0.684391,-0.611992][0.720244,0.464175,0][1.00595,0.689546,-0.98119][0.622808,-0.0281596,-0.781868][0.847026,0.406635,0][0.553306,0.751882,-1.14643][0.353484,0.537673,-0.765478][0.751343,0.509597,0][0.553306,0.751882,-1.14643][0.353484,0.537673,-0.765478][0.751343,0.509597,0][0.363688,0.930556,-1.06518][0.295432,0.637204,-0.711822][0.696407,0.509629,0][0.646215,0.915806,-0.961125][0.396327,0.684391,-0.611992][0.720244,0.464175,0][0.363688,0.930556,-1.06518][0.295432,0.637204,-0.711822][0.696407,0.509629,0][0.553306,0.751882,-1.14643][0.353484,0.537673,-0.765478][0.751343,0.509597,0][0.157113,0.742725,-1.24617][-0.117609,0.262141,-0.957836][0.699053,0.560528,0][0.157113,0.742725,-1.24617][-0.117609,0.262141,-0.957836][0.699053,0.560528,0][0.0400103,0.920181,-1.09008][-0.101023,0.618666,-0.779132][0.666678,0.543227,0][0.363688,0.930556,-1.06518][0.295432,0.637204,-0.711822][0.696407,0.509629,0][-0.00325771,1.04564,-0.877414][-0.157979,0.836071,-0.525384][0.642845,0.525739,0][0.0400103,0.920181,-1.09008][-0.101023,0.618666,-0.779132][0.666678,0.543227,0][-0.266962,0.929612,-0.982765][-0.202965,0.73646,-0.645316][0.631836,0.558238,0][-0.266962,0.929612,-0.982765][-0.202965,0.73646,-0.645316][0.631836,0.558238,0][-0.219057,1.04255,-0.762264][-0.228301,0.885768,-0.404096][0.617415,0.535958,0][-0.00325771,1.04564,-0.877414][-0.157979,0.836071,-0.525384][0.642845,0.525739,0][-0.219057,1.04255,-0.762264][-0.228301,0.885768,-0.404096][0.617415,0.535958,0][-0.266962,0.929612,-0.982765][-0.202965,0.73646,-0.645316][0.631836,0.558238,0][-0.514345,0.939968,-0.721305][-0.452189,0.765258,-0.458154][0.595054,0.558431,0][-0.514345,0.939968,-0.721305][-0.452189,0.765258,-0.458154][0.595054,0.558431,0][-0.352419,1.07734,-0.581764][-0.349272,0.83785,-0.419544][0.594562,0.533706,0][-0.219057,1.04255,-0.762264][-0.228301,0.885768,-0.404096][0.617415,0.535958,0][-0.352419,1.07734,-0.581764][-0.349272,0.83785,-0.419544][0.594562,0.533706,0][-0.514345,0.939968,-0.721305][-0.452189,0.765258,-0.458154][0.595054,0.558431,0][-0.675547,0.948026,-0.438496][-0.507721,0.802932,-0.312281][0.565348,0.552938,0][-0.675547,0.948026,-0.438496][-0.507721,0.802932,-0.312281][0.565348,0.552938,0][-0.456088,1.09103,-0.368586][-0.460645,0.842878,-0.278141][0.572719,0.529556,0][-0.352419,1.07734,-0.581764][-0.349272,0.83785,-0.419544][0.594562,0.533706,0][-0.501421,1.08848,-0.140789][-0.522224,0.847565,-0.0944201][0.553301,0.522186,0][-0.456088,1.09103,-0.368586][-0.460645,0.842878,-0.278141][0.572719,0.529556,0][-0.675547,0.948026,-0.438496][-0.507721,0.802932,-0.312281][0.565348,0.552938,0][-0.675547,0.948026,-0.438496][-0.507721,0.802932,-0.312281][0.565348,0.552938,0][-0.73888,0.946312,-0.139588][-0.688451,0.711288,-0.141792][0.540515,0.542654,0][-0.501421,1.08848,-0.140789][-0.522224,0.847565,-0.0944201][0.553301,0.522186,0][-0.501421,1.08848,-0.140789][-0.522224,0.847565,-0.0944201][0.553301,0.522186,0][-0.73888,0.946312,-0.139588][-0.688451,0.711288,-0.141792][0.540515,0.542654,0][-0.682882,0.936883,0.155943][-0.68962,0.707769,0.153253][0.520615,0.526194,0][-0.682882,0.936883,0.155943][-0.68962,0.707769,0.153253][0.520615,0.526194,0][-0.470635,1.08677,0.0879597][-0.557453,0.826227,0.0812038][0.537214,0.510187,0][-0.501421,1.08848,-0.140789][-0.522224,0.847565,-0.0944201][0.553301,0.522186,0][-0.384311,1.07665,0.305725][-0.507632,0.827562,0.239691][0.523595,0.495489,0][-0.470635,1.08677,0.0879597][-0.557453,0.826227,0.0812038][0.537214,0.510187,0][-0.682882,0.936883,0.155943][-0.68962,0.707769,0.153253][0.520615,0.526194,0][-0.682882,0.936883,0.155943][-0.68962,0.707769,0.153253][0.520615,0.526194,0][-0.542669,0.932767,0.419673][-0.562612,0.765966,0.311069][0.5056,0.505584,0][-0.384311,1.07665,0.305725][-0.507632,0.827562,0.239691][0.523595,0.495489,0][-0.384311,1.07665,0.305725][-0.507632,0.827562,0.239691][0.523595,0.495489,0][-0.542669,0.932767,0.419673][-0.562612,0.765966,0.311069][0.5056,0.505584,0][-0.322489,0.940983,0.612384][-0.435207,0.77134,0.464359][0.497845,0.481755,0][-0.322489,0.940983,0.612384][-0.435207,0.77134,0.464359][0.497845,0.481755,0][-0.229566,1.05559,0.487344][-0.403498,0.803889,0.436981][0.513863,0.477531,0][-0.384311,1.07665,0.305725][-0.507632,0.827562,0.239691][0.523595,0.495489,0][-0.229566,1.05559,0.487344][-0.403498,0.803889,0.436981][0.513863,0.477531,0][-0.322489,0.940983,0.612384][-0.435207,0.77134,0.464359][0.497845,0.481755,0][-0.0588237,0.932847,0.731649][-0.244409,0.767466,0.592673][0.495167,0.456825,0][-0.0588237,0.932847,0.731649][-0.244409,0.767466,0.592673][0.495167,0.456825,0][-0.00967871,1.04691,0.584091][-0.211376,0.806103,0.552737][0.511957,0.456879,0][-0.229566,1.05559,0.487344][-0.403498,0.803889,0.436981][0.513863,0.477531,0][-0.00967871,1.04691,0.584091][-0.211376,0.806103,0.552737][0.511957,0.456879,0][-0.0588237,0.932847,0.731649][-0.244409,0.767466,0.592673][0.495167,0.456825,0][0.224541,0.942424,0.769095][-0.106372,0.790856,0.602688][0.499448,0.432028,0][0.224541,0.942424,0.769095][-0.106372,0.790856,0.602688][0.499448,0.432028,0][0.221317,1.07113,0.573192][-0.0615162,0.833715,0.548758][0.519377,0.437825,0][-0.00967871,1.04691,0.584091][-0.211376,0.806103,0.552737][0.511957,0.456879,0][0.442815,1.07931,0.529715][0.0764889,0.833891,0.546603][0.528452,0.419636,0][0.221317,1.07113,0.573192][-0.0615162,0.833715,0.548758][0.519377,0.437825,0][0.224541,0.942424,0.769095][-0.106372,0.790856,0.602688][0.499448,0.432028,0][0.224541,0.942424,0.769095][-0.106372,0.790856,0.602688][0.499448,0.432028,0][0.51758,0.9304,0.755673][0.0601492,0.800934,0.595724][0.506557,0.40679,0][0.442815,1.07931,0.529715][0.0764889,0.833891,0.546603][0.528452,0.419636,0][0.442815,1.07931,0.529715][0.0764889,0.833891,0.546603][0.528452,0.419636,0][0.51758,0.9304,0.755673][0.0601492,0.800934,0.595724][0.506557,0.40679,0][0.782506,0.959753,0.625939][0.239418,0.719667,0.651735][0.523577,0.385656,0][0.782506,0.959753,0.625939][0.239418,0.719667,0.651735][0.523577,0.385656,0][0.645774,1.08942,0.437068][0.171524,0.865742,0.470182][0.541194,0.403341,0][0.442815,1.07931,0.529715][0.0764889,0.833891,0.546603][0.528452,0.419636,0][0.645774,1.08942,0.437068][0.171524,0.865742,0.470182][0.541194,0.403341,0][0.782506,0.959753,0.625939][0.239418,0.719667,0.651735][0.523577,0.385656,0][0.969255,0.971786,0.3981][0.536305,0.696733,0.476381][0.547471,0.369942,0][0.969255,0.971786,0.3981][0.536305,0.696733,0.476381][0.547471,0.369942,0][0.816626,1.10807,0.286014][0.349149,0.796735,0.493263][0.558981,0.390146,0][0.645774,1.08942,0.437068][0.171524,0.865742,0.470182][0.541194,0.403341,0][0.932623,1.09584,0.0846249][0.531639,0.806971,0.257212][0.581013,0.380412,0][0.816626,1.10807,0.286014][0.349149,0.796735,0.493263][0.558981,0.390146,0][0.969255,0.971786,0.3981][0.536305,0.696733,0.476381][0.547471,0.369942,0][0.969255,0.971786,0.3981][0.536305,0.696733,0.476381][0.547471,0.369942,0][1.10937,0.932771,0.143977][0.67527,0.68764,0.266761][0.574237,0.354086,0][0.932623,1.09584,0.0846249][0.531639,0.806971,0.257212][0.581013,0.380412,0][0.977926,1.06594,-0.144962][0.671081,0.74051,0.0359965][0.607925,0.375979,0][0.932623,1.09584,0.0846249][0.531639,0.806971,0.257212][0.581013,0.380412,0][1.10937,0.932771,0.143977][0.67527,0.68764,0.266761][0.574237,0.354086,0][1.10937,0.932771,0.143977][0.67527,0.68764,0.266761][0.574237,0.354086,0][1.16716,0.921619,-0.141217][0.681482,0.723555,0.109778][0.608457,0.345989,0][0.977926,1.06594,-0.144962][0.671081,0.74051,0.0359965][0.607925,0.375979,0][0.962576,1.05055,-0.380056][0.605042,0.790944,-0.0912731][0.639121,0.380165,0][0.977926,1.06594,-0.144962][0.671081,0.74051,0.0359965][0.607925,0.375979,0][1.16716,0.921619,-0.141217][0.681482,0.723555,0.109778][0.608457,0.345989,0][1.16716,0.921619,-0.141217][0.681482,0.723555,0.109778][0.608457,0.345989,0][1.11572,0.928727,-0.434436][0.72474,0.68008,-0.110653][0.651293,0.351832,0][0.962576,1.05055,-0.380056][0.605042,0.790944,-0.0912731][0.639121,0.380165,0][0.962576,1.05055,-0.380056][0.605042,0.790944,-0.0912731][0.639121,0.380165,0][1.11572,0.928727,-0.434436][0.72474,0.68008,-0.110653][0.651293,0.351832,0][0.958629,0.937099,-0.682777][0.647336,0.656446,-0.387343][0.698872,0.381226,0][0.958629,0.937099,-0.682777][0.647336,0.656446,-0.387343][0.698872,0.381226,0][0.834829,1.07025,-0.576907][0.571768,0.765756,-0.294447][0.665223,0.404791,0][0.962576,1.05055,-0.380056][0.605042,0.790944,-0.0912731][0.639121,0.380165,0][0.834829,1.07025,-0.576907][0.571768,0.765756,-0.294447][0.665223,0.404791,0][0.958629,0.937099,-0.682777][0.647336,0.656446,-0.387343][0.698872,0.381226,0][0.812795,0.924166,-0.843898][0.557503,0.618089,-0.554217][0.722543,0.423762,0][0.812795,0.924166,-0.843898][0.557503,0.618089,-0.554217][0.722543,0.423762,0][0.6792,1.07552,-0.714919][0.43394,0.774815,-0.459737][0.676965,0.436114,0][0.834829,1.07025,-0.576907][0.571768,0.765756,-0.294447][0.665223,0.404791,0][0.6792,1.07552,-0.714919][0.43394,0.774815,-0.459737][0.676965,0.436114,0][0.812795,0.924166,-0.843898][0.557503,0.618089,-0.554217][0.722543,0.423762,0][0.646215,0.915806,-0.961125][0.396327,0.684391,-0.611992][0.720244,0.464175,0][0.646215,0.915806,-0.961125][0.396327,0.684391,-0.611992][0.720244,0.464175,0][0.502624,1.07402,-0.818587][0.313951,0.776774,-0.545946][0.676737,0.467281,0][0.6792,1.07552,-0.714919][0.43394,0.774815,-0.459737][0.676965,0.436114,0][0.502624,1.07402,-0.818587][0.313951,0.776774,-0.545946][0.676737,0.467281,0][0.646215,0.915806,-0.961125][0.396327,0.684391,-0.611992][0.720244,0.464175,0][0.363688,0.930556,-1.06518][0.295432,0.637204,-0.711822][0.696407,0.509629,0][0.363688,0.930556,-1.06518][0.295432,0.637204,-0.711822][0.696407,0.509629,0][0.267082,1.07603,-0.884904][0.165711,0.808965,-0.564017][0.664095,0.499121,0][0.502624,1.07402,-0.818587][0.313951,0.776774,-0.545946][0.676737,0.467281,0][0.267082,1.07603,-0.884904][0.165711,0.808965,-0.564017][0.664095,0.499121,0][0.363688,0.930556,-1.06518][0.295432,0.637204,-0.711822][0.696407,0.509629,0][0.0400103,0.920181,-1.09008][-0.101023,0.618666,-0.779132][0.666678,0.543227,0][0.0400103,0.920181,-1.09008][-0.101023,0.618666,-0.779132][0.666678,0.543227,0][-0.00325771,1.04564,-0.877414][-0.157979,0.836071,-0.525384][0.642845,0.525739,0][0.267082,1.07603,-0.884904][0.165711,0.808965,-0.564017][0.664095,0.499121,0][0.0703303,1.18669,-0.635821][-0.243305,0.868091,-0.43269][0.624091,0.499125,0][-0.00325771,1.04564,-0.877414][-0.157979,0.836071,-0.525384][0.642845,0.525739,0][-0.219057,1.04255,-0.762264][-0.228301,0.885768,-0.404096][0.617415,0.535958,0][-0.219057,1.04255,-0.762264][-0.228301,0.885768,-0.404096][0.617415,0.535958,0][-0.0737597,1.1822,-0.559671][-0.24993,0.87166,-0.421596][0.60877,0.507533,0][0.0703303,1.18669,-0.635821][-0.243305,0.868091,-0.43269][0.624091,0.499125,0][-0.0737597,1.1822,-0.559671][-0.24993,0.87166,-0.421596][0.60877,0.507533,0][-0.219057,1.04255,-0.762264][-0.228301,0.885768,-0.404096][0.617415,0.535958,0][-0.352419,1.07734,-0.581764][-0.349272,0.83785,-0.419544][0.594562,0.533706,0][-0.352419,1.07734,-0.581764][-0.349272,0.83785,-0.419544][0.594562,0.533706,0][-0.188584,1.183,-0.444412][-0.311917,0.895682,-0.316957][0.592791,0.51072,0][-0.0737597,1.1822,-0.559671][-0.24993,0.87166,-0.421596][0.60877,0.507533,0][-0.188584,1.183,-0.444412][-0.311917,0.895682,-0.316957][0.592791,0.51072,0][-0.352419,1.07734,-0.581764][-0.349272,0.83785,-0.419544][0.594562,0.533706,0][-0.456088,1.09103,-0.368586][-0.460645,0.842878,-0.278141][0.572719,0.529556,0][-0.456088,1.09103,-0.368586][-0.460645,0.842878,-0.278141][0.572719,0.529556,0][-0.263784,1.18398,-0.299314][-0.368231,0.908625,-0.196993][0.577314,0.50945,0][-0.188584,1.183,-0.444412][-0.311917,0.895682,-0.316957][0.592791,0.51072,0][-0.263784,1.18398,-0.299314][-0.368231,0.908625,-0.196993][0.577314,0.50945,0][-0.456088,1.09103,-0.368586][-0.460645,0.842878,-0.278141][0.572719,0.529556,0][-0.501421,1.08848,-0.140789][-0.522224,0.847565,-0.0944201][0.553301,0.522186,0][-0.501421,1.08848,-0.140789][-0.522224,0.847565,-0.0944201][0.553301,0.522186,0][-0.287426,1.18577,-0.137853][-0.412059,0.908434,-0.0703933][0.563458,0.503933,0][-0.263784,1.18398,-0.299314][-0.368231,0.908625,-0.196993][0.577314,0.50945,0][-0.262103,1.18578,0.0217196][-0.413741,0.908029,0.0655876][0.551919,0.495355,0][-0.287426,1.18577,-0.137853][-0.412059,0.908434,-0.0703933][0.563458,0.503933,0][-0.501421,1.08848,-0.140789][-0.522224,0.847565,-0.0944201][0.553301,0.522186,0][-0.501421,1.08848,-0.140789][-0.522224,0.847565,-0.0944201][0.553301,0.522186,0][-0.470635,1.08677,0.0879597][-0.557453,0.826227,0.0812038][0.537214,0.510187,0][-0.262103,1.18578,0.0217196][-0.413741,0.908029,0.0655876][0.551919,0.495355,0][-0.189569,1.18527,0.164849][-0.370802,0.908819,0.191192][0.543282,0.484252,0][-0.262103,1.18578,0.0217196][-0.413741,0.908029,0.0655876][0.551919,0.495355,0][-0.470635,1.08677,0.0879597][-0.557453,0.826227,0.0812038][0.537214,0.510187,0][-0.470635,1.08677,0.0879597][-0.557453,0.826227,0.0812038][0.537214,0.510187,0][-0.384311,1.07665,0.305725][-0.507632,0.827562,0.239691][0.523595,0.495489,0][-0.189569,1.18527,0.164849][-0.370802,0.908819,0.191192][0.543282,0.484252,0][-0.0749067,1.18556,0.273691][-0.288647,0.908685,0.30162][0.538428,0.471315,0][-0.189569,1.18527,0.164849][-0.370802,0.908819,0.191192][0.543282,0.484252,0][-0.384311,1.07665,0.305725][-0.507632,0.827562,0.239691][0.523595,0.495489,0][-0.384311,1.07665,0.305725][-0.507632,0.827562,0.239691][0.523595,0.495489,0][-0.229566,1.05559,0.487344][-0.403498,0.803889,0.436981][0.513863,0.477531,0][-0.0749067,1.18556,0.273691][-0.288647,0.908685,0.30162][0.538428,0.471315,0][-0.0749067,1.18556,0.273691][-0.288647,0.908685,0.30162][0.538428,0.471315,0][-0.229566,1.05559,0.487344][-0.403498,0.803889,0.436981][0.513863,0.477531,0][-0.00967871,1.04691,0.584091][-0.211376,0.806103,0.552737][0.511957,0.456879,0][-0.00967871,1.04691,0.584091][-0.211376,0.806103,0.552737][0.511957,0.456879,0][0.0692243,1.18753,0.340242][-0.212971,0.874659,0.435447][0.537468,0.457417,0][-0.0749067,1.18556,0.273691][-0.288647,0.908685,0.30162][0.538428,0.471315,0][0.0692243,1.18753,0.340242][-0.212971,0.874659,0.435447][0.537468,0.457417,0][-0.00967871,1.04691,0.584091][-0.211376,0.806103,0.552737][0.511957,0.456879,0][0.221317,1.07113,0.573192][-0.0615162,0.833715,0.548758][0.519377,0.437825,0][0.221317,1.07113,0.573192][-0.0615162,0.833715,0.548758][0.519377,0.437825,0][0.226592,1.18936,0.360473][-0.0722683,0.872548,0.483153][0.540235,0.4436,0][0.0692243,1.18753,0.340242][-0.212971,0.874659,0.435447][0.537468,0.457417,0][0.226592,1.18936,0.360473][-0.0722683,0.872548,0.483153][0.540235,0.4436,0][0.221317,1.07113,0.573192][-0.0615162,0.833715,0.548758][0.519377,0.437825,0][0.442815,1.07931,0.529715][0.0764889,0.833891,0.546603][0.528452,0.419636,0][0.442815,1.07931,0.529715][0.0764889,0.833891,0.546603][0.528452,0.419636,0][0.382664,1.18994,0.335564][0.0727824,0.876075,0.47665][0.546421,0.430687,0][0.226592,1.18936,0.360473][-0.0722683,0.872548,0.483153][0.540235,0.4436,0][0.522348,1.19093,0.266249][0.209344,0.876082,0.434345][0.55599,0.419723,0][0.382664,1.18994,0.335564][0.0727824,0.876075,0.47665][0.546421,0.430687,0][0.442815,1.07931,0.529715][0.0764889,0.833891,0.546603][0.528452,0.419636,0][0.442815,1.07931,0.529715][0.0764889,0.833891,0.546603][0.528452,0.419636,0][0.645774,1.08942,0.437068][0.171524,0.865742,0.470182][0.541194,0.403341,0][0.522348,1.19093,0.266249][0.209344,0.876082,0.434345][0.55599,0.419723,0][0.63968,1.20062,0.159035][0.249863,0.900919,0.354844][0.568892,0.411282,0][0.522348,1.19093,0.266249][0.209344,0.876082,0.434345][0.55599,0.419723,0][0.645774,1.08942,0.437068][0.171524,0.865742,0.470182][0.541194,0.403341,0][0.645774,1.08942,0.437068][0.171524,0.865742,0.470182][0.541194,0.403341,0][0.816626,1.10807,0.286014][0.349149,0.796735,0.493263][0.558981,0.390146,0][0.63968,1.20062,0.159035][0.249863,0.900919,0.354844][0.568892,0.411282,0][0.733311,1.20411,0.0204345][0.313009,0.920315,0.234616][0.584692,0.405109,0][0.63968,1.20062,0.159035][0.249863,0.900919,0.354844][0.568892,0.411282,0][0.816626,1.10807,0.286014][0.349149,0.796735,0.493263][0.558981,0.390146,0][0.816626,1.10807,0.286014][0.349149,0.796735,0.493263][0.558981,0.390146,0][0.932623,1.09584,0.0846249][0.531639,0.806971,0.257212][0.581013,0.380412,0][0.733311,1.20411,0.0204345][0.313009,0.920315,0.234616][0.584692,0.405109,0][0.757203,1.19222,-0.145382][0.475951,0.879454,0.00554324][0.602915,0.405599,0][0.733311,1.20411,0.0204345][0.313009,0.920315,0.234616][0.584692,0.405109,0][0.932623,1.09584,0.0846249][0.531639,0.806971,0.257212][0.581013,0.380412,0][0.932623,1.09584,0.0846249][0.531639,0.806971,0.257212][0.581013,0.380412,0][0.977926,1.06594,-0.144962][0.671081,0.74051,0.0359965][0.607925,0.375979,0][0.757203,1.19222,-0.145382][0.475951,0.879454,0.00554324][0.602915,0.405599,0][0.727402,1.1942,-0.309482][0.495135,0.865172,-0.0794901][0.6209,0.413223,0][0.757203,1.19222,-0.145382][0.475951,0.879454,0.00554324][0.602915,0.405599,0][0.977926,1.06594,-0.144962][0.671081,0.74051,0.0359965][0.607925,0.375979,0][0.977926,1.06594,-0.144962][0.671081,0.74051,0.0359965][0.607925,0.375979,0][0.962576,1.05055,-0.380056][0.605042,0.790944,-0.0912731][0.639121,0.380165,0][0.727402,1.1942,-0.309482][0.495135,0.865172,-0.0794901][0.6209,0.413223,0][0.727402,1.1942,-0.309482][0.495135,0.865172,-0.0794901][0.6209,0.413223,0][0.962576,1.05055,-0.380056][0.605042,0.790944,-0.0912731][0.639121,0.380165,0][0.834829,1.07025,-0.576907][0.571768,0.765756,-0.294447][0.665223,0.404791,0][0.834829,1.07025,-0.576907][0.571768,0.765756,-0.294447][0.665223,0.404791,0][0.657516,1.19428,-0.461114][0.462891,0.860472,-0.212885][0.636885,0.426891,0][0.727402,1.1942,-0.309482][0.495135,0.865172,-0.0794901][0.6209,0.413223,0][0.657516,1.19428,-0.461114][0.462891,0.860472,-0.212885][0.636885,0.426891,0][0.834829,1.07025,-0.576907][0.571768,0.765756,-0.294447][0.665223,0.404791,0][0.6792,1.07552,-0.714919][0.43394,0.774815,-0.459737][0.676965,0.436114,0][0.6792,1.07552,-0.714919][0.43394,0.774815,-0.459737][0.676965,0.436114,0][0.539472,1.18697,-0.579871][0.32625,0.866581,-0.377622][0.645962,0.446609,0][0.657516,1.19428,-0.461114][0.462891,0.860472,-0.212885][0.636885,0.426891,0][0.539472,1.18697,-0.579871][0.32625,0.866581,-0.377622][0.645962,0.446609,0][0.6792,1.07552,-0.714919][0.43394,0.774815,-0.459737][0.676965,0.436114,0][0.502624,1.07402,-0.818587][0.313951,0.776774,-0.545946][0.676737,0.467281,0][0.502624,1.07402,-0.818587][0.313951,0.776774,-0.545946][0.676737,0.467281,0][0.389452,1.18434,-0.653531][0.202812,0.872667,-0.444207][0.645738,0.467948,0][0.539472,1.18697,-0.579871][0.32625,0.866581,-0.377622][0.645962,0.446609,0][0.389452,1.18434,-0.653531][0.202812,0.872667,-0.444207][0.645738,0.467948,0][0.502624,1.07402,-0.818587][0.313951,0.776774,-0.545946][0.676737,0.467281,0][0.267082,1.07603,-0.884904][0.165711,0.808965,-0.564017][0.664095,0.499121,0][0.267082,1.07603,-0.884904][0.165711,0.808965,-0.564017][0.664095,0.499121,0][0.228653,1.18935,-0.670112][0.0745708,0.887439,-0.454853][0.637205,0.485906,0][0.389452,1.18434,-0.653531][0.202812,0.872667,-0.444207][0.645738,0.467948,0][0.0703303,1.18669,-0.635821][-0.243305,0.868091,-0.43269][0.624091,0.499125,0][0.228653,1.18935,-0.670112][0.0745708,0.887439,-0.454853][0.637205,0.485906,0][0.267082,1.07603,-0.884904][0.165711,0.808965,-0.564017][0.664095,0.499121,0][0.267082,1.07603,-0.884904][0.165711,0.808965,-0.564017][0.664095,0.499121,0][-0.00325771,1.04564,-0.877414][-0.157979,0.836071,-0.525384][0.642845,0.525739,0][0.0703303,1.18669,-0.635821][-0.243305,0.868091,-0.43269][0.624091,0.499125,0][0.13936,1.26071,-0.411926][-0.168191,0.950214,-0.262307][0.606592,0.479609,0][0.0703303,1.18669,-0.635821][-0.243305,0.868091,-0.43269][0.624091,0.499125,0][-0.0737597,1.1822,-0.559671][-0.24993,0.87166,-0.421596][0.60877,0.507533,0][-0.0737597,1.1822,-0.559671][-0.24993,0.87166,-0.421596][0.60877,0.507533,0][0.0697163,1.26588,-0.361951][-0.142472,0.944403,-0.296319][0.598556,0.483416,0][0.13936,1.26071,-0.411926][-0.168191,0.950214,-0.262307][0.606592,0.479609,0][0.0697163,1.26588,-0.361951][-0.142472,0.944403,-0.296319][0.598556,0.483416,0][-0.0737597,1.1822,-0.559671][-0.24993,0.87166,-0.421596][0.60877,0.507533,0][-0.188584,1.183,-0.444412][-0.311917,0.895682,-0.316957][0.592791,0.51072,0][-0.188584,1.183,-0.444412][-0.311917,0.895682,-0.316957][0.592791,0.51072,0][0.0117903,1.26777,-0.298753][-0.2275,0.944557,-0.23676][0.590287,0.485473,0][0.0697163,1.26588,-0.361951][-0.142472,0.944403,-0.296319][0.598556,0.483416,0][-0.0324927,1.26607,-0.226102][-0.288243,0.945165,-0.153553][0.582125,0.486003,0][0.0117903,1.26777,-0.298753][-0.2275,0.944557,-0.23676][0.590287,0.485473,0][-0.188584,1.183,-0.444412][-0.311917,0.895682,-0.316957][0.592791,0.51072,0][-0.188584,1.183,-0.444412][-0.311917,0.895682,-0.316957][0.592791,0.51072,0][-0.263784,1.18398,-0.299314][-0.368231,0.908625,-0.196993][0.577314,0.50945,0][-0.0324927,1.26607,-0.226102][-0.288243,0.945165,-0.153553][0.582125,0.486003,0][-0.0324927,1.26607,-0.226102][-0.288243,0.945165,-0.153553][0.582125,0.486003,0][-0.263784,1.18398,-0.299314][-0.368231,0.908625,-0.196993][0.577314,0.50945,0][-0.287426,1.18577,-0.137853][-0.412059,0.908434,-0.0703933][0.563458,0.503933,0][-0.287426,1.18577,-0.137853][-0.412059,0.908434,-0.0703933][0.563458,0.503933,0][-0.0465317,1.26673,-0.141295][-0.318743,0.945937,-0.0600511][0.574446,0.483564,0][-0.0324927,1.26607,-0.226102][-0.288243,0.945165,-0.153553][0.582125,0.486003,0][-0.0343067,1.26622,-0.0561816][-0.317471,0.946883,0.0512275][0.567875,0.479157,0][-0.0465317,1.26673,-0.141295][-0.318743,0.945937,-0.0600511][0.574446,0.483564,0][-0.287426,1.18577,-0.137853][-0.412059,0.908434,-0.0703933][0.563458,0.503933,0][-0.287426,1.18577,-0.137853][-0.412059,0.908434,-0.0703933][0.563458,0.503933,0][-0.262103,1.18578,0.0217196][-0.413741,0.908029,0.0655876][0.551919,0.495355,0][-0.0343067,1.26622,-0.0561816][-0.317471,0.946883,0.0512275][0.567875,0.479157,0][0.00299729,1.26538,0.0206886][-0.28386,0.947357,0.148116][0.562898,0.473186,0][-0.0343067,1.26622,-0.0561816][-0.317471,0.946883,0.0512275][0.567875,0.479157,0][-0.262103,1.18578,0.0217196][-0.413741,0.908029,0.0655876][0.551919,0.495355,0][-0.262103,1.18578,0.0217196][-0.413741,0.908029,0.0655876][0.551919,0.495355,0][-0.189569,1.18527,0.164849][-0.370802,0.908819,0.191192][0.543282,0.484252,0][0.00299729,1.26538,0.0206886][-0.28386,0.947357,0.148116][0.562898,0.473186,0][0.00299729,1.26538,0.0206886][-0.28386,0.947357,0.148116][0.562898,0.473186,0][-0.189569,1.18527,0.164849][-0.370802,0.908819,0.191192][0.543282,0.484252,0][-0.0749067,1.18556,0.273691][-0.288647,0.908685,0.30162][0.538428,0.471315,0][-0.0749067,1.18556,0.273691][-0.288647,0.908685,0.30162][0.538428,0.471315,0][0.0703733,1.26924,0.0700072][-0.2228,0.947285,0.23024][0.561198,0.465811,0][0.00299729,1.26538,0.0206886][-0.28386,0.947357,0.148116][0.562898,0.473186,0][0.0703733,1.26924,0.0700072][-0.2228,0.947285,0.23024][0.561198,0.465811,0][-0.0749067,1.18556,0.273691][-0.288647,0.908685,0.30162][0.538428,0.471315,0][0.0692243,1.18753,0.340242][-0.212971,0.874659,0.435447][0.537468,0.457417,0][0.0692243,1.18753,0.340242][-0.212971,0.874659,0.435447][0.537468,0.457417,0][0.146399,1.27173,0.0996151][-0.142443,0.947604,0.28593][0.561254,0.458412,0][0.0703733,1.26924,0.0700072][-0.2228,0.947285,0.23024][0.561198,0.465811,0][0.146399,1.27173,0.0996151][-0.142443,0.947604,0.28593][0.561254,0.458412,0][0.0692243,1.18753,0.340242][-0.212971,0.874659,0.435447][0.537468,0.457417,0][0.226592,1.18936,0.360473][-0.0722683,0.872548,0.483153][0.540235,0.4436,0][0.226592,1.18936,0.360473][-0.0722683,0.872548,0.483153][0.540235,0.4436,0][0.226632,1.27226,0.10956][-0.0450842,0.94855,0.313402][0.562935,0.451217,0][0.146399,1.27173,0.0996151][-0.142443,0.947604,0.28593][0.561254,0.458412,0][0.308189,1.26958,0.104408][0.0509196,0.948279,0.313327][0.565827,0.444205,0][0.226632,1.27226,0.10956][-0.0450842,0.94855,0.313402][0.562935,0.451217,0][0.226592,1.18936,0.360473][-0.0722683,0.872548,0.483153][0.540235,0.4436,0][0.226592,1.18936,0.360473][-0.0722683,0.872548,0.483153][0.540235,0.4436,0][0.382664,1.18994,0.335564][0.0727824,0.876075,0.47665][0.546421,0.430687,0][0.308189,1.26958,0.104408][0.0509196,0.948279,0.313327][0.565827,0.444205,0][0.391602,1.26323,0.084759][0.138806,0.949226,0.282317][0.569997,0.437201,0][0.308189,1.26958,0.104408][0.0509196,0.948279,0.313327][0.565827,0.444205,0][0.382664,1.18994,0.335564][0.0727824,0.876075,0.47665][0.546421,0.430687,0][0.382664,1.18994,0.335564][0.0727824,0.876075,0.47665][0.546421,0.430687,0][0.522348,1.19093,0.266249][0.209344,0.876082,0.434345][0.55599,0.419723,0][0.391602,1.26323,0.084759][0.138806,0.949226,0.282317][0.569997,0.437201,0][0.456308,1.26257,0.0261398][0.213496,0.950699,0.224925][0.577258,0.432839,0][0.391602,1.26323,0.084759][0.138806,0.949226,0.282317][0.569997,0.437201,0][0.522348,1.19093,0.266249][0.209344,0.876082,0.434345][0.55599,0.419723,0][0.522348,1.19093,0.266249][0.209344,0.876082,0.434345][0.55599,0.419723,0][0.63968,1.20062,0.159035][0.249863,0.900919,0.354844][0.568892,0.411282,0][0.456308,1.26257,0.0261398][0.213496,0.950699,0.224925][0.577258,0.432839,0][0.489856,1.26741,-0.0549275][0.218568,0.964527,0.148039][0.585963,0.431984,0][0.456308,1.26257,0.0261398][0.213496,0.950699,0.224925][0.577258,0.432839,0][0.63968,1.20062,0.159035][0.249863,0.900919,0.354844][0.568892,0.411282,0][0.63968,1.20062,0.159035][0.249863,0.900919,0.354844][0.568892,0.411282,0][0.733311,1.20411,0.0204345][0.313009,0.920315,0.234616][0.584692,0.405109,0][0.489856,1.26741,-0.0549275][0.218568,0.964527,0.148039][0.585963,0.431984,0][0.489856,1.26741,-0.0549275][0.218568,0.964527,0.148039][0.585963,0.431984,0][0.733311,1.20411,0.0204345][0.313009,0.920315,0.234616][0.584692,0.405109,0][0.757203,1.19222,-0.145382][0.475951,0.879454,0.00554324][0.602915,0.405599,0][0.757203,1.19222,-0.145382][0.475951,0.879454,0.00554324][0.602915,0.405599,0][0.499844,1.27034,-0.14371][0.290244,0.954796,0.0642031][0.595027,0.433654,0][0.489856,1.26741,-0.0549275][0.218568,0.964527,0.148039][0.585963,0.431984,0][0.499844,1.27034,-0.14371][0.290244,0.954796,0.0642031][0.595027,0.433654,0][0.757203,1.19222,-0.145382][0.475951,0.879454,0.00554324][0.602915,0.405599,0][0.727402,1.1942,-0.309482][0.495135,0.865172,-0.0794901][0.6209,0.413223,0][0.727402,1.1942,-0.309482][0.495135,0.865172,-0.0794901][0.6209,0.413223,0][0.488172,1.26806,-0.231045][0.275841,0.959206,-0.0619341][0.603565,0.437613,0][0.499844,1.27034,-0.14371][0.290244,0.954796,0.0642031][0.595027,0.433654,0][0.45488,1.26075,-0.311977][0.234818,0.954695,-0.182806][0.610908,0.443922,0][0.488172,1.26806,-0.231045][0.275841,0.959206,-0.0619341][0.603565,0.437613,0][0.727402,1.1942,-0.309482][0.495135,0.865172,-0.0794901][0.6209,0.413223,0][0.727402,1.1942,-0.309482][0.495135,0.865172,-0.0794901][0.6209,0.413223,0][0.657516,1.19428,-0.461114][0.462891,0.860472,-0.212885][0.636885,0.426891,0][0.45488,1.26075,-0.311977][0.234818,0.954695,-0.182806][0.610908,0.443922,0][0.393992,1.25933,-0.376044][0.177115,0.96572,-0.189778][0.615139,0.452896,0][0.45488,1.26075,-0.311977][0.234818,0.954695,-0.182806][0.610908,0.443922,0][0.657516,1.19428,-0.461114][0.462891,0.860472,-0.212885][0.636885,0.426891,0][0.657516,1.19428,-0.461114][0.462891,0.860472,-0.212885][0.636885,0.426891,0][0.539472,1.18697,-0.579871][0.32625,0.866581,-0.377622][0.645962,0.446609,0][0.393992,1.25933,-0.376044][0.177115,0.96572,-0.189778][0.615139,0.452896,0][0.393992,1.25933,-0.376044][0.177115,0.96572,-0.189778][0.615139,0.452896,0][0.539472,1.18697,-0.579871][0.32625,0.866581,-0.377622][0.645962,0.446609,0][0.389452,1.18434,-0.653531][0.202812,0.872667,-0.444207][0.645738,0.467948,0][0.389452,1.18434,-0.653531][0.202812,0.872667,-0.444207][0.645738,0.467948,0][0.314492,1.25905,-0.416664][0.129864,0.95666,-0.260646][0.615678,0.462892,0][0.393992,1.25933,-0.376044][0.177115,0.96572,-0.189778][0.615139,0.452896,0][0.314492,1.25905,-0.416664][0.129864,0.95666,-0.260646][0.615678,0.462892,0][0.389452,1.18434,-0.653531][0.202812,0.872667,-0.444207][0.645738,0.467948,0][0.228653,1.18935,-0.670112][0.0745708,0.887439,-0.454853][0.637205,0.485906,0][0.228653,1.18935,-0.670112][0.0745708,0.887439,-0.454853][0.637205,0.485906,0][0.225449,1.25919,-0.430201][0.0438598,0.959381,-0.278682][0.612661,0.472368,0][0.314492,1.25905,-0.416664][0.129864,0.95666,-0.260646][0.615678,0.462892,0][0.225449,1.25919,-0.430201][0.0438598,0.959381,-0.278682][0.612661,0.472368,0][0.228653,1.18935,-0.670112][0.0745708,0.887439,-0.454853][0.637205,0.485906,0][0.0703303,1.18669,-0.635821][-0.243305,0.868091,-0.43269][0.624091,0.499125,0][0.0703303,1.18669,-0.635821][-0.243305,0.868091,-0.43269][0.624091,0.499125,0][0.13936,1.26071,-0.411926][-0.168191,0.950214,-0.262307][0.606592,0.479609,0][0.225449,1.25919,-0.430201][0.0438598,0.959381,-0.278682][0.612661,0.472368,0][0.0443333,1.11864,-0.406673][0.196979,-0.873797,0.44461][0.937032,0.062665,0][0.129944,1.11582,-0.450145][0.206001,-0.876748,0.4346][0.935755,0.061765,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][-0.0237377,1.12352,-0.33892][0.304277,-0.878205,0.369014][0.938379,0.063127,0][0.0443333,1.11864,-0.406673][0.196979,-0.873797,0.44461][0.937032,0.062665,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][-0.0676127,1.13,-0.253432][0.383937,-0.884789,0.264086][0.939696,0.063209,0][-0.0237377,1.12352,-0.33892][0.304277,-0.878205,0.369014][0.938379,0.063127,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][-0.0829557,1.13744,-0.158506][0.428006,-0.892993,0.139191][0.940915,0.062967,0][-0.0676127,1.13,-0.253432][0.383937,-0.884789,0.264086][0.939696,0.063209,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][-0.0681867,1.14512,-0.0633975][0.431483,-0.902102,0.00583293][0.941984,0.062454,0][-0.0829557,1.13744,-0.158506][0.428006,-0.892993,0.139191][0.940915,0.062967,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][-0.0246687,1.15229,0.0225635][0.39308,-0.911236,-0.123036][0.942867,0.061723,0][-0.0681867,1.14512,-0.0633975][0.431483,-0.902102,0.00583293][0.941984,0.062454,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][0.0433943,1.15824,0.0908993][0.315652,-0.919472,-0.234383][0.943533,0.060821,0][-0.0246687,1.15229,0.0225635][0.39308,-0.911236,-0.123036][0.942867,0.061723,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][0.12935,1.16237,0.134838][0.206317,-0.925914,-0.316411][0.943959,0.0598,0][0.0433943,1.15824,0.0908993][0.315652,-0.919472,-0.234383][0.943533,0.060821,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][0.224741,1.16429,0.150006][0.0759661,-0.929828,-0.360069][0.944129,0.058709,0][0.12935,1.16237,0.134838][0.206317,-0.925914,-0.316411][0.943959,0.0598,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][0.320151,1.1638,0.13488][-0.0619358,-0.930749,-0.360374][0.944032,0.057601,0][0.224741,1.16429,0.150006][0.0759661,-0.929828,-0.360069][0.944129,0.058709,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][0.406158,1.16095,0.0909634][-0.192748,-0.928574,-0.317173][0.943665,0.056531,0][0.320151,1.1638,0.13488][-0.0619358,-0.930749,-0.360374][0.944032,0.057601,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][0.474287,1.15602,0.0226162][-0.302841,-0.923553,-0.23524][0.943032,0.055558,0][0.406158,1.16095,0.0909634][-0.192748,-0.928574,-0.317173][0.943665,0.056531,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][0.51786,1.1495,-0.0633859][-0.381004,-0.916277,-0.12358][0.942148,0.054746,0][0.474287,1.15602,0.0226162][-0.302841,-0.923553,-0.23524][0.943032,0.055558,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][0.532656,1.14204,-0.158551][-0.419878,-0.907561,0.00589208][0.941039,0.054162,0][0.51786,1.1495,-0.0633859][-0.381004,-0.916277,-0.12358][0.942148,0.054746,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][0.517304,1.13436,-0.253531][-0.416467,-0.898322,0.1399][0.939756,0.05388,0][0.532656,1.14204,-0.158551][-0.419878,-0.907561,0.00589208][0.941039,0.054162,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][0.473391,1.12723,-0.339046][-0.372081,-0.889485,0.265278][0.938375,0.053967,0][0.517304,1.13436,-0.253531][-0.416467,-0.898322,0.1399][0.939756,0.05388,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][0.405269,1.12133,-0.406789][-0.291877,-0.881858,0.370317][0.937016,0.054462,0][0.473391,1.12723,-0.339046][-0.372081,-0.889485,0.265278][0.938375,0.053967,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][0.319615,1.11723,-0.450214][-0.184019,-0.876105,0.445619][0.935809,0.055422,0][0.405269,1.12133,-0.406789][-0.291877,-0.881858,0.370317][0.937016,0.054462,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][0.224771,1.11533,-0.465143][-0.0587799,-0.872959,0.484239][0.934936,0.056765,0][0.319615,1.11723,-0.450214][-0.184019,-0.876105,0.445619][0.935809,0.055422,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][0.129944,1.11582,-0.450145][0.206001,-0.876748,0.4346][0.934519,0.058364,0][0.224771,1.11533,-0.465143][-0.0587799,-0.872959,0.484239][0.934936,0.056765,0][0.224708,1.18623,-0.159168][0.0752049,-0.974517,0.211331][0.939837,0.058622,0][0.0697163,1.26588,-0.361951][-0.142472,0.944403,-0.296319][0.598556,0.483416,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.13936,1.26071,-0.411926][-0.168191,0.950214,-0.262307][0.606592,0.479609,0][0.0117903,1.26777,-0.298753][-0.2275,0.944557,-0.23676][0.590287,0.485473,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.0697163,1.26588,-0.361951][-0.142472,0.944403,-0.296319][0.598556,0.483416,0][-0.0324927,1.26607,-0.226102][-0.288243,0.945165,-0.153553][0.582125,0.486003,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.0117903,1.26777,-0.298753][-0.2275,0.944557,-0.23676][0.590287,0.485473,0][-0.0465317,1.26673,-0.141295][-0.318743,0.945937,-0.0600511][0.574446,0.483564,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][-0.0324927,1.26607,-0.226102][-0.288243,0.945165,-0.153553][0.582125,0.486003,0][-0.0343067,1.26622,-0.0561816][-0.317471,0.946883,0.0512275][0.567875,0.479157,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][-0.0465317,1.26673,-0.141295][-0.318743,0.945937,-0.0600511][0.574446,0.483564,0][0.00299729,1.26538,0.0206886][-0.28386,0.947357,0.148116][0.562898,0.473186,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][-0.0343067,1.26622,-0.0561816][-0.317471,0.946883,0.0512275][0.567875,0.479157,0][0.0703733,1.26924,0.0700072][-0.2228,0.947285,0.23024][0.561198,0.465811,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.00299729,1.26538,0.0206886][-0.28386,0.947357,0.148116][0.562898,0.473186,0][0.146399,1.27173,0.0996151][-0.142443,0.947604,0.28593][0.561254,0.458412,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.0703733,1.26924,0.0700072][-0.2228,0.947285,0.23024][0.561198,0.465811,0][0.226632,1.27226,0.10956][-0.0450842,0.94855,0.313402][0.562935,0.451217,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.146399,1.27173,0.0996151][-0.142443,0.947604,0.28593][0.561254,0.458412,0][0.308189,1.26958,0.104408][0.0509196,0.948279,0.313327][0.565827,0.444205,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.226632,1.27226,0.10956][-0.0450842,0.94855,0.313402][0.562935,0.451217,0][0.391602,1.26323,0.084759][0.138806,0.949226,0.282317][0.569997,0.437201,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.308189,1.26958,0.104408][0.0509196,0.948279,0.313327][0.565827,0.444205,0][0.456308,1.26257,0.0261398][0.213496,0.950699,0.224925][0.577258,0.432839,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.391602,1.26323,0.084759][0.138806,0.949226,0.282317][0.569997,0.437201,0][0.489856,1.26741,-0.0549275][0.218568,0.964527,0.148039][0.585963,0.431984,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.456308,1.26257,0.0261398][0.213496,0.950699,0.224925][0.577258,0.432839,0][0.499844,1.27034,-0.14371][0.290244,0.954796,0.0642031][0.595027,0.433654,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.489856,1.26741,-0.0549275][0.218568,0.964527,0.148039][0.585963,0.431984,0][0.488172,1.26806,-0.231045][0.275841,0.959206,-0.0619341][0.603565,0.437613,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.499844,1.27034,-0.14371][0.290244,0.954796,0.0642031][0.595027,0.433654,0][0.45488,1.26075,-0.311977][0.234818,0.954695,-0.182806][0.610908,0.443922,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.488172,1.26806,-0.231045][0.275841,0.959206,-0.0619341][0.603565,0.437613,0][0.393992,1.25933,-0.376044][0.177115,0.96572,-0.189778][0.615139,0.452896,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.45488,1.26075,-0.311977][0.234818,0.954695,-0.182806][0.610908,0.443922,0][0.314492,1.25905,-0.416664][0.129864,0.95666,-0.260646][0.615678,0.462892,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.393992,1.25933,-0.376044][0.177115,0.96572,-0.189778][0.615139,0.452896,0][0.225449,1.25919,-0.430201][0.0438598,0.959381,-0.278682][0.612661,0.472368,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.314492,1.25905,-0.416664][0.129864,0.95666,-0.260646][0.615678,0.462892,0][0.13936,1.26071,-0.411926][-0.168191,0.950214,-0.262307][0.606592,0.479609,0][0.225325,1.28889,-0.143063][-0.00074429,0.994576,-0.104005][0.585415,0.459921,0][0.225449,1.25919,-0.430201][0.0438598,0.959381,-0.278682][0.612661,0.472368,0][0.982824,0.750496,-0.951341][0.656068,0.73851,-0.155493][0.824727,0.392516,0][0.929627,0.701107,-0.893585][-0.493986,-0.84648,0.198619][0.856844,0.374071,0][0.97088,0.65004,-0.923312][0.594052,0.0116531,0.804342][0.865686,0.391864,0][0.97088,0.65004,-0.923312][0.594052,0.0116531,0.804342][0.865686,0.391864,0][1.00595,0.689546,-0.98119][0.622808,-0.0281596,-0.781868][0.847026,0.406635,0][0.982824,0.750496,-0.951341][0.656068,0.73851,-0.155493][0.824727,0.392516,0][1.04647,0.601524,-0.945738][0.507739,0.526304,-0.68206][0.874474,0.416136,0][1.00595,0.689546,-0.98119][0.622808,-0.0281596,-0.781868][0.847026,0.406635,0][0.97088,0.65004,-0.923312][0.594052,0.0116531,0.804342][0.865686,0.391864,0][0.97088,0.65004,-0.923312][0.594052,0.0116531,0.804342][0.865686,0.391864,0][1.02324,0.553438,-0.908986][-0.375566,-0.0664808,0.924408][0.896043,0.411315,0][1.04647,0.601524,-0.945738][0.507739,0.526304,-0.68206][0.874474,0.416136,0][1.02395,0.430593,-1.0944][0.460144,0.0092081,-0.887796][0.897591,0.4849,0][1.04647,0.601524,-0.945738][0.507739,0.526304,-0.68206][0.874474,0.416136,0][1.02324,0.553438,-0.908986][-0.375566,-0.0664808,0.924408][0.896043,0.411315,0][1.02324,0.553438,-0.908986][-0.375566,-0.0664808,0.924408][0.896043,0.411315,0][1.00274,0.377278,-1.03617][-0.279558,-0.540427,0.793591][0.924137,0.485832,0][1.02395,0.430593,-1.0944][0.460144,0.0092081,-0.887796][0.897591,0.4849,0][0.887618,0.284855,-1.16657][0.247829,0.872009,-0.422114][0.901435,0.55078,0][1.02395,0.430593,-1.0944][0.460144,0.0092081,-0.887796][0.897591,0.4849,0][1.00274,0.377278,-1.03617][-0.279558,-0.540427,0.793591][0.924137,0.485832,0][1.00274,0.377278,-1.03617][-0.279558,-0.540427,0.793591][0.924137,0.485832,0][0.870682,0.237445,-1.11646][-0.413755,-0.126887,0.901502][0.924084,0.560993,0][0.887618,0.284855,-1.16657][0.247829,0.872009,-0.422114][0.901435,0.55078,0][0.887618,0.284855,-1.16657][0.247829,0.872009,-0.422114][0.901435,0.55078,0][0.870682,0.237445,-1.11646][-0.413755,-0.126887,0.901502][0.924084,0.560993,0][0.705351,0.232262,-1.27791][0.010678,-0.999719,0.0211562][0.870574,0.610278,0][0.705351,0.232262,-1.27791][0.010678,-0.999719,0.0211562][0.870574,0.610278,0][0.738339,0.252535,-1.32098][0.149166,-0.978462,0.142691][0.863645,0.597369,0][0.887618,0.284855,-1.16657][0.247829,0.872009,-0.422114][0.901435,0.55078,0][0.471787,0.207621,-1.35032][0.496667,-0.384201,-0.778275][0.813171,0.64073,0][0.738339,0.252535,-1.32098][0.149166,-0.978462,0.142691][0.863645,0.597369,0][0.705351,0.232262,-1.27791][0.010678,-0.999719,0.0211562][0.870574,0.610278,0][0.705351,0.232262,-1.27791][0.010678,-0.999719,0.0211562][0.870574,0.610278,0][0.464685,0.184061,-1.34322][0.296015,-0.912329,0.282896][0.814269,0.65035,0][0.471787,0.207621,-1.35032][0.496667,-0.384201,-0.778275][0.813171,0.64073,0][1.08663,0.571198,-0.833568][-0.715969,-0.681721,0.150483][0.757566,0.274653,0][0.973524,0.696617,-0.803543][-0.572482,-0.786593,0.231377][0.801148,0.31114,0][1.02134,0.739771,-0.839761][0.743318,0.422718,-0.518448][0.791262,0.343017,0][1.02134,0.739771,-0.839761][0.743318,0.422718,-0.518448][0.791262,0.343017,0][1.1249,0.586335,-0.846928][0.786211,0.384261,-0.483959][0.747074,0.278155,0][1.08663,0.571198,-0.833568][-0.715969,-0.681721,0.150483][0.757566,0.274653,0][1.08663,0.571198,-0.833568][-0.715969,-0.681721,0.150483][0.757566,0.274653,0][1.1249,0.586335,-0.846928][0.786211,0.384261,-0.483959][0.747074,0.278155,0][1.12291,0.438309,-0.949779][0.788878,-0.0498868,-0.612522][0.745107,0.234224,0][1.12291,0.438309,-0.949779][0.788878,-0.0498868,-0.612522][0.745107,0.234224,0][1.07048,0.396855,-0.941657][-0.865578,-0.203485,0.457567][0.756091,0.226011,0][1.08663,0.571198,-0.833568][-0.715969,-0.681721,0.150483][0.757566,0.274653,0][1.07048,0.396855,-0.941657][-0.865578,-0.203485,0.457567][0.756091,0.226011,0][1.12291,0.438309,-0.949779][0.788878,-0.0498868,-0.612522][0.745107,0.234224,0][1.07738,0.245709,-0.992728][0.854236,0.243879,-0.459135][0.748787,0.193055,0][1.07738,0.245709,-0.992728][0.854236,0.243879,-0.459135][0.748787,0.193055,0][1.03154,0.218299,-0.983916][-0.835298,-0.0208695,0.549401][0.758783,0.185782,0][1.07048,0.396855,-0.941657][-0.865578,-0.203485,0.457567][0.756091,0.226011,0][1.03154,0.218299,-0.983916][-0.835298,-0.0208695,0.549401][0.758783,0.185782,0][1.07738,0.245709,-0.992728][0.854236,0.243879,-0.459135][0.748787,0.193055,0][1.12481,0.0277651,-1.02024][0.824602,0.0738313,-0.560874][0.728972,0.14796,0][1.12481,0.0277651,-1.02024][0.824602,0.0738313,-0.560874][0.728972,0.14796,0][1.0941,0.00328189,-1.0145][-0.87995,-0.357531,0.312827][0.734146,0.140565,0][1.03154,0.218299,-0.983916][-0.835298,-0.0208695,0.549401][0.758783,0.185782,0][1.0941,0.00328189,-1.0145][-0.87995,-0.357531,0.312827][0.734146,0.140565,0][1.12481,0.0277651,-1.02024][0.824602,0.0738313,-0.560874][0.728972,0.14796,0][1.21713,-0.22346,-0.917591][0.65245,-0.327725,-0.683304][0.687309,0.112793,0][1.21713,-0.22346,-0.917591][0.65245,-0.327725,-0.683304][0.687309,0.112793,0][1.21188,-0.244735,-0.912397][-0.868409,-0.107607,0.484032][0.683835,0.098156,0][1.0941,0.00328189,-1.0145][-0.87995,-0.357531,0.312827][0.734146,0.140565,0][1.03066,0.58157,-0.897943][-0.486863,-0.685739,0.541042][0.935042,0.039539,0][1.06125,0.58398,-0.867361][-0.486863,-0.685739,0.541042][0.93572,0.039461,0][0.973524,0.696617,-0.803543][-0.572482,-0.786593,0.231377][0.935835,0.041925,0][0.973524,0.696617,-0.803543][-0.572482,-0.786593,0.231377][0.935835,0.041925,0][0.929627,0.701107,-0.893585][-0.493986,-0.84648,0.198619][0.934254,0.04188,0][1.03066,0.58157,-0.897943][-0.486863,-0.685739,0.541042][0.935042,0.039539,0][1.053,0.578483,-0.924681][-0.671365,-0.549307,-0.497525][0.859346,0.323144,0][1.03066,0.58157,-0.897943][-0.486863,-0.685739,0.541042][0.865601,0.33168,0][0.929627,0.701107,-0.893585][-0.493986,-0.84648,0.198619][0.856844,0.374071,0][0.929627,0.701107,-0.893585][-0.493986,-0.84648,0.198619][0.856844,0.374071,0][0.982824,0.750496,-0.951341][0.656068,0.73851,-0.155493][0.824727,0.392516,0][1.053,0.578483,-0.924681][-0.671365,-0.549307,-0.497525][0.859346,0.323144,0][1.053,0.578483,-0.924681][-0.671365,-0.549307,-0.497525][0.859346,0.323144,0][0.982824,0.750496,-0.951341][0.656068,0.73851,-0.155493][0.824727,0.392516,0][1.02134,0.739771,-0.839761][0.743318,0.422718,-0.518448][0.791262,0.343017,0][1.02134,0.739771,-0.839761][0.743318,0.422718,-0.518448][0.791262,0.343017,0][1.09019,0.578522,-0.88752][0.629117,0.455225,-0.630065][0.847395,0.312183,0][1.053,0.578483,-0.924681][-0.671365,-0.549307,-0.497525][0.859346,0.323144,0][1.06125,0.58398,-0.867361][-0.486863,-0.685739,0.541042][0.839147,0.308625,0][1.09019,0.578522,-0.88752][0.629117,0.455225,-0.630065][0.847395,0.312183,0][1.02134,0.739771,-0.839761][0.743318,0.422718,-0.518448][0.791262,0.343017,0][1.02134,0.739771,-0.839761][0.743318,0.422718,-0.518448][0.791262,0.343017,0][0.973524,0.696617,-0.803543][-0.572482,-0.786593,0.231377][0.801148,0.31114,0][1.06125,0.58398,-0.867361][-0.486863,-0.685739,0.541042][0.839147,0.308625,0][1.0795,0.41515,-0.974806][-0.603827,-0.473402,0.641314][0.934436,0.036624,0][1.06125,0.58398,-0.867361][-0.486863,-0.685739,0.541042][0.93572,0.039461,0][1.03066,0.58157,-0.897943][-0.486863,-0.685739,0.541042][0.935042,0.039539,0][1.03066,0.58157,-0.897943][-0.486863,-0.685739,0.541042][0.935042,0.039539,0][1.06799,0.415489,-0.985383][-0.60342,-0.473444,0.641666][0.934008,0.036704,0][1.0795,0.41515,-0.974806][-0.603827,-0.473402,0.641314][0.934436,0.036624,0][1.06799,0.415489,-0.985383][-0.60342,-0.473444,0.641666][0.896244,0.287666,0][1.03066,0.58157,-0.897943][-0.486863,-0.685739,0.541042][0.865601,0.33168,0][1.053,0.578483,-0.924681][-0.671365,-0.549307,-0.497525][0.859346,0.323144,0][1.053,0.578483,-0.924681][-0.671365,-0.549307,-0.497525][0.859346,0.323144,0][1.07157,0.414316,-1.0033][-0.980625,-0.0174911,-0.195113][0.892315,0.280609,0][1.06799,0.415489,-0.985383][-0.60342,-0.473444,0.641666][0.896244,0.287666,0][1.09777,0.411064,-0.978751][0.656091,0.385055,-0.649058][0.884013,0.276714,0][1.07157,0.414316,-1.0033][-0.980625,-0.0174911,-0.195113][0.892315,0.280609,0][1.053,0.578483,-0.924681][-0.671365,-0.549307,-0.497525][0.859346,0.323144,0][1.053,0.578483,-0.924681][-0.671365,-0.549307,-0.497525][0.859346,0.323144,0][1.09019,0.578522,-0.88752][0.629117,0.455225,-0.630065][0.847395,0.312183,0][1.09777,0.411064,-0.978751][0.656091,0.385055,-0.649058][0.884013,0.276714,0][1.0795,0.41515,-0.974806][-0.603827,-0.473402,0.641314][0.878431,0.272685,0][1.09777,0.411064,-0.978751][0.656091,0.385055,-0.649058][0.884013,0.276714,0][1.09019,0.578522,-0.88752][0.629117,0.455225,-0.630065][0.847395,0.312183,0][1.09019,0.578522,-0.88752][0.629117,0.455225,-0.630065][0.847395,0.312183,0][1.06125,0.58398,-0.867361][-0.486863,-0.685739,0.541042][0.839147,0.308625,0][1.0795,0.41515,-0.974806][-0.603827,-0.473402,0.641314][0.878431,0.272685,0][1.03907,0.275019,-1.02992][0.621578,0.00462993,-0.783339][0.920151,0.237672,0][1.02368,0.279938,-1.0421][0.621578,0.00462993,-0.783339][0.925877,0.243121,0][1.07157,0.414316,-1.0033][-0.980625,-0.0174911,-0.195113][0.892315,0.280609,0][1.07157,0.414316,-1.0033][-0.980625,-0.0174911,-0.195113][0.892315,0.280609,0][1.09777,0.411064,-0.978751][0.656091,0.385055,-0.649058][0.884013,0.276714,0][1.03907,0.275019,-1.02992][0.621578,0.00462993,-0.783339][0.920151,0.237672,0][1.0201,0.280392,-1.03152][-0.898315,0.388482,-0.205211][0.930272,0.248383,0][1.06799,0.415489,-0.985383][-0.60342,-0.473444,0.641666][0.896244,0.287666,0][1.07157,0.414316,-1.0033][-0.980625,-0.0174911,-0.195113][0.892315,0.280609,0][1.07157,0.414316,-1.0033][-0.980625,-0.0174911,-0.195113][0.892315,0.280609,0][1.02368,0.279938,-1.0421][0.621578,0.00462993,-0.783339][0.925877,0.243121,0][1.0201,0.280392,-1.03152][-0.898315,0.388482,-0.205211][0.930272,0.248383,0][1.02784,0.278638,-1.02543][-0.676715,-0.016857,0.736052][0.932804,0.034179,0][1.0795,0.41515,-0.974806][-0.603827,-0.473402,0.641314][0.934436,0.036624,0][1.06799,0.415489,-0.985383][-0.60342,-0.473444,0.641666][0.934008,0.036704,0][1.06799,0.415489,-0.985383][-0.60342,-0.473444,0.641666][0.934008,0.036704,0][1.0201,0.280392,-1.03152][-0.898315,0.388482,-0.205211][0.932413,0.034313,0][1.02784,0.278638,-1.02543][-0.676715,-0.016857,0.736052][0.932804,0.034179,0][1.03907,0.275019,-1.02992][0.621578,0.00462993,-0.783339][0.920151,0.237672,0][1.09777,0.411064,-0.978751][0.656091,0.385055,-0.649058][0.884013,0.276714,0][1.0795,0.41515,-0.974806][-0.603827,-0.473402,0.641314][0.878431,0.272685,0][1.0795,0.41515,-0.974806][-0.603827,-0.473402,0.641314][0.878431,0.272685,0][1.02784,0.278638,-1.02543][-0.676715,-0.016857,0.736052][0.913697,0.234261,0][1.03907,0.275019,-1.02992][0.621578,0.00462993,-0.783339][0.920151,0.237672,0][1.03503,0.173062,-1.05213][0.64158,0.138938,-0.754369][0.958058,0.206053,0][1.02368,0.279938,-1.0421][0.621578,0.00462993,-0.783339][0.925877,0.243121,0][1.03907,0.275019,-1.02992][0.621578,0.00462993,-0.783339][0.920151,0.237672,0][1.03907,0.275019,-1.02992][0.621578,0.00462993,-0.783339][0.920151,0.237672,0][1.04591,0.16522,-1.04122][0.743124,0.114217,-0.659333][0.955102,0.199142,0][1.03503,0.173062,-1.05213][0.64158,0.138938,-0.754369][0.958058,0.206053,0][1.02882,0.174838,-1.0443][-0.947178,-0.0396698,-0.318244][0.962017,0.211782,0][1.0201,0.280392,-1.03152][-0.898315,0.388482,-0.205211][0.930272,0.248383,0][1.02368,0.279938,-1.0421][0.621578,0.00462993,-0.783339][0.925877,0.243121,0][1.02368,0.279938,-1.0421][0.621578,0.00462993,-0.783339][0.925877,0.243121,0][1.03503,0.173062,-1.05213][0.64158,0.138938,-0.754369][0.958058,0.206053,0][1.02882,0.174838,-1.0443][-0.947178,-0.0396698,-0.318244][0.962017,0.211782,0][1.02882,0.174838,-1.0443][-0.947178,-0.0396698,-0.318244][0.931939,0.031178,0][1.03745,0.169281,-1.03577][-0.737704,-0.127502,0.662975][0.932315,0.030935,0][1.02784,0.278638,-1.02543][-0.676715,-0.016857,0.736052][0.932804,0.034179,0][1.02784,0.278638,-1.02543][-0.676715,-0.016857,0.736052][0.932804,0.034179,0][1.0201,0.280392,-1.03152][-0.898315,0.388482,-0.205211][0.932413,0.034313,0][1.02882,0.174838,-1.0443][-0.947178,-0.0396698,-0.318244][0.931939,0.031178,0][1.03745,0.169281,-1.03577][-0.737704,-0.127502,0.662975][0.948575,0.197469,0][1.04591,0.16522,-1.04122][0.743124,0.114217,-0.659333][0.955102,0.199142,0][1.03907,0.275019,-1.02992][0.621578,0.00462993,-0.783339][0.920151,0.237672,0][1.03907,0.275019,-1.02992][0.621578,0.00462993,-0.783339][0.920151,0.237672,0][1.02784,0.278638,-1.02543][-0.676715,-0.016857,0.736052][0.913697,0.234261,0][1.03745,0.169281,-1.03577][-0.737704,-0.127502,0.662975][0.948575,0.197469,0][1.03503,0.173062,-1.05213][0.64158,0.138938,-0.754369][0.958058,0.206053,0][1.04591,0.16522,-1.04122][0.743124,0.114217,-0.659333][0.955102,0.199142,0][1.06423,0.00626397,-1.07117][0.762369,0.203589,-0.614284][0.98635,0.166123,0][1.02882,0.174838,-1.0443][-0.947178,-0.0396698,-0.318244][0.962017,0.211782,0][1.03503,0.173062,-1.05213][0.64158,0.138938,-0.754369][0.958058,0.206053,0][1.06423,0.00626397,-1.07117][0.762369,0.203589,-0.614284][0.98635,0.166123,0][1.03745,0.169281,-1.03577][-0.737704,-0.127502,0.662975][0.932315,0.030935,0][1.02882,0.174838,-1.0443][-0.947178,-0.0396698,-0.318244][0.931939,0.031178,0][1.06423,0.00626397,-1.07117][0.762369,0.203589,-0.614284][0.931582,0.027955,0][1.04591,0.16522,-1.04122][0.743124,0.114217,-0.659333][0.955102,0.199142,0][1.03745,0.169281,-1.03577][-0.737704,-0.127502,0.662975][0.948575,0.197469,0][1.06423,0.00626397,-1.07117][0.762369,0.203589,-0.614284][0.98635,0.166123,0][-0.448198,-0.00331283,-1.45348][-0.157306,0.536493,0.829114][0.656054,0.731811,0][-0.848389,-0.360563,-1.29824][-0.157306,0.536493,0.829114][0.593825,0.768281,0][-0.61077,-0.46667,-1.1845][-0.60184,0.138919,-0.786441][0.590501,0.734296,0][-0.61077,-0.46667,-1.1845][-0.60184,0.138919,-0.786441][0.590501,0.734296,0][-0.336446,-0.105335,-1.3306][-0.688523,0.327098,-0.647258][0.647834,0.707001,0][-0.448198,-0.00331283,-1.45348][-0.157306,0.536493,0.829114][0.656054,0.731811,0][-0.848389,-0.360563,-1.29824][-0.157306,0.536493,0.829114][0.593825,0.768281,0][-0.448198,-0.00331283,-1.45348][-0.157306,0.536493,0.829114][0.656054,0.731811,0][-0.401544,-0.115181,-1.45155][0.173784,-0.497291,-0.850001][0.663521,0.745416,0][-0.401544,-0.115181,-1.45155][0.173784,-0.497291,-0.850001][0.663521,0.745416,0][-0.801863,-0.504459,-1.30565][0.173784,-0.497291,-0.850001][0.59635,0.787614,0][-0.848389,-0.360563,-1.29824][-0.157306,0.536493,0.829114][0.593825,0.768281,0][-0.848389,-0.360563,-1.29824][-0.157306,0.536493,0.829114][0.593825,0.768281,0][-1.22222,-0.495127,-0.97498][0.160857,0.831283,0.532065][0.534306,0.781625,0][-0.921169,-0.605423,-0.893672][-0.691791,0.035949,-0.721202][0.537658,0.741629,0][-0.921169,-0.605423,-0.893672][-0.691791,0.035949,-0.721202][0.537658,0.741629,0][-0.61077,-0.46667,-1.1845][-0.60184,0.138919,-0.786441][0.590501,0.734296,0][-0.848389,-0.360563,-1.29824][-0.157306,0.536493,0.829114][0.593825,0.768281,0][-0.848389,-0.360563,-1.29824][-0.157306,0.536493,0.829114][0.593825,0.768281,0][-0.801863,-0.504459,-1.30565][0.173784,-0.497291,-0.850001][0.59635,0.787614,0][-1.08733,-0.620447,-0.95034][-0.680834,-0.328988,-0.654394][0.537274,0.804835,0][-1.08733,-0.620447,-0.95034][-0.680834,-0.328988,-0.654394][0.537274,0.804835,0][-1.22222,-0.495127,-0.97498][0.160857,0.831283,0.532065][0.534306,0.781625,0][-0.848389,-0.360563,-1.29824][-0.157306,0.536493,0.829114][0.593825,0.768281,0][-1.23702,-0.509746,-0.535233][0.712236,0.498003,0.494685][0.479907,0.788492,0][-1.07555,-0.749044,-0.526814][-0.930926,0.149205,-0.33334][0.478534,0.74362,0][-0.921169,-0.605423,-0.893672][-0.691791,0.035949,-0.721202][0.537658,0.741629,0][-0.921169,-0.605423,-0.893672][-0.691791,0.035949,-0.721202][0.537658,0.741629,0][-1.22222,-0.495127,-0.97498][0.160857,0.831283,0.532065][0.534306,0.781625,0][-1.23702,-0.509746,-0.535233][0.712236,0.498003,0.494685][0.479907,0.788492,0][-1.23702,-0.509746,-0.535233][0.712236,0.498003,0.494685][0.479907,0.788492,0][-1.22222,-0.495127,-0.97498][0.160857,0.831283,0.532065][0.534306,0.781625,0][-1.08733,-0.620447,-0.95034][-0.680834,-0.328988,-0.654394][0.537274,0.804835,0][-1.08733,-0.620447,-0.95034][-0.680834,-0.328988,-0.654394][0.537274,0.804835,0][-1.23954,-0.695034,-0.540545][-0.776774,-0.502267,-0.379934][0.475192,0.818953,0][-1.23702,-0.509746,-0.535233][0.712236,0.498003,0.494685][0.479907,0.788492,0][-1.36681,-0.6466,-0.134526][0.661801,0.680971,0.313525][0.408584,0.780156,0][-1.13631,-0.868187,-0.139776][-0.984501,0.133804,-0.113372][0.420074,0.734838,0][-1.07555,-0.749044,-0.526814][-0.930926,0.149205,-0.33334][0.478534,0.74362,0][-1.07555,-0.749044,-0.526814][-0.930926,0.149205,-0.33334][0.478534,0.74362,0][-1.23702,-0.509746,-0.535233][0.712236,0.498003,0.494685][0.479907,0.788492,0][-1.36681,-0.6466,-0.134526][0.661801,0.680971,0.313525][0.408584,0.780156,0][-1.36681,-0.6466,-0.134526][0.661801,0.680971,0.313525][0.408584,0.780156,0][-1.23702,-0.509746,-0.535233][0.712236,0.498003,0.494685][0.479907,0.788492,0][-1.23954,-0.695034,-0.540545][-0.776774,-0.502267,-0.379934][0.475192,0.818953,0][-1.23954,-0.695034,-0.540545][-0.776774,-0.502267,-0.379934][0.475192,0.818953,0][-1.27337,-0.907536,-0.142327][-0.736116,-0.569188,-0.366277][0.379891,0.818827,0][-1.36681,-0.6466,-0.134526][0.661801,0.680971,0.313525][0.408584,0.780156,0][-1.22305,-0.718815,0.280999][0.614941,0.774525,-0.148185][0.343823,0.742679,0][-1.08859,-0.829027,0.262932][-0.985754,0.132225,0.103952][0.356025,0.704674,0][-1.13631,-0.868187,-0.139776][-0.984501,0.133804,-0.113372][0.420074,0.734838,0][-1.13631,-0.868187,-0.139776][-0.984501,0.133804,-0.113372][0.420074,0.734838,0][-1.36681,-0.6466,-0.134526][0.661801,0.680971,0.313525][0.408584,0.780156,0][-1.22305,-0.718815,0.280999][0.614941,0.774525,-0.148185][0.343823,0.742679,0][-1.22305,-0.718815,0.280999][0.614941,0.774525,-0.148185][0.343823,0.742679,0][-1.36681,-0.6466,-0.134526][0.661801,0.680971,0.313525][0.408584,0.780156,0][-1.27337,-0.907536,-0.142327][-0.736116,-0.569188,-0.366277][0.379891,0.818827,0][-1.27337,-0.907536,-0.142327][-0.736116,-0.569188,-0.366277][0.379891,0.818827,0][-1.27935,-0.874486,0.320288][-0.79986,-0.599307,0.0324717][0.318771,0.770493,0][-1.22305,-0.718815,0.280999][0.614941,0.774525,-0.148185][0.343823,0.742679,0][-0.956647,-0.794667,0.742453][0.588378,0.778729,-0.217699][0.256516,0.638255,0][-0.869554,-0.868392,0.714121][-0.87624,0.191679,0.442111][0.275878,0.620385,0][-1.08859,-0.829027,0.262932][-0.985754,0.132225,0.103952][0.356025,0.704674,0][-1.08859,-0.829027,0.262932][-0.985754,0.132225,0.103952][0.356025,0.704674,0][-1.22305,-0.718815,0.280999][0.614941,0.774525,-0.148185][0.343823,0.742679,0][-0.956647,-0.794667,0.742453][0.588378,0.778729,-0.217699][0.256516,0.638255,0][-0.956647,-0.794667,0.742453][0.588378,0.778729,-0.217699][0.256516,0.638255,0][-1.22305,-0.718815,0.280999][0.614941,0.774525,-0.148185][0.343823,0.742679,0][-1.27935,-0.874486,0.320288][-0.79986,-0.599307,0.0324717][0.318771,0.770493,0][-1.27935,-0.874486,0.320288][-0.79986,-0.599307,0.0324717][0.318771,0.770493,0][-0.986364,-0.897419,0.800639][-0.853865,-0.0417199,0.51882][0.227721,0.643077,0][-0.956647,-0.794667,0.742453][0.588378,0.778729,-0.217699][0.256516,0.638255,0][-0.956647,-0.794667,0.742453][0.588378,0.778729,-0.217699][0.256516,0.638255,0][-0.605471,-0.732077,1.22286][0.417329,0.810665,-0.410681][0.221434,0.532107,0][-0.549138,-0.867551,1.01269][-0.665265,0.220416,0.713329][0.25582,0.539908,0][-0.549138,-0.867551,1.01269][-0.665265,0.220416,0.713329][0.25582,0.539908,0][-0.869554,-0.868392,0.714121][-0.87624,0.191679,0.442111][0.275878,0.620385,0][-0.956647,-0.794667,0.742453][0.588378,0.778729,-0.217699][0.256516,0.638255,0][-0.956647,-0.794667,0.742453][0.588378,0.778729,-0.217699][0.256516,0.638255,0][-0.986364,-0.897419,0.800639][-0.853865,-0.0417199,0.51882][0.227721,0.643077,0][-0.616285,-0.920907,1.14072][-0.675136,0.0328463,0.736962][0.187844,0.551947,0][-0.616285,-0.920907,1.14072][-0.675136,0.0328463,0.736962][0.187844,0.551947,0][-0.605471,-0.732077,1.22286][0.417329,0.810665,-0.410681][0.221434,0.532107,0][-0.956647,-0.794667,0.742453][0.588378,0.778729,-0.217699][0.256516,0.638255,0][-0.605471,-0.732077,1.22286][0.417329,0.810665,-0.410681][0.221434,0.532107,0][-0.215717,-0.604814,1.29057][-0.151684,0.784461,-0.601342][0.220276,0.470824,0][-0.178929,-0.727285,1.12152][-0.359876,0.253033,0.898033][0.260324,0.464688,0][-0.178929,-0.727285,1.12152][-0.359876,0.253033,0.898033][0.260324,0.464688,0][-0.549138,-0.867551,1.01269][-0.665265,0.220416,0.713329][0.25582,0.539908,0][-0.605471,-0.732077,1.22286][0.417329,0.810665,-0.410681][0.221434,0.532107,0][-0.605471,-0.732077,1.22286][0.417329,0.810665,-0.410681][0.221434,0.532107,0][-0.616285,-0.920907,1.14072][-0.675136,0.0328463,0.736962][0.187844,0.551947,0][-0.212705,-0.745597,1.23314][-0.233826,0.0259128,0.971933][0.197802,0.472361,0][-0.212705,-0.745597,1.23314][-0.233826,0.0259128,0.971933][0.197802,0.472361,0][-0.215717,-0.604814,1.29057][-0.151684,0.784461,-0.601342][0.220276,0.470824,0][-0.605471,-0.732077,1.22286][0.417329,0.810665,-0.410681][0.221434,0.532107,0][0.241498,-0.76882,1.27926][0.299095,0.740104,-0.60232][0.202953,0.372276,0][0.226367,-0.846696,1.17605][-0.10738,0.0877973,0.990334][0.238478,0.372332,0][-0.178929,-0.727285,1.12152][-0.359876,0.253033,0.898033][0.260324,0.464688,0][-0.178929,-0.727285,1.12152][-0.359876,0.253033,0.898033][0.260324,0.464688,0][-0.215717,-0.604814,1.29057][-0.151684,0.784461,-0.601342][0.220276,0.470824,0][0.241498,-0.76882,1.27926][0.299095,0.740104,-0.60232][0.202953,0.372276,0][0.241498,-0.76882,1.27926][0.299095,0.740104,-0.60232][0.202953,0.372276,0][-0.215717,-0.604814,1.29057][-0.151684,0.784461,-0.601342][0.220276,0.470824,0][-0.212705,-0.745597,1.23314][-0.233826,0.0259128,0.971933][0.197802,0.472361,0][-0.212705,-0.745597,1.23314][-0.233826,0.0259128,0.971933][0.197802,0.472361,0][0.226428,-0.856126,1.2848][-0.106335,0.0418889,0.993448][0.178611,0.372169,0][0.241498,-0.76882,1.27926][0.299095,0.740104,-0.60232][0.202953,0.372276,0][0.241498,-0.76882,1.27926][0.299095,0.740104,-0.60232][0.202953,0.372276,0][0.680774,-0.741956,1.20422][-0.171392,0.581952,-0.794957][0.241962,0.266048,0][0.631638,-0.882568,1.11187][0.164382,0.101758,0.981134][0.268951,0.286798,0][0.631638,-0.882568,1.11187][0.164382,0.101758,0.981134][0.268951,0.286798,0][0.226367,-0.846696,1.17605][-0.10738,0.0877973,0.990334][0.238478,0.372332,0][0.241498,-0.76882,1.27926][0.299095,0.740104,-0.60232][0.202953,0.372276,0][0.241498,-0.76882,1.27926][0.299095,0.740104,-0.60232][0.202953,0.372276,0][0.226428,-0.856126,1.2848][-0.106335,0.0418889,0.993448][0.178611,0.372169,0][0.665439,-0.894266,1.21527][0.177298,0.409207,0.89505][0.209971,0.247964,0][0.665439,-0.894266,1.21527][0.177298,0.409207,0.89505][0.209971,0.247964,0][0.680774,-0.741956,1.20422][-0.171392,0.581952,-0.794957][0.241962,0.266048,0][0.241498,-0.76882,1.27926][0.299095,0.740104,-0.60232][0.202953,0.372276,0][1.02233,-0.762959,0.980321][-0.412341,0.539218,-0.734316][0.298318,0.209016,0][0.99684,-0.857817,0.924978][0.44772,0.101887,0.88835][0.316618,0.221924,0][0.631638,-0.882568,1.11187][0.164382,0.101758,0.981134][0.268951,0.286798,0][0.631638,-0.882568,1.11187][0.164382,0.101758,0.981134][0.268951,0.286798,0][0.680774,-0.741956,1.20422][-0.171392,0.581952,-0.794957][0.241962,0.266048,0][1.02233,-0.762959,0.980321][-0.412341,0.539218,-0.734316][0.298318,0.209016,0][0.680774,-0.741956,1.20422][-0.171392,0.581952,-0.794957][0.241962,0.266048,0][0.665439,-0.894266,1.21527][0.177298,0.409207,0.89505][0.209971,0.247964,0][1.06105,-0.876747,1.01285][0.455822,-0.143839,0.878372][0.284236,0.187769,0][1.06105,-0.876747,1.01285][0.455822,-0.143839,0.878372][0.284236,0.187769,0][1.02233,-0.762959,0.980321][-0.412341,0.539218,-0.734316][0.298318,0.209016,0][0.680774,-0.741956,1.20422][-0.171392,0.581952,-0.794957][0.241962,0.266048,0][1.02233,-0.762959,0.980321][-0.412341,0.539218,-0.734316][0.298318,0.209016,0][1.40247,-0.823514,0.662283][-0.15797,0.918056,-0.363619][0.363978,0.145331,0][1.28157,-0.859966,0.622776][0.726467,0.0663916,0.683987][0.374983,0.165895,0][1.28157,-0.859966,0.622776][0.726467,0.0663916,0.683987][0.374983,0.165895,0][0.99684,-0.857817,0.924978][0.44772,0.101887,0.88835][0.316618,0.221924,0][1.02233,-0.762959,0.980321][-0.412341,0.539218,-0.734316][0.298318,0.209016,0][1.02233,-0.762959,0.980321][-0.412341,0.539218,-0.734316][0.298318,0.209016,0][1.06105,-0.876747,1.01285][0.455822,-0.143839,0.878372][0.284236,0.187769,0][1.35888,-0.909171,0.676499][0.71657,-0.234063,0.657071][0.350034,0.135018,0][1.35888,-0.909171,0.676499][0.71657,-0.234063,0.657071][0.350034,0.135018,0][1.40247,-0.823514,0.662283][-0.15797,0.918056,-0.363619][0.363978,0.145331,0][1.02233,-0.762959,0.980321][-0.412341,0.539218,-0.734316][0.298318,0.209016,0][1.54664,-0.850459,0.087085][-0.252625,0.961525,-0.107938][0.44628,0.087917,0][1.42111,-0.888009,0.046367][0.847997,0.498113,0.181064][0.458989,0.106456,0][1.28157,-0.859966,0.622776][0.726467,0.0663916,0.683987][0.374983,0.165895,0][1.28157,-0.859966,0.622776][0.726467,0.0663916,0.683987][0.374983,0.165895,0][1.40247,-0.823514,0.662283][-0.15797,0.918056,-0.363619][0.363978,0.145331,0][1.54664,-0.850459,0.087085][-0.252625,0.961525,-0.107938][0.44628,0.087917,0][1.40247,-0.823514,0.662283][-0.15797,0.918056,-0.363619][0.363978,0.145331,0][1.35888,-0.909171,0.676499][0.71657,-0.234063,0.657071][0.350034,0.135018,0][1.4899,-0.938028,0.11047][0.861032,-0.457231,0.222627][0.434039,0.075388,0][1.4899,-0.938028,0.11047][0.861032,-0.457231,0.222627][0.434039,0.075388,0][1.54664,-0.850459,0.087085][-0.252625,0.961525,-0.107938][0.44628,0.087917,0][1.40247,-0.823514,0.662283][-0.15797,0.918056,-0.363619][0.363978,0.145331,0][1.53598,-0.779357,-0.298928][-0.688785,-0.584597,-0.428743][0.515514,0.063977,0][1.42111,-0.888009,0.046367][0.847997,0.498113,0.181064][0.458989,0.106456,0][1.54664,-0.850459,0.087085][-0.252625,0.961525,-0.107938][0.44628,0.087917,0][1.4899,-0.938028,0.11047][0.861032,-0.457231,0.222627][0.434039,0.075388,0][1.53598,-0.779357,-0.298928][-0.688785,-0.584597,-0.428743][0.515514,0.063977,0][1.54664,-0.850459,0.087085][-0.252625,0.961525,-0.107938][0.44628,0.087917,0][-0.336446,-0.105335,-1.3306][-0.688523,0.327098,-0.647258][0.647834,0.707001,0][0.147125,0.0881353,-1.43712][0.000711129,0.586468,-0.809972][0.741508,0.680793,0][-0.448198,-0.00331283,-1.45348][-0.157306,0.536493,0.829114][0.656054,0.731811,0][0.147125,0.0881353,-1.43712][0.000711129,0.586468,-0.809972][0.741508,0.680793,0][-0.401544,-0.115181,-1.45155][0.173784,-0.497291,-0.850001][0.663521,0.745416,0][-0.448198,-0.00331283,-1.45348][-0.157306,0.536493,0.829114][0.656054,0.731811,0][-0.653522,-0.733076,-1.30084][0.818622,-0.569927,-0.0710048][0.645254,0.879409,0][-0.368457,-0.303829,-1.45969][0.818622,-0.569927,-0.0710048][0.703227,0.806051,0][-0.336727,-0.284662,-1.24772][0.675548,0.0835714,0.732564][0.742326,0.831555,0][-0.336727,-0.284662,-1.24772][0.675548,0.0835714,0.732564][0.742326,0.831555,0][-0.581696,-0.659688,-1.06085][0.739159,-0.156391,0.655123][0.669853,0.922307,0][-0.653522,-0.733076,-1.30084][0.818622,-0.569927,-0.0710048][0.645254,0.879409,0][-0.458555,-0.163045,-1.53387][-0.394612,0.588874,0.705343][0.680444,0.784504,0][-1.0294,-0.623737,-1.46861][-0.394612,0.588874,0.705343][0.60465,0.842483,0][-0.759229,-0.58423,-1.35044][-0.394612,0.588874,0.705343][0.607588,0.809841,0][-0.759229,-0.58423,-1.35044][-0.394612,0.588874,0.705343][0.607588,0.809841,0][-0.37615,-0.166274,-1.44939][-0.543864,0.629778,0.55461][0.677255,0.766028,0][-0.458555,-0.163045,-1.53387][-0.394612,0.588874,0.705343][0.680444,0.784504,0][-0.952696,-0.867773,-1.00611][0.498713,-0.859301,0.113516][0.594124,0.908121,0][-0.653522,-0.733076,-1.30084][0.818622,-0.569927,-0.0710048][0.645254,0.879409,0][-0.581696,-0.659688,-1.06085][0.739159,-0.156391,0.655123][0.669853,0.922307,0][-0.581696,-0.659688,-1.06085][0.739159,-0.156391,0.655123][0.669853,0.922307,0][-0.867222,-0.773923,-0.76793][0.726171,-0.0585069,0.68502][0.582746,0.947111,0][-0.952696,-0.867773,-1.00611][0.498713,-0.859301,0.113516][0.594124,0.908121,0][-1.0294,-0.623737,-1.46861][-0.394612,0.588874,0.705343][0.60465,0.842483,0][-1.30332,-0.716396,-1.03799][0.123672,0.951023,0.283304][0.540357,0.863141,0][-1.05536,-0.771664,-0.960703][0.123672,0.951023,0.283304][0.536254,0.831501,0][-1.05536,-0.771664,-0.960703][0.123672,0.951023,0.283304][0.536254,0.831501,0][-0.759229,-0.58423,-1.35044][-0.394612,0.588874,0.705343][0.607588,0.809841,0][-1.0294,-0.623737,-1.46861][-0.394612,0.588874,0.705343][0.60465,0.842483,0][-1.20203,-1.01218,-0.419528][0.630619,-0.772168,0.0779545][0.493952,0.90531,0][-0.952696,-0.867773,-1.00611][0.498713,-0.859301,0.113516][0.594124,0.908121,0][-0.867222,-0.773923,-0.76793][0.726171,-0.0585069,0.68502][0.582746,0.947111,0][-0.867222,-0.773923,-0.76793][0.726171,-0.0585069,0.68502][0.582746,0.947111,0][-0.993661,-0.913774,-0.343836][0.830517,0.405876,0.381453][0.498227,0.949287,0][-1.20203,-1.01218,-0.419528][0.630619,-0.772168,0.0779545][0.493952,0.90531,0][-1.37472,-0.804293,-0.371278][0.541564,0.770553,0.336091][0.533123,0.863535,0][-1.21775,-0.915438,-0.369399][0.541564,0.770553,0.336091][0.472165,0.86553,0][-1.05536,-0.771664,-0.960703][0.123672,0.951023,0.283304][0.536254,0.831501,0][-1.05536,-0.771664,-0.960703][0.123672,0.951023,0.283304][0.536254,0.831501,0][-1.30332,-0.716396,-1.03799][0.123672,0.951023,0.283304][0.540357,0.863141,0][-1.37472,-0.804293,-0.371278][0.541564,0.770553,0.336091][0.533123,0.863535,0][-1.29225,-1.09815,0.301862][0.305603,-0.949343,-0.0731803][0.301105,0.827974,0][-1.25784,-1.04384,-0.258947][0.305603,-0.949343,-0.0731803][0.341171,0.855971,0][-1.0037,-0.959767,-0.288307][0.927113,0.188679,0.323825][0.389866,0.973699,0][-1.0037,-0.959767,-0.288307][0.927113,0.188679,0.323825][0.389866,0.973699,0][-0.909606,-1.04391,0.491761][0.936405,0.342594,-0.0759931][0.19981,0.791252,0][-1.29225,-1.09815,0.301862][0.305603,-0.949343,-0.0731803][0.301105,0.827974,0][-1.4486,-0.831625,-0.219675][0.299387,0.939539,0.166232][0.329768,0.827082,0][-1.37397,-0.95588,0.348204][0.299387,0.939539,0.166232][0.312567,0.821926,0][-1.22099,-1.00994,0.378261][0.299387,0.939539,0.166232][0.296854,0.800616,0][-1.22099,-1.00994,0.378261][0.299387,0.939539,0.166232][0.296854,0.800616,0][-1.18997,-0.920568,-0.329708][0.37221,0.918672,0.132289][0.36375,0.835459,0][-1.4486,-0.831625,-0.219675][0.299387,0.939539,0.166232][0.329768,0.827082,0][-1.06624,-1.09439,0.637135][0.266321,-0.922191,-0.280423][0.176079,0.7362,0][-0.947245,-1.03133,0.54275][0.610392,-0.536298,0.582929][0.133247,0.756686,0][-0.546238,-1.05491,1.00115][0.753047,0.0239251,-0.657531][0.059611,0.606329,0][-0.546238,-1.05491,1.00115][0.753047,0.0239251,-0.657531][0.059611,0.606329,0][-0.628771,-1.12032,1.15144][0.255647,-0.929931,-0.264336][0.099739,0.585844,0][-1.06624,-1.09439,0.637135][0.266321,-0.922191,-0.280423][0.176079,0.7362,0][-1.18915,-0.968836,0.706351][0.501698,0.745109,-0.439444][0.180266,0.63904,0][-0.701594,-0.970272,1.26055][0.501698,0.745109,-0.439444][0.139919,0.566817,0][-0.656884,-1.04906,1.178][0.501698,0.745109,-0.439444][0.16339,0.563211,0][-0.656884,-1.04906,1.178][0.501698,0.745109,-0.439444][0.16339,0.563211,0][-1.12267,-1.01675,0.639841][0.371857,0.88861,-0.268505][0.208918,0.679265,0][-1.18915,-0.968836,0.706351][0.501698,0.745109,-0.439444][0.180266,0.63904,0][-0.220717,-1.03745,1.26496][0.261322,-0.929309,-0.26095][0.062035,0.496993,0][-0.628771,-1.12032,1.15144][0.255647,-0.929931,-0.264336][0.099739,0.585844,0][-0.546238,-1.05491,1.00115][0.753047,0.0239251,-0.657531][0.059611,0.606329,0][-0.546238,-1.05491,1.00115][0.753047,0.0239251,-0.657531][0.059611,0.606329,0][-0.178143,-1.01442,1.11916][0.316711,-0.14891,-0.93676][0.021377,0.499349,0][-0.220717,-1.03745,1.26496][0.261322,-0.929309,-0.26095][0.062035,0.496993,0][-0.701594,-0.970272,1.26055][0.501698,0.745109,-0.439444][0.139919,0.566817,0][-0.25193,-0.817211,1.46632][-0.0894018,0.882755,-0.46125][0.123829,0.481084,0][-0.230457,-0.914618,1.27574][-0.0894018,0.882755,-0.46125][0.158637,0.481292,0][-0.230457,-0.914618,1.27574][-0.0894018,0.882755,-0.46125][0.158637,0.481292,0][-0.656884,-1.04906,1.178][0.501698,0.745109,-0.439444][0.16339,0.563211,0][-0.701594,-0.970272,1.26055][0.501698,0.745109,-0.439444][0.139919,0.566817,0][0.359871,-1.12057,1.30097][-0.127486,-0.973276,-0.191002][0.069165,0.363928,0][-0.220717,-1.03745,1.26496][0.261322,-0.929309,-0.26095][0.062035,0.496993,0][-0.178143,-1.01442,1.11916][0.316711,-0.14891,-0.93676][0.021377,0.499349,0][-0.178143,-1.01442,1.11916][0.316711,-0.14891,-0.93676][0.021377,0.499349,0][0.425198,-1.11934,1.17226][0.085634,-0.0117811,-0.996257][0.044747,0.335498,0][0.359871,-1.12057,1.30097][-0.127486,-0.973276,-0.191002][0.069165,0.363928,0][0.412355,-0.936251,1.52886][0.143303,0.948391,-0.282875][0.104613,0.415998,0][0.428474,-1.00055,1.32144][0.143303,0.948391,-0.282875][0.124901,0.360851,0][-0.230457,-0.914618,1.27574][-0.0894018,0.882755,-0.46125][0.158637,0.481292,0][-0.230457,-0.914618,1.27574][-0.0894018,0.882755,-0.46125][0.158637,0.481292,0][-0.25193,-0.817211,1.46632][-0.0894018,0.882755,-0.46125][0.123829,0.481084,0][0.412355,-0.936251,1.52886][0.143303,0.948391,-0.282875][0.104613,0.415998,0][0.558234,-1.05805,1.36081][0.0807059,-0.986395,0.143215][0.115887,0.20575,0][0.439927,-1.09208,1.19311][-0.183119,-0.222088,-0.957677][0.072388,0.16486,0][0.994866,-1.08605,0.921945][-0.438158,-0.0461283,-0.897713][0.206759,0.063113,0][0.994866,-1.08605,0.921945][-0.438158,-0.0461283,-0.897713][0.206759,0.063113,0][1.08618,-1.12555,1.02817][-0.225603,-0.960454,-0.163189][0.226705,0.095044,0][0.558234,-1.05805,1.36081][0.0807059,-0.986395,0.143215][0.115887,0.20575,0][0.569213,-0.917303,1.39232][-0.185442,0.876581,-0.444091][0.16479,0.211811,0][1.18015,-0.935338,1.10161][-0.185442,0.876581,-0.444091][0.256596,0.13495,0][1.06924,-0.981556,1.05669][-0.185442,0.876581,-0.444091][0.259664,0.163032,0][1.06924,-0.981556,1.05669][-0.185442,0.876581,-0.444091][0.259664,0.163032,0][0.481615,-0.984519,1.33944][-0.270314,0.787741,-0.553528][0.150792,0.247216,0][0.569213,-0.917303,1.39232][-0.185442,0.876581,-0.444091][0.16479,0.211811,0][1.08618,-1.12555,1.02817][-0.225603,-0.960454,-0.163189][0.226705,0.095044,0][0.994866,-1.08605,0.921945][-0.438158,-0.0461283,-0.897713][0.206759,0.063113,0][1.27013,-1.06632,0.614035][-0.742338,-0.0590064,-0.667422][0.309719,0.025588,0][1.27013,-1.06632,0.614035][-0.742338,-0.0590064,-0.667422][0.309719,0.025588,0][1.43666,-1.10949,0.687225][-0.15856,-0.965095,-0.208449][0.31452,0.063367,0][1.08618,-1.12555,1.02817][-0.225603,-0.960454,-0.163189][0.226705,0.095044,0][1.18015,-0.935338,1.10161][-0.185442,0.876581,-0.444091][0.256596,0.13495,0][1.5179,-0.893525,0.73416][-0.361306,0.903827,-0.229248][0.320697,0.092416,0][1.3893,-0.951335,0.708911][-0.361306,0.903827,-0.229248][0.328075,0.110477,0][1.3893,-0.951335,0.708911][-0.361306,0.903827,-0.229248][0.328075,0.110477,0][1.06924,-0.981556,1.05669][-0.185442,0.876581,-0.444091][0.259664,0.163032,0][1.18015,-0.935338,1.10161][-0.185442,0.876581,-0.444091][0.256596,0.13495,0][1.27013,-1.06632,0.614035][-0.742338,-0.0590064,-0.667422][0.309719,0.025588,0][1.42394,-1.0165,0.204418][-0.925801,-0.111503,-0.361191][0.411666,0.068429,0][1.43666,-1.10949,0.687225][-0.15856,-0.965095,-0.208449][0.31452,0.063367,0][1.42394,-1.0165,0.204418][-0.925801,-0.111503,-0.361191][0.411666,0.068429,0][1.3893,-0.951335,0.708911][-0.361306,0.903827,-0.229248][0.328075,0.110477,0][1.5179,-0.893525,0.73416][-0.361306,0.903827,-0.229248][0.320697,0.092416,0][0.182595,0.0562736,-1.46016][0.296015,-0.912329,0.282896][0.753275,0.6894,0][-0.336727,-0.284662,-1.24772][0.675548,0.0835714,0.732564][0.742326,0.831555,0][-0.368457,-0.303829,-1.45969][0.818622,-0.569927,-0.0710048][0.703227,0.806051,0][-0.37615,-0.166274,-1.44939][-0.543864,0.629778,0.55461][0.677255,0.766028,0][0.182595,0.0562736,-1.46016][0.296015,-0.912329,0.282896][0.753275,0.6894,0][-0.458555,-0.163045,-1.53387][-0.394612,0.588874,0.705343][0.680444,0.784504,0][-0.37615,-0.166274,-1.44939][-0.543864,0.629778,0.55461][0.677255,0.766028,0][-0.759229,-0.58423,-1.35044][-0.394612,0.588874,0.705343][0.607588,0.809841,0][-0.707131,-0.592002,-1.28025][-0.00985976,-0.288427,-0.957451][0.602946,0.800809,0][-0.707131,-0.592002,-1.28025][-0.00985976,-0.288427,-0.957451][0.602946,0.800809,0][-0.361265,-0.171066,-1.41062][0.173784,-0.497291,-0.850001][0.670579,0.75588,0][-0.37615,-0.166274,-1.44939][-0.543864,0.629778,0.55461][0.677255,0.766028,0][-0.458555,-0.163045,-1.53387][-0.394612,0.588874,0.705343][0.680444,0.784504,0][-0.368457,-0.303829,-1.45969][0.818622,-0.569927,-0.0710048][0.703227,0.806051,0][-0.653522,-0.733076,-1.30084][0.818622,-0.569927,-0.0710048][0.645254,0.879409,0][-0.653522,-0.733076,-1.30084][0.818622,-0.569927,-0.0710048][0.645254,0.879409,0][-1.0294,-0.623737,-1.46861][-0.394612,0.588874,0.705343][0.60465,0.842483,0][-0.458555,-0.163045,-1.53387][-0.394612,0.588874,0.705343][0.680444,0.784504,0][-0.759229,-0.58423,-1.35044][-0.394612,0.588874,0.705343][0.607588,0.809841,0][-1.05536,-0.771664,-0.960703][0.123672,0.951023,0.283304][0.536254,0.831501,0][-1.01005,-0.715156,-0.983122][-0.400406,-0.627113,-0.668135][0.544773,0.819141,0][-1.01005,-0.715156,-0.983122][-0.400406,-0.627113,-0.668135][0.544773,0.819141,0][-0.707131,-0.592002,-1.28025][-0.00985976,-0.288427,-0.957451][0.602946,0.800809,0][-0.759229,-0.58423,-1.35044][-0.394612,0.588874,0.705343][0.607588,0.809841,0][-1.0294,-0.623737,-1.46861][-0.394612,0.588874,0.705343][0.60465,0.842483,0][-0.653522,-0.733076,-1.30084][0.818622,-0.569927,-0.0710048][0.645254,0.879409,0][-0.952696,-0.867773,-1.00611][0.498713,-0.859301,0.113516][0.594124,0.908121,0][-0.952696,-0.867773,-1.00611][0.498713,-0.859301,0.113516][0.594124,0.908121,0][-1.30332,-0.716396,-1.03799][0.123672,0.951023,0.283304][0.540357,0.863141,0][-1.0294,-0.623737,-1.46861][-0.394612,0.588874,0.705343][0.60465,0.842483,0][-1.05536,-0.771664,-0.960703][0.123672,0.951023,0.283304][0.536254,0.831501,0][-1.21775,-0.915438,-0.369399][0.541564,0.770553,0.336091][0.472165,0.86553,0][-1.14734,-0.888751,-0.343588][-0.682804,-0.654692,-0.324279][0.417361,0.873427,0][-1.14734,-0.888751,-0.343588][-0.682804,-0.654692,-0.324279][0.417361,0.873427,0][-1.01005,-0.715156,-0.983122][-0.400406,-0.627113,-0.668135][0.544773,0.819141,0][-1.05536,-0.771664,-0.960703][0.123672,0.951023,0.283304][0.536254,0.831501,0][-1.30332,-0.716396,-1.03799][0.123672,0.951023,0.283304][0.540357,0.863141,0][-0.952696,-0.867773,-1.00611][0.498713,-0.859301,0.113516][0.594124,0.908121,0][-1.20203,-1.01218,-0.419528][0.630619,-0.772168,0.0779545][0.493952,0.90531,0][-1.20203,-1.01218,-0.419528][0.630619,-0.772168,0.0779545][0.493952,0.90531,0][-1.37472,-0.804293,-0.371278][0.541564,0.770553,0.336091][0.533123,0.863535,0][-1.30332,-0.716396,-1.03799][0.123672,0.951023,0.283304][0.540357,0.863141,0][-1.22099,-1.00994,0.378261][0.299387,0.939539,0.166232][0.296854,0.800616,0][-1.18725,-0.993745,0.387817][0.0942335,-0.980104,-0.174688][0.285273,0.779408,0][-1.21806,-0.872777,-0.307505][-0.736116,-0.569188,-0.366277][0.387032,0.837951,0][-1.21806,-0.872777,-0.307505][-0.736116,-0.569188,-0.366277][0.387032,0.837951,0][-1.18997,-0.920568,-0.329708][0.37221,0.918672,0.132289][0.36375,0.835459,0][-1.22099,-1.00994,0.378261][0.299387,0.939539,0.166232][0.296854,0.800616,0][-1.4486,-0.831625,-0.219675][0.299387,0.939539,0.166232][0.329768,0.827082,0][-1.25784,-1.04384,-0.258947][0.305603,-0.949343,-0.0731803][0.341171,0.855971,0][-1.29225,-1.09815,0.301862][0.305603,-0.949343,-0.0731803][0.301105,0.827974,0][-1.29225,-1.09815,0.301862][0.305603,-0.949343,-0.0731803][0.301105,0.827974,0][-1.37397,-0.95588,0.348204][0.299387,0.939539,0.166232][0.312567,0.821926,0][-1.4486,-0.831625,-0.219675][0.299387,0.939539,0.166232][0.329768,0.827082,0][-1.12267,-1.01675,0.639841][0.371857,0.88861,-0.268505][0.208918,0.679265,0][-0.656884,-1.04906,1.178][0.501698,0.745109,-0.439444][0.16339,0.563211,0][-0.613048,-1.00944,1.14763][-0.683574,-0.41215,0.602378][0.173994,0.555394,0][-0.613048,-1.00944,1.14763][-0.683574,-0.41215,0.602378][0.173994,0.555394,0][-1.10127,-0.994664,0.603709][-0.828419,-0.454021,0.328004][0.232264,0.697715,0][-1.12267,-1.01675,0.639841][0.371857,0.88861,-0.268505][0.208918,0.679265,0][-1.18915,-0.968836,0.706351][0.501698,0.745109,-0.439444][0.180266,0.63904,0][-1.06624,-1.09439,0.637135][0.266321,-0.922191,-0.280423][0.176079,0.7362,0][-0.628771,-1.12032,1.15144][0.255647,-0.929931,-0.264336][0.099739,0.585844,0][-0.628771,-1.12032,1.15144][0.255647,-0.929931,-0.264336][0.099739,0.585844,0][-0.701594,-0.970272,1.26055][0.501698,0.745109,-0.439444][0.139919,0.566817,0][-1.18915,-0.968836,0.706351][0.501698,0.745109,-0.439444][0.180266,0.63904,0][-0.230457,-0.914618,1.27574][-0.0894018,0.882755,-0.46125][0.158637,0.481292,0][-0.19526,-0.895855,1.24134][-0.235695,0.0670672,0.96951][0.170681,0.47109,0][-0.613048,-1.00944,1.14763][-0.683574,-0.41215,0.602378][0.173994,0.555394,0][-0.613048,-1.00944,1.14763][-0.683574,-0.41215,0.602378][0.173994,0.555394,0][-0.656884,-1.04906,1.178][0.501698,0.745109,-0.439444][0.16339,0.563211,0][-0.230457,-0.914618,1.27574][-0.0894018,0.882755,-0.46125][0.158637,0.481292,0][-0.701594,-0.970272,1.26055][0.501698,0.745109,-0.439444][0.139919,0.566817,0][-0.628771,-1.12032,1.15144][0.255647,-0.929931,-0.264336][0.099739,0.585844,0][-0.220717,-1.03745,1.26496][0.261322,-0.929309,-0.26095][0.062035,0.496993,0][-0.220717,-1.03745,1.26496][0.261322,-0.929309,-0.26095][0.062035,0.496993,0][-0.25193,-0.817211,1.46632][-0.0894018,0.882755,-0.46125][0.123829,0.481084,0][-0.701594,-0.970272,1.26055][0.501698,0.745109,-0.439444][0.139919,0.566817,0][0.428474,-1.00055,1.32144][0.143303,0.948391,-0.282875][0.124901,0.360851,0][0.428687,-1.00771,1.25088][-0.0691737,-0.304886,0.949874][0.137519,0.301054,0][-0.19526,-0.895855,1.24134][-0.235695,0.0670672,0.96951][0.170681,0.47109,0][-0.19526,-0.895855,1.24134][-0.235695,0.0670672,0.96951][0.170681,0.47109,0][-0.230457,-0.914618,1.27574][-0.0894018,0.882755,-0.46125][0.158637,0.481292,0][0.428474,-1.00055,1.32144][0.143303,0.948391,-0.282875][0.124901,0.360851,0][0.412355,-0.936251,1.52886][0.143303,0.948391,-0.282875][0.104613,0.415998,0][-0.25193,-0.817211,1.46632][-0.0894018,0.882755,-0.46125][0.123829,0.481084,0][-0.220717,-1.03745,1.26496][0.261322,-0.929309,-0.26095][0.062035,0.496993,0][-0.220717,-1.03745,1.26496][0.261322,-0.929309,-0.26095][0.062035,0.496993,0][0.359871,-1.12057,1.30097][-0.127486,-0.973276,-0.191002][0.069165,0.363928,0][0.412355,-0.936251,1.52886][0.143303,0.948391,-0.282875][0.104613,0.415998,0][1.06924,-0.981556,1.05669][-0.185442,0.876581,-0.444091][0.259664,0.163032,0][1.04041,-0.986105,1.00565][0.434586,-0.219412,0.873495][0.269223,0.172331,0][0.468107,-0.97768,1.2925][0.177298,0.409207,0.89505][0.154002,0.269161,0][0.468107,-0.97768,1.2925][0.177298,0.409207,0.89505][0.154002,0.269161,0][0.481615,-0.984519,1.33944][-0.270314,0.787741,-0.553528][0.150792,0.247216,0][1.06924,-0.981556,1.05669][-0.185442,0.876581,-0.444091][0.259664,0.163032,0][0.569213,-0.917303,1.39232][-0.185442,0.876581,-0.444091][0.16479,0.211811,0][0.558234,-1.05805,1.36081][0.0807059,-0.986395,0.143215][0.115887,0.20575,0][1.08618,-1.12555,1.02817][-0.225603,-0.960454,-0.163189][0.226705,0.095044,0][1.08618,-1.12555,1.02817][-0.225603,-0.960454,-0.163189][0.226705,0.095044,0][1.18015,-0.935338,1.10161][-0.185442,0.876581,-0.444091][0.256596,0.13495,0][0.569213,-0.917303,1.39232][-0.185442,0.876581,-0.444091][0.16479,0.211811,0][1.3893,-0.951335,0.708911][-0.361306,0.903827,-0.229248][0.328075,0.110477,0][1.33557,-1.00905,0.666334][0.735799,-0.181784,0.652345][0.33953,0.120592,0][1.04041,-0.986105,1.00565][0.434586,-0.219412,0.873495][0.269223,0.172331,0][1.04041,-0.986105,1.00565][0.434586,-0.219412,0.873495][0.269223,0.172331,0][1.06924,-0.981556,1.05669][-0.185442,0.876581,-0.444091][0.259664,0.163032,0][1.3893,-0.951335,0.708911][-0.361306,0.903827,-0.229248][0.328075,0.110477,0][1.18015,-0.935338,1.10161][-0.185442,0.876581,-0.444091][0.256596,0.13495,0][1.08618,-1.12555,1.02817][-0.225603,-0.960454,-0.163189][0.226705,0.095044,0][1.43666,-1.10949,0.687225][-0.15856,-0.965095,-0.208449][0.31452,0.063367,0][1.43666,-1.10949,0.687225][-0.15856,-0.965095,-0.208449][0.31452,0.063367,0][1.5179,-0.893525,0.73416][-0.361306,0.903827,-0.229248][0.320697,0.092416,0][1.18015,-0.935338,1.10161][-0.185442,0.876581,-0.444091][0.256596,0.13495,0][1.42394,-1.0165,0.204418][-0.925801,-0.111503,-0.361191][0.411666,0.068429,0][1.33557,-1.00905,0.666334][0.735799,-0.181784,0.652345][0.33953,0.120592,0][1.3893,-0.951335,0.708911][-0.361306,0.903827,-0.229248][0.328075,0.110477,0][1.43666,-1.10949,0.687225][-0.15856,-0.965095,-0.208449][0.31452,0.063367,0][1.42394,-1.0165,0.204418][-0.925801,-0.111503,-0.361191][0.411666,0.068429,0][1.5179,-0.893525,0.73416][-0.361306,0.903827,-0.229248][0.320697,0.092416,0][-0.361265,-0.171066,-1.41062][0.173784,-0.497291,-0.850001][0.670579,0.75588,0][0.182595,0.0562736,-1.46016][0.296015,-0.912329,0.282896][0.753275,0.6894,0][-0.37615,-0.166274,-1.44939][-0.543864,0.629778,0.55461][0.677255,0.766028,0][0.182595,0.0562736,-1.46016][0.296015,-0.912329,0.282896][0.753275,0.6894,0][-0.368457,-0.303829,-1.45969][0.818622,-0.569927,-0.0710048][0.703227,0.806051,0][-0.458555,-0.163045,-1.53387][-0.394612,0.588874,0.705343][0.680444,0.784504,0][-1.14734,-0.888751,-0.343588][-0.682804,-0.654692,-0.324279][0.417361,0.873427,0][-0.993661,-0.913774,-0.343836][0.830517,0.405876,0.381453][0.432812,0.961177,0][-1.0037,-0.959767,-0.288307][0.927113,0.188679,0.323825][0.389866,0.973699,0][-1.0037,-0.959767,-0.288307][0.927113,0.188679,0.323825][0.389866,0.973699,0][-1.21806,-0.872777,-0.307505][-0.736116,-0.569188,-0.366277][0.387032,0.837951,0][-1.14734,-0.888751,-0.343588][-0.682804,-0.654692,-0.324279][0.417361,0.873427,0][-1.20203,-1.01218,-0.419528][0.630619,-0.772168,0.0779545][0.493952,0.90531,0][-0.993661,-0.913774,-0.343836][0.830517,0.405876,0.381453][0.432812,0.961177,0][-1.14734,-0.888751,-0.343588][-0.682804,-0.654692,-0.324279][0.417361,0.873427,0][-1.20203,-1.01218,-0.419528][0.630619,-0.772168,0.0779545][0.493952,0.90531,0][-1.14734,-0.888751,-0.343588][-0.682804,-0.654692,-0.324279][0.417361,0.873427,0][-1.21775,-0.915438,-0.369399][0.541564,0.770553,0.336091][0.472165,0.86553,0][-1.21775,-0.915438,-0.369399][0.541564,0.770553,0.336091][0.472165,0.86553,0][-1.37472,-0.804293,-0.371278][0.541564,0.770553,0.336091][0.533123,0.863535,0][-1.20203,-1.01218,-0.419528][0.630619,-0.772168,0.0779545][0.493952,0.90531,0][-1.4486,-0.831625,-0.219675][0.299387,0.939539,0.166232][0.329768,0.827082,0][-1.18997,-0.920568,-0.329708][0.37221,0.918672,0.132289][0.36375,0.835459,0][-1.25784,-1.04384,-0.258947][0.305603,-0.949343,-0.0731803][0.341171,0.855971,0][-1.0037,-0.959767,-0.288307][0.927113,0.188679,0.323825][0.389866,0.973699,0][-1.25784,-1.04384,-0.258947][0.305603,-0.949343,-0.0731803][0.341171,0.855971,0][-1.18997,-0.920568,-0.329708][0.37221,0.918672,0.132289][0.36375,0.835459,0][-1.18997,-0.920568,-0.329708][0.37221,0.918672,0.132289][0.36375,0.835459,0][-1.21806,-0.872777,-0.307505][-0.736116,-0.569188,-0.366277][0.387032,0.837951,0][-1.0037,-0.959767,-0.288307][0.927113,0.188679,0.323825][0.389866,0.973699,0][-1.22099,-1.00994,0.378261][0.299387,0.939539,0.166232][0.296854,0.800616,0][-1.37397,-0.95588,0.348204][0.299387,0.939539,0.166232][0.312567,0.821926,0][-1.29225,-1.09815,0.301862][0.305603,-0.949343,-0.0731803][0.301105,0.827974,0][-1.18725,-0.993745,0.387817][0.0942335,-0.980104,-0.174688][0.285273,0.779408,0][-1.22099,-1.00994,0.378261][0.299387,0.939539,0.166232][0.296854,0.800616,0][-1.29225,-1.09815,0.301862][0.305603,-0.949343,-0.0731803][0.301105,0.827974,0][-1.29225,-1.09815,0.301862][0.305603,-0.949343,-0.0731803][0.301105,0.827974,0][-0.909606,-1.04391,0.491761][0.936405,0.342594,-0.0759931][0.19981,0.791252,0][-1.18725,-0.993745,0.387817][0.0942335,-0.980104,-0.174688][0.285273,0.779408,0][-1.10127,-0.994664,0.603709][-0.828419,-0.454021,0.328004][0.232264,0.697715,0][-1.18725,-0.993745,0.387817][0.0942335,-0.980104,-0.174688][0.285273,0.779408,0][-0.909606,-1.04391,0.491761][0.936405,0.342594,-0.0759931][0.19981,0.791252,0][-0.909606,-1.04391,0.491761][0.936405,0.342594,-0.0759931][0.19981,0.791252,0][-0.947245,-1.03133,0.54275][0.610392,-0.536298,0.582929][0.197623,0.778289,0][-1.10127,-0.994664,0.603709][-0.828419,-0.454021,0.328004][0.232264,0.697715,0][-1.18915,-0.968836,0.706351][0.501698,0.745109,-0.439444][0.180266,0.63904,0][-1.12267,-1.01675,0.639841][0.371857,0.88861,-0.268505][0.208918,0.679265,0][-1.06624,-1.09439,0.637135][0.266321,-0.922191,-0.280423][0.176079,0.7362,0][-1.06624,-1.09439,0.637135][0.266321,-0.922191,-0.280423][0.176079,0.7362,0][-1.12267,-1.01675,0.639841][0.371857,0.88861,-0.268505][0.208918,0.679265,0][-1.10127,-0.994664,0.603709][-0.828419,-0.454021,0.328004][0.232264,0.697715,0][-1.10127,-0.994664,0.603709][-0.828419,-0.454021,0.328004][0.232264,0.697715,0][-0.947245,-1.03133,0.54275][0.610392,-0.536298,0.582929][0.197623,0.778289,0][-1.06624,-1.09439,0.637135][0.266321,-0.922191,-0.280423][0.176079,0.7362,0][0.569213,-0.917303,1.39232][-0.185442,0.876581,-0.444091][0.16479,0.211811,0][0.481615,-0.984519,1.33944][-0.270314,0.787741,-0.553528][0.150792,0.247216,0][0.558234,-1.05805,1.36081][0.0807059,-0.986395,0.143215][0.115887,0.20575,0][0.468107,-0.97768,1.2925][0.177298,0.409207,0.89505][0.154002,0.269161,0][0.439927,-1.09208,1.19311][-0.183119,-0.222088,-0.957677][0.080111,0.303334,0][0.558234,-1.05805,1.36081][0.0807059,-0.986395,0.143215][0.115887,0.20575,0][0.558234,-1.05805,1.36081][0.0807059,-0.986395,0.143215][0.115887,0.20575,0][0.481615,-0.984519,1.33944][-0.270314,0.787741,-0.553528][0.150792,0.247216,0][0.468107,-0.97768,1.2925][0.177298,0.409207,0.89505][0.154002,0.269161,0][0.428687,-1.00771,1.25088][-0.0691737,-0.304886,0.949874][0.137519,0.301054,0][0.425198,-1.11934,1.17226][0.085634,-0.0117811,-0.996257][0.044747,0.335498,0][0.439927,-1.09208,1.19311][-0.183119,-0.222088,-0.957677][0.080111,0.303334,0][0.439927,-1.09208,1.19311][-0.183119,-0.222088,-0.957677][0.080111,0.303334,0][0.468107,-0.97768,1.2925][0.177298,0.409207,0.89505][0.154002,0.269161,0][0.428687,-1.00771,1.25088][-0.0691737,-0.304886,0.949874][0.137519,0.301054,0][0.428474,-1.00055,1.32144][0.143303,0.948391,-0.282875][0.124901,0.360851,0][0.412355,-0.936251,1.52886][0.143303,0.948391,-0.282875][0.104613,0.415998,0][0.359871,-1.12057,1.30097][-0.127486,-0.973276,-0.191002][0.069165,0.363928,0][0.428687,-1.00771,1.25088][-0.0691737,-0.304886,0.949874][0.137519,0.301054,0][0.428474,-1.00055,1.32144][0.143303,0.948391,-0.282875][0.124901,0.360851,0][0.359871,-1.12057,1.30097][-0.127486,-0.973276,-0.191002][0.069165,0.363928,0][0.359871,-1.12057,1.30097][-0.127486,-0.973276,-0.191002][0.069165,0.363928,0][0.425198,-1.11934,1.17226][0.085634,-0.0117811,-0.996257][0.044747,0.335498,0][0.428687,-1.00771,1.25088][-0.0691737,-0.304886,0.949874][0.137519,0.301054,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/Skull.mesh b/shareddata/charcustom/hats/fonts/Skull.mesh deleted file mode 100644 index a4fdfe1..0000000 --- a/shareddata/charcustom/hats/fonts/Skull.mesh +++ /dev/null @@ -1,3 +0,0 @@ -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/charcustom/hats/fonts/Sombrero.mesh b/shareddata/charcustom/hats/fonts/Sombrero.mesh deleted file mode 100644 index 84c0329..0000000 --- a/shareddata/charcustom/hats/fonts/Sombrero.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -314 -[2.69515,0.164792,0.715071][0.848145,-0.516875,0.116146][0.00616005,0.992026,0][2.37687,-0.374595,0.638877][0.823442,-0.564121,0.0609108][0.00616528,0.633587,0][2.78923,0.158196,-0.00126888][0.823215,-0.567729,0][0.287986,0.991994,0][1.97031,0.294094,1.95581][0.679331,-0.454716,0.575971][0.00616016,0.992026,0][1.744,-0.307697,1.74764][0.690678,-0.514858,0.507823][0.00616539,0.633587,0][2.41513,0.232562,1.38259][0.713683,-0.528824,0.459349][0.287988,0.991994,0][0.72333,0.345931,2.67215][0.331354,-0.436419,0.836506][0.00616022,0.992026,0][0.641056,-0.261585,2.38779][0.370631,-0.486216,0.791345][0.00616545,0.633586,0][1.39416,0.325288,2.39565][0.420353,-0.488405,0.764699][0.287989,0.991993,0][-0.712863,0.35319,2.67215][-0.117682,-0.432594,0.893876][0.0061602,0.992026,0][-0.636668,-0.255119,2.38779][-0.0604644,-0.480871,0.874704][0.00616544,0.633586,0][0.00347733,0.35319,2.76646][-0.0026699,-0.480507,0.876987][0.287989,0.991993,0][-1.96337,0.29456,1.95581][-0.527117,-0.448019,0.722099][0.00616013,0.992026,0][-1.73705,-0.307233,1.74764][-0.468209,-0.49244,0.733678][0.00616536,0.633586,0][-1.38721,0.325598,2.39565][-0.418144,-0.488374,0.765928][0.287987,0.991993,0][-2.68642,0.192706,0.715071][-0.77894,-0.501758,0.376154][0.00616001,0.992026,0][-2.37354,-0.350142,0.638876][-0.745122,-0.531946,0.402277][0.00616524,0.633586,0][-2.40572,0.257365,1.38259][-0.723441,-0.520863,0.453139][0.287985,0.991993,0][-2.68642,0.192706,-0.717609][-0.853385,-0.508173,-0.11616][0.00615988,0.992026,0][-2.37354,-0.350143,-0.641415][-0.829169,-0.555671,-0.0609038][0.00616511,0.633586,0][-2.78056,0.187052,-0.00126912][-0.828995,-0.559257,0][0.287982,0.991993,0][-1.96337,0.294559,-1.95835][-0.690738,-0.454356,-0.562531][0.00615977,0.992026,0][-1.73705,-0.307233,-1.75018][-0.701869,-0.509211,-0.49808][0.006165,0.633586,0][-2.40572,0.257365,-1.38513][-0.723441,-0.520863,-0.45314][0.28798,0.991993,0][-0.712863,0.353189,-2.67469][-0.326626,-0.433518,-0.839868][0.00615971,0.992026,0][-0.636668,-0.255119,-2.39032][-0.367153,-0.485268,-0.793545][0.00616495,0.633586,0][-1.38721,0.325598,-2.39819][-0.418144,-0.488374,-0.765928][0.287979,0.991993,0][0.72333,0.345931,-2.67469][0.112747,-0.433711,-0.89397][0.00615973,0.992026,0][0.641056,-0.261585,-2.39032][0.0555046,-0.481275,-0.874811][0.00616496,0.633586,0][0.00347748,0.353189,-2.76899][-0.0026699,-0.480507,-0.876987][0.287979,0.991994,0][1.97032,0.294094,-1.95835][0.527044,-0.448012,-0.722156][0.0061598,0.992026,0][1.744,-0.307697,-1.75018][0.468934,-0.491853,-0.733609][0.00616503,0.633587,0][1.39416,0.325288,-2.39819][0.420353,-0.488405,-0.764699][0.28798,0.991994,0][2.69515,0.164792,-0.71761][0.773695,-0.509695,-0.376306][0.00615992,0.992026,0][2.37687,-0.374595,-0.641415][0.737187,-0.541498,-0.404147][0.00616515,0.633587,0][2.41513,0.232562,-1.38513][0.713683,-0.528824,-0.459348][0.287983,0.991994,0][2.78923,0.158196,-0.00126888][0.506698,0.862123,2.61822e-007][0.974034,0.295279,0][2.70901,0.205339,-0.00126888][0.506698,0.862123,3.16978e-007][0.968286,0.295279,0][2.69515,0.164792,0.715071][0.498636,0.862331,0.0880151][0.967528,0.245858,0][2.61777,0.211736,0.693509][0.498295,0.862458,0.088706][0.961976,0.247345,0][2.69515,0.164792,0.715071][0.498636,0.862331,0.0880151][0.967528,0.245858,0][2.70901,0.205339,-0.00126888][0.506698,0.862123,3.16978e-007][0.968286,0.295279,0][2.69515,0.164792,0.715071][0.498636,0.862331,0.0880151][0.967528,0.245858,0][2.61777,0.211736,0.693509][0.498295,0.862458,0.088706][0.961976,0.247345,0][2.41513,0.232562,1.38259][0.456835,0.872243,0.174622][0.948452,0.199804,0][2.34514,0.277535,1.34094][0.455035,0.872657,0.177238][0.943474,0.202678,0][2.41513,0.232562,1.38259][0.456835,0.872243,0.174622][0.948452,0.199804,0][2.61777,0.211736,0.693509][0.498295,0.862458,0.088706][0.961976,0.247345,0][2.41513,0.232562,1.38259][0.456835,0.872243,0.174622][0.948452,0.199804,0][2.34514,0.277535,1.34094][0.455035,0.872657,0.177238][0.943474,0.202678,0][1.97031,0.294094,1.95581][0.367541,0.884129,0.288497][0.918106,0.160257,0][1.91267,0.33726,1.8969][0.365675,0.884376,0.290105][0.914042,0.164321,0][1.97031,0.294094,1.95581][0.367541,0.884129,0.288497][0.918106,0.160257,0][2.34514,0.277535,1.34094][0.455035,0.872657,0.177238][0.943474,0.202678,0][1.97031,0.294094,1.95581][0.367541,0.884129,0.288497][0.918106,0.160257,0][1.91267,0.33726,1.8969][0.365675,0.884376,0.290105][0.914042,0.164321,0][1.39416,0.325288,2.39565][0.254271,0.890397,0.377545][0.878559,0.129911,0][1.35334,0.367531,2.3235][0.253434,0.890475,0.377923][0.875685,0.134889,0][1.39416,0.325288,2.39565][0.254271,0.890397,0.377545][0.878559,0.129911,0][1.91267,0.33726,1.8969][0.365675,0.884376,0.290105][0.914042,0.164321,0][1.39416,0.325288,2.39565][0.254271,0.890397,0.377545][0.878559,0.129911,0][1.35334,0.367531,2.3235][0.253434,0.890475,0.377923][0.875685,0.134889,0][0.72333,0.345931,2.67215][0.132191,0.894121,0.427871][0.832506,0.110835,0][0.702182,0.387563,2.59167][0.131712,0.894155,0.427948][0.831018,0.116388,0][0.72333,0.345931,2.67215][0.132191,0.894121,0.427871][0.832506,0.110835,0][1.35334,0.367531,2.3235][0.253434,0.890475,0.377923][0.875685,0.134889,0][0.72333,0.345931,2.67215][0.132191,0.894121,0.427871][0.832506,0.110835,0][0.702182,0.387563,2.59167][0.131712,0.894155,0.427948][0.831018,0.116388,0][0.00347733,0.35319,2.76646][0.00444461,0.895437,0.445166][0.783084,0.104329,0][0.00347733,0.394608,2.68314][0.00423588,0.895444,0.445154][0.783084,0.110077,0][0.00347733,0.35319,2.76646][0.00444461,0.895437,0.445166][0.783084,0.104329,0][0.702182,0.387563,2.59167][0.131712,0.894155,0.427948][0.831018,0.116388,0][0.00347733,0.35319,2.76646][0.00444461,0.895437,0.445166][0.783084,0.104329,0][0.00347733,0.394608,2.68314][0.00423588,0.895444,0.445154][0.783084,0.110077,0][-0.712863,0.35319,2.67215][-0.131333,0.895324,0.425613][0.733663,0.110835,0][-0.6913,0.394608,2.59167][-0.130407,0.895299,0.42595][0.73515,0.116388,0][-0.712863,0.35319,2.67215][-0.131333,0.895324,0.425613][0.733663,0.110835,0][0.00347733,0.394608,2.68314][0.00423588,0.895444,0.445154][0.783084,0.110077,0][-0.712863,0.35319,2.67215][-0.131333,0.895324,0.425613][0.733663,0.110835,0][-0.6913,0.394608,2.59167][-0.130407,0.895299,0.42595][0.73515,0.116388,0][-1.38721,0.325598,2.39565][-0.257445,0.890346,0.375507][0.687609,0.129912,0][-1.34639,0.367841,2.3235][-0.25656,0.890311,0.376195][0.690483,0.134889,0][-1.38721,0.325598,2.39565][-0.257445,0.890346,0.375507][0.687609,0.129912,0][-0.6913,0.394608,2.59167][-0.130407,0.895299,0.42595][0.73515,0.116388,0][-1.38721,0.325598,2.39565][-0.257445,0.890346,0.375507][0.687609,0.129912,0][-1.34639,0.367841,2.3235][-0.25656,0.890311,0.376195][0.690483,0.134889,0][-1.96337,0.29456,1.95581][-0.35718,0.884945,0.298823][0.648062,0.160257,0][-1.90573,0.337726,1.8969][-0.356396,0.884924,0.299819][0.652126,0.164321,0][-1.96337,0.29456,1.95581][-0.35718,0.884945,0.298823][0.648062,0.160257,0][-1.34639,0.367841,2.3235][-0.25656,0.890311,0.376195][0.690483,0.134889,0][-1.96337,0.29456,1.95581][-0.35718,0.884945,0.298823][0.648062,0.160257,0][-1.90573,0.337726,1.8969][-0.356396,0.884924,0.299819][0.652126,0.164321,0][-2.40572,0.257365,1.38259][-0.442356,0.877651,0.184525][0.617717,0.199804,0][-2.33529,0.301635,1.34094][-0.441176,0.87768,0.187191][0.622694,0.202678,0][-2.40572,0.257365,1.38259][-0.442356,0.877651,0.184525][0.617717,0.199804,0][-1.90573,0.337726,1.8969][-0.356396,0.884924,0.299819][0.652126,0.164321,0][-2.40572,0.257365,1.38259][-0.442356,0.877651,0.184525][0.617717,0.199804,0][-2.33529,0.301635,1.34094][-0.441176,0.87768,0.187191][0.622694,0.202678,0][-2.68642,0.192706,0.715071][-0.489704,0.867395,0.0884073][0.598641,0.245858,0][-2.60858,0.238876,0.693508][-0.489682,0.867319,0.0892683][0.604193,0.247345,0][-2.68642,0.192706,0.715071][-0.489704,0.867395,0.0884073][0.598641,0.245858,0][-2.33529,0.301635,1.34094][-0.441176,0.87768,0.187191][0.622694,0.202678,0][-2.68642,0.192706,0.715071][-0.489704,0.867395,0.0884073][0.598641,0.245858,0][-2.60858,0.238876,0.693508][-0.489682,0.867319,0.0892683][0.604193,0.247345,0][-2.78056,0.187052,-0.00126912][-0.49805,0.867148,-1.22443e-006][0.592134,0.295279,0][-2.69988,0.233391,-0.00126912][-0.49805,0.867148,-1.4478e-006][0.597882,0.295279,0][-2.78056,0.187052,-0.00126912][-0.49805,0.867148,-1.22443e-006][0.592134,0.295279,0][-2.60858,0.238876,0.693508][-0.489682,0.867319,0.0892683][0.604193,0.247345,0][-2.78056,0.187052,-0.00126912][-0.49805,0.867148,-1.22443e-006][0.592134,0.295279,0][-2.69988,0.233391,-0.00126912][-0.49805,0.867148,-1.4478e-006][0.597882,0.295279,0][-2.68642,0.192706,-0.717609][-0.489952,0.867276,-0.0882021][0.598641,0.3447,0][-2.60858,0.238876,-0.696046][-0.489606,0.867401,-0.0888929][0.604193,0.343213,0][-2.68642,0.192706,-0.717609][-0.489952,0.867276,-0.0882021][0.598641,0.3447,0][-2.69988,0.233391,-0.00126912][-0.49805,0.867148,-1.4478e-006][0.597882,0.295279,0][-2.68642,0.192706,-0.717609][-0.489952,0.867276,-0.0882021][0.598641,0.3447,0][-2.60858,0.238876,-0.696046][-0.489606,0.867401,-0.0888929][0.604193,0.343213,0][-2.40572,0.257365,-1.38513][-0.442507,0.877514,-0.184816][0.617717,0.390754,0][-2.33529,0.301635,-1.34348][-0.440885,0.877822,-0.187212][0.622694,0.38788,0][-2.40572,0.257365,-1.38513][-0.442507,0.877514,-0.184816][0.617717,0.390754,0][-2.60858,0.238876,-0.696046][-0.489606,0.867401,-0.0888929][0.604193,0.343213,0][-2.40572,0.257365,-1.38513][-0.442507,0.877514,-0.184816][0.617717,0.390754,0][-2.33529,0.301635,-1.34348][-0.440885,0.877822,-0.187212][0.622694,0.38788,0][-1.96337,0.294559,-1.95835][-0.357261,0.884869,-0.29895][0.648062,0.430301,0][-1.90573,0.337726,-1.89943][-0.356287,0.884993,-0.299745][0.652126,0.426237,0][-1.96337,0.294559,-1.95835][-0.357261,0.884869,-0.29895][0.648062,0.430301,0][-2.33529,0.301635,-1.34348][-0.440885,0.877822,-0.187212][0.622694,0.38788,0][-1.96337,0.294559,-1.95835][-0.357261,0.884869,-0.29895][0.648062,0.430301,0][-1.90573,0.337726,-1.89943][-0.356287,0.884993,-0.299745][0.652126,0.426237,0][-1.38721,0.325598,-2.39819][-0.257543,0.890269,-0.375623][0.687609,0.460647,0][-1.34639,0.367841,-2.32604][-0.25653,0.890379,-0.376056][0.690483,0.455669,0][-1.38721,0.325598,-2.39819][-0.257543,0.890269,-0.375623][0.687609,0.460647,0][-1.90573,0.337726,-1.89943][-0.356287,0.884993,-0.299745][0.652126,0.426237,0][-1.38721,0.325598,-2.39819][-0.257543,0.890269,-0.375623][0.687609,0.460647,0][-1.34639,0.367841,-2.32604][-0.25653,0.890379,-0.376056][0.690483,0.455669,0][-0.712863,0.353189,-2.67469][-0.131236,0.895281,-0.425732][0.733663,0.479722,0][-0.6913,0.394607,-2.59421][-0.13025,0.895339,-0.425913][0.73515,0.474171,0][-0.712863,0.353189,-2.67469][-0.131236,0.895281,-0.425732][0.733663,0.479722,0][-1.34639,0.367841,-2.32604][-0.25653,0.890379,-0.376056][0.690483,0.455669,0][-0.712863,0.353189,-2.67469][-0.131236,0.895281,-0.425732][0.733663,0.479722,0][-0.6913,0.394607,-2.59421][-0.13025,0.895339,-0.425913][0.73515,0.474171,0][0.00347748,0.353189,-2.76899][0.0044639,0.895443,-0.445154][0.783084,0.486229,0][0.00347748,0.394607,-2.68568][0.00425864,0.895438,-0.445166][0.783084,0.480481,0][0.00347748,0.353189,-2.76899][0.0044639,0.895443,-0.445154][0.783084,0.486229,0][-0.6913,0.394607,-2.59421][-0.13025,0.895339,-0.425913][0.73515,0.474171,0][0.00347748,0.353189,-2.76899][0.0044639,0.895443,-0.445154][0.783084,0.486229,0][0.00347748,0.394607,-2.68568][0.00425864,0.895438,-0.445166][0.783084,0.480481,0][0.72333,0.345931,-2.67469][0.132214,0.894145,-0.427812][0.832506,0.479722,0][0.702183,0.387563,-2.59421][0.131766,0.894129,-0.427985][0.831018,0.474171,0][0.72333,0.345931,-2.67469][0.132214,0.894145,-0.427812][0.832506,0.479722,0][0.00347748,0.394607,-2.68568][0.00425864,0.895438,-0.445166][0.783084,0.480481,0][0.72333,0.345931,-2.67469][0.132214,0.894145,-0.427812][0.832506,0.479722,0][0.702183,0.387563,-2.59421][0.131766,0.894129,-0.427985][0.831018,0.474171,0][1.39416,0.325288,-2.39819][0.25425,0.890447,-0.37744][0.878559,0.460647,0][1.35334,0.367531,-2.32604][0.25351,0.890427,-0.377984][0.875685,0.455669,0][1.39416,0.325288,-2.39819][0.25425,0.890447,-0.37744][0.878559,0.460647,0][0.702183,0.387563,-2.59421][0.131766,0.894129,-0.427985][0.831018,0.474171,0][1.39416,0.325288,-2.39819][0.25425,0.890447,-0.37744][0.878559,0.460647,0][1.35334,0.367531,-2.32604][0.25351,0.890427,-0.377984][0.875685,0.455669,0][1.97032,0.294094,-1.95835][0.367492,0.88424,-0.288216][0.918106,0.430301,0][1.91267,0.33726,-1.89943][0.365933,0.88426,-0.290134][0.914042,0.426237,0][1.97032,0.294094,-1.95835][0.367492,0.88424,-0.288216][0.918106,0.430301,0][1.35334,0.367531,-2.32604][0.25351,0.890427,-0.377984][0.875685,0.455669,0][1.97032,0.294094,-1.95835][0.367492,0.88424,-0.288216][0.918106,0.430301,0][1.91267,0.33726,-1.89943][0.365933,0.88426,-0.290134][0.914042,0.426237,0][2.41513,0.232562,-1.38513][0.456558,0.872434,-0.174394][0.948452,0.390754,0][2.34514,0.277535,-1.34347][0.455305,0.872484,-0.177395][0.943474,0.38788,0][2.41513,0.232562,-1.38513][0.456558,0.872434,-0.174394][0.948452,0.390754,0][1.91267,0.33726,-1.89943][0.365933,0.88426,-0.290134][0.914042,0.426237,0][2.41513,0.232562,-1.38513][0.456558,0.872434,-0.174394][0.948452,0.390754,0][2.34514,0.277535,-1.34347][0.455305,0.872484,-0.177395][0.943474,0.38788,0][2.69515,0.164792,-0.71761][0.498395,0.86245,-0.0882143][0.967528,0.3447,0][2.61777,0.211736,-0.696047][0.498369,0.862377,-0.0890714][0.961976,0.343213,0][2.69515,0.164792,-0.71761][0.498395,0.86245,-0.0882143][0.967528,0.3447,0][2.34514,0.277535,-1.34347][0.455305,0.872484,-0.177395][0.943474,0.38788,0][2.69515,0.164792,-0.71761][0.498395,0.86245,-0.0882143][0.967528,0.3447,0][2.61777,0.211736,-0.696047][0.498369,0.862377,-0.0890714][0.961976,0.343213,0][2.78923,0.158196,-0.00126888][0.506698,0.862123,2.61822e-007][0.974034,0.295279,0][2.70901,0.205339,-0.00126888][0.506698,0.862123,3.16978e-007][0.968286,0.295279,0][2.78923,0.158196,-0.00126888][0.506698,0.862123,2.61822e-007][0.974034,0.295279,0][2.61777,0.211736,-0.696047][0.498369,0.862377,-0.0890714][0.961976,0.343213,0][2.70901,0.205339,-0.00126888][-0.829236,0.558899,-0.000288507][0.776171,0.994405,0][2.33134,-0.354632,-0.00126886][-0.829245,0.558885,-0.000360083][0.776171,0.669674,0][2.61777,0.211736,0.693509][-0.824132,0.555069,-0.112718][0.587425,0.994583,0][2.25162,-0.350647,0.605036][-0.824597,0.554509,-0.11207][0.587567,0.669689,0][2.61777,0.211736,0.693509][-0.824132,0.555069,-0.112718][0.587425,0.994583,0][2.33134,-0.354632,-0.00126886][-0.829245,0.558885,-0.000360083][0.776171,0.669674,0][2.61777,0.211736,0.693509][-0.750243,0.546914,-0.371512][0.958295,0.994586,0][2.25162,-0.350647,0.605036][-0.758234,0.540324,-0.364872][0.958278,0.66969,0][2.34514,0.277535,1.34094][-0.703315,0.535446,-0.467595][0.776173,0.994408,0][2.02422,-0.298444,1.17002][-0.720762,0.524304,-0.453439][0.776173,0.669674,0][2.34514,0.277535,1.34094][-0.703315,0.535446,-0.467595][0.776173,0.994408,0][2.25162,-0.350647,0.605036][-0.758234,0.540324,-0.364872][0.958278,0.66969,0][2.34514,0.277535,1.34094][-0.703315,0.535446,-0.467595][0.776173,0.994408,0][2.02422,-0.298444,1.17002][-0.720762,0.524304,-0.453439][0.776173,0.669674,0][1.91267,0.33726,1.8969][-0.663233,0.509959,-0.547781][0.587428,0.994586,0][1.65211,-0.287275,1.65519][-0.6847,0.493301,-0.536507][0.587569,0.66969,0][1.91267,0.33726,1.8969][-0.663233,0.509959,-0.547781][0.587428,0.994586,0][2.02422,-0.298444,1.17002][-0.720762,0.524304,-0.453439][0.776173,0.669674,0][1.91267,0.33726,1.8969][-0.512689,0.487441,-0.706789][0.958295,0.994589,0][1.65211,-0.287275,1.65519][-0.515469,0.485484,-0.706114][0.958278,0.66969,0][1.35334,0.367531,2.3235][-0.420086,0.485193,-0.766887][0.776174,0.994411,0][1.16982,-0.260996,2.02747][-0.424543,0.483596,-0.76544][0.776174,0.669675,0][1.35334,0.367531,2.3235][-0.420086,0.485193,-0.766887][0.776174,0.994411,0][1.65211,-0.287275,1.65519][-0.515469,0.485484,-0.706114][0.958278,0.66969,0][1.35334,0.367531,2.3235][-0.420086,0.485193,-0.766887][0.776174,0.994411,0][1.16982,-0.260996,2.02747][-0.424543,0.483596,-0.76544][0.776174,0.669675,0][0.702182,0.387563,2.59167][-0.32328,0.477594,-0.816942][0.587429,0.994589,0][0.607394,-0.243591,2.26149][-0.325206,0.476232,-0.816972][0.587571,0.66969,0][0.702182,0.387563,2.59167][-0.32328,0.477594,-0.816942][0.587429,0.994589,0][1.16982,-0.260996,2.02747][-0.424543,0.483596,-0.76544][0.776174,0.669675,0][0.702182,0.387563,2.59167][-0.109625,0.473625,-0.873877][0.958295,0.994593,0][0.607394,-0.243591,2.26149][-0.110193,0.473195,-0.874039][0.958278,0.66969,0][0.00347733,0.394608,2.68314][0.00278662,0.475918,-0.879485][0.776173,0.994415,0][0.00347736,-0.237463,2.34131][0.00184081,0.4757,-0.879606][0.776173,0.669675,0][0.00347733,0.394608,2.68314][0.00278662,0.475918,-0.879485][0.776173,0.994415,0][0.607394,-0.243591,2.26149][-0.110193,0.473195,-0.874039][0.958278,0.66969,0][0.00347733,0.394608,2.68314][0.00278662,0.475918,-0.879485][0.776173,0.994415,0][0.00347736,-0.237463,2.34131][0.00184081,0.4757,-0.879606][0.776173,0.669675,0][-0.6913,0.394608,2.59167][0.115032,0.472543,-0.873768][0.587429,0.994593,0][-0.602828,-0.237463,2.26149][0.115032,0.472543,-0.873768][0.58757,0.66969,0][-0.6913,0.394608,2.59167][0.115032,0.472543,-0.873768][0.587429,0.994593,0][0.00347736,-0.237463,2.34131][0.00184081,0.4757,-0.879606][0.776173,0.669675,0][-0.6913,0.394608,2.59167][0.317026,0.473615,-0.821696][0.958294,0.994596,0][-0.602828,-0.237463,2.26149][0.319316,0.476185,-0.81932][0.958278,0.669691,0][-1.34639,0.367841,2.3235][0.418053,0.482819,-0.769492][0.776172,0.994418,0][-1.16287,-0.260685,2.02747][0.422434,0.485347,-0.765498][0.776172,0.669675,0][-1.34639,0.367841,2.3235][0.418053,0.482819,-0.769492][0.776172,0.994418,0][-0.602828,-0.237463,2.26149][0.319316,0.476185,-0.81932][0.958278,0.669691,0][-1.34639,0.367841,2.3235][0.418053,0.482819,-0.769492][0.776172,0.994418,0][-1.16287,-0.260685,2.02747][0.422434,0.485347,-0.765498][0.776172,0.669675,0][-1.90573,0.337726,1.8969][0.515287,0.485589,-0.706174][0.587427,0.994596,0][-1.64516,-0.28681,1.65519][0.516668,0.487866,-0.703592][0.587569,0.669691,0][-1.90573,0.337726,1.8969][0.515287,0.485589,-0.706174][0.587427,0.994596,0][-1.16287,-0.260685,2.02747][0.422434,0.485347,-0.765498][0.776172,0.669675,0][-1.90573,0.337726,1.8969][0.672255,0.493907,-0.551479][0.958294,0.994597,0][-1.64516,-0.28681,1.65519][0.674547,0.502083,-0.541202][0.958278,0.669691,0][-2.33529,0.301635,1.34094][0.724384,0.510588,-0.463214][0.77617,0.994419,0][-2.01728,-0.297977,1.17002][0.726875,0.522008,-0.446273][0.77617,0.669676,0][-2.33529,0.301635,1.34094][0.724384,0.510588,-0.463214][0.77617,0.994419,0][-1.64516,-0.28681,1.65519][0.674547,0.502083,-0.541202][0.958278,0.669691,0][-2.33529,0.301635,1.34094][0.724384,0.510588,-0.463214][0.77617,0.994419,0][-2.01728,-0.297977,1.17002][0.726875,0.522008,-0.446273][0.77617,0.669676,0][-2.60858,0.238876,0.693508][0.769303,0.527842,-0.359938][0.587424,0.994597,0][-2.24805,-0.327452,0.605036][0.76765,0.542091,-0.341834][0.587566,0.669691,0][-2.60858,0.238876,0.693508][0.769303,0.527842,-0.359938][0.587424,0.994597,0][-2.01728,-0.297977,1.17002][0.726875,0.522008,-0.446273][0.77617,0.669676,0][-2.60858,0.238876,0.693508][0.83001,0.546102,-0.113387][0.958294,0.994597,0][-2.24805,-0.327452,0.605036][0.829755,0.54663,-0.112708][0.958277,0.669691,0][-2.69988,0.233391,-0.00126912][0.834913,0.550382,0.000288838][0.776168,0.994419,0][-2.32781,-0.330643,-0.00126906][0.834923,0.550367,0.000360391][0.776168,0.669675,0][-2.69988,0.233391,-0.00126912][0.834913,0.550382,0.000288838][0.776168,0.994419,0][-2.24805,-0.327452,0.605036][0.829755,0.54663,-0.112708][0.958277,0.669691,0][-2.69988,0.233391,-0.00126912][0.834913,0.550382,0.000288838][0.776168,0.994419,0][-2.32781,-0.330643,-0.00126906][0.834923,0.550367,0.000360391][0.776168,0.669675,0][-2.60858,0.238876,-0.696046][0.829769,0.546603,0.112736][0.587421,0.994597,0][-2.24805,-0.327452,-0.607574][0.830228,0.546038,0.112088][0.587563,0.669691,0][-2.60858,0.238876,-0.696046][0.829769,0.546603,0.112736][0.587421,0.994597,0][-2.32781,-0.330643,-0.00126906][0.834923,0.550367,0.000360391][0.776168,0.669675,0][-2.60858,0.238876,-0.696046][0.755883,0.53921,0.37134][0.958293,0.994595,0][-2.24805,-0.327452,-0.607574][0.770003,0.527193,0.359392][0.958277,0.66969,0][-2.33529,0.301635,-1.34348][0.719807,0.520978,0.458759][0.776167,0.994417,0][-2.01728,-0.297978,-1.17256][0.734582,0.511062,0.446323][0.776167,0.669675,0][-2.33529,0.301635,-1.34348][0.719807,0.520978,0.458759][0.776167,0.994417,0][-2.24805,-0.327452,-0.607574][0.770003,0.527193,0.359392][0.958277,0.66969,0][-2.33529,0.301635,-1.34348][0.719807,0.520978,0.458759][0.776167,0.994417,0][-2.01728,-0.297978,-1.17256][0.734582,0.511062,0.446323][0.776167,0.669675,0][-1.90573,0.337726,-1.89943][0.674107,0.501632,0.542166][0.587419,0.994595,0][-1.64516,-0.28681,-1.65772][0.684698,0.493303,0.536507][0.58756,0.66969,0][-1.90573,0.337726,-1.89943][0.674107,0.501632,0.542166][0.587419,0.994595,0][-2.01728,-0.297978,-1.17256][0.734582,0.511062,0.446323][0.776167,0.669675,0][-1.90573,0.337726,-1.89943][0.512769,0.487451,0.706724][0.958293,0.994591,0][-1.64516,-0.28681,-1.65772][0.515558,0.485487,0.706047][0.958277,0.66969,0][-1.34639,0.367841,-2.32604][0.417109,0.485114,0.76856][0.776166,0.994413,0][-1.16286,-0.260685,-2.03][0.422969,0.482898,0.766751][0.776166,0.669675,0][-1.34639,0.367841,-2.32604][0.417109,0.485114,0.76856][0.776166,0.994413,0][-1.64516,-0.28681,-1.65772][0.515558,0.485487,0.706047][0.958277,0.66969,0][-1.34639,0.367841,-2.32604][0.417109,0.485114,0.76856][0.776166,0.994413,0][-1.16286,-0.260685,-2.03][0.422969,0.482898,0.766751][0.776166,0.669675,0][-0.6913,0.394607,-2.59421][0.319027,0.47603,0.819523][0.587417,0.994591,0][-0.602827,-0.237463,-2.26403][0.322856,0.47333,0.819587][0.587559,0.66969,0][-0.6913,0.394607,-2.59421][0.319027,0.47603,0.819523][0.587417,0.994591,0][-1.16286,-0.260685,-2.03][0.422969,0.482898,0.766751][0.776166,0.669675,0][-0.6913,0.394607,-2.59421][0.115032,0.472543,0.873768][0.958293,0.994588,0][-0.602827,-0.237463,-2.26403][0.115033,0.472543,0.873768][0.958277,0.66969,0][0.00347748,0.394607,-2.68568][0.00300751,0.475699,0.879603][0.776166,0.99441,0][0.00347747,-0.237463,-2.34385][0.0021233,0.475934,0.879478][0.776166,0.669675,0][0.00347748,0.394607,-2.68568][0.00300751,0.475699,0.879603][0.776166,0.99441,0][-0.602827,-0.237463,-2.26403][0.115033,0.472543,0.873768][0.958277,0.66969,0][0.00347748,0.394607,-2.68568][0.00300751,0.475699,0.879603][0.776166,0.99441,0][0.00347747,-0.237463,-2.34385][0.0021233,0.475934,0.879478][0.776166,0.669675,0][0.702183,0.387563,-2.59421][-0.11013,0.473219,0.874034][0.587418,0.994588,0][0.607394,-0.243591,-2.26403][-0.110673,0.473695,0.873708][0.587559,0.66969,0][0.702183,0.387563,-2.59421][-0.11013,0.473219,0.874034][0.587418,0.994588,0][0.00347747,-0.237463,-2.34385][0.0021233,0.475934,0.879478][0.776166,0.669675,0][0.702183,0.387563,-2.59421][-0.322259,0.476362,0.818064][0.958294,0.994585,0][0.607394,-0.243591,-2.26403][-0.323431,0.477668,0.816839][0.958277,0.669689,0][1.35334,0.367531,-2.32604][-0.420271,0.483516,0.767844][0.776167,0.994407,0][1.16982,-0.260996,-2.03][-0.423541,0.485367,0.764874][0.776167,0.669674,0][1.35334,0.367531,-2.32604][-0.420271,0.483516,0.767844][0.776167,0.994407,0][0.607394,-0.243591,-2.26403][-0.323431,0.477668,0.816839][0.958277,0.669689,0][1.35334,0.367531,-2.32604][-0.420271,0.483516,0.767844][0.776167,0.994407,0][1.16982,-0.260996,-2.03][-0.423541,0.485367,0.764874][0.776167,0.669674,0][1.91267,0.33726,-1.89943][-0.515199,0.485586,0.706241][0.58742,0.994585,0][1.65211,-0.287275,-1.65772][-0.516575,0.487856,0.703667][0.587561,0.669689,0][1.91267,0.33726,-1.89943][-0.515199,0.485586,0.706241][0.58742,0.994585,0][1.16982,-0.260996,-2.03][-0.423541,0.485367,0.764874][0.776167,0.669674,0][1.91267,0.33726,-1.89943][-0.659602,0.494321,0.56619][0.958294,0.994583,0][1.65211,-0.287275,-1.65772][-0.663968,0.510911,0.546][0.958277,0.669689,0][2.34514,0.277535,-1.34347][-0.713002,0.523788,0.466127][0.776169,0.994405,0][2.02422,-0.298444,-1.17256][-0.716722,0.536802,0.445144][0.776169,0.669674,0][2.34514,0.277535,-1.34347][-0.713002,0.523788,0.466127][0.776169,0.994405,0][1.65211,-0.287275,-1.65772][-0.663968,0.510911,0.546][0.958277,0.669689,0][2.34514,0.277535,-1.34347][-0.713002,0.523788,0.466127][0.776169,0.994405,0][2.02422,-0.298444,-1.17256][-0.716722,0.536802,0.445144][0.776169,0.669674,0][2.61777,0.211736,-0.696047][-0.757861,0.540685,0.365112][0.587422,0.994583,0][2.25162,-0.350647,-0.607574][-0.756812,0.548639,0.35529][0.587564,0.669689,0][2.61777,0.211736,-0.696047][-0.757861,0.540685,0.365112][0.587422,0.994583,0][2.02422,-0.298444,-1.17256][-0.716722,0.536802,0.445144][0.776169,0.669674,0][2.61777,0.211736,-0.696047][-0.824378,0.554571,0.113368][0.958294,0.994583,0][2.25162,-0.350647,-0.607574][-0.824118,0.555096,0.11269][0.958278,0.669689,0][2.70901,0.205339,-0.00126888][-0.829236,0.558899,-0.000288507][0.776171,0.994405,0][2.33134,-0.354632,-0.00126886][-0.829245,0.558885,-0.000360083][0.776171,0.669674,0][2.70901,0.205339,-0.00126888][-0.829236,0.558899,-0.000288507][0.776171,0.994405,0][2.25162,-0.350647,-0.607574][-0.824118,0.555096,0.11269][0.958278,0.669689,0][-1.42853,-0.476837,-0.00126898][0.175085,-0.984553,0][0.683652,0.295279,0][-0.717134,-0.448259,-1.2494][0.0816811,-0.991409,0.102162][0.733368,0.38139,0][-0.717134,-0.448259,1.24687][0.0816811,-0.991409,-0.102162][0.733368,0.209168,0][0.724089,-0.448259,-1.2494][-0.0778126,-0.990512,0.113271][0.832801,0.38139,0][1.4447,-0.448259,-0.00126885][-0.184277,-0.982874,0][0.882517,0.295279,0][-0.717134,-0.448259,-1.2494][0.0816811,-0.991409,0.102162][0.733368,0.38139,0][0.724089,-0.448259,1.24687][-0.0778126,-0.990512,-0.113271][0.8328,0.209168,0][-0.717134,-0.448259,1.24687][0.0816811,-0.991409,-0.102162][0.733368,0.209168,0][1.4447,-0.448259,-0.00126885][-0.184277,-0.982874,0][0.882517,0.295279,0][-0.717134,-0.448259,-1.2494][0.0816811,-0.991409,0.102162][0.733368,0.38139,0][1.4447,-0.448259,-0.00126885][-0.184277,-0.982874,0][0.882517,0.295279,0][-0.717134,-0.448259,1.24687][0.0816811,-0.991409,-0.102162][0.733368,0.209168,0][0.00347742,-0.0078487,0.958032][0.252898,0.212681,0.943827][0.568706,0.61973,0][0.324094,1.40366,0.554055][0.457302,0.356838,0.814581][0.397542,0.0731648,0][0.00347741,1.40366,0.639964][0.244176,0.331596,0.911275][0.568694,0.073124,0][0.324094,1.40366,0.554055][0.457302,0.356838,0.814581][0.397542,0.0731648,0][0.00347742,-0.0078487,0.958032][0.252898,0.212681,0.943827][0.568706,0.61973,0][0.483128,-0.0078487,0.82951][0.487769,0.219827,0.844841][0.397677,0.619773,0][0.0034774,-0.240814,1.1898][0.00400796,0.883963,0.467539][0.783084,0.213105,0][0.483128,-0.0078487,0.82951][0.362497,0.695811,0.620035][0.816176,0.237962,0][0.00347742,-0.0078487,0.958032][-2.26892e-007,0.705285,0.708924][0.783084,0.229095,0][0.483128,-0.0078487,0.82951][0.362497,0.695811,0.620035][0.816176,0.237962,0][0.0034774,-0.240814,1.1898][0.00400796,0.883963,0.467539][0.783084,0.213105,0][0.596592,-0.246835,1.03023][0.247515,0.880073,0.405226][0.824171,0.224114,0][0.460479,-0.403971,1.71853][0.00209706,0.999311,-0.0370568][0.814889,0.176627,0][0.596592,-0.246835,1.03023][0.247515,0.880073,0.405226][0.824171,0.224114,0][0.0034774,-0.240814,1.1898][0.00400796,0.883963,0.467539][0.783084,0.213105,0][1.02998,-0.26155,0.594267][0.4324,0.871604,0.230945][0.854249,0.254192,0][0.596592,-0.246835,1.03023][0.247515,0.880073,0.405226][0.824171,0.224114,0][1.25905,-0.411957,1.25746][0.0075711,0.999681,-0.0240984][0.869987,0.208438,0][0.596592,-0.246835,1.03023][0.247515,0.880073,0.405226][0.824171,0.224114,0][0.834257,-0.00784872,0.478382][0.645995,0.671283,0.363413][0.840401,0.262187,0][0.483128,-0.0078487,0.82951][0.362497,0.695811,0.620035][0.816176,0.237962,0][0.834257,-0.00784872,0.478382][0.645995,0.671283,0.363413][0.840401,0.262187,0][0.596592,-0.246835,1.03023][0.247515,0.880073,0.405226][0.824171,0.224114,0][1.02998,-0.26155,0.594267][0.4324,0.871604,0.230945][0.854249,0.254192,0][0.483128,-0.0078487,0.82951][0.487769,0.219827,0.844841][0.397677,0.619773,0][0.558802,1.40366,0.319348][0.814711,0.356072,0.457666][0.176803,0.0731648,0][0.324094,1.40366,0.554055][0.457302,0.356838,0.814581][0.397542,0.0731648,0][0.558802,1.40366,0.319348][0.814711,0.356072,0.457666][0.176803,0.0731648,0][0.483128,-0.0078487,0.82951][0.487769,0.219827,0.844841][0.397677,0.619773,0][0.834257,-0.00784872,0.478382][0.844841,0.219827,0.487769][0.176709,0.619773,0][-0.592058,-0.240814,1.03023][-0.253789,0.880849,0.399621][0.741997,0.224114,0][-0.457675,-0.399303,1.71853][-0.00277364,0.999219,-0.0394091][0.751269,0.176627,0][0.0034774,-0.240814,1.1898][0.00400796,0.883963,0.467539][0.783084,0.213105,0][0.0034774,-0.240814,1.1898][0.00400796,0.883963,0.467539][0.783084,0.213105,0][0.00347742,-0.0078487,0.958032][-2.26892e-007,0.705285,0.708924][0.783084,0.229095,0][-0.592058,-0.240814,1.03023][-0.253789,0.880849,0.399621][0.741997,0.224114,0][0.00347742,-0.0078487,0.958032][-0.252898,0.212681,0.943827][0.00769826,0.619729,0][0.00347741,1.40366,0.639964][-0.24439,0.329231,0.912075][0.00778993,0.0731228,0][-0.476173,-0.0078487,0.82951][-0.48777,0.219827,0.844841][0.176711,0.619772,0][-0.317139,1.40366,0.554055][-0.457202,0.354216,0.815781][0.176805,0.0731636,0][-0.476173,-0.0078487,0.82951][-0.48777,0.219827,0.844841][0.176711,0.619772,0][0.00347741,1.40366,0.639964][-0.24439,0.329231,0.912075][0.00778993,0.0731228,0][-0.592058,-0.240814,1.03023][-0.253789,0.880849,0.399621][0.741997,0.224114,0][0.00347742,-0.0078487,0.958032][-2.26892e-007,0.705285,0.708924][0.783084,0.229095,0][-0.476173,-0.0078487,0.82951][-0.36662,0.699724,0.613169][0.749992,0.237962,0][-0.592058,-0.240814,1.03023][-0.253789,0.880849,0.399621][0.741997,0.224114,0][-1.02303,-0.26124,0.594266][-0.442026,0.865961,0.233933][0.711919,0.254192,0][-1.24808,-0.424262,1.25746][-0.0136778,0.999495,-0.0286793][0.696171,0.208438,0][-1.02303,-0.26124,0.594266][-0.442026,0.865961,0.233933][0.711919,0.254192,0][-0.476173,-0.0078487,0.82951][-0.36662,0.699724,0.613169][0.749992,0.237962,0][-0.827302,-0.00784872,0.478382][-0.646269,0.667242,0.370303][0.725767,0.262187,0][-0.476173,-0.0078487,0.82951][-0.36662,0.699724,0.613169][0.749992,0.237962,0][-1.02303,-0.26124,0.594266][-0.442026,0.865961,0.233933][0.711919,0.254192,0][-0.592058,-0.240814,1.03023][-0.253789,0.880849,0.399621][0.741997,0.224114,0][-0.476173,-0.0078487,0.82951][-0.48777,0.219827,0.844841][0.176711,0.619772,0][-0.317139,1.40366,0.554055][-0.457202,0.354216,0.815781][0.176805,0.0731636,0][-0.827302,-0.00784872,0.478382][-0.844842,0.219827,0.487769][0.397679,0.619772,0][-0.551847,1.40366,0.319348][-0.816355,0.350808,0.458802][0.397545,0.0731636,0][-0.827302,-0.00784872,0.478382][-0.844842,0.219827,0.487769][0.397679,0.619772,0][-0.317139,1.40366,0.554055][-0.457202,0.354216,0.815781][0.176805,0.0731636,0][-1.02303,-0.26124,0.594266][-0.442026,0.865961,0.233933][0.711919,0.254192,0][-1.18257,-0.264431,-0.00126896][-0.511718,0.859153,0.000425616][0.70091,0.295279,0][-1.70466,-0.450509,0.458848][-0.0168684,0.999759,-0.0140165][0.664361,0.263535,0][-1.18257,-0.264431,-0.00126896][-0.511718,0.859153,0.000425616][0.70091,0.295279,0][-0.827302,-0.00784872,0.478382][-0.646269,0.667242,0.370303][0.725767,0.262187,0][-0.955824,-0.00784874,-0.00126896][-0.748677,0.662933,0.00135641][0.7169,0.295279,0][-1.02303,-0.26124,0.594266][-0.442026,0.865961,0.233933][0.711919,0.254192,0][-0.827302,-0.00784872,0.478382][-0.646269,0.667242,0.370303][0.725767,0.262187,0][-1.18257,-0.264431,-0.00126896][-0.511718,0.859153,0.000425616][0.70091,0.295279,0][-0.827302,-0.00784872,0.478382][-0.844842,0.219827,0.487769][0.397679,0.619772,0][-0.551847,1.40366,0.319348][-0.816355,0.350808,0.458802][0.397545,0.0731636,0][-0.955824,-0.00784874,-0.00126896][-0.943827,0.212681,0.252897][0.568706,0.619729,0][-0.637756,1.40366,-0.00126901][-0.913751,0.324211,0.244839][0.568694,0.0731228,0][-0.955824,-0.00784874,-0.00126896][-0.943827,0.212681,0.252897][0.568706,0.619729,0][-0.551847,1.40366,0.319348][-0.816355,0.350808,0.458802][0.397545,0.0731636,0][-1.70466,-0.450509,-0.463305][-0.0166549,0.999762,0.0141199][0.664361,0.327156,0][-1.18257,-0.264431,-0.00126896][-0.511718,0.859153,0.000425616][0.70091,0.295279,0][-1.02303,-0.26124,-0.596805][-0.446047,0.864102,-0.233173][0.711919,0.336366,0][-0.955824,-0.00784874,-0.00126896][-0.748677,0.662933,0.00135641][0.7169,0.295279,0][-1.02303,-0.26124,-0.596805][-0.446047,0.864102,-0.233173][0.711919,0.336366,0][-1.18257,-0.264431,-0.00126896][-0.511718,0.859153,0.000425616][0.70091,0.295279,0][-1.02303,-0.26124,-0.596805][-0.446047,0.864102,-0.233173][0.711919,0.336366,0][-0.955824,-0.00784874,-0.00126896][-0.748677,0.662933,0.00135641][0.7169,0.295279,0][-0.827302,-0.00784876,-0.48092][-0.645924,0.673458,-0.359493][0.725767,0.328371,0][-0.637756,1.40366,-0.00126901][-0.914988,0.320451,-0.245171][0.00779194,0.0731233,0][-0.827302,-0.00784876,-0.48092][-0.844841,0.219827,-0.487769][0.176717,0.619773,0][-0.955824,-0.00784874,-0.00126896][-0.943827,0.212681,-0.252898][0.00770026,0.619729,0][-0.827302,-0.00784876,-0.48092][-0.844841,0.219827,-0.487769][0.176717,0.619773,0][-0.637756,1.40366,-0.00126901][-0.914988,0.320451,-0.245171][0.00779194,0.0731233,0][-0.551847,1.40366,-0.321886][-0.818278,0.346526,-0.458629][0.176811,0.073164,0][-1.02303,-0.26124,-0.596805][-0.446047,0.864102,-0.233173][0.711919,0.336366,0][-0.592058,-0.240814,-1.03277][-0.252444,0.879412,-0.403618][0.741997,0.366444,0][-1.24808,-0.424262,-1.26191][-0.0132834,0.999488,0.0290989][0.696171,0.382253,0][-1.02303,-0.26124,-0.596805][-0.446047,0.864102,-0.233173][0.711919,0.336366,0][-0.827302,-0.00784876,-0.48092][-0.645924,0.673458,-0.359493][0.725767,0.328371,0][-0.592058,-0.240814,-1.03277][-0.252444,0.879412,-0.403618][0.741997,0.366444,0][-0.476173,-0.00784878,-0.832048][-0.354462,0.705285,-0.613946][0.749992,0.352596,0][-0.592058,-0.240814,-1.03277][-0.252444,0.879412,-0.403618][0.741997,0.366444,0][-0.827302,-0.00784876,-0.48092][-0.645924,0.673458,-0.359493][0.725767,0.328371,0][-0.827302,-0.00784876,-0.48092][-0.844841,0.219827,-0.487769][0.176717,0.619773,0][-0.551847,1.40366,-0.321886][-0.818278,0.346526,-0.458629][0.176811,0.073164,0][-0.476173,-0.00784878,-0.832048][-0.487769,0.219827,-0.844842][0.397687,0.619773,0][-0.317139,1.40366,-0.556593][-0.458997,0.345728,-0.818409][0.397553,0.073164,0][-0.476173,-0.00784878,-0.832048][-0.487769,0.219827,-0.844842][0.397687,0.619773,0][-0.551847,1.40366,-0.321886][-0.818278,0.346526,-0.458629][0.176811,0.073164,0][-0.592058,-0.240814,-1.03277][-0.252444,0.879412,-0.403618][0.741997,0.366444,0][0.00347747,-0.240814,-1.19234][0.00488836,0.88465,-0.46623][0.783084,0.377453,0][-0.457674,-0.399304,-1.72299][-0.00256659,0.999188,0.0401994][0.751269,0.414064,0][-0.476173,-0.00784878,-0.832048][-0.354462,0.705285,-0.613946][0.749992,0.352596,0][0.00347747,-0.240814,-1.19234][0.00488836,0.88465,-0.46623][0.783084,0.377453,0][-0.592058,-0.240814,-1.03277][-0.252444,0.879412,-0.403618][0.741997,0.366444,0][0.00347747,-0.240814,-1.19234][0.00488836,0.88465,-0.46623][0.783084,0.377453,0][-0.476173,-0.00784878,-0.832048][-0.354462,0.705285,-0.613946][0.749992,0.352596,0][0.00347747,-0.00784878,-0.96057][0.00305419,0.703755,-0.710436][0.783084,0.361463,0][-0.317139,1.40366,-0.556593][-0.458997,0.345728,-0.818409][0.397553,0.073164,0][0.00347747,-0.00784878,-0.96057][-0.252897,0.212681,-0.943827][0.568706,0.619729,0][-0.476173,-0.00784878,-0.832048][-0.487769,0.219827,-0.844842][0.397687,0.619773,0][0.00347747,-0.00784878,-0.96057][-0.252897,0.212681,-0.943827][0.568706,0.619729,0][-0.317139,1.40366,-0.556593][-0.458997,0.345728,-0.818409][0.397553,0.073164,0][0.00347747,1.40366,-0.642502][-0.245273,0.319277,-0.915371][0.568694,0.0731233,0][0.00347747,-0.240814,-1.19234][0.00488836,0.88465,-0.46623][0.783084,0.377453,0][0.596592,-0.246835,-1.03277][0.247,0.881849,-0.401663][0.824171,0.366444,0][0.460479,-0.403971,-1.72299][0.00189838,0.999282,0.0378414][0.814889,0.414064,0][0.00347747,-0.240814,-1.19234][0.00488836,0.88465,-0.46623][0.783084,0.377453,0][0.00347747,-0.00784878,-0.96057][0.00305419,0.703755,-0.710436][0.783084,0.361463,0][0.596592,-0.246835,-1.03277][0.247,0.881849,-0.401663][0.824171,0.366444,0][0.483128,-0.00784878,-0.832048][0.368884,0.690435,-0.622273][0.816176,0.352596,0][0.596592,-0.246835,-1.03277][0.247,0.881849,-0.401663][0.824171,0.366444,0][0.00347747,-0.00784878,-0.96057][0.00305419,0.703755,-0.710436][0.783084,0.361463,0][0.00347747,-0.00784878,-0.96057][0.252898,0.212681,-0.943827][0.00769953,0.61973,0][0.00347747,1.40366,-0.642502][0.245067,0.321638,-0.914599][0.00779121,0.0731245,0][0.483128,-0.00784878,-0.832048][0.48777,0.219827,-0.844841][0.176715,0.619773,0][0.324094,1.40366,-0.556593][0.459108,0.348433,-0.817199][0.176809,0.0731652,0][0.483128,-0.00784878,-0.832048][0.48777,0.219827,-0.844841][0.176715,0.619773,0][0.00347747,1.40366,-0.642502][0.245067,0.321638,-0.914599][0.00779121,0.0731245,0][0.596592,-0.246835,-1.03277][0.247,0.881849,-0.401663][0.824171,0.366444,0][1.02998,-0.26155,-0.596804][0.429328,0.873091,-0.231061][0.854249,0.336366,0][1.25905,-0.411957,-1.26191][0.00720013,0.999674,0.0244931][0.869987,0.382253,0][0.596592,-0.246835,-1.03277][0.247,0.881849,-0.401663][0.824171,0.366444,0][0.483128,-0.00784878,-0.832048][0.368884,0.690435,-0.622273][0.816176,0.352596,0][1.02998,-0.26155,-0.596804][0.429328,0.873091,-0.231061][0.854249,0.336366,0][0.834257,-0.00784876,-0.480919][0.646623,0.666785,-0.370509][0.840401,0.328371,0][1.02998,-0.26155,-0.596804][0.429328,0.873091,-0.231061][0.854249,0.336366,0][0.483128,-0.00784878,-0.832048][0.368884,0.690435,-0.622273][0.816176,0.352596,0][0.483128,-0.00784878,-0.832048][0.48777,0.219827,-0.844841][0.176715,0.619773,0][0.324094,1.40366,-0.556593][0.459108,0.348433,-0.817199][0.176809,0.0731652,0][0.834257,-0.00784876,-0.480919][0.844842,0.219827,-0.487769][0.397685,0.619773,0][0.324094,1.40366,-0.556593][0.459108,0.348433,-0.817199][0.176809,0.0731652,0][0.558802,1.40366,-0.321885][0.816626,0.351872,-0.457503][0.39755,0.0731652,0][0.834257,-0.00784876,-0.480919][0.844842,0.219827,-0.487769][0.397685,0.619773,0][1.02998,-0.26155,-0.596804][0.429328,0.873091,-0.231061][0.854249,0.336366,0][1.18953,-0.264741,-0.00126886][0.497741,0.867325,-0.000364518][0.865258,0.295279,0][1.71587,-0.43379,-0.463305][0.0362915,0.999234,0.0146326][0.901797,0.327156,0][1.02998,-0.26155,-0.596804][0.429328,0.873091,-0.231061][0.854249,0.336366,0][0.834257,-0.00784876,-0.480919][0.646623,0.666785,-0.370509][0.840401,0.328371,0][1.18953,-0.264741,-0.00126886][0.497741,0.867325,-0.000364518][0.865258,0.295279,0][0.962779,-0.00784874,-0.00126887][0.749079,0.662479,-0.00135496][0.849268,0.295279,0][1.18953,-0.264741,-0.00126886][0.497741,0.867325,-0.000364518][0.865258,0.295279,0][0.834257,-0.00784876,-0.480919][0.646623,0.666785,-0.370509][0.840401,0.328371,0][0.834257,-0.00784876,-0.480919][0.844842,0.219827,-0.487769][0.397685,0.619773,0][0.558802,1.40366,-0.321885][0.816626,0.351872,-0.457503][0.39755,0.0731652,0][0.962779,-0.00784874,-0.00126887][0.943827,0.212681,-0.252898][0.568706,0.61973,0][0.644711,1.40366,-0.00126893][0.912922,0.326704,-0.244617][0.568694,0.0731245,0][0.962779,-0.00784874,-0.00126887][0.943827,0.212681,-0.252898][0.568706,0.61973,0][0.558802,1.40366,-0.321885][0.816626,0.351872,-0.457503][0.39755,0.0731652,0][1.18953,-0.264741,-0.00126886][0.497741,0.867325,-0.000364518][0.865258,0.295279,0][1.02998,-0.26155,0.594267][0.4324,0.871604,0.230945][0.854249,0.254192,0][1.71587,-0.43379,0.458848][0.0364994,0.999228,-0.0145259][0.901797,0.263535,0][1.02998,-0.26155,0.594267][0.4324,0.871604,0.230945][0.854249,0.254192,0][0.962779,-0.00784874,-0.00126887][0.749079,0.662479,-0.00135496][0.849268,0.295279,0][0.834257,-0.00784872,0.478382][0.645995,0.671283,0.363413][0.840401,0.262187,0][0.962779,-0.00784874,-0.00126887][0.749079,0.662479,-0.00135496][0.849268,0.295279,0][1.02998,-0.26155,0.594267][0.4324,0.871604,0.230945][0.854249,0.254192,0][1.18953,-0.264741,-0.00126886][0.497741,0.867325,-0.000364518][0.865258,0.295279,0][0.834257,-0.00784872,0.478382][0.844841,0.219827,0.487769][0.176709,0.619773,0][0.644711,1.40366,-0.00126893][0.911657,0.330468,0.244278][0.0077892,0.073124,0][0.558802,1.40366,0.319348][0.814711,0.356072,0.457666][0.176803,0.0731648,0][0.644711,1.40366,-0.00126893][0.911657,0.330468,0.244278][0.0077892,0.073124,0][0.834257,-0.00784872,0.478382][0.844841,0.219827,0.487769][0.176709,0.619773,0][0.962779,-0.00784874,-0.00126887][0.943827,0.212681,0.252898][0.00769753,0.61973,0][-0.960642,-0.554705,1.66863][-0.0696816,-0.981314,0.179351][0.716568,0.18007,0][0.00347737,-0.554705,1.92697][-0.00370678,-0.976584,0.215103][0.783084,0.162247,0][-0.636668,-0.255119,2.38779][-0.114434,-0.876731,0.467171][0.738919,0.130454,0][-0.717134,-0.448259,1.24687][0.0816811,-0.991409,-0.102162][0.733368,0.209168,0][0.00347737,-0.554705,1.92697][-0.00370678,-0.976584,0.215103][0.783084,0.162247,0][-0.960642,-0.554705,1.66863][-0.0696816,-0.981314,0.179351][0.716568,0.18007,0][0.724089,-0.448259,1.24687][-0.0778126,-0.990512,-0.113271][0.8328,0.209168,0][1.66199,-0.588145,0.96285][0.11702,-0.988149,0.0993342][0.898294,0.228763,0][0.962018,-0.564396,1.66863][0.0707262,-0.983338,0.167463][0.8496,0.18007,0][1.4447,-0.448259,-0.00126885][-0.184277,-0.982874,0][0.882517,0.295279,0][1.66199,-0.588145,-0.965387][0.11702,-0.988149,-0.0993339][0.898294,0.361795,0][1.91426,-0.612528,-0.00126885][0.0932651,-0.995641,0][0.916117,0.295279,0][0.724089,-0.448259,-1.2494][-0.0778126,-0.990512,0.113271][0.832801,0.38139,0][0.00347747,-0.554705,-1.92951][-0.00370678,-0.976584,-0.215103][0.783084,0.428311,0][0.962019,-0.564396,-1.67117][0.0707262,-0.983338,-0.167462][0.8496,0.410488,0][-0.717134,-0.448259,-1.2494][0.0816811,-0.991409,0.102162][0.733368,0.38139,0][-1.64909,-0.604313,-0.965388][-0.132658,-0.985194,-0.108605][0.667875,0.361795,0][-0.960641,-0.554705,-1.67117][-0.0696815,-0.981314,-0.179351][0.716568,0.410488,0][-1.42853,-0.476837,-0.00126898][0.175085,-0.984553,0][0.683652,0.295279,0][-1.64909,-0.604313,0.96285][-0.132658,-0.985194,0.108605][0.667875,0.228763,0][-1.90731,-0.612062,-0.00126902][-0.142801,-0.989751,0][0.650052,0.295279,0][0.00347737,-0.554705,1.92697][-0.00370678,-0.976584,0.215103][0.783084,0.162247,0][0.962018,-0.564396,1.66863][0.0707262,-0.983338,0.167463][0.8496,0.18007,0][0.641056,-0.261585,2.38779][0.110153,-0.876422,0.468775][0.827249,0.130454,0][0.962018,-0.564396,1.66863][0.0707262,-0.983338,0.167463][0.8496,0.18007,0][1.66199,-0.588145,0.96285][0.11702,-0.988149,0.0993342][0.898294,0.228763,0][1.744,-0.307697,1.74764][0.291511,-0.894735,0.338334][0.903745,0.174619,0][2.37687,-0.374595,0.638877][0.379676,-0.916569,0.125489][0.947909,0.251114,0][1.66199,-0.588145,0.96285][0.11702,-0.988149,0.0993342][0.898294,0.228763,0][1.91426,-0.612528,-0.00126885][0.0932651,-0.995641,0][0.916117,0.295279,0][1.91426,-0.612528,-0.00126885][0.0932651,-0.995641,0][0.916117,0.295279,0][1.66199,-0.588145,-0.965387][0.11702,-0.988149,-0.0993339][0.898294,0.361795,0][2.37687,-0.374595,-0.641415][0.379676,-0.916569,-0.125489][0.947909,0.339444,0][1.66199,-0.588145,-0.965387][0.11702,-0.988149,-0.0993339][0.898294,0.361795,0][0.962019,-0.564396,-1.67117][0.0707262,-0.983338,-0.167462][0.8496,0.410488,0][1.744,-0.307697,-1.75018][0.291511,-0.894736,-0.338334][0.903745,0.415939,0][0.962019,-0.564396,-1.67117][0.0707262,-0.983338,-0.167462][0.8496,0.410488,0][0.00347747,-0.554705,-1.92951][-0.00370678,-0.976584,-0.215103][0.783084,0.428311,0][0.641056,-0.261585,-2.39032][0.110153,-0.876423,-0.468775][0.827249,0.460104,0][0.00347747,-0.554705,-1.92951][-0.00370678,-0.976584,-0.215103][0.783084,0.428311,0][-0.960641,-0.554705,-1.67117][-0.0696815,-0.981314,-0.179351][0.716568,0.410488,0][-0.636668,-0.255119,-2.39032][-0.114434,-0.876731,-0.46717][0.738919,0.460104,0][-0.960641,-0.554705,-1.67117][-0.0696815,-0.981314,-0.179351][0.716568,0.410488,0][-1.64909,-0.604313,-0.965388][-0.132658,-0.985194,-0.108605][0.667875,0.361795,0][-1.73705,-0.307233,-1.75018][-0.295715,-0.890188,-0.34658][0.662424,0.415939,0][-1.64909,-0.604313,-0.965388][-0.132658,-0.985194,-0.108605][0.667875,0.361795,0][-1.90731,-0.612062,-0.00126902][-0.142801,-0.989751,0][0.650052,0.295279,0][-2.37354,-0.350143,-0.641415][-0.41938,-0.899139,-0.125179][0.618259,0.339444,0][-1.90731,-0.612062,-0.00126902][-0.142801,-0.989751,0][0.650052,0.295279,0][-1.64909,-0.604313,0.96285][-0.132658,-0.985194,0.108605][0.667875,0.228763,0][-2.37354,-0.350142,0.638876][-0.41938,-0.899139,0.125179][0.618259,0.251114,0][-1.64909,-0.604313,0.96285][-0.132658,-0.985194,0.108605][0.667875,0.228763,0][-0.960642,-0.554705,1.66863][-0.0696816,-0.981314,0.179351][0.716568,0.18007,0][-1.73705,-0.307233,1.74764][-0.295715,-0.890188,0.34658][0.662424,0.174619,0][1.18953,-0.264741,-0.00126886][0.497741,0.867325,-0.000364518][0.865258,0.295279,0][1.71587,-0.43379,0.458848][0.0364994,0.999228,-0.0145259][0.901797,0.263535,0][1.71587,-0.43379,-0.463305][0.0362915,0.999234,0.0146326][0.901797,0.327156,0][2.33134,-0.354632,-0.00126886][-0.138131,0.990414,-1.46814e-005][0.944703,0.295279,0][1.71587,-0.43379,-0.463305][0.0362915,0.999234,0.0146326][0.901797,0.327156,0][1.71587,-0.43379,0.458848][0.0364994,0.999228,-0.0145259][0.901797,0.263535,0][1.71587,-0.43379,-0.463305][0.0362915,0.999234,0.0146326][0.901797,0.327156,0][2.33134,-0.354632,-0.00126886][-0.138131,0.990414,-1.46814e-005][0.944703,0.295279,0][2.25162,-0.350647,-0.607574][-0.131169,0.987942,0.0822566][0.939196,0.337109,0][1.71587,-0.43379,0.458848][0.0364994,0.999228,-0.0145259][0.901797,0.263535,0][2.25162,-0.350647,0.605036][-0.13087,0.987978,-0.0822921][0.939196,0.253449,0][2.33134,-0.354632,-0.00126886][-0.138131,0.990414,-1.46814e-005][0.944703,0.295279,0][1.71587,-0.43379,0.458848][0.0364994,0.999228,-0.0145259][0.901797,0.263535,0][2.02422,-0.298444,1.17002][-0.147627,0.98029,-0.131293][0.92305,0.21447,0][2.25162,-0.350647,0.605036][-0.13087,0.987978,-0.0822921][0.939196,0.253449,0][1.25905,-0.411957,1.25746][0.0075711,0.999681,-0.0240984][0.869987,0.208438,0][1.71587,-0.43379,0.458848][0.0364994,0.999228,-0.0145259][0.901797,0.263535,0][1.02998,-0.26155,0.594267][0.4324,0.871604,0.230945][0.854249,0.254192,0][1.71587,-0.43379,0.458848][0.0364994,0.999228,-0.0145259][0.901797,0.263535,0][1.25905,-0.411957,1.25746][0.0075711,0.999681,-0.0240984][0.869987,0.208438,0][2.02422,-0.298444,1.17002][-0.147627,0.98029,-0.131293][0.92305,0.21447,0][1.25905,-0.411957,1.25746][0.0075711,0.999681,-0.0240984][0.869987,0.208438,0][1.65211,-0.287275,1.65519][-0.132359,0.975625,-0.175035][0.897366,0.180997,0][2.02422,-0.298444,1.17002][-0.147627,0.98029,-0.131293][0.92305,0.21447,0][0.596592,-0.246835,1.03023][0.247515,0.880073,0.405226][0.824171,0.224114,0][0.460479,-0.403971,1.71853][0.00209706,0.999311,-0.0370568][0.814889,0.176627,0][1.25905,-0.411957,1.25746][0.0075711,0.999681,-0.0240984][0.869987,0.208438,0][0.607394,-0.243591,2.26149][-0.0530888,0.961496,-0.269643][0.824914,0.139167,0][1.16982,-0.260996,2.02747][-0.098451,0.970453,-0.220292][0.863894,0.155313,0][0.460479,-0.403971,1.71853][0.00209706,0.999311,-0.0370568][0.814889,0.176627,0][1.65211,-0.287275,1.65519][-0.132359,0.975625,-0.175035][0.897366,0.180997,0][1.25905,-0.411957,1.25746][0.0075711,0.999681,-0.0240984][0.869987,0.208438,0][1.16982,-0.260996,2.02747][-0.098451,0.970453,-0.220292][0.863894,0.155313,0][0.460479,-0.403971,1.71853][0.00209706,0.999311,-0.0370568][0.814889,0.176627,0][1.16982,-0.260996,2.02747][-0.098451,0.970453,-0.220292][0.863894,0.155313,0][1.25905,-0.411957,1.25746][0.0075711,0.999681,-0.0240984][0.869987,0.208438,0][-0.457675,-0.399303,1.71853][-0.00277364,0.999219,-0.0394091][0.751269,0.176627,0][0.460479,-0.403971,1.71853][0.00209706,0.999311,-0.0370568][0.814889,0.176627,0][0.0034774,-0.240814,1.1898][0.00400796,0.883963,0.467539][0.783084,0.213105,0][0.460479,-0.403971,1.71853][0.00209706,0.999311,-0.0370568][0.814889,0.176627,0][0.00347736,-0.237463,2.34131][0.00483002,0.963591,-0.267336][0.783084,0.133661,0][0.607394,-0.243591,2.26149][-0.0530888,0.961496,-0.269643][0.824914,0.139167,0][0.460479,-0.403971,1.71853][0.00209706,0.999311,-0.0370568][0.814889,0.176627,0][-0.457675,-0.399303,1.71853][-0.00277364,0.999219,-0.0394091][0.751269,0.176627,0][0.00347736,-0.237463,2.34131][0.00483002,0.963591,-0.267336][0.783084,0.133661,0][-0.602828,-0.237463,2.26149][0.0540318,0.960796,-0.271941][0.741254,0.139167,0][0.00347736,-0.237463,2.34131][0.00483002,0.963591,-0.267336][0.783084,0.133661,0][-0.457675,-0.399303,1.71853][-0.00277364,0.999219,-0.0394091][0.751269,0.176627,0][-0.457675,-0.399303,1.71853][-0.00277364,0.999219,-0.0394091][0.751269,0.176627,0][-1.16287,-0.260685,2.02747][0.0947346,0.968076,-0.232063][0.702275,0.155313,0][-0.602828,-0.237463,2.26149][0.0540318,0.960796,-0.271941][0.741254,0.139167,0][-0.457675,-0.399303,1.71853][-0.00277364,0.999219,-0.0394091][0.751269,0.176627,0][-1.24808,-0.424262,1.25746][-0.0136778,0.999495,-0.0286793][0.696171,0.208438,0][-1.16287,-0.260685,2.02747][0.0947346,0.968076,-0.232063][0.702275,0.155313,0][-1.64516,-0.28681,1.65519][0.146831,0.970946,-0.188958][0.668803,0.180997,0][-1.16287,-0.260685,2.02747][0.0947346,0.968076,-0.232063][0.702275,0.155313,0][-1.24808,-0.424262,1.25746][-0.0136778,0.999495,-0.0286793][0.696171,0.208438,0][-1.24808,-0.424262,1.25746][-0.0136778,0.999495,-0.0286793][0.696171,0.208438,0][-0.457675,-0.399303,1.71853][-0.00277364,0.999219,-0.0394091][0.751269,0.176627,0][-0.592058,-0.240814,1.03023][-0.253789,0.880849,0.399621][0.741997,0.224114,0][-1.02303,-0.26124,0.594266][-0.442026,0.865961,0.233933][0.711919,0.254192,0][-1.70466,-0.450509,0.458848][-0.0168684,0.999759,-0.0140165][0.664361,0.263535,0][-1.24808,-0.424262,1.25746][-0.0136778,0.999495,-0.0286793][0.696171,0.208438,0][-1.18257,-0.264431,-0.00126896][-0.511718,0.859153,0.000425616][0.70091,0.295279,0][-1.70466,-0.450509,-0.463305][-0.0166549,0.999762,0.0141199][0.664361,0.327156,0][-1.70466,-0.450509,0.458848][-0.0168684,0.999759,-0.0140165][0.664361,0.263535,0][-1.02303,-0.26124,-0.596805][-0.446047,0.864102,-0.233173][0.711919,0.336366,0][-1.24808,-0.424262,-1.26191][-0.0132834,0.999488,0.0290989][0.696171,0.382253,0][-1.70466,-0.450509,-0.463305][-0.0166549,0.999762,0.0141199][0.664361,0.327156,0][-0.592058,-0.240814,-1.03277][-0.252444,0.879412,-0.403618][0.741997,0.366444,0][-0.457674,-0.399304,-1.72299][-0.00256659,0.999188,0.0401994][0.751269,0.414064,0][-1.24808,-0.424262,-1.26191][-0.0132834,0.999488,0.0290989][0.696171,0.382253,0][0.00347747,-0.240814,-1.19234][0.00488836,0.88465,-0.46623][0.783084,0.377453,0][0.460479,-0.403971,-1.72299][0.00189838,0.999282,0.0378414][0.814889,0.414064,0][-0.457674,-0.399304,-1.72299][-0.00256659,0.999188,0.0401994][0.751269,0.414064,0][0.596592,-0.246835,-1.03277][0.247,0.881849,-0.401663][0.824171,0.366444,0][1.25905,-0.411957,-1.26191][0.00720013,0.999674,0.0244931][0.869987,0.382253,0][0.460479,-0.403971,-1.72299][0.00189838,0.999282,0.0378414][0.814889,0.414064,0][1.02998,-0.26155,-0.596804][0.429328,0.873091,-0.231061][0.854249,0.336366,0][1.71587,-0.43379,-0.463305][0.0362915,0.999234,0.0146326][0.901797,0.327156,0][1.25905,-0.411957,-1.26191][0.00720013,0.999674,0.0244931][0.869987,0.382253,0][-1.24808,-0.424262,1.25746][-0.0136778,0.999495,-0.0286793][0.696171,0.208438,0][-2.01728,-0.297977,1.17002][0.179034,0.97408,-0.138256][0.643118,0.21447,0][-1.64516,-0.28681,1.65519][0.146831,0.970946,-0.188958][0.668803,0.180997,0][-1.24808,-0.424262,1.25746][-0.0136778,0.999495,-0.0286793][0.696171,0.208438,0][-1.70466,-0.450509,0.458848][-0.0168684,0.999759,-0.0140165][0.664361,0.263535,0][-2.01728,-0.297977,1.17002][0.179034,0.97408,-0.138256][0.643118,0.21447,0][-2.24805,-0.327452,0.605036][0.199525,0.976587,-0.0804205][0.626973,0.253449,0][-2.01728,-0.297977,1.17002][0.179034,0.97408,-0.138256][0.643118,0.21447,0][-1.70466,-0.450509,0.458848][-0.0168684,0.999759,-0.0140165][0.664361,0.263535,0][-1.70466,-0.450509,0.458848][-0.0168684,0.999759,-0.0140165][0.664361,0.263535,0][-2.32781,-0.330643,-0.00126906][0.202209,0.979342,-1.87415e-005][0.621466,0.295279,0][-2.24805,-0.327452,0.605036][0.199525,0.976587,-0.0804205][0.626973,0.253449,0][-1.70466,-0.450509,0.458848][-0.0168684,0.999759,-0.0140165][0.664361,0.263535,0][-1.70466,-0.450509,-0.463305][-0.0166549,0.999762,0.0141199][0.664361,0.327156,0][-2.32781,-0.330643,-0.00126906][0.202209,0.979342,-1.87415e-005][0.621466,0.295279,0][-2.24805,-0.327452,-0.607574][0.199802,0.976532,0.0804003][0.626973,0.337109,0][-2.32781,-0.330643,-0.00126906][0.202209,0.979342,-1.87415e-005][0.621466,0.295279,0][-1.70466,-0.450509,-0.463305][-0.0166549,0.999762,0.0141199][0.664361,0.327156,0][-1.70466,-0.450509,-0.463305][-0.0166549,0.999762,0.0141199][0.664361,0.327156,0][-2.01728,-0.297978,-1.17256][0.179408,0.973984,0.138447][0.643118,0.376088,0][-2.24805,-0.327452,-0.607574][0.199802,0.976532,0.0804003][0.626973,0.337109,0][-1.70466,-0.450509,-0.463305][-0.0166549,0.999762,0.0141199][0.664361,0.327156,0][-1.24808,-0.424262,-1.26191][-0.0132834,0.999488,0.0290989][0.696171,0.382253,0][-2.01728,-0.297978,-1.17256][0.179408,0.973984,0.138447][0.643118,0.376088,0][-1.24808,-0.424262,-1.26191][-0.0132834,0.999488,0.0290989][0.696171,0.382253,0][-1.64516,-0.28681,-1.65772][0.147307,0.970798,0.189346][0.668802,0.409561,0][-2.01728,-0.297978,-1.17256][0.179408,0.973984,0.138447][0.643118,0.376088,0][-1.24808,-0.424262,-1.26191][-0.0132834,0.999488,0.0290989][0.696171,0.382253,0][-1.16286,-0.260685,-2.03][0.0951117,0.9679,0.232644][0.702275,0.435245,0][-1.64516,-0.28681,-1.65772][0.147307,0.970798,0.189346][0.668802,0.409561,0][-1.24808,-0.424262,-1.26191][-0.0132834,0.999488,0.0290989][0.696171,0.382253,0][-0.457674,-0.399304,-1.72299][-0.00256659,0.999188,0.0401994][0.751269,0.414064,0][-1.16286,-0.260685,-2.03][0.0951117,0.9679,0.232644][0.702275,0.435245,0][-0.457674,-0.399304,-1.72299][-0.00256659,0.999188,0.0401994][0.751269,0.414064,0][-0.602827,-0.237463,-2.26403][0.0542681,0.960548,0.272768][0.741254,0.451391,0][-1.16286,-0.260685,-2.03][0.0951117,0.9679,0.232644][0.702275,0.435245,0][-0.457674,-0.399304,-1.72299][-0.00256659,0.999188,0.0401994][0.751269,0.414064,0][0.460479,-0.403971,-1.72299][0.00189838,0.999282,0.0378414][0.814889,0.414064,0][0.00347747,-0.237463,-2.34385][0.00482875,0.96337,0.268131][0.783084,0.456898,0][0.607394,-0.243591,-2.26403][-0.0533275,0.961253,0.270462][0.824914,0.451391,0][0.00347747,-0.237463,-2.34385][0.00482875,0.96337,0.268131][0.783084,0.456898,0][0.460479,-0.403971,-1.72299][0.00189838,0.999282,0.0378414][0.814889,0.414064,0][0.00347747,-0.237463,-2.34385][0.00482875,0.96337,0.268131][0.783084,0.456898,0][-0.602827,-0.237463,-2.26403][0.0542681,0.960548,0.272768][0.741254,0.451391,0][-0.457674,-0.399304,-1.72299][-0.00256659,0.999188,0.0401994][0.751269,0.414064,0][1.25905,-0.411957,-1.26191][0.00720013,0.999674,0.0244931][0.869987,0.382253,0][1.16982,-0.260996,-2.03][-0.0988123,0.970292,0.22084][0.863894,0.435245,0][0.460479,-0.403971,-1.72299][0.00189838,0.999282,0.0378414][0.814889,0.414064,0][0.607394,-0.243591,-2.26403][-0.0533275,0.961253,0.270462][0.824914,0.451391,0][0.460479,-0.403971,-1.72299][0.00189838,0.999282,0.0378414][0.814889,0.414064,0][1.16982,-0.260996,-2.03][-0.0988123,0.970292,0.22084][0.863894,0.435245,0][1.25905,-0.411957,-1.26191][0.00720013,0.999674,0.0244931][0.869987,0.382253,0][1.65211,-0.287275,-1.65772][-0.132806,0.975499,0.1754][0.897366,0.409561,0][1.16982,-0.260996,-2.03][-0.0988123,0.970292,0.22084][0.863894,0.435245,0][1.25905,-0.411957,-1.26191][0.00720013,0.999674,0.0244931][0.869987,0.382253,0][2.02422,-0.298444,-1.17256][-0.147974,0.980213,0.131481][0.92305,0.376088,0][1.65211,-0.287275,-1.65772][-0.132806,0.975499,0.1754][0.897366,0.409561,0][1.25905,-0.411957,-1.26191][0.00720013,0.999674,0.0244931][0.869987,0.382253,0][1.71587,-0.43379,-0.463305][0.0362915,0.999234,0.0146326][0.901797,0.327156,0][2.02422,-0.298444,-1.17256][-0.147974,0.980213,0.131481][0.92305,0.376088,0][2.25162,-0.350647,-0.607574][-0.131169,0.987942,0.0822566][0.939196,0.337109,0][2.02422,-0.298444,-1.17256][-0.147974,0.980213,0.131481][0.92305,0.376088,0][1.71587,-0.43379,-0.463305][0.0362915,0.999234,0.0146326][0.901797,0.327156,0][0.724089,-0.448259,1.24687][-0.0778126,-0.990512,-0.113271][0.8328,0.209168,0][0.962018,-0.564396,1.66863][0.0707262,-0.983338,0.167463][0.8496,0.18007,0][0.00347737,-0.554705,1.92697][-0.00370678,-0.976584,0.215103][0.783084,0.162247,0][0.724089,-0.448259,1.24687][-0.0778126,-0.990512,-0.113271][0.8328,0.209168,0][1.4447,-0.448259,-0.00126885][-0.184277,-0.982874,0][0.882517,0.295279,0][1.66199,-0.588145,0.96285][0.11702,-0.988149,0.0993342][0.898294,0.228763,0][1.4447,-0.448259,-0.00126885][-0.184277,-0.982874,0][0.882517,0.295279,0][0.724089,-0.448259,-1.2494][-0.0778126,-0.990512,0.113271][0.832801,0.38139,0][1.66199,-0.588145,-0.965387][0.11702,-0.988149,-0.0993339][0.898294,0.361795,0][0.724089,-0.448259,-1.2494][-0.0778126,-0.990512,0.113271][0.832801,0.38139,0][-0.717134,-0.448259,-1.2494][0.0816811,-0.991409,0.102162][0.733368,0.38139,0][0.00347747,-0.554705,-1.92951][-0.00370678,-0.976584,-0.215103][0.783084,0.428311,0][-0.717134,-0.448259,-1.2494][0.0816811,-0.991409,0.102162][0.733368,0.38139,0][-1.42853,-0.476837,-0.00126898][0.175085,-0.984553,0][0.683652,0.295279,0][-1.64909,-0.604313,-0.965388][-0.132658,-0.985194,-0.108605][0.667875,0.361795,0][-1.42853,-0.476837,-0.00126898][0.175085,-0.984553,0][0.683652,0.295279,0][-0.717134,-0.448259,1.24687][0.0816811,-0.991409,-0.102162][0.733368,0.209168,0][-1.64909,-0.604313,0.96285][-0.132658,-0.985194,0.108605][0.667875,0.228763,0][-0.717134,-0.448259,1.24687][0.0816811,-0.991409,-0.102162][0.733368,0.209168,0][0.724089,-0.448259,1.24687][-0.0778126,-0.990512,-0.113271][0.8328,0.209168,0][0.00347737,-0.554705,1.92697][-0.00370678,-0.976584,0.215103][0.783084,0.162247,0][1.66199,-0.588145,0.96285][0.11702,-0.988149,0.0993342][0.898294,0.228763,0][1.4447,-0.448259,-0.00126885][-0.184277,-0.982874,0][0.882517,0.295279,0][1.91426,-0.612528,-0.00126885][0.0932651,-0.995641,0][0.916117,0.295279,0][1.66199,-0.588145,-0.965387][0.11702,-0.988149,-0.0993339][0.898294,0.361795,0][0.724089,-0.448259,-1.2494][-0.0778126,-0.990512,0.113271][0.832801,0.38139,0][0.962019,-0.564396,-1.67117][0.0707262,-0.983338,-0.167462][0.8496,0.410488,0][0.00347747,-0.554705,-1.92951][-0.00370678,-0.976584,-0.215103][0.783084,0.428311,0][-0.717134,-0.448259,-1.2494][0.0816811,-0.991409,0.102162][0.733368,0.38139,0][-0.960641,-0.554705,-1.67117][-0.0696815,-0.981314,-0.179351][0.716568,0.410488,0][-1.90731,-0.612062,-0.00126902][-0.142801,-0.989751,0][0.650052,0.295279,0][-1.64909,-0.604313,-0.965388][-0.132658,-0.985194,-0.108605][0.667875,0.361795,0][-1.42853,-0.476837,-0.00126898][0.175085,-0.984553,0][0.683652,0.295279,0][-0.960642,-0.554705,1.66863][-0.0696816,-0.981314,0.179351][0.716568,0.18007,0][-1.64909,-0.604313,0.96285][-0.132658,-0.985194,0.108605][0.667875,0.228763,0][-0.717134,-0.448259,1.24687][0.0816811,-0.991409,-0.102162][0.733368,0.209168,0][0.00156623,1.84244,-0.00431202][0,1,0][0.782952,0.295489,0][0.379719,1.60963,0.373841][0.28224,0.916887,0.28224][0.809042,0.2694,0][0.536355,1.60963,-0.00431201][0.399147,0.916887,0][0.819848,0.295489,0][0.00156623,1.84244,-0.00431202][0,1,0][0.782952,0.295489,0][0.00156623,1.60963,0.530477][0,0.916887,0.399147][0.782952,0.258593,0][0.379719,1.60963,0.373841][0.28224,0.916887,0.28224][0.809042,0.2694,0][0.00156623,1.84244,-0.00431202][0,1,0][0.782952,0.295489,0][-0.376587,1.60963,0.373841][-0.282239,0.916887,0.28224][0.756863,0.2694,0][0.00156623,1.60963,0.530477][0,0.916887,0.399147][0.782952,0.258593,0][0.00156623,1.84244,-0.00431202][0,1,0][0.782952,0.295489,0][-0.533224,1.60963,-0.00431206][-0.399147,0.916887,0][0.746056,0.295489,0][-0.376587,1.60963,0.373841][-0.282239,0.916887,0.28224][0.756863,0.2694,0][0.00156623,1.84244,-0.00431202][0,1,0][0.782952,0.295489,0][-0.376587,1.60963,-0.382465][-0.282239,0.916887,-0.28224][0.756863,0.321579,0][-0.533224,1.60963,-0.00431206][-0.399147,0.916887,0][0.746056,0.295489,0][0.00156623,1.84244,-0.00431202][0,1,0][0.782952,0.295489,0][0.00156623,1.60963,-0.539101][0,0.916887,-0.399147][0.782952,0.332385,0][-0.376587,1.60963,-0.382465][-0.282239,0.916887,-0.28224][0.756863,0.321579,0][0.00156623,1.84244,-0.00431202][0,1,0][0.782952,0.295489,0][0.37972,1.60963,-0.382465][0.28224,0.916887,-0.282239][0.809042,0.321579,0][0.00156623,1.60963,-0.539101][0,0.916887,-0.399147][0.782952,0.332385,0][0.00156623,1.84244,-0.00431202][0,1,0][0.782952,0.295489,0][0.536355,1.60963,-0.00431201][0.399147,0.916887,0][0.819848,0.295489,0][0.37972,1.60963,-0.382465][0.28224,0.916887,-0.282239][0.809042,0.321579,0][0.37972,1.60963,-0.382465][0.603713,0.516721,-0.607067][0.28686,0.0146893,0][0.558802,1.40366,-0.321885][0.816626,0.351872,-0.457503][0.39755,0.0731652,0][0.324094,1.40366,-0.556593][0.459108,0.348433,-0.817199][0.176809,0.0731652,0][0.324094,1.40366,0.554055][0.457302,0.356838,0.814581][0.397542,0.0731648,0][0.558802,1.40366,0.319348][0.814711,0.356072,0.457666][0.176803,0.0731648,0][0.379719,1.60963,0.373841][0.599892,0.530254,0.599133][0.286856,0.0146886,0][-0.376587,1.60963,0.373841][-0.604883,0.521792,0.601539][0.286867,0.0146884,0][-0.551847,1.40366,0.319348][-0.816355,0.350808,0.458802][0.397545,0.0731636,0][-0.317139,1.40366,0.554055][-0.457202,0.354216,0.815781][0.176805,0.0731636,0][-0.376587,1.60963,-0.382465][-0.608661,0.508059,-0.609432][0.286871,0.014689,0][-0.551847,1.40366,-0.321886][-0.818278,0.346526,-0.458629][0.176811,0.073164,0][-0.533224,1.60963,-0.00431206][-0.830464,0.488352,-0.268034][0.00782294,0.0146724,0][-0.551847,1.40366,-0.321886][-0.818278,0.346526,-0.458629][0.176811,0.073164,0][-0.376587,1.60963,-0.382465][-0.608661,0.508059,-0.609432][0.286871,0.014689,0][-0.317139,1.40366,-0.556593][-0.458997,0.345728,-0.818409][0.397553,0.073164,0][-0.376587,1.60963,-0.382465][-0.608661,0.508059,-0.609432][0.286871,0.014689,0][0.00156623,1.60963,-0.539101][-0.268396,0.485935,-0.831763][0.56869,0.0146724,0][-0.317139,1.40366,-0.556593][-0.458997,0.345728,-0.818409][0.397553,0.073164,0][0.00156623,1.60963,-0.539101][0.267811,0.489821,-0.829671][0.00782046,0.0146726,0][0.37972,1.60963,-0.382465][0.603713,0.516721,-0.607067][0.28686,0.0146893,0][0.324094,1.40366,-0.556593][0.459108,0.348433,-0.817199][0.176809,0.0731652,0][0.37972,1.60963,-0.382465][0.603713,0.516721,-0.607067][0.28686,0.0146893,0][0.536355,1.60963,-0.00431201][0.823949,0.500242,-0.266208][0.56869,0.0146726,0][0.558802,1.40366,-0.321885][0.816626,0.351872,-0.457503][0.39755,0.0731652,0][0.536355,1.60963,-0.00431201][0.820581,0.506247,0.265257][0.00781955,0.014672,0][0.379719,1.60963,0.373841][0.599892,0.530254,0.599133][0.286856,0.0146886,0][0.558802,1.40366,0.319348][0.814711,0.356072,0.457666][0.176803,0.0731648,0][0.379719,1.60963,0.373841][0.599892,0.530254,0.599133][0.286856,0.0146886,0][0.00156623,1.60963,0.530477][0.264887,0.508568,0.819264][0.568689,0.014672,0][0.324094,1.40366,0.554055][0.457302,0.356838,0.814581][0.397542,0.0731648,0][0.00156623,1.60963,0.530477][-0.265487,0.504823,0.821383][0.00782204,0.0146717,0][-0.376587,1.60963,0.373841][-0.604883,0.521792,0.601539][0.286867,0.0146884,0][-0.317139,1.40366,0.554055][-0.457202,0.354216,0.815781][0.176805,0.0731636,0][-0.376587,1.60963,0.373841][-0.604883,0.521792,0.601539][0.286867,0.0146884,0][-0.533224,1.60963,-0.00431206][-0.827123,0.494497,0.267097][0.56869,0.0146717,0][-0.551847,1.40366,0.319348][-0.816355,0.350808,0.458802][0.397545,0.0731636,0][-0.637756,1.40366,-0.00126901][-0.913751,0.324211,0.244839][0.568694,0.0731228,0][-0.551847,1.40366,0.319348][-0.816355,0.350808,0.458802][0.397545,0.0731636,0][-0.533224,1.60963,-0.00431206][-0.827123,0.494497,0.267097][0.56869,0.0146717,0][-0.533224,1.60963,-0.00431206][-0.830464,0.488352,-0.268034][0.00782294,0.0146724,0][-0.551847,1.40366,-0.321886][-0.818278,0.346526,-0.458629][0.176811,0.073164,0][-0.637756,1.40366,-0.00126901][-0.914988,0.320451,-0.245171][0.00779194,0.0731233,0][0.00156623,1.60963,-0.539101][-0.268396,0.485935,-0.831763][0.56869,0.0146724,0][0.00347747,1.40366,-0.642502][-0.245273,0.319277,-0.915371][0.568694,0.0731233,0][-0.317139,1.40366,-0.556593][-0.458997,0.345728,-0.818409][0.397553,0.073164,0][0.00156623,1.60963,-0.539101][0.267811,0.489821,-0.829671][0.00782046,0.0146726,0][0.324094,1.40366,-0.556593][0.459108,0.348433,-0.817199][0.176809,0.0731652,0][0.00347747,1.40366,-0.642502][0.245067,0.321638,-0.914599][0.00779121,0.0731245,0][0.558802,1.40366,0.319348][0.814711,0.356072,0.457666][0.176803,0.0731648,0][0.644711,1.40366,-0.00126893][0.911657,0.330468,0.244278][0.0077892,0.073124,0][0.536355,1.60963,-0.00431201][0.820581,0.506247,0.265257][0.00781955,0.014672,0][0.558802,1.40366,-0.321885][0.816626,0.351872,-0.457503][0.39755,0.0731652,0][0.536355,1.60963,-0.00431201][0.823949,0.500242,-0.266208][0.56869,0.0146726,0][0.644711,1.40366,-0.00126893][0.912922,0.326704,-0.244617][0.568694,0.0731245,0][0.00347741,1.40366,0.639964][-0.24439,0.329231,0.912075][0.00778993,0.0731228,0][0.00156623,1.60963,0.530477][-0.265487,0.504823,0.821383][0.00782204,0.0146717,0][-0.317139,1.40366,0.554055][-0.457202,0.354216,0.815781][0.176805,0.0731636,0][0.00347741,1.40366,0.639964][0.244176,0.331596,0.911275][0.568694,0.073124,0][0.324094,1.40366,0.554055][0.457302,0.356838,0.814581][0.397542,0.0731648,0][0.00156623,1.60963,0.530477][0.264887,0.508568,0.819264][0.568689,0.014672,0][-1.90731,-0.612062,-0.00126902][-0.142801,-0.989751,0][0.650052,0.295279,0][-2.37354,-0.350142,0.638876][-0.41938,-0.899139,0.125179][0.618259,0.251114,0][-2.37354,-0.350143,-0.641415][-0.41938,-0.899139,-0.125179][0.618259,0.339444,0][-2.37354,-0.350143,-0.641415][-0.829169,-0.555671,-0.0609038][0.00616511,0.633586,0][-2.37354,-0.350142,0.638876][-0.829169,-0.555671,0.0609038][0.572306,0.633586,0][-2.78056,0.187052,-0.00126912][-0.828995,-0.559257,0][0.287982,0.991993,0][-2.68642,0.192706,0.715071][-0.853385,-0.508174,0.11616][0.572309,0.992026,0][-2.78056,0.187052,-0.00126912][-0.828995,-0.559257,0][0.287982,0.991993,0][-2.37354,-0.350142,0.638876][-0.829169,-0.555671,0.0609038][0.572306,0.633586,0][-1.64909,-0.604313,0.96285][-0.132658,-0.985194,0.108605][0.667875,0.228763,0][-1.73705,-0.307233,1.74764][-0.295715,-0.890188,0.34658][0.662424,0.174619,0][-2.37354,-0.350142,0.638876][-0.41938,-0.899139,0.125179][0.618259,0.251114,0][-0.960642,-0.554705,1.66863][-0.0696816,-0.981314,0.179351][0.716568,0.18007,0][-0.636668,-0.255119,2.38779][-0.114434,-0.876731,0.467171][0.738919,0.130454,0][-1.73705,-0.307233,1.74764][-0.295715,-0.890188,0.34658][0.662424,0.174619,0][0.00347737,-0.554705,1.92697][-0.00370678,-0.976584,0.215103][0.783084,0.162247,0][0.641056,-0.261585,2.38779][0.110153,-0.876422,0.468775][0.827249,0.130454,0][-0.636668,-0.255119,2.38779][-0.114434,-0.876731,0.467171][0.738919,0.130454,0][0.962018,-0.564396,1.66863][0.0707262,-0.983338,0.167463][0.8496,0.18007,0][1.744,-0.307697,1.74764][0.291511,-0.894735,0.338334][0.903745,0.174619,0][0.641056,-0.261585,2.38779][0.110153,-0.876422,0.468775][0.827249,0.130454,0][1.66199,-0.588145,0.96285][0.11702,-0.988149,0.0993342][0.898294,0.228763,0][2.37687,-0.374595,0.638877][0.379676,-0.916569,0.125489][0.947909,0.251114,0][1.744,-0.307697,1.74764][0.291511,-0.894735,0.338334][0.903745,0.174619,0][1.91426,-0.612528,-0.00126885][0.0932651,-0.995641,0][0.916117,0.295279,0][2.37687,-0.374595,-0.641415][0.379676,-0.916569,-0.125489][0.947909,0.339444,0][2.37687,-0.374595,0.638877][0.379676,-0.916569,0.125489][0.947909,0.251114,0][1.66199,-0.588145,-0.965387][0.11702,-0.988149,-0.0993339][0.898294,0.361795,0][1.744,-0.307697,-1.75018][0.291511,-0.894736,-0.338334][0.903745,0.415939,0][2.37687,-0.374595,-0.641415][0.379676,-0.916569,-0.125489][0.947909,0.339444,0][0.962019,-0.564396,-1.67117][0.0707262,-0.983338,-0.167462][0.8496,0.410488,0][0.641056,-0.261585,-2.39032][0.110153,-0.876423,-0.468775][0.827249,0.460104,0][1.744,-0.307697,-1.75018][0.291511,-0.894736,-0.338334][0.903745,0.415939,0][0.00347747,-0.554705,-1.92951][-0.00370678,-0.976584,-0.215103][0.783084,0.428311,0][-0.636668,-0.255119,-2.39032][-0.114434,-0.876731,-0.46717][0.738919,0.460104,0][0.641056,-0.261585,-2.39032][0.110153,-0.876423,-0.468775][0.827249,0.460104,0][-0.960641,-0.554705,-1.67117][-0.0696815,-0.981314,-0.179351][0.716568,0.410488,0][-1.73705,-0.307233,-1.75018][-0.295715,-0.890188,-0.34658][0.662424,0.415939,0][-0.636668,-0.255119,-2.39032][-0.114434,-0.876731,-0.46717][0.738919,0.460104,0][-1.64909,-0.604313,-0.965388][-0.132658,-0.985194,-0.108605][0.667875,0.361795,0][-2.37354,-0.350143,-0.641415][-0.41938,-0.899139,-0.125179][0.618259,0.339444,0][-1.73705,-0.307233,-1.75018][-0.295715,-0.890188,-0.34658][0.662424,0.415939,0][-2.40572,0.257365,-1.38513][-0.723441,-0.520863,-0.45314][0.28798,0.991993,0][-1.73705,-0.307233,-1.75018][-0.701869,-0.509211,-0.49808][0.006165,0.633586,0][-2.37354,-0.350143,-0.641415][-0.745122,-0.531946,-0.402277][0.572306,0.633586,0][-1.38721,0.325598,-2.39819][-0.418144,-0.488374,-0.765928][0.287979,0.991993,0][-0.636668,-0.255119,-2.39032][-0.367153,-0.485268,-0.793545][0.00616495,0.633586,0][-1.73705,-0.307233,-1.75018][-0.468209,-0.49244,-0.733677][0.572306,0.633586,0][0.00347748,0.353189,-2.76899][-0.0026699,-0.480507,-0.876987][0.287979,0.991994,0][0.641056,-0.261585,-2.39032][0.0555046,-0.481275,-0.874811][0.00616496,0.633586,0][-0.636668,-0.255119,-2.39032][-0.0604646,-0.480871,-0.874704][0.572306,0.633586,0][1.39416,0.325288,-2.39819][0.420353,-0.488405,-0.764699][0.28798,0.991994,0][1.744,-0.307697,-1.75018][0.468934,-0.491853,-0.733609][0.00616503,0.633587,0][0.641056,-0.261585,-2.39032][0.370631,-0.486215,-0.791345][0.572306,0.633587,0][2.41513,0.232562,-1.38513][0.713683,-0.528824,-0.459348][0.287983,0.991994,0][2.37687,-0.374595,-0.641415][0.737187,-0.541498,-0.404147][0.00616515,0.633587,0][1.744,-0.307697,-1.75018][0.690679,-0.514859,-0.507822][0.572306,0.633587,0][2.78923,0.158196,-0.00126888][0.823215,-0.567729,0][0.287986,0.991994,0][2.37687,-0.374595,0.638877][0.823442,-0.564121,0.0609108][0.00616528,0.633587,0][2.37687,-0.374595,-0.641415][0.823442,-0.564121,-0.060911][0.572306,0.633587,0][2.41513,0.232562,1.38259][0.713683,-0.528824,0.459349][0.287988,0.991994,0][1.744,-0.307697,1.74764][0.690678,-0.514858,0.507823][0.00616539,0.633587,0][2.37687,-0.374595,0.638877][0.737187,-0.541498,0.404148][0.572306,0.633587,0][1.39416,0.325288,2.39565][0.420353,-0.488405,0.764699][0.287989,0.991993,0][0.641056,-0.261585,2.38779][0.370631,-0.486216,0.791345][0.00616545,0.633586,0][1.744,-0.307697,1.74764][0.468934,-0.491853,0.733609][0.572306,0.633586,0][0.00347733,0.35319,2.76646][-0.0026699,-0.480507,0.876987][0.287989,0.991993,0][-0.636668,-0.255119,2.38779][-0.0604644,-0.480871,0.874704][0.00616544,0.633586,0][0.641056,-0.261585,2.38779][0.0555044,-0.481275,0.87481][0.572306,0.633586,0][-1.38721,0.325598,2.39565][-0.418144,-0.488374,0.765928][0.287987,0.991993,0][-1.73705,-0.307233,1.74764][-0.468209,-0.49244,0.733678][0.00616536,0.633586,0][-0.636668,-0.255119,2.38779][-0.367153,-0.485268,0.793545][0.572306,0.633586,0][-2.40572,0.257365,1.38259][-0.723441,-0.520863,0.453139][0.287985,0.991993,0][-2.37354,-0.350142,0.638876][-0.745122,-0.531946,0.402277][0.00616524,0.633586,0][-1.73705,-0.307233,1.74764][-0.701869,-0.509211,0.49808][0.572306,0.633586,0][-0.712863,0.35319,2.67215][-0.326627,-0.433518,0.839867][0.572309,0.992026,0][-1.38721,0.325598,2.39565][-0.418144,-0.488374,0.765928][0.287987,0.991993,0][-0.636668,-0.255119,2.38779][-0.367153,-0.485268,0.793545][0.572306,0.633586,0][-1.96337,0.29456,1.95581][-0.690738,-0.454356,0.562531][0.572309,0.992026,0][-2.40572,0.257365,1.38259][-0.723441,-0.520863,0.453139][0.287985,0.991993,0][-1.73705,-0.307233,1.74764][-0.701869,-0.509211,0.49808][0.572306,0.633586,0][0.641056,-0.261585,2.38779][0.0555044,-0.481275,0.87481][0.572306,0.633586,0][0.72333,0.345931,2.67215][0.112747,-0.433711,0.89397][0.572309,0.992026,0][0.00347733,0.35319,2.76646][-0.0026699,-0.480507,0.876987][0.287989,0.991993,0][1.744,-0.307697,1.74764][0.468934,-0.491853,0.733609][0.572306,0.633586,0][1.97031,0.294094,1.95581][0.527045,-0.448012,0.722156][0.572309,0.992026,0][1.39416,0.325288,2.39565][0.420353,-0.488405,0.764699][0.287989,0.991993,0][2.37687,-0.374595,0.638877][0.737187,-0.541498,0.404148][0.572306,0.633587,0][2.69515,0.164792,0.715071][0.773695,-0.509695,0.376306][0.572309,0.992026,0][2.41513,0.232562,1.38259][0.713683,-0.528824,0.459349][0.287988,0.991994,0][2.37687,-0.374595,-0.641415][0.823442,-0.564121,-0.060911][0.572306,0.633587,0][2.69515,0.164792,-0.71761][0.848145,-0.516875,-0.116146][0.572309,0.992026,0][2.78923,0.158196,-0.00126888][0.823215,-0.567729,0][0.287986,0.991994,0][0.641056,-0.261585,-2.39032][0.370631,-0.486215,-0.791345][0.572306,0.633587,0][0.72333,0.345931,-2.67469][0.331354,-0.436419,-0.836506][0.572309,0.992026,0][1.39416,0.325288,-2.39819][0.420353,-0.488405,-0.764699][0.28798,0.991994,0][-0.712863,0.353189,-2.67469][-0.117682,-0.432593,-0.893876][0.572309,0.992026,0][0.00347748,0.353189,-2.76899][-0.0026699,-0.480507,-0.876987][0.287979,0.991994,0][-0.636668,-0.255119,-2.39032][-0.0604646,-0.480871,-0.874704][0.572306,0.633586,0][-1.38721,0.325598,-2.39819][-0.418144,-0.488374,-0.765928][0.287979,0.991993,0][-1.73705,-0.307233,-1.75018][-0.468209,-0.49244,-0.733677][0.572306,0.633586,0][-1.96337,0.294559,-1.95835][-0.527117,-0.448019,-0.722099][0.572309,0.992026,0][-2.37354,-0.350143,-0.641415][-0.745122,-0.531946,-0.402277][0.572306,0.633586,0][-2.68642,0.192706,-0.717609][-0.77894,-0.501758,-0.376154][0.572309,0.992026,0][-2.40572,0.257365,-1.38513][-0.723441,-0.520863,-0.45314][0.28798,0.991993,0][2.41513,0.232562,-1.38513][0.713683,-0.528824,-0.459348][0.287983,0.991994,0][1.744,-0.307697,-1.75018][0.690679,-0.514859,-0.507822][0.572306,0.633587,0][1.97032,0.294094,-1.95835][0.679332,-0.454716,-0.57597][0.572309,0.992026,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/SpaceHat.mesh b/shareddata/charcustom/hats/fonts/SpaceHat.mesh deleted file mode 100644 index 4adecb1..0000000 --- a/shareddata/charcustom/hats/fonts/SpaceHat.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -840 -[2.07117,-0.149335,0.0986989][0.992476,0.120177,0.0234218][0.407106,0.338614,0][1.97032,0.678258,0.126086][0.964834,0.258503,0.0476516][0.459865,0.319366,0][1.97062,0.633799,0.34137][0.96798,0.235642,0.0865333][0.462523,0.334037,0][2.07117,-0.149335,0.0986989][0.991948,0.105796,0.0696116][0.407106,0.338614,0][1.97062,0.633799,0.34137][0.96798,0.235642,0.0865333][0.462523,0.334037,0][1.96965,0.514702,0.536184][0.968524,0.181222,0.170648][0.459967,0.349311,0][2.07117,-0.149335,0.0986989][0.990952,0.0809956,0.107024][0.407106,0.338614,0][1.96965,0.514702,0.536184][0.968524,0.181222,0.170648][0.459967,0.349311,0][1.96881,0.327679,0.685541][0.962143,0.124161,0.242621][0.451986,0.363446,0][2.07117,-0.149335,0.0986989][0.989993,0.0502016,0.131887][0.407106,0.338614,0][1.96881,0.327679,0.685541][0.962143,0.124161,0.242621][0.451986,0.363446,0][1.96973,0.090795,0.768793][0.955865,0.0557035,0.288478][0.439192,0.374686,0][2.07117,-0.149335,0.0986989][0.989207,0.00996973,0.146185][0.407106,0.338614,0][1.96973,0.090795,0.768793][0.955865,0.0557035,0.288478][0.439192,0.374686,0][1.96981,-0.153135,0.784907][0.951814,-0.0236989,0.305759][0.424255,0.381881,0][2.07117,-0.149335,0.0986989][0.988812,-0.0310644,0.1459][0.407106,0.338614,0][1.96981,-0.153135,0.784907][0.951814,-0.0236989,0.305759][0.424255,0.381881,0][1.9698,-0.379571,0.736703][0.950073,-0.109896,0.292036][0.408788,0.384586,0][2.07117,-0.149335,0.0986989][0.988739,-0.0723929,0.130974][0.407106,0.338614,0][1.9698,-0.379571,0.736703][0.950073,-0.109896,0.292036][0.408788,0.384586,0][1.9698,-0.576186,0.628032][0.950197,-0.187832,0.248686][0.393665,0.382731,0][2.07117,-0.149335,0.0986989][0.988919,-0.106162,0.103778][0.407106,0.338614,0][1.9698,-0.576186,0.628032][0.950197,-0.187832,0.248686][0.393665,0.382731,0][1.9698,-0.7324,0.468222][0.952229,-0.245678,0.181387][0.379788,0.376635,0][2.07117,-0.149335,0.0986989][0.989317,-0.12917,0.0675819][0.407106,0.338614,0][1.9698,-0.7324,0.468222][0.952229,-0.245678,0.181387][0.379788,0.376635,0][1.9698,-0.834228,0.273625][0.954877,-0.280716,0.0969949][0.368451,0.366973,0][2.07117,-0.149335,0.0986989][0.989804,-0.140451,0.0236946][0.407106,0.338614,0][1.9698,-0.834228,0.273625][0.954877,-0.280716,0.0969949][0.368451,0.366973,0][1.9698,-0.869649,0.0636228][0.956865,-0.290531,0.000561972][0.360901,0.354659,0][2.07117,-0.149335,0.0986989][0.990122,-0.138186,-0.0237399][0.407106,0.338614,0][1.9698,-0.869649,0.0636228][0.956865,-0.290531,0.000561972][0.360901,0.354659,0][1.9698,-0.834249,-0.142429][0.957154,-0.272819,-0.0970896][0.357907,0.340799,0][2.07117,-0.149335,0.0986989][0.990122,-0.12259,-0.0680416][0.407106,0.338614,0][1.9698,-0.834249,-0.142429][0.957154,-0.272819,-0.0970896][0.357907,0.340799,0][1.9698,-0.732372,-0.325978][0.955754,-0.229679,-0.183802][0.359665,0.32667,0][2.07117,-0.149335,0.0986989][0.989878,-0.0959163,-0.104603][0.407106,0.338614,0][1.9698,-0.732372,-0.325978][0.955754,-0.229679,-0.183802][0.359665,0.32667,0][1.96981,-0.575096,-0.470178][0.955284,-0.199833,-0.217943][0.365906,0.313613,0][2.07166,-0.225679,0.315051][0.98953,-0.0595785,-0.131454][0.322851,0.568498,0][1.97029,-0.649099,-0.256112][0.969206,-0.14967,-0.195546][0.30207,0.524985,0][1.97029,-0.450779,-0.345995][0.979529,-0.0568158,-0.193118][0.316438,0.521573,0][2.07166,-0.225679,0.315051][0.989172,-0.0175601,-0.145708][0.322851,0.568498,0][1.97029,-0.450779,-0.345995][0.979529,-0.0568158,-0.193118][0.316438,0.521573,0][1.97029,-0.226262,-0.373039][0.980618,0.00246922,-0.195915][0.331735,0.522683,0][2.07166,-0.225679,0.315051][0.98902,0.0246082,-0.145721][0.322851,0.568498,0][1.97029,-0.226262,-0.373039][0.980618,0.00246922,-0.195915][0.331735,0.522683,0][1.97029,0.00918827,-0.333285][0.981853,0.0535886,-0.181914][0.346894,0.528383,0][2.07166,-0.225679,0.315051][0.989299,0.0605798,-0.132733][0.322851,0.568498,0][1.97029,0.00918827,-0.333285][0.981853,0.0535886,-0.181914][0.346894,0.528383,0][1.97029,0.237373,-0.229138][0.983439,0.0956139,-0.153964][0.360734,0.538275,0][2.07166,-0.225679,0.315051][0.990086,0.09014,-0.107727][0.322851,0.568498,0][1.97029,0.237373,-0.229138][0.983439,0.0956139,-0.153964][0.360734,0.538275,0][1.97029,0.427791,-0.0698173][0.983687,0.15252,-0.0953775][0.371344,0.551351,0][2.07117,-0.204026,0.25289][0.991176,0.112028,-0.0708532][0.42722,0.897723,0][1.9698,0.449444,-0.131978][0.972117,0.198701,-0.124524][0.476883,0.884335,0][1.97009,0.572163,0.0660988][0.957991,0.243173,-0.152056][0.481337,0.899498,0][2.07117,-0.149335,0.0986989][0.992254,0.121743,-0.0247248][0.927781,0.432538,0][1.96981,0.638371,-0.0907167][0.992254,0.121743,-0.0247248][0.982676,0.430142,0][1.97032,0.678258,0.126086][0.992254,0.121743,-0.0247248][0.98252,0.445092,0][1.67607,1.34451,0.565224][0.866835,0.487995,0.102263][0.512907,0.330111,0][1.97062,0.633799,0.34137][0.96798,0.235642,0.0865333][0.462523,0.334037,0][1.97032,0.678258,0.126086][0.964834,0.258503,0.0476516][0.459865,0.319366,0][1.97032,0.678258,0.126086][0.964834,0.258503,0.0476516][0.459865,0.319366,0][1.67393,1.40625,0.142544][0.849782,0.524326,0.0543474][0.506081,0.301955,0][1.67607,1.34451,0.565224][0.866835,0.487995,0.102263][0.512907,0.330111,0][1.67542,1.20949,0.983242][0.882194,0.375906,0.283597][0.515005,0.35983,0][1.96965,0.514702,0.536184][0.968524,0.181222,0.170648][0.459967,0.349311,0][1.97062,0.633799,0.34137][0.96798,0.235642,0.0865333][0.462523,0.334037,0][1.97062,0.633799,0.34137][0.96798,0.235642,0.0865333][0.462523,0.334037,0][1.67607,1.34451,0.565224][0.866835,0.487995,0.102263][0.512907,0.330111,0][1.67542,1.20949,0.983242][0.882194,0.375906,0.283597][0.515005,0.35983,0][1.66277,0.868282,1.26887][0.852601,0.219848,0.474066][0.500777,0.386445,0][1.96881,0.327679,0.685541][0.962143,0.124161,0.242621][0.451986,0.363446,0][1.96965,0.514702,0.536184][0.968524,0.181222,0.170648][0.459967,0.349311,0][1.96965,0.514702,0.536184][0.968524,0.181222,0.170648][0.459967,0.349311,0][1.67542,1.20949,0.983242][0.882194,0.375906,0.283597][0.515005,0.35983,0][1.66277,0.868282,1.26887][0.852601,0.219848,0.474066][0.500777,0.386445,0][1.67106,0.348397,1.38969][0.830425,0.0743549,0.552147][0.471132,0.40722,0][1.96973,0.090795,0.768793][0.955865,0.0557035,0.288478][0.439192,0.374686,0][1.96881,0.327679,0.685541][0.962143,0.124161,0.242621][0.451986,0.363446,0][1.96881,0.327679,0.685541][0.962143,0.124161,0.242621][0.451986,0.363446,0][1.66277,0.868282,1.26887][0.852601,0.219848,0.474066][0.500777,0.386445,0][1.67106,0.348397,1.38969][0.830425,0.0743549,0.552147][0.471132,0.40722,0][1.67562,-0.157175,1.39593][0.814972,-0.058944,0.576495][0.439483,0.420423,0][1.96981,-0.153135,0.784907][0.951814,-0.0236989,0.305759][0.424255,0.381881,0][1.96973,0.090795,0.768793][0.955865,0.0557035,0.288478][0.439192,0.374686,0][1.96973,0.090795,0.768793][0.955865,0.0557035,0.288478][0.439192,0.374686,0][1.67106,0.348397,1.38969][0.830425,0.0743549,0.552147][0.471132,0.40722,0][1.67562,-0.157175,1.39593][0.814972,-0.058944,0.576495][0.439483,0.420423,0][1.67561,-0.580063,1.29917][0.807591,-0.213828,0.549613][0.410427,0.425052,0][1.9698,-0.379571,0.736703][0.950073,-0.109896,0.292036][0.408788,0.384586,0][1.96981,-0.153135,0.784907][0.951814,-0.0236989,0.305759][0.424255,0.381881,0][1.96981,-0.153135,0.784907][0.951814,-0.0236989,0.305759][0.424255,0.381881,0][1.67562,-0.157175,1.39593][0.814972,-0.058944,0.576495][0.439483,0.420423,0][1.67561,-0.580063,1.29917][0.807591,-0.213828,0.549613][0.410427,0.425052,0][1.67561,-0.955647,1.0867][0.80715,-0.356992,0.470176][0.381415,0.421202,0][1.9698,-0.576186,0.628032][0.950197,-0.187832,0.248686][0.393665,0.382731,0][1.9698,-0.379571,0.736703][0.950073,-0.109896,0.292036][0.408788,0.384586,0][1.9698,-0.379571,0.736703][0.950073,-0.109896,0.292036][0.408788,0.384586,0][1.67561,-0.580063,1.29917][0.807591,-0.213828,0.549613][0.410427,0.425052,0][1.67561,-0.955647,1.0867][0.80715,-0.356992,0.470176][0.381415,0.421202,0][1.67562,-1.26261,0.778365][0.797826,-0.500929,0.335475][0.35429,0.409582,0][1.9698,-0.7324,0.468222][0.952229,-0.245678,0.181387][0.379788,0.376635,0][1.9698,-0.576186,0.628032][0.950197,-0.187832,0.248686][0.393665,0.382731,0][1.9698,-0.576186,0.628032][0.950197,-0.187832,0.248686][0.393665,0.382731,0][1.67561,-0.955647,1.0867][0.80715,-0.356992,0.470176][0.381415,0.421202,0][1.67562,-1.26261,0.778365][0.797826,-0.500929,0.335475][0.35429,0.409582,0][1.67562,-1.45969,0.41219][0.810228,-0.53668,0.235594][0.332613,0.391539,0][1.9698,-0.834228,0.273625][0.954877,-0.280716,0.0969949][0.368451,0.366973,0][1.9698,-0.7324,0.468222][0.952229,-0.245678,0.181387][0.379788,0.376635,0][1.9698,-0.7324,0.468222][0.952229,-0.245678,0.181387][0.379788,0.376635,0][1.67562,-1.26261,0.778365][0.797826,-0.500929,0.335475][0.35429,0.409582,0][1.67562,-1.45969,0.41219][0.810228,-0.53668,0.235594][0.332613,0.391539,0][1.67562,-1.5276,0.0231771][0.85614,-0.515414,-0.0370393][0.318484,0.368787,0][1.9698,-0.869649,0.0636228][0.956865,-0.290531,0.000561972][0.360901,0.354659,0][1.9698,-0.834228,0.273625][0.954877,-0.280716,0.0969949][0.368451,0.366973,0][1.9698,-0.834228,0.273625][0.954877,-0.280716,0.0969949][0.368451,0.366973,0][1.67562,-1.45969,0.41219][0.810228,-0.53668,0.235594][0.332613,0.391539,0][1.67562,-1.5276,0.0231771][0.85614,-0.515414,-0.0370393][0.318484,0.368787,0][1.67562,-1.45969,-0.356562][0.780834,-0.599164,-0.176919][0.313134,0.343176,0][1.9698,-0.834249,-0.142429][0.957154,-0.272819,-0.0970896][0.357907,0.340799,0][1.9698,-0.869649,0.0636228][0.956865,-0.290531,0.000561972][0.360901,0.354659,0][1.9698,-0.869649,0.0636228][0.956865,-0.290531,0.000561972][0.360901,0.354659,0][1.67562,-1.5276,0.0231771][0.85614,-0.515414,-0.0370393][0.318484,0.368787,0][1.67562,-1.45969,-0.356562][0.780834,-0.599164,-0.176919][0.313134,0.343176,0][1.67562,-1.26261,-0.696755][0.828537,-0.431882,-0.356377][0.316912,0.31678,0][1.9698,-0.732372,-0.325978][0.955754,-0.229679,-0.183802][0.359665,0.32667,0][1.9698,-0.834249,-0.142429][0.957154,-0.272819,-0.0970896][0.357907,0.340799,0][1.9698,-0.834249,-0.142429][0.957154,-0.272819,-0.0970896][0.357907,0.340799,0][1.67562,-1.45969,-0.356562][0.780834,-0.599164,-0.176919][0.313134,0.343176,0][1.67562,-1.26261,-0.696755][0.828537,-0.431882,-0.356377][0.316912,0.31678,0][1.67562,-0.955647,-0.967457][0.82551,-0.373884,-0.422782][0.329364,0.291972,0][1.96981,-0.575096,-0.470178][0.955284,-0.199833,-0.217943][0.365906,0.313613,0][1.9698,-0.732372,-0.325978][0.955754,-0.229679,-0.183802][0.359665,0.32667,0][1.9698,-0.732372,-0.325978][0.955754,-0.229679,-0.183802][0.359665,0.32667,0][1.67562,-1.26261,-0.696755][0.828537,-0.431882,-0.356377][0.316912,0.31678,0][1.67562,-0.955647,-0.967457][0.82551,-0.373884,-0.422782][0.329364,0.291972,0][1.78931,-0.546741,-1.05231][0.8531,-0.235022,-0.465817][0.319208,0.473308,0][1.97029,-0.450779,-0.345995][0.979529,-0.0568158,-0.193118][0.316438,0.521573,0][1.97029,-0.649099,-0.256112][0.969206,-0.14967,-0.195546][0.30207,0.524985,0][1.97029,-0.649099,-0.256112][0.969206,-0.14967,-0.195546][0.30207,0.524985,0][1.6761,-1.0311,-0.756072][0.806192,-0.422938,-0.413737][0.283122,0.486748,0][1.78931,-0.546741,-1.05231][0.8531,-0.235022,-0.465817][0.319208,0.473308,0][1.78931,-0.123905,-1.10947][0.866847,0.00268804,-0.498567][0.348098,0.474985,0][1.97029,-0.226262,-0.373039][0.980618,0.00246922,-0.195915][0.331735,0.522683,0][1.97029,-0.450779,-0.345995][0.979529,-0.0568158,-0.193118][0.316438,0.521573,0][1.97029,-0.450779,-0.345995][0.979529,-0.0568158,-0.193118][0.316438,0.521573,0][1.78931,-0.546741,-1.05231][0.8531,-0.235022,-0.465817][0.319208,0.473308,0][1.78931,-0.123905,-1.10947][0.866847,0.00268804,-0.498567][0.348098,0.474985,0][1.78931,0.339731,-1.04164][0.873991,0.126701,-0.469134][0.378083,0.485513,0][1.97029,0.00918827,-0.333285][0.981853,0.0535886,-0.181914][0.346894,0.528383,0][1.97029,-0.226262,-0.373039][0.980618,0.00246922,-0.195915][0.331735,0.522683,0][1.97029,-0.226262,-0.373039][0.980618,0.00246922,-0.195915][0.331735,0.522683,0][1.78931,-0.123905,-1.10947][0.866847,0.00268804,-0.498567][0.348098,0.474985,0][1.78931,0.339731,-1.04164][0.873991,0.126701,-0.469134][0.378083,0.485513,0][1.78931,0.800638,-0.851246][0.880953,0.245042,-0.404816][0.406298,0.504164,0][1.97029,0.237373,-0.229138][0.983439,0.0956139,-0.153964][0.360734,0.538275,0][1.97029,0.00918827,-0.333285][0.981853,0.0535886,-0.181914][0.346894,0.528383,0][1.97029,0.00918827,-0.333285][0.981853,0.0535886,-0.181914][0.346894,0.528383,0][1.78931,0.339731,-1.04164][0.873991,0.126701,-0.469134][0.378083,0.485513,0][1.78931,0.800638,-0.851246][0.880953,0.245042,-0.404816][0.406298,0.504164,0][1.78931,1.15693,-0.553168][0.878043,0.446212,-0.173018][0.426152,0.528628,0][1.97029,0.427791,-0.0698173][0.983687,0.15252,-0.0953775][0.371344,0.551351,0][1.97029,0.237373,-0.229138][0.983439,0.0956139,-0.153964][0.360734,0.538275,0][1.97029,0.237373,-0.229138][0.983439,0.0956139,-0.153964][0.360734,0.538275,0][1.78931,0.800638,-0.851246][0.880953,0.245042,-0.404816][0.406298,0.504164,0][1.78931,1.15693,-0.553168][0.878043,0.446212,-0.173018][0.426152,0.528628,0][1.97029,0.427791,-0.0698173][0.983687,0.15252,-0.0953775][0.371344,0.551351,0][1.78931,1.15693,-0.553168][0.878043,0.446212,-0.173018][0.426152,0.528628,0][1.6761,1.26529,-0.0512892][0.839054,0.539148,0.0728585][0.426858,0.563444,0][1.9698,0.449444,-0.131978][0.972117,0.198701,-0.124524][0.476883,0.884335,0][1.67562,1.28695,-0.11345][0.922057,0.328419,-0.204819][0.531308,0.90064,0][1.97009,0.572163,0.0660988][0.957991,0.243173,-0.152056][0.481337,0.899498,0][1.96981,0.638371,-0.0907167][0.926239,0.373131,-0.0534337][0.351706,0.89172,0][1.67562,1.34243,-0.273835][0.876172,0.477309,-0.0670709][0.400951,0.888659,0][1.67393,1.40625,0.142544][0.926239,0.373131,-0.0534336][0.399801,0.917206,0][1.96981,0.638371,-0.0907167][0.923237,0.377498,-0.071617][0.845041,0.854331,0][1.67393,1.40625,0.142544][0.923237,0.377498,-0.071617][0.790727,0.850786,0][1.97032,0.678258,0.126086][0.923237,0.377498,-0.071617][0.839058,0.840629,0][1.24783,1.85974,0.75216][0.66032,0.742749,0.110915][0.550058,0.328816,0][1.67607,1.34451,0.565224][0.866835,0.487995,0.102263][0.512907,0.330111,0][1.67393,1.40625,0.142544][0.849782,0.524326,0.0543474][0.506081,0.301955,0][1.67393,1.40625,0.142544][0.849782,0.524326,0.0543474][0.506081,0.301955,0][1.21104,1.91971,0.151672][0.630445,0.775807,0.0257598][0.538615,0.289519,0][1.24783,1.85974,0.75216][0.66032,0.742749,0.110915][0.550058,0.328816,0][1.29185,1.69233,1.32764][0.690743,0.595169,0.410668][0.554108,0.369262,0][1.67542,1.20949,0.983242][0.882194,0.375906,0.283597][0.515005,0.35983,0][1.67607,1.34451,0.565224][0.866835,0.487995,0.102263][0.512907,0.330111,0][1.67607,1.34451,0.565224][0.866835,0.487995,0.102263][0.512907,0.330111,0][1.24783,1.85974,0.75216][0.66032,0.742749,0.110915][0.550058,0.328816,0][1.29185,1.69233,1.32764][0.690743,0.595169,0.410668][0.554108,0.369262,0][1.21711,1.25127,1.7041][0.645198,0.312886,0.697009][0.535899,0.404122,0][1.66277,0.868282,1.26887][0.852601,0.219848,0.474066][0.500777,0.386445,0][1.67542,1.20949,0.983242][0.882194,0.375906,0.283597][0.515005,0.35983,0][1.67542,1.20949,0.983242][0.882194,0.375906,0.283597][0.515005,0.35983,0][1.29185,1.69233,1.32764][0.690743,0.595169,0.410668][0.554108,0.369262,0][1.21711,1.25127,1.7041][0.645198,0.312886,0.697009][0.535899,0.404122,0][1.20853,0.561533,1.87513][0.613043,0.0937827,0.784463][0.436325,0.0416791,0][1.67106,0.348397,1.38969][0.830425,0.0743549,0.552147][0.42187,0.0103087,0][1.66277,0.868282,1.26887][0.852601,0.219848,0.474066][0.45713,0.0108711,0][1.66277,0.868282,1.26887][0.852601,0.219848,0.474066][0.45713,0.0108711,0][1.21711,1.25127,1.7041][0.645198,0.312886,0.697009][0.483105,0.0410972,0][1.20853,0.561533,1.87513][0.613043,0.0937827,0.784463][0.436325,0.0416791,0][1.21741,-0.156735,1.87313][0.591948,-0.0903879,0.800892][0.38761,0.041077,0][1.67562,-0.157175,1.39593][0.814972,-0.058944,0.576495][0.387581,0.01,0][1.67106,0.348397,1.38969][0.830425,0.0743549,0.552147][0.42187,0.0103087,0][1.67106,0.348397,1.38969][0.830425,0.0743549,0.552147][0.42187,0.0103087,0][1.20853,0.561533,1.87513][0.613043,0.0937827,0.784463][0.436325,0.0416791,0][1.21741,-0.156735,1.87313][0.591948,-0.0903879,0.800892][0.38761,0.041077,0][1.21741,-0.73396,1.73659][0.581966,-0.298495,0.75645][0.348461,0.041077,0][1.67561,-0.580063,1.29917][0.807591,-0.213828,0.549613][0.358899,0.0100001,0][1.67562,-0.157175,1.39593][0.814972,-0.058944,0.576495][0.387581,0.01,0][1.67562,-0.157175,1.39593][0.814972,-0.058944,0.576495][0.387581,0.01,0][1.21741,-0.156735,1.87313][0.591948,-0.0903879,0.800892][0.38761,0.041077,0][1.21741,-0.73396,1.73659][0.581966,-0.298495,0.75645][0.348461,0.041077,0][1.21741,-1.26261,1.43398][0.561585,-0.525331,0.639257][0.312607,0.0410771,0][1.67561,-0.955647,1.0867][0.80715,-0.356992,0.470176][0.333426,0.01,0][1.67561,-0.580063,1.29917][0.807591,-0.213828,0.549613][0.358899,0.0100001,0][1.67561,-0.580063,1.29917][0.807591,-0.213828,0.549613][0.358899,0.0100001,0][1.21741,-0.73396,1.73659][0.581966,-0.298495,0.75645][0.348461,0.041077,0][1.21741,-1.26261,1.43398][0.561585,-0.525331,0.639257][0.312607,0.0410771,0][1.2174,-1.6851,1.00597][0.586343,-0.667708,0.45866][0.333478,0.434606,0][1.67562,-1.26261,0.778365][0.797826,-0.500929,0.335475][0.35429,0.409582,0][1.67561,-0.955647,1.0867][0.80715,-0.356992,0.470176][0.381415,0.421202,0][1.67561,-0.955647,1.0867][0.80715,-0.356992,0.470176][0.381415,0.421202,0][1.21741,-1.26261,1.43398][0.561585,-0.525331,0.639257][0.370903,0.450828,0][1.2174,-1.6851,1.00597][0.586343,-0.667708,0.45866][0.333478,0.434606,0][1.21741,-1.75336,0.527959][0.660203,-0.722017,0.206938][0.317071,0.406264,0][1.67562,-1.45969,0.41219][0.810228,-0.53668,0.235594][0.332613,0.391539,0][1.67562,-1.26261,0.778365][0.797826,-0.500929,0.335475][0.35429,0.409582,0][1.67562,-1.26261,0.778365][0.797826,-0.500929,0.335475][0.35429,0.409582,0][1.2174,-1.6851,1.00597][0.586343,-0.667708,0.45866][0.333478,0.434606,0][1.21741,-1.75336,0.527959][0.660203,-0.722017,0.206938][0.317071,0.406264,0][1.67562,-1.5276,0.0231771][0.85614,-0.515414,-0.0370393][0.318484,0.368787,0][1.21741,-1.75336,-0.513432][0.474791,-0.870184,-0.131732][0.290683,0.340748,0][1.67562,-1.45969,-0.356562][0.780834,-0.599164,-0.176919][0.313134,0.343176,0][1.21741,-1.6851,-0.981293][0.48426,-0.784665,-0.387031][0.283122,0.309585,0][1.67562,-1.26261,-0.696755][0.828537,-0.431882,-0.356377][0.316912,0.31678,0][1.67562,-1.45969,-0.356562][0.780834,-0.599164,-0.176919][0.313134,0.343176,0][1.67562,-1.45969,-0.356562][0.780834,-0.599164,-0.176919][0.313134,0.343176,0][1.21741,-1.75336,-0.513432][0.474791,-0.870184,-0.131732][0.290683,0.340748,0][1.21741,-1.6851,-0.981293][0.48426,-0.784665,-0.387031][0.283122,0.309585,0][1.21741,-1.26261,-1.35086][0.609348,-0.522402,-0.596482][0.300337,0.275629,0][1.67562,-0.955647,-0.967457][0.82551,-0.373884,-0.422782][0.329364,0.291972,0][1.67562,-1.26261,-0.696755][0.828537,-0.431882,-0.356377][0.316912,0.31678,0][1.67562,-1.26261,-0.696755][0.828537,-0.431882,-0.356377][0.316912,0.31678,0][1.21741,-1.6851,-0.981293][0.48426,-0.784665,-0.387031][0.283122,0.309585,0][1.21741,-1.26261,-1.35086][0.609348,-0.522402,-0.596482][0.300337,0.275629,0][1.3311,-0.704424,-1.50386][0.60099,-0.305482,-0.738574][0.190223,0.578496,0][1.78931,-0.546741,-1.05231][0.8531,-0.235022,-0.465817][0.179529,0.547419,0][1.6761,-1.0311,-0.756072][0.806192,-0.422938,-0.413737][0.212379,0.555098,0][1.6761,-1.0311,-0.756072][0.806192,-0.422938,-0.413737][0.212379,0.555098,0][1.21789,-1.33806,-1.14152][0.589077,-0.472369,-0.655633][0.233198,0.586175,0][1.3311,-0.704424,-1.50386][0.60099,-0.305482,-0.738574][0.190223,0.578496,0][1.3311,-0.123905,-1.58598][0.592176,-0.00419099,-0.805798][0.150851,0.578496,0][1.78931,-0.123905,-1.10947][0.866847,0.00268804,-0.498567][0.150851,0.547419,0][1.78931,-0.546741,-1.05231][0.8531,-0.235022,-0.465817][0.179529,0.547419,0][1.78931,-0.546741,-1.05231][0.8531,-0.235022,-0.465817][0.179529,0.547419,0][1.3311,-0.704424,-1.50386][0.60099,-0.305482,-0.738574][0.190223,0.578496,0][1.3311,-0.123905,-1.58598][0.592176,-0.00419099,-0.805798][0.150851,0.578496,0][1.3311,0.530148,-1.49947][0.603312,0.203737,-0.771042][0.106491,0.578496,0][1.78931,0.339731,-1.04164][0.873991,0.126701,-0.469134][0.119406,0.547419,0][1.78931,-0.123905,-1.10947][0.866847,0.00268804,-0.498567][0.150851,0.547419,0][1.78931,-0.123905,-1.10947][0.866847,0.00268804,-0.498567][0.150851,0.547419,0][1.3311,-0.123905,-1.58598][0.592176,-0.00419099,-0.805798][0.150851,0.578496,0][1.3311,0.530148,-1.49947][0.603312,0.203737,-0.771042][0.106491,0.578496,0][1.3311,1.15692,-1.2467][0.620084,0.420639,-0.662238][0.0639814,0.578496,0][1.78931,0.800638,-0.851246][0.880953,0.245042,-0.404816][0.0881458,0.547419,0][1.78931,0.339731,-1.04164][0.873991,0.126701,-0.469134][0.119406,0.547419,0][1.78931,0.339731,-1.04164][0.873991,0.126701,-0.469134][0.119406,0.547419,0][1.3311,0.530148,-1.49947][0.603312,0.203737,-0.771042][0.106491,0.578496,0][1.3311,1.15692,-1.2467][0.620084,0.420639,-0.662238][0.0639814,0.578496,0][1.3311,1.59598,-0.843978][0.62609,0.690235,-0.362749][0.459151,0.514961,0][1.78931,1.15693,-0.553168][0.878043,0.446212,-0.173018][0.426152,0.528628,0][1.78931,0.800638,-0.851246][0.880953,0.245042,-0.404816][0.406298,0.504164,0][1.78931,0.800638,-0.851246][0.880953,0.245042,-0.404816][0.406298,0.504164,0][1.3311,1.15692,-1.2467][0.620084,0.420639,-0.662238][0.435145,0.482458,0][1.3311,1.59598,-0.843978][0.62609,0.690235,-0.362749][0.459151,0.514961,0][1.21789,1.75925,-0.201828][0.603988,0.79268,-0.0828076][0.461693,0.559827,0][1.6761,1.26529,-0.0512892][0.839054,0.539148,0.0728585][0.426858,0.563444,0][1.78931,1.15693,-0.553168][0.878043,0.446212,-0.173018][0.426152,0.528628,0][1.78931,1.15693,-0.553168][0.878043,0.446212,-0.173018][0.426152,0.528628,0][1.3311,1.59598,-0.843978][0.62609,0.690235,-0.362749][0.459151,0.514961,0][1.21789,1.75925,-0.201828][0.603988,0.79268,-0.0828076][0.461693,0.559827,0][1.67562,1.34243,-0.273835][0.876172,0.477309,-0.0670709][0.792123,0.883828,0][1.21741,1.83326,-0.425187][0.658841,0.744826,-0.105652][0.801162,0.915284,0][1.21104,1.91971,0.151672][0.741821,0.664344,-0.0913701][0.762051,0.914181,0][1.67562,1.34243,-0.273835][0.738189,0.667249,-0.0992765][0.314631,0.979333,0][1.21104,1.91971,0.151672][0.738189,0.667249,-0.0992765][0.283122,0.950474,0][1.67393,1.40625,0.142544][0.738189,0.667249,-0.0992765][0.314516,0.951093,0][0.718989,2.19393,0.873815][0.354986,0.917929,0.177177][0.574165,0.328001,0][1.24783,1.85974,0.75216][0.66032,0.742749,0.110915][0.550058,0.328816,0][1.21104,1.91971,0.151672][0.630445,0.775807,0.0257598][0.538615,0.289519,0][1.21104,1.91971,0.151672][0.630445,0.775807,0.0257598][0.538615,0.289519,0][0.631655,2.25325,0.1561][0.327396,0.943986,0.0412623][0.559711,0.281346,0][0.718989,2.19393,0.873815][0.354986,0.917929,0.177177][0.574165,0.328001,0][0.790533,1.95392,1.52224][0.366163,0.766587,0.527512][0.575496,0.374876,0][1.29185,1.69233,1.32764][0.690743,0.595169,0.410668][0.554108,0.369262,0][1.24783,1.85974,0.75216][0.66032,0.742749,0.110915][0.550058,0.328816,0][1.24783,1.85974,0.75216][0.66032,0.742749,0.110915][0.550058,0.328816,0][0.718989,2.19393,0.873815][0.354986,0.917929,0.177177][0.574165,0.328001,0][0.790533,1.95392,1.52224][0.366163,0.766587,0.527512][0.575496,0.374876,0][0.668421,1.46255,1.96636][0.332304,0.428369,0.840282][0.497435,0.0783108,0][1.21711,1.25127,1.7041][0.645198,0.312886,0.697009][0.483105,0.0410972,0][1.29185,1.69233,1.32764][0.690743,0.595169,0.410668][0.513019,0.0360277,0][1.29185,1.69233,1.32764][0.690743,0.595169,0.410668][0.513019,0.0360277,0][0.790533,1.95392,1.52224][0.366163,0.766587,0.527512][0.530761,0.0700288,0][0.668421,1.46255,1.96636][0.332304,0.428369,0.840282][0.497435,0.0783108,0][0.627831,0.701631,2.1808][0.322488,0.119788,0.938963][0.445827,0.0810637,0][1.20853,0.561533,1.87513][0.613043,0.0937827,0.784463][0.436325,0.0416791,0][1.21711,1.25127,1.7041][0.645198,0.312886,0.697009][0.483105,0.0410972,0][1.21711,1.25127,1.7041][0.645198,0.312886,0.697009][0.483105,0.0410972,0][0.668421,1.46255,1.96636][0.332304,0.428369,0.840282][0.497435,0.0783108,0][0.627831,0.701631,2.1808][0.322488,0.119788,0.938963][0.445827,0.0810637,0][0.640029,-0.156736,2.17262][0.308922,-0.111966,0.944474][0.38761,0.0802364,0][1.21741,-0.156735,1.87313][0.591948,-0.0903879,0.800892][0.38761,0.041077,0][1.20853,0.561533,1.87513][0.613043,0.0937827,0.784463][0.436325,0.0416791,0][1.20853,0.561533,1.87513][0.613043,0.0937827,0.784463][0.436325,0.0416791,0][0.627831,0.701631,2.1808][0.322488,0.119788,0.938963][0.445827,0.0810637,0][0.640029,-0.156736,2.17262][0.308922,-0.111966,0.944474][0.38761,0.0802364,0][0.640028,-0.83455,2.01068][0.302195,-0.352284,0.885762][0.341639,0.0802365,0][1.21741,-0.73396,1.73659][0.581966,-0.298495,0.75645][0.348461,0.041077,0][1.21741,-0.156735,1.87313][0.591948,-0.0903879,0.800892][0.38761,0.041077,0][1.21741,-0.156735,1.87313][0.591948,-0.0903879,0.800892][0.38761,0.041077,0][0.640029,-0.156736,2.17262][0.308922,-0.111966,0.944474][0.38761,0.0802364,0][0.640028,-0.83455,2.01068][0.302195,-0.352284,0.885762][0.341639,0.0802365,0][0.640029,-1.45969,1.64995][0.349722,-0.585271,0.731541][0.29924,0.0802364,0][1.21741,-1.26261,1.43398][0.561585,-0.525331,0.639257][0.312607,0.0410771,0][1.21741,-0.73396,1.73659][0.581966,-0.298495,0.75645][0.348461,0.041077,0][1.21741,-0.73396,1.73659][0.581966,-0.298495,0.75645][0.348461,0.041077,0][0.640028,-0.83455,2.01068][0.302195,-0.352284,0.885762][0.341639,0.0802365,0][0.640029,-1.45969,1.64995][0.349722,-0.585271,0.731541][0.29924,0.0802364,0][0.640028,-1.75336,1.17109][0.363311,-0.734491,0.573173][0.279323,0.0802365,0][1.2174,-1.6851,1.00597][0.586343,-0.667708,0.45866][0.283952,0.0410772,0][1.21741,-1.26261,1.43398][0.561585,-0.525331,0.639257][0.312607,0.0410771,0][1.21741,-1.26261,1.43398][0.561585,-0.525331,0.639257][0.312607,0.0410771,0][0.640029,-1.45969,1.64995][0.349722,-0.585271,0.731541][0.29924,0.0802364,0][0.640028,-1.75336,1.17109][0.363311,-0.734491,0.573173][0.279323,0.0802365,0][1.21741,-1.75336,-0.513432][0.474791,-0.870184,-0.131732][0.283122,0.744306,0][0.640028,-1.75336,-1.15634][0.216838,-0.84979,-0.480455][0.341572,0.748595,0][1.21741,-1.6851,-0.981293][0.48426,-0.784665,-0.387031][0.305116,0.767179,0][0.640029,-1.45969,-1.59245][0.258586,-0.770944,-0.582047][0.362073,0.769917,0][1.21741,-1.26261,-1.35086][0.609348,-0.522402,-0.596482][0.322489,0.785247,0][1.21741,-1.6851,-0.981293][0.48426,-0.784665,-0.387031][0.305116,0.767179,0][1.21741,-1.6851,-0.981293][0.48426,-0.784665,-0.387031][0.305116,0.767179,0][0.640028,-1.75336,-1.15634][0.216838,-0.84979,-0.480455][0.341572,0.748595,0][0.640029,-1.45969,-1.59245][0.258586,-0.770944,-0.582047][0.362073,0.769917,0][0.753726,-0.806963,-1.7884][0.307922,-0.324774,-0.894263][0.197178,0.617656,0][1.3311,-0.704424,-1.50386][0.60099,-0.305482,-0.738574][0.190223,0.578496,0][1.21789,-1.33806,-1.14152][0.589077,-0.472369,-0.655633][0.233198,0.586175,0][1.21789,-1.33806,-1.14152][0.589077,-0.472369,-0.655633][0.233198,0.586175,0][0.640511,-1.53514,-1.38416][0.297234,-0.491477,-0.818598][0.246565,0.625334,0][0.753726,-0.806963,-1.7884][0.307922,-0.324774,-0.894263][0.197178,0.617656,0][0.753725,-0.123905,-1.88537][0.297625,-0.00770214,-0.954652][0.150851,0.617656,0][1.3311,-0.123905,-1.58598][0.592176,-0.00419099,-0.805798][0.150851,0.578496,0][1.3311,-0.704424,-1.50386][0.60099,-0.305482,-0.738574][0.190223,0.578496,0][1.3311,-0.704424,-1.50386][0.60099,-0.305482,-0.738574][0.190223,0.578496,0][0.753726,-0.806963,-1.7884][0.307922,-0.324774,-0.894263][0.197178,0.617656,0][0.753725,-0.123905,-1.88537][0.297625,-0.00770214,-0.954652][0.150851,0.617656,0][0.753725,0.65443,-1.78747][0.305935,0.242938,-0.920535][0.098062,0.617656,0][1.3311,0.530148,-1.49947][0.603312,0.203737,-0.771042][0.106491,0.578496,0][1.3311,-0.123905,-1.58598][0.592176,-0.00419099,-0.805798][0.150851,0.578496,0][1.3311,-0.123905,-1.58598][0.592176,-0.00419099,-0.805798][0.150851,0.578496,0][0.753725,-0.123905,-1.88537][0.297625,-0.00770214,-0.954652][0.150851,0.617656,0][0.753725,0.65443,-1.78747][0.305935,0.242938,-0.920535][0.098062,0.617656,0][0.753724,1.36765,-1.49758][0.316734,0.514588,-0.796793][0.0496894,0.617656,0][1.3311,1.15692,-1.2467][0.620084,0.420639,-0.662238][0.0639814,0.578496,0][1.3311,0.530148,-1.49947][0.603312,0.203737,-0.771042][0.106491,0.578496,0][1.3311,0.530148,-1.49947][0.603312,0.203737,-0.771042][0.106491,0.578496,0][0.753725,0.65443,-1.78747][0.305935,0.242938,-0.920535][0.098062,0.617656,0][0.753724,1.36765,-1.49758][0.316734,0.514588,-0.796793][0.0496894,0.617656,0][0.753724,1.8616,-1.03083][0.326331,0.81483,-0.479125][0.0161881,0.617656,0][1.3311,1.59598,-0.843978][0.62609,0.690235,-0.362749][0.0342037,0.578496,0][1.3311,1.15692,-1.2467][0.620084,0.420639,-0.662238][0.0639814,0.578496,0][1.3311,1.15692,-1.2467][0.620084,0.420639,-0.662238][0.0639814,0.578496,0][0.753724,1.36765,-1.49758][0.316734,0.514588,-0.796793][0.0496894,0.617656,0][0.753724,1.8616,-1.03083][0.326331,0.81483,-0.479125][0.0161881,0.617656,0][0.640511,2.07263,-0.300157][0.317679,0.924987,-0.208517][0.614773,0.479977,0][1.21789,1.75925,-0.201828][0.603988,0.79268,-0.0828076][0.653932,0.473308,0][1.3311,1.59598,-0.843978][0.62609,0.690235,-0.362749][0.661611,0.51686,0][1.3311,1.59598,-0.843978][0.62609,0.690235,-0.362749][0.661611,0.51686,0][0.753724,1.8616,-1.03083][0.326331,0.81483,-0.479125][0.622452,0.529533,0][0.640511,2.07263,-0.300157][0.317679,0.924987,-0.208517][0.614773,0.479977,0][1.21741,1.83326,-0.425187][0.658841,0.744826,-0.105652][0.641004,0.883828,0][0.640028,2.14808,-0.523674][0.382229,0.913795,-0.137405][0.646143,0.923219,0][0.631655,2.25325,0.1561][0.491465,0.861552,-0.12724][0.600052,0.921979,0][1.21741,1.83326,-0.425187][0.494386,0.860427,-0.123484][0.676116,0.883828,0][0.631655,2.25325,0.1561][0.494386,0.860427,-0.123484][0.732078,0.884711,0][1.21104,1.91971,0.151672][0.494386,0.860427,-0.123484][0.703544,0.911731,0][0.017882,2.31113,0.915895][0.012595,0.975016,0.221778][0.712867,0.321149,0][0.718989,2.19393,0.873815][0.354986,0.917929,0.177177][0.760418,0.324003,0][0.631655,2.25325,0.1561][0.327396,0.943986,0.0412623][0.754495,0.372681,0][0.631655,2.25325,0.1561][0.327396,0.943986,0.0412623][0.754495,0.372681,0][-0.00160153,2.36879,0.157388][0.00220256,0.997547,0.0699677][0.711546,0.372593,0][0.017882,2.31113,0.915895][0.012595,0.975016,0.221778][0.712867,0.321149,0][0.0318426,2.04174,1.58706][0.00939381,0.822338,0.568922][0.713814,0.275629,0][0.790533,1.95392,1.52224][0.366163,0.766587,0.527512][0.765271,0.280025,0][0.718989,2.19393,0.873815][0.354986,0.917929,0.177177][0.760418,0.324003,0][0.718989,2.19393,0.873815][0.354986,0.917929,0.177177][0.760418,0.324003,0][0.017882,2.31113,0.915895][0.012595,0.975016,0.221778][0.712867,0.321149,0][0.0318426,2.04174,1.58706][0.00939381,0.822338,0.568922][0.713814,0.275629,0][0.00794623,1.53209,2.05482][-0.00550312,0.489162,0.872176][0.502152,0.123106,0][0.668421,1.46255,1.96636][0.332304,0.428369,0.840282][0.497435,0.0783108,0][0.790533,1.95392,1.52224][0.366163,0.766587,0.527512][0.530761,0.0700288,0][0.790533,1.95392,1.52224][0.366163,0.766587,0.527512][0.530761,0.0700288,0][0.0318426,2.04174,1.58706][0.00939381,0.822338,0.568922][0.536717,0.121485,0][0.00794623,1.53209,2.05482][-0.00550312,0.489162,0.872176][0.502152,0.123106,0][-0.00242135,0.749814,2.28431][-0.00364797,0.139829,0.990169][0.449095,0.123809,0][0.627831,0.701631,2.1808][0.322488,0.119788,0.938963][0.445827,0.0810637,0][0.668421,1.46255,1.96636][0.332304,0.428369,0.840282][0.497435,0.0783108,0][0.668421,1.46255,1.96636][0.332304,0.428369,0.840282][0.497435,0.0783108,0][0.00794623,1.53209,2.05482][-0.00550312,0.489162,0.872176][0.502152,0.123106,0][-0.00242135,0.749814,2.28431][-0.00364797,0.139829,0.990169][0.449095,0.123809,0][3.88549e-007,-0.156736,2.27439][0.000613018,-0.120694,0.99269][0.38761,0.123645,0][0.640029,-0.156736,2.17262][0.308922,-0.111966,0.944474][0.38761,0.0802364,0][0.627831,0.701631,2.1808][0.322488,0.119788,0.938963][0.445827,0.0810637,0][0.627831,0.701631,2.1808][0.322488,0.119788,0.938963][0.445827,0.0810637,0][-0.00242135,0.749814,2.28431][-0.00364797,0.139829,0.990169][0.449095,0.123809,0][3.88549e-007,-0.156736,2.27439][0.000613018,-0.120694,0.99269][0.38761,0.123645,0][8.92163e-007,-0.869731,2.10387][0.000174059,-0.370173,0.928963][0.339253,0.123645,0][0.640028,-0.83455,2.01068][0.302195,-0.352284,0.885762][0.341639,0.0802365,0][0.640029,-0.156736,2.17262][0.308922,-0.111966,0.944474][0.38761,0.0802364,0][0.640029,-0.156736,2.17262][0.308922,-0.111966,0.944474][0.38761,0.0802364,0][3.88549e-007,-0.156736,2.27439][0.000613018,-0.120694,0.99269][0.38761,0.123645,0][8.92163e-007,-0.869731,2.10387][0.000174059,-0.370173,0.928963][0.339253,0.123645,0][-8.82073e-007,-1.5276,1.72324][-0.0280478,-0.575914,0.817029][0.294635,0.123645,0][0.640029,-1.45969,1.64995][0.349722,-0.585271,0.731541][0.29924,0.0802364,0][0.640028,-0.83455,2.01068][0.302195,-0.352284,0.885762][0.341639,0.0802365,0][0.640028,-0.83455,2.01068][0.302195,-0.352284,0.885762][0.341639,0.0802365,0][8.92163e-007,-0.869731,2.10387][0.000174059,-0.370173,0.928963][0.339253,0.123645,0][-8.82073e-007,-1.5276,1.72324][-0.0280478,-0.575914,0.817029][0.294635,0.123645,0][0.640028,-1.75336,-1.15634][0.216838,-0.84979,-0.480455][0.341572,0.748595,0][6.80607e-007,-1.5276,-1.67506][0.158088,-0.819041,-0.551525][0.397246,0.743868,0][0.640029,-1.45969,-1.59245][0.258586,-0.770944,-0.582047][0.362073,0.769917,0][0.000482366,-0.842436,-1.88551][-0.0014896,-0.319764,-0.947496][0.199584,0.668743,0][0.753726,-0.806963,-1.7884][0.307922,-0.324774,-0.894263][0.197178,0.617656,0][0.640511,-1.53514,-1.38416][0.297234,-0.491477,-0.818598][0.246565,0.625334,0][0.640511,-1.53514,-1.38416][0.297234,-0.491477,-0.818598][0.246565,0.625334,0][0.000482308,-1.60305,-1.46705][0.00414317,-0.48596,-0.873971][0.251171,0.668743,0][0.000482366,-0.842436,-1.88551][-0.0014896,-0.319764,-0.947496][0.199584,0.668743,0][0.000482396,-0.123702,-1.98712][-0.00432438,-0.00832287,-0.999956][0.150837,0.668743,0][0.753725,-0.123905,-1.88537][0.297625,-0.00770214,-0.954652][0.150851,0.617656,0][0.753726,-0.806963,-1.7884][0.307922,-0.324774,-0.894263][0.197178,0.617656,0][0.753726,-0.806963,-1.7884][0.307922,-0.324774,-0.894263][0.197178,0.617656,0][0.000482366,-0.842436,-1.88551][-0.0014896,-0.319764,-0.947496][0.199584,0.668743,0][0.000482396,-0.123702,-1.98712][-0.00432438,-0.00832287,-0.999956][0.150837,0.668743,0][0.000482667,0.697555,-1.88525][-0.00407544,0.254465,-0.967073][0.0951372,0.668743,0][0.753725,0.65443,-1.78747][0.305935,0.242938,-0.920535][0.098062,0.617656,0][0.753725,-0.123905,-1.88537][0.297625,-0.00770214,-0.954652][0.150851,0.617656,0][0.753725,-0.123905,-1.88537][0.297625,-0.00770214,-0.954652][0.150851,0.617656,0][0.000482396,-0.123702,-1.98712][-0.00432438,-0.00832287,-0.999956][0.150837,0.668743,0][0.000482667,0.697555,-1.88525][-0.00407544,0.254465,-0.967073][0.0951372,0.668743,0][0.000481898,1.43778,-1.58314][-0.00357299,0.54342,-0.839454][0.0449331,0.668743,0][0.753724,1.36765,-1.49758][0.316734,0.514588,-0.796793][0.0496894,0.617656,0][0.753725,0.65443,-1.78747][0.305935,0.242938,-0.920535][0.098062,0.617656,0][0.753725,0.65443,-1.78747][0.305935,0.242938,-0.920535][0.098062,0.617656,0][0.000482667,0.697555,-1.88525][-0.00407544,0.254465,-0.967073][0.0951372,0.668743,0][0.000481898,1.43778,-1.58314][-0.00357299,0.54342,-0.839454][0.0449331,0.668743,0][0.000482383,1.95284,-1.09504][-0.00692125,0.852051,-0.523412][0.01,0.668743,0][0.753724,1.8616,-1.03083][0.326331,0.81483,-0.479125][0.0161881,0.617656,0][0.753724,1.36765,-1.49758][0.316734,0.514588,-0.796793][0.0496894,0.617656,0][0.753724,1.36765,-1.49758][0.316734,0.514588,-0.796793][0.0496894,0.617656,0][0.000481898,1.43778,-1.58314][-0.00357299,0.54342,-0.839454][0.0449331,0.668743,0][0.000482383,1.95284,-1.09504][-0.00692125,0.852051,-0.523412][0.01,0.668743,0][0.00048207,2.18251,-0.33424][-0.00956008,0.960039,-0.279703][0.571365,0.482288,0][0.640511,2.07263,-0.300157][0.317679,0.924987,-0.208517][0.614773,0.479977,0][0.753724,1.8616,-1.03083][0.326331,0.81483,-0.479125][0.622452,0.529533,0][0.753724,1.8616,-1.03083][0.326331,0.81483,-0.479125][0.622452,0.529533,0][0.000482383,1.95284,-1.09504][-0.00692125,0.852051,-0.523412][0.571365,0.533888,0][0.00048207,2.18251,-0.33424][-0.00956008,0.960039,-0.279703][0.571365,0.482288,0][0.640028,2.14808,-0.523674][0.382229,0.913795,-0.137405][0.330984,0.81522,0][9.5449e-007,2.25796,-0.557765][0.0558251,0.986845,-0.151725][0.331593,0.858686,0][-0.00160153,2.36879,0.157388][0.175057,0.973004,-0.150394][0.283122,0.856893,0][0.640028,2.14808,-0.523674][0.17721,0.972929,-0.148342][0.473411,0.930613,0][-0.00160153,2.36879,0.157388][0.17721,0.972929,-0.148342][0.42722,0.97413,0][0.631655,2.25325,0.1561][0.17721,0.972929,-0.148342][0.427307,0.931181,0][-0.730375,2.19393,0.873814][-0.360096,0.919359,0.15846][0.662118,0.324003,0][0.017882,2.31113,0.915895][0.012595,0.975016,0.221778][0.712867,0.321149,0][-0.00160153,2.36879,0.157388][0.00220256,0.997547,0.0699677][0.711546,0.372593,0][-0.00160153,2.36879,0.157388][0.00220256,0.997547,0.0699677][0.711546,0.372593,0][-0.630448,2.25325,0.1561][-0.339401,0.939715,0.0417459][0.668896,0.37268,0][-0.730375,2.19393,0.873814][-0.360096,0.919359,0.15846][0.662118,0.324003,0][-0.812232,1.95392,1.52224][-0.363764,0.759477,0.539325][0.656567,0.280025,0][0.0318426,2.04174,1.58706][0.00939381,0.822338,0.568922][0.713814,0.275629,0][0.017882,2.31113,0.915895][0.012595,0.975016,0.221778][0.712867,0.321149,0][0.017882,2.31113,0.915895][0.012595,0.975016,0.221778][0.712867,0.321149,0][-0.730375,2.19393,0.873814][-0.360096,0.919359,0.15846][0.662118,0.324003,0][-0.812232,1.95392,1.52224][-0.363764,0.759477,0.539325][0.656567,0.280025,0][-0.672514,1.46255,1.96636][-0.322,0.429444,0.843738][0.497435,0.169257,0][0.00794623,1.53209,2.05482][-0.00550312,0.489162,0.872176][0.502152,0.123106,0][0.0318426,2.04174,1.58706][0.00939381,0.822338,0.568922][0.536717,0.121485,0][0.0318426,2.04174,1.58706][0.00939381,0.822338,0.568922][0.536717,0.121485,0][-0.812232,1.95392,1.52224][-0.363764,0.759477,0.539325][0.530761,0.178733,0][-0.672514,1.46255,1.96636][-0.322,0.429444,0.843738][0.497435,0.169257,0][-0.626072,0.701631,2.1808][-0.320961,0.124506,0.938873][0.445827,0.166107,0][-0.00242135,0.749814,2.28431][-0.00364797,0.139829,0.990169][0.449095,0.123809,0][0.00794623,1.53209,2.05482][-0.00550312,0.489162,0.872176][0.502152,0.123106,0][0.00794623,1.53209,2.05482][-0.00550312,0.489162,0.872176][0.502152,0.123106,0][-0.672514,1.46255,1.96636][-0.322,0.429444,0.843738][0.497435,0.169257,0][-0.626072,0.701631,2.1808][-0.320961,0.124506,0.938873][0.445827,0.166107,0][-0.640029,-0.156736,2.17262][-0.308743,-0.112758,0.944438][0.38761,0.167054,0][3.88549e-007,-0.156736,2.27439][0.000613018,-0.120694,0.99269][0.38761,0.123645,0][-0.00242135,0.749814,2.28431][-0.00364797,0.139829,0.990169][0.449095,0.123809,0][-0.00242135,0.749814,2.28431][-0.00364797,0.139829,0.990169][0.449095,0.123809,0][-0.626072,0.701631,2.1808][-0.320961,0.124506,0.938873][0.445827,0.166107,0][-0.640029,-0.156736,2.17262][-0.308743,-0.112758,0.944438][0.38761,0.167054,0][-0.640028,-0.83455,2.01068][-0.301801,-0.352089,0.885974][0.341639,0.167054,0][8.92163e-007,-0.869731,2.10387][0.000174059,-0.370173,0.928963][0.339253,0.123645,0][3.88549e-007,-0.156736,2.27439][0.000613018,-0.120694,0.99269][0.38761,0.123645,0][3.88549e-007,-0.156736,2.27439][0.000613018,-0.120694,0.99269][0.38761,0.123645,0][-0.640029,-0.156736,2.17262][-0.308743,-0.112758,0.944438][0.38761,0.167054,0][-0.640028,-0.83455,2.01068][-0.301801,-0.352089,0.885974][0.341639,0.167054,0][-0.640028,-1.45969,1.64995][-0.276943,-0.65382,0.704147][0.29924,0.167054,0][-8.82073e-007,-1.5276,1.72324][-0.0280478,-0.575914,0.817029][0.294635,0.123645,0][8.92163e-007,-0.869731,2.10387][0.000174059,-0.370173,0.928963][0.339253,0.123645,0][8.92163e-007,-0.869731,2.10387][0.000174059,-0.370173,0.928963][0.339253,0.123645,0][-0.640028,-0.83455,2.01068][-0.301801,-0.352089,0.885974][0.341639,0.167054,0][-0.640028,-1.45969,1.64995][-0.276943,-0.65382,0.704147][0.29924,0.167054,0][-8.82073e-007,-1.5276,1.72324][-0.0280478,-0.575914,0.817029][0.294635,0.123645,0][-0.640028,-1.45969,1.64995][-0.276943,-0.65382,0.704147][0.29924,0.167054,0][-0.640028,-1.75336,1.17109][-0.204728,-0.869798,0.44893][0.279323,0.167054,0][-0.707717,-0.805501,-1.7884][-0.309118,-0.311898,-0.898424][0.197079,0.716775,0][0.000482366,-0.842436,-1.88551][-0.0014896,-0.319764,-0.947496][0.199584,0.668743,0][0.000482308,-1.60305,-1.46705][0.00414317,-0.48596,-0.873971][0.251171,0.668743,0][0.000482308,-1.60305,-1.46705][0.00414317,-0.48596,-0.873971][0.251171,0.668743,0][-0.639547,-1.53514,-1.38416][-0.305277,-0.486651,-0.818521][0.246565,0.712151,0][-0.707717,-0.805501,-1.7884][-0.309118,-0.311898,-0.898424][0.197079,0.716775,0][-0.707717,-0.122443,-1.88536][-0.302261,-0.00667598,-0.953202][0.150752,0.716775,0][0.000482396,-0.123702,-1.98712][-0.00432438,-0.00832287,-0.999956][0.150837,0.668743,0][0.000482366,-0.842436,-1.88551][-0.0014896,-0.319764,-0.947496][0.199584,0.668743,0][0.000482366,-0.842436,-1.88551][-0.0014896,-0.319764,-0.947496][0.199584,0.668743,0][-0.707717,-0.805501,-1.7884][-0.309118,-0.311898,-0.898424][0.197079,0.716775,0][-0.707717,-0.122443,-1.88536][-0.302261,-0.00667598,-0.953202][0.150752,0.716775,0][-0.707717,0.655892,-1.78747][-0.310105,0.241297,-0.919571][0.0979629,0.716775,0][0.000482667,0.697555,-1.88525][-0.00407544,0.254465,-0.967073][0.0951372,0.668743,0][0.000482396,-0.123702,-1.98712][-0.00432438,-0.00832287,-0.999956][0.150837,0.668743,0][0.000482396,-0.123702,-1.98712][-0.00432438,-0.00832287,-0.999956][0.150837,0.668743,0][-0.707717,-0.122443,-1.88536][-0.302261,-0.00667598,-0.953202][0.150752,0.716775,0][-0.707717,0.655892,-1.78747][-0.310105,0.241297,-0.919571][0.0979629,0.716775,0][-0.707717,1.36911,-1.49758][-0.31915,0.513252,-0.79669][0.0495903,0.716775,0][0.000481898,1.43778,-1.58314][-0.00357299,0.54342,-0.839454][0.0449331,0.668743,0][0.000482667,0.697555,-1.88525][-0.00407544,0.254465,-0.967073][0.0951372,0.668743,0][0.000482667,0.697555,-1.88525][-0.00407544,0.254465,-0.967073][0.0951372,0.668743,0][-0.707717,0.655892,-1.78747][-0.310105,0.241297,-0.919571][0.0979629,0.716775,0][-0.707717,1.36911,-1.49758][-0.31915,0.513252,-0.79669][0.0495903,0.716775,0][-0.707716,1.86307,-1.03083][-0.325798,0.816065,-0.477383][0.016089,0.716775,0][0.000482383,1.95284,-1.09504][-0.00692125,0.852051,-0.523412][0.01,0.668743,0][0.000481898,1.43778,-1.58314][-0.00357299,0.54342,-0.839454][0.0449331,0.668743,0][0.000481898,1.43778,-1.58314][-0.00357299,0.54342,-0.839454][0.0449331,0.668743,0][-0.707717,1.36911,-1.49758][-0.31915,0.513252,-0.79669][0.0495903,0.716775,0][-0.707716,1.86307,-1.03083][-0.325798,0.816065,-0.477383][0.016089,0.716775,0][-0.639547,2.07263,-0.300156][-0.324928,0.914589,-0.240725][0.527956,0.479977,0][0.00048207,2.18251,-0.33424][-0.00956008,0.960039,-0.279703][0.571365,0.482288,0][0.000482383,1.95284,-1.09504][-0.00692125,0.852051,-0.523412][0.571365,0.533888,0][0.000482383,1.95284,-1.09504][-0.00692125,0.852051,-0.523412][0.571365,0.533888,0][-0.707716,1.86307,-1.03083][-0.325798,0.816065,-0.477383][0.523333,0.529533,0][-0.639547,2.07263,-0.300156][-0.324928,0.914589,-0.240725][0.527956,0.479977,0][9.5449e-007,2.25796,-0.557765][0.0558251,0.986845,-0.151725][0.886742,0.563792,0][-0.640028,2.14808,-0.523673][-0.274403,0.951031,-0.142278][0.917364,0.532939,0][-0.630448,2.25325,0.1561][-0.174999,0.973362,-0.148125][0.951336,0.564115,0][9.5449e-007,2.25796,-0.557765][-0.178333,0.972303,-0.151077][0.971609,0.590978,0][-0.630448,2.25325,0.1561][-0.178333,0.972303,-0.151077][0.923193,0.633737,0][-0.00160153,2.36879,0.157388][-0.178333,0.972303,-0.151077][0.923105,0.591087,0][-1.25084,1.85974,0.75216][-0.672706,0.734307,0.0908819][0.626819,0.332254,0][-0.730375,2.19393,0.873814][-0.360096,0.919359,0.15846][0.662118,0.324003,0][-0.630448,2.25325,0.1561][-0.339401,0.939715,0.0417459][0.668896,0.37268,0][-0.630448,2.25325,0.1561][-0.339401,0.939715,0.0417459][0.668896,0.37268,0][-1.21041,1.91971,0.151673][-0.630761,0.774499,0.0478828][0.629561,0.372981,0][-1.25084,1.85974,0.75216][-0.672706,0.734307,0.0908819][0.626819,0.332254,0][-1.29921,1.69233,1.32764][-0.702876,0.587182,0.401475][0.623538,0.293223,0][-0.812232,1.95392,1.52224][-0.363764,0.759477,0.539325][0.656567,0.280025,0][-0.730375,2.19393,0.873814][-0.360096,0.919359,0.15846][0.662118,0.324003,0][-0.730375,2.19393,0.873814][-0.360096,0.919359,0.15846][0.662118,0.324003,0][-1.25084,1.85974,0.75216][-0.672706,0.734307,0.0908819][0.626819,0.332254,0][-1.29921,1.69233,1.32764][-0.702876,0.587182,0.401475][0.623538,0.293223,0][-1.21708,1.25126,1.7041][-0.638833,0.304336,0.706592][0.483105,0.206191,0][-0.672514,1.46255,1.96636][-0.322,0.429444,0.843738][0.497435,0.169257,0][-0.812232,1.95392,1.52224][-0.363764,0.759477,0.539325][0.530761,0.178733,0][-0.812232,1.95392,1.52224][-0.363764,0.759477,0.539325][0.530761,0.178733,0][-1.29921,1.69233,1.32764][-0.702876,0.587182,0.401475][0.513019,0.211761,0][-1.21708,1.25126,1.7041][-0.638833,0.304336,0.706592][0.483105,0.206191,0][-1.20765,0.561532,1.87513][-0.611126,0.0951092,0.785799][0.436325,0.205551,0][-0.626072,0.701631,2.1808][-0.320961,0.124506,0.938873][0.445827,0.166107,0][-0.672514,1.46255,1.96636][-0.322,0.429444,0.843738][0.497435,0.169257,0][-0.672514,1.46255,1.96636][-0.322,0.429444,0.843738][0.497435,0.169257,0][-1.21708,1.25126,1.7041][-0.638833,0.304336,0.706592][0.483105,0.206191,0][-1.20765,0.561532,1.87513][-0.611126,0.0951092,0.785799][0.436325,0.205551,0][-1.21741,-0.156736,1.87313][-0.591591,-0.0908566,0.801103][0.38761,0.206213,0][-0.640029,-0.156736,2.17262][-0.308743,-0.112758,0.944438][0.38761,0.167054,0][-0.626072,0.701631,2.1808][-0.320961,0.124506,0.938873][0.445827,0.166107,0][-0.626072,0.701631,2.1808][-0.320961,0.124506,0.938873][0.445827,0.166107,0][-1.20765,0.561532,1.87513][-0.611126,0.0951092,0.785799][0.436325,0.205551,0][-1.21741,-0.156736,1.87313][-0.591591,-0.0908566,0.801103][0.38761,0.206213,0][-1.21741,-0.73396,1.73658][-0.581829,-0.29849,0.756557][0.348461,0.206213,0][-0.640028,-0.83455,2.01068][-0.301801,-0.352089,0.885974][0.341639,0.167054,0][-0.640029,-0.156736,2.17262][-0.308743,-0.112758,0.944438][0.38761,0.167054,0][-0.640029,-0.156736,2.17262][-0.308743,-0.112758,0.944438][0.38761,0.167054,0][-1.21741,-0.156736,1.87313][-0.591591,-0.0908566,0.801103][0.38761,0.206213,0][-1.21741,-0.73396,1.73658][-0.581829,-0.29849,0.756557][0.348461,0.206213,0][-1.21741,-1.26261,1.43398][-0.581651,-0.495994,0.644726][0.312607,0.206213,0][-0.640028,-1.45969,1.64995][-0.276943,-0.65382,0.704147][0.29924,0.167054,0][-0.640028,-0.83455,2.01068][-0.301801,-0.352089,0.885974][0.341639,0.167054,0][-0.640028,-0.83455,2.01068][-0.301801,-0.352089,0.885974][0.341639,0.167054,0][-1.21741,-0.73396,1.73658][-0.581829,-0.29849,0.756557][0.348461,0.206213,0][-1.21741,-1.26261,1.43398][-0.581651,-0.495994,0.644726][0.312607,0.206213,0][-1.21741,-1.6851,1.00597][-0.466592,-0.805373,0.365604][0.283952,0.206213,0][-0.640028,-1.75336,1.17109][-0.204728,-0.869798,0.44893][0.279323,0.167054,0][-0.640028,-1.45969,1.64995][-0.276943,-0.65382,0.704147][0.29924,0.167054,0][-0.640028,-1.45969,1.64995][-0.276943,-0.65382,0.704147][0.29924,0.167054,0][-1.21741,-1.26261,1.43398][-0.581651,-0.495994,0.644726][0.312607,0.206213,0][-1.21741,-1.6851,1.00597][-0.466592,-0.805373,0.365604][0.283952,0.206213,0][-0.640028,-1.75336,1.17109][-0.204728,-0.869798,0.44893][0.946382,0.276667,0][-1.21741,-1.6851,1.00597][-0.466592,-0.805373,0.365604][0.92518,0.311443,0][-1.21741,-1.75336,0.52796][-0.488836,-0.862115,0.133407][0.893926,0.302829,0][-1.21741,-1.26261,-1.35086][-0.562466,-0.584124,-0.585177][0.361566,0.81522,0][-0.640028,-1.45969,-1.59245][-0.459144,-0.736871,-0.496194][0.401991,0.824048,0][-0.640028,-1.75336,-1.15634][-0.388924,-0.696567,-0.602937][0.404256,0.843836,0][-0.640028,-1.75336,-1.15634][-0.388924,-0.696567,-0.602937][0.404256,0.843836,0][-1.21741,-1.6851,-0.981291][-0.603335,-0.627895,-0.491665][0.364824,0.843689,0][-1.21741,-1.26261,-1.35086][-0.562466,-0.584124,-0.585177][0.361566,0.81522,0][-1.28509,-0.702961,-1.50386][-0.596845,-0.281729,-0.751269][0.190124,0.755934,0][-0.707717,-0.805501,-1.7884][-0.309118,-0.311898,-0.898424][0.197079,0.716775,0][-0.639547,-1.53514,-1.38416][-0.305277,-0.486651,-0.818521][0.246565,0.712151,0][-0.639547,-1.53514,-1.38416][-0.305277,-0.486651,-0.818521][0.246565,0.712151,0][-1.21692,-1.33806,-1.14152][-0.590699,-0.453416,-0.667449][0.233198,0.751311,0][-1.28509,-0.702961,-1.50386][-0.596845,-0.281729,-0.751269][0.190124,0.755934,0][-1.28509,-0.122443,-1.58598][-0.59261,-0.00288131,-0.805484][0.150752,0.755934,0][-0.707717,-0.122443,-1.88536][-0.302261,-0.00667598,-0.953202][0.150752,0.716775,0][-0.707717,-0.805501,-1.7884][-0.309118,-0.311898,-0.898424][0.197079,0.716775,0][-0.707717,-0.805501,-1.7884][-0.309118,-0.311898,-0.898424][0.197079,0.716775,0][-1.28509,-0.702961,-1.50386][-0.596845,-0.281729,-0.751269][0.190124,0.755934,0][-1.28509,-0.122443,-1.58598][-0.59261,-0.00288131,-0.805484][0.150752,0.755934,0][-1.28509,0.53161,-1.49947][-0.604042,0.20212,-0.770896][0.106392,0.755934,0][-0.707717,0.655892,-1.78747][-0.310105,0.241297,-0.919571][0.0979629,0.716775,0][-0.707717,-0.122443,-1.88536][-0.302261,-0.00667598,-0.953202][0.150752,0.716775,0][-0.707717,-0.122443,-1.88536][-0.302261,-0.00667598,-0.953202][0.150752,0.716775,0][-1.28509,-0.122443,-1.58598][-0.59261,-0.00288131,-0.805484][0.150752,0.755934,0][-1.28509,0.53161,-1.49947][-0.604042,0.20212,-0.770896][0.106392,0.755934,0][-1.28509,1.15839,-1.2467][-0.619218,0.417346,-0.665125][0.0638823,0.755934,0][-0.707717,1.36911,-1.49758][-0.31915,0.513252,-0.79669][0.0495903,0.716775,0][-0.707717,0.655892,-1.78747][-0.310105,0.241297,-0.919571][0.0979629,0.716775,0][-0.707717,0.655892,-1.78747][-0.310105,0.241297,-0.919571][0.0979629,0.716775,0][-1.28509,0.53161,-1.49947][-0.604042,0.20212,-0.770896][0.106392,0.755934,0][-1.28509,1.15839,-1.2467][-0.619218,0.417346,-0.665125][0.0638823,0.755934,0][-1.28509,1.59744,-0.843978][-0.622862,0.6903,-0.368142][0.0341046,0.755934,0][-0.707716,1.86307,-1.03083][-0.325798,0.816065,-0.477383][0.016089,0.716775,0][-0.707717,1.36911,-1.49758][-0.31915,0.513252,-0.79669][0.0495903,0.716775,0][-0.707717,1.36911,-1.49758][-0.31915,0.513252,-0.79669][0.0495903,0.716775,0][-1.28509,1.15839,-1.2467][-0.619218,0.417346,-0.665125][0.0638823,0.755934,0][-1.28509,1.59744,-0.843978][-0.622862,0.6903,-0.368142][0.0341046,0.755934,0][-1.21692,1.75925,-0.201828][-0.615612,0.775462,-0.140287][0.488797,0.473308,0][-0.639547,2.07263,-0.300156][-0.324928,0.914589,-0.240725][0.527956,0.479977,0][-0.707716,1.86307,-1.03083][-0.325798,0.816065,-0.477383][0.523333,0.529533,0][-0.707716,1.86307,-1.03083][-0.325798,0.816065,-0.477383][0.523333,0.529533,0][-1.28509,1.59744,-0.843978][-0.622862,0.6903,-0.368142][0.484173,0.51686,0][-1.21692,1.75925,-0.201828][-0.615612,0.775462,-0.140287][0.488797,0.473308,0][-0.640028,2.14808,-0.523673][-0.274403,0.951031,-0.142278][0.495891,0.955388,0][-1.21741,1.83326,-0.425188][-0.556965,0.822057,-0.118371][0.526944,0.930613,0][-1.21041,1.91971,0.151673][-0.491189,0.862288,-0.123261][0.555823,0.957012,0][-0.640028,2.14808,-0.523673][-0.493834,0.860357,-0.126149][0.329226,0.889309,0][-1.21041,1.91971,0.151673][-0.493834,0.860357,-0.126149][0.283422,0.927994,0][-0.630448,2.25325,0.1561][-0.493834,0.860357,-0.126149][0.283122,0.888659,0][-1.67611,1.34451,0.565225][-0.861357,0.496897,0.10563][0.597976,0.344932,0][-1.25084,1.85974,0.75216][-0.672706,0.734307,0.0908819][0.626819,0.332254,0][-1.21041,1.91971,0.151673][-0.630761,0.774499,0.0478828][0.629561,0.372981,0][-1.21041,1.91971,0.151673][-0.630761,0.774499,0.0478828][0.629561,0.372981,0][-1.67376,1.40625,0.142544][-0.840367,0.536673,0.0759298][0.598135,0.3736,0][-1.67611,1.34451,0.565225][-0.861357,0.496897,0.10563][0.597976,0.344932,0][-1.67541,1.20949,0.983242][-0.885296,0.386772,0.258185][0.598024,0.316581,0][-1.29921,1.69233,1.32764][-0.702876,0.587182,0.401475][0.623538,0.293223,0][-1.25084,1.85974,0.75216][-0.672706,0.734307,0.0908819][0.626819,0.332254,0][-1.25084,1.85974,0.75216][-0.672706,0.734307,0.0908819][0.626819,0.332254,0][-1.67611,1.34451,0.565225][-0.861357,0.496897,0.10563][0.597976,0.344932,0][-1.67541,1.20949,0.983242][-0.885296,0.386772,0.258185][0.598024,0.316581,0][-1.6615,0.868282,1.26886][-0.856348,0.209039,0.472199][0.610186,0.0969165,0][-1.21708,1.25126,1.7041][-0.638833,0.304336,0.706592][0.573256,0.110417,0][-1.29921,1.69233,1.32764][-0.702876,0.587182,0.401475][0.559197,0.0736872,0][-1.29921,1.69233,1.32764][-0.702876,0.587182,0.401475][0.559197,0.0736872,0][-1.67541,1.20949,0.983242][-0.885296,0.386772,0.258185][0.599128,0.0688361,0][-1.6615,0.868282,1.26886][-0.856348,0.209039,0.472199][0.610186,0.0969165,0][-1.67061,0.348396,1.38969][-0.829803,0.0742575,0.553093][0.42187,0.236951,0][-1.20765,0.561532,1.87513][-0.611126,0.0951092,0.785799][0.436325,0.205551,0][-1.21708,1.25126,1.7041][-0.638833,0.304336,0.706592][0.483105,0.206191,0][-1.21708,1.25126,1.7041][-0.638833,0.304336,0.706592][0.483105,0.206191,0][-1.6615,0.868282,1.26886][-0.856348,0.209039,0.472199][0.45713,0.236333,0][-1.67061,0.348396,1.38969][-0.829803,0.0742575,0.553093][0.42187,0.236951,0][-1.67562,-0.157175,1.39593][-0.815098,-0.0593777,0.576273][0.387581,0.23729,0][-1.21741,-0.156736,1.87313][-0.591591,-0.0908566,0.801103][0.38761,0.206213,0][-1.20765,0.561532,1.87513][-0.611126,0.0951092,0.785799][0.436325,0.205551,0][-1.20765,0.561532,1.87513][-0.611126,0.0951092,0.785799][0.436325,0.205551,0][-1.67061,0.348396,1.38969][-0.829803,0.0742575,0.553093][0.42187,0.236951,0][-1.67562,-0.157175,1.39593][-0.815098,-0.0593777,0.576273][0.387581,0.23729,0][-1.67562,-0.580063,1.29917][-0.807844,-0.213985,0.54918][0.358899,0.23729,0][-1.21741,-0.73396,1.73658][-0.581829,-0.29849,0.756557][0.348461,0.206213,0][-1.21741,-0.156736,1.87313][-0.591591,-0.0908566,0.801103][0.38761,0.206213,0][-1.21741,-0.156736,1.87313][-0.591591,-0.0908566,0.801103][0.38761,0.206213,0][-1.67562,-0.157175,1.39593][-0.815098,-0.0593777,0.576273][0.387581,0.23729,0][-1.67562,-0.580063,1.29917][-0.807844,-0.213985,0.54918][0.358899,0.23729,0][-1.67562,-0.955647,1.0867][-0.80766,-0.356959,0.469325][0.333426,0.23729,0][-1.21741,-1.26261,1.43398][-0.581651,-0.495994,0.644726][0.312607,0.206213,0][-1.21741,-0.73396,1.73658][-0.581829,-0.29849,0.756557][0.348461,0.206213,0][-1.21741,-0.73396,1.73658][-0.581829,-0.29849,0.756557][0.348461,0.206213,0][-1.67562,-0.580063,1.29917][-0.807844,-0.213985,0.54918][0.358899,0.23729,0][-1.67562,-0.955647,1.0867][-0.80766,-0.356959,0.469325][0.333426,0.23729,0][-1.67562,-1.26261,0.778364][-0.814153,-0.465256,0.347407][0.90204,0.337301,0][-1.21741,-1.6851,1.00597][-0.466592,-0.805373,0.365604][0.92518,0.311443,0][-1.21741,-1.26261,1.43398][-0.581651,-0.495994,0.644726][0.953166,0.319157,0][-1.21741,-1.26261,1.43398][-0.581651,-0.495994,0.644726][0.953166,0.319157,0][-1.67562,-0.955647,1.0867][-0.80766,-0.356959,0.469325][0.922201,0.342858,0][-1.67562,-1.26261,0.778364][-0.814153,-0.465256,0.347407][0.90204,0.337301,0][-1.67562,-1.45969,0.41219][-0.77225,-0.611712,0.171577][0.878098,0.330702,0][-1.21741,-1.75336,0.52796][-0.488836,-0.862115,0.133407][0.893926,0.302829,0][-1.21741,-1.6851,1.00597][-0.466592,-0.805373,0.365604][0.92518,0.311443,0][-1.21741,-1.6851,1.00597][-0.466592,-0.805373,0.365604][0.92518,0.311443,0][-1.67562,-1.26261,0.778364][-0.814153,-0.465256,0.347407][0.90204,0.337301,0][-1.67562,-1.45969,0.41219][-0.77225,-0.611712,0.171577][0.878098,0.330702,0][-1.67562,-1.5276,0.0231769][-0.755696,-0.654923,0.000283869][0.852663,0.323691,0][-1.21741,-1.84683,0.000312842][-0.571346,-0.820696,-0.00480829][0.859426,0.293319,0][-1.21741,-1.75336,0.52796][-0.488836,-0.862115,0.133407][0.893926,0.302829,0][-1.21741,-1.75336,0.52796][-0.488836,-0.862115,0.133407][0.893926,0.302829,0][-1.67562,-1.45969,0.41219][-0.77225,-0.611712,0.171577][0.878098,0.330702,0][-1.67562,-1.5276,0.0231769][-0.755696,-0.654923,0.000283869][0.852663,0.323691,0][-1.67562,-1.45969,-0.356561][-0.761535,-0.610233,-0.218359][0.827834,0.316848,0][-1.21741,-1.75336,-0.513433][-0.630875,-0.75458,-0.180574][0.825835,0.284061,0][-1.21741,-1.84683,0.000312842][-0.571346,-0.820696,-0.00480829][0.859426,0.293319,0][-1.21741,-1.84683,0.000312842][-0.571346,-0.820696,-0.00480829][0.859426,0.293319,0][-1.67562,-1.5276,0.0231769][-0.755696,-0.654923,0.000283869][0.852663,0.323691,0][-1.67562,-1.45969,-0.356561][-0.761535,-0.610233,-0.218359][0.827834,0.316848,0][-1.67562,-1.26261,-0.696755][-0.811245,-0.471864,-0.345291][0.80559,0.310717,0][-1.21741,-1.6851,-0.981291][-0.603335,-0.627895,-0.491665][0.795244,0.275629,0][-1.21741,-1.75336,-0.513433][-0.630875,-0.75458,-0.180574][0.825835,0.284061,0][-1.21741,-1.75336,-0.513433][-0.630875,-0.75458,-0.180574][0.825835,0.284061,0][-1.67562,-1.45969,-0.356561][-0.761535,-0.610233,-0.218359][0.827834,0.316848,0][-1.67562,-1.26261,-0.696755][-0.811245,-0.471864,-0.345291][0.80559,0.310717,0][-1.67562,-0.955647,-0.967456][-0.825364,-0.372962,-0.423879][0.791366,0.0228796,0][-1.21741,-1.26261,-1.35086][-0.562466,-0.584124,-0.585177][0.822086,0.01,0][-1.21741,-1.6851,-0.981291][-0.603335,-0.627895,-0.491665][0.835263,0.0457176,0][-1.21741,-1.6851,-0.981291][-0.603335,-0.627895,-0.491665][0.835263,0.0457176,0][-1.67562,-1.26261,-0.696755][-0.811245,-0.471864,-0.345291][0.800868,0.0489605,0][-1.67562,-0.955647,-0.967456][-0.825364,-0.372962,-0.423879][0.791366,0.0228796,0][-1.7433,-0.545279,-1.05231][-0.848061,-0.21119,-0.485995][0.17943,0.787011,0][-1.28509,-0.702961,-1.50386][-0.596845,-0.281729,-0.751269][0.190124,0.755934,0][-1.21692,-1.33806,-1.14152][-0.590699,-0.453416,-0.667449][0.233198,0.751311,0][-1.21692,-1.33806,-1.14152][-0.590699,-0.453416,-0.667449][0.233198,0.751311,0][-1.67513,-1.0311,-0.756071][-0.829868,-0.359638,-0.426591][0.212379,0.782388,0][-1.7433,-0.545279,-1.05231][-0.848061,-0.21119,-0.485995][0.17943,0.787011,0][-1.7433,-0.122443,-1.10947][-0.852969,0.004064,-0.521946][0.150752,0.787011,0][-1.28509,-0.122443,-1.58598][-0.59261,-0.00288131,-0.805484][0.150752,0.755934,0][-1.28509,-0.702961,-1.50386][-0.596845,-0.281729,-0.751269][0.190124,0.755934,0][-1.28509,-0.702961,-1.50386][-0.596845,-0.281729,-0.751269][0.190124,0.755934,0][-1.7433,-0.545279,-1.05231][-0.848061,-0.21119,-0.485995][0.17943,0.787011,0][-1.7433,-0.122443,-1.10947][-0.852969,0.004064,-0.521946][0.150752,0.787011,0][-1.7433,0.341192,-1.04164][-0.860899,0.132583,-0.491197][0.119307,0.787011,0][-1.28509,0.53161,-1.49947][-0.604042,0.20212,-0.770896][0.106392,0.755934,0][-1.28509,-0.122443,-1.58598][-0.59261,-0.00288131,-0.805484][0.150752,0.755934,0][-1.28509,-0.122443,-1.58598][-0.59261,-0.00288131,-0.805484][0.150752,0.755934,0][-1.7433,-0.122443,-1.10947][-0.852969,0.004064,-0.521946][0.150752,0.787011,0][-1.7433,0.341192,-1.04164][-0.860899,0.132583,-0.491197][0.119307,0.787011,0][-1.7433,0.8021,-0.851246][-0.870864,0.250485,-0.422911][0.0880466,0.787011,0][-1.28509,1.15839,-1.2467][-0.619218,0.417346,-0.665125][0.0638823,0.755934,0][-1.28509,0.53161,-1.49947][-0.604042,0.20212,-0.770896][0.106392,0.755934,0][-1.28509,0.53161,-1.49947][-0.604042,0.20212,-0.770896][0.106392,0.755934,0][-1.7433,0.341192,-1.04164][-0.860899,0.132583,-0.491197][0.119307,0.787011,0][-1.7433,0.8021,-0.851246][-0.870864,0.250485,-0.422911][0.0880466,0.787011,0][-1.7433,1.15839,-0.553169][-0.862016,0.460359,-0.212128][0.050752,0.859862,0][-1.28509,1.59744,-0.843978][-0.622862,0.6903,-0.368142][0.0209743,0.840138,0][-1.28509,1.15839,-1.2467][-0.619218,0.417346,-0.665125][0.050752,0.812825,0][-1.28509,1.15839,-1.2467][-0.619218,0.417346,-0.665125][0.050752,0.812825,0][-1.7433,0.8021,-0.851246][-0.870864,0.250485,-0.422911][0.0749164,0.839645,0][-1.7433,1.15839,-0.553169][-0.862016,0.460359,-0.212128][0.050752,0.859862,0][-1.67513,1.26529,-0.0512884][-0.836239,0.548152,-0.0152811][0.0435013,0.893901,0][-1.21692,1.75925,-0.201828][-0.615612,0.775462,-0.140287][0.01,0.883691,0][-1.28509,1.59744,-0.843978][-0.622862,0.6903,-0.368142][0.0209743,0.840138,0][-1.28509,1.59744,-0.843978][-0.622862,0.6903,-0.368142][0.0209743,0.840138,0][-1.7433,1.15839,-0.553169][-0.862016,0.460359,-0.212128][0.050752,0.859862,0][-1.67513,1.26529,-0.0512884][-0.836239,0.548152,-0.0152811][0.0435013,0.893901,0][-1.21741,1.83326,-0.425188][-0.556965,0.822057,-0.118371][0.503528,0.43235,0][-1.67562,1.34243,-0.273835][-0.773399,0.626746,-0.0951005][0.476514,0.450828,0][-1.67376,1.40625,0.142544][-0.742377,0.662735,-0.098274][0.454141,0.433596,0][-1.21741,1.83326,-0.425188][-0.738504,0.668058,-0.0911569][0.988053,0.473782,0][-1.67376,1.40625,0.142544][-0.738504,0.668058,-0.0911569][0.949548,0.504734,0][-1.21041,1.91971,0.151673][-0.738504,0.668058,-0.0911569][0.948928,0.473308,0][-1.9707,0.633799,0.34137][-0.964888,0.244164,0.0968263][0.654239,0.0492786,0][-1.67611,1.34451,0.565225][-0.861357,0.496897,0.10563][0.604645,0.039558,0][-1.67376,1.40625,0.142544][-0.840367,0.536673,0.0759298][0.614679,0.0123792,0][-1.67376,1.40625,0.142544][-0.840367,0.536673,0.0759298][0.614679,0.0123792,0][-1.97037,0.678259,0.126085][-0.963209,0.263489,0.0529307][0.658574,0.0350134,0][-1.9707,0.633799,0.34137][-0.964888,0.244164,0.0968263][0.654239,0.0492786,0][-1.96964,0.514704,0.536183][-0.967285,0.191004,0.166968][0.655013,0.0647454,0][-1.67541,1.20949,0.983242][-0.885296,0.386772,0.258185][0.599128,0.0688361,0][-1.67611,1.34451,0.565225][-0.861357,0.496897,0.10563][0.604645,0.039558,0][-1.67611,1.34451,0.565225][-0.861357,0.496897,0.10563][0.604645,0.039558,0][-1.9707,0.633799,0.34137][-0.964888,0.244164,0.0968263][0.654239,0.0492786,0][-1.96964,0.514704,0.536183][-0.967285,0.191004,0.166968][0.655013,0.0647454,0][-1.96871,0.327678,0.685541][-0.963734,0.123987,0.236312][0.661308,0.0797082,0][-1.6615,0.868282,1.26886][-0.856348,0.209039,0.472199][0.610186,0.0969165,0][-1.67541,1.20949,0.983242][-0.885296,0.386772,0.258185][0.599128,0.0688361,0][-1.67541,1.20949,0.983242][-0.885296,0.386772,0.258185][0.599128,0.0688361,0][-1.96964,0.514704,0.536183][-0.967285,0.191004,0.166968][0.655013,0.0647454,0][-1.96871,0.327678,0.685541][-0.963734,0.123987,0.236312][0.661308,0.0797082,0][-1.96972,0.0907946,0.768792][-0.957274,0.0536013,0.284171][0.672717,0.0923509,0][-1.67061,0.348396,1.38969][-0.829803,0.0742575,0.553093][0.637233,0.120977,0][-1.6615,0.868282,1.26886][-0.856348,0.209039,0.472199][0.610186,0.0969165,0][-1.6615,0.868282,1.26886][-0.856348,0.209039,0.472199][0.610186,0.0969165,0][-1.96871,0.327678,0.685541][-0.963734,0.123987,0.236312][0.661308,0.0797082,0][-1.96972,0.0907946,0.768792][-0.957274,0.0536013,0.284171][0.672717,0.0923509,0][-1.9698,-0.153134,0.784907][-0.952542,-0.0244717,0.303422][0.686723,0.101223,0][-1.67562,-0.157175,1.39593][-0.815098,-0.0593777,0.576273][0.667144,0.137748,0][-1.67061,0.348396,1.38969][-0.829803,0.0742575,0.553093][0.637233,0.120977,0][-1.67061,0.348396,1.38969][-0.829803,0.0742575,0.553093][0.637233,0.120977,0][-1.96972,0.0907946,0.768792][-0.957274,0.0536013,0.284171][0.672717,0.0923509,0][-1.9698,-0.153134,0.784907][-0.952542,-0.0244717,0.303422][0.686723,0.101223,0][-1.9698,-0.379571,0.736703][-0.950462,-0.109715,0.290835][0.701774,0.105697,0][-1.67562,-0.580063,1.29917][-0.807844,-0.213985,0.54918][0.695471,0.145703,0][-1.67562,-0.157175,1.39593][-0.815098,-0.0593777,0.576273][0.667144,0.137748,0][-1.67562,-0.157175,1.39593][-0.815098,-0.0593777,0.576273][0.667144,0.137748,0][-1.9698,-0.153134,0.784907][-0.952542,-0.0244717,0.303422][0.686723,0.101223,0][-1.9698,-0.379571,0.736703][-0.950462,-0.109715,0.290835][0.701774,0.105697,0][-1.9698,-0.576186,0.628031][-0.950228,-0.188555,0.248018][0.71701,0.105602,0][-1.67562,-0.955647,1.0867][-0.80766,-0.356959,0.469325][0.724733,0.145231,0][-1.67562,-0.580063,1.29917][-0.807844,-0.213985,0.54918][0.695471,0.145703,0][-1.67562,-0.580063,1.29917][-0.807844,-0.213985,0.54918][0.695471,0.145703,0][-1.9698,-0.379571,0.736703][-0.950462,-0.109715,0.290835][0.701774,0.105697,0][-1.9698,-0.576186,0.628031][-0.950228,-0.188555,0.248018][0.71701,0.105602,0][-1.9698,-0.732399,0.468222][-0.951925,-0.246464,0.181918][0.731498,0.101151,0][-1.67562,-1.26261,0.778364][-0.814153,-0.465256,0.347407][0.753019,0.136823,0][-1.67562,-0.955647,1.0867][-0.80766,-0.356959,0.469325][0.724733,0.145231,0][-1.67562,-0.955647,1.0867][-0.80766,-0.356959,0.469325][0.724733,0.145231,0][-1.9698,-0.576186,0.628031][-0.950228,-0.188555,0.248018][0.71701,0.105602,0][-1.9698,-0.732399,0.468222][-0.951925,-0.246464,0.181918][0.731498,0.101151,0][-1.9698,-0.834227,0.273624][-0.954625,-0.281371,0.0975787][0.743876,0.0928631,0][-1.67562,-1.45969,0.41219][-0.77225,-0.611712,0.171577][0.776635,0.121405,0][-1.67562,-1.26261,0.778364][-0.814153,-0.465256,0.347407][0.753019,0.136823,0][-1.67562,-1.26261,0.778364][-0.814153,-0.465256,0.347407][0.753019,0.136823,0][-1.9698,-0.732399,0.468222][-0.951925,-0.246464,0.181918][0.731498,0.101151,0][-1.9698,-0.834227,0.273624][-0.954625,-0.281371,0.0975787][0.743876,0.0928631,0][-1.9698,-0.869648,0.063622][-0.956862,-0.290541,0.00108946][0.752798,0.0815038,0][-1.67562,-1.5276,0.0231769][-0.755696,-0.654923,0.000283869][0.793299,0.100437,0][-1.67562,-1.45969,0.41219][-0.77225,-0.611712,0.171577][0.776635,0.121405,0][-1.67562,-1.45969,0.41219][-0.77225,-0.611712,0.171577][0.776635,0.121405,0][-1.9698,-0.834227,0.273624][-0.954625,-0.281371,0.0975787][0.743876,0.0928631,0][-1.9698,-0.869648,0.063622][-0.956862,-0.290541,0.00108946][0.752798,0.0815038,0][-1.9698,-0.834249,-0.14243][-0.957465,-0.272014,-0.0962711][0.757373,0.0680825,0][-1.67562,-1.45969,-0.356561][-0.761535,-0.610233,-0.218359][0.801572,0.0756163,0][-1.67562,-1.5276,0.0231769][-0.755696,-0.654923,0.000283869][0.793299,0.100437,0][-1.67562,-1.5276,0.0231769][-0.755696,-0.654923,0.000283869][0.793299,0.100437,0][-1.9698,-0.869648,0.063622][-0.956862,-0.290541,0.00108946][0.752798,0.0815038,0][-1.9698,-0.834249,-0.14243][-0.957465,-0.272014,-0.0962711][0.757373,0.0680825,0][-1.9698,-0.732372,-0.325979][-0.956245,-0.22851,-0.182698][0.757259,0.0538451,0][-1.67562,-1.26261,-0.696755][-0.811245,-0.471864,-0.345291][0.800868,0.0489605,0][-1.67562,-1.45969,-0.356561][-0.761535,-0.610233,-0.218359][0.801572,0.0756163,0][-1.67562,-1.45969,-0.356561][-0.761535,-0.610233,-0.218359][0.801572,0.0756163,0][-1.9698,-0.834249,-0.14243][-0.957465,-0.272014,-0.0962711][0.757373,0.0680825,0][-1.9698,-0.732372,-0.325979][-0.956245,-0.22851,-0.182698][0.757259,0.0538451,0][-1.9698,-0.575096,-0.470178][-0.955822,-0.197565,-0.217652][0.752569,0.0401546,0][-1.67562,-0.955647,-0.967456][-0.825364,-0.372962,-0.423879][0.791366,0.0228796,0][-1.67562,-1.26261,-0.696755][-0.811245,-0.471864,-0.345291][0.800868,0.0489605,0][-1.67562,-1.26261,-0.696755][-0.811245,-0.471864,-0.345291][0.800868,0.0489605,0][-1.9698,-0.732372,-0.325979][-0.956245,-0.22851,-0.182698][0.757259,0.0538451,0][-1.9698,-0.575096,-0.470178][-0.955822,-0.197565,-0.217652][0.752569,0.0401546,0][-1.96932,-0.450779,-0.345996][-0.965602,-0.0946532,-0.242187][0.15989,0.873913,0][-1.7433,-0.545279,-1.05231][-0.848061,-0.21119,-0.485995][0.166299,0.826009,0][-1.67513,-1.0311,-0.756071][-0.829868,-0.359638,-0.426591][0.199249,0.846101,0][-1.67513,-1.0311,-0.756071][-0.829868,-0.359638,-0.426591][0.199249,0.846101,0][-1.96932,-0.649099,-0.256113][-0.727374,-0.0385191,-0.68516][0.173341,0.880009,0][-1.96932,-0.450779,-0.345996][-0.965602,-0.0946532,-0.242187][0.15989,0.873913,0][-1.96932,-0.226262,-0.373039][-0.973276,0.00290319,-0.229618][0.144663,0.872079,0][-1.7433,-0.122443,-1.10947][-0.852969,0.004064,-0.521946][0.137622,0.822132,0][-1.7433,-0.545279,-1.05231][-0.848061,-0.21119,-0.485995][0.166299,0.826009,0][-1.7433,-0.545279,-1.05231][-0.848061,-0.21119,-0.485995][0.166299,0.826009,0][-1.96932,-0.450779,-0.345996][-0.965602,-0.0946532,-0.242187][0.15989,0.873913,0][-1.96932,-0.226262,-0.373039][-0.973276,0.00290319,-0.229618][0.144663,0.872079,0][-1.96932,0.00918819,-0.333286][-0.974907,0.0630338,-0.213504][0.128694,0.874775,0][-1.7433,0.341192,-1.04164][-0.860899,0.132583,-0.491197][0.106176,0.826733,0][-1.7433,-0.122443,-1.10947][-0.852969,0.004064,-0.521946][0.137622,0.822132,0][-1.7433,-0.122443,-1.10947][-0.852969,0.004064,-0.521946][0.137622,0.822132,0][-1.96932,-0.226262,-0.373039][-0.973276,0.00290319,-0.229618][0.144663,0.872079,0][-1.96932,0.00918819,-0.333286][-0.974907,0.0630338,-0.213504][0.128694,0.874775,0][-1.96932,0.237374,-0.22914][-0.977197,0.110956,-0.181037][0.113218,0.881838,0][-1.7433,0.8021,-0.851246][-0.870864,0.250485,-0.422911][0.0749164,0.839645,0][-1.7433,0.341192,-1.04164][-0.860899,0.132583,-0.491197][0.106176,0.826733,0][-1.7433,0.341192,-1.04164][-0.860899,0.132583,-0.491197][0.106176,0.826733,0][-1.96932,0.00918819,-0.333286][-0.974907,0.0630338,-0.213504][0.128694,0.874775,0][-1.96932,0.237374,-0.22914][-0.977197,0.110956,-0.181037][0.113218,0.881838,0][-1.96932,0.42779,-0.0698175][-0.979476,0.15122,-0.133261][0.100303,0.892644,0][-1.7433,1.15839,-0.553169][-0.862016,0.460359,-0.212128][0.050752,0.859862,0][-1.7433,0.8021,-0.851246][-0.870864,0.250485,-0.422911][0.0749164,0.839645,0][-1.7433,0.8021,-0.851246][-0.870864,0.250485,-0.422911][0.0749164,0.839645,0][-1.96932,0.237374,-0.22914][-0.977197,0.110956,-0.181037][0.113218,0.881838,0][-1.96932,0.42779,-0.0698175][-0.979476,0.15122,-0.133261][0.100303,0.892644,0][-1.96964,0.55051,0.128258][-0.974995,0.208523,-0.0768278][0.0919799,0.906078,0][-1.67513,1.26529,-0.0512884][-0.836239,0.548152,-0.0152811][0.0435013,0.893901,0][-1.7433,1.15839,-0.553169][-0.862016,0.460359,-0.212128][0.050752,0.859862,0][-1.7433,1.15839,-0.553169][-0.862016,0.460359,-0.212128][0.050752,0.859862,0][-1.96932,0.42779,-0.0698175][-0.979476,0.15122,-0.133261][0.100303,0.892644,0][-1.96964,0.55051,0.128258][-0.974995,0.208523,-0.0768278][0.0919799,0.906078,0][-1.67562,1.34243,-0.273835][-0.773399,0.626746,-0.0951005][0.883716,0.927339,0][-1.96981,0.63837,-0.0907164][-0.926778,0.368974,-0.0702842][0.83632,0.941051,0][-1.97037,0.678259,0.126085][-0.926778,0.368974,-0.0702842][0.831136,0.927027,0][-1.67562,1.34243,-0.273835][-0.924318,0.377812,-0.0537934][0.724773,0.970274,0][-1.97037,0.678259,0.126085][-0.924318,0.377812,-0.0537934][0.676116,0.95034,0][-1.67376,1.40625,0.142544][-0.924318,0.377812,-0.0537934][0.724742,0.941704,0][-2.07117,-0.149335,0.0986969][-0.992486,0.12012,0.0232775][0.708756,0.0602275,0][-1.9707,0.633799,0.34137][-0.964888,0.244164,0.0968263][0.654239,0.0492786,0][-1.97037,0.678259,0.126085][-0.963209,0.263489,0.0529307][0.658574,0.0350134,0][-2.07117,-0.149335,0.0986969][-0.991946,0.105582,0.0699693][0.708756,0.0602275,0][-1.96964,0.514704,0.536183][-0.967285,0.191004,0.166968][0.655013,0.0647454,0][-1.9707,0.633799,0.34137][-0.964888,0.244164,0.0968263][0.654239,0.0492786,0][-2.07117,-0.149335,0.0986969][-0.990933,0.0808037,0.107344][0.708756,0.0602275,0][-1.96871,0.327678,0.685541][-0.963734,0.123987,0.236312][0.661308,0.0797082,0][-1.96964,0.514704,0.536183][-0.967285,0.191004,0.166968][0.655013,0.0647454,0][-2.07117,-0.149335,0.0986969][-0.98999,0.050545,0.131775][0.708756,0.0602275,0][-1.96972,0.0907946,0.768792][-0.957274,0.0536013,0.284171][0.672717,0.0923509,0][-1.96871,0.327678,0.685541][-0.963734,0.123987,0.236312][0.661308,0.0797082,0][-2.07117,-0.149335,0.0986969][-0.989207,0.00999996,0.146186][0.708756,0.0602275,0][-1.9698,-0.153134,0.784907][-0.952542,-0.0244717,0.303422][0.686723,0.101223,0][-1.96972,0.0907946,0.768792][-0.957274,0.0536013,0.284171][0.672717,0.0923509,0][-2.07117,-0.149335,0.0986969][-0.988812,-0.0310584,0.145901][0.708756,0.0602275,0][-1.9698,-0.379571,0.736703][-0.950462,-0.109715,0.290835][0.701774,0.105697,0][-1.9698,-0.153134,0.784907][-0.952542,-0.0244717,0.303422][0.686723,0.101223,0][-2.07117,-0.149335,0.0986969][-0.988739,-0.0723922,0.130973][0.708756,0.0602275,0][-1.9698,-0.576186,0.628031][-0.950228,-0.188555,0.248018][0.71701,0.105602,0][-1.9698,-0.379571,0.736703][-0.950462,-0.109715,0.290835][0.701774,0.105697,0][-2.07117,-0.149335,0.0986969][-0.988919,-0.106163,0.103775][0.708756,0.0602275,0][-1.9698,-0.732399,0.468222][-0.951925,-0.246464,0.181918][0.731498,0.101151,0][-1.9698,-0.576186,0.628031][-0.950228,-0.188555,0.248018][0.71701,0.105602,0][-2.07117,-0.149335,0.0986969][-0.989317,-0.129166,0.067589][0.708756,0.0602275,0][-1.9698,-0.834227,0.273624][-0.954625,-0.281371,0.0975787][0.743876,0.0928631,0][-1.9698,-0.732399,0.468222][-0.951925,-0.246464,0.181918][0.731498,0.101151,0][-2.07117,-0.149335,0.0986969][-0.989804,-0.14045,0.0236909][0.708756,0.0602275,0][-1.9698,-0.869648,0.063622][-0.956862,-0.290541,0.00108946][0.752798,0.0815038,0][-1.9698,-0.834227,0.273624][-0.954625,-0.281371,0.0975787][0.743876,0.0928631,0][-2.07117,-0.149335,0.0986969][-0.990122,-0.138185,-0.0237405][0.708756,0.0602275,0][-1.9698,-0.834249,-0.14243][-0.957465,-0.272014,-0.0962711][0.757373,0.0680825,0][-1.9698,-0.869648,0.063622][-0.956862,-0.290541,0.00108946][0.752798,0.0815038,0][-2.07117,-0.149335,0.0986969][-0.990122,-0.122588,-0.068042][0.708756,0.0602275,0][-1.9698,-0.732372,-0.325979][-0.956245,-0.22851,-0.182698][0.757259,0.0538451,0][-1.9698,-0.834249,-0.14243][-0.957465,-0.272014,-0.0962711][0.757373,0.0680825,0][-2.07117,-0.149335,0.0986969][-0.989878,-0.095911,-0.104609][0.708756,0.0602275,0][-1.9698,-0.575096,-0.470178][-0.955822,-0.197565,-0.217652][0.752569,0.0401546,0][-1.9698,-0.732372,-0.325979][-0.956245,-0.22851,-0.182698][0.757259,0.0538451,0][-2.07069,-0.216206,0.288643][0.921895,0.372102,-0.107935][0.143981,0.916956,0][-1.96932,-0.226262,-0.373039][-0.973276,0.00290319,-0.229618][0.144663,0.872079,0][-1.96932,-0.450779,-0.345996][-0.965602,-0.0946532,-0.242187][0.15989,0.873913,0][-2.07069,-0.216206,0.288643][-0.988084,0.0256253,-0.151765][0.143981,0.916956,0][-1.96932,0.00918819,-0.333286][-0.974907,0.0630338,-0.213504][0.128694,0.874775,0][-1.96932,-0.226262,-0.373039][-0.973276,0.00290319,-0.229618][0.144663,0.872079,0][-2.07069,-0.216206,0.288643][-0.988388,0.0630922,-0.138236][0.143981,0.916956,0][-1.96932,0.237374,-0.22914][-0.977197,0.110956,-0.181037][0.113218,0.881838,0][-1.96932,0.00918819,-0.333286][-0.974907,0.0630338,-0.213504][0.128694,0.874775,0][-2.07069,-0.216206,0.288643][-0.989324,0.0935163,-0.111768][0.143981,0.916956,0][-1.96932,0.42779,-0.0698175][-0.979476,0.15122,-0.133261][0.100303,0.892644,0][-1.96932,0.237374,-0.22914][-0.977197,0.110956,-0.181037][0.113218,0.881838,0][-2.07069,-0.216206,0.288643][-0.990644,0.115296,-0.0730119][0.143981,0.916956,0][-1.96964,0.55051,0.128258][-0.974995,0.208523,-0.0768278][0.0919799,0.906078,0][-1.96932,0.42779,-0.0698175][-0.979476,0.15122,-0.133261][0.100303,0.892644,0][-2.07117,-0.149335,0.0986969][-0.992255,0.121688,-0.0249557][0.573319,0.14536,0][-1.97037,0.678259,0.126085][-0.992255,0.121688,-0.0249557][0.627551,0.130769,0][-1.96981,0.63837,-0.0907164][-0.992255,0.121688,-0.0249557][0.628265,0.145703,0][2.07117,-0.149335,0.0986989][-0.985456,0.160664,0.0553562][0.643749,0.176812,0][1.96981,-0.575096,-0.470178][0.955284,-0.199833,-0.217943][0.691888,0.174561,0][1.9698,-0.627446,-0.318272][-0.985456,0.160664,0.0553562][0.686195,0.183853,0][1.9698,-0.627446,-0.318272][-0.985558,0.159602,0.0565992][0.691907,0.200574,0][2.07117,-0.204026,0.25289][-0.985558,0.159602,0.0565992][0.643749,0.203045,0][2.07117,-0.149335,0.0986989][-0.985558,0.159602,0.0565992][0.64946,0.193533,0][2.07117,-0.204026,0.25289][0.991176,0.112028,-0.0708532][0.857743,0.12786,0][1.97009,0.572163,0.0660988][0.957991,0.243173,-0.152056][0.911888,0.128207,0][1.96981,0.638371,-0.0907167][0.926239,0.373131,-0.0534337][0.918683,0.137541,0][1.96981,0.638371,-0.0907167][0.926239,0.373131,-0.0534337][0.918683,0.137541,0][2.07117,-0.149335,0.0986989][-0.989041,-0.139145,-0.0493647][0.863736,0.137198,0][2.07117,-0.204026,0.25289][0.991176,0.112028,-0.0708532][0.857743,0.12786,0][1.67562,-1.00944,-0.818233][-0.871992,0.462812,0.159483][0.72884,0.182284,0][1.9698,-0.627446,-0.318272][-0.985456,0.160664,0.0553562][0.686195,0.183853,0][1.96981,-0.575096,-0.470178][0.955284,-0.199833,-0.217943][0.691888,0.174561,0][1.96981,-0.575096,-0.470178][0.955284,-0.199833,-0.217943][0.691888,0.174561,0][1.67562,-0.955647,-0.967457][0.82551,-0.373884,-0.422782][0.73433,0.173032,0][1.67562,-1.00944,-0.818233][-0.871992,0.462812,0.159483][0.72884,0.182284,0][1.97009,0.572163,0.0660988][0.957991,0.243173,-0.152056][0.911888,0.128207,0][1.67562,1.28695,-0.11345][0.922057,0.328419,-0.204819][0.961866,0.129025,0][1.67562,1.34243,-0.273835][0.876172,0.477309,-0.0670709][0.968008,0.13876,0][1.67562,1.34243,-0.273835][0.876172,0.477309,-0.0670709][0.968008,0.13876,0][1.96981,0.638371,-0.0907167][0.926239,0.373131,-0.0534337][0.918683,0.137541,0][1.97009,0.572163,0.0660988][0.957991,0.243173,-0.152056][0.911888,0.128207,0][1.21741,-1.3164,-1.20368][-0.675257,0.693868,0.250151][0.479335,0.617121,0][1.67562,-1.00944,-0.818233][-0.871992,0.462812,0.159483][0.510412,0.590978,0][1.67562,-0.955647,-0.967457][0.82551,-0.373884,-0.422782][0.510412,0.601099,0][1.67562,-0.955647,-0.967457][0.82551,-0.373884,-0.422782][0.510412,0.601099,0][1.21741,-1.26261,-1.35086][0.609348,-0.522402,-0.596482][0.479335,0.627103,0][1.21741,-1.3164,-1.20368][-0.675257,0.693868,0.250151][0.479335,0.617121,0][1.67562,1.28695,-0.11345][0.922057,0.328419,-0.204819][0.767675,0.621113,0][1.21741,1.7809,-0.263989][-0.678552,-0.698615,-0.226945][0.736598,0.610903,0][1.21741,1.83326,-0.425187][0.658841,0.744826,-0.105652][0.736598,0.59997,0][1.21741,1.83326,-0.425187][0.658841,0.744826,-0.105652][0.736598,0.59997,0][1.67562,1.34243,-0.273835][0.876172,0.477309,-0.0670709][0.767675,0.610235,0][1.67562,1.28695,-0.11345][0.922057,0.328419,-0.204819][0.767675,0.621113,0][0.64003,-1.51348,-1.44632][-0.421542,0.851701,0.3113][0.440176,0.633577,0][1.21741,-1.3164,-1.20368][-0.675257,0.693868,0.250151][0.479335,0.617121,0][1.21741,-1.26261,-1.35086][0.609348,-0.522402,-0.596482][0.479335,0.627103,0][1.21741,-1.26261,-1.35086][0.609348,-0.522402,-0.596482][0.479335,0.627103,0][0.640029,-1.45969,-1.59245][0.258586,-0.770944,-0.582047][0.440176,0.643488,0][0.64003,-1.51348,-1.44632][-0.421542,0.851701,0.3113][0.440176,0.633577,0][1.21741,1.7809,-0.263989][-0.678552,-0.698615,-0.226945][0.736598,0.610903,0][0.640029,2.09429,-0.362318][-0.418692,-0.861511,-0.28722][0.697439,0.604234,0][0.640028,2.14808,-0.523674][0.382229,0.913795,-0.137405][0.697439,0.59329,0][0.640028,2.14808,-0.523674][0.382229,0.913795,-0.137405][0.697439,0.59329,0][1.21741,1.83326,-0.425187][0.658841,0.744826,-0.105652][0.736598,0.59997,0][1.21741,1.7809,-0.263989][-0.678552,-0.698615,-0.226945][0.736598,0.610903,0][6.6671e-007,-1.58139,-1.52921][-0.142833,0.928807,0.341929][0.396767,0.639199,0][0.64003,-1.51348,-1.44632][-0.421542,0.851701,0.3113][0.440176,0.633577,0][0.640029,-1.45969,-1.59245][0.258586,-0.770944,-0.582047][0.440176,0.643488,0][0.640029,-1.45969,-1.59245][0.258586,-0.770944,-0.582047][0.440176,0.643488,0][6.80607e-007,-1.5276,-1.67506][0.158088,-0.819041,-0.551525][0.396767,0.649091,0][6.6671e-007,-1.58139,-1.52921][-0.142833,0.928807,0.341929][0.396767,0.639199,0][0.640029,2.09429,-0.362318][-0.418692,-0.861511,-0.28722][0.697439,0.604234,0][6.84039e-007,2.20416,-0.396401][-0.144489,-0.938711,-0.312959][0.65403,0.601923,0][9.5449e-007,2.25796,-0.557765][0.0558251,0.986845,-0.151725][0.65403,0.590978,0][9.5449e-007,2.25796,-0.557765][0.0558251,0.986845,-0.151725][0.65403,0.590978,0][0.640028,2.14808,-0.523674][0.382229,0.913795,-0.137405][0.697439,0.59329,0][0.640029,2.09429,-0.362318][-0.418692,-0.861511,-0.28722][0.697439,0.604234,0][-0.640028,-1.51348,-1.44632][0.142886,0.928585,0.34251][0.353359,0.633577,0][6.6671e-007,-1.58139,-1.52921][-0.142833,0.928807,0.341929][0.396767,0.639199,0][6.80607e-007,-1.5276,-1.67506][0.158088,-0.819041,-0.551525][0.396767,0.649091,0][6.80607e-007,-1.5276,-1.67506][0.158088,-0.819041,-0.551525][0.396767,0.649091,0][-0.640028,-1.45969,-1.59245][-0.459144,-0.736871,-0.496194][0.353359,0.643488,0][-0.640028,-1.51348,-1.44632][0.142886,0.928585,0.34251][0.353359,0.633577,0][6.84039e-007,2.20416,-0.396401][-0.144489,-0.938711,-0.312959][0.65403,0.601923,0][-0.640028,2.09428,-0.362317][0.144489,-0.938711,-0.31296][0.610622,0.604234,0][-0.640028,2.14808,-0.523673][-0.274403,0.951031,-0.142278][0.610622,0.59329,0][-0.640028,2.14808,-0.523673][-0.274403,0.951031,-0.142278][0.610622,0.59329,0][9.5449e-007,2.25796,-0.557765][0.0558251,0.986845,-0.151725][0.65403,0.590978,0][6.84039e-007,2.20416,-0.396401][-0.144489,-0.938711,-0.312959][0.65403,0.601923,0][-1.21741,-1.3164,-1.20368][0.422019,0.850769,0.313196][0.314199,0.617121,0][-0.640028,-1.51348,-1.44632][0.142886,0.928585,0.34251][0.353359,0.633577,0][-0.640028,-1.45969,-1.59245][-0.459144,-0.736871,-0.496194][0.353359,0.643488,0][-0.640028,-1.45969,-1.59245][-0.459144,-0.736871,-0.496194][0.353359,0.643488,0][-1.21741,-1.26261,-1.35086][-0.562466,-0.584124,-0.585177][0.314199,0.627103,0][-1.21741,-1.3164,-1.20368][0.422019,0.850769,0.313196][0.314199,0.617121,0][-0.640028,2.09428,-0.362317][0.144489,-0.938711,-0.31296][0.610622,0.604234,0][-1.21741,1.7809,-0.263989][0.420603,-0.862861,-0.280294][0.571462,0.610903,0][-1.21741,1.83326,-0.425188][-0.556965,0.822057,-0.118371][0.571463,0.59997,0][-1.21741,1.83326,-0.425188][-0.556965,0.822057,-0.118371][0.571463,0.59997,0][-0.640028,2.14808,-0.523673][-0.274403,0.951031,-0.142278][0.610622,0.59329,0][-0.640028,2.09428,-0.362317][0.144489,-0.938711,-0.31296][0.610622,0.604234,0][-1.67562,-1.00944,-0.818232][0.676252,0.691901,0.252897][0.283122,0.590978,0][-1.21741,-1.3164,-1.20368][0.422019,0.850769,0.313196][0.314199,0.617121,0][-1.21741,-1.26261,-1.35086][-0.562466,-0.584124,-0.585177][0.314199,0.627103,0][-1.21741,-1.26261,-1.35086][-0.562466,-0.584124,-0.585177][0.314199,0.627103,0][-1.67562,-0.955647,-0.967456][-0.825364,-0.372962,-0.423879][0.283122,0.601099,0][-1.67562,-1.00944,-0.818232][0.676252,0.691901,0.252897][0.283122,0.590978,0][-1.21741,1.7809,-0.263989][0.420603,-0.862861,-0.280294][0.571462,0.610903,0][-1.67562,1.28695,-0.113449][0.673585,-0.698489,-0.241652][0.540385,0.621113,0][-1.67562,1.34243,-0.273835][-0.773399,0.626746,-0.0951005][0.540385,0.610235,0][-1.67562,1.34243,-0.273835][-0.773399,0.626746,-0.0951005][0.540385,0.610235,0][-1.21741,1.83326,-0.425188][-0.556965,0.822057,-0.118371][0.571463,0.59997,0][-1.21741,1.7809,-0.263989][0.420603,-0.862861,-0.280294][0.571462,0.610903,0][-1.9698,-0.627445,-0.318273][0.15475,0.0809724,0.0291911][0.11716,0.984042,0][-1.67562,-1.00944,-0.818232][0.676252,0.691901,0.252897][0.0744868,0.984067,0][-1.67562,-0.955647,-0.967456][-0.825364,-0.372962,-0.423879][0.0686545,0.975027,0][-1.67562,-0.955647,-0.967456][-0.825364,-0.372962,-0.423879][0.0686545,0.975027,0][-1.9698,-0.575096,-0.470178][-0.955822,-0.197565,-0.217652][0.111124,0.974969,0][-1.9698,-0.627445,-0.318273][0.15475,0.0809724,0.0291911][0.11716,0.984042,0][-1.67562,1.28695,-0.113449][0.673585,-0.698489,-0.241652][0.850496,0.809443,0][-1.97012,0.572163,0.066097][0.894813,-0.41192,-0.172138][0.800524,0.808301,0][-1.96981,0.63837,-0.0907164][-0.926778,0.368974,-0.0702842][0.807679,0.799241,0][-1.96981,0.63837,-0.0907164][-0.926778,0.368974,-0.0702842][0.807679,0.799241,0][-1.67562,1.34243,-0.273835][-0.773399,0.626746,-0.0951005][0.857015,0.799956,0][-1.67562,1.28695,-0.113449][0.673585,-0.698489,-0.241652][0.850496,0.809443,0][-2.07117,-0.204026,0.252889][0.160895,0.0262958,0.00906199][0.165377,0.984713,0][-1.9698,-0.627445,-0.318273][0.15475,0.0809724,0.0291911][0.11716,0.984042,0][-1.9698,-0.575096,-0.470178][-0.955822,-0.197565,-0.217652][0.111124,0.974969,0][-1.9698,-0.575096,-0.470178][-0.955822,-0.197565,-0.217652][0.111124,0.974969,0][-2.07117,-0.149335,0.0986969][0.985627,0.159215,0.0564727][0.159314,0.97542,0][-2.07117,-0.204026,0.252889][0.160895,0.0262958,0.00906199][0.165377,0.984713,0][-2.07117,-0.149335,0.0986969][0.988329,-0.14103,-0.0575806][0.752762,0.79743,0][-1.96981,0.63837,-0.0907164][-0.926778,0.368974,-0.0702842][0.807679,0.799241,0][-1.97012,0.572163,0.066097][0.894813,-0.41192,-0.172138][0.800524,0.808301,0][-1.97012,0.572163,0.066097][0.988786,-0.140748,-0.0499225][0.367644,0.618287,0][-2.07117,-0.204026,0.252889][0.988786,-0.140748,-0.0499225][0.421739,0.615917,0][-2.07117,-0.149335,0.0986969][0.988786,-0.140748,-0.0499225][0.416098,0.625473,0][-0.000326695,-1.85099,0.0072372][0,-1,0][0.131575,0.397873,0][-1.71452,-1.85099,-0.549737][0,-1.36136,0][0.0153134,0.360098,0][-1.33977,-1.85099,-1.19881][0,-2.72271,0][0.0407294,0.316076,0][-0.000326695,-1.85099,0.0072372][0,-1,0][0.131575,0.397873,0][-1.33977,-1.85099,-1.19881][0,-2.72271,0][0.0407294,0.316076,0][-0.733431,-1.85099,-1.63934][0,-2.72271,0][0.0818533,0.286198,0][-0.000326695,-1.85099,0.0072372][0,-1,0][0.131575,0.397873,0][-0.733431,-1.85099,-1.63934][0,-2.72271,0][0.0818533,0.286198,0][-0.000326543,-1.85099,-1.79517][0,-2.72271,0][0.131575,0.275629,0][-0.000326695,-1.85099,0.0072372][0,-1,0][0.131575,0.397873,0][-0.000326543,-1.85099,-1.79517][0,-2.72271,0][0.131575,0.275629,0][0.732778,-1.85099,-1.63934][0,-2.72272,0][0.181296,0.286198,0][-0.000326695,-1.85099,0.0072372][0,-1,0][0.131575,0.397873,0][0.732778,-1.85099,-1.63934][0,-2.72272,0][0.181296,0.286198,0][1.33912,-1.85099,-1.19881][-1.48124e-007,-2.72271,-1.64509e-007][0.22242,0.316076,0][-0.000326695,-1.85099,0.0072372][0,-1,0][0.131575,0.397873,0][1.33912,-1.85099,-1.19881][-1.48124e-007,-2.72271,-1.64509e-007][0.22242,0.316076,0][1.71386,-1.85099,-0.549736][-2.39671e-007,-2.72271,-1.54887e-007][0.247836,0.360098,0][-0.000326695,-1.85099,0.0072372][0,-1,0][0.131575,0.397873,0][1.71386,-1.85099,-0.549736][-2.39671e-007,-2.72271,-1.54887e-007][0.247836,0.360098,0][1.7922,-1.85099,0.19564][-1.79091e-007,-2.72271,0][0.253149,0.410651,0][-0.000326695,-1.85099,0.0072372][0,-1,0][0.131575,0.397873,0][1.7922,-1.85099,0.19564][-1.79091e-007,-2.72271,0][0.253149,0.410651,0][1.5606,-1.85099,0.90844][-1.55952e-007,-2.72271,0][0.237441,0.458995,0][-0.000326695,-1.85099,0.0072372][0,-1,0][0.131575,0.397873,0][1.5606,-1.85099,0.90844][-1.55952e-007,-2.72271,0][0.237441,0.458995,0][1.0591,-1.85099,1.46541][0,-2.72271,-1.45686e-007][0.203428,0.496771,0][-0.000326695,-1.85099,0.0072372][0,-1,0][0.131575,0.397873,0][1.0591,-1.85099,1.46541][0,-2.72271,-1.45686e-007][0.203428,0.496771,0][0.374415,-1.85099,1.77026][0,-2.72271,-1.76142e-007][0.156991,0.517446,0][-0.000326695,-1.85099,0.0072372][0,-1,0][0.131575,0.397873,0][0.374415,-1.85099,1.77026][0,-2.72271,-1.76142e-007][0.156991,0.517446,0][-0.375067,-1.85099,1.77026][-1.79091e-007,-2.72271,-2.22168e-007][0.106159,0.517446,0][-0.000326695,-1.85099,0.0072372][0,-1,0][0.131575,0.397873,0][-0.375067,-1.85099,1.77026][-1.79091e-007,-2.72271,-2.22168e-007][0.106159,0.517446,0][-1.05975,-1.85099,1.46541][-1.79091e-007,-2.72271,-1.30117e-007][0.0597213,0.496771,0][-0.000326695,-1.85099,0.0072372][0,-1,0][0.131575,0.397873,0][-1.05975,-1.85099,1.46541][-1.79091e-007,-2.72271,-1.30117e-007][0.0597213,0.496771,0][-1.56126,-1.85099,0.90844][0,-2.72271,0][0.025708,0.458995,0][-0.000326695,-1.85099,0.0072372][0,-1,0][0.131575,0.397873,0][-1.56126,-1.85099,0.90844][0,-2.72271,0][0.025708,0.458995,0][-1.79286,-1.85099,0.19564][0,-2.72271,0][0.01,0.410651,0][-0.000326695,-1.85099,0.0072372][0,-1,0][0.131575,0.397873,0][-1.79286,-1.85099,0.19564][0,-2.72271,0][0.01,0.410651,0][-1.71452,-1.85099,-0.549737][0,-1,0][0.0153134,0.360098,0][-0.000326543,-1.85099,-1.79517][0,-2.72271,0][0.886089,0.400169,0][-0.733431,-1.85099,-1.63934][0,-2.72271,0][0.836368,0.400169,0][-0.733431,-1.33743,-1.63823][-1.25869,0.00506456,-2.80224][0.836368,0.365338,0][-0.733431,-1.33743,-1.63823][-1.25869,0.00506456,-2.80224][0.836368,0.365338,0][-0.000326272,-1.33743,-1.79493][-0.00107902,0.00242506,-3.07261][0.886089,0.365338,0][-0.000326543,-1.85099,-1.79517][0,-2.72271,0][0.886089,0.400169,0][-0.733431,-1.85099,-1.63934][0,-2.72271,0][0.836368,0.400169,0][-1.33977,-1.85099,-1.19881][0,-2.72271,0][0.795244,0.400169,0][-1.33977,-1.33743,-1.19221][-2.29894,0.0210791,-2.04077][0.795244,0.365338,0][-1.33977,-1.33743,-1.19221][-2.29894,0.0210791,-2.04077][0.795244,0.365338,0][-0.733431,-1.33743,-1.63823][-1.25869,0.00506456,-2.80224][0.836368,0.365338,0][-0.733431,-1.85099,-1.63934][0,-2.72271,0][0.836368,0.400169,0][-1.33977,-1.85099,-1.19881][0,-2.72271,0][0.600052,0.953192,0][-1.71452,-1.85099,-0.549737][0,-1.36136,0][0.644074,0.953192,0][-1.71452,-1.33743,-0.529005][-1.33252,0.0228196,-0.763016][0.64548,0.988024,0][-1.71452,-1.33743,-0.529005][-1.33252,0.0228196,-0.763016][0.64548,0.988024,0][-1.33977,-1.33743,-1.19221][-2.29894,0.0210791,-2.04077][0.6005,0.988024,0][-1.33977,-1.85099,-1.19881][0,-2.72271,0][0.600052,0.953192,0][-1.71452,-1.85099,-0.549737][-0.994802,0.00410743,-0.101749][0.522141,0.415997,0][-1.79286,-1.33743,0.236952][-0.994802,0.00410743,-0.101749][0.575496,0.450828,0][-1.71452,-1.33743,-0.529005][-0.994802,0.00410743,-0.101749][0.523547,0.450828,0][-1.71452,-1.85099,-0.549737][-0.994487,0.00840725,-0.104525][0.797649,0.590978,0][-1.79286,-1.85099,0.19564][0,-2.72271,0][0.848202,0.590978,0][-1.79286,-1.33743,0.236952][-2.47985,-0.0322903,0.401382][0.851004,0.625809,0][-1.79286,-1.85099,0.19564][0,-2.72271,0][0.848202,0.590978,0][-1.56126,-1.85099,0.90844][0,-2.72271,0][0.896546,0.590978,0][-1.56126,-1.33743,0.968585][-2.62784,-0.174224,1.54118][0.900626,0.625809,0][-1.56126,-1.33743,0.968585][-2.62784,-0.174224,1.54118][0.900626,0.625809,0][-1.79286,-1.33743,0.236952][-2.47985,-0.0322903,0.401382][0.851004,0.625809,0][-1.79286,-1.85099,0.19564][0,-2.72271,0][0.848202,0.590978,0][-1.56126,-1.85099,0.90844][0,-2.72271,0][0.283122,0.679064,0][-1.05975,-1.85099,1.46541][-1.79091e-007,-2.72271,-1.30117e-007][0.317136,0.679064,0][-1.05975,-1.33743,1.53632][-1.7533,-0.329904,2.4466][0.317135,0.713895,0][-1.05975,-1.33743,1.53632][-1.7533,-0.329904,2.4466][0.317135,0.713895,0][-1.56126,-1.33743,0.968585][-2.62784,-0.174224,1.54118][0.283122,0.713895,0][-1.56126,-1.85099,0.90844][0,-2.72271,0][0.283122,0.679064,0][-1.05975,-1.85099,1.46541][-1.79091e-007,-2.72271,-1.30117e-007][0.317136,0.679064,0][-0.375067,-1.85099,1.77026][-1.79091e-007,-2.72271,-2.22168e-007][0.363573,0.679064,0][-0.375067,-1.33743,1.8446][-0.612069,-0.419638,2.92334][0.363573,0.713895,0][-0.375067,-1.33743,1.8446][-0.612069,-0.419638,2.92334][0.363573,0.713895,0][-1.05975,-1.33743,1.53632][-1.7533,-0.329904,2.4466][0.317135,0.713895,0][-1.05975,-1.85099,1.46541][-1.79091e-007,-2.72271,-1.30117e-007][0.317136,0.679064,0][-0.375067,-1.85099,1.77026][-1.79091e-007,-2.72271,-2.22168e-007][0.363573,0.679064,0][0.374415,-1.85099,1.77026][0,-2.72271,-1.76142e-007][0.414405,0.679064,0][0.374414,-1.33743,1.8446][0.615396,-0.422902,2.92138][0.414405,0.713895,0][0.374414,-1.33743,1.8446][0.615396,-0.422902,2.92138][0.414405,0.713895,0][-0.375067,-1.33743,1.8446][-0.612069,-0.419638,2.92334][0.363573,0.713895,0][-0.375067,-1.85099,1.77026][-1.79091e-007,-2.72271,-2.22168e-007][0.363573,0.679064,0][0.374415,-1.85099,1.77026][0,-2.72271,-1.76142e-007][0.414405,0.679064,0][1.0591,-1.85099,1.46541][0,-2.72271,-1.45686e-007][0.460842,0.679064,0][1.0591,-1.33743,1.53632][1.75446,-0.340805,2.44108][0.460842,0.713895,0][1.0591,-1.33743,1.53632][1.75446,-0.340805,2.44108][0.460842,0.713895,0][0.374414,-1.33743,1.8446][0.615396,-0.422902,2.92138][0.414405,0.713895,0][0.374415,-1.85099,1.77026][0,-2.72271,-1.76142e-007][0.414405,0.679064,0][1.0591,-1.85099,1.46541][0,-2.72271,-1.45686e-007][0.460842,0.679064,0][1.5606,-1.85099,0.90844][-1.55952e-007,-2.72271,0][0.494855,0.679064,0][1.5606,-1.33743,0.968586][2.62269,-0.189259,1.54145][0.494855,0.713895,0][1.5606,-1.33743,0.968586][2.62269,-0.189259,1.54145][0.494855,0.713895,0][1.0591,-1.33743,1.53632][1.75446,-0.340805,2.44108][0.460842,0.713895,0][1.0591,-1.85099,1.46541][0,-2.72271,-1.45686e-007][0.460842,0.679064,0][1.5606,-1.85099,0.90844][-1.55952e-007,-2.72271,0][0.740895,0.438404,0][1.7922,-1.85099,0.19564][-1.79091e-007,-2.72271,0][0.692551,0.438404,0][1.7922,-1.33743,0.236952][3.05067,-0.0352945,0.352624][0.695353,0.403573,0][1.7922,-1.33743,0.236952][3.05067,-0.0352945,0.352624][0.695353,0.403573,0][1.5606,-1.33743,0.968586][2.62269,-0.189259,1.54145][0.744975,0.403573,0][1.5606,-1.85099,0.90844][-1.55952e-007,-2.72271,0][0.740895,0.438404,0][1.7922,-1.85099,0.19564][-1.79091e-007,-2.72271,0][0.692551,0.438404,0][1.71386,-1.85099,-0.549736][-2.39671e-007,-2.72271,-1.54887e-007][0.641998,0.438404,0][1.71386,-1.33743,-0.529004][2.93899,0.039725,-0.921999][0.643404,0.403573,0][1.71386,-1.33743,-0.529004][2.93899,0.039725,-0.921999][0.643404,0.403573,0][1.7922,-1.33743,0.236952][3.05067,-0.0352945,0.352624][0.695353,0.403573,0][1.7922,-1.85099,0.19564][-1.79091e-007,-2.72271,0][0.692551,0.438404,0][1.71386,-1.85099,-0.549736][-2.39671e-007,-2.72271,-1.54887e-007][0.641998,0.438404,0][1.33912,-1.85099,-1.19881][-1.48124e-007,-2.72271,-1.64509e-007][0.597976,0.438404,0][1.33912,-1.33743,-1.19221][2.29897,0.0344739,-2.04522][0.598424,0.403573,0][1.33912,-1.33743,-1.19221][2.29897,0.0344739,-2.04522][0.598424,0.403573,0][1.71386,-1.33743,-0.529004][2.93899,0.039725,-0.921999][0.643404,0.403573,0][1.71386,-1.85099,-0.549736][-2.39671e-007,-2.72271,-1.54887e-007][0.641998,0.438404,0][1.33912,-1.85099,-1.19881][-1.48124e-007,-2.72271,-1.64509e-007][0.976934,0.400169,0][0.732778,-1.85099,-1.63934][0,-2.72272,0][0.93581,0.400169,0][0.732778,-1.33743,-1.63823][1.25514,0.0112461,-2.80539][0.93581,0.365338,0][0.732778,-1.33743,-1.63823][1.25514,0.0112461,-2.80539][0.93581,0.365338,0][1.33912,-1.33743,-1.19221][2.29897,0.0344739,-2.04522][0.976934,0.365338,0][1.33912,-1.85099,-1.19881][-1.48124e-007,-2.72271,-1.64509e-007][0.976934,0.400169,0][0.732778,-1.85099,-1.63934][0,-2.72272,0][0.93581,0.400169,0][-0.000326543,-1.85099,-1.79517][0,-2.72271,0][0.886089,0.400169,0][-0.000326272,-1.33743,-1.79493][-0.00107902,0.00242506,-3.07261][0.886089,0.365338,0][-0.000326272,-1.33743,-1.79493][-0.00107902,0.00242506,-3.07261][0.886089,0.365338,0][0.732778,-1.33743,-1.63823][1.25514,0.0112461,-2.80539][0.93581,0.365338,0][0.732778,-1.85099,-1.63934][0,-2.72272,0][0.93581,0.400169,0][-0.000327193,-1.33743,0.043208][0,1,0][0.132175,0.131575,0][-1.71452,-1.33743,-0.529005][0,1,3.0787e-007][0.170985,0.247836,0][-1.79286,-1.33743,0.236952][-2.47985,-0.0322903,0.401382][0.119035,0.253149,0][-0.000327193,-1.33743,0.043208][0,1,0][0.132175,0.131575,0][-1.79286,-1.33743,0.236952][-2.47985,-0.0322903,0.401382][0.119035,0.253149,0][-1.56126,-1.33743,0.968585][-2.62784,-0.174224,1.54118][0.0694137,0.237441,0][-0.000327193,-1.33743,0.043208][0,1,0][0.132175,0.131575,0][-1.56126,-1.33743,0.968585][-2.62784,-0.174224,1.54118][0.0694137,0.237441,0][-1.05975,-1.33743,1.53632][-1.7533,-0.329904,2.4466][0.0309084,0.203428,0][-0.000327193,-1.33743,0.043208][0,1,0][0.132175,0.131575,0][-1.05975,-1.33743,1.53632][-1.7533,-0.329904,2.4466][0.0309084,0.203428,0][-0.375067,-1.33743,1.8446][-0.612069,-0.419638,2.92334][0.01,0.15699,0][-0.000327193,-1.33743,0.043208][0,1,0][0.132175,0.131575,0][-0.375067,-1.33743,1.8446][-0.612069,-0.419638,2.92334][0.01,0.15699,0][0.374414,-1.33743,1.8446][0.615396,-0.422902,2.92138][0.01,0.106159,0][-0.000327193,-1.33743,0.043208][0,1,0][0.132175,0.131575,0][0.374414,-1.33743,1.8446][0.615396,-0.422902,2.92138][0.01,0.106159,0][1.0591,-1.33743,1.53632][1.75446,-0.340805,2.44108][0.0309084,0.0597212,0][-0.000327193,-1.33743,0.043208][0,1,0][0.132175,0.131575,0][1.0591,-1.33743,1.53632][1.75446,-0.340805,2.44108][0.0309084,0.0597212,0][1.5606,-1.33743,0.968586][2.62269,-0.189259,1.54145][0.0694137,0.0257079,0][-0.000327193,-1.33743,0.043208][0,1,0][0.132175,0.131575,0][1.5606,-1.33743,0.968586][2.62269,-0.189259,1.54145][0.0694137,0.0257079,0][1.7922,-1.33743,0.236952][3.05067,-0.0352945,0.352624][0.119035,0.01,0][-0.000327193,-1.33743,0.043208][0,1,0][0.132175,0.131575,0][1.7922,-1.33743,0.236952][3.05067,-0.0352945,0.352624][0.119035,0.01,0][1.71386,-1.33743,-0.529004][2.93899,0.039725,-0.921999][0.170984,0.0153134,0][-0.000327193,-1.33743,0.043208][0,1,0][0.132175,0.131575,0][1.71386,-1.33743,-0.529004][2.93899,0.039725,-0.921999][0.170984,0.0153134,0][1.33912,-1.33743,-1.19221][2.29897,0.0344739,-2.04522][0.215965,0.0407294,0][-0.000327193,-1.33743,0.043208][0,1,0][0.132175,0.131575,0][1.33912,-1.33743,-1.19221][2.29897,0.0344739,-2.04522][0.215965,0.0407294,0][0.732778,-1.33743,-1.63823][1.25514,0.0112461,-2.80539][0.246215,0.0818533,0][-0.000327193,-1.33743,0.043208][0,1,0][0.132175,0.131575,0][0.732778,-1.33743,-1.63823][1.25514,0.0112461,-2.80539][0.246215,0.0818533,0][-0.000326272,-1.33743,-1.79493][-0.00107902,0.00242506,-3.07261][0.256843,0.131575,0][-0.000327193,-1.33743,0.043208][0,1,0][0.132175,0.131575,0][-0.000326272,-1.33743,-1.79493][-0.00107902,0.00242506,-3.07261][0.256843,0.131575,0][-0.733431,-1.33743,-1.63823][-1.25869,0.00506456,-2.80224][0.246215,0.181296,0][-0.000327193,-1.33743,0.043208][0,1,0][0.132175,0.131575,0][-0.733431,-1.33743,-1.63823][-1.25869,0.00506456,-2.80224][0.246215,0.181296,0][-1.33977,-1.33743,-1.19221][-2.29894,0.0210791,-2.04077][0.215965,0.22242,0][-0.000327193,-1.33743,0.043208][0,1,0][0.132175,0.131575,0][-1.33977,-1.33743,-1.19221][-2.29894,0.0210791,-2.04077][0.215965,0.22242,0][-1.71452,-1.33743,-0.529005][-1.33252,0.0228196,-0.763016][0.170985,0.247836,0][-2.19999,-0.149329,0.101699][-1,-1.21071e-005,-3.23008e-007][0.776981,0.959123,0][-2.19999,0.0246907,-0.0490857][-1.10191,0,0][0.783558,0.973287,0][-2.19999,-0.149644,-0.120324][-2.41779,0,0][0.770792,0.97285,0][-2.19999,-0.149329,0.101699][-1,-1.21071e-005,-3.23008e-007][0.776981,0.959123,0][-2.19999,-0.149644,-0.120324][-2.41779,0,0][0.770792,0.97285,0][-2.19999,-0.317192,-0.0618313][-2.3232,0,0][0.762051,0.964576,0][-2.19999,-0.149329,0.101699][-1,-1.21071e-005,-3.23008e-007][0.776981,0.959123,0][-2.19999,-0.317192,-0.0618313][-2.3232,0,0][0.762051,0.964576,0][-2.19999,-0.384937,0.0912952][-2.32019,0,0][0.762115,0.95322,0][-2.19999,-0.149329,0.101699][-1,-1.21071e-005,-3.23008e-007][0.776981,0.959123,0][-2.19999,-0.384937,0.0912952][-2.32019,0,0][0.762115,0.95322,0][-2.19999,-0.316634,0.250675][-2.38709,0,0][0.770769,0.945257,0][-2.19999,-0.149329,0.101699][-1,-1.21071e-005,-3.23008e-007][0.776981,0.959123,0][-2.19999,-0.316634,0.250675][-2.38709,0,0][0.770769,0.945257,0][-2.19999,-0.149139,0.323756][-2.41155,0,0][0.783163,0.945389,0][-2.19999,-0.149329,0.101699][-1,-1.21071e-005,-3.23008e-007][0.776981,0.959123,0][-2.19999,-0.149139,0.323756][-2.41155,0,0][0.783163,0.945389,0][-2.19999,0.0247475,0.266396][-2.33874,-6.81265e-005,7.20064e-005][0.792327,0.95377,0][-2.19999,-0.149329,0.101699][-1,-1.21071e-005,-3.23008e-007][0.776981,0.959123,0][-2.19999,0.0247475,0.266396][-2.33874,-6.81265e-005,7.20064e-005][0.792327,0.95377,0][-2.20001,0.0994896,0.111397][-2.25613,-0.000116878,3.57719e-006][0.792645,0.965436,0][-2.19999,-0.149329,0.101699][-1,-1.21071e-005,-3.23008e-007][0.776981,0.959123,0][-2.20001,0.0994896,0.111397][-2.25613,-0.000116878,3.57719e-006][0.792645,0.965436,0][-2.19999,0.0246907,-0.0490857][-1,-4.95155e-005,-5.71456e-005][0.783558,0.973287,0][-2.19999,-0.149644,-0.120324][-2.41779,0,0][0.832628,0.342858,0][-2.19999,0.0246907,-0.0490857][-1.10191,0,0][0.820804,0.342858,0][-2.05816,0.0246908,-0.0490854][1.26034e-006,0.594179,-1.45408][0.820804,0.333238,0][-2.05816,0.0246908,-0.0490854][1.26034e-006,0.594179,-1.45408][0.820804,0.333238,0][-2.05816,-0.149644,-0.120324][-2.48182e-006,0.0764503,-2.9371][0.832628,0.333238,0][-2.19999,-0.149644,-0.120324][-2.41779,0,0][0.832628,0.342858,0][-2.19999,0.0246907,-0.0490857][7.63991e-007,0.906384,-0.422456][0.813311,0.342858,0][-2.05817,0.0994898,0.111397][7.63991e-007,0.906384,-0.422456][0.802427,0.333239,0][-2.05816,0.0246908,-0.0490854][7.63991e-007,0.906384,-0.422456][0.813311,0.333238,0][-2.19999,0.0246907,-0.0490857][-3.38401e-006,0.906385,-0.422453][0.599124,0.17688,0][-2.20001,0.0994896,0.111397][-2.25613,-0.000116878,3.57719e-006][0.610009,0.17688,0][-2.05817,0.0994898,0.111397][-1.19412e-006,2.22657,0.304014][0.610009,0.186499,0][-2.20001,0.0994896,0.111397][-2.25613,-0.000116878,3.57719e-006][0.610009,0.17688,0][-2.19999,0.0247475,0.266396][-2.33874,-6.81265e-005,7.20064e-005][0.620521,0.17688,0][-2.05816,0.0247481,0.266396][3.97698e-006,1.9069,2.17397][0.620521,0.1865,0][-2.05816,0.0247481,0.266396][3.97698e-006,1.9069,2.17397][0.620521,0.1865,0][-2.05817,0.0994898,0.111397][-1.19412e-006,2.22657,0.304014][0.610009,0.186499,0][-2.20001,0.0994896,0.111397][-2.25613,-0.000116878,3.57719e-006][0.610009,0.17688,0][-2.19999,0.0247475,0.266396][-2.33874,-6.81265e-005,7.20064e-005][0.323035,0.599452,0][-2.19999,-0.149139,0.323756][-2.41155,0,0][0.334829,0.599452,0][-2.05816,-0.149139,0.323755][8.17151e-006,-0.136098,2.93146][0.334829,0.609071,0][-2.05816,-0.149139,0.323755][8.17151e-006,-0.136098,2.93146][0.334829,0.609071,0][-2.05816,0.0247481,0.266396][3.97698e-006,1.9069,2.17397][0.323035,0.609071,0][-2.19999,0.0247475,0.266396][-2.33874,-6.81265e-005,7.20064e-005][0.323035,0.599452,0][-2.19999,-0.149139,0.323756][-2.41155,0,0][0.334829,0.599452,0][-2.19999,-0.316634,0.250675][-2.38709,0,0][0.346189,0.599452,0][-2.05816,-0.316633,0.250675][9.09355e-006,-2.07197,2.05847][0.346189,0.609071,0][-2.05816,-0.316633,0.250675][9.09355e-006,-2.07197,2.05847][0.346189,0.609071,0][-2.05816,-0.149139,0.323755][8.17151e-006,-0.136098,2.93146][0.334829,0.609071,0][-2.19999,-0.149139,0.323756][-2.41155,0,0][0.334829,0.599452,0][-2.19999,-0.316634,0.250675][-2.38709,0,0][0.01,0.907336,0][-2.19999,-0.384937,0.0912952][-2.32019,0,0][0.0208096,0.907336,0][-2.05816,-0.384936,0.091295][1.14894e-005,-2.8803,-0.0167716][0.0208096,0.916956,0][-2.05816,-0.384936,0.091295][1.14894e-005,-2.8803,-0.0167716][0.0208096,0.916956,0][-2.05816,-0.316633,0.250675][9.09355e-006,-2.07197,2.05847][0.01,0.916956,0][-2.19999,-0.316634,0.250675][-2.38709,0,0][0.01,0.907336,0][-2.19999,-0.384937,0.0912952][-2.32019,0,0][0.0208096,0.907336,0][-2.19999,-0.317192,-0.0618313][-2.3232,0,0][0.0311951,0.907336,0][-2.05816,-0.317191,-0.0618321][-2.08501e-007,-1.95422,-2.11855][0.0311951,0.916956,0][-2.05816,-0.317191,-0.0618321][-2.08501e-007,-1.95422,-2.11855][0.0311951,0.916956,0][-2.05816,-0.384936,0.091295][1.14894e-005,-2.8803,-0.0167716][0.0208096,0.916956,0][-2.19999,-0.384937,0.0912952][-2.32019,0,0][0.0208096,0.907336,0][-2.19999,-0.317192,-0.0618313][-2.3232,0,0][0.843992,0.342858,0][-2.19999,-0.149644,-0.120324][-2.41779,0,0][0.832628,0.342858,0][-2.05816,-0.149644,-0.120324][-2.48182e-006,0.0764503,-2.9371][0.832628,0.333238,0][-2.05816,-0.149644,-0.120324][-2.48182e-006,0.0764503,-2.9371][0.832628,0.333238,0][-2.05816,-0.317191,-0.0618321][-2.08501e-007,-1.95422,-2.11855][0.843992,0.333238,0][-2.19999,-0.317192,-0.0618313][-2.3232,0,0][0.843992,0.342858,0][-2.05816,-0.149329,0.101699][1,1.20598e-005,1.34547e-007][0.198773,0.902996,0][-2.05816,0.0246908,-0.0490854][1,4.95745e-005,5.56327e-005][0.191646,0.916892,0][-2.05817,0.0994898,0.111397][-1.19412e-006,2.22657,0.304014][0.182874,0.908691,0][-2.05816,-0.149329,0.101699][1,1.20598e-005,1.34547e-007][0.198773,0.902996,0][-2.05817,0.0994898,0.111397][-1.19412e-006,2.22657,0.304014][0.182874,0.908691,0][-2.05816,0.0247481,0.266396][3.97698e-006,1.9069,2.17397][0.183649,0.897046,0][-2.05816,-0.149329,0.101699][1,1.20598e-005,1.34547e-007][0.198773,0.902996,0][-2.05816,0.0247481,0.266396][3.97698e-006,1.9069,2.17397][0.183649,0.897046,0][-2.05816,-0.149139,0.323755][8.17151e-006,-0.136098,2.93146][0.193135,0.889031,0][-2.05816,-0.149329,0.101699][1,1.20598e-005,1.34547e-007][0.198773,0.902996,0][-2.05816,-0.149139,0.323755][8.17151e-006,-0.136098,2.93146][0.193135,0.889031,0][-2.05816,-0.316633,0.250675][9.09355e-006,-2.07197,2.05847][0.205524,0.889385,0][-2.05816,-0.149329,0.101699][1,1.20598e-005,1.34547e-007][0.198773,0.902996,0][-2.05816,-0.316633,0.250675][9.09355e-006,-2.07197,2.05847][0.205524,0.889385,0][-2.05816,-0.384936,0.091295][1.14894e-005,-2.8803,-0.0167716][0.213859,0.897681,0][-2.05816,-0.149329,0.101699][1,1.20598e-005,1.34547e-007][0.198773,0.902996,0][-2.05816,-0.384936,0.091295][1.14894e-005,-2.8803,-0.0167716][0.213859,0.897681,0][-2.05816,-0.317191,-0.0618321][-2.08501e-007,-1.95422,-2.11855][0.213478,0.909031,0][-2.05816,-0.149329,0.101699][1,1.20598e-005,1.34547e-007][0.198773,0.902996,0][-2.05816,-0.317191,-0.0618321][-2.08501e-007,-1.95422,-2.11855][0.213478,0.909031,0][-2.05816,-0.149644,-0.120324][-2.48182e-006,0.0764503,-2.9371][0.204419,0.916956,0][-2.05816,-0.149329,0.101699][1,1.20598e-005,1.34547e-007][0.198773,0.902996,0][-2.05816,-0.149644,-0.120324][-2.48182e-006,0.0764503,-2.9371][0.204419,0.916956,0][-2.05816,0.0246908,-0.0490854][1.26034e-006,0.594179,-1.45408][0.191646,0.916892,0][1.77483,1.45536,-0.175998][-0.999998,0.000701422,0.00196149][0.987613,0.0621805,0][1.77483,-0.459074,-0.224221][-1,4.11293e-007,9.76143e-007][0.857743,0.0603583,0][1.77483,-0.459357,0.508635][-1,0.000219099,0.00061258][0.859672,0.0106914,0][1.77483,-0.459357,0.508635][-1,0.000219099,0.00061258][0.859672,0.0106914,0][1.7768,1.46036,0.594155][-0.999996,0.000910823,0.00254713][0.99,0.01,0][1.77483,1.45536,-0.175998][-0.999998,0.000701422,0.00196149][0.987613,0.0621805,0][2.08033,1.45536,-0.175998][0.999998,-0.000700763,-0.00196261][0.946415,0.168183,0][2.08229,1.46036,0.594154][0.999996,-0.000910319,-0.00254868][0.948705,0.220368,0][2.08033,-0.459358,0.508634][1,-0.000218085,-0.000612705][0.818379,0.219435,0][2.08033,-0.459358,0.508634][1,-0.000218085,-0.000612705][0.818379,0.219435,0][2.08033,-0.459074,-0.224222][1,7.63608e-007,-6.5036e-007][0.816542,0.169765,0][2.08033,1.45536,-0.175998][0.999998,-0.000700763,-0.00196261][0.946415,0.168183,0][1.77483,-0.459357,0.508635][7.79797e-007,-1,-0.000386083][0.768247,0.861348,0][1.77483,-0.459074,-0.224221][7.79797e-007,-1,-0.000386083][0.718542,0.861348,0][2.08033,-0.459074,-0.224222][7.79797e-007,-1,-0.000386083][0.718542,0.840629,0][2.08033,-0.459074,-0.224222][-1.85429e-006,-1,-0.000387181][0.831136,0.883828,0][2.08033,-0.459358,0.508634][-1.85429e-006,-1,-0.000387181][0.88084,0.883828,0][1.77483,-0.459357,0.508635][-1.85429e-006,-1,-0.000387181][0.88084,0.904548,0][2.08033,1.45536,-0.175998][-1.25091e-007,0.0251816,-0.999683][0.42722,0.840629,0][2.08033,-0.459074,-0.224222][-1.67756e-006,0.0251818,-0.999683][0.557062,0.840629,0][1.77483,-0.459074,-0.224221][-1.5037e-006,0.0251818,-0.999683][0.557062,0.861348,0][1.77483,-0.459074,-0.224221][-1.5037e-006,0.0251818,-0.999683][0.557062,0.861348,0][1.77483,1.45536,-0.175998][0,0.0251815,-0.999683][0.42722,0.861348,0][2.08033,1.45536,-0.175998][-1.25091e-007,0.0251816,-0.999683][0.42722,0.840629,0][1.77483,1.45536,-0.175998][1.16557e-006,0.999979,-0.00649239][0.287762,0.450828,0][1.7768,1.46036,0.594155][1.16557e-006,0.999979,-0.00649239][0.287895,0.398594,0][2.08229,1.46036,0.594154][1.16557e-006,0.999979,-0.00649239][0.308614,0.398594,0][2.08229,1.46036,0.594154][0,0.999979,-0.00649193][0.351706,0.939686,0][2.08033,1.45536,-0.175998][0,0.999979,-0.00649193][0.40394,0.939819,0][1.77483,1.45536,-0.175998][0,0.999979,-0.00649193][0.40394,0.960538,0][1.7768,1.46036,0.594155][1.86667e-006,-0.0445041,0.999009][0.987943,0.105246,0][1.77483,-0.459357,0.508635][1.86667e-006,-0.0445041,0.999009][0.857743,0.10538,0][2.08033,-0.459358,0.508634][1.86667e-006,-0.0445041,0.999009][0.857743,0.0846603,0][2.08033,-0.459358,0.508634][7.27567e-007,-0.0445043,0.999009][0.42722,0.797563,0][2.08229,1.46036,0.594154][7.27567e-007,-0.0445043,0.999009][0.55742,0.79743,0][1.7768,1.46036,0.594155][7.27567e-007,-0.0445043,0.999009][0.55742,0.818149,0][1.89064,-0.149504,0.00823055][3.28457e-006,-0.999999,0.00165424][0.286352,0.782142,0][1.89063,-0.149601,-0.0578237][6.31367e-006,-0.999999,0.00145889][0.283122,0.785247,0][1.95188,-0.149504,0.00823107][1.03936e-005,-1.64664,0.002724][0.283473,0.779148,0][1.89064,-0.149504,0.00823055][3.28457e-006,-0.999999,0.00165424][0.286352,0.782142,0][1.95188,-0.149504,0.00823107][1.03936e-005,-1.64664,0.002724][0.283473,0.779148,0][1.89064,-0.149382,0.0743256][4.90923e-006,-1.49467,0.00276453][0.289583,0.779035,0][1.89064,-0.149504,0.00823055][3.28457e-006,-0.999999,0.00165424][0.286352,0.782142,0][1.89064,-0.149382,0.0743256][4.90923e-006,-1.49467,0.00276453][0.289583,0.779035,0][1.82939,-0.149504,0.00823106][4.23355e-007,-1.64661,0.00272395][0.289231,0.785136,0][1.89064,-0.149504,0.00823055][3.28457e-006,-0.999999,0.00165424][0.286352,0.782142,0][1.82939,-0.149504,0.00823106][4.23355e-007,-1.64661,0.00272395][0.289231,0.785136,0][1.89063,-0.149601,-0.0578237][1.91007e-007,-0.74765,0.00109074][0.283122,0.785247,0][1.89063,-0.149601,-0.0578237][1.91007e-007,-0.74765,0.00109074][0.771083,0.743868,0][1.82939,-0.149504,0.00823106][4.23355e-007,-1.64661,0.00272395][0.771076,0.748022,0][1.82609,4.91895,0.0731734][-2.34006,-0.000755504,-0.0586367][0.427319,0.748246,0][1.82609,4.91895,0.0731734][-2.34006,-0.000755504,-0.0586367][0.427319,0.748246,0][1.8896,4.92042,0.00477479][-1.14641,0.0129044,-1.06414][0.42722,0.743939,0][1.89063,-0.149601,-0.0578237][1.91007e-007,-0.74765,0.00109074][0.771083,0.743868,0][1.82939,-0.149504,0.00823106][4.23355e-007,-1.64661,0.00272395][0.524829,0.687372,0][1.89064,-0.149382,0.0743256][4.90923e-006,-1.49467,0.00276453][0.524837,0.683218,0][1.88446,4.91708,0.14133][-0.0504602,-0.0269003,2.11218][0.868459,0.683637,0][1.88446,4.91708,0.14133][-0.0504602,-0.0269003,2.11218][0.868459,0.683637,0][1.82609,4.91895,0.0731734][-2.34006,-0.000755504,-0.0586367][0.868585,0.687595,0][1.82939,-0.149504,0.00823106][4.23355e-007,-1.64661,0.00272395][0.524829,0.687372,0][1.89064,-0.149382,0.0743256][4.90923e-006,-1.49467,0.00276453][0.524837,0.683218,0][1.95188,-0.149504,0.00823107][1.03936e-005,-1.64664,0.002724][0.524829,0.679064,0][1.94858,4.91895,0.0731734][2.33181,0.00122175,0.0388615][0.868585,0.679287,0][1.94858,4.91895,0.0731734][2.33181,0.00122175,0.0388615][0.868585,0.679287,0][1.88446,4.91708,0.14133][-0.0504602,-0.0269003,2.11218][0.868459,0.683637,0][1.89064,-0.149382,0.0743256][4.90923e-006,-1.49467,0.00276453][0.524837,0.683218,0][1.95188,-0.149504,0.00823107][1.03936e-005,-1.64664,0.002724][0.771076,0.770726,0][1.8896,4.92042,0.00477479][0.75736,0.00885853,-0.652938][0.42722,0.77495,0][1.94858,4.91895,0.0731734][2.33181,0.00122175,0.0388615][0.427319,0.770949,0][1.95188,-0.149504,0.00823107][0.73327,0.00854423,-0.679884][0.868685,0.710075,0][1.89063,-0.149601,-0.0578237][0.73327,0.00854423,-0.679884][0.868692,0.714229,0][1.8896,4.92042,0.00477479][0.73327,0.00854423,-0.679884][0.524829,0.714299,0][1.88734,4.91895,0.0731731][-3.83704e-006,0.999701,0.0244479][0.373884,0.781902,0][1.8896,4.92042,0.00477479][-1.14641,0.0129044,-1.06414][0.377121,0.778577,0][1.82609,4.91895,0.0731734][-2.34006,-0.000755504,-0.0586367][0.376763,0.784897,0][1.88734,4.91895,0.0731731][-3.83704e-006,0.999701,0.0244479][0.373884,0.781902,0][1.82609,4.91895,0.0731734][-2.34006,-0.000755504,-0.0586367][0.376763,0.784897,0][1.88446,4.91708,0.14133][-0.0504602,-0.0269003,2.11218][0.370687,0.785247,0][1.88734,4.91895,0.0731731][-3.83704e-006,0.999701,0.0244479][0.373884,0.781902,0][1.88446,4.91708,0.14133][-0.0504602,-0.0269003,2.11218][0.370687,0.785247,0][1.94858,4.91895,0.0731734][2.33181,0.00122175,0.0388615][0.371005,0.778908,0][1.88734,4.91895,0.0731731][-3.83704e-006,0.999701,0.0244479][0.373884,0.781902,0][1.94858,4.91895,0.0731734][2.33181,0.00122175,0.0388615][0.371005,0.778908,0][1.8896,4.92042,0.00477479][1.54762e-005,0.999769,0.0214747][0.377121,0.778577,0][2.07117,-0.204026,0.25289][0.986243,-0.153553,-0.0612052][0.981527,0.803624,0][1.9698,-0.627446,-0.318272][-0.985456,0.160664,0.0553562][0.93331,0.802953,0][1.96979,-0.626699,-0.320416][0.986243,-0.153553,-0.0612052][0.933225,0.802825,0][1.96979,-0.626699,-0.320416][0.986243,-0.153553,-0.0612052][0.933225,0.802825,0][2.07116,-0.203279,0.250746][0.986218,-0.153786,-0.061029][0.981442,0.803496,0][2.07117,-0.204026,0.25289][0.986218,-0.153786,-0.061029][0.981527,0.803624,0][1.9698,0.449444,-0.131978][0.980886,0.18594,0.0573538][0.731511,0.502965,0][2.07117,-0.204026,0.25289][0.980886,0.18594,0.0573538][0.782918,0.501239,0][2.07116,-0.203279,0.250746][0.980886,0.18594,0.0573538][0.782804,0.501342,0][2.07116,-0.203279,0.250746][0.980799,0.186234,0.0578773][0.427307,0.897596,0][1.96979,0.45019,-0.134121][0.980799,0.186234,0.0578773][0.47697,0.884208,0][1.9698,0.449444,-0.131978][0.972117,0.198701,-0.124524][0.476883,0.884335,0][1.6756,-1.0087,-0.820376][0.874238,-0.456322,-0.165763][0.890551,0.80285,0][1.96979,-0.626699,-0.320416][0.986243,-0.153553,-0.0612052][0.933225,0.802825,0][1.9698,-0.627446,-0.318272][-0.985456,0.160664,0.0553562][0.93331,0.802953,0][1.9698,-0.627446,-0.318272][-0.985456,0.160664,0.0553562][0.93331,0.802953,0][1.67562,-1.00944,-0.818233][-0.871992,0.462812,0.159483][0.890636,0.802978,0][1.6756,-1.0087,-0.820376][0.874238,-0.456322,-0.165763][0.890551,0.80285,0][1.96979,0.45019,-0.134121][0.980799,0.186234,0.0578773][0.47697,0.884208,0][1.6756,1.28769,-0.115593][0.938846,0.32743,0.106572][0.531396,0.900513,0][1.67562,1.28695,-0.11345][0.922057,0.328419,-0.204819][0.531308,0.90064,0][1.67562,1.28695,-0.11345][0.922057,0.328419,-0.204819][0.531308,0.90064,0][1.9698,0.449444,-0.131978][0.972117,0.198701,-0.124524][0.476883,0.884335,0][1.96979,0.45019,-0.134121][0.980799,0.186234,0.0578773][0.47697,0.884208,0][1.21739,-1.31566,-1.20582][0.674364,-0.695614,-0.247698][0.174806,0.965538,0][1.6756,-1.0087,-0.820376][0.874238,-0.456322,-0.165763][0.208654,0.987977,0][1.67562,-1.00944,-0.818233][-0.871992,0.462812,0.159483][0.208672,0.988121,0][1.67562,-1.00944,-0.818233][-0.871992,0.462812,0.159483][0.208672,0.988121,0][1.21741,-1.3164,-1.20368][-0.675257,0.693868,0.250151][0.174824,0.965682,0][1.21739,-1.31566,-1.20582][0.674364,-0.695614,-0.247698][0.174806,0.965538,0][1.6756,1.28769,-0.115593][0.938846,0.32743,0.106572][0.531396,0.900513,0][1.21739,1.78165,-0.266132][0.674854,0.698537,0.237944][0.566406,0.899572,0][1.21741,1.7809,-0.263989][-0.678552,-0.698615,-0.226945][0.566318,0.899699,0][1.21741,1.7809,-0.263989][-0.678552,-0.698615,-0.226945][0.566318,0.899699,0][1.67562,1.28695,-0.11345][0.922057,0.328419,-0.204819][0.531308,0.90064,0][1.6756,1.28769,-0.115593][0.938846,0.32743,0.106572][0.531396,0.900513,0][0.640013,-1.51274,-1.44847][0.419075,-0.856388,-0.301623][0.13403,0.95364,0][1.21739,-1.31566,-1.20582][0.674364,-0.695614,-0.247698][0.174806,0.965538,0][1.21741,-1.3164,-1.20368][-0.675257,0.693868,0.250151][0.174824,0.965682,0][1.21741,-1.3164,-1.20368][-0.675257,0.693868,0.250151][0.174824,0.965682,0][0.64003,-1.51348,-1.44632][-0.421542,0.851701,0.3113][0.134047,0.953784,0][0.640013,-1.51274,-1.44847][0.419075,-0.856388,-0.301623][0.13403,0.95364,0][1.21739,1.78165,-0.266132][0.674854,0.698537,0.237944][0.856767,0.533084,0][0.640012,2.09503,-0.364461][0.416244,0.859742,0.295948][0.817608,0.539753,0][0.640029,2.09429,-0.362318][-0.418692,-0.861511,-0.28722][0.817609,0.539608,0][0.640029,2.09429,-0.362318][-0.418692,-0.861511,-0.28722][0.817609,0.539608,0][1.21741,1.7809,-0.263989][-0.678552,-0.698615,-0.226945][0.856769,0.532939,0][1.21739,1.78165,-0.266132][0.674854,0.698537,0.237944][0.856767,0.533084,0][-1.61793e-005,-1.58065,-1.53136][0.14147,-0.934455,-0.326772][0.0902634,0.95299,0][0.640013,-1.51274,-1.44847][0.419075,-0.856388,-0.301623][0.13403,0.95364,0][0.64003,-1.51348,-1.44632][-0.421542,0.851701,0.3113][0.134047,0.953784,0][0.64003,-1.51348,-1.44632][-0.421542,0.851701,0.3113][0.134047,0.953784,0][6.6671e-007,-1.58139,-1.52921][-0.142833,0.928807,0.341929][0.0902811,0.953134,0][-1.61793e-005,-1.58065,-1.53136][0.14147,-0.934455,-0.326772][0.0902634,0.95299,0][0.640012,2.09503,-0.364461][0.416244,0.859742,0.295948][0.817608,0.539753,0][-1.59067e-005,2.20491,-0.398544][0.143234,0.934976,0.324507][0.774199,0.542064,0][6.84039e-007,2.20416,-0.396401][-0.144489,-0.938711,-0.312959][0.774201,0.541919,0][6.84039e-007,2.20416,-0.396401][-0.144489,-0.938711,-0.312959][0.774201,0.541919,0][0.640029,2.09429,-0.362318][-0.418692,-0.861511,-0.28722][0.817609,0.539608,0][0.640012,2.09503,-0.364461][0.416244,0.859742,0.295948][0.817608,0.539753,0][-0.640045,-1.51274,-1.44846][-0.141289,-0.935176,-0.324783][0.0477756,0.963511,0][-1.61793e-005,-1.58065,-1.53136][0.14147,-0.934455,-0.326772][0.0902634,0.95299,0][6.6671e-007,-1.58139,-1.52921][-0.142833,0.928807,0.341929][0.0902811,0.953134,0][6.6671e-007,-1.58139,-1.52921][-0.142833,0.928807,0.341929][0.0902811,0.953134,0][-0.640028,-1.51348,-1.44632][0.142886,0.928585,0.34251][0.0477932,0.963655,0][-0.640045,-1.51274,-1.44846][-0.141289,-0.935176,-0.324783][0.0477756,0.963511,0][-1.59067e-005,2.20491,-0.398544][0.143234,0.934976,0.324507][0.774199,0.542064,0][-0.640045,2.09503,-0.364461][-0.143026,0.934352,0.326388][0.730791,0.539753,0][-0.640028,2.09428,-0.362317][0.144489,-0.938711,-0.31296][0.730792,0.539608,0][-0.640028,2.09428,-0.362317][0.144489,-0.938711,-0.31296][0.730792,0.539608,0][6.84039e-007,2.20416,-0.396401][-0.144489,-0.938711,-0.312959][0.774201,0.541919,0][-1.59067e-005,2.20491,-0.398544][0.143234,0.934976,0.324507][0.774199,0.542064,0][-1.21742,-1.31566,-1.20583][-0.417606,-0.859083,-0.295941][0.0107412,0.984313,0][-0.640045,-1.51274,-1.44846][-0.141289,-0.935176,-0.324783][0.0477756,0.963511,0][-0.640028,-1.51348,-1.44632][0.142886,0.928585,0.34251][0.0477932,0.963655,0][-0.640028,-1.51348,-1.44632][0.142886,0.928585,0.34251][0.0477932,0.963655,0][-1.21741,-1.3164,-1.20368][0.422019,0.850769,0.313196][0.0107589,0.984457,0][-1.21742,-1.31566,-1.20583][-0.417606,-0.859083,-0.295941][0.0107412,0.984313,0][-0.640045,2.09503,-0.364461][-0.143026,0.934352,0.326388][0.730791,0.539753,0][-1.21742,1.78165,-0.266132][-0.414503,0.858453,0.302069][0.691632,0.533084,0][-1.21741,1.7809,-0.263989][0.420603,-0.862861,-0.280294][0.691633,0.532939,0][-1.21741,1.7809,-0.263989][0.420603,-0.862861,-0.280294][0.691633,0.532939,0][-0.640028,2.09428,-0.362317][0.144489,-0.938711,-0.31296][0.730792,0.539608,0][-0.640045,2.09503,-0.364461][-0.143026,0.934352,0.326388][0.730791,0.539753,0][-1.67563,-1.0087,-0.820375][-0.67123,-0.701591,-0.239209][0.19773,0.841739,0][-1.21742,-1.31566,-1.20583][-0.417606,-0.859083,-0.295941][0.218549,0.815597,0][-1.21741,-1.3164,-1.20368][0.422019,0.850769,0.313196][0.218599,0.815742,0][-1.21741,-1.3164,-1.20368][0.422019,0.850769,0.313196][0.218599,0.815742,0][-1.67562,-1.00944,-0.818232][0.676252,0.691901,0.252897][0.19778,0.841885,0][-1.67563,-1.0087,-0.820375][-0.67123,-0.701591,-0.239209][0.19773,0.841739,0][-1.21742,1.78165,-0.266132][-0.414503,0.858453,0.302069][0.583769,0.805986,0][-1.67563,1.28769,-0.115593][-0.671166,0.698371,0.248625][0.61879,0.805618,0][-1.67562,1.28695,-0.113449][0.673585,-0.698489,-0.241652][0.618882,0.805741,0][-1.67562,1.28695,-0.113449][0.673585,-0.698489,-0.241652][0.618882,0.805741,0][-1.21741,1.7809,-0.263989][0.420603,-0.862861,-0.280294][0.583861,0.806109,0][-1.21742,1.78165,-0.266132][-0.414503,0.858453,0.302069][0.583769,0.805986,0][-1.96982,-0.626699,-0.320417][-0.00247049,-0.00132422,-0.000441916][0.171822,0.875648,0][-1.67563,-1.0087,-0.820375][-0.67123,-0.701591,-0.239209][0.19773,0.841739,0][-1.67562,-1.00944,-0.818232][0.676252,0.691901,0.252897][0.19778,0.841885,0][-1.67562,-1.00944,-0.818232][0.676252,0.691901,0.252897][0.19778,0.841885,0][-1.9698,-0.627445,-0.318273][0.15475,0.0809724,0.0291911][0.171872,0.875793,0][-1.96982,-0.626699,-0.320417][-0.00247049,-0.00132422,-0.000441916][0.171822,0.875648,0][-1.67563,1.28769,-0.115593][-0.671166,0.698371,0.248625][0.61879,0.805618,0][-1.97014,0.57291,0.0639541][-0.900413,0.408541,0.149502][0.668684,0.80261,0][-1.97012,0.572163,0.066097][0.894813,-0.41192,-0.172138][0.668776,0.802733,0][-1.97012,0.572163,0.066097][0.894813,-0.41192,-0.172138][0.668776,0.802733,0][-1.67562,1.28695,-0.113449][0.673585,-0.698489,-0.241652][0.618882,0.805741,0][-1.67563,1.28769,-0.115593][-0.671166,0.698371,0.248625][0.61879,0.805618,0][-1.96939,-0.646112,-0.264687][-0.961002,0.258754,0.0975834][0.173138,0.879428,0][-1.96944,-0.643872,-0.271116][0.996014,0.0863532,0.0223604][0.172986,0.878991,0][-1.97052,-0.595339,-0.410443][0.0388768,-0.273044,-0.961216][0.169695,0.869542,0][-1.97052,-0.595339,-0.410443][0.0388768,-0.273044,-0.961216][0.169695,0.869542,0][-1.96987,-0.624459,-0.326847][-0.168646,0.930412,0.325411][0.17167,0.875212,0][-1.96985,-0.625205,-0.324704][-0.984594,-0.167356,-0.0506599][0.17172,0.875357,0][-1.96985,-0.625205,-0.324704][-0.984594,-0.167356,-0.0506599][0.17172,0.875357,0][-1.96984,-0.625952,-0.32256][0.772335,-0.597988,-0.214266][0.171771,0.875502,0][-1.96982,-0.626699,-0.320417][-0.00247049,-0.00132422,-0.000441916][0.171822,0.875648,0][-1.96982,-0.626699,-0.320417][-0.00247049,-0.00132422,-0.000441916][0.171822,0.875648,0][-1.9698,-0.627445,-0.318273][0.15475,0.0809724,0.0291911][0.171872,0.875793,0][-2.07117,-0.204026,0.252889][0.160895,0.0262958,0.00906199][0.143155,0.914531,0][-1.96985,-0.625205,-0.324704][-0.984594,-0.167356,-0.0506599][0.17172,0.875357,0][-1.96982,-0.626699,-0.320417][-0.00247049,-0.00132422,-0.000441916][0.171822,0.875648,0][-2.07117,-0.204026,0.252889][0.160895,0.0262958,0.00906199][0.143155,0.914531,0][-1.97052,-0.595339,-0.410443][0.0388768,-0.273044,-0.961216][0.169695,0.869542,0][-1.96985,-0.625205,-0.324704][-0.984594,-0.167356,-0.0506599][0.17172,0.875357,0][-2.07117,-0.204026,0.252889][0.160895,0.0262958,0.00906199][0.143155,0.914531,0][-2.07117,-0.204026,0.252889][0.160895,0.0262958,0.00906199][0.143155,0.914531,0][-2.07117,-0.204026,0.252889][1,0,0][0.143155,0.914531,0][-2.07119,-0.203279,0.250746][-0.984589,-0.167389,-0.0506582][0.143104,0.914386,0][-1.97052,-0.595339,-0.410443][0.0388768,-0.273044,-0.961216][0.169695,0.869542,0][-2.07117,-0.204026,0.252889][0.160895,0.0262958,0.00906199][0.143155,0.914531,0][-2.07119,-0.203279,0.250746][-0.984589,-0.167389,-0.0506582][0.143104,0.914386,0][-1.97052,-0.595339,-0.410443][0.0388768,-0.273044,-0.961216][0.169695,0.869542,0][-2.07119,-0.203279,0.250746][-0.984589,-0.167389,-0.0506582][0.143104,0.914386,0][-2.07121,-0.202532,0.248602][-0.984588,-0.167392,-0.0506561][0.143053,0.91424,0][-1.97052,-0.595339,-0.410443][0.0388768,-0.273044,-0.961216][0.169695,0.869542,0][-2.07121,-0.202532,0.248602][-0.984588,-0.167392,-0.0506561][0.143053,0.91424,0][-2.07122,-0.201786,0.246459][-0.984587,-0.167403,-0.0506492][0.143003,0.914095,0][-1.97052,-0.595339,-0.410443][0.0388768,-0.273044,-0.961216][0.169695,0.869542,0][-2.07122,-0.201786,0.246459][-0.984587,-0.167403,-0.0506492][0.143003,0.914095,0][-2.07124,-0.201039,0.244316][-0.984586,-0.167407,-0.0506469][0.142952,0.91395,0][-1.97052,-0.595339,-0.410443][0.0388768,-0.273044,-0.961216][0.169695,0.869542,0][-2.07124,-0.201039,0.244316][-0.984586,-0.167407,-0.0506469][0.142952,0.91395,0][-2.07189,-0.171919,0.160719][0.217135,0.802207,-0.556162][0.140977,0.90828,0][-1.97052,-0.595339,-0.410443][0.0388768,-0.273044,-0.961216][0.169695,0.869542,0][-2.07189,-0.171919,0.160719][0.217135,0.802207,-0.556162][0.140977,0.90828,0][-2.07081,-0.21098,0.273639][0.98457,0.167646,0.0501684][0.143626,0.915938,0][-2.07081,-0.21098,0.273639][0.98457,0.167646,0.0501684][0.143626,0.915938,0][-2.07076,-0.21322,0.280069][-0.893457,0.421953,0.153915][0.143778,0.916374,0][-2.07069,-0.216206,0.288643][0.921895,0.372102,-0.107935][0.143981,0.916956,0][-1.97052,-0.595339,-0.410443][0.0388768,-0.273044,-0.961216][0.169695,0.869542,0][-2.07081,-0.21098,0.273639][0.98457,0.167646,0.0501684][0.143626,0.915938,0][-2.07069,-0.216206,0.288643][0.921895,0.372102,-0.107935][0.143981,0.916956,0][-2.07069,-0.216206,0.288643][0.921895,0.372102,-0.107935][0.143981,0.916956,0][-1.96932,-0.450779,-0.345996][-0.965602,-0.0946532,-0.242187][0.15989,0.873913,0][-1.96932,-0.649099,-0.256113][-0.727374,-0.0385191,-0.68516][0.173341,0.880009,0][-1.97052,-0.595339,-0.410443][0.0388768,-0.273044,-0.961216][0.169695,0.869542,0][-2.07069,-0.216206,0.288643][0.921895,0.372102,-0.107935][0.143981,0.916956,0][-1.96932,-0.649099,-0.256113][-0.727374,-0.0385191,-0.68516][0.173341,0.880009,0][-1.96939,-0.646112,-0.264687][-0.961002,0.258754,0.0975834][0.173138,0.879428,0][-1.97052,-0.595339,-0.410443][0.0388768,-0.273044,-0.961216][0.169695,0.869542,0][-1.96932,-0.649099,-0.256113][-0.727374,-0.0385191,-0.68516][0.173341,0.880009,0][-1.96937,-0.646859,-0.262543][-0.715544,0.657944,0.234747][0.173189,0.879573,0][-1.96939,-0.646112,-0.264687][-0.961002,0.258754,0.0975834][0.173138,0.879428,0][-1.96932,-0.649099,-0.256113][-0.727374,-0.0385191,-0.68516][0.173341,0.880009,0][-2.07117,-0.204026,0.252889][-0.988132,0.142468,0.0574224][0.722789,0.798938,0][-1.97012,0.572163,0.066097][0.894813,-0.41192,-0.172138][0.668776,0.802733,0][-1.97014,0.57291,0.0639541][-0.900413,0.408541,0.149502][0.668684,0.80261,0][-1.97014,0.57291,0.0639541][-0.988141,0.142445,0.057325][0.945399,0.710553,0][-2.07119,-0.203279,0.250746][-0.988141,0.142445,0.057325][0.891254,0.710205,0][-2.07117,-0.204026,0.252889][-0.988141,0.142445,0.057325][0.891171,0.710075,0][1.96977,-0.625952,-0.32256][0.986252,-0.153471,-0.0612665][0.93314,0.802696,0][2.07114,-0.202532,0.248603][0.986252,-0.153471,-0.0612665][0.981357,0.803367,0][2.07116,-0.203279,0.250746][0.986218,-0.153786,-0.061029][0.981442,0.803496,0][2.07116,-0.203279,0.250746][0.986218,-0.153786,-0.061029][0.981442,0.803496,0][1.96979,-0.626699,-0.320416][0.986243,-0.153553,-0.0612052][0.933225,0.802825,0][1.96977,-0.625952,-0.32256][0.986252,-0.153471,-0.0612665][0.93314,0.802696,0][1.96979,0.45019,-0.134121][0.980949,0.185723,0.05697][0.790411,0.502965,0][2.07116,-0.203279,0.250746][0.980949,0.185723,0.05697][0.841818,0.501239,0][2.07114,-0.202532,0.248603][0.980949,0.185723,0.05697][0.841704,0.501342,0][2.07114,-0.202532,0.248603][0.980893,0.185915,0.0573129][0.427395,0.897469,0][1.96977,0.450937,-0.136265][0.980893,0.185915,0.0573129][0.477057,0.884082,0][1.96979,0.45019,-0.134121][0.980799,0.186234,0.0578773][0.47697,0.884208,0][1.67558,-1.00795,-0.82252][0.874169,-0.456524,-0.16557][0.890466,0.802721,0][1.96977,-0.625952,-0.32256][0.986252,-0.153471,-0.0612665][0.93314,0.802696,0][1.96979,-0.626699,-0.320416][0.986243,-0.153553,-0.0612052][0.933225,0.802825,0][1.96979,-0.626699,-0.320416][0.986243,-0.153553,-0.0612052][0.933225,0.802825,0][1.6756,-1.0087,-0.820376][0.874238,-0.456322,-0.165763][0.890551,0.80285,0][1.67558,-1.00795,-0.82252][0.874169,-0.456524,-0.16557][0.890466,0.802721,0][1.96977,0.450937,-0.136265][0.980893,0.185915,0.0573129][0.477057,0.884082,0][1.67558,1.28844,-0.117737][0.938792,0.327397,0.107151][0.531483,0.900386,0][1.6756,1.28769,-0.115593][0.938846,0.32743,0.106572][0.531396,0.900513,0][1.6756,1.28769,-0.115593][0.938846,0.32743,0.106572][0.531396,0.900513,0][1.96979,0.45019,-0.134121][0.980799,0.186234,0.0578773][0.47697,0.884208,0][1.96977,0.450937,-0.136265][0.980893,0.185915,0.0573129][0.477057,0.884082,0][1.21737,-1.31491,-1.20797][0.674371,-0.695601,-0.247715][0.174789,0.965393,0][1.67558,-1.00795,-0.82252][0.874169,-0.456524,-0.16557][0.208636,0.987833,0][1.6756,-1.0087,-0.820376][0.874238,-0.456322,-0.165763][0.208654,0.987977,0][1.6756,-1.0087,-0.820376][0.874238,-0.456322,-0.165763][0.208654,0.987977,0][1.21739,-1.31566,-1.20582][0.674364,-0.695614,-0.247698][0.174806,0.965538,0][1.21737,-1.31491,-1.20797][0.674371,-0.695601,-0.247715][0.174789,0.965393,0][1.67558,1.28844,-0.117737][0.938792,0.327397,0.107151][0.531483,0.900386,0][1.21737,1.78239,-0.268275][0.674886,0.69854,0.237847][0.566493,0.899446,0][1.21739,1.78165,-0.266132][0.674854,0.698537,0.237944][0.566406,0.899572,0][1.21739,1.78165,-0.266132][0.674854,0.698537,0.237944][0.566406,0.899572,0][1.6756,1.28769,-0.115593][0.938846,0.32743,0.106572][0.531396,0.900513,0][1.67558,1.28844,-0.117737][0.938792,0.327397,0.107151][0.531483,0.900386,0][0.639997,-1.51199,-1.45061][0.41903,-0.856472,-0.301448][0.134012,0.953496,0][1.21737,-1.31491,-1.20797][0.674371,-0.695601,-0.247715][0.174789,0.965393,0][1.21739,-1.31566,-1.20582][0.674364,-0.695614,-0.247698][0.174806,0.965538,0][1.21739,-1.31566,-1.20582][0.674364,-0.695614,-0.247698][0.174806,0.965538,0][0.640013,-1.51274,-1.44847][0.419075,-0.856388,-0.301623][0.13403,0.95364,0][0.639997,-1.51199,-1.45061][0.41903,-0.856472,-0.301448][0.134012,0.953496,0][1.21737,1.78239,-0.268275][0.674886,0.69854,0.237847][0.856766,0.533229,0][0.639996,2.09578,-0.366605][0.416193,0.859704,0.29613][0.817607,0.539898,0][0.640012,2.09503,-0.364461][0.416244,0.859742,0.295948][0.817608,0.539753,0][0.640012,2.09503,-0.364461][0.416244,0.859742,0.295948][0.817608,0.539753,0][1.21739,1.78165,-0.266132][0.674854,0.698537,0.237944][0.856767,0.533084,0][1.21737,1.78239,-0.268275][0.674886,0.69854,0.237847][0.856766,0.533229,0][-3.277e-005,-1.5799,-1.5335][0.141447,-0.934545,-0.326523][0.0902458,0.952846,0][0.639997,-1.51199,-1.45061][0.41903,-0.856472,-0.301448][0.134012,0.953496,0][0.640013,-1.51274,-1.44847][0.419075,-0.856388,-0.301623][0.13403,0.95364,0][0.640013,-1.51274,-1.44847][0.419075,-0.856388,-0.301623][0.13403,0.95364,0][-1.61793e-005,-1.58065,-1.53136][0.14147,-0.934455,-0.326772][0.0902634,0.95299,0][-3.277e-005,-1.5799,-1.5335][0.141447,-0.934545,-0.326523][0.0902458,0.952846,0][0.639996,2.09578,-0.366605][0.416193,0.859704,0.29613][0.817607,0.539898,0][-3.24974e-005,2.20566,-0.400688][0.143217,0.934924,0.324661][0.774198,0.54221,0][-1.59067e-005,2.20491,-0.398544][0.143234,0.934976,0.324507][0.774199,0.542064,0][-1.59067e-005,2.20491,-0.398544][0.143234,0.934976,0.324507][0.774199,0.542064,0][0.640012,2.09503,-0.364461][0.416244,0.859742,0.295948][0.817608,0.539753,0][0.639996,2.09578,-0.366605][0.416193,0.859704,0.29613][0.817607,0.539898,0][-0.640061,-1.51199,-1.45061][-0.141272,-0.935245,-0.324591][0.0477579,0.963367,0][-3.277e-005,-1.5799,-1.5335][0.141447,-0.934545,-0.326523][0.0902458,0.952846,0][-1.61793e-005,-1.58065,-1.53136][0.14147,-0.934455,-0.326772][0.0902634,0.95299,0][-1.61793e-005,-1.58065,-1.53136][0.14147,-0.934455,-0.326772][0.0902634,0.95299,0][-0.640045,-1.51274,-1.44846][-0.141289,-0.935176,-0.324783][0.0477756,0.963511,0][-0.640061,-1.51199,-1.45061][-0.141272,-0.935245,-0.324591][0.0477579,0.963367,0][-3.24974e-005,2.20566,-0.400688][0.143217,0.934924,0.324661][0.774198,0.54221,0][-0.640061,2.09578,-0.366605][-0.142993,0.934251,0.326693][0.73079,0.539898,0][-0.640045,2.09503,-0.364461][-0.143026,0.934352,0.326388][0.730791,0.539753,0][-0.640045,2.09503,-0.364461][-0.143026,0.934352,0.326388][0.730791,0.539753,0][-1.59067e-005,2.20491,-0.398544][0.143234,0.934976,0.324507][0.774199,0.542064,0][-3.24974e-005,2.20566,-0.400688][0.143217,0.934924,0.324661][0.774198,0.54221,0][-1.21744,-1.31491,-1.20797][-0.417656,-0.858991,-0.296138][0.0107236,0.984169,0][-0.640061,-1.51199,-1.45061][-0.141272,-0.935245,-0.324591][0.0477579,0.963367,0][-0.640045,-1.51274,-1.44846][-0.141289,-0.935176,-0.324783][0.0477756,0.963511,0][-0.640045,-1.51274,-1.44846][-0.141289,-0.935176,-0.324783][0.0477756,0.963511,0][-1.21742,-1.31566,-1.20583][-0.417606,-0.859083,-0.295941][0.0107412,0.984313,0][-1.21744,-1.31491,-1.20797][-0.417656,-0.858991,-0.296138][0.0107236,0.984169,0][-0.640061,2.09578,-0.366605][-0.142993,0.934251,0.326693][0.73079,0.539898,0][-1.21744,1.78239,-0.268275][-0.414483,0.858438,0.302139][0.69163,0.533229,0][-1.21742,1.78165,-0.266132][-0.414503,0.858453,0.302069][0.691632,0.533084,0][-1.21742,1.78165,-0.266132][-0.414503,0.858453,0.302069][0.691632,0.533084,0][-0.640045,2.09503,-0.364461][-0.143026,0.934352,0.326388][0.730791,0.539753,0][-0.640061,2.09578,-0.366605][-0.142993,0.934251,0.326693][0.73079,0.539898,0][-1.67565,-1.00795,-0.822519][-0.671196,-0.701654,-0.239119][0.197679,0.841594,0][-1.21744,-1.31491,-1.20797][-0.417656,-0.858991,-0.296138][0.218498,0.815452,0][-1.21742,-1.31566,-1.20583][-0.417606,-0.859083,-0.295941][0.218549,0.815597,0][-1.21742,-1.31566,-1.20583][-0.417606,-0.859083,-0.295941][0.218549,0.815597,0][-1.67563,-1.0087,-0.820375][-0.67123,-0.701591,-0.239209][0.19773,0.841739,0][-1.67565,-1.00795,-0.822519][-0.671196,-0.701654,-0.239119][0.197679,0.841594,0][-1.21744,1.78239,-0.268275][-0.414483,0.858438,0.302139][0.583677,0.805862,0][-1.67565,1.28844,-0.117737][-0.671235,0.698375,0.248427][0.618698,0.805495,0][-1.67563,1.28769,-0.115593][-0.671166,0.698371,0.248625][0.61879,0.805618,0][-1.67563,1.28769,-0.115593][-0.671166,0.698371,0.248625][0.61879,0.805618,0][-1.21742,1.78165,-0.266132][-0.414503,0.858453,0.302069][0.583769,0.805986,0][-1.21744,1.78239,-0.268275][-0.414483,0.858438,0.302139][0.583677,0.805862,0][-1.96984,-0.625952,-0.32256][0.772335,-0.597988,-0.214266][0.171771,0.875502,0][-1.67565,-1.00795,-0.822519][-0.671196,-0.701654,-0.239119][0.197679,0.841594,0][-1.67563,-1.0087,-0.820375][-0.67123,-0.701591,-0.239209][0.19773,0.841739,0][-1.67563,-1.0087,-0.820375][-0.67123,-0.701591,-0.239209][0.19773,0.841739,0][-1.96982,-0.626699,-0.320417][-0.00247049,-0.00132422,-0.000441916][0.171822,0.875648,0][-1.96984,-0.625952,-0.32256][0.772335,-0.597988,-0.214266][0.171771,0.875502,0][-1.67565,1.28844,-0.117737][-0.671235,0.698375,0.248427][0.618698,0.805495,0][-1.97015,0.573656,0.0618106][-0.900472,0.408502,0.149251][0.668592,0.802487,0][-1.97014,0.57291,0.0639541][-0.900413,0.408541,0.149502][0.668684,0.80261,0][-1.97014,0.57291,0.0639541][-0.900413,0.408541,0.149502][0.668684,0.80261,0][-1.67563,1.28769,-0.115593][-0.671166,0.698371,0.248625][0.61879,0.805618,0][-1.67565,1.28844,-0.117737][-0.671235,0.698375,0.248427][0.618698,0.805495,0][-2.07119,-0.203279,0.250746][-0.988148,0.142428,0.0572494][0.722697,0.798814,0][-1.97014,0.57291,0.0639541][-0.900413,0.408541,0.149502][0.668684,0.80261,0][-1.97015,0.573656,0.0618106][-0.900472,0.408502,0.149251][0.668592,0.802487,0][-1.97015,0.573656,0.0618106][-0.988141,0.142446,0.0573272][0.847784,0.771204,0][-2.07121,-0.202532,0.248602][-0.988141,0.142446,0.0573272][0.793638,0.770856,0][-2.07119,-0.203279,0.250746][-0.988141,0.142446,0.0573272][0.793556,0.770726,0][1.96975,-0.625205,-0.324703][0.986272,-0.153283,-0.061409][0.933055,0.802568,0][2.07112,-0.201786,0.246459][0.986272,-0.153283,-0.061409][0.981272,0.803239,0][2.07114,-0.202532,0.248603][0.986252,-0.153471,-0.0612665][0.981357,0.803367,0][2.07114,-0.202532,0.248603][0.986252,-0.153471,-0.0612665][0.981357,0.803367,0][1.96977,-0.625952,-0.32256][0.986252,-0.153471,-0.0612665][0.93314,0.802696,0][1.96975,-0.625205,-0.324703][0.986272,-0.153283,-0.061409][0.933055,0.802568,0][1.96977,0.450937,-0.136265][0.980998,0.185555,0.0566746][0.580298,0.621113,0][2.07114,-0.202532,0.248603][0.980998,0.185555,0.0566746][0.631705,0.619386,0][2.07112,-0.201786,0.246459][0.980998,0.185555,0.0566746][0.631591,0.61949,0][2.07112,-0.201786,0.246459][0.981044,0.185398,0.0563939][0.427482,0.897343,0][1.96975,0.451684,-0.138408][0.981044,0.185398,0.056394][0.477145,0.883955,0][1.96977,0.450937,-0.136265][0.980893,0.185915,0.0573129][0.477057,0.884082,0][1.67557,-1.0072,-0.824664][0.874305,-0.456124,-0.165955][0.890382,0.802593,0][1.96975,-0.625205,-0.324703][0.986272,-0.153283,-0.061409][0.933055,0.802568,0][1.96977,-0.625952,-0.32256][0.986252,-0.153471,-0.0612665][0.93314,0.802696,0][1.96977,-0.625952,-0.32256][0.986252,-0.153471,-0.0612665][0.93314,0.802696,0][1.67558,-1.00795,-0.82252][0.874169,-0.456524,-0.16557][0.890466,0.802721,0][1.67557,-1.0072,-0.824664][0.874305,-0.456124,-0.165955][0.890382,0.802593,0][1.96975,0.451684,-0.138408][0.981044,0.185398,0.056394][0.477145,0.883955,0][1.67557,1.28919,-0.11988][0.938846,0.327428,0.106583][0.531571,0.90026,0][1.67558,1.28844,-0.117737][0.938792,0.327397,0.107151][0.531483,0.900386,0][1.67558,1.28844,-0.117737][0.938792,0.327397,0.107151][0.531483,0.900386,0][1.96977,0.450937,-0.136265][0.980893,0.185915,0.0573129][0.477057,0.884082,0][1.96975,0.451684,-0.138408][0.981044,0.185398,0.056394][0.477145,0.883955,0][1.21736,-1.31416,-1.21011][0.674283,-0.695773,-0.247474][0.174771,0.965249,0][1.67557,-1.0072,-0.824664][0.874305,-0.456124,-0.165955][0.208619,0.987688,0][1.67558,-1.00795,-0.82252][0.874169,-0.456524,-0.16557][0.208636,0.987833,0][1.67558,-1.00795,-0.82252][0.874169,-0.456524,-0.16557][0.208636,0.987833,0][1.21737,-1.31491,-1.20797][0.674371,-0.695601,-0.247715][0.174789,0.965393,0][1.21736,-1.31416,-1.21011][0.674283,-0.695773,-0.247474][0.174771,0.965249,0][1.67557,1.28919,-0.11988][0.938846,0.327428,0.106583][0.531571,0.90026,0][1.21736,1.78314,-0.27042][0.67467,0.698531,0.238482][0.566581,0.899319,0][1.21737,1.78239,-0.268275][0.674886,0.69854,0.237847][0.566493,0.899446,0][1.21737,1.78239,-0.268275][0.674886,0.69854,0.237847][0.566493,0.899446,0][1.67558,1.28844,-0.117737][0.938792,0.327397,0.107151][0.531483,0.900386,0][1.67557,1.28919,-0.11988][0.938846,0.327428,0.106583][0.531571,0.90026,0][0.639979,-1.51124,-1.45275][0.419049,-0.856434,-0.301526][0.133994,0.953351,0][1.21736,-1.31416,-1.21011][0.674283,-0.695773,-0.247474][0.174771,0.965249,0][1.21737,-1.31491,-1.20797][0.674371,-0.695601,-0.247715][0.174789,0.965393,0][1.21737,-1.31491,-1.20797][0.674371,-0.695601,-0.247715][0.174789,0.965393,0][0.639997,-1.51199,-1.45061][0.41903,-0.856472,-0.301448][0.134012,0.953496,0][0.639979,-1.51124,-1.45275][0.419049,-0.856434,-0.301526][0.133994,0.953351,0][1.21736,1.78314,-0.27042][0.67467,0.698531,0.238482][0.856765,0.533375,0][0.639979,2.09653,-0.368749][0.416009,0.859568,0.296781][0.817606,0.540044,0][0.639996,2.09578,-0.366605][0.416193,0.859704,0.29613][0.817607,0.539898,0][0.639996,2.09578,-0.366605][0.416193,0.859704,0.29613][0.817607,0.539898,0][1.21737,1.78239,-0.268275][0.674886,0.69854,0.237847][0.856766,0.533229,0][1.21736,1.78314,-0.27042][0.67467,0.698531,0.238482][0.856765,0.533375,0][-4.96159e-005,-1.57915,-1.53564][0.141467,-0.934463,-0.326749][0.0902281,0.952702,0][0.639979,-1.51124,-1.45275][0.419049,-0.856434,-0.301526][0.133994,0.953351,0][0.639997,-1.51199,-1.45061][0.41903,-0.856472,-0.301448][0.134012,0.953496,0][0.639997,-1.51199,-1.45061][0.41903,-0.856472,-0.301448][0.134012,0.953496,0][-3.277e-005,-1.5799,-1.5335][0.141447,-0.934545,-0.326523][0.0902458,0.952846,0][-4.96159e-005,-1.57915,-1.53564][0.141467,-0.934463,-0.326749][0.0902281,0.952702,0][0.639979,2.09653,-0.368749][0.416009,0.859568,0.296781][0.817606,0.540044,0][-4.90881e-005,2.2064,-0.402831][0.143212,0.934913,0.324698][0.774197,0.542355,0][-3.24974e-005,2.20566,-0.400688][0.143217,0.934924,0.324661][0.774198,0.54221,0][-3.24974e-005,2.20566,-0.400688][0.143217,0.934924,0.324661][0.774198,0.54221,0][0.639996,2.09578,-0.366605][0.416193,0.859704,0.29613][0.817607,0.539898,0][0.639979,2.09653,-0.368749][0.416009,0.859568,0.296781][0.817606,0.540044,0][-0.640078,-1.51124,-1.45275][-0.141292,-0.935164,-0.324815][0.0477403,0.963222,0][-4.96159e-005,-1.57915,-1.53564][0.141467,-0.934463,-0.326749][0.0902281,0.952702,0][-3.277e-005,-1.5799,-1.5335][0.141447,-0.934545,-0.326523][0.0902458,0.952846,0][-3.277e-005,-1.5799,-1.5335][0.141447,-0.934545,-0.326523][0.0902458,0.952846,0][-0.640061,-1.51199,-1.45061][-0.141272,-0.935245,-0.324591][0.0477579,0.963367,0][-0.640078,-1.51124,-1.45275][-0.141292,-0.935164,-0.324815][0.0477403,0.963222,0][-4.90881e-005,2.2064,-0.402831][0.143212,0.934913,0.324698][0.774197,0.542355,0][-0.640078,2.09652,-0.368748][-0.14305,0.934417,0.326193][0.730789,0.540044,0][-0.640061,2.09578,-0.366605][-0.142993,0.934251,0.326693][0.73079,0.539898,0][-0.640061,2.09578,-0.366605][-0.142993,0.934251,0.326693][0.73079,0.539898,0][-3.24974e-005,2.20566,-0.400688][0.143217,0.934924,0.324661][0.774198,0.54221,0][-4.90881e-005,2.2064,-0.402831][0.143212,0.934913,0.324698][0.774197,0.542355,0][-1.21746,-1.31416,-1.21011][-0.417613,-0.859069,-0.295973][0.0107059,0.984025,0][-0.640078,-1.51124,-1.45275][-0.141292,-0.935164,-0.324815][0.0477403,0.963222,0][-0.640061,-1.51199,-1.45061][-0.141272,-0.935245,-0.324591][0.0477579,0.963367,0][-0.640061,-1.51199,-1.45061][-0.141272,-0.935245,-0.324591][0.0477579,0.963367,0][-1.21744,-1.31491,-1.20797][-0.417656,-0.858991,-0.296138][0.0107236,0.984169,0][-1.21746,-1.31416,-1.21011][-0.417613,-0.859069,-0.295973][0.0107059,0.984025,0][-0.640078,2.09652,-0.368748][-0.14305,0.934417,0.326193][0.730789,0.540044,0][-1.21746,1.78314,-0.27042][-0.41443,0.8584,0.302321][0.691629,0.533375,0][-1.21744,1.78239,-0.268275][-0.414483,0.858438,0.302139][0.69163,0.533229,0][-1.21744,1.78239,-0.268275][-0.414483,0.858438,0.302139][0.69163,0.533229,0][-0.640061,2.09578,-0.366605][-0.142993,0.934251,0.326693][0.73079,0.539898,0][-0.640078,2.09652,-0.368748][-0.14305,0.934417,0.326193][0.730789,0.540044,0][-1.67567,-1.0072,-0.824663][-0.671209,-0.70163,-0.239153][0.197628,0.841448,0][-1.21746,-1.31416,-1.21011][-0.417613,-0.859069,-0.295973][0.218447,0.815306,0][-1.21744,-1.31491,-1.20797][-0.417656,-0.858991,-0.296138][0.218498,0.815452,0][-1.21744,-1.31491,-1.20797][-0.417656,-0.858991,-0.296138][0.218498,0.815452,0][-1.67565,-1.00795,-0.822519][-0.671196,-0.701654,-0.239119][0.197679,0.841594,0][-1.67567,-1.0072,-0.824663][-0.671209,-0.70163,-0.239153][0.197628,0.841448,0][-1.21746,1.78314,-0.27042][-0.41443,0.8584,0.302321][0.583585,0.805739,0][-1.67567,1.28919,-0.11988][-0.671185,0.698372,0.248568][0.618605,0.805371,0][-1.67565,1.28844,-0.117737][-0.671235,0.698375,0.248427][0.618698,0.805495,0][-1.67565,1.28844,-0.117737][-0.671235,0.698375,0.248427][0.618698,0.805495,0][-1.21744,1.78239,-0.268275][-0.414483,0.858438,0.302139][0.583677,0.805862,0][-1.21746,1.78314,-0.27042][-0.41443,0.8584,0.302321][0.583585,0.805739,0][-1.96985,-0.625205,-0.324704][-0.984594,-0.167356,-0.0506599][0.17172,0.875357,0][-1.67567,-1.0072,-0.824663][-0.671209,-0.70163,-0.239153][0.197628,0.841448,0][-1.67565,-1.00795,-0.822519][-0.671196,-0.701654,-0.239119][0.197679,0.841594,0][-1.67565,-1.00795,-0.822519][-0.671196,-0.701654,-0.239119][0.197679,0.841594,0][-1.96984,-0.625952,-0.32256][0.772335,-0.597988,-0.214266][0.171771,0.875502,0][-1.96985,-0.625205,-0.324704][-0.984594,-0.167356,-0.0506599][0.17172,0.875357,0][-1.67567,1.28919,-0.11988][-0.671185,0.698372,0.248568][0.618605,0.805371,0][-1.97017,0.574403,0.0596669][-0.900476,0.4085,0.149237][0.6685,0.802363,0][-1.97015,0.573656,0.0618106][-0.900472,0.408502,0.149251][0.668592,0.802487,0][-1.97015,0.573656,0.0618106][-0.900472,0.408502,0.149251][0.668592,0.802487,0][-1.67565,1.28844,-0.117737][-0.671235,0.698375,0.248427][0.618698,0.805495,0][-1.67567,1.28919,-0.11988][-0.671185,0.698372,0.248568][0.618605,0.805371,0][-2.07121,-0.202532,0.248602][-0.988145,0.142436,0.0572845][0.722605,0.798691,0][-1.97015,0.573656,0.0618106][-0.900472,0.408502,0.149251][0.668592,0.802487,0][-1.97017,0.574403,0.0596669][-0.900476,0.4085,0.149237][0.6685,0.802363,0][-1.97017,0.574403,0.0596669][-0.988142,0.142445,0.0573209][0.84779,0.744346,0][-2.07122,-0.201786,0.246459][-0.988142,0.142445,0.0573209][0.793645,0.743998,0][-2.07121,-0.202532,0.248602][-0.988142,0.142445,0.0573209][0.793562,0.743868,0][1.96974,-0.624459,-0.326847][0.986209,-0.153871,-0.0609626][0.93297,0.802439,0][2.07111,-0.201039,0.244316][0.986209,-0.153871,-0.0609626][0.981187,0.80311,0][2.07112,-0.201786,0.246459][0.986272,-0.153283,-0.061409][0.981272,0.803239,0][2.07112,-0.201786,0.246459][0.986272,-0.153283,-0.061409][0.981272,0.803239,0][1.96975,-0.625205,-0.324703][0.986272,-0.153283,-0.061409][0.933055,0.802568,0][1.96974,-0.624459,-0.326847][0.986209,-0.153871,-0.0609626][0.93297,0.802439,0][1.96975,0.451684,-0.138408][0.980861,0.186024,0.057505][0.639199,0.621113,0][2.07112,-0.201786,0.246459][0.980861,0.186024,0.057505][0.690605,0.619386,0][2.07111,-0.201039,0.244316][0.980861,0.186024,0.057505][0.690491,0.61949,0][2.07111,-0.201039,0.244316][0.980859,0.186031,0.0575173][0.427569,0.897216,0][1.96974,0.45243,-0.140552][0.980859,0.186031,0.0575173][0.477232,0.883828,0][1.96975,0.451684,-0.138408][0.981044,0.185398,0.056394][0.477145,0.883955,0][1.67555,-1.00646,-0.826807][0.874173,-0.456515,-0.165579][0.890297,0.802464,0][1.96974,-0.624459,-0.326847][0.986209,-0.153871,-0.0609626][0.93297,0.802439,0][1.96975,-0.625205,-0.324703][0.986272,-0.153283,-0.061409][0.933055,0.802568,0][1.96975,-0.625205,-0.324703][0.986272,-0.153283,-0.061409][0.933055,0.802568,0][1.67557,-1.0072,-0.824664][0.874305,-0.456124,-0.165955][0.890382,0.802593,0][1.67555,-1.00646,-0.826807][0.874173,-0.456515,-0.165579][0.890297,0.802464,0][1.96974,0.45243,-0.140552][0.980859,0.186031,0.0575173][0.477232,0.883828,0][1.67555,1.28993,-0.122023][0.938826,0.327417,0.10679][0.531658,0.900133,0][1.67557,1.28919,-0.11988][0.938846,0.327428,0.106583][0.531571,0.90026,0][1.67557,1.28919,-0.11988][0.938846,0.327428,0.106583][0.531571,0.90026,0][1.96975,0.451684,-0.138408][0.981044,0.185398,0.056394][0.477145,0.883955,0][1.96974,0.45243,-0.140552][0.980859,0.186031,0.0575173][0.477232,0.883828,0][1.21734,-1.31342,-1.21226][0.674318,-0.695704,-0.247572][0.174753,0.965105,0][1.67555,-1.00646,-0.826807][0.874173,-0.456515,-0.165579][0.208601,0.987544,0][1.67557,-1.0072,-0.824664][0.874305,-0.456124,-0.165955][0.208619,0.987688,0][1.67557,-1.0072,-0.824664][0.874305,-0.456124,-0.165955][0.208619,0.987688,0][1.21736,-1.31416,-1.21011][0.674283,-0.695773,-0.247474][0.174771,0.965249,0][1.21734,-1.31342,-1.21226][0.674318,-0.695704,-0.247572][0.174753,0.965105,0][1.67555,1.28993,-0.122023][0.938826,0.327417,0.10679][0.531658,0.900133,0][1.21734,1.78389,-0.272562][0.674916,0.69854,0.23776][0.566668,0.899192,0][1.21736,1.78314,-0.27042][0.67467,0.698531,0.238482][0.566581,0.899319,0][1.21736,1.78314,-0.27042][0.67467,0.698531,0.238482][0.566581,0.899319,0][1.67557,1.28919,-0.11988][0.938846,0.327428,0.106583][0.531571,0.90026,0][1.67555,1.28993,-0.122023][0.938826,0.327417,0.10679][0.531658,0.900133,0][0.639963,-1.5105,-1.4549][0.419095,-0.85635,-0.301703][0.133977,0.953207,0][1.21734,-1.31342,-1.21226][0.674318,-0.695704,-0.247572][0.174753,0.965105,0][1.21736,-1.31416,-1.21011][0.674283,-0.695773,-0.247474][0.174771,0.965249,0][1.21736,-1.31416,-1.21011][0.674283,-0.695773,-0.247474][0.174771,0.965249,0][0.639979,-1.51124,-1.45275][0.419049,-0.856434,-0.301526][0.133994,0.953351,0][0.639963,-1.5105,-1.4549][0.419095,-0.85635,-0.301703][0.133977,0.953207,0][1.21734,1.78389,-0.272562][0.674916,0.69854,0.23776][0.856764,0.53352,0][0.639963,2.09727,-0.370892][0.416172,0.859686,0.29621][0.817605,0.540189,0][0.639979,2.09653,-0.368749][0.416009,0.859568,0.296781][0.817606,0.540044,0][0.639979,2.09653,-0.368749][0.416009,0.859568,0.296781][0.817606,0.540044,0][1.21736,1.78314,-0.27042][0.67467,0.698531,0.238482][0.856765,0.533375,0][1.21734,1.78389,-0.272562][0.674916,0.69854,0.23776][0.856764,0.53352,0][-6.59514e-005,-1.57841,-1.53779][0.141451,-0.934529,-0.326568][0.0902105,0.952557,0][0.639963,-1.5105,-1.4549][0.419095,-0.85635,-0.301703][0.133977,0.953207,0][0.639979,-1.51124,-1.45275][0.419049,-0.856434,-0.301526][0.133994,0.953351,0][0.639979,-1.51124,-1.45275][0.419049,-0.856434,-0.301526][0.133994,0.953351,0][-4.96159e-005,-1.57915,-1.53564][0.141467,-0.934463,-0.326749][0.0902281,0.952702,0][-6.59514e-005,-1.57841,-1.53779][0.141451,-0.934529,-0.326568][0.0902105,0.952557,0][0.639963,2.09727,-0.370892][0.416172,0.859686,0.29621][0.817605,0.540189,0][-6.56788e-005,2.20715,-0.404974][0.143205,0.93489,0.324767][0.774196,0.542501,0][-4.90881e-005,2.2064,-0.402831][0.143212,0.934913,0.324698][0.774197,0.542355,0][-4.90881e-005,2.2064,-0.402831][0.143212,0.934913,0.324698][0.774197,0.542355,0][0.639979,2.09653,-0.368749][0.416009,0.859568,0.296781][0.817606,0.540044,0][0.639963,2.09727,-0.370892][0.416172,0.859686,0.29621][0.817605,0.540189,0][-0.640095,-1.5105,-1.45489][-0.141273,-0.93524,-0.324604][0.0477226,0.963078,0][-6.59514e-005,-1.57841,-1.53779][0.141451,-0.934529,-0.326568][0.0902105,0.952557,0][-4.96159e-005,-1.57915,-1.53564][0.141467,-0.934463,-0.326749][0.0902281,0.952702,0][-4.96159e-005,-1.57915,-1.53564][0.141467,-0.934463,-0.326749][0.0902281,0.952702,0][-0.640078,-1.51124,-1.45275][-0.141292,-0.935164,-0.324815][0.0477403,0.963222,0][-0.640095,-1.5105,-1.45489][-0.141273,-0.93524,-0.324604][0.0477226,0.963078,0][-6.56788e-005,2.20715,-0.404974][0.143205,0.93489,0.324767][0.774196,0.542501,0][-0.640095,2.09727,-0.370891][-0.142957,0.934141,0.327022][0.730788,0.540189,0][-0.640078,2.09652,-0.368748][-0.14305,0.934417,0.326193][0.730789,0.540044,0][-0.640078,2.09652,-0.368748][-0.14305,0.934417,0.326193][0.730789,0.540044,0][-4.90881e-005,2.2064,-0.402831][0.143212,0.934913,0.324698][0.774197,0.542355,0][-6.56788e-005,2.20715,-0.404974][0.143205,0.93489,0.324767][0.774196,0.542501,0][-1.21747,-1.31342,-1.21226][-0.417638,-0.859024,-0.296069][0.0106883,0.98388,0][-0.640095,-1.5105,-1.45489][-0.141273,-0.93524,-0.324604][0.0477226,0.963078,0][-0.640078,-1.51124,-1.45275][-0.141292,-0.935164,-0.324815][0.0477403,0.963222,0][-0.640078,-1.51124,-1.45275][-0.141292,-0.935164,-0.324815][0.0477403,0.963222,0][-1.21746,-1.31416,-1.21011][-0.417613,-0.859069,-0.295973][0.0107059,0.984025,0][-1.21747,-1.31342,-1.21226][-0.417638,-0.859024,-0.296069][0.0106883,0.98388,0][-0.640095,2.09727,-0.370891][-0.142957,0.934141,0.327022][0.730788,0.540189,0][-1.21747,1.78389,-0.272562][-0.414473,0.85843,0.302174][0.691628,0.53352,0][-1.21746,1.78314,-0.27042][-0.41443,0.8584,0.302321][0.691629,0.533375,0][-1.21746,1.78314,-0.27042][-0.41443,0.8584,0.302321][0.691629,0.533375,0][-0.640078,2.09652,-0.368748][-0.14305,0.934417,0.326193][0.730789,0.540044,0][-0.640095,2.09727,-0.370891][-0.142957,0.934141,0.327022][0.730788,0.540189,0][-1.67568,-1.00646,-0.826806][-0.671264,-0.701526,-0.239303][0.197578,0.841303,0][-1.21747,-1.31342,-1.21226][-0.417638,-0.859024,-0.296069][0.218397,0.815161,0][-1.21746,-1.31416,-1.21011][-0.417613,-0.859069,-0.295973][0.218447,0.815306,0][-1.21746,-1.31416,-1.21011][-0.417613,-0.859069,-0.295973][0.218447,0.815306,0][-1.67567,-1.0072,-0.824663][-0.671209,-0.70163,-0.239153][0.197628,0.841448,0][-1.67568,-1.00646,-0.826806][-0.671264,-0.701526,-0.239303][0.197578,0.841303,0][-1.21747,1.78389,-0.272562][-0.414473,0.85843,0.302174][0.583493,0.805616,0][-1.67568,1.28993,-0.122023][-0.671218,0.698374,0.248476][0.618513,0.805248,0][-1.67567,1.28919,-0.11988][-0.671185,0.698372,0.248568][0.618605,0.805371,0][-1.67567,1.28919,-0.11988][-0.671185,0.698372,0.248568][0.618605,0.805371,0][-1.21746,1.78314,-0.27042][-0.41443,0.8584,0.302321][0.583585,0.805739,0][-1.21747,1.78389,-0.272562][-0.414473,0.85843,0.302174][0.583493,0.805616,0][-1.96987,-0.624459,-0.326847][-0.168646,0.930412,0.325411][0.17167,0.875212,0][-1.67568,-1.00646,-0.826806][-0.671264,-0.701526,-0.239303][0.197578,0.841303,0][-1.67567,-1.0072,-0.824663][-0.671209,-0.70163,-0.239153][0.197628,0.841448,0][-1.67567,-1.0072,-0.824663][-0.671209,-0.70163,-0.239153][0.197628,0.841448,0][-1.96985,-0.625205,-0.324704][-0.984594,-0.167356,-0.0506599][0.17172,0.875357,0][-1.96987,-0.624459,-0.326847][-0.168646,0.930412,0.325411][0.17167,0.875212,0][-1.67568,1.28993,-0.122023][-0.671218,0.698374,0.248476][0.618513,0.805248,0][-1.97019,0.57515,0.0575232][-0.900435,0.408527,0.14941][0.668407,0.80224,0][-1.97017,0.574403,0.0596669][-0.900476,0.4085,0.149237][0.6685,0.802363,0][-1.97017,0.574403,0.0596669][-0.900476,0.4085,0.149237][0.6685,0.802363,0][-1.67567,1.28919,-0.11988][-0.671185,0.698372,0.248568][0.618605,0.805371,0][-1.67568,1.28993,-0.122023][-0.671218,0.698374,0.248476][0.618513,0.805248,0][-2.07122,-0.201786,0.246459][-0.988136,0.14246,0.0573873][0.722513,0.798568,0][-1.97017,0.574403,0.0596669][-0.900476,0.4085,0.149237][0.6685,0.802363,0][-1.97019,0.57515,0.0575232][-0.900435,0.408527,0.14941][0.668407,0.80224,0][-1.97019,0.57515,0.0575232][-0.988144,0.142439,0.0572978][0.105081,0.813016,0][-2.07124,-0.201039,0.244316][-0.988144,0.142439,0.0572978][0.159226,0.813364,0][-2.07122,-0.201786,0.246459][-0.988144,0.142439,0.0572978][0.159308,0.813494,0][1.96909,-0.595339,-0.410443][0.986235,-0.153623,-0.061152][0.929661,0.79743,0][2.07046,-0.171919,0.16072][0.986235,-0.153623,-0.061152][0.977878,0.798101,0][2.07111,-0.201039,0.244316][0.986209,-0.153871,-0.0609626][0.981187,0.80311,0][2.07111,-0.201039,0.244316][0.986209,-0.153871,-0.0609626][0.981187,0.80311,0][1.96974,-0.624459,-0.326847][0.986209,-0.153871,-0.0609626][0.93297,0.802439,0][1.96909,-0.595339,-0.410443][0.986235,-0.153623,-0.061152][0.929661,0.79743,0][1.96974,0.45243,-0.140552][0.980924,0.185811,0.0571264][0.53558,0.566169,0][2.07111,-0.201039,0.244316][0.980924,0.185811,0.0571264][0.484173,0.567896,0][2.07046,-0.171919,0.16072][0.980924,0.185811,0.0571264][0.488619,0.563861,0][1.6749,-0.977337,-0.910403][0.87423,-0.456346,-0.165741][0.886988,0.797455,0][1.96909,-0.595339,-0.410443][0.986235,-0.153623,-0.061152][0.929661,0.79743,0][1.96974,-0.624459,-0.326847][0.986209,-0.153871,-0.0609626][0.93297,0.802439,0][1.96974,-0.624459,-0.326847][0.986209,-0.153871,-0.0609626][0.93297,0.802439,0][1.67555,-1.00646,-0.826807][0.874173,-0.456515,-0.165579][0.890297,0.802464,0][1.6749,-0.977337,-0.910403][0.87423,-0.456346,-0.165741][0.886988,0.797455,0][1.21669,-1.2843,-1.29585][0.674317,-0.695705,-0.247569][0.174065,0.959477,0][1.6749,-0.977337,-0.910403][0.87423,-0.456346,-0.165741][0.207913,0.981916,0][1.67555,-1.00646,-0.826807][0.874173,-0.456515,-0.165579][0.208601,0.987544,0][1.67555,-1.00646,-0.826807][0.874173,-0.456515,-0.165579][0.208601,0.987544,0][1.21734,-1.31342,-1.21226][0.674318,-0.695704,-0.247572][0.174753,0.965105,0][1.21669,-1.2843,-1.29585][0.674317,-0.695705,-0.247569][0.174065,0.959477,0][1.6749,1.31905,-0.205619][0.674799,0.698535,0.238106][0.535069,0.895192,0][1.21669,1.81301,-0.356159][0.674799,0.698535,0.238106][0.570079,0.894251,0][1.21734,1.78389,-0.272562][0.674916,0.69854,0.23776][0.566668,0.899192,0][1.21734,1.78389,-0.272562][0.674916,0.69854,0.23776][0.566668,0.899192,0][1.67555,1.28993,-0.122023][0.938826,0.327417,0.10679][0.531658,0.900133,0][1.6749,1.31905,-0.205619][0.674799,0.698535,0.238106][0.535069,0.895192,0][0.639315,-1.48138,-1.53849][0.41906,-0.856415,-0.301568][0.133288,0.947579,0][1.21669,-1.2843,-1.29585][0.674317,-0.695705,-0.247569][0.174065,0.959477,0][1.21734,-1.31342,-1.21226][0.674318,-0.695704,-0.247572][0.174753,0.965105,0][1.21734,-1.31342,-1.21226][0.674318,-0.695704,-0.247572][0.174753,0.965105,0][0.639963,-1.5105,-1.4549][0.419095,-0.85635,-0.301703][0.133977,0.953207,0][0.639315,-1.48138,-1.53849][0.41906,-0.856415,-0.301568][0.133288,0.947579,0][1.21669,1.81301,-0.356159][0.674799,0.698535,0.238106][0.85672,0.53919,0][0.639315,2.12639,-0.454488][0.416165,0.859684,0.296228][0.817561,0.545859,0][0.639963,2.09727,-0.370892][0.416172,0.859686,0.29621][0.817605,0.540189,0][0.639963,2.09727,-0.370892][0.416172,0.859686,0.29621][0.817605,0.540189,0][1.21734,1.78389,-0.272562][0.674916,0.69854,0.23776][0.856764,0.53352,0][1.21669,1.81301,-0.356159][0.674799,0.698535,0.238106][0.85672,0.53919,0][-0.000713755,-1.54929,-1.62138][0.141456,-0.934509,-0.326624][0.0895222,0.946929,0][0.639315,-1.48138,-1.53849][0.41906,-0.856415,-0.301568][0.133288,0.947579,0][0.639963,-1.5105,-1.4549][0.419095,-0.85635,-0.301703][0.133977,0.953207,0][0.639963,-1.5105,-1.4549][0.419095,-0.85635,-0.301703][0.133977,0.953207,0][-6.59514e-005,-1.57841,-1.53779][0.141451,-0.934529,-0.326568][0.0902105,0.952557,0][-0.000713755,-1.54929,-1.62138][0.141456,-0.934509,-0.326624][0.0895222,0.946929,0][0.639315,2.12639,-0.454488][0.416165,0.859684,0.296228][0.817561,0.545859,0][-0.000713227,2.23627,-0.48857][0.143228,0.934952,0.324578][0.774152,0.54817,0][-6.56788e-005,2.20715,-0.404974][0.143205,0.93489,0.324767][0.774196,0.542501,0][-6.56788e-005,2.20715,-0.404974][0.143205,0.93489,0.324767][0.774196,0.542501,0][0.639963,2.09727,-0.370892][0.416172,0.859686,0.29621][0.817605,0.540189,0][0.639315,2.12639,-0.454488][0.416165,0.859684,0.296228][0.817561,0.545859,0][-0.640743,-1.48138,-1.53849][-0.14128,-0.935214,-0.324677][0.0470343,0.95745,0][-0.000713755,-1.54929,-1.62138][0.141456,-0.934509,-0.326624][0.0895222,0.946929,0][-6.59514e-005,-1.57841,-1.53779][0.141451,-0.934529,-0.326568][0.0902105,0.952557,0][-6.59514e-005,-1.57841,-1.53779][0.141451,-0.934529,-0.326568][0.0902105,0.952557,0][-0.640095,-1.5105,-1.45489][-0.141273,-0.93524,-0.324604][0.0477226,0.963078,0][-0.640743,-1.48138,-1.53849][-0.14128,-0.935214,-0.324677][0.0470343,0.95745,0][-0.000713227,2.23627,-0.48857][0.143228,0.934952,0.324578][0.774152,0.54817,0][-0.640743,2.12639,-0.454488][-0.14301,0.934296,0.326557][0.730744,0.545859,0][-0.640095,2.09727,-0.370891][-0.142957,0.934141,0.327022][0.730788,0.540189,0][-0.640095,2.09727,-0.370891][-0.142957,0.934141,0.327022][0.730788,0.540189,0][-6.56788e-005,2.20715,-0.404974][0.143205,0.93489,0.324767][0.774196,0.542501,0][-0.000713227,2.23627,-0.48857][0.143228,0.934952,0.324578][0.774152,0.54817,0][-1.21812,-1.2843,-1.29585][-0.417622,-0.859052,-0.296008][0.01,0.978252,0][-0.640743,-1.48138,-1.53849][-0.14128,-0.935214,-0.324677][0.0470343,0.95745,0][-0.640095,-1.5105,-1.45489][-0.141273,-0.93524,-0.324604][0.0477226,0.963078,0][-0.640095,-1.5105,-1.45489][-0.141273,-0.93524,-0.324604][0.0477226,0.963078,0][-1.21747,-1.31342,-1.21226][-0.417638,-0.859024,-0.296069][0.0106883,0.98388,0][-1.21812,-1.2843,-1.29585][-0.417622,-0.859052,-0.296008][0.01,0.978252,0][-0.640743,2.12639,-0.454488][-0.14301,0.934296,0.326557][0.730744,0.545859,0][-1.21812,1.81301,-0.356159][-0.414454,0.858417,0.302239][0.691584,0.53919,0][-1.21747,1.78389,-0.272562][-0.414473,0.85843,0.302174][0.691628,0.53352,0][-1.21747,1.78389,-0.272562][-0.414473,0.85843,0.302174][0.691628,0.53352,0][-0.640095,2.09727,-0.370891][-0.142957,0.934141,0.327022][0.730788,0.540189,0][-0.640743,2.12639,-0.454488][-0.14301,0.934296,0.326557][0.730744,0.545859,0][-1.67633,-0.977336,-0.910402][-0.671224,-0.701601,-0.239194][0.195603,0.835633,0][-1.21812,-1.2843,-1.29585][-0.417622,-0.859052,-0.296008][0.216422,0.809491,0][-1.21747,-1.31342,-1.21226][-0.417638,-0.859024,-0.296069][0.218397,0.815161,0][-1.21747,-1.31342,-1.21226][-0.417638,-0.859024,-0.296069][0.218397,0.815161,0][-1.67568,-1.00646,-0.826806][-0.671264,-0.701526,-0.239303][0.197578,0.841303,0][-1.67633,-0.977336,-0.910402][-0.671224,-0.701601,-0.239194][0.195603,0.835633,0][-1.21812,1.81301,-0.356159][-0.414454,0.858417,0.302239][0.5799,0.800805,0][-1.67633,1.31905,-0.205619][-0.671218,0.698374,0.248476][0.614921,0.800438,0][-1.67568,1.28993,-0.122023][-0.671218,0.698374,0.248476][0.618513,0.805248,0][-1.67568,1.28993,-0.122023][-0.671218,0.698374,0.248476][0.618513,0.805248,0][-1.21747,1.78389,-0.272562][-0.414473,0.85843,0.302174][0.583493,0.805616,0][-1.21812,1.81301,-0.356159][-0.414454,0.858417,0.302239][0.5799,0.800805,0][-1.97052,-0.595339,-0.410443][0.0388768,-0.273044,-0.961216][0.169695,0.869542,0][-1.67633,-0.977336,-0.910402][-0.671224,-0.701601,-0.239194][0.195603,0.835633,0][-1.67568,-1.00646,-0.826806][-0.671264,-0.701526,-0.239303][0.197578,0.841303,0][-1.67568,-1.00646,-0.826806][-0.671264,-0.701526,-0.239303][0.197578,0.841303,0][-1.96987,-0.624459,-0.326847][-0.168646,0.930412,0.325411][0.17167,0.875212,0][-1.97052,-0.595339,-0.410443][0.0388768,-0.273044,-0.961216][0.169695,0.869542,0][-1.67633,1.31905,-0.205619][-0.671218,0.698374,0.248476][0.614921,0.800438,0][-1.97083,0.604269,-0.0260726][-0.900467,0.408506,0.149275][0.664815,0.79743,0][-1.97019,0.57515,0.0575232][-0.900435,0.408527,0.14941][0.668407,0.80224,0][-1.97019,0.57515,0.0575232][-0.900435,0.408527,0.14941][0.668407,0.80224,0][-1.67568,1.28993,-0.122023][-0.671218,0.698374,0.248476][0.618513,0.805248,0][-1.67633,1.31905,-0.205619][-0.671218,0.698374,0.248476][0.614921,0.800438,0][-2.07124,-0.201039,0.244316][-0.988146,0.142433,0.0572707][0.722421,0.798444,0][-1.97019,0.57515,0.0575232][-0.900435,0.408527,0.14941][0.668407,0.80224,0][-1.97083,0.604269,-0.0260726][-0.900467,0.408506,0.149275][0.664815,0.79743,0][-1.97083,0.604269,-0.0260726][-0.988146,0.142433,0.0572723][0.495891,0.983287,0][-2.07189,-0.171919,0.160719][-0.988146,0.142433,0.0572723][0.549904,0.979492,0][-2.07124,-0.201039,0.244316][-0.988146,0.142433,0.0572723][0.553497,0.984302,0][1.97017,-0.643872,-0.271116][-0.986236,0.153618,0.0611564][0.416479,0.603874,0][2.07154,-0.220452,0.300047][-0.986236,0.153618,0.0611564][0.368273,0.602654,0][2.07046,-0.171919,0.16072][0.986235,-0.153623,-0.061152][0.374111,0.594527,0][2.07046,-0.171919,0.16072][0.986235,-0.153623,-0.061152][0.374111,0.594527,0][1.96909,-0.595339,-0.410443][0.986235,-0.153623,-0.061152][0.422317,0.595747,0][1.97017,-0.643872,-0.271116][-0.986236,0.153618,0.0611564][0.416479,0.603874,0][1.96909,0.48155,-0.224148][-0.980924,-0.185809,-0.057121][0.867521,0.844758,0][2.07046,-0.171919,0.16072][-0.980924,-0.185809,-0.057121][0.91879,0.840629,0][2.07154,-0.220452,0.300047][-0.980924,-0.185809,-0.057121][0.926917,0.846467,0][1.67598,1.27052,-0.0662936][-0.113205,-0.938556,-0.326033][0.899944,0.432218,0][1.6749,1.31905,-0.205619][0.674799,0.698535,0.238106][0.905301,0.44067,0][1.67555,1.28993,-0.122023][0.938826,0.327417,0.10679][0.902087,0.435599,0][1.97017,0.433017,-0.084821][-0.938827,-0.327418,-0.106781][0.844921,0.446377,0][1.67598,1.27052,-0.0662936][-0.113205,-0.938556,-0.326033][0.899944,0.432218,0][1.67555,1.28993,-0.122023][0.938826,0.327417,0.10679][0.902087,0.435599,0][1.97017,0.433017,-0.084821][-0.938827,-0.327418,-0.106781][0.844921,0.446377,0][1.67555,1.28993,-0.122023][0.938826,0.327417,0.10679][0.902087,0.435599,0][1.96974,0.45243,-0.140552][0.980859,0.186031,0.0575173][0.847063,0.449757,0][2.07154,-0.220452,0.300047][-0.980923,-0.185813,-0.0571294][0.795821,0.431052,0][1.97017,0.433017,-0.084821][-0.938827,-0.327418,-0.106781][0.844921,0.446377,0][1.96974,0.45243,-0.140552][0.980859,0.186031,0.0575173][0.847063,0.449757,0][2.07154,-0.220452,0.300047][-0.980923,-0.185813,-0.0571294][0.795821,0.431052,0][1.96974,0.45243,-0.140552][0.980859,0.186031,0.0575173][0.847063,0.449757,0][2.07046,-0.171919,0.16072][-0.980924,-0.185808,-0.0571205][0.801178,0.439504,0][1.67598,-1.02587,-0.771076][-0.874229,0.456348,0.16574][0.459119,0.605572,0][1.97017,-0.643872,-0.271116][-0.986236,0.153618,0.0611564][0.416479,0.603874,0][1.96909,-0.595339,-0.410443][0.986235,-0.153623,-0.061152][0.422317,0.595747,0][1.96909,-0.595339,-0.410443][0.986235,-0.153623,-0.061152][0.422317,0.595747,0][1.6749,-0.977337,-0.910403][0.87423,-0.456346,-0.165741][0.464957,0.597445,0][1.67598,-1.02587,-0.771076][-0.874229,0.456348,0.16574][0.459119,0.605572,0][1.21777,-1.33283,-1.15653][-0.674317,0.695705,0.247568][0.755483,0.195343,0][1.67598,-1.02587,-0.771076][-0.874229,0.456348,0.16574][0.78656,0.1692,0][1.6749,-0.977337,-0.910403][0.87423,-0.456346,-0.165741][0.786487,0.17865,0][1.6749,-0.977337,-0.910403][0.87423,-0.456346,-0.165741][0.786487,0.17865,0][1.21669,-1.2843,-1.29585][0.674317,-0.695705,-0.247569][0.75541,0.204792,0][1.21777,-1.33283,-1.15653][-0.674317,0.695705,0.247568][0.755483,0.195343,0][1.67598,1.27052,-0.0662936][-0.113205,-0.938556,-0.326033][0.918947,0.501948,0][1.21777,1.76447,-0.216832][-0.674799,-0.698536,-0.238104][0.88787,0.491738,0][1.21669,1.81301,-0.356159][0.674799,0.698535,0.238106][0.887797,0.482288,0][1.21669,1.81301,-0.356159][0.674799,0.698535,0.238106][0.887797,0.482288,0][1.6749,1.31905,-0.205619][0.674799,0.698535,0.238106][0.918874,0.492498,0][1.67598,1.27052,-0.0662936][-0.113205,-0.938556,-0.326033][0.918947,0.501948,0][0.640394,-1.52991,-1.39916][-0.41906,0.856413,0.301572][0.716324,0.211799,0][1.21777,-1.33283,-1.15653][-0.674317,0.695705,0.247568][0.755483,0.195343,0][1.21669,-1.2843,-1.29585][0.674317,-0.695705,-0.247569][0.75541,0.204792,0][1.21669,-1.2843,-1.29585][0.674317,-0.695705,-0.247569][0.75541,0.204792,0][0.639315,-1.48138,-1.53849][0.41906,-0.856415,-0.301568][0.716251,0.221249,0][0.640394,-1.52991,-1.39916][-0.41906,0.856413,0.301572][0.716324,0.211799,0][1.21777,1.76447,-0.216832][-0.674799,-0.698536,-0.238104][0.88787,0.491738,0][0.640395,2.07786,-0.315161][-0.416165,-0.859681,-0.296234][0.848711,0.485069,0][0.639315,2.12639,-0.454488][0.416165,0.859684,0.296228][0.848638,0.475619,0][0.639315,2.12639,-0.454488][0.416165,0.859684,0.296228][0.848638,0.475619,0][1.21669,1.81301,-0.356159][0.674799,0.698535,0.238106][0.887797,0.482288,0][1.21777,1.76447,-0.216832][-0.674799,-0.698536,-0.238104][0.88787,0.491738,0][0.000365407,-1.59782,-1.48206][-0.141456,0.934509,0.326623][0.672916,0.217421,0][0.640394,-1.52991,-1.39916][-0.41906,0.856413,0.301572][0.716324,0.211799,0][0.639315,-1.48138,-1.53849][0.41906,-0.856415,-0.301568][0.716251,0.221249,0][0.639315,-1.48138,-1.53849][0.41906,-0.856415,-0.301568][0.716251,0.221249,0][-0.000713755,-1.54929,-1.62138][0.141456,-0.934509,-0.326624][0.672842,0.226871,0][0.000365407,-1.59782,-1.48206][-0.141456,0.934509,0.326623][0.672916,0.217421,0][0.640395,2.07786,-0.315161][-0.416165,-0.859681,-0.296234][0.848711,0.485069,0][0.00036619,2.18774,-0.349244][-0.143227,-0.934953,-0.324576][0.805303,0.482757,0][-0.000713227,2.23627,-0.48857][0.143228,0.934952,0.324578][0.805229,0.473308,0][-0.000713227,2.23627,-0.48857][0.143228,0.934952,0.324578][0.805229,0.473308,0][0.639315,2.12639,-0.454488][0.416165,0.859684,0.296228][0.848638,0.475619,0][0.640395,2.07786,-0.315161][-0.416165,-0.859681,-0.296234][0.848711,0.485069,0][-0.639663,-1.52991,-1.39916][0.14128,0.935213,0.324678][0.629507,0.211799,0][0.000365407,-1.59782,-1.48206][-0.141456,0.934509,0.326623][0.672916,0.217421,0][-0.000713755,-1.54929,-1.62138][0.141456,-0.934509,-0.326624][0.672842,0.226871,0][-0.000713755,-1.54929,-1.62138][0.141456,-0.934509,-0.326624][0.672842,0.226871,0][-0.640743,-1.48138,-1.53849][-0.14128,-0.935214,-0.324677][0.629434,0.221249,0][-0.639663,-1.52991,-1.39916][0.14128,0.935213,0.324678][0.629507,0.211799,0][0.00036619,2.18774,-0.349244][-0.143227,-0.934953,-0.324576][0.805303,0.482757,0][-0.639663,2.07786,-0.31516][0.143009,-0.934294,-0.326564][0.761894,0.485069,0][-0.640743,2.12639,-0.454488][-0.14301,0.934296,0.326557][0.761821,0.475619,0][-0.640743,2.12639,-0.454488][-0.14301,0.934296,0.326557][0.761821,0.475619,0][-0.000713227,2.23627,-0.48857][0.143228,0.934952,0.324578][0.805229,0.473308,0][0.00036619,2.18774,-0.349244][-0.143227,-0.934953,-0.324576][0.805303,0.482757,0][-1.21704,-1.33283,-1.15652][0.417623,0.859052,0.296009][0.590348,0.195343,0][-0.639663,-1.52991,-1.39916][0.14128,0.935213,0.324678][0.629507,0.211799,0][-0.640743,-1.48138,-1.53849][-0.14128,-0.935214,-0.324677][0.629434,0.221249,0][-0.640743,-1.48138,-1.53849][-0.14128,-0.935214,-0.324677][0.629434,0.221249,0][-1.21812,-1.2843,-1.29585][-0.417622,-0.859052,-0.296008][0.590274,0.204792,0][-1.21704,-1.33283,-1.15652][0.417623,0.859052,0.296009][0.590348,0.195343,0][-0.639663,2.07786,-0.31516][0.143009,-0.934294,-0.326564][0.761894,0.485069,0][-1.21704,1.76447,-0.216832][0.414454,-0.858417,-0.302239][0.722735,0.491738,0][-1.21812,1.81301,-0.356159][-0.414454,0.858417,0.302239][0.722661,0.482288,0][-1.21812,1.81301,-0.356159][-0.414454,0.858417,0.302239][0.722661,0.482288,0][-0.640743,2.12639,-0.454488][-0.14301,0.934296,0.326557][0.761821,0.475619,0][-0.639663,2.07786,-0.31516][0.143009,-0.934294,-0.326564][0.761894,0.485069,0][-1.67525,-1.02587,-0.771075][0.671224,0.701601,0.239195][0.559271,0.1692,0][-1.21704,-1.33283,-1.15652][0.417623,0.859052,0.296009][0.590348,0.195343,0][-1.21812,-1.2843,-1.29585][-0.417622,-0.859052,-0.296008][0.590274,0.204792,0][-1.21812,-1.2843,-1.29585][-0.417622,-0.859052,-0.296008][0.590274,0.204792,0][-1.67633,-0.977336,-0.910402][-0.671224,-0.701601,-0.239194][0.559197,0.17865,0][-1.67525,-1.02587,-0.771075][0.671224,0.701601,0.239195][0.559271,0.1692,0][-1.21704,1.76447,-0.216832][0.414454,-0.858417,-0.302239][0.722735,0.491738,0][-1.67525,1.27052,-0.0662928][0.671218,-0.698374,-0.248476][0.691657,0.501948,0][-1.67633,1.31905,-0.205619][-0.671218,0.698374,0.248476][0.691584,0.492498,0][-1.67633,1.31905,-0.205619][-0.671218,0.698374,0.248476][0.691584,0.492498,0][-1.21812,1.81301,-0.356159][-0.414454,0.858417,0.302239][0.722661,0.482288,0][-1.21704,1.76447,-0.216832][0.414454,-0.858417,-0.302239][0.722735,0.491738,0][-1.96944,-0.643872,-0.271116][0.996014,0.0863532,0.0223604][0.951508,0.892178,0][-1.67525,-1.02587,-0.771075][0.671224,0.701601,0.239195][0.908835,0.892203,0][-1.67633,-0.977336,-0.910402][-0.671224,-0.701601,-0.239194][0.90332,0.883853,0][-1.67633,-0.977336,-0.910402][-0.671224,-0.701601,-0.239194][0.90332,0.883853,0][-1.97052,-0.595339,-0.410443][0.0388768,-0.273044,-0.961216][0.945993,0.883828,0][-1.96944,-0.643872,-0.271116][0.996014,0.0863532,0.0223604][0.951508,0.892178,0][-1.67525,1.27052,-0.0662928][0.671218,-0.698374,-0.248476][0.682885,0.851781,0][-1.96975,0.555736,0.113254][0.900465,-0.408506,-0.14928][0.632913,0.850639,0][-1.97083,0.604269,-0.0260726][-0.900467,0.408506,0.149275][0.638597,0.842404,0][-1.97083,0.604269,-0.0260726][-0.900467,0.408506,0.149275][0.638597,0.842404,0][-1.67633,1.31905,-0.205619][-0.671218,0.698374,0.248476][0.688569,0.843546,0][-1.67525,1.27052,-0.0662928][0.671218,-0.698374,-0.248476][0.682885,0.851781,0][-2.07189,-0.171919,0.160719][0.988146,-0.142434,-0.0572745][0.58448,0.840629,0][-1.97083,0.604269,-0.0260726][-0.900467,0.408506,0.149275][0.638597,0.842404,0][-1.96975,0.555736,0.113254][0.900465,-0.408506,-0.14928][0.632913,0.850639,0][-1.96975,0.555736,0.113254][0.988048,-0.142516,-0.0587469][0.944186,0.68534,0][-2.07081,-0.21098,0.273639][0.988048,-0.142516,-0.0587469][0.891065,0.686075,0][-2.07189,-0.171919,0.160719][0.988048,-0.142516,-0.0587469][0.89513,0.679064,0][1.97022,-0.646112,-0.264686][-0.986232,0.153654,0.0611292][0.41621,0.604249,0][2.07159,-0.222692,0.306477][-0.986232,0.153654,0.0611292][0.368004,0.603029,0][2.07154,-0.220452,0.300047][-0.986236,0.153618,0.0611564][0.368273,0.602654,0][2.07154,-0.220452,0.300047][-0.986236,0.153618,0.0611564][0.368273,0.602654,0][1.97017,-0.643872,-0.271116][-0.986236,0.153618,0.0611564][0.416479,0.603874,0][1.97022,-0.646112,-0.264686][-0.986232,0.153654,0.0611292][0.41621,0.604249,0][1.97017,0.433017,-0.084821][-0.980916,-0.185835,-0.0571682][0.403495,0.983121,0][2.07154,-0.220452,0.300047][-0.980916,-0.185835,-0.0571682][0.35206,0.983316,0][2.07159,-0.222692,0.306477][-0.980916,-0.185835,-0.0571682][0.351706,0.983018,0][2.07159,-0.222692,0.306477][-0.980906,-0.185872,-0.0572317][0.795574,0.430662,0][1.97022,0.430778,-0.0783906][-0.980906,-0.185872,-0.0572317][0.844674,0.445987,0][1.97017,0.433017,-0.084821][-0.938827,-0.327418,-0.106781][0.844921,0.446377,0][1.67603,-1.02811,-0.764645][-0.874208,0.456412,0.165678][0.458849,0.605947,0][1.97022,-0.646112,-0.264686][-0.986232,0.153654,0.0611292][0.41621,0.604249,0][1.97017,-0.643872,-0.271116][-0.986236,0.153618,0.0611564][0.416479,0.603874,0][1.97017,-0.643872,-0.271116][-0.986236,0.153618,0.0611564][0.416479,0.603874,0][1.67598,-1.02587,-0.771076][-0.874229,0.456348,0.16574][0.459119,0.605572,0][1.67603,-1.02811,-0.764645][-0.874208,0.456412,0.165678][0.458849,0.605947,0][1.97022,0.430778,-0.0783906][-0.980906,-0.185872,-0.0572317][0.844674,0.445987,0][1.67603,1.26828,-0.0598625][-0.938838,-0.327423,-0.106662][0.899697,0.431828,0][1.67598,1.27052,-0.0662936][-0.113205,-0.938556,-0.326033][0.899944,0.432218,0][1.67598,1.27052,-0.0662936][-0.113205,-0.938556,-0.326033][0.899944,0.432218,0][1.97017,0.433017,-0.084821][-0.938827,-0.327418,-0.106781][0.844921,0.446377,0][1.97022,0.430778,-0.0783906][-0.980906,-0.185872,-0.0572317][0.844674,0.445987,0][1.21782,-1.33507,-1.15009][-0.674307,0.695726,0.247538][0.755487,0.194907,0][1.67603,-1.02811,-0.764645][-0.874208,0.456412,0.165678][0.786564,0.168764,0][1.67598,-1.02587,-0.771076][-0.874229,0.456348,0.16574][0.78656,0.1692,0][1.67598,-1.02587,-0.771076][-0.874229,0.456348,0.16574][0.78656,0.1692,0][1.21777,-1.33283,-1.15653][-0.674317,0.695705,0.247568][0.755483,0.195343,0][1.21782,-1.33507,-1.15009][-0.674307,0.695726,0.247538][0.755487,0.194907,0][1.67603,1.26828,-0.0598625][-0.938838,-0.327423,-0.106662][0.918951,0.502384,0][1.21782,1.76223,-0.210402][-0.674823,-0.698537,-0.238031][0.887874,0.492174,0][1.21777,1.76447,-0.216832][-0.674799,-0.698536,-0.238104][0.88787,0.491738,0][1.21777,1.76447,-0.216832][-0.674799,-0.698536,-0.238104][0.88787,0.491738,0][1.67598,1.27052,-0.0662936][-0.113205,-0.938556,-0.326033][0.918947,0.501948,0][1.67603,1.26828,-0.0598625][-0.938838,-0.327423,-0.106662][0.918951,0.502384,0][0.640445,-1.53215,-1.39273][-0.419065,0.856405,0.301589][0.716327,0.211363,0][1.21782,-1.33507,-1.15009][-0.674307,0.695726,0.247538][0.755487,0.194907,0][1.21777,-1.33283,-1.15653][-0.674317,0.695705,0.247568][0.755483,0.195343,0][1.21777,-1.33283,-1.15653][-0.674317,0.695705,0.247568][0.755483,0.195343,0][0.640394,-1.52991,-1.39916][-0.41906,0.856413,0.301572][0.716324,0.211799,0][0.640445,-1.53215,-1.39273][-0.419065,0.856405,0.301589][0.716327,0.211363,0][1.21782,1.76223,-0.210402][-0.674823,-0.698537,-0.238031][0.887874,0.492174,0][0.640444,2.07562,-0.308731][-0.416189,-0.859699,-0.296151][0.848714,0.485505,0][0.640395,2.07786,-0.315161][-0.416165,-0.859681,-0.296234][0.848711,0.485069,0][0.640395,2.07786,-0.315161][-0.416165,-0.859681,-0.296234][0.848711,0.485069,0][1.21777,1.76447,-0.216832][-0.674799,-0.698536,-0.238104][0.88787,0.491738,0][1.21782,1.76223,-0.210402][-0.674823,-0.698537,-0.238031][0.887874,0.492174,0][0.00041569,-1.60006,-1.47563][-0.141458,0.934501,0.326645][0.672919,0.216985,0][0.640445,-1.53215,-1.39273][-0.419065,0.856405,0.301589][0.716327,0.211363,0][0.640394,-1.52991,-1.39916][-0.41906,0.856413,0.301572][0.716324,0.211799,0][0.640394,-1.52991,-1.39916][-0.41906,0.856413,0.301572][0.716324,0.211799,0][0.000365407,-1.59782,-1.48206][-0.141456,0.934509,0.326623][0.672916,0.217421,0][0.00041569,-1.60006,-1.47563][-0.141458,0.934501,0.326645][0.672919,0.216985,0][0.640444,2.07562,-0.308731][-0.416189,-0.859699,-0.296151][0.848714,0.485505,0][0.000415452,2.1855,-0.342814][-0.143215,-0.934924,-0.324665][0.805306,0.483193,0][0.00036619,2.18774,-0.349244][-0.143227,-0.934953,-0.324576][0.805303,0.482757,0][0.00036619,2.18774,-0.349244][-0.143227,-0.934953,-0.324576][0.805303,0.482757,0][0.640395,2.07786,-0.315161][-0.416165,-0.859681,-0.296234][0.848711,0.485069,0][0.640444,2.07562,-0.308731][-0.416189,-0.859699,-0.296151][0.848714,0.485505,0][-0.639613,-1.53215,-1.39273][0.141279,0.935216,0.324672][0.62951,0.211363,0][0.00041569,-1.60006,-1.47563][-0.141458,0.934501,0.326645][0.672919,0.216985,0][0.000365407,-1.59782,-1.48206][-0.141456,0.934509,0.326623][0.672916,0.217421,0][0.000365407,-1.59782,-1.48206][-0.141456,0.934509,0.326623][0.672916,0.217421,0][-0.639663,-1.52991,-1.39916][0.14128,0.935213,0.324678][0.629507,0.211799,0][-0.639613,-1.53215,-1.39273][0.141279,0.935216,0.324672][0.62951,0.211363,0][0.000415452,2.1855,-0.342814][-0.143215,-0.934924,-0.324665][0.805306,0.483193,0][-0.639613,2.07562,-0.30873][0.14301,-0.934302,-0.32654][0.761897,0.485505,0][-0.639663,2.07786,-0.31516][0.143009,-0.934294,-0.326564][0.761894,0.485069,0][-0.639663,2.07786,-0.31516][0.143009,-0.934294,-0.326564][0.761894,0.485069,0][0.00036619,2.18774,-0.349244][-0.143227,-0.934953,-0.324576][0.805303,0.482757,0][0.000415452,2.1855,-0.342814][-0.143215,-0.934924,-0.324665][0.805306,0.483193,0][-1.21699,-1.33507,-1.15009][0.417622,0.859054,0.296005][0.590351,0.194907,0][-0.639613,-1.53215,-1.39273][0.141279,0.935216,0.324672][0.62951,0.211363,0][-0.639663,-1.52991,-1.39916][0.14128,0.935213,0.324678][0.629507,0.211799,0][-0.639663,-1.52991,-1.39916][0.14128,0.935213,0.324678][0.629507,0.211799,0][-1.21704,-1.33283,-1.15652][0.417623,0.859052,0.296009][0.590348,0.195343,0][-1.21699,-1.33507,-1.15009][0.417622,0.859054,0.296005][0.590351,0.194907,0][-0.639613,2.07562,-0.30873][0.14301,-0.934302,-0.32654][0.761897,0.485505,0][-1.21699,1.76223,-0.210402][0.414475,-0.858433,-0.302163][0.722738,0.492174,0][-1.21704,1.76447,-0.216832][0.414454,-0.858417,-0.302239][0.722735,0.491738,0][-1.21704,1.76447,-0.216832][0.414454,-0.858417,-0.302239][0.722735,0.491738,0][-0.639663,2.07786,-0.31516][0.143009,-0.934294,-0.326564][0.761894,0.485069,0][-0.639613,2.07562,-0.30873][0.14301,-0.934302,-0.32654][0.761897,0.485505,0][-1.6752,-1.02811,-0.764645][0.671234,0.701583,0.23922][0.559274,0.168764,0][-1.21699,-1.33507,-1.15009][0.417622,0.859054,0.296005][0.590351,0.194907,0][-1.21704,-1.33283,-1.15652][0.417623,0.859052,0.296009][0.590348,0.195343,0][-1.21704,-1.33283,-1.15652][0.417623,0.859052,0.296009][0.590348,0.195343,0][-1.67525,-1.02587,-0.771075][0.671224,0.701601,0.239195][0.559271,0.1692,0][-1.6752,-1.02811,-0.764645][0.671234,0.701583,0.23922][0.559274,0.168764,0][-1.21699,1.76223,-0.210402][0.414475,-0.858433,-0.302163][0.722738,0.492174,0][-1.6752,1.26828,-0.0598622][0.671231,-0.698375,-0.248437][0.691661,0.502384,0][-1.67525,1.27052,-0.0662928][0.671218,-0.698374,-0.248476][0.691657,0.501948,0][-1.67525,1.27052,-0.0662928][0.671218,-0.698374,-0.248476][0.691657,0.501948,0][-1.21704,1.76447,-0.216832][0.414454,-0.858417,-0.302239][0.722735,0.491738,0][-1.21699,1.76223,-0.210402][0.414475,-0.858433,-0.302163][0.722738,0.492174,0][-1.96939,-0.646112,-0.264687][-0.961002,0.258754,0.0975834][0.951763,0.892563,0][-1.6752,-1.02811,-0.764645][0.671234,0.701583,0.23922][0.90909,0.892588,0][-1.67525,-1.02587,-0.771075][0.671224,0.701601,0.239195][0.908835,0.892203,0][-1.67525,-1.02587,-0.771075][0.671224,0.701601,0.239195][0.908835,0.892203,0][-1.96944,-0.643872,-0.271116][0.996014,0.0863532,0.0223604][0.951508,0.892178,0][-1.96939,-0.646112,-0.264687][-0.961002,0.258754,0.0975834][0.951763,0.892563,0][-1.6752,1.26828,-0.0598622][0.671231,-0.698375,-0.248437][0.682623,0.852161,0][-1.9697,0.553496,0.119685][0.900479,-0.408498,-0.149224][0.632651,0.851019,0][-1.96975,0.555736,0.113254][0.900465,-0.408506,-0.14928][0.632913,0.850639,0][-1.96975,0.555736,0.113254][0.900465,-0.408506,-0.14928][0.632913,0.850639,0][-1.67525,1.27052,-0.0662928][0.671218,-0.698374,-0.248476][0.682885,0.851781,0][-1.6752,1.26828,-0.0598622][0.671231,-0.698375,-0.248437][0.682623,0.852161,0][-2.07081,-0.21098,0.273639][0.988185,-0.142205,-0.0571754][0.579891,0.847308,0][-1.96975,0.555736,0.113254][0.900465,-0.408506,-0.14928][0.632913,0.850639,0][-1.9697,0.553496,0.119685][0.900479,-0.408498,-0.149224][0.632651,0.851019,0][-1.9697,0.553496,0.119685][0.988183,-0.14221,-0.0571979][0.85077,0.648289,0][-2.07076,-0.21322,0.280069][0.988183,-0.14221,-0.0571979][0.797649,0.649024,0][-2.07081,-0.21098,0.273639][0.988183,-0.14221,-0.0571979][0.797881,0.648625,0][1.97024,-0.646859,-0.262542][-0.98624,0.153579,0.0611849][0.41612,0.604374,0][2.07161,-0.223439,0.30862][-0.98624,0.153579,0.0611849][0.367914,0.603154,0][2.07159,-0.222692,0.306477][-0.986232,0.153654,0.0611292][0.368004,0.603029,0][2.07159,-0.222692,0.306477][-0.986232,0.153654,0.0611292][0.368004,0.603029,0][1.97022,-0.646112,-0.264686][-0.986232,0.153654,0.0611292][0.41621,0.604249,0][1.97024,-0.646859,-0.262542][-0.98624,0.153579,0.0611849][0.41612,0.604374,0][1.97022,0.430778,-0.0783906][-0.980929,-0.185792,-0.0570913][0.882689,0.963531,0][2.07159,-0.222692,0.306477][-0.980929,-0.185792,-0.0570913][0.831253,0.963726,0][2.07161,-0.223439,0.30862][-0.980929,-0.185792,-0.0570913][0.831136,0.963626,0][2.07161,-0.223439,0.30862][-0.980959,-0.18569,-0.0569103][0.795491,0.430532,0][1.97024,0.43003,-0.0762474][-0.980959,-0.18569,-0.0569103][0.844591,0.445857,0][1.97022,0.430778,-0.0783906][-0.980906,-0.185872,-0.0572317][0.844674,0.445987,0][1.67605,-1.02886,-0.762503][-0.874329,0.456055,0.166022][0.45876,0.606072,0][1.97024,-0.646859,-0.262542][-0.98624,0.153579,0.0611849][0.41612,0.604374,0][1.97022,-0.646112,-0.264686][-0.986232,0.153654,0.0611292][0.41621,0.604249,0][1.97022,-0.646112,-0.264686][-0.986232,0.153654,0.0611292][0.41621,0.604249,0][1.67603,-1.02811,-0.764645][-0.874208,0.456412,0.165678][0.458849,0.605947,0][1.67605,-1.02886,-0.762503][-0.874329,0.456055,0.166022][0.45876,0.606072,0][1.97024,0.43003,-0.0762474][-0.980959,-0.18569,-0.0569103][0.844591,0.445857,0][1.67605,1.26753,-0.0577188][-0.938793,-0.327398,-0.107137][0.899614,0.431698,0][1.67603,1.26828,-0.0598625][-0.938838,-0.327423,-0.106662][0.899697,0.431828,0][1.67603,1.26828,-0.0598625][-0.938838,-0.327423,-0.106662][0.899697,0.431828,0][1.97022,0.430778,-0.0783906][-0.980906,-0.185872,-0.0572317][0.844674,0.445987,0][1.97024,0.43003,-0.0762474][-0.980959,-0.18569,-0.0569103][0.844591,0.445857,0][1.21784,-1.33582,-1.14795][-0.67444,0.695466,0.247906][0.755488,0.194761,0][1.67605,-1.02886,-0.762503][-0.874329,0.456055,0.166022][0.786565,0.168619,0][1.67603,-1.02811,-0.764645][-0.874208,0.456412,0.165678][0.786564,0.168764,0][1.67603,-1.02811,-0.764645][-0.874208,0.456412,0.165678][0.786564,0.168764,0][1.21782,-1.33507,-1.15009][-0.674307,0.695726,0.247538][0.755487,0.194907,0][1.21784,-1.33582,-1.14795][-0.67444,0.695466,0.247906][0.755488,0.194761,0][1.67605,1.26753,-0.0577188][-0.938793,-0.327398,-0.107137][0.918952,0.502529,0][1.21784,1.76149,-0.208258][-0.674782,-0.698535,-0.238154][0.887875,0.492319,0][1.21782,1.76223,-0.210402][-0.674823,-0.698537,-0.238031][0.887874,0.492174,0][1.21782,1.76223,-0.210402][-0.674823,-0.698537,-0.238031][0.887874,0.492174,0][1.67603,1.26828,-0.0598625][-0.938838,-0.327423,-0.106662][0.918951,0.502384,0][1.67605,1.26753,-0.0577188][-0.938793,-0.327398,-0.107137][0.918952,0.502529,0][0.640461,-1.5329,-1.39059][-0.419058,0.856417,0.301564][0.716329,0.211218,0][1.21784,-1.33582,-1.14795][-0.67444,0.695466,0.247906][0.755488,0.194761,0][1.21782,-1.33507,-1.15009][-0.674307,0.695726,0.247538][0.755487,0.194907,0][1.21782,-1.33507,-1.15009][-0.674307,0.695726,0.247538][0.755487,0.194907,0][0.640445,-1.53215,-1.39273][-0.419065,0.856405,0.301589][0.716327,0.211363,0][0.640461,-1.5329,-1.39059][-0.419058,0.856417,0.301564][0.716329,0.211218,0][1.21784,1.76149,-0.208258][-0.674782,-0.698535,-0.238154][0.887875,0.492319,0][0.640461,2.07487,-0.306588][-0.416047,-0.859596,-0.296646][0.848716,0.48565,0][0.640444,2.07562,-0.308731][-0.416189,-0.859699,-0.296151][0.848714,0.485505,0][0.640444,2.07562,-0.308731][-0.416189,-0.859699,-0.296151][0.848714,0.485505,0][1.21782,1.76223,-0.210402][-0.674823,-0.698537,-0.238031][0.887874,0.492174,0][1.21784,1.76149,-0.208258][-0.674782,-0.698535,-0.238154][0.887875,0.492319,0][0.000432025,-1.60081,-1.47348][-0.141454,0.934517,0.326602][0.67292,0.21684,0][0.640461,-1.5329,-1.39059][-0.419058,0.856417,0.301564][0.716329,0.211218,0][0.640445,-1.53215,-1.39273][-0.419065,0.856405,0.301589][0.716327,0.211363,0][0.640445,-1.53215,-1.39273][-0.419065,0.856405,0.301589][0.716327,0.211363,0][0.00041569,-1.60006,-1.47563][-0.141458,0.934501,0.326645][0.672919,0.216985,0][0.000432025,-1.60081,-1.47348][-0.141454,0.934517,0.326602][0.67292,0.21684,0][0.640461,2.07487,-0.306588][-0.416047,-0.859596,-0.296646][0.848716,0.48565,0][0.000432553,2.18475,-0.34067][-0.143266,-0.935068,-0.324225][0.805307,0.483339,0][0.000415452,2.1855,-0.342814][-0.143215,-0.934924,-0.324665][0.805306,0.483193,0][0.000415452,2.1855,-0.342814][-0.143215,-0.934924,-0.324665][0.805306,0.483193,0][0.640444,2.07562,-0.308731][-0.416189,-0.859699,-0.296151][0.848714,0.485505,0][0.640461,2.07487,-0.306588][-0.416047,-0.859596,-0.296646][0.848716,0.48565,0][-0.639596,-1.5329,-1.39059][0.141282,0.935205,0.324703][0.629511,0.211218,0][0.000432025,-1.60081,-1.47348][-0.141454,0.934517,0.326602][0.67292,0.21684,0][0.00041569,-1.60006,-1.47563][-0.141458,0.934501,0.326645][0.672919,0.216985,0][0.00041569,-1.60006,-1.47563][-0.141458,0.934501,0.326645][0.672919,0.216985,0][-0.639613,-1.53215,-1.39273][0.141279,0.935216,0.324672][0.62951,0.211363,0][-0.639596,-1.5329,-1.39059][0.141282,0.935205,0.324703][0.629511,0.211218,0][0.000432553,2.18475,-0.34067][-0.143266,-0.935068,-0.324225][0.805307,0.483339,0][-0.639596,2.07487,-0.306587][0.143016,-0.934317,-0.326493][0.761898,0.48565,0][-0.639613,2.07562,-0.30873][0.14301,-0.934302,-0.32654][0.761897,0.485505,0][-0.639613,2.07562,-0.30873][0.14301,-0.934302,-0.32654][0.761897,0.485505,0][0.000415452,2.1855,-0.342814][-0.143215,-0.934924,-0.324665][0.805306,0.483193,0][0.000432553,2.18475,-0.34067][-0.143266,-0.935068,-0.324225][0.805307,0.483339,0][-1.21697,-1.33582,-1.14795][0.41762,0.859056,0.295999][0.590352,0.194761,0][-0.639596,-1.5329,-1.39059][0.141282,0.935205,0.324703][0.629511,0.211218,0][-0.639613,-1.53215,-1.39273][0.141279,0.935216,0.324672][0.62951,0.211363,0][-0.639613,-1.53215,-1.39273][0.141279,0.935216,0.324672][0.62951,0.211363,0][-1.21699,-1.33507,-1.15009][0.417622,0.859054,0.296005][0.590351,0.194907,0][-1.21697,-1.33582,-1.14795][0.41762,0.859056,0.295999][0.590352,0.194761,0][-0.639596,2.07487,-0.306587][0.143016,-0.934317,-0.326493][0.761898,0.48565,0][-1.21697,1.76149,-0.208258][0.414478,-0.858435,-0.302155][0.722739,0.492319,0][-1.21699,1.76223,-0.210402][0.414475,-0.858433,-0.302163][0.722738,0.492174,0][-1.21699,1.76223,-0.210402][0.414475,-0.858433,-0.302163][0.722738,0.492174,0][-0.639613,2.07562,-0.30873][0.14301,-0.934302,-0.32654][0.761897,0.485505,0][-0.639596,2.07487,-0.306587][0.143016,-0.934317,-0.326493][0.761898,0.48565,0][-1.67518,-1.02886,-0.762501][0.671231,0.701589,0.239212][0.559275,0.168619,0][-1.21697,-1.33582,-1.14795][0.41762,0.859056,0.295999][0.590352,0.194761,0][-1.21699,-1.33507,-1.15009][0.417622,0.859054,0.296005][0.590351,0.194907,0][-1.21699,-1.33507,-1.15009][0.417622,0.859054,0.296005][0.590351,0.194907,0][-1.6752,-1.02811,-0.764645][0.671234,0.701583,0.23922][0.559274,0.168764,0][-1.67518,-1.02886,-0.762501][0.671231,0.701589,0.239212][0.559275,0.168619,0][-1.21697,1.76149,-0.208258][0.414478,-0.858435,-0.302155][0.722739,0.492319,0][-1.67518,1.26753,-0.0577182][0.671208,-0.698373,-0.248504][0.691662,0.502529,0][-1.6752,1.26828,-0.0598622][0.671231,-0.698375,-0.248437][0.691661,0.502384,0][-1.6752,1.26828,-0.0598622][0.671231,-0.698375,-0.248437][0.691661,0.502384,0][-1.21699,1.76223,-0.210402][0.414475,-0.858433,-0.302163][0.722738,0.492174,0][-1.21697,1.76149,-0.208258][0.414478,-0.858435,-0.302155][0.722739,0.492319,0][-1.96937,-0.646859,-0.262543][-0.715544,0.657944,0.234747][0.951848,0.892691,0][-1.67518,-1.02886,-0.762501][0.671231,0.701589,0.239212][0.909174,0.892717,0][-1.6752,-1.02811,-0.764645][0.671234,0.701583,0.23922][0.90909,0.892588,0][-1.6752,-1.02811,-0.764645][0.671234,0.701583,0.23922][0.90909,0.892588,0][-1.96939,-0.646112,-0.264687][-0.961002,0.258754,0.0975834][0.951763,0.892563,0][-1.96937,-0.646859,-0.262543][-0.715544,0.657944,0.234747][0.951848,0.892691,0][-1.67518,1.26753,-0.0577182][0.671208,-0.698373,-0.248504][0.682535,0.852288,0][-1.96969,0.55275,0.121828][0.900479,-0.408498,-0.149221][0.632563,0.851146,0][-1.9697,0.553496,0.119685][0.900479,-0.408498,-0.149224][0.632651,0.851019,0][-1.9697,0.553496,0.119685][0.900479,-0.408498,-0.149224][0.632651,0.851019,0][-1.6752,1.26828,-0.0598622][0.671231,-0.698375,-0.248437][0.682623,0.852161,0][-1.67518,1.26753,-0.0577182][0.671208,-0.698373,-0.248504][0.682535,0.852288,0][-2.07076,-0.21322,0.280069][0.988182,-0.142211,-0.0572031][0.579629,0.847688,0][-1.9697,0.553496,0.119685][0.900479,-0.408498,-0.149224][0.632651,0.851019,0][-1.96969,0.55275,0.121828][0.900479,-0.408498,-0.149221][0.632563,0.851146,0][-1.96969,0.55275,0.121828][0.988179,-0.142217,-0.0572357][0.869663,0.250341,0][-2.07074,-0.213966,0.282212][0.988179,-0.142217,-0.0572357][0.816542,0.251076,0][-2.07076,-0.21322,0.280069][0.988179,-0.142217,-0.0572357][0.816619,0.250943,0][1.97029,-0.649099,-0.256112][0.969206,-0.14967,-0.195546][0.41585,0.604749,0][2.07166,-0.225679,0.315051][0.98953,-0.0595785,-0.131454][0.367644,0.603529,0][2.07161,-0.223439,0.30862][-0.98624,0.153579,0.0611849][0.367914,0.603154,0][2.07161,-0.223439,0.30862][-0.98624,0.153579,0.0611849][0.367914,0.603154,0][1.97024,-0.646859,-0.262542][-0.98624,0.153579,0.0611849][0.41612,0.604374,0][1.97029,-0.649099,-0.256112][0.969206,-0.14967,-0.195546][0.41585,0.604749,0][1.97024,0.43003,-0.0762474][-0.980917,-0.185834,-0.0571665][0.974894,0.656319,0][2.07161,-0.223439,0.30862][-0.980917,-0.185834,-0.0571665][0.923459,0.656514,0][2.07166,-0.225679,0.315051][-0.980917,-0.185834,-0.0571665][0.923105,0.656217,0][2.07166,-0.225679,0.315051][-0.980934,-0.185774,-0.0570603][0.795244,0.430142,0][1.97029,0.427791,-0.0698173][0.983687,0.15252,-0.0953775][0.844344,0.445466,0][1.97024,0.43003,-0.0762474][-0.980959,-0.18569,-0.0569103][0.844591,0.445857,0][1.6761,-1.0311,-0.756072][0.806192,-0.422938,-0.413737][0.45849,0.606447,0][1.97029,-0.649099,-0.256112][0.969206,-0.14967,-0.195546][0.41585,0.604749,0][1.97024,-0.646859,-0.262542][-0.98624,0.153579,0.0611849][0.41612,0.604374,0][1.97024,-0.646859,-0.262542][-0.98624,0.153579,0.0611849][0.41612,0.604374,0][1.67605,-1.02886,-0.762503][-0.874329,0.456055,0.166022][0.45876,0.606072,0][1.6761,-1.0311,-0.756072][0.806192,-0.422938,-0.413737][0.45849,0.606447,0][1.97029,0.427791,-0.0698173][0.983687,0.15252,-0.0953775][0.844344,0.445466,0][1.6761,1.26529,-0.0512892][0.839054,0.539148,0.0728585][0.899367,0.431308,0][1.67605,1.26753,-0.0577188][-0.938793,-0.327398,-0.107137][0.899614,0.431698,0][1.67605,1.26753,-0.0577188][-0.938793,-0.327398,-0.107137][0.899614,0.431698,0][1.97024,0.43003,-0.0762474][-0.980959,-0.18569,-0.0569103][0.844591,0.445857,0][1.97029,0.427791,-0.0698173][0.983687,0.15252,-0.0953775][0.844344,0.445466,0][1.21789,-1.33806,-1.14152][0.589077,-0.472369,-0.655633][0.755491,0.194325,0][1.6761,-1.0311,-0.756072][0.806192,-0.422938,-0.413737][0.786568,0.168183,0][1.67605,-1.02886,-0.762503][-0.874329,0.456055,0.166022][0.786565,0.168619,0][1.67605,-1.02886,-0.762503][-0.874329,0.456055,0.166022][0.786565,0.168619,0][1.21784,-1.33582,-1.14795][-0.67444,0.695466,0.247906][0.755488,0.194761,0][1.21789,-1.33806,-1.14152][0.589077,-0.472369,-0.655633][0.755491,0.194325,0][1.6761,1.26529,-0.0512892][0.839054,0.539148,0.0728585][0.918955,0.502965,0][1.21789,1.75925,-0.201828][0.603988,0.79268,-0.0828076][0.887878,0.492755,0][1.21784,1.76149,-0.208258][-0.674782,-0.698535,-0.238154][0.887875,0.492319,0][1.21784,1.76149,-0.208258][-0.674782,-0.698535,-0.238154][0.887875,0.492319,0][1.67605,1.26753,-0.0577188][-0.938793,-0.327398,-0.107137][0.918952,0.502529,0][1.6761,1.26529,-0.0512892][0.839054,0.539148,0.0728585][0.918955,0.502965,0][0.640511,-1.53514,-1.38416][0.297234,-0.491477,-0.818598][0.716332,0.210782,0][1.21789,-1.33806,-1.14152][0.589077,-0.472369,-0.655633][0.755491,0.194325,0][1.21784,-1.33582,-1.14795][-0.67444,0.695466,0.247906][0.755488,0.194761,0][1.21784,-1.33582,-1.14795][-0.67444,0.695466,0.247906][0.755488,0.194761,0][0.640461,-1.5329,-1.39059][-0.419058,0.856417,0.301564][0.716329,0.211218,0][0.640511,-1.53514,-1.38416][0.297234,-0.491477,-0.818598][0.716332,0.210782,0][1.21789,1.75925,-0.201828][0.603988,0.79268,-0.0828076][0.887878,0.492755,0][0.640511,2.07263,-0.300157][0.317679,0.924987,-0.208517][0.848719,0.486086,0][0.640461,2.07487,-0.306588][-0.416047,-0.859596,-0.296646][0.848716,0.48565,0][0.640461,2.07487,-0.306588][-0.416047,-0.859596,-0.296646][0.848716,0.48565,0][1.21784,1.76149,-0.208258][-0.674782,-0.698535,-0.238154][0.887875,0.492319,0][1.21789,1.75925,-0.201828][0.603988,0.79268,-0.0828076][0.887878,0.492755,0][0.000482308,-1.60305,-1.46705][0.00414317,-0.48596,-0.873971][0.672923,0.216404,0][0.640511,-1.53514,-1.38416][0.297234,-0.491477,-0.818598][0.716332,0.210782,0][0.640461,-1.5329,-1.39059][-0.419058,0.856417,0.301564][0.716329,0.211218,0][0.640461,-1.5329,-1.39059][-0.419058,0.856417,0.301564][0.716329,0.211218,0][0.000432025,-1.60081,-1.47348][-0.141454,0.934517,0.326602][0.67292,0.21684,0][0.000482308,-1.60305,-1.46705][0.00414317,-0.48596,-0.873971][0.672923,0.216404,0][0.640511,2.07263,-0.300157][0.317679,0.924987,-0.208517][0.848719,0.486086,0][0.00048207,2.18251,-0.33424][-0.00956008,0.960039,-0.279703][0.80531,0.483775,0][0.000432553,2.18475,-0.34067][-0.143266,-0.935068,-0.324225][0.805307,0.483339,0][0.000432553,2.18475,-0.34067][-0.143266,-0.935068,-0.324225][0.805307,0.483339,0][0.640461,2.07487,-0.306588][-0.416047,-0.859596,-0.296646][0.848716,0.48565,0][0.640511,2.07263,-0.300157][0.317679,0.924987,-0.208517][0.848719,0.486086,0][-0.639547,-1.53514,-1.38416][-0.305277,-0.486651,-0.818521][0.629515,0.210781,0][0.000482308,-1.60305,-1.46705][0.00414317,-0.48596,-0.873971][0.672923,0.216404,0][0.000432025,-1.60081,-1.47348][-0.141454,0.934517,0.326602][0.67292,0.21684,0][0.000432025,-1.60081,-1.47348][-0.141454,0.934517,0.326602][0.67292,0.21684,0][-0.639596,-1.5329,-1.39059][0.141282,0.935205,0.324703][0.629511,0.211218,0][-0.639547,-1.53514,-1.38416][-0.305277,-0.486651,-0.818521][0.629515,0.210781,0][0.00048207,2.18251,-0.33424][-0.00956008,0.960039,-0.279703][0.80531,0.483775,0][-0.639547,2.07263,-0.300156][-0.324928,0.914589,-0.240725][0.761902,0.486087,0][-0.639596,2.07487,-0.306587][0.143016,-0.934317,-0.326493][0.761898,0.48565,0][-0.639596,2.07487,-0.306587][0.143016,-0.934317,-0.326493][0.761898,0.48565,0][0.000432553,2.18475,-0.34067][-0.143266,-0.935068,-0.324225][0.805307,0.483339,0][0.00048207,2.18251,-0.33424][-0.00956008,0.960039,-0.279703][0.80531,0.483775,0][-1.21692,-1.33806,-1.14152][-0.590699,-0.453416,-0.667449][0.590356,0.194325,0][-0.639547,-1.53514,-1.38416][-0.305277,-0.486651,-0.818521][0.629515,0.210781,0][-0.639596,-1.5329,-1.39059][0.141282,0.935205,0.324703][0.629511,0.211218,0][-0.639596,-1.5329,-1.39059][0.141282,0.935205,0.324703][0.629511,0.211218,0][-1.21697,-1.33582,-1.14795][0.41762,0.859056,0.295999][0.590352,0.194761,0][-1.21692,-1.33806,-1.14152][-0.590699,-0.453416,-0.667449][0.590356,0.194325,0][-0.639547,2.07263,-0.300156][-0.324928,0.914589,-0.240725][0.761902,0.486087,0][-1.21692,1.75925,-0.201828][-0.615612,0.775462,-0.140287][0.722742,0.492755,0][-1.21697,1.76149,-0.208258][0.414478,-0.858435,-0.302155][0.722739,0.492319,0][-1.21697,1.76149,-0.208258][0.414478,-0.858435,-0.302155][0.722739,0.492319,0][-0.639596,2.07487,-0.306587][0.143016,-0.934317,-0.326493][0.761898,0.48565,0][-0.639547,2.07263,-0.300156][-0.324928,0.914589,-0.240725][0.761902,0.486087,0][-1.67513,-1.0311,-0.756071][-0.829868,-0.359638,-0.426591][0.559278,0.168183,0][-1.21692,-1.33806,-1.14152][-0.590699,-0.453416,-0.667449][0.590356,0.194325,0][-1.21697,-1.33582,-1.14795][0.41762,0.859056,0.295999][0.590352,0.194761,0][-1.21697,-1.33582,-1.14795][0.41762,0.859056,0.295999][0.590352,0.194761,0][-1.67518,-1.02886,-0.762501][0.671231,0.701589,0.239212][0.559275,0.168619,0][-1.67513,-1.0311,-0.756071][-0.829868,-0.359638,-0.426591][0.559278,0.168183,0][-1.21692,1.75925,-0.201828][-0.615612,0.775462,-0.140287][0.722742,0.492755,0][-1.67513,1.26529,-0.0512884][-0.836239,0.548152,-0.0152811][0.691665,0.502965,0][-1.67518,1.26753,-0.0577182][0.671208,-0.698373,-0.248504][0.691662,0.502529,0][-1.67518,1.26753,-0.0577182][0.671208,-0.698373,-0.248504][0.691662,0.502529,0][-1.21697,1.76149,-0.208258][0.414478,-0.858435,-0.302155][0.722739,0.492319,0][-1.21692,1.75925,-0.201828][-0.615612,0.775462,-0.140287][0.722742,0.492755,0][-1.96932,-0.649099,-0.256113][-0.727374,-0.0385191,-0.68516][0.952102,0.893077,0][-1.67513,-1.0311,-0.756071][-0.829868,-0.359638,-0.426591][0.909429,0.893102,0][-1.67518,-1.02886,-0.762501][0.671231,0.701589,0.239212][0.909174,0.892717,0][-1.67518,-1.02886,-0.762501][0.671231,0.701589,0.239212][0.909174,0.892717,0][-1.96937,-0.646859,-0.262543][-0.715544,0.657944,0.234747][0.951848,0.892691,0][-1.96932,-0.649099,-0.256113][-0.727374,-0.0385191,-0.68516][0.952102,0.893077,0][-1.67513,1.26529,-0.0512884][-0.836239,0.548152,-0.0152811][0.682273,0.852668,0][-1.96964,0.55051,0.128258][-0.974995,0.208523,-0.0768278][0.632301,0.851526,0][-1.96969,0.55275,0.121828][0.900479,-0.408498,-0.149221][0.632563,0.851146,0][-1.96969,0.55275,0.121828][0.900479,-0.408498,-0.149221][0.632563,0.851146,0][-1.67518,1.26753,-0.0577182][0.671208,-0.698373,-0.248504][0.682535,0.852288,0][-1.67513,1.26529,-0.0512884][-0.836239,0.548152,-0.0152811][0.682273,0.852668,0][-2.07074,-0.213966,0.282212][0.988183,-0.142208,-0.0571906][0.579542,0.847815,0][-1.96969,0.55275,0.121828][0.900479,-0.408498,-0.149221][0.632563,0.851146,0][-1.96964,0.55051,0.128258][-0.974995,0.208523,-0.0768278][0.632301,0.851526,0][-1.96964,0.55051,0.128258][0.988183,-0.142209,-0.0571938][0.593507,0.651086,0][-2.07069,-0.216206,0.288643][0.988183,-0.142209,-0.0571938][0.540385,0.651821,0][-2.07074,-0.213966,0.282212][0.988183,-0.142209,-0.0571938][0.540618,0.651422,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/SparkleTimeFedora.mesh b/shareddata/charcustom/hats/fonts/SparkleTimeFedora.mesh deleted file mode 100644 index da3463a..0000000 --- a/shareddata/charcustom/hats/fonts/SparkleTimeFedora.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -750 -[-1.0953e-006,-0.000336729,1.94952][0.0853576,-0.820171,0.565715][0,0.240263,0][-1.14062e-006,-0.207374,1.64936][0.0853576,-0.820171,0.565715][0.0381807,0.234369,0][0.433934,-0.214612,1.57339][0.0853576,-0.820171,0.565715][0.0563644,0.288074,0][0.433934,-0.214612,1.57339][0.0853576,-0.820171,0.565715][0.0563644,0.288074,0][0.492908,-0.0288535,1.86529][0.0416511,-0.846715,0.530414][0.0203924,0.301307,0][-1.0953e-006,-0.000336729,1.94952][0.0853576,-0.820171,0.565715][0,0.240263,0][0.492908,-0.0288535,1.86529][0.0416511,-0.846715,0.530414][0.0203924,0.301307,0][0.433934,-0.214612,1.57339][0.0853576,-0.820171,0.565715][0.0563644,0.288074,0][0.8263,-0.235708,1.35196][0.230626,-0.841349,0.488819][0.0922348,0.333635,0][0.8263,-0.235708,1.35196][0.230626,-0.841349,0.488819][0.0922348,0.333635,0][0.937182,-0.0753461,1.59805][0.194325,-0.859589,0.472593][0.0631097,0.352572,0][0.492908,-0.0288535,1.86529][0.0416511,-0.846715,0.530414][0.0203924,0.301307,0][0.937182,-0.0753461,1.59805][0.194325,-0.859589,0.472593][0.0631097,0.352572,0][0.8263,-0.235708,1.35196][0.230626,-0.841349,0.488819][0.0922348,0.333635,0][1.13846,-0.268807,1.00458][0.350135,-0.849088,0.395544][0.142551,0.366522,0][1.13846,-0.268807,1.00458][0.350135,-0.849088,0.395544][0.142551,0.366522,0][1.28856,-0.148108,1.18186][0.265295,-0.88656,0.378985][0.122948,0.389095,0][0.937182,-0.0753461,1.59805][0.194325,-0.859589,0.472593][0.0631097,0.352572,0][1.28856,-0.148108,1.18186][0.265295,-0.88656,0.378985][0.122948,0.389095,0][1.13846,-0.268807,1.00458][0.350135,-0.849088,0.395544][0.142551,0.366522,0][1.33952,-0.310611,0.563021][0.395996,-0.879607,0.263589][0.202666,0.383427,0][1.33952,-0.310611,0.563021][0.395996,-0.879607,0.263589][0.202666,0.383427,0][1.51285,-0.239938,0.656993][0.237418,-0.934573,0.264963][0.194116,0.407319,0][1.28856,-0.148108,1.18186][0.265295,-0.88656,0.378985][0.122948,0.389095,0][1.51285,-0.239938,0.656993][0.237418,-0.934573,0.264963][0.194116,0.407319,0][1.33952,-0.310611,0.563021][0.395996,-0.879607,0.263589][0.202666,0.383427,0][1.40864,-0.324531,0.0673282][0.341885,-0.936826,0.0739755][0.267075,0.382485,0][1.40864,-0.324531,0.0673282][0.341885,-0.936826,0.0739755][0.267075,0.382485,0][1.5883,-0.280871,0.0655351][0.235934,-0.966914,0.0970165][0.270831,0.405303,0][1.51285,-0.239938,0.656993][0.237418,-0.934573,0.264963][0.194116,0.407319,0][1.5883,-0.280871,0.0655351][0.235934,-0.966914,0.0970165][0.270831,0.405303,0][1.40864,-0.324531,0.0673282][0.341885,-0.936826,0.0739755][0.267075,0.382485,0][1.3374,-0.353775,-0.4232][0.236291,-0.971396,0.023597][0.328072,0.363791,0][1.3374,-0.353775,-0.4232][0.236291,-0.971396,0.023597][0.328072,0.363791,0][1.50778,-0.336179,-0.519079][0.143358,-0.986929,0.0736226][0.343613,0.383581,0][1.5883,-0.280871,0.0655351][0.235934,-0.966914,0.0970165][0.270831,0.405303,0][1.50778,-0.336179,-0.519079][0.143358,-0.986929,0.0736226][0.343613,0.383581,0][1.3374,-0.353775,-0.4232][0.236291,-0.971396,0.023597][0.328072,0.363791,0][1.13416,-0.388519,-0.863428][0.116401,-0.992897,0.0246246][0.380079,0.329295,0][1.13416,-0.388519,-0.863428][0.116401,-0.992897,0.0246246][0.380079,0.329295,0][1.28058,-0.401484,-1.04485][0.0422912,-0.993558,0.105134][0.406031,0.344357,0][1.50778,-0.336179,-0.519079][0.143358,-0.986929,0.0736226][0.343613,0.383581,0][1.28058,-0.401484,-1.04485][0.0422912,-0.993558,0.105134][0.406031,0.344357,0][1.13416,-0.388519,-0.863428][0.116401,-0.992897,0.0246246][0.380079,0.329295,0][0.821267,-0.4316,-1.20536][0.0314999,-0.994833,0.0965158][0.417428,0.282781,0][0.821267,-0.4316,-1.20536][0.0314999,-0.994833,0.0965158][0.417428,0.282781,0][0.929139,-0.482877,-1.4538][-0.00558008,-0.979819,0.199809][0.451148,0.291624,0][1.28058,-0.401484,-1.04485][0.0422912,-0.993558,0.105134][0.406031,0.344357,0][0.929139,-0.482877,-1.4538][-0.00558008,-0.979819,0.199809][0.451148,0.291624,0][0.821267,-0.4316,-1.20536][0.0314999,-0.994833,0.0965158][0.417428,0.282781,0][0.430592,-0.459058,-1.42305][-0.0353519,-0.981673,0.187265][0.437448,0.228812,0][0.430592,-0.459058,-1.42305][-0.0353519,-0.981673,0.187265][0.437448,0.228812,0][0.487905,-0.535003,-1.71627][-0.0311948,-0.969049,0.24489][0.475871,0.230345,0][0.929139,-0.482877,-1.4538][-0.00558008,-0.979819,0.199809][0.451148,0.291624,0][0.487905,-0.535003,-1.71627][-0.0311948,-0.969049,0.24489][0.475871,0.230345,0][0.430592,-0.459058,-1.42305][-0.0353519,-0.981673,0.187265][0.437448,0.228812,0][-1.61581e-006,-0.468486,-1.4977][-0.02156,-0.968847,0.246721][0.438488,0.172575,0][-1.61581e-006,-0.468486,-1.4977][-0.02156,-0.968847,0.246721][0.438488,0.172575,0][-1.66304e-006,-0.538607,-1.81047][-0.0350084,-0.97518,0.218628][0.478273,0.166433,0][0.487905,-0.535003,-1.71627][-0.0311948,-0.969049,0.24489][0.475871,0.230345,0][0.821267,-0.4316,-1.20536][0.0314999,-0.994833,0.0965158][0.417428,0.282781,0][0.701259,-0.433194,-0.92457][0.0415446,-1.51244,0.00916701][0.379356,0.273029,0][0.366843,-0.443389,-1.09101][0.019442,-0.707792,0.00428997][0.393961,0.227223,0][0.366843,-0.443389,-1.09101][0.019442,-0.707792,0.00428997][0.393961,0.227223,0][0.430592,-0.459058,-1.42305][-0.0353519,-0.981673,0.187265][0.437448,0.228812,0][0.821267,-0.4316,-1.20536][0.0314999,-0.994833,0.0965158][0.417428,0.282781,0][1.13416,-0.388519,-0.863428][0.116401,-0.992897,0.0246246][0.380079,0.329295,0][0.97118,-0.416818,-0.659306][0.161371,-1.46254,-0.0739112][0.350914,0.312572,0][0.701259,-0.433194,-0.92457][0.0415446,-1.51244,0.00916701][0.379356,0.273029,0][0.701259,-0.433194,-0.92457][0.0415446,-1.51244,0.00916701][0.379356,0.273029,0][0.821267,-0.4316,-1.20536][0.0314999,-0.994833,0.0965158][0.417428,0.282781,0][1.13416,-0.388519,-0.863428][0.116401,-0.992897,0.0246246][0.380079,0.329295,0][1.3374,-0.353775,-0.4232][0.236291,-0.971396,0.023597][0.328072,0.363791,0][1.14738,-0.395713,-0.31621][0.299652,-1.51291,-0.0608228][0.310732,0.341721,0][0.97118,-0.416818,-0.659306][0.161371,-1.46254,-0.0739112][0.350914,0.312572,0][0.97118,-0.416818,-0.659306][0.161371,-1.46254,-0.0739112][0.350914,0.312572,0][1.13416,-0.388519,-0.863428][0.116401,-0.992897,0.0246246][0.380079,0.329295,0][1.3374,-0.353775,-0.4232][0.236291,-0.971396,0.023597][0.328072,0.363791,0][1.40864,-0.324531,0.0673282][0.341885,-0.936826,0.0739755][0.267075,0.382485,0][1.20821,-0.372272,0.0704272][0.39932,-1.67389,0.0386521][0.262746,0.357051,0][1.14738,-0.395713,-0.31621][0.299652,-1.51291,-0.0608228][0.310732,0.341721,0][1.14738,-0.395713,-0.31621][0.299652,-1.51291,-0.0608228][0.310732,0.341721,0][1.3374,-0.353775,-0.4232][0.236291,-0.971396,0.023597][0.328072,0.363791,0][1.40864,-0.324531,0.0673282][0.341885,-0.936826,0.0739755][0.267075,0.382485,0][1.33952,-0.310611,0.563021][0.395996,-0.879607,0.263589][0.202666,0.383427,0][1.14629,-0.349013,0.457512][0.288153,-1.88834,0.159563][0.212292,0.356775,0][1.20821,-0.372272,0.0704272][0.39932,-1.67389,0.0386521][0.262746,0.357051,0][1.20821,-0.372272,0.0704272][0.39932,-1.67389,0.0386521][0.262746,0.357051,0][1.40864,-0.324531,0.0673282][0.341885,-0.936826,0.0739755][0.267075,0.382485,0][1.33952,-0.310611,0.563021][0.395996,-0.879607,0.263589][0.202666,0.383427,0][1.13846,-0.268807,1.00458][0.350135,-0.849088,0.395544][0.142551,0.366522,0][0.970771,-0.328144,0.802014][0.335435,-1.93067,0.287854][0.165025,0.341214,0][1.14629,-0.349013,0.457512][0.288153,-1.88834,0.159563][0.212292,0.356775,0][1.14629,-0.349013,0.457512][0.288153,-1.88834,0.159563][0.212292,0.356775,0][1.33952,-0.310611,0.563021][0.395996,-0.879607,0.263589][0.202666,0.383427,0][1.13846,-0.268807,1.00458][0.350135,-0.849088,0.395544][0.142551,0.366522,0][0.8263,-0.235708,1.35196][0.230626,-0.841349,0.488819][0.0922348,0.333635,0][0.702234,-0.31186,1.0693][0.271668,-1.88104,0.387536][0.125753,0.312304,0][0.970771,-0.328144,0.802014][0.335435,-1.93067,0.287854][0.165025,0.341214,0][0.970771,-0.328144,0.802014][0.335435,-1.93067,0.287854][0.165025,0.341214,0][1.13846,-0.268807,1.00458][0.350135,-0.849088,0.395544][0.142551,0.366522,0][0.8263,-0.235708,1.35196][0.230626,-0.841349,0.488819][0.0922348,0.333635,0][0.433934,-0.214612,1.57339][0.0853576,-0.820171,0.565715][0.0563644,0.288074,0][0.36788,-0.301652,1.23742][0.161786,-1.78259,0.430005][0.0978033,0.273075,0][0.702234,-0.31186,1.0693][0.271668,-1.88104,0.387536][0.125753,0.312304,0][0.702234,-0.31186,1.0693][0.271668,-1.88104,0.387536][0.125753,0.312304,0][0.8263,-0.235708,1.35196][0.230626,-0.841349,0.488819][0.0922348,0.333635,0][0.433934,-0.214612,1.57339][0.0853576,-0.820171,0.565715][0.0563644,0.288074,0][-1.14062e-006,-0.207374,1.64936][0.0853576,-0.820171,0.565715][0.0381807,0.234369,0][-1.19738e-006,-0.295632,1.27345][0.0107793,-1.62533,0.381605][0.0859967,0.226988,0][0.36788,-0.301652,1.23742][0.161786,-1.78259,0.430005][0.0978033,0.273075,0][0.36788,-0.301652,1.23742][0.161786,-1.78259,0.430005][0.0978033,0.273075,0][0.433934,-0.214612,1.57339][0.0853576,-0.820171,0.565715][0.0563644,0.288074,0][-1.14062e-006,-0.207374,1.64936][0.0853576,-0.820171,0.565715][0.0381807,0.234369,0][0.430592,-0.459058,-1.42305][-0.0353519,-0.981673,0.187265][0.437448,0.228812,0][0.366843,-0.443389,-1.09101][0.019442,-0.707792,0.00428997][0.393961,0.227223,0][-1.56043e-006,-0.440492,-1.1309][-0.00898467,-0.704023,0.0314982][0.391831,0.179777,0][-1.56043e-006,-0.440492,-1.1309][-0.00898467,-0.704023,0.0314982][0.391831,0.179777,0][-1.61581e-006,-0.468486,-1.4977][-0.02156,-0.968847,0.246721][0.438488,0.172575,0][0.430592,-0.459058,-1.42305][-0.0353519,-0.981673,0.187265][0.437448,0.228812,0][-1.39607e-006,0.66141,0.0562644][-0.0501094,0.990448,0.128458][0.634754,0.238427,0][-1.32932e-006,0.604076,0.498324][-0.0501094,0.990448,0.128458][0.692121,0.237612,0][0.131964,0.613428,0.477697][-0.0501094,0.990448,0.128458][0.689575,0.254656,0][-1.39607e-006,0.66141,0.0562644][-0.0501094,0.990448,0.128458][0.634754,0.238427,0][0.131964,0.613428,0.477697][-0.0501094,0.990448,0.128458][0.689575,0.254656,0][0.251921,0.608975,0.417129][0.0811059,0.992845,0.0876432][0.682137,0.270105,0][-1.39607e-006,0.66141,0.0562644][-0.0501094,0.990448,0.128458][0.634754,0.238427,0][0.251921,0.608975,0.417129][0.0811059,0.992845,0.0876432][0.682137,0.270105,0][0.34837,0.60217,0.320861][0.125846,0.990464,0.0560641][0.670138,0.282551,0][-1.39607e-006,0.66141,0.0562644][-0.0501094,0.990448,0.128458][0.634754,0.238427,0][0.34837,0.60217,0.320861][0.125846,0.990464,0.0560641][0.670138,0.282551,0][0.403726,0.593053,0.196615][0.166346,0.986066,0.00175605][0.65453,0.289728,0][-1.39607e-006,0.66141,0.0562644][-0.0501094,0.990448,0.128458][0.634754,0.238427,0][0.403726,0.593053,0.196615][0.166346,0.986066,0.00175605][0.65453,0.289728,0][0.412069,0.583699,0.0656964][0.186293,0.980769,-0.0582003][0.63799,0.290867,0][-1.39607e-006,0.66141,0.0562644][-0.0501094,0.990448,0.128458][0.634754,0.238427,0][0.412069,0.583699,0.0656964][0.186293,0.980769,-0.0582003][0.63799,0.290867,0][0.364316,0.57636,-0.0446986][0.186564,0.971639,-0.145299][0.623933,0.284789,0][-1.39607e-006,0.66141,0.0562644][-0.0501094,0.990448,0.128458][0.634754,0.238427,0][0.364316,0.57636,-0.0446986][0.186564,0.971639,-0.145299][0.623933,0.284789,0][0.267353,0.569863,-0.143769][0.162789,0.961278,-0.222362][0.611218,0.272381,0][-1.39607e-006,0.66141,0.0562644][-0.0501094,0.990448,0.128458][0.634754,0.238427,0][0.267353,0.569863,-0.143769][0.162789,0.961278,-0.222362][0.611218,0.272381,0][0.184194,0.562577,-0.239599][0.166501,0.96173,-0.217607][0.598954,0.261738,0][-1.39607e-006,0.66141,0.0562644][-0.0501094,0.990448,0.128458][0.634754,0.238427,0][0.184194,0.562577,-0.239599][0.166501,0.96173,-0.217607][0.598954,0.261738,0][0.0964636,0.553528,-0.352452][0.174347,0.961453,-0.212631][0.584539,0.250513,0][-1.39607e-006,0.66141,0.0562644][-0.0501094,0.990448,0.128458][0.634754,0.238427,0][0.0964636,0.553528,-0.352452][0.174347,0.961453,-0.212631][0.584539,0.250513,0][-1.46242e-006,0.551267,-0.38315][0.0545555,0.968547,-0.242776][0.580482,0.238129,0][-1.0953e-006,-0.000336729,1.94952][0.0853576,-0.820171,0.565715][0.511746,0.203526,0][0.48865,-0.00369652,1.85031][-0.0998068,0.848137,-0.520291][0.524515,0.140633,0][0.430766,-0.187472,1.56183][-0.0998068,0.848137,-0.520291][0.561644,0.148083,0][0.430766,-0.187472,1.56183][-0.0998068,0.848137,-0.520291][0.561644,0.148083,0][-1.14245e-006,-0.180284,1.63726][-0.0727758,0.864131,-0.497977][0.551936,0.203526,0][-1.0953e-006,-0.000336729,1.94952][0.0853576,-0.820171,0.565715][0.511746,0.203526,0][0.48865,-0.00369652,1.85031][-0.0998068,0.848137,-0.520291][0.524515,0.140633,0][0.929468,-0.0498419,1.58515][-0.194575,0.859293,-0.473029][0.558642,0.0838962,0][0.820564,-0.208362,1.34199][-0.194575,0.859293,-0.473029][0.58994,0.0979129,0][0.820564,-0.208362,1.34199][-0.194575,0.859293,-0.473029][0.58994,0.0979129,0][0.430766,-0.187472,1.56183][-0.0998068,0.848137,-0.520291][0.561644,0.148083,0][0.48865,-0.00369652,1.85031][-0.0998068,0.848137,-0.520291][0.524515,0.140633,0][0.929468,-0.0498419,1.58515][-0.194575,0.859293,-0.473029][0.558642,0.0838962,0][1.2793,-0.121713,1.17217][-0.265702,0.886298,-0.379313][0.611796,0.0388699,0][1.13157,-0.240956,0.997026][-0.265702,0.886298,-0.379313][0.634338,0.0578835,0][1.13157,-0.240956,0.997026][-0.265702,0.886298,-0.379313][0.634338,0.0578835,0][0.820564,-0.208362,1.34199][-0.194575,0.859293,-0.473029][0.58994,0.0979129,0][0.929468,-0.0498419,1.58515][-0.194575,0.859293,-0.473029][0.558642,0.0838962,0][1.2793,-0.121713,1.17217][-0.265702,0.886298,-0.379313][0.611796,0.0388699,0][1.50391,-0.212274,0.651777][-0.237023,0.934675,-0.264959][0.678775,0.00996119,0][1.33245,-0.282107,0.558815][-0.237023,0.934675,-0.264959][0.69074,0.0320297,0][1.33245,-0.282107,0.558815][-0.237023,0.934675,-0.264959][0.69074,0.0320297,0][1.13157,-0.240956,0.997026][-0.265702,0.886298,-0.379313][0.634338,0.0578835,0][1.2793,-0.121713,1.17217][-0.265702,0.886298,-0.379313][0.611796,0.0388699,0][1.50391,-0.212274,0.651777][-0.237023,0.934675,-0.264959][0.678775,0.00996119,0][1.5813,-0.252158,0.0635031][-0.235762,0.967,-0.096579][0.75449,0,0][1.40194,-0.29568,0.0655862][-0.235762,0.967,-0.096579][0.754222,0.0230853,0][1.40194,-0.29568,0.0655862][-0.235762,0.967,-0.096579][0.754222,0.0230853,0][1.33245,-0.282107,0.558815][-0.237023,0.934675,-0.264959][0.69074,0.0320297,0][1.50391,-0.212274,0.651777][-0.237023,0.934675,-0.264959][0.678775,0.00996119,0][1.5813,-0.252158,0.0635031][-0.235762,0.967,-0.096579][0.75449,0,0][1.50391,-0.306866,-0.520864][-0.143146,0.986973,-0.0734404][0.829702,0.00996119,0][1.33245,-0.324538,-0.424161][-0.143146,0.986973,-0.0734404][0.817256,0.0320297,0][1.33245,-0.324538,-0.424161][-0.143146,0.986973,-0.0734404][0.817256,0.0320297,0][1.40194,-0.29568,0.0655862][-0.235762,0.967,-0.096579][0.754222,0.0230853,0][1.5813,-0.252158,0.0635031][-0.235762,0.967,-0.096579][0.75449,0,0][1.50391,-0.306866,-0.520864][-0.143146,0.986973,-0.0734404][0.829702,0.00996119,0][1.2793,-0.372071,-1.04816][-0.0421791,0.993588,-0.1049][0.897569,0.0388699,0][1.13157,-0.359008,-0.86503][-0.0421791,0.993588,-0.1049][0.873999,0.0578835,0][1.13157,-0.359008,-0.86503][-0.0421791,0.993588,-0.1049][0.873999,0.0578835,0][1.33245,-0.324538,-0.424161][-0.143146,0.986973,-0.0734404][0.817256,0.0320297,0][1.50391,-0.306866,-0.520864][-0.143146,0.986973,-0.0734404][0.829702,0.00996119,0][1.2793,-0.372071,-1.04816][-0.0421791,0.993588,-0.1049][0.897569,0.0388699,0][0.929467,-0.453753,-1.45932][0.00555481,0.979903,-0.199399][0.950488,0.0838962,0][0.820563,-0.402117,-1.20859][0.00555481,0.979903,-0.199399][0.918218,0.0979129,0][0.820563,-0.402117,-1.20859][0.00555481,0.979903,-0.199399][0.918218,0.0979129,0][1.13157,-0.359008,-0.86503][-0.0421791,0.993588,-0.1049][0.873999,0.0578835,0][1.2793,-0.372071,-1.04816][-0.0421791,0.993588,-0.1049][0.897569,0.0388699,0][0.929467,-0.453753,-1.45932][0.00555481,0.979903,-0.199399][0.950488,0.0838962,0][0.488649,-0.506197,-1.7233][0.0311042,0.969156,-0.244479][0.984464,0.140633,0][0.430765,-0.429733,-1.42755][0.0311042,0.969156,-0.244479][0.946399,0.148083,0][0.430765,-0.429733,-1.42755][0.0311042,0.969156,-0.244479][0.946399,0.148083,0][0.820563,-0.402117,-1.20859][0.00555481,0.979903,-0.199399][0.918218,0.0979129,0][0.929467,-0.453753,-1.45932][0.00555481,0.979903,-0.199399][0.950488,0.0838962,0][0.488649,-0.506197,-1.7233][0.0311042,0.969156,-0.244479][0.984464,0.140633,0][-1.66304e-006,-0.538607,-1.81047][-0.0350084,-0.97518,0.218628][0.995684,0.203526,0][-1.61656e-006,-0.439237,-1.50267][-0.00831003,0.951605,-0.307212][0.956067,0.203526,0][-1.61656e-006,-0.439237,-1.50267][-0.00831003,0.951605,-0.307212][0.956067,0.203526,0][0.430765,-0.429733,-1.42755][0.0311042,0.969156,-0.244479][0.946399,0.148083,0][0.488649,-0.506197,-1.7233][0.0311042,0.969156,-0.244479][0.984464,0.140633,0][0.820563,-0.402117,-1.20859][0.00555481,0.979903,-0.199399][0.918218,0.0979129,0][0.430765,-0.429733,-1.42755][0.0311042,0.969156,-0.244479][0.946399,0.148083,0][0.366204,-0.413756,-1.09232][-0.0396827,0.997687,-0.055192][0.903252,0.156392,0][0.366204,-0.413756,-1.09232][-0.0396827,0.997687,-0.055192][0.903252,0.156392,0][0.699098,-0.403607,-0.924993][-0.0272497,0.999608,-0.00641691][0.881716,0.113546,0][0.820563,-0.402117,-1.20859][0.00555481,0.979903,-0.199399][0.918218,0.0979129,0][1.13157,-0.359008,-0.86503][-0.0421791,0.993588,-0.1049][0.873999,0.0578835,0][0.820563,-0.402117,-1.20859][0.00555481,0.979903,-0.199399][0.918218,0.0979129,0][0.699098,-0.403607,-0.924993][-0.0272497,0.999608,-0.00641691][0.881716,0.113546,0][0.699098,-0.403607,-0.924993][-0.0272497,0.999608,-0.00641691][0.881716,0.113546,0][0.966807,-0.387475,-0.659007][-0.109281,0.992764,0.049777][0.847482,0.0790902,0][1.13157,-0.359008,-0.86503][-0.0421791,0.993588,-0.1049][0.873999,0.0578835,0][1.33245,-0.324538,-0.424161][-0.143146,0.986973,-0.0734404][0.817256,0.0320297,0][1.13157,-0.359008,-0.86503][-0.0421791,0.993588,-0.1049][0.873999,0.0578835,0][0.966807,-0.387475,-0.659007][-0.109281,0.992764,0.049777][0.847482,0.0790902,0][0.966807,-0.387475,-0.659007][-0.109281,0.992764,0.049777][0.847482,0.0790902,0][1.14121,-0.366693,-0.316377][-0.193944,0.980227,0.039265][0.803383,0.0566436,0][1.33245,-0.324538,-0.424161][-0.143146,0.986973,-0.0734404][0.817256,0.0320297,0][1.40194,-0.29568,0.0655862][-0.235762,0.967,-0.096579][0.754222,0.0230853,0][1.33245,-0.324538,-0.424161][-0.143146,0.986973,-0.0734404][0.817256,0.0320297,0][1.14121,-0.366693,-0.316377][-0.193944,0.980227,0.039265][0.803383,0.0566436,0][1.14121,-0.366693,-0.316377][-0.193944,0.980227,0.039265][0.803383,0.0566436,0][1.20189,-0.343318,0.0690322][-0.231963,0.972465,-0.0224565][0.753778,0.0488328,0][1.40194,-0.29568,0.0655862][-0.235762,0.967,-0.096579][0.754222,0.0230853,0][1.33245,-0.282107,0.558815][-0.237023,0.934675,-0.264959][0.69074,0.0320297,0][1.40194,-0.29568,0.0655862][-0.235762,0.967,-0.096579][0.754222,0.0230853,0][1.20189,-0.343318,0.0690322][-0.231963,0.972465,-0.0224565][0.753778,0.0488328,0][1.20189,-0.343318,0.0690322][-0.231963,0.972465,-0.0224565][0.753778,0.0488328,0][1.14121,-0.319944,0.454441][-0.149477,0.985251,-0.0832882][0.704173,0.0566436,0][1.33245,-0.282107,0.558815][-0.237023,0.934675,-0.264959][0.69074,0.0320297,0][1.13157,-0.240956,0.997026][-0.265702,0.886298,-0.379313][0.634338,0.0578835,0][1.33245,-0.282107,0.558815][-0.237023,0.934675,-0.264959][0.69074,0.0320297,0][1.14121,-0.319944,0.454441][-0.149477,0.985251,-0.0832882][0.704173,0.0566436,0][1.14121,-0.319944,0.454441][-0.149477,0.985251,-0.0832882][0.704173,0.0566436,0][0.966808,-0.29916,0.797071][-0.168532,0.974983,-0.144928][0.660074,0.0790902,0][1.13157,-0.240956,0.997026][-0.265702,0.886298,-0.379313][0.634338,0.0578835,0][0.820564,-0.208362,1.34199][-0.194575,0.859293,-0.473029][0.58994,0.0979129,0][1.13157,-0.240956,0.997026][-0.265702,0.886298,-0.379313][0.634338,0.0578835,0][0.966808,-0.29916,0.797071][-0.168532,0.974983,-0.144928][0.660074,0.0790902,0][0.966808,-0.29916,0.797071][-0.168532,0.974983,-0.144928][0.660074,0.0790902,0][0.699099,-0.283027,1.06306][-0.139277,0.970049,-0.199017][0.62584,0.113546,0][0.820564,-0.208362,1.34199][-0.194575,0.859293,-0.473029][0.58994,0.0979129,0][0.430766,-0.187472,1.56183][-0.0998068,0.848137,-0.520291][0.561644,0.148083,0][0.820564,-0.208362,1.34199][-0.194575,0.859293,-0.473029][0.58994,0.0979129,0][0.699099,-0.283027,1.06306][-0.139277,0.970049,-0.199017][0.62584,0.113546,0][0.699099,-0.283027,1.06306][-0.139277,0.970049,-0.199017][0.62584,0.113546,0][0.366205,-0.272879,1.23038][-0.0873752,0.968645,-0.232578][0.604304,0.156392,0][0.430766,-0.187472,1.56183][-0.0998068,0.848137,-0.520291][0.561644,0.148083,0][-1.14245e-006,-0.180284,1.63726][-0.0727758,0.864131,-0.497977][0.551936,0.203526,0][0.430766,-0.187472,1.56183][-0.0998068,0.848137,-0.520291][0.561644,0.148083,0][0.366205,-0.272879,1.23038][-0.0873752,0.968645,-0.232578][0.604304,0.156392,0][0.366205,-0.272879,1.23038][-0.0873752,0.968645,-0.232578][0.604304,0.156392,0][-1.19528e-006,-0.269424,1.28735][-0.0292524,0.968634,-0.246766][0.596971,0.203526,0][-1.14245e-006,-0.180284,1.63726][-0.0727758,0.864131,-0.497977][0.551936,0.203526,0][0.430765,-0.429733,-1.42755][0.0311042,0.969156,-0.244479][0.946399,0.148083,0][-1.61656e-006,-0.439237,-1.50267][-0.00831003,0.951605,-0.307212][0.956067,0.203526,0][-1.56321e-006,-0.417211,-1.14929][-0.0111701,0.998001,-0.0622027][0.910585,0.203526,0][-1.56321e-006,-0.417211,-1.14929][-0.0111701,0.998001,-0.0622027][0.910585,0.203526,0][0.366204,-0.413756,-1.09232][-0.0396827,0.997687,-0.055192][0.903252,0.156392,0][0.430765,-0.429733,-1.42755][0.0311042,0.969156,-0.244479][0.946399,0.148083,0][-1.21018e-006,-0.269424,1.28735][0.151963,0.220617,0.96345][0.82537,0.780941,0][0.366205,-0.272879,1.23038][0.151963,0.220617,0.96345][0.872503,0.780496,0][0.347895,-0.00721364,1.17244][0.151963,0.220617,0.96345][0.870147,0.814689,0][0.347895,-0.00721364,1.17244][0.151963,0.220617,0.96345][0.870147,0.814689,0][-1.21948e-006,0.000745723,1.22577][0.152736,0.219637,0.963551][0.82537,0.815714,0][-1.21018e-006,-0.269424,1.28735][0.151963,0.220617,0.96345][0.82537,0.780941,0][0.366205,-0.272879,1.23038][0.151963,0.220617,0.96345][0.872503,0.780496,0][0.699099,-0.283027,1.06306][0.44364,0.217444,0.869426][0.915349,0.77919,0][0.664145,-0.0134716,1.01348][0.44364,0.217444,0.869426][0.91085,0.813884,0][0.664145,-0.0134716,1.01348][0.44364,0.217444,0.869426][0.91085,0.813884,0][0.347895,-0.00721364,1.17244][0.151963,0.220617,0.96345][0.870147,0.814689,0][0.366205,-0.272879,1.23038][0.151963,0.220617,0.96345][0.872503,0.780496,0][0.699099,-0.283027,1.06306][0.44364,0.217444,0.869426][0.423378,0.0101367,0][0.966808,-0.29916,0.797071][0.69517,0.212235,0.6868][0.471948,0.0080118,0][0.918468,-0.0234204,0.760791][0.69517,0.212235,0.6868][0.470897,0.0443288,0][0.918468,-0.0234204,0.760791][0.69517,0.212235,0.6868][0.470897,0.0443288,0][0.664145,-0.0134716,1.01348][0.44364,0.217444,0.869426][0.424756,0.0456711,0][0.699099,-0.283027,1.06306][0.44364,0.217444,0.869426][0.423378,0.0101367,0][0.966808,-0.29916,0.797071][0.69517,0.212235,0.6868][0.790144,0.366434,0][1.14121,-0.319944,0.454441][0.877124,0.2057,0.433984][0.834314,0.36549,0][1.08415,-0.0362368,0.435293][0.877124,0.2057,0.433984][0.835345,0.402074,0][1.08415,-0.0362368,0.435293][0.877124,0.2057,0.433984][0.835345,0.402074,0][0.918468,-0.0234204,0.760791][0.69517,0.212235,0.6868][0.793419,0.40208,0][0.966808,-0.29916,0.797071][0.69517,0.212235,0.6868][0.790144,0.366434,0][1.14121,-0.319944,0.454441][0.877124,0.2057,0.433984][0.834314,0.36549,0][1.20189,-0.343318,0.0690322][0.969839,0.199084,0.140636][0.883999,0.364429,0][1.1418,-0.0506516,0.0691552][0.969839,0.199084,0.140636][0.882506,0.402068,0][1.1418,-0.0506516,0.0691552][0.969839,0.199084,0.140636][0.882506,0.402068,0][1.08415,-0.0362368,0.435293][0.877124,0.2057,0.433984][0.835345,0.402074,0][1.14121,-0.319944,0.454441][0.877124,0.2057,0.433984][0.834314,0.36549,0][1.20189,-0.343318,0.0690322][0.969839,0.199084,0.140636][0.883999,0.364429,0][1.14121,-0.366693,-0.316377][0.967282,0.193532,-0.164045][0.933684,0.363367,0][1.08415,-0.0650673,-0.296984][0.967282,0.193532,-0.164045][0.929667,0.402061,0][1.08415,-0.0650673,-0.296984][0.967282,0.193532,-0.164045][0.929667,0.402061,0][1.1418,-0.0506516,0.0691552][0.969839,0.199084,0.140636][0.882506,0.402068,0][1.20189,-0.343318,0.0690322][0.969839,0.199084,0.140636][0.883999,0.364429,0][1.14121,-0.366693,-0.316377][0.967282,0.193532,-0.164045][0.933684,0.363367,0][0.966808,-0.387475,-0.659007][0.870348,0.189518,-0.454508][0.977853,0.362423,0][0.918468,-0.0778818,-0.622482][0.870348,0.189518,-0.454508][0.971594,0.402055,0][0.918468,-0.0778818,-0.622482][0.870348,0.189518,-0.454508][0.971594,0.402055,0][1.08415,-0.0650673,-0.296984][0.967282,0.193532,-0.164045][0.929667,0.402061,0][1.14121,-0.366693,-0.316377][0.967282,0.193532,-0.164045][0.933684,0.363367,0][0.966808,-0.387475,-0.659007][0.870348,0.189518,-0.454508][0,0.00924203,0][0.699098,-0.403607,-0.924993][0.686717,0.186858,-0.702499][0.0485701,0.00712845,0][0.664143,-0.0878305,-0.875169][0.686717,0.186858,-0.702499][0.0473047,0.0484999,0][0.664143,-0.0878305,-0.875169][0.686717,0.186858,-0.702499][0.0473047,0.0484999,0][0.918468,-0.0778818,-0.622482][0.870348,0.189518,-0.454508][0.00116301,0.0498279,0][0.966808,-0.387475,-0.659007][0.870348,0.189518,-0.454508][0,0.00924203,0][0.699098,-0.403607,-0.924993][0.686717,0.186858,-0.702499][0.230055,0.934263,0][0.366204,-0.413756,-1.09232][0.436811,0.185261,-0.880269][0.272901,0.932957,0][0.347893,-0.0940885,-1.03413][0.436811,0.185262,-0.880269][0.275257,0.9741,0][0.347893,-0.0940885,-1.03413][0.436811,0.185262,-0.880269][0.275257,0.9741,0][0.664143,-0.0878305,-0.875169][0.686717,0.186858,-0.702499][0.234554,0.974906,0][0.699098,-0.403607,-0.924993][0.686717,0.186858,-0.702499][0.230055,0.934263,0][0.366204,-0.413756,-1.09232][0.436811,0.185261,-0.880269][0.272901,0.932957,0][-1.57811e-006,-0.417211,-1.14929][0.149372,0.184711,-0.971375][0.320034,0.932512,0][-1.56889e-006,-0.09622,-1.08825][0.149372,0.184711,-0.971375][0.320034,0.973826,0][-1.56889e-006,-0.09622,-1.08825][0.149372,0.184711,-0.971375][0.320034,0.973826,0][0.347893,-0.0940885,-1.03413][0.436811,0.185262,-0.880269][0.275257,0.9741,0][0.366204,-0.413756,-1.09232][0.436811,0.185261,-0.880269][0.272901,0.932957,0][-1.21948e-006,0.000745723,1.22577][0.152736,0.219637,0.963551][0.706417,0.78102,0][0.347895,-0.00721364,1.17244][0.151963,0.220617,0.96345][0.751194,0.779995,0][0.319969,0.360582,1.06916][0.151769,0.277884,0.94855][0.747599,0.827333,0][0.319969,0.360582,1.06916][0.151769,0.277884,0.94855][0.747599,0.827333,0][-1.23561e-006,0.36254,1.11893][0.149239,0.280034,0.948319][0.706417,0.827585,0][-1.21948e-006,0.000745723,1.22577][0.152736,0.219637,0.963551][0.706417,0.78102,0][0.347895,-0.00721364,1.17244][0.151963,0.220617,0.96345][0.751194,0.779995,0][0.664145,-0.0134716,1.01348][0.44364,0.217444,0.869426][0.791897,0.77919,0][0.610874,0.354827,0.922985][0.43627,0.273713,0.857175][0.785041,0.826593,0][0.610874,0.354827,0.922985][0.43627,0.273713,0.857175][0.785041,0.826593,0][0.319969,0.360582,1.06916][0.151769,0.277884,0.94855][0.747599,0.827333,0][0.347895,-0.00721364,1.17244][0.151963,0.220617,0.96345][0.751194,0.779995,0][0.664145,-0.0134716,1.01348][0.44364,0.217444,0.869426][0.790144,0.240049,0][0.918468,-0.0234204,0.760791][0.69517,0.212235,0.6868][0.836204,0.236998,0][0.844911,0.345678,0.690639][0.684738,0.26546,0.678723][0.837793,0.286247,0][0.844911,0.345678,0.690639][0.684738,0.26546,0.678723][0.837793,0.286247,0][0.610874,0.354827,0.922985][0.43627,0.273713,0.857175][0.795424,0.289057,0][0.664145,-0.0134716,1.01348][0.44364,0.217444,0.869426][0.790144,0.240049,0][0.918468,-0.0234204,0.760791][0.69517,0.212235,0.6868][0.836204,0.236998,0][1.08415,-0.0362368,0.435293][0.877124,0.2057,0.433984][0.881021,0.237543,0][0.997475,0.333888,0.391305][0.865975,0.253987,0.430787][0.879026,0.286742,0][0.997475,0.333888,0.391305][0.865975,0.253987,0.430787][0.879026,0.286742,0][0.844911,0.345678,0.690639][0.684738,0.26546,0.678723][0.837793,0.286247,0][0.918468,-0.0234204,0.760791][0.69517,0.212235,0.6868][0.836204,0.236998,0][1.08415,-0.0362368,0.435293][0.877124,0.2057,0.433984][0.881021,0.237543,0][1.1418,-0.0506516,0.0691552][0.969839,0.199084,0.140636][0.919897,0.241712,0][1.05059,0.320638,0.0545362][0.960026,0.241418,0.141658][0.91479,0.290575,0][1.05059,0.320638,0.0545362][0.960026,0.241418,0.141658][0.91479,0.290575,0][0.997475,0.333888,0.391305][0.865975,0.253987,0.430787][0.879026,0.286742,0][1.08415,-0.0362368,0.435293][0.877124,0.2057,0.433984][0.881021,0.237543,0][1.06909,0.0902586,-0.13206][0.606654,0.710998,-0.355602][0.299251,0.250052,0][1.06624,0.0161619,-0.285071][0.606654,0.710998,-0.355602][0.282595,0.264246,0][0.828204,0.268096,-0.187434][0.606654,0.710998,-0.355602][0.276224,0.21834,0][0.828204,0.268096,-0.187434][0.606654,0.710998,-0.355602][0.276224,0.21834,0][1.02475,0.305472,-0.0581488][0.459806,0.371696,-0.806487][0.303583,0.223473,0][1.06909,0.0902586,-0.13206][0.606654,0.710998,-0.355602][0.299251,0.250052,0][1.06624,0.0161619,-0.285071][0.606654,0.710998,-0.355602][0.282595,0.264246,0][0.897839,-0.0398836,-0.601367][0.518717,0.750667,-0.409184][0.236785,0.272378,0][0.626621,0.25233,-0.409107][0.518717,0.750667,-0.409184][0.238358,0.215523,0][0.626621,0.25233,-0.409107][0.518717,0.750667,-0.409184][0.238358,0.215523,0][0.828204,0.268096,-0.187434][0.606654,0.710998,-0.355602][0.276224,0.21834,0][1.06624,0.0161619,-0.285071][0.606654,0.710998,-0.355602][0.282595,0.264246,0][0.897839,-0.0398836,-0.601367][0.518717,0.750667,-0.409184][0.236785,0.272378,0][0.650058,-0.00584598,-0.847123][0.510442,0.755902,-0.409953][0.192979,0.262738,0][0.465687,0.236327,-0.630152][0.510442,0.755902,-0.409953][0.203325,0.215804,0][0.465687,0.236327,-0.630152][0.510442,0.755902,-0.409953][0.203325,0.215804,0][0.626621,0.25233,-0.409107][0.518717,0.750667,-0.409184][0.238358,0.215523,0][0.897839,-0.0398836,-0.601367][0.518717,0.750667,-0.409184][0.236785,0.272378,0][0.650058,-0.00584598,-0.847123][0.510442,0.755902,-0.409953][0.589277,0.790822,0][0.474236,0.0628825,-0.914054][0.444737,0.324911,-0.83465][0.611906,0.799668,0][0.364889,0.233639,-0.905847][0.444737,0.324911,-0.83465][0.62598,0.821645,0][0.364889,0.233639,-0.905847][0.444737,0.324911,-0.83465][0.166366,0.222233,0][0.465687,0.236327,-0.630152][0.510442,0.755902,-0.409953][0.203325,0.215804,0][0.650058,-0.00584598,-0.847123][0.510442,0.755902,-0.409953][0.192979,0.262738,0][0.347893,-0.0940885,-1.03413][0.436811,0.185262,-0.880269][0.628167,0.779464,0][-1.56889e-006,-0.09622,-1.08825][0.149372,0.184711,-0.971375][0.672944,0.77919,0][-1.5583e-006,0.2051,-1.01813][0.148471,0.224147,-0.963179][0.672944,0.817972,0][-1.5583e-006,0.2051,-1.01813][0.148471,0.224147,-0.963179][0.672944,0.817972,0][0.235902,0.207061,-0.968354][0.196082,0.278284,-0.940271][0.642582,0.818224,0][0.347893,-0.0940885,-1.03413][0.436811,0.185262,-0.880269][0.628167,0.779464,0][-1.23561e-006,0.36254,1.11893][0.149239,0.280034,0.948319][0.706417,0.827585,0][0.319969,0.360582,1.06916][0.151769,0.277884,0.94855][0.747599,0.827333,0][0.299129,0.592217,0.993771][0.147633,0.318072,0.936501][0.744917,0.857147,0][0.299129,0.592217,0.993771][0.147633,0.318072,0.936501][0.744917,0.857147,0][-1.24749e-006,0.59405,1.0403][0.147623,0.318084,0.936499][0.706417,0.857382,0][-1.23561e-006,0.36254,1.11893][0.149239,0.280034,0.948319][0.706417,0.827585,0][0.319969,0.360582,1.06916][0.151769,0.277884,0.94855][0.747599,0.827333,0][0.610874,0.354827,0.922985][0.43627,0.273713,0.857175][0.785041,0.826593,0][0.571118,0.586826,0.857143][0.431234,0.313953,0.845855][0.779924,0.856453,0][0.571118,0.586826,0.857143][0.431234,0.313953,0.845855][0.779924,0.856453,0][0.299129,0.592217,0.993771][0.147633,0.318072,0.936501][0.744917,0.857147,0][0.319969,0.360582,1.06916][0.151769,0.277884,0.94855][0.747599,0.827333,0][0.610874,0.354827,0.922985][0.43627,0.273713,0.857175][0.795424,0.289057,0][0.844911,0.345678,0.690639][0.684738,0.26546,0.678723][0.837793,0.286247,0][0.790014,0.578242,0.63998][0.676814,0.305643,0.669705][0.838623,0.317647,0][0.790014,0.578242,0.63998][0.676814,0.305643,0.669705][0.838623,0.317647,0][0.571118,0.586826,0.857143][0.431234,0.313953,0.845855][0.799009,0.320282,0][0.610874,0.354827,0.922985][0.43627,0.273713,0.857175][0.795424,0.289057,0][0.844911,0.345678,0.690639][0.684738,0.26546,0.678723][0.837793,0.286247,0][0.997475,0.333888,0.391305][0.865975,0.253987,0.430787][0.879026,0.286742,0][0.92014,0.568048,0.35978][0.844696,0.335159,0.417322][0.876087,0.318565,0][0.92014,0.568048,0.35978][0.844696,0.335159,0.417322][0.876087,0.318565,0][0.790014,0.578242,0.63998][0.676814,0.305643,0.669705][0.838623,0.317647,0][0.844911,0.345678,0.690639][0.684738,0.26546,0.678723][0.837793,0.286247,0][0.997475,0.333888,0.391305][0.865975,0.253987,0.430787][0.879026,0.286742,0][1.05059,0.320638,0.0545362][0.960026,0.241418,0.141658][0.91479,0.290575,0][0.947098,0.558572,0.0597313][0.910474,0.393219,0.128125][0.906138,0.322833,0][0.947098,0.558572,0.0597313][0.910474,0.393219,0.128125][0.906138,0.322833,0][0.92014,0.568048,0.35978][0.844696,0.335159,0.417322][0.876087,0.318565,0][0.997475,0.333888,0.391305][0.865975,0.253987,0.430787][0.879026,0.286742,0][1.02475,0.305472,-0.0581488][0.459806,0.371696,-0.806487][0.249206,0.139014,0][0.828204,0.268096,-0.187434][0.606654,0.710998,-0.355602][0.279651,0.135393,0][0.831439,0.512042,-0.192049][0.552463,-0.0230893,-0.833218][0.278401,0.166774,0][0.831439,0.512042,-0.192049][0.552463,-0.0230893,-0.833218][0.275115,0.196756,0][0.962777,0.448562,-0.0585837][0.746877,0.32172,-0.581954][0.298838,0.205814,0][1.02475,0.305472,-0.0581488][0.459806,0.371696,-0.806487][0.303583,0.223473,0][0.828204,0.268096,-0.187434][0.606654,0.710998,-0.355602][0.279651,0.135393,0][0.626621,0.25233,-0.409107][0.518717,0.750667,-0.409184][0.317083,0.135049,0][0.612827,0.521682,-0.417644][0.739151,0.0165122,-0.673337][0.31781,0.169761,0][0.612827,0.521682,-0.417644][0.739151,0.0165122,-0.673337][0.31781,0.169761,0][0.831439,0.512042,-0.192049][0.552463,-0.0230893,-0.833218][0.278401,0.166774,0][0.828204,0.268096,-0.187434][0.606654,0.710998,-0.355602][0.279651,0.135393,0][0.626621,0.25233,-0.409107][0.518717,0.750667,-0.409184][0.238358,0.215523,0][0.465687,0.236327,-0.630152][0.510442,0.755902,-0.409953][0.203325,0.215804,0][0.419147,0.477414,-0.665399][0.804132,0.0689052,-0.590444][0.195496,0.192217,0][0.419147,0.477414,-0.665399][0.804132,0.0689052,-0.590444][0.195496,0.192217,0][0.612827,0.521682,-0.417644][0.739151,0.0165122,-0.673337][0.235577,0.190538,0][0.626621,0.25233,-0.409107][0.518717,0.750667,-0.409184][0.238358,0.215523,0][0.465687,0.236327,-0.630152][0.510442,0.755902,-0.409953][0.203325,0.215804,0][0.364889,0.233639,-0.905847][0.444737,0.324911,-0.83465][0.166366,0.222233,0][0.341417,0.429352,-0.81962][0.90709,0.256007,-0.334138][0.173528,0.198392,0][0.341417,0.429352,-0.81962][0.90709,0.256007,-0.334138][0.173528,0.198392,0][0.419147,0.477414,-0.665399][0.804132,0.0689052,-0.590444][0.195496,0.192217,0][0.465687,0.236327,-0.630152][0.510442,0.755902,-0.409953][0.203325,0.215804,0][0.235902,0.207061,-0.968354][0.196082,0.278284,-0.940271][0.642582,0.818224,0][-1.5583e-006,0.2051,-1.01813][0.148471,0.224147,-0.963179][0.672944,0.817972,0][-1.54772e-006,0.515313,-0.948047][0.199864,0.215916,-0.955738][0.672944,0.857899,0][-1.54772e-006,0.515313,-0.948047][0.199864,0.215916,-0.955738][0.672944,0.857899,0][0.219743,0.518454,-0.889427][0.246219,0.250117,-0.936385][0.644661,0.858303,0][0.235902,0.207061,-0.968354][0.196082,0.278284,-0.940271][0.642582,0.818224,0][1.1418,-0.0506516,0.0691552][0.969839,0.199084,0.140636][0.326651,0.258216,0][1.08415,-0.0650673,-0.296984][0.967282,0.193532,-0.164045][0.282786,0.273562,0][1.06624,0.0161619,-0.285071][0.606654,0.710998,-0.355602][0.282595,0.264246,0][1.06624,0.0161619,-0.285071][0.606654,0.710998,-0.355602][0.282595,0.264246,0][1.06909,0.0902586,-0.13206][0.606654,0.710998,-0.355602][0.299251,0.250052,0][1.1418,-0.0506516,0.0691552][0.969839,0.199084,0.140636][0.326651,0.258216,0][1.05059,0.320638,0.0545362][0.960026,0.241418,0.141658][0.317597,0.218398,0][1.1418,-0.0506516,0.0691552][0.969839,0.199084,0.140636][0.326651,0.258216,0][1.06909,0.0902586,-0.13206][0.606654,0.710998,-0.355602][0.299251,0.250052,0][1.06909,0.0902586,-0.13206][0.606654,0.710998,-0.355602][0.299251,0.250052,0][1.02475,0.305472,-0.0581488][0.459806,0.371696,-0.806487][0.303583,0.223473,0][1.05059,0.320638,0.0545362][0.960026,0.241418,0.141658][0.317597,0.218398,0][1.08415,-0.0650673,-0.296984][0.967282,0.193532,-0.164045][0.282786,0.273562,0][0.918468,-0.0778818,-0.622482][0.870348,0.189518,-0.454508][0.23601,0.278456,0][0.897839,-0.0398836,-0.601367][0.518717,0.750667,-0.409184][0.236785,0.272378,0][0.897839,-0.0398836,-0.601367][0.518717,0.750667,-0.409184][0.236785,0.272378,0][1.06624,0.0161619,-0.285071][0.606654,0.710998,-0.355602][0.282595,0.264246,0][1.08415,-0.0650673,-0.296984][0.967282,0.193532,-0.164045][0.282786,0.273562,0][0.918468,-0.0778818,-0.622482][0.870348,0.189518,-0.454508][0.23601,0.278456,0][0.664143,-0.0878305,-0.875169][0.686717,0.186858,-0.702499][0.191151,0.272643,0][0.650058,-0.00584598,-0.847123][0.510442,0.755902,-0.409953][0.192979,0.262738,0][0.650058,-0.00584598,-0.847123][0.510442,0.755902,-0.409953][0.192979,0.262738,0][0.897839,-0.0398836,-0.601367][0.518717,0.750667,-0.409184][0.236785,0.272378,0][0.918468,-0.0778818,-0.622482][0.870348,0.189518,-0.454508][0.23601,0.278456,0][0.664143,-0.0878305,-0.875169][0.686717,0.186858,-0.702499][0.587464,0.78027,0][0.347893,-0.0940885,-1.03413][0.436811,0.185262,-0.880269][0.628167,0.779464,0][0.474236,0.0628825,-0.914054][0.444737,0.324911,-0.83465][0.611906,0.799668,0][0.474236,0.0628825,-0.914054][0.444737,0.324911,-0.83465][0.611906,0.799668,0][0.650058,-0.00584598,-0.847123][0.510442,0.755902,-0.409953][0.589277,0.790822,0][0.664143,-0.0878305,-0.875169][0.686717,0.186858,-0.702499][0.587464,0.78027,0][0.347893,-0.0940885,-1.03413][0.436811,0.185262,-0.880269][0.628167,0.779464,0][0.235902,0.207061,-0.968354][0.196082,0.278284,-0.940271][0.642582,0.818224,0][0.364889,0.233639,-0.905847][0.444737,0.324911,-0.83465][0.62598,0.821645,0][0.364889,0.233639,-0.905847][0.444737,0.324911,-0.83465][0.62598,0.821645,0][0.474236,0.0628825,-0.914054][0.444737,0.324911,-0.83465][0.611906,0.799668,0][0.347893,-0.0940885,-1.03413][0.436811,0.185262,-0.880269][0.628167,0.779464,0][0.817694,0.568529,-0.190504][0.771564,0.498462,-0.395252][0.274158,0.190519,0][0.929272,0.565089,0.0229673][0.771564,0.498462,-0.395252][0.305074,0.188604,0][0.962777,0.448562,-0.0585837][0.746877,0.32172,-0.581954][0.298838,0.205814,0][0.962777,0.448562,-0.0585837][0.746877,0.32172,-0.581954][0.298838,0.205814,0][0.831439,0.512042,-0.192049][0.552463,-0.0230893,-0.833218][0.275115,0.196756,0][0.817694,0.568529,-0.190504][0.771564,0.498462,-0.395252][0.274158,0.190519,0][0.610031,0.584542,-0.412853][0.72385,0.194243,-0.662051][0.235698,0.184397,0][0.817694,0.568529,-0.190504][0.771564,0.498462,-0.395252][0.274158,0.190519,0][0.831439,0.512042,-0.192049][0.552463,-0.0230893,-0.833218][0.275115,0.196756,0][0.831439,0.512042,-0.192049][0.552463,-0.0230893,-0.833218][0.275115,0.196756,0][0.612827,0.521682,-0.417644][0.739151,0.0165122,-0.673337][0.235577,0.190538,0][0.610031,0.584542,-0.412853][0.72385,0.194243,-0.662051][0.235698,0.184397,0][0.417253,0.550774,-0.64897][0.76614,0.0826528,-0.637337][0.196913,0.18461,0][0.610031,0.584542,-0.412853][0.72385,0.194243,-0.662051][0.235698,0.184397,0][0.612827,0.521682,-0.417644][0.739151,0.0165122,-0.673337][0.235577,0.190538,0][0.612827,0.521682,-0.417644][0.739151,0.0165122,-0.673337][0.235577,0.190538,0][0.419147,0.477414,-0.665399][0.804132,0.0689052,-0.590444][0.195496,0.192217,0][0.417253,0.550774,-0.64897][0.76614,0.0826528,-0.637337][0.196913,0.18461,0][0.235902,0.207061,-0.968354][0.196082,0.278284,-0.940271][0.150859,0.217924,0][0.219743,0.518454,-0.889427][0.246219,0.250117,-0.936385][0.157329,0.184548,0][0.251451,0.533027,-0.849576][0.7285,0.203593,-0.654093][0.163788,0.183647,0][0.235902,0.207061,-0.968354][0.196082,0.278284,-0.940271][0.642582,0.818224,0][0.251451,0.533027,-0.849576][0.7285,0.203593,-0.654093][0.64058,0.860179,0][0.341417,0.429352,-0.81962][0.90709,0.256007,-0.334138][0.629001,0.846835,0][0.235902,0.207061,-0.968354][0.196082,0.278284,-0.940271][0.642582,0.818224,0][0.341417,0.429352,-0.81962][0.90709,0.256007,-0.334138][0.629001,0.846835,0][0.364889,0.233639,-0.905847][0.444737,0.324911,-0.83465][0.62598,0.821645,0][0.251451,0.533027,-0.849576][0.7285,0.203593,-0.654093][0.163788,0.183647,0][0.417253,0.550774,-0.64897][0.76614,0.0826528,-0.637337][0.196913,0.18461,0][0.419147,0.477414,-0.665399][0.804132,0.0689052,-0.590444][0.195496,0.192217,0][0.419147,0.477414,-0.665399][0.804132,0.0689052,-0.590444][0.195496,0.192217,0][0.341417,0.429352,-0.81962][0.90709,0.256007,-0.334138][0.173528,0.198392,0][0.251451,0.533027,-0.849576][0.7285,0.203593,-0.654093][0.163788,0.183647,0][0.929272,0.565089,0.0229673][0.771564,0.498462,-0.395252][0.305074,0.188604,0][0.947098,0.558572,0.0597313][0.910474,0.393219,0.128125][0.310324,0.188704,0][1.05059,0.320638,0.0545362][0.960026,0.241418,0.141658][0.317597,0.218398,0][0.929272,0.565089,0.0229673][0.771564,0.498462,-0.395252][0.305074,0.188604,0][1.05059,0.320638,0.0545362][0.960026,0.241418,0.141658][0.317597,0.218398,0][1.02475,0.305472,-0.0581488][0.459806,0.371696,-0.806487][0.303583,0.223473,0][0.929272,0.565089,0.0229673][0.771564,0.498462,-0.395252][0.305074,0.188604,0][1.02475,0.305472,-0.0581488][0.459806,0.371696,-0.806487][0.303583,0.223473,0][0.962777,0.448562,-0.0585837][0.746877,0.32172,-0.581954][0.298838,0.205814,0][-1.26004e-006,0.651164,0.957184][0.0490292,0.95955,0.277238][0.749914,0.237473,0][-1.25233e-006,0.636416,1.00823][0.0490292,0.95955,0.277238][0.756671,0.237325,0][0.290003,0.634635,0.963106][0.0490292,0.95955,0.277238][0.751471,0.274633,0][0.290003,0.634635,0.963106][0.0490292,0.95955,0.277238][0.751471,0.274633,0][0.27485,0.649479,0.914395][0.049032,0.959571,0.277162][0.744982,0.272831,0][-1.26004e-006,0.651164,0.957184][0.0490292,0.95955,0.277238][0.749914,0.237473,0][-1.25233e-006,0.636416,1.00823][0.0490292,0.95955,0.277238][0.706417,0.862835,0][-1.24749e-006,0.59405,1.0403][0.147623,0.318084,0.936499][0.706417,0.857382,0][0.299129,0.592217,0.993771][0.147633,0.318072,0.936501][0.744917,0.857147,0][0.299129,0.592217,0.993771][0.147633,0.318072,0.936501][0.744917,0.857147,0][0.290003,0.634635,0.963106][0.0490292,0.95955,0.277238][0.743742,0.862606,0][-1.25233e-006,0.636416,1.00823][0.0490292,0.95955,0.277238][0.706417,0.862835,0][0.27485,0.649479,0.914395][0.049032,0.959571,0.277162][0.744982,0.272831,0][0.290003,0.634635,0.963106][0.0490292,0.95955,0.277238][0.751471,0.274633,0][0.553675,0.629413,0.830614][0.14331,0.958248,0.247431][0.735128,0.308619,0][0.553675,0.629413,0.830614][0.14331,0.958248,0.247431][0.735128,0.308619,0][0.52469,0.644532,0.788747][0.143183,0.958385,0.246976][0.729482,0.305035,0][0.27485,0.649479,0.914395][0.049032,0.959571,0.277162][0.744982,0.272831,0][0.290003,0.634635,0.963106][0.0490292,0.95955,0.277238][0.743742,0.862606,0][0.299129,0.592217,0.993771][0.147633,0.318072,0.936501][0.744917,0.857147,0][0.571118,0.586826,0.857143][0.431234,0.313953,0.845855][0.779924,0.856453,0][0.571118,0.586826,0.857143][0.431234,0.313953,0.845855][0.779924,0.856453,0][0.553675,0.629413,0.830614][0.14331,0.958248,0.247431][0.777679,0.861934,0][0.290003,0.634635,0.963106][0.0490292,0.95955,0.277238][0.743742,0.862606,0][0.52469,0.644532,0.788747][0.143183,0.958385,0.246976][0.729482,0.305035,0][0.553675,0.629413,0.830614][0.14331,0.958248,0.247431][0.735128,0.308619,0][0.765822,0.621113,0.620033][0.225224,0.955755,0.189229][0.708774,0.336039,0][0.765822,0.621113,0.620033][0.225224,0.955755,0.189229][0.708774,0.336039,0][0.725571,0.636669,0.589068][0.224625,0.956073,0.188329][0.704492,0.330999,0][0.52469,0.644532,0.788747][0.143183,0.958385,0.246976][0.729482,0.305035,0][0.553675,0.629413,0.830614][0.14331,0.958248,0.247431][0.80009,0.326592,0][0.571118,0.586826,0.857143][0.431234,0.313953,0.845855][0.799009,0.320282,0][0.790014,0.578242,0.63998][0.676814,0.305643,0.669705][0.838623,0.317647,0][0.790014,0.578242,0.63998][0.676814,0.305643,0.669705][0.838623,0.317647,0][0.765822,0.621113,0.620033][0.225224,0.955755,0.189229][0.838493,0.324043,0][0.553675,0.629413,0.830614][0.14331,0.958248,0.247431][0.80009,0.326592,0][0.725571,0.636669,0.589068][0.224625,0.956073,0.188329][0.704492,0.330999,0][0.765822,0.621113,0.620033][0.225224,0.955755,0.189229][0.708774,0.336039,0][0.88946,0.610785,0.34834][0.2929,0.951197,0.0971293][0.674491,0.352129,0][0.88946,0.610785,0.34834][0.2929,0.951197,0.0971293][0.674491,0.352129,0][0.840863,0.626515,0.331324][0.279045,0.956315,0.0871465][0.671972,0.346004,0][0.725571,0.636669,0.589068][0.224625,0.956073,0.188329][0.704492,0.330999,0][0.765822,0.621113,0.620033][0.225224,0.955755,0.189229][0.838493,0.324043,0][0.790014,0.578242,0.63998][0.676814,0.305643,0.669705][0.838623,0.317647,0][0.92014,0.568048,0.35978][0.844696,0.335159,0.417322][0.876087,0.318565,0][0.92014,0.568048,0.35978][0.844696,0.335159,0.417322][0.876087,0.318565,0][0.88946,0.610785,0.34834][0.2929,0.951197,0.0971293][0.87459,0.324948,0][0.765822,0.621113,0.620033][0.225224,0.955755,0.189229][0.838493,0.324043,0][0.840863,0.626515,0.331324][0.279045,0.956315,0.0871465][0.671972,0.346004,0][0.88946,0.610785,0.34834][0.2929,0.951197,0.0971293][0.674491,0.352129,0][0.910889,0.600769,0.0653103][0.311142,0.95031,-0.0100709][0.63857,0.355095,0][0.910889,0.600769,0.0653103][0.311142,0.95031,-0.0100709][0.63857,0.355095,0][0.858239,0.616188,0.0597423][0.282796,0.959004,-0.0183742][0.637509,0.348436,0][0.840863,0.626515,0.331324][0.279045,0.956315,0.0871465][0.671972,0.346004,0][0.88946,0.610785,0.34834][0.2929,0.951197,0.0971293][0.87459,0.324948,0][0.92014,0.568048,0.35978][0.844696,0.335159,0.417322][0.876087,0.318565,0][0.947098,0.558572,0.0597313][0.910474,0.393219,0.128125][0.906138,0.322833,0][0.947098,0.558572,0.0597313][0.910474,0.393219,0.128125][0.906138,0.322833,0][0.910889,0.600769,0.0653103][0.311142,0.95031,-0.0100709][0.902573,0.328951,0][0.88946,0.610785,0.34834][0.2929,0.951197,0.0971293][0.87459,0.324948,0][0.858239,0.616188,0.0597423][0.282796,0.959004,-0.0183742][0.637509,0.348436,0][0.910889,0.600769,0.0653103][0.311142,0.95031,-0.0100709][0.63857,0.355095,0][0.801411,0.612861,-0.183533][0.28796,0.954268,-0.0803181][0.60641,0.341349,0][0.801411,0.612861,-0.183533][0.28796,0.954268,-0.0803181][0.60641,0.341349,0][0.758782,0.630008,-0.170575][0.346866,0.933213,-0.0937905][0.607703,0.33597,0][0.858239,0.616188,0.0597423][0.282796,0.959004,-0.0183742][0.637509,0.348436,0][0.910889,0.600769,0.0653103][0.311142,0.95031,-0.0100709][0.308328,0.181838,0][0.929272,0.565089,0.0229673][0.771564,0.498462,-0.395252][0.305074,0.188604,0][0.817694,0.568529,-0.190504][0.771564,0.498462,-0.395252][0.274158,0.190519,0][0.817694,0.568529,-0.190504][0.771564,0.498462,-0.395252][0.274158,0.190519,0][0.801411,0.612861,-0.183533][0.28796,0.954268,-0.0803181][0.273663,0.184913,0][0.910889,0.600769,0.0653103][0.311142,0.95031,-0.0100709][0.308328,0.181838,0][0.758782,0.630008,-0.170575][0.346866,0.933213,-0.0937905][0.607703,0.33597,0][0.801411,0.612861,-0.183533][0.28796,0.954268,-0.0803181][0.60641,0.341349,0][0.593155,0.628124,-0.403432][0.30434,0.925861,-0.223961][0.577711,0.314899,0][0.593155,0.628124,-0.403432][0.30434,0.925861,-0.223961][0.577711,0.314899,0][0.556832,0.644717,-0.377395][0.280034,0.937459,-0.206766][0.580695,0.310314,0][0.758782,0.630008,-0.170575][0.346866,0.933213,-0.0937905][0.607703,0.33597,0][0.801411,0.612861,-0.183533][0.28796,0.954268,-0.0803181][0.273663,0.184913,0][0.817694,0.568529,-0.190504][0.771564,0.498462,-0.395252][0.274158,0.190519,0][0.610031,0.584542,-0.412853][0.72385,0.194243,-0.662051][0.235698,0.184397,0][0.610031,0.584542,-0.412853][0.72385,0.194243,-0.662051][0.235698,0.184397,0][0.593155,0.628124,-0.403432][0.30434,0.925861,-0.223961][0.235432,0.17869,0][0.801411,0.612861,-0.183533][0.28796,0.954268,-0.0803181][0.273663,0.184913,0][0.556832,0.644717,-0.377395][0.280034,0.937459,-0.206766][0.580695,0.310314,0][0.593155,0.628124,-0.403432][0.30434,0.925861,-0.223961][0.577711,0.314899,0][0.408391,0.596752,-0.620379][0.20379,0.929322,-0.307945][0.550199,0.291156,0][0.408391,0.596752,-0.620379][0.20379,0.929322,-0.307945][0.550199,0.291156,0][0.383632,0.614839,-0.57488][0.163558,0.944083,-0.286281][0.555664,0.288049,0][0.556832,0.644717,-0.377395][0.280034,0.937459,-0.206766][0.580695,0.310314,0][0.593155,0.628124,-0.403432][0.30434,0.925861,-0.223961][0.235432,0.17869,0][0.610031,0.584542,-0.412853][0.72385,0.194243,-0.662051][0.235698,0.184397,0][0.417253,0.550774,-0.64897][0.76614,0.0826528,-0.637337][0.196913,0.18461,0][0.417253,0.550774,-0.64897][0.76614,0.0826528,-0.637337][0.196913,0.18461,0][0.408391,0.596752,-0.620379][0.20379,0.929322,-0.307945][0.199278,0.178333,0][0.593155,0.628124,-0.403432][0.30434,0.925861,-0.223961][0.235432,0.17869,0][0.383632,0.614839,-0.57488][0.163558,0.944083,-0.286281][0.555664,0.288049,0][0.408391,0.596752,-0.620379][0.20379,0.929322,-0.307945][0.550199,0.291156,0][0.209266,0.564056,-0.85979][0.178997,0.943822,-0.277776][0.519816,0.265581,0][0.209266,0.564056,-0.85979][0.178997,0.943822,-0.277776][0.519816,0.265581,0][0.20091,0.581968,-0.807635][0.200258,0.936026,-0.289398][0.526163,0.264574,0][0.383632,0.614839,-0.57488][0.163558,0.944083,-0.286281][0.555664,0.288049,0][0.408391,0.596752,-0.620379][0.20379,0.929322,-0.307945][0.199278,0.178333,0][0.417253,0.550774,-0.64897][0.76614,0.0826528,-0.637337][0.196913,0.18461,0][0.251451,0.533027,-0.849576][0.7285,0.203593,-0.654093][0.163788,0.183647,0][0.251451,0.533027,-0.849576][0.7285,0.203593,-0.654093][0.163788,0.183647,0][0.209266,0.564056,-0.85979][0.178997,0.943822,-0.277776][0.159699,0.178129,0][0.408391,0.596752,-0.620379][0.20379,0.929322,-0.307945][0.199278,0.178333,0][0.20091,0.581968,-0.807635][0.200258,0.936026,-0.289398][0.526163,0.264574,0][0.209266,0.564056,-0.85979][0.178997,0.943822,-0.277776][0.519816,0.265581,0][-1.54356e-006,0.56027,-0.920514][0.0738004,0.946767,-0.313347][0.511746,0.238717,0][-1.54356e-006,0.56027,-0.920514][0.0738004,0.946767,-0.313347][0.511746,0.238717,0][-1.53613e-006,0.579169,-0.871301][0.100092,0.928843,-0.356697][0.517716,0.238794,0][0.20091,0.581968,-0.807635][0.200258,0.936026,-0.289398][0.526163,0.264574,0][0.209266,0.564056,-0.85979][0.178997,0.943822,-0.277776][0.64601,0.864172,0][0.219743,0.518454,-0.889427][0.246219,0.250117,-0.936385][0.644661,0.858303,0][-1.54772e-006,0.515313,-0.948047][0.199864,0.215916,-0.955738][0.672944,0.857899,0][-1.54772e-006,0.515313,-0.948047][0.199864,0.215916,-0.955738][0.672944,0.857899,0][-1.54356e-006,0.56027,-0.920514][0.0738004,0.946767,-0.313347][0.672944,0.863685,0][0.209266,0.564056,-0.85979][0.178997,0.943822,-0.277776][0.64601,0.864172,0][-1.23421e-006,0.59405,1.0403][1,0,-1.50996e-007][0.600443,0.864035,0][-1.24676e-006,0.651164,0.957184][1,0,-1.50996e-007][0.587464,0.864172,0][-1.23905e-006,0.636416,1.00823][1,0,-1.50996e-007][0.59393,0.861947,0][0.947098,0.558572,0.0597313][0.910474,0.393219,0.128125][0.310324,0.188704,0][0.929272,0.565089,0.0229673][0.771564,0.498462,-0.395252][0.305074,0.188604,0][0.910889,0.600769,0.0653103][0.311142,0.95031,-0.0100709][0.308328,0.181838,0][0.209266,0.564056,-0.85979][0.178997,0.943822,-0.277776][0.159699,0.178129,0][0.251451,0.533027,-0.849576][0.7285,0.203593,-0.654093][0.163788,0.183647,0][0.219743,0.518454,-0.889427][0.246219,0.250117,-0.936385][0.157329,0.184548,0][-1.52285e-006,0.579169,-0.871301][1,0,-1.50994e-007][0.534643,0.961275,0][-1.53444e-006,0.515313,-0.948047][1,0,-1.50994e-007][0.521793,0.961312,0][-1.53028e-006,0.56027,-0.920514][1,0,-1.50994e-007][0.528211,0.959112,0][-1.26004e-006,0.651164,0.957184][0.0490292,0.95955,0.277238][0.749914,0.237473,0][0.27485,0.649479,0.914395][0.049032,0.959571,0.277162][0.744982,0.272831,0][0.230581,0.588963,0.778119][-0.0551152,0.919069,-0.390223][0.728503,0.266874,0][0.230581,0.588963,0.778119][-0.0551152,0.919069,-0.390223][0.728503,0.266874,0][-1.28166e-006,0.59075,0.813972][-0.053223,0.920066,-0.388132][0.732629,0.237213,0][-1.26004e-006,0.651164,0.957184][0.0490292,0.95955,0.277238][0.749914,0.237473,0][0.27485,0.649479,0.914395][0.049032,0.959571,0.277162][0.744982,0.272831,0][0.52469,0.644532,0.788747][0.143183,0.958385,0.246976][0.729482,0.305035,0][0.44018,0.583728,0.67284][-0.163857,0.917686,-0.361943][0.715535,0.293883,0][0.44018,0.583728,0.67284][-0.163857,0.917686,-0.361943][0.715535,0.293883,0][0.230581,0.588963,0.778119][-0.0551152,0.919069,-0.390223][0.728503,0.266874,0][0.27485,0.649479,0.914395][0.049032,0.959571,0.277162][0.744982,0.272831,0][0.52469,0.644532,0.788747][0.143183,0.958385,0.246976][0.729482,0.305035,0][0.725571,0.636669,0.589068][0.224625,0.956073,0.188329][0.704492,0.330999,0][0.608706,0.575407,0.505529][-0.264301,0.91595,-0.301961][0.694624,0.315654,0][0.608706,0.575407,0.505529][-0.264301,0.91595,-0.301961][0.694624,0.315654,0][0.44018,0.583728,0.67284][-0.163857,0.917686,-0.361943][0.715535,0.293883,0][0.52469,0.644532,0.788747][0.143183,0.958385,0.246976][0.729482,0.305035,0][0.725571,0.636669,0.589068][0.224625,0.956073,0.188329][0.704492,0.330999,0][0.840863,0.626515,0.331324][0.279045,0.956315,0.0871465][0.671972,0.346004,0][0.705428,0.564666,0.289566][-0.356842,0.913456,-0.195605][0.667413,0.328227,0][0.705428,0.564666,0.289566][-0.356842,0.913456,-0.195605][0.667413,0.328227,0][0.608706,0.575407,0.505529][-0.264301,0.91595,-0.301961][0.694624,0.315654,0][0.725571,0.636669,0.589068][0.224625,0.956073,0.188329][0.704492,0.330999,0][0.840863,0.626515,0.331324][0.279045,0.956315,0.0871465][0.671972,0.346004,0][0.858239,0.616188,0.0597423][0.282796,0.959004,-0.0183742][0.637509,0.348436,0][0.720006,0.55335,0.0620083][-0.413885,0.908282,-0.0610195][0.638581,0.330249,0][0.720006,0.55335,0.0620083][-0.413885,0.908282,-0.0610195][0.638581,0.330249,0][0.705428,0.564666,0.289566][-0.356842,0.913456,-0.195605][0.667413,0.328227,0][0.840863,0.626515,0.331324][0.279045,0.956315,0.0871465][0.671972,0.346004,0][0.858239,0.616188,0.0597423][0.282796,0.959004,-0.0183742][0.637509,0.348436,0][0.758782,0.630008,-0.170575][0.346866,0.933213,-0.0937905][0.607703,0.33597,0][0.636568,0.543751,-0.130975][-0.497461,0.826214,0.264392][0.613955,0.319651,0][0.636568,0.543751,-0.130975][-0.497461,0.826214,0.264392][0.613955,0.319651,0][0.720006,0.55335,0.0620083][-0.413885,0.908282,-0.0610195][0.638581,0.330249,0][0.858239,0.616188,0.0597423][0.282796,0.959004,-0.0183742][0.637509,0.348436,0][0.758782,0.630008,-0.170575][0.346866,0.933213,-0.0937905][0.607703,0.33597,0][0.556832,0.644717,-0.377395][0.280034,0.937459,-0.206766][0.580695,0.310314,0][0.467145,0.535132,-0.304268][-0.468214,0.722579,0.508581][0.591668,0.297988,0][0.467145,0.535132,-0.304268][-0.468214,0.722579,0.508581][0.591668,0.297988,0][0.636568,0.543751,-0.130975][-0.497461,0.826214,0.264392][0.613955,0.319651,0][0.758782,0.630008,-0.170575][0.346866,0.933213,-0.0937905][0.607703,0.33597,0][0.556832,0.644717,-0.377395][0.280034,0.937459,-0.206766][0.580695,0.310314,0][0.383632,0.614839,-0.57488][0.163558,0.944083,-0.286281][0.555664,0.288049,0][0.321842,0.526902,-0.469741][-0.525208,0.778883,0.342781][0.570418,0.27942,0][0.321842,0.526902,-0.469741][-0.525208,0.778883,0.342781][0.570418,0.27942,0][0.467145,0.535132,-0.304268][-0.468214,0.722579,0.508581][0.591668,0.297988,0][0.556832,0.644717,-0.377395][0.280034,0.937459,-0.206766][0.580695,0.310314,0][0.383632,0.614839,-0.57488][0.163558,0.944083,-0.286281][0.555664,0.288049,0][0.20091,0.581968,-0.807635][0.200258,0.936026,-0.289398][0.526163,0.264574,0][0.168551,0.517204,-0.664766][-0.488443,0.831037,0.266085][0.545406,0.259845,0][0.168551,0.517204,-0.664766][-0.488443,0.831037,0.266085][0.545406,0.259845,0][0.321842,0.526902,-0.469741][-0.525208,0.778883,0.342781][0.570418,0.27942,0][0.383632,0.614839,-0.57488][0.163558,0.944083,-0.286281][0.555664,0.288049,0][0.20091,0.581968,-0.807635][0.200258,0.936026,-0.289398][0.526163,0.264574,0][-1.53613e-006,0.579169,-0.871301][0.100092,0.928843,-0.356697][0.517716,0.238794,0][-1.513e-006,0.514549,-0.718111][-0.134758,0.912975,0.38512][0.538333,0.238215,0][-1.513e-006,0.514549,-0.718111][-0.134758,0.912975,0.38512][0.538333,0.238215,0][0.168551,0.517204,-0.664766][-0.488443,0.831037,0.266085][0.545406,0.259845,0][0.20091,0.581968,-0.807635][0.200258,0.936026,-0.289398][0.526163,0.264574,0][-1.28166e-006,0.59075,0.813972][-0.053223,0.920066,-0.388132][0.732629,0.237213,0][0.230581,0.588963,0.778119][-0.0551152,0.919069,-0.390223][0.728503,0.266874,0][0.194043,0.539217,0.667509][-0.0542517,0.917247,-0.394607][0.715137,0.261957,0][0.194043,0.539217,0.667509][-0.0542517,0.917247,-0.394607][0.715137,0.261957,0][-1.29922e-006,0.54105,0.697679][-0.0523431,0.918285,-0.392444][0.718604,0.236998,0][-1.28166e-006,0.59075,0.813972][-0.053223,0.920066,-0.388132][0.732629,0.237213,0][0.230581,0.588963,0.778119][-0.0551152,0.919069,-0.390223][0.728503,0.266874,0][0.44018,0.583728,0.67284][-0.163857,0.917686,-0.361943][0.715535,0.293883,0][0.370429,0.533837,0.578918][-0.161368,0.916186,-0.36683][0.704241,0.28468,0][0.370429,0.533837,0.578918][-0.161368,0.916186,-0.36683][0.704241,0.28468,0][0.194043,0.539217,0.667509][-0.0542517,0.917247,-0.394607][0.715137,0.261957,0][0.230581,0.588963,0.778119][-0.0551152,0.919069,-0.390223][0.728503,0.266874,0][0.44018,0.583728,0.67284][-0.163857,0.917686,-0.361943][0.715535,0.293883,0][0.608706,0.575407,0.505529][-0.264301,0.91595,-0.301961][0.694624,0.315654,0][0.512249,0.525611,0.438107][-0.258841,0.916075,-0.306279][0.686662,0.302992,0][0.512249,0.525611,0.438107][-0.258841,0.916075,-0.306279][0.686662,0.302992,0][0.370429,0.533837,0.578918][-0.161368,0.916186,-0.36683][0.704241,0.28468,0][0.44018,0.583728,0.67284][-0.163857,0.917686,-0.361943][0.715535,0.293883,0][0.608706,0.575407,0.505529][-0.264301,0.91595,-0.301961][0.694624,0.315654,0][0.705428,0.564666,0.289566][-0.356842,0.913456,-0.195605][0.667413,0.328227,0][0.593645,0.514588,0.256375][-0.349779,0.914762,-0.20215][0.663797,0.31356,0][0.593645,0.514588,0.256375][-0.349779,0.914762,-0.20215][0.663797,0.31356,0][0.512249,0.525611,0.438107][-0.258841,0.916075,-0.306279][0.686662,0.302992,0][0.608706,0.575407,0.505529][-0.264301,0.91595,-0.301961][0.694624,0.315654,0][0.705428,0.564666,0.289566][-0.356842,0.913456,-0.195605][0.667413,0.328227,0][0.720006,0.55335,0.0620083][-0.413885,0.908282,-0.0610195][0.638581,0.330249,0][0.605913,0.503284,0.0648833][-0.402316,0.912731,-0.0711591][0.639564,0.31525,0][0.605913,0.503284,0.0648833][-0.402316,0.912731,-0.0711591][0.639564,0.31525,0][0.593645,0.514588,0.256375][-0.349779,0.914762,-0.20215][0.663797,0.31356,0][0.705428,0.564666,0.289566][-0.356842,0.913456,-0.195605][0.667413,0.328227,0][0.720006,0.55335,0.0620083][-0.413885,0.908282,-0.0610195][0.638581,0.330249,0][0.636568,0.543751,-0.130975][-0.497461,0.826214,0.264392][0.613955,0.319651,0][0.535696,0.494412,-0.0965897][-0.400243,0.907438,0.12791][0.618971,0.306325,0][0.535696,0.494412,-0.0965897][-0.400243,0.907438,0.12791][0.618971,0.306325,0][0.605913,0.503284,0.0648833][-0.402316,0.912731,-0.0711591][0.639564,0.31525,0][0.720006,0.55335,0.0620083][-0.413885,0.908282,-0.0610195][0.638581,0.330249,0][0.636568,0.543751,-0.130975][-0.497461,0.826214,0.264392][0.613955,0.319651,0][0.467145,0.535132,-0.304268][-0.468214,0.722579,0.508581][0.591668,0.297988,0][0.393121,0.486559,-0.241497][-0.341442,0.894258,0.289343][0.600345,0.28809,0][0.393121,0.486559,-0.241497][-0.341442,0.894258,0.289343][0.600345,0.28809,0][0.535696,0.494412,-0.0965897][-0.400243,0.907438,0.12791][0.618971,0.306325,0][0.636568,0.543751,-0.130975][-0.497461,0.826214,0.264392][0.613955,0.319651,0][0.467145,0.535132,-0.304268][-0.468214,0.722579,0.508581][0.591668,0.297988,0][0.321842,0.526902,-0.469741][-0.525208,0.778883,0.342781][0.570418,0.27942,0][0.270842,0.47775,-0.381666][-0.369526,0.885897,0.280421][0.582376,0.272452,0][0.270842,0.47775,-0.381666][-0.369526,0.885897,0.280421][0.582376,0.272452,0][0.393121,0.486559,-0.241497][-0.341442,0.894258,0.289343][0.600345,0.28809,0][0.467145,0.535132,-0.304268][-0.468214,0.722579,0.508581][0.591668,0.297988,0][0.321842,0.526902,-0.469741][-0.525208,0.778883,0.342781][0.570418,0.27942,0][0.168551,0.517204,-0.664766][-0.488443,0.831037,0.266085][0.545406,0.259845,0][0.141842,0.466812,-0.546734][-0.409167,0.868951,0.278399][0.561252,0.255962,0][0.141842,0.466812,-0.546734][-0.409167,0.868951,0.278399][0.561252,0.255962,0][0.270842,0.47775,-0.381666][-0.369526,0.885897,0.280421][0.582376,0.272452,0][0.321842,0.526902,-0.469741][-0.525208,0.778883,0.342781][0.570418,0.27942,0][0.168551,0.517204,-0.664766][-0.488443,0.831037,0.266085][0.545406,0.259845,0][-1.513e-006,0.514549,-0.718111][-0.134758,0.912975,0.38512][0.538333,0.238215,0][-1.4939e-006,0.464081,-0.591636][-0.130795,0.920805,0.367437][0.555306,0.237756,0][-1.4939e-006,0.464081,-0.591636][-0.130795,0.920805,0.367437][0.555306,0.237756,0][0.141842,0.466812,-0.546734][-0.409167,0.868951,0.278399][0.561252,0.255962,0][0.168551,0.517204,-0.664766][-0.488443,0.831037,0.266085][0.545406,0.259845,0][-1.29922e-006,0.54105,0.697679][-0.0523431,0.918285,-0.392444][0.718604,0.236998,0][0.194043,0.539217,0.667509][-0.0542517,0.917247,-0.394607][0.715137,0.261957,0][0.131964,0.613428,0.477697][-0.0501094,0.990448,0.128458][0.689575,0.254656,0][0.131964,0.613428,0.477697][-0.0501094,0.990448,0.128458][0.689575,0.254656,0][-1.32932e-006,0.604076,0.498324][-0.0501094,0.990448,0.128458][0.692121,0.237612,0][-1.29922e-006,0.54105,0.697679][-0.0523431,0.918285,-0.392444][0.718604,0.236998,0][0.194043,0.539217,0.667509][-0.0542517,0.917247,-0.394607][0.715137,0.261957,0][0.370429,0.533837,0.578918][-0.161368,0.916186,-0.36683][0.704241,0.28468,0][0.251921,0.608975,0.417129][0.0811059,0.992845,0.0876432][0.682137,0.270105,0][0.251921,0.608975,0.417129][0.0811059,0.992845,0.0876432][0.682137,0.270105,0][0.131964,0.613428,0.477697][-0.0501094,0.990448,0.128458][0.689575,0.254656,0][0.194043,0.539217,0.667509][-0.0542517,0.917247,-0.394607][0.715137,0.261957,0][0.370429,0.533837,0.578918][-0.161368,0.916186,-0.36683][0.704241,0.28468,0][0.512249,0.525611,0.438107][-0.258841,0.916075,-0.306279][0.686662,0.302992,0][0.34837,0.60217,0.320861][0.125846,0.990464,0.0560641][0.670138,0.282551,0][0.34837,0.60217,0.320861][0.125846,0.990464,0.0560641][0.670138,0.282551,0][0.251921,0.608975,0.417129][0.0811059,0.992845,0.0876432][0.682137,0.270105,0][0.370429,0.533837,0.578918][-0.161368,0.916186,-0.36683][0.704241,0.28468,0][0.512249,0.525611,0.438107][-0.258841,0.916075,-0.306279][0.686662,0.302992,0][0.593645,0.514588,0.256375][-0.349779,0.914762,-0.20215][0.663797,0.31356,0][0.403726,0.593053,0.196615][0.166346,0.986066,0.00175605][0.65453,0.289728,0][0.403726,0.593053,0.196615][0.166346,0.986066,0.00175605][0.65453,0.289728,0][0.34837,0.60217,0.320861][0.125846,0.990464,0.0560641][0.670138,0.282551,0][0.512249,0.525611,0.438107][-0.258841,0.916075,-0.306279][0.686662,0.302992,0][0.593645,0.514588,0.256375][-0.349779,0.914762,-0.20215][0.663797,0.31356,0][0.605913,0.503284,0.0648833][-0.402316,0.912731,-0.0711591][0.639564,0.31525,0][0.412069,0.583699,0.0656964][0.186293,0.980769,-0.0582003][0.63799,0.290867,0][0.412069,0.583699,0.0656964][0.186293,0.980769,-0.0582003][0.63799,0.290867,0][0.403726,0.593053,0.196615][0.166346,0.986066,0.00175605][0.65453,0.289728,0][0.593645,0.514588,0.256375][-0.349779,0.914762,-0.20215][0.663797,0.31356,0][0.605913,0.503284,0.0648833][-0.402316,0.912731,-0.0711591][0.639564,0.31525,0][0.535696,0.494412,-0.0965897][-0.400243,0.907438,0.12791][0.618971,0.306325,0][0.364316,0.57636,-0.0446986][0.186564,0.971639,-0.145299][0.623933,0.284789,0][0.364316,0.57636,-0.0446986][0.186564,0.971639,-0.145299][0.623933,0.284789,0][0.412069,0.583699,0.0656964][0.186293,0.980769,-0.0582003][0.63799,0.290867,0][0.605913,0.503284,0.0648833][-0.402316,0.912731,-0.0711591][0.639564,0.31525,0][0.535696,0.494412,-0.0965897][-0.400243,0.907438,0.12791][0.618971,0.306325,0][0.393121,0.486559,-0.241497][-0.341442,0.894258,0.289343][0.600345,0.28809,0][0.267353,0.569863,-0.143769][0.162789,0.961278,-0.222362][0.611218,0.272381,0][0.267353,0.569863,-0.143769][0.162789,0.961278,-0.222362][0.611218,0.272381,0][0.364316,0.57636,-0.0446986][0.186564,0.971639,-0.145299][0.623933,0.284789,0][0.535696,0.494412,-0.0965897][-0.400243,0.907438,0.12791][0.618971,0.306325,0][0.393121,0.486559,-0.241497][-0.341442,0.894258,0.289343][0.600345,0.28809,0][0.270842,0.47775,-0.381666][-0.369526,0.885897,0.280421][0.582376,0.272452,0][0.184194,0.562577,-0.239599][0.166501,0.96173,-0.217607][0.598954,0.261738,0][0.184194,0.562577,-0.239599][0.166501,0.96173,-0.217607][0.598954,0.261738,0][0.267353,0.569863,-0.143769][0.162789,0.961278,-0.222362][0.611218,0.272381,0][0.393121,0.486559,-0.241497][-0.341442,0.894258,0.289343][0.600345,0.28809,0][0.270842,0.47775,-0.381666][-0.369526,0.885897,0.280421][0.582376,0.272452,0][0.141842,0.466812,-0.546734][-0.409167,0.868951,0.278399][0.561252,0.255962,0][0.0964636,0.553528,-0.352452][0.174347,0.961453,-0.212631][0.584539,0.250513,0][0.0964636,0.553528,-0.352452][0.174347,0.961453,-0.212631][0.584539,0.250513,0][0.184194,0.562577,-0.239599][0.166501,0.96173,-0.217607][0.598954,0.261738,0][0.270842,0.47775,-0.381666][-0.369526,0.885897,0.280421][0.582376,0.272452,0][0.141842,0.466812,-0.546734][-0.409167,0.868951,0.278399][0.561252,0.255962,0][-1.4939e-006,0.464081,-0.591636][-0.130795,0.920805,0.367437][0.555306,0.237756,0][-1.46242e-006,0.551267,-0.38315][0.0545555,0.968547,-0.242776][0.580482,0.238129,0][-1.46242e-006,0.551267,-0.38315][0.0545555,0.968547,-0.242776][0.580482,0.238129,0][0.0964636,0.553528,-0.352452][0.174347,0.961453,-0.212631][0.584539,0.250513,0][0.141842,0.466812,-0.546734][-0.409167,0.868951,0.278399][0.561252,0.255962,0][-1.24749e-006,0.59405,1.0403][0.147623,0.318084,0.936499][0.447867,0.395893,0][-1.25233e-006,0.636416,1.00823][0.0490292,0.95955,0.277238][0.454384,0.393818,0][-1.26004e-006,0.651164,0.957184][0.0490292,0.95955,0.277238][0.460846,0.396054,0][-1.53613e-006,0.579169,-0.871301][0.100092,0.928843,-0.356697][0.587464,0.842925,0][-1.54356e-006,0.56027,-0.920514][0.0738004,0.946767,-0.313347][0.593899,0.840774,0][-1.54772e-006,0.515313,-0.948047][0.199864,0.215916,-0.955738][0.600313,0.842986,0][-1.0953e-006,-0.000336729,1.94952][0.0853576,-0.820171,0.565715][0.286584,0.445847,0][0.492908,-0.0288535,1.86529][0.0416511,-0.846715,0.530414][0.223171,0.457446,0][0.48865,-0.00369652,1.85031][-0.0998068,0.848137,-0.520291][0.222883,0.453649,0][0.48865,-0.00369652,1.85031][-0.0998068,0.848137,-0.520291][0.222883,0.453649,0][0.492908,-0.0288535,1.86529][0.0416511,-0.846715,0.530414][0.223171,0.457446,0][0.937182,-0.0753461,1.59805][0.194325,-0.859589,0.472593][0.159866,0.458142,0][0.937182,-0.0753461,1.59805][0.194325,-0.859589,0.472593][0.159866,0.458142,0][0.929468,-0.0498419,1.58515][-0.194575,0.859293,-0.473029][0.16007,0.454342,0][0.48865,-0.00369652,1.85031][-0.0998068,0.848137,-0.520291][0.222883,0.453649,0][0.929468,-0.0498419,1.58515][-0.194575,0.859293,-0.473029][0.16007,0.454342,0][0.937182,-0.0753461,1.59805][0.194325,-0.859589,0.472593][0.159866,0.458142,0][1.28856,-0.148108,1.18186][0.265295,-0.88656,0.378985][0.103384,0.449741,0][1.28856,-0.148108,1.18186][0.265295,-0.88656,0.378985][0.103384,0.449741,0][1.2793,-0.121713,1.17217][-0.265702,0.886298,-0.379313][0.103876,0.446001,0][0.929468,-0.0498419,1.58515][-0.194575,0.859293,-0.473029][0.16007,0.454342,0][1.2793,-0.121713,1.17217][-0.265702,0.886298,-0.379313][0.830594,0.186832,0][1.28856,-0.148108,1.18186][0.265295,-0.88656,0.378985][0.831387,0.190559,0][1.51285,-0.239938,0.656993][0.237418,-0.934573,0.264963][0.758117,0.203526,0][1.51285,-0.239938,0.656993][0.237418,-0.934573,0.264963][0.758117,0.203526,0][1.50391,-0.212274,0.651777][-0.237023,0.934675,-0.264959][0.757856,0.199743,0][1.2793,-0.121713,1.17217][-0.265702,0.886298,-0.379313][0.830594,0.186832,0][1.50391,-0.212274,0.651777][-0.237023,0.934675,-0.264959][0.757856,0.199743,0][1.51285,-0.239938,0.656993][0.237418,-0.934573,0.264963][0.758117,0.203526,0][1.5883,-0.280871,0.0655351][0.235934,-0.966914,0.0970165][0.682971,0.201925,0][1.5883,-0.280871,0.0655351][0.235934,-0.966914,0.0970165][0.682971,0.201925,0][1.5813,-0.252158,0.0635031][-0.235762,0.967,-0.096579][0.683016,0.198171,0][1.50391,-0.212274,0.651777][-0.237023,0.934675,-0.264959][0.757856,0.199743,0][1.5813,-0.252158,0.0635031][-0.235762,0.967,-0.096579][0.683016,0.198171,0][1.5883,-0.280871,0.0655351][0.235934,-0.966914,0.0970165][0.682971,0.201925,0][1.50778,-0.336179,-0.519079][0.143358,-0.986929,0.0736226][0.615186,0.194321,0][1.50778,-0.336179,-0.519079][0.143358,-0.986929,0.0736226][0.615186,0.194321,0][1.50391,-0.306866,-0.520864][-0.143146,0.986973,-0.0734404][0.61513,0.190658,0][1.5813,-0.252158,0.0635031][-0.235762,0.967,-0.096579][0.683016,0.198171,0][1.50391,-0.306866,-0.520864][-0.143146,0.986973,-0.0734404][0.634822,0.130614,0][1.50778,-0.336179,-0.519079][0.143358,-0.986929,0.0736226][0.634851,0.126802,0][1.28058,-0.401484,-1.04485][0.0422912,-0.993558,0.105134][0.709047,0.126931,0][1.28058,-0.401484,-1.04485][0.0422912,-0.993558,0.105134][0.709047,0.126931,0][1.2793,-0.372071,-1.04816][-0.0421791,0.993588,-0.1049][0.709065,0.130725,0][1.50391,-0.306866,-0.520864][-0.143146,0.986973,-0.0734404][0.634822,0.130614,0][1.2793,-0.372071,-1.04816][-0.0421791,0.993588,-0.1049][0.709065,0.130725,0][1.28058,-0.401484,-1.04485][0.0422912,-0.993558,0.105134][0.709047,0.126931,0][0.929139,-0.482877,-1.4538][-0.00558008,-0.979819,0.199809][0.776067,0.126139,0][0.929139,-0.482877,-1.4538][-0.00558008,-0.979819,0.199809][0.776067,0.126139,0][0.929467,-0.453753,-1.45932][0.00555481,0.979903,-0.199399][0.776268,0.129888,0][1.2793,-0.372071,-1.04816][-0.0421791,0.993588,-0.1049][0.709065,0.130725,0][0.929467,-0.453753,-1.45932][0.00555481,0.979903,-0.199399][0.776268,0.129888,0][0.929139,-0.482877,-1.4538][-0.00558008,-0.979819,0.199809][0.776067,0.126139,0][0.487905,-0.535003,-1.71627][-0.0311948,-0.969049,0.24489][0.830014,0.129351,0][0.487905,-0.535003,-1.71627][-0.0311948,-0.969049,0.24489][0.830014,0.129351,0][0.488649,-0.506197,-1.7233][0.0311042,0.969156,-0.244479][0.830375,0.133065,0][0.929467,-0.453753,-1.45932][0.00555481,0.979903,-0.199399][0.776268,0.129888,0][0.488649,-0.506197,-1.7233][0.0311042,0.969156,-0.244479][0.511746,0.0297727,0][0.487905,-0.535003,-1.71627][-0.0311948,-0.969049,0.24489][0.511816,0.0259558,0][-1.66304e-006,-0.538607,-1.81047][-0.0350084,-0.97518,0.218628][0.575743,0.0279861,0][-1.0953e-006,-0.000336729,1.94952][-0.0416508,-0.846715,0.530414][0,0.240263,0][-0.49291,-0.0288535,1.86529][-0.0416508,-0.846715,0.530414][0.00103527,0.175911,0][-0.433936,-0.214612,1.57339][-0.0416508,-0.846715,0.530414][0.0393233,0.17768,0][-0.433936,-0.214612,1.57339][-0.0416508,-0.846715,0.530414][0.0393233,0.17768,0][-1.14062e-006,-0.207374,1.64936][-0.0853574,-0.820171,0.565715][0.0381807,0.234369,0][-1.0953e-006,-0.000336729,1.94952][-0.0416508,-0.846715,0.530414][0,0.240263,0][-0.49291,-0.0288535,1.86529][-0.0416508,-0.846715,0.530414][0.00103527,0.175911,0][-0.937184,-0.0753461,1.59805][-0.194327,-0.859589,0.472594][0.0263056,0.114151,0][-0.826302,-0.235708,1.35196][-0.194327,-0.859589,0.472594][0.059785,0.123423,0][-0.826302,-0.235708,1.35196][-0.194327,-0.859589,0.472594][0.059785,0.123423,0][-0.433936,-0.214612,1.57339][-0.0416508,-0.846715,0.530414][0.0393233,0.17768,0][-0.49291,-0.0288535,1.86529][-0.0416508,-0.846715,0.530414][0.00103527,0.175911,0][-0.937184,-0.0753461,1.59805][-0.194327,-0.859589,0.472594][0.0263056,0.114151,0][-1.28856,-0.148108,1.18186][-0.265295,-0.88656,0.378986][0.0723445,0.0612834,0][-1.13846,-0.268807,1.00458][-0.265295,-0.88656,0.378986][0.097842,0.0768953,0][-1.13846,-0.268807,1.00458][-0.265295,-0.88656,0.378986][0.097842,0.0768953,0][-0.826302,-0.235708,1.35196][-0.194327,-0.859589,0.472594][0.059785,0.123423,0][-0.937184,-0.0753461,1.59805][-0.194327,-0.859589,0.472594][0.0263056,0.114151,0][-1.28856,-0.148108,1.18186][-0.265295,-0.88656,0.378986][0.0723445,0.0612834,0][-1.51285,-0.239938,0.656993][-0.237419,-0.934573,0.264963][0.134705,0.0224479,0][-1.33953,-0.310611,0.563022][-0.237419,-0.934573,0.264963][0.150061,0.0426495,0][-1.33953,-0.310611,0.563022][-0.237419,-0.934573,0.264963][0.150061,0.0426495,0][-1.13846,-0.268807,1.00458][-0.265295,-0.88656,0.378986][0.097842,0.0768953,0][-1.28856,-0.148108,1.18186][-0.265295,-0.88656,0.378986][0.0723445,0.0612834,0][-1.51285,-0.239938,0.656993][-0.237419,-0.934573,0.264963][0.134705,0.0224479,0][-1.5883,-0.280871,0.0655356][-0.235934,-0.966914,0.0970167][0.208457,0.00123665,0][-1.40864,-0.324531,0.0673286][-0.235934,-0.966914,0.0970167][0.211756,0.0241251,0][-1.40864,-0.324531,0.0673286][-0.235934,-0.966914,0.0970167][0.211756,0.0241251,0][-1.33953,-0.310611,0.563022][-0.237419,-0.934573,0.264963][0.150061,0.0426495,0][-1.51285,-0.239938,0.656993][-0.237419,-0.934573,0.264963][0.134705,0.0224479,0][-1.5883,-0.280871,0.0655356][-0.235934,-0.966914,0.0970167][0.208457,0.00123665,0][-1.50778,-0.336179,-0.519078][-0.143358,-0.986929,0.0736226][0.284401,0,0][-1.3374,-0.353775,-0.423199][-0.143358,-0.986929,0.0736226][0.275551,0.0235548,0][-1.3374,-0.353775,-0.423199][-0.143358,-0.986929,0.0736226][0.275551,0.0235548,0][-1.40864,-0.324531,0.0673286][-0.235934,-0.966914,0.0970167][0.211756,0.0241251,0][-1.5883,-0.280871,0.0655356][-0.235934,-0.966914,0.0970167][0.208457,0.00123665,0][-1.50778,-0.336179,-0.519078][-0.143358,-0.986929,0.0736226][0.284401,0,0][-1.28058,-0.401485,-1.04485][-0.0422924,-0.993558,0.105135][0.355741,0.0185758,0][-1.13416,-0.38852,-0.863427][-0.0422925,-0.993558,0.105135][0.335539,0.0407627,0][-1.13416,-0.38852,-0.863427][-0.0422925,-0.993558,0.105135][0.335539,0.0407627,0][-1.3374,-0.353775,-0.423199][-0.143358,-0.986929,0.0736226][0.275551,0.0235548,0][-1.50778,-0.336179,-0.519078][-0.143358,-0.986929,0.0736226][0.284401,0,0][-1.28058,-0.401485,-1.04485][-0.0422924,-0.993558,0.105135][0.355741,0.0185758,0][-0.929142,-0.482877,-1.4538][0.0055819,-0.979819,0.199808][0.41466,0.0552495,0][-0.821271,-0.4316,-1.20536][0.0055819,-0.979819,0.199809][0.385176,0.073849,0][-0.821271,-0.4316,-1.20536][0.0055819,-0.979819,0.199809][0.385176,0.073849,0][-1.13416,-0.38852,-0.863427][-0.0422925,-0.993558,0.105135][0.335539,0.0407627,0][-1.28058,-0.401485,-1.04485][-0.0422924,-0.993558,0.105135][0.355741,0.0185758,0][-0.929142,-0.482877,-1.4538][0.0055819,-0.979819,0.199808][0.41466,0.0552495,0][-0.487908,-0.535003,-1.71627][0.031195,-0.969049,0.24489][0.45671,0.106221,0][-0.430596,-0.459058,-1.42305][0.031195,-0.969049,0.24489][0.420538,0.119269,0][-0.430596,-0.459058,-1.42305][0.031195,-0.969049,0.24489][0.420538,0.119269,0][-0.821271,-0.4316,-1.20536][0.0055819,-0.979819,0.199809][0.385176,0.073849,0][-0.929142,-0.482877,-1.4538][0.0055819,-0.979819,0.199808][0.41466,0.0552495,0][-0.487908,-0.535003,-1.71627][0.031195,-0.969049,0.24489][0.45671,0.106221,0][-1.66304e-006,-0.538607,-1.81047][0.0350085,-0.97518,0.218628][0.478273,0.166433,0][-1.61581e-006,-0.468486,-1.4977][0.0350085,-0.97518,0.218628][0.438488,0.172575,0][-1.61581e-006,-0.468486,-1.4977][0.0350085,-0.97518,0.218628][0.438488,0.172575,0][-0.430596,-0.459058,-1.42305][0.031195,-0.969049,0.24489][0.420538,0.119269,0][-0.487908,-0.535003,-1.71627][0.031195,-0.969049,0.24489][0.45671,0.106221,0][-0.821271,-0.4316,-1.20536][0.0055819,-0.979819,0.199809][0.385176,0.073849,0][-0.430596,-0.459058,-1.42305][0.031195,-0.969049,0.24489][0.420538,0.119269,0][-0.366847,-0.443389,-1.09101][-0.0450597,-1.13394,0.0621626][0.379555,0.133897,0][-0.366847,-0.443389,-1.09101][-0.0450597,-1.13394,0.0621626][0.379555,0.133897,0][-0.701263,-0.433194,-0.92457][-0.0415446,-1.51244,0.00916703][0.351816,0.0946275,0][-0.821271,-0.4316,-1.20536][0.0055819,-0.979819,0.199809][0.385176,0.073849,0][-1.13416,-0.38852,-0.863427][-0.0422925,-0.993558,0.105135][0.335539,0.0407627,0][-0.821271,-0.4316,-1.20536][0.0055819,-0.979819,0.199809][0.385176,0.073849,0][-0.701263,-0.433194,-0.92457][-0.0415446,-1.51244,0.00916703][0.351816,0.0946275,0][-0.701263,-0.433194,-0.92457][-0.0415446,-1.51244,0.00916703][0.351816,0.0946275,0][-0.971182,-0.416818,-0.659306][-0.161368,-1.46254,-0.0739076][0.312774,0.0655021,0][-1.13416,-0.38852,-0.863427][-0.0422925,-0.993558,0.105135][0.335539,0.0407627,0][-1.3374,-0.353775,-0.423199][-0.143358,-0.986929,0.0736226][0.275551,0.0235548,0][-1.13416,-0.38852,-0.863427][-0.0422925,-0.993558,0.105135][0.335539,0.0407627,0][-0.971182,-0.416818,-0.659306][-0.161368,-1.46254,-0.0739076][0.312774,0.0655021,0][-0.971182,-0.416818,-0.659306][-0.161368,-1.46254,-0.0739076][0.312774,0.0655021,0][-1.14738,-0.395713,-0.316209][-0.299652,-1.51291,-0.0608229][0.265673,0.0498267,0][-1.3374,-0.353775,-0.423199][-0.143358,-0.986929,0.0736226][0.275551,0.0235548,0][-1.40864,-0.324531,0.0673286][-0.235934,-0.966914,0.0970167][0.211756,0.0241251,0][-1.3374,-0.353775,-0.423199][-0.143358,-0.986929,0.0736226][0.275551,0.0235548,0][-1.14738,-0.395713,-0.316209][-0.299652,-1.51291,-0.0608229][0.265673,0.0498267,0][-1.14738,-0.395713,-0.316209][-0.299652,-1.51291,-0.0608229][0.265673,0.0498267,0][-1.20821,-0.372272,0.0704276][-0.39932,-1.67389,0.0386523][0.215298,0.0496804,0][-1.40864,-0.324531,0.0673286][-0.235934,-0.966914,0.0970167][0.211756,0.0241251,0][-1.33953,-0.310611,0.563022][-0.237419,-0.934573,0.264963][0.150061,0.0426495,0][-1.40864,-0.324531,0.0673286][-0.235934,-0.966914,0.0970167][0.211756,0.0241251,0][-1.20821,-0.372272,0.0704276][-0.39932,-1.67389,0.0386523][0.215298,0.0496804,0][-1.20821,-0.372272,0.0704276][-0.39932,-1.67389,0.0386523][0.215298,0.0496804,0][-1.14629,-0.349013,0.457513][-0.288152,-1.88834,0.159563][0.167276,0.0651577,0][-1.33953,-0.310611,0.563022][-0.237419,-0.934573,0.264963][0.150061,0.0426495,0][-1.13846,-0.268807,1.00458][-0.265295,-0.88656,0.378986][0.097842,0.0768953,0][-1.33953,-0.310611,0.563022][-0.237419,-0.934573,0.264963][0.150061,0.0426495,0][-1.14629,-0.349013,0.457513][-0.288152,-1.88834,0.159563][0.167276,0.0651577,0][-1.14629,-0.349013,0.457513][-0.288152,-1.88834,0.159563][0.167276,0.0651577,0][-0.970772,-0.328144,0.802015][-0.335433,-1.93067,0.287854][0.126902,0.0942482,0][-1.13846,-0.268807,1.00458][-0.265295,-0.88656,0.378986][0.097842,0.0768953,0][-0.826302,-0.235708,1.35196][-0.194327,-0.859589,0.472594][0.059785,0.123423,0][-1.13846,-0.268807,1.00458][-0.265295,-0.88656,0.378986][0.097842,0.0768953,0][-0.970772,-0.328144,0.802015][-0.335433,-1.93067,0.287854][0.126902,0.0942482,0][-0.970772,-0.328144,0.802015][-0.335433,-1.93067,0.287854][0.126902,0.0942482,0][-0.702235,-0.31186,1.0693][-0.271666,-1.88104,0.387535][0.0981754,0.133655,0][-0.826302,-0.235708,1.35196][-0.194327,-0.859589,0.472594][0.059785,0.123423,0][-0.433936,-0.214612,1.57339][-0.0416508,-0.846715,0.530414][0.0393233,0.17768,0][-0.826302,-0.235708,1.35196][-0.194327,-0.859589,0.472594][0.059785,0.123423,0][-0.702235,-0.31186,1.0693][-0.271666,-1.88104,0.387535][0.0981754,0.133655,0][-0.702235,-0.31186,1.0693][-0.271666,-1.88104,0.387535][0.0981754,0.133655,0][-0.367882,-0.301652,1.23742][-0.161789,-1.78259,0.430007][0.083356,0.179486,0][-0.433936,-0.214612,1.57339][-0.0416508,-0.846715,0.530414][0.0393233,0.17768,0][-1.14062e-006,-0.207374,1.64936][-0.0853574,-0.820171,0.565715][0.0381807,0.234369,0][-0.433936,-0.214612,1.57339][-0.0416508,-0.846715,0.530414][0.0393233,0.17768,0][-0.367882,-0.301652,1.23742][-0.161789,-1.78259,0.430007][0.083356,0.179486,0][-0.367882,-0.301652,1.23742][-0.161789,-1.78259,0.430007][0.083356,0.179486,0][-1.19738e-006,-0.295632,1.27345][0.0107793,-1.62533,0.381605][0.0859967,0.226988,0][-1.14062e-006,-0.207374,1.64936][-0.0853574,-0.820171,0.565715][0.0381807,0.234369,0][-0.430596,-0.459058,-1.42305][0.031195,-0.969049,0.24489][0.420538,0.119269,0][-1.61581e-006,-0.468486,-1.4977][0.0350085,-0.97518,0.218628][0.438488,0.172575,0][-1.56043e-006,-0.440492,-1.1309][-0.00898467,-0.704023,0.0314982][0.391831,0.179777,0][-1.56043e-006,-0.440492,-1.1309][-0.00898467,-0.704023,0.0314982][0.391831,0.179777,0][-0.366847,-0.443389,-1.09101][-0.0450597,-1.13394,0.0621626][0.379555,0.133897,0][-0.430596,-0.459058,-1.42305][0.031195,-0.969049,0.24489][0.420538,0.119269,0][-0.131966,0.613428,0.477697][0.0501163,0.990448,0.12846][0.695269,0.541322,0][-1.31442e-006,0.604075,0.498324][0.0501163,0.990448,0.12846][0.697784,0.558371,0][-1.38117e-006,0.66141,0.0562644][0.0501163,0.990448,0.12846][0.640418,0.557452,0][-0.251923,0.608976,0.417129][-0.0810991,0.992845,0.0876454][0.687858,0.52586,0][-0.131966,0.613428,0.477697][0.0501163,0.990448,0.12846][0.695269,0.541322,0][-1.38117e-006,0.66141,0.0562644][0.0501163,0.990448,0.12846][0.640418,0.557452,0][-0.348372,0.60217,0.320861][-0.12585,0.990464,0.0560586][0.675882,0.513392,0][-0.251923,0.608976,0.417129][-0.0810991,0.992845,0.0876454][0.687858,0.52586,0][-1.38117e-006,0.66141,0.0562644][0.0501163,0.990448,0.12846][0.640418,0.557452,0][-0.403727,0.593053,0.196615][-0.166347,0.986066,0.00175502][0.660287,0.506188,0][-0.348372,0.60217,0.320861][-0.12585,0.990464,0.0560586][0.675882,0.513392,0][-1.38117e-006,0.66141,0.0562644][0.0501163,0.990448,0.12846][0.640418,0.557452,0][-0.41207,0.583699,0.0656965][-0.186293,0.980769,-0.0582002][0.643749,0.505019,0][-0.403727,0.593053,0.196615][-0.166347,0.986066,0.00175502][0.660287,0.506188,0][-1.38117e-006,0.66141,0.0562644][0.0501163,0.990448,0.12846][0.640418,0.557452,0][-0.364318,0.57636,-0.0446985][-0.186565,0.971639,-0.145298][0.629681,0.511071,0][-0.41207,0.583699,0.0656965][-0.186293,0.980769,-0.0582002][0.643749,0.505019,0][-1.38117e-006,0.66141,0.0562644][0.0501163,0.990448,0.12846][0.640418,0.557452,0][-0.267355,0.569863,-0.143769][-0.162789,0.961278,-0.222362][0.616943,0.523456,0][-0.364318,0.57636,-0.0446985][-0.186565,0.971639,-0.145298][0.629681,0.511071,0][-1.38117e-006,0.66141,0.0562644][0.0501163,0.990448,0.12846][0.640418,0.557452,0][-0.184196,0.562577,-0.239599][-0.166501,0.96173,-0.217607][0.604661,0.534077,0][-0.267355,0.569863,-0.143769][-0.162789,0.961278,-0.222362][0.616943,0.523456,0][-1.38117e-006,0.66141,0.0562644][0.0501163,0.990448,0.12846][0.640418,0.557452,0][-0.0964664,0.553528,-0.352452][-0.174347,0.961453,-0.212631][0.590225,0.545276,0][-0.184196,0.562577,-0.239599][-0.166501,0.96173,-0.217607][0.604661,0.534077,0][-1.38117e-006,0.66141,0.0562644][0.0501163,0.990448,0.12846][0.640418,0.557452,0][-1.44752e-006,0.551266,-0.38315][-0.0545467,0.968547,-0.242778][0.586145,0.557652,0][-0.0964664,0.553528,-0.352452][-0.174347,0.961453,-0.212631][0.590225,0.545276,0][-1.38117e-006,0.66141,0.0562644][0.0501163,0.990448,0.12846][0.640418,0.557452,0][-1.0953e-006,-0.000336729,1.94952][-0.0416508,-0.846715,0.530414][0,0.440791,0][-1.14245e-006,-0.180283,1.63726][0.0727753,0.864132,-0.497975][0.04019,0.440791,0][-0.430768,-0.187471,1.56183][0.0727753,0.864132,-0.497975][0.0498981,0.496234,0][-0.430768,-0.187471,1.56183][0.0727753,0.864132,-0.497975][0.0498981,0.496234,0][-0.488652,-0.00369652,1.85031][0.0998061,0.848138,-0.520289][0.0127696,0.503684,0][-1.0953e-006,-0.000336729,1.94952][-0.0416508,-0.846715,0.530414][0,0.440791,0][-0.488652,-0.00369652,1.85031][0.0998061,0.848138,-0.520289][0.0127696,0.503684,0][-0.430768,-0.187471,1.56183][0.0727753,0.864132,-0.497975][0.0498981,0.496234,0][-0.820566,-0.208362,1.34199][0.230945,0.840932,-0.489385][0.0781939,0.546404,0][-0.820566,-0.208362,1.34199][0.230945,0.840932,-0.489385][0.0781939,0.546404,0][-0.92947,-0.0498419,1.58515][0.194575,0.859293,-0.473029][0.0468966,0.560421,0][-0.488652,-0.00369652,1.85031][0.0998061,0.848138,-0.520289][0.0127696,0.503684,0][-0.92947,-0.0498419,1.58515][0.194575,0.859293,-0.473029][0.0468966,0.560421,0][-0.820566,-0.208362,1.34199][0.230945,0.840932,-0.489385][0.0781939,0.546404,0][-1.13158,-0.240956,0.997027][0.350531,0.84861,-0.396218][0.122593,0.586433,0][-1.13158,-0.240956,0.997027][0.350531,0.84861,-0.396218][0.122593,0.586433,0][-1.27931,-0.121713,1.17217][0.265702,0.886298,-0.379314][0.100051,0.605447,0][-0.92947,-0.0498419,1.58515][0.194575,0.859293,-0.473029][0.0468966,0.560421,0][-1.27931,-0.121713,1.17217][0.265702,0.886298,-0.379314][0.100051,0.605447,0][-1.13158,-0.240956,0.997027][0.350531,0.84861,-0.396218][0.122593,0.586433,0][-1.33245,-0.282108,0.558816][0.396388,0.879226,-0.264269][0.178994,0.612287,0][-1.33245,-0.282108,0.558816][0.396388,0.879226,-0.264269][0.178994,0.612287,0][-1.50391,-0.212274,0.651778][0.237027,0.934673,-0.264961][0.167029,0.634356,0][-1.27931,-0.121713,1.17217][0.265702,0.886298,-0.379314][0.100051,0.605447,0][-1.50391,-0.212274,0.651778][0.237027,0.934673,-0.264961][0.167029,0.634356,0][-1.33245,-0.282108,0.558816][0.396388,0.879226,-0.264269][0.178994,0.612287,0][-1.40195,-0.295681,0.0655866][0.341541,0.936956,-0.0739056][0.242476,0.621232,0][-1.40195,-0.295681,0.0655866][0.341541,0.936956,-0.0739056][0.242476,0.621232,0][-1.58131,-0.252158,0.0635036][0.235767,0.966999,-0.0965796][0.242744,0.644317,0][-1.50391,-0.212274,0.651778][0.237027,0.934673,-0.264961][0.167029,0.634356,0][-1.58131,-0.252158,0.0635036][0.235767,0.966999,-0.0965796][0.242744,0.644317,0][-1.40195,-0.295681,0.0655866][0.341541,0.936956,-0.0739056][0.242476,0.621232,0][-1.33245,-0.324538,-0.42416][0.236004,0.971462,-0.0237522][0.30551,0.612287,0][-1.33245,-0.324538,-0.42416][0.236004,0.971462,-0.0237522][0.30551,0.612287,0][-1.50391,-0.306866,-0.520863][0.143146,0.986973,-0.0734405][0.317956,0.634356,0][-1.58131,-0.252158,0.0635036][0.235767,0.966999,-0.0965796][0.242744,0.644317,0][-1.50391,-0.306866,-0.520863][0.143146,0.986973,-0.0734405][0.317956,0.634356,0][-1.33245,-0.324538,-0.42416][0.236004,0.971462,-0.0237522][0.30551,0.612287,0][-1.13158,-0.359007,-0.865029][0.116248,0.992914,-0.0246632][0.362253,0.586433,0][-1.13158,-0.359007,-0.865029][0.116248,0.992914,-0.0246632][0.362253,0.586433,0][-1.27931,-0.372071,-1.04816][0.0421749,0.993588,-0.104902][0.385823,0.605447,0][-1.50391,-0.306866,-0.520863][0.143146,0.986973,-0.0734405][0.317956,0.634356,0][-1.27931,-0.372071,-1.04816][0.0421749,0.993588,-0.104902][0.385823,0.605447,0][-1.13158,-0.359007,-0.865029][0.116248,0.992914,-0.0246632][0.362253,0.586433,0][-0.820567,-0.402116,-1.20859][0.0314609,0.99485,-0.0963492][0.406472,0.546404,0][-0.820567,-0.402116,-1.20859][0.0314609,0.99485,-0.0963492][0.406472,0.546404,0][-0.929471,-0.453752,-1.45932][-0.00555662,0.979903,-0.199398][0.438742,0.560421,0][-1.27931,-0.372071,-1.04816][0.0421749,0.993588,-0.104902][0.385823,0.605447,0][-0.929471,-0.453752,-1.45932][-0.00555662,0.979903,-0.199398][0.438742,0.560421,0][-0.820567,-0.402116,-1.20859][0.0314609,0.99485,-0.0963492][0.406472,0.546404,0][-0.430768,-0.429733,-1.42755][-0.0353823,0.981756,-0.186824][0.434653,0.496234,0][-0.430768,-0.429733,-1.42755][-0.0353823,0.981756,-0.186824][0.434653,0.496234,0][-0.488653,-0.506197,-1.7233][-0.0311023,0.969156,-0.244479][0.472718,0.503684,0][-0.929471,-0.453752,-1.45932][-0.00555662,0.979903,-0.199398][0.438742,0.560421,0][-0.488653,-0.506197,-1.7233][-0.0311023,0.969156,-0.244479][0.472718,0.503684,0][-0.430768,-0.429733,-1.42755][-0.0353823,0.981756,-0.186824][0.434653,0.496234,0][-1.61656e-006,-0.439237,-1.50267][-0.0215735,0.968956,-0.246292][0.444321,0.440791,0][-1.61656e-006,-0.439237,-1.50267][-0.0215735,0.968956,-0.246292][0.444321,0.440791,0][-1.66304e-006,-0.538607,-1.81047][0.0350085,-0.97518,0.218628][0.483938,0.440791,0][-0.488653,-0.506197,-1.7233][-0.0311023,0.969156,-0.244479][0.472718,0.503684,0][-0.820567,-0.402116,-1.20859][0.0314609,0.99485,-0.0963492][0.406472,0.546404,0][-0.699102,-0.403607,-0.924992][0.0272511,0.999608,-0.00641415][0.369971,0.530771,0][-0.366208,-0.413756,-1.09232][0.0272511,0.999608,-0.00641415][0.391507,0.487925,0][-0.366208,-0.413756,-1.09232][0.0272511,0.999608,-0.00641415][0.391507,0.487925,0][-0.430768,-0.429733,-1.42755][-0.0353823,0.981756,-0.186824][0.434653,0.496234,0][-0.820567,-0.402116,-1.20859][0.0314609,0.99485,-0.0963492][0.406472,0.546404,0][-1.13158,-0.359007,-0.865029][0.116248,0.992914,-0.0246632][0.362253,0.586433,0][-0.96681,-0.387474,-0.659006][0.109283,0.992764,0.0497755][0.335736,0.565227,0][-0.699102,-0.403607,-0.924992][0.0272511,0.999608,-0.00641415][0.369971,0.530771,0][-0.699102,-0.403607,-0.924992][0.0272511,0.999608,-0.00641415][0.369971,0.530771,0][-0.820567,-0.402116,-1.20859][0.0314609,0.99485,-0.0963492][0.406472,0.546404,0][-1.13158,-0.359007,-0.865029][0.116248,0.992914,-0.0246632][0.362253,0.586433,0][-1.33245,-0.324538,-0.42416][0.236004,0.971462,-0.0237522][0.30551,0.612287,0][-1.14121,-0.366693,-0.316376][0.19394,0.980227,0.0392631][0.291637,0.587673,0][-0.96681,-0.387474,-0.659006][0.109283,0.992764,0.0497755][0.335736,0.565227,0][-0.96681,-0.387474,-0.659006][0.109283,0.992764,0.0497755][0.335736,0.565227,0][-1.13158,-0.359007,-0.865029][0.116248,0.992914,-0.0246632][0.362253,0.586433,0][-1.33245,-0.324538,-0.42416][0.236004,0.971462,-0.0237522][0.30551,0.612287,0][-1.40195,-0.295681,0.0655866][0.341541,0.936956,-0.0739056][0.242476,0.621232,0][-1.2019,-0.343318,0.0690326][0.231958,0.972467,-0.022455][0.242032,0.595484,0][-1.14121,-0.366693,-0.316376][0.19394,0.980227,0.0392631][0.291637,0.587673,0][-1.14121,-0.366693,-0.316376][0.19394,0.980227,0.0392631][0.291637,0.587673,0][-1.33245,-0.324538,-0.42416][0.236004,0.971462,-0.0237522][0.30551,0.612287,0][-1.40195,-0.295681,0.0655866][0.341541,0.936956,-0.0739056][0.242476,0.621232,0][-1.33245,-0.282108,0.558816][0.396388,0.879226,-0.264269][0.178994,0.612287,0][-1.14121,-0.319944,0.454442][0.149473,0.985252,-0.0832874][0.192427,0.587673,0][-1.2019,-0.343318,0.0690326][0.231958,0.972467,-0.022455][0.242032,0.595484,0][-1.2019,-0.343318,0.0690326][0.231958,0.972467,-0.022455][0.242032,0.595484,0][-1.40195,-0.295681,0.0655866][0.341541,0.936956,-0.0739056][0.242476,0.621232,0][-1.33245,-0.282108,0.558816][0.396388,0.879226,-0.264269][0.178994,0.612287,0][-1.13158,-0.240956,0.997027][0.350531,0.84861,-0.396218][0.122593,0.586433,0][-0.96681,-0.29916,0.797072][0.168532,0.974983,-0.144928][0.148328,0.565227,0][-1.14121,-0.319944,0.454442][0.149473,0.985252,-0.0832874][0.192427,0.587673,0][-1.14121,-0.319944,0.454442][0.149473,0.985252,-0.0832874][0.192427,0.587673,0][-1.33245,-0.282108,0.558816][0.396388,0.879226,-0.264269][0.178994,0.612287,0][-1.13158,-0.240956,0.997027][0.350531,0.84861,-0.396218][0.122593,0.586433,0][-0.820566,-0.208362,1.34199][0.230945,0.840932,-0.489385][0.0781939,0.546404,0][-0.699101,-0.283027,1.06306][0.139276,0.970049,-0.199017][0.114094,0.530771,0][-0.96681,-0.29916,0.797072][0.168532,0.974983,-0.144928][0.148328,0.565227,0][-0.96681,-0.29916,0.797072][0.168532,0.974983,-0.144928][0.148328,0.565227,0][-1.13158,-0.240956,0.997027][0.350531,0.84861,-0.396218][0.122593,0.586433,0][-0.820566,-0.208362,1.34199][0.230945,0.840932,-0.489385][0.0781939,0.546404,0][-0.430768,-0.187471,1.56183][0.0727753,0.864132,-0.497975][0.0498981,0.496234,0][-0.366207,-0.272878,1.23038][0.0873721,0.968645,-0.232578][0.092558,0.487925,0][-0.699101,-0.283027,1.06306][0.139276,0.970049,-0.199017][0.114094,0.530771,0][-0.699101,-0.283027,1.06306][0.139276,0.970049,-0.199017][0.114094,0.530771,0][-0.820566,-0.208362,1.34199][0.230945,0.840932,-0.489385][0.0781939,0.546404,0][-0.430768,-0.187471,1.56183][0.0727753,0.864132,-0.497975][0.0498981,0.496234,0][-1.14245e-006,-0.180283,1.63726][0.0727753,0.864132,-0.497975][0.04019,0.440791,0][-1.19528e-006,-0.269424,1.28735][0.0292527,0.968634,-0.246766][0.0852254,0.440791,0][-0.366207,-0.272878,1.23038][0.0873721,0.968645,-0.232578][0.092558,0.487925,0][-0.366207,-0.272878,1.23038][0.0873721,0.968645,-0.232578][0.092558,0.487925,0][-0.430768,-0.187471,1.56183][0.0727753,0.864132,-0.497975][0.0498981,0.496234,0][-1.14245e-006,-0.180283,1.63726][0.0727753,0.864132,-0.497975][0.04019,0.440791,0][-0.430768,-0.429733,-1.42755][-0.0353823,0.981756,-0.186824][0.434653,0.496234,0][-0.366208,-0.413756,-1.09232][0.0272511,0.999608,-0.00641415][0.391507,0.487925,0][-1.56321e-006,-0.417211,-1.14929][0.00195963,0.998846,-0.0479822][0.398839,0.440791,0][-1.56321e-006,-0.417211,-1.14929][0.00195963,0.998846,-0.0479822][0.398839,0.440791,0][-1.61656e-006,-0.439237,-1.50267][-0.0215735,0.968956,-0.246292][0.444321,0.440791,0][-0.430768,-0.429733,-1.42755][-0.0353823,0.981756,-0.186824][0.434653,0.496234,0][-1.19528e-006,-0.269424,1.28735][0.0292527,0.968634,-0.246766][0.87519,0.679541,0][-1.20458e-006,0.000745723,1.22577][-0.152736,0.219638,0.963551][0.87519,0.714313,0][-0.347896,-0.00721364,1.17244][-0.152736,0.219638,0.963551][0.830414,0.713289,0][-0.347896,-0.00721364,1.17244][-0.152736,0.219638,0.963551][0.830414,0.713289,0][-0.366207,-0.272878,1.23038][0.0873721,0.968645,-0.232578][0.828057,0.679096,0][-1.19528e-006,-0.269424,1.28735][0.0292527,0.968634,-0.246766][0.87519,0.679541,0][-0.366207,-0.272878,1.23038][0.0873721,0.968645,-0.232578][0.828057,0.679096,0][-0.347896,-0.00721364,1.17244][-0.152736,0.219638,0.963551][0.830414,0.713289,0][-0.664146,-0.0134716,1.01348][-0.441558,0.220152,0.869804][0.78971,0.712483,0][-0.664146,-0.0134716,1.01348][-0.441558,0.220152,0.869804][0.78971,0.712483,0][-0.699101,-0.283027,1.06306][-0.443639,0.217446,0.869426][0.785211,0.67779,0][-0.366207,-0.272878,1.23038][0.0873721,0.968645,-0.232578][0.828057,0.679096,0][-0.699101,-0.283027,1.06306][-0.443639,0.217446,0.869426][0.402078,0.934604,0][-0.664146,-0.0134716,1.01348][-0.441558,0.220152,0.869804][0.400724,0.97014,0][-0.91847,-0.0234213,0.760792][-0.692366,0.216391,0.688334][0.354582,0.968828,0][-0.91847,-0.0234213,0.760792][-0.692366,0.216391,0.688334][0.354582,0.968828,0][-0.96681,-0.29916,0.797072][-0.69517,0.212236,0.6868][0.353507,0.932512,0][-0.699101,-0.283027,1.06306][-0.443639,0.217446,0.869426][0.402078,0.934604,0][-1.14121,-0.366693,-0.316376][0.19394,0.980227,0.0392631][0.831606,0.578694,0][-1.08415,-0.0650673,-0.296983][-0.87119,0.193809,-0.451071][0.83555,0.617395,0][-0.918471,-0.0778818,-0.622482][-0.87119,0.193809,-0.451071][0.793624,0.617312,0][-0.918471,-0.0778818,-0.622482][-0.87119,0.193809,-0.451071][0.793624,0.617312,0][-0.96681,-0.387474,-0.659006][-0.870348,0.189517,-0.454508][0.787438,0.577668,0][-1.14121,-0.366693,-0.316376][0.19394,0.980227,0.0392631][0.831606,0.578694,0][-0.96681,-0.387474,-0.659006][-0.870348,0.189517,-0.454508][0.636035,0.899733,0][-0.918471,-0.0778818,-0.622482][-0.87119,0.193809,-0.451071][0.634893,0.94032,0][-0.664147,-0.0878305,-0.875169][-0.68822,0.190061,-0.700164][0.588751,0.939016,0][-0.664147,-0.0878305,-0.875169][-0.68822,0.190061,-0.700164][0.588751,0.939016,0][-0.699102,-0.403607,-0.924992][-0.686716,0.186857,-0.702499][0.587464,0.897645,0][-0.96681,-0.387474,-0.659006][-0.870348,0.189517,-0.454508][0.636035,0.899733,0][-0.699102,-0.403607,-0.924992][-0.686716,0.186857,-0.702499][0.240838,0.129118,0][-0.664147,-0.0878305,-0.875169][-0.68822,0.190061,-0.700164][0.236339,0.169761,0][-0.347897,-0.0940885,-1.03413][-0.438197,0.187222,-0.879165][0.195635,0.168956,0][-0.347897,-0.0940885,-1.03413][-0.438197,0.187222,-0.879165][0.195635,0.168956,0][-0.366208,-0.413756,-1.09232][-0.436812,0.185262,-0.880269][0.197992,0.127812,0][-0.699102,-0.403607,-0.924992][-0.686716,0.186857,-0.702499][0.240838,0.129118,0][-0.366208,-0.413756,-1.09232][-0.436812,0.185262,-0.880269][0.197992,0.127812,0][-0.347897,-0.0940885,-1.03413][-0.438197,0.187222,-0.879165][0.195635,0.168956,0][-1.55399e-006,-0.09622,-1.08825][-0.14995,0.185375,-0.97116][0.150859,0.168681,0][-1.55399e-006,-0.09622,-1.08825][-0.14995,0.185375,-0.97116][0.150859,0.168681,0][-1.56321e-006,-0.417211,-1.14929][-0.149372,0.184711,-0.971375][0.150859,0.127367,0][-0.366208,-0.413756,-1.09232][-0.436812,0.185262,-0.880269][0.197992,0.127812,0][-1.20458e-006,0.000745723,1.22577][-0.152736,0.219638,0.963551][0.791897,0.898138,0][-1.22071e-006,0.36254,1.11894][-0.149238,0.280031,0.94832][0.791897,0.944703,0][-0.319971,0.360582,1.06916][-0.149238,0.280031,0.94832][0.750715,0.944452,0][-0.319971,0.360582,1.06916][-0.149238,0.280031,0.94832][0.750715,0.944452,0][-0.347896,-0.00721364,1.17244][-0.152736,0.219638,0.963551][0.74712,0.897114,0][-1.20458e-006,0.000745723,1.22577][-0.152736,0.219638,0.963551][0.791897,0.898138,0][-0.347896,-0.00721364,1.17244][-0.152736,0.219638,0.963551][0.74712,0.897114,0][-0.319971,0.360582,1.06916][-0.149238,0.280031,0.94832][0.750715,0.944452,0][-0.610875,0.354826,0.922985][-0.436147,0.273821,0.857203][0.713273,0.943711,0][-0.610875,0.354826,0.922985][-0.436147,0.273821,0.857203][0.713273,0.943711,0][-0.664146,-0.0134716,1.01348][-0.441558,0.220152,0.869804][0.706417,0.896308,0][-0.347896,-0.00721364,1.17244][-0.152736,0.219638,0.963551][0.74712,0.897114,0][-0.664146,-0.0134716,1.01348][-0.441558,0.220152,0.869804][0.359795,0.810319,0][-0.610875,0.354826,0.922985][-0.436147,0.273821,0.857203][0.35443,0.859318,0][-0.844913,0.345677,0.690639][-0.684405,0.265807,0.678923][0.312066,0.856434,0][-0.844913,0.345677,0.690639][-0.684405,0.265807,0.678923][0.312066,0.856434,0][-0.91847,-0.0234213,0.760792][-0.692366,0.216391,0.688334][0.313741,0.807188,0][-0.664146,-0.0134716,1.01348][-0.441558,0.220152,0.869804][0.359795,0.810319,0][-0.91847,-0.0234213,0.760792][-0.692366,0.216391,0.688334][0.313741,0.807188,0][-0.844913,0.345677,0.690639][-0.684405,0.265807,0.678923][0.312066,0.856434,0][-0.997477,0.333888,0.391306][-0.865642,0.254463,0.431177][0.270837,0.856861,0][-0.997477,0.333888,0.391306][-0.865642,0.254463,0.431177][0.270837,0.856861,0][-1.08415,-0.0362368,0.435294][-0.865975,0.253987,0.430788][0.268927,0.80766,0][-0.91847,-0.0234213,0.760792][-0.692366,0.216391,0.688334][0.313741,0.807188,0][-1.08415,-0.0362368,0.435294][-0.865975,0.253987,0.430788][0.268927,0.80766,0][-0.997477,0.333888,0.391306][-0.865642,0.254463,0.431177][0.270837,0.856861,0][-1.05059,0.320638,0.0545366][-0.959932,0.241655,0.141889][0.235075,0.860642,0][-1.05059,0.320638,0.0545366][-0.959932,0.241655,0.141889][0.235075,0.860642,0][-1.1418,-0.0506516,0.0691556][-0.960026,0.241418,0.141658][0.230055,0.811772,0][-1.08415,-0.0362368,0.435294][-0.865975,0.253987,0.430788][0.268927,0.80766,0][-1.06909,0.0902577,-0.132059][-0.459807,0.371695,-0.806487][0.802599,0.515063,0][-1.02475,0.305472,-0.0581484][-0.459807,0.371695,-0.806487][0.79829,0.485538,0][-0.828206,0.268096,-0.187433][-0.459807,0.371695,-0.806487][0.828944,0.486049,0][-0.828206,0.268096,-0.187433][-0.459807,0.371695,-0.806487][0.828944,0.486049,0][-1.06624,0.0161619,-0.285071][-0.606656,0.711,-0.355595][0.814864,0.528494,0][-1.06909,0.0902577,-0.132059][-0.459807,0.371695,-0.806487][0.802599,0.515063,0][-1.06624,0.0161619,-0.285071][-0.606656,0.711,-0.355595][0.814864,0.528494,0][-0.828206,0.268096,-0.187433][-0.459807,0.371695,-0.806487][0.828944,0.486049,0][-0.626623,0.25233,-0.409107][-0.51379,0.685413,-0.515974][0.86615,0.486701,0][-0.626623,0.25233,-0.409107][-0.51379,0.685413,-0.515974][0.86615,0.486701,0][-0.89784,-0.0398836,-0.601366][-0.518716,0.750666,-0.409187][0.855818,0.538212,0][-1.06624,0.0161619,-0.285071][-0.606656,0.711,-0.355595][0.814864,0.528494,0][-0.89784,-0.0398836,-0.601366][-0.518716,0.750666,-0.409187][0.855818,0.538212,0][-0.626623,0.25233,-0.409107][-0.51379,0.685413,-0.515974][0.86615,0.486701,0][-0.465688,0.236327,-0.630152][-0.507645,0.750071,-0.4239][0.898971,0.489006,0][-0.465688,0.236327,-0.630152][-0.507645,0.750071,-0.4239][0.898971,0.489006,0][-0.650061,-0.00584598,-0.847122][-0.510442,0.755902,-0.409953][0.898724,0.531867,0][-0.89784,-0.0398836,-0.601366][-0.518716,0.750666,-0.409187][0.855818,0.538212,0][-0.650061,-0.00584598,-0.847122][-0.510442,0.755902,-0.409953][0.898724,0.531867,0][-0.465688,0.236327,-0.630152][-0.507645,0.750071,-0.4239][0.898971,0.489006,0][-0.364892,0.233639,-0.905847][-0.652567,0.716833,-0.245575][0.928911,0.493886,0][-0.364892,0.233639,-0.905847][-0.652567,0.716833,-0.245575][0.513386,0.939934,0][-0.47424,0.0628825,-0.914054][-0.444741,0.324916,-0.834647][0.52746,0.917956,0][-0.650061,-0.00584598,-0.847122][-0.510442,0.755902,-0.409953][0.55009,0.90911,0][-0.347897,-0.0940885,-1.03413][-0.438197,0.187222,-0.879165][0.511199,0.897753,0][-0.235906,0.207061,-0.968354][-0.196082,0.278284,-0.940271][0.496785,0.936513,0][-1.5434e-006,0.2051,-1.01813][-0.196082,0.278284,-0.940271][0.466422,0.936261,0][-1.5434e-006,0.2051,-1.01813][-0.196082,0.278284,-0.940271][0.466422,0.936261,0][-1.55399e-006,-0.09622,-1.08825][-0.14995,0.185375,-0.97116][0.466422,0.897479,0][-0.347897,-0.0940885,-1.03413][-0.438197,0.187222,-0.879165][0.511199,0.897753,0][-1.22071e-006,0.36254,1.11894][-0.149238,0.280031,0.94832][0.791897,0.944703,0][-1.23259e-006,0.59405,1.0403][-0.147622,0.318088,0.936498][0.791897,0.974501,0][-0.299131,0.592217,0.993771][-0.147622,0.318088,0.936498][0.753397,0.974265,0][-0.299131,0.592217,0.993771][-0.147622,0.318088,0.936498][0.753397,0.974265,0][-0.319971,0.360582,1.06916][-0.149238,0.280031,0.94832][0.750715,0.944452,0][-1.22071e-006,0.36254,1.11894][-0.149238,0.280031,0.94832][0.791897,0.944703,0][-0.319971,0.360582,1.06916][-0.149238,0.280031,0.94832][0.750715,0.944452,0][-0.299131,0.592217,0.993771][-0.147622,0.318088,0.936498][0.753397,0.974265,0][-0.57112,0.586825,0.857144][-0.431127,0.314083,0.845861][0.71839,0.973571,0][-0.57112,0.586825,0.857144][-0.431127,0.314083,0.845861][0.71839,0.973571,0][-0.610875,0.354826,0.922985][-0.436147,0.273821,0.857203][0.713273,0.943711,0][-0.319971,0.360582,1.06916][-0.149238,0.280031,0.94832][0.750715,0.944452,0][-0.610875,0.354826,0.922985][-0.436147,0.273821,0.857203][0.35443,0.859318,0][-0.57112,0.586825,0.857144][-0.431127,0.314083,0.845861][0.35079,0.890537,0][-0.790016,0.578241,0.63998][-0.676524,0.306025,0.669824][0.311181,0.887833,0][-0.790016,0.578241,0.63998][-0.676524,0.306025,0.669824][0.311181,0.887833,0][-0.844913,0.345677,0.690639][-0.684405,0.265807,0.678923][0.312066,0.856434,0][-0.610875,0.354826,0.922985][-0.436147,0.273821,0.857203][0.35443,0.859318,0][-0.844913,0.345677,0.690639][-0.684405,0.265807,0.678923][0.312066,0.856434,0][-0.790016,0.578241,0.63998][-0.676524,0.306025,0.669824][0.311181,0.887833,0][-0.920142,0.568048,0.359781][-0.871562,0.291592,0.39415][0.273721,0.888691,0][-0.920142,0.568048,0.359781][-0.871562,0.291592,0.39415][0.273721,0.888691,0][-0.997477,0.333888,0.391306][-0.865642,0.254463,0.431177][0.270837,0.856861,0][-0.844913,0.345677,0.690639][-0.684405,0.265807,0.678923][0.312066,0.856434,0][-0.997477,0.333888,0.391306][-0.865642,0.254463,0.431177][0.270837,0.856861,0][-0.920142,0.568048,0.359781][-0.871562,0.291592,0.39415][0.273721,0.888691,0][-0.9471,0.558572,0.0597316][-0.943869,0.321777,0.0746403][0.243671,0.892914,0][-0.9471,0.558572,0.0597316][-0.943869,0.321777,0.0746403][0.243671,0.892914,0][-1.05059,0.320638,0.0545366][-0.959932,0.241655,0.141889][0.235075,0.860642,0][-0.997477,0.333888,0.391306][-0.865642,0.254463,0.431177][0.270837,0.856861,0][-1.02475,0.305472,-0.0581484][-0.459807,0.371695,-0.806487][0.79829,0.485538,0][-0.962779,0.448562,-0.0585834][-0.746877,0.321719,-0.581954][0.802336,0.466146,0][-0.831441,0.512042,-0.192048][-0.746877,0.321719,-0.581954][0.824472,0.457518,0][-0.831441,0.512042,-0.192048][-0.746877,0.321719,-0.581954][0.824472,0.457518,0][-0.828206,0.268096,-0.187433][-0.459807,0.371695,-0.806487][0.828944,0.486049,0][-1.02475,0.305472,-0.0581484][-0.459807,0.371695,-0.806487][0.79829,0.485538,0][-0.828206,0.268096,-0.187433][-0.459807,0.371695,-0.806487][0.828944,0.486049,0][-0.831441,0.512042,-0.192048][-0.746877,0.321719,-0.581954][0.824472,0.457518,0][-0.61283,0.521682,-0.417643][-0.717465,-0.0226856,-0.696225][0.863306,0.454603,0][-0.61283,0.521682,-0.417643][-0.717465,-0.0226856,-0.696225][0.863306,0.454603,0][-0.626623,0.25233,-0.409107][-0.51379,0.685413,-0.515974][0.86615,0.486701,0][-0.828206,0.268096,-0.187433][-0.459807,0.371695,-0.806487][0.828944,0.486049,0][-0.626623,0.25233,-0.409107][-0.51379,0.685413,-0.515974][0.86615,0.486701,0][-0.61283,0.521682,-0.417643][-0.717465,-0.0226856,-0.696225][0.863306,0.454603,0][-0.419151,0.477414,-0.665399][-0.785876,0.0206576,-0.618039][0.901995,0.459757,0][-0.419151,0.477414,-0.665399][-0.785876,0.0206576,-0.618039][0.901995,0.459757,0][-0.465688,0.236327,-0.630152][-0.507645,0.750071,-0.4239][0.898971,0.489006,0][-0.626623,0.25233,-0.409107][-0.51379,0.685413,-0.515974][0.86615,0.486701,0][-0.465688,0.236327,-0.630152][-0.507645,0.750071,-0.4239][0.898971,0.489006,0][-0.419151,0.477414,-0.665399][-0.785876,0.0206576,-0.618039][0.901995,0.459757,0][-0.341419,0.429353,-0.81962][-0.875645,0.0999497,-0.4725][0.921873,0.467121,0][-0.341419,0.429353,-0.81962][-0.875645,0.0999497,-0.4725][0.921873,0.467121,0][-0.364892,0.233639,-0.905847][-0.652567,0.716833,-0.245575][0.928911,0.493886,0][-0.465688,0.236327,-0.630152][-0.507645,0.750071,-0.4239][0.898971,0.489006,0][-0.235906,0.207061,-0.968354][-0.196082,0.278284,-0.940271][0.496785,0.936513,0][-0.219747,0.518454,-0.889427][-0.24622,0.250117,-0.936385][0.494705,0.976592,0][-1.53282e-006,0.515313,-0.948047][-0.24622,0.250117,-0.936385][0.466422,0.976188,0][-1.53282e-006,0.515313,-0.948047][-0.24622,0.250117,-0.936385][0.466422,0.976188,0][-1.5434e-006,0.2051,-1.01813][-0.196082,0.278284,-0.940271][0.466422,0.936261,0][-0.235906,0.207061,-0.968354][-0.196082,0.278284,-0.940271][0.496785,0.936513,0][-1.1418,-0.0506516,0.0691556][-0.960026,0.241418,0.141658][0.418511,0.359612,0][-1.06909,0.0902577,-0.132059][-0.459807,0.371695,-0.806487][0.43934,0.385173,0][-1.06624,0.0161619,-0.285071][-0.606656,0.711,-0.355595][0.430906,0.405367,0][-1.06624,0.0161619,-0.285071][-0.606656,0.711,-0.355595][0.430906,0.405367,0][-1.08415,-0.0650673,-0.296983][-0.87119,0.193809,-0.451071][0.420278,0.407319,0][-1.1418,-0.0506516,0.0691556][-0.960026,0.241418,0.141658][0.418511,0.359612,0][-1.05059,0.320638,0.0545366][-0.959932,0.241655,0.141889][0.787438,0.48126,0][-1.02475,0.305472,-0.0581484][-0.459807,0.371695,-0.806487][0.79829,0.485538,0][-1.06909,0.0902577,-0.132059][-0.459807,0.371695,-0.806487][0.802599,0.515063,0][-1.06909,0.0902577,-0.132059][-0.459807,0.371695,-0.806487][0.43934,0.385173,0][-1.1418,-0.0506516,0.0691556][-0.960026,0.241418,0.141658][0.418511,0.359612,0][-1.05059,0.320638,0.0545366][-0.959932,0.241655,0.141889][0.467704,0.359638,0][-1.08415,-0.0650673,-0.296983][-0.87119,0.193809,-0.451071][0.815256,0.539185,0][-1.06624,0.0161619,-0.285071][-0.606656,0.711,-0.355595][0.814864,0.528494,0][-0.89784,-0.0398836,-0.601366][-0.518716,0.750666,-0.409187][0.855818,0.538212,0][-0.89784,-0.0398836,-0.601366][-0.518716,0.750666,-0.409187][0.855818,0.538212,0][-0.918471,-0.0778818,-0.622482][-0.87119,0.193809,-0.451071][0.85577,0.544196,0][-1.08415,-0.0650673,-0.296983][-0.87119,0.193809,-0.451071][0.815256,0.539185,0][-0.918471,-0.0778818,-0.622482][-0.87119,0.193809,-0.451071][0.85577,0.544196,0][-0.89784,-0.0398836,-0.601366][-0.518716,0.750666,-0.409187][0.855818,0.538212,0][-0.650061,-0.00584598,-0.847122][-0.510442,0.755902,-0.409953][0.898724,0.531867,0][-0.650061,-0.00584598,-0.847122][-0.510442,0.755902,-0.409953][0.898724,0.531867,0][-0.664147,-0.0878305,-0.875169][-0.68822,0.190061,-0.700164][0.900657,0.542998,0][-0.918471,-0.0778818,-0.622482][-0.87119,0.193809,-0.451071][0.85577,0.544196,0][-0.664147,-0.0878305,-0.875169][-0.68822,0.190061,-0.700164][0.551902,0.898558,0][-0.650061,-0.00584598,-0.847122][-0.510442,0.755902,-0.409953][0.55009,0.90911,0][-0.47424,0.0628825,-0.914054][-0.444741,0.324916,-0.834647][0.52746,0.917956,0][-0.47424,0.0628825,-0.914054][-0.444741,0.324916,-0.834647][0.52746,0.917956,0][-0.347897,-0.0940885,-1.03413][-0.438197,0.187222,-0.879165][0.511199,0.897753,0][-0.664147,-0.0878305,-0.875169][-0.68822,0.190061,-0.700164][0.551902,0.898558,0][-0.347897,-0.0940885,-1.03413][-0.438197,0.187222,-0.879165][0.511199,0.897753,0][-0.47424,0.0628825,-0.914054][-0.444741,0.324916,-0.834647][0.52746,0.917956,0][-0.364892,0.233639,-0.905847][-0.652567,0.716833,-0.245575][0.513386,0.939934,0][-0.364892,0.233639,-0.905847][-0.652567,0.716833,-0.245575][0.513386,0.939934,0][-0.235906,0.207061,-0.968354][-0.196082,0.278284,-0.940271][0.496785,0.936513,0][-0.347897,-0.0940885,-1.03413][-0.438197,0.187222,-0.879165][0.511199,0.897753,0][-0.817696,0.568529,-0.190503][-0.744133,0.198516,-0.637853][0.824804,0.450242,0][-0.831441,0.512042,-0.192048][-0.746877,0.321719,-0.581954][0.824472,0.457518,0][-0.962779,0.448562,-0.0585834][-0.746877,0.321719,-0.581954][0.802336,0.466146,0][-0.962779,0.448562,-0.0585834][-0.746877,0.321719,-0.581954][0.802336,0.466146,0][-0.929274,0.565089,0.0229676][-0.771564,0.498461,-0.395253][0.798138,0.448473,0][-0.817696,0.568529,-0.190503][-0.744133,0.198516,-0.637853][0.824804,0.450242,0][-0.610033,0.584542,-0.412852][-0.717363,0.0846153,-0.691542][0.862127,0.446916,0][-0.61283,0.521682,-0.417643][-0.717465,-0.0226856,-0.696225][0.863306,0.454603,0][-0.831441,0.512042,-0.192048][-0.746877,0.321719,-0.581954][0.824472,0.457518,0][-0.831441,0.512042,-0.192048][-0.746877,0.321719,-0.581954][0.824472,0.457518,0][-0.817696,0.568529,-0.190503][-0.744133,0.198516,-0.637853][0.824804,0.450242,0][-0.610033,0.584542,-0.412852][-0.717363,0.0846153,-0.691542][0.862127,0.446916,0][-0.417254,0.550774,-0.64897][-0.763653,0.159826,-0.625532][0.899721,0.450503,0][-0.419151,0.477414,-0.665399][-0.785876,0.0206576,-0.618039][0.901995,0.459757,0][-0.61283,0.521682,-0.417643][-0.717465,-0.0226856,-0.696225][0.863306,0.454603,0][-0.61283,0.521682,-0.417643][-0.717465,-0.0226856,-0.696225][0.863306,0.454603,0][-0.610033,0.584542,-0.412852][-0.717363,0.0846153,-0.691542][0.862127,0.446916,0][-0.417254,0.550774,-0.64897][-0.763653,0.159826,-0.625532][0.899721,0.450503,0][-0.235906,0.207061,-0.968354][-0.196082,0.278284,-0.940271][0.496785,0.936513,0][-0.364892,0.233639,-0.905847][-0.652567,0.716833,-0.245575][0.513386,0.939934,0][-0.341419,0.429353,-0.81962][-0.875645,0.0999497,-0.4725][0.510365,0.965124,0][-0.235906,0.207061,-0.968354][-0.196082,0.278284,-0.940271][0.496785,0.936513,0][-0.341419,0.429353,-0.81962][-0.875645,0.0999497,-0.4725][0.510365,0.965124,0][-0.251454,0.533027,-0.849576][-0.560975,0.259671,-0.786053][0.498786,0.978467,0][-0.235906,0.207061,-0.968354][-0.196082,0.278284,-0.940271][0.947517,0.493763,0][-0.251454,0.533027,-0.849576][-0.560975,0.259671,-0.786053][0.931677,0.452176,0][-0.219747,0.518454,-0.889427][-0.24622,0.250117,-0.936385][0.938095,0.453863,0][-0.251454,0.533027,-0.849576][-0.560975,0.259671,-0.786053][0.931677,0.452176,0][-0.341419,0.429353,-0.81962][-0.875645,0.0999497,-0.4725][0.921873,0.467121,0][-0.419151,0.477414,-0.665399][-0.785876,0.0206576,-0.618039][0.901995,0.459757,0][-0.419151,0.477414,-0.665399][-0.785876,0.0206576,-0.618039][0.901995,0.459757,0][-0.417254,0.550774,-0.64897][-0.763653,0.159826,-0.625532][0.899721,0.450503,0][-0.251454,0.533027,-0.849576][-0.560975,0.259671,-0.786053][0.931677,0.452176,0][-0.929274,0.565089,0.0229676][-0.771564,0.498461,-0.395253][0.798138,0.448473,0][-0.962779,0.448562,-0.0585834][-0.746877,0.321719,-0.581954][0.802336,0.466146,0][-1.02475,0.305472,-0.0581484][-0.459807,0.371695,-0.806487][0.79829,0.485538,0][-0.929274,0.565089,0.0229676][-0.771564,0.498461,-0.395253][0.798138,0.448473,0][-1.02475,0.305472,-0.0581484][-0.459807,0.371695,-0.806487][0.79829,0.485538,0][-1.05059,0.320638,0.0545366][-0.959932,0.241655,0.141889][0.787438,0.48126,0][-0.929274,0.565089,0.0229676][-0.771564,0.498461,-0.395253][0.798138,0.448473,0][-1.05059,0.320638,0.0545366][-0.959932,0.241655,0.141889][0.787438,0.48126,0][-0.9471,0.558572,0.0597316][-0.943869,0.321777,0.0746403][0.793802,0.448811,0][-1.24514e-006,0.651164,0.957184][-0.0490353,0.959573,0.277156][0.755576,0.558615,0][-0.274852,0.649478,0.914394][-0.0490353,0.959573,0.277156][0.750708,0.523248,0][-0.290005,0.634634,0.963106][-0.0490353,0.959573,0.277156][0.7572,0.521458,0][-0.290005,0.634634,0.963106][-0.0490353,0.959573,0.277156][0.7572,0.521458,0][-1.23743e-006,0.636416,1.00823][-0.0490323,0.959549,0.277238][0.762333,0.558775,0][-1.24514e-006,0.651164,0.957184][-0.0490353,0.959573,0.277156][0.755576,0.558615,0][-1.23743e-006,0.636416,1.00823][-0.0490323,0.959549,0.277238][0.791897,0.979953,0][-0.290005,0.634634,0.963106][-0.0490353,0.959573,0.277156][0.754571,0.979724,0][-0.299131,0.592217,0.993771][-0.147622,0.318088,0.936498][0.753397,0.974265,0][-0.299131,0.592217,0.993771][-0.147622,0.318088,0.936498][0.753397,0.974265,0][-1.23259e-006,0.59405,1.0403][-0.147622,0.318088,0.936498][0.791897,0.974501,0][-1.23743e-006,0.636416,1.00823][-0.0490323,0.959549,0.277238][0.791897,0.979953,0][-0.274852,0.649478,0.914394][-0.0490353,0.959573,0.277156][0.750708,0.523248,0][-0.524692,0.644531,0.788747][-0.143182,0.958386,0.246973][0.735266,0.491016,0][-0.553677,0.629412,0.830615][-0.143182,0.958386,0.246973][0.740918,0.487442,0][-0.553677,0.629412,0.830615][-0.143182,0.958386,0.246973][0.740918,0.487442,0][-0.290005,0.634634,0.963106][-0.0490353,0.959573,0.277156][0.7572,0.521458,0][-0.274852,0.649478,0.914394][-0.0490353,0.959573,0.277156][0.750708,0.523248,0][-0.290005,0.634634,0.963106][-0.0490353,0.959573,0.277156][0.754571,0.979724,0][-0.553677,0.629412,0.830615][-0.143182,0.958386,0.246973][0.720635,0.979052,0][-0.57112,0.586825,0.857144][-0.431127,0.314083,0.845861][0.71839,0.973571,0][-0.57112,0.586825,0.857144][-0.431127,0.314083,0.845861][0.71839,0.973571,0][-0.299131,0.592217,0.993771][-0.147622,0.318088,0.936498][0.753397,0.974265,0][-0.290005,0.634634,0.963106][-0.0490353,0.959573,0.277156][0.754571,0.979724,0][-0.524692,0.644531,0.788747][-0.143182,0.958386,0.246973][0.735266,0.491016,0][-0.725573,0.636669,0.589068][-0.224632,0.956069,0.188341][0.710323,0.465007,0][-0.765824,0.621112,0.620034][-0.224632,0.956069,0.188341][0.714614,0.459975,0][-0.765824,0.621112,0.620034][-0.224632,0.956069,0.188341][0.714614,0.459975,0][-0.553677,0.629412,0.830615][-0.143182,0.958386,0.246973][0.740918,0.487442,0][-0.524692,0.644531,0.788747][-0.143182,0.958386,0.246973][0.735266,0.491016,0][-0.553677,0.629412,0.830615][-0.143182,0.958386,0.246973][0.349699,0.896846,0][-0.765824,0.621112,0.620034][-0.224632,0.956069,0.188341][0.311301,0.89423,0][-0.790016,0.578241,0.63998][-0.676524,0.306025,0.669824][0.311181,0.887833,0][-0.790016,0.578241,0.63998][-0.676524,0.306025,0.669824][0.311181,0.887833,0][-0.57112,0.586825,0.857144][-0.431127,0.314083,0.845861][0.35079,0.890537,0][-0.553677,0.629412,0.830615][-0.143182,0.958386,0.246973][0.349699,0.896846,0][-0.725573,0.636669,0.589068][-0.224632,0.956069,0.188341][0.710323,0.465007,0][-0.840865,0.626515,0.331325][-0.279045,0.956315,0.087147][0.67783,0.449943,0][-0.889462,0.610785,0.348341][-0.279045,0.956315,0.087147][0.680361,0.443823,0][-0.889462,0.610785,0.348341][-0.279045,0.956315,0.087147][0.680361,0.443823,0][-0.765824,0.621112,0.620034][-0.224632,0.956069,0.188341][0.714614,0.459975,0][-0.725573,0.636669,0.589068][-0.224632,0.956069,0.188341][0.710323,0.465007,0][-0.765824,0.621112,0.620034][-0.224632,0.956069,0.188341][0.311301,0.89423,0][-0.889462,0.610785,0.348341][-0.279045,0.956315,0.087147][0.275207,0.895077,0][-0.920142,0.568048,0.359781][-0.871562,0.291592,0.39415][0.273721,0.888691,0][-0.920142,0.568048,0.359781][-0.871562,0.291592,0.39415][0.273721,0.888691,0][-0.790016,0.578241,0.63998][-0.676524,0.306025,0.669824][0.311181,0.887833,0][-0.765824,0.621112,0.620034][-0.224632,0.956069,0.188341][0.311301,0.89423,0][-0.840865,0.626515,0.331325][-0.279045,0.956315,0.087147][0.67783,0.449943,0][-0.858241,0.616188,0.0597426][-0.282796,0.959004,-0.0183742][0.643373,0.447449,0][-0.910891,0.600769,0.0653106][-0.282796,0.959004,-0.0183742][0.644445,0.440791,0][-0.910891,0.600769,0.0653106][-0.282796,0.959004,-0.0183742][0.644445,0.440791,0][-0.889462,0.610785,0.348341][-0.279045,0.956315,0.087147][0.680361,0.443823,0][-0.840865,0.626515,0.331325][-0.279045,0.956315,0.087147][0.67783,0.449943,0][-0.889462,0.610785,0.348341][-0.279045,0.956315,0.087147][0.275207,0.895077,0][-0.910891,0.600769,0.0653106][-0.282796,0.959004,-0.0183742][0.247226,0.899039,0][-0.9471,0.558572,0.0597316][-0.943869,0.321777,0.0746403][0.243671,0.892914,0][-0.9471,0.558572,0.0597316][-0.943869,0.321777,0.0746403][0.243671,0.892914,0][-0.920142,0.568048,0.359781][-0.871562,0.291592,0.39415][0.273721,0.888691,0][-0.889462,0.610785,0.348341][-0.279045,0.956315,0.087147][0.275207,0.895077,0][-0.858241,0.616188,0.0597426][-0.282796,0.959004,-0.0183742][0.643373,0.447449,0][-0.758784,0.630007,-0.170575][-0.346867,0.933213,-0.0937941][0.613544,0.45986,0][-0.801413,0.61286,-0.183532][-0.346866,0.933213,-0.0937941][0.61226,0.45448,0][-0.801413,0.61286,-0.183532][-0.346866,0.933213,-0.0937941][0.61226,0.45448,0][-0.910891,0.600769,0.0653106][-0.282796,0.959004,-0.0183742][0.644445,0.440791,0][-0.858241,0.616188,0.0597426][-0.282796,0.959004,-0.0183742][0.643373,0.447449,0][-0.910891,0.600769,0.0653106][-0.282796,0.959004,-0.0183742][0.796516,0.442188,0][-0.801413,0.61286,-0.183532][-0.346866,0.933213,-0.0937941][0.825253,0.44413,0][-0.817696,0.568529,-0.190503][-0.744133,0.198516,-0.637853][0.824804,0.450242,0][-0.817696,0.568529,-0.190503][-0.744133,0.198516,-0.637853][0.824804,0.450242,0][-0.929274,0.565089,0.0229676][-0.771564,0.498461,-0.395253][0.798138,0.448473,0][-0.910891,0.600769,0.0653106][-0.282796,0.959004,-0.0183742][0.796516,0.442188,0][-0.758784,0.630007,-0.170575][-0.346867,0.933213,-0.0937941][0.613544,0.45986,0][-0.556834,0.644717,-0.377394][-0.280035,0.937459,-0.206764][0.586489,0.485468,0][-0.593157,0.628124,-0.403431][-0.280035,0.937459,-0.206764][0.583513,0.480878,0][-0.593157,0.628124,-0.403431][-0.280035,0.937459,-0.206764][0.583513,0.480878,0][-0.801413,0.61286,-0.183532][-0.346866,0.933213,-0.0937941][0.61226,0.45448,0][-0.758784,0.630007,-0.170575][-0.346867,0.933213,-0.0937941][0.613544,0.45986,0][-0.801413,0.61286,-0.183532][-0.346866,0.933213,-0.0937941][0.825253,0.44413,0][-0.593157,0.628124,-0.403431][-0.280035,0.937459,-0.206764][0.862483,0.440791,0][-0.610033,0.584542,-0.412852][-0.717363,0.0846153,-0.691542][0.862127,0.446916,0][-0.610033,0.584542,-0.412852][-0.717363,0.0846153,-0.691542][0.862127,0.446916,0][-0.817696,0.568529,-0.190503][-0.744133,0.198516,-0.637853][0.824804,0.450242,0][-0.801413,0.61286,-0.183532][-0.346866,0.933213,-0.0937941][0.825253,0.44413,0][-0.556834,0.644717,-0.377394][-0.280035,0.937459,-0.206764][0.586489,0.485468,0][-0.383634,0.614839,-0.57488][-0.163558,0.944083,-0.286281][0.561418,0.507688,0][-0.408393,0.596752,-0.620379][-0.163558,0.944083,-0.286281][0.555959,0.504571,0][-0.408393,0.596752,-0.620379][-0.163558,0.944083,-0.286281][0.555959,0.504571,0][-0.593157,0.628124,-0.403431][-0.280035,0.937459,-0.206764][0.583513,0.480878,0][-0.556834,0.644717,-0.377394][-0.280035,0.937459,-0.206764][0.586489,0.485468,0][-0.593157,0.628124,-0.403431][-0.280035,0.937459,-0.206764][0.862483,0.440791,0][-0.408393,0.596752,-0.620379][-0.163558,0.944083,-0.286281][0.897847,0.443819,0][-0.417254,0.550774,-0.64897][-0.763653,0.159826,-0.625532][0.899721,0.450503,0][-0.417254,0.550774,-0.64897][-0.763653,0.159826,-0.625532][0.899721,0.450503,0][-0.610033,0.584542,-0.412852][-0.717363,0.0846153,-0.691542][0.862127,0.446916,0][-0.593157,0.628124,-0.403431][-0.280035,0.937459,-0.206764][0.862483,0.440791,0][-0.383634,0.614839,-0.57488][-0.163558,0.944083,-0.286281][0.561418,0.507688,0][-0.200914,0.581968,-0.807636][-0.200269,0.936022,-0.289404][0.531875,0.531109,0][-0.209269,0.564056,-0.85979][-0.200269,0.936022,-0.289404][0.52553,0.530092,0][-0.209269,0.564056,-0.85979][-0.200269,0.936022,-0.289404][0.52553,0.530092,0][-0.408393,0.596752,-0.620379][-0.163558,0.944083,-0.286281][0.555959,0.504571,0][-0.383634,0.614839,-0.57488][-0.163558,0.944083,-0.286281][0.561418,0.507688,0][-0.408393,0.596752,-0.620379][-0.163558,0.944083,-0.286281][0.897847,0.443819,0][-0.209269,0.564056,-0.85979][-0.200269,0.936022,-0.289404][0.936329,0.447125,0][-0.251454,0.533027,-0.849576][-0.560975,0.259671,-0.786053][0.931677,0.452176,0][-0.251454,0.533027,-0.849576][-0.560975,0.259671,-0.786053][0.931677,0.452176,0][-0.417254,0.550774,-0.64897][-0.763653,0.159826,-0.625532][0.899721,0.450503,0][-0.408393,0.596752,-0.620379][-0.163558,0.944083,-0.286281][0.897847,0.443819,0][-0.200914,0.581968,-0.807636][-0.200269,0.936022,-0.289404][0.531875,0.531109,0][-1.52123e-006,0.579169,-0.871301][-0.100088,0.928845,-0.356691][0.523381,0.556874,0][-1.52866e-006,0.56027,-0.920515][-0.100088,0.928845,-0.356691][0.517411,0.55694,0][-1.52866e-006,0.56027,-0.920515][-0.100088,0.928845,-0.356691][0.517411,0.55694,0][-0.209269,0.564056,-0.85979][-0.200269,0.936022,-0.289404][0.52553,0.530092,0][-0.200914,0.581968,-0.807636][-0.200269,0.936022,-0.289404][0.531875,0.531109,0][-0.209269,0.564056,-0.85979][-0.200269,0.936022,-0.289404][0.493356,0.982461,0][-1.52866e-006,0.56027,-0.920515][-0.100088,0.928845,-0.356691][0.466422,0.981974,0][-1.53282e-006,0.515313,-0.948047][-0.24622,0.250117,-0.936385][0.466422,0.976188,0][-1.53282e-006,0.515313,-0.948047][-0.24622,0.250117,-0.936385][0.466422,0.976188,0][-0.219747,0.518454,-0.889427][-0.24622,0.250117,-0.936385][0.494705,0.976592,0][-0.209269,0.564056,-0.85979][-0.200269,0.936022,-0.289404][0.493356,0.982461,0][-1.23421e-006,0.59405,1.0403][-1,0,1.50996e-007][0.447867,0.406498,0][-1.23905e-006,0.636416,1.00823][-1,0,1.50996e-007][0.454384,0.404423,0][-1.24676e-006,0.651164,0.957184][-1,0,1.50996e-007][0.460846,0.406659,0][-0.910891,0.600769,0.0653106][-0.282796,0.959004,-0.0183742][0.796516,0.442188,0][-0.929274,0.565089,0.0229676][-0.771564,0.498461,-0.395253][0.798138,0.448473,0][-0.9471,0.558572,0.0597316][-0.943869,0.321777,0.0746403][0.793802,0.448811,0][-0.219747,0.518454,-0.889427][-0.24622,0.250117,-0.936385][0.938095,0.453863,0][-0.251454,0.533027,-0.849576][-0.560975,0.259671,-0.786053][0.931677,0.452176,0][-0.209269,0.564056,-0.85979][-0.200269,0.936022,-0.289404][0.936329,0.447125,0][-1.52285e-006,0.579169,-0.871301][-1,0,1.50997e-007][0.521793,0.9824,0][-1.53028e-006,0.56027,-0.920515][-1,0,1.50997e-007][0.528228,0.980249,0][-1.53444e-006,0.515313,-0.948047][-1,0,1.50997e-007][0.534643,0.982461,0][-1.24514e-006,0.651164,0.957184][-0.0490353,0.959573,0.277156][0.755576,0.558615,0][-1.26676e-006,0.59075,0.813972][0.0532229,0.920066,-0.388132][0.738291,0.558843,0][-0.230583,0.588963,0.778119][0.0532229,0.920066,-0.388132][0.734219,0.529175,0][-0.230583,0.588963,0.778119][0.0532229,0.920066,-0.388132][0.734219,0.529175,0][-0.274852,0.649478,0.914394][-0.0490353,0.959573,0.277156][0.750708,0.523248,0][-1.24514e-006,0.651164,0.957184][-0.0490353,0.959573,0.277156][0.755576,0.558615,0][-0.274852,0.649478,0.914394][-0.0490353,0.959573,0.277156][0.750708,0.523248,0][-0.230583,0.588963,0.778119][0.0532229,0.920066,-0.388132][0.734219,0.529175,0][-0.440182,0.583728,0.672839][0.156751,0.920528,-0.35785][0.721299,0.502142,0][-0.440182,0.583728,0.672839][0.156751,0.920528,-0.35785][0.721299,0.502142,0][-0.524692,0.644531,0.788747][-0.143182,0.958386,0.246973][0.735266,0.491016,0][-0.274852,0.649478,0.914394][-0.0490353,0.959573,0.277156][0.750708,0.523248,0][-0.524692,0.644531,0.788747][-0.143182,0.958386,0.246973][0.735266,0.491016,0][-0.440182,0.583728,0.672839][0.156751,0.920528,-0.35785][0.721299,0.502142,0][-0.608708,0.575407,0.505529][0.251696,0.920365,-0.299296][0.700428,0.480334,0][-0.608708,0.575407,0.505529][0.251696,0.920365,-0.299296][0.700428,0.480334,0][-0.725573,0.636669,0.589068][-0.224632,0.956069,0.188341][0.710323,0.465007,0][-0.524692,0.644531,0.788747][-0.143182,0.958386,0.246973][0.735266,0.491016,0][-0.725573,0.636669,0.589068][-0.224632,0.956069,0.188341][0.710323,0.465007,0][-0.608708,0.575407,0.505529][0.251696,0.920365,-0.299296][0.700428,0.480334,0][-0.70543,0.564666,0.289567][0.340256,0.919227,-0.198108][0.673239,0.467712,0][-0.70543,0.564666,0.289567][0.340256,0.919227,-0.198108][0.673239,0.467712,0][-0.840865,0.626515,0.331325][-0.279045,0.956315,0.087147][0.67783,0.449943,0][-0.725573,0.636669,0.589068][-0.224632,0.956069,0.188341][0.710323,0.465007,0][-0.840865,0.626515,0.331325][-0.279045,0.956315,0.087147][0.67783,0.449943,0][-0.70543,0.564666,0.289567][0.340256,0.919227,-0.198108][0.673239,0.467712,0][-0.720008,0.55335,0.0620085][0.396191,0.915427,-0.0709008][0.644411,0.465637,0][-0.720008,0.55335,0.0620085][0.396191,0.915427,-0.0709008][0.644411,0.465637,0][-0.858241,0.616188,0.0597426][-0.282796,0.959004,-0.0183742][0.643373,0.447449,0][-0.840865,0.626515,0.331325][-0.279045,0.956315,0.087147][0.67783,0.449943,0][-0.858241,0.616188,0.0597426][-0.282796,0.959004,-0.0183742][0.643373,0.447449,0][-0.720008,0.55335,0.0620085][0.396191,0.915427,-0.0709008][0.644411,0.465637,0][-0.63657,0.54375,-0.130974][0.408436,0.903243,0.131656][0.619766,0.476191,0][-0.63657,0.54375,-0.130974][0.408436,0.903243,0.131656][0.619766,0.476191,0][-0.758784,0.630007,-0.170575][-0.346867,0.933213,-0.0937941][0.613544,0.45986,0][-0.858241,0.616188,0.0597426][-0.282796,0.959004,-0.0183742][0.643373,0.447449,0][-0.758784,0.630007,-0.170575][-0.346867,0.933213,-0.0937941][0.613544,0.45986,0][-0.63657,0.54375,-0.130974][0.408436,0.903243,0.131656][0.619766,0.476191,0][-0.467147,0.535132,-0.304268][0.442204,0.80661,0.392218][0.597441,0.497814,0][-0.467147,0.535132,-0.304268][0.442204,0.80661,0.392218][0.597441,0.497814,0][-0.556834,0.644717,-0.377394][-0.280035,0.937459,-0.206764][0.586489,0.485468,0][-0.758784,0.630007,-0.170575][-0.346867,0.933213,-0.0937941][0.613544,0.45986,0][-0.556834,0.644717,-0.377394][-0.280035,0.937459,-0.206764][0.586489,0.485468,0][-0.467147,0.535132,-0.304268][0.442204,0.80661,0.392218][0.597441,0.497814,0][-0.321843,0.526902,-0.469741][0.534174,0.726094,0.432951][0.576157,0.516343,0][-0.321843,0.526902,-0.469741][0.534174,0.726094,0.432951][0.576157,0.516343,0][-0.383634,0.614839,-0.57488][-0.163558,0.944083,-0.286281][0.561418,0.507688,0][-0.556834,0.644717,-0.377394][-0.280035,0.937459,-0.206764][0.586489,0.485468,0][-0.383634,0.614839,-0.57488][-0.163558,0.944083,-0.286281][0.561418,0.507688,0][-0.321843,0.526902,-0.469741][0.534174,0.726094,0.432951][0.576157,0.516343,0][-0.168553,0.517204,-0.664766][0.505987,0.784418,0.358701][0.551109,0.535873,0][-0.168553,0.517204,-0.664766][0.505987,0.784418,0.358701][0.551109,0.535873,0][-0.200914,0.581968,-0.807636][-0.200269,0.936022,-0.289404][0.531875,0.531109,0][-0.383634,0.614839,-0.57488][-0.163558,0.944083,-0.286281][0.561418,0.507688,0][-0.200914,0.581968,-0.807636][-0.200269,0.936022,-0.289404][0.531875,0.531109,0][-0.168553,0.517204,-0.664766][0.505987,0.784418,0.358701][0.551109,0.535873,0][-1.4981e-006,0.514549,-0.718112][0.135729,0.913562,0.383382][0.543996,0.55749,0][-1.4981e-006,0.514549,-0.718112][0.135729,0.913562,0.383382][0.543996,0.55749,0][-1.52123e-006,0.579169,-0.871301][-0.100088,0.928845,-0.356691][0.523381,0.556874,0][-0.200914,0.581968,-0.807636][-0.200269,0.936022,-0.289404][0.531875,0.531109,0][-1.26676e-006,0.59075,0.813972][0.0532229,0.920066,-0.388132][0.738291,0.558843,0][-1.28432e-006,0.54105,0.697679][0.052343,0.918285,-0.392444][0.724265,0.559033,0][-0.194045,0.539217,0.667509][0.052343,0.918285,-0.392444][0.720844,0.534068,0][-0.194045,0.539217,0.667509][0.052343,0.918285,-0.392444][0.720844,0.534068,0][-0.230583,0.588963,0.778119][0.0532229,0.920066,-0.388132][0.734219,0.529175,0][-1.26676e-006,0.59075,0.813972][0.0532229,0.920066,-0.388132][0.738291,0.558843,0][-0.230583,0.588963,0.778119][0.0532229,0.920066,-0.388132][0.734219,0.529175,0][-0.194045,0.539217,0.667509][0.052343,0.918285,-0.392444][0.720844,0.534068,0][-0.37043,0.533837,0.578918][0.154038,0.919163,-0.362507][0.709988,0.511326,0][-0.37043,0.533837,0.578918][0.154038,0.919163,-0.362507][0.709988,0.511326,0][-0.440182,0.583728,0.672839][0.156751,0.920528,-0.35785][0.721299,0.502142,0][-0.230583,0.588963,0.778119][0.0532229,0.920066,-0.388132][0.734219,0.529175,0][-0.440182,0.583728,0.672839][0.156751,0.920528,-0.35785][0.721299,0.502142,0][-0.37043,0.533837,0.578918][0.154038,0.919163,-0.362507][0.709988,0.511326,0][-0.512251,0.525611,0.438107][0.248485,0.919696,-0.303998][0.692443,0.492982,0][-0.512251,0.525611,0.438107][0.248485,0.919696,-0.303998][0.692443,0.492982,0][-0.608708,0.575407,0.505529][0.251696,0.920365,-0.299296][0.700428,0.480334,0][-0.440182,0.583728,0.672839][0.156751,0.920528,-0.35785][0.721299,0.502142,0][-0.608708,0.575407,0.505529][0.251696,0.920365,-0.299296][0.700428,0.480334,0][-0.512251,0.525611,0.438107][0.248485,0.919696,-0.303998][0.692443,0.492982,0][-0.593647,0.514588,0.256376][0.332266,0.920713,-0.204663][0.669597,0.482373,0][-0.593647,0.514588,0.256376][0.332266,0.920713,-0.204663][0.669597,0.482373,0][-0.70543,0.564666,0.289567][0.340256,0.919227,-0.198108][0.673239,0.467712,0][-0.608708,0.575407,0.505529][0.251696,0.920365,-0.299296][0.700428,0.480334,0][-0.70543,0.564666,0.289567][0.340256,0.919227,-0.198108][0.673239,0.467712,0][-0.593647,0.514588,0.256376][0.332266,0.920713,-0.204663][0.669597,0.482373,0][-0.605915,0.503284,0.0648835][0.387912,0.918299,-0.0790596][0.645367,0.480639,0][-0.605915,0.503284,0.0648835][0.387912,0.918299,-0.0790596][0.645367,0.480639,0][-0.720008,0.55335,0.0620085][0.396191,0.915427,-0.0709008][0.644411,0.465637,0][-0.70543,0.564666,0.289567][0.340256,0.919227,-0.198108][0.673239,0.467712,0][-0.720008,0.55335,0.0620085][0.396191,0.915427,-0.0709008][0.644411,0.465637,0][-0.605915,0.503284,0.0648835][0.387912,0.918299,-0.0790596][0.645367,0.480639,0][-0.535698,0.494412,-0.0965895][0.396229,0.90997,0.122303][0.624758,0.489526,0][-0.535698,0.494412,-0.0965895][0.396229,0.90997,0.122303][0.624758,0.489526,0][-0.63657,0.54375,-0.130974][0.408436,0.903243,0.131656][0.619766,0.476191,0][-0.720008,0.55335,0.0620085][0.396191,0.915427,-0.0709008][0.644411,0.465637,0][-0.63657,0.54375,-0.130974][0.408436,0.903243,0.131656][0.619766,0.476191,0][-0.535698,0.494412,-0.0965895][0.396229,0.90997,0.122303][0.624758,0.489526,0][-0.393122,0.486559,-0.241497][0.340416,0.895595,0.286401][0.606099,0.507728,0][-0.393122,0.486559,-0.241497][0.340416,0.895595,0.286401][0.606099,0.507728,0][-0.467147,0.535132,-0.304268][0.442204,0.80661,0.392218][0.597441,0.497814,0][-0.63657,0.54375,-0.130974][0.408436,0.903243,0.131656][0.619766,0.476191,0][-0.467147,0.535132,-0.304268][0.442204,0.80661,0.392218][0.597441,0.497814,0][-0.393122,0.486559,-0.241497][0.340416,0.895595,0.286401][0.606099,0.507728,0][-0.270844,0.47775,-0.381666][0.364444,0.893678,0.261763][0.588102,0.523333,0][-0.270844,0.47775,-0.381666][0.364444,0.893678,0.261763][0.588102,0.523333,0][-0.321843,0.526902,-0.469741][0.534174,0.726094,0.432951][0.576157,0.516343,0][-0.467147,0.535132,-0.304268][0.442204,0.80661,0.392218][0.597441,0.497814,0][-0.321843,0.526902,-0.469741][0.534174,0.726094,0.432951][0.576157,0.516343,0][-0.270844,0.47775,-0.381666][0.364444,0.893678,0.261763][0.588102,0.523333,0][-0.141844,0.466812,-0.546734][0.403085,0.878393,0.256805][0.566948,0.539785,0][-0.141844,0.466812,-0.546734][0.403085,0.878393,0.256805][0.566948,0.539785,0][-0.168553,0.517204,-0.664766][0.505987,0.784418,0.358701][0.551109,0.535873,0][-0.321843,0.526902,-0.469741][0.534174,0.726094,0.432951][0.576157,0.516343,0][-0.168553,0.517204,-0.664766][0.505987,0.784418,0.358701][0.551109,0.535873,0][-0.141844,0.466812,-0.546734][0.403085,0.878393,0.256805][0.566948,0.539785,0][-1.479e-006,0.46408,-0.591636][0.132859,0.922037,0.363587][0.560969,0.55798,0][-1.479e-006,0.46408,-0.591636][0.132859,0.922037,0.363587][0.560969,0.55798,0][-1.4981e-006,0.514549,-0.718112][0.135729,0.913562,0.383382][0.543996,0.55749,0][-0.168553,0.517204,-0.664766][0.505987,0.784418,0.358701][0.551109,0.535873,0][-1.28432e-006,0.54105,0.697679][0.052343,0.918285,-0.392444][0.724265,0.559033,0][-1.31442e-006,0.604075,0.498324][0.0501163,0.990448,0.12846][0.697784,0.558371,0][-0.131966,0.613428,0.477697][0.0501163,0.990448,0.12846][0.695269,0.541322,0][-0.131966,0.613428,0.477697][0.0501163,0.990448,0.12846][0.695269,0.541322,0][-0.194045,0.539217,0.667509][0.052343,0.918285,-0.392444][0.720844,0.534068,0][-1.28432e-006,0.54105,0.697679][0.052343,0.918285,-0.392444][0.724265,0.559033,0][-0.194045,0.539217,0.667509][0.052343,0.918285,-0.392444][0.720844,0.534068,0][-0.131966,0.613428,0.477697][0.0501163,0.990448,0.12846][0.695269,0.541322,0][-0.251923,0.608976,0.417129][-0.0810991,0.992845,0.0876454][0.687858,0.52586,0][-0.251923,0.608976,0.417129][-0.0810991,0.992845,0.0876454][0.687858,0.52586,0][-0.37043,0.533837,0.578918][0.154038,0.919163,-0.362507][0.709988,0.511326,0][-0.194045,0.539217,0.667509][0.052343,0.918285,-0.392444][0.720844,0.534068,0][-0.37043,0.533837,0.578918][0.154038,0.919163,-0.362507][0.709988,0.511326,0][-0.251923,0.608976,0.417129][-0.0810991,0.992845,0.0876454][0.687858,0.52586,0][-0.348372,0.60217,0.320861][-0.12585,0.990464,0.0560586][0.675882,0.513392,0][-0.348372,0.60217,0.320861][-0.12585,0.990464,0.0560586][0.675882,0.513392,0][-0.512251,0.525611,0.438107][0.248485,0.919696,-0.303998][0.692443,0.492982,0][-0.37043,0.533837,0.578918][0.154038,0.919163,-0.362507][0.709988,0.511326,0][-0.512251,0.525611,0.438107][0.248485,0.919696,-0.303998][0.692443,0.492982,0][-0.348372,0.60217,0.320861][-0.12585,0.990464,0.0560586][0.675882,0.513392,0][-0.403727,0.593053,0.196615][-0.166347,0.986066,0.00175502][0.660287,0.506188,0][-0.403727,0.593053,0.196615][-0.166347,0.986066,0.00175502][0.660287,0.506188,0][-0.593647,0.514588,0.256376][0.332266,0.920713,-0.204663][0.669597,0.482373,0][-0.512251,0.525611,0.438107][0.248485,0.919696,-0.303998][0.692443,0.492982,0][-0.593647,0.514588,0.256376][0.332266,0.920713,-0.204663][0.669597,0.482373,0][-0.403727,0.593053,0.196615][-0.166347,0.986066,0.00175502][0.660287,0.506188,0][-0.41207,0.583699,0.0656965][-0.186293,0.980769,-0.0582002][0.643749,0.505019,0][-0.41207,0.583699,0.0656965][-0.186293,0.980769,-0.0582002][0.643749,0.505019,0][-0.605915,0.503284,0.0648835][0.387912,0.918299,-0.0790596][0.645367,0.480639,0][-0.593647,0.514588,0.256376][0.332266,0.920713,-0.204663][0.669597,0.482373,0][-0.605915,0.503284,0.0648835][0.387912,0.918299,-0.0790596][0.645367,0.480639,0][-0.41207,0.583699,0.0656965][-0.186293,0.980769,-0.0582002][0.643749,0.505019,0][-0.364318,0.57636,-0.0446985][-0.186565,0.971639,-0.145298][0.629681,0.511071,0][-0.364318,0.57636,-0.0446985][-0.186565,0.971639,-0.145298][0.629681,0.511071,0][-0.535698,0.494412,-0.0965895][0.396229,0.90997,0.122303][0.624758,0.489526,0][-0.605915,0.503284,0.0648835][0.387912,0.918299,-0.0790596][0.645367,0.480639,0][-0.535698,0.494412,-0.0965895][0.396229,0.90997,0.122303][0.624758,0.489526,0][-0.364318,0.57636,-0.0446985][-0.186565,0.971639,-0.145298][0.629681,0.511071,0][-0.267355,0.569863,-0.143769][-0.162789,0.961278,-0.222362][0.616943,0.523456,0][-0.267355,0.569863,-0.143769][-0.162789,0.961278,-0.222362][0.616943,0.523456,0][-0.393122,0.486559,-0.241497][0.340416,0.895595,0.286401][0.606099,0.507728,0][-0.535698,0.494412,-0.0965895][0.396229,0.90997,0.122303][0.624758,0.489526,0][-0.393122,0.486559,-0.241497][0.340416,0.895595,0.286401][0.606099,0.507728,0][-0.267355,0.569863,-0.143769][-0.162789,0.961278,-0.222362][0.616943,0.523456,0][-0.184196,0.562577,-0.239599][-0.166501,0.96173,-0.217607][0.604661,0.534077,0][-0.184196,0.562577,-0.239599][-0.166501,0.96173,-0.217607][0.604661,0.534077,0][-0.270844,0.47775,-0.381666][0.364444,0.893678,0.261763][0.588102,0.523333,0][-0.393122,0.486559,-0.241497][0.340416,0.895595,0.286401][0.606099,0.507728,0][-0.270844,0.47775,-0.381666][0.364444,0.893678,0.261763][0.588102,0.523333,0][-0.184196,0.562577,-0.239599][-0.166501,0.96173,-0.217607][0.604661,0.534077,0][-0.0964664,0.553528,-0.352452][-0.174347,0.961453,-0.212631][0.590225,0.545276,0][-0.0964664,0.553528,-0.352452][-0.174347,0.961453,-0.212631][0.590225,0.545276,0][-0.141844,0.466812,-0.546734][0.403085,0.878393,0.256805][0.566948,0.539785,0][-0.270844,0.47775,-0.381666][0.364444,0.893678,0.261763][0.588102,0.523333,0][-0.141844,0.466812,-0.546734][0.403085,0.878393,0.256805][0.566948,0.539785,0][-0.0964664,0.553528,-0.352452][-0.174347,0.961453,-0.212631][0.590225,0.545276,0][-1.44752e-006,0.551266,-0.38315][-0.0545467,0.968547,-0.242778][0.586145,0.557652,0][-1.44752e-006,0.551266,-0.38315][-0.0545467,0.968547,-0.242778][0.586145,0.557652,0][-1.479e-006,0.46408,-0.591636][0.132859,0.922037,0.363587][0.560969,0.55798,0][-0.141844,0.466812,-0.546734][0.403085,0.878393,0.256805][0.566948,0.539785,0][-1.23259e-006,0.59405,1.0403][-0.147622,0.318088,0.936498][0.600443,0.853442,0][-1.24514e-006,0.651164,0.957184][-0.0490353,0.959573,0.277156][0.587464,0.853579,0][-1.23743e-006,0.636416,1.00823][-0.0490323,0.959549,0.277238][0.59393,0.851355,0][-1.52123e-006,0.579169,-0.871301][-0.100088,0.928845,-0.356691][0.534643,0.971843,0][-1.53282e-006,0.515313,-0.948047][-0.24622,0.250117,-0.936385][0.521793,0.971881,0][-1.52866e-006,0.56027,-0.920515][-0.100088,0.928845,-0.356691][0.528211,0.969681,0][-0.488652,-0.00369652,1.85031][0.0998061,0.848138,-0.520289][0.22289,0.47112,0][-0.49291,-0.0288535,1.86529][-0.0416508,-0.846715,0.530414][0.223185,0.467323,0][-1.0953e-006,-0.000336729,1.94952][-0.0416508,-0.846715,0.530414][0.286577,0.47904,0][-0.488652,-0.00369652,1.85031][0.0998061,0.848138,-0.520289][0.22289,0.47112,0][-0.92947,-0.0498419,1.58515][0.194575,0.859293,-0.473029][0.160078,0.470311,0][-0.937184,-0.0753461,1.59805][-0.194327,-0.859589,0.472594][0.159881,0.46651,0][-0.937184,-0.0753461,1.59805][-0.194327,-0.859589,0.472594][0.159881,0.46651,0][-0.49291,-0.0288535,1.86529][-0.0416508,-0.846715,0.530414][0.223185,0.467323,0][-0.488652,-0.00369652,1.85031][0.0998061,0.848138,-0.520289][0.22289,0.47112,0][-0.92947,-0.0498419,1.58515][0.194575,0.859293,-0.473029][0.160078,0.470311,0][-1.27931,-0.121713,1.17217][0.265702,0.886298,-0.379314][0.103869,0.478548,0][-1.28856,-0.148108,1.18186][-0.265295,-0.88656,0.378986][0.103384,0.474808,0][-1.28856,-0.148108,1.18186][-0.265295,-0.88656,0.378986][0.103384,0.474808,0][-0.937184,-0.0753461,1.59805][-0.194327,-0.859589,0.472594][0.159881,0.46651,0][-0.92947,-0.0498419,1.58515][0.194575,0.859293,-0.473029][0.160078,0.470311,0][-1.27931,-0.121713,1.17217][0.265702,0.886298,-0.379314][0.635449,0.143418,0][-1.50391,-0.212274,0.651778][0.237027,0.934673,-0.264961][0.708686,0.153109,0][-1.51285,-0.239938,0.656993][-0.237419,-0.934573,0.264963][0.70859,0.156909,0][-1.51285,-0.239938,0.656993][-0.237419,-0.934573,0.264963][0.70859,0.156909,0][-1.28856,-0.148108,1.18186][-0.265295,-0.88656,0.378986][0.634822,0.147166,0][-1.27931,-0.121713,1.17217][0.265702,0.886298,-0.379314][0.635449,0.143418,0][-1.50391,-0.212274,0.651778][0.237027,0.934673,-0.264961][0.708686,0.153109,0][-1.58131,-0.252158,0.0635036][0.235767,0.966999,-0.0965796][0.783164,0.149442,0][-1.5883,-0.280871,0.0655356][-0.235934,-0.966914,0.0970167][0.783368,0.153228,0][-1.5883,-0.280871,0.0655356][-0.235934,-0.966914,0.0970167][0.783368,0.153228,0][-1.51285,-0.239938,0.656993][-0.237419,-0.934573,0.264963][0.70859,0.156909,0][-1.50391,-0.212274,0.651778][0.237027,0.934673,-0.264961][0.708686,0.153109,0][-1.58131,-0.252158,0.0635036][0.235767,0.966999,-0.0965796][0.783164,0.149442,0][-1.50391,-0.306866,-0.520863][0.143146,0.986973,-0.0734405][0.850197,0.141433,0][-1.50778,-0.336179,-0.519078][-0.143358,-0.986929,0.0736226][0.85029,0.145162,0][-1.50778,-0.336179,-0.519078][-0.143358,-0.986929,0.0736226][0.85029,0.145162,0][-1.5883,-0.280871,0.0655356][-0.235934,-0.966914,0.0970167][0.783368,0.153228,0][-1.58131,-0.252158,0.0635036][0.235767,0.966999,-0.0965796][0.783164,0.149442,0][-1.50391,-0.306866,-0.520863][0.143146,0.986973,-0.0734405][0.61513,0.174675,0][-1.27931,-0.372071,-1.04816][0.0421749,0.993588,-0.104902][0.68932,0.171852,0][-1.28058,-0.401485,-1.04485][-0.0422924,-0.993558,0.105135][0.689439,0.175663,0][-1.28058,-0.401485,-1.04485][-0.0422924,-0.993558,0.105135][0.689439,0.175663,0][-1.50778,-0.336179,-0.519078][-0.143358,-0.986929,0.0736226][0.615297,0.178464,0][-1.50391,-0.306866,-0.520863][0.143146,0.986973,-0.0734405][0.61513,0.174675,0][-1.27931,-0.372071,-1.04816][0.0421749,0.993588,-0.104902][0.68932,0.171852,0][-0.929471,-0.453752,-1.45932][-0.00555662,0.979903,-0.199398][0.756481,0.172332,0][-0.929142,-0.482877,-1.4538][0.0055819,-0.979819,0.199808][0.756416,0.176135,0][-0.929142,-0.482877,-1.4538][0.0055819,-0.979819,0.199808][0.756416,0.176135,0][-1.28058,-0.401485,-1.04485][-0.0422924,-0.993558,0.105135][0.689439,0.175663,0][-1.27931,-0.372071,-1.04816][0.0421749,0.993588,-0.104902][0.68932,0.171852,0][-0.929471,-0.453752,-1.45932][-0.00555662,0.979903,-0.199398][0.756481,0.172332,0][-0.488653,-0.506197,-1.7233][-0.0311023,0.969156,-0.244479][0.810386,0.171103,0][-0.487908,-0.535003,-1.71627][0.031195,-0.969049,0.24489][0.810159,0.17489,0][-0.487908,-0.535003,-1.71627][0.031195,-0.969049,0.24489][0.810159,0.17489,0][-0.929142,-0.482877,-1.4538][0.0055819,-0.979819,0.199808][0.756416,0.176135,0][-0.929471,-0.453752,-1.45932][-0.00555662,0.979903,-0.199398][0.756481,0.172332,0][-0.488653,-0.506197,-1.7233][-0.0311023,0.969156,-0.244479][0.910514,0.0259557,0][-1.66304e-006,-0.538607,-1.81047][0.0350085,-0.97518,0.218628][0.974507,0.0278606,0][-0.487908,-0.535003,-1.71627][0.031195,-0.969049,0.24489][0.910577,0.0297727,0][-1.08415,-0.0650673,-0.296983][-0.87119,0.193809,-0.451071][0.83555,0.617395,0][-1.14121,-0.366693,-0.316376][0.19394,0.980227,0.0392631][0.831606,0.578694,0][-1.2019,-0.343318,0.0690326][0.231958,0.972467,-0.022455][0.881289,0.579847,0][-1.2019,-0.343318,0.0690326][0.231958,0.972467,-0.022455][0.881289,0.579847,0][-1.1418,-0.0506516,0.0691556][-0.960026,0.241418,0.141658][0.882712,0.617489,0][-1.08415,-0.0650673,-0.296983][-0.87119,0.193809,-0.451071][0.83555,0.617395,0][-1.14121,-0.319944,0.454442][0.149473,0.985252,-0.0832874][0.930971,0.581001,0][-1.08415,-0.0362368,0.435294][-0.865975,0.253987,0.430788][0.929873,0.617582,0][-1.1418,-0.0506516,0.0691556][-0.960026,0.241418,0.141658][0.882712,0.617489,0][-1.1418,-0.0506516,0.0691556][-0.960026,0.241418,0.141658][0.882712,0.617489,0][-1.2019,-0.343318,0.0690326][0.231958,0.972467,-0.022455][0.881289,0.579847,0][-1.14121,-0.319944,0.454442][0.149473,0.985252,-0.0832874][0.930971,0.581001,0][-0.96681,-0.29916,0.797072][-0.69517,0.212236,0.6868][0.975139,0.582026,0][-0.91847,-0.0234213,0.760792][-0.692366,0.216391,0.688334][0.971799,0.617666,0][-1.08415,-0.0362368,0.435294][-0.865975,0.253987,0.430788][0.929873,0.617582,0][-1.08415,-0.0362368,0.435294][-0.865975,0.253987,0.430788][0.929873,0.617582,0][-1.14121,-0.319944,0.454442][0.149473,0.985252,-0.0832874][0.930971,0.581001,0][-0.96681,-0.29916,0.797072][-0.69517,0.212236,0.6868][0.975139,0.582026,0][0.366843,-0.443389,-1.09101][0.019442,-0.707792,0.00428997][0.393961,0.227223,0][-0.366847,-0.443389,-1.09101][-0.0450597,-1.13394,0.0621626][0.379555,0.133897,0][-1.56043e-006,-0.440492,-1.1309][-0.00898467,-0.704023,0.0314982][0.391831,0.179777,0][0.366843,-0.443389,-1.09101][0.019442,-0.707792,0.00428997][0.393961,0.227223,0][0.701259,-0.433194,-0.92457][0.0415446,-1.51244,0.00916701][0.379356,0.273029,0][0.559958,-0.433194,-0.92457][-6.74301e-007,-0.998125,0.0612105][0.376581,0.255056,0][0.366843,-0.443389,-1.09101][0.019442,-0.707792,0.00428997][0.393961,0.227223,0][0.559958,-0.433194,-0.92457][-6.74301e-007,-0.998125,0.0612105][0.376581,0.255056,0][0.357517,-0.43958,-1.02884][-5.23128e-006,-0.998129,0.0611467][0.385869,0.227258,0][0.366843,-0.443389,-1.09101][0.019442,-0.707792,0.00428997][0.393961,0.227223,0][0.357517,-0.43958,-1.02884][-5.23128e-006,-0.998129,0.0611467][0.385869,0.227258,0][-7.34089e-007,-0.443083,-1.08602][0,-0.998128,0.061166][0.386122,0.180658,0][-0.357519,-0.439581,-1.02884][-4.87906e-007,-0.99813,0.0611326][0.371829,0.136305,0][-0.559959,-0.433194,-0.92457][0,-0.998125,0.0612112][0.354591,0.112601,0][-0.701263,-0.433194,-0.92457][-0.0415446,-1.51244,0.00916703][0.351816,0.0946275,0][-0.357519,-0.439581,-1.02884][-4.87906e-007,-0.99813,0.0611326][0.371829,0.136305,0][-0.701263,-0.433194,-0.92457][-0.0415446,-1.51244,0.00916703][0.351816,0.0946275,0][-0.366847,-0.443389,-1.09101][-0.0450597,-1.13394,0.0621626][0.379555,0.133897,0][-7.34089e-007,-0.443083,-1.08602][0,-0.998128,0.061166][0.386122,0.180658,0][-0.357519,-0.439581,-1.02884][-4.87906e-007,-0.99813,0.0611326][0.371829,0.136305,0][-0.366847,-0.443389,-1.09101][-0.0450597,-1.13394,0.0621626][0.379555,0.133897,0][0.366843,-0.443389,-1.09101][0.019442,-0.707792,0.00428997][0.393961,0.227223,0][-7.34089e-007,-0.443083,-1.08602][0,-0.998128,0.061166][0.386122,0.180658,0][-0.366847,-0.443389,-1.09101][-0.0450597,-1.13394,0.0621626][0.379555,0.133897,0][0.701259,-0.433194,-0.92457][0.0415446,-1.51244,0.00916701][0.379356,0.273029,0][0.97118,-0.416818,-0.659306][0.161371,-1.46254,-0.0739112][0.350914,0.312572,0][0.880204,-0.416818,-0.659306][-3.48865e-007,-0.998103,0.0615635][0.349127,0.301,0][0.701259,-0.433194,-0.92457][0.0415446,-1.51244,0.00916701][0.379356,0.273029,0][0.880204,-0.416818,-0.659306][-3.48865e-007,-0.998103,0.0615635][0.349127,0.301,0][0.679092,-0.429405,-0.863203][-3.44626e-006,-0.998099,0.0616242][0.371114,0.271414,0][0.701259,-0.433194,-0.92457][0.0415446,-1.51244,0.00916701][0.379356,0.273029,0][0.679092,-0.429405,-0.863203][-3.44626e-006,-0.998099,0.0616242][0.371114,0.271414,0][0.559958,-0.433194,-0.92457][-6.74301e-007,-0.998125,0.0612105][0.376581,0.255056,0][0.932658,-0.413547,-0.606129][-1.82302e-006,-0.998113,0.0613961][0.343393,0.308716,0][0.880204,-0.416818,-0.659306][-3.48865e-007,-0.998103,0.0615635][0.349127,0.301,0][0.97118,-0.416818,-0.659306][0.161371,-1.46254,-0.0739112][0.350914,0.312572,0][1.14738,-0.395713,-0.31621][0.299652,-1.51291,-0.0608228][0.310732,0.341721,0][1.0818,-0.394694,-0.299408][9.49275e-005,-0.998145,0.0608758][0.307307,0.33371,0][1.00575,-0.404531,-0.459565][2.41164e-005,-0.998115,0.0613753][0.326186,0.320891,0][0.97118,-0.416818,-0.659306][0.161371,-1.46254,-0.0739112][0.350914,0.312572,0][1.14738,-0.395713,-0.31621][0.299652,-1.51291,-0.0608228][0.310732,0.341721,0][1.00575,-0.404531,-0.459565][2.41164e-005,-0.998115,0.0613753][0.326186,0.320891,0][0.932658,-0.413547,-0.606129][-1.82302e-006,-0.998113,0.0613961][0.343393,0.308716,0][0.97118,-0.416818,-0.659306][0.161371,-1.46254,-0.0739112][0.350914,0.312572,0][1.00575,-0.404531,-0.459565][2.41164e-005,-0.998115,0.0613753][0.326186,0.320891,0][1.13513,-0.372272,0.0704272][0.000777359,-0.998198,0.0599982][0.261311,0.347755,0][1.13486,-0.372241,0.0709573][0.000341665,-0.99821,0.0598006][0.261238,0.347732,0][1.0818,-0.394694,-0.299408][9.49275e-005,-0.998145,0.0608758][0.307307,0.33371,0][1.13513,-0.372272,0.0704272][0.000777359,-0.998198,0.0599982][0.261311,0.347755,0][1.0818,-0.394694,-0.299408][9.49275e-005,-0.998145,0.0608758][0.307307,0.33371,0][1.14738,-0.395713,-0.31621][0.299652,-1.51291,-0.0608228][0.310732,0.341721,0][1.13513,-0.372272,0.0704272][0.000777359,-0.998198,0.0599982][0.261311,0.347755,0][1.14738,-0.395713,-0.31621][0.299652,-1.51291,-0.0608228][0.310732,0.341721,0][1.20821,-0.372272,0.0704272][0.39932,-1.67389,0.0386521][0.262746,0.357051,0][-0.901895,-0.332704,0.726752][-1.77981e-006,-0.99817,0.0604692][0.137828,0.101532,0][-0.823387,-0.328144,0.802015][-1.24665e-006,-0.998154,0.0607282][0.129796,0.112996,0][-0.970772,-0.328144,0.802015][-0.335433,-1.93067,0.287854][0.126902,0.0942482,0][-0.970772,-0.328144,0.802015][-0.335433,-1.93067,0.287854][0.126902,0.0942482,0][-1.14629,-0.349013,0.457513][-0.288152,-1.88834,0.159563][0.167276,0.0651577,0][-1.04829,-0.349013,0.457513][-2.83608e-007,-0.99818,0.0603008][0.1692,0.0776232,0][-0.901895,-0.332704,0.726752][-1.77981e-006,-0.99817,0.0604692][0.137828,0.101532,0][-0.970772,-0.328144,0.802015][-0.335433,-1.93067,0.287854][0.126902,0.0942482,0][-1.04829,-0.349013,0.457513][-2.83608e-007,-0.99818,0.0603008][0.1692,0.0776232,0][-0.650883,-0.318072,0.96735][-5.56466e-006,-0.998149,0.0608173][0.112152,0.138185,0][-0.443905,-0.31186,1.0693][-7.68464e-007,-0.99816,0.0606398][0.103248,0.166514,0][-0.702235,-0.31186,1.0693][-0.271666,-1.88104,0.387535][0.0981754,0.133655,0][-0.702235,-0.31186,1.0693][-0.271666,-1.88104,0.387535][0.0981754,0.133655,0][-0.970772,-0.328144,0.802015][-0.335433,-1.93067,0.287854][0.126902,0.0942482,0][-0.823387,-0.328144,0.802015][-1.24665e-006,-0.998154,0.0607282][0.129796,0.112996,0][-0.650883,-0.318072,0.96735][-5.56466e-006,-0.998149,0.0608173][0.112152,0.138185,0][-0.702235,-0.31186,1.0693][-0.271666,-1.88104,0.387535][0.0981754,0.133655,0][-0.823387,-0.328144,0.802015][-1.24665e-006,-0.998154,0.0607282][0.129796,0.112996,0][0.340725,-0.308773,1.12013][-1.52416e-005,-0.998167,0.0605133][0.112189,0.267318,0][0.443905,-0.31186,1.0693][0,-0.998159,0.0606489][0.120681,0.279444,0][0.702234,-0.31186,1.0693][0.271668,-1.88104,0.387536][0.125753,0.312304,0][-0.367882,-0.301652,1.23742][-0.161789,-1.78259,0.430007][0.083356,0.179486,0][-0.702235,-0.31186,1.0693][-0.271666,-1.88104,0.387535][0.0981754,0.133655,0][-0.443905,-0.31186,1.0693][-7.68464e-007,-0.99816,0.0606398][0.103248,0.166514,0][-0.367882,-0.301652,1.23742][-0.161789,-1.78259,0.430007][0.083356,0.179486,0][-0.443905,-0.31186,1.0693][-7.68464e-007,-0.99816,0.0606398][0.103248,0.166514,0][-0.340725,-0.308774,1.12013][-1.7123e-006,-0.998162,0.0606098][0.0988083,0.180637,0][0.36788,-0.301652,1.23742][0.161786,-1.78259,0.430005][0.0978033,0.273075,0][-0.367882,-0.301652,1.23742][-0.161789,-1.78259,0.430007][0.083356,0.179486,0][-0.340725,-0.308774,1.12013][-1.7123e-006,-0.998162,0.0606098][0.0988083,0.180637,0][0.36788,-0.301652,1.23742][0.161786,-1.78259,0.430005][0.0978033,0.273075,0][-0.340725,-0.308774,1.12013][-1.7123e-006,-0.998162,0.0606098][0.0988083,0.180637,0][0,-0.305595,1.17248][3.38798e-005,-0.998174,0.0604059][0.0988402,0.225005,0][0.702234,-0.31186,1.0693][0.271668,-1.88104,0.387536][0.125753,0.312304,0][0.36788,-0.301652,1.23742][0.161786,-1.78259,0.430005][0.0978033,0.273075,0][0,-0.305595,1.17248][3.38798e-005,-0.998174,0.0604059][0.0988402,0.225005,0][0.340725,-0.308773,1.12013][-1.52416e-005,-0.998167,0.0605133][0.112189,0.267318,0][0.702234,-0.31186,1.0693][0.271668,-1.88104,0.387536][0.125753,0.312304,0][0,-0.305595,1.17248][3.38798e-005,-0.998174,0.0604059][0.0988402,0.225005,0][0.36788,-0.301652,1.23742][0.161786,-1.78259,0.430005][0.0978033,0.273075,0][-1.19738e-006,-0.295632,1.27345][0.0107793,-1.62533,0.381605][0.0859967,0.226988,0][-0.367882,-0.301652,1.23742][-0.161789,-1.78259,0.430007][0.083356,0.179486,0][1.13486,-0.372241,0.0709573][0.000341665,-0.99821,0.0598006][0.261238,0.347732,0][1.13513,-0.372272,0.0704272][0.000777359,-0.998198,0.0599982][0.261311,0.347755,0][1.20821,-0.372272,0.0704272][0.39932,-1.67389,0.0386521][0.262746,0.357051,0][1.14629,-0.349013,0.457512][0.288153,-1.88834,0.159563][0.212292,0.356775,0][1.04829,-0.349013,0.457512][0,-0.99818,0.0603][0.210368,0.34431,0][1.06927,-0.351333,0.418913][3.10237e-007,-0.9982,0.0599799][0.21569,0.34622,0][1.20821,-0.372272,0.0704272][0.39932,-1.67389,0.0386521][0.262746,0.357051,0][1.14629,-0.349013,0.457512][0.288153,-1.88834,0.159563][0.212292,0.356775,0][1.06927,-0.351333,0.418913][3.10237e-007,-0.9982,0.0599799][0.21569,0.34622,0][1.13486,-0.372241,0.0709573][0.000341665,-0.99821,0.0598006][0.261238,0.347732,0][1.20821,-0.372272,0.0704272][0.39932,-1.67389,0.0386521][0.262746,0.357051,0][1.06927,-0.351333,0.418913][3.10237e-007,-0.9982,0.0599799][0.21569,0.34622,0][0.901894,-0.332704,0.726752][1.17207e-006,-0.99817,0.0604692][0.173246,0.330975,0][1.04829,-0.349013,0.457512][0,-0.99818,0.0603][0.210368,0.34431,0][1.14629,-0.349013,0.457512][0.288153,-1.88834,0.159563][0.212292,0.356775,0][0.901894,-0.332704,0.726752][1.17207e-006,-0.99817,0.0604692][0.173246,0.330975,0][1.14629,-0.349013,0.457512][0.288153,-1.88834,0.159563][0.212292,0.356775,0][0.970771,-0.328144,0.802014][0.335435,-1.93067,0.287854][0.165025,0.341214,0][0.901894,-0.332704,0.726752][1.17207e-006,-0.99817,0.0604692][0.173246,0.330975,0][0.970771,-0.328144,0.802014][0.335435,-1.93067,0.287854][0.165025,0.341214,0][0.823387,-0.328144,0.802014][0,-0.998154,0.0607274][0.162131,0.322466,0][0.650882,-0.318071,0.96735][1.51121e-007,-0.998149,0.0608106][0.137713,0.30377,0][0.823387,-0.328144,0.802014][0,-0.998154,0.0607274][0.162131,0.322466,0][0.970771,-0.328144,0.802014][0.335435,-1.93067,0.287854][0.165025,0.341214,0][0.650882,-0.318071,0.96735][1.51121e-007,-0.998149,0.0608106][0.137713,0.30377,0][0.970771,-0.328144,0.802014][0.335435,-1.93067,0.287854][0.165025,0.341214,0][0.702234,-0.31186,1.0693][0.271668,-1.88104,0.387536][0.125753,0.312304,0][0.650882,-0.318071,0.96735][1.51121e-007,-0.998149,0.0608106][0.137713,0.30377,0][0.702234,-0.31186,1.0693][0.271668,-1.88104,0.387536][0.125753,0.312304,0][0.443905,-0.31186,1.0693][0,-0.998159,0.0606489][0.120681,0.279444,0][-1.13513,-0.372272,0.0704276][0.000140896,-0.998154,0.0607383][0.216733,0.0589763,0][-1.20821,-0.372272,0.0704276][-0.39932,-1.67389,0.0386523][0.215298,0.0496804,0][-1.14738,-0.395713,-0.316209][-0.299652,-1.51291,-0.0608229][0.265673,0.0498267,0][-0.971182,-0.416818,-0.659306][-0.161368,-1.46254,-0.0739076][0.312774,0.0655021,0][-0.880205,-0.416818,-0.659306][0,-0.998103,0.0615618][0.314561,0.0770745,0][-0.932659,-0.413547,-0.606128][1.54968e-006,-0.998114,0.0613959][0.306767,0.0714466,0][-0.971182,-0.416818,-0.659306][-0.161368,-1.46254,-0.0739076][0.312774,0.0655021,0][-0.932659,-0.413547,-0.606128][1.54968e-006,-0.998114,0.0613959][0.306767,0.0714466,0][-1.00575,-0.404531,-0.459565][0.000267622,-0.998111,0.0614408][0.286689,0.0650267,0][-0.971182,-0.416818,-0.659306][-0.161368,-1.46254,-0.0739076][0.312774,0.0655021,0][-1.00575,-0.404531,-0.459565][0.000267622,-0.998111,0.0614408][0.286689,0.0650267,0][-1.0818,-0.394694,-0.299407][-8.32945e-005,-0.998143,0.06092][0.264823,0.0584981,0][-1.14738,-0.395713,-0.316209][-0.299652,-1.51291,-0.0608229][0.265673,0.0498267,0][-0.971182,-0.416818,-0.659306][-0.161368,-1.46254,-0.0739076][0.312774,0.0655021,0][-1.0818,-0.394694,-0.299407][-8.32945e-005,-0.998143,0.06092][0.264823,0.0584981,0][-1.13513,-0.372272,0.0704276][0.000140896,-0.998154,0.0607383][0.216733,0.0589763,0][-1.14738,-0.395713,-0.316209][-0.299652,-1.51291,-0.0608229][0.265673,0.0498267,0][-1.0818,-0.394694,-0.299407][-8.32945e-005,-0.998143,0.06092][0.264823,0.0584981,0][-1.13513,-0.372272,0.0704276][0.000140896,-0.998154,0.0607383][0.216733,0.0589763,0][-1.0818,-0.394694,-0.299407][-8.32945e-005,-0.998143,0.06092][0.264823,0.0584981,0][-1.13483,-0.372256,0.0706927][0.000119707,-0.998176,0.0603686][0.216705,0.05902,0][-1.06927,-0.351333,0.418914][1.25514e-007,-0.9982,0.0599799][0.173698,0.074197,0][-1.04829,-0.349013,0.457513][-2.83608e-007,-0.99818,0.0603008][0.1692,0.0776232,0][-1.14629,-0.349013,0.457513][-0.288152,-1.88834,0.159563][0.167276,0.0651577,0][-1.06927,-0.351333,0.418914][1.25514e-007,-0.9982,0.0599799][0.173698,0.074197,0][-1.14629,-0.349013,0.457513][-0.288152,-1.88834,0.159563][0.167276,0.0651577,0][-1.20821,-0.372272,0.0704276][-0.39932,-1.67389,0.0386523][0.215298,0.0496804,0][-1.20821,-0.372272,0.0704276][-0.39932,-1.67389,0.0386523][0.215298,0.0496804,0][-1.13513,-0.372272,0.0704276][0.000140896,-0.998154,0.0607383][0.216733,0.0589763,0][-1.13483,-0.372256,0.0706927][0.000119707,-0.998176,0.0603686][0.216705,0.05902,0][-1.06927,-0.351333,0.418914][1.25514e-007,-0.9982,0.0599799][0.173698,0.074197,0][-1.20821,-0.372272,0.0704276][-0.39932,-1.67389,0.0386523][0.215298,0.0496804,0][-1.13483,-0.372256,0.0706927][0.000119707,-0.998176,0.0603686][0.216705,0.05902,0][-0.679093,-0.429405,-0.863203][2.25719e-006,-0.998099,0.0616239][0.344446,0.0986524,0][-0.880205,-0.416818,-0.659306][0,-0.998103,0.0615618][0.314561,0.0770745,0][-0.971182,-0.416818,-0.659306][-0.161368,-1.46254,-0.0739076][0.312774,0.0655021,0][-0.679093,-0.429405,-0.863203][2.25719e-006,-0.998099,0.0616239][0.344446,0.0986524,0][-0.971182,-0.416818,-0.659306][-0.161368,-1.46254,-0.0739076][0.312774,0.0655021,0][-0.701263,-0.433194,-0.92457][-0.0415446,-1.51244,0.00916703][0.351816,0.0946275,0][-0.679093,-0.429405,-0.863203][2.25719e-006,-0.998099,0.0616239][0.344446,0.0986524,0][-0.701263,-0.433194,-0.92457][-0.0415446,-1.51244,0.00916703][0.351816,0.0946275,0][-0.559959,-0.433194,-0.92457][0,-0.998125,0.0612112][0.354591,0.112601,0][-0.772585,0.134765,0.0149413][-0.00167147,-0.998177,0.0603399][0.000354725,0.792937,0][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][0.0129986,0.825224,0][-0.728024,0.148986,0.251615][7.40226e-006,-0.9982,0.0599781][0.0106701,0.822167,0][-0.772585,0.134765,0.0149413][-0.00167147,-0.998177,0.0603399][0.000354725,0.792937,0][-0.736543,0.119515,-0.236603][-0.0024391,-0.998186,0.0601631][0,0.760233,0][-0.684856,0.112828,-0.345456][-0.00122353,-0.998171,0.0604383][0.00443732,0.745372,0][-0.684856,0.112828,-0.345456][-0.00122353,-0.998171,0.0604383][0.00443732,0.745372,0][-0.635176,0.106702,-0.44507][-1.01439e-005,-0.998114,0.0613804][0.00880061,0.731725,0][-0.599525,0.104479,-0.481213][-0.000369369,-0.998128,0.0611632][0.0126257,0.726428,0][-0.599525,0.104479,-0.481213][-0.000369369,-0.998128,0.0611632][0.0126257,0.726428,0][-0.462836,0.0959225,-0.619795][7.40082e-006,-0.998099,0.0616323][0.0272916,0.706116,0][-0.381865,0.0933476,-0.661504][-7.61126e-005,-0.99814,0.0609612][0.0367721,0.699221,0][-0.684856,0.112828,-0.345456][-0.00122353,-0.998171,0.0604383][0.00443732,0.745372,0][-0.599525,0.104479,-0.481213][-0.000369369,-0.998128,0.0611632][0.0126257,0.726428,0][-0.381865,0.0933476,-0.661504][-7.61126e-005,-0.99814,0.0609612][0.0367721,0.699221,0][-0.381865,0.0933476,-0.661504][-7.61126e-005,-0.99814,0.0609612][0.0367721,0.699221,0][-0.244273,0.0890074,-0.732372][-1.75311e-006,-0.99813,0.0611245][0.0528823,0.687504,0][-0.00128064,0.086627,-0.771235][0,-0.99813,0.0611301][0.0830279,0.67779,0][-0.00128064,0.086627,-0.771235][0,-0.99813,0.0611301][0.0830279,0.67779,0][0.241712,0.0890074,-0.732372][1.80853e-006,-0.99813,0.0611244][0.1147,0.677962,0][0.379304,0.0933476,-0.661504][1.46349e-005,-0.99811,0.0614553][0.133593,0.684275,0][-0.381865,0.0933476,-0.661504][-7.61126e-005,-0.99814,0.0609612][0.0367721,0.699221,0][-0.00128064,0.086627,-0.771235][0,-0.99813,0.0611301][0.0830279,0.67779,0][0.379304,0.0933476,-0.661504][1.46349e-005,-0.99811,0.0614553][0.133593,0.684275,0][0.379304,0.0933476,-0.661504][1.46349e-005,-0.99811,0.0614553][0.133593,0.684275,0][0.460275,0.0959225,-0.619795][-6.85644e-006,-0.998099,0.0616317][0.144712,0.68799,0][0.596964,0.104479,-0.481213][0.000369503,-0.998128,0.0611631][0.16482,0.702934,0][0.596964,0.104479,-0.481213][0.000369503,-0.998128,0.0611631][0.16482,0.702934,0][0.632615,0.106702,-0.445071][1.12378e-005,-0.998114,0.0613797][0.170064,0.706831,0][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.17834,0.718527,0][0.379304,0.0933476,-0.661504][1.46349e-005,-0.99811,0.0614553][0.133593,0.684275,0][0.596964,0.104479,-0.481213][0.000369503,-0.998128,0.0611631][0.16482,0.702934,0][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.17834,0.718527,0][-0.381865,0.0933476,-0.661504][-7.61126e-005,-0.99814,0.0609612][0.0367721,0.699221,0][0.379304,0.0933476,-0.661504][1.46349e-005,-0.99811,0.0614553][0.133593,0.684275,0][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.17834,0.718527,0][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.17834,0.718527,0][0.733982,0.119515,-0.236603][0.00244445,-0.998186,0.0601606][0.187052,0.731358,0][0.770047,0.134775,0.0151212][0.00166586,-0.998176,0.0603402][0.196582,0.762669,0][0.770047,0.134775,0.0151212][0.00166586,-0.998176,0.0603402][0.196582,0.762669,0][0.725464,0.148986,0.251615][-2.41547e-006,-0.9982,0.0599805][0.195555,0.793627,0][0.711206,0.150562,0.277849][-2.26379e-005,-0.998176,0.0603732][0.194256,0.797244,0][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.17834,0.718527,0][0.770047,0.134775,0.0151212][0.00166586,-0.998176,0.0603402][0.196582,0.762669,0][0.711206,0.150562,0.277849][-2.26379e-005,-0.998176,0.0603732][0.194256,0.797244,0][0.711206,0.150562,0.277849][-2.26379e-005,-0.998176,0.0603732][0.194256,0.797244,0][0.611706,0.161648,0.460842][1.31125e-005,-0.99817,0.0604753][0.185193,0.822474,0][0.558347,0.164746,0.511995][-0.000392126,-0.998185,0.0602285][0.17941,0.830029,0][0.558347,0.164746,0.511995][-0.000392126,-0.998185,0.0602285][0.17941,0.830029,0][0.441102,0.171593,0.624368][1.1581e-005,-0.998148,0.0608251][0.166703,0.846625,0][0.300426,0.175814,0.693661][-2.91517e-005,-0.998166,0.0605336][0.150169,0.858201,0][0.711206,0.150562,0.277849][-2.26379e-005,-0.998176,0.0603732][0.194256,0.797244,0][0.558347,0.164746,0.511995][-0.000392126,-0.998185,0.0602285][0.17941,0.830029,0][0.300426,0.175814,0.693661][-2.91517e-005,-0.998166,0.0605336][0.150169,0.858201,0][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.17834,0.718527,0][0.711206,0.150562,0.277849][-2.26379e-005,-0.998176,0.0603732][0.194256,0.797244,0][0.300426,0.175814,0.693661][-2.91517e-005,-0.998166,0.0605336][0.150169,0.858201,0][0.300426,0.175814,0.693661][-2.91517e-005,-0.998166,0.0605336][0.150169,0.858201,0][0.230299,0.177913,0.728208][9.94704e-006,-0.998158,0.0606672][0.141928,0.863973,0][-0.0012802,0.180073,0.763786][0,-0.99816,0.0606269][0.113169,0.873045,0][-0.0012802,0.180073,0.763786][0,-0.99816,0.0606269][0.113169,0.873045,0][-0.232859,0.177913,0.728208][-1.00398e-005,-0.998158,0.0606677][0.0830135,0.873067,0][-0.302987,0.175814,0.693662][2.51697e-005,-0.998162,0.0606044][0.0734149,0.87005,0][0.300426,0.175814,0.693661][-2.91517e-005,-0.998166,0.0605336][0.150169,0.858201,0][-0.0012802,0.180073,0.763786][0,-0.99816,0.0606269][0.113169,0.873045,0][-0.302987,0.175814,0.693662][2.51697e-005,-0.998162,0.0606044][0.0734149,0.87005,0][-0.302987,0.175814,0.693662][2.51697e-005,-0.998162,0.0606044][0.0734149,0.87005,0][-0.443662,0.171592,0.624368][1.10962e-005,-0.99815,0.060793][0.0541602,0.863998,0][-0.560908,0.164746,0.511995][0.000393241,-0.998185,0.0602269][0.03704,0.852006,0][-0.560908,0.164746,0.511995][0.000393241,-0.998185,0.0602269][0.03704,0.852006,0][-0.614267,0.161648,0.460842][-1.23591e-005,-0.99817,0.0604748][0.0292483,0.846547,0][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][0.0129986,0.825224,0][-0.302987,0.175814,0.693662][2.51697e-005,-0.998162,0.0606044][0.0734149,0.87005,0][-0.560908,0.164746,0.511995][0.000393241,-0.998185,0.0602269][0.03704,0.852006,0][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][0.0129986,0.825224,0][0.300426,0.175814,0.693661][-2.91517e-005,-0.998166,0.0605336][0.150169,0.858201,0][-0.302987,0.175814,0.693662][2.51697e-005,-0.998162,0.0606044][0.0734149,0.87005,0][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][0.0129986,0.825224,0][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.17834,0.718527,0][0.300426,0.175814,0.693661][-2.91517e-005,-0.998166,0.0605336][0.150169,0.858201,0][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][0.0129986,0.825224,0][-0.381865,0.0933476,-0.661504][-7.61126e-005,-0.99814,0.0609612][0.0367721,0.699221,0][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.17834,0.718527,0][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][0.0129986,0.825224,0][-0.684856,0.112828,-0.345456][-0.00122353,-0.998171,0.0604383][0.00443732,0.745372,0][-0.381865,0.0933476,-0.661504][-7.61126e-005,-0.99814,0.0609612][0.0367721,0.699221,0][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][0.0129986,0.825224,0][-0.772585,0.134765,0.0149413][-0.00167147,-0.998177,0.0603399][0.000354725,0.792937,0][-0.684856,0.112828,-0.345456][-0.00122353,-0.998171,0.0604383][0.00443732,0.745372,0][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][0.0129986,0.825224,0][-0.244273,0.0890074,-0.732372][-1.75311e-006,-0.99813,0.0611245][0.33693,0.694613,0][-0.381865,0.0933476,-0.661504][-7.61126e-005,-0.99814,0.0609612][0.356515,0.690931,0][-0.559959,-0.433194,-0.92457][0,-0.998125,0.0612112][0.374049,0.768113,0][-0.559959,-0.433194,-0.92457][0,-0.998125,0.0612112][0.374049,0.768113,0][-0.357519,-0.439581,-1.02884][-4.87906e-007,-0.99813,0.0611326][0.345233,0.77353,0][-0.244273,0.0890074,-0.732372][-1.75311e-006,-0.99813,0.0611245][0.33693,0.694613,0][-0.00128064,0.086627,-0.771235][0,-0.99813,0.0611301][0.306336,0.694738,0][-0.244273,0.0890074,-0.732372][-1.75311e-006,-0.99813,0.0611245][0.33693,0.694613,0][-0.357519,-0.439581,-1.02884][-4.87906e-007,-0.99813,0.0611326][0.345233,0.77353,0][-0.357519,-0.439581,-1.02884][-4.87906e-007,-0.99813,0.0611326][0.345233,0.77353,0][-7.34089e-007,-0.443083,-1.08602][0,-0.998128,0.061166][0.30022,0.773715,0][-0.00128064,0.086627,-0.771235][0,-0.99813,0.0611301][0.306336,0.694738,0][0.241712,0.0890074,-0.732372][1.80853e-006,-0.99813,0.0611244][0.279338,0.68912,0][-0.00128064,0.086627,-0.771235][0,-0.99813,0.0611301][0.306336,0.694738,0][-7.34089e-007,-0.443083,-1.08602][0,-0.998128,0.061166][0.30022,0.773715,0][-7.34089e-007,-0.443083,-1.08602][0,-0.998128,0.061166][0.30022,0.773715,0][0.357517,-0.43958,-1.02884][-5.23128e-006,-0.998129,0.0611467][0.260498,0.765449,0][0.241712,0.0890074,-0.732372][1.80853e-006,-0.99813,0.0611244][0.279338,0.68912,0][0.379304,0.0933476,-0.661504][1.46349e-005,-0.99811,0.0614553][0.266313,0.682328,0][0.241712,0.0890074,-0.732372][1.80853e-006,-0.99813,0.0611244][0.279338,0.68912,0][0.357517,-0.43958,-1.02884][-5.23128e-006,-0.998129,0.0611467][0.260498,0.765449,0][0.357517,-0.43958,-1.02884][-5.23128e-006,-0.998129,0.0611467][0.260498,0.765449,0][0.559958,-0.433194,-0.92457][-6.74301e-007,-0.998125,0.0612105][0.241333,0.755456,0][0.379304,0.0933476,-0.661504][1.46349e-005,-0.99811,0.0614553][0.266313,0.682328,0][0.460275,0.0959225,-0.619795][-6.85644e-006,-0.998099,0.0616317][0.258647,0.678329,0][0.379304,0.0933476,-0.661504][1.46349e-005,-0.99811,0.0614553][0.266313,0.682328,0][0.559958,-0.433194,-0.92457][-6.74301e-007,-0.998125,0.0612105][0.241333,0.755456,0][0.559958,-0.433194,-0.92457][-6.74301e-007,-0.998125,0.0612105][0.241333,0.755456,0][0.679092,-0.429405,-0.863203][-3.44626e-006,-0.998099,0.0616242][0.230055,0.749571,0][0.460275,0.0959225,-0.619795][-6.85644e-006,-0.998099,0.0616317][0.258647,0.678329,0][0.596964,0.104479,-0.481213][0.000369503,-0.998128,0.0611631][0.671833,0.707214,0][0.460275,0.0959225,-0.619795][-6.85644e-006,-0.998099,0.0616317][0.672194,0.682139,0][0.679092,-0.429405,-0.863203][-3.44626e-006,-0.998099,0.0616242][0.751738,0.67779,0][0.679092,-0.429405,-0.863203][-3.44626e-006,-0.998099,0.0616242][0.751738,0.67779,0][0.880204,-0.416818,-0.659306][-3.48865e-007,-0.998103,0.0615635][0.751207,0.714682,0][0.596964,0.104479,-0.481213][0.000369503,-0.998128,0.0611631][0.671833,0.707214,0][0.632615,0.106702,-0.445071][1.12378e-005,-0.998114,0.0613797][0.67174,0.713754,0][0.596964,0.104479,-0.481213][0.000369503,-0.998128,0.0611631][0.671833,0.707214,0][0.880204,-0.416818,-0.659306][-3.48865e-007,-0.998103,0.0615635][0.751207,0.714682,0][0.880204,-0.416818,-0.659306][-3.48865e-007,-0.998103,0.0615635][0.751207,0.714682,0][0.932658,-0.413547,-0.606129][-1.82302e-006,-0.998113,0.0613961][0.75107,0.724304,0][0.632615,0.106702,-0.445071][1.12378e-005,-0.998114,0.0613797][0.67174,0.713754,0][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.599632,0.677984,0][0.632615,0.106702,-0.445071][1.12378e-005,-0.998114,0.0613797][0.612476,0.67779,0][0.932658,-0.413547,-0.606129][-1.82302e-006,-0.998113,0.0613961][0.638267,0.742967,0][0.932658,-0.413547,-0.606129][-1.82302e-006,-0.998113,0.0613961][0.638267,0.742967,0][1.00575,-0.404531,-0.459565][2.41164e-005,-0.998115,0.0613753][0.61937,0.743254,0][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.599632,0.677984,0][0.733982,0.119515,-0.236603][0.00244445,-0.998186,0.0601606][0.585597,0.678198,0][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.599632,0.677984,0][1.00575,-0.404531,-0.459565][2.41164e-005,-0.998115,0.0613753][0.61937,0.743254,0][1.00575,-0.404531,-0.459565][2.41164e-005,-0.998115,0.0613753][0.61937,0.743254,0][1.0818,-0.394694,-0.299408][9.49275e-005,-0.998145,0.0608758][0.59872,0.743568,0][0.733982,0.119515,-0.236603][0.00244445,-0.998186,0.0601606][0.585597,0.678198,0][0.770047,0.134775,0.0151212][0.00166586,-0.998176,0.0603402][0.553143,0.678718,0][0.733982,0.119515,-0.236603][0.00244445,-0.998186,0.0601606][0.585597,0.678198,0][1.0818,-0.394694,-0.299408][9.49275e-005,-0.998145,0.0608758][0.59872,0.743568,0][1.0818,-0.394694,-0.299408][9.49275e-005,-0.998145,0.0608758][0.59872,0.743568,0][1.13486,-0.372241,0.0709573][0.000341665,-0.99821,0.0598006][0.55097,0.744334,0][0.770047,0.134775,0.0151212][0.00166586,-0.998176,0.0603402][0.553143,0.678718,0][-0.614267,0.161648,0.460842][-1.23591e-005,-0.99817,0.0604748][0.127874,1,0][-0.560908,0.164746,0.511995][0.000393241,-0.998185,0.0602269][0.118755,0.997258,0][-0.823387,-0.328144,0.802015][-1.24665e-006,-0.998154,0.0607282][0.143234,0.920058,0][-0.823387,-0.328144,0.802015][-1.24665e-006,-0.998154,0.0607282][0.143234,0.920058,0][-0.901895,-0.332704,0.726752][-1.77981e-006,-0.99817,0.0604692][0.15665,0.924092,0][-0.614267,0.161648,0.460842][-1.23591e-005,-0.99817,0.0604748][0.127874,1,0][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][0.636524,0.5858,0][-0.614267,0.161648,0.460842][-1.23591e-005,-0.99817,0.0604748][0.660116,0.586222,0][-0.901895,-0.332704,0.726752][-1.77981e-006,-0.99817,0.0604692][0.68925,0.652335,0][-0.901895,-0.332704,0.726752][-1.77981e-006,-0.99817,0.0604692][0.68925,0.652335,0][-1.04829,-0.349013,0.457513][-2.83608e-007,-0.99818,0.0603008][0.654539,0.651713,0][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][0.636524,0.5858,0][-0.443662,0.171592,0.624368][1.10962e-005,-0.99815,0.060793][0.0987184,0.991239,0][-0.302987,0.175814,0.693662][2.51697e-005,-0.998162,0.0606044][0.0792549,0.989125,0][-0.443905,-0.31186,1.0693][-7.68464e-007,-0.99816,0.0606398][0.0851174,0.908092,0][-0.443905,-0.31186,1.0693][-7.68464e-007,-0.99816,0.0606398][0.0851174,0.908092,0][-0.650883,-0.318072,0.96735][-5.56466e-006,-0.998149,0.0608173][0.113754,0.911202,0][-0.443662,0.171592,0.624368][1.10962e-005,-0.99815,0.060793][0.0987184,0.991239,0][-0.560908,0.164746,0.511995][0.000393241,-0.998185,0.0602269][0.118755,0.997258,0][-0.443662,0.171592,0.624368][1.10962e-005,-0.99815,0.060793][0.0987184,0.991239,0][-0.650883,-0.318072,0.96735][-5.56466e-006,-0.998149,0.0608173][0.113754,0.911202,0][-0.650883,-0.318072,0.96735][-5.56466e-006,-0.998149,0.0608173][0.113754,0.911202,0][-0.823387,-0.328144,0.802015][-1.24665e-006,-0.998154,0.0607282][0.143234,0.920058,0][-0.560908,0.164746,0.511995][0.000393241,-0.998185,0.0602269][0.118755,0.997258,0][0.230299,0.177913,0.728208][9.94704e-006,-0.998158,0.0606672][0.540152,0.86297,0][0.300426,0.175814,0.693661][-2.91517e-005,-0.998166,0.0605336][0.530114,0.862227,0][0.443905,-0.31186,1.0693][0,-0.998159,0.0606489][0.539222,0.781386,0][0.443905,-0.31186,1.0693][0,-0.998159,0.0606489][0.539222,0.781386,0][0.340725,-0.308773,1.12013][-1.52416e-005,-0.998167,0.0605133][0.553991,0.78248,0][0.230299,0.177913,0.728208][9.94704e-006,-0.998158,0.0606672][0.540152,0.86297,0][-0.0012802,0.180073,0.763786][0,-0.99816,0.0606269][0.0429934,0.990707,0][0.230299,0.177913,0.728208][9.94704e-006,-0.998158,0.0606672][0.0214035,0.998889,0][0.340725,-0.308773,1.12013][-1.52416e-005,-0.998167,0.0605133][0,0.922458,0][0.340725,-0.308773,1.12013][-1.52416e-005,-0.998167,0.0605133][0,0.922458,0][0,-0.305595,1.17248][3.38798e-005,-0.998174,0.0604059][0.0317655,0.910418,0][-0.0012802,0.180073,0.763786][0,-0.99816,0.0606269][0.0429934,0.990707,0][-0.232859,0.177913,0.728208][-1.00398e-005,-0.998158,0.0606677][0.0695522,0.98807,0][-0.0012802,0.180073,0.763786][0,-0.99816,0.0606269][0.0429934,0.990707,0][0,-0.305595,1.17248][3.38798e-005,-0.998174,0.0604059][0.0317655,0.910418,0][0,-0.305595,1.17248][3.38798e-005,-0.998174,0.0604059][0.0317655,0.910418,0][-0.340725,-0.308774,1.12013][-1.7123e-006,-0.998162,0.0606098][0.0708417,0.90654,0][-0.232859,0.177913,0.728208][-1.00398e-005,-0.998158,0.0606677][0.0695522,0.98807,0][-0.302987,0.175814,0.693662][2.51697e-005,-0.998162,0.0606044][0.0792549,0.989125,0][-0.232859,0.177913,0.728208][-1.00398e-005,-0.998158,0.0606677][0.0695522,0.98807,0][-0.340725,-0.308774,1.12013][-1.7123e-006,-0.998162,0.0606098][0.0708417,0.90654,0][-0.340725,-0.308774,1.12013][-1.7123e-006,-0.998162,0.0606098][0.0708417,0.90654,0][-0.443905,-0.31186,1.0693][-7.68464e-007,-0.99816,0.0606398][0.0851174,0.908092,0][-0.302987,0.175814,0.693662][2.51697e-005,-0.998162,0.0606044][0.0792549,0.989125,0][0.725464,0.148986,0.251615][-2.41547e-006,-0.9982,0.0599805][0.522654,0.679223,0][0.770047,0.134775,0.0151212][0.00166586,-0.998176,0.0603402][0.553143,0.678718,0][1.13486,-0.372241,0.0709573][0.000341665,-0.99821,0.0598006][0.55097,0.744334,0][1.13486,-0.372241,0.0709573][0.000341665,-0.99821,0.0598006][0.55097,0.744334,0][1.06927,-0.351333,0.418913][3.10237e-007,-0.9982,0.0599799][0.506111,0.745077,0][0.725464,0.148986,0.251615][-2.41547e-006,-0.9982,0.0599805][0.522654,0.679223,0][0.711206,0.150562,0.277849][-2.26379e-005,-0.998176,0.0603732][0.519271,0.679279,0][0.725464,0.148986,0.251615][-2.41547e-006,-0.9982,0.0599805][0.522654,0.679223,0][1.06927,-0.351333,0.418913][3.10237e-007,-0.9982,0.0599799][0.506111,0.745077,0][1.06927,-0.351333,0.418913][3.10237e-007,-0.9982,0.0599799][0.506111,0.745077,0][1.04829,-0.349013,0.457512][0,-0.99818,0.0603][0.501134,0.745159,0][0.711206,0.150562,0.277849][-2.26379e-005,-0.998176,0.0603732][0.519271,0.679279,0][0.611706,0.161648,0.460842][1.31125e-005,-0.99817,0.0604753][0.495679,0.679659,0][0.711206,0.150562,0.277849][-2.26379e-005,-0.998176,0.0603732][0.519271,0.679279,0][1.04829,-0.349013,0.457512][0,-0.99818,0.0603][0.501134,0.745159,0][1.04829,-0.349013,0.457512][0,-0.99818,0.0603][0.501134,0.745159,0][0.901894,-0.332704,0.726752][1.17207e-006,-0.99817,0.0604692][0.466422,0.745717,0][0.611706,0.161648,0.460842][1.31125e-005,-0.99817,0.0604753][0.495679,0.679659,0][0.558347,0.164746,0.511995][-0.000392126,-0.998185,0.0602285][0.489813,0.862981,0][0.611706,0.161648,0.460842][1.31125e-005,-0.99817,0.0604753][0.480634,0.864006,0][0.901894,-0.332704,0.726752][1.17207e-006,-0.99817,0.0604692][0.466422,0.784003,0][0.901894,-0.332704,0.726752][1.17207e-006,-0.99817,0.0604692][0.466422,0.784003,0][0.823387,-0.328144,0.802014][0,-0.998154,0.0607274][0.479926,0.782495,0][0.558347,0.164746,0.511995][-0.000392126,-0.998185,0.0602285][0.489813,0.862981,0][0.441102,0.171593,0.624368][1.1581e-005,-0.998148,0.0608251][0.509978,0.860735,0][0.558347,0.164746,0.511995][-0.000392126,-0.998185,0.0602285][0.489813,0.862981,0][0.823387,-0.328144,0.802014][0,-0.998154,0.0607274][0.479926,0.782495,0][0.823387,-0.328144,0.802014][0,-0.998154,0.0607274][0.479926,0.782495,0][0.650882,-0.318071,0.96735][1.51121e-007,-0.998149,0.0608106][0.509597,0.77919,0][0.441102,0.171593,0.624368][1.1581e-005,-0.998148,0.0608251][0.509978,0.860735,0][0.300426,0.175814,0.693661][-2.91517e-005,-0.998166,0.0605336][0.530114,0.862227,0][0.441102,0.171593,0.624368][1.1581e-005,-0.998148,0.0608251][0.509978,0.860735,0][0.650882,-0.318071,0.96735][1.51121e-007,-0.998149,0.0608106][0.509597,0.77919,0][0.650882,-0.318071,0.96735][1.51121e-007,-0.998149,0.0608106][0.509597,0.77919,0][0.443905,-0.31186,1.0693][0,-0.998159,0.0606489][0.539222,0.781386,0][0.300426,0.175814,0.693661][-2.91517e-005,-0.998166,0.0605336][0.530114,0.862227,0][-0.599525,0.104479,-0.481213][-0.000369369,-0.998128,0.0611632][0.39065,0.680059,0][-0.635176,0.106702,-0.44507][-1.01439e-005,-0.998114,0.0613804][0.396547,0.67779,0][-0.932659,-0.413547,-0.606128][1.54968e-006,-0.998114,0.0613959][0.43295,0.748778,0][-0.932659,-0.413547,-0.606128][1.54968e-006,-0.998114,0.0613959][0.43295,0.748778,0][-0.880205,-0.416818,-0.659306][0,-0.998103,0.0615618][0.424273,0.752117,0][-0.599525,0.104479,-0.481213][-0.000369369,-0.998128,0.0611632][0.39065,0.680059,0][-0.635176,0.106702,-0.44507][-1.01439e-005,-0.998114,0.0613804][0.543323,0.584137,0][-0.684856,0.112828,-0.345456][-0.00122353,-0.998171,0.0604383][0.556166,0.584356,0][-1.00575,-0.404531,-0.459565][0.000267622,-0.998111,0.0614408][0.536307,0.649588,0][-1.00575,-0.404531,-0.459565][0.000267622,-0.998111,0.0614408][0.536307,0.649588,0][-0.932659,-0.413547,-0.606128][1.54968e-006,-0.998114,0.0613959][0.517411,0.649267,0][-0.635176,0.106702,-0.44507][-1.01439e-005,-0.998114,0.0613804][0.543323,0.584137,0][-0.684856,0.112828,-0.345456][-0.00122353,-0.998171,0.0604383][0.556166,0.584356,0][-0.736543,0.119515,-0.236603][-0.0024391,-0.998186,0.0601631][0.570201,0.584596,0][-1.0818,-0.394694,-0.299407][-8.32945e-005,-0.998143,0.06092][0.556957,0.649941,0][-1.0818,-0.394694,-0.299407][-8.32945e-005,-0.998143,0.06092][0.556957,0.649941,0][-1.00575,-0.404531,-0.459565][0.000267622,-0.998111,0.0614408][0.536307,0.649588,0][-0.684856,0.112828,-0.345456][-0.00122353,-0.998171,0.0604383][0.556166,0.584356,0][-0.736543,0.119515,-0.236603][-0.0024391,-0.998186,0.0601631][0.570201,0.584596,0][-0.772585,0.134765,0.0149413][-0.00167147,-0.998177,0.0603399][0.60263,0.585175,0][-1.13483,-0.372256,0.0706927][0.000119707,-0.998176,0.0603686][0.604671,0.650794,0][-1.13483,-0.372256,0.0706927][0.000119707,-0.998176,0.0603686][0.604671,0.650794,0][-1.0818,-0.394694,-0.299407][-8.32945e-005,-0.998143,0.06092][0.556957,0.649941,0][-0.736543,0.119515,-0.236603][-0.0024391,-0.998186,0.0601631][0.570201,0.584596,0][-0.728024,0.148986,0.251615][7.40226e-006,-0.9982,0.0599781][0.633142,0.585737,0][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][0.636524,0.5858,0][-1.04829,-0.349013,0.457513][-2.83608e-007,-0.99818,0.0603008][0.654539,0.651713,0][-1.04829,-0.349013,0.457513][-2.83608e-007,-0.99818,0.0603008][0.654539,0.651713,0][-1.06927,-0.351333,0.418914][1.25514e-007,-0.9982,0.0599799][0.649563,0.651621,0][-0.728024,0.148986,0.251615][7.40226e-006,-0.9982,0.0599781][0.633142,0.585737,0][-0.772585,0.134765,0.0149413][-0.00167147,-0.998177,0.0603399][0.60263,0.585175,0][-0.728024,0.148986,0.251615][7.40226e-006,-0.9982,0.0599781][0.633142,0.585737,0][-1.06927,-0.351333,0.418914][1.25514e-007,-0.9982,0.0599799][0.649563,0.651621,0][-1.06927,-0.351333,0.418914][1.25514e-007,-0.9982,0.0599799][0.649563,0.651621,0][-1.13483,-0.372256,0.0706927][0.000119707,-0.998176,0.0603686][0.604671,0.650794,0][-0.772585,0.134765,0.0149413][-0.00167147,-0.998177,0.0603399][0.60263,0.585175,0][-0.462836,0.0959225,-0.619795][7.40082e-006,-0.998099,0.0616323][0.36804,0.688762,0][-0.599525,0.104479,-0.481213][-0.000369369,-0.998128,0.0611632][0.39065,0.680059,0][-0.880205,-0.416818,-0.659306][0,-0.998103,0.0615618][0.424273,0.752117,0][-0.880205,-0.416818,-0.659306][0,-0.998103,0.0615618][0.424273,0.752117,0][-0.679093,-0.429405,-0.863203][2.25719e-006,-0.998099,0.0616239][0.391006,0.764922,0][-0.462836,0.0959225,-0.619795][7.40082e-006,-0.998099,0.0616323][0.36804,0.688762,0][-0.381865,0.0933476,-0.661504][-7.61126e-005,-0.99814,0.0609612][0.356515,0.690931,0][-0.462836,0.0959225,-0.619795][7.40082e-006,-0.998099,0.0616323][0.36804,0.688762,0][-0.679093,-0.429405,-0.863203][2.25719e-006,-0.998099,0.0616239][0.391006,0.764922,0][-0.679093,-0.429405,-0.863203][2.25719e-006,-0.998099,0.0616239][0.391006,0.764922,0][-0.559959,-0.433194,-0.92457][0,-0.998125,0.0612112][0.374049,0.768113,0][-0.381865,0.0933476,-0.661504][-7.61126e-005,-0.99814,0.0609612][0.356515,0.690931,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/StageProp.mesh b/shareddata/charcustom/hats/fonts/StageProp.mesh deleted file mode 100644 index b2f4b28..0000000 --- a/shareddata/charcustom/hats/fonts/StageProp.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -152 -[-0.684571,2.05638,-0.235496][-0.17365,0.984807,0][0.51759,0.228315,0][-0.886906,2.02071,-0.120364][-0.17365,0.984807,0][0.545166,0.271589,0][-0.690521,2.05534,0.235497][-0.17365,0.984807,0][0.47439,0.382653,0][-0.886906,2.02071,-0.120364][-0.17365,0.984807,0][0.545166,0.271589,0][-0.889881,2.02018,0.115133][-0.17365,0.984807,0][0.523566,0.348757,0][-0.690521,2.05534,0.235497][-0.17365,0.984807,0][0.47439,0.382653,0][-0.690521,2.05534,0.235497][-0.17365,0.984807,0][0.47439,0.382653,0][-0.488186,2.09101,0.120365][-0.173647,0.984808,0][0.446814,0.339379,0][-0.684571,2.05638,-0.235496][-0.17365,0.984807,0][0.51759,0.228315,0][-0.488186,2.09101,0.120365][-0.173647,0.984808,0][0.446814,0.339379,0][-0.485211,2.09154,-0.115132][-0.173647,0.984808,0][0.468413,0.26221,0][-0.684571,2.05638,-0.235496][-0.17365,0.984807,0][0.51759,0.228315,0][-0.485211,2.09154,-0.115132][-0.173647,0.984808,0][0.089455,0.015964,0][-0.346087,1.82421,-0.165896][0.428485,0.378776,-0.820323][0.089455,0.084309,0][-0.684571,2.05638,-0.235496][-0.17365,0.984807,0][0.033405,0.015964,0][-0.346087,1.82421,-0.165896][0.428485,0.378776,-0.820323][0.089455,0.084309,0][-0.633349,1.77356,-0.339331][0.428484,0.378776,-0.820323][0.008692,0.084309,0][-0.684571,2.05638,-0.235496][-0.17365,0.984807,0][0.033405,0.015964,0][-0.684571,2.05638,-0.235496][-0.17365,0.984807,0][0.264701,0.015239,0][-0.633349,1.77356,-0.339331][0.428484,0.378776,-0.820323][0.278902,0.084721,0][-0.886906,2.02071,-0.120364][-0.17365,0.984807,0][0.200287,0.015239,0][-0.633349,1.77356,-0.339331][0.428484,0.378776,-0.820323][0.278902,0.084721,0][-0.924898,1.72215,-0.173435][-0.511313,0.213063,-0.832564][0.186086,0.084721,0][-0.886906,2.02071,-0.120364][-0.17365,0.984807,0][0.200287,0.015239,0][-0.886906,2.02071,-0.120364][-0.17365,0.984807,0][0.145922,0.017748,0][-0.924898,1.72215,-0.173435][-0.511313,0.213063,-0.832564][0.170635,0.086093,0][-0.889881,2.02018,0.115133][-0.17365,0.984807,0][0.089872,0.017748,0][-0.924898,1.72215,-0.173435][-0.511313,0.213063,-0.832564][0.170635,0.086093,0][-0.929185,1.7214,0.165897][-0.991651,0.128368,-0.0122415][0.089872,0.086093,0][-0.889881,2.02018,0.115133][-0.17365,0.984807,0][0.089872,0.017748,0][-0.889881,2.02018,0.115133][-0.17365,0.984807,0][0.089872,0.017748,0][-0.929185,1.7214,0.165897][-0.991651,0.128368,-0.0122415][0.089872,0.086093,0][-0.690521,2.05534,0.235497][-0.17365,0.984807,0][0.033823,0.017748,0][-0.929185,1.7214,0.165897][-0.991651,0.128368,-0.0122415][0.089872,0.086093,0][-0.641923,1.77205,0.339332][-0.532192,0.209382,0.820324][0.009109,0.086093,0][-0.690521,2.05534,0.235497][-0.17365,0.984807,0][0.033823,0.017748,0][-0.690521,2.05534,0.235497][-0.17365,0.984807,0][0.264401,0.01524,0][-0.641923,1.77205,0.339332][-0.532192,0.209382,0.820324][0.278602,0.08472,0][-0.488186,2.09101,0.120365][-0.173647,0.984808,0][0.199986,0.01524,0][-0.641923,1.77205,0.339332][-0.532192,0.209382,0.820324][0.278602,0.08472,0][-0.350374,1.82346,0.173436][0.407605,0.375092,0.832565][0.185785,0.08472,0][-0.488186,2.09101,0.120365][-0.173647,0.984808,0][0.199986,0.01524,0][-0.488186,2.09101,0.120365][-0.173647,0.984808,0][0.145505,0.015964,0][-0.350374,1.82346,0.173436][0.407605,0.375092,0.832565][0.170218,0.084309,0][-0.485211,2.09154,-0.115132][-0.173647,0.984808,0][0.089455,0.015964,0][-0.350374,1.82346,0.173436][0.407605,0.375092,0.832565][0.170218,0.084309,0][-0.346087,1.82421,-0.165896][0.428485,0.378776,-0.820323][0.089455,0.084309,0][-0.485211,2.09154,-0.115132][-0.173647,0.984808,0][0.089455,0.015964,0][-0.346087,1.82421,-0.165896][0.428485,0.378776,-0.820323][0.089455,0.082691,0][-0.39055,1.55469,-0.115132][0.532413,-0.240683,-0.811547][0.089455,0.143971,0][-0.633349,1.77356,-0.339331][0.428484,0.378776,-0.820323][0.008692,0.082691,0][-0.39055,1.55469,-0.115132][0.532413,-0.240683,-0.811547][0.089455,0.143971,0][-0.58991,1.51954,-0.235496][0.532413,-0.240682,-0.811547][0.033405,0.143971,0][-0.633349,1.77356,-0.339331][0.428484,0.378776,-0.820323][0.008692,0.082691,0][-0.633349,1.77356,-0.339331][0.428484,0.378776,-0.820323][0.278902,0.084721,0][-0.58991,1.51954,-0.235496][0.532413,-0.240682,-0.811547][0.264701,0.14702,0][-0.924898,1.72215,-0.173435][-0.511313,0.213063,-0.832564][0.186086,0.084721,0][-0.58991,1.51954,-0.235496][0.532413,-0.240682,-0.811547][0.264701,0.14702,0][-0.792246,1.48386,-0.120364][-0.39733,-0.40462,-0.823657][0.200287,0.14702,0][-0.924898,1.72215,-0.173435][-0.511313,0.213063,-0.832564][0.186086,0.084721,0][-0.924898,1.72215,-0.173435][-0.511313,0.213063,-0.832564][0.170635,0.081238,0][-0.792246,1.48386,-0.120364][-0.39733,-0.40462,-0.823657][0.145922,0.142518,0][-0.929185,1.7214,0.165897][-0.991651,0.128368,-0.0122415][0.089872,0.081238,0][-0.792246,1.48386,-0.120364][-0.39733,-0.40462,-0.823657][0.145922,0.142518,0][-0.79522,1.48333,0.115133][-0.872529,-0.488412,-0.0121099][0.089872,0.142518,0][-0.929185,1.7214,0.165897][-0.991651,0.128368,-0.0122415][0.089872,0.081238,0][-0.929185,1.7214,0.165897][-0.991651,0.128368,-0.0122415][0.089872,0.081238,0][-0.79522,1.48333,0.115133][-0.872529,-0.488412,-0.0121099][0.089872,0.142518,0][-0.641923,1.77205,0.339332][-0.532192,0.209382,0.820324][0.009109,0.081238,0][-0.79522,1.48333,0.115133][-0.872529,-0.488412,-0.0121099][0.089872,0.142518,0][-0.59586,1.51849,0.235497][-0.417986,-0.408264,0.811547][0.033823,0.142518,0][-0.641923,1.77205,0.339332][-0.532192,0.209382,0.820324][0.009109,0.081238,0][-0.641923,1.77205,0.339332][-0.532192,0.209382,0.820324][0.278602,0.08472,0][-0.59586,1.51849,0.235497][-0.417986,-0.408264,0.811547][0.264401,0.147019,0][-0.350374,1.82346,0.173436][0.407605,0.375092,0.832565][0.185785,0.08472,0][-0.59586,1.51849,0.235497][-0.417986,-0.408264,0.811547][0.264401,0.147019,0][-0.393525,1.55416,0.120365][0.511756,-0.244324,0.823657][0.199986,0.147019,0][-0.350374,1.82346,0.173436][0.407605,0.375092,0.832565][0.185785,0.08472,0][-0.350374,1.82346,0.173436][0.407605,0.375092,0.832565][0.170218,0.082691,0][-0.393525,1.55416,0.120365][0.511756,-0.244324,0.823657][0.145505,0.143971,0][-0.346087,1.82421,-0.165896][0.428485,0.378776,-0.820323][0.089455,0.082691,0][-0.393525,1.55416,0.120365][0.511756,-0.244324,0.823657][0.145505,0.143971,0][-0.39055,1.55469,-0.115132][0.532413,-0.240683,-0.811547][0.089455,0.143971,0][-0.346087,1.82421,-0.165896][0.428485,0.378776,-0.820323][0.089455,0.082691,0][-0.39055,1.55469,-0.115132][0.532413,-0.240683,-0.811547][0.132378,0.161417,0][-0.148683,0.182989,-0.115132][0.503303,0.088746,-0.859541][0.132378,0.497819,0][-0.58991,1.51954,-0.235496][0.532413,-0.240682,-0.811547][0.075908,0.161417,0][-0.148683,0.182989,-0.115132][0.503303,0.088746,-0.859541][0.132378,0.497819,0][-0.348043,0.147837,-0.235497][0.503303,0.0887461,-0.859541][0.075908,0.497819,0][-0.58991,1.51954,-0.235496][0.532413,-0.240682,-0.811547][0.075908,0.161417,0][-0.58991,1.51954,-0.235496][0.532413,-0.240682,-0.811547][0.264701,0.163201,0][-0.348043,0.147837,-0.235497][0.503303,0.0887461,-0.859541][0.264701,0.49991,0][-0.792246,1.48386,-0.120364][-0.39733,-0.40462,-0.823657][0.200287,0.163201,0][-0.348043,0.147837,-0.235497][0.503303,0.0887461,-0.859541][0.264701,0.49991,0][-0.550378,0.112159,-0.120364][-0.481424,-0.0848879,-0.872367][0.200287,0.49991,0][-0.792246,1.48386,-0.120364][-0.39733,-0.40462,-0.823657][0.200287,0.163201,0][-0.792246,1.48386,-0.120364][-0.39733,-0.40462,-0.823657][0.189268,0.161586,0][-0.550378,0.112159,-0.120364][-0.481424,-0.0848879,-0.872367][0.189268,0.497987,0][-0.79522,1.48333,0.115133][-0.872529,-0.488412,-0.0121099][0.132798,0.161586,0][-0.550378,0.112159,-0.120364][-0.481424,-0.0848879,-0.872367][0.189268,0.497987,0][-0.553353,0.111635,0.115132][-0.984727,-0.173634,-0.0128257][0.132798,0.497987,0][-0.79522,1.48333,0.115133][-0.872529,-0.488412,-0.0121099][0.132798,0.161586,0][-0.79522,1.48333,0.115133][-0.872529,-0.488412,-0.0121099][0.132798,0.161586,0][-0.553353,0.111635,0.115132][-0.984727,-0.173634,-0.0128257][0.132798,0.497987,0][-0.59586,1.51849,0.235497][-0.417986,-0.408264,0.811547][0.076328,0.161586,0][-0.553353,0.111635,0.115132][-0.984727,-0.173634,-0.0128257][0.132798,0.497987,0][-0.353992,0.146787,0.235497][-0.503303,-0.088746,0.859541][0.076328,0.497987,0][-0.59586,1.51849,0.235497][-0.417986,-0.408264,0.811547][0.076328,0.161586,0][-0.59586,1.51849,0.235497][-0.417986,-0.408264,0.811547][0.264401,0.1632,0][-0.353992,0.146787,0.235497][-0.503303,-0.088746,0.859541][0.264401,0.49991,0][-0.393525,1.55416,0.120365][0.511756,-0.244324,0.823657][0.199986,0.1632,0][-0.353992,0.146787,0.235497][-0.503303,-0.088746,0.859541][0.264401,0.49991,0][-0.151657,0.182464,0.120365][0.481424,0.0848879,0.872367][0.199986,0.49991,0][-0.393525,1.55416,0.120365][0.511756,-0.244324,0.823657][0.199986,0.1632,0][-0.393525,1.55416,0.120365][0.511756,-0.244324,0.823657][0.188848,0.161417,0][-0.151657,0.182464,0.120365][0.481424,0.0848879,0.872367][0.188848,0.497819,0][-0.39055,1.55469,-0.115132][0.532413,-0.240683,-0.811547][0.132378,0.161417,0][-0.151657,0.182464,0.120365][0.481424,0.0848879,0.872367][0.188848,0.497819,0][-0.148683,0.182989,-0.115132][0.503303,0.088746,-0.859541][0.132378,0.497819,0][-0.39055,1.55469,-0.115132][0.532413,-0.240683,-0.811547][0.132378,0.161417,0][-0.148683,0.182989,-0.115132][0.503303,0.088746,-0.859541][0.118046,0.86084,0][-0.0333468,0.0505753,-0.165897][0.342888,0.581502,-0.737755][0.118046,0.896611,0][-0.348043,0.147837,-0.235497][0.503303,0.0887461,-0.859541][0.061997,0.86084,0][-0.0333468,0.0505753,-0.165897][0.342888,0.581502,-0.737755][0.118046,0.896611,0][-0.320609,-7.67708e-005,-0.339332][0.342888,0.581501,-0.737756][0.037283,0.896611,0][-0.348043,0.147837,-0.235497][0.503303,0.0887461,-0.859541][0.061997,0.86084,0][-0.348043,0.147837,-0.235497][0.503303,0.0887461,-0.859541][0.29228,0.859687,0][-0.320609,-7.67708e-005,-0.339332][0.342888,0.581501,-0.737756][0.306481,0.896052,0][-0.550378,0.112159,-0.120364][-0.481424,-0.0848879,-0.872367][0.227866,0.859687,0][-0.320609,-7.67708e-005,-0.339332][0.342888,0.581501,-0.737756][0.306481,0.896052,0][-0.612158,-0.0514847,-0.173435][-0.502317,0.432467,-0.748766][0.213665,0.896052,0][-0.550378,0.112159,-0.120364][-0.481424,-0.0848879,-0.872367][0.227866,0.859687,0][-0.550378,0.112159,-0.120364][-0.481424,-0.0848879,-0.872367][0.173501,0.861006,0][-0.612158,-0.0514847,-0.173435][-0.502317,0.432467,-0.748766][0.198214,0.896776,0][-0.553353,0.111635,0.115132][-0.984727,-0.173634,-0.0128257][0.117451,0.861006,0][-0.612158,-0.0514847,-0.173435][-0.502317,0.432467,-0.748766][0.198214,0.896776,0][-0.616445,-0.0522406,0.165896][-0.934308,0.356298,-0.0110094][0.117451,0.896776,0][-0.553353,0.111635,0.115132][-0.984727,-0.173634,-0.0128257][0.117451,0.861006,0][-0.553353,0.111635,0.115132][-0.984727,-0.173634,-0.0128257][0.117451,0.861006,0][-0.616445,-0.0522406,0.165896][-0.934308,0.356298,-0.0110094][0.117451,0.896776,0][-0.353992,0.146787,0.235497][-0.503303,-0.088746,0.859541][0.061402,0.861006,0][-0.616445,-0.0522406,0.165896][-0.934308,0.356298,-0.0110094][0.117451,0.896776,0][-0.329182,-0.00158858,0.339332][-0.521094,0.429157,0.737757][0.036688,0.896776,0][-0.353992,0.146787,0.235497][-0.503303,-0.088746,0.859541][0.061402,0.861006,0][-0.353992,0.146787,0.235497][-0.503303,-0.088746,0.859541][0.29198,0.859687,0][-0.329182,-0.00158858,0.339332][-0.521094,0.429157,0.737757][0.306181,0.896052,0][-0.151657,0.182464,0.120365][0.481424,0.0848879,0.872367][0.227565,0.859687,0][-0.329182,-0.00158858,0.339332][-0.521094,0.429157,0.737757][0.306181,0.896052,0][-0.0376335,0.0498194,0.173435][0.324111,0.578188,0.748766][0.213364,0.896052,0][-0.151657,0.182464,0.120365][0.481424,0.0848879,0.872367][0.227565,0.859687,0][-0.151657,0.182464,0.120365][0.481424,0.0848879,0.872367][0.174096,0.86084,0][-0.0376335,0.0498194,0.173435][0.324111,0.578188,0.748766][0.198809,0.896611,0][-0.148683,0.182989,-0.115132][0.503303,0.088746,-0.859541][0.118046,0.86084,0][-0.0376335,0.0498194,0.173435][0.324111,0.578188,0.748766][0.198809,0.896611,0][-0.0333468,0.0505753,-0.165897][0.342888,0.581502,-0.737755][0.118046,0.896611,0][-0.148683,0.182989,-0.115132][0.503303,0.088746,-0.859541][0.118046,0.86084,0][-0.113487,-0.365898,-0.195302][0.391021,-0.904323,0.171183][0.517146,0.030088,0][0.145231,-0.248164,-0.164306][0.391021,-0.904323,0.171183][0.571521,0.03275,0][0.020982,-0.270072,0.00376929][0.391021,-0.904323,0.171183][0.563752,0.091198,0][-0.0719849,-0.60939,-0.0853107][0.639918,-0.223102,-0.735344][0.837735,0.548001,0][-0.113487,-0.365898,-0.195302][0.391021,-0.904323,0.171183][0.870688,0.514985,0][0.063873,-0.513319,0.00376923][0.639918,-0.223102,-0.735344][0.847211,0.600429,0][-0.113487,-0.365898,-0.195302][0.391021,-0.904323,0.171183][0.870688,0.514985,0][0.020982,-0.270072,0.00376929][0.391021,-0.904323,0.171183][0.880165,0.600429,0][0.063873,-0.513319,0.00376923][0.639918,-0.223102,-0.735344][0.847211,0.600429,0][-0.0333468,0.0505753,-0.165897][0.342888,0.581502,-0.737755][0.995774,0.765955,0][-0.113487,-0.365898,-0.195302][0.391021,-0.904323,0.171183][0.937785,0.72882,0][-0.320609,-7.67708e-005,-0.339332][0.342888,0.581501,-0.737756][0.995774,0.712358,0][-0.113487,-0.365898,-0.195302][0.391021,-0.904323,0.171183][0.937785,0.72882,0][-0.253601,-0.390604,-0.197126][0.0705457,-0.330597,-0.941132][0.937785,0.689897,0][-0.320609,-7.67708e-005,-0.339332][0.342888,0.581501,-0.737756][0.995774,0.712358,0][-0.393715,-0.41531,-0.198951][-0.0623928,-0.984272,0.165277][0.476541,0.023855,0][-0.557829,-0.372132,-0.00376948][-0.0623928,-0.984272,0.165277][0.466096,0.091935,0][-0.677792,-0.393285,-0.175026][-0.0623928,-0.984272,0.165277][0.427203,0.039189,0][-0.352213,-0.658802,-0.0889604][0.0821811,-0.39861,-0.913431][0.843197,0.667188,0][-0.393715,-0.41531,-0.198951][-0.0623928,-0.984272,0.165277][0.876289,0.684491,0][-0.2121,-0.634097,-0.0871357][0.0821811,-0.39861,-0.913431][0.843197,0.705953,0][-0.393715,-0.41531,-0.198951][-0.0623928,-0.984272,0.165277][0.876289,0.684491,0][-0.253601,-0.390604,-0.197126][0.0705457,-0.330597,-0.941132][0.876289,0.723255,0][-0.2121,-0.634097,-0.0871357][0.0821811,-0.39861,-0.913431][0.843197,0.705953,0][-0.398696,-0.416188,0.195302][-0.0581427,-0.983522,-0.171183][0.512702,0.153045,0][-0.682078,-0.394041,0.164306][-0.0581427,-0.983522,-0.171183][0.458327,0.150383,0][-0.557829,-0.372132,-0.00376948][-0.0623928,-0.984272,0.165277][0.466096,0.091935,0][-0.354415,-0.659191,0.0853103][-0.525021,-0.428512,0.735344][0.835827,0.548527,0][-0.398696,-0.416188,0.195302][-0.0581427,-0.983522,-0.171183][0.86878,0.515513,0][-0.514938,-0.61538,-0.00376954][-0.525021,-0.428512,0.735344][0.845304,0.600955,0][-0.398696,-0.416188,0.195302][-0.0581427,-0.983522,-0.171183][0.86878,0.515513,0][-0.557829,-0.372132,-0.00376948][-0.0623928,-0.984272,0.165277][0.878257,0.600955,0][-0.514938,-0.61538,-0.00376954][-0.525021,-0.428512,0.735344][0.845304,0.600955,0][-0.616445,-0.0522406,0.165896][-0.934308,0.356298,-0.0110094][0.995775,0.765607,0][-0.398696,-0.416188,0.195302][-0.0581427,-0.983522,-0.171183][0.937786,0.728473,0][-0.329182,-0.00158858,0.339332][-0.521094,0.429157,0.737757][0.995775,0.712011,0][-0.398696,-0.416188,0.195302][-0.0581427,-0.983522,-0.171183][0.937786,0.728473,0][-0.258581,-0.391482,0.197126][0.0467796,-0.334788,0.941131][0.937786,0.68955,0][-0.329182,-0.00158858,0.339332][-0.521094,0.429157,0.737757][0.995775,0.712011,0][-0.118467,-0.366776,0.198951][0.395271,-0.903573,-0.165277][0.553307,0.159279,0][0.020982,-0.270072,0.00376929][0.391021,-0.904323,0.171183][0.563752,0.091198,0][0.140945,-0.248919,0.175026][0.395271,-0.903573,-0.165277][0.602645,0.143944,0][-0.0741869,-0.609779,0.08896][0.0591078,-0.402679,0.913431][0.843196,0.666843,0][-0.118467,-0.366776,0.198951][0.395271,-0.903573,-0.165277][0.87629,0.684145,0][-0.2143,-0.634485,0.0871354][0.0591078,-0.402679,0.913431][0.843196,0.705607,0][-0.118467,-0.366776,0.198951][0.395271,-0.903573,-0.165277][0.87629,0.684145,0][-0.258581,-0.391482,0.197126][0.0467796,-0.334788,0.941131][0.87629,0.722909,0][-0.2143,-0.634485,0.0871354][0.0591078,-0.402679,0.913431][0.843196,0.705607,0][-0.0333468,0.0505753,-0.165897][0.342888,0.581502,-0.737755][0.995774,0.765955,0][0.0887592,0.0721059,-0.164306][0.00059496,0.0703161,-0.997525][0.995774,0.799874,0][-0.113487,-0.365898,-0.195302][0.391021,-0.904323,0.171183][0.937785,0.72882,0][0.0887592,0.0721059,-0.164306][0.00059496,0.0703161,-0.997525][0.995774,0.799874,0][0.145231,-0.248164,-0.164306][0.391021,-0.904323,0.171183][0.948179,0.799874,0][-0.113487,-0.365898,-0.195302][0.391021,-0.904323,0.171183][0.937785,0.72882,0][-0.118467,-0.366776,0.198951][0.395271,-0.903573,-0.165277][0.937786,0.650628,0][0.140945,-0.248919,0.175026][0.395271,-0.903573,-0.165277][0.948179,0.570898,0][-0.0376335,0.0498194,0.173435][0.324111,0.578188,0.748766][0.995775,0.604818,0][0.140945,-0.248919,0.175026][0.395271,-0.903573,-0.165277][0.948179,0.570898,0][0.0844725,0.07135,0.175026][-0.0126319,-0.00222757,0.999918][0.995775,0.570898,0][-0.0376335,0.0498194,0.173435][0.324111,0.578188,0.748766][0.995775,0.604818,0][0.140945,-0.248919,0.175026][0.395271,-0.903573,-0.165277][0.602645,0.143944,0][0.020982,-0.270072,0.00376929][0.391021,-0.904323,0.171183][0.563752,0.091198,0][0.145231,-0.248164,-0.164306][0.391021,-0.904323,0.171183][0.571521,0.03275,0][-0.0376335,0.0498194,0.173435][0.324111,0.578188,0.748766][0.425131,0.354324,0][0.0844725,0.07135,0.175026][-0.0126319,-0.00222757,0.999918][0.4018,0.351473,0][-0.0333468,0.0505753,-0.165897][0.342888,0.581502,-0.737755][0.456255,0.24313,0][0.0844725,0.07135,0.175026][-0.0126319,-0.00222757,0.999918][0.4018,0.351473,0][0.0887592,0.0721059,-0.164306][0.00059496,0.0703161,-0.997525][0.432924,0.24028,0][-0.0333468,0.0505753,-0.165897][0.342888,0.581502,-0.737755][0.456255,0.24313,0][-0.616445,-0.0522406,0.165896][-0.934308,0.356298,-0.0110094][0.995775,0.765607,0][-0.738551,-0.0737712,0.164306][-0.0246086,0.0658715,0.997525][0.995775,0.799527,0][-0.398696,-0.416188,0.195302][-0.0581427,-0.983522,-0.171183][0.937786,0.728473,0][-0.738551,-0.0737712,0.164306][-0.0246086,0.0658715,0.997525][0.995775,0.799527,0][-0.682078,-0.394041,0.164306][-0.0581427,-0.983522,-0.171183][0.948179,0.799527,0][-0.398696,-0.416188,0.195302][-0.0581427,-0.983522,-0.171183][0.937786,0.728473,0][-0.393715,-0.41531,-0.198951][-0.0623928,-0.984272,0.165277][0.937785,0.650975,0][-0.677792,-0.393285,-0.175026][-0.0623928,-0.984272,0.165277][0.948179,0.571245,0][-0.612158,-0.0514847,-0.173435][-0.502317,0.432467,-0.748766][0.995774,0.605165,0][-0.677792,-0.393285,-0.175026][-0.0623928,-0.984272,0.165277][0.948179,0.571245,0][-0.734264,-0.0730153,-0.175026][0.0126319,0.00222757,-0.999918][0.995774,0.571245,0][-0.612158,-0.0514847,-0.173435][-0.502317,0.432467,-0.748766][0.995774,0.605165,0][-0.677792,-0.393285,-0.175026][-0.0623928,-0.984272,0.165277][0.427203,0.039189,0][-0.557829,-0.372132,-0.00376948][-0.0623928,-0.984272,0.165277][0.466096,0.091935,0][-0.682078,-0.394041,0.164306][-0.0581427,-0.983522,-0.171183][0.458327,0.150383,0][-0.612158,-0.0514847,-0.173435][-0.502317,0.432467,-0.748766][0.566849,0.256644,0][-0.734264,-0.0730153,-0.175026][0.0126319,0.00222757,-0.999918][0.59018,0.259494,0][-0.616445,-0.0522406,0.165896][-0.934308,0.356298,-0.0110094][0.535725,0.367838,0][-0.734264,-0.0730153,-0.175026][0.0126319,0.00222757,-0.999918][0.59018,0.259494,0][-0.738551,-0.0737712,0.164306][-0.0246086,0.0658715,0.997525][0.559056,0.370688,0][-0.616445,-0.0522406,0.165896][-0.934308,0.356298,-0.0110094][0.535725,0.367838,0][0.0844725,0.07135,0.175026][-0.0126319,-0.00222757,0.999918][0.4018,0.351473,0][0.636328,-0.184326,0.0945439][0.421247,0.906916,0.00734178][0.316068,0.311559,0][0.0887592,0.0721059,-0.164306][0.00059496,0.0703161,-0.997525][0.432924,0.24028,0][0.636328,-0.184326,0.0945439][0.421247,0.906916,0.00734178][0.316068,0.311559,0][0.63842,-0.183957,-0.0710498][0.421247,0.906916,0.00734303][0.331256,0.257296,0][0.0887592,0.0721059,-0.164306][0.00059496,0.0703161,-0.997525][0.432924,0.24028,0][0.0887592,0.0721059,-0.164306][0.00059496,0.0703161,-0.997525][0.995774,0.799874,0][0.63842,-0.183957,-0.0710498][0.421247,0.906916,0.00734303][0.9449,0.922381,0][0.145231,-0.248164,-0.164306][0.391021,-0.904323,0.171183][0.948179,0.799874,0][0.63842,-0.183957,-0.0710498][0.421247,0.906916,0.00734303][0.9449,0.922381,0][0.666544,-0.343456,-0.0710499][0.181673,0.0320341,-0.982837][0.921196,0.922381,0][0.145231,-0.248164,-0.164306][0.391021,-0.904323,0.171183][0.948179,0.799874,0][0.145231,-0.248164,-0.164306][0.391021,-0.904323,0.171183][0.571521,0.03275,0][0.666544,-0.343456,-0.0710499][0.181673,0.0320341,-0.982837][0.673189,0.049767,0][0.140945,-0.248919,0.175026][0.395271,-0.903573,-0.165277][0.602645,0.143944,0][0.666544,-0.343456,-0.0710499][0.181673,0.0320341,-0.982837][0.673189,0.049767,0][0.664452,-0.343825,0.0945439][-0.179042,-0.983831,-0.00445419][0.688377,0.104029,0][0.140945,-0.248919,0.175026][0.395271,-0.903573,-0.165277][0.602645,0.143944,0][0.140945,-0.248919,0.175026][0.395271,-0.903573,-0.165277][0.948179,0.570898,0][0.664452,-0.343825,0.0945439][-0.179042,-0.983831,-0.00445419][0.921196,0.42095,0][0.0844725,0.07135,0.175026][-0.0126319,-0.00222757,0.999918][0.995775,0.570898,0][0.664452,-0.343825,0.0945439][-0.179042,-0.983831,-0.00445419][0.921196,0.42095,0][0.636328,-0.184326,0.0945439][0.421247,0.906916,0.00734178][0.9449,0.42095,0][0.0844725,0.07135,0.175026][-0.0126319,-0.00222757,0.999918][0.995775,0.570898,0][-0.734264,-0.0730153,-0.175026][0.0126319,0.00222757,-0.999918][0.59018,0.259494,0][-1.16539,-0.502017,-0.0945442][-0.706026,0.708148,-0.00734171][0.675912,0.299409,0][-0.738551,-0.0737712,0.164306][-0.0246086,0.0658715,0.997525][0.559056,0.370688,0][-1.16539,-0.502017,-0.0945442][-0.706026,0.708148,-0.00734171][0.675912,0.299409,0][-1.16748,-0.502386,0.0710496][-0.706026,0.708148,-0.00734219][0.660724,0.353671,0][-0.738551,-0.0737712,0.164306][-0.0246086,0.0658715,0.997525][0.559056,0.370688,0][-0.738551,-0.0737712,0.164306][-0.0246086,0.0658715,0.997525][0.995775,0.799527,0][-1.16748,-0.502386,0.0710496][-0.706026,0.708148,-0.00734219][0.9449,0.922034,0][-0.682078,-0.394041,0.164306][-0.0581427,-0.983522,-0.171183][0.948179,0.799527,0][-1.16748,-0.502386,0.0710496][-0.706026,0.708148,-0.00734219][0.9449,0.922034,0][-1.13936,-0.661886,0.0710496][-0.181673,-0.0320341,0.982837][0.921196,0.922034,0][-0.682078,-0.394041,0.164306][-0.0581427,-0.983522,-0.171183][0.948179,0.799527,0][-0.682078,-0.394041,0.164306][-0.0581427,-0.983522,-0.171183][0.458327,0.150383,0][-1.13936,-0.661886,0.0710496][-0.181673,-0.0320341,0.982837][0.356659,0.133366,0][-0.677792,-0.393285,-0.175026][-0.0623928,-0.984272,0.165277][0.427203,0.039189,0][-1.13936,-0.661886,0.0710496][-0.181673,-0.0320341,0.982837][0.356659,0.133366,0][-1.13727,-0.661517,-0.0945442][0.504734,-0.863263,0.00445344][0.341471,0.079104,0][-0.677792,-0.393285,-0.175026][-0.0623928,-0.984272,0.165277][0.427203,0.039189,0][-0.677792,-0.393285,-0.175026][-0.0623928,-0.984272,0.165277][0.948179,0.571245,0][-1.13727,-0.661517,-0.0945442][0.504734,-0.863263,0.00445344][0.921196,0.421298,0][-0.734264,-0.0730153,-0.175026][0.0126319,0.00222757,-0.999918][0.995774,0.571245,0][-1.13727,-0.661517,-0.0945442][0.504734,-0.863263,0.00445344][0.921196,0.421298,0][-1.16539,-0.502017,-0.0945442][-0.706026,0.708148,-0.00734171][0.9449,0.421298,0][-0.734264,-0.0730153,-0.175026][0.0126319,0.00222757,-0.999918][0.995774,0.571245,0][0.664452,-0.343825,0.0945439][-0.179042,-0.983831,-0.00445419][0.921196,0.42095,0][0.934226,-0.523316,0.0564782][0.15779,0.0278225,0.987081][0.88847,0.350454,0][0.636328,-0.184326,0.0945439][0.421247,0.906916,0.00734178][0.9449,0.42095,0][0.934226,-0.523316,0.0564782][0.15779,0.0278225,0.987081][0.88847,0.350454,0][0.917352,-0.427622,0.0564783][0.15779,0.0278226,0.987081][0.902692,0.350454,0][0.636328,-0.184326,0.0945439][0.421247,0.906916,0.00734178][0.9449,0.42095,0][0.636328,-0.184326,0.0945439][0.421247,0.906916,0.00734178][0.942585,0.031905,0][0.917352,-0.427622,0.0564783][0.15779,0.0278226,0.987081][0.9916,0.229585,0][0.63842,-0.183957,-0.0710498][0.421247,0.906916,0.00734303][0.856258,0.031905,0][0.917352,-0.427622,0.0564783][0.15779,0.0278226,0.987081][0.9916,0.229585,0][0.918403,-0.427437,-0.0269792][0.655281,0.75532,0.00992737][0.948091,0.229585,0][0.63842,-0.183957,-0.0710498][0.421247,0.906916,0.00734303][0.856258,0.031905,0][0.63842,-0.183957,-0.0710498][0.421247,0.906916,0.00734303][0.9449,0.922381,0][0.918403,-0.427437,-0.0269792][0.655281,0.75532,0.00992737][0.902692,0.979904,0][0.666544,-0.343456,-0.0710499][0.181673,0.0320341,-0.982837][0.921196,0.922381,0][0.918403,-0.427437,-0.0269792][0.655281,0.75532,0.00992737][0.902692,0.979904,0][0.935277,-0.523131,-0.0269793][0.182685,0.0322125,-0.982644][0.888471,0.979904,0][0.666544,-0.343456,-0.0710499][0.181673,0.0320341,-0.982837][0.921196,0.922381,0][0.666544,-0.343456,-0.0710499][0.181673,0.0320341,-0.982837][0.673189,0.049767,0][0.935277,-0.523131,-0.0269793][0.182685,0.0322125,-0.982644][0.720982,0.057845,0][0.664452,-0.343825,0.0945439][-0.179042,-0.983831,-0.00445419][0.688377,0.104029,0][0.935277,-0.523131,-0.0269793][0.182685,0.0322125,-0.982644][0.720982,0.057845,0][0.934226,-0.523316,0.0564782][0.15779,0.0278225,0.987081][0.728638,0.085193,0][0.664452,-0.343825,0.0945439][-0.179042,-0.983831,-0.00445419][0.688377,0.104029,0][0.934226,-0.523316,0.0564782][0.15779,0.0278225,0.987081][0.992612,0.294571,0][0.935277,-0.523131,-0.0269793][0.182685,0.0322125,-0.982644][0.949103,0.294571,0][0.917352,-0.427622,0.0564783][0.15779,0.0278226,0.987081][0.992612,0.227967,0][0.935277,-0.523131,-0.0269793][0.182685,0.0322125,-0.982644][0.949103,0.294571,0][0.918403,-0.427437,-0.0269792][0.655281,0.75532,0.00992737][0.949103,0.227967,0][0.917352,-0.427622,0.0564783][0.15779,0.0278226,0.987081][0.992612,0.227967,0][-1.13727,-0.661517,-0.0945442][0.504734,-0.863263,0.00445344][0.921196,0.421298,0][-1.32938,-0.922452,-0.0564786][-0.15779,-0.0278225,-0.987081][0.888471,0.350801,0][-1.16539,-0.502017,-0.0945442][-0.706026,0.708148,-0.00734171][0.9449,0.421298,0][-1.32938,-0.922452,-0.0564786][-0.15779,-0.0278225,-0.987081][0.888471,0.350801,0][-1.34626,-0.826758,-0.0564786][-0.157791,-0.0278224,-0.987081][0.902692,0.350801,0][-1.16539,-0.502017,-0.0945442][-0.706026,0.708148,-0.00734171][0.9449,0.421298,0][-1.16539,-0.502017,-0.0945442][-0.706026,0.708148,-0.00734171][0.9423,0.029199,0][-1.34626,-0.826758,-0.0564786][-0.157791,-0.0278224,-0.987081][0.991315,0.226879,0][-1.16748,-0.502386,0.0710496][-0.706026,0.708148,-0.00734219][0.855973,0.029199,0][-1.34626,-0.826758,-0.0564786][-0.157791,-0.0278224,-0.987081][0.991315,0.226879,0][-1.34731,-0.826943,0.0269789][-0.874098,0.485649,-0.00992794][0.947806,0.226879,0][-1.16748,-0.502386,0.0710496][-0.706026,0.708148,-0.00734219][0.855973,0.029199,0][-1.16748,-0.502386,0.0710496][-0.706026,0.708148,-0.00734219][0.9449,0.922034,0][-1.34731,-0.826943,0.0269789][-0.874098,0.485649,-0.00992794][0.902692,0.979557,0][-1.13936,-0.661886,0.0710496][-0.181673,-0.0320341,0.982837][0.921196,0.922034,0][-1.34731,-0.826943,0.0269789][-0.874098,0.485649,-0.00992794][0.902692,0.979557,0][-1.33043,-0.922637,0.0269789][-0.182685,-0.0322125,0.982644][0.88847,0.979557,0][-1.13936,-0.661886,0.0710496][-0.181673,-0.0320341,0.982837][0.921196,0.922034,0][-1.13936,-0.661886,0.0710496][-0.181673,-0.0320341,0.982837][0.356659,0.133366,0][-1.33043,-0.922637,0.0269789][-0.182685,-0.0322125,0.982644][0.308865,0.125288,0][-1.13727,-0.661517,-0.0945442][0.504734,-0.863263,0.00445344][0.341471,0.079104,0][-1.33043,-0.922637,0.0269789][-0.182685,-0.0322125,0.982644][0.308865,0.125288,0][-1.32938,-0.922452,-0.0564786][-0.15779,-0.0278225,-0.987081][0.30121,0.097941,0][-1.13727,-0.661517,-0.0945442][0.504734,-0.863263,0.00445344][0.341471,0.079104,0][-1.32938,-0.922452,-0.0564786][-0.15779,-0.0278225,-0.987081][0.991315,0.295101,0][-1.33043,-0.922637,0.0269789][-0.182685,-0.0322125,0.982644][0.947806,0.295101,0][-1.34626,-0.826758,-0.0564786][-0.157791,-0.0278224,-0.987081][0.991315,0.228497,0][-1.33043,-0.922637,0.0269789][-0.182685,-0.0322125,0.982644][0.947806,0.295101,0][-1.34731,-0.826943,0.0269789][-0.874098,0.485649,-0.00992794][0.947806,0.228497,0][-1.34626,-0.826758,-0.0564786][-0.157791,-0.0278224,-0.987081][0.991315,0.228497,0][0.063873,-0.513319,0.00376923][0.639918,-0.223102,-0.735344][0.852711,0.611832,0][0.020982,-0.270072,0.00376929][0.391021,-0.904323,0.171183][0.885805,0.611832,0][-0.0741869,-0.609779,0.08896][0.0591078,-0.402679,0.913431][0.843196,0.666843,0][0.020982,-0.270072,0.00376929][0.391021,-0.904323,0.171183][0.885805,0.611832,0][-0.118467,-0.366776,0.198951][0.395271,-0.903573,-0.165277][0.87629,0.684145,0][-0.0741869,-0.609779,0.08896][0.0591078,-0.402679,0.913431][0.843196,0.666843,0][-0.514938,-0.61538,-0.00376954][-0.525021,-0.428512,0.735344][0.852711,0.612178,0][-0.557829,-0.372132,-0.00376948][-0.0623928,-0.984272,0.165277][0.885805,0.612178,0][-0.352213,-0.658802,-0.0889604][0.0821811,-0.39861,-0.913431][0.843197,0.667188,0][-0.557829,-0.372132,-0.00376948][-0.0623928,-0.984272,0.165277][0.885805,0.612178,0][-0.393715,-0.41531,-0.198951][-0.0623928,-0.984272,0.165277][0.876289,0.684491,0][-0.352213,-0.658802,-0.0889604][0.0821811,-0.39861,-0.913431][0.843197,0.667188,0][-0.2121,-0.634097,-0.0871357][0.0821811,-0.39861,-0.913431][0.843197,0.705953,0][-0.253601,-0.390604,-0.197126][0.0705457,-0.330597,-0.941132][0.876289,0.723255,0][-0.0719849,-0.60939,-0.0853107][0.639918,-0.223102,-0.735344][0.843197,0.744717,0][-0.253601,-0.390604,-0.197126][0.0705457,-0.330597,-0.941132][0.876289,0.723255,0][-0.113487,-0.365898,-0.195302][0.391021,-0.904323,0.171183][0.876289,0.76202,0][-0.0719849,-0.60939,-0.0853107][0.639918,-0.223102,-0.735344][0.843197,0.744717,0][-0.320609,-7.67708e-005,-0.339332][0.342888,0.581501,-0.737756][0.995774,0.712358,0][-0.253601,-0.390604,-0.197126][0.0705457,-0.330597,-0.941132][0.937785,0.689897,0][-0.612158,-0.0514847,-0.173435][-0.502317,0.432467,-0.748766][0.995774,0.605165,0][-0.253601,-0.390604,-0.197126][0.0705457,-0.330597,-0.941132][0.937785,0.689897,0][-0.393715,-0.41531,-0.198951][-0.0623928,-0.984272,0.165277][0.937785,0.650975,0][-0.612158,-0.0514847,-0.173435][-0.502317,0.432467,-0.748766][0.995774,0.605165,0][-0.2143,-0.634485,0.0871354][0.0591078,-0.402679,0.913431][0.843196,0.705607,0][-0.258581,-0.391482,0.197126][0.0467796,-0.334788,0.941131][0.87629,0.722909,0][-0.354415,-0.659191,0.0853103][-0.525021,-0.428512,0.735344][0.843196,0.744372,0][-0.258581,-0.391482,0.197126][0.0467796,-0.334788,0.941131][0.87629,0.722909,0][-0.398696,-0.416188,0.195302][-0.0581427,-0.983522,-0.171183][0.87629,0.761674,0][-0.354415,-0.659191,0.0853103][-0.525021,-0.428512,0.735344][0.843196,0.744372,0][-0.329182,-0.00158858,0.339332][-0.521094,0.429157,0.737757][0.995775,0.712011,0][-0.258581,-0.391482,0.197126][0.0467796,-0.334788,0.941131][0.937786,0.68955,0][-0.0376335,0.0498194,0.173435][0.324111,0.578188,0.748766][0.995775,0.604818,0][-0.258581,-0.391482,0.197126][0.0467796,-0.334788,0.941131][0.937786,0.68955,0][-0.118467,-0.366776,0.198951][0.395271,-0.903573,-0.165277][0.937786,0.650628,0][-0.0376335,0.0498194,0.173435][0.324111,0.578188,0.748766][0.995775,0.604818,0][0.270429,-1.9386,0.0032035][0.488741,0.0704843,0.869577][0.659847,0.623842,0][0.063873,-0.513319,0.00376923][0.639918,-0.223102,-0.735344][0.852711,0.611832,0][0.154928,-2.03109,0.0756162][0.488741,0.0704843,0.869577][0.650332,0.670602,0][0.063873,-0.513319,0.00376923][0.639918,-0.223102,-0.735344][0.852711,0.611832,0][-0.0741869,-0.609779,0.08896][0.0591078,-0.402679,0.913431][0.843196,0.666843,0][0.154928,-2.03109,0.0756162][0.488741,0.0704843,0.869577][0.650332,0.670602,0][0.156799,-2.03076,-0.0725138][0.510464,0.0744518,-0.85667][0.645687,0.548226,0][-0.0719849,-0.60939,-0.0853107][0.639918,-0.223102,-0.735344][0.837735,0.548001,0][0.270429,-1.9386,0.0032035][0.488741,0.0704843,0.869577][0.655164,0.592789,0][-0.0719849,-0.60939,-0.0853107][0.639918,-0.223102,-0.735344][0.837735,0.548001,0][0.063873,-0.513319,0.00376923][0.639918,-0.223102,-0.735344][0.847211,0.600429,0][0.270429,-1.9386,0.0032035][0.488741,0.0704843,0.869577][0.655164,0.592789,0][0.0383968,-2.0557,-0.0740662][0.0145074,-0.00663602,-0.999873][0.649795,0.703897,0][-0.2121,-0.634097,-0.0871357][0.0821811,-0.39861,-0.913431][0.843197,0.705953,0][0.156799,-2.03076,-0.0725138][0.510464,0.0744518,-0.85667][0.650332,0.736847,0][-0.2121,-0.634097,-0.0871357][0.0821811,-0.39861,-0.913431][0.843197,0.705953,0][-0.0719849,-0.60939,-0.0853107][0.639918,-0.223102,-0.735344][0.843197,0.744717,0][0.156799,-2.03076,-0.0725138][0.510464,0.0744518,-0.85667][0.650332,0.736847,0][-0.0813949,-2.07276,-0.0756173][0.0139106,-0.00677126,-0.99988][0.650332,0.670947,0][-0.352213,-0.658802,-0.0889604][0.0821811,-0.39861,-0.913431][0.843197,0.667188,0][0.0383968,-2.0557,-0.0740662][0.0145074,-0.00663602,-0.999873][0.649795,0.703897,0][-0.352213,-0.658802,-0.0889604][0.0821811,-0.39861,-0.913431][0.843197,0.667188,0][-0.2121,-0.634097,-0.0871357][0.0821811,-0.39861,-0.913431][0.843197,0.705953,0][0.0383968,-2.0557,-0.0740662][0.0145074,-0.00663602,-0.999873][0.649795,0.703897,0][-0.221561,-2.02536,-0.00320452][-0.483373,-0.100925,-0.869577][0.659847,0.624189,0][-0.514938,-0.61538,-0.00376954][-0.525021,-0.428512,0.735344][0.852711,0.612178,0][-0.0813949,-2.07276,-0.0756173][0.0139106,-0.00677126,-0.99988][0.650332,0.670947,0][-0.514938,-0.61538,-0.00376954][-0.525021,-0.428512,0.735344][0.852711,0.612178,0][-0.352213,-0.658802,-0.0889604][0.0821811,-0.39861,-0.913431][0.843197,0.667188,0][-0.0813949,-2.07276,-0.0756173][0.0139106,-0.00677126,-0.99988][0.650332,0.670947,0][-0.083266,-2.07309,0.0725128][-0.505143,-0.104628,0.85667][0.643778,0.548752,0][-0.354415,-0.659191,0.0853103][-0.525021,-0.428512,0.735344][0.835827,0.548527,0][-0.221561,-2.02536,-0.00320452][-0.483373,-0.100925,-0.869577][0.653253,0.593315,0][-0.354415,-0.659191,0.0853103][-0.525021,-0.428512,0.735344][0.835827,0.548527,0][-0.514938,-0.61538,-0.00376954][-0.525021,-0.428512,0.735344][0.845304,0.600955,0][-0.221561,-2.02536,-0.00320452][-0.483373,-0.100925,-0.869577][0.653253,0.593315,0][0.0365254,-2.05603,0.0740652][-0.0113628,-0.0111981,0.999873][0.649795,0.703551,0][-0.2143,-0.634485,0.0871354][0.0591078,-0.402679,0.913431][0.843196,0.705607,0][-0.083266,-2.07309,0.0725128][-0.505143,-0.104628,0.85667][0.650332,0.736501,0][-0.2143,-0.634485,0.0871354][0.0591078,-0.402679,0.913431][0.843196,0.705607,0][-0.354415,-0.659191,0.0853103][-0.525021,-0.428512,0.735344][0.843196,0.744372,0][-0.083266,-2.07309,0.0725128][-0.505143,-0.104628,0.85667][0.650332,0.736501,0][0.154928,-2.03109,0.0756162][0.488741,0.0704843,0.869577][0.650332,0.670602,0][-0.0741869,-0.609779,0.08896][0.0591078,-0.402679,0.913431][0.843196,0.666843,0][0.0365254,-2.05603,0.0740652][-0.0113628,-0.0111981,0.999873][0.649795,0.703551,0][-0.0741869,-0.609779,0.08896][0.0591078,-0.402679,0.913431][0.843196,0.666843,0][-0.2143,-0.634485,0.0871354][0.0591078,-0.402679,0.913431][0.843196,0.705607,0][0.0365254,-2.05603,0.0740652][-0.0113628,-0.0111981,0.999873][0.649795,0.703551,0][0.0365254,-2.05603,0.0740652][-0.0113628,-0.0111981,0.999873][0.649795,0.703551,0][-0.083266,-2.07309,0.0725128][-0.505143,-0.104628,0.85667][0.650332,0.736501,0][-0.221561,-2.02536,-0.00320452][-0.483373,-0.100925,-0.869577][0.653253,0.593315,0][0.154928,-2.03109,0.0756162][0.488741,0.0704843,0.869577][0.650332,0.670602,0][0.0365254,-2.05603,0.0740652][-0.0113628,-0.0111981,0.999873][0.649795,0.703551,0][-0.221561,-2.02536,-0.00320452][-0.483373,-0.100925,-0.869577][0.653253,0.593315,0][-0.221561,-2.02536,-0.00320452][-0.483373,-0.100925,-0.869577][0.653253,0.593315,0][-0.0813949,-2.07276,-0.0756173][0.0139106,-0.00677126,-0.99988][0.650332,0.670947,0][0.0383968,-2.0557,-0.0740662][0.0145074,-0.00663602,-0.999873][0.649795,0.703897,0][0.154928,-2.03109,0.0756162][0.488741,0.0704843,0.869577][0.650332,0.670602,0][-0.221561,-2.02536,-0.00320452][-0.483373,-0.100925,-0.869577][0.653253,0.593315,0][0.0383968,-2.0557,-0.0740662][0.0145074,-0.00663602,-0.999873][0.649795,0.703897,0][0.154928,-2.03109,0.0756162][0.488741,0.0704843,0.869577][0.650332,0.670602,0][0.0383968,-2.0557,-0.0740662][0.0145074,-0.00663602,-0.999873][0.649795,0.703897,0][0.156799,-2.03076,-0.0725138][0.510464,0.0744518,-0.85667][0.650332,0.736847,0][0.154928,-2.03109,0.0756162][0.488741,0.0704843,0.869577][0.650332,0.670602,0][0.156799,-2.03076,-0.0725138][0.510464,0.0744518,-0.85667][0.650332,0.736847,0][0.270429,-1.9386,0.0032035][0.488741,0.0704843,0.869577][0.655164,0.592789,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/StrawHat.mesh b/shareddata/charcustom/hats/fonts/StrawHat.mesh deleted file mode 100644 index 7db5d0d..0000000 --- a/shareddata/charcustom/hats/fonts/StrawHat.mesh +++ /dev/null @@ -1,3 +0,0 @@ -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/shareddata/charcustom/hats/fonts/Swordpack.mesh b/shareddata/charcustom/hats/fonts/Swordpack.mesh deleted file mode 100644 index ea3496b..0000000 --- a/shareddata/charcustom/hats/fonts/Swordpack.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -728 -[2.80772,-3.16823,-0.253079][0.254128,-0.435805,0.863419][0.087793,0.02921,0][2.60269,-3.02914,-0.194999][0.0126942,-0.217611,0.975953][0.094868,0.066134,0][2.73485,-3.24111,-0.283384][0.12438,-0.735568,0.665935][0.103431,0.02921,0][2.73485,-3.24111,-0.283384][0.12438,-0.735568,0.665935][0.103431,0.02921,0][2.60269,-3.02914,-0.194999][0.0126942,-0.217611,0.975953][0.094868,0.066134,0][2.47647,-3.15536,-0.247489][-0.218711,-0.561201,0.79826][0.121954,0.066134,0][2.80772,-3.16823,-0.253079][0.254128,-0.435805,0.863419][0.087793,0.02921,0][2.8978,-3.07816,-0.253079][0.435808,-0.25413,0.863417][0.068463,0.02921,0][2.60269,-3.02914,-0.194999][0.0126942,-0.217611,0.975953][0.094868,0.066134,0][2.60269,-3.02914,-0.194999][0.0126942,-0.217611,0.975953][0.094868,0.066134,0][2.8978,-3.07816,-0.253079][0.435808,-0.25413,0.863417][0.068463,0.02921,0][2.7587,-2.87312,-0.194999][0.217611,-0.0126947,0.975953][0.061388,0.066134,0][2.8978,-3.07816,-0.253079][0.435808,-0.25413,0.863417][0.068463,0.02921,0][2.97067,-3.00529,-0.283384][0.735571,-0.124382,0.665932][0.052825,0.02921,0][2.7587,-2.87312,-0.194999][0.217611,-0.0126947,0.975953][0.061388,0.066134,0][2.7587,-2.87312,-0.194999][0.217611,-0.0126947,0.975953][0.061388,0.066134,0][2.97067,-3.00529,-0.283384][0.735571,-0.124382,0.665932][0.052825,0.02921,0][2.88492,-2.7469,-0.247489][0.5612,0.218708,0.798261][0.034302,0.066134,0][2.97067,-3.00529,-0.283384][0.735571,-0.124382,0.665932][0.052825,0.02921,0][2.9985,-2.97745,-0.332418][0.999954,0.00963802,3.84586e-006][0.046852,0.02921,0][2.88492,-2.7469,-0.247489][0.5612,0.218708,0.798261][0.034302,0.066134,0][2.88492,-2.7469,-0.247489][0.5612,0.218708,0.798261][0.034302,0.066134,0][2.9985,-2.97745,-0.332418][0.999954,0.00963802,3.84586e-006][0.046852,0.02921,0][2.93314,-2.69869,-0.332418][0.90031,0.435248,2.65693e-006][0.023956,0.066134,0][2.97067,-3.00529,-0.381453][0.735573,-0.124382,-0.665929][0.052825,0.02921,0][2.88492,-2.7469,-0.417348][0.561202,0.21871,-0.798259][0.034302,0.066134,0][2.9985,-2.97745,-0.332418][0.999954,0.00963802,3.84586e-006][0.046852,0.02921,0][2.9985,-2.97745,-0.332418][0.999954,0.00963802,3.84586e-006][0.046852,0.02921,0][2.88492,-2.7469,-0.417348][0.561202,0.21871,-0.798259][0.034302,0.066134,0][2.93314,-2.69869,-0.332418][0.90031,0.435248,2.65693e-006][0.023956,0.066134,0][2.8978,-3.07816,-0.411758][0.435809,-0.254132,-0.863416][0.068463,0.02921,0][2.7587,-2.87312,-0.469838][0.217611,-0.0126947,-0.975953][0.061388,0.066134,0][2.97067,-3.00529,-0.381453][0.735573,-0.124382,-0.665929][0.052825,0.02921,0][2.97067,-3.00529,-0.381453][0.735573,-0.124382,-0.665929][0.052825,0.02921,0][2.7587,-2.87312,-0.469838][0.217611,-0.0126947,-0.975953][0.061388,0.066134,0][2.88492,-2.7469,-0.417348][0.561202,0.21871,-0.798259][0.034302,0.066134,0][2.8978,-3.07816,-0.411758][0.435809,-0.254132,-0.863416][0.068463,0.02921,0][2.80772,-3.16823,-0.411758][0.25413,-0.435806,-0.863418][0.087793,0.02921,0][2.7587,-2.87312,-0.469838][0.217611,-0.0126947,-0.975953][0.061388,0.066134,0][2.7587,-2.87312,-0.469838][0.217611,-0.0126947,-0.975953][0.061388,0.066134,0][2.80772,-3.16823,-0.411758][0.25413,-0.435806,-0.863418][0.087793,0.02921,0][2.60269,-3.02914,-0.469838][0.0126942,-0.217611,-0.975953][0.094868,0.066134,0][2.80772,-3.16823,-0.411758][0.25413,-0.435806,-0.863418][0.087793,0.02921,0][2.73485,-3.24111,-0.381453][0.124379,-0.735571,-0.665932][0.103431,0.02921,0][2.60269,-3.02914,-0.469838][0.0126942,-0.217611,-0.975953][0.094868,0.066134,0][2.60269,-3.02914,-0.469838][0.0126942,-0.217611,-0.975953][0.094868,0.066134,0][2.73485,-3.24111,-0.381453][0.124379,-0.735571,-0.665932][0.103431,0.02921,0][2.47647,-3.15536,-0.417348][-0.218712,-0.561203,-0.798258][0.121954,0.066134,0][2.73485,-3.24111,-0.381453][0.124379,-0.735571,-0.665932][0.103431,0.02921,0][2.70701,-3.26894,-0.332418][-0.00963754,-0.999954,3.83961e-006][0.109404,0.02921,0][2.47647,-3.15536,-0.417348][-0.218712,-0.561203,-0.798258][0.121954,0.066134,0][2.47647,-3.15536,-0.417348][-0.218712,-0.561203,-0.798258][0.121954,0.066134,0][2.70701,-3.26894,-0.332418][-0.00963754,-0.999954,3.83961e-006][0.109404,0.02921,0][2.42826,-3.20357,-0.332418][-0.435248,-0.900311,2.59831e-006][0.1323,0.066134,0][2.73485,-3.24111,-0.283384][0.12438,-0.735568,0.665935][0.103431,0.02921,0][2.47647,-3.15536,-0.247489][-0.218711,-0.561201,0.79826][0.121954,0.066134,0][2.70701,-3.26894,-0.332418][-0.00963754,-0.999954,3.83961e-006][0.109404,0.02921,0][2.70701,-3.26894,-0.332418][-0.00963754,-0.999954,3.83961e-006][0.109404,0.02921,0][2.47647,-3.15536,-0.247489][-0.218711,-0.561201,0.79826][0.121954,0.066134,0][2.42826,-3.20357,-0.332418][-0.435248,-0.900311,2.59831e-006][0.1323,0.066134,0][2.60269,-3.02914,-0.194999][0.0126942,-0.217611,0.975953][0.094868,0.066134,0][2.35558,-2.80616,-0.17374][-0.0771125,-0.126905,0.988913][0.097458,0.116573,0][2.47647,-3.15536,-0.247489][-0.218711,-0.561201,0.79826][0.121954,0.066134,0][2.47647,-3.15536,-0.247489][-0.218711,-0.561201,0.79826][0.121954,0.066134,0][2.35558,-2.80616,-0.17374][-0.0771125,-0.126905,0.988913][0.097458,0.116573,0][2.20983,-2.95191,-0.23435][-0.359675,-0.435707,0.825102][0.128734,0.116573,0][2.60269,-3.02914,-0.194999][0.0126942,-0.217611,0.975953][0.094868,0.066134,0][2.7587,-2.87312,-0.194999][0.217611,-0.0126947,0.975953][0.061388,0.066134,0][2.35558,-2.80616,-0.17374][-0.0771125,-0.126905,0.988913][0.097458,0.116573,0][2.35558,-2.80616,-0.17374][-0.0771125,-0.126905,0.988913][0.097458,0.116573,0][2.7587,-2.87312,-0.194999][0.217611,-0.0126947,0.975953][0.061388,0.066134,0][2.53573,-2.62601,-0.17374][0.126905,0.0771124,0.988913][0.058798,0.116573,0][2.7587,-2.87312,-0.194999][0.217611,-0.0126947,0.975953][0.061388,0.066134,0][2.88492,-2.7469,-0.247489][0.5612,0.218708,0.798261][0.034302,0.066134,0][2.53573,-2.62601,-0.17374][0.126905,0.0771124,0.988913][0.058798,0.116573,0][2.53573,-2.62601,-0.17374][0.126905,0.0771124,0.988913][0.058798,0.116573,0][2.88492,-2.7469,-0.247489][0.5612,0.218708,0.798261][0.034302,0.066134,0][2.68147,-2.48027,-0.23435][0.435706,0.359675,0.825102][0.027522,0.116573,0][2.88492,-2.7469,-0.247489][0.5612,0.218708,0.798261][0.034302,0.066134,0][2.93314,-2.69869,-0.332418][0.90031,0.435248,2.65693e-006][0.023956,0.066134,0][2.68147,-2.48027,-0.23435][0.435706,0.359675,0.825102][0.027522,0.116573,0][2.68147,-2.48027,-0.23435][0.435706,0.359675,0.825102][0.027522,0.116573,0][2.93314,-2.69869,-0.332418][0.90031,0.435248,2.65693e-006][0.023956,0.066134,0][2.73714,-2.4246,-0.332418][0.761191,0.648528,2.9076e-006][0.015575,0.116573,0][2.88492,-2.7469,-0.417348][0.561202,0.21871,-0.798259][0.034302,0.066134,0][2.68147,-2.48027,-0.430487][0.435708,0.359677,-0.825101][0.027522,0.116573,0][2.93314,-2.69869,-0.332418][0.90031,0.435248,2.65693e-006][0.023956,0.066134,0][2.93314,-2.69869,-0.332418][0.90031,0.435248,2.65693e-006][0.023956,0.066134,0][2.68147,-2.48027,-0.430487][0.435708,0.359677,-0.825101][0.027522,0.116573,0][2.73714,-2.4246,-0.332418][0.761191,0.648528,2.9076e-006][0.015575,0.116573,0][2.7587,-2.87312,-0.469838][0.217611,-0.0126947,-0.975953][0.061388,0.066134,0][2.53573,-2.62601,-0.491097][0.126905,0.0771124,-0.988913][0.058798,0.116573,0][2.88492,-2.7469,-0.417348][0.561202,0.21871,-0.798259][0.034302,0.066134,0][2.88492,-2.7469,-0.417348][0.561202,0.21871,-0.798259][0.034302,0.066134,0][2.53573,-2.62601,-0.491097][0.126905,0.0771124,-0.988913][0.058798,0.116573,0][2.68147,-2.48027,-0.430487][0.435708,0.359677,-0.825101][0.027522,0.116573,0][2.7587,-2.87312,-0.469838][0.217611,-0.0126947,-0.975953][0.061388,0.066134,0][2.60269,-3.02914,-0.469838][0.0126942,-0.217611,-0.975953][0.094868,0.066134,0][2.53573,-2.62601,-0.491097][0.126905,0.0771124,-0.988913][0.058798,0.116573,0][2.53573,-2.62601,-0.491097][0.126905,0.0771124,-0.988913][0.058798,0.116573,0][2.60269,-3.02914,-0.469838][0.0126942,-0.217611,-0.975953][0.094868,0.066134,0][2.35558,-2.80616,-0.491097][-0.0771124,-0.126905,-0.988913][0.097458,0.116573,0][2.60269,-3.02914,-0.469838][0.0126942,-0.217611,-0.975953][0.094868,0.066134,0][2.47647,-3.15536,-0.417348][-0.218712,-0.561203,-0.798258][0.121954,0.066134,0][2.35558,-2.80616,-0.491097][-0.0771124,-0.126905,-0.988913][0.097458,0.116573,0][2.35558,-2.80616,-0.491097][-0.0771124,-0.126905,-0.988913][0.097458,0.116573,0][2.47647,-3.15536,-0.417348][-0.218712,-0.561203,-0.798258][0.121954,0.066134,0][2.20983,-2.95191,-0.430487][-0.359676,-0.435708,-0.825101][0.128734,0.116573,0][2.47647,-3.15536,-0.417348][-0.218712,-0.561203,-0.798258][0.121954,0.066134,0][2.42826,-3.20357,-0.332418][-0.435248,-0.900311,2.59831e-006][0.1323,0.066134,0][2.20983,-2.95191,-0.430487][-0.359676,-0.435708,-0.825101][0.128734,0.116573,0][2.20983,-2.95191,-0.430487][-0.359676,-0.435708,-0.825101][0.128734,0.116573,0][2.42826,-3.20357,-0.332418][-0.435248,-0.900311,2.59831e-006][0.1323,0.066134,0][2.15416,-3.00758,-0.332418][-0.648527,-0.761192,2.42929e-006][0.14068,0.116573,0][2.47647,-3.15536,-0.247489][-0.218711,-0.561201,0.79826][0.121954,0.066134,0][2.20983,-2.95191,-0.23435][-0.359675,-0.435707,0.825102][0.128734,0.116573,0][2.42826,-3.20357,-0.332418][-0.435248,-0.900311,2.59831e-006][0.1323,0.066134,0][2.42826,-3.20357,-0.332418][-0.435248,-0.900311,2.59831e-006][0.1323,0.066134,0][2.20983,-2.95191,-0.23435][-0.359675,-0.435707,0.825102][0.128734,0.116573,0][2.15416,-3.00758,-0.332418][-0.648527,-0.761192,2.42929e-006][0.14068,0.116573,0][2.20983,-2.95191,-0.23435][-0.359675,-0.435707,0.825102][0.128734,0.116573,0][2.35558,-2.80616,-0.17374][-0.0771125,-0.126905,0.988913][0.097458,0.116573,0][-1.85529,1.11321,-0.23435][-0.393508,-0.393508,0.830845][0.128734,0.988922,0][-1.85529,1.11321,-0.23435][-0.393508,-0.393508,0.830845][0.128734,0.988922,0][2.35558,-2.80616,-0.17374][-0.0771125,-0.126905,0.988913][0.097458,0.116573,0][-1.70955,1.25896,-0.17374][-0.100771,-0.100771,0.989793][0.097458,0.988922,0][2.35558,-2.80616,-0.17374][-0.0771125,-0.126905,0.988913][0.097458,0.116573,0][2.53573,-2.62601,-0.17374][0.126905,0.0771124,0.988913][0.058798,0.116573,0][-1.70955,1.25896,-0.17374][-0.100771,-0.100771,0.989793][0.097458,0.988922,0][-1.70955,1.25896,-0.17374][-0.100771,-0.100771,0.989793][0.097458,0.988922,0][2.53573,-2.62601,-0.17374][0.126905,0.0771124,0.988913][0.058798,0.116573,0][-1.52939,1.43911,-0.17374][0.10077,0.10077,0.989793][0.058798,0.988922,0][2.53573,-2.62601,-0.17374][0.126905,0.0771124,0.988913][0.058798,0.116573,0][2.68147,-2.48027,-0.23435][0.435706,0.359675,0.825102][0.027522,0.116573,0][-1.52939,1.43911,-0.17374][0.10077,0.10077,0.989793][0.058798,0.988922,0][-1.52939,1.43911,-0.17374][0.10077,0.10077,0.989793][0.058798,0.988922,0][2.68147,-2.48027,-0.23435][0.435706,0.359675,0.825102][0.027522,0.116573,0][-1.38365,1.58486,-0.23435][0.393508,0.393508,0.830845][0.027522,0.988922,0][2.68147,-2.48027,-0.23435][0.435706,0.359675,0.825102][0.027522,0.116573,0][2.73714,-2.4246,-0.332418][0.761191,0.648528,2.9076e-006][0.015575,0.116573,0][-1.38365,1.58486,-0.23435][0.393508,0.393508,0.830845][0.027522,0.988922,0][-1.38365,1.58486,-0.23435][0.393508,0.393508,0.830845][0.027522,0.988922,0][2.73714,-2.4246,-0.332418][0.761191,0.648528,2.9076e-006][0.015575,0.116573,0][-1.32798,1.64053,-0.332418][0.707107,0.707107,2.70065e-006][0.015575,0.988922,0][2.73714,-2.4246,-0.332418][0.761191,0.648528,2.9076e-006][0.015575,0.116573,0][2.68147,-2.48027,-0.430487][0.435708,0.359677,-0.825101][0.027522,0.116573,0][-1.32798,1.64053,-0.332418][0.707107,0.707107,2.70065e-006][0.015575,0.988922,0][-1.32798,1.64053,-0.332418][0.707107,0.707107,2.70065e-006][0.015575,0.988922,0][2.68147,-2.48027,-0.430487][0.435708,0.359677,-0.825101][0.027522,0.116573,0][-1.38365,1.58486,-0.430487][0.39351,0.393509,-0.830843][0.027522,0.988922,0][2.68147,-2.48027,-0.430487][0.435708,0.359677,-0.825101][0.027522,0.116573,0][2.53573,-2.62601,-0.491097][0.126905,0.0771124,-0.988913][0.058798,0.116573,0][-1.38365,1.58486,-0.430487][0.39351,0.393509,-0.830843][0.027522,0.988922,0][-1.38365,1.58486,-0.430487][0.39351,0.393509,-0.830843][0.027522,0.988922,0][2.53573,-2.62601,-0.491097][0.126905,0.0771124,-0.988913][0.058798,0.116573,0][-1.52939,1.43911,-0.491097][0.10077,0.10077,-0.989793][0.058798,0.988922,0][2.53573,-2.62601,-0.491097][0.126905,0.0771124,-0.988913][0.058798,0.116573,0][2.35558,-2.80616,-0.491097][-0.0771124,-0.126905,-0.988913][0.097458,0.116573,0][-1.52939,1.43911,-0.491097][0.10077,0.10077,-0.989793][0.058798,0.988922,0][-1.52939,1.43911,-0.491097][0.10077,0.10077,-0.989793][0.058798,0.988922,0][2.35558,-2.80616,-0.491097][-0.0771124,-0.126905,-0.988913][0.097458,0.116573,0][-1.70955,1.25896,-0.491097][-0.100771,-0.100771,-0.989793][0.097458,0.988922,0][2.35558,-2.80616,-0.491097][-0.0771124,-0.126905,-0.988913][0.097458,0.116573,0][2.20983,-2.95191,-0.430487][-0.359676,-0.435708,-0.825101][0.128734,0.116573,0][-1.70955,1.25896,-0.491097][-0.100771,-0.100771,-0.989793][0.097458,0.988922,0][-1.70955,1.25896,-0.491097][-0.100771,-0.100771,-0.989793][0.097458,0.988922,0][2.20983,-2.95191,-0.430487][-0.359676,-0.435708,-0.825101][0.128734,0.116573,0][-1.85529,1.11321,-0.430487][-0.39351,-0.39351,-0.830843][0.128734,0.988922,0][2.20983,-2.95191,-0.430487][-0.359676,-0.435708,-0.825101][0.128734,0.116573,0][2.15416,-3.00758,-0.332418][-0.648527,-0.761192,2.42929e-006][0.14068,0.116573,0][-1.85529,1.11321,-0.430487][-0.39351,-0.39351,-0.830843][0.128734,0.988922,0][-1.85529,1.11321,-0.430487][-0.39351,-0.39351,-0.830843][0.128734,0.988922,0][2.15416,-3.00758,-0.332418][-0.648527,-0.761192,2.42929e-006][0.14068,0.116573,0][-1.91096,1.05754,-0.332418][-0.707107,-0.707107,3.67386e-006][0.14068,0.988922,0][2.15416,-3.00758,-0.332418][-0.648527,-0.761192,2.42929e-006][0.14068,0.116573,0][2.20983,-2.95191,-0.23435][-0.359675,-0.435707,0.825102][0.128734,0.116573,0][-1.91096,1.05754,-0.332418][-0.707107,-0.707107,3.67386e-006][0.14068,0.988922,0][-1.91096,1.05754,-0.332418][-0.707107,-0.707107,3.67386e-006][0.14068,0.988922,0][2.20983,-2.95191,-0.23435][-0.359675,-0.435707,0.825102][0.128734,0.116573,0][-1.85529,1.11321,-0.23435][-0.393508,-0.393508,0.830845][0.128734,0.988922,0][2.80772,-3.16823,-0.253079][0.254128,-0.435805,0.863419][0.087793,0.02921,0][2.73485,-3.24111,-0.283384][0.12438,-0.735568,0.665935][0.103431,0.02921,0][2.91574,-3.18618,-0.332418][0.707105,-0.707108,3.282e-006][0.078128,0.015695,0][2.8978,-3.07816,-0.253079][0.435808,-0.25413,0.863417][0.068463,0.02921,0][2.80772,-3.16823,-0.253079][0.254128,-0.435805,0.863419][0.087793,0.02921,0][2.91574,-3.18618,-0.332418][0.707105,-0.707108,3.282e-006][0.078128,0.015695,0][2.97067,-3.00529,-0.283384][0.735571,-0.124382,0.665932][0.052825,0.02921,0][2.8978,-3.07816,-0.253079][0.435808,-0.25413,0.863417][0.068463,0.02921,0][2.91574,-3.18618,-0.332418][0.707105,-0.707108,3.282e-006][0.078128,0.015695,0][2.9985,-2.97745,-0.332418][0.999954,0.00963802,3.84586e-006][0.046852,0.02921,0][2.97067,-3.00529,-0.283384][0.735571,-0.124382,0.665932][0.052825,0.02921,0][2.91574,-3.18618,-0.332418][0.707105,-0.707108,3.282e-006][0.078128,0.015695,0][2.97067,-3.00529,-0.381453][0.735573,-0.124382,-0.665929][0.052825,0.02921,0][2.9985,-2.97745,-0.332418][0.999954,0.00963802,3.84586e-006][0.046852,0.02921,0][2.91574,-3.18618,-0.332418][0.707105,-0.707108,3.282e-006][0.078128,0.015695,0][2.8978,-3.07816,-0.411758][0.435809,-0.254132,-0.863416][0.068463,0.02921,0][2.97067,-3.00529,-0.381453][0.735573,-0.124382,-0.665929][0.052825,0.02921,0][2.91574,-3.18618,-0.332418][0.707105,-0.707108,3.282e-006][0.078128,0.015695,0][2.80772,-3.16823,-0.411758][0.25413,-0.435806,-0.863418][0.087793,0.02921,0][2.8978,-3.07816,-0.411758][0.435809,-0.254132,-0.863416][0.068463,0.02921,0][2.91574,-3.18618,-0.332418][0.707105,-0.707108,3.282e-006][0.078128,0.015695,0][2.73485,-3.24111,-0.381453][0.124379,-0.735571,-0.665932][0.103431,0.02921,0][2.80772,-3.16823,-0.411758][0.25413,-0.435806,-0.863418][0.087793,0.02921,0][2.91574,-3.18618,-0.332418][0.707105,-0.707108,3.282e-006][0.078128,0.015695,0][2.70701,-3.26894,-0.332418][-0.00963754,-0.999954,3.83961e-006][0.109404,0.02921,0][2.73485,-3.24111,-0.381453][0.124379,-0.735571,-0.665932][0.103431,0.02921,0][2.91574,-3.18618,-0.332418][0.707105,-0.707108,3.282e-006][0.078128,0.015695,0][2.73485,-3.24111,-0.283384][0.12438,-0.735568,0.665935][0.103431,0.02921,0][2.70701,-3.26894,-0.332418][-0.00963754,-0.999954,3.83961e-006][0.109404,0.02921,0][2.91574,-3.18618,-0.332418][0.707105,-0.707108,3.282e-006][0.078128,0.015695,0][-0.959183,2.00932,-0.537819][0.337636,0.337637,-1.49646][0.375571,0.960472,0][-1.19801,1.7705,-0.645588][0.21127,0.554398,-3.02887][0.375571,0.881937,0][-1.04076,2.0909,-0.537819][-0.638752,2.47756,-2.20951][0.402397,0.960472,0][-1.04076,2.0909,-0.537819][-0.638752,2.47756,-2.20951][0.402397,0.960472,0][-1.19801,1.7705,-0.645588][0.21127,0.554398,-3.02887][0.375571,0.881937,0][-1.51929,1.8653,-0.645588][-0.404205,0.599272,-0.691007][0.418243,0.844701,0][-1.19801,1.7705,-0.645588][0.21127,0.554398,-3.02887][0.375571,0.881937,0][-2.04093,0.927571,-0.645588][-0.554398,-0.211271,-3.02887][0.375571,0.60475,0][-1.51929,1.8653,-0.645588][-0.404205,0.599272,-0.691007][0.418243,0.844701,0][-1.51929,1.8653,-0.645588][-0.404205,0.599272,-0.691007][0.418243,0.844701,0][-2.04093,0.927571,-0.645588][-0.554398,-0.211271,-3.02887][0.375571,0.60475,0][-2.13574,1.24885,-0.645588][-0.599273,0.404206,-0.691006][0.418243,0.641986,0][-2.27976,0.688746,-0.537819][-0.439279,-0.439279,-0.783625][0.375571,0.526215,0][-2.36133,0.770323,-0.537819][-0.749297,-0.0686839,-0.658663][0.402397,0.526215,0][-2.04093,0.927571,-0.645588][-0.554398,-0.211271,-3.02887][0.375571,0.60475,0][-2.04093,0.927571,-0.645588][-0.554398,-0.211271,-3.02887][0.375571,0.60475,0][-2.36133,0.770323,-0.537819][-0.749297,-0.0686839,-0.658663][0.402397,0.526215,0][-2.13574,1.24885,-0.645588][-0.599273,0.404206,-0.691006][0.418243,0.641986,0][-1.51929,1.8653,-0.645588][-0.404205,0.599272,-0.691007][0.418243,0.844701,0][-1.44957,1.93502,-0.332418][-0.541546,0.840671,2.23949e-007][0.443985,0.867628,0][-1.04076,2.0909,-0.537819][-0.638752,2.47756,-2.20951][0.402397,0.960472,0][-1.04076,2.0909,-0.537819][-0.638752,2.47756,-2.20951][0.402397,0.960472,0][-1.44957,1.93502,-0.332418][-0.541546,0.840671,2.23949e-007][0.443985,0.867628,0][-0.953889,2.17777,-0.332418][-0.459297,0.937878,-0.202404][0.402397,0.989038,0][-1.51929,1.8653,-0.645588][-0.404205,0.599272,-0.691007][0.418243,0.844701,0][-2.13574,1.24885,-0.645588][-0.599273,0.404206,-0.691006][0.418243,0.641986,0][-1.44957,1.93502,-0.332418][-0.541546,0.840671,2.23949e-007][0.443985,0.867628,0][-1.44957,1.93502,-0.332418][-0.541546,0.840671,2.23949e-007][0.443985,0.867628,0][-2.13574,1.24885,-0.645588][-0.599273,0.404206,-0.691006][0.418243,0.641986,0][-2.20546,1.17913,-0.332418][-0.840672,0.541545,2.03097e-007][0.443985,0.61906,0][-2.13574,1.24885,-0.645588][-0.599273,0.404206,-0.691006][0.418243,0.641986,0][-2.36133,0.770323,-0.537819][-0.749297,-0.0686839,-0.658663][0.402397,0.526215,0][-2.20546,1.17913,-0.332418][-0.840672,0.541545,2.03097e-007][0.443985,0.61906,0][-2.20546,1.17913,-0.332418][-0.840672,0.541545,2.03097e-007][0.443985,0.61906,0][-2.36133,0.770323,-0.537819][-0.749297,-0.0686839,-0.658663][0.402397,0.526215,0][-2.4482,0.683453,-0.332418][-0.967543,-0.252708,8.46246e-007][0.402397,0.497649,0][-1.51929,1.8653,-0.0192494][0.0621585,0.210636,2.78617][0.418243,0.844701,0][-1.19801,1.7705,-0.0192494][0.12863,-0.399121,0.907831][0.375571,0.881937,0][-1.04076,2.0909,-0.127018][0.324643,0.455136,1.82683][0.402397,0.960472,0][-1.04076,2.0909,-0.127018][0.324643,0.455136,1.82683][0.402397,0.960472,0][-1.19801,1.7705,-0.0192494][0.12863,-0.399121,0.907831][0.375571,0.881937,0][-0.959183,2.00932,-0.127018][0.337636,0.337637,1.49646][0.375571,0.960472,0][-1.51929,1.8653,-0.0192494][0.0621585,0.210636,2.78617][0.418243,0.844701,0][-2.13574,1.24885,-0.0192494][-0.210636,-0.0621588,2.78616][0.418243,0.641986,0][-1.19801,1.7705,-0.0192494][0.12863,-0.399121,0.907831][0.375571,0.881937,0][-1.19801,1.7705,-0.0192494][0.12863,-0.399121,0.907831][0.375571,0.881937,0][-2.13574,1.24885,-0.0192494][-0.210636,-0.0621588,2.78616][0.418243,0.641986,0][-2.04093,0.927571,-0.0192494][0.399121,-0.12863,0.907831][0.375571,0.60475,0][-2.13574,1.24885,-0.0192494][-0.210636,-0.0621588,2.78616][0.418243,0.641986,0][-2.36133,0.770323,-0.127018][-0.749296,-0.0686834,0.658663][0.402397,0.526215,0][-2.04093,0.927571,-0.0192494][0.399121,-0.12863,0.907831][0.375571,0.60475,0][-2.04093,0.927571,-0.0192494][0.399121,-0.12863,0.907831][0.375571,0.60475,0][-2.36133,0.770323,-0.127018][-0.749296,-0.0686834,0.658663][0.402397,0.526215,0][-2.27976,0.688746,-0.127018][-0.439279,-0.439279,0.783625][0.375571,0.526215,0][-0.696092,1.19249,-0.332418][-0.755056,-0.65566,0][0.198011,0.869426,0][-1.19801,1.7705,-0.0192494][0.12863,-0.399121,0.907831][0.375571,0.881937,0][-1.19801,1.7705,-0.645588][0.21127,0.554398,-3.02887][0.375571,0.881937,0][-1.19801,1.7705,-0.0192494][0.12863,-0.399121,0.907831][0.375571,0.881937,0][-2.04093,0.927571,-0.0192494][0.399121,-0.12863,0.907831][0.375571,0.60475,0][-1.19801,1.7705,-0.645588][0.21127,0.554398,-3.02887][0.375571,0.881937,0][-1.19801,1.7705,-0.645588][0.21127,0.554398,-3.02887][0.375571,0.881937,0][-2.04093,0.927571,-0.0192494][0.399121,-0.12863,0.907831][0.375571,0.60475,0][-2.04093,0.927571,-0.645588][-0.554398,-0.211271,-3.02887][0.375571,0.60475,0][-1.46293,0.425655,-0.332418][-0.0450693,-0.231125,0.116811][0.198011,0.617261,0][-2.27976,0.688746,-0.127018][-0.439279,-0.439279,0.783625][0.375571,0.526215,0][-2.36663,0.601876,-0.332418][-0.219454,-1.12541,0.568783][0.375571,0.497649,0][-2.27976,0.688746,-0.537819][-0.439279,-0.439279,-0.783625][0.375571,0.526215,0][-2.36663,0.601876,-0.332418][-0.219454,-1.12541,0.568783][0.375571,0.497649,0][-2.36133,0.770323,-0.537819][-0.749297,-0.0686839,-0.658663][0.402397,0.526215,0][-2.36133,0.770323,-0.537819][-0.749297,-0.0686839,-0.658663][0.402397,0.526215,0][-2.36663,0.601876,-0.332418][-0.219454,-1.12541,0.568783][0.375571,0.497649,0][-2.4482,0.683453,-0.332418][-0.967543,-0.252708,8.46246e-007][0.402397,0.497649,0][-0.872313,2.09619,-0.332418][0.707112,0.707102,2.45392e-006][0.375571,0.989038,0][-0.959183,2.00932,-0.537819][0.337636,0.337637,-1.49646][0.375571,0.960472,0][-0.953889,2.17777,-0.332418][-0.459297,0.937878,-0.202404][0.402397,0.989038,0][-0.953889,2.17777,-0.332418][-0.459297,0.937878,-0.202404][0.402397,0.989038,0][-0.959183,2.00932,-0.537819][0.337636,0.337637,-1.49646][0.375571,0.960472,0][-1.04076,2.0909,-0.537819][-0.638752,2.47756,-2.20951][0.402397,0.960472,0][-2.04093,0.927571,-0.0192494][0.399121,-0.12863,0.907831][0.375571,0.60475,0][-2.27976,0.688746,-0.127018][-0.439279,-0.439279,0.783625][0.375571,0.526215,0][-1.46293,0.425655,-0.332418][-0.0450693,-0.231125,0.116811][0.198011,0.617261,0][-2.04093,0.927571,-0.645588][-0.554398,-0.211271,-3.02887][0.375571,0.60475,0][-1.46293,0.425655,-0.332418][-0.0450693,-0.231125,0.116811][0.198011,0.617261,0][-2.27976,0.688746,-0.537819][-0.439279,-0.439279,-0.783625][0.375571,0.526215,0][-2.04093,0.927571,-0.0192494][0.399121,-0.12863,0.907831][0.375571,0.60475,0][-1.46293,0.425655,-0.332418][-0.0450693,-0.231125,0.116811][0.198011,0.617261,0][-2.04093,0.927571,-0.645588][-0.554398,-0.211271,-3.02887][0.375571,0.60475,0][-0.696092,1.19249,-0.332418][-0.755056,-0.65566,0][0.198011,0.869426,0][-1.19801,1.7705,-0.645588][0.21127,0.554398,-3.02887][0.375571,0.881937,0][-0.959183,2.00932,-0.537819][0.337636,0.337637,-1.49646][0.375571,0.960472,0][-0.872313,2.09619,-0.332418][0.707112,0.707102,2.45392e-006][0.375571,0.989038,0][-0.696092,1.19249,-0.332418][-0.755056,-0.65566,0][0.198011,0.869426,0][-0.959183,2.00932,-0.537819][0.337636,0.337637,-1.49646][0.375571,0.960472,0][-0.959183,2.00932,-0.127018][0.337636,0.337637,1.49646][0.375571,0.960472,0][-1.19801,1.7705,-0.0192494][0.12863,-0.399121,0.907831][0.375571,0.881937,0][-0.696092,1.19249,-0.332418][-0.755056,-0.65566,0][0.198011,0.869426,0][-2.36663,0.601876,-0.332418][-0.219454,-1.12541,0.568783][0.375571,0.497649,0][-2.27976,0.688746,-0.127018][-0.439279,-0.439279,0.783625][0.375571,0.526215,0][-2.4482,0.683453,-0.332418][-0.967543,-0.252708,8.46246e-007][0.402397,0.497649,0][-2.4482,0.683453,-0.332418][-0.967543,-0.252708,8.46246e-007][0.402397,0.497649,0][-2.27976,0.688746,-0.127018][-0.439279,-0.439279,0.783625][0.375571,0.526215,0][-2.36133,0.770323,-0.127018][-0.749296,-0.0686834,0.658663][0.402397,0.526215,0][-2.4482,0.683453,-0.332418][-0.967543,-0.252708,8.46246e-007][0.402397,0.497649,0][-2.36133,0.770323,-0.127018][-0.749296,-0.0686834,0.658663][0.402397,0.526215,0][-2.20546,1.17913,-0.332418][-0.840672,0.541545,2.03097e-007][0.443985,0.61906,0][-2.20546,1.17913,-0.332418][-0.840672,0.541545,2.03097e-007][0.443985,0.61906,0][-2.36133,0.770323,-0.127018][-0.749296,-0.0686834,0.658663][0.402397,0.526215,0][-2.13574,1.24885,-0.0192494][-0.210636,-0.0621588,2.78616][0.418243,0.641986,0][-1.44957,1.93502,-0.332418][-0.541546,0.840671,2.23949e-007][0.443985,0.867628,0][-2.20546,1.17913,-0.332418][-0.840672,0.541545,2.03097e-007][0.443985,0.61906,0][-1.51929,1.8653,-0.0192494][0.0621585,0.210636,2.78617][0.418243,0.844701,0][-1.51929,1.8653,-0.0192494][0.0621585,0.210636,2.78617][0.418243,0.844701,0][-2.20546,1.17913,-0.332418][-0.840672,0.541545,2.03097e-007][0.443985,0.61906,0][-2.13574,1.24885,-0.0192494][-0.210636,-0.0621588,2.78616][0.418243,0.641986,0][-0.953889,2.17777,-0.332418][-0.459297,0.937878,-0.202404][0.402397,0.989038,0][-1.44957,1.93502,-0.332418][-0.541546,0.840671,2.23949e-007][0.443985,0.867628,0][-1.04076,2.0909,-0.127018][0.324643,0.455136,1.82683][0.402397,0.960472,0][-1.04076,2.0909,-0.127018][0.324643,0.455136,1.82683][0.402397,0.960472,0][-1.44957,1.93502,-0.332418][-0.541546,0.840671,2.23949e-007][0.443985,0.867628,0][-1.51929,1.8653,-0.0192494][0.0621585,0.210636,2.78617][0.418243,0.844701,0][-0.959183,2.00932,-0.127018][0.337636,0.337637,1.49646][0.375571,0.960472,0][-0.872313,2.09619,-0.332418][0.707112,0.707102,2.45392e-006][0.375571,0.989038,0][-1.04076,2.0909,-0.127018][0.324643,0.455136,1.82683][0.402397,0.960472,0][-1.04076,2.0909,-0.127018][0.324643,0.455136,1.82683][0.402397,0.960472,0][-0.872313,2.09619,-0.332418][0.707112,0.707102,2.45392e-006][0.375571,0.989038,0][-0.953889,2.17777,-0.332418][-0.459297,0.937878,-0.202404][0.402397,0.989038,0][-1.46293,0.425655,-0.332418][-0.0450693,-0.231125,0.116811][0.198011,0.617261,0][-2.36663,0.601876,-0.332418][-0.219454,-1.12541,0.568783][0.375571,0.497649,0][-2.27976,0.688746,-0.537819][-0.439279,-0.439279,-0.783625][0.375571,0.526215,0][-0.959183,2.00932,-0.127018][0.337636,0.337637,1.49646][0.375571,0.960472,0][-0.696092,1.19249,-0.332418][-0.755056,-0.65566,0][0.198011,0.869426,0][-0.872313,2.09619,-0.332418][0.707112,0.707102,2.45392e-006][0.375571,0.989038,0][-3.06902,2.86025,-0.230599][-0.53006,0.696524,0.483622][0.253317,0.832025,0][-2.99521,2.83157,-0.156062][-0.173581,0.488451,0.855152][0.242225,0.80684,0][-3.01914,2.91013,-0.269491][-0.393467,0.861527,0.320867][0.2288,0.832025,0][-3.01914,2.91013,-0.269491][-0.393467,0.861527,0.320867][0.2288,0.832025,0][-2.99521,2.83157,-0.156062][-0.173581,0.488451,0.855152][0.242225,0.80684,0][-2.9088,2.91798,-0.223424][0.0986212,0.810064,0.577989][0.199759,0.80684,0][-3.06902,2.86025,-0.230599][-0.53006,0.696524,0.483622][0.253317,0.832025,0][-3.13068,2.79858,-0.230599][-0.696523,0.530062,0.483623][0.283622,0.832025,0][-2.99521,2.83157,-0.156062][-0.173581,0.488451,0.855152][0.242225,0.80684,0][-2.99521,2.83157,-0.156062][-0.173581,0.488451,0.855152][0.242225,0.80684,0][-3.13068,2.79858,-0.230599][-0.696523,0.530062,0.483623][0.283622,0.832025,0][-3.10201,2.72477,-0.156062][-0.488451,0.173583,0.855152][0.294715,0.80684,0][-3.13068,2.79858,-0.230599][-0.696523,0.530062,0.483623][0.283622,0.832025,0][-3.18057,2.7487,-0.269491][-0.861527,0.393467,0.320867][0.30814,0.832025,0][-3.10201,2.72477,-0.156062][-0.488451,0.173583,0.855152][0.294715,0.80684,0][-3.10201,2.72477,-0.156062][-0.488451,0.173583,0.855152][0.294715,0.80684,0][-3.18057,2.7487,-0.269491][-0.861527,0.393467,0.320867][0.30814,0.832025,0][-3.18841,2.63836,-0.223424][-0.810062,-0.0986245,0.577991][0.33718,0.80684,0][-3.18057,2.7487,-0.269491][-0.861527,0.393467,0.320867][0.30814,0.832025,0][-3.19963,2.72964,-0.332418][-0.943337,0.331835,1.992e-006][0.317505,0.832025,0][-3.18841,2.63836,-0.223424][-0.810062,-0.0986245,0.577991][0.33718,0.80684,0][-3.18841,2.63836,-0.223424][-0.810062,-0.0986245,0.577991][0.33718,0.80684,0][-3.19963,2.72964,-0.332418][-0.943337,0.331835,1.992e-006][0.317505,0.832025,0][-3.22142,2.60536,-0.332418][-0.972936,-0.231076,1.31754e-006][0.353401,0.80684,0][-3.18057,2.7487,-0.395347][-0.861527,0.393466,-0.320867][0.30814,0.832025,0][-3.18841,2.63836,-0.441413][-0.810063,-0.0986273,-0.577989][0.33718,0.80684,0][-3.19963,2.72964,-0.332418][-0.943337,0.331835,1.992e-006][0.317505,0.832025,0][-3.19963,2.72964,-0.332418][-0.943337,0.331835,1.992e-006][0.317505,0.832025,0][-3.18841,2.63836,-0.441413][-0.810063,-0.0986273,-0.577989][0.33718,0.80684,0][-3.22142,2.60536,-0.332418][-0.972936,-0.231076,1.31754e-006][0.353401,0.80684,0][-3.13068,2.79858,-0.434238][-0.696523,0.530065,-0.483618][0.283622,0.832025,0][-3.10201,2.72477,-0.508776][-0.488451,0.17358,-0.855153][0.294715,0.80684,0][-3.18057,2.7487,-0.395347][-0.861527,0.393466,-0.320867][0.30814,0.832025,0][-3.18057,2.7487,-0.395347][-0.861527,0.393466,-0.320867][0.30814,0.832025,0][-3.10201,2.72477,-0.508776][-0.488451,0.17358,-0.855153][0.294715,0.80684,0][-3.18841,2.63836,-0.441413][-0.810063,-0.0986273,-0.577989][0.33718,0.80684,0][-3.13068,2.79858,-0.434238][-0.696523,0.530065,-0.483618][0.283622,0.832025,0][-3.06902,2.86025,-0.434238][-0.530064,0.696524,-0.483618][0.253317,0.832025,0][-3.10201,2.72477,-0.508776][-0.488451,0.17358,-0.855153][0.294715,0.80684,0][-3.10201,2.72477,-0.508776][-0.488451,0.17358,-0.855153][0.294715,0.80684,0][-3.06902,2.86025,-0.434238][-0.530064,0.696524,-0.483618][0.253317,0.832025,0][-2.99521,2.83157,-0.508776][-0.173578,0.488451,-0.855153][0.242225,0.80684,0][-3.06902,2.86025,-0.434238][-0.530064,0.696524,-0.483618][0.253317,0.832025,0][-3.01914,2.91013,-0.395347][-0.393466,0.861527,-0.320867][0.2288,0.832025,0][-2.99521,2.83157,-0.508776][-0.173578,0.488451,-0.855153][0.242225,0.80684,0][-2.99521,2.83157,-0.508776][-0.173578,0.488451,-0.855153][0.242225,0.80684,0][-3.01914,2.91013,-0.395347][-0.393466,0.861527,-0.320867][0.2288,0.832025,0][-2.9088,2.91798,-0.441413][0.0986241,0.810065,-0.577986][0.199759,0.80684,0][-3.01914,2.91013,-0.395347][-0.393466,0.861527,-0.320867][0.2288,0.832025,0][-3.00008,2.92919,-0.332418][-0.331834,0.943338,2.01474e-006][0.219435,0.832025,0][-2.9088,2.91798,-0.441413][0.0986241,0.810065,-0.577986][0.199759,0.80684,0][-2.9088,2.91798,-0.441413][0.0986241,0.810065,-0.577986][0.199759,0.80684,0][-3.00008,2.92919,-0.332418][-0.331834,0.943338,2.01474e-006][0.219435,0.832025,0][-2.8758,2.95098,-0.332418][0.231074,0.972936,1.35816e-006][0.183539,0.80684,0][-3.01914,2.91013,-0.269491][-0.393467,0.861527,0.320867][0.2288,0.832025,0][-2.9088,2.91798,-0.223424][0.0986212,0.810064,0.577989][0.199759,0.80684,0][-3.00008,2.92919,-0.332418][-0.331834,0.943338,2.01474e-006][0.219435,0.832025,0][-3.00008,2.92919,-0.332418][-0.331834,0.943338,2.01474e-006][0.219435,0.832025,0][-2.9088,2.91798,-0.223424][0.0986212,0.810064,0.577989][0.199759,0.80684,0][-2.8758,2.95098,-0.332418][0.231074,0.972936,1.35816e-006][0.183539,0.80684,0][-2.74582,2.75496,-0.267746][0.751983,0.280522,0.596514][0.517434,0.984299,0][-2.8297,2.67108,-0.175059][0.429737,-0.0219626,0.902687][0.45257,0.984299,0][-1.78072,1.78986,-0.267746][-0.180644,0.879376,0.440528][0.517434,0.467746,0][-1.78072,1.78986,-0.267746][-0.180644,0.879376,0.440528][0.517434,0.467746,0][-2.8297,2.67108,-0.175059][0.429737,-0.0219626,0.902687][0.45257,0.984299,0][-1.8646,1.70598,-0.175059][-0.415694,0.69905,0.581832][0.45257,0.467747,0][-2.8297,2.67108,-0.175059][0.429737,-0.0219626,0.902687][0.969123,0.984299,0][-2.94152,2.55926,-0.175059][0.0219611,-0.429737,0.902687][0.892561,0.984299,0][-1.8646,1.70598,-0.175059][-0.415694,0.69905,0.581832][0.969123,0.467747,0][-1.8646,1.70598,-0.175059][-0.415694,0.69905,0.581832][0.969123,0.467747,0][-2.94152,2.55926,-0.175059][0.0219611,-0.429737,0.902687][0.892561,0.984299,0][-1.97642,1.59416,-0.175059][-0.699048,0.415694,0.581834][0.892561,0.467747,0][-2.94152,2.55926,-0.175059][0.0219611,-0.429737,0.902687][0.892561,0.984299,0][-3.0254,2.47538,-0.267746][-0.280521,-0.75198,0.596519][0.827696,0.984299,0][-1.97642,1.59416,-0.175059][-0.699048,0.415694,0.581834][0.892561,0.467747,0][-1.97642,1.59416,-0.175059][-0.699048,0.415694,0.581834][0.892561,0.467747,0][-3.0254,2.47538,-0.267746][-0.280521,-0.75198,0.596519][0.827696,0.984299,0][-2.0603,1.51028,-0.267746][-0.879371,0.180647,0.440538][0.827696,0.467747,0][-3.0254,2.47538,-0.267746][-0.280521,-0.75198,0.596519][0.827696,0.984299,0][-3.05336,2.44742,-0.332418][-0.463552,-0.88607,-5.33228e-006][0.801703,0.984298,0][-2.0603,1.51028,-0.267746][-0.879371,0.180647,0.440538][0.827696,0.467747,0][-2.0603,1.51028,-0.267746][-0.879371,0.180647,0.440538][0.827696,0.467747,0][-3.05336,2.44742,-0.332418][-0.463552,-0.88607,-5.33228e-006][0.801703,0.984298,0][-2.08826,1.48232,-0.332418][-0.975541,0.219817,0][0.801703,0.467746,0][-3.05336,2.44742,-0.332418][-0.463552,-0.88607,-5.33228e-006][0.801703,0.984298,0][-3.0254,2.47539,-0.39709][-0.280517,-0.751983,-0.596516][0.77571,0.984299,0][-2.08826,1.48232,-0.332418][-0.975541,0.219817,0][0.801703,0.467746,0][-2.08826,1.48232,-0.332418][-0.975541,0.219817,0][0.801703,0.467746,0][-3.0254,2.47539,-0.39709][-0.280517,-0.751983,-0.596516][0.77571,0.984299,0][-2.0603,1.51028,-0.39709][-0.879372,0.180644,-0.440538][0.77571,0.467747,0][-3.0254,2.47539,-0.39709][-0.280517,-0.751983,-0.596516][0.77571,0.984299,0][-2.94152,2.55926,-0.489778][0.02196,-0.42974,-0.902686][0.710846,0.984299,0][-2.0603,1.51028,-0.39709][-0.879372,0.180644,-0.440538][0.77571,0.467747,0][-2.0603,1.51028,-0.39709][-0.879372,0.180644,-0.440538][0.77571,0.467747,0][-2.94152,2.55926,-0.489778][0.02196,-0.42974,-0.902686][0.710846,0.984299,0][-1.97642,1.59416,-0.489778][-0.699049,0.415693,-0.581832][0.710846,0.467747,0][-2.94152,2.55926,-0.489778][0.02196,-0.42974,-0.902686][0.710846,0.984299,0][-2.8297,2.67108,-0.489778][0.429738,-0.0219621,-0.902686][0.634284,0.984299,0][-1.97642,1.59416,-0.489778][-0.699049,0.415693,-0.581832][0.710846,0.467747,0][-1.97642,1.59416,-0.489778][-0.699049,0.415693,-0.581832][0.710846,0.467747,0][-2.8297,2.67108,-0.489778][0.429738,-0.0219621,-0.902686][0.634284,0.984299,0][-1.8646,1.70598,-0.489778][-0.415694,0.699051,-0.581831][0.634284,0.467747,0][-2.8297,2.67108,-0.489778][0.429738,-0.0219621,-0.902686][0.634284,0.984299,0][-2.74582,2.75496,-0.39709][0.751985,0.280523,-0.596511][0.569419,0.984299,0][-1.8646,1.70598,-0.489778][-0.415694,0.699051,-0.581831][0.634284,0.467747,0][-1.8646,1.70598,-0.489778][-0.415694,0.699051,-0.581831][0.634284,0.467747,0][-2.74582,2.75496,-0.39709][0.751985,0.280523,-0.596511][0.569419,0.984299,0][-1.78072,1.78986,-0.39709][-0.180642,0.879377,-0.440527][0.569419,0.467747,0][-2.74582,2.75496,-0.39709][0.751985,0.280523,-0.596511][0.569419,0.984299,0][-2.71786,2.78292,-0.332418][0.886078,0.463537,0][0.543427,0.984299,0][-1.78072,1.78986,-0.39709][-0.180642,0.879377,-0.440527][0.569419,0.467747,0][-1.78072,1.78986,-0.39709][-0.180642,0.879377,-0.440527][0.569419,0.467747,0][-2.71786,2.78292,-0.332418][0.886078,0.463537,0][0.543427,0.984299,0][-1.75276,1.81782,-0.332418][-0.219788,0.975548,2.13914e-007][0.543427,0.467747,0][-2.71786,2.78292,-0.332418][0.886078,0.463537,0][0.543427,0.984299,0][-2.74582,2.75496,-0.267746][0.751983,0.280522,0.596514][0.517434,0.984299,0][-1.75276,1.81782,-0.332418][-0.219788,0.975548,2.13914e-007][0.543427,0.467747,0][-1.75276,1.81782,-0.332418][-0.219788,0.975548,2.13914e-007][0.543427,0.467747,0][-2.74582,2.75496,-0.267746][0.751983,0.280522,0.596514][0.517434,0.984299,0][-1.78072,1.78986,-0.267746][-0.180644,0.879376,0.440528][0.517434,0.467746,0][-3.06902,2.86025,-0.230599][-0.53006,0.696524,0.483622][0.253317,0.832025,0][-3.01914,2.91013,-0.269491][-0.393467,0.861527,0.320867][0.2288,0.832025,0][-3.11861,2.84817,-0.332418][-0.707106,0.707108,1.42662e-006][0.268469,0.841243,0][-3.13068,2.79858,-0.230599][-0.696523,0.530062,0.483623][0.283622,0.832025,0][-3.06902,2.86025,-0.230599][-0.53006,0.696524,0.483622][0.253317,0.832025,0][-3.11861,2.84817,-0.332418][-0.707106,0.707108,1.42662e-006][0.268469,0.841243,0][-3.18057,2.7487,-0.269491][-0.861527,0.393467,0.320867][0.30814,0.832025,0][-3.13068,2.79858,-0.230599][-0.696523,0.530062,0.483623][0.283622,0.832025,0][-3.11861,2.84817,-0.332418][-0.707106,0.707108,1.42662e-006][0.268469,0.841243,0][-3.19963,2.72964,-0.332418][-0.943337,0.331835,1.992e-006][0.317505,0.832025,0][-3.18057,2.7487,-0.269491][-0.861527,0.393467,0.320867][0.30814,0.832025,0][-3.11861,2.84817,-0.332418][-0.707106,0.707108,1.42662e-006][0.268469,0.841243,0][-3.18057,2.7487,-0.395347][-0.861527,0.393466,-0.320867][0.30814,0.832025,0][-3.19963,2.72964,-0.332418][-0.943337,0.331835,1.992e-006][0.317505,0.832025,0][-3.11861,2.84817,-0.332418][-0.707106,0.707108,1.42662e-006][0.268469,0.841243,0][-3.13068,2.79858,-0.434238][-0.696523,0.530065,-0.483618][0.283622,0.832025,0][-3.18057,2.7487,-0.395347][-0.861527,0.393466,-0.320867][0.30814,0.832025,0][-3.11861,2.84817,-0.332418][-0.707106,0.707108,1.42662e-006][0.268469,0.841243,0][-3.06902,2.86025,-0.434238][-0.530064,0.696524,-0.483618][0.253317,0.832025,0][-3.13068,2.79858,-0.434238][-0.696523,0.530065,-0.483618][0.283622,0.832025,0][-3.11861,2.84817,-0.332418][-0.707106,0.707108,1.42662e-006][0.268469,0.841243,0][-3.01914,2.91013,-0.395347][-0.393466,0.861527,-0.320867][0.2288,0.832025,0][-3.06902,2.86025,-0.434238][-0.530064,0.696524,-0.483618][0.253317,0.832025,0][-3.11861,2.84817,-0.332418][-0.707106,0.707108,1.42662e-006][0.268469,0.841243,0][-3.00008,2.92919,-0.332418][-0.331834,0.943338,2.01474e-006][0.219435,0.832025,0][-3.01914,2.91013,-0.395347][-0.393466,0.861527,-0.320867][0.2288,0.832025,0][-3.11861,2.84817,-0.332418][-0.707106,0.707108,1.42662e-006][0.268469,0.841243,0][-3.01914,2.91013,-0.269491][-0.393467,0.861527,0.320867][0.2288,0.832025,0][-3.00008,2.92919,-0.332418][-0.331834,0.943338,2.01474e-006][0.219435,0.832025,0][-3.11861,2.84817,-0.332418][-0.707106,0.707108,1.42662e-006][0.268469,0.841243,0][-2.99521,2.83157,-0.156062][-0.173581,0.488451,0.855152][0.242225,0.80684,0][-2.87576,2.72865,-0.128779][0.301081,0.0452026,0.952527][0.238165,0.752198,0][-2.9088,2.91798,-0.223424][0.0986212,0.810064,0.577989][0.199759,0.80684,0][-2.9088,2.91798,-0.223424][0.0986212,0.810064,0.577989][0.199759,0.80684,0][-2.87576,2.72865,-0.128779][0.301081,0.0452026,0.952527][0.238165,0.752198,0][-2.77599,2.82842,-0.206562][0.665202,0.366862,0.650321][0.18913,0.752198,0][-1.76585,1.61874,-0.128779][0.176247,0.176248,0.968439][0.219825,0.637661,0][-1.66608,1.71851,-0.206562][0.524179,0.524179,0.671173][0.165413,0.637661,0][-1.85885,1.71174,-0.128779][-0.330041,0.596372,0.731719][0.219825,0.688377,0][-1.85885,1.71174,-0.128779][-0.330041,0.596372,0.731719][0.219825,0.688377,0][-1.66608,1.71851,-0.206562][0.524179,0.524179,0.671173][0.165413,0.637661,0][-1.75908,1.81151,-0.206562][-0.0506016,0.855507,0.515312][0.165413,0.688377,0][-3.10201,2.72477,-0.156062][-0.488451,0.173583,0.855152][0.294715,0.80684,0][-2.99909,2.60533,-0.128779][-0.0452028,-0.30108,0.952527][0.298775,0.752198,0][-2.99521,2.83157,-0.156062][-0.173581,0.488451,0.855152][0.242225,0.80684,0][-2.99521,2.83157,-0.156062][-0.173581,0.488451,0.855152][0.242225,0.80684,0][-2.99909,2.60533,-0.128779][-0.0452028,-0.30108,0.952527][0.298775,0.752198,0][-2.87576,2.72865,-0.128779][0.301081,0.0452026,0.952527][0.238165,0.752198,0][-1.88918,1.49541,-0.128779][-0.176246,-0.176247,0.968439][0.287083,0.637661,0][-1.76585,1.61874,-0.128779][0.176247,0.176248,0.968439][0.219825,0.637661,0][-1.98217,1.58841,-0.128779][-0.596373,0.330038,0.73172][0.287083,0.688377,0][-1.98217,1.58841,-0.128779][-0.596373,0.330038,0.73172][0.287083,0.688377,0][-1.76585,1.61874,-0.128779][0.176247,0.176248,0.968439][0.219825,0.637661,0][-1.85885,1.71174,-0.128779][-0.330041,0.596372,0.731719][0.219825,0.688377,0][-3.09886,2.50555,-0.206562][-0.36686,-0.665203,0.650321][0.34781,0.752198,0][-2.99909,2.60533,-0.128779][-0.0452028,-0.30108,0.952527][0.298775,0.752198,0][-3.18841,2.63836,-0.223424][-0.810062,-0.0986245,0.577991][0.33718,0.80684,0][-3.18841,2.63836,-0.223424][-0.810062,-0.0986245,0.577991][0.33718,0.80684,0][-2.99909,2.60533,-0.128779][-0.0452028,-0.30108,0.952527][0.298775,0.752198,0][-3.10201,2.72477,-0.156062][-0.488451,0.173583,0.855152][0.294715,0.80684,0][-1.98895,1.39564,-0.206562][-0.524177,-0.524176,0.671176][0.341495,0.637661,0][-1.88918,1.49541,-0.128779][-0.176246,-0.176247,0.968439][0.287083,0.637661,0][-2.08195,1.48864,-0.206562][-0.855506,0.0506042,0.515314][0.341495,0.688377,0][-2.08195,1.48864,-0.206562][-0.855506,0.0506042,0.515314][0.341495,0.688377,0][-1.88918,1.49541,-0.128779][-0.176246,-0.176247,0.968439][0.287083,0.637661,0][-1.98217,1.58841,-0.128779][-0.596373,0.330038,0.73172][0.287083,0.688377,0][-3.13697,2.46744,-0.332418][-0.576766,-0.81691,0][0.36654,0.752198,0][-3.09886,2.50555,-0.206562][-0.36686,-0.665203,0.650321][0.34781,0.752198,0][-3.22142,2.60536,-0.332418][-0.972936,-0.231076,1.31754e-006][0.353401,0.80684,0][-3.22142,2.60536,-0.332418][-0.972936,-0.231076,1.31754e-006][0.353401,0.80684,0][-3.09886,2.50555,-0.206562][-0.36686,-0.665203,0.650321][0.34781,0.752198,0][-3.18841,2.63836,-0.223424][-0.810062,-0.0986245,0.577991][0.33718,0.80684,0][-2.02706,1.35753,-0.332418][-0.707108,-0.707106,1.59954e-006][0.362279,0.637661,0][-1.98895,1.39564,-0.206562][-0.524177,-0.524176,0.671176][0.341495,0.637661,0][-2.12006,1.45053,-0.332418][-0.994385,-0.105821,1.25466e-006][0.362279,0.688377,0][-2.12006,1.45053,-0.332418][-0.994385,-0.105821,1.25466e-006][0.362279,0.688377,0][-1.98895,1.39564,-0.206562][-0.524177,-0.524176,0.671176][0.341495,0.637661,0][-2.08195,1.48864,-0.206562][-0.855506,0.0506042,0.515314][0.341495,0.688377,0][-3.18841,2.63836,-0.441413][-0.810063,-0.0986273,-0.577989][0.33718,0.80684,0][-3.09886,2.50555,-0.458275][-0.366858,-0.665207,-0.650319][0.34781,0.752198,0][-3.22142,2.60536,-0.332418][-0.972936,-0.231076,1.31754e-006][0.353401,0.80684,0][-3.22142,2.60536,-0.332418][-0.972936,-0.231076,1.31754e-006][0.353401,0.80684,0][-3.09886,2.50555,-0.458275][-0.366858,-0.665207,-0.650319][0.34781,0.752198,0][-3.13697,2.46744,-0.332418][-0.576766,-0.81691,0][0.36654,0.752198,0][-1.98895,1.39564,-0.458275][-0.524177,-0.524178,-0.671175][0.341495,0.637661,0][-2.02706,1.35753,-0.332418][-0.707108,-0.707106,1.59954e-006][0.362279,0.637661,0][-2.08195,1.48864,-0.458275][-0.855507,0.0506035,-0.515313][0.341495,0.688377,0][-2.08195,1.48864,-0.458275][-0.855507,0.0506035,-0.515313][0.341495,0.688377,0][-2.02706,1.35753,-0.332418][-0.707108,-0.707106,1.59954e-006][0.362279,0.637661,0][-2.12006,1.45053,-0.332418][-0.994385,-0.105821,1.25466e-006][0.362279,0.688377,0][-3.10201,2.72477,-0.508776][-0.488451,0.17358,-0.855153][0.294715,0.80684,0][-2.99909,2.60533,-0.536058][-0.045202,-0.301081,-0.952527][0.298775,0.752198,0][-3.18841,2.63836,-0.441413][-0.810063,-0.0986273,-0.577989][0.33718,0.80684,0][-3.18841,2.63836,-0.441413][-0.810063,-0.0986273,-0.577989][0.33718,0.80684,0][-2.99909,2.60533,-0.536058][-0.045202,-0.301081,-0.952527][0.298775,0.752198,0][-3.09886,2.50555,-0.458275][-0.366858,-0.665207,-0.650319][0.34781,0.752198,0][-1.88918,1.49541,-0.536058][-0.176245,-0.176247,-0.968439][0.287083,0.637661,0][-1.98895,1.39564,-0.458275][-0.524177,-0.524178,-0.671175][0.341495,0.637661,0][-1.98217,1.58841,-0.536058][-0.596372,0.330038,-0.73172][0.287083,0.688377,0][-1.98217,1.58841,-0.536058][-0.596372,0.330038,-0.73172][0.287083,0.688377,0][-1.98895,1.39564,-0.458275][-0.524177,-0.524178,-0.671175][0.341495,0.637661,0][-2.08195,1.48864,-0.458275][-0.855507,0.0506035,-0.515313][0.341495,0.688377,0][-2.99521,2.83157,-0.508776][-0.173578,0.488451,-0.855153][0.242225,0.80684,0][-2.87576,2.72865,-0.536058][0.301082,0.0452019,-0.952526][0.238165,0.752198,0][-3.10201,2.72477,-0.508776][-0.488451,0.17358,-0.855153][0.294715,0.80684,0][-3.10201,2.72477,-0.508776][-0.488451,0.17358,-0.855153][0.294715,0.80684,0][-2.87576,2.72865,-0.536058][0.301082,0.0452019,-0.952526][0.238165,0.752198,0][-2.99909,2.60533,-0.536058][-0.045202,-0.301081,-0.952527][0.298775,0.752198,0][-1.76585,1.61874,-0.536058][0.176247,0.176247,-0.968439][0.219825,0.637661,0][-1.88918,1.49541,-0.536058][-0.176245,-0.176247,-0.968439][0.287083,0.637661,0][-1.85885,1.71174,-0.536058][-0.330042,0.596372,-0.731719][0.219825,0.688377,0][-1.85885,1.71174,-0.536058][-0.330042,0.596372,-0.731719][0.219825,0.688377,0][-1.88918,1.49541,-0.536058][-0.176245,-0.176247,-0.968439][0.287083,0.637661,0][-1.98217,1.58841,-0.536058][-0.596372,0.330038,-0.73172][0.287083,0.688377,0][-2.77599,2.82842,-0.458275][0.665204,0.366862,-0.65032][0.18913,0.752198,0][-2.87576,2.72865,-0.536058][0.301082,0.0452019,-0.952526][0.238165,0.752198,0][-2.9088,2.91798,-0.441413][0.0986241,0.810065,-0.577986][0.199759,0.80684,0][-2.9088,2.91798,-0.441413][0.0986241,0.810065,-0.577986][0.199759,0.80684,0][-2.87576,2.72865,-0.536058][0.301082,0.0452019,-0.952526][0.238165,0.752198,0][-2.99521,2.83157,-0.508776][-0.173578,0.488451,-0.855153][0.242225,0.80684,0][-1.66608,1.71851,-0.458275][0.52418,0.524179,-0.671171][0.165413,0.637661,0][-1.76585,1.61874,-0.536058][0.176247,0.176247,-0.968439][0.219825,0.637661,0][-1.75908,1.81151,-0.458275][-0.0506008,0.855508,-0.515311][0.165413,0.688377,0][-1.75908,1.81151,-0.458275][-0.0506008,0.855508,-0.515311][0.165413,0.688377,0][-1.76585,1.61874,-0.536058][0.176247,0.176247,-0.968439][0.219825,0.637661,0][-1.85885,1.71174,-0.536058][-0.330042,0.596372,-0.731719][0.219825,0.688377,0][-2.73788,2.86653,-0.332418][0.816908,0.576767,1.12132e-006][0.1704,0.752198,0][-2.77599,2.82842,-0.458275][0.665204,0.366862,-0.65032][0.18913,0.752198,0][-2.8758,2.95098,-0.332418][0.231074,0.972936,1.35816e-006][0.183539,0.80684,0][-2.8758,2.95098,-0.332418][0.231074,0.972936,1.35816e-006][0.183539,0.80684,0][-2.77599,2.82842,-0.458275][0.665204,0.366862,-0.65032][0.18913,0.752198,0][-2.9088,2.91798,-0.441413][0.0986241,0.810065,-0.577986][0.199759,0.80684,0][-1.62797,1.75662,-0.332418][0.707108,0.707106,1.59953e-006][0.144629,0.637661,0][-1.66608,1.71851,-0.458275][0.52418,0.524179,-0.671171][0.165413,0.637661,0][-1.72097,1.84962,-0.332418][0.105826,0.994385,1.2479e-006][0.144629,0.688377,0][-1.72097,1.84962,-0.332418][0.105826,0.994385,1.2479e-006][0.144629,0.688377,0][-1.66608,1.71851,-0.458275][0.52418,0.524179,-0.671171][0.165413,0.637661,0][-1.75908,1.81151,-0.458275][-0.0506008,0.855508,-0.515311][0.165413,0.688377,0][-2.9088,2.91798,-0.223424][0.0986212,0.810064,0.577989][0.199759,0.80684,0][-2.77599,2.82842,-0.206562][0.665202,0.366862,0.650321][0.18913,0.752198,0][-2.8758,2.95098,-0.332418][0.231074,0.972936,1.35816e-006][0.183539,0.80684,0][-2.8758,2.95098,-0.332418][0.231074,0.972936,1.35816e-006][0.183539,0.80684,0][-2.77599,2.82842,-0.206562][0.665202,0.366862,0.650321][0.18913,0.752198,0][-2.73788,2.86653,-0.332418][0.816908,0.576767,1.12132e-006][0.1704,0.752198,0][-1.66608,1.71851,-0.206562][0.524179,0.524179,0.671173][0.165413,0.637661,0][-1.62797,1.75662,-0.332418][0.707108,0.707106,1.59953e-006][0.144629,0.637661,0][-1.75908,1.81151,-0.206562][-0.0506016,0.855507,0.515312][0.165413,0.688377,0][-1.75908,1.81151,-0.206562][-0.0506016,0.855507,0.515312][0.165413,0.688377,0][-1.62797,1.75662,-0.332418][0.707108,0.707106,1.59953e-006][0.144629,0.637661,0][-1.72097,1.84962,-0.332418][0.105826,0.994385,1.2479e-006][0.144629,0.688377,0][-2.87576,2.72865,-0.128779][0.301081,0.0452026,0.952527][0.238165,0.752198,0][-2.8297,2.67108,-0.175059][0.429737,-0.0219626,0.902687][0.240991,0.726732,0][-2.77599,2.82842,-0.206562][0.665202,0.366862,0.650321][0.18913,0.752198,0][-2.77599,2.82842,-0.206562][0.665202,0.366862,0.650321][0.18913,0.752198,0][-2.8297,2.67108,-0.175059][0.429737,-0.0219626,0.902687][0.240991,0.726732,0][-2.74582,2.75496,-0.267746][0.751983,0.280522,0.596514][0.199769,0.726732,0][-1.85885,1.71174,-0.128779][-0.330041,0.596372,0.731719][0.219825,0.688377,0][-1.75908,1.81151,-0.206562][-0.0506016,0.855507,0.515312][0.165413,0.688377,0][-1.8646,1.70598,-0.175059][-0.415694,0.69905,0.581832][0.222961,0.703916,0][-1.8646,1.70598,-0.175059][-0.415694,0.69905,0.581832][0.222961,0.703916,0][-1.75908,1.81151,-0.206562][-0.0506016,0.855507,0.515312][0.165413,0.688377,0][-1.78072,1.78986,-0.267746][-0.180644,0.879376,0.440528][0.177219,0.703916,0][-2.87576,2.72865,-0.128779][0.301081,0.0452026,0.952527][0.238165,0.752198,0][-2.99909,2.60533,-0.128779][-0.0452028,-0.30108,0.952527][0.298775,0.752198,0][-2.8297,2.67108,-0.175059][0.429737,-0.0219626,0.902687][0.240991,0.726732,0][-2.8297,2.67108,-0.175059][0.429737,-0.0219626,0.902687][0.240991,0.726732,0][-2.99909,2.60533,-0.128779][-0.0452028,-0.30108,0.952527][0.298775,0.752198,0][-2.94152,2.55926,-0.175059][0.0219611,-0.429737,0.902687][0.295949,0.726732,0][-1.98217,1.58841,-0.128779][-0.596373,0.330038,0.73172][0.287083,0.688377,0][-1.85885,1.71174,-0.128779][-0.330041,0.596372,0.731719][0.219825,0.688377,0][-1.97642,1.59416,-0.175059][-0.699048,0.415694,0.581834][0.283946,0.703916,0][-1.97642,1.59416,-0.175059][-0.699048,0.415694,0.581834][0.283946,0.703916,0][-1.85885,1.71174,-0.128779][-0.330041,0.596372,0.731719][0.219825,0.688377,0][-1.8646,1.70598,-0.175059][-0.415694,0.69905,0.581832][0.222961,0.703916,0][-2.99909,2.60533,-0.128779][-0.0452028,-0.30108,0.952527][0.298775,0.752198,0][-3.09886,2.50555,-0.206562][-0.36686,-0.665203,0.650321][0.34781,0.752198,0][-2.94152,2.55926,-0.175059][0.0219611,-0.429737,0.902687][0.295949,0.726732,0][-2.94152,2.55926,-0.175059][0.0219611,-0.429737,0.902687][0.295949,0.726732,0][-3.09886,2.50555,-0.206562][-0.36686,-0.665203,0.650321][0.34781,0.752198,0][-3.0254,2.47538,-0.267746][-0.280521,-0.75198,0.596519][0.337171,0.726732,0][-1.98217,1.58841,-0.128779][-0.596373,0.330038,0.73172][0.287083,0.688377,0][-1.97642,1.59416,-0.175059][-0.699048,0.415694,0.581834][0.283946,0.703916,0][-2.08195,1.48864,-0.206562][-0.855506,0.0506042,0.515314][0.341495,0.688377,0][-2.08195,1.48864,-0.206562][-0.855506,0.0506042,0.515314][0.341495,0.688377,0][-1.97642,1.59416,-0.175059][-0.699048,0.415694,0.581834][0.283946,0.703916,0][-2.0603,1.51028,-0.267746][-0.879371,0.180647,0.440538][0.329689,0.703916,0][-3.09886,2.50555,-0.206562][-0.36686,-0.665203,0.650321][0.34781,0.752198,0][-3.13697,2.46744,-0.332418][-0.576766,-0.81691,0][0.36654,0.752198,0][-3.0254,2.47538,-0.267746][-0.280521,-0.75198,0.596519][0.337171,0.726732,0][-3.0254,2.47538,-0.267746][-0.280521,-0.75198,0.596519][0.337171,0.726732,0][-3.13697,2.46744,-0.332418][-0.576766,-0.81691,0][0.36654,0.752198,0][-3.05336,2.44742,-0.332418][-0.463552,-0.88607,-5.33228e-006][0.350914,0.726732,0][-2.08195,1.48864,-0.206562][-0.855506,0.0506042,0.515314][0.341495,0.688377,0][-2.0603,1.51028,-0.267746][-0.879371,0.180647,0.440538][0.329689,0.703916,0][-2.12006,1.45053,-0.332418][-0.994385,-0.105821,1.25466e-006][0.362279,0.688377,0][-2.12006,1.45053,-0.332418][-0.994385,-0.105821,1.25466e-006][0.362279,0.688377,0][-2.0603,1.51028,-0.267746][-0.879371,0.180647,0.440538][0.329689,0.703916,0][-2.08826,1.48232,-0.332418][-0.975541,0.219817,0][0.34494,0.703916,0][-3.09886,2.50555,-0.458275][-0.366858,-0.665207,-0.650319][0.34781,0.752198,0][-3.0254,2.47539,-0.39709][-0.280517,-0.751983,-0.596516][0.33717,0.726732,0][-3.13697,2.46744,-0.332418][-0.576766,-0.81691,0][0.36654,0.752198,0][-3.13697,2.46744,-0.332418][-0.576766,-0.81691,0][0.36654,0.752198,0][-3.0254,2.47539,-0.39709][-0.280517,-0.751983,-0.596516][0.33717,0.726732,0][-3.05336,2.44742,-0.332418][-0.463552,-0.88607,-5.33228e-006][0.350914,0.726732,0][-2.08195,1.48864,-0.458275][-0.855507,0.0506035,-0.515313][0.341495,0.688377,0][-2.12006,1.45053,-0.332418][-0.994385,-0.105821,1.25466e-006][0.362279,0.688377,0][-2.0603,1.51028,-0.39709][-0.879372,0.180644,-0.440538][0.329689,0.703916,0][-2.0603,1.51028,-0.39709][-0.879372,0.180644,-0.440538][0.329689,0.703916,0][-2.12006,1.45053,-0.332418][-0.994385,-0.105821,1.25466e-006][0.362279,0.688377,0][-2.08826,1.48232,-0.332418][-0.975541,0.219817,0][0.34494,0.703916,0][-2.99909,2.60533,-0.536058][-0.045202,-0.301081,-0.952527][0.298775,0.752198,0][-2.94152,2.55926,-0.489778][0.02196,-0.42974,-0.902686][0.295949,0.726732,0][-3.09886,2.50555,-0.458275][-0.366858,-0.665207,-0.650319][0.34781,0.752198,0][-3.09886,2.50555,-0.458275][-0.366858,-0.665207,-0.650319][0.34781,0.752198,0][-2.94152,2.55926,-0.489778][0.02196,-0.42974,-0.902686][0.295949,0.726732,0][-3.0254,2.47539,-0.39709][-0.280517,-0.751983,-0.596516][0.33717,0.726732,0][-1.98217,1.58841,-0.536058][-0.596372,0.330038,-0.73172][0.287083,0.688377,0][-2.08195,1.48864,-0.458275][-0.855507,0.0506035,-0.515313][0.341495,0.688377,0][-1.97642,1.59416,-0.489778][-0.699049,0.415693,-0.581832][0.283946,0.703916,0][-1.97642,1.59416,-0.489778][-0.699049,0.415693,-0.581832][0.283946,0.703916,0][-2.08195,1.48864,-0.458275][-0.855507,0.0506035,-0.515313][0.341495,0.688377,0][-2.0603,1.51028,-0.39709][-0.879372,0.180644,-0.440538][0.329689,0.703916,0][-2.99909,2.60533,-0.536058][-0.045202,-0.301081,-0.952527][0.298775,0.752198,0][-2.87576,2.72865,-0.536058][0.301082,0.0452019,-0.952526][0.238165,0.752198,0][-2.94152,2.55926,-0.489778][0.02196,-0.42974,-0.902686][0.295949,0.726732,0][-2.94152,2.55926,-0.489778][0.02196,-0.42974,-0.902686][0.295949,0.726732,0][-2.87576,2.72865,-0.536058][0.301082,0.0452019,-0.952526][0.238165,0.752198,0][-2.8297,2.67108,-0.489778][0.429738,-0.0219621,-0.902686][0.240991,0.726732,0][-1.85885,1.71174,-0.536058][-0.330042,0.596372,-0.731719][0.219825,0.688377,0][-1.98217,1.58841,-0.536058][-0.596372,0.330038,-0.73172][0.287083,0.688377,0][-1.8646,1.70598,-0.489778][-0.415694,0.699051,-0.581831][0.222961,0.703916,0][-1.8646,1.70598,-0.489778][-0.415694,0.699051,-0.581831][0.222961,0.703916,0][-1.98217,1.58841,-0.536058][-0.596372,0.330038,-0.73172][0.287083,0.688377,0][-1.97642,1.59416,-0.489778][-0.699049,0.415693,-0.581832][0.283946,0.703916,0][-2.87576,2.72865,-0.536058][0.301082,0.0452019,-0.952526][0.238165,0.752198,0][-2.77599,2.82842,-0.458275][0.665204,0.366862,-0.65032][0.18913,0.752198,0][-2.8297,2.67108,-0.489778][0.429738,-0.0219621,-0.902686][0.240991,0.726732,0][-2.8297,2.67108,-0.489778][0.429738,-0.0219621,-0.902686][0.240991,0.726732,0][-2.77599,2.82842,-0.458275][0.665204,0.366862,-0.65032][0.18913,0.752198,0][-2.74582,2.75496,-0.39709][0.751985,0.280523,-0.596511][0.199769,0.726732,0][-1.85885,1.71174,-0.536058][-0.330042,0.596372,-0.731719][0.219825,0.688377,0][-1.8646,1.70598,-0.489778][-0.415694,0.699051,-0.581831][0.222961,0.703916,0][-1.75908,1.81151,-0.458275][-0.0506008,0.855508,-0.515311][0.165413,0.688377,0][-1.75908,1.81151,-0.458275][-0.0506008,0.855508,-0.515311][0.165413,0.688377,0][-1.8646,1.70598,-0.489778][-0.415694,0.699051,-0.581831][0.222961,0.703916,0][-1.78072,1.78986,-0.39709][-0.180642,0.879377,-0.440527][0.177219,0.703916,0][-2.77599,2.82842,-0.458275][0.665204,0.366862,-0.65032][0.18913,0.752198,0][-2.73788,2.86653,-0.332418][0.816908,0.576767,1.12132e-006][0.1704,0.752198,0][-2.74582,2.75496,-0.39709][0.751985,0.280523,-0.596511][0.199769,0.726732,0][-2.74582,2.75496,-0.39709][0.751985,0.280523,-0.596511][0.199769,0.726732,0][-2.73788,2.86653,-0.332418][0.816908,0.576767,1.12132e-006][0.1704,0.752198,0][-2.71786,2.78292,-0.332418][0.886078,0.463537,0][0.186026,0.726732,0][-1.75908,1.81151,-0.458275][-0.0506008,0.855508,-0.515311][0.165413,0.688377,0][-1.78072,1.78986,-0.39709][-0.180642,0.879377,-0.440527][0.177219,0.703916,0][-1.72097,1.84962,-0.332418][0.105826,0.994385,1.2479e-006][0.144629,0.688377,0][-1.72097,1.84962,-0.332418][0.105826,0.994385,1.2479e-006][0.144629,0.688377,0][-1.78072,1.78986,-0.39709][-0.180642,0.879377,-0.440527][0.177219,0.703916,0][-1.75276,1.81782,-0.332418][-0.219788,0.975548,2.13914e-007][0.161969,0.703916,0][-2.77599,2.82842,-0.206562][0.665202,0.366862,0.650321][0.18913,0.752198,0][-2.74582,2.75496,-0.267746][0.751983,0.280522,0.596514][0.199769,0.726732,0][-2.73788,2.86653,-0.332418][0.816908,0.576767,1.12132e-006][0.1704,0.752198,0][-2.73788,2.86653,-0.332418][0.816908,0.576767,1.12132e-006][0.1704,0.752198,0][-2.74582,2.75496,-0.267746][0.751983,0.280522,0.596514][0.199769,0.726732,0][-2.71786,2.78292,-0.332418][0.886078,0.463537,0][0.186026,0.726732,0][-1.75908,1.81151,-0.206562][-0.0506016,0.855507,0.515312][0.165413,0.688377,0][-1.72097,1.84962,-0.332418][0.105826,0.994385,1.2479e-006][0.144629,0.688377,0][-1.78072,1.78986,-0.267746][-0.180644,0.879376,0.440528][0.177219,0.703916,0][-1.78072,1.78986,-0.267746][-0.180644,0.879376,0.440528][0.177219,0.703916,0][-1.72097,1.84962,-0.332418][0.105826,0.994385,1.2479e-006][0.144629,0.688377,0][-1.75276,1.81782,-0.332418][-0.219788,0.975548,2.13914e-007][0.161969,0.703916,0][-0.504902,0.0491269,-0.168477][-0.455845,0.591772,-0.664839][0.835541,0.171845,0][-0.654844,-0.100815,-0.231097][-0.306204,0.798655,-0.518063][0.808035,0.078704,0][-0.54653,0.00749779,-0.0503763][-0.595147,0.595148,0.539999][0.887416,0.145987,0][-0.54653,0.00749779,-0.0503763][-0.595147,0.595148,0.539999][0.887416,0.145987,0][-0.654844,-0.100815,-0.231097][-0.306204,0.798655,-0.518063][0.808035,0.078704,0][-0.763828,-0.2098,-0.0503763][-0.816581,0.35995,0.451255][0.887416,0.011005,0][-0.319564,0.234465,-0.168477][-1.43771,1.43771,1.39474e-005][0.835541,0.286974,0][-0.504902,0.0491269,-0.168477][-0.455845,0.591772,-0.664839][0.835541,0.171845,0][-0.277935,0.276093,-0.0503774][-0.595148,0.595149,0.539997][0.887416,0.312833,0][-0.277935,0.276093,-0.0503774][-0.595148,0.595149,0.539997][0.887416,0.312833,0][-0.504902,0.0491269,-0.168477][-0.455845,0.591772,-0.664839][0.835541,0.171845,0][-0.54653,0.00749779,-0.0503763][-0.595147,0.595148,0.539999][0.887416,0.145987,0][-0.319564,0.234465,-0.168477][-1.43771,1.43771,1.39474e-005][0.835541,0.286974,0][-0.277935,0.276093,-0.0503774][-0.595148,0.595149,0.539997][0.887416,0.312833,0][-0.169622,0.384406,-0.231098][-0.798656,0.306197,-0.518066][0.808036,0.380115,0][-0.169622,0.384406,-0.231098][-0.798656,0.306197,-0.518066][0.808036,0.380115,0][-0.277935,0.276093,-0.0503774][-0.595148,0.595149,0.539997][0.887416,0.312833,0][-0.0606381,0.493391,-0.0503764][-0.35996,0.816576,0.451257][0.887416,0.447814,0][-0.112351,0.441678,-0.332418][-0.959589,0.281404,-1.20558e-006][0.763531,0.415691,0][-0.169622,0.384406,-0.231098][-0.798656,0.306197,-0.518066][0.808036,0.380115,0][-0.0606381,0.493391,-0.332418][-2.09712,3.7873,0][0.763531,0.447814,0][-0.0606381,0.493391,-0.332418][-2.09712,3.7873,0][0.763531,0.447814,0][-0.169622,0.384406,-0.231098][-0.798656,0.306197,-0.518066][0.808036,0.380115,0][-0.0606381,0.493391,-0.0503764][-0.35996,0.816576,0.451257][0.887416,0.447814,0][-0.112351,0.441678,-0.332418][-0.959589,0.281404,-1.20558e-006][0.763531,0.415691,0][-0.0606381,0.493391,-0.332418][-2.09712,3.7873,0][0.763531,0.447814,0][-0.169622,0.384406,-0.433739][-0.798657,0.306197,0.518064][0.719027,0.380115,0][-0.169622,0.384406,-0.433739][-0.798657,0.306197,0.518064][0.719027,0.380115,0][-0.0606381,0.493391,-0.332418][-2.09712,3.7873,0][0.763531,0.447814,0][-0.0606381,0.493391,-0.61446][-0.35996,0.816577,-0.451256][0.639647,0.447814,0][-0.319564,0.234465,-0.49636][-0.591773,0.455845,0.664838][0.691521,0.286974,0][-0.169622,0.384406,-0.433739][-0.798657,0.306197,0.518064][0.719027,0.380115,0][-0.277935,0.276093,-0.61446][-0.595148,0.595148,-0.539998][0.639647,0.312833,0][-0.277935,0.276093,-0.61446][-0.595148,0.595148,-0.539998][0.639647,0.312833,0][-0.169622,0.384406,-0.433739][-0.798657,0.306197,0.518064][0.719027,0.380115,0][-0.0606381,0.493391,-0.61446][-0.35996,0.816577,-0.451256][0.639647,0.447814,0][-0.504902,0.0491269,-0.49636][-0.455845,0.591773,0.664838][0.691521,0.171845,0][-0.319564,0.234465,-0.49636][-0.591773,0.455845,0.664838][0.691521,0.286974,0][-0.54653,0.00749779,-0.61446][-0.595148,0.595148,-0.539998][0.639647,0.145987,0][-0.54653,0.00749779,-0.61446][-0.595148,0.595148,-0.539998][0.639647,0.145987,0][-0.319564,0.234465,-0.49636][-0.591773,0.455845,0.664838][0.691521,0.286974,0][-0.277935,0.276093,-0.61446][-0.595148,0.595148,-0.539998][0.639647,0.312833,0][-0.504902,0.0491269,-0.49636][-0.455845,0.591773,0.664838][0.691521,0.171845,0][-0.54653,0.00749779,-0.61446][-0.595148,0.595148,-0.539998][0.639647,0.145987,0][-0.654843,-0.100815,-0.433739][-0.306199,0.798655,0.518067][0.719027,0.078705,0][-0.654843,-0.100815,-0.433739][-0.306199,0.798655,0.518067][0.719027,0.078705,0][-0.54653,0.00749779,-0.61446][-0.595148,0.595148,-0.539998][0.639647,0.145987,0][-0.763828,-0.209799,-0.61446][-0.81658,0.359952,-0.451256][0.639647,0.011005,0][-0.712115,-0.158087,-0.332418][-0.281402,0.95959,-2.63539e-006][0.763531,0.043128,0][-0.654843,-0.100815,-0.433739][-0.306199,0.798655,0.518067][0.719027,0.078705,0][-0.763828,-0.2098,-0.332418][-0.938315,0.345781,-3.78728e-007][0.763531,0.011005,0][-0.763828,-0.2098,-0.332418][-0.938315,0.345781,-3.78728e-007][0.763531,0.011005,0][-0.654843,-0.100815,-0.433739][-0.306199,0.798655,0.518067][0.719027,0.078705,0][-0.763828,-0.209799,-0.61446][-0.81658,0.359952,-0.451256][0.639647,0.011005,0][-0.712115,-0.158087,-0.332418][-0.281402,0.95959,-2.63539e-006][0.763531,0.043128,0][-0.763828,-0.2098,-0.332418][-0.938315,0.345781,-3.78728e-007][0.763531,0.011005,0][-0.654844,-0.100815,-0.231097][-0.306204,0.798655,-0.518063][0.808035,0.078704,0][-0.654844,-0.100815,-0.231097][-0.306204,0.798655,-0.518063][0.808035,0.078704,0][-0.763828,-0.2098,-0.332418][-0.938315,0.345781,-3.78728e-007][0.763531,0.011005,0][-0.763828,-0.2098,-0.0503763][-0.816581,0.35995,0.451255][0.887416,0.011005,0][-0.525531,-0.0337913,-0.0301803][-0.150835,0.150836,0.976984][0.474368,0.434752,0][-0.759245,-0.267505,-0.0301803][-0.711701,-0.256242,0.654081][0.619834,0.434752,0][0.215796,-0.775118,-0.0301813][0.150836,-0.150834,0.976984][0.474368,0.033073,0][0.215796,-0.775118,-0.0301813][0.150836,-0.150834,0.976984][0.474368,0.033073,0][-0.759245,-0.267505,-0.0301803][-0.711701,-0.256242,0.654081][0.619834,0.434752,0][-0.0179181,-1.00883,-0.0301803][-0.256242,-0.7117,0.654082][0.619834,0.033073,0][-0.236645,0.255095,-0.0301814][-0.150836,0.150835,0.976984][0.294562,0.434752,0][-0.525531,-0.0337913,-0.0301803][-0.150835,0.150836,0.976984][0.474368,0.434752,0][0.504682,-0.486232,-0.0301813][0.150833,-0.150835,0.976984][0.294562,0.033073,0][0.504682,-0.486232,-0.0301813][0.150833,-0.150835,0.976984][0.294562,0.033073,0][-0.525531,-0.0337913,-0.0301803][-0.150835,0.150836,0.976984][0.474368,0.434752,0][0.215796,-0.775118,-0.0301813][0.150836,-0.150834,0.976984][0.474368,0.033073,0][-0.00293213,0.488809,-0.0301804][0.256238,0.711704,0.65408][0.149096,0.434752,0][-0.236645,0.255095,-0.0301814][-0.150836,0.150835,0.976984][0.294562,0.434752,0][0.738395,-0.252519,-0.0301803][0.7117,0.256241,0.654082][0.149096,0.033073,0][0.738395,-0.252519,-0.0301803][0.7117,0.256241,0.654082][0.149096,0.033073,0][-0.236645,0.255095,-0.0301814][-0.150836,0.150835,0.976984][0.294562,0.434752,0][0.504682,-0.486232,-0.0301813][0.150833,-0.150835,0.976984][0.294562,0.033073,0][-0.00293213,0.488809,-0.332418][2.34577,3.78731,0][0.149096,0.434752,0][-0.00293213,0.488809,-0.0301804][0.256238,0.711704,0.65408][0.149096,0.434752,0][0.738395,-0.252519,-0.332418][0.907994,0.418984,0][0.149096,0.033073,0][0.738395,-0.252519,-0.332418][0.907994,0.418984,0][0.149096,0.033073,0][-0.00293213,0.488809,-0.0301804][0.256238,0.711704,0.65408][0.149096,0.434752,0][0.738395,-0.252519,-0.0301803][0.7117,0.256241,0.654082][0.149096,0.033073,0][-0.00293213,0.488809,-0.634656][0.256238,0.711704,-0.654079][0.149096,0.434752,0][-0.00293213,0.488809,-0.332418][2.34577,3.78731,0][0.149096,0.434752,0][0.738395,-0.252519,-0.634657][0.7117,0.256242,-0.654082][0.149096,0.033073,0][0.738395,-0.252519,-0.634657][0.7117,0.256242,-0.654082][0.149096,0.033073,0][-0.00293213,0.488809,-0.332418][2.34577,3.78731,0][0.149096,0.434752,0][0.738395,-0.252519,-0.332418][0.907994,0.418984,0][0.149096,0.033073,0][-0.236645,0.255095,-0.634656][-0.150836,0.150835,-0.976984][0.294562,0.434752,0][-0.00293213,0.488809,-0.634656][0.256238,0.711704,-0.654079][0.149096,0.434752,0][0.504682,-0.486232,-0.634656][0.150833,-0.150835,-0.976984][0.294562,0.033073,0][0.504682,-0.486232,-0.634656][0.150833,-0.150835,-0.976984][0.294562,0.033073,0][-0.00293213,0.488809,-0.634656][0.256238,0.711704,-0.654079][0.149096,0.434752,0][0.738395,-0.252519,-0.634657][0.7117,0.256242,-0.654082][0.149096,0.033073,0][-0.525531,-0.0337913,-0.634656][-0.150835,0.150835,-0.976984][0.474368,0.434752,0][-0.236645,0.255095,-0.634656][-0.150836,0.150835,-0.976984][0.294562,0.434752,0][0.215796,-0.775118,-0.634656][0.150835,-0.150835,-0.976984][0.474368,0.033073,0][0.215796,-0.775118,-0.634656][0.150835,-0.150835,-0.976984][0.474368,0.033073,0][-0.236645,0.255095,-0.634656][-0.150836,0.150835,-0.976984][0.294562,0.434752,0][0.504682,-0.486232,-0.634656][0.150833,-0.150835,-0.976984][0.294562,0.033073,0][-0.759245,-0.267505,-0.634656][-0.711701,-0.256243,-0.654081][0.619834,0.434752,0][-0.525531,-0.0337913,-0.634656][-0.150835,0.150835,-0.976984][0.474368,0.434752,0][-0.0179171,-1.00883,-0.634656][-0.256236,-0.711704,-0.65408][0.619833,0.033073,0][-0.0179171,-1.00883,-0.634656][-0.256236,-0.711704,-0.65408][0.619833,0.033073,0][-0.525531,-0.0337913,-0.634656][-0.150835,0.150835,-0.976984][0.474368,0.434752,0][0.215796,-0.775118,-0.634656][0.150835,-0.150835,-0.976984][0.474368,0.033073,0][-0.759245,-0.267505,-0.332418][-0.907993,-0.418984,0][0.619834,0.434752,0][-0.759245,-0.267505,-0.634656][-0.711701,-0.256243,-0.654081][0.619834,0.434752,0][-0.0179181,-1.00883,-0.332418][-0.418983,-0.907994,-1.42422e-006][0.619834,0.033073,0][-0.0179181,-1.00883,-0.332418][-0.418983,-0.907994,-1.42422e-006][0.619834,0.033073,0][-0.759245,-0.267505,-0.634656][-0.711701,-0.256243,-0.654081][0.619834,0.434752,0][-0.0179171,-1.00883,-0.634656][-0.256236,-0.711704,-0.65408][0.619833,0.033073,0][-0.759245,-0.267505,-0.0301803][-0.711701,-0.256242,0.654081][0.619834,0.434752,0][-0.759245,-0.267505,-0.332418][-0.907993,-0.418984,0][0.619834,0.434752,0][-0.0179181,-1.00883,-0.0301803][-0.256242,-0.7117,0.654082][0.619834,0.033073,0][-0.0179181,-1.00883,-0.0301803][-0.256242,-0.7117,0.654082][0.619834,0.033073,0][-0.759245,-0.267505,-0.332418][-0.907993,-0.418984,0][0.619834,0.434752,0][-0.0179181,-1.00883,-0.332418][-0.418983,-0.907994,-1.42422e-006][0.619834,0.033073,0][0.0397879,-1.01342,-0.0503763][0.359952,-0.816579,0.451258][0.887416,0.011005,0][0.148772,-0.90443,-0.231097][0.798656,-0.306199,-0.518065][0.808036,0.078705,0][0.257085,-0.796117,-0.0503773][0.59515,-0.595148,0.539996][0.887416,0.145987,0][0.257085,-0.796117,-0.0503773][0.59515,-0.595148,0.539996][0.887416,0.145987,0][0.148772,-0.90443,-0.231097][0.798656,-0.306199,-0.518065][0.808036,0.078705,0][0.298714,-0.754488,-0.168477][0.59177,-0.455843,-0.664842][0.835541,0.171845,0][0.525681,-0.527522,-0.0503773][0.595147,-0.59515,0.539997][0.887416,0.312833,0][0.257085,-0.796117,-0.0503773][0.59515,-0.595148,0.539996][0.887416,0.145987,0][0.484052,-0.56915,-0.168477][0.45584,-0.591772,-0.664843][0.835541,0.286974,0][0.484052,-0.56915,-0.168477][0.45584,-0.591772,-0.664843][0.835541,0.286974,0][0.257085,-0.796117,-0.0503773][0.59515,-0.595148,0.539996][0.887416,0.145987,0][0.298714,-0.754488,-0.168477][0.59177,-0.455843,-0.664842][0.835541,0.171845,0][0.742978,-0.310224,-0.0503763][0.81658,-0.35995,0.451257][0.887416,0.447814,0][0.525681,-0.527522,-0.0503773][0.595147,-0.59515,0.539997][0.887416,0.312833,0][0.633994,-0.419209,-0.231098][0.306202,-0.798654,-0.518065][0.808036,0.380115,0][0.633994,-0.419209,-0.231098][0.306202,-0.798654,-0.518065][0.808036,0.380115,0][0.525681,-0.527522,-0.0503773][0.595147,-0.59515,0.539997][0.887416,0.312833,0][0.484052,-0.56915,-0.168477][0.45584,-0.591772,-0.664843][0.835541,0.286974,0][0.742978,-0.310224,-0.0503763][0.81658,-0.35995,0.451257][0.887416,0.447814,0][0.633994,-0.419209,-0.231098][0.306202,-0.798654,-0.518065][0.808036,0.380115,0][0.742978,-0.310224,-0.332418][0.938315,-0.34578,0][0.763531,0.447814,0][0.742978,-0.310224,-0.332418][0.938315,-0.34578,0][0.763531,0.447814,0][0.633994,-0.419209,-0.231098][0.306202,-0.798654,-0.518065][0.808036,0.380115,0][0.691265,-0.361937,-0.332418][0.281402,-0.95959,-1.32789e-006][0.763531,0.415691,0][0.742978,-0.310224,-0.614461][0.81658,-0.35995,-0.451257][0.639647,0.447814,0][0.742978,-0.310224,-0.332418][0.938315,-0.34578,0][0.763531,0.447814,0][0.633994,-0.419209,-0.433739][0.306202,-0.798656,0.518064][0.719027,0.380115,0][0.633994,-0.419209,-0.433739][0.306202,-0.798656,0.518064][0.719027,0.380115,0][0.742978,-0.310224,-0.332418][0.938315,-0.34578,0][0.763531,0.447814,0][0.691265,-0.361937,-0.332418][0.281402,-0.95959,-1.32789e-006][0.763531,0.415691,0][0.742978,-0.310224,-0.614461][0.81658,-0.35995,-0.451257][0.639647,0.447814,0][0.633994,-0.419209,-0.433739][0.306202,-0.798656,0.518064][0.719027,0.380115,0][0.525681,-0.527522,-0.61446][0.595148,-0.595149,-0.539997][0.639647,0.312833,0][0.525681,-0.527522,-0.61446][0.595148,-0.595149,-0.539997][0.639647,0.312833,0][0.633994,-0.419209,-0.433739][0.306202,-0.798656,0.518064][0.719027,0.380115,0][0.484052,-0.56915,-0.49636][0.455841,-0.59177,0.664844][0.691521,0.286974,0][0.257085,-0.796117,-0.61446][0.595147,-0.595149,-0.539998][0.639647,0.145987,0][0.525681,-0.527522,-0.61446][0.595148,-0.595149,-0.539997][0.639647,0.312833,0][0.298714,-0.754489,-0.49636][0.591772,-0.455845,0.664839][0.691521,0.171845,0][0.298714,-0.754489,-0.49636][0.591772,-0.455845,0.664839][0.691521,0.171845,0][0.525681,-0.527522,-0.61446][0.595148,-0.595149,-0.539997][0.639647,0.312833,0][0.484052,-0.56915,-0.49636][0.455841,-0.59177,0.664844][0.691521,0.286974,0][0.0397879,-1.01341,-0.61446][0.359959,-0.816578,-0.451254][0.639647,0.011005,0][0.257085,-0.796117,-0.61446][0.595147,-0.595149,-0.539998][0.639647,0.145987,0][0.148772,-0.90443,-0.433739][0.798657,-0.306198,0.518064][0.719027,0.078705,0][0.148772,-0.90443,-0.433739][0.798657,-0.306198,0.518064][0.719027,0.078705,0][0.257085,-0.796117,-0.61446][0.595147,-0.595149,-0.539998][0.639647,0.145987,0][0.298714,-0.754489,-0.49636][0.591772,-0.455845,0.664839][0.691521,0.171845,0][0.0397879,-1.01341,-0.61446][0.359959,-0.816578,-0.451254][0.639647,0.011005,0][0.148772,-0.90443,-0.433739][0.798657,-0.306198,0.518064][0.719027,0.078705,0][0.0397879,-1.01342,-0.332418][0.345783,-0.938314,-1.51215e-006][0.763531,0.011005,0][0.0397879,-1.01342,-0.332418][0.345783,-0.938314,-1.51215e-006][0.763531,0.011005,0][0.148772,-0.90443,-0.433739][0.798657,-0.306198,0.518064][0.719027,0.078705,0][0.0915009,-0.961702,-0.332418][0.95959,-0.281403,0][0.763531,0.043128,0][0.0397879,-1.01342,-0.0503763][0.359952,-0.816579,0.451258][0.887416,0.011005,0][0.0397879,-1.01342,-0.332418][0.345783,-0.938314,-1.51215e-006][0.763531,0.011005,0][0.148772,-0.90443,-0.231097][0.798656,-0.306199,-0.518065][0.808036,0.078705,0][0.148772,-0.90443,-0.231097][0.798656,-0.306199,-0.518065][0.808036,0.078705,0][0.0397879,-1.01342,-0.332418][0.345783,-0.938314,-1.51215e-006][0.763531,0.011005,0][0.0915009,-0.961702,-0.332418][0.95959,-0.281403,0][0.763531,0.043128,0][-0.759245,-0.267505,-0.0301803][-0.711701,-0.256242,0.654081][0.619834,0.434752,0][-0.525531,-0.0337913,-0.0301803][-0.150835,0.150836,0.976984][0.474368,0.434752,0][-0.763828,-0.2098,-0.0503763][-0.816581,0.35995,0.451255][0.603302,0.451627,0][-0.763828,-0.2098,-0.0503763][-0.816581,0.35995,0.451255][0.603302,0.451627,0][-0.525531,-0.0337913,-0.0301803][-0.150835,0.150836,0.976984][0.474368,0.434752,0][-0.54653,0.00749779,-0.0503763][-0.595147,0.595148,0.539999][0.468053,0.451627,0][-0.525531,-0.0337913,-0.0301803][-0.150835,0.150836,0.976984][0.474368,0.434752,0][-0.236645,0.255095,-0.0301814][-0.150836,0.150835,0.976984][0.294562,0.434752,0][-0.54653,0.00749779,-0.0503763][-0.595147,0.595148,0.539999][0.468053,0.451627,0][-0.54653,0.00749779,-0.0503763][-0.595147,0.595148,0.539999][0.468053,0.451627,0][-0.236645,0.255095,-0.0301814][-0.150836,0.150835,0.976984][0.294562,0.434752,0][-0.277935,0.276093,-0.0503774][-0.595148,0.595149,0.539997][0.300877,0.451627,0][-0.00293213,0.488809,-0.0301804][0.256238,0.711704,0.65408][0.149096,0.434752,0][-0.0606381,0.493391,-0.0503764][-0.35996,0.816576,0.451257][0.165628,0.451627,0][-0.236645,0.255095,-0.0301814][-0.150836,0.150835,0.976984][0.294562,0.434752,0][-0.236645,0.255095,-0.0301814][-0.150836,0.150835,0.976984][0.294562,0.434752,0][-0.0606381,0.493391,-0.0503764][-0.35996,0.816576,0.451257][0.165628,0.451627,0][-0.277935,0.276093,-0.0503774][-0.595148,0.595149,0.539997][0.300877,0.451627,0][-0.00293213,0.488809,-0.0301804][0.256238,0.711704,0.65408][0.149096,0.434752,0][-0.00293213,0.488809,-0.332418][2.34577,3.78731,0][0.149096,0.434752,0][-0.0606381,0.493391,-0.0503764][-0.35996,0.816576,0.451257][0.165628,0.451627,0][-0.0606381,0.493391,-0.0503764][-0.35996,0.816576,0.451257][0.165628,0.451627,0][-0.00293213,0.488809,-0.332418][2.34577,3.78731,0][0.149096,0.434752,0][-0.0606381,0.493391,-0.332418][-2.09712,3.7873,0][0.165629,0.451627,0][-0.00293213,0.488809,-0.634656][0.256238,0.711704,-0.654079][0.149096,0.434752,0][-0.0606381,0.493391,-0.61446][-0.35996,0.816577,-0.451256][0.165628,0.451627,0][-0.00293213,0.488809,-0.332418][2.34577,3.78731,0][0.149096,0.434752,0][-0.00293213,0.488809,-0.332418][2.34577,3.78731,0][0.149096,0.434752,0][-0.0606381,0.493391,-0.61446][-0.35996,0.816577,-0.451256][0.165628,0.451627,0][-0.0606381,0.493391,-0.332418][-2.09712,3.7873,0][0.165629,0.451627,0][-0.00293213,0.488809,-0.634656][0.256238,0.711704,-0.654079][0.149096,0.434752,0][-0.236645,0.255095,-0.634656][-0.150836,0.150835,-0.976984][0.294562,0.434752,0][-0.0606381,0.493391,-0.61446][-0.35996,0.816577,-0.451256][0.165628,0.451627,0][-0.0606381,0.493391,-0.61446][-0.35996,0.816577,-0.451256][0.165628,0.451627,0][-0.236645,0.255095,-0.634656][-0.150836,0.150835,-0.976984][0.294562,0.434752,0][-0.277935,0.276093,-0.61446][-0.595148,0.595148,-0.539998][0.300877,0.451627,0][-0.236645,0.255095,-0.634656][-0.150836,0.150835,-0.976984][0.294562,0.434752,0][-0.525531,-0.0337913,-0.634656][-0.150835,0.150835,-0.976984][0.474368,0.434752,0][-0.277935,0.276093,-0.61446][-0.595148,0.595148,-0.539998][0.300877,0.451627,0][-0.277935,0.276093,-0.61446][-0.595148,0.595148,-0.539998][0.300877,0.451627,0][-0.525531,-0.0337913,-0.634656][-0.150835,0.150835,-0.976984][0.474368,0.434752,0][-0.54653,0.00749779,-0.61446][-0.595148,0.595148,-0.539998][0.468053,0.451627,0][-0.759245,-0.267505,-0.634656][-0.711701,-0.256243,-0.654081][0.619834,0.434752,0][-0.763828,-0.209799,-0.61446][-0.81658,0.359952,-0.451256][0.603302,0.451627,0][-0.525531,-0.0337913,-0.634656][-0.150835,0.150835,-0.976984][0.474368,0.434752,0][-0.525531,-0.0337913,-0.634656][-0.150835,0.150835,-0.976984][0.474368,0.434752,0][-0.763828,-0.209799,-0.61446][-0.81658,0.359952,-0.451256][0.603302,0.451627,0][-0.54653,0.00749779,-0.61446][-0.595148,0.595148,-0.539998][0.468053,0.451627,0][-0.759245,-0.267505,-0.634656][-0.711701,-0.256243,-0.654081][0.619834,0.434752,0][-0.759245,-0.267505,-0.332418][-0.907993,-0.418984,0][0.619834,0.434752,0][-0.763828,-0.209799,-0.61446][-0.81658,0.359952,-0.451256][0.603302,0.451627,0][-0.763828,-0.209799,-0.61446][-0.81658,0.359952,-0.451256][0.603302,0.451627,0][-0.759245,-0.267505,-0.332418][-0.907993,-0.418984,0][0.619834,0.434752,0][-0.763828,-0.2098,-0.332418][-0.938315,0.345781,-3.78728e-007][0.603302,0.451627,0][-0.759245,-0.267505,-0.0301803][-0.711701,-0.256242,0.654081][0.619834,0.434752,0][-0.763828,-0.2098,-0.0503763][-0.816581,0.35995,0.451255][0.603302,0.451627,0][-0.759245,-0.267505,-0.332418][-0.907993,-0.418984,0][0.619834,0.434752,0][-0.759245,-0.267505,-0.332418][-0.907993,-0.418984,0][0.619834,0.434752,0][-0.763828,-0.2098,-0.0503763][-0.816581,0.35995,0.451255][0.603302,0.451627,0][-0.763828,-0.2098,-0.332418][-0.938315,0.345781,-3.78728e-007][0.603302,0.451627,0][-0.0179181,-1.00883,-0.0301803][-0.256242,-0.7117,0.654082][0.619834,0.033073,0][0.0397879,-1.01342,-0.0503763][0.359952,-0.816579,0.451258][0.603302,0.016198,0][0.215796,-0.775118,-0.0301813][0.150836,-0.150834,0.976984][0.474368,0.033073,0][0.215796,-0.775118,-0.0301813][0.150836,-0.150834,0.976984][0.474368,0.033073,0][0.0397879,-1.01342,-0.0503763][0.359952,-0.816579,0.451258][0.603302,0.016198,0][0.257085,-0.796117,-0.0503773][0.59515,-0.595148,0.539996][0.468053,0.016198,0][-0.504902,0.0491269,-0.168477][-0.455845,0.591772,-0.664839][0.442143,0.451627,0][0.298714,-0.754488,-0.168477][0.59177,-0.455843,-0.664842][0.442143,0.016198,0][-0.654844,-0.100815,-0.231097][-0.306204,0.798655,-0.518063][0.535469,0.451627,0][-0.654844,-0.100815,-0.231097][-0.306204,0.798655,-0.518063][0.535469,0.451627,0][0.298714,-0.754488,-0.168477][0.59177,-0.455843,-0.664842][0.442143,0.016198,0][0.148772,-0.90443,-0.231097][0.798656,-0.306199,-0.518065][0.535469,0.016198,0][0.504682,-0.486232,-0.0301813][0.150833,-0.150835,0.976984][0.294562,0.033073,0][0.215796,-0.775118,-0.0301813][0.150836,-0.150834,0.976984][0.474368,0.033073,0][0.525681,-0.527522,-0.0503773][0.595147,-0.59515,0.539997][0.300877,0.016198,0][0.525681,-0.527522,-0.0503773][0.595147,-0.59515,0.539997][0.300877,0.016198,0][0.215796,-0.775118,-0.0301813][0.150836,-0.150834,0.976984][0.474368,0.033073,0][0.257085,-0.796117,-0.0503773][0.59515,-0.595148,0.539996][0.468053,0.016198,0][-0.319564,0.234465,-0.168477][-1.43771,1.43771,1.39474e-005][0.326787,0.451627,0][0.484052,-0.56915,-0.168477][0.45584,-0.591772,-0.664843][0.326787,0.016198,0][-0.504902,0.0491269,-0.168477][-0.455845,0.591772,-0.664839][0.442143,0.451627,0][-0.504902,0.0491269,-0.168477][-0.455845,0.591772,-0.664839][0.442143,0.451627,0][0.484052,-0.56915,-0.168477][0.45584,-0.591772,-0.664843][0.326787,0.016198,0][0.298714,-0.754488,-0.168477][0.59177,-0.455843,-0.664842][0.442143,0.016198,0][0.738395,-0.252519,-0.0301803][0.7117,0.256241,0.654082][0.149096,0.033073,0][0.504682,-0.486232,-0.0301813][0.150833,-0.150835,0.976984][0.294562,0.033073,0][0.742978,-0.310224,-0.0503763][0.81658,-0.35995,0.451257][0.165628,0.016198,0][0.742978,-0.310224,-0.0503763][0.81658,-0.35995,0.451257][0.165628,0.016198,0][0.504682,-0.486232,-0.0301813][0.150833,-0.150835,0.976984][0.294562,0.033073,0][0.525681,-0.527522,-0.0503773][0.595147,-0.59515,0.539997][0.300877,0.016198,0][-0.169622,0.384406,-0.231098][-0.798656,0.306197,-0.518066][0.233462,0.451627,0][0.633994,-0.419209,-0.231098][0.306202,-0.798654,-0.518065][0.233461,0.016198,0][-0.319564,0.234465,-0.168477][-1.43771,1.43771,1.39474e-005][0.326787,0.451627,0][-0.319564,0.234465,-0.168477][-1.43771,1.43771,1.39474e-005][0.326787,0.451627,0][0.633994,-0.419209,-0.231098][0.306202,-0.798654,-0.518065][0.233461,0.016198,0][0.484052,-0.56915,-0.168477][0.45584,-0.591772,-0.664843][0.326787,0.016198,0][0.738395,-0.252519,-0.0301803][0.7117,0.256241,0.654082][0.149096,0.033073,0][0.742978,-0.310224,-0.0503763][0.81658,-0.35995,0.451257][0.165628,0.016198,0][0.738395,-0.252519,-0.332418][0.907994,0.418984,0][0.149096,0.033073,0][0.738395,-0.252519,-0.332418][0.907994,0.418984,0][0.149096,0.033073,0][0.742978,-0.310224,-0.0503763][0.81658,-0.35995,0.451257][0.165628,0.016198,0][0.742978,-0.310224,-0.332418][0.938315,-0.34578,0][0.165628,0.016198,0][-0.112351,0.441678,-0.332418][-0.959589,0.281404,-1.20558e-006][0.197815,0.451627,0][0.691265,-0.361937,-0.332418][0.281402,-0.95959,-1.32789e-006][0.197815,0.016198,0][-0.169622,0.384406,-0.231098][-0.798656,0.306197,-0.518066][0.233462,0.451627,0][-0.169622,0.384406,-0.231098][-0.798656,0.306197,-0.518066][0.233462,0.451627,0][0.691265,-0.361937,-0.332418][0.281402,-0.95959,-1.32789e-006][0.197815,0.016198,0][0.633994,-0.419209,-0.231098][0.306202,-0.798654,-0.518065][0.233461,0.016198,0][0.738395,-0.252519,-0.634657][0.7117,0.256242,-0.654082][0.149096,0.033073,0][0.738395,-0.252519,-0.332418][0.907994,0.418984,0][0.149096,0.033073,0][0.742978,-0.310224,-0.614461][0.81658,-0.35995,-0.451257][0.165628,0.016198,0][0.742978,-0.310224,-0.614461][0.81658,-0.35995,-0.451257][0.165628,0.016198,0][0.738395,-0.252519,-0.332418][0.907994,0.418984,0][0.149096,0.033073,0][0.742978,-0.310224,-0.332418][0.938315,-0.34578,0][0.165628,0.016198,0][-0.169622,0.384406,-0.433739][-0.798657,0.306197,0.518064][0.233462,0.451627,0][0.633994,-0.419209,-0.433739][0.306202,-0.798656,0.518064][0.233461,0.016198,0][-0.112351,0.441678,-0.332418][-0.959589,0.281404,-1.20558e-006][0.197815,0.451627,0][-0.112351,0.441678,-0.332418][-0.959589,0.281404,-1.20558e-006][0.197815,0.451627,0][0.633994,-0.419209,-0.433739][0.306202,-0.798656,0.518064][0.233461,0.016198,0][0.691265,-0.361937,-0.332418][0.281402,-0.95959,-1.32789e-006][0.197815,0.016198,0][0.738395,-0.252519,-0.634657][0.7117,0.256242,-0.654082][0.149096,0.033073,0][0.742978,-0.310224,-0.614461][0.81658,-0.35995,-0.451257][0.165628,0.016198,0][0.504682,-0.486232,-0.634656][0.150833,-0.150835,-0.976984][0.294562,0.033073,0][0.504682,-0.486232,-0.634656][0.150833,-0.150835,-0.976984][0.294562,0.033073,0][0.742978,-0.310224,-0.614461][0.81658,-0.35995,-0.451257][0.165628,0.016198,0][0.525681,-0.527522,-0.61446][0.595148,-0.595149,-0.539997][0.300877,0.016198,0][-0.319564,0.234465,-0.49636][-0.591773,0.455845,0.664838][0.326787,0.451627,0][0.484052,-0.56915,-0.49636][0.455841,-0.59177,0.664844][0.326787,0.016198,0][-0.169622,0.384406,-0.433739][-0.798657,0.306197,0.518064][0.233462,0.451627,0][-0.169622,0.384406,-0.433739][-0.798657,0.306197,0.518064][0.233462,0.451627,0][0.484052,-0.56915,-0.49636][0.455841,-0.59177,0.664844][0.326787,0.016198,0][0.633994,-0.419209,-0.433739][0.306202,-0.798656,0.518064][0.233461,0.016198,0][0.215796,-0.775118,-0.634656][0.150835,-0.150835,-0.976984][0.474368,0.033073,0][0.504682,-0.486232,-0.634656][0.150833,-0.150835,-0.976984][0.294562,0.033073,0][0.257085,-0.796117,-0.61446][0.595147,-0.595149,-0.539998][0.468053,0.016198,0][0.257085,-0.796117,-0.61446][0.595147,-0.595149,-0.539998][0.468053,0.016198,0][0.504682,-0.486232,-0.634656][0.150833,-0.150835,-0.976984][0.294562,0.033073,0][0.525681,-0.527522,-0.61446][0.595148,-0.595149,-0.539997][0.300877,0.016198,0][-0.504902,0.0491269,-0.49636][-0.455845,0.591773,0.664838][0.442143,0.451627,0][0.298714,-0.754489,-0.49636][0.591772,-0.455845,0.664839][0.442143,0.016198,0][-0.319564,0.234465,-0.49636][-0.591773,0.455845,0.664838][0.326787,0.451627,0][-0.319564,0.234465,-0.49636][-0.591773,0.455845,0.664838][0.326787,0.451627,0][0.298714,-0.754489,-0.49636][0.591772,-0.455845,0.664839][0.442143,0.016198,0][0.484052,-0.56915,-0.49636][0.455841,-0.59177,0.664844][0.326787,0.016198,0][-0.0179171,-1.00883,-0.634656][-0.256236,-0.711704,-0.65408][0.619833,0.033073,0][0.215796,-0.775118,-0.634656][0.150835,-0.150835,-0.976984][0.474368,0.033073,0][0.0397879,-1.01341,-0.61446][0.359959,-0.816578,-0.451254][0.603302,0.016198,0][0.0397879,-1.01341,-0.61446][0.359959,-0.816578,-0.451254][0.603302,0.016198,0][0.215796,-0.775118,-0.634656][0.150835,-0.150835,-0.976984][0.474368,0.033073,0][0.257085,-0.796117,-0.61446][0.595147,-0.595149,-0.539998][0.468053,0.016198,0][-0.654843,-0.100815,-0.433739][-0.306199,0.798655,0.518067][0.535469,0.451627,0][0.148772,-0.90443,-0.433739][0.798657,-0.306198,0.518064][0.535469,0.016198,0][-0.504902,0.0491269,-0.49636][-0.455845,0.591773,0.664838][0.442143,0.451627,0][-0.504902,0.0491269,-0.49636][-0.455845,0.591773,0.664838][0.442143,0.451627,0][0.148772,-0.90443,-0.433739][0.798657,-0.306198,0.518064][0.535469,0.016198,0][0.298714,-0.754489,-0.49636][0.591772,-0.455845,0.664839][0.442143,0.016198,0][-0.0179171,-1.00883,-0.634656][-0.256236,-0.711704,-0.65408][0.619833,0.033073,0][0.0397879,-1.01341,-0.61446][0.359959,-0.816578,-0.451254][0.603302,0.016198,0][-0.0179181,-1.00883,-0.332418][-0.418983,-0.907994,-1.42422e-006][0.619834,0.033073,0][-0.0179181,-1.00883,-0.332418][-0.418983,-0.907994,-1.42422e-006][0.619834,0.033073,0][0.0397879,-1.01341,-0.61446][0.359959,-0.816578,-0.451254][0.603302,0.016198,0][0.0397879,-1.01342,-0.332418][0.345783,-0.938314,-1.51215e-006][0.603302,0.016198,0][-0.712115,-0.158087,-0.332418][-0.281402,0.95959,-2.63539e-006][0.571115,0.451627,0][0.0915009,-0.961702,-0.332418][0.95959,-0.281403,0][0.571115,0.016198,0][-0.654843,-0.100815,-0.433739][-0.306199,0.798655,0.518067][0.535469,0.451627,0][-0.654843,-0.100815,-0.433739][-0.306199,0.798655,0.518067][0.535469,0.451627,0][0.0915009,-0.961702,-0.332418][0.95959,-0.281403,0][0.571115,0.016198,0][0.148772,-0.90443,-0.433739][0.798657,-0.306198,0.518064][0.535469,0.016198,0][-0.0179181,-1.00883,-0.0301803][-0.256242,-0.7117,0.654082][0.619834,0.033073,0][-0.0179181,-1.00883,-0.332418][-0.418983,-0.907994,-1.42422e-006][0.619834,0.033073,0][0.0397879,-1.01342,-0.0503763][0.359952,-0.816579,0.451258][0.603302,0.016198,0][0.0397879,-1.01342,-0.0503763][0.359952,-0.816579,0.451258][0.603302,0.016198,0][-0.0179181,-1.00883,-0.332418][-0.418983,-0.907994,-1.42422e-006][0.619834,0.033073,0][0.0397879,-1.01342,-0.332418][0.345783,-0.938314,-1.51215e-006][0.603302,0.016198,0][-0.654844,-0.100815,-0.231097][-0.306204,0.798655,-0.518063][0.535469,0.451627,0][0.148772,-0.90443,-0.231097][0.798656,-0.306199,-0.518065][0.535469,0.016198,0][-0.712115,-0.158087,-0.332418][-0.281402,0.95959,-2.63539e-006][0.571115,0.451627,0][-0.712115,-0.158087,-0.332418][-0.281402,0.95959,-2.63539e-006][0.571115,0.451627,0][0.148772,-0.90443,-0.231097][0.798656,-0.306199,-0.518065][0.535469,0.016198,0][0.0915009,-0.961702,-0.332418][0.95959,-0.281403,0][0.571115,0.016198,0][0.166414,0.382299,0.373378][0.798655,0.306202,-0.518065][0.808035,0.078704,0][0.134409,0.414304,0.467102][0.371309,0.851311,0.370673][0.887416,0.011005,0][0.316356,0.232357,0.435999][0.591772,0.455844,-0.66484][0.835541,0.171845,0][0.316356,0.232357,0.435999][0.591772,0.455844,-0.66484][0.835541,0.171845,0][0.134409,0.414304,0.467102][0.371309,0.851311,0.370673][0.887416,0.011005,0][0.291888,0.256825,0.589509][0.483258,0.667767,0.56617][0.887416,0.145987,0][0.501694,0.0470178,0.435998][0.455842,0.59177,-0.664843][0.835541,0.286974,0][0.316356,0.232357,0.435999][0.591772,0.455844,-0.66484][0.835541,0.171845,0][0.526162,0.0225499,0.589509][0.667768,0.483251,0.566175][0.887416,0.312833,0][0.526162,0.0225499,0.589509][0.667768,0.483251,0.566175][0.887416,0.312833,0][0.316356,0.232357,0.435999][0.591772,0.455844,-0.66484][0.835541,0.171845,0][0.291888,0.256825,0.589509][0.483258,0.667767,0.56617][0.887416,0.145987,0][0.651635,-0.102923,0.373378][0.306199,0.798656,-0.518064][0.808036,0.380115,0][0.501694,0.0470178,0.435998][0.455842,0.59177,-0.664843][0.835541,0.286974,0][0.68364,-0.134928,0.467102][0.851309,0.371316,0.370672][0.887416,0.447814,0][0.68364,-0.134928,0.467102][0.851309,0.371316,0.370672][0.887416,0.447814,0][0.501694,0.0470178,0.435998][0.455842,0.59177,-0.664843][0.835541,0.286974,0][0.526162,0.0225499,0.589509][0.667768,0.483251,0.566175][0.887416,0.312833,0][0.708907,-0.160194,0.272057][0.281402,0.95959,0][0.763531,0.415691,0][0.651635,-0.102923,0.373378][0.306199,0.798656,-0.518064][0.808036,0.380115,0][0.76062,-0.211907,0.272057][0.947854,0.28944,0.133406][0.763531,0.447814,0][0.76062,-0.211907,0.272057][0.947854,0.28944,0.133406][0.763531,0.447814,0][0.651635,-0.102923,0.373378][0.306199,0.798656,-0.518064][0.808036,0.380115,0][0.68364,-0.134928,0.467102][0.851309,0.371316,0.370672][0.887416,0.447814,0][0.708907,-0.160194,0.272057][0.281402,0.95959,0][0.763531,0.415691,0][0.76062,-0.211907,0.272057][0.947854,0.28944,0.133406][0.763531,0.447814,0][0.651635,-0.102923,0.170736][0.306198,0.798656,0.518065][0.719027,0.380115,0][0.651635,-0.102923,0.170736][0.306198,0.798656,0.518065][0.719027,0.380115,0][0.76062,-0.211907,0.272057][0.947854,0.28944,0.133406][0.763531,0.447814,0][0.76062,-0.211907,-0.00998533][0.81727,0.355233,-0.453739][0.639647,0.447814,0][0.501694,0.0470178,0.108116][0.455842,0.59177,0.664843][0.691521,0.286974,0][0.651635,-0.102923,0.170736][0.306198,0.798656,0.518065][0.719027,0.380115,0][0.543323,0.00538969,-0.00998533][0.593765,0.593766,-0.543034][0.639647,0.312833,0][0.543323,0.00538969,-0.00998533][0.593765,0.593766,-0.543034][0.639647,0.312833,0][0.651635,-0.102923,0.170736][0.306198,0.798656,0.518065][0.719027,0.380115,0][0.76062,-0.211907,-0.00998533][0.81727,0.355233,-0.453739][0.639647,0.447814,0][0.316356,0.232357,0.108116][0.591772,0.455845,0.664839][0.691521,0.171845,0][0.501694,0.0470178,0.108116][0.455842,0.59177,0.664843][0.691521,0.286974,0][0.274727,0.273985,-0.00998536][0.593764,0.593765,-0.543035][0.639647,0.145987,0][0.274727,0.273985,-0.00998536][0.593764,0.593765,-0.543035][0.639647,0.145987,0][0.501694,0.0470178,0.108116][0.455842,0.59177,0.664843][0.691521,0.286974,0][0.543323,0.00538969,-0.00998533][0.593765,0.593766,-0.543034][0.639647,0.312833,0][0.316356,0.232357,0.108116][0.591772,0.455845,0.664839][0.691521,0.171845,0][0.274727,0.273985,-0.00998536][0.593764,0.593765,-0.543035][0.639647,0.145987,0][0.166414,0.382298,0.170736][0.798654,0.306201,0.518067][0.719027,0.078705,0][0.166414,0.382298,0.170736][0.798654,0.306201,0.518067][0.719027,0.078705,0][0.274727,0.273985,-0.00998536][0.593764,0.593765,-0.543035][0.639647,0.145987,0][0.0574299,0.491283,-0.00998536][0.355227,0.817272,-0.45374][0.639647,0.011005,0][0.109142,0.43957,0.272057][0.95959,0.281402,-2.76643e-006][0.763531,0.043128,0][0.166414,0.382298,0.170736][0.798654,0.306201,0.518067][0.719027,0.078705,0][0.0574289,0.491283,0.272057][0.28943,0.947857,0.133406][0.763531,0.011005,0][0.0574289,0.491283,0.272057][0.28943,0.947857,0.133406][0.763531,0.011005,0][0.166414,0.382298,0.170736][0.798654,0.306201,0.518067][0.719027,0.078705,0][0.0574299,0.491283,-0.00998536][0.355227,0.817272,-0.45374][0.639647,0.011005,0][0.109142,0.43957,0.272057][0.95959,0.281402,-2.76643e-006][0.763531,0.043128,0][0.0574289,0.491283,0.272057][0.28943,0.947857,0.133406][0.763531,0.011005,0][0.166414,0.382299,0.373378][0.798655,0.306202,-0.518065][0.808035,0.078704,0][0.166414,0.382299,0.373378][0.798655,0.306202,-0.518065][0.808035,0.078704,0][0.0574289,0.491283,0.272057][0.28943,0.947857,0.133406][0.763531,0.011005,0][0.134409,0.414304,0.467102][0.371309,0.851311,0.370673][0.887416,0.011005,0][0.251292,0.233928,0.609705][-0.00887696,0.333337,0.942766][0.474368,0.434752,0][0.0819169,0.403303,0.487298][-0.255918,0.689621,0.677443][0.619834,0.434752,0][-0.504365,-0.521729,0.609704][-0.333337,0.00887798,0.942766][0.474368,0.033073,0][-0.504365,-0.521729,0.609704][-0.333337,0.00887798,0.942766][0.474368,0.033073,0][0.0819169,0.403303,0.487298][-0.255918,0.689621,0.677443][0.619834,0.434752,0][-0.67374,-0.352354,0.487298][-0.689621,0.255916,0.677443][0.619834,0.033073,0][0.503265,-0.0180452,0.609704][0.333335,-0.00888132,0.942767][0.294562,0.434752,0][0.251292,0.233928,0.609705][-0.00887696,0.333337,0.942766][0.474368,0.434752,0][-0.252392,-0.773702,0.609704][0.00887974,-0.333334,0.942767][0.294562,0.033073,0][-0.252392,-0.773702,0.609704][0.00887974,-0.333334,0.942767][0.294562,0.033073,0][0.251292,0.233928,0.609705][-0.00887696,0.333337,0.942766][0.474368,0.434752,0][-0.504365,-0.521729,0.609704][-0.333337,0.00887798,0.942766][0.474368,0.033073,0][0.67264,-0.18742,0.487298][0.689623,-0.255912,0.677444][0.149096,0.434752,0][0.503265,-0.0180452,0.609704][0.333335,-0.00888132,0.942767][0.294562,0.434752,0][-0.0830171,-0.943077,0.487298][0.255911,-0.689622,0.677444][0.149096,0.033073,0][-0.0830171,-0.943077,0.487298][0.255911,-0.689622,0.677444][0.149096,0.033073,0][0.503265,-0.0180452,0.609704][0.333335,-0.00888132,0.942767][0.294562,0.434752,0][-0.252392,-0.773702,0.609704][0.00887974,-0.333334,0.942767][0.294562,0.033073,0][0.755436,-0.270215,0.272057][0.876892,-0.424617,0.225301][0.149096,0.434752,0][0.67264,-0.18742,0.487298][0.689623,-0.255912,0.677444][0.149096,0.434752,0][-0.000221127,-1.02587,0.272057][0.424618,-0.876891,0.225301][0.149096,0.033073,0][-0.000221127,-1.02587,0.272057][0.424618,-0.876891,0.225301][0.149096,0.033073,0][0.67264,-0.18742,0.487298][0.689623,-0.255912,0.677444][0.149096,0.434752,0][-0.0830171,-0.943077,0.487298][0.255911,-0.689622,0.677444][0.149096,0.033073,0][0.755436,-0.270215,-0.0301803][0.709841,-0.259311,-0.654891][0.149096,0.434752,0][0.755436,-0.270215,0.272057][0.876892,-0.424617,0.225301][0.149096,0.434752,0][-0.000221127,-1.02587,-0.0301813][0.259308,-0.709841,-0.654893][0.149096,0.033073,0][-0.000221127,-1.02587,-0.0301813][0.259308,-0.709841,-0.654893][0.149096,0.033073,0][0.755436,-0.270215,0.272057][0.876892,-0.424617,0.225301][0.149096,0.434752,0][-0.000221127,-1.02587,0.272057][0.424618,-0.876891,0.225301][0.149096,0.033073,0][0.521722,-0.0365021,-0.0301803][0.148337,0.148337,-0.977749][0.294562,0.434752,0][0.755436,-0.270215,-0.0301803][0.709841,-0.259311,-0.654891][0.149096,0.434752,0][-0.233935,-0.792159,-0.0301803][-0.14834,-0.148339,-0.977748][0.294562,0.033073,0][-0.233935,-0.792159,-0.0301803][-0.14834,-0.148339,-0.977748][0.294562,0.033073,0][0.755436,-0.270215,-0.0301803][0.709841,-0.259311,-0.654891][0.149096,0.434752,0][-0.000221127,-1.02587,-0.0301813][0.259308,-0.709841,-0.654893][0.149096,0.033073,0][0.232836,0.252384,-0.0301804][0.148338,0.148338,-0.977748][0.474368,0.434752,0][0.521722,-0.0365021,-0.0301803][0.148337,0.148337,-0.977749][0.294562,0.434752,0][-0.522821,-0.503273,-0.0301803][-0.148339,-0.148339,-0.977748][0.474368,0.033073,0][-0.522821,-0.503273,-0.0301803][-0.148339,-0.148339,-0.977748][0.474368,0.033073,0][0.521722,-0.0365021,-0.0301803][0.148337,0.148337,-0.977749][0.294562,0.434752,0][-0.233935,-0.792159,-0.0301803][-0.14834,-0.148339,-0.977748][0.294562,0.033073,0][-0.000878127,0.486098,-0.0301804][-0.259316,0.709839,-0.654893][0.619834,0.434752,0][0.232836,0.252384,-0.0301804][0.148338,0.148338,-0.977748][0.474368,0.434752,0][-0.756535,-0.269559,-0.0301803][-0.709841,0.259312,-0.654891][0.619833,0.033073,0][-0.756535,-0.269559,-0.0301803][-0.709841,0.259312,-0.654891][0.619833,0.033073,0][0.232836,0.252384,-0.0301804][0.148338,0.148338,-0.977748][0.474368,0.434752,0][-0.522821,-0.503273,-0.0301803][-0.148339,-0.148339,-0.977748][0.474368,0.033073,0][-0.000878127,0.486098,0.272057][-0.424625,0.876889,0.2253][0.619834,0.434752,0][-0.000878127,0.486098,-0.0301804][-0.259316,0.709839,-0.654893][0.619834,0.434752,0][-0.756535,-0.269559,0.272057][-0.876889,0.424625,0.225299][0.619834,0.033073,0][-0.756535,-0.269559,0.272057][-0.876889,0.424625,0.225299][0.619834,0.033073,0][-0.000878127,0.486098,-0.0301804][-0.259316,0.709839,-0.654893][0.619834,0.434752,0][-0.756535,-0.269559,-0.0301803][-0.709841,0.259312,-0.654891][0.619833,0.033073,0][0.0819169,0.403303,0.487298][-0.255918,0.689621,0.677443][0.619834,0.434752,0][-0.000878127,0.486098,0.272057][-0.424625,0.876889,0.2253][0.619834,0.434752,0][-0.67374,-0.352354,0.487298][-0.689621,0.255916,0.677443][0.619834,0.033073,0][-0.67374,-0.352354,0.487298][-0.689621,0.255916,0.677443][0.619834,0.033073,0][-0.000878127,0.486098,0.272057][-0.424625,0.876889,0.2253][0.619834,0.434752,0][-0.756535,-0.269559,0.272057][-0.876889,0.424625,0.225299][0.619834,0.033073,0][-0.527261,-0.562324,0.589509][-0.667765,-0.483256,0.566174][0.887416,0.145987,0][-0.68474,-0.404846,0.467103][-0.851309,-0.371312,0.370676][0.887416,0.011005,0][-0.502793,-0.586793,0.435998][-0.455844,-0.591771,-0.664841][0.835541,0.171845,0][-0.502793,-0.586793,0.435998][-0.455844,-0.591771,-0.664841][0.835541,0.171845,0][-0.68474,-0.404846,0.467103][-0.851309,-0.371312,0.370676][0.887416,0.011005,0][-0.652735,-0.436851,0.373378][-0.306202,-0.798654,-0.518065][0.808036,0.078705,0][-0.292986,-0.796599,0.589509][-0.483251,-0.667767,0.566176][0.887416,0.312833,0][-0.527261,-0.562324,0.589509][-0.667765,-0.483256,0.566174][0.887416,0.145987,0][-0.317455,-0.772131,0.435998][-0.591772,-0.455844,-0.66484][0.835541,0.286974,0][-0.317455,-0.772131,0.435998][-0.591772,-0.455844,-0.66484][0.835541,0.286974,0][-0.527261,-0.562324,0.589509][-0.667765,-0.483256,0.566174][0.887416,0.145987,0][-0.502793,-0.586793,0.435998][-0.455844,-0.591771,-0.664841][0.835541,0.171845,0][-0.292986,-0.796599,0.589509][-0.483251,-0.667767,0.566176][0.887416,0.312833,0][-0.317455,-0.772131,0.435998][-0.591772,-0.455844,-0.66484][0.835541,0.286974,0][-0.135509,-0.954077,0.467102][-0.371317,-0.851309,0.37067][0.887416,0.447814,0][-0.135509,-0.954077,0.467102][-0.371317,-0.851309,0.37067][0.887416,0.447814,0][-0.317455,-0.772131,0.435998][-0.591772,-0.455844,-0.66484][0.835541,0.286974,0][-0.167513,-0.922072,0.373378][-0.798654,-0.306197,-0.518069][0.808036,0.380115,0][-0.135509,-0.954077,0.467102][-0.371317,-0.851309,0.37067][0.887416,0.447814,0][-0.167513,-0.922072,0.373378][-0.798654,-0.306197,-0.518069][0.808036,0.380115,0][-0.0585291,-1.03106,0.272057][-0.289438,-0.947855,0.133406][0.763531,0.447814,0][-0.0585291,-1.03106,0.272057][-0.289438,-0.947855,0.133406][0.763531,0.447814,0][-0.167513,-0.922072,0.373378][-0.798654,-0.306197,-0.518069][0.808036,0.380115,0][-0.110242,-0.979345,0.272057][-0.959587,-0.281414,1.51427e-007][0.763531,0.415691,0][-0.0585281,-1.03106,-0.0099853][-0.355235,-0.817274,-0.45373][0.639647,0.447814,0][-0.0585291,-1.03106,0.272057][-0.289438,-0.947855,0.133406][0.763531,0.447814,0][-0.167513,-0.922072,0.170736][-0.798654,-0.306201,0.518066][0.719027,0.380115,0][-0.167513,-0.922072,0.170736][-0.798654,-0.306201,0.518066][0.719027,0.380115,0][-0.0585291,-1.03106,0.272057][-0.289438,-0.947855,0.133406][0.763531,0.447814,0][-0.110242,-0.979345,0.272057][-0.959587,-0.281414,1.51427e-007][0.763531,0.415691,0][-0.0585281,-1.03106,-0.0099853][-0.355235,-0.817274,-0.45373][0.639647,0.447814,0][-0.167513,-0.922072,0.170736][-0.798654,-0.306201,0.518066][0.719027,0.380115,0][-0.275827,-0.813759,-0.0099853][-0.593765,-0.593767,-0.543033][0.639647,0.312833,0][-0.275827,-0.813759,-0.0099853][-0.593765,-0.593767,-0.543033][0.639647,0.312833,0][-0.167513,-0.922072,0.170736][-0.798654,-0.306201,0.518066][0.719027,0.380115,0][-0.317456,-0.77213,0.108116][-0.59177,-0.455845,0.664842][0.691521,0.286974,0][-0.544422,-0.545164,-0.0099853][-0.593765,-0.593766,-0.543033][0.639647,0.145987,0][-0.275827,-0.813759,-0.0099853][-0.593765,-0.593767,-0.543033][0.639647,0.312833,0][-0.502794,-0.586792,0.108116][-0.455843,-0.591771,0.664841][0.691521,0.171845,0][-0.502794,-0.586792,0.108116][-0.455843,-0.591771,0.664841][0.691521,0.171845,0][-0.275827,-0.813759,-0.0099853][-0.593765,-0.593767,-0.543033][0.639647,0.312833,0][-0.317456,-0.77213,0.108116][-0.59177,-0.455845,0.664842][0.691521,0.286974,0][-0.761719,-0.327867,-0.00998533][-0.81727,-0.355232,-0.453739][0.639647,0.011005,0][-0.544422,-0.545164,-0.0099853][-0.593765,-0.593766,-0.543033][0.639647,0.145987,0][-0.652735,-0.436851,0.170736][-0.306201,-0.798655,0.518065][0.719027,0.078705,0][-0.652735,-0.436851,0.170736][-0.306201,-0.798655,0.518065][0.719027,0.078705,0][-0.544422,-0.545164,-0.0099853][-0.593765,-0.593766,-0.543033][0.639647,0.145987,0][-0.502794,-0.586792,0.108116][-0.455843,-0.591771,0.664841][0.691521,0.171845,0][-0.761719,-0.327867,-0.00998533][-0.81727,-0.355232,-0.453739][0.639647,0.011005,0][-0.652735,-0.436851,0.170736][-0.306201,-0.798655,0.518065][0.719027,0.078705,0][-0.76172,-0.327866,0.272057][-0.947857,-0.289429,0.133406][0.763531,0.011005,0][-0.76172,-0.327866,0.272057][-0.947857,-0.289429,0.133406][0.763531,0.011005,0][-0.652735,-0.436851,0.170736][-0.306201,-0.798655,0.518065][0.719027,0.078705,0][-0.710007,-0.379579,0.272057][-0.281404,-0.959589,0][0.763531,0.043128,0][-0.68474,-0.404846,0.467103][-0.851309,-0.371312,0.370676][0.887416,0.011005,0][-0.76172,-0.327866,0.272057][-0.947857,-0.289429,0.133406][0.763531,0.011005,0][-0.652735,-0.436851,0.373378][-0.306202,-0.798654,-0.518065][0.808036,0.078705,0][-0.652735,-0.436851,0.373378][-0.306202,-0.798654,-0.518065][0.808036,0.078705,0][-0.76172,-0.327866,0.272057][-0.947857,-0.289429,0.133406][0.763531,0.011005,0][-0.710007,-0.379579,0.272057][-0.281404,-0.959589,0][0.763531,0.043128,0][0.0819169,0.403303,0.487298][-0.255918,0.689621,0.677443][0.619834,0.434752,0][0.251292,0.233928,0.609705][-0.00887696,0.333337,0.942766][0.474368,0.434752,0][0.134409,0.414304,0.467102][0.371309,0.851311,0.370673][0.603302,0.451627,0][0.134409,0.414304,0.467102][0.371309,0.851311,0.370673][0.603302,0.451627,0][0.251292,0.233928,0.609705][-0.00887696,0.333337,0.942766][0.474368,0.434752,0][0.291888,0.256825,0.589509][0.483258,0.667767,0.56617][0.468053,0.451627,0][0.251292,0.233928,0.609705][-0.00887696,0.333337,0.942766][0.474368,0.434752,0][0.503265,-0.0180452,0.609704][0.333335,-0.00888132,0.942767][0.294562,0.434752,0][0.291888,0.256825,0.589509][0.483258,0.667767,0.56617][0.468053,0.451627,0][0.291888,0.256825,0.589509][0.483258,0.667767,0.56617][0.468053,0.451627,0][0.503265,-0.0180452,0.609704][0.333335,-0.00888132,0.942767][0.294562,0.434752,0][0.526162,0.0225499,0.589509][0.667768,0.483251,0.566175][0.300877,0.451627,0][0.67264,-0.18742,0.487298][0.689623,-0.255912,0.677444][0.149096,0.434752,0][0.68364,-0.134928,0.467102][0.851309,0.371316,0.370672][0.165628,0.451627,0][0.503265,-0.0180452,0.609704][0.333335,-0.00888132,0.942767][0.294562,0.434752,0][0.503265,-0.0180452,0.609704][0.333335,-0.00888132,0.942767][0.294562,0.434752,0][0.68364,-0.134928,0.467102][0.851309,0.371316,0.370672][0.165628,0.451627,0][0.526162,0.0225499,0.589509][0.667768,0.483251,0.566175][0.300877,0.451627,0][0.755436,-0.270215,0.272057][0.876892,-0.424617,0.225301][0.149096,0.434752,0][0.76062,-0.211907,0.272057][0.947854,0.28944,0.133406][0.165629,0.451627,0][0.67264,-0.18742,0.487298][0.689623,-0.255912,0.677444][0.149096,0.434752,0][0.67264,-0.18742,0.487298][0.689623,-0.255912,0.677444][0.149096,0.434752,0][0.76062,-0.211907,0.272057][0.947854,0.28944,0.133406][0.165629,0.451627,0][0.68364,-0.134928,0.467102][0.851309,0.371316,0.370672][0.165628,0.451627,0][0.755436,-0.270215,-0.0301803][0.709841,-0.259311,-0.654891][0.149096,0.434752,0][0.76062,-0.211907,-0.00998533][0.81727,0.355233,-0.453739][0.165628,0.451627,0][0.755436,-0.270215,0.272057][0.876892,-0.424617,0.225301][0.149096,0.434752,0][0.755436,-0.270215,0.272057][0.876892,-0.424617,0.225301][0.149096,0.434752,0][0.76062,-0.211907,-0.00998533][0.81727,0.355233,-0.453739][0.165628,0.451627,0][0.76062,-0.211907,0.272057][0.947854,0.28944,0.133406][0.165629,0.451627,0][0.755436,-0.270215,-0.0301803][0.709841,-0.259311,-0.654891][0.149096,0.434752,0][0.521722,-0.0365021,-0.0301803][0.148337,0.148337,-0.977749][0.294562,0.434752,0][0.76062,-0.211907,-0.00998533][0.81727,0.355233,-0.453739][0.165628,0.451627,0][0.76062,-0.211907,-0.00998533][0.81727,0.355233,-0.453739][0.165628,0.451627,0][0.521722,-0.0365021,-0.0301803][0.148337,0.148337,-0.977749][0.294562,0.434752,0][0.543323,0.00538969,-0.00998533][0.593765,0.593766,-0.543034][0.300877,0.451627,0][0.521722,-0.0365021,-0.0301803][0.148337,0.148337,-0.977749][0.294562,0.434752,0][0.232836,0.252384,-0.0301804][0.148338,0.148338,-0.977748][0.474368,0.434752,0][0.543323,0.00538969,-0.00998533][0.593765,0.593766,-0.543034][0.300877,0.451627,0][0.543323,0.00538969,-0.00998533][0.593765,0.593766,-0.543034][0.300877,0.451627,0][0.232836,0.252384,-0.0301804][0.148338,0.148338,-0.977748][0.474368,0.434752,0][0.274727,0.273985,-0.00998536][0.593764,0.593765,-0.543035][0.468053,0.451627,0][-0.000878127,0.486098,-0.0301804][-0.259316,0.709839,-0.654893][0.619834,0.434752,0][0.0574299,0.491283,-0.00998536][0.355227,0.817272,-0.45374][0.603302,0.451627,0][0.232836,0.252384,-0.0301804][0.148338,0.148338,-0.977748][0.474368,0.434752,0][0.232836,0.252384,-0.0301804][0.148338,0.148338,-0.977748][0.474368,0.434752,0][0.0574299,0.491283,-0.00998536][0.355227,0.817272,-0.45374][0.603302,0.451627,0][0.274727,0.273985,-0.00998536][0.593764,0.593765,-0.543035][0.468053,0.451627,0][-0.000878127,0.486098,-0.0301804][-0.259316,0.709839,-0.654893][0.619834,0.434752,0][-0.000878127,0.486098,0.272057][-0.424625,0.876889,0.2253][0.619834,0.434752,0][0.0574299,0.491283,-0.00998536][0.355227,0.817272,-0.45374][0.603302,0.451627,0][0.0574299,0.491283,-0.00998536][0.355227,0.817272,-0.45374][0.603302,0.451627,0][-0.000878127,0.486098,0.272057][-0.424625,0.876889,0.2253][0.619834,0.434752,0][0.0574289,0.491283,0.272057][0.28943,0.947857,0.133406][0.603302,0.451627,0][-0.000878127,0.486098,0.272057][-0.424625,0.876889,0.2253][0.619834,0.434752,0][0.0819169,0.403303,0.487298][-0.255918,0.689621,0.677443][0.619834,0.434752,0][0.0574289,0.491283,0.272057][0.28943,0.947857,0.133406][0.603302,0.451627,0][0.0574289,0.491283,0.272057][0.28943,0.947857,0.133406][0.603302,0.451627,0][0.0819169,0.403303,0.487298][-0.255918,0.689621,0.677443][0.619834,0.434752,0][0.134409,0.414304,0.467102][0.371309,0.851311,0.370673][0.603302,0.451627,0][-0.67374,-0.352354,0.487298][-0.689621,0.255916,0.677443][0.619834,0.033073,0][-0.68474,-0.404846,0.467103][-0.851309,-0.371312,0.370676][0.603302,0.016198,0][-0.504365,-0.521729,0.609704][-0.333337,0.00887798,0.942766][0.474368,0.033073,0][-0.504365,-0.521729,0.609704][-0.333337,0.00887798,0.942766][0.474368,0.033073,0][-0.68474,-0.404846,0.467103][-0.851309,-0.371312,0.370676][0.603302,0.016198,0][-0.527261,-0.562324,0.589509][-0.667765,-0.483256,0.566174][0.468053,0.016198,0][0.316356,0.232357,0.435999][0.591772,0.455844,-0.66484][0.442143,0.451627,0][-0.502793,-0.586793,0.435998][-0.455844,-0.591771,-0.664841][0.442143,0.016198,0][0.166414,0.382299,0.373378][0.798655,0.306202,-0.518065][0.535469,0.451627,0][0.166414,0.382299,0.373378][0.798655,0.306202,-0.518065][0.535469,0.451627,0][-0.502793,-0.586793,0.435998][-0.455844,-0.591771,-0.664841][0.442143,0.016198,0][-0.652735,-0.436851,0.373378][-0.306202,-0.798654,-0.518065][0.535469,0.016198,0][-0.252392,-0.773702,0.609704][0.00887974,-0.333334,0.942767][0.294562,0.033073,0][-0.504365,-0.521729,0.609704][-0.333337,0.00887798,0.942766][0.474368,0.033073,0][-0.292986,-0.796599,0.589509][-0.483251,-0.667767,0.566176][0.300877,0.016198,0][-0.292986,-0.796599,0.589509][-0.483251,-0.667767,0.566176][0.300877,0.016198,0][-0.504365,-0.521729,0.609704][-0.333337,0.00887798,0.942766][0.474368,0.033073,0][-0.527261,-0.562324,0.589509][-0.667765,-0.483256,0.566174][0.468053,0.016198,0][0.501694,0.0470178,0.435998][0.455842,0.59177,-0.664843][0.326787,0.451627,0][-0.317455,-0.772131,0.435998][-0.591772,-0.455844,-0.66484][0.326787,0.016198,0][0.316356,0.232357,0.435999][0.591772,0.455844,-0.66484][0.442143,0.451627,0][0.316356,0.232357,0.435999][0.591772,0.455844,-0.66484][0.442143,0.451627,0][-0.317455,-0.772131,0.435998][-0.591772,-0.455844,-0.66484][0.326787,0.016198,0][-0.502793,-0.586793,0.435998][-0.455844,-0.591771,-0.664841][0.442143,0.016198,0][-0.0830171,-0.943077,0.487298][0.255911,-0.689622,0.677444][0.149096,0.033073,0][-0.252392,-0.773702,0.609704][0.00887974,-0.333334,0.942767][0.294562,0.033073,0][-0.135509,-0.954077,0.467102][-0.371317,-0.851309,0.37067][0.165628,0.016198,0][-0.135509,-0.954077,0.467102][-0.371317,-0.851309,0.37067][0.165628,0.016198,0][-0.252392,-0.773702,0.609704][0.00887974,-0.333334,0.942767][0.294562,0.033073,0][-0.292986,-0.796599,0.589509][-0.483251,-0.667767,0.566176][0.300877,0.016198,0][0.651635,-0.102923,0.373378][0.306199,0.798656,-0.518064][0.233462,0.451627,0][-0.167513,-0.922072,0.373378][-0.798654,-0.306197,-0.518069][0.233461,0.016198,0][0.501694,0.0470178,0.435998][0.455842,0.59177,-0.664843][0.326787,0.451627,0][0.501694,0.0470178,0.435998][0.455842,0.59177,-0.664843][0.326787,0.451627,0][-0.167513,-0.922072,0.373378][-0.798654,-0.306197,-0.518069][0.233461,0.016198,0][-0.317455,-0.772131,0.435998][-0.591772,-0.455844,-0.66484][0.326787,0.016198,0][-0.000221127,-1.02587,0.272057][0.424618,-0.876891,0.225301][0.149096,0.033073,0][-0.0830171,-0.943077,0.487298][0.255911,-0.689622,0.677444][0.149096,0.033073,0][-0.0585291,-1.03106,0.272057][-0.289438,-0.947855,0.133406][0.165628,0.016198,0][-0.0585291,-1.03106,0.272057][-0.289438,-0.947855,0.133406][0.165628,0.016198,0][-0.0830171,-0.943077,0.487298][0.255911,-0.689622,0.677444][0.149096,0.033073,0][-0.135509,-0.954077,0.467102][-0.371317,-0.851309,0.37067][0.165628,0.016198,0][0.708907,-0.160194,0.272057][0.281402,0.95959,0][0.197815,0.451627,0][-0.110242,-0.979345,0.272057][-0.959587,-0.281414,1.51427e-007][0.197815,0.016198,0][0.651635,-0.102923,0.373378][0.306199,0.798656,-0.518064][0.233462,0.451627,0][0.651635,-0.102923,0.373378][0.306199,0.798656,-0.518064][0.233462,0.451627,0][-0.110242,-0.979345,0.272057][-0.959587,-0.281414,1.51427e-007][0.197815,0.016198,0][-0.167513,-0.922072,0.373378][-0.798654,-0.306197,-0.518069][0.233461,0.016198,0][-0.000221127,-1.02587,-0.0301813][0.259308,-0.709841,-0.654893][0.149096,0.033073,0][-0.000221127,-1.02587,0.272057][0.424618,-0.876891,0.225301][0.149096,0.033073,0][-0.0585281,-1.03106,-0.0099853][-0.355235,-0.817274,-0.45373][0.165628,0.016198,0][-0.0585281,-1.03106,-0.0099853][-0.355235,-0.817274,-0.45373][0.165628,0.016198,0][-0.000221127,-1.02587,0.272057][0.424618,-0.876891,0.225301][0.149096,0.033073,0][-0.0585291,-1.03106,0.272057][-0.289438,-0.947855,0.133406][0.165628,0.016198,0][0.651635,-0.102923,0.170736][0.306198,0.798656,0.518065][0.233462,0.451627,0][-0.167513,-0.922072,0.170736][-0.798654,-0.306201,0.518066][0.233461,0.016198,0][0.708907,-0.160194,0.272057][0.281402,0.95959,0][0.197815,0.451627,0][0.708907,-0.160194,0.272057][0.281402,0.95959,0][0.197815,0.451627,0][-0.167513,-0.922072,0.170736][-0.798654,-0.306201,0.518066][0.233461,0.016198,0][-0.110242,-0.979345,0.272057][-0.959587,-0.281414,1.51427e-007][0.197815,0.016198,0][-0.000221127,-1.02587,-0.0301813][0.259308,-0.709841,-0.654893][0.149096,0.033073,0][-0.0585281,-1.03106,-0.0099853][-0.355235,-0.817274,-0.45373][0.165628,0.016198,0][-0.233935,-0.792159,-0.0301803][-0.14834,-0.148339,-0.977748][0.294562,0.033073,0][-0.233935,-0.792159,-0.0301803][-0.14834,-0.148339,-0.977748][0.294562,0.033073,0][-0.0585281,-1.03106,-0.0099853][-0.355235,-0.817274,-0.45373][0.165628,0.016198,0][-0.275827,-0.813759,-0.0099853][-0.593765,-0.593767,-0.543033][0.300877,0.016198,0][0.501694,0.0470178,0.108116][0.455842,0.59177,0.664843][0.326787,0.451627,0][-0.317456,-0.77213,0.108116][-0.59177,-0.455845,0.664842][0.326787,0.016198,0][0.651635,-0.102923,0.170736][0.306198,0.798656,0.518065][0.233462,0.451627,0][0.651635,-0.102923,0.170736][0.306198,0.798656,0.518065][0.233462,0.451627,0][-0.317456,-0.77213,0.108116][-0.59177,-0.455845,0.664842][0.326787,0.016198,0][-0.167513,-0.922072,0.170736][-0.798654,-0.306201,0.518066][0.233461,0.016198,0][-0.522821,-0.503273,-0.0301803][-0.148339,-0.148339,-0.977748][0.474368,0.033073,0][-0.233935,-0.792159,-0.0301803][-0.14834,-0.148339,-0.977748][0.294562,0.033073,0][-0.544422,-0.545164,-0.0099853][-0.593765,-0.593766,-0.543033][0.468053,0.016198,0][-0.544422,-0.545164,-0.0099853][-0.593765,-0.593766,-0.543033][0.468053,0.016198,0][-0.233935,-0.792159,-0.0301803][-0.14834,-0.148339,-0.977748][0.294562,0.033073,0][-0.275827,-0.813759,-0.0099853][-0.593765,-0.593767,-0.543033][0.300877,0.016198,0][0.316356,0.232357,0.108116][0.591772,0.455845,0.664839][0.442143,0.451627,0][-0.502794,-0.586792,0.108116][-0.455843,-0.591771,0.664841][0.442143,0.016198,0][0.501694,0.0470178,0.108116][0.455842,0.59177,0.664843][0.326787,0.451627,0][0.501694,0.0470178,0.108116][0.455842,0.59177,0.664843][0.326787,0.451627,0][-0.502794,-0.586792,0.108116][-0.455843,-0.591771,0.664841][0.442143,0.016198,0][-0.317456,-0.77213,0.108116][-0.59177,-0.455845,0.664842][0.326787,0.016198,0][-0.756535,-0.269559,-0.0301803][-0.709841,0.259312,-0.654891][0.619833,0.033073,0][-0.522821,-0.503273,-0.0301803][-0.148339,-0.148339,-0.977748][0.474368,0.033073,0][-0.761719,-0.327867,-0.00998533][-0.81727,-0.355232,-0.453739][0.603302,0.016198,0][-0.761719,-0.327867,-0.00998533][-0.81727,-0.355232,-0.453739][0.603302,0.016198,0][-0.522821,-0.503273,-0.0301803][-0.148339,-0.148339,-0.977748][0.474368,0.033073,0][-0.544422,-0.545164,-0.0099853][-0.593765,-0.593766,-0.543033][0.468053,0.016198,0][0.166414,0.382298,0.170736][0.798654,0.306201,0.518067][0.535469,0.451627,0][-0.652735,-0.436851,0.170736][-0.306201,-0.798655,0.518065][0.535469,0.016198,0][0.316356,0.232357,0.108116][0.591772,0.455845,0.664839][0.442143,0.451627,0][0.316356,0.232357,0.108116][0.591772,0.455845,0.664839][0.442143,0.451627,0][-0.652735,-0.436851,0.170736][-0.306201,-0.798655,0.518065][0.535469,0.016198,0][-0.502794,-0.586792,0.108116][-0.455843,-0.591771,0.664841][0.442143,0.016198,0][-0.756535,-0.269559,-0.0301803][-0.709841,0.259312,-0.654891][0.619833,0.033073,0][-0.761719,-0.327867,-0.00998533][-0.81727,-0.355232,-0.453739][0.603302,0.016198,0][-0.756535,-0.269559,0.272057][-0.876889,0.424625,0.225299][0.619834,0.033073,0][-0.756535,-0.269559,0.272057][-0.876889,0.424625,0.225299][0.619834,0.033073,0][-0.761719,-0.327867,-0.00998533][-0.81727,-0.355232,-0.453739][0.603302,0.016198,0][-0.76172,-0.327866,0.272057][-0.947857,-0.289429,0.133406][0.603302,0.016198,0][0.109142,0.43957,0.272057][0.95959,0.281402,-2.76643e-006][0.571115,0.451627,0][-0.710007,-0.379579,0.272057][-0.281404,-0.959589,0][0.571115,0.016198,0][0.166414,0.382298,0.170736][0.798654,0.306201,0.518067][0.535469,0.451627,0][0.166414,0.382298,0.170736][0.798654,0.306201,0.518067][0.535469,0.451627,0][-0.710007,-0.379579,0.272057][-0.281404,-0.959589,0][0.571115,0.016198,0][-0.652735,-0.436851,0.170736][-0.306201,-0.798655,0.518065][0.535469,0.016198,0][-0.756535,-0.269559,0.272057][-0.876889,0.424625,0.225299][0.619834,0.033073,0][-0.76172,-0.327866,0.272057][-0.947857,-0.289429,0.133406][0.603302,0.016198,0][-0.67374,-0.352354,0.487298][-0.689621,0.255916,0.677443][0.619834,0.033073,0][-0.67374,-0.352354,0.487298][-0.689621,0.255916,0.677443][0.619834,0.033073,0][-0.76172,-0.327866,0.272057][-0.947857,-0.289429,0.133406][0.603302,0.016198,0][-0.68474,-0.404846,0.467103][-0.851309,-0.371312,0.370676][0.603302,0.016198,0][0.166414,0.382299,0.373378][0.798655,0.306202,-0.518065][0.535469,0.451627,0][-0.652735,-0.436851,0.373378][-0.306202,-0.798654,-0.518065][0.535469,0.016198,0][0.109142,0.43957,0.272057][0.95959,0.281402,-2.76643e-006][0.571115,0.451627,0][0.109142,0.43957,0.272057][0.95959,0.281402,-2.76643e-006][0.571115,0.451627,0][-0.652735,-0.436851,0.373378][-0.306202,-0.798654,-0.518065][0.535469,0.016198,0][-0.710007,-0.379579,0.272057][-0.281404,-0.959589,0][0.571115,0.016198,0][-2.99512,-3.1837,0.351396][-0.435806,-0.254132,0.863418][0.087793,0.02921,0][-2.85603,-2.97867,0.409476][-0.21761,-0.0126954,0.975953][0.094868,0.066134,0][-3.06799,-3.11083,0.321091][-0.735571,-0.124384,0.66593][0.103431,0.02921,0][-3.06799,-3.11083,0.321091][-0.735571,-0.124384,0.66593][0.103431,0.02921,0][-2.85603,-2.97867,0.409476][-0.21761,-0.0126954,0.975953][0.094868,0.066134,0][-2.98225,-2.85245,0.356987][-0.5612,0.218709,0.798261][0.121954,0.066134,0][-2.99512,-3.1837,0.351396][-0.435806,-0.254132,0.863418][0.087793,0.02921,0][-2.90505,-3.27378,0.351396][-0.254132,-0.435808,0.863417][0.068463,0.02921,0][-2.85603,-2.97867,0.409476][-0.21761,-0.0126954,0.975953][0.094868,0.066134,0][-2.85603,-2.97867,0.409476][-0.21761,-0.0126954,0.975953][0.094868,0.066134,0][-2.90505,-3.27378,0.351396][-0.254132,-0.435808,0.863417][0.068463,0.02921,0][-2.70001,-3.13469,0.409476][-0.0126964,-0.217609,0.975953][0.061388,0.066134,0][-2.90505,-3.27378,0.351396][-0.254132,-0.435808,0.863417][0.068463,0.02921,0][-2.83217,-3.34665,0.321091][-0.124383,-0.73557,0.665932][0.052825,0.02921,0][-2.70001,-3.13469,0.409476][-0.0126964,-0.217609,0.975953][0.061388,0.066134,0][-2.70001,-3.13469,0.409476][-0.0126964,-0.217609,0.975953][0.061388,0.066134,0][-2.83217,-3.34665,0.321091][-0.124383,-0.73557,0.665932][0.052825,0.02921,0][-2.57379,-3.26091,0.356987][0.218707,-0.5612,0.798261][0.034302,0.066134,0][-2.83217,-3.34665,0.321091][-0.124383,-0.73557,0.665932][0.052825,0.02921,0][-2.80434,-3.37449,0.272057][0.00963511,-0.999954,0][0.046852,0.02921,0][-2.57379,-3.26091,0.356987][0.218707,-0.5612,0.798261][0.034302,0.066134,0][-2.57379,-3.26091,0.356987][0.218707,-0.5612,0.798261][0.034302,0.066134,0][-2.80434,-3.37449,0.272057][0.00963511,-0.999954,0][0.046852,0.02921,0][-2.52558,-3.30912,0.272057][0.435248,-0.90031,-2.86531e-007][0.023956,0.066134,0][-2.83217,-3.34665,0.223023][-0.124383,-0.735571,-0.665932][0.052825,0.02921,0][-2.57379,-3.26091,0.187127][0.218708,-0.5612,-0.798261][0.034302,0.066134,0][-2.80434,-3.37449,0.272057][0.00963511,-0.999954,0][0.046852,0.02921,0][-2.80434,-3.37449,0.272057][0.00963511,-0.999954,0][0.046852,0.02921,0][-2.57379,-3.26091,0.187127][0.218708,-0.5612,-0.798261][0.034302,0.066134,0][-2.52558,-3.30912,0.272057][0.435248,-0.90031,-2.86531e-007][0.023956,0.066134,0][-2.90505,-3.27378,0.192718][-0.254132,-0.435808,-0.863417][0.068463,0.02921,0][-2.70001,-3.13469,0.134638][-0.0126964,-0.217609,-0.975953][0.061388,0.066134,0][-2.83217,-3.34665,0.223023][-0.124383,-0.735571,-0.665932][0.052825,0.02921,0][-2.83217,-3.34665,0.223023][-0.124383,-0.735571,-0.665932][0.052825,0.02921,0][-2.70001,-3.13469,0.134638][-0.0126964,-0.217609,-0.975953][0.061388,0.066134,0][-2.57379,-3.26091,0.187127][0.218708,-0.5612,-0.798261][0.034302,0.066134,0][-2.90505,-3.27378,0.192718][-0.254132,-0.435808,-0.863417][0.068463,0.02921,0][-2.99512,-3.1837,0.192718][-0.435806,-0.254132,-0.863418][0.087793,0.02921,0][-2.70001,-3.13469,0.134638][-0.0126964,-0.217609,-0.975953][0.061388,0.066134,0][-2.70001,-3.13469,0.134638][-0.0126964,-0.217609,-0.975953][0.061388,0.066134,0][-2.99512,-3.1837,0.192718][-0.435806,-0.254132,-0.863418][0.087793,0.02921,0][-2.85603,-2.97867,0.134638][-0.21761,-0.0126955,-0.975953][0.094868,0.066134,0][-2.99512,-3.1837,0.192718][-0.435806,-0.254132,-0.863418][0.087793,0.02921,0][-3.06799,-3.11083,0.223023][-0.735571,-0.124384,-0.66593][0.103431,0.02921,0][-2.85603,-2.97867,0.134638][-0.21761,-0.0126955,-0.975953][0.094868,0.066134,0][-2.85603,-2.97867,0.134638][-0.21761,-0.0126955,-0.975953][0.094868,0.066134,0][-3.06799,-3.11083,0.223023][-0.735571,-0.124384,-0.66593][0.103431,0.02921,0][-2.98225,-2.85245,0.187127][-0.5612,0.218709,-0.798261][0.121954,0.066134,0][-3.06799,-3.11083,0.223023][-0.735571,-0.124384,-0.66593][0.103431,0.02921,0][-3.09583,-3.083,0.272057][-0.999954,0.00964036,0][0.109404,0.02921,0][-2.98225,-2.85245,0.187127][-0.5612,0.218709,-0.798261][0.121954,0.066134,0][-2.98225,-2.85245,0.187127][-0.5612,0.218709,-0.798261][0.121954,0.066134,0][-3.09583,-3.083,0.272057][-0.999954,0.00964036,0][0.109404,0.02921,0][-3.03046,-2.80424,0.272057][-0.90031,0.435249,-3.35371e-007][0.1323,0.066134,0][-3.06799,-3.11083,0.321091][-0.735571,-0.124384,0.66593][0.103431,0.02921,0][-2.98225,-2.85245,0.356987][-0.5612,0.218709,0.798261][0.121954,0.066134,0][-3.09583,-3.083,0.272057][-0.999954,0.00964036,0][0.109404,0.02921,0][-3.09583,-3.083,0.272057][-0.999954,0.00964036,0][0.109404,0.02921,0][-2.98225,-2.85245,0.356987][-0.5612,0.218709,0.798261][0.121954,0.066134,0][-3.03046,-2.80424,0.272057][-0.90031,0.435249,-3.35371e-007][0.1323,0.066134,0][-2.85603,-2.97867,0.409476][-0.21761,-0.0126954,0.975953][0.094868,0.066134,0][-2.63305,-2.73156,0.430735][-0.126903,0.0771103,0.988913][0.097458,0.116573,0][-2.98225,-2.85245,0.356987][-0.5612,0.218709,0.798261][0.121954,0.066134,0][-2.98225,-2.85245,0.356987][-0.5612,0.218709,0.798261][0.121954,0.066134,0][-2.63305,-2.73156,0.430735][-0.126903,0.0771103,0.988913][0.097458,0.116573,0][-2.7788,-2.58581,0.370126][-0.435708,0.359676,0.825101][0.128734,0.116573,0][-2.85603,-2.97867,0.409476][-0.21761,-0.0126954,0.975953][0.094868,0.066134,0][-2.70001,-3.13469,0.409476][-0.0126964,-0.217609,0.975953][0.061388,0.066134,0][-2.63305,-2.73156,0.430735][-0.126903,0.0771103,0.988913][0.097458,0.116573,0][-2.63305,-2.73156,0.430735][-0.126903,0.0771103,0.988913][0.097458,0.116573,0][-2.70001,-3.13469,0.409476][-0.0126964,-0.217609,0.975953][0.061388,0.066134,0][-2.4529,-2.91171,0.430735][0.0771109,-0.126904,0.988913][0.058798,0.116573,0][-2.70001,-3.13469,0.409476][-0.0126964,-0.217609,0.975953][0.061388,0.066134,0][-2.57379,-3.26091,0.356987][0.218707,-0.5612,0.798261][0.034302,0.066134,0][-2.4529,-2.91171,0.430735][0.0771109,-0.126904,0.988913][0.058798,0.116573,0][-2.4529,-2.91171,0.430735][0.0771109,-0.126904,0.988913][0.058798,0.116573,0][-2.57379,-3.26091,0.356987][0.218707,-0.5612,0.798261][0.034302,0.066134,0][-2.30715,-3.05746,0.370126][0.359674,-0.435706,0.825103][0.027522,0.116573,0][-2.57379,-3.26091,0.356987][0.218707,-0.5612,0.798261][0.034302,0.066134,0][-2.52558,-3.30912,0.272057][0.435248,-0.90031,-2.86531e-007][0.023956,0.066134,0][-2.30715,-3.05746,0.370126][0.359674,-0.435706,0.825103][0.027522,0.116573,0][-2.30715,-3.05746,0.370126][0.359674,-0.435706,0.825103][0.027522,0.116573,0][-2.52558,-3.30912,0.272057][0.435248,-0.90031,-2.86531e-007][0.023956,0.066134,0][-2.25148,-3.11313,0.272057][0.648527,-0.761192,-2.75657e-006][0.015575,0.116573,0][-2.57379,-3.26091,0.187127][0.218708,-0.5612,-0.798261][0.034302,0.066134,0][-2.30715,-3.05746,0.173989][0.359675,-0.435705,-0.825103][0.027522,0.116573,0][-2.52558,-3.30912,0.272057][0.435248,-0.90031,-2.86531e-007][0.023956,0.066134,0][-2.52558,-3.30912,0.272057][0.435248,-0.90031,-2.86531e-007][0.023956,0.066134,0][-2.30715,-3.05746,0.173989][0.359675,-0.435705,-0.825103][0.027522,0.116573,0][-2.25148,-3.11313,0.272057][0.648527,-0.761192,-2.75657e-006][0.015575,0.116573,0][-2.70001,-3.13469,0.134638][-0.0126964,-0.217609,-0.975953][0.061388,0.066134,0][-2.4529,-2.91171,0.113379][0.0771125,-0.126905,-0.988913][0.058798,0.116573,0][-2.57379,-3.26091,0.187127][0.218708,-0.5612,-0.798261][0.034302,0.066134,0][-2.57379,-3.26091,0.187127][0.218708,-0.5612,-0.798261][0.034302,0.066134,0][-2.4529,-2.91171,0.113379][0.0771125,-0.126905,-0.988913][0.058798,0.116573,0][-2.30715,-3.05746,0.173989][0.359675,-0.435705,-0.825103][0.027522,0.116573,0][-2.70001,-3.13469,0.134638][-0.0126964,-0.217609,-0.975953][0.061388,0.066134,0][-2.85603,-2.97867,0.134638][-0.21761,-0.0126955,-0.975953][0.094868,0.066134,0][-2.4529,-2.91171,0.113379][0.0771125,-0.126905,-0.988913][0.058798,0.116573,0][-2.4529,-2.91171,0.113379][0.0771125,-0.126905,-0.988913][0.058798,0.116573,0][-2.85603,-2.97867,0.134638][-0.21761,-0.0126955,-0.975953][0.094868,0.066134,0][-2.63305,-2.73156,0.113379][-0.126904,0.0771117,-0.988913][0.097458,0.116573,0][-2.85603,-2.97867,0.134638][-0.21761,-0.0126955,-0.975953][0.094868,0.066134,0][-2.98225,-2.85245,0.187127][-0.5612,0.218709,-0.798261][0.121954,0.066134,0][-2.63305,-2.73156,0.113379][-0.126904,0.0771117,-0.988913][0.097458,0.116573,0][-2.63305,-2.73156,0.113379][-0.126904,0.0771117,-0.988913][0.097458,0.116573,0][-2.98225,-2.85245,0.187127][-0.5612,0.218709,-0.798261][0.121954,0.066134,0][-2.7788,-2.58581,0.173989][-0.435708,0.359677,-0.825101][0.128734,0.116573,0][-2.98225,-2.85245,0.187127][-0.5612,0.218709,-0.798261][0.121954,0.066134,0][-3.03046,-2.80424,0.272057][-0.90031,0.435249,-3.35371e-007][0.1323,0.066134,0][-2.7788,-2.58581,0.173989][-0.435708,0.359677,-0.825101][0.128734,0.116573,0][-2.7788,-2.58581,0.173989][-0.435708,0.359677,-0.825101][0.128734,0.116573,0][-3.03046,-2.80424,0.272057][-0.90031,0.435249,-3.35371e-007][0.1323,0.066134,0][-2.83447,-2.53014,0.272057][-0.761191,0.648527,-2.59291e-006][0.14068,0.116573,0][-2.98225,-2.85245,0.356987][-0.5612,0.218709,0.798261][0.121954,0.066134,0][-2.7788,-2.58581,0.370126][-0.435708,0.359676,0.825101][0.128734,0.116573,0][-3.03046,-2.80424,0.272057][-0.90031,0.435249,-3.35371e-007][0.1323,0.066134,0][-3.03046,-2.80424,0.272057][-0.90031,0.435249,-3.35371e-007][0.1323,0.066134,0][-2.7788,-2.58581,0.370126][-0.435708,0.359676,0.825101][0.128734,0.116573,0][-2.83447,-2.53014,0.272057][-0.761191,0.648527,-2.59291e-006][0.14068,0.116573,0][-2.7788,-2.58581,0.370126][-0.435708,0.359676,0.825101][0.128734,0.116573,0][-2.63305,-2.73156,0.430735][-0.126903,0.0771103,0.988913][0.097458,0.116573,0][1.28632,1.47931,0.370126][-0.393507,0.393507,0.830845][0.128734,0.988922,0][1.28632,1.47931,0.370126][-0.393507,0.393507,0.830845][0.128734,0.988922,0][-2.63305,-2.73156,0.430735][-0.126903,0.0771103,0.988913][0.097458,0.116573,0][1.43207,1.33356,0.430735][-0.100769,0.100769,0.989794][0.097458,0.988922,0][-2.63305,-2.73156,0.430735][-0.126903,0.0771103,0.988913][0.097458,0.116573,0][-2.4529,-2.91171,0.430735][0.0771109,-0.126904,0.988913][0.058798,0.116573,0][1.43207,1.33356,0.430735][-0.100769,0.100769,0.989794][0.097458,0.988922,0][1.43207,1.33356,0.430735][-0.100769,0.100769,0.989794][0.097458,0.988922,0][-2.4529,-2.91171,0.430735][0.0771109,-0.126904,0.988913][0.058798,0.116573,0][1.61222,1.15341,0.430735][0.100769,-0.100769,0.989794][0.058798,0.988922,0][-2.4529,-2.91171,0.430735][0.0771109,-0.126904,0.988913][0.058798,0.116573,0][-2.30715,-3.05746,0.370126][0.359674,-0.435706,0.825103][0.027522,0.116573,0][1.61222,1.15341,0.430735][0.100769,-0.100769,0.989794][0.058798,0.988922,0][1.61222,1.15341,0.430735][0.100769,-0.100769,0.989794][0.058798,0.988922,0][-2.30715,-3.05746,0.370126][0.359674,-0.435706,0.825103][0.027522,0.116573,0][1.75797,1.00766,0.370126][0.393508,-0.393508,0.830844][0.027522,0.988922,0][-2.30715,-3.05746,0.370126][0.359674,-0.435706,0.825103][0.027522,0.116573,0][-2.25148,-3.11313,0.272057][0.648527,-0.761192,-2.75657e-006][0.015575,0.116573,0][1.75797,1.00766,0.370126][0.393508,-0.393508,0.830844][0.027522,0.988922,0][1.75797,1.00766,0.370126][0.393508,-0.393508,0.830844][0.027522,0.988922,0][-2.25148,-3.11313,0.272057][0.648527,-0.761192,-2.75657e-006][0.015575,0.116573,0][1.81364,0.951995,0.272057][0.707107,-0.707107,-1.99507e-006][0.015575,0.988922,0][-2.25148,-3.11313,0.272057][0.648527,-0.761192,-2.75657e-006][0.015575,0.116573,0][-2.30715,-3.05746,0.173989][0.359675,-0.435705,-0.825103][0.027522,0.116573,0][1.81364,0.951995,0.272057][0.707107,-0.707107,-1.99507e-006][0.015575,0.988922,0][1.81364,0.951995,0.272057][0.707107,-0.707107,-1.99507e-006][0.015575,0.988922,0][-2.30715,-3.05746,0.173989][0.359675,-0.435705,-0.825103][0.027522,0.116573,0][1.75797,1.00766,0.173989][0.393508,-0.393508,-0.830844][0.027522,0.988922,0][-2.30715,-3.05746,0.173989][0.359675,-0.435705,-0.825103][0.027522,0.116573,0][-2.4529,-2.91171,0.113379][0.0771125,-0.126905,-0.988913][0.058798,0.116573,0][1.75797,1.00766,0.173989][0.393508,-0.393508,-0.830844][0.027522,0.988922,0][1.75797,1.00766,0.173989][0.393508,-0.393508,-0.830844][0.027522,0.988922,0][-2.4529,-2.91171,0.113379][0.0771125,-0.126905,-0.988913][0.058798,0.116573,0][1.61222,1.15341,0.113379][0.100771,-0.100771,-0.989793][0.058798,0.988922,0][-2.4529,-2.91171,0.113379][0.0771125,-0.126905,-0.988913][0.058798,0.116573,0][-2.63305,-2.73156,0.113379][-0.126904,0.0771117,-0.988913][0.097458,0.116573,0][1.61222,1.15341,0.113379][0.100771,-0.100771,-0.989793][0.058798,0.988922,0][1.61222,1.15341,0.113379][0.100771,-0.100771,-0.989793][0.058798,0.988922,0][-2.63305,-2.73156,0.113379][-0.126904,0.0771117,-0.988913][0.097458,0.116573,0][1.43207,1.33356,0.113379][-0.100771,0.100771,-0.989793][0.097458,0.988922,0][-2.63305,-2.73156,0.113379][-0.126904,0.0771117,-0.988913][0.097458,0.116573,0][-2.7788,-2.58581,0.173989][-0.435708,0.359677,-0.825101][0.128734,0.116573,0][1.43207,1.33356,0.113379][-0.100771,0.100771,-0.989793][0.097458,0.988922,0][1.43207,1.33356,0.113379][-0.100771,0.100771,-0.989793][0.097458,0.988922,0][-2.7788,-2.58581,0.173989][-0.435708,0.359677,-0.825101][0.128734,0.116573,0][1.28632,1.47931,0.173989][-0.393507,0.393507,-0.830846][0.128734,0.988922,0][-2.7788,-2.58581,0.173989][-0.435708,0.359677,-0.825101][0.128734,0.116573,0][-2.83447,-2.53014,0.272057][-0.761191,0.648527,-2.59291e-006][0.14068,0.116573,0][1.28632,1.47931,0.173989][-0.393507,0.393507,-0.830846][0.128734,0.988922,0][1.28632,1.47931,0.173989][-0.393507,0.393507,-0.830846][0.128734,0.988922,0][-2.83447,-2.53014,0.272057][-0.761191,0.648527,-2.59291e-006][0.14068,0.116573,0][1.23065,1.53498,0.272057][-0.707107,0.707107,-2.48167e-006][0.14068,0.988922,0][-2.83447,-2.53014,0.272057][-0.761191,0.648527,-2.59291e-006][0.14068,0.116573,0][-2.7788,-2.58581,0.370126][-0.435708,0.359676,0.825101][0.128734,0.116573,0][1.23065,1.53498,0.272057][-0.707107,0.707107,-2.48167e-006][0.14068,0.988922,0][1.23065,1.53498,0.272057][-0.707107,0.707107,-2.48167e-006][0.14068,0.988922,0][-2.7788,-2.58581,0.370126][-0.435708,0.359676,0.825101][0.128734,0.116573,0][1.28632,1.47931,0.370126][-0.393507,0.393507,0.830845][0.128734,0.988922,0][-2.99512,-3.1837,0.351396][-0.435806,-0.254132,0.863418][0.087793,0.02921,0][-3.06799,-3.11083,0.321091][-0.735571,-0.124384,0.66593][0.103431,0.02921,0][-3.01306,-3.29172,0.272057][-0.707107,-0.707106,0][0.078128,0.015695,0][-2.90505,-3.27378,0.351396][-0.254132,-0.435808,0.863417][0.068463,0.02921,0][-2.99512,-3.1837,0.351396][-0.435806,-0.254132,0.863418][0.087793,0.02921,0][-3.01306,-3.29172,0.272057][-0.707107,-0.707106,0][0.078128,0.015695,0][-2.83217,-3.34665,0.321091][-0.124383,-0.73557,0.665932][0.052825,0.02921,0][-2.90505,-3.27378,0.351396][-0.254132,-0.435808,0.863417][0.068463,0.02921,0][-3.01306,-3.29172,0.272057][-0.707107,-0.707106,0][0.078128,0.015695,0][-2.80434,-3.37449,0.272057][0.00963511,-0.999954,0][0.046852,0.02921,0][-2.83217,-3.34665,0.321091][-0.124383,-0.73557,0.665932][0.052825,0.02921,0][-3.01306,-3.29172,0.272057][-0.707107,-0.707106,0][0.078128,0.015695,0][-2.83217,-3.34665,0.223023][-0.124383,-0.735571,-0.665932][0.052825,0.02921,0][-2.80434,-3.37449,0.272057][0.00963511,-0.999954,0][0.046852,0.02921,0][-3.01306,-3.29172,0.272057][-0.707107,-0.707106,0][0.078128,0.015695,0][-2.90505,-3.27378,0.192718][-0.254132,-0.435808,-0.863417][0.068463,0.02921,0][-2.83217,-3.34665,0.223023][-0.124383,-0.735571,-0.665932][0.052825,0.02921,0][-3.01306,-3.29172,0.272057][-0.707107,-0.707106,0][0.078128,0.015695,0][-2.99512,-3.1837,0.192718][-0.435806,-0.254132,-0.863418][0.087793,0.02921,0][-2.90505,-3.27378,0.192718][-0.254132,-0.435808,-0.863417][0.068463,0.02921,0][-3.01306,-3.29172,0.272057][-0.707107,-0.707106,0][0.078128,0.015695,0][-3.06799,-3.11083,0.223023][-0.735571,-0.124384,-0.66593][0.103431,0.02921,0][-2.99512,-3.1837,0.192718][-0.435806,-0.254132,-0.863418][0.087793,0.02921,0][-3.01306,-3.29172,0.272057][-0.707107,-0.707106,0][0.078128,0.015695,0][-3.09583,-3.083,0.272057][-0.999954,0.00964036,0][0.109404,0.02921,0][-3.06799,-3.11083,0.223023][-0.735571,-0.124384,-0.66593][0.103431,0.02921,0][-3.01306,-3.29172,0.272057][-0.707107,-0.707106,0][0.078128,0.015695,0][-3.06799,-3.11083,0.321091][-0.735571,-0.124384,0.66593][0.103431,0.02921,0][-3.09583,-3.083,0.272057][-0.999954,0.00964036,0][0.109404,0.02921,0][-3.01306,-3.29172,0.272057][-0.707107,-0.707106,0][0.078128,0.015695,0][2.18243,0.5832,0.0666566][0.439281,-0.439277,-0.783625][0.375571,0.960472,0][1.94361,0.822025,-0.0411124][-0.399121,-0.12863,-0.907831][0.375571,0.881937,0][2.26401,0.664777,0.0666566][0.749295,-0.0686806,-0.658665][0.402397,0.960472,0][2.26401,0.664777,0.0666566][0.749295,-0.0686806,-0.658665][0.402397,0.960472,0][1.94361,0.822025,-0.0411124][-0.399121,-0.12863,-0.907831][0.375571,0.881937,0][2.03842,1.1433,-0.0411124][0.599273,0.404206,-0.691006][0.418243,0.844701,0][1.94361,0.822025,-0.0411124][-0.399121,-0.12863,-0.907831][0.375571,0.881937,0][1.10068,1.66495,-0.0411124][-0.12863,-0.399121,-0.907831][0.375571,0.60475,0][2.03842,1.1433,-0.0411124][0.599273,0.404206,-0.691006][0.418243,0.844701,0][2.03842,1.1433,-0.0411124][0.599273,0.404206,-0.691006][0.418243,0.844701,0][1.10068,1.66495,-0.0411124][-0.12863,-0.399121,-0.907831][0.375571,0.60475,0][1.42196,1.75976,-0.0411124][0.404206,0.599272,-0.691007][0.418243,0.641986,0][0.86186,1.90377,0.0666566][-0.439278,0.439279,-0.783625][0.375571,0.526215,0][0.943437,1.98535,0.0666566][-0.0686826,0.749296,-0.658663][0.402397,0.526215,0][1.10068,1.66495,-0.0411124][-0.12863,-0.399121,-0.907831][0.375571,0.60475,0][1.10068,1.66495,-0.0411124][-0.12863,-0.399121,-0.907831][0.375571,0.60475,0][0.943437,1.98535,0.0666566][-0.0686826,0.749296,-0.658663][0.402397,0.526215,0][1.42196,1.75976,-0.0411124][0.404206,0.599272,-0.691007][0.418243,0.641986,0][2.03842,1.1433,-0.0411124][0.599273,0.404206,-0.691006][0.418243,0.844701,0][2.10814,1.07358,0.272057][0.840672,0.541545,-1.77698e-007][0.443985,0.867628,0][2.26401,0.664777,0.0666566][0.749295,-0.0686806,-0.658665][0.402397,0.960472,0][2.26401,0.664777,0.0666566][0.749295,-0.0686806,-0.658665][0.402397,0.960472,0][2.10814,1.07358,0.272057][0.840672,0.541545,-1.77698e-007][0.443985,0.867628,0][2.35088,0.577907,0.272057][0.967542,-0.252709,4.72681e-007][0.402397,0.989038,0][2.03842,1.1433,-0.0411124][0.599273,0.404206,-0.691006][0.418243,0.844701,0][1.42196,1.75976,-0.0411124][0.404206,0.599272,-0.691007][0.418243,0.641986,0][2.10814,1.07358,0.272057][0.840672,0.541545,-1.77698e-007][0.443985,0.867628,0][2.10814,1.07358,0.272057][0.840672,0.541545,-1.77698e-007][0.443985,0.867628,0][1.42196,1.75976,-0.0411124][0.404206,0.599272,-0.691007][0.418243,0.641986,0][1.35224,1.82948,0.272057][0.541546,0.840671,-1.4985e-007][0.443985,0.61906,0][1.42196,1.75976,-0.0411124][0.404206,0.599272,-0.691007][0.418243,0.641986,0][0.943437,1.98535,0.0666566][-0.0686826,0.749296,-0.658663][0.402397,0.526215,0][1.35224,1.82948,0.272057][0.541546,0.840671,-1.4985e-007][0.443985,0.61906,0][1.35224,1.82948,0.272057][0.541546,0.840671,-1.4985e-007][0.443985,0.61906,0][0.943437,1.98535,0.0666566][-0.0686826,0.749296,-0.658663][0.402397,0.526215,0][0.856566,2.07222,0.272057][-0.252712,0.967541,-8.57687e-007][0.402397,0.497649,0][2.03842,1.1433,0.585227][0.599273,0.404206,0.691006][0.418243,0.844701,0][1.94361,0.822025,0.585227][-0.399121,-0.12863,0.907831][0.375571,0.881937,0][2.26401,0.664777,0.477458][0.749296,-0.0686824,0.658664][0.402397,0.960472,0][2.26401,0.664777,0.477458][0.749296,-0.0686824,0.658664][0.402397,0.960472,0][1.94361,0.822025,0.585227][-0.399121,-0.12863,0.907831][0.375571,0.881937,0][2.18243,0.5832,0.477458][0.439284,-0.439277,0.783623][0.375571,0.960472,0][2.03842,1.1433,0.585227][0.599273,0.404206,0.691006][0.418243,0.844701,0][1.42196,1.75976,0.585227][0.404205,0.599272,0.691007][0.418243,0.641986,0][1.94361,0.822025,0.585227][-0.399121,-0.12863,0.907831][0.375571,0.881937,0][1.94361,0.822025,0.585227][-0.399121,-0.12863,0.907831][0.375571,0.881937,0][1.42196,1.75976,0.585227][0.404205,0.599272,0.691007][0.418243,0.641986,0][1.10068,1.66495,0.585227][-0.128631,-0.39912,0.907831][0.375571,0.60475,0][1.42196,1.75976,0.585227][0.404205,0.599272,0.691007][0.418243,0.641986,0][0.943437,1.98535,0.477457][-0.068682,0.749297,0.658663][0.402397,0.526215,0][1.10068,1.66495,0.585227][-0.128631,-0.39912,0.907831][0.375571,0.60475,0][1.10068,1.66495,0.585227][-0.128631,-0.39912,0.907831][0.375571,0.60475,0][0.943437,1.98535,0.477457][-0.068682,0.749297,0.658663][0.402397,0.526215,0][0.86186,1.90377,0.477457][-0.439279,0.439278,0.783625][0.375571,0.526215,0][1.3656,0.32011,0.272057][-0.65566,0.755056,0][0.198011,0.869426,0][1.94361,0.822025,0.585227][-0.399121,-0.12863,0.907831][0.375571,0.881937,0][1.94361,0.822025,-0.0411124][-0.399121,-0.12863,-0.907831][0.375571,0.881937,0][1.94361,0.822025,0.585227][-0.399121,-0.12863,0.907831][0.375571,0.881937,0][1.10068,1.66495,0.585227][-0.128631,-0.39912,0.907831][0.375571,0.60475,0][1.94361,0.822025,-0.0411124][-0.399121,-0.12863,-0.907831][0.375571,0.881937,0][1.94361,0.822025,-0.0411124][-0.399121,-0.12863,-0.907831][0.375571,0.881937,0][1.10068,1.66495,0.585227][-0.128631,-0.39912,0.907831][0.375571,0.60475,0][1.10068,1.66495,-0.0411124][-0.12863,-0.399121,-0.907831][0.375571,0.60475,0][0.598769,1.08694,0.272057][-0.231125,0.0450693,0.116811][0.198011,0.617261,0][0.86186,1.90377,0.477457][-0.439279,0.439278,0.783625][0.375571,0.526215,0][0.77499,1.99064,0.272057][-1.12541,0.219454,0.568784][0.375571,0.497649,0][0.86186,1.90377,0.0666566][-0.439278,0.439279,-0.783625][0.375571,0.526215,0][0.77499,1.99064,0.272057][-1.12541,0.219454,0.568784][0.375571,0.497649,0][0.943437,1.98535,0.0666566][-0.0686826,0.749296,-0.658663][0.402397,0.526215,0][0.943437,1.98535,0.0666566][-0.0686826,0.749296,-0.658663][0.402397,0.526215,0][0.77499,1.99064,0.272057][-1.12541,0.219454,0.568784][0.375571,0.497649,0][0.856566,2.07222,0.272057][-0.252712,0.967541,-8.57687e-007][0.402397,0.497649,0][2.2693,0.49633,0.272057][0.707104,-0.70711,8.84297e-007][0.375571,0.989038,0][2.18243,0.5832,0.0666566][0.439281,-0.439277,-0.783625][0.375571,0.960472,0][2.35088,0.577907,0.272057][0.967542,-0.252709,4.72681e-007][0.402397,0.989038,0][2.35088,0.577907,0.272057][0.967542,-0.252709,4.72681e-007][0.402397,0.989038,0][2.18243,0.5832,0.0666566][0.439281,-0.439277,-0.783625][0.375571,0.960472,0][2.26401,0.664777,0.0666566][0.749295,-0.0686806,-0.658665][0.402397,0.960472,0][1.10068,1.66495,0.585227][-0.128631,-0.39912,0.907831][0.375571,0.60475,0][0.86186,1.90377,0.477457][-0.439279,0.439278,0.783625][0.375571,0.526215,0][0.598769,1.08694,0.272057][-0.231125,0.0450693,0.116811][0.198011,0.617261,0][1.10068,1.66495,-0.0411124][-0.12863,-0.399121,-0.907831][0.375571,0.60475,0][0.598769,1.08694,0.272057][-0.231125,0.0450693,0.116811][0.198011,0.617261,0][0.86186,1.90377,0.0666566][-0.439278,0.439279,-0.783625][0.375571,0.526215,0][1.10068,1.66495,0.585227][-0.128631,-0.39912,0.907831][0.375571,0.60475,0][0.598769,1.08694,0.272057][-0.231125,0.0450693,0.116811][0.198011,0.617261,0][1.10068,1.66495,-0.0411124][-0.12863,-0.399121,-0.907831][0.375571,0.60475,0][1.3656,0.32011,0.272057][-0.65566,0.755056,0][0.198011,0.869426,0][1.94361,0.822025,-0.0411124][-0.399121,-0.12863,-0.907831][0.375571,0.881937,0][2.18243,0.5832,0.0666566][0.439281,-0.439277,-0.783625][0.375571,0.960472,0][2.2693,0.49633,0.272057][0.707104,-0.70711,8.84297e-007][0.375571,0.989038,0][1.3656,0.32011,0.272057][-0.65566,0.755056,0][0.198011,0.869426,0][2.18243,0.5832,0.0666566][0.439281,-0.439277,-0.783625][0.375571,0.960472,0][2.18243,0.5832,0.477458][0.439284,-0.439277,0.783623][0.375571,0.960472,0][1.94361,0.822025,0.585227][-0.399121,-0.12863,0.907831][0.375571,0.881937,0][1.3656,0.32011,0.272057][-0.65566,0.755056,0][0.198011,0.869426,0][0.77499,1.99064,0.272057][-1.12541,0.219454,0.568784][0.375571,0.497649,0][0.86186,1.90377,0.477457][-0.439279,0.439278,0.783625][0.375571,0.526215,0][0.856566,2.07222,0.272057][-0.252712,0.967541,-8.57687e-007][0.402397,0.497649,0][0.856566,2.07222,0.272057][-0.252712,0.967541,-8.57687e-007][0.402397,0.497649,0][0.86186,1.90377,0.477457][-0.439279,0.439278,0.783625][0.375571,0.526215,0][0.943437,1.98535,0.477457][-0.068682,0.749297,0.658663][0.402397,0.526215,0][0.856566,2.07222,0.272057][-0.252712,0.967541,-8.57687e-007][0.402397,0.497649,0][0.943437,1.98535,0.477457][-0.068682,0.749297,0.658663][0.402397,0.526215,0][1.35224,1.82948,0.272057][0.541546,0.840671,-1.4985e-007][0.443985,0.61906,0][1.35224,1.82948,0.272057][0.541546,0.840671,-1.4985e-007][0.443985,0.61906,0][0.943437,1.98535,0.477457][-0.068682,0.749297,0.658663][0.402397,0.526215,0][1.42196,1.75976,0.585227][0.404205,0.599272,0.691007][0.418243,0.641986,0][2.10814,1.07358,0.272057][0.840672,0.541545,-1.77698e-007][0.443985,0.867628,0][1.35224,1.82948,0.272057][0.541546,0.840671,-1.4985e-007][0.443985,0.61906,0][2.03842,1.1433,0.585227][0.599273,0.404206,0.691006][0.418243,0.844701,0][2.03842,1.1433,0.585227][0.599273,0.404206,0.691006][0.418243,0.844701,0][1.35224,1.82948,0.272057][0.541546,0.840671,-1.4985e-007][0.443985,0.61906,0][1.42196,1.75976,0.585227][0.404205,0.599272,0.691007][0.418243,0.641986,0][2.35088,0.577907,0.272057][0.967542,-0.252709,4.72681e-007][0.402397,0.989038,0][2.10814,1.07358,0.272057][0.840672,0.541545,-1.77698e-007][0.443985,0.867628,0][2.26401,0.664777,0.477458][0.749296,-0.0686824,0.658664][0.402397,0.960472,0][2.26401,0.664777,0.477458][0.749296,-0.0686824,0.658664][0.402397,0.960472,0][2.10814,1.07358,0.272057][0.840672,0.541545,-1.77698e-007][0.443985,0.867628,0][2.03842,1.1433,0.585227][0.599273,0.404206,0.691006][0.418243,0.844701,0][2.18243,0.5832,0.477458][0.439284,-0.439277,0.783623][0.375571,0.960472,0][2.2693,0.49633,0.272057][0.707104,-0.70711,8.84297e-007][0.375571,0.989038,0][2.26401,0.664777,0.477458][0.749296,-0.0686824,0.658664][0.402397,0.960472,0][2.26401,0.664777,0.477458][0.749296,-0.0686824,0.658664][0.402397,0.960472,0][2.2693,0.49633,0.272057][0.707104,-0.70711,8.84297e-007][0.375571,0.989038,0][2.35088,0.577907,0.272057][0.967542,-0.252709,4.72681e-007][0.402397,0.989038,0][0.598769,1.08694,0.272057][-0.231125,0.0450693,0.116811][0.198011,0.617261,0][0.77499,1.99064,0.272057][-1.12541,0.219454,0.568784][0.375571,0.497649,0][0.86186,1.90377,0.0666566][-0.439278,0.439279,-0.783625][0.375571,0.526215,0][2.18243,0.5832,0.477458][0.439284,-0.439277,0.783623][0.375571,0.960472,0][1.3656,0.32011,0.272057][-0.65566,0.755056,0][0.198011,0.869426,0][2.2693,0.49633,0.272057][0.707104,-0.70711,8.84297e-007][0.375571,0.989038,0][3.03336,2.69304,0.373877][0.696525,0.530059,0.483622][0.253317,0.832025,0][3.00468,2.61922,0.448414][0.488449,0.173582,0.855153][0.242225,0.80684,0][3.08325,2.64315,0.334985][0.861528,0.393468,0.320862][0.2288,0.832025,0][3.08325,2.64315,0.334985][0.861528,0.393468,0.320862][0.2288,0.832025,0][3.00468,2.61922,0.448414][0.488449,0.173582,0.855153][0.242225,0.80684,0][3.09109,2.53282,0.381052][0.810064,-0.0986246,0.577987][0.199759,0.80684,0][3.03336,2.69304,0.373877][0.696525,0.530059,0.483622][0.253317,0.832025,0][2.9717,2.7547,0.373877][0.530059,0.696528,0.483618][0.283622,0.832025,0][3.00468,2.61922,0.448414][0.488449,0.173582,0.855153][0.242225,0.80684,0][3.00468,2.61922,0.448414][0.488449,0.173582,0.855153][0.242225,0.80684,0][2.9717,2.7547,0.373877][0.530059,0.696528,0.483618][0.283622,0.832025,0][2.89788,2.72603,0.448414][0.173579,0.488451,0.855153][0.294715,0.80684,0][2.9717,2.7547,0.373877][0.530059,0.696528,0.483618][0.283622,0.832025,0][2.92181,2.80459,0.334985][0.393467,0.861527,0.320867][0.30814,0.832025,0][2.89788,2.72603,0.448414][0.173579,0.488451,0.855153][0.294715,0.80684,0][2.89788,2.72603,0.448414][0.173579,0.488451,0.855153][0.294715,0.80684,0][2.92181,2.80459,0.334985][0.393467,0.861527,0.320867][0.30814,0.832025,0][2.81148,2.81243,0.381052][-0.0986239,0.810063,0.577989][0.33718,0.80684,0][2.92181,2.80459,0.334985][0.393467,0.861527,0.320867][0.30814,0.832025,0][2.90275,2.82364,0.272057][0.331835,0.943337,-4.77476e-007][0.317505,0.832025,0][2.81148,2.81243,0.381052][-0.0986239,0.810063,0.577989][0.33718,0.80684,0][2.81148,2.81243,0.381052][-0.0986239,0.810063,0.577989][0.33718,0.80684,0][2.90275,2.82364,0.272057][0.331835,0.943337,-4.77476e-007][0.317505,0.832025,0][2.77847,2.84544,0.272057][-0.231081,0.972935,-9.6929e-007][0.353401,0.80684,0][2.92181,2.80459,0.209129][0.393466,0.861527,-0.320868][0.30814,0.832025,0][2.81148,2.81243,0.163063][-0.0986242,0.810063,-0.577989][0.33718,0.80684,0][2.90275,2.82364,0.272057][0.331835,0.943337,-4.77476e-007][0.317505,0.832025,0][2.90275,2.82364,0.272057][0.331835,0.943337,-4.77476e-007][0.317505,0.832025,0][2.81148,2.81243,0.163063][-0.0986242,0.810063,-0.577989][0.33718,0.80684,0][2.77847,2.84544,0.272057][-0.231081,0.972935,-9.6929e-007][0.353401,0.80684,0][2.9717,2.7547,0.170237][0.53006,0.696526,-0.48362][0.283622,0.832025,0][2.89788,2.72603,0.0956995][0.173576,0.48845,-0.855154][0.294715,0.80684,0][2.92181,2.80459,0.209129][0.393466,0.861527,-0.320868][0.30814,0.832025,0][2.92181,2.80459,0.209129][0.393466,0.861527,-0.320868][0.30814,0.832025,0][2.89788,2.72603,0.0956995][0.173576,0.48845,-0.855154][0.294715,0.80684,0][2.81148,2.81243,0.163063][-0.0986242,0.810063,-0.577989][0.33718,0.80684,0][2.9717,2.7547,0.170237][0.53006,0.696526,-0.48362][0.283622,0.832025,0][3.03336,2.69304,0.170237][0.696524,0.530059,-0.483624][0.253317,0.832025,0][2.89788,2.72603,0.0956995][0.173576,0.48845,-0.855154][0.294715,0.80684,0][2.89788,2.72603,0.0956995][0.173576,0.48845,-0.855154][0.294715,0.80684,0][3.03336,2.69304,0.170237][0.696524,0.530059,-0.483624][0.253317,0.832025,0][3.00468,2.61922,0.0956995][0.488448,0.173579,-0.855154][0.242225,0.80684,0][3.03336,2.69304,0.170237][0.696524,0.530059,-0.483624][0.253317,0.832025,0][3.08325,2.64315,0.209129][0.861528,0.393467,-0.320863][0.2288,0.832025,0][3.00468,2.61922,0.0956995][0.488448,0.173579,-0.855154][0.242225,0.80684,0][3.00468,2.61922,0.0956995][0.488448,0.173579,-0.855154][0.242225,0.80684,0][3.08325,2.64315,0.209129][0.861528,0.393467,-0.320863][0.2288,0.832025,0][3.09109,2.53282,0.163063][0.810064,-0.0986249,-0.577987][0.199759,0.80684,0][3.08325,2.64315,0.209129][0.861528,0.393467,-0.320863][0.2288,0.832025,0][3.1023,2.6241,0.272057][0.943338,0.331832,-4.0042e-007][0.219435,0.832025,0][3.09109,2.53282,0.163063][0.810064,-0.0986249,-0.577987][0.199759,0.80684,0][3.09109,2.53282,0.163063][0.810064,-0.0986249,-0.577987][0.199759,0.80684,0][3.1023,2.6241,0.272057][0.943338,0.331832,-4.0042e-007][0.219435,0.832025,0][3.12409,2.49981,0.272057][0.972936,-0.231075,-9.17052e-007][0.183539,0.80684,0][3.08325,2.64315,0.334985][0.861528,0.393468,0.320862][0.2288,0.832025,0][3.09109,2.53282,0.381052][0.810064,-0.0986246,0.577987][0.199759,0.80684,0][3.1023,2.6241,0.272057][0.943338,0.331832,-4.0042e-007][0.219435,0.832025,0][3.1023,2.6241,0.272057][0.943338,0.331832,-4.0042e-007][0.219435,0.832025,0][3.09109,2.53282,0.381052][0.810064,-0.0986246,0.577987][0.199759,0.80684,0][3.12409,2.49981,0.272057][0.972936,-0.231075,-9.17052e-007][0.183539,0.80684,0][2.92807,2.36984,0.336729][0.280522,-0.75198,0.596518][0.517434,0.984299,0][2.8442,2.45372,0.429417][-0.0219607,-0.42974,0.902686][0.45257,0.984299,0][1.96297,1.40474,0.336729][0.879374,0.180644,0.440533][0.517434,0.467746,0][1.96297,1.40474,0.336729][0.879374,0.180644,0.440533][0.517434,0.467746,0][2.8442,2.45372,0.429417][-0.0219607,-0.42974,0.902686][0.45257,0.984299,0][1.8791,1.48862,0.429417][0.699048,0.415694,0.581833][0.45257,0.467747,0][2.8442,2.45372,0.429417][-0.0219607,-0.42974,0.902686][0.969123,0.984299,0][2.73237,2.56554,0.429417][-0.429737,-0.0219615,0.902687][0.892561,0.984299,0][1.8791,1.48862,0.429417][0.699048,0.415694,0.581833][0.969123,0.467747,0][1.8791,1.48862,0.429417][0.699048,0.415694,0.581833][0.969123,0.467747,0][2.73237,2.56554,0.429417][-0.429737,-0.0219615,0.902687][0.892561,0.984299,0][1.76727,1.60044,0.429417][0.4157,0.699051,0.581826][0.892561,0.467747,0][2.73237,2.56554,0.429417][-0.429737,-0.0219615,0.902687][0.892561,0.984299,0][2.6485,2.64942,0.336729][-0.75198,0.280522,0.596518][0.827696,0.984299,0][1.76727,1.60044,0.429417][0.4157,0.699051,0.581826][0.892561,0.467747,0][1.76727,1.60044,0.429417][0.4157,0.699051,0.581826][0.892561,0.467747,0][2.6485,2.64942,0.336729][-0.75198,0.280522,0.596518][0.827696,0.984299,0][1.6834,1.68432,0.336729][0.180647,0.879376,0.440527][0.827696,0.467747,0][2.6485,2.64942,0.336729][-0.75198,0.280522,0.596518][0.827696,0.984299,0][2.62053,2.67738,0.272057][-0.886069,0.463552,0][0.801703,0.984298,0][1.6834,1.68432,0.336729][0.180647,0.879376,0.440527][0.827696,0.467747,0][1.6834,1.68432,0.336729][0.180647,0.879376,0.440527][0.827696,0.467747,0][2.62053,2.67738,0.272057][-0.886069,0.463552,0][0.801703,0.984298,0][1.65543,1.71228,0.272057][0.219809,0.975543,3.15134e-006][0.801703,0.467746,0][2.62053,2.67738,0.272057][-0.886069,0.463552,0][0.801703,0.984298,0][2.6485,2.64942,0.207385][-0.751979,0.28052,-0.596519][0.77571,0.984299,0][1.65543,1.71228,0.272057][0.219809,0.975543,3.15134e-006][0.801703,0.467746,0][1.65543,1.71228,0.272057][0.219809,0.975543,3.15134e-006][0.801703,0.467746,0][2.6485,2.64942,0.207385][-0.751979,0.28052,-0.596519][0.77571,0.984299,0][1.6834,1.68432,0.207385][0.180641,0.879374,-0.440533][0.77571,0.467747,0][2.6485,2.64942,0.207385][-0.751979,0.28052,-0.596519][0.77571,0.984299,0][2.73237,2.56554,0.114698][-0.429736,-0.0219632,-0.902688][0.710846,0.984299,0][1.6834,1.68432,0.207385][0.180641,0.879374,-0.440533][0.77571,0.467747,0][1.6834,1.68432,0.207385][0.180641,0.879374,-0.440533][0.77571,0.467747,0][2.73237,2.56554,0.114698][-0.429736,-0.0219632,-0.902688][0.710846,0.984299,0][1.76727,1.60044,0.114698][0.415699,0.699051,-0.581826][0.710846,0.467747,0][2.73237,2.56554,0.114698][-0.429736,-0.0219632,-0.902688][0.710846,0.984299,0][2.8442,2.45372,0.114698][-0.0219619,-0.42974,-0.902686][0.634284,0.984299,0][1.76727,1.60044,0.114698][0.415699,0.699051,-0.581826][0.710846,0.467747,0][1.76727,1.60044,0.114698][0.415699,0.699051,-0.581826][0.710846,0.467747,0][2.8442,2.45372,0.114698][-0.0219619,-0.42974,-0.902686][0.634284,0.984299,0][1.8791,1.48862,0.114698][0.69905,0.415693,-0.581832][0.634284,0.467747,0][2.8442,2.45372,0.114698][-0.0219619,-0.42974,-0.902686][0.634284,0.984299,0][2.92807,2.36984,0.207386][0.280521,-0.751983,-0.596515][0.569419,0.984299,0][1.8791,1.48862,0.114698][0.69905,0.415693,-0.581832][0.634284,0.467747,0][1.8791,1.48862,0.114698][0.69905,0.415693,-0.581832][0.634284,0.467747,0][2.92807,2.36984,0.207386][0.280521,-0.751983,-0.596515][0.569419,0.984299,0][1.96297,1.40474,0.207386][0.879375,0.180645,-0.440531][0.569419,0.467747,0][2.92807,2.36984,0.207386][0.280521,-0.751983,-0.596515][0.569419,0.984299,0][2.95604,2.34188,0.272058][0.463544,-0.886074,6.31971e-006][0.543427,0.984299,0][1.96297,1.40474,0.207386][0.879375,0.180645,-0.440531][0.569419,0.467747,0][1.96297,1.40474,0.207386][0.879375,0.180645,-0.440531][0.569419,0.467747,0][2.95604,2.34188,0.272058][0.463544,-0.886074,6.31971e-006][0.543427,0.984299,0][1.99094,1.37678,0.272058][0.975544,0.219804,1.97291e-006][0.543427,0.467747,0][2.95604,2.34188,0.272058][0.463544,-0.886074,6.31971e-006][0.543427,0.984299,0][2.92807,2.36984,0.336729][0.280522,-0.75198,0.596518][0.517434,0.984299,0][1.99094,1.37678,0.272058][0.975544,0.219804,1.97291e-006][0.543427,0.467747,0][1.99094,1.37678,0.272058][0.975544,0.219804,1.97291e-006][0.543427,0.467747,0][2.92807,2.36984,0.336729][0.280522,-0.75198,0.596518][0.517434,0.984299,0][1.96297,1.40474,0.336729][0.879374,0.180644,0.440533][0.517434,0.467746,0][3.03336,2.69304,0.373877][0.696525,0.530059,0.483622][0.253317,0.832025,0][3.08325,2.64315,0.334985][0.861528,0.393468,0.320862][0.2288,0.832025,0][3.02128,2.74263,0.272057][0.707107,0.707106,0][0.268469,0.841243,0][2.9717,2.7547,0.373877][0.530059,0.696528,0.483618][0.283622,0.832025,0][3.03336,2.69304,0.373877][0.696525,0.530059,0.483622][0.253317,0.832025,0][3.02128,2.74263,0.272057][0.707107,0.707106,0][0.268469,0.841243,0][2.92181,2.80459,0.334985][0.393467,0.861527,0.320867][0.30814,0.832025,0][2.9717,2.7547,0.373877][0.530059,0.696528,0.483618][0.283622,0.832025,0][3.02128,2.74263,0.272057][0.707107,0.707106,0][0.268469,0.841243,0][2.90275,2.82364,0.272057][0.331835,0.943337,-4.77476e-007][0.317505,0.832025,0][2.92181,2.80459,0.334985][0.393467,0.861527,0.320867][0.30814,0.832025,0][3.02128,2.74263,0.272057][0.707107,0.707106,0][0.268469,0.841243,0][2.92181,2.80459,0.209129][0.393466,0.861527,-0.320868][0.30814,0.832025,0][2.90275,2.82364,0.272057][0.331835,0.943337,-4.77476e-007][0.317505,0.832025,0][3.02128,2.74263,0.272057][0.707107,0.707106,0][0.268469,0.841243,0][2.9717,2.7547,0.170237][0.53006,0.696526,-0.48362][0.283622,0.832025,0][2.92181,2.80459,0.209129][0.393466,0.861527,-0.320868][0.30814,0.832025,0][3.02128,2.74263,0.272057][0.707107,0.707106,0][0.268469,0.841243,0][3.03336,2.69304,0.170237][0.696524,0.530059,-0.483624][0.253317,0.832025,0][2.9717,2.7547,0.170237][0.53006,0.696526,-0.48362][0.283622,0.832025,0][3.02128,2.74263,0.272057][0.707107,0.707106,0][0.268469,0.841243,0][3.08325,2.64315,0.209129][0.861528,0.393467,-0.320863][0.2288,0.832025,0][3.03336,2.69304,0.170237][0.696524,0.530059,-0.483624][0.253317,0.832025,0][3.02128,2.74263,0.272057][0.707107,0.707106,0][0.268469,0.841243,0][3.1023,2.6241,0.272057][0.943338,0.331832,-4.0042e-007][0.219435,0.832025,0][3.08325,2.64315,0.209129][0.861528,0.393467,-0.320863][0.2288,0.832025,0][3.02128,2.74263,0.272057][0.707107,0.707106,0][0.268469,0.841243,0][3.08325,2.64315,0.334985][0.861528,0.393468,0.320862][0.2288,0.832025,0][3.1023,2.6241,0.272057][0.943338,0.331832,-4.0042e-007][0.219435,0.832025,0][3.02128,2.74263,0.272057][0.707107,0.707106,0][0.268469,0.841243,0][3.00468,2.61922,0.448414][0.488449,0.173582,0.855153][0.242225,0.80684,0][2.90177,2.49978,0.475697][0.0452044,-0.301082,0.952526][0.238165,0.752198,0][3.09109,2.53282,0.381052][0.810064,-0.0986246,0.577987][0.199759,0.80684,0][3.09109,2.53282,0.381052][0.810064,-0.0986246,0.577987][0.199759,0.80684,0][2.90177,2.49978,0.475697][0.0452044,-0.301082,0.952526][0.238165,0.752198,0][3.00154,2.40001,0.397913][0.366862,-0.665205,0.650319][0.18913,0.752198,0][1.79185,1.38987,0.475697][0.176247,-0.176249,0.968439][0.219825,0.637661,0][1.89163,1.2901,0.397913][0.524174,-0.524181,0.671175][0.165413,0.637661,0][1.88485,1.48286,0.475697][0.596372,0.330036,0.731722][0.219825,0.688377,0][1.88485,1.48286,0.475697][0.596372,0.330036,0.731722][0.219825,0.688377,0][1.89163,1.2901,0.397913][0.524174,-0.524181,0.671175][0.165413,0.637661,0][1.98462,1.38309,0.397913][0.855507,0.0506026,0.515312][0.165413,0.688377,0][2.89788,2.72603,0.448414][0.173579,0.488451,0.855153][0.294715,0.80684,0][2.77844,2.62311,0.475697][-0.301084,0.0452031,0.952526][0.298775,0.752198,0][3.00468,2.61922,0.448414][0.488449,0.173582,0.855153][0.242225,0.80684,0][3.00468,2.61922,0.448414][0.488449,0.173582,0.855153][0.242225,0.80684,0][2.77844,2.62311,0.475697][-0.301084,0.0452031,0.952526][0.298775,0.752198,0][2.90177,2.49978,0.475697][0.0452044,-0.301082,0.952526][0.238165,0.752198,0][1.66853,1.5132,0.475697][-0.17625,0.176248,0.968438][0.287083,0.637661,0][1.79185,1.38987,0.475697][0.176247,-0.176249,0.968439][0.219825,0.637661,0][1.76152,1.60619,0.475697][0.330042,0.596376,0.731716][0.287083,0.688377,0][1.76152,1.60619,0.475697][0.330042,0.596376,0.731716][0.287083,0.688377,0][1.79185,1.38987,0.475697][0.176247,-0.176249,0.968439][0.219825,0.637661,0][1.88485,1.48286,0.475697][0.596372,0.330036,0.731722][0.219825,0.688377,0][2.67867,2.72288,0.397913][-0.665206,0.366862,0.650318][0.34781,0.752198,0][2.77844,2.62311,0.475697][-0.301084,0.0452031,0.952526][0.298775,0.752198,0][2.81148,2.81243,0.381052][-0.0986239,0.810063,0.577989][0.33718,0.80684,0][2.81148,2.81243,0.381052][-0.0986239,0.810063,0.577989][0.33718,0.80684,0][2.77844,2.62311,0.475697][-0.301084,0.0452031,0.952526][0.298775,0.752198,0][2.89788,2.72603,0.448414][0.173579,0.488451,0.855153][0.294715,0.80684,0][1.56876,1.61297,0.397913][-0.536232,0.536226,1.37562][0.341495,0.637661,0][1.66853,1.5132,0.475697][-0.17625,0.176248,0.968438][0.287083,0.637661,0][1.66175,1.70596,0.397913][0.0506043,0.85551,0.515308][0.341495,0.688377,0][1.66175,1.70596,0.397913][0.0506043,0.85551,0.515308][0.341495,0.688377,0][1.66853,1.5132,0.475697][-0.17625,0.176248,0.968438][0.287083,0.637661,0][1.76152,1.60619,0.475697][0.330042,0.596376,0.731716][0.287083,0.688377,0][2.64056,2.76099,0.272057][-0.816907,0.576769,0][0.36654,0.752198,0][2.67867,2.72288,0.397913][-0.665206,0.366862,0.650318][0.34781,0.752198,0][2.77847,2.84544,0.272057][-0.231081,0.972935,-9.6929e-007][0.353401,0.80684,0][2.77847,2.84544,0.272057][-0.231081,0.972935,-9.6929e-007][0.353401,0.80684,0][2.67867,2.72288,0.397913][-0.665206,0.366862,0.650318][0.34781,0.752198,0][2.81148,2.81243,0.381052][-0.0986239,0.810063,0.577989][0.33718,0.80684,0][1.53065,1.65108,0.272057][-0.707107,0.707107,1.72337e-006][0.362279,0.637661,0][1.56876,1.61297,0.397913][-0.536232,0.536226,1.37562][0.341495,0.637661,0][1.62364,1.74407,0.272057][-0.105824,0.994385,2.44628e-006][0.362279,0.688377,0][1.62364,1.74407,0.272057][-0.105824,0.994385,2.44628e-006][0.362279,0.688377,0][1.56876,1.61297,0.397913][-0.536232,0.536226,1.37562][0.341495,0.637661,0][1.66175,1.70596,0.397913][0.0506043,0.85551,0.515308][0.341495,0.688377,0][2.81148,2.81243,0.163063][-0.0986242,0.810063,-0.577989][0.33718,0.80684,0][2.67867,2.72288,0.146201][-0.665203,0.366861,-0.650321][0.34781,0.752198,0][2.77847,2.84544,0.272057][-0.231081,0.972935,-9.6929e-007][0.353401,0.80684,0][2.77847,2.84544,0.272057][-0.231081,0.972935,-9.6929e-007][0.353401,0.80684,0][2.67867,2.72288,0.146201][-0.665203,0.366861,-0.650321][0.34781,0.752198,0][2.64056,2.76099,0.272057][-0.816907,0.576769,0][0.36654,0.752198,0][1.56876,1.61297,0.146201][-0.524179,0.524173,-0.671177][0.341495,0.637661,0][1.53065,1.65108,0.272057][-0.707107,0.707107,1.72337e-006][0.362279,0.637661,0][1.66175,1.70596,0.146201][0.0506035,0.855507,-0.515312][0.341495,0.688377,0][1.66175,1.70596,0.146201][0.0506035,0.855507,-0.515312][0.341495,0.688377,0][1.53065,1.65108,0.272057][-0.707107,0.707107,1.72337e-006][0.362279,0.637661,0][1.62364,1.74407,0.272057][-0.105824,0.994385,2.44628e-006][0.362279,0.688377,0][2.89788,2.72603,0.0956995][0.173576,0.48845,-0.855154][0.294715,0.80684,0][2.77844,2.62311,0.0684175][-0.301085,0.0452014,-0.952525][0.298775,0.752198,0][2.81148,2.81243,0.163063][-0.0986242,0.810063,-0.577989][0.33718,0.80684,0][2.81148,2.81243,0.163063][-0.0986242,0.810063,-0.577989][0.33718,0.80684,0][2.77844,2.62311,0.0684175][-0.301085,0.0452014,-0.952525][0.298775,0.752198,0][2.67867,2.72288,0.146201][-0.665203,0.366861,-0.650321][0.34781,0.752198,0][1.66853,1.5132,0.0684176][-0.176248,0.176246,-0.968439][0.287083,0.637661,0][1.56876,1.61297,0.146201][-0.524179,0.524173,-0.671177][0.341495,0.637661,0][1.76152,1.60619,0.0684176][0.330043,0.596375,-0.731716][0.287083,0.688377,0][1.76152,1.60619,0.0684176][0.330043,0.596375,-0.731716][0.287083,0.688377,0][1.56876,1.61297,0.146201][-0.524179,0.524173,-0.671177][0.341495,0.637661,0][1.66175,1.70596,0.146201][0.0506035,0.855507,-0.515312][0.341495,0.688377,0][3.00468,2.61922,0.0956995][0.488448,0.173579,-0.855154][0.242225,0.80684,0][2.90177,2.49978,0.0684175][0.0452027,-0.301082,-0.952526][0.238165,0.752198,0][2.89788,2.72603,0.0956995][0.173576,0.48845,-0.855154][0.294715,0.80684,0][2.89788,2.72603,0.0956995][0.173576,0.48845,-0.855154][0.294715,0.80684,0][2.90177,2.49978,0.0684175][0.0452027,-0.301082,-0.952526][0.238165,0.752198,0][2.77844,2.62311,0.0684175][-0.301085,0.0452014,-0.952525][0.298775,0.752198,0][1.79185,1.38987,0.0684176][0.176245,-0.176247,-0.968439][0.219825,0.637661,0][1.66853,1.5132,0.0684176][-0.176248,0.176246,-0.968439][0.287083,0.637661,0][1.88485,1.48286,0.0684176][0.596371,0.330037,-0.731722][0.219825,0.688377,0][1.88485,1.48286,0.0684176][0.596371,0.330037,-0.731722][0.219825,0.688377,0][1.66853,1.5132,0.0684176][-0.176248,0.176246,-0.968439][0.287083,0.637661,0][1.76152,1.60619,0.0684176][0.330043,0.596375,-0.731716][0.287083,0.688377,0][3.00154,2.40001,0.146201][0.36686,-0.665204,-0.650321][0.18913,0.752198,0][2.90177,2.49978,0.0684175][0.0452027,-0.301082,-0.952526][0.238165,0.752198,0][3.09109,2.53282,0.163063][0.810064,-0.0986249,-0.577987][0.199759,0.80684,0][3.09109,2.53282,0.163063][0.810064,-0.0986249,-0.577987][0.199759,0.80684,0][2.90177,2.49978,0.0684175][0.0452027,-0.301082,-0.952526][0.238165,0.752198,0][3.00468,2.61922,0.0956995][0.488448,0.173579,-0.855154][0.242225,0.80684,0][1.89163,1.2901,0.146201][0.524176,-0.524179,-0.671175][0.165413,0.637661,0][1.79185,1.38987,0.0684176][0.176245,-0.176247,-0.968439][0.219825,0.637661,0][1.98462,1.38309,0.146201][0.855507,0.0506006,-0.515312][0.165413,0.688377,0][1.98462,1.38309,0.146201][0.855507,0.0506006,-0.515312][0.165413,0.688377,0][1.79185,1.38987,0.0684176][0.176245,-0.176247,-0.968439][0.219825,0.637661,0][1.88485,1.48286,0.0684176][0.596371,0.330037,-0.731722][0.219825,0.688377,0][3.03965,2.3619,0.272057][0.576767,-0.816909,-6.91482e-007][0.1704,0.752198,0][3.00154,2.40001,0.146201][0.36686,-0.665204,-0.650321][0.18913,0.752198,0][3.12409,2.49981,0.272057][0.972936,-0.231075,-9.17052e-007][0.183539,0.80684,0][3.12409,2.49981,0.272057][0.972936,-0.231075,-9.17052e-007][0.183539,0.80684,0][3.00154,2.40001,0.146201][0.36686,-0.665204,-0.650321][0.18913,0.752198,0][3.09109,2.53282,0.163063][0.810064,-0.0986249,-0.577987][0.199759,0.80684,0][1.92974,1.25199,0.272057][0.707109,-0.707105,-3.06493e-006][0.144629,0.637661,0][1.89163,1.2901,0.146201][0.524176,-0.524179,-0.671175][0.165413,0.637661,0][2.02273,1.34498,0.272057][0.994385,-0.105819,-2.32595e-006][0.144629,0.688377,0][2.02273,1.34498,0.272057][0.994385,-0.105819,-2.32595e-006][0.144629,0.688377,0][1.89163,1.2901,0.146201][0.524176,-0.524179,-0.671175][0.165413,0.637661,0][1.98462,1.38309,0.146201][0.855507,0.0506006,-0.515312][0.165413,0.688377,0][3.09109,2.53282,0.381052][0.810064,-0.0986246,0.577987][0.199759,0.80684,0][3.00154,2.40001,0.397913][0.366862,-0.665205,0.650319][0.18913,0.752198,0][3.12409,2.49981,0.272057][0.972936,-0.231075,-9.17052e-007][0.183539,0.80684,0][3.12409,2.49981,0.272057][0.972936,-0.231075,-9.17052e-007][0.183539,0.80684,0][3.00154,2.40001,0.397913][0.366862,-0.665205,0.650319][0.18913,0.752198,0][3.03965,2.3619,0.272057][0.576767,-0.816909,-6.91482e-007][0.1704,0.752198,0][1.89163,1.2901,0.397913][0.524174,-0.524181,0.671175][0.165413,0.637661,0][1.92974,1.25199,0.272057][0.707109,-0.707105,-3.06493e-006][0.144629,0.637661,0][1.98462,1.38309,0.397913][0.855507,0.0506026,0.515312][0.165413,0.688377,0][1.98462,1.38309,0.397913][0.855507,0.0506026,0.515312][0.165413,0.688377,0][1.92974,1.25199,0.272057][0.707109,-0.707105,-3.06493e-006][0.144629,0.637661,0][2.02273,1.34498,0.272057][0.994385,-0.105819,-2.32595e-006][0.144629,0.688377,0][2.90177,2.49978,0.475697][0.0452044,-0.301082,0.952526][0.238165,0.752198,0][2.8442,2.45372,0.429417][-0.0219607,-0.42974,0.902686][0.240991,0.726732,0][3.00154,2.40001,0.397913][0.366862,-0.665205,0.650319][0.18913,0.752198,0][3.00154,2.40001,0.397913][0.366862,-0.665205,0.650319][0.18913,0.752198,0][2.8442,2.45372,0.429417][-0.0219607,-0.42974,0.902686][0.240991,0.726732,0][2.92807,2.36984,0.336729][0.280522,-0.75198,0.596518][0.199769,0.726732,0][1.88485,1.48286,0.475697][0.596372,0.330036,0.731722][0.219825,0.688377,0][1.98462,1.38309,0.397913][0.855507,0.0506026,0.515312][0.165413,0.688377,0][1.8791,1.48862,0.429417][0.699048,0.415694,0.581833][0.222961,0.703916,0][1.8791,1.48862,0.429417][0.699048,0.415694,0.581833][0.222961,0.703916,0][1.98462,1.38309,0.397913][0.855507,0.0506026,0.515312][0.165413,0.688377,0][1.96297,1.40474,0.336729][0.879374,0.180644,0.440533][0.177219,0.703916,0][2.90177,2.49978,0.475697][0.0452044,-0.301082,0.952526][0.238165,0.752198,0][2.77844,2.62311,0.475697][-0.301084,0.0452031,0.952526][0.298775,0.752198,0][2.8442,2.45372,0.429417][-0.0219607,-0.42974,0.902686][0.240991,0.726732,0][2.8442,2.45372,0.429417][-0.0219607,-0.42974,0.902686][0.240991,0.726732,0][2.77844,2.62311,0.475697][-0.301084,0.0452031,0.952526][0.298775,0.752198,0][2.73237,2.56554,0.429417][-0.429737,-0.0219615,0.902687][0.295949,0.726732,0][1.76152,1.60619,0.475697][0.330042,0.596376,0.731716][0.287083,0.688377,0][1.88485,1.48286,0.475697][0.596372,0.330036,0.731722][0.219825,0.688377,0][1.76727,1.60044,0.429417][0.4157,0.699051,0.581826][0.283946,0.703916,0][1.76727,1.60044,0.429417][0.4157,0.699051,0.581826][0.283946,0.703916,0][1.88485,1.48286,0.475697][0.596372,0.330036,0.731722][0.219825,0.688377,0][1.8791,1.48862,0.429417][0.699048,0.415694,0.581833][0.222961,0.703916,0][2.77844,2.62311,0.475697][-0.301084,0.0452031,0.952526][0.298775,0.752198,0][2.67867,2.72288,0.397913][-0.665206,0.366862,0.650318][0.34781,0.752198,0][2.73237,2.56554,0.429417][-0.429737,-0.0219615,0.902687][0.295949,0.726732,0][2.73237,2.56554,0.429417][-0.429737,-0.0219615,0.902687][0.295949,0.726732,0][2.67867,2.72288,0.397913][-0.665206,0.366862,0.650318][0.34781,0.752198,0][2.6485,2.64942,0.336729][-0.75198,0.280522,0.596518][0.337171,0.726732,0][1.76152,1.60619,0.475697][0.330042,0.596376,0.731716][0.287083,0.688377,0][1.76727,1.60044,0.429417][0.4157,0.699051,0.581826][0.283946,0.703916,0][1.66175,1.70596,0.397913][0.0506043,0.85551,0.515308][0.341495,0.688377,0][1.66175,1.70596,0.397913][0.0506043,0.85551,0.515308][0.341495,0.688377,0][1.76727,1.60044,0.429417][0.4157,0.699051,0.581826][0.283946,0.703916,0][1.6834,1.68432,0.336729][0.180647,0.879376,0.440527][0.329689,0.703916,0][2.67867,2.72288,0.397913][-0.665206,0.366862,0.650318][0.34781,0.752198,0][2.64056,2.76099,0.272057][-0.816907,0.576769,0][0.36654,0.752198,0][2.6485,2.64942,0.336729][-0.75198,0.280522,0.596518][0.337171,0.726732,0][2.6485,2.64942,0.336729][-0.75198,0.280522,0.596518][0.337171,0.726732,0][2.64056,2.76099,0.272057][-0.816907,0.576769,0][0.36654,0.752198,0][2.62053,2.67738,0.272057][-0.886069,0.463552,0][0.350914,0.726732,0][1.66175,1.70596,0.397913][0.0506043,0.85551,0.515308][0.341495,0.688377,0][1.6834,1.68432,0.336729][0.180647,0.879376,0.440527][0.329689,0.703916,0][1.62364,1.74407,0.272057][-0.105824,0.994385,2.44628e-006][0.362279,0.688377,0][1.62364,1.74407,0.272057][-0.105824,0.994385,2.44628e-006][0.362279,0.688377,0][1.6834,1.68432,0.336729][0.180647,0.879376,0.440527][0.329689,0.703916,0][1.65543,1.71228,0.272057][0.219809,0.975543,3.15134e-006][0.34494,0.703916,0][2.67867,2.72288,0.146201][-0.665203,0.366861,-0.650321][0.34781,0.752198,0][2.6485,2.64942,0.207385][-0.751979,0.28052,-0.596519][0.33717,0.726732,0][2.64056,2.76099,0.272057][-0.816907,0.576769,0][0.36654,0.752198,0][2.64056,2.76099,0.272057][-0.816907,0.576769,0][0.36654,0.752198,0][2.6485,2.64942,0.207385][-0.751979,0.28052,-0.596519][0.33717,0.726732,0][2.62053,2.67738,0.272057][-0.886069,0.463552,0][0.350914,0.726732,0][1.66175,1.70596,0.146201][0.0506035,0.855507,-0.515312][0.341495,0.688377,0][1.62364,1.74407,0.272057][-0.105824,0.994385,2.44628e-006][0.362279,0.688377,0][1.6834,1.68432,0.207385][0.180641,0.879374,-0.440533][0.329689,0.703916,0][1.6834,1.68432,0.207385][0.180641,0.879374,-0.440533][0.329689,0.703916,0][1.62364,1.74407,0.272057][-0.105824,0.994385,2.44628e-006][0.362279,0.688377,0][1.65543,1.71228,0.272057][0.219809,0.975543,3.15134e-006][0.34494,0.703916,0][2.77844,2.62311,0.0684175][-0.301085,0.0452014,-0.952525][0.298775,0.752198,0][2.73237,2.56554,0.114698][-0.429736,-0.0219632,-0.902688][0.295949,0.726732,0][2.67867,2.72288,0.146201][-0.665203,0.366861,-0.650321][0.34781,0.752198,0][2.67867,2.72288,0.146201][-0.665203,0.366861,-0.650321][0.34781,0.752198,0][2.73237,2.56554,0.114698][-0.429736,-0.0219632,-0.902688][0.295949,0.726732,0][2.6485,2.64942,0.207385][-0.751979,0.28052,-0.596519][0.33717,0.726732,0][1.76152,1.60619,0.0684176][0.330043,0.596375,-0.731716][0.287083,0.688377,0][1.66175,1.70596,0.146201][0.0506035,0.855507,-0.515312][0.341495,0.688377,0][1.76727,1.60044,0.114698][0.415699,0.699051,-0.581826][0.283946,0.703916,0][1.76727,1.60044,0.114698][0.415699,0.699051,-0.581826][0.283946,0.703916,0][1.66175,1.70596,0.146201][0.0506035,0.855507,-0.515312][0.341495,0.688377,0][1.6834,1.68432,0.207385][0.180641,0.879374,-0.440533][0.329689,0.703916,0][2.77844,2.62311,0.0684175][-0.301085,0.0452014,-0.952525][0.298775,0.752198,0][2.90177,2.49978,0.0684175][0.0452027,-0.301082,-0.952526][0.238165,0.752198,0][2.73237,2.56554,0.114698][-0.429736,-0.0219632,-0.902688][0.295949,0.726732,0][2.73237,2.56554,0.114698][-0.429736,-0.0219632,-0.902688][0.295949,0.726732,0][2.90177,2.49978,0.0684175][0.0452027,-0.301082,-0.952526][0.238165,0.752198,0][2.8442,2.45372,0.114698][-0.0219619,-0.42974,-0.902686][0.240991,0.726732,0][1.88485,1.48286,0.0684176][0.596371,0.330037,-0.731722][0.219825,0.688377,0][1.76152,1.60619,0.0684176][0.330043,0.596375,-0.731716][0.287083,0.688377,0][1.8791,1.48862,0.114698][0.69905,0.415693,-0.581832][0.222961,0.703916,0][1.8791,1.48862,0.114698][0.69905,0.415693,-0.581832][0.222961,0.703916,0][1.76152,1.60619,0.0684176][0.330043,0.596375,-0.731716][0.287083,0.688377,0][1.76727,1.60044,0.114698][0.415699,0.699051,-0.581826][0.283946,0.703916,0][2.90177,2.49978,0.0684175][0.0452027,-0.301082,-0.952526][0.238165,0.752198,0][3.00154,2.40001,0.146201][0.36686,-0.665204,-0.650321][0.18913,0.752198,0][2.8442,2.45372,0.114698][-0.0219619,-0.42974,-0.902686][0.240991,0.726732,0][2.8442,2.45372,0.114698][-0.0219619,-0.42974,-0.902686][0.240991,0.726732,0][3.00154,2.40001,0.146201][0.36686,-0.665204,-0.650321][0.18913,0.752198,0][2.92807,2.36984,0.207386][0.280521,-0.751983,-0.596515][0.199769,0.726732,0][1.88485,1.48286,0.0684176][0.596371,0.330037,-0.731722][0.219825,0.688377,0][1.8791,1.48862,0.114698][0.69905,0.415693,-0.581832][0.222961,0.703916,0][1.98462,1.38309,0.146201][0.855507,0.0506006,-0.515312][0.165413,0.688377,0][1.98462,1.38309,0.146201][0.855507,0.0506006,-0.515312][0.165413,0.688377,0][1.8791,1.48862,0.114698][0.69905,0.415693,-0.581832][0.222961,0.703916,0][1.96297,1.40474,0.207386][0.879375,0.180645,-0.440531][0.177219,0.703916,0][3.00154,2.40001,0.146201][0.36686,-0.665204,-0.650321][0.18913,0.752198,0][3.03965,2.3619,0.272057][0.576767,-0.816909,-6.91482e-007][0.1704,0.752198,0][2.92807,2.36984,0.207386][0.280521,-0.751983,-0.596515][0.199769,0.726732,0][2.92807,2.36984,0.207386][0.280521,-0.751983,-0.596515][0.199769,0.726732,0][3.03965,2.3619,0.272057][0.576767,-0.816909,-6.91482e-007][0.1704,0.752198,0][2.95604,2.34188,0.272058][0.463544,-0.886074,6.31971e-006][0.186026,0.726732,0][1.98462,1.38309,0.146201][0.855507,0.0506006,-0.515312][0.165413,0.688377,0][1.96297,1.40474,0.207386][0.879375,0.180645,-0.440531][0.177219,0.703916,0][2.02273,1.34498,0.272057][0.994385,-0.105819,-2.32595e-006][0.144629,0.688377,0][2.02273,1.34498,0.272057][0.994385,-0.105819,-2.32595e-006][0.144629,0.688377,0][1.96297,1.40474,0.207386][0.879375,0.180645,-0.440531][0.177219,0.703916,0][1.99094,1.37678,0.272058][0.975544,0.219804,1.97291e-006][0.161969,0.703916,0][3.00154,2.40001,0.397913][0.366862,-0.665205,0.650319][0.18913,0.752198,0][2.92807,2.36984,0.336729][0.280522,-0.75198,0.596518][0.199769,0.726732,0][3.03965,2.3619,0.272057][0.576767,-0.816909,-6.91482e-007][0.1704,0.752198,0][3.03965,2.3619,0.272057][0.576767,-0.816909,-6.91482e-007][0.1704,0.752198,0][2.92807,2.36984,0.336729][0.280522,-0.75198,0.596518][0.199769,0.726732,0][2.95604,2.34188,0.272058][0.463544,-0.886074,6.31971e-006][0.186026,0.726732,0][1.98462,1.38309,0.397913][0.855507,0.0506026,0.515312][0.165413,0.688377,0][2.02273,1.34498,0.272057][0.994385,-0.105819,-2.32595e-006][0.144629,0.688377,0][1.96297,1.40474,0.336729][0.879374,0.180644,0.440533][0.177219,0.703916,0][1.96297,1.40474,0.336729][0.879374,0.180644,0.440533][0.177219,0.703916,0][2.02273,1.34498,0.272057][0.994385,-0.105819,-2.32595e-006][0.144629,0.688377,0][1.99094,1.37678,0.272058][0.975544,0.219804,1.97291e-006][0.161969,0.703916,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/TheDusekkar.mesh b/shareddata/charcustom/hats/fonts/TheDusekkar.mesh deleted file mode 100644 index 66598c6..0000000 --- a/shareddata/charcustom/hats/fonts/TheDusekkar.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -2980 -[7.63424,3.45705,-0.417221][0.763558,0.644733,0.0360274][0.946939,0.956894,0][7.60508,3.49012,-0.391192][0.763558,0.644733,0.0360274][0.946828,0.956958,0][7.63043,3.4587,-0.365979][0.763558,0.644733,0.0360274][0.946782,0.956875,0][7.63424,3.45705,-0.417221][0.763558,0.644733,0.0360274][0.946939,0.956894,0][7.65975,3.42796,-0.448834][0.780925,0.621942,0.0578304][0.947063,0.956843,0][7.64007,3.45398,-0.462943][0.780925,0.621942,0.0578304][0.947082,0.956906,0][7.63424,3.45705,-0.417221][0.763558,0.644733,0.0360274][0.946939,0.956894,0][7.64007,3.45398,-0.462943][0.780925,0.621942,0.0578304][0.947082,0.956906,0][7.61501,3.48064,-0.437717][0.751654,0.657528,0.051699][0.946978,0.956957,0][7.63424,3.45705,-0.417221][0.763558,0.644733,0.0360274][0.946939,0.956894,0][7.61501,3.48064,-0.437717][0.751654,0.657528,0.051699][0.946978,0.956957,0][7.60508,3.49012,-0.391192][0.763558,0.644733,0.0360274][0.946828,0.956958,0][7.63424,3.45705,-0.417221][0.763558,0.644733,0.0360274][0.946939,0.956894,0][7.63043,3.4587,-0.365979][0.763558,0.644733,0.0360274][0.946782,0.956875,0][7.65507,3.43091,-0.396663][0.767339,0.640204,0.0364545][0.946902,0.956826,0][7.63424,3.45705,-0.417221][0.763558,0.644733,0.0360274][0.946939,0.956894,0][7.65507,3.43091,-0.396663][0.767339,0.640204,0.0364545][0.946902,0.956826,0][7.65975,3.42796,-0.448834][0.780925,0.621942,0.0578304][0.947063,0.956843,0][7.20192,2.23321,-1.61228][0.415288,-0.115077,-0.902382][0.936424,0.935892,0][7.25582,2.22772,-1.58677][0.415288,-0.115077,-0.902382][0.936545,0.935967,0][7.20258,2.16555,-1.60335][0.415288,-0.115077,-0.902382][0.936295,0.935997,0][7.20192,2.23321,-1.61228][0.420616,-0.0720149,-0.904376][0.947195,0.947981,0][7.20247,2.29501,-1.61694][0.420616,-0.0720149,-0.904376][0.947344,0.948058,0][7.25582,2.22772,-1.58677][0.420616,-0.0720149,-0.904376][0.947077,0.948057,0][7.20192,2.23321,-1.61228][0.415288,-0.115077,-0.902382][0.936424,0.935892,0][7.14946,2.23704,-1.63508][0.393065,-0.0726938,-0.916633][0.936305,0.935821,0][7.20247,2.29501,-1.61694][0.393065,-0.0726938,-0.916633][0.936546,0.935797,0][7.20192,2.23321,-1.61228][0.415288,-0.115077,-0.902382][0.936424,0.935892,0][7.20258,2.16555,-1.60335][0.415288,-0.115077,-0.902382][0.936295,0.935997,0][7.14946,2.23704,-1.63508][0.393065,-0.0726938,-0.916633][0.936305,0.935821,0][6.73929,1.79926,-1.6626][-0.455913,-0.632089,-0.626584][0.970691,0.96359,0][6.72779,1.74738,-1.6019][-0.455913,-0.632089,-0.626584][0.970721,0.963469,0][6.66829,1.82415,-1.63606][-0.455913,-0.632089,-0.626584][0.970938,0.963591,0][6.73929,1.79926,-1.6626][-0.455913,-0.632089,-0.626584][0.929469,0.963905,0][6.66829,1.82415,-1.63606][-0.455913,-0.632089,-0.626584][0.929578,0.964037,0][6.73756,1.85662,-1.69882][-0.450467,-0.486326,-0.74871][0.929351,0.96399,0][6.73929,1.79926,-1.6626][-0.455913,-0.632089,-0.626584][0.929469,0.963905,0][6.73756,1.85662,-1.69882][-0.450467,-0.486326,-0.74871][0.929351,0.96399,0][6.79527,1.78419,-1.66633][-0.196952,-0.527644,-0.826318][0.929374,0.963807,0][6.73929,1.79926,-1.6626][-0.455913,-0.632089,-0.626584][0.970691,0.96359,0][6.79527,1.78419,-1.66633][-0.196952,-0.527644,-0.826318][0.97052,0.963559,0][6.72779,1.74738,-1.6019][-0.455913,-0.632089,-0.626584][0.970721,0.963469,0][7.73355,3.50748,-1.55907][0.201246,0.829347,-0.521233][0.970838,0.938855,0][7.69404,3.54339,-1.51719][0.201246,0.829347,-0.521233][0.970713,0.938963,0][7.73004,3.54235,-1.50494][0.201246,0.829347,-0.521233][0.97065,0.9389,0][7.77811,3.46927,-1.58806][0.264772,0.759496,-0.59419][0.970928,0.93874,0][7.72237,3.4744,-1.60634][0.264772,0.759496,-0.59419][0.971019,0.938841,0][7.73355,3.50748,-1.55907][0.201246,0.829347,-0.521233][0.970838,0.938855,0][7.67422,3.51436,-1.5765][0.262731,0.760198,-0.594198][0.970928,0.938964,0][7.73355,3.50748,-1.55907][0.201246,0.829347,-0.521233][0.970838,0.938855,0][7.72237,3.4744,-1.60634][0.264772,0.759496,-0.59419][0.971019,0.938841,0][7.69404,3.54339,-1.51719][0.201246,0.829347,-0.521233][0.970713,0.938963,0][7.73355,3.50748,-1.55907][0.201246,0.829347,-0.521233][0.970838,0.938855,0][7.67422,3.51436,-1.5765][0.262731,0.760198,-0.594198][0.970928,0.938964,0][7.73355,3.50748,-1.55907][0.201246,0.829347,-0.521233][0.970838,0.938855,0][7.78722,3.50477,-1.52664][0.346383,0.78893,-0.507552][0.970708,0.938763,0][7.77811,3.46927,-1.58806][0.264772,0.759496,-0.59419][0.970928,0.93874,0][7.73355,3.50748,-1.55907][0.201246,0.829347,-0.521233][0.970838,0.938855,0][7.73004,3.54235,-1.50494][0.201246,0.829347,-0.521233][0.97065,0.9389,0][7.78722,3.50477,-1.52664][0.346383,0.78893,-0.507552][0.970708,0.938763,0][8.30985,5.32381,0.749328][-0.0907223,0.952318,-0.291308][0.931811,0.967302,0][8.22564,5.35111,0.864814][-0.0907223,0.952318,-0.291308][0.931457,0.967123,0][8.5455,5.38343,0.870836][-0.0907223,0.952318,-0.291308][0.932406,0.966919,0][8.39345,5.10422,1.17][0.688476,-0.192884,0.69914][0.963587,0.947181,0][8.50002,5.0369,1.04649][0.688476,-0.192884,0.69914][0.964135,0.947163,0][8.61903,5.27466,0.994882][0.688476,-0.192884,0.69914][0.964233,0.947696,0][9.57471,6.98361,-0.183342][-0.34871,0.847599,0.399971][0.946035,0.948086,0][9.63199,7.00741,-0.18384][-0.34871,0.847599,0.399971][0.945842,0.948086,0][9.58796,7.01221,-0.232407][-0.34871,0.847599,0.399971][0.945961,0.947981,0][9.57471,6.98361,-0.183342][-0.278339,0.830639,0.482251][0.953189,0.957788,0][9.51979,6.96309,-0.179688][-0.278339,0.830639,0.482251][0.953033,0.957849,0][9.55909,6.95172,-0.137436][-0.278339,0.830639,0.482251][0.953031,0.957732,0][9.57471,6.98361,-0.183342][-0.278339,0.830639,0.482251][0.953189,0.957788,0][9.55909,6.95172,-0.137436][-0.278339,0.830639,0.482251][0.953031,0.957732,0][9.61147,6.97554,-0.142128][-0.333496,0.823668,0.458642][0.953188,0.957677,0][9.57471,6.98361,-0.183342][-0.278339,0.830639,0.482251][0.953189,0.957788,0][9.61147,6.97554,-0.142128][-0.333496,0.823668,0.458642][0.953188,0.957677,0][9.63199,7.00741,-0.18384][-0.337033,0.820777,0.461231][0.95335,0.95772,0][9.57471,6.98361,-0.183342][-0.278339,0.830639,0.482251][0.953189,0.957788,0][9.53795,6.99167,-0.224556][-0.291405,0.855828,0.427367][0.95319,0.957898,0][9.51979,6.96309,-0.179688][-0.278339,0.830639,0.482251][0.953033,0.957849,0][9.57471,6.98361,-0.183342][-0.278339,0.830639,0.482251][0.953189,0.957788,0][9.58796,7.01221,-0.232407][-0.286452,0.859347,0.423638][0.953342,0.95785,0][9.53795,6.99167,-0.224556][-0.291405,0.855828,0.427367][0.95319,0.957898,0][10.3021,7.10083,0.231262][0.441427,0.889748,0.11615][0.975124,0.96657,0][10.2598,7.1158,0.277329][0.441427,0.889748,0.11615][0.974956,0.966639,0][10.3288,7.0803,0.28709][0.441427,0.889748,0.11615][0.974973,0.966485,0][10.3021,7.10083,0.231262][0.441427,0.889748,0.11615][0.975124,0.96657,0][10.3405,7.0878,0.187766][0.433547,0.893747,0.115123][0.97528,0.966508,0][10.2793,7.11943,0.172862][0.433547,0.893747,0.115123][0.975285,0.966648,0][10.3021,7.10083,0.231262][0.441427,0.889748,0.11615][0.975124,0.96657,0][10.3596,7.07138,0.242071][0.435462,0.892549,0.117174][0.975129,0.96644,0][10.3405,7.0878,0.187766][0.433547,0.893747,0.115123][0.97528,0.966508,0][10.3021,7.10083,0.231262][0.441427,0.889748,0.11615][0.975124,0.96657,0][10.3288,7.0803,0.28709][0.441427,0.889748,0.11615][0.974973,0.966485,0][10.3596,7.07138,0.242071][0.435462,0.892549,0.117174][0.975129,0.96644,0][10.3021,7.10083,0.231262][0.441427,0.889748,0.11615][0.975124,0.96657,0][10.2793,7.11943,0.172862][0.433547,0.893747,0.115123][0.975285,0.966648,0][10.2447,7.13028,0.220453][0.43611,0.892671,0.113778][0.975118,0.966699,0][10.3021,7.10083,0.231262][0.441427,0.889748,0.11615][0.975124,0.96657,0][10.2447,7.13028,0.220453][0.43611,0.892671,0.113778][0.975118,0.966699,0][10.2598,7.1158,0.277329][0.441427,0.889748,0.11615][0.974956,0.966639,0][8.89439,7.71865,2.15757][-0.371754,0.694775,0.615701][0.93028,0.962156,0][8.87659,7.68125,2.18902][-0.371754,0.694775,0.615701][0.930184,0.962239,0][8.91291,7.70046,2.18928][-0.371754,0.694775,0.615701][0.930153,0.96216,0][8.89439,7.71865,2.15757][-0.371754,0.694775,0.615701][0.93028,0.962156,0][8.87406,7.73528,2.11762][-0.434891,0.731127,0.525665][0.930428,0.962154,0][8.85117,7.70209,2.14484][-0.434891,0.731127,0.525665][0.930355,0.962238,0][8.89439,7.71865,2.15757][-0.371754,0.694775,0.615701][0.93028,0.962156,0][8.85117,7.70209,2.14484][-0.434891,0.731127,0.525665][0.930355,0.962238,0][8.87659,7.68125,2.18902][-0.371754,0.694775,0.615701][0.930184,0.962239,0][8.89439,7.71865,2.15757][-0.471953,0.617079,0.629662][0.958903,0.943069,0][8.91291,7.70046,2.18928][-0.471953,0.617079,0.629662][0.958776,0.943072,0][8.93426,7.73911,2.1674][-0.471953,0.617079,0.629662][0.958847,0.942986,0][8.89439,7.71865,2.15757][-0.471953,0.617079,0.629662][0.958903,0.943069,0][8.93426,7.73911,2.1674][-0.471953,0.617079,0.629662][0.958847,0.942986,0][8.91735,7.75371,2.13725][-0.479765,0.65359,0.585359][0.958964,0.942986,0][8.89439,7.71865,2.15757][-0.471953,0.617079,0.629662][0.958903,0.943069,0][8.91735,7.75371,2.13725][-0.479765,0.65359,0.585359][0.958964,0.942986,0][8.87406,7.73528,2.11762][-0.524914,0.657306,0.540753][0.959051,0.94307,0][9.96443,8.02271,1.51202][-0.0387856,0.996818,-0.0696445][0.975114,0.939909,0][10.0191,8.0236,1.49437][-0.0387856,0.996818,-0.0696445][0.975276,0.939897,0][9.99848,8.02097,1.46822][-0.0387856,0.996818,-0.0696445][0.975263,0.939959,0][9.96443,8.02271,1.51202][-0.0387856,0.996818,-0.0696445][0.975114,0.939909,0][9.98899,8.02487,1.55091][-0.0284644,0.998887,-0.0376096][0.97512,0.939821,0][10.0191,8.0236,1.49437][-0.0387856,0.996818,-0.0696445][0.975276,0.939897,0][9.96443,8.02271,1.51202][-0.0387856,0.996818,-0.0696445][0.975114,0.939909,0][9.99848,8.02097,1.46822][-0.0387856,0.996818,-0.0696445][0.975263,0.939959,0][9.93397,8.01575,1.47448][-0.0907613,0.989805,-0.109763][0.975097,0.939997,0][9.96443,8.02271,1.51202][-0.0387856,0.996818,-0.0696445][0.975114,0.939909,0][9.93397,8.01575,1.47448][-0.0907613,0.989805,-0.109763][0.975097,0.939997,0][9.91139,8.02337,1.52599][-0.0294079,0.986841,-0.159][0.97496,0.939927,0][9.96443,8.02271,1.51202][-0.0387856,0.996818,-0.0696445][0.975114,0.939909,0][9.91139,8.02337,1.52599][-0.0294079,0.986841,-0.159][0.97496,0.939927,0][9.93472,8.02767,1.55817][-0.0187969,0.992719,-0.11898][0.974969,0.939853,0][9.96443,8.02271,1.51202][-0.0387856,0.996818,-0.0696445][0.975114,0.939909,0][9.93472,8.02767,1.55817][-0.0187969,0.992719,-0.11898][0.974969,0.939853,0][9.98899,8.02487,1.55091][-0.0284644,0.998887,-0.0376096][0.97512,0.939821,0][9.98899,8.02487,1.55091][0.12426,0.763928,0.633224][0.94401,0.964963,0][9.91113,7.97837,1.62229][0.12426,0.763928,0.633224][0.943827,0.964834,0][10.026,7.97243,1.60692][0.12426,0.763928,0.633224][0.944162,0.96484,0][9.93472,8.02767,1.55817][0.124255,0.763932,0.633221][0.943851,0.96496,0][9.91113,7.97837,1.62229][0.12426,0.763928,0.633224][0.943827,0.964834,0][9.98899,8.02487,1.55091][0.12426,0.763928,0.633224][0.94401,0.964963,0][9.93472,8.02767,1.55817][-0.599364,0.725783,0.337642][0.970646,0.935856,0][9.86176,7.96927,1.55419][-0.599364,0.725783,0.337642][0.970906,0.935849,0][9.91113,7.97837,1.62229][-0.599364,0.725783,0.337642][0.970816,0.935984,0][9.91139,8.02337,1.52599][-0.599366,0.725787,0.337629][0.970688,0.935793,0][9.86176,7.96927,1.55419][-0.599364,0.725783,0.337642][0.970906,0.935849,0][9.93472,8.02767,1.55817][-0.599364,0.725783,0.337642][0.970646,0.935856,0][9.91139,8.02337,1.52599][-0.0294079,0.986841,-0.159][0.947733,0.956963,0][9.90953,7.95314,1.4452][-0.768541,0.49146,-0.409648][0.94749,0.956829,0][9.86176,7.96927,1.55419][-0.768541,0.49146,-0.409648][0.94783,0.956826,0][9.93397,8.01575,1.47448][-0.0907613,0.989805,-0.109763][0.947573,0.956964,0][9.90953,7.95314,1.4452][-0.768541,0.49146,-0.409648][0.94749,0.956829,0][9.91139,8.02337,1.52599][-0.0294079,0.986841,-0.159][0.947733,0.956963,0][9.99848,8.02097,1.46822][-0.0387856,0.996818,-0.0696445][0.976062,0.953606,0][10.046,7.96418,1.43196][-0.122509,0.4592,-0.879845][0.976199,0.953724,0][9.90953,7.95314,1.4452][-0.768541,0.49146,-0.409648][0.975773,0.953729,0][9.99848,8.02097,1.46822][-0.0387856,0.996818,-0.0696445][0.976062,0.953606,0][9.90953,7.95314,1.4452][-0.768541,0.49146,-0.409648][0.975773,0.953729,0][9.93397,8.01575,1.47448][-0.0907613,0.989805,-0.109763][0.975861,0.953609,0][10.0191,8.0236,1.49437][0.5978,0.742955,0.301087][0.944116,0.965068,0][10.026,7.97243,1.60692][0.12426,0.763928,0.633224][0.944162,0.96484,0][10.0896,7.96974,1.48729][0.5978,0.742955,0.301087][0.944386,0.965062,0][9.98899,8.02487,1.55091][0.12426,0.763928,0.633224][0.94401,0.964963,0][10.026,7.97243,1.60692][0.12426,0.763928,0.633224][0.944162,0.96484,0][10.0191,8.0236,1.49437][0.5978,0.742955,0.301087][0.944116,0.965068,0][10.0191,8.0236,1.49437][-0.0387856,0.996818,-0.0696445][0.975276,0.939897,0][10.0896,7.96974,1.48729][0.505386,0.723427,-0.470359][0.975527,0.939834,0][10.046,7.96418,1.43196][-0.122509,0.4592,-0.879845][0.9755,0.939965,0][10.0191,8.0236,1.49437][-0.0387856,0.996818,-0.0696445][0.975276,0.939897,0][10.046,7.96418,1.43196][-0.122509,0.4592,-0.879845][0.9755,0.939965,0][9.99848,8.02097,1.46822][-0.0387856,0.996818,-0.0696445][0.975263,0.939959,0][9.91113,7.97837,1.62229][0.135768,-0.0281711,0.99034][0.973424,0.956038,0][9.79088,7.6259,1.62875][0.135768,-0.0281711,0.99034][0.972293,0.955875,0][9.9335,7.58423,1.60801][0.135768,-0.0281711,0.99034][0.972416,0.955591,0][9.91113,7.97837,1.62229][0.135768,-0.0281711,0.99034][0.973424,0.956038,0][9.9335,7.58423,1.60801][0.135768,-0.0281711,0.99034][0.972416,0.955591,0][10.026,7.97243,1.60692][0.131195,-0.0284526,0.990948][0.973595,0.955838,0][9.86176,7.96927,1.55419][-0.599364,0.725783,0.337642][0.970906,0.935849,0][9.74293,7.63859,1.54788][-0.805936,0.279649,0.521788][0.971995,0.935836,0][9.79088,7.6259,1.62875][-0.805936,0.279649,0.521788][0.971968,0.935996,0][9.86176,7.96927,1.55419][-0.599364,0.725783,0.337642][0.970906,0.935849,0][9.79088,7.6259,1.62875][-0.805936,0.279649,0.521788][0.971968,0.935996,0][9.91113,7.97837,1.62229][-0.599364,0.725783,0.337642][0.970816,0.935984,0][9.90953,7.95314,1.4452][-0.809827,0.256741,-0.527507][0.970889,0.935633,0][9.82153,7.61693,1.41667][-0.809827,0.256741,-0.527507][0.971953,0.935576,0][9.74293,7.63859,1.54788][-0.805936,0.279649,0.521788][0.971995,0.935836,0][9.90953,7.95314,1.4452][-0.809827,0.256741,-0.527507][0.970889,0.935633,0][9.74293,7.63859,1.54788][-0.805936,0.279649,0.521788][0.971995,0.935836,0][9.86176,7.96927,1.55419][-0.599364,0.725783,0.337642][0.970906,0.935849,0][9.90953,7.95314,1.4452][-0.0591002,0.0997547,-0.993255][0.941409,0.944225,0][9.99679,7.58907,1.40345][-0.0591002,0.0997547,-0.993255][0.940618,0.94477,0][9.82153,7.61693,1.41667][-0.0591002,0.0997547,-0.993255][0.940387,0.944451,0][10.046,7.96418,1.43196][-0.103295,0.0888658,-0.990673][0.941673,0.944438,0][9.99679,7.58907,1.40345][-0.0591002,0.0997547,-0.993255][0.940618,0.94477,0][9.90953,7.95314,1.4452][-0.0591002,0.0997547,-0.993255][0.941409,0.944225,0][10.026,7.97243,1.60692][0.131195,-0.0284526,0.990948][0.972426,0.965192,0][9.9335,7.58423,1.60801][0.135768,-0.0281711,0.99034][0.971224,0.965312,0][10.0393,7.57542,1.46854][0.77767,-0.183514,0.601291][0.971271,0.965028,0][10.026,7.97243,1.60692][0.873783,-0.133689,0.467579][0.935488,0.967692,0][10.0393,7.57542,1.46854][0.873783,-0.133689,0.467579][0.93662,0.967912,0][10.0896,7.96974,1.48729][0.873783,-0.133689,0.467579][0.935441,0.967932,0][10.046,7.96418,1.43196][0.829231,-0.0666439,-0.554918][0.935526,0.968038,0][10.0393,7.57542,1.46854][0.873783,-0.133689,0.467579][0.93662,0.967912,0][9.99679,7.58907,1.40345][0.829231,-0.0666439,-0.554918][0.936653,0.96804,0][10.0896,7.96974,1.48729][0.873783,-0.133689,0.467579][0.935441,0.967932,0][10.0393,7.57542,1.46854][0.873783,-0.133689,0.467579][0.93662,0.967912,0][10.046,7.96418,1.43196][0.829231,-0.0666439,-0.554918][0.935526,0.968038,0][9.9335,7.58423,1.60801][0.135768,-0.0281711,0.99034][0.972416,0.955591,0][9.67029,7.30305,1.60906][0.137725,-0.125247,0.98252][0.971241,0.955743,0][9.77888,7.2142,1.58251][0.137725,-0.125247,0.98252][0.971183,0.955467,0][9.79088,7.6259,1.62875][0.135768,-0.0281711,0.99034][0.972293,0.955875,0][9.67029,7.30305,1.60906][0.137725,-0.125247,0.98252][0.971241,0.955743,0][9.9335,7.58423,1.60801][0.135768,-0.0281711,0.99034][0.972416,0.955591,0][9.74293,7.63859,1.54788][-0.805936,0.279649,0.521788][0.971995,0.935836,0][9.62574,7.3288,1.53486][-0.780603,0.27163,0.562917][0.973023,0.93581,0][9.67029,7.30305,1.60906][-0.780603,0.27163,0.562917][0.973038,0.935957,0][9.74293,7.63859,1.54788][-0.805936,0.279649,0.521788][0.971995,0.935836,0][9.67029,7.30305,1.60906][-0.780603,0.27163,0.562917][0.973038,0.935957,0][9.79088,7.6259,1.62875][-0.805936,0.279649,0.521788][0.971968,0.935996,0][9.82153,7.61693,1.41667][-0.809827,0.256741,-0.527507][0.971953,0.935576,0][9.67574,7.27696,1.40667][-0.810097,0.360979,-0.461992][0.973104,0.935556,0][9.62574,7.3288,1.53486][-0.780603,0.27163,0.562917][0.973023,0.93581,0][9.82153,7.61693,1.41667][-0.809827,0.256741,-0.527507][0.971953,0.935576,0][9.62574,7.3288,1.53486][-0.780603,0.27163,0.562917][0.973023,0.93581,0][9.74293,7.63859,1.54788][-0.805936,0.279649,0.521788][0.971995,0.935836,0][9.82153,7.61693,1.41667][-0.0591002,0.0997547,-0.993255][0.940387,0.944451,0][9.81858,7.18874,1.38417][-0.109187,0.0759888,-0.991113][0.939274,0.944918,0][9.67574,7.27696,1.40667][-0.109187,0.0759888,-0.991113][0.939255,0.944585,0][9.99679,7.58907,1.40345][-0.0591002,0.0997547,-0.993255][0.940618,0.94477,0][9.81858,7.18874,1.38417][-0.109187,0.0759888,-0.991113][0.939274,0.944918,0][9.82153,7.61693,1.41667][-0.0591002,0.0997547,-0.993255][0.940387,0.944451,0][9.9335,7.58423,1.60801][0.135768,-0.0281711,0.99034][0.971224,0.965312,0][9.77888,7.2142,1.58251][0.137725,-0.125247,0.98252][0.969979,0.965384,0][9.85661,7.16359,1.44386][0.754983,-0.353523,0.552287][0.969874,0.965116,0][9.9335,7.58423,1.60801][0.135768,-0.0281711,0.99034][0.971224,0.965312,0][9.85661,7.16359,1.44386][0.754983,-0.353523,0.552287][0.969874,0.965116,0][10.0393,7.57542,1.46854][0.77767,-0.183514,0.601291][0.971271,0.965028,0][9.99679,7.58907,1.40345][0.829231,-0.0666439,-0.554918][0.936653,0.96804,0][9.85661,7.16359,1.44386][0.741612,-0.301267,-0.599375][0.938024,0.967892,0][9.81858,7.18874,1.38417][0.741612,-0.301267,-0.599375][0.938017,0.968011,0][10.0393,7.57542,1.46854][0.873783,-0.133689,0.467579][0.93662,0.967912,0][9.85661,7.16359,1.44386][0.741612,-0.301267,-0.599375][0.938024,0.967892,0][9.99679,7.58907,1.40345][0.829231,-0.0666439,-0.554918][0.936653,0.96804,0][9.77888,7.2142,1.58251][0.137725,-0.125247,0.98252][0.971183,0.955467,0][9.48079,6.99753,1.6144][0.165668,-0.0833191,0.982656][0.970122,0.955745,0][9.55827,6.87536,1.59098][0.165668,-0.0833191,0.982656][0.969924,0.955487,0][9.67029,7.30305,1.60906][0.137725,-0.125247,0.98252][0.971241,0.955743,0][9.48079,6.99753,1.6144][0.165668,-0.0833191,0.982656][0.970122,0.955745,0][9.77888,7.2142,1.58251][0.137725,-0.125247,0.98252][0.971183,0.955467,0][9.67029,7.30305,1.60906][-0.780603,0.27163,0.562917][0.973038,0.935957,0][9.43742,7.02897,1.53878][-0.689334,0.437632,0.577319][0.974117,0.935818,0][9.48079,6.99753,1.6144][-0.689334,0.437632,0.577319][0.974149,0.935968,0][9.62574,7.3288,1.53486][-0.780603,0.27163,0.562917][0.973023,0.93581,0][9.43742,7.02897,1.53878][-0.689334,0.437632,0.577319][0.974117,0.935818,0][9.67029,7.30305,1.60906][-0.780603,0.27163,0.562917][0.973038,0.935957,0][9.67574,7.27696,1.40667][-0.754572,0.49668,-0.428871][0.934041,0.943103,0][9.45837,6.95082,1.41141][-0.754572,0.49668,-0.428871][0.932836,0.943063,0][9.43742,7.02897,1.53878][-0.754572,0.49668,-0.428871][0.933045,0.942816,0][9.67574,7.27696,1.40667][-0.754572,0.49668,-0.428871][0.934041,0.943103,0][9.43742,7.02897,1.53878][-0.754572,0.49668,-0.428871][0.933045,0.942816,0][9.62574,7.3288,1.53486][-0.746494,0.462597,-0.478279][0.934137,0.942851,0][9.81858,7.18874,1.38417][-0.109187,0.0759888,-0.991113][0.939274,0.944918,0][9.56993,6.81927,1.38975][-0.117126,0.0638641,-0.991062][0.937887,0.944915,0][9.45837,6.95082,1.41141][-0.117126,0.0638641,-0.991062][0.938035,0.944586,0][9.81858,7.18874,1.38417][-0.109187,0.0759888,-0.991113][0.939274,0.944918,0][9.45837,6.95082,1.41141][-0.117126,0.0638641,-0.991062][0.938035,0.944586,0][9.67574,7.27696,1.40667][-0.109187,0.0759888,-0.991113][0.939255,0.944585,0][9.85661,7.16359,1.44386][0.754983,-0.353523,0.552287][0.969874,0.965116,0][9.55827,6.87536,1.59098][0.165668,-0.0833191,0.982656][0.968752,0.965521,0][9.60566,6.78899,1.45097][0.710267,-0.465803,0.527776][0.968506,0.965264,0][9.77888,7.2142,1.58251][0.137725,-0.125247,0.98252][0.969979,0.965384,0][9.55827,6.87536,1.59098][0.165668,-0.0833191,0.982656][0.968752,0.965521,0][9.85661,7.16359,1.44386][0.754983,-0.353523,0.552287][0.969874,0.965116,0][9.85661,7.16359,1.44386][0.741612,-0.301267,-0.599375][0.938024,0.967892,0][9.60566,6.78899,1.45097][0.655731,-0.450778,-0.605653][0.939405,0.967811,0][9.56993,6.81927,1.38975][0.655731,-0.450778,-0.605653][0.939381,0.967934,0][9.85661,7.16359,1.44386][0.741612,-0.301267,-0.599375][0.938024,0.967892,0][9.56993,6.81927,1.38975][0.655731,-0.450778,-0.605653][0.939381,0.967934,0][9.81858,7.18874,1.38417][0.741612,-0.301267,-0.599375][0.938017,0.968011,0][9.55827,6.87536,1.59098][0.165668,-0.0833191,0.982656][0.969924,0.955487,0][9.28432,6.81128,1.69462][0.35599,-0.010512,0.934431][0.969307,0.955883,0][9.33213,6.57922,1.6738][0.35599,-0.010512,0.934431][0.96877,0.955561,0][9.48079,6.99753,1.6144][0.165668,-0.0833191,0.982656][0.970122,0.955745,0][9.28432,6.81128,1.69462][0.35599,-0.010512,0.934431][0.969307,0.955883,0][9.55827,6.87536,1.59098][0.165668,-0.0833191,0.982656][0.969924,0.955487,0][9.48079,6.99753,1.6144][-0.430871,0.699895,0.569647][0.956182,0.95908,0][9.21916,6.87044,1.57265][-0.430871,0.699895,0.569647][0.95532,0.959275,0][9.28432,6.81128,1.69462][-0.430871,0.699895,0.569647][0.955318,0.958977,0][9.43742,7.02897,1.53878][-0.434801,0.715474,0.54685][0.956166,0.959264,0][9.21916,6.87044,1.57265][-0.430871,0.699895,0.569647][0.95532,0.959275,0][9.48079,6.99753,1.6144][-0.430871,0.699895,0.569647][0.956182,0.95908,0][9.45837,6.95082,1.41141][-0.754572,0.49668,-0.428871][0.932836,0.943063,0][9.18254,6.7192,1.38355][-0.544429,0.703349,-0.457054][0.931818,0.943093,0][9.21916,6.87044,1.57265][-0.544429,0.703349,-0.457053][0.932315,0.94273,0][9.45837,6.95082,1.41141][-0.754572,0.49668,-0.428871][0.932836,0.943063,0][9.21916,6.87044,1.57265][-0.544429,0.703349,-0.457053][0.932315,0.94273,0][9.43742,7.02897,1.53878][-0.754572,0.49668,-0.428871][0.933045,0.942816,0][9.56993,6.81927,1.38975][-0.117126,0.0638641,-0.991062][0.937887,0.944915,0][9.27751,6.45435,1.36278][-0.00386871,0.0767678,-0.997041][0.936437,0.944835,0][9.18254,6.7192,1.38355][-0.00386871,0.0767678,-0.997041][0.936958,0.944387,0][9.56993,6.81927,1.38975][-0.117126,0.0638641,-0.991062][0.937887,0.944915,0][9.18254,6.7192,1.38355][-0.00386871,0.0767678,-0.997041][0.936958,0.944387,0][9.45837,6.95082,1.41141][-0.117126,0.0638641,-0.991062][0.938035,0.944586,0][9.60566,6.78899,1.45097][0.710267,-0.465803,0.527776][0.968506,0.965264,0][9.33213,6.57922,1.6738][0.35599,-0.010512,0.934431][0.967672,0.965793,0][9.32864,6.3988,1.46254][0.743081,-0.514887,0.42746][0.967064,0.965429,0][9.55827,6.87536,1.59098][0.165668,-0.0833191,0.982656][0.968752,0.965521,0][9.33213,6.57922,1.6738][0.35599,-0.010512,0.934431][0.967672,0.965793,0][9.60566,6.78899,1.45097][0.710267,-0.465803,0.527776][0.968506,0.965264,0][9.60566,6.78899,1.45097][0.655731,-0.450778,-0.605653][0.939405,0.967811,0][9.32864,6.3988,1.46254][0.646056,-0.476359,-0.596401][0.940863,0.967716,0][9.27751,6.45435,1.36278][0.646056,-0.476359,-0.596401][0.940798,0.967918,0][9.60566,6.78899,1.45097][0.655731,-0.450778,-0.605653][0.939405,0.967811,0][9.27751,6.45435,1.36278][0.646056,-0.476359,-0.596401][0.940798,0.967918,0][9.56993,6.81927,1.38975][0.655731,-0.450778,-0.605653][0.939381,0.967934,0][8.87406,7.73528,2.11762][-0.283905,0.927196,-0.244349][0.970087,0.954324,0][8.9515,7.75417,2.09932][-0.283905,0.927196,-0.244349][0.970296,0.954417,0][8.86777,7.71853,2.06137][-0.283905,0.927196,-0.244349][0.969989,0.954423,0][8.91735,7.75371,2.13725][-0.283907,0.927192,-0.244362][0.970246,0.954321,0][8.9515,7.75417,2.09932][-0.283905,0.927196,-0.244349][0.970296,0.954417,0][8.87406,7.73528,2.11762][-0.283905,0.927196,-0.244349][0.970087,0.954324,0][8.93426,7.73911,2.1674][0.295281,0.914355,0.277062][0.945356,0.948709,0][8.9842,7.72594,2.15764][0.295281,0.914355,0.277062][0.945289,0.948615,0][8.9515,7.75417,2.09932][0.295281,0.914355,0.277062][0.945512,0.948616,0][8.93426,7.73911,2.1674][0.295281,0.914355,0.277062][0.945356,0.948709,0][8.9515,7.75417,2.09932][0.295281,0.914355,0.277062][0.945512,0.948616,0][8.91735,7.75371,2.13725][0.295276,0.914357,0.277061][0.945471,0.948709,0][8.91291,7.70046,2.18928][0.269009,0.35765,0.894271][0.928898,0.962256,0][8.94292,7.65119,2.19996][0.269009,0.35765,0.894271][0.928805,0.962158,0][8.9842,7.72594,2.15764][0.295281,0.914355,0.277062][0.929071,0.962154,0][8.91291,7.70046,2.18928][0.269009,0.35765,0.894271][0.928898,0.962256,0][8.9842,7.72594,2.15764][0.295281,0.914355,0.277062][0.929071,0.962154,0][8.93426,7.73911,2.1674][0.295281,0.914355,0.277062][0.929036,0.962254,0][8.87659,7.68125,2.18902][-0.830811,0.132512,0.540549][0.94903,0.963436,0][8.82349,7.65434,2.11401][-0.830811,0.132512,0.540549][0.948814,0.963544,0][8.87266,7.61403,2.19947][-0.830811,0.132512,0.540549][0.948858,0.963374,0][8.85117,7.70209,2.14484][-0.830812,0.132522,0.540546][0.949007,0.963524,0][8.82349,7.65434,2.11401][-0.830811,0.132512,0.540549][0.948814,0.963544,0][8.87659,7.68125,2.18902][-0.830811,0.132512,0.540549][0.94903,0.963436,0][8.85117,7.70209,2.14484][-0.830812,0.132522,0.540546][0.949007,0.963524,0][8.86777,7.71853,2.06137][-0.845081,0.530844,-0.0635839][0.948983,0.963694,0][8.82349,7.65434,2.11401][-0.830811,0.132512,0.540549][0.948814,0.963544,0][8.87406,7.73528,2.11762][-0.84507,0.530861,-0.0635785][0.949095,0.963601,0][8.86777,7.71853,2.06137][-0.845081,0.530844,-0.0635839][0.948983,0.963694,0][8.85117,7.70209,2.14484][-0.830812,0.132522,0.540546][0.949007,0.963524,0][8.87659,7.68125,2.18902][-0.09045,0.158054,0.983279][0.960541,0.968103,0][8.87266,7.61403,2.19947][-0.09045,0.158054,0.983279][0.960383,0.968014,0][8.94292,7.65119,2.19996][-0.09045,0.158054,0.983279][0.96062,0.967967,0][8.87659,7.68125,2.18902][-0.09045,0.158054,0.983279][0.960541,0.968103,0][8.94292,7.65119,2.19996][-0.09045,0.158054,0.983279][0.96062,0.967967,0][8.91291,7.70046,2.18928][-0.090449,0.158056,0.983279][0.960663,0.968078,0][8.86777,7.71853,2.06137][-0.283905,0.927196,-0.244349][0.929069,0.955772,0][9.02028,7.64966,2.00839][0.0544254,0.681757,-0.729552][0.929313,0.955479,0][8.89805,7.61388,1.96583][0.0544254,0.681757,-0.729552][0.9294,0.955725,0][8.9515,7.75417,2.09932][-0.283905,0.927196,-0.244349][0.928975,0.955602,0][9.02028,7.64966,2.00839][0.0544254,0.681757,-0.729552][0.929313,0.955479,0][8.86777,7.71853,2.06137][-0.283905,0.927196,-0.244349][0.929069,0.955772,0][8.9842,7.72594,2.15764][0.779323,0.61395,-0.125385][0.975243,0.959002,0][9.0637,7.61086,2.08826][0.779323,0.61395,-0.125385][0.975674,0.958977,0][9.02028,7.64966,2.00839][0.779323,0.61395,-0.125385][0.975675,0.95917,0][8.9842,7.72594,2.15764][0.779323,0.61395,-0.125385][0.975243,0.959002,0][9.02028,7.64966,2.00839][0.779323,0.61395,-0.125385][0.975675,0.95917,0][8.9515,7.75417,2.09932][0.771712,0.622237,-0.13146][0.975241,0.959144,0][8.94292,7.65119,2.19996][-0.09045,0.158054,0.983279][0.96062,0.967967,0][8.99774,7.5218,2.15581][0.686032,0.0428223,0.72631][0.960454,0.96771,0][9.0637,7.61086,2.08826][0.686032,0.0428222,0.72631][0.960795,0.967741,0][8.94292,7.65119,2.19996][-0.09045,0.158054,0.983279][0.96062,0.967967,0][9.0637,7.61086,2.08826][0.686032,0.0428222,0.72631][0.960795,0.967741,0][8.9842,7.72594,2.15764][0.684687,0.0339862,0.728045][0.960875,0.968014,0][8.87266,7.61403,2.19947][-0.830811,0.132512,0.540549][0.94108,0.948582,0][8.83077,7.54053,2.04652][-0.889298,-0.266509,0.371647][0.941516,0.948375,0][8.89629,7.48486,2.16337][-0.889298,-0.266509,0.371647][0.941485,0.948662,0][8.82349,7.65434,2.11401][-0.830811,0.132512,0.540549][0.941104,0.948372,0][8.83077,7.54053,2.04652][-0.889298,-0.266509,0.371647][0.941516,0.948375,0][8.87266,7.61403,2.19947][-0.830811,0.132512,0.540549][0.94108,0.948582,0][8.82349,7.65434,2.11401][-0.830811,0.132512,0.540549][0.948814,0.963544,0][8.89805,7.61388,1.96583][-0.840907,0.235212,-0.487392][0.948642,0.963817,0][8.83077,7.54053,2.04652][-0.889298,-0.266509,0.371647][0.94845,0.963603,0][8.86777,7.71853,2.06137][-0.845081,0.530844,-0.0635839][0.948983,0.963694,0][8.89805,7.61388,1.96583][-0.840907,0.235212,-0.487392][0.948642,0.963817,0][8.82349,7.65434,2.11401][-0.830811,0.132512,0.540549][0.948814,0.963544,0][8.87266,7.61403,2.19947][-0.09045,0.158054,0.983279][0.960383,0.968014,0][8.89629,7.48486,2.16337][0.158331,-0.238831,0.958066][0.96015,0.967801,0][8.99774,7.5218,2.15581][0.686032,0.0428223,0.72631][0.960454,0.96771,0][8.87266,7.61403,2.19947][-0.09045,0.158054,0.983279][0.960383,0.968014,0][8.99774,7.5218,2.15581][0.686032,0.0428223,0.72631][0.960454,0.96771,0][8.94292,7.65119,2.19996][-0.09045,0.158054,0.983279][0.96062,0.967967,0][8.89805,7.61388,1.96583][0.0544254,0.681757,-0.729552][0.9294,0.955725,0][9.05658,7.43371,1.90696][0.161106,0.431739,-0.887494][0.929991,0.955433,0][8.92751,7.41551,1.87468][0.161106,0.431739,-0.887494][0.930022,0.955691,0][9.02028,7.64966,2.00839][0.0544254,0.681757,-0.729552][0.929313,0.955479,0][9.05658,7.43371,1.90696][0.161106,0.431739,-0.887494][0.929991,0.955433,0][8.89805,7.61388,1.96583][0.0544254,0.681757,-0.729552][0.9294,0.955725,0][9.0637,7.61086,2.08826][0.779323,0.61395,-0.125385][0.975419,0.948638,0][9.09863,7.39472,1.98746][0.897832,0.296805,-0.325277][0.974669,0.948635,0][9.05658,7.43371,1.90696][0.897832,0.296805,-0.325277][0.974694,0.94844,0][9.0637,7.61086,2.08826][0.779323,0.61395,-0.125385][0.975419,0.948638,0][9.05658,7.43371,1.90696][0.897832,0.296805,-0.325277][0.974694,0.94844,0][9.02028,7.64966,2.00839][0.779323,0.61395,-0.125385][0.975445,0.948443,0][8.99774,7.5218,2.15581][0.686032,0.0428223,0.72631][0.949401,0.950297,0][9.02405,7.3236,2.06635][0.786453,-0.164331,0.595389][0.948811,0.950258,0][9.09863,7.39472,1.98746][0.786453,-0.164331,0.595389][0.948996,0.950042,0][8.99774,7.5218,2.15581][0.686032,0.0428223,0.72631][0.949401,0.950297,0][9.09863,7.39472,1.98746][0.786453,-0.164331,0.595389][0.948996,0.950042,0][9.0637,7.61086,2.08826][0.686032,0.0428222,0.72631][0.949636,0.950093,0][8.89629,7.48486,2.16337][-0.889298,-0.266509,0.371647][0.941485,0.948662,0][8.85507,7.36111,1.96529][-0.894855,-0.270407,0.355125][0.942128,0.94843,0][8.91874,7.30482,2.08285][-0.894855,-0.270407,0.355125][0.942097,0.948717,0][8.83077,7.54053,2.04652][-0.889298,-0.266509,0.371647][0.941516,0.948375,0][8.85507,7.36111,1.96529][-0.894855,-0.270407,0.355125][0.942128,0.94843,0][8.89629,7.48486,2.16337][-0.889298,-0.266509,0.371647][0.941485,0.948662,0][8.83077,7.54053,2.04652][-0.889298,-0.266509,0.371647][0.94845,0.963603,0][8.92751,7.41551,1.87468][-0.813436,0.144858,-0.563328][0.948056,0.963875,0][8.85507,7.36111,1.96529][-0.894855,-0.270407,0.355125][0.947918,0.963652,0][8.89805,7.61388,1.96583][-0.840907,0.235212,-0.487392][0.948642,0.963817,0][8.92751,7.41551,1.87468][-0.813436,0.144858,-0.563328][0.948056,0.963875,0][8.83077,7.54053,2.04652][-0.889298,-0.266509,0.371647][0.94845,0.963603,0][8.89629,7.48486,2.16337][0.158331,-0.238831,0.958066][0.96015,0.967801,0][8.91874,7.30482,2.08285][0.208693,-0.377418,0.902221][0.959801,0.967518,0][9.02405,7.3236,2.06635][0.786453,-0.164331,0.595389][0.960074,0.967396,0][8.89629,7.48486,2.16337][0.158331,-0.238831,0.958066][0.96015,0.967801,0][9.02405,7.3236,2.06635][0.786453,-0.164331,0.595389][0.960074,0.967396,0][8.99774,7.5218,2.15581][0.686032,0.0428223,0.72631][0.960454,0.96771,0][8.92751,7.41551,1.87468][0.161106,0.431739,-0.887494][0.930022,0.955691,0][9.05159,7.2097,1.82389][0.170467,0.33175,-0.927838][0.930686,0.955471,0][8.92002,7.2039,1.79764][0.170467,0.33175,-0.927838][0.930678,0.955732,0][9.05658,7.43371,1.90696][0.161106,0.431739,-0.887494][0.929991,0.955433,0][9.05159,7.2097,1.82389][0.170467,0.33175,-0.927838][0.930686,0.955471,0][8.92751,7.41551,1.87468][0.161106,0.431739,-0.887494][0.930022,0.955691,0][9.09863,7.39472,1.98746][0.897832,0.296805,-0.325277][0.950417,0.950795,0][9.09277,7.17075,1.90485][0.907307,0.1244,-0.401645][0.949727,0.950795,0][9.05159,7.2097,1.82389][0.907307,0.1244,-0.401645][0.949685,0.950633,0][9.09863,7.39472,1.98746][0.897832,0.296805,-0.325277][0.950417,0.950795,0][9.05159,7.2097,1.82389][0.907307,0.1244,-0.401645][0.949685,0.950633,0][9.05658,7.43371,1.90696][0.897832,0.296805,-0.325277][0.950374,0.950634,0][9.02405,7.3236,2.06635][0.786453,-0.164331,0.595389][0.948811,0.950258,0][9.01461,7.11244,1.99051][0.792539,-0.237229,0.561787][0.948158,0.950263,0][9.09277,7.17075,1.90485][0.792539,-0.237229,0.561787][0.948307,0.950042,0][9.02405,7.3236,2.06635][0.786453,-0.164331,0.595389][0.948811,0.950258,0][9.09277,7.17075,1.90485][0.792539,-0.237229,0.561787][0.948307,0.950042,0][9.09863,7.39472,1.98746][0.786453,-0.164331,0.595389][0.948996,0.950042,0][8.91874,7.30482,2.08285][-0.894855,-0.270407,0.355125][0.947971,0.963417,0][8.84628,7.16259,1.89393][-0.899138,-0.105983,0.424639][0.947305,0.963662,0][8.90873,7.1061,2.01206][-0.899138,-0.105983,0.424639][0.947357,0.963425,0][8.85507,7.36111,1.96529][-0.894855,-0.270407,0.355125][0.947918,0.963652,0][8.84628,7.16259,1.89393][-0.899138,-0.105983,0.424639][0.947305,0.963662,0][8.91874,7.30482,2.08285][-0.894855,-0.270407,0.355125][0.947971,0.963417,0][8.85507,7.36111,1.96529][-0.894855,-0.270407,0.355125][0.947918,0.963652,0][8.92002,7.2039,1.79764][-0.817777,0.226399,-0.529135][0.947404,0.963887,0][8.84628,7.16259,1.89393][-0.899138,-0.105983,0.424639][0.947305,0.963662,0][8.92751,7.41551,1.87468][-0.813436,0.144858,-0.563328][0.948056,0.963875,0][8.92002,7.2039,1.79764][-0.817777,0.226399,-0.529135][0.947404,0.963887,0][8.85507,7.36111,1.96529][-0.894855,-0.270407,0.355125][0.947918,0.963652,0][8.91874,7.30482,2.08285][0.208693,-0.377418,0.902221][0.959801,0.967518,0][8.90873,7.1061,2.01206][0.207155,-0.337564,0.918225][0.959341,0.967255,0][9.01461,7.11244,1.99051][0.792539,-0.237229,0.561787][0.959587,0.967114,0][8.91874,7.30482,2.08285][0.208693,-0.377418,0.902221][0.959801,0.967518,0][9.01461,7.11244,1.99051][0.792539,-0.237229,0.561787][0.959587,0.967114,0][9.02405,7.3236,2.06635][0.786453,-0.164331,0.595389][0.960074,0.967396,0][8.92002,7.2039,1.79764][0.170467,0.33175,-0.927838][0.930678,0.955732,0][9.03834,6.93279,1.72119][0.170048,0.335508,-0.926563][0.931543,0.955531,0][8.89833,6.92662,1.69326][0.170048,0.335507,-0.926563][0.931535,0.955809,0][9.05159,7.2097,1.82389][0.170467,0.33175,-0.927838][0.930686,0.955471,0][9.03834,6.93279,1.72119][0.170048,0.335508,-0.926563][0.931543,0.955531,0][8.92002,7.2039,1.79764][0.170467,0.33175,-0.927838][0.930678,0.955732,0][9.05159,7.2097,1.82389][0.907307,0.1244,-0.401645][0.949685,0.950633,0][9.06718,6.9327,1.82954][0.965194,0.049085,-0.256886][0.948986,0.950825,0][9.03834,6.93279,1.72119][0.965194,0.049085,-0.256886][0.948825,0.950635,0][9.09277,7.17075,1.90485][0.907307,0.1244,-0.401645][0.949727,0.950795,0][9.06718,6.9327,1.82954][0.965194,0.049085,-0.256886][0.948986,0.950825,0][9.05159,7.2097,1.82389][0.907307,0.1244,-0.401645][0.949685,0.950633,0][9.01461,7.11244,1.99051][0.792539,-0.237229,0.561787][0.948158,0.950263,0][8.99898,6.8293,1.8985][0.834664,-0.211327,0.508603][0.947291,0.950289,0][9.06718,6.9327,1.82954][0.834664,-0.211327,0.508603][0.947565,0.950071,0][9.01461,7.11244,1.99051][0.792539,-0.237229,0.561787][0.948158,0.950263,0][9.06718,6.9327,1.82954][0.834664,-0.211327,0.508603][0.947565,0.950071,0][9.09277,7.17075,1.90485][0.792539,-0.237229,0.561787][0.948307,0.950042,0][8.90873,7.1061,2.01206][-0.899138,-0.105983,0.424639][0.947357,0.963425,0][8.81985,6.88266,1.79573][-0.895317,-0.0698042,0.439925][0.946425,0.963667,0][8.88631,6.82254,1.92143][-0.895317,-0.0698042,0.439925][0.946481,0.963415,0][8.84628,7.16259,1.89393][-0.899138,-0.105983,0.424639][0.947305,0.963662,0][8.81985,6.88266,1.79573][-0.895317,-0.0698042,0.439925][0.946425,0.963667,0][8.90873,7.1061,2.01206][-0.899138,-0.105983,0.424639][0.947357,0.963425,0][8.84628,7.16259,1.89393][-0.899138,-0.105983,0.424639][0.947305,0.963662,0][8.89833,6.92662,1.69326][-0.817308,0.257923,-0.515251][0.946531,0.963907,0][8.81985,6.88266,1.79573][-0.895317,-0.0698042,0.439925][0.946425,0.963667,0][8.92002,7.2039,1.79764][-0.817777,0.226399,-0.529135][0.947404,0.963887,0][8.89833,6.92662,1.69326][-0.817308,0.257923,-0.515251][0.946531,0.963907,0][8.84628,7.16259,1.89393][-0.899138,-0.105983,0.424639][0.947305,0.963662,0][8.90873,7.1061,2.01206][0.207155,-0.337564,0.918225][0.959341,0.967255,0][8.88631,6.82254,1.92143][0.207437,-0.312647,0.926942][0.958665,0.96689,0][8.99898,6.8293,1.8985][0.834664,-0.211327,0.508603][0.958927,0.966741,0][8.90873,7.1061,2.01206][0.207155,-0.337564,0.918225][0.959341,0.967255,0][8.99898,6.8293,1.8985][0.834664,-0.211327,0.508603][0.958927,0.966741,0][9.01461,7.11244,1.99051][0.792539,-0.237229,0.561787][0.959587,0.967114,0][9.03834,6.93279,1.72119][0.170048,0.335508,-0.926563][0.962139,0.967915,0][9.13253,6.88352,1.65919][-0.0113337,0.774344,-0.632664][0.962116,0.967671,0][8.91598,6.8167,1.58129][-0.0113337,0.774344,-0.632664][0.962811,0.967843,0][9.03834,6.93279,1.72119][0.170048,0.335508,-0.926563][0.962139,0.967915,0][8.91598,6.8167,1.58129][-0.0113337,0.774344,-0.632664][0.962811,0.967843,0][8.89833,6.92662,1.69326][0.170048,0.335507,-0.926563][0.962496,0.968081,0][9.06718,6.9327,1.82954][0.651635,0.757893,0.0311532][0.95654,0.967314,0][9.19297,6.82706,1.76833][0.651635,0.757893,0.0311532][0.956373,0.966994,0][9.13253,6.88352,1.65919][0.651635,0.757893,0.0311532][0.956791,0.966977,0][9.06718,6.9327,1.82954][0.404688,0.908177,-0.106969][0.962801,0.963198,0][9.13253,6.88352,1.65919][-0.0113337,0.774344,-0.632664][0.962215,0.963204,0][9.03834,6.93279,1.72119][0.170048,0.335508,-0.926563][0.962527,0.963062,0][8.99898,6.8293,1.8985][0.547253,0.202578,0.812082][0.979711,0.944642,0][9.07718,6.66515,1.88675][0.547253,0.202578,0.812082][0.98023,0.944787,0][9.19297,6.82706,1.76833][0.547253,0.202578,0.812082][0.979709,0.945105,0][8.99898,6.8293,1.8985][0.834664,-0.211327,0.508603][0.961368,0.95062,0][9.19297,6.82706,1.76833][0.549379,0.18155,0.815611][0.962033,0.950786,0][9.06718,6.9327,1.82954][0.834664,-0.211327,0.508603][0.961544,0.950874,0][8.88631,6.82254,1.92143][-0.895317,-0.0698042,0.439925][0.946481,0.963415,0][8.77992,6.69532,1.6901][-0.884495,-0.0920521,0.457378][0.945767,0.963739,0][8.88542,6.60477,1.87588][-0.884495,-0.0920521,0.457378][0.945853,0.963367,0][8.81985,6.88266,1.79573][-0.895317,-0.0698042,0.439925][0.946425,0.963667,0][8.77992,6.69532,1.6901][-0.884495,-0.0920521,0.457378][0.945767,0.963739,0][8.88631,6.82254,1.92143][-0.895317,-0.0698042,0.439925][0.946481,0.963415,0][8.81985,6.88266,1.79573][-0.766026,0.431798,-0.476188][0.959735,0.936621,0][8.91598,6.8167,1.58129][-0.0113337,0.774344,-0.632664][0.959453,0.937008,0][8.77992,6.69532,1.6901][-0.766026,0.431798,-0.476188][0.959077,0.936692,0][8.89833,6.92662,1.69326][-0.817308,0.257923,-0.515251][0.946531,0.963907,0][8.91598,6.8167,1.58129][-0.810243,0.349298,-0.470635][0.946143,0.964054,0][8.81985,6.88266,1.79573][-0.895317,-0.0698042,0.439925][0.946425,0.963667,0][8.88631,6.82254,1.92143][0.207437,-0.312647,0.926942][0.958665,0.96689,0][8.88542,6.60477,1.87588][0.00899848,-0.204791,0.978764][0.958182,0.966587,0][9.07718,6.66515,1.88675][0.00899848,-0.204791,0.978764][0.958736,0.966402,0][8.88631,6.82254,1.92143][0.207437,-0.312647,0.926942][0.958665,0.96689,0][9.07718,6.66515,1.88675][0.00899848,-0.204791,0.978764][0.958736,0.966402,0][8.99898,6.8293,1.8985][0.834664,-0.211327,0.508603][0.958927,0.966741,0][9.13253,6.88352,1.65919][0.651635,0.757893,0.0311532][0.956791,0.966977,0][9.19297,6.82706,1.76833][0.651635,0.757893,0.0311532][0.956373,0.966994,0][9.28432,6.81128,1.69462][-0.430871,0.699895,0.569647][0.956373,0.966764,0][9.13253,6.88352,1.65919][0.651635,0.757893,0.0311532][0.956791,0.966977,0][9.28432,6.81128,1.69462][-0.430871,0.699895,0.569647][0.956373,0.966764,0][9.21916,6.87044,1.57265][-0.430871,0.699895,0.569647][0.956833,0.966739,0][9.19297,6.82706,1.76833][0.549379,0.18155,0.815611][0.9692,0.956053,0][9.07718,6.66515,1.88675][0.00899848,-0.204791,0.978764][0.968582,0.95608,0][9.33213,6.57922,1.6738][0.35599,-0.010512,0.934431][0.96877,0.955561,0][9.19297,6.82706,1.76833][0.549379,0.18155,0.815611][0.9692,0.956053,0][9.33213,6.57922,1.6738][0.35599,-0.010512,0.934431][0.96877,0.955561,0][9.28432,6.81128,1.69462][0.35599,-0.010512,0.934431][0.969307,0.955883,0][9.21916,6.87044,1.57265][-0.544429,0.703349,-0.457053][0.9621,0.967443,0][8.91598,6.8167,1.58129][-0.0113337,0.774344,-0.632664][0.962811,0.967843,0][9.13253,6.88352,1.65919][-0.0113337,0.774344,-0.632664][0.962116,0.967671,0][8.77992,6.69532,1.6901][-0.884495,-0.0920521,0.457378][0.945767,0.963739,0][8.73675,6.58547,1.63321][-0.859244,0.0756763,0.505938][0.945362,0.963766,0][8.84503,6.46327,1.83538][-0.859244,0.0756763,0.505938][0.945385,0.963345,0][8.77992,6.69532,1.6901][-0.884495,-0.0920521,0.457378][0.945767,0.963739,0][8.84503,6.46327,1.83538][-0.859244,0.0756763,0.505938][0.945385,0.963345,0][8.88542,6.60477,1.87588][-0.884495,-0.0920521,0.457378][0.945853,0.963367,0][8.77992,6.69532,1.6901][-0.766026,0.431798,-0.476188][0.959077,0.936692,0][8.81965,6.55413,1.44647][-0.750095,0.511741,-0.418902][0.958494,0.937072,0][8.73675,6.58547,1.63321][-0.750095,0.511741,-0.418902][0.958672,0.936719,0][8.91598,6.8167,1.58129][-0.0113337,0.774344,-0.632664][0.959453,0.937008,0][8.81965,6.55413,1.44647][-0.750095,0.511741,-0.418902][0.958494,0.937072,0][8.77992,6.69532,1.6901][-0.766026,0.431798,-0.476188][0.959077,0.936692,0][8.88542,6.60477,1.87588][0.00899848,-0.204791,0.978764][0.958182,0.966587,0][8.84503,6.46327,1.83538][0.156881,-0.312903,0.936739][0.957781,0.966447,0][8.99813,6.38985,1.78521][0.156881,-0.312903,0.936739][0.957955,0.966129,0][8.88542,6.60477,1.87588][0.00899848,-0.204791,0.978764][0.958182,0.966587,0][8.99813,6.38985,1.78521][0.156881,-0.312903,0.936739][0.957955,0.966129,0][9.07718,6.66515,1.88675][0.00899848,-0.204791,0.978764][0.958736,0.966402,0][8.91598,6.8167,1.58129][-0.0113337,0.774344,-0.632664][0.950424,0.937519,0][8.95304,6.49426,1.37929][-0.197215,0.504097,-0.840829][0.951265,0.937162,0][8.81965,6.55413,1.44647][-0.750095,0.511741,-0.418902][0.951288,0.937451,0][9.27751,6.45435,1.36278][-0.00386871,0.0767678,-0.997041][0.936437,0.944835,0][9.16338,6.3855,1.35842][-0.0354722,0.121748,-0.991927][0.936062,0.944723,0][8.95304,6.49426,1.37929][-0.0354722,0.121748,-0.991927][0.935979,0.944257,0][9.27751,6.45435,1.36278][-0.00386871,0.0767678,-0.997041][0.936437,0.944835,0][8.95304,6.49426,1.37929][-0.0354722,0.121748,-0.991927][0.935979,0.944257,0][9.18254,6.7192,1.38355][-0.00386871,0.0767678,-0.997041][0.936958,0.944387,0][9.07718,6.66515,1.88675][0.00899848,-0.204791,0.978764][0.967681,0.966219,0][8.99813,6.38985,1.78521][0.156881,-0.312903,0.936739][0.966762,0.966106,0][9.10262,6.35427,1.66954][0.604051,-0.422632,0.675651][0.966744,0.965876,0][9.07718,6.66515,1.88675][0.00899848,-0.204791,0.978764][0.968582,0.95608,0][9.10262,6.35427,1.66954][0.604051,-0.422632,0.675651][0.9678,0.955714,0][9.33213,6.57922,1.6738][0.35599,-0.010512,0.934431][0.96877,0.955561,0][9.32864,6.3988,1.46254][0.743081,-0.514887,0.42746][0.967064,0.965429,0][9.10262,6.35427,1.66954][0.604051,-0.422632,0.675651][0.966744,0.965876,0][9.2145,6.32995,1.45817][0.475153,-0.809586,0.344675][0.966721,0.965454,0][9.33213,6.57922,1.6738][0.35599,-0.010512,0.934431][0.967672,0.965793,0][9.10262,6.35427,1.66954][0.604051,-0.422632,0.675651][0.966744,0.965876,0][9.32864,6.3988,1.46254][0.743081,-0.514887,0.42746][0.967064,0.965429,0][9.27751,6.45435,1.36278][-0.00386871,0.0767678,-0.997041][0.930839,0.938093,0][9.2145,6.32995,1.45817][0.430827,-0.676333,-0.597463][0.931205,0.937853,0][9.16338,6.3855,1.35842][-0.0354722,0.121748,-0.991927][0.931254,0.938099,0][9.32864,6.3988,1.46254][0.430836,-0.676333,-0.597456][0.93079,0.937847,0][9.2145,6.32995,1.45817][0.430827,-0.676333,-0.597463][0.931205,0.937853,0][9.27751,6.45435,1.36278][-0.00386871,0.0767678,-0.997041][0.930839,0.938093,0][9.16338,6.3855,1.35842][0.66083,-0.458637,-0.594101][0.968625,0.961398,0][8.9053,5.97134,1.39108][0.66083,-0.458637,-0.594101][0.97007,0.961116,0][8.86832,6.01152,1.31892][0.66083,-0.458637,-0.594101][0.970058,0.961265,0][9.2145,6.32995,1.45817][0.660825,-0.458634,-0.594109][0.968641,0.961192,0][8.9053,5.97134,1.39108][0.66083,-0.458637,-0.594101][0.97007,0.961116,0][9.16338,6.3855,1.35842][0.66083,-0.458637,-0.594101][0.968625,0.961398,0][9.10262,6.35427,1.66954][0.604051,-0.422632,0.675651][0.966744,0.965876,0][8.83279,5.98274,1.56018][0.70817,-0.615916,0.34517][0.965306,0.965798,0][8.9053,5.97134,1.39108][0.70817,-0.615916,0.34517][0.965288,0.965461,0][9.10262,6.35427,1.66954][0.604051,-0.422632,0.675651][0.966744,0.965876,0][8.9053,5.97134,1.39108][0.70817,-0.615916,0.34517][0.965288,0.965461,0][9.2145,6.32995,1.45817][0.475153,-0.809586,0.344675][0.966721,0.965454,0][9.10262,6.35427,1.66954][0.604051,-0.422632,0.675651][0.966744,0.965876,0][8.75721,6.00847,1.64384][0.518136,-0.565244,0.641899][0.965319,0.965964,0][8.83279,5.98274,1.56018][0.70817,-0.615916,0.34517][0.965306,0.965798,0][8.99813,6.38985,1.78521][0.156881,-0.312903,0.936739][0.966762,0.966106,0][8.75721,6.00847,1.64384][0.518136,-0.565244,0.641899][0.965319,0.965964,0][9.10262,6.35427,1.66954][0.604051,-0.422632,0.675651][0.966744,0.965876,0][8.95304,6.49426,1.37929][-0.0354722,0.121748,-0.991927][0.935979,0.944257,0][8.86832,6.01152,1.31892][0.135525,0.0994798,-0.985767][0.934583,0.944649,0][8.70111,6.10129,1.30499][0.135525,0.0994798,-0.985767][0.934526,0.944275,0][9.16338,6.3855,1.35842][-0.0354722,0.121748,-0.991927][0.936062,0.944723,0][8.86832,6.01152,1.31892][0.135525,0.0994798,-0.985767][0.934583,0.944649,0][8.95304,6.49426,1.37929][-0.0354722,0.121748,-0.991927][0.935979,0.944257,0][8.81965,6.55413,1.44647][-0.750095,0.511741,-0.418902][0.951288,0.937451,0][8.70111,6.10129,1.30499][-0.289291,0.353631,-0.889525][0.952711,0.937251,0][8.60463,6.1446,1.35359][-0.289291,0.353631,-0.889525][0.952728,0.93746,0][8.95304,6.49426,1.37929][-0.197215,0.504097,-0.840829][0.951265,0.937162,0][8.70111,6.10129,1.30499][-0.289291,0.353631,-0.889525][0.952711,0.937251,0][8.81965,6.55413,1.44647][-0.750095,0.511741,-0.418902][0.951288,0.937451,0][8.99813,6.38985,1.78521][0.156881,-0.312903,0.936739][0.957955,0.966129,0][8.63805,6.06777,1.66392][-0.0114457,-0.341173,0.939931][0.956454,0.966185,0][8.75721,6.00847,1.64384][0.518136,-0.565244,0.641899][0.956584,0.965935,0][8.84503,6.46327,1.83538][0.156881,-0.312903,0.936739][0.957781,0.966447,0][8.63805,6.06777,1.66392][-0.0114457,-0.341173,0.939931][0.956454,0.966185,0][8.99813,6.38985,1.78521][0.156881,-0.312903,0.936739][0.957955,0.966129,0][8.81965,6.55413,1.44647][-0.828848,0.494525,-0.26164][0.977131,0.967035,0][8.60463,6.1446,1.35359][-0.828848,0.494525,-0.26164][0.977139,0.967969,0][8.55973,6.15617,1.51769][-0.828848,0.494525,-0.26164][0.976633,0.967923,0][8.81965,6.55413,1.44647][-0.750095,0.511741,-0.418902][0.958494,0.937072,0][8.55973,6.15617,1.51769][-0.790807,0.440443,-0.42501][0.957191,0.936624,0][8.73675,6.58547,1.63321][-0.750095,0.511741,-0.418902][0.958672,0.936719,0][8.84503,6.46327,1.83538][-0.859244,0.0756763,0.505938][0.945385,0.963345,0][8.55973,6.15617,1.51769][-0.81409,0.187809,0.549531][0.943882,0.96367,0][8.63805,6.06777,1.66392][-0.81409,0.187809,0.549531][0.943898,0.963366,0][8.73675,6.58547,1.63321][-0.859244,0.0756763,0.505938][0.945362,0.963766,0][8.55973,6.15617,1.51769][-0.81409,0.187809,0.549531][0.943882,0.96367,0][8.84503,6.46327,1.83538][-0.859244,0.0756763,0.505938][0.945385,0.963345,0][8.55973,6.15617,1.51769][-0.81409,0.187809,0.549531][0.943882,0.96367,0][8.24518,5.60562,1.29435][-0.781937,0.208439,0.587476][0.941796,0.963662,0][8.32154,5.51045,1.42976][-0.781937,0.208439,0.587476][0.941781,0.963373,0][8.55973,6.15617,1.51769][-0.81409,0.187809,0.549531][0.943882,0.96367,0][8.32154,5.51045,1.42976][-0.781937,0.208439,0.587476][0.941781,0.963373,0][8.63805,6.06777,1.66392][-0.81409,0.187809,0.549531][0.943898,0.963366,0][8.60463,6.1446,1.35359][-0.802468,0.558311,-0.210559][0.959735,0.93584,0][8.29839,5.62236,1.13597][-0.802468,0.558311,-0.210559][0.95774,0.935841,0][8.24518,5.60562,1.29435][-0.802468,0.558311,-0.210559][0.957797,0.935521,0][8.60463,6.1446,1.35359][-0.791114,0.555692,-0.255629][0.975521,0.947687,0][8.24518,5.60562,1.29435][-0.791114,0.555692,-0.255629][0.97352,0.947657,0][8.55973,6.15617,1.51769][-0.791114,0.555692,-0.255629][0.975554,0.947362,0][8.63805,6.06777,1.66392][-0.0114457,-0.341173,0.939931][0.956454,0.966185,0][8.32154,5.51045,1.42976][-0.0131514,-0.38096,0.924498][0.954529,0.965852,0][8.44507,5.46845,1.41421][-0.0131514,-0.38096,0.924498][0.954707,0.96562,0][8.63805,6.06777,1.66392][-0.0114457,-0.341173,0.939931][0.956454,0.966185,0][8.44507,5.46845,1.41421][-0.0131514,-0.38096,0.924498][0.954707,0.96562,0][8.75721,6.00847,1.64384][0.518136,-0.565244,0.641899][0.956584,0.965935,0][8.60463,6.1446,1.35359][-0.289291,0.353631,-0.889525][0.952728,0.93746,0][8.39917,5.59774,1.09154][-0.247411,0.49273,-0.834269][0.954535,0.937328,0][8.29839,5.62236,1.13597][-0.247411,0.49273,-0.834269][0.95461,0.937528,0][8.70111,6.10129,1.30499][-0.289291,0.353631,-0.889525][0.952711,0.937251,0][8.39917,5.59774,1.09154][-0.247411,0.49273,-0.834269][0.954535,0.937328,0][8.60463,6.1446,1.35359][-0.289291,0.353631,-0.889525][0.952728,0.93746,0][8.70111,6.10129,1.30499][-0.289291,0.353631,-0.889525][0.952711,0.937251,0][8.57096,5.52671,1.10995][0.212496,0.270605,-0.938945][0.954488,0.936961,0][8.39917,5.59774,1.09154][-0.247411,0.49273,-0.834269][0.954535,0.937328,0][8.86832,6.01152,1.31892][0.221955,0.267976,-0.93751][0.952722,0.936875,0][8.57096,5.52671,1.10995][0.212496,0.270605,-0.938945][0.954488,0.936961,0][8.70111,6.10129,1.30499][-0.289291,0.353631,-0.889525][0.952711,0.937251,0][8.83279,5.98274,1.56018][0.70817,-0.615916,0.34517][0.965306,0.965798,0][8.44507,5.46845,1.41421][-0.0131514,-0.38096,0.924498][0.963298,0.965703,0][8.52593,5.46296,1.33669][0.542332,-0.581089,0.606805][0.963351,0.965542,0][8.75721,6.00847,1.64384][0.518136,-0.565244,0.641899][0.965319,0.965964,0][8.44507,5.46845,1.41421][-0.0131514,-0.38096,0.924498][0.963298,0.965703,0][8.83279,5.98274,1.56018][0.70817,-0.615916,0.34517][0.965306,0.965798,0][8.9053,5.97134,1.39108][0.70817,-0.615916,0.34517][0.965288,0.965461,0][8.52593,5.46296,1.33669][0.542332,-0.581089,0.606805][0.963351,0.965542,0][8.60664,5.48285,1.17705][0.747509,-0.590391,0.304415][0.963436,0.965214,0][8.83279,5.98274,1.56018][0.70817,-0.615916,0.34517][0.965306,0.965798,0][8.52593,5.46296,1.33669][0.542332,-0.581089,0.606805][0.963351,0.965542,0][8.9053,5.97134,1.39108][0.70817,-0.615916,0.34517][0.965288,0.965461,0][8.86832,6.01152,1.31892][0.66083,-0.458637,-0.594101][0.970058,0.961265,0][8.60664,5.48285,1.17705][0.78586,-0.235529,-0.571795][0.971946,0.961272,0][8.57096,5.52671,1.10995][0.78586,-0.235529,-0.571795][0.971919,0.961413,0][8.9053,5.97134,1.39108][0.66083,-0.458637,-0.594101][0.97007,0.961116,0][8.60664,5.48285,1.17705][0.78586,-0.235529,-0.571795][0.971946,0.961272,0][8.86832,6.01152,1.31892][0.66083,-0.458637,-0.594101][0.970058,0.961265,0][8.57096,5.52671,1.10995][0.78586,-0.235529,-0.571795][0.975184,0.949508,0][8.61903,5.27466,0.994882][0.91252,0.300646,-0.277342][0.974883,0.948985,0][8.5455,5.38343,0.870836][0.91252,0.300646,-0.277342][0.975445,0.948979,0][8.60664,5.48285,1.17705][0.78586,-0.235529,-0.571795][0.974914,0.949533,0][8.61903,5.27466,0.994882][0.91252,0.300646,-0.277342][0.974883,0.948985,0][8.57096,5.52671,1.10995][0.78586,-0.235529,-0.571795][0.975184,0.949508,0][8.52593,5.46296,1.33669][0.542332,-0.581089,0.606805][0.963351,0.965542,0][8.39345,5.10422,1.17][0.688476,-0.192884,0.69914][0.9621,0.965331,0][8.61903,5.27466,0.994882][0.688476,-0.192884,0.69914][0.962785,0.964912,0][8.52593,5.46296,1.33669][0.866055,-0.299044,0.400652][0.947277,0.950649,0][8.61903,5.27466,0.994882][0.91252,0.300646,-0.277342][0.948417,0.950633,0][8.60664,5.48285,1.17705][0.78586,-0.235529,-0.571795][0.94769,0.950853,0][8.44507,5.46845,1.41421][-0.0131514,-0.38096,0.924498][0.962771,0.947831,0][8.19596,5.02124,1.23849][0.468842,-0.53677,0.701473][0.963139,0.94687,0][8.39345,5.10422,1.17][0.688476,-0.192884,0.69914][0.963587,0.947181,0][8.44507,5.46845,1.41421][-0.0131514,-0.38096,0.924498][0.963298,0.965703,0][8.39345,5.10422,1.17][0.688476,-0.192884,0.69914][0.9621,0.965331,0][8.52593,5.46296,1.33669][0.542332,-0.581089,0.606805][0.963351,0.965542,0][8.39917,5.59774,1.09154][-0.247411,0.49273,-0.834269][0.931774,0.96647,0][8.5455,5.38343,0.870836][-0.0907223,0.952318,-0.291308][0.932406,0.966919,0][8.22564,5.35111,0.864814][-0.0907223,0.952318,-0.291308][0.931457,0.967123,0][8.57096,5.52671,1.10995][0.212496,0.270605,-0.938945][0.932269,0.966386,0][8.5455,5.38343,0.870836][-0.0907223,0.952318,-0.291308][0.932406,0.966919,0][8.39917,5.59774,1.09154][-0.247411,0.49273,-0.834269][0.931774,0.96647,0][8.29839,5.62236,1.13597][-0.247411,0.49273,-0.834269][0.931434,0.966429,0][8.22564,5.35111,0.864814][-0.0907223,0.952318,-0.291308][0.931457,0.967123,0][8.00118,5.29905,0.89435][-0.251853,0.717148,-0.649823][0.930761,0.967222,0][8.39917,5.59774,1.09154][-0.247411,0.49273,-0.834269][0.931774,0.96647,0][8.22564,5.35111,0.864814][-0.0907223,0.952318,-0.291308][0.931457,0.967123,0][8.29839,5.62236,1.13597][-0.247411,0.49273,-0.834269][0.931434,0.966429,0][8.32154,5.51045,1.42976][-0.0131514,-0.38096,0.924498][0.954529,0.965852,0][8.04918,4.95677,1.25594][0.283652,-0.411454,0.866168][0.952708,0.965462,0][8.19596,5.02124,1.23849][0.468842,-0.53677,0.701473][0.953173,0.965346,0][8.32154,5.51045,1.42976][-0.0131514,-0.38096,0.924498][0.954529,0.965852,0][8.19596,5.02124,1.23849][0.468842,-0.53677,0.701473][0.953173,0.965346,0][8.44507,5.46845,1.41421][-0.0131514,-0.38096,0.924498][0.954707,0.96562,0][8.24518,5.60562,1.29435][-0.609508,0.763525,-0.213378][0.971114,0.953563,0][8.00118,5.29905,0.89435][-0.251853,0.717148,-0.649823][0.969577,0.954053,0][7.80353,5.18251,1.04193][-0.609508,0.763525,-0.213378][0.969178,0.95365,0][8.29839,5.62236,1.13597][-0.247411,0.49273,-0.834269][0.971057,0.953883,0][8.00118,5.29905,0.89435][-0.251853,0.717148,-0.649823][0.969577,0.954053,0][8.24518,5.60562,1.29435][-0.609508,0.763525,-0.213378][0.971114,0.953563,0][8.24518,5.60562,1.29435][-0.781937,0.208439,0.587476][0.947803,0.948394,0][7.80353,5.18251,1.04193][-0.581851,0.128223,0.803124][0.949279,0.947981,0][8.04918,4.95677,1.25594][-0.581851,0.128223,0.803124][0.949568,0.948728,0][8.24518,5.60562,1.29435][-0.781937,0.208439,0.587476][0.941796,0.963662,0][8.04918,4.95677,1.25594][-0.581851,0.128223,0.803124][0.939791,0.963283,0][8.32154,5.51045,1.42976][-0.781937,0.208439,0.587476][0.941781,0.963373,0][8.68357,5.25384,0.933799][0.559995,0.758563,0.33315][0.945324,0.965014,0][8.5455,5.38343,0.870836][0.559995,0.758563,0.33315][0.944795,0.964843,0][8.61903,5.27466,0.994882][0.559995,0.758563,0.33315][0.945316,0.964834,0][8.6106,5.3617,0.809441][0.56261,0.75886,0.328026][0.944804,0.965025,0][8.5455,5.38343,0.870836][0.559995,0.758563,0.33315][0.944795,0.964843,0][8.68357,5.25384,0.933799][0.559995,0.758563,0.33315][0.945324,0.965014,0][10.3288,7.0803,0.28709][0.441427,0.889748,0.11615][0.952494,0.956449,0][10.19,7.07089,0.314115][0.133514,0.495457,0.85831][0.952124,0.956306,0][10.3256,7.00112,0.333299][0.133514,0.495457,0.85831][0.952598,0.956306,0][10.2598,7.1158,0.277329][0.441427,0.889748,0.11615][0.952253,0.956449,0][10.19,7.07089,0.314115][0.133514,0.495457,0.85831][0.952124,0.956306,0][10.3288,7.0803,0.28709][0.441427,0.889748,0.11615][0.952494,0.956449,0][10.2793,7.11943,0.172862][0.451869,0.54059,-0.709631][0.974815,0.950644,0][10.3486,7.01587,0.138097][0.451869,0.54059,-0.709631][0.97512,0.950812,0][10.2282,7.07803,0.108805][0.451869,0.54059,-0.709631][0.974689,0.950807,0][10.3405,7.0878,0.187766][0.451872,0.540591,-0.709628][0.975035,0.950646,0][10.3486,7.01587,0.138097][0.451869,0.54059,-0.709631][0.97512,0.950812,0][10.2793,7.11943,0.172862][0.451869,0.54059,-0.709631][0.974815,0.950644,0][10.3596,7.07138,0.242071][0.930649,0.272673,-0.244014][0.962463,0.957902,0][10.386,6.9836,0.244822][0.930649,0.272673,-0.244014][0.96225,0.957891,0][10.3486,7.01587,0.138097][0.930649,0.272673,-0.244014][0.96233,0.957684,0][10.3596,7.07138,0.242071][0.930649,0.272673,-0.244014][0.962463,0.957902,0][10.3486,7.01587,0.138097][0.930649,0.272673,-0.244014][0.96233,0.957684,0][10.3405,7.0878,0.187766][0.930661,0.272643,-0.243999][0.962504,0.957796,0][10.3288,7.0803,0.28709][0.441427,0.889748,0.11615][0.929481,0.937924,0][10.3256,7.00112,0.333299][0.133514,0.495457,0.85831][0.929565,0.938098,0][10.386,6.9836,0.244822][0.820065,0.262936,0.508289][0.929227,0.938099,0][10.3288,7.0803,0.28709][0.441427,0.889748,0.11615][0.929481,0.937924,0][10.386,6.9836,0.244822][0.820065,0.262936,0.508289][0.929227,0.938099,0][10.3596,7.07138,0.242071][0.435462,0.892549,0.117174][0.929309,0.937925,0][10.2793,7.11943,0.172862][0.451869,0.54059,-0.709631][0.972305,0.954405,0][10.2282,7.07803,0.108805][0.451869,0.54059,-0.709631][0.972129,0.954262,0][10.1602,7.09937,0.202335][-0.244478,0.891555,-0.381262][0.972474,0.954183,0][10.2793,7.11943,0.172862][0.451869,0.54059,-0.709631][0.972305,0.954405,0][10.1602,7.09937,0.202335][-0.244478,0.891555,-0.381262][0.972474,0.954183,0][10.2447,7.13028,0.220453][-0.244477,0.891557,-0.381256][0.97248,0.954365,0][10.2447,7.13028,0.220453][-0.244477,0.891557,-0.381256][0.97248,0.954365,0][10.1602,7.09937,0.202335][-0.244478,0.891555,-0.381262][0.972474,0.954183,0][10.19,7.07089,0.314115][-0.385509,0.864308,0.32304][0.972736,0.954258,0][10.2447,7.13028,0.220453][-0.244477,0.891557,-0.381256][0.97248,0.954365,0][10.19,7.07089,0.314115][-0.385509,0.864308,0.32304][0.972736,0.954258,0][10.2598,7.1158,0.277329][-0.385501,0.86431,0.323045][0.972613,0.954403,0][10.19,7.07089,0.314115][-0.821214,0.480398,0.307936][0.956837,0.956988,0][10.0481,6.91569,0.177688][-0.821214,0.480398,0.307936][0.957445,0.956703,0][10.0732,6.88107,0.298737][-0.821214,0.480398,0.307936][0.957524,0.956941,0][10.1602,7.09937,0.202335][-0.823252,0.45739,0.336231][0.956783,0.956768,0][10.0481,6.91569,0.177688][-0.821214,0.480398,0.307936][0.957445,0.956703,0][10.19,7.07089,0.314115][-0.821214,0.480398,0.307936][0.956837,0.956988,0][10.1602,7.09937,0.202335][-0.244478,0.891555,-0.381262][0.979724,0.953548,0][10.1329,6.91084,0.0836872][-0.641719,0.472738,-0.603916][0.979255,0.95386,0][10.0481,6.91569,0.177688][-0.641719,0.472738,-0.603916][0.979093,0.953692,0][10.2282,7.07803,0.108805][0.451869,0.54059,-0.709631][0.979819,0.953725,0][10.1329,6.91084,0.0836872][-0.641719,0.472738,-0.603916][0.979255,0.95386,0][10.1602,7.09937,0.202335][-0.244478,0.891555,-0.381262][0.979724,0.953548,0][10.3256,7.00112,0.333299][0.691744,-0.404801,0.598019][0.946277,0.968042,0][10.2263,6.82605,0.32963][0.691744,-0.404801,0.598019][0.945658,0.967989,0][10.302,6.82368,0.240447][0.691744,-0.404801,0.598019][0.945782,0.967821,0][10.3256,7.00112,0.333299][0.691744,-0.404801,0.598019][0.946277,0.968042,0][10.302,6.82368,0.240447][0.691744,-0.404801,0.598019][0.945782,0.967821,0][10.386,6.9836,0.244822][0.720537,-0.394206,0.570463][0.946338,0.967871,0][10.386,6.9836,0.244822][0.930649,0.272673,-0.244014][0.96225,0.957891,0][10.302,6.82368,0.240447][0.82375,-0.422488,-0.378075][0.961694,0.957842,0][10.2677,6.86078,0.124217][0.82375,-0.422488,-0.378075][0.961795,0.957617,0][10.386,6.9836,0.244822][0.930649,0.272673,-0.244014][0.96225,0.957891,0][10.2677,6.86078,0.124217][0.82375,-0.422488,-0.378075][0.961795,0.957617,0][10.3486,7.01587,0.138097][0.930649,0.272673,-0.244014][0.96233,0.957684,0][10.2282,7.07803,0.108805][0.28227,-0.0167763,-0.959188][0.968211,0.945025,0][10.2677,6.86078,0.124217][0.28227,-0.0167763,-0.959188][0.967717,0.945329,0][10.1329,6.91084,0.0836872][0.28227,-0.0167763,-0.959188][0.967613,0.945052,0][10.3486,7.01587,0.138097][0.222306,-0.0287577,-0.974553][0.968258,0.945292,0][10.2677,6.86078,0.124217][0.28227,-0.0167763,-0.959188][0.967717,0.945329,0][10.2282,7.07803,0.108805][0.28227,-0.0167763,-0.959188][0.968211,0.945025,0][10.19,7.07089,0.314115][-0.185666,0.0347001,0.982][0.945257,0.937571,0][10.0732,6.88107,0.298737][-0.185666,0.0347001,0.982][0.945946,0.93752,0][10.2263,6.82605,0.32963][0.691744,-0.404801,0.598019][0.9459,0.937841,0][10.19,7.07089,0.314115][-0.185666,0.0347001,0.982][0.945257,0.937571,0][10.2263,6.82605,0.32963][0.691744,-0.404801,0.598019][0.9459,0.937841,0][10.3256,7.00112,0.333299][0.691744,-0.404801,0.598019][0.945275,0.937873,0][9.58796,7.01221,-0.232407][-0.34871,0.847599,0.399971][0.951428,0.956306,0][9.70342,6.98047,-0.210099][0.291857,0.940957,-0.171522][0.951715,0.956459,0][9.61855,6.98973,-0.303714][0.291857,0.940957,-0.171522][0.951331,0.956453,0][9.63199,7.00741,-0.18384][-0.34871,0.847599,0.399971][0.951628,0.956309,0][9.70342,6.98047,-0.210099][0.291857,0.940957,-0.171522][0.951715,0.956459,0][9.58796,7.01221,-0.232407][-0.34871,0.847599,0.399971][0.951428,0.956306,0][9.55909,6.95172,-0.137436][-0.712132,0.113427,0.692822][0.973186,0.940988,0][9.48715,6.89503,-0.202097][-0.712132,0.113427,0.692822][0.972986,0.941171,0][9.5629,6.87313,-0.120654][-0.712132,0.113427,0.692822][0.972944,0.940948,0][9.51979,6.96309,-0.179688][-0.712129,0.113418,0.692826][0.973208,0.941104,0][9.48715,6.89503,-0.202097][-0.712132,0.113427,0.692822][0.972986,0.941171,0][9.55909,6.95172,-0.137436][-0.712132,0.113427,0.692822][0.973186,0.940988,0][9.55909,6.95172,-0.137436][-0.00719517,0.208473,0.978002][0.929215,0.951962,0][9.5629,6.87313,-0.120654][-0.00719517,0.208473,0.978002][0.929456,0.951989,0][9.66386,6.91904,-0.129699][-0.00719517,0.208473,0.978002][0.929274,0.952176,0][9.55909,6.95172,-0.137436][-0.00719517,0.208473,0.978002][0.929215,0.951962,0][9.66386,6.91904,-0.129699][-0.00719517,0.208473,0.978002][0.929274,0.952176,0][9.61147,6.97554,-0.142128][-0.00719458,0.208475,0.978001][0.92912,0.952058,0][9.63199,7.00741,-0.18384][-0.337033,0.820777,0.461231][0.975932,0.953012,0][9.66386,6.91904,-0.129699][0.464653,0.578387,0.670497][0.976163,0.952855,0][9.70342,6.98047,-0.210099][0.464653,0.578387,0.670497][0.976166,0.95307,0][9.61147,6.97554,-0.142128][-0.333496,0.823668,0.458642][0.97593,0.9529,0][9.66386,6.91904,-0.129699][0.464653,0.578387,0.670497][0.976163,0.952855,0][9.63199,7.00741,-0.18384][-0.337033,0.820777,0.461231][0.975932,0.953012,0][9.51979,6.96309,-0.179688][-0.712129,0.113418,0.692826][0.98019,0.935367,0][9.52215,6.95013,-0.288583][-0.889701,0.450697,-0.0728277][0.980235,0.935582,0][9.48715,6.89503,-0.202097][-0.712132,0.113427,0.692822][0.979978,0.935444,0][9.53795,6.99167,-0.224556][-0.889693,0.450713,-0.0728295][0.980324,0.935438,0][9.52215,6.95013,-0.288583][-0.889701,0.450697,-0.0728277][0.980235,0.935582,0][9.51979,6.96309,-0.179688][-0.712129,0.113418,0.692826][0.98019,0.935367,0][9.58796,7.01221,-0.232407][-0.34871,0.847599,0.399971][0.931335,0.939395,0][9.61855,6.98973,-0.303714][0.291857,0.940957,-0.171522][0.931535,0.939297,0][9.52215,6.95013,-0.288583][-0.400068,0.810786,-0.427284][0.931624,0.939498,0][9.58796,7.01221,-0.232407][-0.34871,0.847599,0.399971][0.931335,0.939395,0][9.52215,6.95013,-0.288583][-0.400068,0.810786,-0.427284][0.931624,0.939498,0][9.53795,6.99167,-0.224556][-0.400068,0.810786,-0.427283][0.931382,0.939499,0][9.61855,6.98973,-0.303714][0.291857,0.940957,-0.171522][0.931535,0.939297,0][9.66797,6.88039,-0.384346][-0.320278,0.464229,-0.825781][0.931891,0.939201,0][9.55356,6.8334,-0.366388][-0.320278,0.464229,-0.825781][0.931997,0.939439,0][9.61855,6.98973,-0.303714][0.291857,0.940957,-0.171522][0.931535,0.939297,0][9.55356,6.8334,-0.366388][-0.320278,0.464229,-0.825781][0.931997,0.939439,0][9.52215,6.95013,-0.288583][-0.400068,0.810786,-0.427284][0.931624,0.939498,0][9.52215,6.95013,-0.288583][-0.889701,0.450697,-0.0728277][0.980235,0.935582,0][9.55356,6.8334,-0.366388][-0.927079,0.000386139,-0.374867][0.98001,0.935774,0][9.51203,6.768,-0.263744][-0.927079,0.000386139,-0.374867][0.979704,0.93561,0][9.52215,6.95013,-0.288583][-0.889701,0.450697,-0.0728277][0.980235,0.935582,0][9.51203,6.768,-0.263744][-0.927079,0.000386139,-0.374867][0.979704,0.93561,0][9.48715,6.89503,-0.202097][-0.712132,0.113427,0.692822][0.979978,0.935444,0][9.66386,6.91904,-0.129699][0.464653,0.578387,0.670497][0.976163,0.952855,0][9.72175,6.79651,-0.17782][0.822951,0.176748,0.539918][0.97654,0.952827,0][9.7687,6.86941,-0.273241][0.822951,0.176748,0.539918][0.976544,0.953083,0][9.66386,6.91904,-0.129699][0.464653,0.578387,0.670497][0.976163,0.952855,0][9.7687,6.86941,-0.273241][0.822951,0.176748,0.539918][0.976544,0.953083,0][9.70342,6.98047,-0.210099][0.464653,0.578387,0.670497][0.976166,0.95307,0][9.5629,6.87313,-0.120654][-0.00719517,0.208473,0.978002][0.929456,0.951989,0][9.60192,6.74201,-0.167086][0.207487,-0.271093,0.939924][0.929845,0.9521,0][9.72175,6.79651,-0.17782][0.207487,-0.271093,0.939924][0.929628,0.952321,0][9.5629,6.87313,-0.120654][-0.00719517,0.208473,0.978002][0.929456,0.951989,0][9.72175,6.79651,-0.17782][0.207487,-0.271093,0.939924][0.929628,0.952321,0][9.66386,6.91904,-0.129699][-0.00719517,0.208473,0.978002][0.929274,0.952176,0][9.5629,6.87313,-0.120654][-0.712132,0.113427,0.692822][0.972944,0.940948,0][9.51203,6.768,-0.263744][-0.927079,0.000386139,-0.374867][0.97261,0.941206,0][9.60192,6.74201,-0.167086][-0.719805,-0.412069,0.55864][0.97256,0.940941,0][9.48715,6.89503,-0.202097][-0.712132,0.113427,0.692822][0.972986,0.941171,0][9.51203,6.768,-0.263744][-0.927079,0.000386139,-0.374867][0.97261,0.941206,0][9.5629,6.87313,-0.120654][-0.712132,0.113427,0.692822][0.972944,0.940948,0][9.61855,6.98973,-0.303714][0.604551,0.631418,-0.485623][0.931672,0.941172,0][9.7687,6.86941,-0.273241][0.604551,0.631418,-0.485623][0.932063,0.940876,0][9.66797,6.88039,-0.384346][0.604551,0.631418,-0.485623][0.932122,0.941172,0][9.70342,6.98047,-0.210099][0.604554,0.631424,-0.485612][0.931622,0.940923,0][9.7687,6.86941,-0.273241][0.604551,0.631418,-0.485623][0.932063,0.940876,0][9.61855,6.98973,-0.303714][0.604551,0.631418,-0.485623][0.931672,0.941172,0][9.66797,6.88039,-0.384346][0.604551,0.631418,-0.485623][0.932122,0.941172,0][9.80759,6.68267,-0.369025][0.611787,0.37816,-0.694774][0.93271,0.940885,0][9.66855,6.70533,-0.479124][0.611787,0.37816,-0.694774][0.9327,0.941238,0][9.7687,6.86941,-0.273241][0.604551,0.631418,-0.485623][0.932063,0.940876,0][9.80759,6.68267,-0.369025][0.611787,0.37816,-0.694774][0.93271,0.940885,0][9.66797,6.88039,-0.384346][0.604551,0.631418,-0.485623][0.932122,0.941172,0][9.60192,6.74201,-0.167086][-0.719805,-0.412069,0.55864][0.97256,0.940941,0][9.49338,6.636,-0.285957][-0.657636,-0.153624,0.737505][0.972197,0.941243,0][9.6131,6.5968,-0.187365][-0.657636,-0.153624,0.737505][0.972118,0.940933,0][9.51203,6.768,-0.263744][-0.927079,0.000386139,-0.374867][0.97261,0.941206,0][9.49338,6.636,-0.285957][-0.657636,-0.153624,0.737505][0.972197,0.941243,0][9.60192,6.74201,-0.167086][-0.719805,-0.412069,0.55864][0.97256,0.940941,0][9.60192,6.74201,-0.167086][0.207487,-0.271093,0.939924][0.929845,0.9521,0][9.6131,6.5968,-0.187365][0.324883,-0.106234,0.939769][0.930289,0.952159,0][9.75995,6.62586,-0.234845][0.324883,-0.106234,0.939769][0.93014,0.95244,0][9.60192,6.74201,-0.167086][0.207487,-0.271093,0.939924][0.929845,0.9521,0][9.75995,6.62586,-0.234845][0.324883,-0.106234,0.939769][0.93014,0.95244,0][9.72175,6.79651,-0.17782][0.207487,-0.271093,0.939924][0.929628,0.952321,0][9.72175,6.79651,-0.17782][0.926966,0.0853999,0.365296][0.936973,0.946093,0][9.75995,6.62586,-0.234845][0.926966,0.0853999,0.365296][0.937342,0.946275,0][9.80759,6.68267,-0.369025][0.611787,0.37816,-0.694774][0.937015,0.946494,0][9.72175,6.79651,-0.17782][0.926966,0.0853999,0.365296][0.936973,0.946093,0][9.80759,6.68267,-0.369025][0.611787,0.37816,-0.694774][0.937015,0.946494,0][9.7687,6.86941,-0.273241][0.604551,0.631418,-0.485623][0.936636,0.94623,0][9.51203,6.768,-0.263744][-0.927079,0.000386139,-0.374867][0.979704,0.93561,0][9.53137,6.68454,-0.42589][-0.964323,0.170306,-0.202673][0.979615,0.935954,0][9.49338,6.636,-0.285957][-0.657636,-0.153624,0.737505][0.979333,0.935711,0][9.55356,6.8334,-0.366388][-0.927079,0.000386139,-0.374867][0.98001,0.935774,0][9.53137,6.68454,-0.42589][-0.964323,0.170306,-0.202673][0.979615,0.935954,0][9.51203,6.768,-0.263744][-0.927079,0.000386139,-0.374867][0.979704,0.93561,0][9.55356,6.8334,-0.366388][-0.320278,0.464229,-0.825781][0.931997,0.939439,0][9.66855,6.70533,-0.479124][-0.383846,0.391507,-0.836292][0.932423,0.939211,0][9.53137,6.68454,-0.42589][-0.383846,0.391507,-0.836292][0.93241,0.939504,0][9.66797,6.88039,-0.384346][-0.320278,0.464229,-0.825781][0.931891,0.939201,0][9.66855,6.70533,-0.479124][-0.383846,0.391507,-0.836292][0.932423,0.939211,0][9.55356,6.8334,-0.366388][-0.320278,0.464229,-0.825781][0.931997,0.939439,0][9.53137,6.68454,-0.42589][-0.648817,0.0132433,-0.760829][0.95192,0.950867,0][9.57949,6.35051,-0.472747][-0.648817,0.0132433,-0.760829][0.952728,0.95044,0][9.47042,6.38812,-0.379075][-0.648817,0.0132433,-0.76083][0.952806,0.950663,0][9.66855,6.70533,-0.479124][-0.370747,0.0764195,-0.925584][0.951641,0.950657,0][9.57949,6.35051,-0.472747][-0.648817,0.0132433,-0.760829][0.952728,0.95044,0][9.53137,6.68454,-0.42589][-0.648817,0.0132433,-0.760829][0.95192,0.950867,0][9.49338,6.636,-0.285957][-0.657636,-0.153624,0.737505][0.979333,0.935711,0][9.47042,6.38812,-0.379075][-0.99618,0.0763878,0.0423204][0.978689,0.935996,0][9.47709,6.39049,-0.22633][-0.99618,0.0763878,0.0423204][0.978596,0.935699,0][9.53137,6.68454,-0.42589][-0.964323,0.170306,-0.202673][0.979615,0.935954,0][9.47042,6.38812,-0.379075][-0.99618,0.0763878,0.0423204][0.978689,0.935996,0][9.49338,6.636,-0.285957][-0.657636,-0.153624,0.737505][0.979333,0.935711,0][9.75995,6.62586,-0.234845][0.926966,0.0853999,0.365296][0.937342,0.946275,0][9.73504,6.3096,-0.252583][0.996075,-0.0804985,0.0368026][0.938218,0.946465,0][9.74099,6.31317,-0.405731][0.996075,-0.0804985,0.0368026][0.938075,0.946755,0][9.75995,6.62586,-0.234845][0.926966,0.0853999,0.365296][0.937342,0.946275,0][9.74099,6.31317,-0.405731][0.996075,-0.0804985,0.0368026][0.938075,0.946755,0][9.80759,6.68267,-0.369025][0.611787,0.37816,-0.694774][0.937015,0.946494,0][9.6131,6.5968,-0.187365][0.324883,-0.106234,0.939769][0.930289,0.952159,0][9.61335,6.34125,-0.15851][0.623483,0.0883153,0.776833][0.931077,0.952225,0][9.73504,6.3096,-0.252583][0.623483,0.0883153,0.776833][0.931126,0.952472,0][9.6131,6.5968,-0.187365][0.324883,-0.106234,0.939769][0.930289,0.952159,0][9.73504,6.3096,-0.252583][0.623483,0.0883153,0.776833][0.931126,0.952472,0][9.75995,6.62586,-0.234845][0.324883,-0.106234,0.939769][0.93014,0.95244,0][9.6131,6.5968,-0.187365][0.324883,-0.106234,0.939769][0.930289,0.952159,0][9.47709,6.39049,-0.22633][-0.413565,0.101771,0.904769][0.93098,0.951945,0][9.61335,6.34125,-0.15851][0.623483,0.0883153,0.776833][0.931077,0.952225,0][9.49338,6.636,-0.285957][-0.657636,-0.153624,0.737505][0.972197,0.941243,0][9.47709,6.39049,-0.22633][-0.99618,0.0763878,0.0423204][0.971428,0.941144,0][9.6131,6.5968,-0.187365][-0.657636,-0.153624,0.737505][0.972118,0.940933,0][9.66855,6.70533,-0.479124][-0.370747,0.0764195,-0.925584][0.951641,0.950657,0][9.74099,6.31317,-0.405731][0.359874,-0.106983,-0.926847][0.952564,0.950128,0][9.57949,6.35051,-0.472747][-0.648817,0.0132433,-0.760829][0.952728,0.95044,0][9.80759,6.68267,-0.369025][0.611787,0.37816,-0.694774][0.93271,0.940885,0][9.74099,6.31317,-0.405731][0.996075,-0.0804985,0.0368026][0.933572,0.940904,0][9.66855,6.70533,-0.479124][0.611787,0.37816,-0.694774][0.9327,0.941238,0][9.74099,6.31317,-0.405731][0.359874,-0.106983,-0.926847][0.952564,0.950128,0][9.63076,5.65551,-0.284773][0.16945,-0.205669,-0.96384][0.954488,0.949633,0][9.43255,5.72356,-0.334142][0.16945,-0.205669,-0.96384][0.95463,0.950038,0][9.74099,6.31317,-0.405731][0.359874,-0.106983,-0.926847][0.952564,0.950128,0][9.43255,5.72356,-0.334142][0.16945,-0.205669,-0.96384][0.95463,0.950038,0][9.57949,6.35051,-0.472747][-0.648817,0.0132433,-0.760829][0.952728,0.95044,0][9.61335,6.34125,-0.15851][-0.183772,0.314302,0.931366][0.939294,0.94084,0][9.38539,5.8368,-0.0332535][-0.183772,0.314302,0.931366][0.941017,0.940854,0][9.55233,5.76063,0.0253896][-0.183772,0.314302,0.931366][0.941012,0.941217,0][9.47709,6.39049,-0.22633][-0.308995,0.358374,0.88096][0.939334,0.940554,0][9.38539,5.8368,-0.0332535][-0.183772,0.314302,0.931366][0.941017,0.940854,0][9.61335,6.34125,-0.15851][-0.183772,0.314302,0.931366][0.939294,0.94084,0][9.73504,6.3096,-0.252583][0.77723,0.0585417,0.626487][0.968068,0.950676,0][9.55233,5.76063,0.0253896][0.77723,0.0585417,0.626487][0.967672,0.949478,0][9.66325,5.67971,-0.104656][0.77723,0.0585417,0.626487][0.968258,0.94944,0][9.61335,6.34125,-0.15851][-0.183772,0.314302,0.931366][0.939294,0.94084,0][9.55233,5.76063,0.0253896][-0.183772,0.314302,0.931366][0.941012,0.941217,0][9.73504,6.3096,-0.252583][0.630173,0.173485,0.756826][0.939223,0.941086,0][9.73504,6.3096,-0.252583][0.996075,-0.0804985,0.0368026][0.938218,0.946465,0][9.66325,5.67971,-0.104656][0.976568,-0.147998,-0.156243][0.940145,0.946499,0][9.63076,5.65551,-0.284773][0.976568,-0.147998,-0.156243][0.940103,0.946862,0][9.73504,6.3096,-0.252583][0.996075,-0.0804985,0.0368026][0.938218,0.946465,0][9.63076,5.65551,-0.284773][0.976568,-0.147998,-0.156243][0.940103,0.946862,0][9.74099,6.31317,-0.405731][0.996075,-0.0804985,0.0368026][0.938075,0.946755,0][9.47709,6.39049,-0.22633][-0.99618,0.0763878,0.0423204][0.978596,0.935699,0][9.33727,5.80854,-0.208733][-0.946552,0.234133,0.22186][0.976806,0.93593,0][9.38539,5.8368,-0.0332535][-0.946552,0.234133,0.22186][0.976821,0.935571,0][9.47042,6.38812,-0.379075][-0.99618,0.0763878,0.0423204][0.978689,0.935996,0][9.33727,5.80854,-0.208733][-0.946552,0.234133,0.22186][0.976806,0.93593,0][9.47709,6.39049,-0.22633][-0.99618,0.0763878,0.0423204][0.978596,0.935699,0][9.57949,6.35051,-0.472747][-0.648817,0.0132433,-0.760829][0.975705,0.950708,0][9.43255,5.72356,-0.334142][0.16945,-0.205669,-0.96384][0.977714,0.950448,0][9.33727,5.80854,-0.208733][-0.780486,0.045076,-0.623546][0.977722,0.950803,0][9.57949,6.35051,-0.472747][-0.648817,0.0132433,-0.760829][0.952728,0.95044,0][9.33727,5.80854,-0.208733][-0.780486,0.045076,-0.623546][0.95456,0.950287,0][9.47042,6.38812,-0.379075][-0.648817,0.0132433,-0.76083][0.952806,0.950663,0][9.43255,5.72356,-0.334142][-0.730903,0.209494,-0.649534][0.946376,0.936076,0][9.17128,5.28415,-0.181867][-0.730903,0.209494,-0.649534][0.948036,0.93605,0][9.09506,5.44223,-0.0451085][-0.730903,0.209494,-0.649534][0.947885,0.93648,0][9.43255,5.72356,-0.334142][-0.730903,0.209494,-0.649534][0.946376,0.936076,0][9.09506,5.44223,-0.0451085][-0.730903,0.209494,-0.649534][0.947885,0.93648,0][9.33727,5.80854,-0.208733][-0.721552,0.178256,-0.66902][0.946428,0.936428,0][9.33727,5.80854,-0.208733][-0.946552,0.234133,0.22186][0.976806,0.93593,0][9.09506,5.44223,-0.0451085][-0.784213,0.595854,0.173115][0.975373,0.93581,0][9.19877,5.52447,0.141666][-0.784213,0.595854,0.173115][0.9756,0.935397,0][9.33727,5.80854,-0.208733][-0.946552,0.234133,0.22186][0.976806,0.93593,0][9.19877,5.52447,0.141666][-0.784213,0.595854,0.173115][0.9756,0.935397,0][9.38539,5.8368,-0.0332535][-0.946552,0.234133,0.22186][0.976821,0.935571,0][9.63076,5.65551,-0.284773][0.976568,-0.147998,-0.156243][0.940103,0.946862,0][9.50177,5.26681,0.0570909][0.870252,-0.45495,-0.188898][0.941606,0.946423,0][9.41638,5.18519,-0.139692][0.870252,-0.45495,-0.188898][0.941774,0.946857,0][9.66325,5.67971,-0.104656][0.976568,-0.147998,-0.156243][0.940145,0.946499,0][9.50177,5.26681,0.0570909][0.870252,-0.45495,-0.188898][0.941606,0.946423,0][9.63076,5.65551,-0.284773][0.976568,-0.147998,-0.156243][0.940103,0.946862,0][9.66325,5.67971,-0.104656][0.77723,0.0585417,0.626487][0.969335,0.965922,0][9.40721,5.42427,0.203858][0.797937,-0.0779352,0.597681][0.970758,0.965845,0][9.50177,5.26681,0.0570909][0.797937,-0.0779352,0.597681][0.970736,0.966199,0][9.55233,5.76063,0.0253896][0.77723,0.0585417,0.626487][0.967672,0.949478,0][9.40721,5.42427,0.203858][0.797937,-0.0779352,0.597681][0.967348,0.948718,0][9.66325,5.67971,-0.104656][0.77723,0.0585417,0.626487][0.968258,0.94944,0][9.55233,5.76063,0.0253896][-0.183772,0.314302,0.931366][0.941012,0.941217,0][9.19877,5.52447,0.141666][-0.0314708,0.479021,0.877239][0.942144,0.94078,0][9.40721,5.42427,0.203858][-0.0314708,0.479021,0.877239][0.942152,0.941238,0][9.38539,5.8368,-0.0332535][-0.183772,0.314302,0.931366][0.941017,0.940854,0][9.19877,5.52447,0.141666][-0.0314708,0.479021,0.877239][0.942144,0.94078,0][9.55233,5.76063,0.0253896][-0.183772,0.314302,0.931366][0.941012,0.941217,0][9.43255,5.72356,-0.334142][0.16945,-0.205669,-0.96384][0.95463,0.950038,0][9.41638,5.18519,-0.139692][0.0243646,-0.340252,-0.940019][0.956085,0.949508,0][9.17128,5.28415,-0.181867][0.0243646,-0.340252,-0.940019][0.956221,0.950024,0][9.63076,5.65551,-0.284773][0.16945,-0.205669,-0.96384][0.954488,0.949633,0][9.41638,5.18519,-0.139692][0.0243646,-0.340252,-0.940019][0.956085,0.949508,0][9.43255,5.72356,-0.334142][0.16945,-0.205669,-0.96384][0.95463,0.950038,0][9.17128,5.28415,-0.181867][0.0243646,-0.340252,-0.940019][0.956221,0.950024,0][9.05501,4.85389,0.227357][-0.106676,-0.669946,-0.734706][0.957552,0.949775,0][8.84938,5.03413,0.0928629][-0.106676,-0.669946,-0.734706][0.957409,0.950309,0][9.41638,5.18519,-0.139692][0.0243646,-0.340252,-0.940019][0.956085,0.949508,0][9.05501,4.85389,0.227357][-0.106676,-0.669946,-0.734706][0.957552,0.949775,0][9.17128,5.28415,-0.181867][0.0243646,-0.340252,-0.940019][0.956221,0.950024,0][9.40721,5.42427,0.203858][-0.0314708,0.479021,0.877239][0.942152,0.941238,0][8.9794,5.33613,0.335486][0.083745,0.68057,0.727882][0.942964,0.940544,0][9.21901,5.12092,0.509137][0.083745,0.68057,0.727882][0.943255,0.941154,0][9.19877,5.52447,0.141666][-0.0314708,0.479021,0.877239][0.942144,0.94078,0][8.9794,5.33613,0.335486][0.083745,0.68057,0.727882][0.942964,0.940544,0][9.40721,5.42427,0.203858][-0.0314708,0.479021,0.877239][0.942152,0.941238,0][9.50177,5.26681,0.0570909][0.797937,-0.0779352,0.597681][0.970736,0.966199,0][9.21901,5.12092,0.509137][0.84272,-0.339999,0.417401][0.972212,0.96579,0][9.20186,4.93529,0.392556][0.84272,-0.339999,0.417401][0.972426,0.966184,0][9.40721,5.42427,0.203858][0.797937,-0.0779352,0.597681][0.970758,0.965845,0][9.21901,5.12092,0.509137][0.84272,-0.339999,0.417401][0.972212,0.96579,0][9.50177,5.26681,0.0570909][0.797937,-0.0779352,0.597681][0.970736,0.966199,0][9.41638,5.18519,-0.139692][0.870252,-0.45495,-0.188898][0.941774,0.946857,0][9.20186,4.93529,0.392556][0.591897,-0.794702,-0.134561][0.943166,0.946007,0][9.05501,4.85389,0.227357][0.591897,-0.794702,-0.134561][0.943437,0.946394,0][9.50177,5.26681,0.0570909][0.870252,-0.45495,-0.188898][0.941606,0.946423,0][9.20186,4.93529,0.392556][0.591897,-0.794702,-0.134561][0.943166,0.946007,0][9.41638,5.18519,-0.139692][0.870252,-0.45495,-0.188898][0.941774,0.946857,0][9.09506,5.44223,-0.0451085][-0.723619,0.689646,-0.0276407][0.929208,0.966386,0][8.879,5.22414,0.169557][-0.723619,0.689646,-0.0276407][0.930328,0.966405,0][8.9794,5.33613,0.335486][-0.723619,0.689646,-0.0276407][0.930258,0.966838,0][9.09506,5.44223,-0.0451085][-0.723619,0.689646,-0.0276407][0.929208,0.966386,0][8.9794,5.33613,0.335486][-0.723619,0.689646,-0.0276407][0.930258,0.966838,0][9.19877,5.52447,0.141666][-0.641698,0.766728,0.0187415][0.929241,0.966824,0][9.17128,5.28415,-0.181867][-0.749792,0.34484,-0.56471][0.971019,0.939767,0][8.84938,5.03413,0.0928629][-0.749792,0.34484,-0.56471][0.969614,0.940154,0][8.879,5.22414,0.169557][-0.723619,0.689646,-0.0276407][0.969584,0.939744,0][9.17128,5.28415,-0.181867][-0.772209,0.159679,-0.614977][0.939205,0.938099,0][8.879,5.22414,0.169557][-0.772209,0.159679,-0.614977][0.937771,0.938081,0][9.09506,5.44223,-0.0451085][-0.772209,0.159679,-0.614977][0.938805,0.937739,0][10.2263,6.82605,0.32963][0.691744,-0.404801,0.598019][0.9459,0.937841,0][9.795,6.27746,0.308647][-0.274929,0.180023,0.944461][0.948015,0.937526,0][9.96276,6.19174,0.373819][-0.274929,0.180023,0.944461][0.948036,0.937899,0][10.0732,6.88107,0.298737][-0.185666,0.0347001,0.982][0.945946,0.93752,0][9.795,6.27746,0.308647][-0.274929,0.180023,0.944461][0.948015,0.937526,0][10.2263,6.82605,0.32963][0.691744,-0.404801,0.598019][0.9459,0.937841,0][10.2677,6.86078,0.124217][0.28227,-0.0167763,-0.959188][0.967717,0.945329,0][9.98965,6.10186,0.10994][0.307511,-0.09485,-0.946805][0.965272,0.945708,0][9.82216,6.18519,0.0471945][0.307511,-0.09485,-0.946805][0.965198,0.94534,0][10.2677,6.86078,0.124217][0.28227,-0.0167763,-0.959188][0.967717,0.945329,0][9.82216,6.18519,0.0471945][0.307511,-0.09485,-0.946805][0.965198,0.94534,0][10.1329,6.91084,0.0836872][0.28227,-0.0167763,-0.959188][0.967613,0.945052,0][10.2677,6.86078,0.124217][0.82375,-0.422488,-0.378075][0.961795,0.957617,0][10.0051,6.13419,0.262429][0.938865,-0.343547,-0.0225253][0.959366,0.957713,0][9.98965,6.10186,0.10994][0.938865,-0.343547,-0.0225253][0.95931,0.957405,0][10.302,6.82368,0.240447][0.82375,-0.422488,-0.378075][0.961694,0.957842,0][10.0051,6.13419,0.262429][0.938865,-0.343547,-0.0225253][0.959366,0.957713,0][10.2677,6.86078,0.124217][0.82375,-0.422488,-0.378075][0.961795,0.957617,0][10.2263,6.82605,0.32963][0.691744,-0.404801,0.598019][0.945658,0.967989,0][9.96276,6.19174,0.373819][-0.274929,0.180023,0.944461][0.94352,0.967919,0][10.0051,6.13419,0.262429][0.82452,-0.309573,0.473636][0.943454,0.967692,0][10.2263,6.82605,0.32963][0.691744,-0.404801,0.598019][0.945658,0.967989,0][10.0051,6.13419,0.262429][0.82452,-0.309573,0.473636][0.943454,0.967692,0][10.302,6.82368,0.240447][0.691744,-0.404801,0.598019][0.945782,0.967821,0][10.1329,6.91084,0.0836872][-0.641719,0.472738,-0.603916][0.979255,0.95386,0][9.82216,6.18519,0.0471945][-0.780696,0.36004,-0.510769][0.97689,0.954286,0][9.77047,6.25207,0.173353][-0.780696,0.36004,-0.510769][0.976918,0.954025,0][10.1329,6.91084,0.0836872][-0.641719,0.472738,-0.603916][0.979255,0.95386,0][9.77047,6.25207,0.173353][-0.780696,0.36004,-0.510769][0.976918,0.954025,0][10.0481,6.91569,0.177688][-0.641719,0.472738,-0.603916][0.979093,0.953692,0][10.0481,6.91569,0.177688][-0.821214,0.480398,0.307936][0.957445,0.956703,0][9.77047,6.25207,0.173353][-0.918628,0.383633,0.0945966][0.95968,0.956641,0][9.795,6.27746,0.308647][-0.918628,0.383633,0.0945966][0.959592,0.956912,0][10.0481,6.91569,0.177688][-0.821214,0.480398,0.307936][0.957445,0.956703,0][9.795,6.27746,0.308647][-0.918628,0.383633,0.0945966][0.959592,0.956912,0][10.0732,6.88107,0.298737][-0.821214,0.480398,0.307936][0.957524,0.956941,0][9.77047,6.25207,0.173353][-0.918628,0.383633,0.0945966][0.95968,0.956641,0][9.42908,5.74308,0.277109][-0.791882,0.573751,0.209124][0.961576,0.956802,0][9.53249,5.84983,0.37578][-0.791882,0.573751,0.209124][0.961151,0.957008,0][9.77047,6.25207,0.173353][-0.918628,0.383633,0.0945966][0.95968,0.956641,0][9.53249,5.84983,0.37578][-0.791882,0.573751,0.209124][0.961151,0.957008,0][9.795,6.27746,0.308647][-0.918628,0.383633,0.0945966][0.959592,0.956912,0][9.82216,6.18519,0.0471945][-0.780696,0.36004,-0.510769][0.97689,0.954286,0][9.39358,5.57766,0.141278][-0.779267,0.489046,-0.391889][0.974605,0.954435,0][9.42908,5.74308,0.277109][-0.779267,0.489046,-0.391889][0.975009,0.954098,0][9.82216,6.18519,0.0471945][-0.780696,0.36004,-0.510769][0.97689,0.954286,0][9.42908,5.74308,0.277109][-0.779267,0.489046,-0.391889][0.975009,0.954098,0][9.77047,6.25207,0.173353][-0.780696,0.36004,-0.510769][0.976918,0.954025,0][10.0051,6.13419,0.262429][0.82452,-0.309573,0.473636][0.943454,0.967692,0][9.66252,5.72401,0.494565][0.696106,-0.189566,0.69246][0.941774,0.968031,0][9.67064,5.53322,0.434166][0.696106,-0.189566,0.69246][0.941271,0.967873,0][9.96276,6.19174,0.373819][-0.274929,0.180023,0.944461][0.94352,0.967919,0][9.66252,5.72401,0.494565][0.696106,-0.189566,0.69246][0.941774,0.968031,0][10.0051,6.13419,0.262429][0.82452,-0.309573,0.473636][0.943454,0.967692,0][9.98965,6.10186,0.10994][0.938865,-0.343547,-0.0225253][0.95931,0.957405,0][9.67064,5.53322,0.434166][0.841855,-0.530093,-0.1014][0.957184,0.957894,0][9.57607,5.41375,0.273536][0.841855,-0.530093,-0.1014][0.956783,0.957544,0][10.0051,6.13419,0.262429][0.938865,-0.343547,-0.0225253][0.959366,0.957713,0][9.67064,5.53322,0.434166][0.841855,-0.530093,-0.1014][0.957184,0.957894,0][9.98965,6.10186,0.10994][0.938865,-0.343547,-0.0225253][0.95931,0.957405,0][9.98965,6.10186,0.10994][0.307511,-0.09485,-0.946805][0.965272,0.945708,0][9.57607,5.41375,0.273536][0.29101,-0.383311,-0.876576][0.962776,0.945784,0][9.39358,5.57766,0.141278][0.29101,-0.383311,-0.876576][0.962884,0.945303,0][9.98965,6.10186,0.10994][0.307511,-0.09485,-0.946805][0.965272,0.945708,0][9.39358,5.57766,0.141278][0.29101,-0.383311,-0.876576][0.962884,0.945303,0][9.82216,6.18519,0.0471945][0.307511,-0.09485,-0.946805][0.965198,0.94534,0][9.96276,6.19174,0.373819][-0.341297,0.434282,0.833616][0.942276,0.961756,0][9.53249,5.84983,0.37578][-0.341297,0.434282,0.833616][0.943955,0.961546,0][9.66252,5.72401,0.494565][-0.341297,0.434282,0.833616][0.943991,0.961904,0][9.795,6.27746,0.308647][-0.219238,0.281255,0.934254][0.942412,0.961393,0][9.53249,5.84983,0.37578][-0.341297,0.434282,0.833616][0.943955,0.961546,0][9.96276,6.19174,0.373819][-0.341297,0.434282,0.833616][0.942276,0.961756,0][9.66252,5.72401,0.494565][-0.341297,0.434282,0.833616][0.943991,0.961904,0][9.15305,5.5798,0.588168][-0.0545361,0.672039,0.738505][0.94536,0.96132,0][9.26328,5.47049,0.695786][-0.0545361,0.672039,0.738505][0.945397,0.961627,0][9.53249,5.84983,0.37578][-0.341297,0.434282,0.833616][0.943955,0.961546,0][9.15305,5.5798,0.588168][-0.0545361,0.672039,0.738505][0.94536,0.96132,0][9.66252,5.72401,0.494565][-0.341297,0.434282,0.833616][0.943991,0.961904,0][9.57607,5.41375,0.273536][0.29101,-0.383311,-0.876576][0.962776,0.945784,0][9.21901,5.12092,0.509137][0.000776758,-0.627441,-0.778664][0.9614,0.945519,0][8.9794,5.33613,0.335486][0.000776758,-0.627441,-0.778664][0.961543,0.944887,0][9.57607,5.41375,0.273536][0.29101,-0.383311,-0.876576][0.962776,0.945784,0][8.9794,5.33613,0.335486][0.000776758,-0.627441,-0.778664][0.961543,0.944887,0][9.39358,5.57766,0.141278][0.29101,-0.383311,-0.876576][0.962884,0.945303,0][9.57607,5.41375,0.273536][0.716752,-0.624752,0.309761][0.928981,0.948728,0][9.28502,5.26604,0.649069][0.716752,-0.624752,0.309761][0.930242,0.948318,0][9.21901,5.12092,0.509137][0.84272,-0.339999,0.417401][0.93047,0.948712,0][9.67064,5.53322,0.434166][0.696106,-0.189566,0.69246][0.928815,0.948308,0][9.28502,5.26604,0.649069][0.716752,-0.624752,0.309761][0.930242,0.948318,0][9.57607,5.41375,0.273536][0.716752,-0.624752,0.309761][0.928981,0.948728,0][9.67064,5.53322,0.434166][0.696106,-0.189566,0.69246][0.93652,0.952119,0][9.26328,5.47049,0.695786][0.549892,-0.13003,0.825052][0.935278,0.952323,0][9.28502,5.26604,0.649069][0.716752,-0.624752,0.309761][0.935088,0.951934,0][9.66252,5.72401,0.494565][0.696106,-0.189566,0.69246][0.936731,0.952472,0][9.26328,5.47049,0.695786][0.549892,-0.13003,0.825052][0.935278,0.952323,0][9.67064,5.53322,0.434166][0.696106,-0.189566,0.69246][0.93652,0.952119,0][9.39358,5.57766,0.141278][-0.779267,0.489046,-0.391889][0.974605,0.954435,0][8.9794,5.33613,0.335486][-0.723619,0.689646,-0.0276407][0.973273,0.954238,0][9.02939,5.49631,0.461419][-0.59877,0.602109,-0.528147][0.973688,0.95392,0][9.39358,5.57766,0.141278][-0.779267,0.489046,-0.391889][0.974605,0.954435,0][9.02939,5.49631,0.461419][-0.59877,0.602109,-0.528147][0.973688,0.95392,0][9.42908,5.74308,0.277109][-0.779267,0.489046,-0.391889][0.975009,0.954098,0][9.42908,5.74308,0.277109][-0.779267,0.489046,-0.391889][0.975009,0.954098,0][9.02939,5.49631,0.461419][-0.59877,0.602109,-0.528147][0.973688,0.95392,0][9.15305,5.5798,0.588168][-0.535979,0.843593,-0.0328335][0.973986,0.953618,0][9.42908,5.74308,0.277109][-0.779267,0.489046,-0.391889][0.975009,0.954098,0][9.15305,5.5798,0.588168][-0.535979,0.843593,-0.0328335][0.973986,0.953618,0][9.53249,5.84983,0.37578][-0.630454,0.759371,-0.16088][0.975364,0.953844,0][8.879,5.22414,0.169557][-0.723619,0.689646,-0.0276407][0.934027,0.968103,0][8.14799,4.98542,0.498894][-0.48615,0.526754,-0.697272][0.93155,0.968047,0][8.26385,5.1493,0.541911][-0.48615,0.526754,-0.697272][0.931858,0.967808,0][8.879,5.22414,0.169557][-0.723619,0.689646,-0.0276407][0.934027,0.968103,0][8.26385,5.1493,0.541911][-0.48615,0.526754,-0.697272][0.931858,0.967808,0][8.9794,5.33613,0.335486][-0.723619,0.689646,-0.0276407][0.934178,0.967681,0][8.84938,5.03413,0.0928629][-0.749792,0.34484,-0.56471][0.979915,0.95311,0][8.03212,4.82153,0.455876][-0.456356,0.51342,-0.726732][0.97744,0.952546,0][8.14799,4.98542,0.498894][-0.48615,0.526754,-0.697272][0.978025,0.952407,0][8.84938,5.03413,0.0928629][-0.749792,0.34484,-0.56471][0.979915,0.95311,0][8.14799,4.98542,0.498894][-0.48615,0.526754,-0.697272][0.978025,0.952407,0][8.879,5.22414,0.169557][-0.723619,0.689646,-0.0276407][0.980324,0.952832,0][9.05501,4.85389,0.227357][0.518146,-0.726336,0.45162][0.972952,0.9478,0][8.34256,4.69539,0.789852][0.518146,-0.726336,0.45162][0.971373,0.946795,0][8.21537,4.54636,0.696088][0.518146,-0.726336,0.45162][0.97173,0.946445,0][9.20186,4.93529,0.392556][0.84272,-0.339999,0.417401][0.948036,0.939126,0][8.34256,4.69539,0.789852][0.518146,-0.726336,0.45162][0.945003,0.938998,0][9.05501,4.85389,0.227357][0.518146,-0.726336,0.45162][0.947827,0.938678,0][9.20186,4.93529,0.392556][0.84272,-0.339999,0.417401][0.972392,0.948029,0][8.46975,4.84443,0.883616][0.447197,-0.717583,0.533937][0.971015,0.947146,0][8.34256,4.69539,0.789852][0.518146,-0.726336,0.45162][0.971373,0.946795,0][9.21901,5.12092,0.509137][0.84272,-0.339999,0.417401][0.966626,0.94796,0][8.46975,4.84443,0.883616][0.447197,-0.717583,0.533937][0.964635,0.946824,0][9.20186,4.93529,0.392556][0.84272,-0.339999,0.417401][0.967042,0.947633,0][8.19596,5.02124,1.23849][0.468842,-0.53677,0.701473][0.953173,0.965346,0][8.19538,4.6538,1.01075][0.416637,-0.479396,0.772394][0.95236,0.964834,0][8.33088,4.81883,1.0401][0.416637,-0.479396,0.772394][0.953021,0.964874,0][8.04918,4.95677,1.25594][0.283652,-0.411454,0.866168][0.952708,0.965462,0][8.19538,4.6538,1.01075][0.416637,-0.479396,0.772394][0.95236,0.964834,0][8.19596,5.02124,1.23849][0.468842,-0.53677,0.701473][0.953173,0.965346,0][7.80546,4.8208,1.30345][0.45404,-0.364681,0.81293][0.951873,0.965615,0][8.06539,4.54181,1.03312][0.45404,-0.364681,0.81293][0.951827,0.96486,0][8.19538,4.6538,1.01075][0.416637,-0.479396,0.772394][0.95236,0.964834,0][7.80546,4.8208,1.30345][0.45404,-0.364681,0.81293][0.951873,0.965615,0][8.19538,4.6538,1.01075][0.416637,-0.479396,0.772394][0.95236,0.964834,0][8.04918,4.95677,1.25594][0.283652,-0.411454,0.866168][0.952708,0.965462,0][8.33088,4.81883,1.0401][0.416637,-0.479396,0.772394][0.970561,0.946949,0][8.34256,4.69539,0.789852][0.518146,-0.726336,0.45162][0.971373,0.946795,0][8.46975,4.84443,0.883616][0.447197,-0.717583,0.533937][0.971015,0.947146,0][8.19538,4.6538,1.01075][0.416637,-0.479396,0.772394][0.970726,0.946548,0][8.34256,4.69539,0.789852][0.518146,-0.726336,0.45162][0.971373,0.946795,0][8.33088,4.81883,1.0401][0.416637,-0.479396,0.772394][0.970561,0.946949,0][8.19538,4.6538,1.01075][0.416637,-0.479396,0.772394][0.970726,0.946548,0][8.21537,4.54636,0.696088][0.518146,-0.726336,0.45162][0.97173,0.946445,0][8.34256,4.69539,0.789852][0.518146,-0.726336,0.45162][0.971373,0.946795,0][8.06539,4.54181,1.03312][0.45404,-0.364681,0.81293][0.970713,0.946235,0][8.21537,4.54636,0.696088][0.518146,-0.726336,0.45162][0.97173,0.946445,0][8.19538,4.6538,1.01075][0.416637,-0.479396,0.772394][0.970726,0.946548,0][8.14799,4.98542,0.498894][-0.48615,0.526754,-0.697272][0.978025,0.952407,0][7.91046,5.09346,0.645943][-0.246682,0.5467,-0.800167][0.977604,0.951965,0][8.09463,5.2112,0.669605][-0.246682,0.5467,-0.800167][0.978284,0.951978,0][8.14799,4.98542,0.498894][-0.48615,0.526754,-0.697272][0.978025,0.952407,0][8.09463,5.2112,0.669605][-0.246682,0.5467,-0.800167][0.978284,0.951978,0][8.26385,5.1493,0.541911][-0.48615,0.526754,-0.697272][0.978611,0.952268,0][8.03212,4.82153,0.455876][-0.456356,0.51342,-0.726732][0.97744,0.952546,0][7.77089,5.03068,0.65553][-0.268484,0.46827,-0.841808][0.977135,0.951912,0][7.91046,5.09346,0.645943][-0.246682,0.5467,-0.800167][0.977604,0.951965,0][8.03212,4.82153,0.455876][-0.456356,0.51342,-0.726732][0.97744,0.952546,0][7.91046,5.09346,0.645943][-0.246682,0.5467,-0.800167][0.977604,0.951965,0][8.14799,4.98542,0.498894][-0.48615,0.526754,-0.697272][0.978025,0.952407,0][7.91046,5.09346,0.645943][-0.246682,0.5467,-0.800167][0.968657,0.954365,0][7.80353,5.18251,1.04193][-0.609508,0.763525,-0.213378][0.969178,0.95365,0][8.00118,5.29905,0.89435][-0.251853,0.717148,-0.649823][0.969577,0.954053,0][7.91046,5.09346,0.645943][-0.246682,0.5467,-0.800167][0.968657,0.954365,0][8.00118,5.29905,0.89435][-0.251853,0.717148,-0.649823][0.969577,0.954053,0][8.09463,5.2112,0.669605][-0.246682,0.5467,-0.800167][0.969222,0.954445,0][7.77089,5.03068,0.65553][-0.268484,0.46827,-0.841808][0.968328,0.954269,0][7.62221,5.09597,1.06324][-0.439532,0.848018,-0.296102][0.968747,0.953507,0][7.80353,5.18251,1.04193][-0.609508,0.763525,-0.213378][0.969178,0.95365,0][7.77089,5.03068,0.65553][-0.268484,0.46827,-0.841808][0.968328,0.954269,0][7.80353,5.18251,1.04193][-0.609508,0.763525,-0.213378][0.969178,0.95365,0][7.91046,5.09346,0.645943][-0.246682,0.5467,-0.800167][0.968657,0.954365,0][7.62221,5.09597,1.06324][-0.16944,0.581663,0.795587][0.94279,0.966492,0][7.80546,4.8208,1.30345][-0.16944,0.581663,0.795587][0.942782,0.967302,0][8.04918,4.95677,1.25594][-0.16944,0.581663,0.795587][0.941901,0.967278,0][7.62221,5.09597,1.06324][-0.16944,0.581663,0.795587][0.94279,0.966492,0][8.04918,4.95677,1.25594][-0.16944,0.581663,0.795587][0.941901,0.967278,0][7.80353,5.18251,1.04193][-0.177082,0.568772,0.803207][0.942162,0.966511,0][9.02939,5.49631,0.461419][-0.59877,0.602109,-0.528147][0.973688,0.95392,0][8.41189,5.26653,0.654867][-0.372077,0.923786,-0.0904313][0.972129,0.953758,0][8.6106,5.3617,0.809441][-0.372077,0.923786,-0.0904313][0.972535,0.953383,0][9.02939,5.49631,0.461419][-0.59877,0.602109,-0.528147][0.973688,0.95392,0][8.6106,5.3617,0.809441][-0.372077,0.923786,-0.0904313][0.972535,0.953383,0][9.15305,5.5798,0.588168][-0.535979,0.843593,-0.0328335][0.973986,0.953618,0][8.9794,5.33613,0.335486][-0.723619,0.689646,-0.0276407][0.934178,0.967681,0][8.26385,5.1493,0.541911][-0.48615,0.526754,-0.697272][0.931858,0.967808,0][8.41189,5.26653,0.654867][-0.372077,0.923786,-0.0904313][0.9322,0.967453,0][8.9794,5.33613,0.335486][-0.723619,0.689646,-0.0276407][0.934178,0.967681,0][8.41189,5.26653,0.654867][-0.372077,0.923786,-0.0904313][0.9322,0.967453,0][9.02939,5.49631,0.461419][-0.59877,0.602109,-0.528147][0.934216,0.967329,0][9.21901,5.12092,0.509137][0.84272,-0.339999,0.417401][0.966626,0.94796,0][8.57192,5.02972,0.923][0.526304,-0.444292,0.724989][0.964554,0.947229,0][8.46975,4.84443,0.883616][0.447197,-0.717583,0.533937][0.964635,0.946824,0][9.28502,5.26604,0.649069][0.716752,-0.624752,0.309761][0.966296,0.948243,0][8.57192,5.02972,0.923][0.526304,-0.444292,0.724989][0.964554,0.947229,0][9.21901,5.12092,0.509137][0.84272,-0.339999,0.417401][0.966626,0.94796,0][9.28502,5.26604,0.649069][0.716752,-0.624752,0.309761][0.935088,0.951934,0][8.68357,5.25384,0.933799][0.418383,-0.250498,0.873044][0.933354,0.952383,0][8.57192,5.02972,0.923][0.526304,-0.444292,0.724989][0.932759,0.952062,0][9.26328,5.47049,0.695786][0.549892,-0.13003,0.825052][0.935278,0.952323,0][8.68357,5.25384,0.933799][0.418383,-0.250498,0.873044][0.933354,0.952383,0][9.28502,5.26604,0.649069][0.716752,-0.624752,0.309761][0.935088,0.951934,0][8.39345,5.10422,1.17][0.688476,-0.192884,0.69914][0.953789,0.965184,0][8.33088,4.81883,1.0401][0.416637,-0.479396,0.772394][0.953021,0.964874,0][8.50002,5.0369,1.04649][0.688476,-0.192884,0.69914][0.953874,0.96494,0][8.19596,5.02124,1.23849][0.468842,-0.53677,0.701473][0.953173,0.965346,0][8.33088,4.81883,1.0401][0.416637,-0.479396,0.772394][0.953021,0.964874,0][8.39345,5.10422,1.17][0.688476,-0.192884,0.69914][0.953789,0.965184,0][8.61903,5.27466,0.994882][0.688476,-0.192884,0.69914][0.933195,0.952471,0][8.57192,5.02972,0.923][0.526304,-0.444292,0.724989][0.932759,0.952062,0][8.68357,5.25384,0.933799][0.418383,-0.250498,0.873044][0.933354,0.952383,0][8.50002,5.0369,1.04649][0.688476,-0.192884,0.69914][0.970444,0.947477,0][8.57192,5.02972,0.923][0.526304,-0.444292,0.724989][0.970817,0.947552,0][8.61903,5.27466,0.994882][0.688476,-0.192884,0.69914][0.970508,0.948012,0][8.50002,5.0369,1.04649][0.688476,-0.192884,0.69914][0.970444,0.947477,0][8.46975,4.84443,0.883616][0.447197,-0.717583,0.533937][0.971015,0.947146,0][8.57192,5.02972,0.923][0.526304,-0.444292,0.724989][0.970817,0.947552,0][8.33088,4.81883,1.0401][0.416637,-0.479396,0.772394][0.970561,0.946949,0][8.46975,4.84443,0.883616][0.447197,-0.717583,0.533937][0.971015,0.947146,0][8.50002,5.0369,1.04649][0.688476,-0.192884,0.69914][0.970444,0.947477,0][8.41189,5.26653,0.654867][-0.372077,0.923786,-0.0904313][0.9322,0.967453,0][8.30985,5.32381,0.749328][-0.0907223,0.952318,-0.291308][0.931811,0.967302,0][8.5455,5.38343,0.870836][-0.0907223,0.952318,-0.291308][0.932406,0.966919,0][8.41189,5.26653,0.654867][-0.372077,0.923786,-0.0904313][0.9322,0.967453,0][8.5455,5.38343,0.870836][-0.0907223,0.952318,-0.291308][0.932406,0.966919,0][8.6106,5.3617,0.809441][-0.372077,0.923786,-0.0904313][0.932654,0.967008,0][8.26385,5.1493,0.541911][-0.48615,0.526754,-0.697272][0.931858,0.967808,0][8.09463,5.2112,0.669605][-0.246682,0.5467,-0.800167][0.93124,0.967631,0][8.30985,5.32381,0.749328][-0.0907223,0.952318,-0.291308][0.931811,0.967302,0][8.26385,5.1493,0.541911][-0.48615,0.526754,-0.697272][0.931858,0.967808,0][8.30985,5.32381,0.749328][-0.0907223,0.952318,-0.291308][0.931811,0.967302,0][8.41189,5.26653,0.654867][-0.372077,0.923786,-0.0904313][0.9322,0.967453,0][8.09463,5.2112,0.669605][-0.246682,0.5467,-0.800167][0.93124,0.967631,0][8.00118,5.29905,0.89435][-0.251853,0.717148,-0.649823][0.930761,0.967222,0][8.22564,5.35111,0.864814][-0.0907223,0.952318,-0.291308][0.931457,0.967123,0][8.09463,5.2112,0.669605][-0.246682,0.5467,-0.800167][0.93124,0.967631,0][8.22564,5.35111,0.864814][-0.0907223,0.952318,-0.291308][0.931457,0.967123,0][8.30985,5.32381,0.749328][-0.0907223,0.952318,-0.291308][0.931811,0.967302,0][8.84938,5.03413,0.0928629][-0.106676,-0.669946,-0.734706][0.948293,0.943055,0][8.21537,4.54636,0.696088][-0.129987,-0.699766,-0.702446][0.951162,0.942278,0][8.03212,4.82153,0.455876][-0.129987,-0.699766,-0.702446][0.951154,0.943087,0][9.05501,4.85389,0.227357][-0.106676,-0.669946,-0.734706][0.957552,0.949775,0][8.21537,4.54636,0.696088][-0.129987,-0.699766,-0.702446][0.959735,0.950874,0][8.84938,5.03413,0.0928629][-0.106676,-0.669946,-0.734706][0.957409,0.950309,0][9.15305,5.5798,0.588168][-0.0545361,0.672039,0.738505][0.945754,0.951863,0][8.6106,5.3617,0.809441][0.56261,0.75886,0.328026][0.947694,0.951962,0][8.68357,5.25384,0.933799][0.559995,0.758563,0.33315][0.947706,0.952319,0][9.15305,5.5798,0.588168][-0.0545361,0.672039,0.738505][0.945754,0.951863,0][8.68357,5.25384,0.933799][0.559995,0.758563,0.33315][0.947706,0.952319,0][9.26328,5.47049,0.695786][-0.0545361,0.672039,0.738505][0.945647,0.95223,0][7.69404,3.54339,-1.51719][0.201246,0.829347,-0.521233][0.956203,0.935595,0][7.57703,3.42566,-1.55203][-0.66032,0.719736,-0.214376][0.956516,0.935841,0][7.60523,3.49414,-1.40896][-0.66032,0.719736,-0.214376][0.956014,0.935836,0][7.67422,3.51436,-1.5765][0.262731,0.760198,-0.594198][0.956416,0.935604,0][7.57703,3.42566,-1.55203][-0.66032,0.719736,-0.214376][0.956516,0.935841,0][7.69404,3.54339,-1.51719][0.201246,0.829347,-0.521233][0.956203,0.935595,0][7.72237,3.4744,-1.60634][-0.38015,0.110432,-0.918308][0.971384,0.966665,0][7.68288,3.33737,-1.60647][-0.38015,0.110432,-0.918308][0.970961,0.966751,0][7.57703,3.42566,-1.55203][-0.38015,0.110432,-0.918308][0.971006,0.966479,0][7.72237,3.4744,-1.60634][-0.38015,0.110432,-0.918308][0.971384,0.966665,0][7.57703,3.42566,-1.55203][-0.38015,0.110432,-0.918308][0.971006,0.966479,0][7.67422,3.51436,-1.5765][-0.398781,0.189436,-0.897267][0.971404,0.966542,0][7.77811,3.46927,-1.58806][0.951462,0.164648,-0.260022][0.971448,0.961835,0][7.83279,3.40293,-1.42995][0.951462,0.164648,-0.260022][0.971141,0.962091,0][7.80923,3.32573,-1.56504][0.951462,0.164648,-0.260022][0.971086,0.961782,0][7.78722,3.50477,-1.52664][0.949904,0.187968,-0.2497][0.971472,0.961976,0][7.83279,3.40293,-1.42995][0.951462,0.164648,-0.260022][0.971141,0.962091,0][7.77811,3.46927,-1.58806][0.951462,0.164648,-0.260022][0.971448,0.961835,0][7.78722,3.50477,-1.52664][0.662172,0.65013,0.372637][0.933943,0.93674,0][7.71373,3.49102,-1.37204][0.662172,0.65013,0.372637][0.933588,0.936501,0][7.83279,3.40293,-1.42995][0.662172,0.65013,0.372637][0.934074,0.9365,0][7.73004,3.54235,-1.50494][0.603649,0.715984,0.350676][0.933722,0.93675,0][7.71373,3.49102,-1.37204][0.662172,0.65013,0.372637][0.933588,0.936501,0][7.78722,3.50477,-1.52664][0.662172,0.65013,0.372637][0.933943,0.93674,0][7.80923,3.32573,-1.56504][0.951462,0.164648,-0.260022][0.971086,0.961782,0][7.62834,2.98312,-1.21927][0.879507,-0.475752,-0.0112912][0.969547,0.962093,0][7.59659,2.92735,-1.34249][0.879507,-0.475752,-0.0112912][0.969522,0.961818,0][7.83279,3.40293,-1.42995][0.951462,0.164648,-0.260022][0.971141,0.962091,0][7.62834,2.98312,-1.21927][0.879507,-0.475752,-0.0112912][0.969547,0.962093,0][7.80923,3.32573,-1.56504][0.951462,0.164648,-0.260022][0.971086,0.961782,0][7.83279,3.40293,-1.42995][0.705743,0.011784,0.70837][0.963133,0.9618,0][7.54917,3.09626,-1.14227][0.705743,0.011784,0.70837][0.964711,0.961775,0][7.62834,2.98312,-1.21927][0.705743,0.011784,0.70837][0.964663,0.962086,0][7.71373,3.49102,-1.37204][0.662172,0.65013,0.372637][0.974333,0.966879,0][7.54917,3.09626,-1.14227][0.558377,0.231002,0.796777][0.974321,0.967841,0][7.83279,3.40293,-1.42995][0.662172,0.65013,0.372637][0.973838,0.966884,0][7.60523,3.49414,-1.40896][-0.902513,0.427809,0.0494839][0.970567,0.950631,0][7.40487,3.06082,-1.3169][-0.902513,0.427809,0.0494839][0.970054,0.949725,0][7.44269,3.1246,-1.17845][-0.902513,0.427809,0.0494839][0.970542,0.949711,0][7.57703,3.42566,-1.55203][-0.909102,0.416092,-0.0200119][0.970066,0.95065,0][7.40487,3.06082,-1.3169][-0.902513,0.427809,0.0494839][0.970054,0.949725,0][7.60523,3.49414,-1.40896][-0.902513,0.427809,0.0494839][0.970567,0.950631,0][7.68288,3.33737,-1.60647][-0.38015,0.110432,-0.918308][0.975882,0.950065,0][7.46616,2.97098,-1.38571][-0.73178,0.022427,-0.681172][0.977339,0.94986,0][7.40487,3.06082,-1.3169][-0.73178,0.022427,-0.681172][0.977397,0.950113,0][7.68288,3.33737,-1.60647][-0.38015,0.110432,-0.918308][0.970961,0.966751,0][7.40487,3.06082,-1.3169][-0.73178,0.022427,-0.681172][0.969764,0.966598,0][7.57703,3.42566,-1.55203][-0.38015,0.110432,-0.918308][0.971006,0.966479,0][7.40487,3.06082,-1.3169][-0.902513,0.427809,0.0494839][0.970054,0.949725,0][7.1987,2.83281,-1.14907][-0.718127,0.69334,0.0597754][0.970036,0.949055,0][7.24691,2.86859,-0.984941][-0.718127,0.69334,0.0597754][0.970559,0.948979,0][7.40487,3.06082,-1.3169][-0.902513,0.427809,0.0494839][0.970054,0.949725,0][7.24691,2.86859,-0.984941][-0.718127,0.69334,0.0597754][0.970559,0.948979,0][7.44269,3.1246,-1.17845][-0.902513,0.427809,0.0494839][0.970542,0.949711,0][7.46616,2.97098,-1.38571][-0.712993,0.276876,-0.64419][0.93224,0.962283,0][7.24233,2.72313,-1.2445][-0.712993,0.276876,-0.64419][0.931772,0.961629,0][7.1987,2.83281,-1.14907][-0.712993,0.276876,-0.64419][0.932215,0.961524,0][7.46616,2.97098,-1.38571][-0.73178,0.022427,-0.681172][0.977339,0.94986,0][7.1987,2.83281,-1.14907][-0.68491,0.0867765,-0.723442][0.978481,0.950069,0][7.40487,3.06082,-1.3169][-0.73178,0.022427,-0.681172][0.977397,0.950113,0][7.59659,2.92735,-1.34249][0.879507,-0.475752,-0.0112912][0.969522,0.961818,0][7.3859,2.69268,-1.05684][0.791835,-0.604435,0.0874962][0.968301,0.96209,0][7.35968,2.63676,-1.20584][0.791835,-0.604435,0.0874962][0.968316,0.96177,0][7.62834,2.98312,-1.21927][0.879507,-0.475752,-0.0112912][0.969547,0.962093,0][7.3859,2.69268,-1.05684][0.791835,-0.604435,0.0874962][0.968301,0.96209,0][7.59659,2.92735,-1.34249][0.879507,-0.475752,-0.0112912][0.969522,0.961818,0][7.62834,2.98312,-1.21927][0.705743,0.011784,0.70837][0.934074,0.938079,0][7.32535,2.81765,-0.957759][0.700904,-0.202622,0.68387][0.932886,0.938099,0][7.3859,2.69268,-1.05684][0.700904,-0.202622,0.68387][0.932888,0.937837,0][7.54917,3.09626,-1.14227][0.705743,0.011784,0.70837][0.964711,0.961775,0][7.32535,2.81765,-0.957759][0.700904,-0.202622,0.68387][0.965954,0.961847,0][7.62834,2.98312,-1.21927][0.705743,0.011784,0.70837][0.964663,0.962086,0][7.35968,2.63676,-1.20584][0.791835,-0.604435,0.0874962][0.968316,0.96177,0][7.16541,2.51567,-0.913245][0.68964,-0.704822,0.166198][0.967398,0.962143,0][7.10935,2.42205,-1.07766][0.68964,-0.704822,0.166198][0.967299,0.961758,0][7.3859,2.69268,-1.05684][0.791835,-0.604435,0.0874962][0.968301,0.96209,0][7.16541,2.51567,-0.913245][0.68964,-0.704822,0.166198][0.967398,0.962143,0][7.35968,2.63676,-1.20584][0.791835,-0.604435,0.0874962][0.968316,0.96177,0][7.3859,2.69268,-1.05684][0.700904,-0.202622,0.68387][0.965922,0.96218,0][7.14267,2.70068,-0.833137][0.654466,-0.231261,0.719856][0.966709,0.961758,0][7.16541,2.51567,-0.913245][0.654466,-0.231261,0.719856][0.966891,0.962133,0][7.32535,2.81765,-0.957759][0.700904,-0.202622,0.68387][0.965954,0.961847,0][7.14267,2.70068,-0.833137][0.654466,-0.231261,0.719856][0.966709,0.961758,0][7.3859,2.69268,-1.05684][0.700904,-0.202622,0.68387][0.965922,0.96218,0][7.1987,2.83281,-1.14907][-0.712993,0.276876,-0.64419][0.932215,0.961524,0][7.00354,2.70253,-1.05603][-0.591282,0.796789,-0.124552][0.932006,0.961049,0][7.06897,2.77844,-0.881034][-0.591282,0.796789,-0.124552][0.932447,0.960974,0][7.1987,2.83281,-1.14907][-0.712993,0.276876,-0.64419][0.929657,0.943091,0][7.06897,2.77844,-0.881034][-0.591282,0.796789,-0.124552][0.928715,0.943103,0][7.24691,2.86859,-0.984941][-0.475293,0.878297,-0.0518776][0.929281,0.94284,0][7.24233,2.72313,-1.2445][-0.712993,0.276876,-0.64419][0.931772,0.961629,0][7.00271,2.5503,-1.14954][-0.58245,0.427776,-0.691202][0.931453,0.961061,0][7.00354,2.70253,-1.05603][-0.591282,0.796789,-0.124552][0.932006,0.961049,0][7.24233,2.72313,-1.2445][-0.712993,0.276876,-0.64419][0.931772,0.961629,0][7.00354,2.70253,-1.05603][-0.591282,0.796789,-0.124552][0.932006,0.961049,0][7.1987,2.83281,-1.14907][-0.712993,0.276876,-0.64419][0.932215,0.961524,0][7.06897,2.77844,-0.881034][-0.591282,0.796789,-0.124552][0.976887,0.964449,0][6.80112,2.68851,-0.826468][-0.346883,0.918735,-0.188674][0.977496,0.964816,0][6.93784,2.76145,-0.722691][-0.346883,0.918735,-0.188674][0.976918,0.964792,0][7.00354,2.70253,-1.05603][-0.591282,0.796789,-0.124552][0.977441,0.964292,0][6.80112,2.68851,-0.826468][-0.346883,0.918735,-0.188674][0.977496,0.964816,0][7.06897,2.77844,-0.881034][-0.591282,0.796789,-0.124552][0.976887,0.964449,0][7.00271,2.5503,-1.14954][-0.58245,0.427776,-0.691202][0.977826,0.964064,0][6.67022,2.46255,-0.900827][-0.590952,0.539666,-0.599613][0.978233,0.964733,0][6.80112,2.68851,-0.826468][-0.346883,0.918735,-0.188674][0.977496,0.964816,0][7.00271,2.5503,-1.14954][-0.58245,0.427776,-0.691202][0.931453,0.961061,0][6.80112,2.68851,-0.826468][-0.346883,0.918735,-0.188674][0.932309,0.960474,0][7.00354,2.70253,-1.05603][-0.591282,0.796789,-0.124552][0.932006,0.961049,0][7.10935,2.42205,-1.07766][0.544417,-0.788357,0.286538][0.961007,0.954073,0][6.93444,2.43837,-0.700426][0.544417,-0.788357,0.286538][0.9618,0.953509,0][6.78181,2.29347,-0.809111][0.544417,-0.788357,0.286538][0.962127,0.953901,0][7.16541,2.51567,-0.913245][0.654466,-0.231261,0.719856][0.961002,0.953682,0][6.93444,2.43837,-0.700426][0.544417,-0.788357,0.286538][0.9618,0.953509,0][7.10935,2.42205,-1.07766][0.544417,-0.788357,0.286538][0.961007,0.954073,0][7.16541,2.51567,-0.913245][0.654466,-0.231261,0.719856][0.961002,0.953682,0][7.0174,2.65625,-0.665657][0.694146,-0.363447,0.621343][0.961252,0.953201,0][6.93444,2.43837,-0.700426][0.544417,-0.788357,0.286538][0.9618,0.953509,0][7.14267,2.70068,-0.833137][0.654466,-0.231261,0.719856][0.960724,0.953379,0][7.0174,2.65625,-0.665657][0.694146,-0.363447,0.621343][0.961252,0.953201,0][7.16541,2.51567,-0.913245][0.654466,-0.231261,0.719856][0.961002,0.953682,0][6.92241,2.52194,-0.466107][0.909295,-0.375003,0.180433][0.956919,0.959417,0][6.93444,2.43837,-0.700426][0.909295,-0.375003,0.180433][0.95659,0.958979,0][7.0174,2.65625,-0.665657][0.909295,-0.375003,0.180433][0.957322,0.958977,0][6.92241,2.52194,-0.466107][0.909295,-0.375003,0.180433][0.956919,0.959417,0][7.0174,2.65625,-0.665657][0.909295,-0.375003,0.180433][0.957322,0.958977,0][6.99846,2.66822,-0.454749][0.878938,-0.465168,0.105293][0.957431,0.959389,0][6.81128,2.38915,-0.512814][0.600958,-0.776156,0.190868][0.96237,0.953301,0][6.78181,2.29347,-0.809111][0.544417,-0.788357,0.286538][0.962127,0.953901,0][6.93444,2.43837,-0.700426][0.544417,-0.788357,0.286538][0.9618,0.953509,0][6.81128,2.38915,-0.512814][0.600958,-0.776156,0.190868][0.96237,0.953301,0][6.93444,2.43837,-0.700426][0.544417,-0.788357,0.286538][0.9618,0.953509,0][6.92241,2.52194,-0.466107][0.687515,-0.672087,0.274995][0.962012,0.953043,0][6.82615,2.68699,-0.320602][0.552544,-0.346161,0.7582][0.953544,0.938726,0][6.92241,2.52194,-0.466107][0.687515,-0.672087,0.274995][0.953695,0.939192,0][6.99846,2.66822,-0.454749][0.552544,-0.346161,0.7582][0.953201,0.939102,0][6.82615,2.68699,-0.320602][0.552544,-0.346161,0.7582][0.953544,0.938726,0][6.99846,2.66822,-0.454749][0.552544,-0.346161,0.7582][0.953201,0.939102,0][6.89884,2.78055,-0.330705][0.552231,-0.347215,0.757946][0.953174,0.938716,0][6.75345,2.59342,-0.310498][0.401993,-0.584362,0.704928][0.953914,0.938737,0][6.81128,2.38915,-0.512814][0.600958,-0.776156,0.190868][0.954214,0.939276,0][6.92241,2.52194,-0.466107][0.687515,-0.672087,0.274995][0.953695,0.939192,0][6.75345,2.59342,-0.310498][0.401993,-0.584362,0.704928][0.953914,0.938737,0][6.92241,2.52194,-0.466107][0.687515,-0.672087,0.274995][0.953695,0.939192,0][6.82615,2.68699,-0.320602][0.552544,-0.346161,0.7582][0.953544,0.938726,0][6.83653,2.86924,-0.620714][-0.447483,0.852775,-0.269321][0.932936,0.946229,0][6.69705,2.84977,-0.450616][-0.447483,0.852775,-0.269321][0.933214,0.946554,0][6.79639,2.90758,-0.432631][-0.447483,0.852775,-0.269321][0.932926,0.946603,0][6.69138,2.78879,-0.704039][-0.379908,0.901253,-0.208359][0.933333,0.946044,0][6.69705,2.84977,-0.450616][-0.447483,0.852775,-0.269321][0.933214,0.946554,0][6.83653,2.86924,-0.620714][-0.447483,0.852775,-0.269321][0.932936,0.946229,0][6.69138,2.78879,-0.704039][-0.379908,0.901253,-0.208359][0.933333,0.946044,0][6.5977,2.79196,-0.468601][-0.466186,0.862453,-0.197093][0.933503,0.946504,0][6.69705,2.84977,-0.450616][-0.447483,0.852775,-0.269321][0.933214,0.946554,0][6.58226,2.67883,-0.749799][-0.629065,0.732529,-0.26015][0.933775,0.945932,0][6.5977,2.79196,-0.468601][-0.466186,0.862453,-0.197093][0.933503,0.946504,0][6.69138,2.78879,-0.704039][-0.379908,0.901253,-0.208359][0.933333,0.946044,0][6.93784,2.76145,-0.722691][-0.346883,0.918735,-0.188674][0.976918,0.964792,0][6.69138,2.78879,-0.704039][-0.379908,0.901253,-0.208359][0.977373,0.965189,0][6.83653,2.86924,-0.620714][-0.447483,0.852775,-0.269321][0.976801,0.965138,0][6.80112,2.68851,-0.826468][-0.346883,0.918735,-0.188674][0.977496,0.964816,0][6.69138,2.78879,-0.704039][-0.379908,0.901253,-0.208359][0.977373,0.965189,0][6.93784,2.76145,-0.722691][-0.346883,0.918735,-0.188674][0.976918,0.964792,0][6.80112,2.68851,-0.826468][-0.346883,0.918735,-0.188674][0.977496,0.964816,0][6.58226,2.67883,-0.749799][-0.629065,0.732529,-0.26015][0.977845,0.965204,0][6.69138,2.78879,-0.704039][-0.379908,0.901253,-0.208359][0.977373,0.965189,0][6.67022,2.46255,-0.900827][-0.590952,0.539666,-0.599613][0.978233,0.964733,0][6.58226,2.67883,-0.749799][-0.629065,0.732529,-0.26015][0.977845,0.965204,0][6.80112,2.68851,-0.826468][-0.346883,0.918735,-0.188674][0.977496,0.964816,0][6.69705,2.84977,-0.450616][-0.372374,0.380715,0.8464][0.942173,0.939014,0][6.82615,2.68699,-0.320602][-0.372374,0.380715,0.8464][0.942101,0.939423,0][6.89884,2.78055,-0.330705][-0.372374,0.380715,0.8464][0.941755,0.939343,0][6.69705,2.84977,-0.450616][-0.372374,0.380715,0.8464][0.942173,0.939014,0][6.89884,2.78055,-0.330705][-0.372374,0.380715,0.8464][0.941755,0.939343,0][6.79639,2.90758,-0.432631][-0.373506,0.378372,0.846952][0.941816,0.939022,0][6.5977,2.79196,-0.468601][-0.37295,0.381115,0.845967][0.942531,0.939007,0][6.75345,2.59342,-0.310498][-0.372949,0.381115,0.845967][0.942448,0.939504,0][6.82615,2.68699,-0.320602][-0.372374,0.380715,0.8464][0.942101,0.939423,0][6.5977,2.79196,-0.468601][-0.37295,0.381115,0.845967][0.942531,0.939007,0][6.82615,2.68699,-0.320602][-0.372374,0.380715,0.8464][0.942101,0.939423,0][6.69705,2.84977,-0.450616][-0.372374,0.380715,0.8464][0.942173,0.939014,0][7.77811,3.46927,-1.58806][0.303191,-0.0864365,-0.949001][0.971467,0.966762,0][7.80923,3.32573,-1.56504][0.303191,-0.0864365,-0.949001][0.971149,0.966972,0][7.68288,3.33737,-1.60647][-0.38015,0.110432,-0.918308][0.970961,0.966751,0][7.77811,3.46927,-1.58806][0.303191,-0.0864365,-0.949001][0.971467,0.966762,0][7.68288,3.33737,-1.60647][-0.38015,0.110432,-0.918308][0.970961,0.966751,0][7.72237,3.4744,-1.60634][-0.38015,0.110432,-0.918308][0.971384,0.966665,0][7.69404,3.54339,-1.51719][-0.0918581,0.932624,0.348963][0.933641,0.936797,0][7.60523,3.49414,-1.40896][-0.0918581,0.932624,0.348963][0.933343,0.936642,0][7.71373,3.49102,-1.37204][0.662172,0.65013,0.372637][0.933588,0.936501,0][7.69404,3.54339,-1.51719][-0.0918581,0.932624,0.348963][0.933641,0.936797,0][7.71373,3.49102,-1.37204][0.662172,0.65013,0.372637][0.933588,0.936501,0][7.73004,3.54235,-1.50494][0.603649,0.715984,0.350676][0.933722,0.93675,0][7.60523,3.49414,-1.40896][-0.0918581,0.932624,0.348963][0.976462,0.961758,0][7.44269,3.1246,-1.17845][-0.126865,0.564534,0.815602][0.977875,0.961956,0][7.54917,3.09626,-1.14227][0.558377,0.231002,0.796777][0.977807,0.962182,0][7.60523,3.49414,-1.40896][-0.0918581,0.932624,0.348963][0.976462,0.961758,0][7.54917,3.09626,-1.14227][0.558377,0.231002,0.796777][0.977807,0.962182,0][7.71373,3.49102,-1.37204][0.662172,0.65013,0.372637][0.976335,0.961968,0][7.68288,3.33737,-1.60647][-0.38015,0.110432,-0.918308][0.970961,0.966751,0][7.59659,2.92735,-1.34249][0.0897813,-0.552426,-0.828713][0.96975,0.96706,0][7.46616,2.97098,-1.38571][-0.73178,0.022427,-0.681172][0.969638,0.966798,0][7.80923,3.32573,-1.56504][0.303191,-0.0864365,-0.949001][0.971149,0.966972,0][7.59659,2.92735,-1.34249][0.0897813,-0.552426,-0.828713][0.96975,0.96706,0][7.68288,3.33737,-1.60647][-0.38015,0.110432,-0.918308][0.970961,0.966751,0][7.46616,2.97098,-1.38571][-0.73178,0.022427,-0.681172][0.969638,0.966798,0][7.35968,2.63676,-1.20584][-0.0478613,-0.461504,-0.885846][0.968589,0.96699,0][7.24233,2.72313,-1.2445][-0.0478613,-0.461504,-0.885846][0.968609,0.966702,0][7.59659,2.92735,-1.34249][0.0897813,-0.552426,-0.828713][0.96975,0.96706,0][7.35968,2.63676,-1.20584][-0.0478613,-0.461504,-0.885846][0.968589,0.96699,0][7.46616,2.97098,-1.38571][-0.73178,0.022427,-0.681172][0.969638,0.966798,0][7.44269,3.1246,-1.17845][-0.126865,0.564534,0.815602][0.977875,0.961956,0][7.24691,2.86859,-0.984941][0.079459,0.561711,0.823509][0.979038,0.961982,0][7.32535,2.81765,-0.957759][0.079459,0.561711,0.823509][0.979057,0.962172,0][7.44269,3.1246,-1.17845][-0.126865,0.564534,0.815602][0.977875,0.961956,0][7.32535,2.81765,-0.957759][0.079459,0.561711,0.823509][0.979057,0.962172,0][7.54917,3.09626,-1.14227][0.558377,0.231002,0.796777][0.977807,0.962182,0][7.24691,2.86859,-0.984941][0.079459,0.561711,0.823509][0.979038,0.961982,0][7.06897,2.77844,-0.881034][0.142627,0.613593,0.776635][0.979678,0.96184,0][7.14267,2.70068,-0.833137][0.142627,0.613593,0.776635][0.979793,0.962059,0][7.24691,2.86859,-0.984941][0.079459,0.561711,0.823509][0.979038,0.961982,0][7.14267,2.70068,-0.833137][0.142627,0.613593,0.776635][0.979793,0.962059,0][7.32535,2.81765,-0.957759][0.079459,0.561711,0.823509][0.979057,0.962172,0][7.24233,2.72313,-1.2445][-0.0478613,-0.461504,-0.885846][0.968609,0.966702,0][7.10935,2.42205,-1.07766][0.00437077,-0.486152,-0.873863][0.9676,0.966815,0][7.00271,2.5503,-1.14954][0.00437077,-0.486152,-0.873863][0.967747,0.966498,0][7.35968,2.63676,-1.20584][-0.0478613,-0.461504,-0.885846][0.968589,0.96699,0][7.10935,2.42205,-1.07766][0.00437077,-0.486152,-0.873863][0.9676,0.966815,0][7.24233,2.72313,-1.2445][-0.0478613,-0.461504,-0.885846][0.968609,0.966702,0][7.10935,2.42205,-1.07766][0.00437077,-0.486152,-0.873863][0.959033,0.941828,0][6.78181,2.29347,-0.809111][-0.343193,-0.612671,-0.711936][0.957657,0.941879,0][6.67022,2.46255,-0.900827][-0.343193,-0.612671,-0.711936][0.957687,0.941438,0][7.10935,2.42205,-1.07766][0.00437077,-0.486152,-0.873863][0.973533,0.953049,0][6.67022,2.46255,-0.900827][-0.343193,-0.612671,-0.711936][0.972129,0.953031,0][7.00271,2.5503,-1.14954][0.00437077,-0.486152,-0.873863][0.973196,0.952796,0][7.14267,2.70068,-0.833137][0.142627,0.613593,0.776635][0.979793,0.962059,0][6.93784,2.76145,-0.722691][0.495739,0.672709,0.549278][0.980145,0.961762,0][7.0174,2.65625,-0.665657][0.495739,0.672709,0.549278][0.980324,0.962019,0][7.06897,2.77844,-0.881034][0.142627,0.613593,0.776635][0.979678,0.96184,0][6.93784,2.76145,-0.722691][0.495739,0.672709,0.549278][0.980145,0.961762,0][7.14267,2.70068,-0.833137][0.142627,0.613593,0.776635][0.979793,0.962059,0][6.72779,1.74738,-1.6019][-0.79153,-0.609149,0.0491607][0.974956,0.965426,0][6.73144,1.75152,-1.49177][-0.79153,-0.609149,0.0491607][0.975272,0.965341,0][6.63197,1.87627,-1.54765][-0.79153,-0.609149,0.0491607][0.975277,0.965645,0][6.72779,1.74738,-1.6019][-0.79153,-0.609149,0.0491607][0.974956,0.965426,0][6.63197,1.87627,-1.54765][-0.79153,-0.609149,0.0491607][0.975277,0.965645,0][6.66829,1.82415,-1.63606][-0.796299,-0.604208,0.028998][0.974958,0.96561,0][6.66829,1.82415,-1.63606][-0.707148,0.442584,-0.551417][0.92881,0.96071,0][6.63197,1.87627,-1.54765][-0.707148,0.442584,-0.551417][0.929081,0.960585,0][6.79139,1.951,-1.69211][-0.707148,0.442584,-0.551417][0.92907,0.961036,0][6.66829,1.82415,-1.63606][-0.707148,0.442584,-0.551417][0.92881,0.96071,0][6.79139,1.951,-1.69211][-0.707148,0.442584,-0.551417][0.92907,0.961036,0][6.73756,1.85662,-1.69882][-0.707147,0.442582,-0.55142][0.928805,0.960906,0][6.73756,1.85662,-1.69882][-0.450467,-0.486326,-0.74871][0.929351,0.96399,0][6.79139,1.951,-1.69211][0.34757,-0.132226,-0.928284][0.929028,0.964054,0][6.88675,1.83625,-1.64006][0.34757,-0.132226,-0.928284][0.929055,0.963759,0][6.73756,1.85662,-1.69882][-0.450467,-0.486326,-0.74871][0.929351,0.96399,0][6.88675,1.83625,-1.64006][0.34757,-0.132226,-0.928284][0.929055,0.963759,0][6.79527,1.78419,-1.66633][-0.196952,-0.527644,-0.826318][0.929374,0.963807,0][6.72779,1.74738,-1.6019][0.490913,-0.871053,0.0164482][0.402031,0.597869,0][6.88675,1.83625,-1.64006][0.490913,-0.871053,0.0164482][0.39806,0.595422,0][6.73144,1.75152,-1.49177][0.490913,-0.871053,0.0164482][0.404346,0.595418,0][6.79527,1.78419,-1.66633][0.490913,-0.871053,0.0164505][0.3993,0.59787,0][6.88675,1.83625,-1.64006][0.490913,-0.871053,0.0164482][0.39806,0.595422,0][6.72779,1.74738,-1.6019][0.490913,-0.871053,0.0164482][0.402031,0.597869,0][6.88675,1.83625,-1.64006][0.647549,-0.712076,0.271345][0.929029,0.949815,0][6.95983,1.9505,-1.51464][0.647549,-0.712076,0.271345][0.929526,0.949996,0][6.79107,1.85842,-1.35351][0.647549,-0.712076,0.271345][0.929171,0.950377,0][6.88675,1.83625,-1.64006][0.647549,-0.712076,0.271345][0.929029,0.949815,0][6.79107,1.85842,-1.35351][0.647549,-0.712076,0.271345][0.929171,0.950377,0][6.73144,1.75152,-1.49177][0.647548,-0.712077,0.271345][0.928703,0.950165,0][6.79139,1.951,-1.69211][0.696442,0.281178,-0.660233][0.933648,0.939191,0][6.8587,2.07173,-1.56969][0.696442,0.281178,-0.660233][0.934221,0.939165,0][6.95983,1.9505,-1.51464][0.696442,0.281178,-0.660233][0.934239,0.939496,0][6.79139,1.951,-1.69211][0.696442,0.281178,-0.660233][0.933648,0.939191,0][6.95983,1.9505,-1.51464][0.696442,0.281178,-0.660233][0.934239,0.939496,0][6.88675,1.83625,-1.64006][0.696807,0.279442,-0.660585][0.933665,0.939504,0][6.63197,1.87627,-1.54765][-0.707148,0.442584,-0.551417][0.980286,0.963601,0][6.68547,1.99052,-1.41271][-0.63307,0.696174,-0.338472][0.979772,0.963765,0][6.8587,2.07173,-1.56969][-0.63307,0.696174,-0.338472][0.979556,0.963418,0][6.63197,1.87627,-1.54765][-0.707148,0.442584,-0.551417][0.980286,0.963601,0][6.8587,2.07173,-1.56969][-0.63307,0.696174,-0.338472][0.979556,0.963418,0][6.79139,1.951,-1.69211][-0.707148,0.442584,-0.551417][0.980088,0.963282,0][6.63197,1.87627,-1.54765][-0.79153,-0.609149,0.0491607][0.969584,0.945147,0][6.79107,1.85842,-1.35351][-0.743594,-0.335106,0.578595][0.970204,0.944842,0][6.68547,1.99052,-1.41271][-0.743594,-0.335106,0.578595][0.970154,0.945196,0][6.73144,1.75152,-1.49177][-0.79153,-0.609149,0.0491607][0.969631,0.944813,0][6.79107,1.85842,-1.35351][-0.743594,-0.335106,0.578595][0.970204,0.944842,0][6.63197,1.87627,-1.54765][-0.79153,-0.609149,0.0491607][0.969584,0.945147,0][6.68547,1.99052,-1.41271][-0.743594,-0.335106,0.578595][0.966831,0.949346,0][6.83015,2.03652,-1.05412][-0.813555,-0.436467,0.384219][0.966317,0.948677,0][6.71498,2.19038,-1.12319][-0.813555,-0.436467,0.384219][0.966871,0.948761,0][6.79107,1.85842,-1.35351][-0.743594,-0.335106,0.578595][0.966337,0.949276,0][6.83015,2.03652,-1.05412][-0.813555,-0.436467,0.384219][0.966317,0.948677,0][6.68547,1.99052,-1.41271][-0.743594,-0.335106,0.578595][0.966831,0.949346,0][6.68547,1.99052,-1.41271][-0.63307,0.696174,-0.338472][0.979772,0.963765,0][6.71498,2.19038,-1.12319][-0.618522,0.674723,-0.402716][0.978917,0.964201,0][6.96168,2.23999,-1.41898][-0.618522,0.674723,-0.402716][0.978831,0.963573,0][6.68547,1.99052,-1.41271][-0.63307,0.696174,-0.338472][0.979772,0.963765,0][6.96168,2.23999,-1.41898][-0.618522,0.674723,-0.402716][0.978831,0.963573,0][6.8587,2.07173,-1.56969][-0.63307,0.696174,-0.338472][0.979556,0.963418,0][6.8587,2.07173,-1.56969][0.696442,0.281178,-0.660233][0.934221,0.939165,0][6.96168,2.23999,-1.41898][0.67703,0.21587,-0.703584][0.934989,0.939128,0][7.0722,2.09896,-1.3559][0.67703,0.21587,-0.703584][0.934999,0.939504,0][6.8587,2.07173,-1.56969][0.696442,0.281178,-0.660233][0.934221,0.939165,0][7.0722,2.09896,-1.3559][0.67703,0.21587,-0.703584][0.934999,0.939504,0][6.95983,1.9505,-1.51464][0.696442,0.281178,-0.660233][0.934239,0.939496,0][6.79107,1.85842,-1.35351][0.647549,-0.712076,0.271345][0.929171,0.950377,0][7.0722,2.09896,-1.3559][0.612194,-0.712109,0.343685][0.93019,0.95022,0][6.83015,2.03652,-1.05412][0.612194,-0.712109,0.343685][0.929922,0.950874,0][6.95983,1.9505,-1.51464][0.647549,-0.712076,0.271345][0.929526,0.949996,0][7.0722,2.09896,-1.3559][0.612194,-0.712109,0.343685][0.93019,0.95022,0][6.79107,1.85842,-1.35351][0.647549,-0.712076,0.271345][0.929171,0.950377,0][7.20258,2.16555,-1.60335][0.755465,-0.654567,0.028538][0.954119,0.955983,0][7.27535,2.25385,-1.50429][0.755465,-0.654567,0.028538][0.953713,0.955841,0][7.15708,2.11575,-1.54111][0.755465,-0.654567,0.028538][0.95427,0.955833,0][7.25582,2.22772,-1.58677][0.420616,-0.0720149,-0.904376][0.953869,0.955986,0][7.27535,2.25385,-1.50429][0.755465,-0.654567,0.028538][0.953713,0.955841,0][7.20258,2.16555,-1.60335][0.755465,-0.654567,0.028538][0.954119,0.955983,0][7.20247,2.29501,-1.61694][0.420616,-0.0720149,-0.904376][0.951539,0.955833,0][7.192,2.35459,-1.54998][0.795471,0.509189,-0.328563][0.951633,0.956002,0][7.27535,2.25385,-1.50429][0.755465,-0.654567,0.028538][0.951202,0.95601,0][7.20247,2.29501,-1.61694][0.420616,-0.0720149,-0.904376][0.951539,0.955833,0][7.27535,2.25385,-1.50429][0.755465,-0.654567,0.028538][0.951202,0.95601,0][7.25582,2.22772,-1.58677][0.420616,-0.0720149,-0.904376][0.951256,0.955838,0][7.20247,2.29501,-1.61694][-0.466816,0.623204,-0.627454][0.978579,0.963062,0][7.07422,2.22581,-1.59026][-0.466816,0.623204,-0.627454][0.978908,0.963216,0][7.192,2.35459,-1.54998][-0.466816,0.623204,-0.627454][0.978399,0.963199,0][7.14946,2.23704,-1.63508][-0.466815,0.623201,-0.627459][0.978808,0.96307,0][7.07422,2.22581,-1.59026][-0.466816,0.623204,-0.627454][0.978908,0.963216,0][7.20247,2.29501,-1.61694][-0.466816,0.623204,-0.627454][0.978579,0.963062,0][7.20258,2.16555,-1.60335][0.415288,-0.115077,-0.902382][0.936295,0.935997,0][7.15708,2.11575,-1.54111][-0.350747,-0.589156,-0.727923][0.936087,0.936018,0][7.07422,2.22581,-1.59026][-0.350747,-0.589156,-0.727923][0.9361,0.935745,0][7.20258,2.16555,-1.60335][0.415288,-0.115077,-0.902382][0.936295,0.935997,0][7.07422,2.22581,-1.59026][-0.350747,-0.589156,-0.727923][0.9361,0.935745,0][7.14946,2.23704,-1.63508][0.393065,-0.0726938,-0.916633][0.936305,0.935821,0][7.15708,2.11575,-1.54111][-0.350747,-0.589156,-0.727923][0.947344,0.948695,0][7.0722,2.09896,-1.3559][-0.650101,-0.669877,-0.358656][0.946728,0.948704,0][6.96168,2.23999,-1.41898][-0.650101,-0.669877,-0.358656][0.946724,0.948363,0][7.15708,2.11575,-1.54111][-0.350747,-0.589156,-0.727923][0.947344,0.948695,0][6.96168,2.23999,-1.41898][-0.650101,-0.669877,-0.358656][0.946724,0.948363,0][7.07422,2.22581,-1.59026][-0.350747,-0.589156,-0.727923][0.947344,0.948435,0][7.192,2.35459,-1.54998][-0.466816,0.623204,-0.627454][0.978399,0.963199,0][6.96168,2.23999,-1.41898][-0.618522,0.674723,-0.402716][0.978831,0.963573,0][7.1054,2.41569,-1.34341][-0.58904,0.673738,-0.446216][0.978137,0.963596,0][7.07422,2.22581,-1.59026][-0.466816,0.623204,-0.627454][0.978908,0.963216,0][6.96168,2.23999,-1.41898][-0.618522,0.674723,-0.402716][0.978831,0.963573,0][7.192,2.35459,-1.54998][-0.466816,0.623204,-0.627454][0.978399,0.963199,0][7.192,2.35459,-1.54998][0.725515,0.680477,0.102856][0.978805,0.949176,0][7.1054,2.41569,-1.34341][0.725515,0.680477,0.102856][0.978097,0.949092,0][7.21617,2.28867,-1.2844][0.725515,0.680477,0.102856][0.978241,0.948778,0][7.192,2.35459,-1.54998][0.725515,0.680477,0.102856][0.978805,0.949176,0][7.21617,2.28867,-1.2844][0.725515,0.680477,0.102856][0.978241,0.948778,0][7.27535,2.25385,-1.50429][0.745077,0.660033,0.0960005][0.978915,0.948935,0][7.27535,2.25385,-1.50429][0.705616,-0.645582,0.292114][0.930771,0.949832,0][7.21617,2.28867,-1.2844][0.705616,-0.645582,0.292114][0.930946,0.950253,0][7.0722,2.09896,-1.3559][0.612194,-0.712109,0.343685][0.93019,0.95022,0][7.27535,2.25385,-1.50429][0.705616,-0.645582,0.292114][0.930771,0.949832,0][7.0722,2.09896,-1.3559][0.612194,-0.712109,0.343685][0.93019,0.95022,0][7.15708,2.11575,-1.54111][0.698254,-0.667151,0.259521][0.930214,0.94984,0][7.0722,2.09896,-1.3559][0.612194,-0.712109,0.343685][0.93019,0.95022,0][7.09131,2.26211,-1.07285][0.624996,-0.693834,0.357735][0.930863,0.950696,0][6.83015,2.03652,-1.05412][0.612194,-0.712109,0.343685][0.929922,0.950874,0][7.21617,2.28867,-1.2844][0.705616,-0.645582,0.292114][0.930946,0.950253,0][7.09131,2.26211,-1.07285][0.624996,-0.693834,0.357735][0.930863,0.950696,0][7.0722,2.09896,-1.3559][0.612194,-0.712109,0.343685][0.93019,0.95022,0][7.21617,2.28867,-1.2844][0.725515,0.680477,0.102856][0.978241,0.948778,0][6.97519,2.40107,-1.13592][0.58592,0.685679,0.431904][0.977372,0.949019,0][7.09131,2.26211,-1.07285][0.58592,0.685679,0.431904][0.977525,0.948685,0][7.1054,2.41569,-1.34341][0.725515,0.680477,0.102856][0.978097,0.949092,0][6.97519,2.40107,-1.13592][0.58592,0.685679,0.431904][0.977372,0.949019,0][7.21617,2.28867,-1.2844][0.725515,0.680477,0.102856][0.978241,0.948778,0][6.96168,2.23999,-1.41898][-0.618522,0.674723,-0.402716][0.978831,0.963573,0][6.71498,2.19038,-1.12319][-0.618522,0.674723,-0.402716][0.978917,0.964201,0][6.97519,2.40107,-1.13592][-0.59409,0.710976,-0.376259][0.978077,0.963992,0][6.96168,2.23999,-1.41898][-0.618522,0.674723,-0.402716][0.978831,0.963573,0][6.97519,2.40107,-1.13592][-0.59409,0.710976,-0.376259][0.978077,0.963992,0][7.1054,2.41569,-1.34341][-0.58904,0.673738,-0.446216][0.978137,0.963596,0][6.71498,2.19038,-1.12319][-0.495793,-0.629207,-0.598571][0.949494,0.957245,0][6.38365,2.05237,-0.703684][-0.495793,-0.629207,-0.598571][0.948208,0.957745,0][6.27649,2.24017,-0.812335][-0.495793,-0.629207,-0.598571][0.947887,0.957389,0][6.83015,2.03652,-1.05412][-0.490719,-0.635117,-0.596507][0.949854,0.957525,0][6.38365,2.05237,-0.703684][-0.495793,-0.629207,-0.598571][0.948208,0.957745,0][6.71498,2.19038,-1.12319][-0.495793,-0.629207,-0.598571][0.949494,0.957245,0][6.71498,2.19038,-1.12319][-0.618522,0.674723,-0.402716][0.978917,0.964201,0][6.27649,2.24017,-0.812335][-0.455081,0.517299,-0.724778][0.979244,0.965205,0][6.67022,2.46255,-0.900827][-0.590952,0.539666,-0.599613][0.978233,0.964733,0][6.71498,2.19038,-1.12319][-0.618522,0.674723,-0.402716][0.978917,0.964201,0][6.67022,2.46255,-0.900827][-0.590952,0.539666,-0.599613][0.978233,0.964733,0][6.97519,2.40107,-1.13592][-0.59409,0.710976,-0.376259][0.978077,0.963992,0][6.97519,2.40107,-1.13592][0.58592,0.685679,0.431904][0.977372,0.949019,0][6.67022,2.46255,-0.900827][0.542626,0.648015,0.534446][0.976219,0.949212,0][6.78181,2.29347,-0.809111][0.542626,0.648015,0.534446][0.976318,0.94883,0][6.97519,2.40107,-1.13592][0.58592,0.685679,0.431904][0.977372,0.949019,0][6.78181,2.29347,-0.809111][0.542626,0.648015,0.534446][0.976318,0.94883,0][7.09131,2.26211,-1.07285][0.58592,0.685679,0.431904][0.977525,0.948685,0][6.83015,2.03652,-1.05412][0.612194,-0.712109,0.343685][0.959096,0.947863,0][6.78181,2.29347,-0.809111][0.544417,-0.788357,0.286538][0.958467,0.94845,0][6.38365,2.05237,-0.703684][0.506304,-0.543306,0.669683][0.957328,0.947842,0][7.09131,2.26211,-1.07285][0.624996,-0.693834,0.357735][0.959735,0.948414,0][6.78181,2.29347,-0.809111][0.544417,-0.788357,0.286538][0.958467,0.94845,0][6.83015,2.03652,-1.05412][0.612194,-0.712109,0.343685][0.959096,0.947863,0][7.65975,3.42796,-0.448834][0.943058,-0.316407,0.102611][0.960412,0.959108,0][7.6139,3.31432,-0.3778][0.943058,-0.316407,0.102611][0.960069,0.959284,0][7.62629,3.30649,-0.515803][0.943058,-0.316407,0.102611][0.959998,0.959014,0][7.65507,3.43091,-0.396663][0.943057,-0.316411,0.102604][0.960439,0.95921,0][7.6139,3.31432,-0.3778][0.943058,-0.316407,0.102611][0.960069,0.959284,0][7.65975,3.42796,-0.448834][0.943058,-0.316407,0.102611][0.960412,0.959108,0][7.63043,3.4587,-0.365979][0.707619,-0.137749,0.693037][0.950103,0.938813,0][7.54871,3.38783,-0.296635][0.707619,-0.137749,0.693037][0.950458,0.938714,0][7.6139,3.31432,-0.3778][0.707619,-0.137749,0.693037][0.950475,0.938966,0][7.63043,3.4587,-0.365979][0.707619,-0.137749,0.693037][0.950103,0.938813,0][7.6139,3.31432,-0.3778][0.707619,-0.137749,0.693037][0.950475,0.938966,0][7.65507,3.43091,-0.396663][0.707617,-0.137748,0.693039][0.950109,0.938908,0][7.60508,3.49012,-0.391192][-0.201198,0.950525,-0.236691][0.973859,0.964804,0][7.50794,3.44586,-0.486395][-0.201198,0.950525,-0.236691][0.974296,0.964804,0][7.48168,3.47094,-0.363328][-0.201198,0.950525,-0.236691][0.974103,0.964994,0][7.61501,3.48064,-0.437717][-0.201199,0.950525,-0.23669][0.973932,0.964732,0][7.50794,3.44586,-0.486395][-0.201198,0.950525,-0.236691][0.974296,0.964804,0][7.60508,3.49012,-0.391192][-0.201198,0.950525,-0.236691][0.973859,0.964804,0][7.64007,3.45398,-0.462943][0.0775024,0.722644,-0.686861][0.973961,0.964646,0][7.57423,3.37532,-0.553122][0.0775024,0.722645,-0.686861][0.974372,0.964578,0][7.50794,3.44586,-0.486395][-0.201198,0.950525,-0.236691][0.974296,0.964804,0][7.64007,3.45398,-0.462943][0.0775024,0.722644,-0.686861][0.973961,0.964646,0][7.50794,3.44586,-0.486395][-0.201198,0.950525,-0.236691][0.974296,0.964804,0][7.61501,3.48064,-0.437717][-0.201199,0.950525,-0.23669][0.973932,0.964732,0][7.65975,3.42796,-0.448834][0.943058,-0.316407,0.102611][0.952041,0.955928,0][7.62629,3.30649,-0.515803][0.943058,-0.316407,0.102611][0.952459,0.955833,0][7.57423,3.37532,-0.553122][0.716096,0.175221,-0.675651][0.952468,0.95602,0][7.65975,3.42796,-0.448834][0.943058,-0.316407,0.102611][0.952041,0.955928,0][7.57423,3.37532,-0.553122][0.716096,0.175221,-0.675651][0.952468,0.95602,0][7.64007,3.45398,-0.462943][0.716097,0.175219,-0.67565][0.952044,0.955999,0][7.63043,3.4587,-0.365979][0.763558,0.644733,0.0360274][0.979552,0.956204,0][7.48168,3.47094,-0.363328][0.0674357,0.656939,0.750922][0.979883,0.956411,0][7.54871,3.38783,-0.296635][0.0674357,0.656939,0.750922][0.979551,0.956418,0][7.60508,3.49012,-0.391192][0.763558,0.644733,0.0360274][0.979677,0.956201,0][7.48168,3.47094,-0.363328][0.0674357,0.656939,0.750922][0.979883,0.956411,0][7.63043,3.4587,-0.365979][0.763558,0.644733,0.0360274][0.979552,0.956204,0][7.62629,3.30649,-0.515803][0.943058,-0.316407,0.102611][0.959998,0.959014,0][7.41819,3.09667,-0.387886][0.737157,-0.667662,0.104055][0.959203,0.959349,0][7.43456,3.08632,-0.570257][0.737157,-0.667662,0.104055][0.959109,0.958993,0][7.6139,3.31432,-0.3778][0.943058,-0.316407,0.102611][0.960069,0.959284,0][7.41819,3.09667,-0.387886][0.737157,-0.667662,0.104055][0.959203,0.959349,0][7.62629,3.30649,-0.515803][0.943058,-0.316407,0.102611][0.959998,0.959014,0][7.6139,3.31432,-0.3778][0.707619,-0.137749,0.693037][0.950475,0.938966,0][7.33205,3.19381,-0.280625][0.456168,-0.445868,0.770138][0.951353,0.938671,0][7.41819,3.09667,-0.387886][0.456168,-0.445868,0.770138][0.951376,0.939004,0][7.54871,3.38783,-0.296635][0.707619,-0.137749,0.693037][0.950458,0.938714,0][7.33205,3.19381,-0.280625][0.456168,-0.445868,0.770138][0.951353,0.938671,0][7.6139,3.31432,-0.3778][0.707619,-0.137749,0.693037][0.950475,0.938966,0][7.50794,3.44586,-0.486395][-0.201198,0.950525,-0.236691][0.930466,0.946617,0][7.27817,3.27049,-0.531395][-0.547852,0.789117,-0.277762][0.93125,0.946489,0][7.24346,3.30364,-0.368761][-0.547852,0.789117,-0.277762][0.931241,0.946813,0][7.50794,3.44586,-0.486395][-0.201198,0.950525,-0.236691][0.930466,0.946617,0][7.24346,3.30364,-0.368761][-0.547852,0.789117,-0.277762][0.931241,0.946813,0][7.48168,3.47094,-0.363328][-0.201198,0.950525,-0.236691][0.930459,0.946862,0][7.57423,3.37532,-0.553122][0.0775024,0.722645,-0.686861][0.974372,0.964578,0][7.36577,3.17728,-0.619574][-0.247954,0.532553,-0.809263][0.975221,0.964639,0][7.27817,3.27049,-0.531395][-0.547852,0.789117,-0.277762][0.97512,0.964938,0][7.57423,3.37532,-0.553122][0.0775024,0.722645,-0.686861][0.974372,0.964578,0][7.27817,3.27049,-0.531395][-0.547852,0.789117,-0.277762][0.97512,0.964938,0][7.50794,3.44586,-0.486395][-0.201198,0.950525,-0.236691][0.974296,0.964804,0][7.62629,3.30649,-0.515803][0.43123,-0.155719,-0.888702][0.973135,0.96493,0][7.43456,3.08632,-0.570257][0.43123,-0.155719,-0.888702][0.973229,0.965505,0][7.36577,3.17728,-0.619574][0.43123,-0.155719,-0.888702][0.972876,0.965482,0][7.62629,3.30649,-0.515803][0.43123,-0.155719,-0.888702][0.973135,0.96493,0][7.36577,3.17728,-0.619574][0.43123,-0.155719,-0.888702][0.972876,0.965482,0][7.57423,3.37532,-0.553122][0.431231,-0.155721,-0.888702][0.972868,0.964912,0][7.54871,3.38783,-0.296635][0.0674357,0.656939,0.750922][0.979551,0.956418,0][7.24346,3.30364,-0.368761][-0.317419,0.424441,0.847994][0.979974,0.956985,0][7.33205,3.19381,-0.280625][-0.317419,0.424441,0.847994][0.979535,0.956994,0][7.48168,3.47094,-0.363328][0.0674357,0.656939,0.750922][0.979883,0.956411,0][7.24346,3.30364,-0.368761][-0.317419,0.424441,0.847994][0.979974,0.956985,0][7.54871,3.38783,-0.296635][0.0674357,0.656939,0.750922][0.979551,0.956418,0][7.43456,3.08632,-0.570257][0.737157,-0.667662,0.104055][0.959109,0.958993,0][7.18578,2.91298,-0.413487][0.610241,-0.785959,0.0993704][0.958377,0.959379,0][7.2002,2.90387,-0.57411][0.610241,-0.785959,0.0993704][0.958294,0.959065,0][7.41819,3.09667,-0.387886][0.737157,-0.667662,0.104055][0.959203,0.959349,0][7.18578,2.91298,-0.413487][0.610241,-0.785959,0.0993704][0.958377,0.959379,0][7.43456,3.08632,-0.570257][0.737157,-0.667662,0.104055][0.959109,0.958993,0][7.41819,3.09667,-0.387886][0.456168,-0.445868,0.770138][0.951376,0.939004,0][7.10991,2.99854,-0.319018][0.343823,-0.541909,0.76689][0.952243,0.938692,0][7.18578,2.91298,-0.413487][0.343823,-0.541909,0.76689][0.952263,0.938986,0][7.33205,3.19381,-0.280625][0.456168,-0.445868,0.770138][0.951353,0.938671,0][7.10991,2.99854,-0.319018][0.343823,-0.541909,0.76689][0.952243,0.938692,0][7.41819,3.09667,-0.387886][0.456168,-0.445868,0.770138][0.951376,0.939004,0][7.27817,3.27049,-0.531395][-0.547852,0.789117,-0.277762][0.93125,0.946489,0][7.06246,3.06608,-0.539882][-0.653927,0.701797,-0.282596][0.932106,0.94643,0][7.03189,3.09527,-0.396643][-0.653927,0.701797,-0.282596][0.932097,0.946715,0][7.27817,3.27049,-0.531395][-0.547852,0.789117,-0.277762][0.93125,0.946489,0][7.03189,3.09527,-0.396643][-0.653927,0.701797,-0.282596][0.932097,0.946715,0][7.24346,3.30364,-0.368761][-0.547852,0.789117,-0.277762][0.931241,0.946813,0][7.27817,3.27049,-0.531395][-0.547852,0.789117,-0.277762][0.97512,0.964938,0][7.13961,2.98398,-0.617546][-0.373183,0.427982,-0.823144][0.975981,0.964802,0][7.06246,3.06608,-0.539882][-0.653927,0.701797,-0.282596][0.975893,0.965066,0][7.36577,3.17728,-0.619574][-0.247954,0.532553,-0.809263][0.975221,0.964639,0][7.13961,2.98398,-0.617546][-0.373183,0.427982,-0.823144][0.975981,0.964802,0][7.27817,3.27049,-0.531395][-0.547852,0.789117,-0.277762][0.97512,0.964938,0][7.43456,3.08632,-0.570257][0.43123,-0.155719,-0.888702][0.973229,0.965505,0][7.2002,2.90387,-0.57411][0.25331,-0.306002,-0.917713][0.973145,0.966092,0][7.13961,2.98398,-0.617546][0.25331,-0.306002,-0.917713][0.972834,0.966071,0][7.43456,3.08632,-0.570257][0.43123,-0.155719,-0.888702][0.973229,0.965505,0][7.13961,2.98398,-0.617546][0.25331,-0.306002,-0.917713][0.972834,0.966071,0][7.36577,3.17728,-0.619574][0.43123,-0.155719,-0.888702][0.972876,0.965482,0][7.33205,3.19381,-0.280625][-0.43206,0.326196,0.840786][0.939395,0.960354,0][7.03189,3.09527,-0.396643][-0.43206,0.326196,0.840786][0.938487,0.960595,0][7.10991,2.99854,-0.319018][-0.43206,0.326196,0.840786][0.938474,0.960349,0][7.24346,3.30364,-0.368761][-0.43206,0.326197,0.840785][0.93941,0.960633,0][7.03189,3.09527,-0.396643][-0.43206,0.326196,0.840786][0.938487,0.960595,0][7.33205,3.19381,-0.280625][-0.43206,0.326196,0.840786][0.939395,0.960354,0][7.2002,2.90387,-0.57411][0.610241,-0.785959,0.0993704][0.958294,0.959065,0][6.99846,2.66822,-0.454749][0.878938,-0.465168,0.105293][0.957431,0.959389,0][7.0174,2.65625,-0.665657][0.909295,-0.375003,0.180433][0.957322,0.958977,0][7.18578,2.91298,-0.413487][0.610241,-0.785959,0.0993704][0.958377,0.959379,0][6.99846,2.66822,-0.454749][0.878938,-0.465168,0.105293][0.957431,0.959389,0][7.2002,2.90387,-0.57411][0.610241,-0.785959,0.0993704][0.958294,0.959065,0][7.18578,2.91298,-0.413487][0.343823,-0.541909,0.76689][0.952263,0.938986,0][6.89884,2.78055,-0.330705][0.552231,-0.347215,0.757946][0.953174,0.938716,0][6.99846,2.66822,-0.454749][0.552544,-0.346161,0.7582][0.953201,0.939102,0][7.10991,2.99854,-0.319018][0.343823,-0.541909,0.76689][0.952243,0.938692,0][6.89884,2.78055,-0.330705][0.552231,-0.347215,0.757946][0.953174,0.938716,0][7.18578,2.91298,-0.413487][0.343823,-0.541909,0.76689][0.952263,0.938986,0][7.06246,3.06608,-0.539882][-0.653927,0.701797,-0.282596][0.932106,0.94643,0][6.83653,2.86924,-0.620714][-0.447483,0.852775,-0.269321][0.932936,0.946229,0][6.79639,2.90758,-0.432631][-0.447483,0.852775,-0.269321][0.932926,0.946603,0][7.06246,3.06608,-0.539882][-0.653927,0.701797,-0.282596][0.932106,0.94643,0][6.79639,2.90758,-0.432631][-0.447483,0.852775,-0.269321][0.932926,0.946603,0][7.03189,3.09527,-0.396643][-0.653927,0.701797,-0.282596][0.932097,0.946715,0][7.13961,2.98398,-0.617546][-0.373183,0.427982,-0.823144][0.975981,0.964802,0][6.93784,2.76145,-0.722691][-0.346883,0.918735,-0.188674][0.976918,0.964792,0][6.83653,2.86924,-0.620714][-0.447483,0.852775,-0.269321][0.976801,0.965138,0][7.13961,2.98398,-0.617546][-0.373183,0.427982,-0.823144][0.975981,0.964802,0][6.83653,2.86924,-0.620714][-0.447483,0.852775,-0.269321][0.976801,0.965138,0][7.06246,3.06608,-0.539882][-0.653927,0.701797,-0.282596][0.975893,0.965066,0][7.2002,2.90387,-0.57411][0.610241,-0.785959,0.0993704][0.939126,0.935901,0][7.0174,2.65625,-0.665657][0.909295,-0.375003,0.180433][0.938168,0.935919,0][6.93784,2.76145,-0.722691][0.519632,-0.0687628,-0.851619][0.938273,0.935666,0][7.2002,2.90387,-0.57411][0.610241,-0.785959,0.0993704][0.939126,0.935901,0][6.93784,2.76145,-0.722691][0.519632,-0.0687628,-0.851619][0.938273,0.935666,0][7.13961,2.98398,-0.617546][0.519632,-0.0687639,-0.851618][0.939205,0.935708,0][7.10991,2.99854,-0.319018][-0.407125,0.348957,0.844085][0.940838,0.939198,0][6.79639,2.90758,-0.432631][-0.373506,0.378372,0.846952][0.941816,0.939022,0][6.89884,2.78055,-0.330705][-0.372374,0.380715,0.8464][0.941755,0.939343,0][7.03189,3.09527,-0.396643][-0.407124,0.348955,0.844086][0.940884,0.938954,0][6.79639,2.90758,-0.432631][-0.373506,0.378372,0.846952][0.941816,0.939022,0][7.10991,2.99854,-0.319018][-0.407125,0.348957,0.844085][0.940838,0.939198,0][6.78181,2.29347,-0.809111][0.544417,-0.788357,0.286538][0.962127,0.953901,0][6.52325,2.19289,-0.42248][0.540393,-0.82868,0.145827][0.963305,0.953474,0][6.38365,2.05237,-0.703684][0.506304,-0.543306,0.669683][0.963316,0.954143,0][6.81128,2.38915,-0.512814][0.600958,-0.776156,0.190868][0.96237,0.953301,0][6.52325,2.19289,-0.42248][0.540393,-0.82868,0.145827][0.963305,0.953474,0][6.78181,2.29347,-0.809111][0.544417,-0.788357,0.286538][0.962127,0.953901,0][6.81128,2.38915,-0.512814][0.600958,-0.776156,0.190868][0.954423,0.951886,0][6.53829,2.48607,-0.267657][0.519427,-0.419724,0.74433][0.955265,0.951682,0][6.52325,2.19289,-0.42248][0.540393,-0.82868,0.145827][0.955333,0.952262,0][6.75345,2.59342,-0.310498][0.401993,-0.584362,0.704928][0.953914,0.938737,0][6.53829,2.48607,-0.267657][0.519427,-0.419724,0.74433][0.95461,0.938568,0][6.81128,2.38915,-0.512814][0.600958,-0.776156,0.190868][0.954214,0.939276,0][6.58226,2.67883,-0.749799][-0.629065,0.732529,-0.26015][0.933775,0.945932,0][6.27294,2.51564,-0.68722][-0.491868,0.818926,-0.295679][0.934654,0.946013,0][6.39245,2.68114,-0.427641][-0.491868,0.818926,-0.295679][0.934094,0.946556,0][6.58226,2.67883,-0.749799][-0.629065,0.732529,-0.26015][0.933775,0.945932,0][6.39245,2.68114,-0.427641][-0.491868,0.818926,-0.295679][0.934094,0.946556,0][6.5977,2.79196,-0.468601][-0.466186,0.862453,-0.197093][0.933503,0.946504,0][6.67022,2.46255,-0.900827][-0.590952,0.539666,-0.599613][0.978233,0.964733,0][6.27649,2.24017,-0.812335][-0.455081,0.517299,-0.724778][0.979244,0.965205,0][6.27294,2.51564,-0.68722][-0.491868,0.818926,-0.295679][0.978635,0.965577,0][6.67022,2.46255,-0.900827][-0.590952,0.539666,-0.599613][0.978233,0.964733,0][6.27294,2.51564,-0.68722][-0.491868,0.818926,-0.295679][0.978635,0.965577,0][6.58226,2.67883,-0.749799][-0.629065,0.732529,-0.26015][0.977845,0.965204,0][6.5977,2.79196,-0.468601][-0.37295,0.381115,0.845967][0.942531,0.939007,0][6.39245,2.68114,-0.427641][-0.141155,0.562555,0.814621][0.943255,0.938977,0][6.53829,2.48607,-0.267657][-0.141155,0.562555,0.814621][0.943193,0.939458,0][6.5977,2.79196,-0.468601][-0.37295,0.381115,0.845967][0.942531,0.939007,0][6.53829,2.48607,-0.267657][-0.141155,0.562555,0.814621][0.943193,0.939458,0][6.75345,2.59342,-0.310498][-0.372949,0.381115,0.845967][0.942448,0.939504,0][6.52325,2.19289,-0.42248][0.540393,-0.82868,0.145827][0.938256,0.951746,0][6.0774,2.15398,-0.180602][0.238028,-0.927081,0.289593][0.939678,0.951762,0][6.00537,2.0507,-0.452028][0.238028,-0.927081,0.289592][0.939275,0.952237,0][6.52325,2.19289,-0.42248][0.540393,-0.82868,0.145827][0.938256,0.951746,0][6.00537,2.0507,-0.452028][0.238028,-0.927081,0.289592][0.939275,0.952237,0][6.38365,2.05237,-0.703684][0.506304,-0.543306,0.669683][0.937955,0.952286,0][6.52325,2.19289,-0.42248][0.540393,-0.82868,0.145827][0.955333,0.952262,0][6.09408,2.42915,-0.112362][0.479101,-0.23852,0.844731][0.956652,0.951774,0][6.0774,2.15398,-0.180602][0.238028,-0.927081,0.289593][0.956723,0.952319,0][6.53829,2.48607,-0.267657][0.519427,-0.419724,0.74433][0.955265,0.951682,0][6.09408,2.42915,-0.112362][0.479101,-0.23852,0.844731][0.956652,0.951774,0][6.52325,2.19289,-0.42248][0.540393,-0.82868,0.145827][0.955333,0.952262,0][6.27294,2.51564,-0.68722][-0.491868,0.818926,-0.295679][0.978635,0.965577,0][5.88771,2.45311,-0.479328][-0.301001,0.910372,-0.28394][0.979189,0.9663,0][5.9929,2.55897,-0.251421][-0.301001,0.910372,-0.28394][0.978415,0.966481,0][6.27294,2.51564,-0.68722][-0.491868,0.818926,-0.295679][0.934654,0.946013,0][5.9929,2.55897,-0.251421][-0.301001,0.910372,-0.28394][0.935003,0.946862,0][6.39245,2.68114,-0.427641][-0.491868,0.818926,-0.295679][0.934094,0.946556,0][6.27294,2.51564,-0.68722][-0.48997,0.189893,-0.850805][0.949654,0.966863,0][5.92979,2.20554,-0.558816][-0.48997,0.189893,-0.850805][0.951005,0.966457,0][5.88771,2.45311,-0.479328][-0.48997,0.189893,-0.850805][0.951019,0.966979,0][6.27649,2.24017,-0.812335][-0.455081,0.517299,-0.724778][0.979244,0.965205,0][5.92979,2.20554,-0.558816][-0.578278,0.331175,-0.745599][0.979596,0.965945,0][6.27294,2.51564,-0.68722][-0.491868,0.818926,-0.295679][0.978635,0.965577,0][6.27649,2.24017,-0.812335][-0.495793,-0.629207,-0.598571][0.947887,0.957389,0][6.00537,2.0507,-0.452028][-0.408112,-0.644876,-0.646204][0.946898,0.957859,0][5.92979,2.20554,-0.558816][-0.408112,-0.644876,-0.646204][0.946691,0.957546,0][6.38365,2.05237,-0.703684][-0.495793,-0.629207,-0.598571][0.948208,0.957745,0][6.00537,2.0507,-0.452028][-0.408112,-0.644876,-0.646204][0.946898,0.957859,0][6.27649,2.24017,-0.812335][-0.495793,-0.629207,-0.598571][0.947887,0.957389,0][6.39245,2.68114,-0.427641][-0.141155,0.562555,0.814621][0.972675,0.967972,0][5.9929,2.55897,-0.251421][0.060266,0.751134,0.657394][0.971277,0.967849,0][6.09408,2.42915,-0.112362][0.060266,0.751134,0.657394][0.97137,0.967426,0][6.39245,2.68114,-0.427641][-0.141155,0.562555,0.814621][0.972675,0.967972,0][6.09408,2.42915,-0.112362][0.060266,0.751134,0.657394][0.97137,0.967426,0][6.53829,2.48607,-0.267657][-0.141155,0.562555,0.814621][0.972841,0.967409,0][6.00537,2.0507,-0.452028][0.238028,-0.927081,0.289592][0.939275,0.952237,0][5.18478,2.16966,0.221354][0.208189,-0.88776,0.410535][0.942489,0.951973,0][4.68792,2.03185,0.175305][0.208189,-0.88776,0.410535][0.943435,0.952472,0][6.0774,2.15398,-0.180602][0.238028,-0.927081,0.289593][0.939678,0.951762,0][5.18478,2.16966,0.221354][0.208189,-0.88776,0.410535][0.942489,0.951973,0][6.00537,2.0507,-0.452028][0.238028,-0.927081,0.289592][0.939275,0.952237,0][6.0774,2.15398,-0.180602][0.238028,-0.927081,0.289593][0.956723,0.952319,0][5.62536,2.43137,0.109422][0.389895,-0.281373,0.876819][0.95811,0.951748,0][5.18478,2.16966,0.221354][0.208189,-0.88776,0.410535][0.9595,0.952247,0][6.09408,2.42915,-0.112362][0.479101,-0.23852,0.844731][0.956652,0.951774,0][5.62536,2.43137,0.109422][0.389895,-0.281373,0.876819][0.95811,0.951748,0][6.0774,2.15398,-0.180602][0.238028,-0.927081,0.289593][0.956723,0.952319,0][5.88771,2.45311,-0.479328][-0.301001,0.910372,-0.28394][0.979189,0.9663,0][4.9785,2.53735,-0.0824615][-0.153999,0.833996,-0.529844][0.980324,0.968103,0][5.46847,2.65554,-0.0388378][-0.153999,0.833996,-0.529844][0.979029,0.967545,0][5.88771,2.45311,-0.479328][-0.301001,0.910372,-0.28394][0.979189,0.9663,0][5.46847,2.65554,-0.0388378][-0.153999,0.833996,-0.529844][0.979029,0.967545,0][5.9929,2.55897,-0.251421][-0.301001,0.910372,-0.28394][0.978415,0.966481,0][4.9785,2.53735,-0.0824615][-0.153999,0.833996,-0.529844][0.965582,0.952877,0][5.88771,2.45311,-0.479328][-0.301001,0.910372,-0.28394][0.967772,0.95403,0][5.92979,2.20554,-0.558816][-0.578278,0.331175,-0.745599][0.967446,0.954482,0][4.9785,2.53735,-0.0824615][-0.153999,0.833996,-0.529844][0.965582,0.952877,0][5.92979,2.20554,-0.558816][-0.578278,0.331175,-0.745599][0.967446,0.954482,0][4.56608,2.32468,-0.0412286][-0.293999,0.402012,-0.867151][0.964148,0.952765,0][5.18478,2.16966,0.221354][0.208189,-0.88776,0.410535][0.952604,0.947896,0][5.10615,2.21064,0.571312][0.320996,-0.929628,0.18098][0.951727,0.948185,0][4.70181,2.06831,0.557356][0.320996,-0.929628,0.18098][0.950793,0.947642,0][5.18478,2.16966,0.221354][0.208189,-0.88776,0.410535][0.942489,0.951973,0][4.70181,2.06831,0.557356][0.320996,-0.929628,0.18098][0.944089,0.95184,0][4.68792,2.03185,0.175305][0.208189,-0.88776,0.410535][0.943435,0.952472,0][5.18478,2.16966,0.221354][0.208189,-0.88776,0.410535][0.952604,0.947896,0][5.51048,2.35297,0.585269][0.320996,-0.929628,0.18098][0.952662,0.948728,0][5.10615,2.21064,0.571312][0.320996,-0.929628,0.18098][0.951727,0.948185,0][5.62536,2.43137,0.109422][0.506917,-0.861772,-0.0196009][0.942938,0.954482,0][5.51048,2.35297,0.585269][0.506917,-0.861772,-0.0196009][0.942846,0.953512,0][5.18478,2.16966,0.221354][0.506917,-0.861772,-0.0196009][0.944089,0.954018,0][4.9785,2.53735,-0.0824615][-0.153999,0.833996,-0.529844][0.965582,0.952877,0][4.7597,2.80732,0.0502472][-0.150432,0.335258,-0.930039][0.965492,0.952191,0][5.11397,2.9835,0.0564526][-0.150432,0.335258,-0.930039][0.966712,0.952298,0][4.9785,2.53735,-0.0824615][-0.153999,0.833996,-0.529844][0.965582,0.952877,0][5.11397,2.9835,0.0564526][-0.150432,0.335258,-0.930039][0.966712,0.952298,0][5.46847,2.65554,-0.0388378][-0.153999,0.833996,-0.529844][0.967049,0.95323,0][4.56608,2.32468,-0.0412286][-0.293999,0.402012,-0.867151][0.964148,0.952765,0][4.45813,2.65398,0.124289][-0.374496,0.315488,-0.871906][0.964448,0.952105,0][4.7597,2.80732,0.0502472][-0.150432,0.335258,-0.930039][0.965492,0.952191,0][4.56608,2.32468,-0.0412286][-0.293999,0.402012,-0.867151][0.964148,0.952765,0][4.7597,2.80732,0.0502472][-0.150432,0.335258,-0.930039][0.965492,0.952191,0][4.9785,2.53735,-0.0824615][-0.153999,0.833996,-0.529844][0.965582,0.952877,0][5.183,2.62143,0.756428][0.119134,-0.42636,0.896674][0.941264,0.966232,0][5.10615,2.21064,0.571312][0.320996,-0.929628,0.18098][0.940188,0.965766,0][5.51048,2.35297,0.585269][0.320996,-0.929628,0.18098][0.941389,0.965396,0][4.88843,2.50951,0.73965][0.110472,-0.425436,0.89822][0.940371,0.96649,0][5.10615,2.21064,0.571312][0.320996,-0.929628,0.18098][0.940188,0.965766,0][5.183,2.62143,0.756428][0.119134,-0.42636,0.896674][0.941264,0.966232,0][4.88843,2.50951,0.73965][0.110472,-0.425436,0.89822][0.940371,0.96649,0][4.70181,2.06831,0.557356][0.320996,-0.929628,0.18098][0.938987,0.966136,0][5.10615,2.21064,0.571312][0.320996,-0.929628,0.18098][0.940188,0.965766,0][4.59387,2.3976,0.722873][0.107486,-0.418144,0.901999][0.939478,0.966748,0][4.70181,2.06831,0.557356][0.320996,-0.929628,0.18098][0.938987,0.966136,0][4.88843,2.50951,0.73965][0.110472,-0.425436,0.89822][0.940371,0.96649,0][4.98474,2.93669,0.492019][-0.246556,0.527043,0.813287][0.962628,0.942934,0][4.88843,2.50951,0.73965][-0.246556,0.527043,0.813287][0.963492,0.943765,0][5.183,2.62143,0.756428][-0.246556,0.527043,0.813287][0.962516,0.943837,0][4.72838,2.81357,0.49918][-0.229943,0.526364,0.818576][0.963513,0.942935,0][4.88843,2.50951,0.73965][-0.246556,0.527043,0.813287][0.963492,0.943765,0][4.98474,2.93669,0.492019][-0.246556,0.527043,0.813287][0.962628,0.942934,0][4.72838,2.81357,0.49918][-0.229943,0.526364,0.818576][0.963513,0.942935,0][4.59387,2.3976,0.722873][-0.243951,0.519334,0.819011][0.964468,0.943694,0][4.88843,2.50951,0.73965][-0.246556,0.527043,0.813287][0.963492,0.943765,0][4.47202,2.69044,0.50634][-0.22522,0.516956,0.825853][0.964398,0.942935,0][4.59387,2.3976,0.722873][-0.243951,0.519334,0.819011][0.964468,0.943694,0][4.72838,2.81357,0.49918][-0.229943,0.526364,0.818576][0.963513,0.942935,0][4.7597,2.80732,0.0502472][-0.150432,0.335258,-0.930039][0.95595,0.953203,0][4.72838,2.81357,0.49918][-0.433515,0.900131,-0.0427556][0.955706,0.954079,0][4.98474,2.93669,0.492019][-0.433515,0.900131,-0.0427556][0.955039,0.953982,0][4.7597,2.80732,0.0502472][-0.150432,0.335258,-0.930039][0.95595,0.953203,0][4.98474,2.93669,0.492019][-0.433515,0.900131,-0.0427556][0.955039,0.953982,0][5.11397,2.9835,0.0564526][-0.150432,0.335258,-0.930039][0.955001,0.953098,0][4.45813,2.65398,0.124289][-0.374496,0.315488,-0.871906][0.95672,0.953448,0][4.47202,2.69044,0.50634][-0.433466,0.898449,-0.0699797][0.956374,0.954177,0][4.72838,2.81357,0.49918][-0.433515,0.900131,-0.0427556][0.955706,0.954079,0][4.45813,2.65398,0.124289][-0.374496,0.315488,-0.871906][0.95672,0.953448,0][4.72838,2.81357,0.49918][-0.433515,0.900131,-0.0427556][0.955706,0.954079,0][4.7597,2.80732,0.0502472][-0.150432,0.335258,-0.930039][0.95595,0.953203,0][4.68792,2.03185,0.175305][-0.323189,-0.639096,-0.69793][0.942722,0.957827,0][5.92979,2.20554,-0.558816][-0.408112,-0.644876,-0.646204][0.946691,0.957546,0][6.00537,2.0507,-0.452028][-0.408112,-0.644876,-0.646204][0.946898,0.957859,0][4.56608,2.32468,-0.0412286][-0.319609,-0.645741,-0.693447][0.942404,0.957228,0][5.92979,2.20554,-0.558816][-0.408112,-0.644876,-0.646204][0.946691,0.957546,0][4.68792,2.03185,0.175305][-0.323189,-0.639096,-0.69793][0.942722,0.957827,0][5.62536,2.43137,0.109422][0.379462,0.680286,0.627072][0.969799,0.967443,0][5.9929,2.55897,-0.251421][0.060266,0.751134,0.657394][0.971277,0.967849,0][5.46847,2.65554,-0.0388378][0.379462,0.680286,0.627072][0.969607,0.968035,0][6.09408,2.42915,-0.112362][0.060266,0.751134,0.657394][0.97137,0.967426,0][5.9929,2.55897,-0.251421][0.060266,0.751134,0.657394][0.971277,0.967849,0][5.62536,2.43137,0.109422][0.379462,0.680286,0.627072][0.969799,0.967443,0][7.80546,4.8208,1.30345][0.45404,-0.364681,0.81293][0.951873,0.965615,0][7.54039,4.73891,1.30882][0.138826,-0.389588,0.910466][0.951111,0.965873,0][7.70309,4.47357,1.17048][0.138826,-0.389588,0.910466][0.950882,0.965274,0][7.80546,4.8208,1.30345][0.45404,-0.364681,0.81293][0.951873,0.965615,0][7.70309,4.47357,1.17048][0.138826,-0.389588,0.910466][0.950882,0.965274,0][8.06539,4.54181,1.03312][0.45404,-0.364681,0.81293][0.951827,0.96486,0][8.06539,4.54181,1.03312][0.45404,-0.364681,0.81293][0.929831,0.961889,0][7.70309,4.47357,1.17048][0.138826,-0.389588,0.910466][0.928805,0.961894,0][7.71305,4.43758,0.831923][0.223941,-0.968428,0.10953][0.929305,0.961301,0][8.06539,4.54181,1.03312][0.45404,-0.364681,0.81293][0.929831,0.961889,0][7.71305,4.43758,0.831923][0.223941,-0.968428,0.10953][0.929305,0.961301,0][8.21537,4.54636,0.696088][0.518146,-0.726336,0.45162][0.930641,0.961388,0][8.03212,4.82153,0.455876][-0.129987,-0.699766,-0.702446][0.951154,0.943087,0][7.71305,4.43758,0.831923][-0.0522601,-0.676254,-0.734813][0.952794,0.942428,0][7.56032,4.66693,0.631713][-0.0522601,-0.676254,-0.734813][0.952787,0.943103,0][8.21537,4.54636,0.696088][-0.129987,-0.699766,-0.702446][0.951162,0.942278,0][7.71305,4.43758,0.831923][-0.0522601,-0.676254,-0.734813][0.952794,0.942428,0][8.03212,4.82153,0.455876][-0.129987,-0.699766,-0.702446][0.951154,0.943087,0][7.77089,5.03068,0.65553][-0.268484,0.46827,-0.841808][0.977135,0.951912,0][7.56032,4.66693,0.631713][-0.345047,0.258826,-0.902192][0.975956,0.952272,0][7.39762,4.93227,0.770059][-0.345047,0.258826,-0.902192][0.976003,0.951656,0][8.03212,4.82153,0.455876][-0.456356,0.51342,-0.726732][0.97744,0.952546,0][7.56032,4.66693,0.631713][-0.345047,0.258826,-0.902192][0.975956,0.952272,0][7.77089,5.03068,0.65553][-0.268484,0.46827,-0.841808][0.977135,0.951912,0][7.62221,5.09597,1.06324][-0.439532,0.848018,-0.296102][0.945314,0.95393,0][7.39762,4.93227,0.770059][-0.345047,0.258826,-0.902192][0.946232,0.953451,0][7.38766,4.96826,1.10861][-0.491294,0.864477,-0.106346][0.945944,0.954099,0][7.77089,5.03068,0.65553][-0.268484,0.46827,-0.841808][0.930286,0.967941,0][7.39762,4.93227,0.770059][-0.345047,0.258826,-0.902192][0.92907,0.967995,0][7.62221,5.09597,1.06324][-0.439532,0.848018,-0.296102][0.929478,0.967245,0][7.62221,5.09597,1.06324][-0.16944,0.581663,0.795587][0.94279,0.966492,0][7.38766,4.96826,1.10861][-0.164398,0.584275,0.79473][0.943633,0.966511,0][7.54039,4.73891,1.30882][-0.164398,0.584275,0.79473][0.943626,0.967185,0][7.62221,5.09597,1.06324][-0.16944,0.581663,0.795587][0.94279,0.966492,0][7.54039,4.73891,1.30882][-0.164398,0.584275,0.79473][0.943626,0.967185,0][7.80546,4.8208,1.30345][-0.16944,0.581663,0.795587][0.942782,0.967302,0][7.54039,4.73891,1.30882][0.138826,-0.389588,0.910466][0.951111,0.965873,0][6.93403,4.29057,1.24032][0.177689,-0.379082,0.908143][0.948791,0.9661,0][7.1188,4.10259,1.1257][0.177689,-0.379082,0.908143][0.948781,0.965578,0][7.54039,4.73891,1.30882][0.138826,-0.389588,0.910466][0.951111,0.965873,0][7.1188,4.10259,1.1257][0.177689,-0.379082,0.908143][0.948781,0.965578,0][7.70309,4.47357,1.17048][0.138826,-0.389588,0.910466][0.950882,0.965274,0][7.70309,4.47357,1.17048][0.52866,-0.843791,0.0923825][0.933843,0.954108,0][7.1188,4.10259,1.1257][0.52866,-0.843791,0.0923824][0.935616,0.953844,0][7.16196,4.09852,0.841562][0.52866,-0.843791,0.0923824][0.935839,0.95439,0][7.70309,4.47357,1.17048][0.138826,-0.389588,0.910466][0.95769,0.942178,0][7.16196,4.09852,0.841562][0.522435,-0.846151,0.105314][0.959735,0.942163,0][7.71305,4.43758,0.831923][0.223941,-0.968428,0.10953][0.958305,0.942726,0][7.56032,4.66693,0.631713][-0.0522601,-0.676254,-0.734813][0.952787,0.943103,0][7.16196,4.09852,0.841562][0.302616,-0.509468,-0.805522][0.954574,0.942462,0][7.02035,4.28243,0.672043][0.302616,-0.509468,-0.805522][0.95461,0.94303,0][7.71305,4.43758,0.831923][-0.0522601,-0.676254,-0.734813][0.952794,0.942428,0][7.16196,4.09852,0.841562][0.302616,-0.509468,-0.805522][0.954574,0.942462,0][7.56032,4.66693,0.631713][-0.0522601,-0.676254,-0.734813][0.952787,0.943103,0][7.39762,4.93227,0.770059][-0.345047,0.258826,-0.902192][0.976003,0.951656,0][7.02035,4.28243,0.672043][-0.269144,0.294559,-0.916949][0.973893,0.952299,0][6.83558,4.47042,0.786663][-0.269144,0.294559,-0.916949][0.973747,0.951785,0][7.56032,4.66693,0.631713][-0.345047,0.258826,-0.902192][0.975956,0.952272,0][7.02035,4.28243,0.672043][-0.269144,0.294559,-0.916949][0.973893,0.952299,0][7.39762,4.93227,0.770059][-0.345047,0.258826,-0.902192][0.976003,0.951656,0][7.38766,4.96826,1.10861][-0.491294,0.864477,-0.106346][0.945944,0.954099,0][6.83558,4.47042,0.786663][-0.269144,0.294559,-0.916949][0.948227,0.953732,0][6.79242,4.47448,1.0708][-0.630781,0.768574,-0.106815][0.948102,0.954291,0][7.39762,4.93227,0.770059][-0.345047,0.258826,-0.902192][0.946232,0.953451,0][6.83558,4.47042,0.786663][-0.269144,0.294559,-0.916949][0.948227,0.953732,0][7.38766,4.96826,1.10861][-0.491294,0.864477,-0.106346][0.945944,0.954099,0][7.38766,4.96826,1.10861][-0.164398,0.584275,0.79473][0.943633,0.966511,0][6.79242,4.47448,1.0708][-0.407351,0.429325,0.806068][0.945942,0.966606,0][6.93403,4.29057,1.24032][-0.407351,0.429325,0.806068][0.945888,0.967174,0][7.38766,4.96826,1.10861][-0.164398,0.584275,0.79473][0.943633,0.966511,0][6.93403,4.29057,1.24032][-0.407351,0.429325,0.806068][0.945888,0.967174,0][7.54039,4.73891,1.30882][-0.164398,0.584275,0.79473][0.943626,0.967185,0][6.93403,4.29057,1.24032][0.177689,-0.379082,0.908143][0.948791,0.9661,0][6.3239,3.72939,1.05367][0.121183,-0.429404,0.894945][0.946213,0.966174,0][6.5255,3.56733,0.948618][0.121183,-0.429404,0.894945][0.946298,0.965665,0][6.93403,4.29057,1.24032][0.177689,-0.379082,0.908143][0.948791,0.9661,0][6.5255,3.56733,0.948618][0.121183,-0.429404,0.894945][0.946298,0.965665,0][7.1188,4.10259,1.1257][0.177689,-0.379082,0.908143][0.948781,0.965578,0][7.16196,4.09852,0.841562][0.52866,-0.843791,0.0923824][0.935839,0.95439,0][6.5255,3.56733,0.948618][0.647656,-0.754256,0.107886][0.937966,0.953739,0][6.59838,3.59151,0.680199][0.647656,-0.754256,0.107886][0.938061,0.954278,0][7.1188,4.10259,1.1257][0.52866,-0.843791,0.0923824][0.935616,0.953844,0][6.5255,3.56733,0.948618][0.647656,-0.754256,0.107886][0.937966,0.953739,0][7.16196,4.09852,0.841562][0.52866,-0.843791,0.0923824][0.935839,0.95439,0][7.02035,4.28243,0.672043][0.522811,-0.328586,-0.786575][0.938496,0.963367,0][6.59838,3.59151,0.680199][0.647656,-0.754256,0.107886][0.936154,0.963958,0][6.46965,3.77775,0.516836][0.522811,-0.328586,-0.786575][0.936122,0.963405,0][7.16196,4.09852,0.841562][0.52866,-0.843791,0.0923824][0.938566,0.963935,0][6.59838,3.59151,0.680199][0.647656,-0.754256,0.107886][0.936154,0.963958,0][7.02035,4.28243,0.672043][0.522811,-0.328586,-0.786575][0.938496,0.963367,0][7.02035,4.28243,0.672043][-0.269144,0.294559,-0.916949][0.973893,0.952299,0][6.46965,3.77775,0.516836][-0.131075,0.419296,-0.898338][0.971592,0.952511,0][6.26804,3.93981,0.621893][-0.131075,0.419296,-0.898338][0.971357,0.95202,0][7.02035,4.28243,0.672043][-0.269144,0.294559,-0.916949][0.973893,0.952299,0][6.26804,3.93981,0.621893][-0.131075,0.419296,-0.898338][0.971357,0.95202,0][6.83558,4.47042,0.786663][-0.269144,0.294559,-0.916949][0.973747,0.951785,0][6.83558,4.47042,0.786663][-0.269144,0.294559,-0.916949][0.948227,0.953732,0][6.26804,3.93981,0.621893][-0.131075,0.419296,-0.898338][0.950527,0.953685,0][6.19517,3.91563,0.890312][-0.660953,0.74193,-0.112609][0.950528,0.954227,0][6.83558,4.47042,0.786663][-0.269144,0.294559,-0.916949][0.948227,0.953732,0][6.19517,3.91563,0.890312][-0.660953,0.74193,-0.112609][0.950528,0.954227,0][6.79242,4.47448,1.0708][-0.630781,0.768574,-0.106815][0.948102,0.954291,0][6.79242,4.47448,1.0708][-0.534169,0.317888,0.783333][0.941314,0.961711,0][6.19517,3.91563,0.890312][-0.534169,0.317888,0.783333][0.938707,0.961729,0][6.3239,3.72939,1.05367][-0.534169,0.317888,0.783333][0.938706,0.961175,0][6.79242,4.47448,1.0708][-0.534169,0.317888,0.783333][0.941314,0.961711,0][6.3239,3.72939,1.05367][-0.534169,0.317888,0.783333][0.938706,0.961175,0][6.93403,4.29057,1.24032][-0.531037,0.315851,0.786281][0.94135,0.961142,0][6.5255,3.56733,0.948618][0.121183,-0.429404,0.894945][0.946298,0.965665,0][5.183,2.62143,0.756428][0.119134,-0.42636,0.896674][0.941264,0.966232,0][5.51048,2.35297,0.585269][0.320996,-0.929628,0.18098][0.941389,0.965396,0][6.3239,3.72939,1.05367][0.121183,-0.429404,0.894945][0.946213,0.966174,0][5.183,2.62143,0.756428][0.119134,-0.42636,0.896674][0.941264,0.966232,0][6.5255,3.56733,0.948618][0.121183,-0.429404,0.894945][0.946298,0.965665,0][6.59838,3.59151,0.680199][0.647656,-0.754256,0.107886][0.938061,0.954278,0][5.51048,2.35297,0.585269][0.506917,-0.861772,-0.0196009][0.942846,0.953512,0][5.62536,2.43137,0.109422][0.506917,-0.861772,-0.0196009][0.942938,0.954482,0][6.5255,3.56733,0.948618][0.647656,-0.754256,0.107886][0.937966,0.953739,0][5.51048,2.35297,0.585269][0.506917,-0.861772,-0.0196009][0.942846,0.953512,0][6.59838,3.59151,0.680199][0.647656,-0.754256,0.107886][0.938061,0.954278,0][6.59838,3.59151,0.680199][0.647656,-0.754256,0.107886][0.936154,0.963958,0][5.62536,2.43137,0.109422][0.506917,-0.861772,-0.0196009][0.93122,0.964054,0][5.46847,2.65554,-0.0388378][0.596254,-0.108754,-0.795395][0.931211,0.963442,0][6.59838,3.59151,0.680199][0.647656,-0.754256,0.107886][0.936154,0.963958,0][5.46847,2.65554,-0.0388378][0.596254,-0.108754,-0.795395][0.931211,0.963442,0][6.46965,3.77775,0.516836][0.522811,-0.328586,-0.786575][0.936122,0.963405,0][6.46965,3.77775,0.516836][-0.131075,0.419296,-0.898338][0.971592,0.952511,0][5.46847,2.65554,-0.0388378][-0.153999,0.833996,-0.529844][0.967049,0.95323,0][5.11397,2.9835,0.0564526][-0.150432,0.335258,-0.930039][0.966712,0.952298,0][6.46965,3.77775,0.516836][-0.131075,0.419296,-0.898338][0.971592,0.952511,0][5.11397,2.9835,0.0564526][-0.150432,0.335258,-0.930039][0.966712,0.952298,0][6.26804,3.93981,0.621893][-0.131075,0.419296,-0.898338][0.971357,0.95202,0][6.26804,3.93981,0.621893][-0.131075,0.419296,-0.898338][0.950527,0.953685,0][5.11397,2.9835,0.0564526][-0.150432,0.335258,-0.930039][0.955001,0.953098,0][4.98474,2.93669,0.492019][-0.433515,0.900131,-0.0427556][0.955039,0.953982,0][6.26804,3.93981,0.621893][-0.131075,0.419296,-0.898338][0.950527,0.953685,0][4.98474,2.93669,0.492019][-0.433515,0.900131,-0.0427556][0.955039,0.953982,0][6.19517,3.91563,0.890312][-0.660953,0.74193,-0.112609][0.950528,0.954227,0][6.19517,3.91563,0.890312][-0.534169,0.317888,0.783333][0.938707,0.961729,0][4.98474,2.93669,0.492019][-0.524423,0.328894,0.785372][0.933724,0.962005,0][5.183,2.62143,0.756428][-0.524423,0.328894,0.785372][0.933672,0.961101,0][6.19517,3.91563,0.890312][-0.534169,0.317888,0.783333][0.938707,0.961729,0][5.183,2.62143,0.756428][-0.524423,0.328894,0.785372][0.933672,0.961101,0][6.3239,3.72939,1.05367][-0.534169,0.317888,0.783333][0.938706,0.961175,0][4.70181,2.06831,0.557356][0.320996,-0.929628,0.18098][0.938987,0.966136,0][3.52643,1.81057,0.791623][0.256307,-0.349855,0.901059][0.93584,0.967429,0][3.77196,1.38606,0.55696][0.256307,-0.349855,0.901059][0.935441,0.966491,0][4.59387,2.3976,0.722873][0.107486,-0.418144,0.901999][0.939478,0.966748,0][3.52643,1.81057,0.791623][0.256307,-0.349855,0.901059][0.93584,0.967429,0][4.70181,2.06831,0.557356][0.320996,-0.929628,0.18098][0.938987,0.966136,0][4.68792,2.03185,0.175305][0.597403,-0.797493,0.0843519][0.94501,0.940922,0][3.77196,1.38606,0.55696][0.597403,-0.797493,0.0843519][0.948036,0.940166,0][3.82016,1.36494,0.0158648][0.597403,-0.797493,0.0843519][0.948032,0.941238,0][4.70181,2.06831,0.557356][0.590637,-0.805036,0.0553506][0.944888,0.940165,0][3.77196,1.38606,0.55696][0.597403,-0.797493,0.0843519][0.948036,0.940166,0][4.68792,2.03185,0.175305][0.597403,-0.797493,0.0843519][0.94501,0.940922,0][4.68792,2.03185,0.175305][-0.323189,-0.639096,-0.69793][0.964748,0.936125,0][3.82016,1.36494,0.0158648][0.421653,-0.348514,-0.837106][0.968161,0.935838,0][3.60166,1.78669,-0.269781][0.421653,-0.348514,-0.837106][0.968258,0.936934,0][4.68792,2.03185,0.175305][-0.323189,-0.639096,-0.69793][0.964748,0.936125,0][3.60166,1.78669,-0.269781][0.421653,-0.348514,-0.837106][0.968258,0.936934,0][4.56608,2.32468,-0.0412286][-0.319609,-0.645741,-0.693447][0.96475,0.936884,0][4.56608,2.32468,-0.0412286][-0.293999,0.402012,-0.867151][0.964148,0.952765,0][3.60166,1.78669,-0.269781][-0.038753,0.44876,-0.892812][0.960724,0.952569,0][3.37731,2.19283,-0.0559047][-0.038753,0.44876,-0.892812][0.96086,0.951654,0][4.56608,2.32468,-0.0412286][-0.293999,0.402012,-0.867151][0.964148,0.952765,0][3.37731,2.19283,-0.0559047][-0.038753,0.44876,-0.892812][0.96086,0.951654,0][4.45813,2.65398,0.124289][-0.374496,0.315488,-0.871906][0.964448,0.952105,0][4.45813,2.65398,0.124289][-0.374496,0.315488,-0.871906][0.95672,0.953448,0][3.37731,2.19283,-0.0559047][-0.038753,0.44876,-0.892812][0.9595,0.953429,0][3.32911,2.21395,0.485191][-0.381586,0.921681,-0.0699723][0.959182,0.954482,0][4.45813,2.65398,0.124289][-0.374496,0.315488,-0.871906][0.95672,0.953448,0][3.32911,2.21395,0.485191][-0.381586,0.921681,-0.0699723][0.959182,0.954482,0][4.47202,2.69044,0.50634][-0.433466,0.898449,-0.0699797][0.956374,0.954177,0][4.59387,2.3976,0.722873][-0.243951,0.519334,0.819011][0.964468,0.943694,0][3.32911,2.21395,0.485191][-0.229963,0.514871,0.825848][0.968244,0.942771,0][3.52643,1.81057,0.791623][-0.229963,0.514871,0.825848][0.968258,0.943848,0][4.47202,2.69044,0.50634][-0.22522,0.516956,0.825853][0.964398,0.942935,0][3.32911,2.21395,0.485191][-0.229963,0.514871,0.825848][0.968244,0.942771,0][4.59387,2.3976,0.722873][-0.243951,0.519334,0.819011][0.964468,0.943694,0][8.95304,6.49426,1.37929][-0.197215,0.504097,-0.840829][0.930881,0.943078,0][9.21916,6.87044,1.57265][-0.544429,0.703349,-0.457053][0.932315,0.94273,0][9.18254,6.7192,1.38355][-0.544429,0.703349,-0.457054][0.931818,0.943093,0][8.91598,6.8167,1.58129][-0.0113337,0.774344,-0.632664][0.950424,0.937519,0][9.21916,6.87044,1.57265][-0.544429,0.703349,-0.457053][0.949845,0.937033,0][8.95304,6.49426,1.37929][-0.197215,0.504097,-0.840829][0.951265,0.937162,0][3.57916,1.79643,0.254395][-0.872883,-0.48244,-0.0729891][0.975849,0.943044,0][3.52643,1.81057,0.791623][-0.872883,-0.48244,-0.0729891][0.97753,0.943028,0][3.32911,2.21395,0.485191][-0.872883,-0.48244,-0.0729891][0.976705,0.943785,0][3.57916,1.79643,0.254395][-0.872883,-0.48244,-0.0729891][0.975849,0.943044,0][3.32911,2.21395,0.485191][-0.872883,-0.48244,-0.0729891][0.976705,0.943785,0][3.37731,2.19283,-0.0559047][-0.870347,-0.488958,-0.0584488][0.975013,0.943803,0][3.57916,1.79643,0.254395][-0.872883,-0.48244,-0.0729891][0.975849,0.943044,0][3.37731,2.19283,-0.0559047][-0.870347,-0.488958,-0.0584488][0.975013,0.943803,0][3.60166,1.78669,-0.269781][-0.881352,-0.471565,-0.0290696][0.974219,0.943113,0][3.57916,1.79643,0.254395][-0.872883,-0.48244,-0.0729891][0.975849,0.943044,0][3.60166,1.78669,-0.269781][-0.881352,-0.471565,-0.0290696][0.974219,0.943113,0][3.82016,1.36494,0.0158648][-0.879411,-0.475185,-0.028919][0.97497,0.942308,0][3.57916,1.79643,0.254395][-0.872883,-0.48244,-0.0729891][0.975849,0.943044,0][3.82016,1.36494,0.0158648][-0.879411,-0.475185,-0.028919][0.97497,0.942308,0][3.77196,1.38606,0.55696][-0.885386,-0.460851,-0.0608857][0.976662,0.94229,0][3.57916,1.79643,0.254395][-0.872883,-0.48244,-0.0729891][0.975849,0.943044,0][3.77196,1.38606,0.55696][-0.885386,-0.460851,-0.0608857][0.976662,0.94229,0][3.52643,1.81057,0.791623][-0.872883,-0.48244,-0.0729891][0.97753,0.943028,0][-7.2062,3.45705,-0.417221][-0.763562,0.644729,0.0360178][0.974144,0.948536,0][-7.20239,3.4587,-0.365979][-0.763562,0.644729,0.0360178][0.974093,0.94844,0][-7.17705,3.49012,-0.391192][-0.763562,0.644729,0.0360178][0.974236,0.948457,0][-7.2062,3.45705,-0.417221][-0.763562,0.644729,0.0360178][0.974144,0.948536,0][-7.21204,3.45398,-0.462943][-0.780924,0.621942,0.0578417][0.974182,0.948624,0][-7.23172,3.42795,-0.448834][-0.780924,0.621942,0.0578417][0.974073,0.948622,0][-7.2062,3.45705,-0.417221][-0.763562,0.644729,0.0360178][0.974144,0.948536,0][-7.18698,3.48064,-0.437717][-0.75166,0.657521,0.0517114][0.974253,0.948552,0][-7.21204,3.45398,-0.462943][-0.780924,0.621942,0.0578417][0.974182,0.948624,0][-7.2062,3.45705,-0.417221][-0.763562,0.644729,0.0360178][0.974144,0.948536,0][-7.17705,3.49012,-0.391192][-0.763562,0.644729,0.0360178][0.974236,0.948457,0][-7.18698,3.48064,-0.437717][-0.75166,0.657521,0.0517114][0.974253,0.948552,0][-7.2062,3.45705,-0.417221][-0.763562,0.644729,0.0360178][0.974144,0.948536,0][-7.22704,3.43091,-0.396663][-0.767341,0.640203,0.0364445][0.974026,0.948522,0][-7.20239,3.4587,-0.365979][-0.763562,0.644729,0.0360178][0.974093,0.94844,0][-7.2062,3.45705,-0.417221][-0.763562,0.644729,0.0360178][0.974144,0.948536,0][-7.23172,3.42795,-0.448834][-0.780924,0.621942,0.0578417][0.974073,0.948622,0][-7.22704,3.43091,-0.396663][-0.767341,0.640203,0.0364445][0.974026,0.948522,0][-6.77389,2.23321,-1.61228][-0.41529,-0.115078,-0.902381][0.931589,0.936652,0][-6.77455,2.16555,-1.60335][-0.41529,-0.115078,-0.902381][0.93146,0.936546,0][-6.82779,2.22772,-1.58677][-0.41529,-0.115078,-0.902381][0.93171,0.936578,0][-6.77389,2.23321,-1.61228][-0.420618,-0.0720129,-0.904375][0.946071,0.948615,0][-6.82779,2.22772,-1.58677][-0.420618,-0.0720129,-0.904375][0.946188,0.948692,0][-6.77444,2.29501,-1.61694][-0.420618,-0.0720129,-0.904375][0.945921,0.948692,0][-6.77389,2.23321,-1.61228][-0.41529,-0.115078,-0.902381][0.931589,0.936652,0][-6.77444,2.29501,-1.61694][-0.39306,-0.0726919,-0.916635][0.931709,0.936748,0][-6.72142,2.23704,-1.63508][-0.39306,-0.0726919,-0.916635][0.931468,0.936722,0][-6.77389,2.23321,-1.61228][-0.41529,-0.115078,-0.902381][0.931589,0.936652,0][-6.72142,2.23704,-1.63508][-0.39306,-0.0726919,-0.916635][0.931468,0.936722,0][-6.77455,2.16555,-1.60335][-0.41529,-0.115078,-0.902381][0.93146,0.936546,0][-6.31126,1.79926,-1.6626][0.455915,-0.63209,-0.626581][0.954456,0.964902,0][-6.24026,1.82415,-1.63606][0.455915,-0.63209,-0.626581][0.954626,0.965017,0][-6.29975,1.74738,-1.6019][0.455915,-0.63209,-0.626581][0.954306,0.96503,0][-6.31126,1.79926,-1.6626][0.455915,-0.63209,-0.626581][0.928795,0.94671,0][-6.30952,1.85662,-1.69882][0.450468,-0.486319,-0.748713][0.928912,0.946796,0][-6.24026,1.82415,-1.63606][0.455915,-0.63209,-0.626581][0.928685,0.946842,0][-6.31126,1.79926,-1.6626][0.455915,-0.63209,-0.626581][0.928795,0.94671,0][-6.36723,1.78419,-1.66633][0.196948,-0.52764,-0.826321][0.928892,0.946613,0][-6.30952,1.85662,-1.69882][0.450468,-0.486319,-0.748713][0.928912,0.946796,0][-6.31126,1.79926,-1.6626][0.455915,-0.63209,-0.626581][0.954456,0.964902,0][-6.29975,1.74738,-1.6019][0.455915,-0.63209,-0.626581][0.954306,0.96503,0][-6.36723,1.78419,-1.66633][0.196948,-0.52764,-0.826321][0.954317,0.964834,0][-7.30552,3.50747,-1.55907][-0.201239,0.829347,-0.521236][0.92944,0.936681,0][-7.30201,3.54235,-1.50494][-0.201239,0.829347,-0.521236][0.929253,0.936634,0][-7.266,3.54339,-1.51719][-0.201239,0.829347,-0.521236][0.929318,0.936571,0][-7.35007,3.46926,-1.58806][-0.264776,0.759495,-0.59419][0.929526,0.936797,0][-7.30552,3.50747,-1.55907][-0.201239,0.829347,-0.521236][0.92944,0.936681,0][-7.29433,3.4744,-1.60634][-0.264775,0.759495,-0.59419][0.92962,0.936697,0][-7.24619,3.51436,-1.5765][-0.262728,0.760199,-0.594198][0.929533,0.936572,0][-7.29433,3.4744,-1.60634][-0.264775,0.759495,-0.59419][0.92962,0.936697,0][-7.30552,3.50747,-1.55907][-0.201239,0.829347,-0.521236][0.92944,0.936681,0][-7.266,3.54339,-1.51719][-0.201239,0.829347,-0.521236][0.929318,0.936571,0][-7.24619,3.51436,-1.5765][-0.262728,0.760199,-0.594198][0.929533,0.936572,0][-7.30552,3.50747,-1.55907][-0.201239,0.829347,-0.521236][0.92944,0.936681,0][-7.30552,3.50747,-1.55907][-0.201239,0.829347,-0.521236][0.92944,0.936681,0][-7.35007,3.46926,-1.58806][-0.264776,0.759495,-0.59419][0.929526,0.936797,0][-7.35919,3.50477,-1.52664][-0.346385,0.788928,-0.507552][0.929308,0.936771,0][-7.30552,3.50747,-1.55907][-0.201239,0.829347,-0.521236][0.92944,0.936681,0][-7.35919,3.50477,-1.52664][-0.346385,0.788928,-0.507552][0.929308,0.936771,0][-7.30201,3.54235,-1.50494][-0.201239,0.829347,-0.521236][0.929253,0.936634,0][-7.88181,5.32381,0.749328][0.0907224,0.952318,-0.291308][0.974925,0.956857,0][-8.11746,5.38343,0.870836][0.0907224,0.952318,-0.291308][0.975668,0.957098,0][-7.7976,5.35111,0.864814][0.0907224,0.952318,-0.291308][0.974723,0.957086,0][-7.96542,5.10422,1.17][-0.688478,-0.192882,0.699139][0.979408,0.950492,0][-8.191,5.27466,0.994882][-0.688478,-0.192882,0.699139][0.978904,0.949917,0][-8.07198,5.0369,1.04649][-0.688478,-0.192882,0.699139][0.979643,0.950176,0][-9.14668,6.98361,-0.183342][0.348717,0.847598,0.399969][0.951641,0.949748,0][-9.15993,7.01221,-0.232407][0.348717,0.847598,0.399969][0.951794,0.949699,0][-9.20396,7.00741,-0.18384][0.348717,0.847598,0.399969][0.951796,0.949821,0][-9.14668,6.98361,-0.183342][0.278338,0.830643,0.482245][0.973848,0.959076,0][-9.13106,6.95172,-0.137436][0.278338,0.830643,0.482245][0.973787,0.958977,0][-9.09176,6.96308,-0.179688][0.278338,0.830643,0.482245][0.97395,0.958979,0][-9.14668,6.98361,-0.183342][0.278338,0.830643,0.482245][0.973848,0.959076,0][-9.18344,6.97554,-0.142128][0.33349,0.823672,0.458638][0.97369,0.959073,0][-9.13106,6.95172,-0.137436][0.278338,0.830643,0.482245][0.973787,0.958977,0][-9.14668,6.98361,-0.183342][0.278338,0.830643,0.482245][0.973848,0.959076,0][-9.20396,7.00741,-0.18384][0.337038,0.820772,0.461235][0.973732,0.959174,0][-9.18344,6.97554,-0.142128][0.33349,0.823672,0.458638][0.97369,0.959073,0][-9.14668,6.98361,-0.183342][0.278338,0.830643,0.482245][0.973848,0.959076,0][-9.09176,6.96308,-0.179688][0.278338,0.830643,0.482245][0.97395,0.958979,0][-9.10991,6.99167,-0.224557][0.291403,0.855829,0.427366][0.974007,0.959078,0][-9.14668,6.98361,-0.183342][0.278338,0.830643,0.482245][0.973848,0.959076,0][-9.10991,6.99167,-0.224557][0.291403,0.855829,0.427366][0.974007,0.959078,0][-9.15993,7.01221,-0.232407][0.286451,0.859347,0.423638][0.973924,0.959172,0][-9.8741,7.10083,0.231262][-0.441424,0.889751,0.116138][0.950963,0.948579,0][-9.9008,7.0803,0.28709][-0.441424,0.889751,0.116138][0.950813,0.948666,0][-9.83181,7.1158,0.277329][-0.441424,0.889751,0.116138][0.950793,0.948511,0][-9.8741,7.10083,0.231262][-0.441424,0.889751,0.116138][0.950963,0.948579,0][-9.85127,7.11943,0.172862][-0.433549,0.893744,0.115136][0.951123,0.948499,0][-9.91252,7.0878,0.187766][-0.433549,0.893744,0.115136][0.951122,0.948639,0][-9.8741,7.10083,0.231262][-0.441424,0.889751,0.116138][0.950963,0.948579,0][-9.91252,7.0878,0.187766][-0.433549,0.893744,0.115136][0.951122,0.948639,0][-9.93156,7.07138,0.242071][-0.435456,0.892551,0.117177][0.950971,0.948709,0][-9.8741,7.10083,0.231262][-0.441424,0.889751,0.116138][0.950963,0.948579,0][-9.93156,7.07138,0.242071][-0.435456,0.892551,0.117177][0.950971,0.948709,0][-9.9008,7.0803,0.28709][-0.441424,0.889751,0.116138][0.950813,0.948666,0][-9.8741,7.10083,0.231262][-0.441424,0.889751,0.116138][0.950963,0.948579,0][-9.81664,7.13028,0.220452][-0.436113,0.892668,0.113791][0.950954,0.948449,0][-9.85127,7.11943,0.172862][-0.433549,0.893744,0.115136][0.951123,0.948499,0][-9.8741,7.10083,0.231262][-0.441424,0.889751,0.116138][0.950963,0.948579,0][-9.83181,7.1158,0.277329][-0.441424,0.889751,0.116138][0.950793,0.948511,0][-9.81664,7.13028,0.220452][-0.436113,0.892668,0.113791][0.950954,0.948449,0][-8.46636,7.71865,2.15757][0.371741,0.694784,0.615698][0.95824,0.942986,0][-8.48488,7.70046,2.18928][0.371741,0.694784,0.615698][0.958368,0.942986,0][-8.44856,7.68125,2.18902][0.371741,0.694784,0.615698][0.958344,0.943066,0][-8.46636,7.71865,2.15757][0.371741,0.694784,0.615698][0.95824,0.942986,0][-8.42313,7.70209,2.14484][0.43489,0.731121,0.525674][0.958173,0.943071,0][-8.44603,7.73528,2.11762][0.43489,0.731121,0.525674][0.958092,0.94299,0][-8.46636,7.71865,2.15757][0.371741,0.694784,0.615698][0.95824,0.942986,0][-8.44856,7.68125,2.18902][0.371741,0.694784,0.615698][0.958344,0.943066,0][-8.42313,7.70209,2.14484][0.43489,0.731121,0.525674][0.958173,0.943071,0][-8.46636,7.71865,2.15757][0.471956,0.617079,0.62966][0.959587,0.94299,0][-8.50623,7.73911,2.1674][0.471956,0.617079,0.62966][0.959536,0.943074,0][-8.48488,7.70046,2.18928][0.471956,0.617079,0.62966][0.959459,0.94299,0][-8.46636,7.71865,2.15757][0.471956,0.617079,0.62966][0.959587,0.94299,0][-8.48932,7.75371,2.13725][0.479768,0.653588,0.585359][0.959653,0.943072,0][-8.50623,7.73911,2.1674][0.471956,0.617079,0.62966][0.959536,0.943074,0][-8.46636,7.71865,2.15757][0.471956,0.617079,0.62966][0.959587,0.94299,0][-8.44603,7.73528,2.11762][0.524907,0.657303,0.540765][0.959735,0.942986,0][-8.48932,7.75371,2.13725][0.479768,0.653588,0.585359][0.959653,0.943072,0][-9.5364,8.0227,1.51202][0.0387861,0.996818,-0.0696441][0.941022,0.966863,0][-9.57044,8.02097,1.46822][0.0387861,0.996818,-0.0696441][0.940868,0.966824,0][-9.59102,8.02359,1.49437][0.0387861,0.996818,-0.0696441][0.940933,0.966775,0][-9.5364,8.0227,1.51202][0.0387861,0.996818,-0.0696441][0.941022,0.966863,0][-9.59102,8.02359,1.49437][0.0387861,0.996818,-0.0696441][0.940933,0.966775,0][-9.56096,8.02487,1.55091][0.028465,0.998887,-0.0376099][0.941123,0.966801,0][-9.5364,8.0227,1.51202][0.0387861,0.996818,-0.0696441][0.941022,0.966863,0][-9.50593,8.01575,1.47448][0.0907611,0.989806,-0.109761][0.94093,0.966939,0][-9.57044,8.02097,1.46822][0.0387861,0.996818,-0.0696441][0.940868,0.966824,0][-9.5364,8.0227,1.51202][0.0387861,0.996818,-0.0696441][0.941022,0.966863,0][-9.48335,8.02337,1.52599][0.0294073,0.986841,-0.158999][0.941098,0.966949,0][-9.50593,8.01575,1.47448][0.0907611,0.989806,-0.109761][0.94093,0.966939,0][-9.5364,8.0227,1.51202][0.0387861,0.996818,-0.0696441][0.941022,0.966863,0][-9.50669,8.02767,1.55817][0.0187966,0.992719,-0.11898][0.941179,0.96689,0][-9.48335,8.02337,1.52599][0.0294073,0.986841,-0.158999][0.941098,0.966949,0][-9.5364,8.0227,1.51202][0.0387861,0.996818,-0.0696441][0.941022,0.966863,0][-9.56096,8.02487,1.55091][0.028465,0.998887,-0.0376099][0.941123,0.966801,0][-9.50669,8.02767,1.55817][0.0187966,0.992719,-0.11898][0.941179,0.96689,0][-9.56096,8.02487,1.55091][-0.124259,0.763928,0.633225][0.978421,0.956986,0][-9.59792,7.97243,1.60692][-0.124259,0.763928,0.633225][0.97843,0.956818,0][-9.4831,7.97837,1.62229][-0.124259,0.763928,0.633225][0.97876,0.956911,0][-9.50669,8.02767,1.55817][-0.124255,0.763931,0.633222][0.978576,0.95703,0][-9.56096,8.02487,1.55091][-0.124259,0.763928,0.633225][0.978421,0.956986,0][-9.4831,7.97837,1.62229][-0.124259,0.763928,0.633225][0.97876,0.956911,0][-9.50669,8.02767,1.55817][0.599368,0.725784,0.337632][0.933853,0.959693,0][-9.4831,7.97837,1.62229][0.599368,0.725784,0.337632][0.933932,0.959836,0][-9.43372,7.96927,1.55419][0.599368,0.725784,0.337632][0.933672,0.959831,0][-9.48335,8.02337,1.52599][0.599368,0.725785,0.33763][0.93373,0.95969,0][-9.50669,8.02767,1.55817][0.599368,0.725784,0.337632][0.933853,0.959693,0][-9.43372,7.96927,1.55419][0.599368,0.725784,0.337632][0.933672,0.959831,0][-9.48335,8.02337,1.52599][0.0294073,0.986841,-0.158999][0.941098,0.966949,0][-9.43372,7.96927,1.55419][0.768545,0.491456,-0.409645][0.941232,0.967067,0][-9.4815,7.95313,1.4452][0.768545,0.491456,-0.409645][0.940875,0.967046,0][-9.50593,8.01575,1.47448][0.0907611,0.989806,-0.109761][0.94093,0.966939,0][-9.48335,8.02337,1.52599][0.0294073,0.986841,-0.158999][0.941098,0.966949,0][-9.4815,7.95313,1.4452][0.768545,0.491456,-0.409645][0.940875,0.967046,0][-9.57044,8.02097,1.46822][0.0387861,0.996818,-0.0696441][0.970807,0.963183,0][-9.4815,7.95313,1.4452][0.768545,0.491456,-0.409645][0.970512,0.963065,0][-9.61799,7.96418,1.43196][0.122512,0.459202,-0.879843][0.970938,0.963062,0][-9.57044,8.02097,1.46822][0.0387861,0.996818,-0.0696441][0.970807,0.963183,0][-9.50593,8.01575,1.47448][0.0907611,0.989806,-0.109761][0.970605,0.963184,0][-9.4815,7.95313,1.4452][0.768545,0.491456,-0.409645][0.970512,0.963065,0][-9.59102,8.02359,1.49437][-0.597792,0.74296,0.30109][0.978263,0.957029,0][-9.66152,7.96973,1.48729][-0.597792,0.74296,0.30109][0.978098,0.956908,0][-9.59792,7.97243,1.60692][-0.124259,0.763928,0.633225][0.97843,0.956818,0][-9.56096,8.02487,1.55091][-0.124259,0.763928,0.633225][0.978421,0.956986,0][-9.59102,8.02359,1.49437][-0.597792,0.74296,0.30109][0.978263,0.957029,0][-9.59792,7.97243,1.60692][-0.124259,0.763928,0.633225][0.97843,0.956818,0][-9.59102,8.02359,1.49437][0.0387861,0.996818,-0.0696441][0.946372,0.95689,0][-9.61799,7.96418,1.43196][0.122512,0.459202,-0.879843][0.946118,0.956966,0][-9.66152,7.96973,1.48729][-0.505378,0.723432,-0.470361][0.946113,0.956826,0][-9.59102,8.02359,1.49437][0.0387861,0.996818,-0.0696441][0.946372,0.95689,0][-9.57044,8.02097,1.46822][0.0387861,0.996818,-0.0696441][0.946374,0.956956,0][-9.61799,7.96418,1.43196][0.122512,0.459202,-0.879843][0.946118,0.956966,0][-9.4831,7.97837,1.62229][-0.135768,-0.0281704,0.99034][0.963578,0.96799,0][-9.50547,7.58423,1.60801][-0.135768,-0.0281704,0.99034][0.964581,0.967538,0][-9.36285,7.6259,1.62875][-0.135768,-0.0281704,0.99034][0.964707,0.967821,0][-9.4831,7.97837,1.62229][-0.135768,-0.0281704,0.99034][0.963578,0.96799,0][-9.59792,7.97243,1.60692][-0.131194,-0.028452,0.990948][0.963404,0.967791,0][-9.50547,7.58423,1.60801][-0.135768,-0.0281704,0.99034][0.964581,0.967538,0][-9.43372,7.96927,1.55419][0.599368,0.725784,0.337632][0.943325,0.964834,0][-9.36285,7.6259,1.62875][0.805937,0.279649,0.521787][0.942264,0.965053,0][-9.3149,7.63859,1.54788][0.805937,0.279649,0.521787][0.942232,0.964866,0][-9.43372,7.96927,1.55419][0.599368,0.725784,0.337632][0.943325,0.964834,0][-9.4831,7.97837,1.62229][0.599368,0.725784,0.337632][0.943419,0.96499,0][-9.36285,7.6259,1.62875][0.805937,0.279649,0.521787][0.942264,0.965053,0][-9.4815,7.95313,1.4452][0.809828,0.25674,-0.527507][0.968203,0.961163,0][-9.3149,7.63859,1.54788][0.805937,0.279649,0.521787][0.967124,0.961422,0][-9.39349,7.61693,1.41667][0.809828,0.25674,-0.527507][0.96712,0.961116,0][-9.4815,7.95313,1.4452][0.809828,0.25674,-0.527507][0.968203,0.961163,0][-9.43372,7.96927,1.55419][0.599368,0.725784,0.337632][0.968217,0.961399,0][-9.3149,7.63859,1.54788][0.805937,0.279649,0.521787][0.967124,0.961422,0][-9.4815,7.95313,1.4452][0.0591003,0.0997547,-0.993255][0.950188,0.944918,0][-9.39349,7.61693,1.41667][0.0591003,0.0997547,-0.993255][0.949169,0.944686,0][-9.56876,7.58907,1.40345][0.0591003,0.0997547,-0.993255][0.949404,0.944368,0][-9.61799,7.96418,1.43196][0.103296,0.0888655,-0.990673][0.950456,0.944706,0][-9.4815,7.95313,1.4452][0.0591003,0.0997547,-0.993255][0.950188,0.944918,0][-9.56876,7.58907,1.40345][0.0591003,0.0997547,-0.993255][0.949404,0.944368,0][-9.59792,7.97243,1.60692][-0.131194,-0.028452,0.990948][0.969891,0.948546,0][-9.61122,7.57542,1.46854][-0.777673,-0.183512,0.601288][0.971169,0.948368,0][-9.50547,7.58423,1.60801][-0.135768,-0.0281704,0.99034][0.971105,0.948709,0][-9.59792,7.97243,1.60692][-0.87378,-0.133691,0.467584][0.936546,0.93783,0][-9.66152,7.96973,1.48729][-0.87378,-0.133691,0.467584][0.936537,0.938099,0][-9.61122,7.57542,1.46854][-0.87378,-0.133691,0.467584][0.935299,0.938084,0][-9.61799,7.96418,1.43196][-0.829231,-0.066644,-0.554918][0.946832,0.967692,0][-9.56876,7.58907,1.40345][-0.829231,-0.066644,-0.554918][0.947994,0.967826,0][-9.61122,7.57542,1.46854][-0.87378,-0.133691,0.467584][0.947959,0.967981,0][-9.66152,7.96973,1.48729][-0.87378,-0.133691,0.467584][0.946747,0.967821,0][-9.61799,7.96418,1.43196][-0.829231,-0.066644,-0.554918][0.946832,0.967692,0][-9.61122,7.57542,1.46854][-0.87378,-0.133691,0.467584][0.947959,0.967981,0][-9.50547,7.58423,1.60801][-0.135768,-0.0281704,0.99034][0.964581,0.967538,0][-9.35085,7.2142,1.58251][-0.137724,-0.125247,0.98252][0.965813,0.967409,0][-9.24226,7.30305,1.60906][-0.137724,-0.125247,0.98252][0.965758,0.967684,0][-9.36285,7.6259,1.62875][-0.135768,-0.0281704,0.99034][0.964707,0.967821,0][-9.50547,7.58423,1.60801][-0.135768,-0.0281704,0.99034][0.964581,0.967538,0][-9.24226,7.30305,1.60906][-0.137724,-0.125247,0.98252][0.965758,0.967684,0][-9.3149,7.63859,1.54788][0.805937,0.279649,0.521787][0.942232,0.964866,0][-9.24226,7.30305,1.60906][0.780602,0.271632,0.562917][0.941189,0.965057,0][-9.19771,7.3288,1.53486][0.780602,0.271632,0.562917][0.941201,0.964879,0][-9.3149,7.63859,1.54788][0.805937,0.279649,0.521787][0.942232,0.964866,0][-9.36285,7.6259,1.62875][0.805937,0.279649,0.521787][0.942264,0.965053,0][-9.24226,7.30305,1.60906][0.780602,0.271632,0.562917][0.941189,0.965057,0][-9.39349,7.61693,1.41667][0.809828,0.25674,-0.527507][0.96712,0.961116,0][-9.19771,7.3288,1.53486][0.780602,0.271632,0.562917][0.966095,0.961439,0][-9.24771,7.27696,1.40667][0.810096,0.360981,-0.461993][0.965976,0.961159,0][-9.39349,7.61693,1.41667][0.809828,0.25674,-0.527507][0.96712,0.961116,0][-9.3149,7.63859,1.54788][0.805937,0.279649,0.521787][0.967124,0.961422,0][-9.19771,7.3288,1.53486][0.780602,0.271632,0.562917][0.966095,0.961439,0][-9.39349,7.61693,1.41667][0.0591003,0.0997547,-0.993255][0.949169,0.944686,0][-9.24771,7.27696,1.40667][0.109187,0.0759892,-0.991112][0.948039,0.944546,0][-9.39055,7.18873,1.38417][0.109187,0.0759892,-0.991112][0.948062,0.944213,0][-9.56876,7.58907,1.40345][0.0591003,0.0997547,-0.993255][0.949404,0.944368,0][-9.39349,7.61693,1.41667][0.0591003,0.0997547,-0.993255][0.949169,0.944686,0][-9.39055,7.18873,1.38417][0.109187,0.0759892,-0.991112][0.948062,0.944213,0][-9.50547,7.58423,1.60801][-0.135768,-0.0281704,0.99034][0.971105,0.948709,0][-9.42858,7.16359,1.44386][-0.754983,-0.353525,0.552287][0.972499,0.948626,0][-9.35085,7.2142,1.58251][-0.137724,-0.125247,0.98252][0.972299,0.948923,0][-9.50547,7.58423,1.60801][-0.135768,-0.0281704,0.99034][0.971105,0.948709,0][-9.61122,7.57542,1.46854][-0.777673,-0.183512,0.601288][0.971169,0.948368,0][-9.42858,7.16359,1.44386][-0.754983,-0.353525,0.552287][0.972499,0.948626,0][-9.56876,7.58907,1.40345][-0.829231,-0.066644,-0.554918][0.947994,0.967826,0][-9.39055,7.18873,1.38417][-0.741606,-0.301265,-0.599383][0.949314,0.96786,0][-9.42858,7.16359,1.44386][-0.741606,-0.301265,-0.599383][0.94932,0.968009,0][-9.61122,7.57542,1.46854][-0.87378,-0.133691,0.467584][0.947959,0.967981,0][-9.56876,7.58907,1.40345][-0.829231,-0.066644,-0.554918][0.947994,0.967826,0][-9.42858,7.16359,1.44386][-0.741606,-0.301265,-0.599383][0.94932,0.968009,0][-9.35085,7.2142,1.58251][-0.137724,-0.125247,0.98252][0.965813,0.967409,0][-9.13023,6.87535,1.59098][-0.165668,-0.0833194,0.982656][0.967071,0.967423,0][-9.05276,6.99753,1.6144][-0.165668,-0.0833194,0.982656][0.966877,0.967681,0][-9.24226,7.30305,1.60906][-0.137724,-0.125247,0.98252][0.965758,0.967684,0][-9.35085,7.2142,1.58251][-0.137724,-0.125247,0.98252][0.965813,0.967409,0][-9.05276,6.99753,1.6144][-0.165668,-0.0833194,0.982656][0.966877,0.967681,0][-9.24226,7.30305,1.60906][0.780602,0.271632,0.562917][0.941189,0.965057,0][-9.05276,6.99753,1.6144][0.689333,0.437631,0.577321][0.940092,0.965032,0][-9.00939,7.02897,1.53878][0.689333,0.437631,0.577321][0.940121,0.964849,0][-9.19771,7.3288,1.53486][0.780602,0.271632,0.562917][0.941201,0.964879,0][-9.24226,7.30305,1.60906][0.780602,0.271632,0.562917][0.941189,0.965057,0][-9.00939,7.02897,1.53878][0.689333,0.437631,0.577321][0.940121,0.964849,0][-9.24771,7.27696,1.40667][0.754572,0.496682,-0.428868][0.971527,0.942219,0][-9.00939,7.02897,1.53878][0.754572,0.496682,-0.428868][0.972523,0.941858,0][-9.03034,6.95081,1.41141][0.754572,0.496682,-0.428868][0.972738,0.942124,0][-9.24771,7.27696,1.40667][0.754572,0.496682,-0.428868][0.971527,0.942219,0][-9.19771,7.3288,1.53486][0.746494,0.462597,-0.478279][0.971428,0.941935,0][-9.00939,7.02897,1.53878][0.754572,0.496682,-0.428868][0.972523,0.941858,0][-9.39055,7.18873,1.38417][0.109187,0.0759892,-0.991112][0.948062,0.944213,0][-9.03034,6.95081,1.41141][0.117126,0.0638637,-0.991062][0.946819,0.944537,0][-9.14189,6.81926,1.38975][0.117126,0.0638637,-0.991062][0.946676,0.944208,0][-9.39055,7.18873,1.38417][0.109187,0.0759892,-0.991112][0.948062,0.944213,0][-9.24771,7.27696,1.40667][0.109187,0.0759892,-0.991112][0.948039,0.944546,0][-9.03034,6.95081,1.41141][0.117126,0.0638637,-0.991062][0.946819,0.944537,0][-9.42858,7.16359,1.44386][-0.754983,-0.353525,0.552287][0.939205,0.936742,0][-9.17763,6.78899,1.45097][-0.710267,-0.465804,0.527776][0.938054,0.936959,0][-9.13023,6.87535,1.59098][-0.165668,-0.0833194,0.982656][0.937903,0.936699,0][-9.35085,7.2142,1.58251][-0.137724,-0.125247,0.98252][0.972299,0.948923,0][-9.42858,7.16359,1.44386][-0.754983,-0.353525,0.552287][0.972499,0.948626,0][-9.13023,6.87535,1.59098][-0.165668,-0.0833194,0.982656][0.973401,0.949276,0][-9.42858,7.16359,1.44386][-0.741606,-0.301265,-0.599383][0.94932,0.968009,0][-9.14189,6.81926,1.38975][-0.655731,-0.450778,-0.605654][0.950575,0.967843,0][-9.17763,6.78899,1.45097][-0.655731,-0.450778,-0.605654][0.950597,0.967995,0][-9.42858,7.16359,1.44386][-0.741606,-0.301265,-0.599383][0.94932,0.968009,0][-9.39055,7.18873,1.38417][-0.741606,-0.301265,-0.599383][0.949314,0.96786,0][-9.14189,6.81926,1.38975][-0.655731,-0.450778,-0.605654][0.950575,0.967843,0][-9.13023,6.87535,1.59098][-0.165668,-0.0833194,0.982656][0.967071,0.967423,0][-8.9041,6.57922,1.6738][-0.35599,-0.010512,0.934431][0.968226,0.967491,0][-8.85628,6.81128,1.69462][-0.35599,-0.010512,0.934431][0.967692,0.967816,0][-9.05276,6.99753,1.6144][-0.165668,-0.0833194,0.982656][0.966877,0.967681,0][-9.13023,6.87535,1.59098][-0.165668,-0.0833194,0.982656][0.967071,0.967423,0][-8.85628,6.81128,1.69462][-0.35599,-0.010512,0.934431][0.967692,0.967816,0][-9.05276,6.99753,1.6144][0.430868,0.699895,0.569649][0.937758,0.956663,0][-8.85628,6.81128,1.69462][0.430868,0.699895,0.569649][0.938629,0.95659,0][-8.79113,6.87044,1.57265][0.430868,0.699895,0.569649][0.938602,0.956887,0][-9.00939,7.02897,1.53878][0.434799,0.715473,0.546853][0.937758,0.956847,0][-9.05276,6.99753,1.6144][0.430868,0.699895,0.569649][0.937758,0.956663,0][-8.79113,6.87044,1.57265][0.430868,0.699895,0.569649][0.938602,0.956887,0][-9.03034,6.95081,1.41141][0.754572,0.496682,-0.428868][0.972738,0.942124,0][-8.79113,6.87044,1.57265][0.544429,0.703347,-0.457056][0.97328,0.941663,0][-8.75451,6.7192,1.38355][0.544429,0.703347,-0.457056][0.973799,0.942012,0][-9.03034,6.95081,1.41141][0.754572,0.496682,-0.428868][0.972738,0.942124,0][-9.00939,7.02897,1.53878][0.754572,0.496682,-0.428868][0.972523,0.941858,0][-8.79113,6.87044,1.57265][0.544429,0.703347,-0.457056][0.97328,0.941663,0][-9.14189,6.81926,1.38975][0.117126,0.0638637,-0.991062][0.946676,0.944208,0][-8.75451,6.7192,1.38355][0.00386883,0.0767679,-0.997041][0.94574,0.94473,0][-8.84948,6.45435,1.36278][0.00386883,0.0767679,-0.997041][0.945225,0.944279,0][-9.14189,6.81926,1.38975][0.117126,0.0638637,-0.991062][0.946676,0.944208,0][-9.03034,6.95081,1.41141][0.117126,0.0638637,-0.991062][0.946819,0.944537,0][-8.75451,6.7192,1.38355][0.00386883,0.0767679,-0.997041][0.94574,0.94473,0][-9.17763,6.78899,1.45097][-0.710267,-0.465804,0.527776][0.949669,0.940316,0][-8.90061,6.39879,1.46254][-0.743081,-0.514887,0.42746][0.950933,0.940496,0][-8.9041,6.57922,1.6738][-0.35599,-0.010512,0.934431][0.950565,0.940876,0][-9.13023,6.87535,1.59098][-0.165668,-0.0833194,0.982656][0.973401,0.949276,0][-9.17763,6.78899,1.45097][-0.710267,-0.465804,0.527776][0.973722,0.949022,0][-8.9041,6.57922,1.6738][-0.35599,-0.010512,0.934431][0.974337,0.949735,0][-9.17763,6.78899,1.45097][-0.655731,-0.450778,-0.605654][0.950597,0.967995,0][-8.84948,6.45435,1.36278][-0.646057,-0.47636,-0.596399][0.951876,0.967726,0][-8.90061,6.39879,1.46254][-0.646057,-0.47636,-0.596399][0.951936,0.967971,0][-9.17763,6.78899,1.45097][-0.655731,-0.450778,-0.605654][0.950597,0.967995,0][-9.14189,6.81926,1.38975][-0.655731,-0.450778,-0.605654][0.950575,0.967843,0][-8.84948,6.45435,1.36278][-0.646057,-0.47636,-0.596399][0.951876,0.967726,0][-8.44603,7.73528,2.11762][0.283902,0.927195,-0.244354][0.970908,0.954322,0][-8.43974,7.71853,2.06137][0.283902,0.927195,-0.244354][0.971011,0.954416,0][-8.52347,7.75417,2.09932][0.283902,0.927195,-0.244354][0.970704,0.954414,0][-8.48932,7.75371,2.13725][0.283903,0.927194,-0.244358][0.97075,0.954321,0][-8.44603,7.73528,2.11762][0.283902,0.927195,-0.244354][0.970908,0.954322,0][-8.52347,7.75417,2.09932][0.283902,0.927195,-0.244354][0.970704,0.954414,0][-8.50623,7.73911,2.1674][-0.295268,0.91436,0.27706][0.946506,0.947981,0][-8.52347,7.75417,2.09932][-0.295268,0.91436,0.27706][0.946669,0.948078,0][-8.55617,7.72594,2.15764][-0.295268,0.91436,0.27706][0.946443,0.948077,0][-8.50623,7.73911,2.1674][-0.295268,0.91436,0.27706][0.946506,0.947981,0][-8.48932,7.75371,2.13725][-0.295276,0.914357,0.277061][0.946623,0.947981,0][-8.52347,7.75417,2.09932][-0.295268,0.91436,0.27706][0.946669,0.948078,0][-8.48488,7.70046,2.18928][-0.269002,0.357653,0.894272][0.929652,0.962255,0][-8.55617,7.72594,2.15764][-0.295268,0.91436,0.27706][0.929479,0.962154,0][-8.51488,7.65119,2.19996][-0.269002,0.357653,0.894272][0.929744,0.962157,0][-8.48488,7.70046,2.18928][-0.269002,0.357653,0.894272][0.929652,0.962255,0][-8.50623,7.73911,2.1674][-0.295268,0.91436,0.27706][0.929515,0.962253,0][-8.55617,7.72594,2.15764][-0.295268,0.91436,0.27706][0.929479,0.962154,0][-8.44856,7.68125,2.18902][0.830812,0.132511,0.540548][0.950349,0.95029,0][-8.44463,7.61403,2.19947][0.830812,0.132511,0.540548][0.950174,0.950366,0][-8.39546,7.65434,2.11401][0.830812,0.132511,0.540548][0.950137,0.950157,0][-8.42313,7.70209,2.14484][0.830812,0.132524,0.540544][0.95033,0.950182,0][-8.44856,7.68125,2.18902][0.830812,0.132511,0.540548][0.950349,0.95029,0][-8.39546,7.65434,2.11401][0.830812,0.132511,0.540548][0.950137,0.950157,0][-8.42313,7.70209,2.14484][0.830812,0.132524,0.540544][0.95033,0.950182,0][-8.39546,7.65434,2.11401][0.830812,0.132511,0.540548][0.950137,0.950157,0][-8.43974,7.71853,2.06137][0.845079,0.530848,-0.0635828][0.950305,0.950053,0][-8.44603,7.73528,2.11762][0.845083,0.53084,-0.0635852][0.950417,0.950128,0][-8.42313,7.70209,2.14484][0.830812,0.132524,0.540544][0.95033,0.950182,0][-8.43974,7.71853,2.06137][0.845079,0.530848,-0.0635828][0.950305,0.950053,0][-8.44856,7.68125,2.18902][0.0904505,0.158053,0.983279][0.955243,0.962283,0][-8.51488,7.65119,2.19996][0.0904505,0.158053,0.983279][0.955162,0.962148,0][-8.44463,7.61403,2.19947][0.0904505,0.158053,0.983279][0.955399,0.962194,0][-8.44856,7.68125,2.18902][0.0904505,0.158053,0.983279][0.955243,0.962283,0][-8.48488,7.70046,2.18928][0.090447,0.15806,0.983278][0.95512,0.962259,0][-8.51488,7.65119,2.19996][0.0904505,0.158053,0.983279][0.955162,0.962148,0][-8.43974,7.71853,2.06137][0.283902,0.927195,-0.244354][0.939098,0.939504,0][-8.47002,7.61388,1.96583][-0.0544241,0.681758,-0.72955][0.938771,0.939447,0][-8.59225,7.64966,2.00839][-0.0544241,0.681758,-0.72955][0.938877,0.939204,0][-8.52347,7.75417,2.09932][0.283902,0.927195,-0.244354][0.939205,0.939337,0][-8.43974,7.71853,2.06137][0.283902,0.927195,-0.244354][0.939098,0.939504,0][-8.59225,7.64966,2.00839][-0.0544241,0.681758,-0.72955][0.938877,0.939204,0][-8.55617,7.72594,2.15764][-0.779328,0.613945,-0.125381][0.956448,0.948091,0][-8.59225,7.64966,2.00839][-0.779328,0.613945,-0.125381][0.956018,0.948293,0][-8.63566,7.61086,2.08826][-0.779327,0.613945,-0.125381][0.955968,0.948105,0][-8.55617,7.72594,2.15764][-0.779328,0.613945,-0.125381][0.956448,0.948091,0][-8.52347,7.75417,2.09932][-0.771703,0.622247,-0.131467][0.956485,0.948229,0][-8.59225,7.64966,2.00839][-0.779328,0.613945,-0.125381][0.956018,0.948293,0][-8.51488,7.65119,2.19996][0.0904505,0.158053,0.983279][0.955162,0.962148,0][-8.63566,7.61086,2.08826][-0.686033,0.0428282,0.726308][0.954984,0.961922,0][-8.56971,7.5218,2.15581][-0.686033,0.0428282,0.726308][0.955325,0.961889,0][-8.51488,7.65119,2.19996][0.0904505,0.158053,0.983279][0.955162,0.962148,0][-8.55617,7.72594,2.15764][-0.684686,0.033979,0.728046][0.954907,0.962195,0][-8.63566,7.61086,2.08826][-0.686033,0.0428282,0.726308][0.954984,0.961922,0][-8.44463,7.61403,2.19947][0.830812,0.132511,0.540548][0.962978,0.957499,0][-8.46825,7.48486,2.16337][0.889304,-0.266501,0.371639][0.963387,0.957471,0][-8.40274,7.54053,2.04652][0.889304,-0.266501,0.371639][0.963297,0.957744,0][-8.39546,7.65434,2.11401][0.830812,0.132511,0.540548][0.962912,0.957698,0][-8.44463,7.61403,2.19947][0.830812,0.132511,0.540548][0.962978,0.957499,0][-8.40274,7.54053,2.04652][0.889304,-0.266501,0.371639][0.963297,0.957744,0][-8.39546,7.65434,2.11401][0.830812,0.132511,0.540548][0.951546,0.935522,0][-8.40274,7.54053,2.04652][0.889304,-0.266501,0.371639][0.951956,0.935551,0][-8.47002,7.61388,1.96583][0.84091,0.235204,-0.487391][0.951855,0.935797,0][-8.43974,7.71853,2.06137][0.845079,0.530848,-0.0635828][0.951434,0.935694,0][-8.39546,7.65434,2.11401][0.830812,0.132511,0.540548][0.951546,0.935522,0][-8.47002,7.61388,1.96583][0.84091,0.235204,-0.487391][0.951855,0.935797,0][-8.44463,7.61403,2.19947][0.0904505,0.158053,0.983279][0.955399,0.962194,0][-8.56971,7.5218,2.15581][-0.686033,0.0428282,0.726308][0.955325,0.961889,0][-8.46825,7.48486,2.16337][-0.15833,-0.238833,0.958066][0.95563,0.961979,0][-8.44463,7.61403,2.19947][0.0904505,0.158053,0.983279][0.955399,0.962194,0][-8.51488,7.65119,2.19996][0.0904505,0.158053,0.983279][0.955162,0.962148,0][-8.56971,7.5218,2.15581][-0.686033,0.0428282,0.726308][0.955325,0.961889,0][-8.47002,7.61388,1.96583][-0.0544241,0.681758,-0.72955][0.938771,0.939447,0][-8.49948,7.41551,1.87468][-0.161103,0.431737,-0.887496][0.938152,0.939394,0][-8.62854,7.43371,1.90696][-0.161103,0.431737,-0.887496][0.938203,0.939138,0][-8.59225,7.64966,2.00839][-0.0544241,0.681758,-0.72955][0.938877,0.939204,0][-8.47002,7.61388,1.96583][-0.0544241,0.681758,-0.72955][0.938771,0.939447,0][-8.62854,7.43371,1.90696][-0.161103,0.431737,-0.887496][0.938203,0.939138,0][-8.63566,7.61086,2.08826][-0.779327,0.613945,-0.125381][0.955968,0.948105,0][-8.62854,7.43371,1.90696][-0.897832,0.296805,-0.325277][0.955289,0.948305,0][-8.6706,7.39472,1.98746][-0.897832,0.296805,-0.325277][0.955241,0.948116,0][-8.63566,7.61086,2.08826][-0.779327,0.613945,-0.125381][0.955968,0.948105,0][-8.59225,7.64966,2.00839][-0.779328,0.613945,-0.125381][0.956018,0.948293,0][-8.62854,7.43371,1.90696][-0.897832,0.296805,-0.325277][0.955289,0.948305,0][-8.56971,7.5218,2.15581][-0.686033,0.0428282,0.726308][0.971322,0.9508,0][-8.6706,7.39472,1.98746][-0.786453,-0.164333,0.595387][0.971763,0.950434,0][-8.59601,7.3236,2.06635][-0.786453,-0.164333,0.595387][0.971964,0.950655,0][-8.56971,7.5218,2.15581][-0.686033,0.0428282,0.726308][0.971322,0.9508,0][-8.63566,7.61086,2.08826][-0.686033,0.0428282,0.726308][0.971063,0.950606,0][-8.6706,7.39472,1.98746][-0.786453,-0.164333,0.595387][0.971763,0.950434,0][-8.46825,7.48486,2.16337][0.889304,-0.266501,0.371639][0.963387,0.957471,0][-8.49071,7.30482,2.08285][0.894855,-0.270411,0.355123][0.963979,0.957491,0][-8.42704,7.3611,1.96529][0.894855,-0.270411,0.355123][0.963891,0.957765,0][-8.40274,7.54053,2.04652][0.889304,-0.266501,0.371639][0.963297,0.957744,0][-8.46825,7.48486,2.16337][0.889304,-0.266501,0.371639][0.963387,0.957471,0][-8.42704,7.3611,1.96529][0.894855,-0.270411,0.355123][0.963891,0.957765,0][-8.40274,7.54053,2.04652][0.889304,-0.266501,0.371639][0.951956,0.935551,0][-8.42704,7.3611,1.96529][0.894855,-0.270411,0.355123][0.952568,0.935574,0][-8.49948,7.41551,1.87468][0.81344,0.144859,-0.563322][0.952534,0.935827,0][-8.47002,7.61388,1.96583][0.84091,0.235204,-0.487391][0.951855,0.935797,0][-8.40274,7.54053,2.04652][0.889304,-0.266501,0.371639][0.951956,0.935551,0][-8.49948,7.41551,1.87468][0.81344,0.144859,-0.563322][0.952534,0.935827,0][-8.46825,7.48486,2.16337][-0.15833,-0.238833,0.958066][0.95563,0.961979,0][-8.59601,7.3236,2.06635][-0.786453,-0.164333,0.595387][0.955701,0.961574,0][-8.49071,7.30482,2.08285][-0.208691,-0.377417,0.902222][0.955975,0.961694,0][-8.46825,7.48486,2.16337][-0.15833,-0.238833,0.958066][0.95563,0.961979,0][-8.56971,7.5218,2.15581][-0.686033,0.0428282,0.726308][0.955325,0.961889,0][-8.59601,7.3236,2.06635][-0.786453,-0.164333,0.595387][0.955701,0.961574,0][-8.49948,7.41551,1.87468][-0.161103,0.431737,-0.887496][0.938152,0.939394,0][-8.49199,7.2039,1.79764][-0.170466,0.331751,-0.927838][0.937494,0.939415,0][-8.62355,7.2097,1.82389][-0.170466,0.331751,-0.927838][0.937506,0.939154,0][-8.62854,7.43371,1.90696][-0.161103,0.431737,-0.887496][0.938203,0.939138,0][-8.49948,7.41551,1.87468][-0.161103,0.431737,-0.887496][0.938152,0.939394,0][-8.62355,7.2097,1.82389][-0.170466,0.331751,-0.927838][0.937506,0.939154,0][-8.6706,7.39472,1.98746][-0.897832,0.296805,-0.325277][0.955241,0.948116,0][-8.62355,7.2097,1.82389][-0.907307,0.1244,-0.401645][0.954613,0.948292,0][-8.66474,7.17074,1.90485][-0.907307,0.1244,-0.401645][0.954566,0.948103,0][-8.6706,7.39472,1.98746][-0.897832,0.296805,-0.325277][0.955241,0.948116,0][-8.62854,7.43371,1.90696][-0.897832,0.296805,-0.325277][0.955289,0.948305,0][-8.62355,7.2097,1.82389][-0.907307,0.1244,-0.401645][0.954613,0.948292,0][-8.59601,7.3236,2.06635][-0.786453,-0.164333,0.595387][0.971964,0.950655,0][-8.66474,7.17074,1.90485][-0.792539,-0.23723,0.561787][0.972491,0.950347,0][-8.58657,7.11244,1.99051][-0.792539,-0.23723,0.561787][0.972651,0.95058,0][-8.59601,7.3236,2.06635][-0.786453,-0.164333,0.595387][0.971964,0.950655,0][-8.6706,7.39472,1.98746][-0.786453,-0.164333,0.595387][0.971763,0.950434,0][-8.66474,7.17074,1.90485][-0.792539,-0.23723,0.561787][0.972491,0.950347,0][-8.49071,7.30482,2.08285][0.894855,-0.270411,0.355123][0.963979,0.957491,0][-8.4807,7.10609,2.01206][0.899138,-0.105984,0.424639][0.964569,0.957491,0][-8.41825,7.16259,1.89393][0.899138,-0.105984,0.424639][0.964482,0.957766,0][-8.42704,7.3611,1.96529][0.894855,-0.270411,0.355123][0.963891,0.957765,0][-8.49071,7.30482,2.08285][0.894855,-0.270411,0.355123][0.963979,0.957491,0][-8.41825,7.16259,1.89393][0.899138,-0.105984,0.424639][0.964482,0.957766,0][-8.42704,7.3611,1.96529][0.894855,-0.270411,0.355123][0.952568,0.935574,0][-8.41825,7.16259,1.89393][0.899138,-0.105984,0.424639][0.953222,0.935532,0][-8.49199,7.2039,1.79764][0.817781,0.226397,-0.529131][0.953232,0.935786,0][-8.49948,7.41551,1.87468][0.81344,0.144859,-0.563322][0.952534,0.935827,0][-8.42704,7.3611,1.96529][0.894855,-0.270411,0.355123][0.952568,0.935574,0][-8.49199,7.2039,1.79764][0.817781,0.226397,-0.529131][0.953232,0.935786,0][-8.49071,7.30482,2.08285][-0.208691,-0.377417,0.902222][0.955975,0.961694,0][-8.58657,7.11244,1.99051][-0.792539,-0.23723,0.561787][0.956185,0.96129,0][-8.4807,7.10609,2.01206][-0.207153,-0.337565,0.918225][0.956433,0.961429,0][-8.49071,7.30482,2.08285][-0.208691,-0.377417,0.902222][0.955975,0.961694,0][-8.59601,7.3236,2.06635][-0.786453,-0.164333,0.595387][0.955701,0.961574,0][-8.58657,7.11244,1.99051][-0.792539,-0.23723,0.561787][0.956185,0.96129,0][-8.49199,7.2039,1.79764][-0.170466,0.331751,-0.927838][0.937494,0.939415,0][-8.47029,6.92662,1.69326][-0.17005,0.335508,-0.926562][0.936632,0.939466,0][-8.6103,6.93279,1.72119][-0.17005,0.335508,-0.926562][0.936645,0.939188,0][-8.62355,7.2097,1.82389][-0.170466,0.331751,-0.927838][0.937506,0.939154,0][-8.49199,7.2039,1.79764][-0.170466,0.331751,-0.927838][0.937494,0.939415,0][-8.6103,6.93279,1.72119][-0.17005,0.335508,-0.926562][0.936645,0.939188,0][-8.62355,7.2097,1.82389][-0.907307,0.1244,-0.401645][0.954613,0.948292,0][-8.6103,6.93279,1.72119][-0.965192,0.0490846,-0.256894][0.953785,0.948278,0][-8.63915,6.9327,1.82954][-0.965192,0.0490846,-0.256894][0.953888,0.948072,0][-8.66474,7.17074,1.90485][-0.907307,0.1244,-0.401645][0.954566,0.948103,0][-8.62355,7.2097,1.82389][-0.907307,0.1244,-0.401645][0.954613,0.948292,0][-8.63915,6.9327,1.82954][-0.965192,0.0490846,-0.256894][0.953888,0.948072,0][-8.58657,7.11244,1.99051][-0.792539,-0.23723,0.561787][0.972651,0.95058,0][-8.63915,6.9327,1.82954][-0.834664,-0.211327,0.508603][0.973265,0.950298,0][-8.57095,6.82929,1.8985][-0.834664,-0.211327,0.508603][0.973568,0.950498,0][-8.58657,7.11244,1.99051][-0.792539,-0.23723,0.561787][0.972651,0.95058,0][-8.66474,7.17074,1.90485][-0.792539,-0.23723,0.561787][0.972491,0.950347,0][-8.63915,6.9327,1.82954][-0.834664,-0.211327,0.508603][0.973265,0.950298,0][-8.4807,7.10609,2.01206][0.899138,-0.105984,0.424639][0.964569,0.957491,0][-8.45827,6.82254,1.92143][0.895322,-0.0697981,0.439917][0.965389,0.957475,0][-8.39182,6.88266,1.79573][0.895322,-0.0697981,0.439917][0.965297,0.957767,0][-8.41825,7.16259,1.89393][0.899138,-0.105984,0.424639][0.964482,0.957766,0][-8.4807,7.10609,2.01206][0.899138,-0.105984,0.424639][0.964569,0.957491,0][-8.39182,6.88266,1.79573][0.895322,-0.0697981,0.439917][0.965297,0.957767,0][-8.41825,7.16259,1.89393][0.899138,-0.105984,0.424639][0.953222,0.935532,0][-8.39182,6.88266,1.79573][0.895322,-0.0697981,0.439917][0.954141,0.935455,0][-8.47029,6.92662,1.69326][0.817311,0.257919,-0.515248][0.954152,0.935725,0][-8.49199,7.2039,1.79764][0.817781,0.226397,-0.529131][0.953232,0.935786,0][-8.41825,7.16259,1.89393][0.899138,-0.105984,0.424639][0.953222,0.935532,0][-8.47029,6.92662,1.69326][0.817311,0.257919,-0.515248][0.954152,0.935725,0][-8.4807,7.10609,2.01206][-0.207153,-0.337565,0.918225][0.956433,0.961429,0][-8.57095,6.82929,1.8985][-0.834664,-0.211327,0.508603][0.956841,0.960914,0][-8.45827,6.82254,1.92143][-0.207434,-0.312647,0.926943][0.957105,0.961062,0][-8.4807,7.10609,2.01206][-0.207153,-0.337565,0.918225][0.956433,0.961429,0][-8.58657,7.11244,1.99051][-0.792539,-0.23723,0.561787][0.956185,0.96129,0][-8.57095,6.82929,1.8985][-0.834664,-0.211327,0.508603][0.956841,0.960914,0][-8.6103,6.93279,1.72119][-0.17005,0.335508,-0.926562][0.937833,0.956067,0][-8.48794,6.8167,1.58129][0.0113325,0.774345,-0.632663][0.938514,0.956053,0][-8.70449,6.88352,1.65919][0.0113325,0.774345,-0.632663][0.937885,0.956308,0][-8.6103,6.93279,1.72119][-0.17005,0.335508,-0.926562][0.937833,0.956067,0][-8.47029,6.92662,1.69326][-0.17005,0.335508,-0.926562][0.938132,0.955859,0][-8.48794,6.8167,1.58129][0.0113325,0.774345,-0.632663][0.938514,0.956053,0][-8.63915,6.9327,1.82954][-0.651629,0.757898,0.0311497][0.962346,0.950247,0][-8.70449,6.88352,1.65919][-0.651629,0.757898,0.0311497][0.961776,0.950297,0][-8.76494,6.82706,1.76833][-0.651629,0.757898,0.0311497][0.961946,0.950056,0][-8.63915,6.9327,1.82954][-0.404683,0.908179,-0.106972][0.937565,0.956025,0][-8.6103,6.93279,1.72119][-0.17005,0.335508,-0.926562][0.937833,0.956067,0][-8.70449,6.88352,1.65919][0.0113325,0.774345,-0.632663][0.937885,0.956308,0][-8.57095,6.82929,1.8985][-0.547251,0.202577,0.812083][0.930111,0.939504,0][-8.76494,6.82706,1.76833][-0.547251,0.202577,0.812083][0.929443,0.939321,0][-8.64914,6.66515,1.88675][-0.547251,0.202577,0.812083][0.930108,0.939143,0][-8.57095,6.82929,1.8985][-0.834664,-0.211327,0.508603][0.973568,0.950498,0][-8.63915,6.9327,1.82954][-0.834664,-0.211327,0.508603][0.973265,0.950298,0][-8.76494,6.82706,1.76833][-0.549377,0.181552,0.815613][0.973578,0.950043,0][-8.45827,6.82254,1.92143][0.895322,-0.0697981,0.439917][0.965389,0.957475,0][-8.45738,6.60477,1.87588][0.884496,-0.0920555,0.457376][0.966011,0.957412,0][-8.35189,6.69532,1.6901][0.884496,-0.0920555,0.457376][0.965861,0.957848,0][-8.39182,6.88266,1.79573][0.895322,-0.0697981,0.439917][0.965297,0.957767,0][-8.45827,6.82254,1.92143][0.895322,-0.0697981,0.439917][0.965389,0.957475,0][-8.35189,6.69532,1.6901][0.884496,-0.0920555,0.457376][0.965861,0.957848,0][-8.39182,6.88266,1.79573][0.766026,0.431801,-0.476185][0.97381,0.940933,0][-8.35189,6.69532,1.6901][0.766026,0.431801,-0.476185][0.974405,0.941141,0][-8.48794,6.8167,1.58129][0.0113325,0.774345,-0.632663][0.9739,0.941413,0][-8.47029,6.92662,1.69326][0.817311,0.257919,-0.515248][0.954152,0.935725,0][-8.39182,6.88266,1.79573][0.895322,-0.0697981,0.439917][0.954141,0.935455,0][-8.48794,6.8167,1.58129][0.810247,0.349294,-0.470631][0.95461,0.935835,0][-8.45827,6.82254,1.92143][-0.207434,-0.312647,0.926943][0.957105,0.961062,0][-8.64914,6.66515,1.88675][-0.00899945,-0.20479,0.978765][0.957028,0.960574,0][-8.45738,6.60477,1.87588][-0.00899945,-0.20479,0.978765][0.957584,0.960757,0][-8.45827,6.82254,1.92143][-0.207434,-0.312647,0.926943][0.957105,0.961062,0][-8.57095,6.82929,1.8985][-0.834664,-0.211327,0.508603][0.956841,0.960914,0][-8.64914,6.66515,1.88675][-0.00899945,-0.20479,0.978765][0.957028,0.960574,0][-8.70449,6.88352,1.65919][-0.651629,0.757898,0.0311497][0.961776,0.950297,0][-8.85628,6.81128,1.69462][0.430868,0.699895,0.569649][0.961664,0.95004,0][-8.76494,6.82706,1.76833][-0.651629,0.757898,0.0311497][0.961946,0.950056,0][-8.70449,6.88352,1.65919][-0.651629,0.757898,0.0311497][0.961776,0.950297,0][-8.79113,6.87044,1.57265][0.430868,0.699895,0.569649][0.961467,0.950302,0][-8.85628,6.81128,1.69462][0.430868,0.699895,0.569649][0.961664,0.95004,0][-8.76494,6.82706,1.76833][-0.549377,0.181552,0.815613][0.967802,0.967986,0][-8.9041,6.57922,1.6738][-0.35599,-0.010512,0.934431][0.968226,0.967491,0][-8.64914,6.66515,1.88675][-0.00899945,-0.20479,0.978765][0.96842,0.96801,0][-8.76494,6.82706,1.76833][-0.549377,0.181552,0.815613][0.967802,0.967986,0][-8.85628,6.81128,1.69462][-0.35599,-0.010512,0.934431][0.967692,0.967816,0][-8.9041,6.57922,1.6738][-0.35599,-0.010512,0.934431][0.968226,0.967491,0][-8.79113,6.87044,1.57265][0.544429,0.703347,-0.457056][0.931385,0.945932,0][-8.70449,6.88352,1.65919][0.0113325,0.774345,-0.632663][0.931158,0.946103,0][-8.48794,6.8167,1.58129][0.0113325,0.774345,-0.632663][0.930459,0.945949,0][-8.35189,6.69532,1.6901][0.884496,-0.0920555,0.457376][0.965861,0.957848,0][-8.41699,6.46326,1.83538][0.859246,0.0756708,0.505935][0.966379,0.957405,0][-8.30872,6.58547,1.63321][0.859246,0.0756708,0.505935][0.966162,0.957892,0][-8.35189,6.69532,1.6901][0.884496,-0.0920555,0.457376][0.965861,0.957848,0][-8.45738,6.60477,1.87588][0.884496,-0.0920555,0.457376][0.966011,0.957412,0][-8.41699,6.46326,1.83538][0.859246,0.0756708,0.505935][0.966379,0.957405,0][-8.35189,6.69532,1.6901][0.766026,0.431801,-0.476185][0.974405,0.941141,0][-8.30872,6.58547,1.63321][0.7501,0.511735,-0.4189][0.974783,0.941238,0][-8.39162,6.55413,1.44647][0.7501,0.511735,-0.4189][0.974793,0.941648,0][-8.48794,6.8167,1.58129][0.0113325,0.774345,-0.632663][0.9739,0.941413,0][-8.35189,6.69532,1.6901][0.766026,0.431801,-0.476185][0.974405,0.941141,0][-8.39162,6.55413,1.44647][0.7501,0.511735,-0.4189][0.974793,0.941648,0][-8.45738,6.60477,1.87588][-0.00899945,-0.20479,0.978765][0.957584,0.960757,0][-8.5701,6.38985,1.78521][-0.156881,-0.312903,0.936739][0.957806,0.960297,0][-8.41699,6.46326,1.83538][-0.156881,-0.312903,0.936739][0.957984,0.960614,0][-8.45738,6.60477,1.87588][-0.00899945,-0.20479,0.978765][0.957584,0.960757,0][-8.64914,6.66515,1.88675][-0.00899945,-0.20479,0.978765][0.957028,0.960574,0][-8.5701,6.38985,1.78521][-0.156881,-0.312903,0.936739][0.957806,0.960297,0][-8.48794,6.8167,1.58129][0.0113325,0.774345,-0.632663][0.942477,0.942501,0][-8.39162,6.55413,1.44647][0.7501,0.511735,-0.4189][0.943344,0.942553,0][-8.525,6.49425,1.37929][0.197215,0.504096,-0.840829][0.943333,0.942842,0][-8.84948,6.45435,1.36278][0.00386883,0.0767679,-0.997041][0.945225,0.944279,0][-8.525,6.49425,1.37929][0.0354722,0.121748,-0.991927][0.944759,0.944855,0][-8.73534,6.3855,1.35842][0.0354722,0.121748,-0.991927][0.944848,0.944389,0][-8.84948,6.45435,1.36278][0.00386883,0.0767679,-0.997041][0.945225,0.944279,0][-8.75451,6.7192,1.38355][0.00386883,0.0767679,-0.997041][0.94574,0.94473,0][-8.525,6.49425,1.37929][0.0354722,0.121748,-0.991927][0.944759,0.944855,0][-8.64914,6.66515,1.88675][-0.00899945,-0.20479,0.978765][0.974049,0.950384,0][-8.67459,6.35427,1.66954][-0.604053,-0.422631,0.67565][0.975101,0.950073,0][-8.5701,6.38985,1.78521][-0.156881,-0.312903,0.936739][0.974968,0.950378,0][-8.64914,6.66515,1.88675][-0.00899945,-0.20479,0.978765][0.96842,0.96801,0][-8.9041,6.57922,1.6738][-0.35599,-0.010512,0.934431][0.968226,0.967491,0][-8.67459,6.35427,1.66954][-0.604053,-0.422631,0.67565][0.969198,0.967641,0][-8.90061,6.39879,1.46254][-0.743081,-0.514887,0.42746][0.950933,0.940496,0][-8.78647,6.32995,1.45817][-0.475151,-0.809587,0.344674][0.95134,0.940537,0][-8.67459,6.35427,1.66954][-0.604053,-0.422631,0.67565][0.951493,0.940983,0][-8.9041,6.57922,1.6738][-0.35599,-0.010512,0.934431][0.950565,0.940876,0][-8.90061,6.39879,1.46254][-0.743081,-0.514887,0.42746][0.950933,0.940496,0][-8.67459,6.35427,1.66954][-0.604053,-0.422631,0.67565][0.951493,0.940983,0][-8.84948,6.45435,1.36278][0.00386883,0.0767679,-0.997041][0.946145,0.965031,0][-8.73534,6.3855,1.35842][0.0354722,0.121748,-0.991927][0.945732,0.965029,0][-8.78647,6.32995,1.45817][-0.430824,-0.676335,-0.597463][0.945815,0.964834,0][-8.90061,6.39879,1.46254][-0.430834,-0.676335,-0.597456][0.946228,0.964835,0][-8.84948,6.45435,1.36278][0.00386883,0.0767679,-0.997041][0.946145,0.965031,0][-8.78647,6.32995,1.45817][-0.430824,-0.676335,-0.597463][0.945815,0.964834,0][-8.73534,6.3855,1.35842][-0.660826,-0.458635,-0.594106][0.972367,0.961168,0][-8.44028,6.01152,1.31892][-0.660826,-0.458635,-0.594106][0.973852,0.961225,0][-8.47727,5.97134,1.39108][-0.660826,-0.458635,-0.594106][0.973843,0.961404,0][-8.78647,6.32995,1.45817][-0.660825,-0.458634,-0.594109][0.972354,0.961415,0][-8.73534,6.3855,1.35842][-0.660826,-0.458635,-0.594106][0.972367,0.961168,0][-8.47727,5.97134,1.39108][-0.660826,-0.458635,-0.594106][0.973843,0.961404,0][-8.67459,6.35427,1.66954][-0.604053,-0.422631,0.67565][0.951493,0.940983,0][-8.47727,5.97134,1.39108][-0.70817,-0.615916,0.34517][0.9527,0.94057,0][-8.40476,5.98274,1.56018][-0.70817,-0.615916,0.34517][0.952785,0.940922,0][-8.67459,6.35427,1.66954][-0.604053,-0.422631,0.67565][0.951493,0.940983,0][-8.78647,6.32995,1.45817][-0.475151,-0.809587,0.344674][0.95134,0.940537,0][-8.47727,5.97134,1.39108][-0.70817,-0.615916,0.34517][0.9527,0.94057,0][-8.67459,6.35427,1.66954][-0.604053,-0.422631,0.67565][0.951493,0.940983,0][-8.40476,5.98274,1.56018][-0.70817,-0.615916,0.34517][0.952785,0.940922,0][-8.32918,6.00847,1.64384][-0.518134,-0.565243,0.641902][0.952911,0.941107,0][-8.5701,6.38985,1.78521][-0.156881,-0.312903,0.936739][0.951668,0.941238,0][-8.67459,6.35427,1.66954][-0.604053,-0.422631,0.67565][0.951493,0.940983,0][-8.32918,6.00847,1.64384][-0.518134,-0.565243,0.641902][0.952911,0.941107,0][-8.525,6.49425,1.37929][0.0354722,0.121748,-0.991927][0.944759,0.944855,0][-8.27307,6.10128,1.30499][-0.135525,0.0994796,-0.985767][0.943306,0.944829,0][-8.44028,6.01152,1.31892][-0.135525,0.0994796,-0.985767][0.943369,0.944455,0][-8.73534,6.3855,1.35842][0.0354722,0.121748,-0.991927][0.944848,0.944389,0][-8.525,6.49425,1.37929][0.0354722,0.121748,-0.991927][0.944759,0.944855,0][-8.44028,6.01152,1.31892][-0.135525,0.0994796,-0.985767][0.943369,0.944455,0][-8.39162,6.55413,1.44647][0.7501,0.511735,-0.4189][0.943344,0.942553,0][-8.17659,6.14459,1.35359][0.28929,0.353631,-0.889526][0.944782,0.942518,0][-8.27307,6.10128,1.30499][0.28929,0.353631,-0.889526][0.944775,0.942727,0][-8.525,6.49425,1.37929][0.197215,0.504096,-0.840829][0.943333,0.942842,0][-8.39162,6.55413,1.44647][0.7501,0.511735,-0.4189][0.943344,0.942553,0][-8.27307,6.10128,1.30499][0.28929,0.353631,-0.889526][0.944775,0.942727,0][-8.5701,6.38985,1.78521][-0.156881,-0.312903,0.936739][0.957806,0.960297,0][-8.32918,6.00847,1.64384][-0.518134,-0.565243,0.641902][0.959175,0.960097,0][-8.21002,6.06777,1.66392][0.0114449,-0.341174,0.939931][0.959308,0.960347,0][-8.41699,6.46326,1.83538][-0.156881,-0.312903,0.936739][0.957984,0.960614,0][-8.5701,6.38985,1.78521][-0.156881,-0.312903,0.936739][0.957806,0.960297,0][-8.21002,6.06777,1.66392][0.0114449,-0.341174,0.939931][0.959308,0.960347,0][-8.39162,6.55413,1.44647][0.828847,0.494525,-0.261643][0.941795,0.936393,0][-8.1317,6.15616,1.51769][0.828847,0.494525,-0.261643][0.943244,0.936155,0][-8.17659,6.14459,1.35359][0.828847,0.494525,-0.261643][0.943255,0.936492,0][-8.39162,6.55413,1.44647][0.7501,0.511735,-0.4189][0.974793,0.941648,0][-8.30872,6.58547,1.63321][0.7501,0.511735,-0.4189][0.974783,0.941238,0][-8.1317,6.15616,1.51769][0.790808,0.440446,-0.425007][0.976242,0.94142,0][-8.41699,6.46326,1.83538][0.859246,0.0756708,0.505935][0.946645,0.950874,0][-8.21002,6.06777,1.66392][0.814087,0.187805,0.549537][0.945162,0.950812,0][-8.1317,6.15616,1.51769][0.814087,0.187805,0.549537][0.945159,0.950439,0][-8.30872,6.58547,1.63321][0.859246,0.0756708,0.505935][0.94664,0.950359,0][-8.41699,6.46326,1.83538][0.859246,0.0756708,0.505935][0.946645,0.950874,0][-8.1317,6.15616,1.51769][0.814087,0.187805,0.549537][0.945159,0.950439,0][-8.1317,6.15616,1.51769][0.814087,0.187805,0.549537][0.945159,0.950439,0][-7.89351,5.51045,1.42976][0.781938,0.208438,0.587475][0.943052,0.950714,0][-7.81715,5.60562,1.29435][0.781938,0.208438,0.587475][0.943081,0.950354,0][-8.1317,6.15616,1.51769][0.814087,0.187805,0.549537][0.945159,0.950439,0][-8.21002,6.06777,1.66392][0.814087,0.187805,0.549537][0.945162,0.950812,0][-7.89351,5.51045,1.42976][0.781938,0.208438,0.587475][0.943052,0.950714,0][-8.17659,6.14459,1.35359][0.802468,0.55831,-0.210558][0.977142,0.966775,0][-7.81715,5.60562,1.29435][0.802468,0.55831,-0.210558][0.976633,0.965528,0][-7.87035,5.62236,1.13597][0.802468,0.55831,-0.210558][0.977154,0.9655,0][-8.17659,6.14459,1.35359][0.791113,0.555691,-0.255632][0.973838,0.965358,0][-8.1317,6.15616,1.51769][0.791113,0.555691,-0.255632][0.974358,0.965288,0][-7.81715,5.60562,1.29435][0.791113,0.555691,-0.255632][0.974256,0.966619,0][-8.21002,6.06777,1.66392][0.0114449,-0.341174,0.939931][0.959308,0.960347,0][-8.01703,5.46845,1.41421][0.0131502,-0.38096,0.924498][0.961049,0.959774,0][-7.89351,5.51045,1.42976][0.0131502,-0.38096,0.924498][0.96123,0.960005,0][-8.21002,6.06777,1.66392][0.0114449,-0.341174,0.939931][0.959308,0.960347,0][-8.32918,6.00847,1.64384][-0.518134,-0.565243,0.641902][0.959175,0.960097,0][-8.01703,5.46845,1.41421][0.0131502,-0.38096,0.924498][0.961049,0.959774,0][-8.17659,6.14459,1.35359][0.28929,0.353631,-0.889526][0.944782,0.942518,0][-7.87035,5.62236,1.13597][0.247411,0.49273,-0.834269][0.94666,0.942416,0][-7.97113,5.59773,1.09154][0.247411,0.49273,-0.834269][0.946594,0.942617,0][-8.27307,6.10128,1.30499][0.28929,0.353631,-0.889526][0.944775,0.942727,0][-8.17659,6.14459,1.35359][0.28929,0.353631,-0.889526][0.944782,0.942518,0][-7.97113,5.59773,1.09154][0.247411,0.49273,-0.834269][0.946594,0.942617,0][-8.27307,6.10128,1.30499][0.28929,0.353631,-0.889526][0.944775,0.942727,0][-7.97113,5.59773,1.09154][0.247411,0.49273,-0.834269][0.946594,0.942617,0][-8.14293,5.52671,1.10995][-0.212496,0.270606,-0.938945][0.946563,0.942985,0][-8.44028,6.01152,1.31892][-0.221955,0.267976,-0.93751][0.944803,0.943103,0][-8.27307,6.10128,1.30499][0.28929,0.353631,-0.889526][0.944775,0.942727,0][-8.14293,5.52671,1.10995][-0.212496,0.270606,-0.938945][0.946563,0.942985,0][-8.40476,5.98274,1.56018][-0.70817,-0.615916,0.34517][0.952785,0.940922,0][-8.09789,5.46296,1.33669][-0.542326,-0.581087,0.606812][0.954439,0.940676,0][-8.01703,5.46845,1.41421][0.0131502,-0.38096,0.924498][0.95461,0.940854,0][-8.32918,6.00847,1.64384][-0.518134,-0.565243,0.641902][0.952911,0.941107,0][-8.40476,5.98274,1.56018][-0.70817,-0.615916,0.34517][0.952785,0.940922,0][-8.01703,5.46845,1.41421][0.0131502,-0.38096,0.924498][0.95461,0.940854,0][-8.47727,5.97134,1.39108][-0.70817,-0.615916,0.34517][0.9527,0.94057,0][-8.17861,5.48285,1.17705][-0.747511,-0.590391,0.304411][0.954285,0.940335,0][-8.09789,5.46296,1.33669][-0.542326,-0.581087,0.606812][0.954439,0.940676,0][-8.40476,5.98274,1.56018][-0.70817,-0.615916,0.34517][0.952785,0.940922,0][-8.47727,5.97134,1.39108][-0.70817,-0.615916,0.34517][0.9527,0.94057,0][-8.09789,5.46296,1.33669][-0.542326,-0.581087,0.606812][0.954439,0.940676,0][-8.44028,6.01152,1.31892][-0.660826,-0.458635,-0.594106][0.973852,0.961225,0][-8.14293,5.52671,1.10995][-0.785861,-0.235528,-0.571795][0.975671,0.961116,0][-8.17861,5.48285,1.17705][-0.785861,-0.235528,-0.571795][0.975675,0.96129,0][-8.47727,5.97134,1.39108][-0.660826,-0.458635,-0.594106][0.973843,0.961404,0][-8.44028,6.01152,1.31892][-0.660826,-0.458635,-0.594106][0.973852,0.961225,0][-8.17861,5.48285,1.17705][-0.785861,-0.235528,-0.571795][0.975675,0.96129,0][-8.14293,5.52671,1.10995][-0.785861,-0.235528,-0.571795][0.977134,0.944481,0][-8.11746,5.38343,0.870836][-0.912522,0.300642,-0.27734][0.977383,0.944986,0][-8.191,5.27466,0.994882][-0.912522,0.300642,-0.27734][0.976825,0.944987,0][-8.17861,5.48285,1.17705][-0.785861,-0.235528,-0.571795][0.976867,0.944461,0][-8.14293,5.52671,1.10995][-0.785861,-0.235528,-0.571795][0.977134,0.944481,0][-8.191,5.27466,0.994882][-0.912522,0.300642,-0.27734][0.976825,0.944987,0][-8.09789,5.46296,1.33669][-0.542326,-0.581087,0.606812][0.934216,0.966925,0][-8.191,5.27466,0.994882][-0.688478,-0.192882,0.699139][0.933152,0.966934,0][-7.96542,5.10422,1.17][-0.688478,-0.192882,0.699139][0.933697,0.966386,0][-8.09789,5.46296,1.33669][-0.866057,-0.299044,0.400648][0.940075,0.960784,0][-8.17861,5.48285,1.17705][-0.785861,-0.235528,-0.571795][0.940521,0.960568,0][-8.191,5.27466,0.994882][-0.912522,0.300642,-0.27734][0.941324,0.960768,0][-8.01703,5.46845,1.41421][0.0131502,-0.38096,0.924498][0.978154,0.950727,0][-7.96542,5.10422,1.17][-0.688478,-0.192882,0.699139][0.979408,0.950492,0][-7.76793,5.02123,1.23849][-0.468842,-0.536769,0.701474][0.979692,0.950874,0][-8.01703,5.46845,1.41421][0.0131502,-0.38096,0.924498][0.978154,0.950727,0][-8.09789,5.46296,1.33669][-0.542326,-0.581087,0.606812][0.978184,0.950505,0][-7.96542,5.10422,1.17][-0.688478,-0.192882,0.699139][0.979408,0.950492,0][-7.97113,5.59773,1.09154][0.247411,0.49273,-0.834269][0.942414,0.956389,0][-7.7976,5.35111,0.864814][0.0907224,0.952318,-0.291308][0.943576,0.956447,0][-8.11746,5.38343,0.870836][0.0907224,0.952318,-0.291308][0.942979,0.956958,0][-8.14293,5.52671,1.10995][-0.212496,0.270606,-0.938945][0.942211,0.956708,0][-7.97113,5.59773,1.09154][0.247411,0.49273,-0.834269][0.942414,0.956389,0][-8.11746,5.38343,0.870836][0.0907224,0.952318,-0.291308][0.942979,0.956958,0][-7.87035,5.62236,1.13597][0.247411,0.49273,-0.834269][0.975285,0.957623,0][-7.57314,5.29905,0.89435][0.251853,0.717148,-0.649823][0.974021,0.957145,0][-7.7976,5.35111,0.864814][0.0907224,0.952318,-0.291308][0.974723,0.957086,0][-7.97113,5.59773,1.09154][0.247411,0.49273,-0.834269][0.978114,0.942204,0][-7.87035,5.62236,1.13597][0.247411,0.49273,-0.834269][0.978194,0.942035,0][-7.7976,5.35111,0.864814][0.0907224,0.952318,-0.291308][0.979115,0.942535,0][-7.89351,5.51045,1.42976][0.0131502,-0.38096,0.924498][0.96123,0.960005,0][-7.76793,5.02123,1.23849][-0.468842,-0.536769,0.701474][0.96258,0.959493,0][-7.62114,4.95677,1.25594][-0.283651,-0.411454,0.866169][0.963045,0.959607,0][-7.89351,5.51045,1.42976][0.0131502,-0.38096,0.924498][0.96123,0.960005,0][-8.01703,5.46845,1.41421][0.0131502,-0.38096,0.924498][0.961049,0.959774,0][-7.76793,5.02123,1.23849][-0.468842,-0.536769,0.701474][0.96258,0.959493,0][-7.81715,5.60562,1.29435][0.609508,0.763525,-0.213378][0.975113,0.957937,0][-7.37549,5.18251,1.04193][0.609508,0.763525,-0.213378][0.97331,0.957437,0][-7.57314,5.29905,0.89435][0.251853,0.717148,-0.649823][0.974021,0.957145,0][-7.87035,5.62236,1.13597][0.247411,0.49273,-0.834269][0.975285,0.957623,0][-7.81715,5.60562,1.29435][0.609508,0.763525,-0.213378][0.975113,0.957937,0][-7.57314,5.29905,0.89435][0.251853,0.717148,-0.649823][0.974021,0.957145,0][-7.81715,5.60562,1.29435][0.781938,0.208438,0.587475][0.943081,0.950354,0][-7.62114,4.95677,1.25594][0.581851,0.128223,0.803124][0.941066,0.950743,0][-7.37549,5.18251,1.04193][0.581851,0.128223,0.803124][0.941176,0.949996,0][-7.81715,5.60562,1.29435][0.781938,0.208438,0.587475][0.943081,0.950354,0][-7.89351,5.51045,1.42976][0.781938,0.208438,0.587475][0.943052,0.950714,0][-7.62114,4.95677,1.25594][0.581851,0.128223,0.803124][0.941066,0.950743,0][-8.25554,5.25384,0.933799][-0.559994,0.758561,0.333153][0.942972,0.937532,0][-8.191,5.27466,0.994882][-0.559994,0.758561,0.333153][0.943255,0.937544,0][-8.11746,5.38343,0.870836][-0.559994,0.758561,0.333153][0.943199,0.9379,0][-8.18257,5.3617,0.809441][-0.562614,0.758859,0.328022][0.942913,0.937887,0][-8.25554,5.25384,0.933799][-0.559994,0.758561,0.333153][0.942972,0.937532,0][-8.11746,5.38343,0.870836][-0.559994,0.758561,0.333153][0.943199,0.9379,0][-9.9008,7.0803,0.28709][-0.441424,0.889751,0.116138][0.968671,0.966056,0][-9.89754,7.00112,0.333299][-0.133514,0.495453,0.858312][0.968777,0.966198,0][-9.76197,7.07089,0.314115][-0.133514,0.495453,0.858312][0.968302,0.9662,0][-9.83181,7.1158,0.277329][-0.441424,0.889751,0.116138][0.96843,0.966057,0][-9.9008,7.0803,0.28709][-0.441424,0.889751,0.116138][0.968671,0.966056,0][-9.76197,7.07089,0.314115][-0.133514,0.495453,0.858312][0.968302,0.9662,0][-9.85127,7.11943,0.172862][-0.451872,0.540586,-0.709633][0.980012,0.947037,0][-9.8002,7.07803,0.108805][-0.451872,0.540586,-0.709633][0.979893,0.946872,0][-9.92056,7.01587,0.138097][-0.451872,0.540586,-0.709633][0.980324,0.946876,0][-9.91252,7.0878,0.187766][-0.451874,0.540587,-0.70963][0.980231,0.947039,0][-9.85127,7.11943,0.172862][-0.451872,0.540586,-0.709633][0.980012,0.947037,0][-9.92056,7.01587,0.138097][-0.451872,0.540586,-0.709633][0.980324,0.946876,0][-9.93156,7.07138,0.242071][-0.930646,0.272675,-0.244023][0.973158,0.959144,0][-9.92056,7.01587,0.138097][-0.930646,0.272675,-0.244023][0.972921,0.958977,0][-9.958,6.9836,0.244822][-0.930646,0.272675,-0.244023][0.973282,0.958982,0][-9.93156,7.07138,0.242071][-0.930646,0.272675,-0.244023][0.973158,0.959144,0][-9.91252,7.0878,0.187766][-0.930663,0.272633,-0.244002][0.972975,0.959141,0][-9.92056,7.01587,0.138097][-0.930646,0.272675,-0.244023][0.972921,0.958977,0][-9.9008,7.0803,0.28709][-0.441424,0.889751,0.116138][0.974956,0.96712,0][-9.958,6.9836,0.244822][-0.820061,0.26293,0.508298][0.975232,0.966959,0][-9.89754,7.00112,0.333299][-0.133514,0.495453,0.858312][0.975228,0.967175,0][-9.9008,7.0803,0.28709][-0.441424,0.889751,0.116138][0.974956,0.96712,0][-9.93156,7.07138,0.242071][-0.435456,0.892551,0.117177][0.974958,0.96701,0][-9.958,6.9836,0.244822][-0.820061,0.26293,0.508298][0.975232,0.966959,0][-9.85127,7.11943,0.172862][-0.451872,0.540586,-0.709633][0.93724,0.960568,0][-9.73213,7.09936,0.202335][0.244481,0.891553,-0.381264][0.937386,0.960787,0][-9.8002,7.07803,0.108805][-0.451872,0.540586,-0.709633][0.937074,0.960712,0][-9.85127,7.11943,0.172862][-0.451872,0.540586,-0.709633][0.93724,0.960568,0][-9.81664,7.13028,0.220452][0.244479,0.891559,-0.381251][0.937399,0.960606,0][-9.73213,7.09936,0.202335][0.244481,0.891553,-0.381264][0.937386,0.960787,0][-9.81664,7.13028,0.220452][0.244479,0.891559,-0.381251][0.937399,0.960606,0][-9.76197,7.07089,0.314115][0.385509,0.864309,0.323036][0.937723,0.960724,0][-9.73213,7.09936,0.202335][0.244481,0.891553,-0.381264][0.937386,0.960787,0][-9.81664,7.13028,0.220452][0.244479,0.891559,-0.381251][0.937399,0.960606,0][-9.83181,7.1158,0.277329][0.385511,0.864309,0.323034][0.937571,0.960574,0][-9.76197,7.07089,0.314115][0.385509,0.864309,0.323036][0.937723,0.960724,0][-9.76197,7.07089,0.314115][0.821214,0.480393,0.307945][0.952387,0.96774,0][-9.64516,6.88107,0.298737][0.821214,0.480393,0.307945][0.953078,0.967787,0][-9.62002,6.91569,0.177688][0.821214,0.480393,0.307945][0.95301,0.968038,0][-9.73213,7.09936,0.202335][0.82325,0.457393,0.33623][0.952344,0.967974,0][-9.76197,7.07089,0.314115][0.821214,0.480393,0.307945][0.952387,0.96774,0][-9.62002,6.91569,0.177688][0.821214,0.480393,0.307945][0.95301,0.968038,0][-9.73213,7.09936,0.202335][0.244481,0.891553,-0.381264][0.971604,0.944812,0][-9.62002,6.91569,0.177688][0.641718,0.472741,-0.603915][0.972278,0.944815,0][-9.70491,6.91084,0.0836871][0.641718,0.472741,-0.603915][0.972186,0.945054,0][-9.8002,7.07803,0.108805][-0.451872,0.540586,-0.709633][0.971582,0.945041,0][-9.73213,7.09936,0.202335][0.244481,0.891553,-0.381264][0.971604,0.944812,0][-9.70491,6.91084,0.0836871][0.641718,0.472741,-0.603915][0.972186,0.945054,0][-9.89754,7.00112,0.333299][-0.691743,-0.404798,0.598021][0.973414,0.946442,0][-9.87398,6.82368,0.240447][-0.691743,-0.404798,0.598021][0.974011,0.946361,0][-9.79827,6.82605,0.32963][-0.691743,-0.404798,0.598021][0.973983,0.946592,0][-9.89754,7.00112,0.333299][-0.691743,-0.404798,0.598021][0.973414,0.946442,0][-9.958,6.9836,0.244822][-0.720536,-0.394204,0.570466][0.973493,0.946235,0][-9.87398,6.82368,0.240447][-0.691743,-0.404798,0.598021][0.974011,0.946361,0][-9.958,6.9836,0.244822][-0.930646,0.272675,-0.244023][0.955303,0.950305,0][-9.83966,6.86077,0.124217][-0.823751,-0.422486,-0.378075][0.955301,0.9507,0][-9.87398,6.82368,0.240447][-0.823751,-0.422486,-0.378075][0.955042,0.950536,0][-9.958,6.9836,0.244822][-0.930646,0.272675,-0.244023][0.973196,0.94246,0][-9.92056,7.01587,0.138097][-0.930646,0.272675,-0.244023][0.973558,0.942426,0][-9.83966,6.86077,0.124217][-0.823751,-0.422486,-0.378075][0.973626,0.942771,0][-9.8002,7.07803,0.108805][-0.282268,-0.0167767,-0.959189][0.939382,0.950774,0][-9.70491,6.91084,0.0836871][-0.282268,-0.0167767,-0.959189][0.938785,0.950743,0][-9.83966,6.86077,0.124217][-0.282268,-0.0167767,-0.959189][0.938892,0.950467,0][-9.92056,7.01587,0.138097][-0.222309,-0.0287571,-0.974552][0.939433,0.950508,0][-9.8002,7.07803,0.108805][-0.282268,-0.0167767,-0.959189][0.939382,0.950774,0][-9.83966,6.86077,0.124217][-0.282268,-0.0167767,-0.959189][0.938892,0.950467,0][-9.76197,7.07089,0.314115][0.185667,0.0346999,0.982][0.937591,0.940937,0][-9.79827,6.82605,0.32963][-0.691743,-0.404798,0.598021][0.936935,0.941194,0][-9.64516,6.88107,0.298737][0.185667,0.0346999,0.982][0.936904,0.940873,0][-9.76197,7.07089,0.314115][0.185667,0.0346999,0.982][0.937591,0.940937,0][-9.89754,7.00112,0.333299][-0.691743,-0.404798,0.598021][0.937558,0.941238,0][-9.79827,6.82605,0.32963][-0.691743,-0.404798,0.598021][0.936935,0.941194,0][-9.15993,7.01221,-0.232407][0.348717,0.847598,0.399969][0.951794,0.949699,0][-9.19052,6.98973,-0.303714][-0.291852,0.940957,-0.171528][0.951973,0.949609,0][-9.27539,6.98047,-0.210099][-0.291852,0.940957,-0.171528][0.951977,0.949844,0][-9.20396,7.00741,-0.18384][0.348717,0.847598,0.399969][0.951796,0.949821,0][-9.15993,7.01221,-0.232407][0.348717,0.847598,0.399969][0.951794,0.949699,0][-9.27539,6.98047,-0.210099][-0.291852,0.940957,-0.171528][0.951977,0.949844,0][-9.13106,6.95172,-0.137436][0.712135,0.113434,0.692818][0.955365,0.964892,0][-9.13486,6.87313,-0.120654][0.712135,0.113434,0.692818][0.955609,0.964855,0][-9.05912,6.89503,-0.202097][0.712135,0.113434,0.692818][0.955559,0.965077,0][-9.09176,6.96308,-0.179688][0.712134,0.113433,0.692819][0.95534,0.965008,0][-9.13106,6.95172,-0.137436][0.712135,0.113434,0.692818][0.955365,0.964892,0][-9.05912,6.89503,-0.202097][0.712135,0.113434,0.692818][0.955559,0.965077,0][-9.13106,6.95172,-0.137436][0.00719419,0.208472,0.978002][0.963025,0.936461,0][-9.23583,6.91904,-0.129699][0.00719419,0.208472,0.978002][0.962956,0.936674,0][-9.13486,6.87313,-0.120654][0.00719419,0.208472,0.978002][0.962783,0.936484,0][-9.13106,6.95172,-0.137436][0.00719419,0.208472,0.978002][0.963025,0.936461,0][-9.18344,6.97554,-0.142128][0.00719277,0.208476,0.978001][0.963115,0.936559,0][-9.23583,6.91904,-0.129699][0.00719419,0.208472,0.978002][0.962956,0.936674,0][-9.20396,7.00741,-0.18384][0.337038,0.820772,0.461235][0.956761,0.950774,0][-9.27539,6.98047,-0.210099][-0.464648,0.578385,0.670502][0.956525,0.950829,0][-9.23583,6.91904,-0.129699][-0.464648,0.578385,0.670502][0.956537,0.950614,0][-9.18344,6.97554,-0.142128][0.33349,0.823672,0.458638][0.956767,0.950662,0][-9.20396,7.00741,-0.18384][0.337038,0.820772,0.461235][0.956761,0.950774,0][-9.23583,6.91904,-0.129699][-0.464648,0.578385,0.670502][0.956537,0.950614,0][-9.09176,6.96308,-0.179688][0.712134,0.113433,0.692819][0.950667,0.956453,0][-9.05912,6.89503,-0.202097][0.712135,0.113434,0.692818][0.950585,0.956306,0][-9.09411,6.95013,-0.288583][0.889697,0.450706,-0.0728229][0.950922,0.956309,0][-9.10991,6.99167,-0.224557][0.889698,0.450705,-0.0728228][0.950842,0.956455,0][-9.09176,6.96308,-0.179688][0.712134,0.113433,0.692819][0.950667,0.956453,0][-9.09411,6.95013,-0.288583][0.889697,0.450706,-0.0728229][0.950922,0.956309,0][-9.15993,7.01221,-0.232407][0.348717,0.847598,0.399969][0.951794,0.949699,0][-9.09411,6.95013,-0.288583][0.400071,0.810787,-0.42728][0.951687,0.949508,0][-9.19052,6.98973,-0.303714][-0.291852,0.940957,-0.171528][0.951973,0.949609,0][-9.15993,7.01221,-0.232407][0.348717,0.847598,0.399969][0.951794,0.949699,0][-9.10991,6.99167,-0.224557][0.400068,0.810786,-0.427283][0.951645,0.949647,0][-9.09411,6.95013,-0.288583][0.400071,0.810787,-0.42728][0.951687,0.949508,0][-9.19052,6.98973,-0.303714][-0.291852,0.940957,-0.171528][0.963386,0.948505,0][-9.12552,6.8334,-0.366388][0.320279,0.464227,-0.825781][0.963623,0.948829,0][-9.23994,6.88039,-0.384346][0.320279,0.464227,-0.825781][0.963243,0.948776,0][-9.19052,6.98973,-0.303714][-0.291852,0.940957,-0.171528][0.963386,0.948505,0][-9.09411,6.95013,-0.288583][0.400071,0.810787,-0.42728][0.963706,0.948549,0][-9.12552,6.8334,-0.366388][0.320279,0.464227,-0.825781][0.963623,0.948829,0][-9.09411,6.95013,-0.288583][0.889697,0.450706,-0.0728229][0.971941,0.942516,0][-9.08399,6.768,-0.263744][0.927079,0.00038614,-0.374867][0.97196,0.942838,0][-9.12552,6.8334,-0.366388][0.927079,0.00038614,-0.374867][0.971657,0.942733,0][-9.09411,6.95013,-0.288583][0.889697,0.450706,-0.0728229][0.971941,0.942516,0][-9.05912,6.89503,-0.202097][0.712135,0.113434,0.692818][0.972195,0.942605,0][-9.08399,6.768,-0.263744][0.927079,0.00038614,-0.374867][0.97196,0.942838,0][-9.23583,6.91904,-0.129699][-0.464648,0.578385,0.670502][0.956537,0.950614,0][-9.34066,6.86941,-0.273241][-0.822951,0.176748,0.539918][0.956147,0.950836,0][-9.29372,6.7965,-0.17782][-0.822951,0.176748,0.539918][0.95616,0.950581,0][-9.23583,6.91904,-0.129699][-0.464648,0.578385,0.670502][0.956537,0.950614,0][-9.27539,6.98047,-0.210099][-0.464648,0.578385,0.670502][0.956525,0.950829,0][-9.34066,6.86941,-0.273241][-0.822951,0.176748,0.539918][0.956147,0.950836,0][-9.13486,6.87313,-0.120654][0.00719419,0.208472,0.978002][0.962783,0.936484,0][-9.29372,6.7965,-0.17782][-0.207488,-0.27109,0.939925][0.962595,0.936812,0][-9.17389,6.74201,-0.167086][-0.207488,-0.27109,0.939925][0.962389,0.936586,0][-9.13486,6.87313,-0.120654][0.00719419,0.208472,0.978002][0.962783,0.936484,0][-9.23583,6.91904,-0.129699][0.00719419,0.208472,0.978002][0.962956,0.936674,0][-9.29372,6.7965,-0.17782][-0.207488,-0.27109,0.939925][0.962595,0.936812,0][-9.13486,6.87313,-0.120654][0.712135,0.113434,0.692818][0.972429,0.942726,0][-9.17389,6.74201,-0.167086][0.7198,-0.412079,0.55864][0.972236,0.942982,0][-9.08399,6.768,-0.263744][0.927079,0.00038614,-0.374867][0.97196,0.942838,0][-9.05912,6.89503,-0.202097][0.712135,0.113434,0.692818][0.972195,0.942605,0][-9.13486,6.87313,-0.120654][0.712135,0.113434,0.692818][0.972429,0.942726,0][-9.08399,6.768,-0.263744][0.927079,0.00038614,-0.374867][0.97196,0.942838,0][-9.19052,6.98973,-0.303714][-0.604549,0.631423,-0.48562][0.941996,0.957444,0][-9.23994,6.88039,-0.384346][-0.604549,0.631423,-0.48562][0.941643,0.957621,0][-9.34066,6.86941,-0.273241][-0.604549,0.631423,-0.48562][0.941453,0.95741,0][-9.27539,6.98047,-0.210099][-0.604548,0.631421,-0.485623][0.941836,0.957265,0][-9.19052,6.98973,-0.303714][-0.604549,0.631423,-0.48562][0.941996,0.957444,0][-9.34066,6.86941,-0.273241][-0.604549,0.631423,-0.48562][0.941453,0.95741,0][-9.23994,6.88039,-0.384346][-0.604549,0.631423,-0.48562][0.941643,0.957621,0][-9.24052,6.70533,-0.479124][-0.611784,0.378161,-0.694776][0.941172,0.957832,0][-9.37956,6.68267,-0.369025][-0.611784,0.378161,-0.694776][0.9409,0.957627,0][-9.34066,6.86941,-0.273241][-0.604549,0.631423,-0.48562][0.941453,0.95741,0][-9.23994,6.88039,-0.384346][-0.604549,0.631423,-0.48562][0.941643,0.957621,0][-9.37956,6.68267,-0.369025][-0.611784,0.378161,-0.694776][0.9409,0.957627,0][-9.17389,6.74201,-0.167086][0.7198,-0.412079,0.55864][0.955993,0.964853,0][-9.18507,6.5968,-0.187366][0.657638,-0.153616,0.737506][0.956435,0.964851,0][-9.06535,6.63599,-0.285957][0.657638,-0.153616,0.737506][0.956346,0.96516,0][-9.08399,6.768,-0.263744][0.927079,0.00038614,-0.374867][0.955935,0.965117,0][-9.17389,6.74201,-0.167086][0.7198,-0.412079,0.55864][0.955993,0.964853,0][-9.06535,6.63599,-0.285957][0.657638,-0.153616,0.737506][0.956346,0.96516,0][-9.17389,6.74201,-0.167086][-0.207488,-0.27109,0.939925][0.962389,0.936586,0][-9.33191,6.62585,-0.234845][-0.324882,-0.106238,0.939769][0.962078,0.936921,0][-9.18507,6.5968,-0.187366][-0.324882,-0.106238,0.939769][0.961943,0.936637,0][-9.17389,6.74201,-0.167086][-0.207488,-0.27109,0.939925][0.962389,0.936586,0][-9.29372,6.7965,-0.17782][-0.207488,-0.27109,0.939925][0.962595,0.936812,0][-9.33191,6.62585,-0.234845][-0.324882,-0.106238,0.939769][0.962078,0.936921,0][-9.29372,6.7965,-0.17782][-0.926964,0.0853975,0.365301][0.941287,0.957228,0][-9.37956,6.68267,-0.369025][-0.611784,0.378161,-0.694776][0.9409,0.957627,0][-9.33191,6.62585,-0.234845][-0.926964,0.0853975,0.365301][0.94077,0.957367,0][-9.29372,6.7965,-0.17782][-0.926964,0.0853975,0.365301][0.941287,0.957228,0][-9.34066,6.86941,-0.273241][-0.604549,0.631423,-0.48562][0.941453,0.95741,0][-9.37956,6.68267,-0.369025][-0.611784,0.378161,-0.694776][0.9409,0.957627,0][-9.08399,6.768,-0.263744][0.927079,0.00038614,-0.374867][0.97196,0.942838,0][-9.06535,6.63599,-0.285957][0.657638,-0.153616,0.737506][0.971851,0.943053,0][-9.10333,6.68454,-0.42589][0.964324,0.170305,-0.202673][0.971428,0.942966,0][-9.12552,6.8334,-0.366388][0.927079,0.00038614,-0.374867][0.971657,0.942733,0][-9.08399,6.768,-0.263744][0.927079,0.00038614,-0.374867][0.97196,0.942838,0][-9.10333,6.68454,-0.42589][0.964324,0.170305,-0.202673][0.971428,0.942966,0][-9.12552,6.8334,-0.366388][0.320279,0.464227,-0.825781][0.963623,0.948829,0][-9.10333,6.68454,-0.42589][0.383846,0.391508,-0.836292][0.963733,0.949141,0][-9.24052,6.70533,-0.479124][0.383846,0.391508,-0.836292][0.963274,0.94917,0][-9.23994,6.88039,-0.384346][0.320279,0.464227,-0.825781][0.963243,0.948776,0][-9.12552,6.8334,-0.366388][0.320279,0.464227,-0.825781][0.963623,0.948829,0][-9.24052,6.70533,-0.479124][0.383846,0.391508,-0.836292][0.963274,0.94917,0][-9.10333,6.68454,-0.42589][0.64882,0.0132444,-0.760827][0.980055,0.940005,0][-9.04238,6.38811,-0.379075][0.64882,0.0132444,-0.760827][0.979161,0.939817,0][-9.15146,6.35051,-0.472747][0.64882,0.0132444,-0.760827][0.979228,0.939592,0][-9.24052,6.70533,-0.479124][0.370748,0.0764206,-0.925584][0.980324,0.93979,0][-9.10333,6.68454,-0.42589][0.64882,0.0132444,-0.760827][0.980055,0.940005,0][-9.15146,6.35051,-0.472747][0.64882,0.0132444,-0.760827][0.979228,0.939592,0][-9.06535,6.63599,-0.285957][0.657638,-0.153616,0.737506][0.971851,0.943053,0][-9.04906,6.39049,-0.22633][0.99618,0.0763857,0.0423262][0.971958,0.943491,0][-9.04238,6.38811,-0.379075][0.99618,0.0763857,0.0423262][0.971486,0.943455,0][-9.10333,6.68454,-0.42589][0.964324,0.170305,-0.202673][0.971428,0.942966,0][-9.06535,6.63599,-0.285957][0.657638,-0.153616,0.737506][0.971851,0.943053,0][-9.04238,6.38811,-0.379075][0.99618,0.0763857,0.0423262][0.971486,0.943455,0][-9.33191,6.62585,-0.234845][-0.926964,0.0853975,0.365301][0.94077,0.957367,0][-9.31296,6.31317,-0.405731][-0.996075,-0.0804985,0.0368023][0.939956,0.957746,0][-9.30701,6.3096,-0.252583][-0.996075,-0.0804985,0.0368023][0.939918,0.957444,0][-9.33191,6.62585,-0.234845][-0.926964,0.0853975,0.365301][0.94077,0.957367,0][-9.37956,6.68267,-0.369025][-0.611784,0.378161,-0.694776][0.9409,0.957627,0][-9.31296,6.31317,-0.405731][-0.996075,-0.0804985,0.0368023][0.939956,0.957746,0][-9.18507,6.5968,-0.187366][-0.324882,-0.106238,0.939769][0.961943,0.936637,0][-9.30701,6.3096,-0.252583][-0.623484,0.0883176,0.776832][0.961091,0.936934,0][-9.18531,6.34125,-0.15851][-0.623484,0.0883176,0.776832][0.961151,0.936688,0][-9.18507,6.5968,-0.187366][-0.324882,-0.106238,0.939769][0.961943,0.936637,0][-9.33191,6.62585,-0.234845][-0.324882,-0.106238,0.939769][0.962078,0.936921,0][-9.30701,6.3096,-0.252583][-0.623484,0.0883176,0.776832][0.961091,0.936934,0][-9.18507,6.5968,-0.187366][-0.324882,-0.106238,0.939769][0.961943,0.936637,0][-9.18531,6.34125,-0.15851][-0.623484,0.0883176,0.776832][0.961151,0.936688,0][-9.04906,6.39049,-0.22633][0.413567,0.101769,0.904768][0.961262,0.93641,0][-9.06535,6.63599,-0.285957][0.657638,-0.153616,0.737506][0.956346,0.96516,0][-9.18507,6.5968,-0.187366][0.657638,-0.153616,0.737506][0.956435,0.964851,0][-9.04906,6.39049,-0.22633][0.99618,0.0763857,0.0423262][0.957118,0.965071,0][-9.24052,6.70533,-0.479124][0.370748,0.0764206,-0.925584][0.980324,0.93979,0][-9.15146,6.35051,-0.472747][0.64882,0.0132444,-0.760827][0.979228,0.939592,0][-9.31296,6.31317,-0.405731][-0.359872,-0.106984,-0.926848][0.979378,0.939278,0][-9.37956,6.68267,-0.369025][-0.611784,0.378161,-0.694776][0.965412,0.948505,0][-9.24052,6.70533,-0.479124][-0.611784,0.378161,-0.694776][0.965402,0.948859,0][-9.31296,6.31317,-0.405731][-0.996075,-0.0804985,0.0368023][0.964239,0.948547,0][-9.31296,6.31317,-0.405731][-0.359872,-0.106984,-0.926848][0.979378,0.939278,0][-9.00452,5.72356,-0.334142][-0.16945,-0.205669,-0.96384][0.977309,0.939226,0][-9.20273,5.6555,-0.284773][-0.16945,-0.205669,-0.96384][0.977433,0.938818,0][-9.31296,6.31317,-0.405731][-0.359872,-0.106984,-0.926848][0.979378,0.939278,0][-9.15146,6.35051,-0.472747][0.64882,0.0132444,-0.760827][0.979228,0.939592,0][-9.00452,5.72356,-0.334142][-0.16945,-0.205669,-0.96384][0.977309,0.939226,0][-9.18531,6.34125,-0.15851][0.183771,0.314302,0.931366][0.932834,0.944574,0][-9.1243,5.76063,0.0253895][0.183771,0.314302,0.931366][0.931099,0.944918,0][-8.95735,5.8368,-0.0332535][0.183771,0.314302,0.931366][0.931112,0.944554,0][-9.04906,6.39049,-0.22633][0.308996,0.358375,0.880959][0.932808,0.944288,0][-9.18531,6.34125,-0.15851][0.183771,0.314302,0.931366][0.932834,0.944574,0][-8.95735,5.8368,-0.0332535][0.183771,0.314302,0.931366][0.931112,0.944554,0][-9.30701,6.3096,-0.252583][-0.77723,0.0585418,0.626487][0.976022,0.946529,0][-9.23522,5.67971,-0.104656][-0.77723,0.0585418,0.626487][0.977892,0.946885,0][-9.1243,5.76063,0.0253895][-0.77723,0.0585418,0.626487][0.977614,0.947215,0][-9.18531,6.34125,-0.15851][0.183771,0.314302,0.931366][0.932834,0.944574,0][-9.30701,6.3096,-0.252583][-0.630173,0.173485,0.756826][0.932894,0.944821,0][-9.1243,5.76063,0.0253895][0.183771,0.314302,0.931366][0.931099,0.944918,0][-9.30701,6.3096,-0.252583][-0.996075,-0.0804985,0.0368023][0.939918,0.957444,0][-9.20273,5.6555,-0.284773][-0.976568,-0.147999,-0.156243][0.938222,0.95759,0][-9.23522,5.67971,-0.104656][-0.976568,-0.147999,-0.156243][0.938205,0.957233,0][-9.30701,6.3096,-0.252583][-0.996075,-0.0804985,0.0368023][0.939918,0.957444,0][-9.31296,6.31317,-0.405731][-0.996075,-0.0804985,0.0368023][0.939956,0.957746,0][-9.20273,5.6555,-0.284773][-0.976568,-0.147999,-0.156243][0.938222,0.95759,0][-9.04906,6.39049,-0.22633][0.99618,0.0763857,0.0423262][0.971958,0.943491,0][-8.95735,5.8368,-0.0332535][0.946551,0.234134,0.22186][0.972388,0.944447,0][-8.90923,5.80854,-0.208733][0.946551,0.234134,0.22186][0.971844,0.944417,0][-9.04238,6.38811,-0.379075][0.99618,0.0763857,0.0423262][0.971486,0.943455,0][-9.04906,6.39049,-0.22633][0.99618,0.0763857,0.0423262][0.971958,0.943491,0][-8.90923,5.80854,-0.208733][0.946551,0.234134,0.22186][0.971844,0.944417,0][-9.15146,6.35051,-0.472747][0.64882,0.0132444,-0.760827][0.978156,0.948269,0][-8.90923,5.80854,-0.208733][0.780486,0.0450749,-0.623546][0.976138,0.948353,0][-9.00452,5.72356,-0.334142][-0.16945,-0.205669,-0.96384][0.97615,0.947999,0][-9.15146,6.35051,-0.472747][0.64882,0.0132444,-0.760827][0.979228,0.939592,0][-9.04238,6.38811,-0.379075][0.64882,0.0132444,-0.760827][0.979161,0.939817,0][-8.90923,5.80854,-0.208733][0.780486,0.0450749,-0.623546][0.97739,0.939473,0][-9.00452,5.72356,-0.334142][0.730903,0.209493,-0.649534][0.948986,0.966837,0][-8.66703,5.44223,-0.0451085][0.730903,0.209493,-0.649534][0.947456,0.967208,0][-8.74325,5.28415,-0.181867][0.730903,0.209493,-0.649534][0.947328,0.966775,0][-9.00452,5.72356,-0.334142][0.730903,0.209493,-0.649534][0.948986,0.966837,0][-8.90923,5.80854,-0.208733][0.721552,0.178255,-0.66902][0.948914,0.967189,0][-8.66703,5.44223,-0.0451085][0.730903,0.209493,-0.649534][0.947456,0.967208,0][-8.90923,5.80854,-0.208733][0.946551,0.234134,0.22186][0.958969,0.965174,0][-8.77074,5.52447,0.141666][0.784213,0.595853,0.173114][0.959941,0.964834,0][-8.66703,5.44223,-0.0451085][0.784213,0.595853,0.173114][0.96021,0.965233,0][-8.90923,5.80854,-0.208733][0.946551,0.234134,0.22186][0.958969,0.965174,0][-8.95735,5.8368,-0.0332535][0.946551,0.234134,0.22186][0.958885,0.964861,0][-8.77074,5.52447,0.141666][0.784213,0.595853,0.173114][0.959941,0.964834,0][-9.20273,5.6555,-0.284773][-0.976568,-0.147999,-0.156243][0.959735,0.938189,0][-8.98835,5.18519,-0.139692][-0.87025,-0.454952,-0.188901][0.958474,0.938402,0][-9.07373,5.26681,0.0570909][-0.87025,-0.454952,-0.188901][0.958407,0.937955,0][-9.23522,5.67971,-0.104656][-0.976568,-0.147999,-0.156243][0.959513,0.937852,0][-9.20273,5.6555,-0.284773][-0.976568,-0.147999,-0.156243][0.959735,0.938189,0][-9.07373,5.26681,0.0570909][-0.87025,-0.454952,-0.188901][0.958407,0.937955,0][-9.23522,5.67971,-0.104656][-0.77723,0.0585418,0.626487][0.977892,0.946885,0][-9.07373,5.26681,0.0570909][-0.797935,-0.0779336,0.597683][0.979121,0.94737,0][-8.97918,5.42427,0.203858][-0.797935,-0.0779336,0.597683][0.978596,0.947694,0][-9.1243,5.76063,0.0253895][-0.77723,0.0585418,0.626487][0.977614,0.947215,0][-9.23522,5.67971,-0.104656][-0.77723,0.0585418,0.626487][0.977892,0.946885,0][-8.97918,5.42427,0.203858][-0.797935,-0.0779336,0.597683][0.978596,0.947694,0][-9.1243,5.76063,0.0253895][0.183771,0.314302,0.931366][0.931099,0.944918,0][-8.97918,5.42427,0.203858][0.0314711,0.479021,0.877239][0.929959,0.944917,0][-8.77074,5.52447,0.141666][0.0314711,0.479021,0.877239][0.929989,0.944459,0][-8.95735,5.8368,-0.0332535][0.183771,0.314302,0.931366][0.931112,0.944554,0][-9.1243,5.76063,0.0253895][0.183771,0.314302,0.931366][0.931099,0.944918,0][-8.77074,5.52447,0.141666][0.0314711,0.479021,0.877239][0.929989,0.944459,0][-9.00452,5.72356,-0.334142][-0.16945,-0.205669,-0.96384][0.977309,0.939226,0][-8.74325,5.28415,-0.181867][-0.0243656,-0.340252,-0.940019][0.975718,0.93924,0][-8.98835,5.18519,-0.139692][-0.0243656,-0.340252,-0.940019][0.975831,0.938721,0][-9.20273,5.6555,-0.284773][-0.16945,-0.205669,-0.96384][0.977433,0.938818,0][-9.00452,5.72356,-0.334142][-0.16945,-0.205669,-0.96384][0.977309,0.939226,0][-8.98835,5.18519,-0.139692][-0.0243656,-0.340252,-0.940019][0.975831,0.938721,0][-8.74325,5.28415,-0.181867][-0.0243656,-0.340252,-0.940019][0.975718,0.93924,0][-8.42135,5.03412,0.0928628][0.106677,-0.669946,-0.734705][0.974544,0.939546,0][-8.62698,4.85389,0.227357][0.106677,-0.669947,-0.734705][0.974376,0.939015,0][-8.98835,5.18519,-0.139692][-0.0243656,-0.340252,-0.940019][0.975831,0.938721,0][-8.74325,5.28415,-0.181867][-0.0243656,-0.340252,-0.940019][0.975718,0.93924,0][-8.62698,4.85389,0.227357][0.106677,-0.669947,-0.734705][0.974376,0.939015,0][-8.97918,5.42427,0.203858][0.0314711,0.479021,0.877239][0.929959,0.944917,0][-8.79098,5.12092,0.509137][-0.0837447,0.68057,0.727881][0.92886,0.944812,0][-8.55137,5.33613,0.335486][-0.0837447,0.68057,0.727881][0.929181,0.944207,0][-8.77074,5.52447,0.141666][0.0314711,0.479021,0.877239][0.929989,0.944459,0][-8.97918,5.42427,0.203858][0.0314711,0.479021,0.877239][0.929959,0.944917,0][-8.55137,5.33613,0.335486][-0.0837447,0.68057,0.727881][0.929181,0.944207,0][-9.07373,5.26681,0.0570909][-0.797935,-0.0779336,0.597683][0.979121,0.94737,0][-8.77382,4.93529,0.392556][-0.84272,-0.340002,0.417399][0.980059,0.948285,0][-8.79098,5.12092,0.509137][-0.84272,-0.340002,0.417399][0.979426,0.948407,0][-8.97918,5.42427,0.203858][-0.797935,-0.0779336,0.597683][0.978596,0.947694,0][-9.07373,5.26681,0.0570909][-0.797935,-0.0779336,0.597683][0.979121,0.94737,0][-8.79098,5.12092,0.509137][-0.84272,-0.340002,0.417399][0.979426,0.948407,0][-8.98835,5.18519,-0.139692][-0.87025,-0.454952,-0.188901][0.958474,0.938402,0][-8.62698,4.85389,0.227357][-0.591899,-0.794701,-0.13456][0.956627,0.938339,0][-8.77382,4.93529,0.392556][-0.591899,-0.794701,-0.13456][0.956757,0.937881,0][-9.07373,5.26681,0.0570909][-0.87025,-0.454952,-0.188901][0.958407,0.937955,0][-8.98835,5.18519,-0.139692][-0.87025,-0.454952,-0.188901][0.958474,0.938402,0][-8.77382,4.93529,0.392556][-0.591899,-0.794701,-0.13456][0.956757,0.937881,0][-8.66703,5.44223,-0.0451085][0.723618,0.689647,-0.0276413][0.977295,0.955283,0][-8.55137,5.33613,0.335486][0.723618,0.689647,-0.0276413][0.97683,0.956037,0][-8.45097,5.22413,0.169557][0.723618,0.689647,-0.0276413][0.976399,0.955709,0][-8.66703,5.44223,-0.0451085][0.723618,0.689647,-0.0276413][0.977295,0.955283,0][-8.77074,5.52447,0.141666][0.641699,0.766728,0.0187402][0.977696,0.955653,0][-8.55137,5.33613,0.335486][0.723618,0.689647,-0.0276413][0.97683,0.956037,0][-8.74325,5.28415,-0.181867][0.749792,0.344838,-0.564711][0.97812,0.945196,0][-8.45097,5.22413,0.169557][0.723618,0.689647,-0.0276413][0.978634,0.944346,0][-8.42135,5.03412,0.0928628][0.749792,0.344838,-0.564711][0.979211,0.944512,0][-8.74325,5.28415,-0.181867][0.772208,0.159679,-0.614977][0.961885,0.940459,0][-8.66703,5.44223,-0.0451085][0.772208,0.159679,-0.614977][0.962264,0.94009,0][-8.45097,5.22413,0.169557][0.772208,0.159679,-0.614977][0.963317,0.940409,0][-9.79827,6.82605,0.32963][-0.691743,-0.404798,0.598021][0.936935,0.941194,0][-9.53473,6.19174,0.373819][0.274929,0.180023,0.944461][0.934797,0.941211,0][-9.36697,6.27746,0.308647][0.274929,0.180023,0.944461][0.934836,0.940839,0][-9.64516,6.88107,0.298737][0.185667,0.0346999,0.982][0.936904,0.940873,0][-9.79827,6.82605,0.32963][-0.691743,-0.404798,0.598021][0.936935,0.941194,0][-9.36697,6.27746,0.308647][0.274929,0.180023,0.944461][0.934836,0.940839,0][-9.83966,6.86077,0.124217][-0.282268,-0.0167767,-0.959189][0.938892,0.950467,0][-9.39413,6.18519,0.0471945][-0.307513,-0.0948514,-0.946805][0.936374,0.950442,0][-9.56162,6.10186,0.10994][-0.307513,-0.0948514,-0.946805][0.936453,0.950075,0][-9.83966,6.86077,0.124217][-0.282268,-0.0167767,-0.959189][0.938892,0.950467,0][-9.70491,6.91084,0.0836871][-0.282268,-0.0167767,-0.959189][0.938785,0.950743,0][-9.39413,6.18519,0.0471945][-0.307513,-0.0948514,-0.946805][0.936374,0.950442,0][-9.83966,6.86077,0.124217][-0.823751,-0.422486,-0.378075][0.953198,0.952033,0][-9.56162,6.10186,0.10994][-0.938865,-0.343548,-0.022525][0.951472,0.952319,0][-9.5771,6.13419,0.262429][-0.938865,-0.343548,-0.022525][0.951448,0.952012,0][-9.87398,6.82368,0.240447][-0.823751,-0.422486,-0.378075][0.973238,0.942817,0][-9.83966,6.86077,0.124217][-0.823751,-0.422486,-0.378075][0.973626,0.942771,0][-9.5771,6.13419,0.262429][-0.938865,-0.343548,-0.022525][0.973227,0.944305,0][-9.79827,6.82605,0.32963][-0.691743,-0.404798,0.598021][0.973983,0.946592,0][-9.5771,6.13419,0.262429][-0.824523,-0.309574,0.47363][0.976202,0.946869,0][-9.53473,6.19174,0.373819][0.274929,0.180023,0.944461][0.975983,0.947078,0][-9.79827,6.82605,0.32963][-0.691743,-0.404798,0.598021][0.973983,0.946592,0][-9.87398,6.82368,0.240447][-0.691743,-0.404798,0.598021][0.974011,0.946361,0][-9.5771,6.13419,0.262429][-0.824523,-0.309574,0.47363][0.976202,0.946869,0][-9.70491,6.91084,0.0836871][0.641718,0.472741,-0.603915][0.972186,0.945054,0][-9.34243,6.25207,0.173353][0.780695,0.360038,-0.510772][0.974486,0.944783,0][-9.39413,6.18519,0.0471945][0.780695,0.360038,-0.510772][0.974621,0.945069,0][-9.70491,6.91084,0.0836871][0.641718,0.472741,-0.603915][0.972186,0.945054,0][-9.62002,6.91569,0.177688][0.641718,0.472741,-0.603915][0.972278,0.944815,0][-9.34243,6.25207,0.173353][0.780695,0.360038,-0.510772][0.974486,0.944783,0][-9.62002,6.91569,0.177688][0.821214,0.480393,0.307945][0.95301,0.968038,0][-9.36697,6.27746,0.308647][0.918628,0.383632,0.0945969][0.955139,0.967776,0][-9.34243,6.25207,0.173353][0.918628,0.383632,0.0945969][0.955231,0.968039,0][-9.62002,6.91569,0.177688][0.821214,0.480393,0.307945][0.95301,0.968038,0][-9.64516,6.88107,0.298737][0.821214,0.480393,0.307945][0.953078,0.967787,0][-9.36697,6.27746,0.308647][0.918628,0.383632,0.0945969][0.955139,0.967776,0][-9.34243,6.25207,0.173353][0.918628,0.383632,0.0945969][0.955231,0.968039,0][-9.10446,5.84983,0.37578][0.79188,0.573752,0.209129][0.956706,0.967692,0][-9.00105,5.74308,0.277109][0.79188,0.573752,0.209129][0.957143,0.96791,0][-9.34243,6.25207,0.173353][0.918628,0.383632,0.0945969][0.955231,0.968039,0][-9.36697,6.27746,0.308647][0.918628,0.383632,0.0945969][0.955139,0.967776,0][-9.10446,5.84983,0.37578][0.79188,0.573752,0.209129][0.956706,0.967692,0][-9.39413,6.18519,0.0471945][0.780695,0.360038,-0.510772][0.980324,0.955466,0][-9.00105,5.74308,0.277109][0.779266,0.489045,-0.391893][0.978634,0.955922,0][-8.96555,5.57766,0.141278][0.779266,0.489045,-0.391893][0.978316,0.955652,0][-9.39413,6.18519,0.0471945][0.780695,0.360038,-0.510772][0.974621,0.945069,0][-9.34243,6.25207,0.173353][0.780695,0.360038,-0.510772][0.974486,0.944783,0][-9.00105,5.74308,0.277109][0.779266,0.489045,-0.391893][0.97635,0.944461,0][-9.5771,6.13419,0.262429][-0.824523,-0.309574,0.47363][0.976202,0.946869,0][-9.24261,5.53321,0.434166][-0.696107,-0.189566,0.692459][0.978058,0.947629,0][-9.23448,5.72401,0.494565][-0.696107,-0.189566,0.692459][0.977447,0.947708,0][-9.53473,6.19174,0.373819][0.274929,0.180023,0.944461][0.975983,0.947078,0][-9.5771,6.13419,0.262429][-0.824523,-0.309574,0.47363][0.976202,0.946869,0][-9.23448,5.72401,0.494565][-0.696107,-0.189566,0.692459][0.977447,0.947708,0][-9.56162,6.10186,0.10994][-0.938865,-0.343548,-0.022525][0.951472,0.952319,0][-9.14804,5.41375,0.273536][-0.841856,-0.530091,-0.101399][0.949339,0.952303,0][-9.24261,5.53321,0.434166][-0.841856,-0.530091,-0.101399][0.949638,0.951932,0][-9.5771,6.13419,0.262429][-0.938865,-0.343548,-0.022525][0.951448,0.952012,0][-9.56162,6.10186,0.10994][-0.938865,-0.343548,-0.022525][0.951472,0.952319,0][-9.24261,5.53321,0.434166][-0.841856,-0.530091,-0.101399][0.949638,0.951932,0][-9.56162,6.10186,0.10994][-0.307513,-0.0948514,-0.946805][0.936453,0.950075,0][-8.96555,5.57766,0.141278][-0.29101,-0.38331,-0.876577][0.93406,0.950466,0][-9.14804,5.41375,0.273536][-0.29101,-0.38331,-0.876577][0.933958,0.949984,0][-9.56162,6.10186,0.10994][-0.307513,-0.0948514,-0.946805][0.936453,0.950075,0][-9.39413,6.18519,0.0471945][-0.307513,-0.0948514,-0.946805][0.936374,0.950442,0][-8.96555,5.57766,0.141278][-0.29101,-0.38331,-0.876577][0.93406,0.950466,0][-9.53473,6.19174,0.373819][0.341296,0.434282,0.833617][0.932447,0.959539,0][-9.23448,5.72401,0.494565][0.341296,0.434282,0.833617][0.930734,0.959694,0][-9.10446,5.84983,0.37578][0.341296,0.434282,0.833617][0.930766,0.959336,0][-9.36697,6.27746,0.308647][0.219238,0.281255,0.934254][0.932308,0.959176,0][-9.53473,6.19174,0.373819][0.341296,0.434282,0.833617][0.932447,0.959539,0][-9.10446,5.84983,0.37578][0.341296,0.434282,0.833617][0.930766,0.959336,0][-9.23448,5.72401,0.494565][0.341296,0.434282,0.833617][0.930734,0.959694,0][-8.83524,5.47049,0.695786][0.054535,0.672039,0.738505][0.929325,0.959424,0][-8.72501,5.5798,0.588168][0.054535,0.672039,0.738505][0.929358,0.959117,0][-9.10446,5.84983,0.37578][0.341296,0.434282,0.833617][0.930766,0.959336,0][-9.23448,5.72401,0.494565][0.341296,0.434282,0.833617][0.930734,0.959694,0][-8.72501,5.5798,0.588168][0.054535,0.672039,0.738505][0.929358,0.959117,0][-9.14804,5.41375,0.273536][-0.29101,-0.38331,-0.876577][0.933958,0.949984,0][-8.55137,5.33613,0.335486][-0.000776419,-0.627442,-0.778663][0.932712,0.950874,0][-8.79098,5.12092,0.509137][-0.000776419,-0.627442,-0.778663][0.932579,0.950242,0][-9.14804,5.41375,0.273536][-0.29101,-0.38331,-0.876577][0.933958,0.949984,0][-8.96555,5.57766,0.141278][-0.29101,-0.38331,-0.876577][0.93406,0.950466,0][-8.55137,5.33613,0.335486][-0.000776419,-0.627442,-0.778663][0.932712,0.950874,0][-9.14804,5.41375,0.273536][-0.716752,-0.624751,0.309763][0.975768,0.962163,0][-8.79098,5.12092,0.509137][-0.84272,-0.340002,0.417399][0.974195,0.962138,0][-8.85699,5.26604,0.64907][-0.716752,-0.624751,0.309763][0.97434,0.961783,0][-9.24261,5.53321,0.434166][-0.696107,-0.189566,0.692459][0.975926,0.961758,0][-9.14804,5.41375,0.273536][-0.716752,-0.624751,0.309763][0.975768,0.962163,0][-8.85699,5.26604,0.64907][-0.716752,-0.624751,0.309763][0.97434,0.961783,0][-9.24261,5.53321,0.434166][-0.696107,-0.189566,0.692459][0.980117,0.959331,0][-8.85699,5.26604,0.64907][-0.716752,-0.624751,0.309763][0.978688,0.959522,0][-8.83524,5.47049,0.695786][-0.549891,-0.130029,0.825053][0.978872,0.959132,0][-9.23448,5.72401,0.494565][-0.696107,-0.189566,0.692459][0.980324,0.958977,0][-9.24261,5.53321,0.434166][-0.696107,-0.189566,0.692459][0.980117,0.959331,0][-8.83524,5.47049,0.695786][-0.549891,-0.130029,0.825053][0.978872,0.959132,0][-8.96555,5.57766,0.141278][0.779266,0.489045,-0.391893][0.978316,0.955652,0][-8.60136,5.49631,0.461419][0.59877,0.602109,-0.528147][0.977181,0.956287,0][-8.55137,5.33613,0.335486][0.723618,0.689647,-0.0276413][0.97683,0.956037,0][-8.96555,5.57766,0.141278][0.779266,0.489045,-0.391893][0.978316,0.955652,0][-9.00105,5.74308,0.277109][0.779266,0.489045,-0.391893][0.978634,0.955922,0][-8.60136,5.49631,0.461419][0.59877,0.602109,-0.528147][0.977181,0.956287,0][-9.00105,5.74308,0.277109][0.779266,0.489045,-0.391893][0.978634,0.955922,0][-8.72501,5.5798,0.588168][0.53598,0.843592,-0.0328348][0.97764,0.956538,0][-8.60136,5.49631,0.461419][0.59877,0.602109,-0.528147][0.977181,0.956287,0][-9.00105,5.74308,0.277109][0.779266,0.489045,-0.391893][0.978634,0.955922,0][-9.10446,5.84983,0.37578][0.630453,0.759373,-0.160878][0.979066,0.956117,0][-8.72501,5.5798,0.588168][0.53598,0.843592,-0.0328348][0.97764,0.956538,0][-8.45097,5.22413,0.169557][0.723618,0.689647,-0.0276413][0.978634,0.944346,0][-7.83582,5.14929,0.541911][0.48615,0.526752,-0.697273][0.979691,0.943198,0][-7.71995,4.98541,0.498894][0.48615,0.526752,-0.697273][0.980324,0.943226,0][-8.45097,5.22413,0.169557][0.723618,0.689647,-0.0276413][0.976399,0.955709,0][-8.55137,5.33613,0.335486][0.723618,0.689647,-0.0276413][0.97683,0.956037,0][-7.83582,5.14929,0.541911][0.48615,0.526752,-0.697273][0.974565,0.956446,0][-8.42135,5.03412,0.0928628][0.749792,0.344838,-0.564711][0.934077,0.96084,0][-7.71995,4.98541,0.498894][0.48615,0.526752,-0.697273][0.935976,0.960147,0][-7.60408,4.82153,0.455876][0.456356,0.513418,-0.726733][0.93656,0.96029,0][-8.42135,5.03412,0.0928628][0.749792,0.344838,-0.564711][0.934077,0.96084,0][-8.45097,5.22413,0.169557][0.723618,0.689647,-0.0276413][0.933672,0.96056,0][-7.71995,4.98541,0.498894][0.48615,0.526752,-0.697273][0.935976,0.960147,0][-8.62698,4.85389,0.227357][-0.518145,-0.726339,0.451617][0.93559,0.957882,0][-7.78734,4.54636,0.696088][-0.518145,-0.726339,0.451617][0.932506,0.957529,0][-7.91453,4.69539,0.789852][-0.518145,-0.726339,0.451617][0.932947,0.957245,0][-8.77382,4.93529,0.392556][-0.84272,-0.340002,0.417399][0.935932,0.95747,0][-8.62698,4.85389,0.227357][-0.518145,-0.726339,0.451617][0.93559,0.957882,0][-7.91453,4.69539,0.789852][-0.518145,-0.726339,0.451617][0.932947,0.957245,0][-8.77382,4.93529,0.392556][-0.84272,-0.340002,0.417399][0.935932,0.95747,0][-7.91453,4.69539,0.789852][-0.518145,-0.726339,0.451617][0.932947,0.957245,0][-8.04171,4.84442,0.883616][-0.447198,-0.717582,0.533938][0.933388,0.956961,0][-8.79098,5.12092,0.509137][-0.84272,-0.340002,0.417399][0.979426,0.948407,0][-8.77382,4.93529,0.392556][-0.84272,-0.340002,0.417399][0.980059,0.948285,0][-8.04171,4.84442,0.883616][-0.447198,-0.717582,0.533938][0.980324,0.95001,0][-7.76793,5.02123,1.23849][-0.468842,-0.536769,0.701474][0.96258,0.959493,0][-7.90285,4.81883,1.0401][-0.416638,-0.479396,0.772394][0.962726,0.95902,0][-7.76735,4.65379,1.01075][-0.416638,-0.479396,0.772394][0.963387,0.958977,0][-7.62114,4.95677,1.25594][-0.283651,-0.411454,0.866169][0.963045,0.959607,0][-7.76793,5.02123,1.23849][-0.468842,-0.536769,0.701474][0.96258,0.959493,0][-7.76735,4.65379,1.01075][-0.416638,-0.479396,0.772394][0.963387,0.958977,0][-7.37743,4.8208,1.30345][-0.45404,-0.36468,0.812931][0.963882,0.959756,0][-7.76735,4.65379,1.01075][-0.416638,-0.479396,0.772394][0.963387,0.958977,0][-7.63736,4.54181,1.03312][-0.45404,-0.36468,0.812931][0.96392,0.959001,0][-7.37743,4.8208,1.30345][-0.45404,-0.36468,0.812931][0.963882,0.959756,0][-7.62114,4.95677,1.25594][-0.283651,-0.411454,0.866169][0.963045,0.959607,0][-7.76735,4.65379,1.01075][-0.416638,-0.479396,0.772394][0.963387,0.958977,0][-7.90285,4.81883,1.0401][-0.416638,-0.479396,0.772394][0.932836,0.956747,0][-8.04171,4.84442,0.883616][-0.447198,-0.717582,0.533938][0.933388,0.956961,0][-7.91453,4.69539,0.789852][-0.518145,-0.726339,0.451617][0.932947,0.957245,0][-7.76735,4.65379,1.01075][-0.416638,-0.479396,0.772394][0.932292,0.956918,0][-7.90285,4.81883,1.0401][-0.416638,-0.479396,0.772394][0.932836,0.956747,0][-7.91453,4.69539,0.789852][-0.518145,-0.726339,0.451617][0.932947,0.957245,0][-7.76735,4.65379,1.01075][-0.416638,-0.479396,0.772394][0.932292,0.956918,0][-7.91453,4.69539,0.789852][-0.518145,-0.726339,0.451617][0.932947,0.957245,0][-7.78734,4.54636,0.696088][-0.518145,-0.726339,0.451617][0.932506,0.957529,0][-7.63736,4.54181,1.03312][-0.45404,-0.36468,0.812931][0.931781,0.956974,0][-7.76735,4.65379,1.01075][-0.416638,-0.479396,0.772394][0.932292,0.956918,0][-7.78734,4.54636,0.696088][-0.518145,-0.726339,0.451617][0.932506,0.957529,0][-7.71995,4.98541,0.498894][0.48615,0.526752,-0.697273][0.935976,0.960147,0][-7.6666,5.2112,0.669605][0.246683,0.5467,-0.800167][0.935724,0.959717,0][-7.48242,5.09346,0.645943][0.246683,0.5467,-0.800167][0.936404,0.959708,0][-7.71995,4.98541,0.498894][0.48615,0.526752,-0.697273][0.935976,0.960147,0][-7.83582,5.14929,0.541911][0.48615,0.526752,-0.697273][0.935393,0.960005,0][-7.6666,5.2112,0.669605][0.246683,0.5467,-0.800167][0.935724,0.959717,0][-7.60408,4.82153,0.455876][0.456356,0.513418,-0.726733][0.93656,0.96029,0][-7.48242,5.09346,0.645943][0.246683,0.5467,-0.800167][0.936404,0.959708,0][-7.34286,5.03068,0.65553][0.268484,0.468269,-0.841808][0.936874,0.959657,0][-7.60408,4.82153,0.455876][0.456356,0.513418,-0.726733][0.93656,0.96029,0][-7.71995,4.98541,0.498894][0.48615,0.526752,-0.697273][0.935976,0.960147,0][-7.48242,5.09346,0.645943][0.246683,0.5467,-0.800167][0.936404,0.959708,0][-7.48242,5.09346,0.645943][0.246683,0.5467,-0.800167][0.973495,0.956652,0][-7.57314,5.29905,0.89435][0.251853,0.717148,-0.649823][0.974021,0.957145,0][-7.37549,5.18251,1.04193][0.609508,0.763525,-0.213378][0.97331,0.957437,0][-7.48242,5.09346,0.645943][0.246683,0.5467,-0.800167][0.973495,0.956652,0][-7.6666,5.2112,0.669605][0.246683,0.5467,-0.800167][0.974169,0.956699,0][-7.57314,5.29905,0.89435][0.251853,0.717148,-0.649823][0.974021,0.957145,0][-7.34286,5.03068,0.65553][0.268484,0.468269,-0.841808][0.973019,0.956671,0][-7.37549,5.18251,1.04193][0.609508,0.763525,-0.213378][0.97331,0.957437,0][-7.19417,5.09597,1.06324][0.439532,0.848018,-0.296103][0.972685,0.957479,0][-7.34286,5.03068,0.65553][0.268484,0.468269,-0.841808][0.973019,0.956671,0][-7.48242,5.09346,0.645943][0.246683,0.5467,-0.800167][0.973495,0.956652,0][-7.37549,5.18251,1.04193][0.609508,0.763525,-0.213378][0.97331,0.957437,0][-7.19417,5.09597,1.06324][0.169441,0.581662,0.795587][0.964086,0.950564,0][-7.62114,4.95677,1.25594][0.169441,0.581662,0.795587][0.963188,0.949783,0][-7.37743,4.8208,1.30345][0.169441,0.581662,0.795587][0.964068,0.949755,0][-7.19417,5.09597,1.06324][0.169441,0.581662,0.795587][0.964086,0.950564,0][-7.37549,5.18251,1.04193][0.177082,0.568773,0.803206][0.963457,0.950549,0][-7.62114,4.95677,1.25594][0.169441,0.581662,0.795587][0.963188,0.949783,0][-8.60136,5.49631,0.461419][0.59877,0.602109,-0.528147][0.977181,0.956287,0][-8.18257,5.3617,0.809441][0.372077,0.923786,-0.0904329][0.975823,0.956976,0][-7.98386,5.26653,0.654867][0.372077,0.923786,-0.0904329][0.975137,0.95667,0][-8.60136,5.49631,0.461419][0.59877,0.602109,-0.528147][0.977181,0.956287,0][-8.72501,5.5798,0.588168][0.53598,0.843592,-0.0328348][0.97764,0.956538,0][-8.18257,5.3617,0.809441][0.372077,0.923786,-0.0904329][0.975823,0.956976,0][-8.55137,5.33613,0.335486][0.723618,0.689647,-0.0276413][0.97683,0.956037,0][-7.98386,5.26653,0.654867][0.372077,0.923786,-0.0904329][0.975137,0.95667,0][-7.83582,5.14929,0.541911][0.48615,0.526752,-0.697273][0.974565,0.956446,0][-8.55137,5.33613,0.335486][0.723618,0.689647,-0.0276413][0.97683,0.956037,0][-8.60136,5.49631,0.461419][0.59877,0.602109,-0.528147][0.977181,0.956287,0][-7.98386,5.26653,0.654867][0.372077,0.923786,-0.0904329][0.975137,0.95667,0][-8.79098,5.12092,0.509137][-0.84272,-0.340002,0.417399][0.979426,0.948407,0][-8.04171,4.84442,0.883616][-0.447198,-0.717582,0.533938][0.980324,0.95001,0][-8.14389,5.02972,0.923][-0.526304,-0.444292,0.724989][0.979704,0.949904,0][-8.85699,5.26604,0.64907][-0.716752,-0.624751,0.309763][0.97434,0.961783,0][-8.79098,5.12092,0.509137][-0.84272,-0.340002,0.417399][0.974195,0.962138,0][-8.14389,5.02972,0.923][-0.526304,-0.444292,0.724989][0.97188,0.961952,0][-8.85699,5.26604,0.64907][-0.716752,-0.624751,0.309763][0.978688,0.959522,0][-8.14389,5.02972,0.923][-0.526304,-0.444292,0.724989][0.976356,0.959405,0][-8.25554,5.25384,0.933799][-0.418383,-0.250499,0.873044][0.976948,0.959082,0][-8.83524,5.47049,0.695786][-0.549891,-0.130029,0.825053][0.978872,0.959132,0][-8.85699,5.26604,0.64907][-0.716752,-0.624751,0.309763][0.978688,0.959522,0][-8.25554,5.25384,0.933799][-0.418383,-0.250499,0.873044][0.976948,0.959082,0][-7.96542,5.10422,1.17][-0.688478,-0.192882,0.699139][0.961962,0.959334,0][-8.07198,5.0369,1.04649][-0.688478,-0.192882,0.699139][0.961874,0.95909,0][-7.90285,4.81883,1.0401][-0.416638,-0.479396,0.772394][0.962726,0.95902,0][-7.76793,5.02123,1.23849][-0.468842,-0.536769,0.701474][0.96258,0.959493,0][-7.96542,5.10422,1.17][-0.688478,-0.192882,0.699139][0.961962,0.959334,0][-7.90285,4.81883,1.0401][-0.416638,-0.479396,0.772394][0.962726,0.95902,0][-8.191,5.27466,0.994882][-0.688478,-0.192882,0.699139][0.976788,0.958994,0][-8.25554,5.25384,0.933799][-0.418383,-0.250499,0.873044][0.976948,0.959082,0][-8.14389,5.02972,0.923][-0.526304,-0.444292,0.724989][0.976356,0.959405,0][-8.07198,5.0369,1.04649][-0.688478,-0.192882,0.699139][0.979643,0.950176,0][-8.191,5.27466,0.994882][-0.688478,-0.192882,0.699139][0.978904,0.949917,0][-8.14389,5.02972,0.923][-0.526304,-0.444292,0.724989][0.979704,0.949904,0][-8.07198,5.0369,1.04649][-0.688478,-0.192882,0.699139][0.933558,0.956589,0][-8.14389,5.02972,0.923][-0.526304,-0.444292,0.724989][0.933859,0.956785,0][-8.04171,4.84442,0.883616][-0.447198,-0.717582,0.533938][0.933388,0.956961,0][-7.90285,4.81883,1.0401][-0.416638,-0.479396,0.772394][0.932836,0.956747,0][-8.07198,5.0369,1.04649][-0.688478,-0.192882,0.699139][0.933558,0.956589,0][-8.04171,4.84442,0.883616][-0.447198,-0.717582,0.533938][0.933388,0.956961,0][-7.98386,5.26653,0.654867][0.372077,0.923786,-0.0904329][0.975137,0.95667,0][-8.11746,5.38343,0.870836][0.0907224,0.952318,-0.291308][0.975668,0.957098,0][-7.88181,5.32381,0.749328][0.0907224,0.952318,-0.291308][0.974925,0.956857,0][-7.98386,5.26653,0.654867][0.372077,0.923786,-0.0904329][0.975137,0.95667,0][-8.18257,5.3617,0.809441][0.372077,0.923786,-0.0904329][0.975823,0.956976,0][-8.11746,5.38343,0.870836][0.0907224,0.952318,-0.291308][0.975668,0.957098,0][-7.83582,5.14929,0.541911][0.48615,0.526752,-0.697273][0.974565,0.956446,0][-7.88181,5.32381,0.749328][0.0907224,0.952318,-0.291308][0.974925,0.956857,0][-7.6666,5.2112,0.669605][0.246683,0.5467,-0.800167][0.974169,0.956699,0][-7.83582,5.14929,0.541911][0.48615,0.526752,-0.697273][0.974565,0.956446,0][-7.98386,5.26653,0.654867][0.372077,0.923786,-0.0904329][0.975137,0.95667,0][-7.88181,5.32381,0.749328][0.0907224,0.952318,-0.291308][0.974925,0.956857,0][-7.6666,5.2112,0.669605][0.246683,0.5467,-0.800167][0.974169,0.956699,0][-7.7976,5.35111,0.864814][0.0907224,0.952318,-0.291308][0.974723,0.957086,0][-7.57314,5.29905,0.89435][0.251853,0.717148,-0.649823][0.974021,0.957145,0][-7.6666,5.2112,0.669605][0.246683,0.5467,-0.800167][0.974169,0.956699,0][-7.88181,5.32381,0.749328][0.0907224,0.952318,-0.291308][0.974925,0.956857,0][-7.7976,5.35111,0.864814][0.0907224,0.952318,-0.291308][0.974723,0.957086,0][-8.42135,5.03412,0.0928628][0.106677,-0.669946,-0.734705][0.961942,0.938007,0][-7.60408,4.82153,0.455876][0.129987,-0.699766,-0.702447][0.964802,0.937984,0][-7.78734,4.54636,0.696088][0.129987,-0.699766,-0.702447][0.964805,0.938794,0][-8.62698,4.85389,0.227357][0.106677,-0.669947,-0.734705][0.974376,0.939015,0][-8.42135,5.03412,0.0928628][0.106677,-0.669946,-0.734705][0.974544,0.939546,0][-7.78734,4.54636,0.696088][0.129987,-0.699766,-0.702447][0.972244,0.940154,0][-8.72501,5.5798,0.588168][0.054535,0.672039,0.738505][0.941407,0.937915,0][-8.25554,5.25384,0.933799][-0.559994,0.758561,0.333153][0.942972,0.937532,0][-8.18257,5.3617,0.809441][-0.562614,0.758859,0.328022][0.942913,0.937887,0][-8.72501,5.5798,0.588168][0.054535,0.672039,0.738505][0.941407,0.937915,0][-8.83524,5.47049,0.695786][0.054535,0.672039,0.738505][0.941349,0.937543,0][-8.25554,5.25384,0.933799][-0.559994,0.758561,0.333153][0.942972,0.937532,0][-7.266,3.54339,-1.51719][-0.201239,0.829347,-0.521236][0.949999,0.935568,0][-7.17719,3.49414,-1.40896][0.660319,0.719738,-0.214376][0.95021,0.93583,0][-7.149,3.42566,-1.55203][0.660319,0.719738,-0.214376][0.949733,0.935835,0][-7.24619,3.51436,-1.5765][-0.262728,0.760199,-0.594198][0.949794,0.935585,0][-7.266,3.54339,-1.51719][-0.201239,0.829347,-0.521236][0.949999,0.935568,0][-7.149,3.42566,-1.55203][0.660319,0.719738,-0.214376][0.949733,0.935835,0][-7.29433,3.4744,-1.60634][0.38015,0.11043,-0.918309][0.939222,0.965238,0][-7.149,3.42566,-1.55203][0.38015,0.11043,-0.918309][0.938842,0.965422,0][-7.25485,3.33737,-1.60647][0.38015,0.11043,-0.918309][0.9388,0.96515,0][-7.29433,3.4744,-1.60634][0.38015,0.11043,-0.918309][0.939222,0.965238,0][-7.24619,3.51436,-1.5765][0.398781,0.189437,-0.897266][0.93924,0.965362,0][-7.149,3.42566,-1.55203][0.38015,0.11043,-0.918309][0.938842,0.965422,0][-7.35007,3.46926,-1.58806][-0.951462,0.164645,-0.260024][0.92935,0.96506,0][-7.3812,3.32573,-1.56504][-0.951462,0.164645,-0.260024][0.929484,0.965335,0][-7.40476,3.40293,-1.42995][-0.951462,0.164645,-0.260024][0.929024,0.965347,0][-7.35919,3.50477,-1.52664][-0.949904,0.187974,-0.249698][0.92914,0.965064,0][-7.35007,3.46926,-1.58806][-0.951462,0.164645,-0.260024][0.92935,0.96506,0][-7.40476,3.40293,-1.42995][-0.951462,0.164645,-0.260024][0.929024,0.965347,0][-7.35919,3.50477,-1.52664][-0.662172,0.650132,0.372636][0.97864,0.946394,0][-7.40476,3.40293,-1.42995][-0.662172,0.650132,0.372636][0.979026,0.946235,0][-7.28569,3.49102,-1.37204][-0.662172,0.650132,0.372636][0.979119,0.946545,0][-7.30201,3.54235,-1.50494][-0.603656,0.715978,0.350678][0.978673,0.946534,0][-7.35919,3.50477,-1.52664][-0.662172,0.650132,0.372636][0.97864,0.946394,0][-7.28569,3.49102,-1.37204][-0.662172,0.650132,0.372636][0.979119,0.946545,0][-7.3812,3.32573,-1.56504][-0.951462,0.164645,-0.260024][0.930708,0.965003,0][-7.16856,2.92735,-1.34249][-0.879507,-0.475753,-0.0112942][0.932023,0.965081,0][-7.20031,2.98312,-1.21927][-0.879507,-0.475753,-0.0112942][0.932047,0.965346,0][-7.40476,3.40293,-1.42995][-0.951462,0.164645,-0.260024][0.930744,0.96529,0][-7.3812,3.32573,-1.56504][-0.951462,0.164645,-0.260024][0.930708,0.965003,0][-7.20031,2.98312,-1.21927][-0.879507,-0.475753,-0.0112942][0.932047,0.965346,0][-7.40476,3.40293,-1.42995][-0.705742,0.0117857,0.708371][0.961493,0.946824,0][-7.20031,2.98312,-1.21927][-0.705742,0.0117857,0.708371][0.962076,0.947769,0][-7.12114,3.09626,-1.14227][-0.705742,0.0117857,0.708371][0.961592,0.947827,0][-7.28569,3.49102,-1.37204][-0.662172,0.650132,0.372636][0.979119,0.946545,0][-7.40476,3.40293,-1.42995][-0.662172,0.650132,0.372636][0.979026,0.946235,0][-7.12114,3.09626,-1.14227][-0.558376,0.231003,0.796777][0.980324,0.946375,0][-7.17719,3.49414,-1.40896][0.902514,0.427808,0.0494794][0.967792,0.94826,0][-7.01466,3.1246,-1.17845][0.902514,0.427808,0.0494794][0.967704,0.947507,0][-6.97683,3.06082,-1.3169][0.902514,0.427808,0.0494794][0.968169,0.947555,0][-7.149,3.42566,-1.55203][0.909102,0.416092,-0.0200108][0.968258,0.948324,0][-7.17719,3.49414,-1.40896][0.902514,0.427808,0.0494794][0.967792,0.94826,0][-6.97683,3.06082,-1.3169][0.902514,0.427808,0.0494794][0.968169,0.947555,0][-7.25485,3.33737,-1.60647][0.38015,0.11043,-0.918309][0.96297,0.961129,0][-6.97683,3.06082,-1.3169][0.731781,0.0224297,-0.68117][0.964487,0.961116,0][-7.03813,2.97097,-1.38571][0.731781,0.0224297,-0.68117][0.964415,0.961367,0][-7.25485,3.33737,-1.60647][0.38015,0.11043,-0.918309][0.9388,0.96515,0][-7.149,3.42566,-1.55203][0.38015,0.11043,-0.918309][0.938842,0.965422,0][-6.97683,3.06082,-1.3169][0.731781,0.0224297,-0.68117][0.937602,0.965297,0][-6.97683,3.06082,-1.3169][0.902514,0.427808,0.0494794][0.968169,0.947555,0][-6.81888,2.86859,-0.984941][0.718127,0.69334,0.0597743][0.967682,0.946824,0][-6.77067,2.83281,-1.14907][0.718127,0.69334,0.0597743][0.968211,0.946903,0][-6.97683,3.06082,-1.3169][0.902514,0.427808,0.0494794][0.968169,0.947555,0][-7.01466,3.1246,-1.17845][0.902514,0.427808,0.0494794][0.967704,0.947507,0][-6.81888,2.86859,-0.984941][0.718127,0.69334,0.0597743][0.967682,0.946824,0][-7.03813,2.97097,-1.38571][0.712993,0.276876,-0.64419][0.956262,0.943103,0][-6.77067,2.83281,-1.14907][0.712992,0.276876,-0.64419][0.956308,0.942344,0][-6.8143,2.72313,-1.2445][0.712992,0.276876,-0.64419][0.956748,0.942454,0][-7.03813,2.97097,-1.38571][0.731781,0.0224297,-0.68117][0.964415,0.961367,0][-6.97683,3.06082,-1.3169][0.731781,0.0224297,-0.68117][0.964487,0.961116,0][-6.77067,2.83281,-1.14907][0.68491,0.08678,-0.723441][0.965567,0.961185,0][-7.16856,2.92735,-1.34249][-0.879507,-0.475753,-0.0112942][0.932023,0.965081,0][-6.93165,2.63676,-1.20584][-0.791835,-0.604436,0.0874963][0.933153,0.965027,0][-6.95787,2.69268,-1.05684][-0.791835,-0.604436,0.0874963][0.933226,0.965333,0][-7.20031,2.98312,-1.21927][-0.879507,-0.475753,-0.0112942][0.932047,0.965346,0][-7.16856,2.92735,-1.34249][-0.879507,-0.475753,-0.0112942][0.932023,0.965081,0][-6.95787,2.69268,-1.05684][-0.791835,-0.604436,0.0874963][0.933226,0.965333,0][-7.20031,2.98312,-1.21927][-0.705742,0.0117857,0.708371][0.962076,0.947769,0][-6.95787,2.69268,-1.05684][-0.700904,-0.202623,0.68387][0.962333,0.948559,0][-6.89732,2.81764,-0.957759][-0.700904,-0.202623,0.68387][0.961815,0.948609,0][-7.12114,3.09626,-1.14227][-0.705742,0.0117857,0.708371][0.961592,0.947827,0][-7.20031,2.98312,-1.21927][-0.705742,0.0117857,0.708371][0.962076,0.947769,0][-6.89732,2.81764,-0.957759][-0.700904,-0.202623,0.68387][0.961815,0.948609,0][-6.93165,2.63676,-1.20584][-0.791835,-0.604436,0.0874963][0.933153,0.965027,0][-6.68131,2.42205,-1.07766][-0.68964,-0.704822,0.166199][0.934216,0.964976,0][-6.73738,2.51567,-0.913245][-0.68964,-0.704822,0.166199][0.934191,0.965347,0][-6.95787,2.69268,-1.05684][-0.791835,-0.604436,0.0874963][0.933226,0.965333,0][-6.93165,2.63676,-1.20584][-0.791835,-0.604436,0.0874963][0.933153,0.965027,0][-6.73738,2.51567,-0.913245][-0.68964,-0.704822,0.166199][0.934191,0.965347,0][-6.95787,2.69268,-1.05684][-0.700904,-0.202623,0.68387][0.962333,0.948559,0][-6.73738,2.51567,-0.913245][-0.654466,-0.231263,0.719855][0.962346,0.949178,0][-6.71464,2.70068,-0.833137][-0.654466,-0.231263,0.719855][0.961743,0.949095,0][-6.89732,2.81764,-0.957759][-0.700904,-0.202623,0.68387][0.961815,0.948609,0][-6.95787,2.69268,-1.05684][-0.700904,-0.202623,0.68387][0.962333,0.948559,0][-6.71464,2.70068,-0.833137][-0.654466,-0.231263,0.719855][0.961743,0.949095,0][-6.77067,2.83281,-1.14907][0.712992,0.276876,-0.64419][0.953373,0.966272,0][-6.64094,2.77844,-0.881034][0.591282,0.796788,-0.124553][0.952519,0.966525,0][-6.57551,2.70253,-1.05603][0.591282,0.796788,-0.124553][0.952624,0.966139,0][-6.77067,2.83281,-1.14907][0.712992,0.276876,-0.64419][0.953373,0.966272,0][-6.81888,2.86859,-0.984941][0.475294,0.878296,-0.0518784][0.953209,0.966601,0][-6.64094,2.77844,-0.881034][0.591282,0.796788,-0.124553][0.952519,0.966525,0][-6.8143,2.72313,-1.2445][0.712992,0.276876,-0.64419][0.956748,0.942454,0][-6.57551,2.70253,-1.05603][0.591282,0.796788,-0.124553][0.95653,0.941872,0][-6.57468,2.5503,-1.14954][0.582449,0.427777,-0.691201][0.957082,0.94189,0][-6.8143,2.72313,-1.2445][0.712992,0.276876,-0.64419][0.956748,0.942454,0][-6.77067,2.83281,-1.14907][0.712992,0.276876,-0.64419][0.956308,0.942344,0][-6.57551,2.70253,-1.05603][0.591282,0.796788,-0.124553][0.95653,0.941872,0][-6.64094,2.77844,-0.881034][0.591282,0.796788,-0.124553][0.952519,0.966525,0][-6.50981,2.76145,-0.722691][0.346883,0.918735,-0.188676][0.951909,0.966623,0][-6.37308,2.68851,-0.826468][0.346883,0.918735,-0.188676][0.951722,0.966273,0][-6.57551,2.70253,-1.05603][0.591282,0.796788,-0.124553][0.952624,0.966139,0][-6.64094,2.77844,-0.881034][0.591282,0.796788,-0.124553][0.952519,0.966525,0][-6.37308,2.68851,-0.826468][0.346883,0.918735,-0.188676][0.951722,0.966273,0][-6.57468,2.5503,-1.14954][0.582449,0.427777,-0.691201][0.954398,0.957897,0][-6.37308,2.68851,-0.826468][0.346883,0.918735,-0.188676][0.953844,0.957201,0][-6.24218,2.46255,-0.900827][0.590953,0.539666,-0.599613][0.954592,0.957191,0][-6.57468,2.5503,-1.14954][0.582449,0.427777,-0.691201][0.957082,0.94189,0][-6.57551,2.70253,-1.05603][0.591282,0.796788,-0.124553][0.95653,0.941872,0][-6.37308,2.68851,-0.826468][0.346883,0.918735,-0.188676][0.956242,0.941294,0][-6.68131,2.42205,-1.07766][-0.544417,-0.788356,0.286539][0.970938,0.964399,0][-6.35377,2.29346,-0.809111][-0.544417,-0.788356,0.286539][0.969572,0.964297,0][-6.5064,2.43837,-0.700427][-0.544417,-0.788356,0.286539][0.969933,0.96391,0][-6.73738,2.51567,-0.913245][-0.654466,-0.231263,0.719855][0.970919,0.964027,0][-6.68131,2.42205,-1.07766][-0.544417,-0.788356,0.286539][0.970938,0.964399,0][-6.5064,2.43837,-0.700427][-0.544417,-0.788356,0.286539][0.969933,0.96391,0][-6.73738,2.51567,-0.913245][-0.654466,-0.231263,0.719855][0.962346,0.949178,0][-6.5064,2.43837,-0.700427][-0.544417,-0.788356,0.286539][0.962005,0.94978,0][-6.58936,2.65625,-0.665657][-0.694146,-0.363448,0.621342][0.961502,0.949486,0][-6.71464,2.70068,-0.833137][-0.654466,-0.231263,0.719855][0.961743,0.949095,0][-6.73738,2.51567,-0.913245][-0.654466,-0.231263,0.719855][0.962346,0.949178,0][-6.58936,2.65625,-0.665657][-0.694146,-0.363448,0.621342][0.961502,0.949486,0][-6.49437,2.52194,-0.466107][-0.909295,-0.375003,0.180433][0.935773,0.955798,0][-6.58936,2.65625,-0.665657][-0.909294,-0.375003,0.180433][0.935403,0.955372,0][-6.5064,2.43837,-0.700427][-0.909295,-0.375003,0.180433][0.935932,0.955342,0][-6.49437,2.52194,-0.466107][-0.909295,-0.375003,0.180433][0.935773,0.955798,0][-6.57043,2.66821,-0.454749][-0.878938,-0.465168,0.105294][0.935364,0.95579,0][-6.58936,2.65625,-0.665657][-0.909294,-0.375003,0.180433][0.935403,0.955372,0][-6.38324,2.38915,-0.512814][-0.600959,-0.776156,0.190867][0.96928,0.963724,0][-6.5064,2.43837,-0.700427][-0.544417,-0.788356,0.286539][0.969933,0.96391,0][-6.35377,2.29346,-0.809111][-0.544417,-0.788356,0.286539][0.969572,0.964297,0][-6.38324,2.38915,-0.512814][-0.600959,-0.776156,0.190867][0.96928,0.963724,0][-6.49437,2.52194,-0.466107][-0.687515,-0.672087,0.274994][0.969626,0.963486,0][-6.5064,2.43837,-0.700427][-0.544417,-0.788356,0.286539][0.969933,0.96391,0][-6.39811,2.68699,-0.320602][-0.552545,-0.346161,0.7582][0.936843,0.942539,0][-6.57043,2.66821,-0.454749][-0.552545,-0.346161,0.7582][0.937206,0.942907,0][-6.49437,2.52194,-0.466107][-0.687515,-0.672087,0.274994][0.936716,0.943008,0][-6.39811,2.68699,-0.320602][-0.552545,-0.346161,0.7582][0.936843,0.942539,0][-6.47081,2.78055,-0.330705][-0.552233,-0.347214,0.757946][0.937212,0.942521,0][-6.57043,2.66821,-0.454749][-0.552545,-0.346161,0.7582][0.937206,0.942907,0][-6.32542,2.59342,-0.310499][-0.401993,-0.584362,0.704928][0.936474,0.942557,0][-6.49437,2.52194,-0.466107][-0.687515,-0.672087,0.274994][0.936716,0.943008,0][-6.38324,2.38915,-0.512814][-0.600959,-0.776156,0.190867][0.936202,0.943103,0][-6.32542,2.59342,-0.310499][-0.401993,-0.584362,0.704928][0.936474,0.942557,0][-6.39811,2.68699,-0.320602][-0.552545,-0.346161,0.7582][0.936843,0.942539,0][-6.49437,2.52194,-0.466107][-0.687515,-0.672087,0.274994][0.936716,0.943008,0][-6.4085,2.86924,-0.620714][0.447481,0.852776,-0.269322][0.97449,0.937617,0][-6.36836,2.90758,-0.432631][0.447481,0.852776,-0.269322][0.97462,0.937251,0][-6.26902,2.84977,-0.450616][0.447481,0.852776,-0.269322][0.974968,0.937313,0][-6.26335,2.78879,-0.704039][0.379905,0.901254,-0.20836][0.974972,0.937819,0][-6.4085,2.86924,-0.620714][0.447481,0.852776,-0.269322][0.97449,0.937617,0][-6.26902,2.84977,-0.450616][0.447481,0.852776,-0.269322][0.974968,0.937313,0][-6.26335,2.78879,-0.704039][0.379905,0.901254,-0.20836][0.974972,0.937819,0][-6.26902,2.84977,-0.450616][0.447481,0.852776,-0.269322][0.974968,0.937313,0][-6.16967,2.79196,-0.468601][0.46619,0.862451,-0.197093][0.975315,0.937374,0][-6.15423,2.67883,-0.749799][0.629066,0.732529,-0.260149][0.975405,0.937942,0][-6.26335,2.78879,-0.704039][0.379905,0.901254,-0.20836][0.974972,0.937819,0][-6.16967,2.79196,-0.468601][0.46619,0.862451,-0.197093][0.975315,0.937374,0][-6.50981,2.76145,-0.722691][0.346883,0.918735,-0.188676][0.953285,0.957296,0][-6.4085,2.86924,-0.620714][0.447481,0.852776,-0.269322][0.953065,0.956972,0][-6.26335,2.78879,-0.704039][0.379905,0.901254,-0.20836][0.953609,0.95685,0][-6.37308,2.68851,-0.826468][0.346883,0.918735,-0.188676][0.953844,0.957201,0][-6.50981,2.76145,-0.722691][0.346883,0.918735,-0.188676][0.953285,0.957296,0][-6.26335,2.78879,-0.704039][0.379905,0.901254,-0.20836][0.953609,0.95685,0][-6.37308,2.68851,-0.826468][0.346883,0.918735,-0.188676][0.953844,0.957201,0][-6.26335,2.78879,-0.704039][0.379905,0.901254,-0.20836][0.953609,0.95685,0][-6.15423,2.67883,-0.749799][0.629066,0.732529,-0.260149][0.954068,0.956777,0][-6.24218,2.46255,-0.900827][0.590953,0.539666,-0.599613][0.954592,0.957191,0][-6.37308,2.68851,-0.826468][0.346883,0.918735,-0.188676][0.953844,0.957201,0][-6.15423,2.67883,-0.749799][0.629066,0.732529,-0.260149][0.954068,0.956777,0][-6.26902,2.84977,-0.450616][0.372374,0.380714,0.846401][0.940446,0.956462,0][-6.47081,2.78055,-0.330705][0.372374,0.380714,0.846401][0.940827,0.956808,0][-6.39811,2.68699,-0.320602][0.372374,0.380714,0.846401][0.940473,0.956873,0][-6.26902,2.84977,-0.450616][0.372374,0.380714,0.846401][0.940446,0.956462,0][-6.36836,2.90758,-0.432631][0.373505,0.378373,0.846952][0.940802,0.956485,0][-6.47081,2.78055,-0.330705][0.372374,0.380714,0.846401][0.940827,0.956808,0][-6.16967,2.79196,-0.468601][0.372949,0.381116,0.845967][0.94009,0.956439,0][-6.39811,2.68699,-0.320602][0.372374,0.380714,0.846401][0.940473,0.956873,0][-6.32542,2.59342,-0.310499][0.372949,0.381116,0.845967][0.940118,0.956938,0][-6.16967,2.79196,-0.468601][0.372949,0.381116,0.845967][0.94009,0.956439,0][-6.26902,2.84977,-0.450616][0.372374,0.380714,0.846401][0.940446,0.956462,0][-6.39811,2.68699,-0.320602][0.372374,0.380714,0.846401][0.940473,0.956873,0][-7.35007,3.46926,-1.58806][-0.303193,-0.0864369,-0.949001][0.939306,0.965141,0][-7.25485,3.33737,-1.60647][0.38015,0.11043,-0.918309][0.9388,0.96515,0][-7.3812,3.32573,-1.56504][-0.303193,-0.0864369,-0.949001][0.938992,0.96493,0][-7.35007,3.46926,-1.58806][-0.303193,-0.0864369,-0.949001][0.939306,0.965141,0][-7.29433,3.4744,-1.60634][0.38015,0.11043,-0.918309][0.939222,0.965238,0][-7.25485,3.33737,-1.60647][0.38015,0.11043,-0.918309][0.9388,0.96515,0][-7.266,3.54339,-1.51719][0.091856,0.932624,0.348963][0.975113,0.966179,0][-7.28569,3.49102,-1.37204][-0.662172,0.650132,0.372636][0.974956,0.965909,0][-7.17719,3.49414,-1.40896][0.091856,0.932624,0.348963][0.975279,0.965905,0][-7.266,3.54339,-1.51719][0.091856,0.932624,0.348963][0.975113,0.966179,0][-7.30201,3.54235,-1.50494][-0.603656,0.715978,0.350678][0.975005,0.96618,0][-7.28569,3.49102,-1.37204][-0.662172,0.650132,0.372636][0.974956,0.965909,0][-7.17719,3.49414,-1.40896][0.091856,0.932624,0.348963][0.975822,0.957778,0][-7.12114,3.09626,-1.14227][-0.558376,0.231003,0.796777][0.977183,0.957375,0][-7.01466,3.1246,-1.17845][0.126865,0.564534,0.815602][0.977242,0.957602,0][-7.17719,3.49414,-1.40896][0.091856,0.932624,0.348963][0.975822,0.957778,0][-7.28569,3.49102,-1.37204][-0.662172,0.650132,0.372636][0.975703,0.957566,0][-7.12114,3.09626,-1.14227][-0.558376,0.231003,0.796777][0.977183,0.957375,0][-7.25485,3.33737,-1.60647][0.38015,0.11043,-0.918309][0.9388,0.96515,0][-7.03813,2.97097,-1.38571][0.731781,0.0224297,-0.68117][0.937478,0.965096,0][-7.16856,2.92735,-1.34249][-0.0897812,-0.552426,-0.828712][0.937594,0.964834,0][-7.3812,3.32573,-1.56504][-0.303193,-0.0864369,-0.949001][0.938992,0.96493,0][-7.25485,3.33737,-1.60647][0.38015,0.11043,-0.918309][0.9388,0.96515,0][-7.16856,2.92735,-1.34249][-0.0897812,-0.552426,-0.828712][0.937594,0.964834,0][-7.03813,2.97097,-1.38571][0.731781,0.0224297,-0.68117][0.937478,0.965096,0][-6.8143,2.72313,-1.2445][0.0478592,-0.461505,-0.885846][0.936448,0.965186,0][-6.93165,2.63676,-1.20584][0.0478592,-0.461505,-0.885846][0.936432,0.964897,0][-7.16856,2.92735,-1.34249][-0.0897812,-0.552426,-0.828712][0.937594,0.964834,0][-7.03813,2.97097,-1.38571][0.731781,0.0224297,-0.68117][0.937478,0.965096,0][-6.93165,2.63676,-1.20584][0.0478592,-0.461505,-0.885846][0.936432,0.964897,0][-7.01466,3.1246,-1.17845][0.126865,0.564534,0.815602][0.977242,0.957602,0][-6.89732,2.81764,-0.957759][-0.0794588,0.561711,0.823509][0.978433,0.957404,0][-6.81888,2.86859,-0.984941][-0.0794587,0.561711,0.823509][0.978406,0.957593,0][-7.01466,3.1246,-1.17845][0.126865,0.564534,0.815602][0.977242,0.957602,0][-7.12114,3.09626,-1.14227][-0.558376,0.231003,0.796777][0.977183,0.957375,0][-6.89732,2.81764,-0.957759][-0.0794588,0.561711,0.823509][0.978433,0.957404,0][-6.81888,2.86859,-0.984941][-0.0794587,0.561711,0.823509][0.978406,0.957593,0][-6.71464,2.70068,-0.833137][-0.142625,0.613593,0.776635][0.979164,0.957528,0][-6.64094,2.77844,-0.881034][-0.142625,0.613593,0.776635][0.979041,0.957745,0][-6.81888,2.86859,-0.984941][-0.0794587,0.561711,0.823509][0.978406,0.957593,0][-6.89732,2.81764,-0.957759][-0.0794588,0.561711,0.823509][0.978433,0.957404,0][-6.71464,2.70068,-0.833137][-0.142625,0.613593,0.776635][0.979164,0.957528,0][-6.8143,2.72313,-1.2445][0.0478592,-0.461505,-0.885846][0.936448,0.965186,0][-6.57468,2.5503,-1.14954][-0.00437005,-0.486152,-0.873863][0.935584,0.965385,0][-6.68131,2.42205,-1.07766][-0.00437005,-0.486152,-0.873863][0.935441,0.965067,0][-6.93165,2.63676,-1.20584][0.0478592,-0.461505,-0.885846][0.936432,0.964897,0][-6.8143,2.72313,-1.2445][0.0478592,-0.461505,-0.885846][0.936448,0.965186,0][-6.68131,2.42205,-1.07766][-0.00437005,-0.486152,-0.873863][0.935441,0.965067,0][-6.68131,2.42205,-1.07766][-0.00437005,-0.486152,-0.873863][0.929493,0.960964,0][-6.24218,2.46255,-0.900827][0.343194,-0.612671,-0.711936][0.930842,0.960577,0][-6.35377,2.29346,-0.809111][0.343194,-0.612671,-0.711936][0.930869,0.961018,0][-6.68131,2.42205,-1.07766][-0.00437005,-0.486152,-0.873863][0.929493,0.960964,0][-6.57468,2.5503,-1.14954][-0.00437005,-0.486152,-0.873863][0.929522,0.960605,0][-6.24218,2.46255,-0.900827][0.343194,-0.612671,-0.711936][0.930842,0.960577,0][-6.71464,2.70068,-0.833137][-0.142625,0.613593,0.776635][0.979164,0.957528,0][-6.58936,2.65625,-0.665657][-0.49574,0.672707,0.549278][0.979693,0.957577,0][-6.50981,2.76145,-0.722691][-0.49574,0.672707,0.549278][0.979504,0.957831,0][-6.64094,2.77844,-0.881034][-0.142625,0.613593,0.776635][0.979041,0.957745,0][-6.71464,2.70068,-0.833137][-0.142625,0.613593,0.776635][0.979164,0.957528,0][-6.50981,2.76145,-0.722691][-0.49574,0.672707,0.549278][0.979504,0.957831,0][-6.29975,1.74738,-1.6019][0.791531,-0.609149,0.0491606][0.951722,0.967137,0][-6.20393,1.87627,-1.54765][0.791531,-0.609149,0.0491606][0.952104,0.966915,0][-6.30341,1.75152,-1.49177][0.791531,-0.609149,0.0491606][0.952026,0.967238,0][-6.29975,1.74738,-1.6019][0.791531,-0.609149,0.0491606][0.951722,0.967137,0][-6.24026,1.82415,-1.63606][0.796299,-0.604207,0.0289986][0.951769,0.96694,0][-6.20393,1.87627,-1.54765][0.791531,-0.609149,0.0491606][0.952104,0.966915,0][-6.24026,1.82415,-1.63606][0.707148,0.442584,-0.551417][0.959735,0.941568,0][-6.36336,1.951,-1.69211][0.707148,0.442584,-0.551417][0.959466,0.941892,0][-6.20393,1.87627,-1.54765][0.707148,0.442584,-0.551417][0.959467,0.94144,0][-6.24026,1.82415,-1.63606][0.707148,0.442584,-0.551417][0.959735,0.941568,0][-6.30952,1.85662,-1.69882][0.707146,0.442578,-0.551425][0.959734,0.941764,0][-6.36336,1.951,-1.69211][0.707148,0.442584,-0.551417][0.959466,0.941892,0][-6.30952,1.85662,-1.69882][0.450468,-0.486319,-0.748713][0.928912,0.946796,0][-6.45872,1.83625,-1.64006][-0.347571,-0.132225,-0.928284][0.929211,0.946567,0][-6.36336,1.951,-1.69211][-0.347571,-0.132225,-0.928284][0.929234,0.946862,0][-6.30952,1.85662,-1.69882][0.450468,-0.486319,-0.748713][0.928912,0.946796,0][-6.36723,1.78419,-1.66633][0.196948,-0.52764,-0.826321][0.928892,0.946613,0][-6.45872,1.83625,-1.64006][-0.347571,-0.132225,-0.928284][0.929211,0.946567,0][-6.29975,1.74738,-1.6019][-0.490915,-0.871052,0.0164481][0.199401,0.616112,0][-6.30341,1.75152,-1.49177][-0.490915,-0.871052,0.0164481][0.197379,0.613416,0][-6.45872,1.83625,-1.64006][-0.490915,-0.871052,0.0164481][0.204429,0.613481,0][-6.36723,1.78419,-1.66633][-0.490915,-0.871052,0.0164514][0.202464,0.616141,0][-6.29975,1.74738,-1.6019][-0.490915,-0.871052,0.0164481][0.199401,0.616112,0][-6.45872,1.83625,-1.64006][-0.490915,-0.871052,0.0164481][0.204429,0.613481,0][-6.45872,1.83625,-1.64006][-0.647548,-0.712077,0.271344][0.971376,0.963321,0][-6.36303,1.85842,-1.35351][-0.647548,-0.712077,0.271344][0.9723,0.963325,0][-6.5318,1.95049,-1.51464][-0.647548,-0.712077,0.271344][0.971658,0.963606,0][-6.45872,1.83625,-1.64006][-0.647548,-0.712077,0.271344][0.971376,0.963321,0][-6.30341,1.75152,-1.49177][-0.647549,-0.712076,0.271344][0.971967,0.963062,0][-6.36303,1.85842,-1.35351][-0.647548,-0.712077,0.271344][0.9723,0.963325,0][-6.36336,1.951,-1.69211][-0.696441,0.281181,-0.660232][0.979716,0.942019,0][-6.5318,1.95049,-1.51464][-0.696441,0.281181,-0.660232][0.980195,0.942396,0][-6.43067,2.07173,-1.56969][-0.696441,0.281181,-0.660232][0.979675,0.942384,0][-6.36336,1.951,-1.69211][-0.696441,0.281181,-0.660232][0.979716,0.942019,0][-6.45872,1.83625,-1.64006][-0.696808,0.27944,-0.660585][0.980208,0.94203,0][-6.5318,1.95049,-1.51464][-0.696441,0.281181,-0.660232][0.980195,0.942396,0][-6.20393,1.87627,-1.54765][0.707148,0.442584,-0.551417][0.952475,0.961639,0][-6.43067,2.07173,-1.56969][0.633071,0.696174,-0.338472][0.951591,0.961747,0][-6.25743,1.99052,-1.41271][0.633071,0.696174,-0.338472][0.952127,0.961395,0][-6.20393,1.87627,-1.54765][0.707148,0.442584,-0.551417][0.952475,0.961639,0][-6.36336,1.951,-1.69211][0.707148,0.442584,-0.551417][0.951981,0.961963,0][-6.43067,2.07173,-1.56969][0.633071,0.696174,-0.338472][0.951591,0.961747,0][-6.20393,1.87627,-1.54765][0.791531,-0.609149,0.0491606][0.952104,0.966915,0][-6.25743,1.99052,-1.41271][0.743594,-0.335106,0.578595][0.952594,0.966902,0][-6.36303,1.85842,-1.35351][0.743594,-0.335106,0.578595][0.952511,0.967244,0][-6.30341,1.75152,-1.49177][0.791531,-0.609149,0.0491606][0.952026,0.967238,0][-6.20393,1.87627,-1.54765][0.791531,-0.609149,0.0491606][0.952104,0.966915,0][-6.36303,1.85842,-1.35351][0.743594,-0.335106,0.578595][0.952511,0.967244,0][-6.25743,1.99052,-1.41271][0.743594,-0.335106,0.578595][0.952594,0.966902,0][-6.28695,2.19038,-1.12319][0.813556,-0.436466,0.384218][0.953636,0.966883,0][-6.40211,2.03652,-1.05412][0.813556,-0.436466,0.384218][0.953545,0.967276,0][-6.36303,1.85842,-1.35351][0.743594,-0.335106,0.578595][0.952511,0.967244,0][-6.25743,1.99052,-1.41271][0.743594,-0.335106,0.578595][0.952594,0.966902,0][-6.40211,2.03652,-1.05412][0.813556,-0.436466,0.384218][0.953545,0.967276,0][-6.25743,1.99052,-1.41271][0.633071,0.696174,-0.338472][0.952127,0.961395,0][-6.53364,2.23998,-1.41898][0.618521,0.674723,-0.402716][0.951029,0.961487,0][-6.28695,2.19038,-1.12319][0.618521,0.674723,-0.402716][0.951681,0.96085,0][-6.25743,1.99052,-1.41271][0.633071,0.696174,-0.338472][0.952127,0.961395,0][-6.43067,2.07173,-1.56969][0.633071,0.696174,-0.338472][0.951591,0.961747,0][-6.53364,2.23998,-1.41898][0.618521,0.674723,-0.402716][0.951029,0.961487,0][-6.43067,2.07173,-1.56969][-0.696441,0.281181,-0.660232][0.979675,0.942384,0][-6.64416,2.09896,-1.3559][-0.677029,0.21587,-0.703585][0.980207,0.942879,0][-6.53364,2.23998,-1.41898][-0.677029,0.21587,-0.703585][0.979616,0.942873,0][-6.43067,2.07173,-1.56969][-0.696441,0.281181,-0.660232][0.979675,0.942384,0][-6.5318,1.95049,-1.51464][-0.696441,0.281181,-0.660232][0.980195,0.942396,0][-6.64416,2.09896,-1.3559][-0.677029,0.21587,-0.703585][0.980207,0.942879,0][-6.36303,1.85842,-1.35351][-0.647548,-0.712077,0.271344][0.9723,0.963325,0][-6.40211,2.03652,-1.05412][-0.612194,-0.712109,0.343686][0.973107,0.963694,0][-6.64416,2.09896,-1.3559][-0.612194,-0.712109,0.343686][0.971998,0.964004,0][-6.5318,1.95049,-1.51464][-0.647548,-0.712077,0.271344][0.971658,0.963606,0][-6.36303,1.85842,-1.35351][-0.647548,-0.712077,0.271344][0.9723,0.963325,0][-6.64416,2.09896,-1.3559][-0.612194,-0.712109,0.343686][0.971998,0.964004,0][-6.77455,2.16555,-1.60335][-0.755466,-0.654566,0.0285363][0.953381,0.956306,0][-6.72904,2.11575,-1.54111][-0.755466,-0.654566,0.0285363][0.953534,0.956451,0][-6.84731,2.25385,-1.50429][-0.755466,-0.654566,0.0285363][0.953006,0.95646,0][-6.82779,2.22772,-1.58677][-0.420618,-0.0720129,-0.904375][0.953143,0.95631,0][-6.77455,2.16555,-1.60335][-0.755466,-0.654566,0.0285363][0.953381,0.956306,0][-6.84731,2.25385,-1.50429][-0.755466,-0.654566,0.0285363][0.953006,0.95646,0][-6.77444,2.29501,-1.61694][-0.420618,-0.0720129,-0.904375][0.974526,0.958977,0][-6.84731,2.25385,-1.50429][-0.755466,-0.654566,0.0285363][0.974833,0.959149,0][-6.76396,2.35459,-1.54998][-0.795471,0.509189,-0.328561][0.974415,0.959138,0][-6.77444,2.29501,-1.61694][-0.420618,-0.0720129,-0.904375][0.974526,0.958977,0][-6.82779,2.22772,-1.58677][-0.420618,-0.0720129,-0.904375][0.974802,0.958984,0][-6.84731,2.25385,-1.50429][-0.755466,-0.654566,0.0285363][0.974833,0.959149,0][-6.77444,2.29501,-1.61694][0.466816,0.623205,-0.627453][0.950353,0.961932,0][-6.76396,2.35459,-1.54998][0.466816,0.623205,-0.627453][0.950281,0.961803,0][-6.64619,2.2258,-1.59026][0.466816,0.623205,-0.627453][0.950793,0.961846,0][-6.72142,2.23704,-1.63508][0.466815,0.623201,-0.627458][0.950584,0.961951,0][-6.77444,2.29501,-1.61694][0.466816,0.623205,-0.627453][0.950353,0.961932,0][-6.64619,2.2258,-1.59026][0.466816,0.623205,-0.627453][0.950793,0.961846,0][-6.77455,2.16555,-1.60335][-0.41529,-0.115078,-0.902381][0.93146,0.936546,0][-6.64619,2.2258,-1.59026][0.350747,-0.589159,-0.72792][0.931262,0.936797,0][-6.72904,2.11575,-1.54111][0.350747,-0.589159,-0.72792][0.931253,0.936524,0][-6.77455,2.16555,-1.60335][-0.41529,-0.115078,-0.902381][0.93146,0.936546,0][-6.72142,2.23704,-1.63508][-0.39306,-0.0726919,-0.916635][0.931468,0.936722,0][-6.64619,2.2258,-1.59026][0.350747,-0.589159,-0.72792][0.931262,0.936797,0][-6.72904,2.11575,-1.54111][0.350747,-0.589159,-0.72792][0.969905,0.937583,0][-6.53364,2.23998,-1.41898][0.6501,-0.669877,-0.358658][0.970348,0.937941,0][-6.64416,2.09896,-1.3559][0.6501,-0.669877,-0.358658][0.96977,0.937942,0][-6.72904,2.11575,-1.54111][0.350747,-0.589159,-0.72792][0.969905,0.937583,0][-6.64619,2.2258,-1.59026][0.350747,-0.589159,-0.72792][0.970351,0.937582,0][-6.53364,2.23998,-1.41898][0.6501,-0.669877,-0.358658][0.970348,0.937941,0][-6.76396,2.35459,-1.54998][0.466816,0.623205,-0.627453][0.950281,0.961803,0][-6.67737,2.41569,-1.34341][0.58904,0.673738,-0.446216][0.95037,0.961385,0][-6.53364,2.23998,-1.41898][0.618521,0.674723,-0.402716][0.951029,0.961487,0][-6.64619,2.2258,-1.59026][0.466816,0.623205,-0.627453][0.950793,0.961846,0][-6.76396,2.35459,-1.54998][0.466816,0.623205,-0.627453][0.950281,0.961803,0][-6.53364,2.23998,-1.41898][0.618521,0.674723,-0.402716][0.951029,0.961487,0][-6.76396,2.35459,-1.54998][-0.725515,0.680477,0.102856][0.96327,0.941239,0][-6.78814,2.28867,-1.2844][-0.725515,0.680477,0.102856][0.962626,0.941596,0][-6.67737,2.41569,-1.34341][-0.725515,0.680477,0.102856][0.962567,0.941257,0][-6.76396,2.35459,-1.54998][-0.725515,0.680477,0.102856][0.96327,0.941239,0][-6.84731,2.25385,-1.50429][-0.745077,0.660033,0.0960006][0.963317,0.941504,0][-6.78814,2.28867,-1.2844][-0.725515,0.680477,0.102856][0.962626,0.941596,0][-6.84731,2.25385,-1.50429][-0.705616,-0.645582,0.292114][0.971346,0.964403,0][-6.64416,2.09896,-1.3559][-0.612194,-0.712109,0.343686][0.971998,0.964004,0][-6.78814,2.28867,-1.2844][-0.705616,-0.645582,0.292114][0.972038,0.964444,0][-6.84731,2.25385,-1.50429][-0.705616,-0.645582,0.292114][0.971346,0.964403,0][-6.72904,2.11575,-1.54111][-0.698254,-0.66715,0.259522][0.971373,0.964067,0][-6.64416,2.09896,-1.3559][-0.612194,-0.712109,0.343686][0.971998,0.964004,0][-6.64416,2.09896,-1.3559][-0.612194,-0.712109,0.343686][0.971998,0.964004,0][-6.40211,2.03652,-1.05412][-0.612194,-0.712109,0.343686][0.973107,0.963694,0][-6.66328,2.26211,-1.07285][-0.624995,-0.693835,0.357735][0.972776,0.964318,0][-6.78814,2.28867,-1.2844][-0.705616,-0.645582,0.292114][0.972038,0.964444,0][-6.64416,2.09896,-1.3559][-0.612194,-0.712109,0.343686][0.971998,0.964004,0][-6.66328,2.26211,-1.07285][-0.624995,-0.693835,0.357735][0.972776,0.964318,0][-6.78814,2.28867,-1.2844][-0.725515,0.680477,0.102856][0.962626,0.941596,0][-6.66328,2.26211,-1.07285][-0.585921,0.685679,0.431903][0.961996,0.941731,0][-6.54715,2.40107,-1.13592][-0.585921,0.685679,0.431903][0.961931,0.941365,0][-6.67737,2.41569,-1.34341][-0.725515,0.680477,0.102856][0.962567,0.941257,0][-6.78814,2.28867,-1.2844][-0.725515,0.680477,0.102856][0.962626,0.941596,0][-6.54715,2.40107,-1.13592][-0.585921,0.685679,0.431903][0.961931,0.941365,0][-6.53364,2.23998,-1.41898][0.618521,0.674723,-0.402716][0.951029,0.961487,0][-6.54715,2.40107,-1.13592][0.59409,0.710976,-0.376259][0.950681,0.960948,0][-6.28695,2.19038,-1.12319][0.618521,0.674723,-0.402716][0.951681,0.96085,0][-6.53364,2.23998,-1.41898][0.618521,0.674723,-0.402716][0.951029,0.961487,0][-6.67737,2.41569,-1.34341][0.58904,0.673738,-0.446216][0.95037,0.961385,0][-6.54715,2.40107,-1.13592][0.59409,0.710976,-0.376259][0.950681,0.960948,0][-6.28695,2.19038,-1.12319][0.495793,-0.629208,-0.598571][0.952314,0.944352,0][-5.84846,2.24017,-0.812336][0.495793,-0.629208,-0.598571][0.953994,0.944377,0][-5.95561,2.05237,-0.703684][0.495793,-0.629208,-0.598571][0.953846,0.944847,0][-6.40211,2.03652,-1.05412][0.49072,-0.635117,-0.596507][0.952088,0.94473,0][-6.28695,2.19038,-1.12319][0.495793,-0.629208,-0.598571][0.952314,0.944352,0][-5.95561,2.05237,-0.703684][0.495793,-0.629208,-0.598571][0.953846,0.944847,0][-6.28695,2.19038,-1.12319][0.618521,0.674723,-0.402716][0.955426,0.957628,0][-6.24218,2.46255,-0.900827][0.590953,0.539666,-0.599613][0.954592,0.957191,0][-5.84846,2.24017,-0.812336][0.455081,0.517299,-0.724778][0.955439,0.956602,0][-6.28695,2.19038,-1.12319][0.618521,0.674723,-0.402716][0.955426,0.957628,0][-6.54715,2.40107,-1.13592][0.59409,0.710976,-0.376259][0.954666,0.957937,0][-6.24218,2.46255,-0.900827][0.590953,0.539666,-0.599613][0.954592,0.957191,0][-6.54715,2.40107,-1.13592][-0.585921,0.685679,0.431903][0.961931,0.941365,0][-6.35377,2.29346,-0.809111][-0.542626,0.648015,0.534447][0.96104,0.94168,0][-6.24218,2.46255,-0.900827][-0.542626,0.648015,0.534447][0.96102,0.941244,0][-6.54715,2.40107,-1.13592][-0.585921,0.685679,0.431903][0.961931,0.941365,0][-6.66328,2.26211,-1.07285][-0.585921,0.685679,0.431903][0.961996,0.941731,0][-6.35377,2.29346,-0.809111][-0.542626,0.648015,0.534447][0.96104,0.94168,0][-6.40211,2.03652,-1.05412][-0.612194,-0.712109,0.343686][0.974488,0.963069,0][-5.95561,2.05237,-0.703684][-0.506304,-0.543307,0.669682][0.976256,0.963062,0][-6.35377,2.29346,-0.809111][-0.544417,-0.788356,0.286539][0.975106,0.963661,0][-6.66328,2.26211,-1.07285][-0.624995,-0.693835,0.357735][0.973838,0.963615,0][-6.40211,2.03652,-1.05412][-0.612194,-0.712109,0.343686][0.974488,0.963069,0][-6.35377,2.29346,-0.809111][-0.544417,-0.788356,0.286539][0.975106,0.963661,0][-7.23172,3.42795,-0.448834][-0.943058,-0.316407,0.102611][0.980014,0.938722,0][-7.19825,3.30649,-0.515803][-0.943058,-0.316407,0.102611][0.98023,0.938969,0][-7.18586,3.31432,-0.3778][-0.943058,-0.316407,0.102611][0.979798,0.938967,0][-7.22704,3.43091,-0.396663][-0.943058,-0.316405,0.102614][0.979851,0.938721,0][-7.23172,3.42795,-0.448834][-0.943058,-0.316407,0.102611][0.980014,0.938722,0][-7.18586,3.31432,-0.3778][-0.943058,-0.316407,0.102611][0.979798,0.938967,0][-7.20239,3.4587,-0.365979][-0.707617,-0.137748,0.69304][0.940287,0.942553,0][-7.18586,3.31432,-0.3778][-0.707617,-0.137748,0.69304][0.939923,0.942714,0][-7.12068,3.38783,-0.296635][-0.707617,-0.137748,0.69304][0.939927,0.942461,0][-7.20239,3.4587,-0.365979][-0.707617,-0.137748,0.69304][0.940287,0.942553,0][-7.22704,3.43091,-0.396663][-0.707623,-0.137748,0.693033][0.940285,0.942649,0][-7.18586,3.31432,-0.3778][-0.707617,-0.137748,0.69304][0.939923,0.942714,0][-7.17705,3.49012,-0.391192][0.201198,0.950524,-0.236692][0.971608,0.936945,0][-7.05365,3.47094,-0.363328][0.201198,0.950524,-0.236692][0.971989,0.936918,0][-7.07991,3.44586,-0.486395][0.201198,0.950524,-0.236692][0.971904,0.937157,0][-7.18698,3.48064,-0.437717][0.2012,0.950524,-0.23669][0.971576,0.937036,0][-7.17705,3.49012,-0.391192][0.201198,0.950524,-0.236692][0.971608,0.936945,0][-7.07991,3.44586,-0.486395][0.201198,0.950524,-0.236692][0.971904,0.937157,0][-7.21204,3.45398,-0.462943][-0.0775015,0.722645,-0.686861][0.950429,0.957806,0][-7.07991,3.44586,-0.486395][0.201198,0.950524,-0.236692][0.950709,0.957609,0][-7.1462,3.37532,-0.553122][-0.0775015,0.722645,-0.686861][0.950853,0.957822,0][-7.21204,3.45398,-0.462943][-0.0775015,0.722645,-0.686861][0.950429,0.957806,0][-7.18698,3.48064,-0.437717][0.2012,0.950524,-0.23669][0.950375,0.957726,0][-7.07991,3.44586,-0.486395][0.201198,0.950524,-0.236692][0.950709,0.957609,0][-7.23172,3.42795,-0.448834][-0.943058,-0.316407,0.102611][0.953302,0.955914,0][-7.1462,3.37532,-0.553122][-0.716096,0.175221,-0.675651][0.952884,0.95602,0][-7.19825,3.30649,-0.515803][-0.943058,-0.316407,0.102611][0.952876,0.955833,0][-7.23172,3.42795,-0.448834][-0.943058,-0.316407,0.102611][0.953302,0.955914,0][-7.21204,3.45398,-0.462943][-0.716097,0.175218,-0.67565][0.953305,0.955984,0][-7.1462,3.37532,-0.553122][-0.716096,0.175221,-0.675651][0.952884,0.95602,0][-7.20239,3.4587,-0.365979][-0.763562,0.644729,0.0360178][0.928747,0.940975,0][-7.12068,3.38783,-0.296635][-0.0674353,0.656939,0.750921][0.929084,0.940973,0][-7.05365,3.47094,-0.363328][-0.0674353,0.656939,0.750921][0.929075,0.941185,0][-7.17705,3.49012,-0.391192][-0.763562,0.644729,0.0360178][0.928744,0.941055,0][-7.20239,3.4587,-0.365979][-0.763562,0.644729,0.0360178][0.928747,0.940975,0][-7.05365,3.47094,-0.363328][-0.0674353,0.656939,0.750921][0.929075,0.941185,0][-7.19825,3.30649,-0.515803][-0.943058,-0.316407,0.102611][0.932793,0.955478,0][-7.00653,3.08632,-0.570257][-0.737157,-0.667662,0.104055][0.933637,0.955432,0][-6.99015,3.09667,-0.387886][-0.737157,-0.667662,0.104055][0.933604,0.955793,0][-7.18586,3.31432,-0.3778][-0.943058,-0.316407,0.102611][0.932768,0.955752,0][-7.19825,3.30649,-0.515803][-0.943058,-0.316407,0.102611][0.932793,0.955478,0][-6.99015,3.09667,-0.387886][-0.737157,-0.667662,0.104055][0.933604,0.955793,0][-7.18586,3.31432,-0.3778][-0.707617,-0.137748,0.69304][0.939923,0.942714,0][-6.99015,3.09667,-0.387886][-0.456168,-0.445868,0.770138][0.939025,0.942771,0][-6.90401,3.1938,-0.280626][-0.456168,-0.445868,0.770138][0.93903,0.942437,0][-7.12068,3.38783,-0.296635][-0.707617,-0.137748,0.69304][0.939927,0.942461,0][-7.18586,3.31432,-0.3778][-0.707617,-0.137748,0.69304][0.939923,0.942714,0][-6.90401,3.1938,-0.280626][-0.456168,-0.445868,0.770138][0.93903,0.942437,0][-7.07991,3.44586,-0.486395][0.201198,0.950524,-0.236692][0.971904,0.937157,0][-6.81543,3.30364,-0.368761][0.547852,0.789118,-0.277762][0.972873,0.936994,0][-6.85013,3.27049,-0.531395][0.547852,0.789118,-0.277762][0.972761,0.93731,0][-7.07991,3.44586,-0.486395][0.201198,0.950524,-0.236692][0.971904,0.937157,0][-7.05365,3.47094,-0.363328][0.201198,0.950524,-0.236692][0.971989,0.936918,0][-6.81543,3.30364,-0.368761][0.547852,0.789118,-0.277762][0.972873,0.936994,0][-7.1462,3.37532,-0.553122][-0.0775015,0.722645,-0.686861][0.950853,0.957822,0][-6.85013,3.27049,-0.531395][0.547852,0.789118,-0.277762][0.951476,0.957376,0][-6.93774,3.17728,-0.619574][0.247954,0.532553,-0.809263][0.951667,0.957657,0][-7.1462,3.37532,-0.553122][-0.0775015,0.722645,-0.686861][0.950853,0.957822,0][-7.07991,3.44586,-0.486395][0.201198,0.950524,-0.236692][0.950709,0.957609,0][-6.85013,3.27049,-0.531395][0.547852,0.789118,-0.277762][0.951476,0.957376,0][-7.19825,3.30649,-0.515803][-0.43123,-0.155718,-0.888703][0.96309,0.935449,0][-6.93774,3.17728,-0.619574][-0.43123,-0.155718,-0.888703][0.96222,0.935609,0][-7.00653,3.08632,-0.570257][-0.43123,-0.155718,-0.888703][0.962187,0.935384,0][-7.19825,3.30649,-0.515803][-0.43123,-0.155718,-0.888703][0.96309,0.935449,0][-7.1462,3.37532,-0.553122][-0.431231,-0.155721,-0.888702][0.963115,0.935619,0][-6.93774,3.17728,-0.619574][-0.43123,-0.155718,-0.888703][0.96222,0.935609,0][-7.12068,3.38783,-0.296635][-0.0674353,0.656939,0.750921][0.929084,0.940973,0][-6.90401,3.1938,-0.280626][0.31742,0.424441,0.847994][0.929989,0.940959,0][-6.81543,3.30364,-0.368761][0.31742,0.424441,0.847994][0.929977,0.941238,0][-7.05365,3.47094,-0.363328][-0.0674353,0.656939,0.750921][0.929075,0.941185,0][-7.12068,3.38783,-0.296635][-0.0674353,0.656939,0.750921][0.929084,0.940973,0][-6.81543,3.30364,-0.368761][0.31742,0.424441,0.847994][0.929977,0.941238,0][-7.00653,3.08632,-0.570257][-0.737157,-0.667662,0.104055][0.933637,0.955432,0][-6.77216,2.90387,-0.57411][-0.610241,-0.785959,0.0993704][0.934534,0.955491,0][-6.75774,2.91298,-0.413487][-0.610241,-0.785959,0.0993704][0.934505,0.955809,0][-6.99015,3.09667,-0.387886][-0.737157,-0.667662,0.104055][0.933604,0.955793,0][-7.00653,3.08632,-0.570257][-0.737157,-0.667662,0.104055][0.933637,0.955432,0][-6.75774,2.91298,-0.413487][-0.610241,-0.785959,0.0993704][0.934505,0.955809,0][-6.99015,3.09667,-0.387886][-0.456168,-0.445868,0.770138][0.939025,0.942771,0][-6.75774,2.91298,-0.413487][-0.343823,-0.541908,0.766891][0.938137,0.942771,0][-6.68188,2.99854,-0.319018][-0.343823,-0.541908,0.766891][0.938142,0.942478,0][-6.90401,3.1938,-0.280626][-0.456168,-0.445868,0.770138][0.93903,0.942437,0][-6.99015,3.09667,-0.387886][-0.456168,-0.445868,0.770138][0.939025,0.942771,0][-6.68188,2.99854,-0.319018][-0.343823,-0.541908,0.766891][0.938142,0.942478,0][-6.85013,3.27049,-0.531395][0.547852,0.789118,-0.277762][0.972761,0.93731,0][-6.60386,3.09527,-0.396643][0.653927,0.701796,-0.282598][0.973728,0.937113,0][-6.63442,3.06608,-0.539882][0.653927,0.701796,-0.282598][0.973629,0.937392,0][-6.85013,3.27049,-0.531395][0.547852,0.789118,-0.277762][0.972761,0.93731,0][-6.81543,3.30364,-0.368761][0.547852,0.789118,-0.277762][0.972873,0.936994,0][-6.60386,3.09527,-0.396643][0.653927,0.701796,-0.282598][0.973728,0.937113,0][-6.85013,3.27049,-0.531395][0.547852,0.789118,-0.277762][0.951476,0.957376,0][-6.63442,3.06608,-0.539882][0.653927,0.701796,-0.282598][0.952195,0.957155,0][-6.71158,2.98398,-0.617546][0.373185,0.427983,-0.823142][0.952363,0.957402,0][-6.93774,3.17728,-0.619574][0.247954,0.532553,-0.809263][0.951667,0.957657,0][-6.85013,3.27049,-0.531395][0.547852,0.789118,-0.277762][0.951476,0.957376,0][-6.71158,2.98398,-0.617546][0.373185,0.427983,-0.823142][0.952363,0.957402,0][-7.00653,3.08632,-0.570257][-0.43123,-0.155718,-0.888703][0.962187,0.935384,0][-6.71158,2.98398,-0.617546][-0.253309,-0.306001,-0.917714][0.961295,0.93563,0][-6.77216,2.90387,-0.57411][-0.253309,-0.306001,-0.917714][0.961265,0.935432,0][-7.00653,3.08632,-0.570257][-0.43123,-0.155718,-0.888703][0.962187,0.935384,0][-6.93774,3.17728,-0.619574][-0.43123,-0.155718,-0.888703][0.96222,0.935609,0][-6.71158,2.98398,-0.617546][-0.253309,-0.306001,-0.917714][0.961295,0.93563,0][-6.90401,3.1938,-0.280626][0.432061,0.326197,0.840785][0.974341,0.95259,0][-6.68188,2.99854,-0.319018][0.432061,0.326197,0.840785][0.975262,0.95258,0][-6.60386,3.09527,-0.396643][0.432061,0.326197,0.840785][0.975252,0.952826,0][-6.81543,3.30364,-0.368761][0.432061,0.326198,0.840785][0.97433,0.952869,0][-6.90401,3.1938,-0.280626][0.432061,0.326197,0.840785][0.974341,0.95259,0][-6.60386,3.09527,-0.396643][0.432061,0.326197,0.840785][0.975252,0.952826,0][-6.77216,2.90387,-0.57411][-0.610241,-0.785959,0.0993704][0.934534,0.955491,0][-6.58936,2.65625,-0.665657][-0.909294,-0.375003,0.180433][0.935403,0.955372,0][-6.57043,2.66821,-0.454749][-0.878938,-0.465168,0.105294][0.935364,0.95579,0][-6.75774,2.91298,-0.413487][-0.610241,-0.785959,0.0993704][0.934505,0.955809,0][-6.77216,2.90387,-0.57411][-0.610241,-0.785959,0.0993704][0.934534,0.955491,0][-6.57043,2.66821,-0.454749][-0.878938,-0.465168,0.105294][0.935364,0.95579,0][-6.75774,2.91298,-0.413487][-0.343823,-0.541908,0.766891][0.938137,0.942771,0][-6.57043,2.66821,-0.454749][-0.552545,-0.346161,0.7582][0.937206,0.942907,0][-6.47081,2.78055,-0.330705][-0.552233,-0.347214,0.757946][0.937212,0.942521,0][-6.68188,2.99854,-0.319018][-0.343823,-0.541908,0.766891][0.938142,0.942478,0][-6.75774,2.91298,-0.413487][-0.343823,-0.541908,0.766891][0.938137,0.942771,0][-6.47081,2.78055,-0.330705][-0.552233,-0.347214,0.757946][0.937212,0.942521,0][-6.63442,3.06608,-0.539882][0.653927,0.701796,-0.282598][0.973629,0.937392,0][-6.36836,2.90758,-0.432631][0.447481,0.852776,-0.269322][0.97462,0.937251,0][-6.4085,2.86924,-0.620714][0.447481,0.852776,-0.269322][0.97449,0.937617,0][-6.63442,3.06608,-0.539882][0.653927,0.701796,-0.282598][0.973629,0.937392,0][-6.60386,3.09527,-0.396643][0.653927,0.701796,-0.282598][0.973728,0.937113,0][-6.36836,2.90758,-0.432631][0.447481,0.852776,-0.269322][0.97462,0.937251,0][-6.71158,2.98398,-0.617546][0.373185,0.427983,-0.823142][0.952363,0.957402,0][-6.4085,2.86924,-0.620714][0.447481,0.852776,-0.269322][0.953065,0.956972,0][-6.50981,2.76145,-0.722691][0.346883,0.918735,-0.188676][0.953285,0.957296,0][-6.71158,2.98398,-0.617546][0.373185,0.427983,-0.823142][0.952363,0.957402,0][-6.63442,3.06608,-0.539882][0.653927,0.701796,-0.282598][0.952195,0.957155,0][-6.4085,2.86924,-0.620714][0.447481,0.852776,-0.269322][0.953065,0.956972,0][-6.77216,2.90387,-0.57411][-0.610241,-0.785959,0.0993704][0.935589,0.937027,0][-6.50981,2.76145,-0.722691][-0.519632,-0.0687623,-0.851619][0.936445,0.936797,0][-6.58936,2.65625,-0.665657][-0.909294,-0.375003,0.180433][0.936546,0.937051,0][-6.77216,2.90387,-0.57411][-0.610241,-0.785959,0.0993704][0.935589,0.937027,0][-6.71158,2.98398,-0.617546][-0.519631,-0.0687614,-0.851619][0.935512,0.936834,0][-6.50981,2.76145,-0.722691][-0.519632,-0.0687623,-0.851619][0.936445,0.936797,0][-6.68188,2.99854,-0.319018][0.407125,0.348956,0.844084][0.941757,0.956704,0][-6.47081,2.78055,-0.330705][0.372374,0.380714,0.846401][0.940827,0.956808,0][-6.36836,2.90758,-0.432631][0.373505,0.378373,0.846952][0.940802,0.956485,0][-6.60386,3.09527,-0.396643][0.407125,0.348956,0.844085][0.941738,0.956459,0][-6.68188,2.99854,-0.319018][0.407125,0.348956,0.844084][0.941757,0.956704,0][-6.36836,2.90758,-0.432631][0.373505,0.378373,0.846952][0.940802,0.956485,0][-6.35377,2.29346,-0.809111][-0.544417,-0.788356,0.286539][0.969572,0.964297,0][-5.95561,2.05237,-0.703684][-0.506304,-0.543307,0.669682][0.968166,0.964586,0][-6.09521,2.19289,-0.42248][-0.540392,-0.82868,0.145826][0.968216,0.963919,0][-6.38324,2.38915,-0.512814][-0.600959,-0.776156,0.190867][0.96928,0.963724,0][-6.35377,2.29346,-0.809111][-0.544417,-0.788356,0.286539][0.969572,0.964297,0][-6.09521,2.19289,-0.42248][-0.540392,-0.82868,0.145826][0.968216,0.963919,0][-6.38324,2.38915,-0.512814][-0.600959,-0.776156,0.190867][0.967192,0.9667,0][-6.09521,2.19289,-0.42248][-0.540392,-0.82868,0.145826][0.966264,0.967058,0][-6.11026,2.48607,-0.267657][-0.519428,-0.419724,0.744329][0.966359,0.966479,0][-6.32542,2.59342,-0.310499][-0.401993,-0.584362,0.704928][0.936474,0.942557,0][-6.38324,2.38915,-0.512814][-0.600959,-0.776156,0.190867][0.936202,0.943103,0][-6.11026,2.48607,-0.267657][-0.519428,-0.419724,0.744329][0.93577,0.942403,0][-6.15423,2.67883,-0.749799][0.629066,0.732529,-0.260149][0.975405,0.937942,0][-5.96442,2.68114,-0.427641][0.491867,0.818927,-0.295678][0.97605,0.937347,0][-5.8449,2.51564,-0.68722][0.491867,0.818927,-0.295678][0.976508,0.937899,0][-6.15423,2.67883,-0.749799][0.629066,0.732529,-0.260149][0.975405,0.937942,0][-6.16967,2.79196,-0.468601][0.46619,0.862451,-0.197093][0.975315,0.937374,0][-5.96442,2.68114,-0.427641][0.491867,0.818927,-0.295678][0.97605,0.937347,0][-6.24218,2.46255,-0.900827][0.590953,0.539666,-0.599613][0.954592,0.957191,0][-5.8449,2.51564,-0.68722][0.491867,0.818927,-0.295678][0.954728,0.956313,0][-5.84846,2.24017,-0.812336][0.455081,0.517299,-0.724778][0.955439,0.956602,0][-6.24218,2.46255,-0.900827][0.590953,0.539666,-0.599613][0.954592,0.957191,0][-6.15423,2.67883,-0.749799][0.629066,0.732529,-0.260149][0.954068,0.956777,0][-5.8449,2.51564,-0.68722][0.491867,0.818927,-0.295678][0.954728,0.956313,0][-6.16967,2.79196,-0.468601][0.372949,0.381116,0.845967][0.94009,0.956439,0][-6.11026,2.48607,-0.267657][0.141155,0.562555,0.814621][0.93938,0.95686,0][-5.96442,2.68114,-0.427641][0.141155,0.562555,0.814621][0.93937,0.956377,0][-6.16967,2.79196,-0.468601][0.372949,0.381116,0.845967][0.94009,0.956439,0][-6.32542,2.59342,-0.310499][0.372949,0.381116,0.845967][0.940118,0.956938,0][-6.11026,2.48607,-0.267657][0.141155,0.562555,0.814621][0.93938,0.95686,0][-6.09521,2.19289,-0.42248][-0.540392,-0.82868,0.145826][0.968216,0.963919,0][-5.57734,2.0507,-0.452028][-0.238027,-0.927081,0.289593][0.966846,0.964505,0][-5.64937,2.15398,-0.180602][-0.238027,-0.927081,0.289593][0.966706,0.963932,0][-6.09521,2.19289,-0.42248][-0.540392,-0.82868,0.145826][0.968216,0.963919,0][-5.95561,2.05237,-0.703684][-0.506304,-0.543307,0.669682][0.968166,0.964586,0][-5.57734,2.0507,-0.452028][-0.238027,-0.927081,0.289593][0.966846,0.964505,0][-6.09521,2.19289,-0.42248][-0.540392,-0.82868,0.145826][0.966264,0.967058,0][-5.64937,2.15398,-0.180602][-0.238027,-0.927081,0.289593][0.964872,0.967088,0][-5.66604,2.42915,-0.112362][-0.479101,-0.23852,0.844731][0.964969,0.966545,0][-6.11026,2.48607,-0.267657][-0.519428,-0.419724,0.744329][0.966359,0.966479,0][-6.09521,2.19289,-0.42248][-0.540392,-0.82868,0.145826][0.966264,0.967058,0][-5.66604,2.42915,-0.112362][-0.479101,-0.23852,0.844731][0.964969,0.966545,0][-5.8449,2.51564,-0.68722][0.491867,0.818927,-0.295678][0.976508,0.937899,0][-5.56487,2.55897,-0.251422][0.301001,0.910372,-0.28394][0.977392,0.937095,0][-5.45968,2.45311,-0.479329][0.301001,0.910372,-0.28394][0.977744,0.937575,0][-5.8449,2.51564,-0.68722][0.491867,0.818927,-0.295678][0.976508,0.937899,0][-5.96442,2.68114,-0.427641][0.491867,0.818927,-0.295678][0.97605,0.937347,0][-5.56487,2.55897,-0.251422][0.301001,0.910372,-0.28394][0.977392,0.937095,0][-5.8449,2.51564,-0.68722][0.489971,0.189893,-0.850805][0.954925,0.966457,0][-5.45968,2.45311,-0.479329][0.489971,0.189893,-0.850805][0.955126,0.967324,0][-5.50176,2.20554,-0.558817][0.489971,0.189893,-0.850805][0.954306,0.967323,0][-5.84846,2.24017,-0.812336][0.455081,0.517299,-0.724778][0.955439,0.956602,0][-5.8449,2.51564,-0.68722][0.491867,0.818927,-0.295678][0.954728,0.956313,0][-5.50176,2.20554,-0.558817][0.578279,0.331175,-0.745598][0.955558,0.955833,0][-5.84846,2.24017,-0.812336][0.495793,-0.629208,-0.598571][0.953994,0.944377,0][-5.50176,2.20554,-0.558817][0.408114,-0.644874,-0.646205][0.95531,0.944518,0][-5.57734,2.0507,-0.452028][0.408114,-0.644874,-0.646205][0.955251,0.944918,0][-5.95561,2.05237,-0.703684][0.495793,-0.629208,-0.598571][0.953846,0.944847,0][-5.84846,2.24017,-0.812336][0.495793,-0.629208,-0.598571][0.953994,0.944377,0][-5.57734,2.0507,-0.452028][0.408114,-0.644874,-0.646205][0.955251,0.944918,0][-5.96442,2.68114,-0.427641][0.141155,0.562555,0.814621][0.976896,0.941497,0][-5.66604,2.42915,-0.112362][-0.0602662,0.751133,0.657394][0.978203,0.940953,0][-5.56487,2.55897,-0.251422][-0.0602662,0.751133,0.657394][0.978294,0.941376,0][-5.96442,2.68114,-0.427641][0.141155,0.562555,0.814621][0.976896,0.941497,0][-6.11026,2.48607,-0.267657][0.141155,0.562555,0.814621][0.976731,0.940933,0][-5.66604,2.42915,-0.112362][-0.0602662,0.751133,0.657394][0.978203,0.940953,0][-5.57734,2.0507,-0.452028][-0.238027,-0.927081,0.289593][0.966846,0.964505,0][-4.25989,2.03184,0.175305][-0.208189,-0.88776,0.410535][0.962632,0.964652,0][-4.75674,2.16966,0.221354][-0.208189,-0.88776,0.410535][0.96392,0.964059,0][-5.64937,2.15398,-0.180602][-0.238027,-0.927081,0.289593][0.966706,0.963932,0][-5.57734,2.0507,-0.452028][-0.238027,-0.927081,0.289593][0.966846,0.964505,0][-4.75674,2.16966,0.221354][-0.208189,-0.88776,0.410535][0.96392,0.964059,0][-5.64937,2.15398,-0.180602][-0.238027,-0.927081,0.289593][0.964872,0.967088,0][-4.75674,2.16966,0.221354][-0.208189,-0.88776,0.410535][0.9621,0.966962,0][-5.19733,2.43137,0.109422][-0.389895,-0.281374,0.876819][0.963513,0.966491,0][-5.66604,2.42915,-0.112362][-0.479101,-0.23852,0.844731][0.964969,0.966545,0][-5.64937,2.15398,-0.180602][-0.238027,-0.927081,0.289593][0.964872,0.967088,0][-5.19733,2.43137,0.109422][-0.389895,-0.281374,0.876819][0.963513,0.966491,0][-5.45968,2.45311,-0.479329][0.301001,0.910372,-0.28394][0.977744,0.937575,0][-5.04044,2.65554,-0.0388379][0.153999,0.833996,-0.529845][0.978812,0.936776,0][-4.55047,2.53735,-0.0824615][0.153999,0.833996,-0.529845][0.980324,0.936975,0][-5.45968,2.45311,-0.479329][0.301001,0.910372,-0.28394][0.977744,0.937575,0][-5.56487,2.55897,-0.251422][0.301001,0.910372,-0.28394][0.977392,0.937095,0][-5.04044,2.65554,-0.0388379][0.153999,0.833996,-0.529845][0.978812,0.936776,0][-4.55047,2.53735,-0.0824615][0.153999,0.833996,-0.529845][0.948413,0.960688,0][-5.50176,2.20554,-0.558817][0.578279,0.331175,-0.745598][0.946526,0.962283,0][-5.45968,2.45311,-0.479329][0.301001,0.910372,-0.28394][0.946206,0.961828,0][-4.55047,2.53735,-0.0824615][0.153999,0.833996,-0.529845][0.948413,0.960688,0][-4.13805,2.32468,-0.0412287][0.293999,0.402012,-0.867151][0.949848,0.960584,0][-5.50176,2.20554,-0.558817][0.578279,0.331175,-0.745598][0.946526,0.962283,0][-4.75674,2.16966,0.221354][-0.208189,-0.88776,0.410535][0.96392,0.964059,0][-4.27378,2.06831,0.557356][-0.320997,-0.929628,0.18098][0.9621,0.963973,0][-4.67811,2.21064,0.571312][-0.320997,-0.929628,0.18098][0.963219,0.963518,0][-4.75674,2.16966,0.221354][-0.208189,-0.88776,0.410535][0.96392,0.964059,0][-4.25989,2.03184,0.175305][-0.208189,-0.88776,0.410535][0.962632,0.964652,0][-4.27378,2.06831,0.557356][-0.320997,-0.929628,0.18098][0.9621,0.963973,0][-4.75674,2.16966,0.221354][-0.208189,-0.88776,0.410535][0.96392,0.964059,0][-4.67811,2.21064,0.571312][-0.320997,-0.929628,0.18098][0.963219,0.963518,0][-5.08245,2.35297,0.585269][-0.320996,-0.929628,0.18098][0.964339,0.963062,0][-5.19733,2.43137,0.109422][-0.506917,-0.861772,-0.0196005][0.951757,0.964054,0][-4.75674,2.16966,0.221354][-0.506917,-0.861772,-0.0196005][0.95032,0.963572,0][-5.08245,2.35297,0.585269][-0.506917,-0.861772,-0.0196005][0.951739,0.963073,0][-4.55047,2.53735,-0.0824615][0.153999,0.833996,-0.529845][0.948413,0.960688,0][-4.68594,2.9835,0.0564525][0.150432,0.335258,-0.930039][0.94729,0.960102,0][-4.33166,2.80732,0.0502472][0.150432,0.335258,-0.930039][0.948512,0.960002,0][-4.55047,2.53735,-0.0824615][0.153999,0.833996,-0.529845][0.948413,0.960688,0][-5.04044,2.65554,-0.0388379][0.153999,0.833996,-0.529845][0.946941,0.961033,0][-4.68594,2.9835,0.0564525][0.150432,0.335258,-0.930039][0.94729,0.960102,0][-4.13805,2.32468,-0.0412287][0.293999,0.402012,-0.867151][0.949848,0.960584,0][-4.33166,2.80732,0.0502472][0.150432,0.335258,-0.930039][0.948512,0.960002,0][-4.0301,2.65398,0.124289][0.374496,0.315488,-0.871906][0.949557,0.959923,0][-4.13805,2.32468,-0.0412287][0.293999,0.402012,-0.867151][0.949848,0.960584,0][-4.55047,2.53735,-0.0824615][0.153999,0.833996,-0.529845][0.948413,0.960688,0][-4.33166,2.80732,0.0502472][0.150432,0.335258,-0.930039][0.948512,0.960002,0][-4.75496,2.62142,0.756428][-0.119134,-0.42636,0.896674][0.974498,0.960325,0][-5.08245,2.35297,0.585269][-0.320996,-0.929628,0.18098][0.974364,0.95949,0][-4.67811,2.21064,0.571312][-0.320997,-0.929628,0.18098][0.975569,0.959855,0][-4.4604,2.50951,0.73965][-0.110472,-0.425437,0.89822][0.975394,0.960579,0][-4.75496,2.62142,0.756428][-0.119134,-0.42636,0.896674][0.974498,0.960325,0][-4.67811,2.21064,0.571312][-0.320997,-0.929628,0.18098][0.975569,0.959855,0][-4.4604,2.50951,0.73965][-0.110472,-0.425437,0.89822][0.975394,0.960579,0][-4.67811,2.21064,0.571312][-0.320997,-0.929628,0.18098][0.975569,0.959855,0][-4.27378,2.06831,0.557356][-0.320997,-0.929628,0.18098][0.976774,0.960219,0][-4.16583,2.3976,0.722873][-0.107486,-0.418144,0.901999][0.97629,0.960833,0][-4.4604,2.50951,0.73965][-0.110472,-0.425437,0.89822][0.975394,0.960579,0][-4.27378,2.06831,0.557356][-0.320997,-0.929628,0.18098][0.976774,0.960219,0][-4.55671,2.93669,0.492019][0.246555,0.527044,0.813287][0.944807,0.946784,0][-4.75496,2.62142,0.756428][0.246555,0.527044,0.813287][0.944661,0.945884,0][-4.4604,2.50951,0.73965][0.246555,0.527044,0.813287][0.94564,0.94594,0][-4.30035,2.81356,0.499179][0.229943,0.526364,0.818576][0.945692,0.94677,0][-4.55671,2.93669,0.492019][0.246555,0.527044,0.813287][0.944807,0.946784,0][-4.4604,2.50951,0.73965][0.246555,0.527044,0.813287][0.94564,0.94594,0][-4.30035,2.81356,0.499179][0.229943,0.526364,0.818576][0.945692,0.94677,0][-4.4604,2.50951,0.73965][0.246555,0.527044,0.813287][0.94564,0.94594,0][-4.16583,2.3976,0.722873][0.243952,0.519334,0.819011][0.946618,0.945996,0][-4.04399,2.69044,0.50634][0.225221,0.516956,0.825853][0.946577,0.946756,0][-4.30035,2.81356,0.499179][0.229943,0.526364,0.818576][0.945692,0.94677,0][-4.16583,2.3976,0.722873][0.243952,0.519334,0.819011][0.946618,0.945996,0][-4.33166,2.80732,0.0502472][0.150432,0.335258,-0.930039][0.961599,0.955472,0][-4.55671,2.93669,0.492019][0.433514,0.900132,-0.042756][0.962404,0.956347,0][-4.30035,2.81356,0.499179][0.433514,0.900132,-0.042756][0.961519,0.956362,0][-4.33166,2.80732,0.0502472][0.150432,0.335258,-0.930039][0.961599,0.955472,0][-4.68594,2.9835,0.0564525][0.150432,0.335258,-0.930039][0.96283,0.955484,0][-4.55671,2.93669,0.492019][0.433514,0.900132,-0.042756][0.962404,0.956347,0][-4.0301,2.65398,0.124289][0.374496,0.315488,-0.871906][0.960547,0.955619,0][-4.30035,2.81356,0.499179][0.433514,0.900132,-0.042756][0.961519,0.956362,0][-4.04399,2.69044,0.50634][0.433467,0.898448,-0.0699796][0.960634,0.956376,0][-4.0301,2.65398,0.124289][0.374496,0.315488,-0.871906][0.960547,0.955619,0][-4.33166,2.80732,0.0502472][0.150432,0.335258,-0.930039][0.961599,0.955472,0][-4.30035,2.81356,0.499179][0.433514,0.900132,-0.042756][0.961519,0.956362,0][-4.25989,2.03184,0.175305][0.323189,-0.639094,-0.697931][0.959703,0.944903,0][-5.57734,2.0507,-0.452028][0.408114,-0.644874,-0.646205][0.955251,0.944918,0][-5.50176,2.20554,-0.558817][0.408114,-0.644874,-0.646205][0.95531,0.944518,0][-4.13805,2.32468,-0.0412287][0.319609,-0.645741,-0.693447][0.959735,0.944142,0][-4.25989,2.03184,0.175305][0.323189,-0.639094,-0.697931][0.959703,0.944903,0][-5.50176,2.20554,-0.558817][0.408114,-0.644874,-0.646205][0.95531,0.944518,0][-5.19733,2.43137,0.109422][-0.379462,0.680286,0.627072][0.979774,0.940972,0][-5.04044,2.65554,-0.0388379][-0.379462,0.680286,0.627072][0.979964,0.941564,0][-5.56487,2.55897,-0.251422][-0.0602662,0.751133,0.657394][0.978294,0.941376,0][-5.66604,2.42915,-0.112362][-0.0602662,0.751133,0.657394][0.978203,0.940953,0][-5.19733,2.43137,0.109422][-0.379462,0.680286,0.627072][0.979774,0.940972,0][-5.56487,2.55897,-0.251422][-0.0602662,0.751133,0.657394][0.978294,0.941376,0][-7.37743,4.8208,1.30345][-0.45404,-0.36468,0.812931][0.963882,0.959756,0][-7.27506,4.47357,1.17048][-0.138825,-0.389588,0.910466][0.96487,0.959411,0][-7.11236,4.73891,1.30882][-0.138825,-0.389588,0.910466][0.964647,0.960011,0][-7.37743,4.8208,1.30345][-0.45404,-0.36468,0.812931][0.963882,0.959756,0][-7.63736,4.54181,1.03312][-0.45404,-0.36468,0.812931][0.96392,0.959001,0][-7.27506,4.47357,1.17048][-0.138825,-0.389588,0.910466][0.96487,0.959411,0][-7.63736,4.54181,1.03312][-0.45404,-0.36468,0.812931][0.931781,0.956974,0][-7.28502,4.43758,0.831923][-0.223942,-0.968428,0.109529][0.930891,0.957571,0][-7.27506,4.47357,1.17048][-0.138825,-0.389588,0.910466][0.930592,0.956928,0][-7.63736,4.54181,1.03312][-0.45404,-0.36468,0.812931][0.931781,0.956974,0][-7.78734,4.54636,0.696088][-0.518145,-0.726339,0.451617][0.932506,0.957529,0][-7.28502,4.43758,0.831923][-0.223942,-0.968428,0.109529][0.930891,0.957571,0][-7.60408,4.82153,0.455876][0.129987,-0.699766,-0.702447][0.964802,0.937984,0][-7.13228,4.66693,0.631713][0.0522601,-0.676254,-0.734813][0.966435,0.937974,0][-7.28502,4.43758,0.831923][0.0522601,-0.676254,-0.734813][0.966438,0.938649,0][-7.78734,4.54636,0.696088][0.129987,-0.699766,-0.702447][0.964805,0.938794,0][-7.60408,4.82153,0.455876][0.129987,-0.699766,-0.702447][0.964802,0.937984,0][-7.28502,4.43758,0.831923][0.0522601,-0.676254,-0.734813][0.966438,0.938649,0][-7.34286,5.03068,0.65553][0.268484,0.468269,-0.841808][0.936874,0.959657,0][-6.96958,4.93227,0.770059][0.345047,0.258826,-0.902193][0.93801,0.959408,0][-7.13228,4.66693,0.631713][0.345047,0.258826,-0.902193][0.938048,0.960025,0][-7.60408,4.82153,0.455876][0.456356,0.513418,-0.726733][0.93656,0.96029,0][-7.34286,5.03068,0.65553][0.268484,0.468269,-0.841808][0.936874,0.959657,0][-7.13228,4.66693,0.631713][0.345047,0.258826,-0.902193][0.938048,0.960025,0][-7.19417,5.09597,1.06324][0.439532,0.848018,-0.296103][0.972685,0.957479,0][-6.95962,4.96825,1.10861][0.491296,0.864477,-0.106344][0.971855,0.957569,0][-6.96958,4.93227,0.770059][0.345047,0.258826,-0.902193][0.971836,0.956898,0][-7.34286,5.03068,0.65553][0.268484,0.468269,-0.841808][0.973019,0.956671,0][-7.19417,5.09597,1.06324][0.439532,0.848018,-0.296103][0.972685,0.957479,0][-6.96958,4.93227,0.770059][0.345047,0.258826,-0.902193][0.971836,0.956898,0][-7.19417,5.09597,1.06324][0.169441,0.581662,0.795587][0.964086,0.950564,0][-7.11236,4.73891,1.30882][0.164399,0.584275,0.79473][0.964913,0.949867,0][-6.95962,4.96825,1.10861][0.164399,0.584275,0.79473][0.964928,0.950542,0][-7.19417,5.09597,1.06324][0.169441,0.581662,0.795587][0.964086,0.950564,0][-7.37743,4.8208,1.30345][0.169441,0.581662,0.795587][0.964068,0.949755,0][-7.11236,4.73891,1.30882][0.164399,0.584275,0.79473][0.964913,0.949867,0][-7.11236,4.73891,1.30882][-0.138825,-0.389588,0.910466][0.964647,0.960011,0][-6.69077,4.10259,1.1257][-0.177688,-0.379081,0.908143][0.966974,0.959705,0][-6.506,4.29057,1.24032][-0.177688,-0.379081,0.908143][0.96697,0.960227,0][-7.11236,4.73891,1.30882][-0.138825,-0.389588,0.910466][0.964647,0.960011,0][-7.27506,4.47357,1.17048][-0.138825,-0.389588,0.910466][0.96487,0.959411,0][-6.69077,4.10259,1.1257][-0.177688,-0.379081,0.908143][0.966974,0.959705,0][-7.27506,4.47357,1.17048][-0.52866,-0.843791,0.0923811][0.960875,0.963473,0][-6.73392,4.09852,0.841562][-0.52866,-0.843791,0.092381][0.958656,0.96376,0][-6.69077,4.10259,1.1257][-0.52866,-0.843791,0.0923811][0.958779,0.963197,0][-7.27506,4.47357,1.17048][-0.138825,-0.389588,0.910466][0.930592,0.956928,0][-7.28502,4.43758,0.831923][-0.223942,-0.968428,0.109529][0.930891,0.957571,0][-6.73392,4.09852,0.841562][-0.522435,-0.846151,0.105314][0.928975,0.957937,0][-7.13228,4.66693,0.631713][0.0522601,-0.676254,-0.734813][0.966435,0.937974,0][-6.59232,4.28243,0.672043][-0.302616,-0.509469,-0.805522][0.968258,0.938051,0][-6.73392,4.09852,0.841562][-0.302616,-0.509469,-0.805522][0.968218,0.93862,0][-7.28502,4.43758,0.831923][0.0522601,-0.676254,-0.734813][0.966438,0.938649,0][-7.13228,4.66693,0.631713][0.0522601,-0.676254,-0.734813][0.966435,0.937974,0][-6.73392,4.09852,0.841562][-0.302616,-0.509469,-0.805522][0.968218,0.93862,0][-6.96958,4.93227,0.770059][0.345047,0.258826,-0.902193][0.93801,0.959408,0][-6.40755,4.47041,0.786663][0.269144,0.294559,-0.916949][0.940263,0.95955,0][-6.59232,4.28243,0.672043][0.269144,0.294559,-0.916949][0.94011,0.960063,0][-7.13228,4.66693,0.631713][0.345047,0.258826,-0.902193][0.938048,0.960025,0][-6.96958,4.93227,0.770059][0.345047,0.258826,-0.902193][0.93801,0.959408,0][-6.59232,4.28243,0.672043][0.269144,0.294559,-0.916949][0.94011,0.960063,0][-6.95962,4.96825,1.10861][0.491296,0.864477,-0.106344][0.971855,0.957569,0][-6.36439,4.47448,1.0708][0.63078,0.768574,-0.106816][0.969527,0.957494,0][-6.40755,4.47041,0.786663][0.269144,0.294559,-0.916949][0.969643,0.956931,0][-6.96958,4.93227,0.770059][0.345047,0.258826,-0.902193][0.971836,0.956898,0][-6.95962,4.96825,1.10861][0.491296,0.864477,-0.106344][0.971855,0.957569,0][-6.40755,4.47041,0.786663][0.269144,0.294559,-0.916949][0.969643,0.956931,0][-6.95962,4.96825,1.10861][0.164399,0.584275,0.79473][0.964928,0.950542,0][-6.506,4.29057,1.24032][0.407351,0.429325,0.806068][0.967175,0.949867,0][-6.36439,4.47448,1.0708][0.407351,0.429325,0.806068][0.967236,0.950435,0][-6.95962,4.96825,1.10861][0.164399,0.584275,0.79473][0.964928,0.950542,0][-7.11236,4.73891,1.30882][0.164399,0.584275,0.79473][0.964913,0.949867,0][-6.506,4.29057,1.24032][0.407351,0.429325,0.806068][0.967175,0.949867,0][-6.506,4.29057,1.24032][-0.177688,-0.379081,0.908143][0.96697,0.960227,0][-6.09747,3.56733,0.948618][-0.121183,-0.429404,0.894945][0.969458,0.959781,0][-5.89586,3.72939,1.05367][-0.121183,-0.429404,0.894945][0.969548,0.96029,0][-6.506,4.29057,1.24032][-0.177688,-0.379081,0.908143][0.96697,0.960227,0][-6.69077,4.10259,1.1257][-0.177688,-0.379081,0.908143][0.966974,0.959705,0][-6.09747,3.56733,0.948618][-0.121183,-0.429404,0.894945][0.969458,0.959781,0][-6.73392,4.09852,0.841562][-0.52866,-0.843791,0.092381][0.958656,0.96376,0][-6.17034,3.59151,0.680199][-0.647656,-0.754256,0.107886][0.956347,0.963686,0][-6.09747,3.56733,0.948618][-0.647656,-0.754256,0.107886][0.95634,0.963133,0][-6.69077,4.10259,1.1257][-0.52866,-0.843791,0.0923811][0.958779,0.963197,0][-6.73392,4.09852,0.841562][-0.52866,-0.843791,0.092381][0.958656,0.96376,0][-6.09747,3.56733,0.948618][-0.647656,-0.754256,0.107886][0.95634,0.963133,0][-6.59232,4.28243,0.672043][-0.522812,-0.328586,-0.786574][0.932121,0.948159,0][-6.04161,3.77775,0.516836][-0.522812,-0.328586,-0.786574][0.934495,0.948111,0][-6.17034,3.59151,0.680199][-0.647656,-0.754256,0.107886][0.934513,0.948664,0][-6.73392,4.09852,0.841562][-0.52866,-0.843791,0.092381][0.932102,0.948728,0][-6.59232,4.28243,0.672043][-0.522812,-0.328586,-0.786574][0.932121,0.948159,0][-6.17034,3.59151,0.680199][-0.647656,-0.754256,0.107886][0.934513,0.948664,0][-6.59232,4.28243,0.672043][0.269144,0.294559,-0.916949][0.94011,0.960063,0][-5.84001,3.93981,0.621893][0.131075,0.419296,-0.898338][0.94265,0.959799,0][-6.04161,3.77775,0.516836][0.131075,0.419296,-0.898338][0.942408,0.960288,0][-6.59232,4.28243,0.672043][0.269144,0.294559,-0.916949][0.94011,0.960063,0][-6.40755,4.47041,0.786663][0.269144,0.294559,-0.916949][0.940263,0.95955,0][-5.84001,3.93981,0.621893][0.131075,0.419296,-0.898338][0.94265,0.959799,0][-6.40755,4.47041,0.786663][0.269144,0.294559,-0.916949][0.969643,0.956931,0][-5.76713,3.91563,0.890312][0.660953,0.74193,-0.112608][0.967107,0.957137,0][-5.84001,3.93981,0.621893][0.131075,0.419296,-0.898338][0.967344,0.956605,0][-6.40755,4.47041,0.786663][0.269144,0.294559,-0.916949][0.969643,0.956931,0][-6.36439,4.47448,1.0708][0.63078,0.768574,-0.106816][0.969527,0.957494,0][-5.76713,3.91563,0.890312][0.660953,0.74193,-0.112608][0.967107,0.957137,0][-6.36439,4.47448,1.0708][0.534169,0.317888,0.783333][0.952121,0.946696,0][-5.89586,3.72939,1.05367][0.534169,0.317888,0.783333][0.954706,0.946117,0][-5.76713,3.91563,0.890312][0.534169,0.317888,0.783333][0.954728,0.94667,0][-6.36439,4.47448,1.0708][0.534169,0.317888,0.783333][0.952121,0.946696,0][-6.506,4.29057,1.24032][0.531037,0.31585,0.786281][0.952061,0.946128,0][-5.89586,3.72939,1.05367][0.534169,0.317888,0.783333][0.954706,0.946117,0][-6.09747,3.56733,0.948618][-0.121183,-0.429404,0.894945][0.969458,0.959781,0][-5.08245,2.35297,0.585269][-0.320996,-0.929628,0.18098][0.974364,0.95949,0][-4.75496,2.62142,0.756428][-0.119134,-0.42636,0.896674][0.974498,0.960325,0][-5.89586,3.72939,1.05367][-0.121183,-0.429404,0.894945][0.969548,0.96029,0][-6.09747,3.56733,0.948618][-0.121183,-0.429404,0.894945][0.969458,0.959781,0][-4.75496,2.62142,0.756428][-0.119134,-0.42636,0.896674][0.974498,0.960325,0][-6.17034,3.59151,0.680199][-0.647656,-0.754256,0.107886][0.956347,0.963686,0][-5.19733,2.43137,0.109422][-0.506917,-0.861772,-0.0196005][0.951757,0.964054,0][-5.08245,2.35297,0.585269][-0.506917,-0.861772,-0.0196005][0.951739,0.963073,0][-6.09747,3.56733,0.948618][-0.647656,-0.754256,0.107886][0.95634,0.963133,0][-6.17034,3.59151,0.680199][-0.647656,-0.754256,0.107886][0.956347,0.963686,0][-5.08245,2.35297,0.585269][-0.506917,-0.861772,-0.0196005][0.951739,0.963073,0][-6.17034,3.59151,0.680199][-0.647656,-0.754256,0.107886][0.934513,0.948664,0][-5.04044,2.65554,-0.0388379][-0.596254,-0.108753,-0.795396][0.939402,0.947971,0][-5.19733,2.43137,0.109422][-0.506917,-0.861772,-0.0196005][0.939448,0.948582,0][-6.17034,3.59151,0.680199][-0.647656,-0.754256,0.107886][0.934513,0.948664,0][-6.04161,3.77775,0.516836][-0.522812,-0.328586,-0.786574][0.934495,0.948111,0][-5.04044,2.65554,-0.0388379][-0.596254,-0.108753,-0.795396][0.939402,0.947971,0][-6.04161,3.77775,0.516836][0.131075,0.419296,-0.898338][0.942408,0.960288,0][-4.68594,2.9835,0.0564525][0.150432,0.335258,-0.930039][0.94729,0.960102,0][-5.04044,2.65554,-0.0388379][0.153999,0.833996,-0.529845][0.946941,0.961033,0][-6.04161,3.77775,0.516836][0.131075,0.419296,-0.898338][0.942408,0.960288,0][-5.84001,3.93981,0.621893][0.131075,0.419296,-0.898338][0.94265,0.959799,0][-4.68594,2.9835,0.0564525][0.150432,0.335258,-0.930039][0.94729,0.960102,0][-5.84001,3.93981,0.621893][0.131075,0.419296,-0.898338][0.967344,0.956605,0][-4.55671,2.93669,0.492019][0.433514,0.900132,-0.042756][0.962404,0.956347,0][-4.68594,2.9835,0.0564525][0.150432,0.335258,-0.930039][0.96283,0.955484,0][-5.84001,3.93981,0.621893][0.131075,0.419296,-0.898338][0.967344,0.956605,0][-5.76713,3.91563,0.890312][0.660953,0.74193,-0.112608][0.967107,0.957137,0][-4.55671,2.93669,0.492019][0.433514,0.900132,-0.042756][0.962404,0.956347,0][-5.76713,3.91563,0.890312][0.534169,0.317888,0.783333][0.954728,0.94667,0][-4.75496,2.62142,0.756428][0.524423,0.328894,0.785372][0.959735,0.945957,0][-4.55671,2.93669,0.492019][0.524423,0.328894,0.785372][0.95972,0.946862,0][-5.76713,3.91563,0.890312][0.534169,0.317888,0.783333][0.954728,0.94667,0][-5.89586,3.72939,1.05367][0.534169,0.317888,0.783333][0.954706,0.946117,0][-4.75496,2.62142,0.756428][0.524423,0.328894,0.785372][0.959735,0.945957,0][-4.27378,2.06831,0.557356][-0.320997,-0.929628,0.18098][0.976774,0.960219,0][-3.34392,1.38606,0.55696][-0.256308,-0.349855,0.901059][0.980324,0.960558,0][-3.0984,1.81057,0.791623][-0.256308,-0.349855,0.901059][0.979935,0.961498,0][-4.16583,2.3976,0.722873][-0.107486,-0.418144,0.901999][0.97629,0.960833,0][-4.27378,2.06831,0.557356][-0.320997,-0.929628,0.18098][0.976774,0.960219,0][-3.0984,1.81057,0.791623][-0.256308,-0.349855,0.901059][0.979935,0.961498,0][-4.25989,2.03184,0.175305][-0.597403,-0.797493,0.0843522][0.959648,0.939938,0][-3.39213,1.36494,0.0158647][-0.597403,-0.797493,0.0843522][0.956322,0.940254,0][-3.34392,1.38606,0.55696][-0.597403,-0.797493,0.0843522][0.956214,0.939182,0][-4.27378,2.06831,0.557356][-0.590637,-0.805037,0.0553494][0.959735,0.939181,0][-4.25989,2.03184,0.175305][-0.597403,-0.797493,0.0843522][0.959648,0.939938,0][-3.34392,1.38606,0.55696][-0.597403,-0.797493,0.0843522][0.956214,0.939182,0][-4.25989,2.03184,0.175305][0.323189,-0.639094,-0.697931][0.928747,0.954271,0][-3.17363,1.78669,-0.269781][-0.421653,-0.348513,-0.837106][0.93221,0.953384,0][-3.39213,1.36494,0.0158647][-0.421653,-0.348513,-0.837106][0.932174,0.954482,0][-4.25989,2.03184,0.175305][0.323189,-0.639094,-0.697931][0.928747,0.954271,0][-4.13805,2.32468,-0.0412287][0.319609,-0.645741,-0.693447][0.928707,0.953512,0][-3.17363,1.78669,-0.269781][-0.421653,-0.348513,-0.837106][0.93221,0.953384,0][-4.13805,2.32468,-0.0412287][0.293999,0.402012,-0.867151][0.949848,0.960584,0][-2.94928,2.19283,-0.0559046][0.038753,0.44876,-0.892812][0.953152,0.959492,0][-3.17363,1.78669,-0.269781][0.038753,0.44876,-0.892812][0.953274,0.960408,0][-4.13805,2.32468,-0.0412287][0.293999,0.402012,-0.867151][0.949848,0.960584,0][-4.0301,2.65398,0.124289][0.374496,0.315488,-0.871906][0.949557,0.959923,0][-2.94928,2.19283,-0.0559046][0.038753,0.44876,-0.892812][0.953152,0.959492,0][-4.0301,2.65398,0.124289][0.374496,0.315488,-0.871906][0.960547,0.955619,0][-2.90107,2.21395,0.485191][0.381586,0.921681,-0.0699723][0.956783,0.956334,0][-2.94928,2.19283,-0.0559046][0.038753,0.44876,-0.892812][0.956891,0.955262,0][-4.0301,2.65398,0.124289][0.374496,0.315488,-0.871906][0.960547,0.955619,0][-4.04399,2.69044,0.50634][0.433467,0.898448,-0.0699796][0.960634,0.956376,0][-2.90107,2.21395,0.485191][0.381586,0.921681,-0.0699723][0.956783,0.956334,0][-4.16583,2.3976,0.722873][0.243952,0.519334,0.819011][0.946618,0.945996,0][-3.0984,1.81057,0.791623][0.229963,0.514871,0.825848][0.950401,0.945785,0][-2.90107,2.21395,0.485191][0.229963,0.514871,0.825848][0.950428,0.946862,0][-4.04399,2.69044,0.50634][0.225221,0.516956,0.825853][0.946577,0.946756,0][-4.16583,2.3976,0.722873][0.243952,0.519334,0.819011][0.946618,0.945996,0][-2.90107,2.21395,0.485191][0.229963,0.514871,0.825848][0.950428,0.946862,0][-8.525,6.49425,1.37929][0.197215,0.504096,-0.840829][0.974762,0.941894,0][-8.75451,6.7192,1.38355][0.544429,0.703347,-0.457056][0.973799,0.942012,0][-8.79113,6.87044,1.57265][0.544429,0.703347,-0.457056][0.97328,0.941663,0][-8.48794,6.8167,1.58129][0.0113325,0.774345,-0.632663][0.942477,0.942501,0][-8.525,6.49425,1.37929][0.197215,0.504096,-0.840829][0.943333,0.942842,0][-8.79113,6.87044,1.57265][0.544429,0.703347,-0.457056][0.94192,0.942997,0][-3.15113,1.79643,0.254395][0.872883,-0.482439,-0.0729886][0.966625,0.940791,0][-2.90107,2.21395,0.485191][0.872883,-0.48244,-0.0729886][0.965848,0.941731,0][-3.0984,1.81057,0.791623][0.872883,-0.48244,-0.0729886][0.96495,0.940818,0][-3.15113,1.79643,0.254395][0.872883,-0.482439,-0.0729886][0.966625,0.940791,0][-2.94928,2.19283,-0.0559046][0.870347,-0.488958,-0.0584488][0.967536,0.941695,0][-2.90107,2.21395,0.485191][0.872883,-0.48244,-0.0729886][0.965848,0.941731,0][-3.15113,1.79643,0.254395][0.872883,-0.482439,-0.0729886][0.966625,0.940791,0][-3.17363,1.78669,-0.269781][0.881352,-0.471564,-0.0290701][0.968258,0.940795,0][-2.94928,2.19283,-0.0559046][0.870347,-0.488958,-0.0584488][0.967536,0.941695,0][-3.15113,1.79643,0.254395][0.872883,-0.482439,-0.0729886][0.966625,0.940791,0][-3.39213,1.36494,0.0158647][0.879411,-0.475185,-0.0289195][0.967427,0.939833,0][-3.17363,1.78669,-0.269781][0.881352,-0.471564,-0.0290701][0.968258,0.940795,0][-3.15113,1.79643,0.254395][0.872883,-0.482439,-0.0729886][0.966625,0.940791,0][-3.34392,1.38606,0.55696][0.885386,-0.460851,-0.0608855][0.96574,0.939869,0][-3.39213,1.36494,0.0158647][0.879411,-0.475185,-0.0289195][0.967427,0.939833,0][-3.15113,1.79643,0.254395][0.872883,-0.482439,-0.0729886][0.966625,0.940791,0][-3.0984,1.81057,0.791623][0.872883,-0.48244,-0.0729886][0.96495,0.940818,0][-3.34392,1.38606,0.55696][0.885386,-0.460851,-0.0608855][0.96574,0.939869,0][2.36307,-0.27867,3.71109][0.566532,0.0444978,0.822837][0.096807,0.169692,0][2.34713,-1.11962,3.66933][0.564685,-0.135171,0.814162][0.1225,0.16861,0][3.1158,-1.14718,3.23602][0.629015,-0.132955,0.76594][0.123886,0.192085,0][1.81284,2.31339,1.8815][-0.484135,-0.707505,-0.51483][0.558059,0.326089,0][2.3932,2.30069,1.07694][-0.630293,-0.722412,-0.284343][0.554954,0.296775,0][2.51862,1.75534,1.76555][-0.669778,-0.553362,-0.495165][0.576462,0.306332,0][-3.74745,-2.01463,-2.12711][-0.751678,-0.322602,-0.575246][0.387848,0.00782941,0][-3.4401,-2.80566,-1.94166][-0.681983,-0.497126,-0.536437][0.384345,0.02709,0][-3.76585,-2.80979,-1.25692][-0.845835,-0.502526,-0.178975][0.362526,0.0205554,0][4.36421,-0.457976,-0.706057][0.988715,0.0473355,-0.142133][0.142861,0.469179,0][4.24764,0.372745,-0.651957][0.962318,0.233715,-0.139001][0.16442,0.470028,0][4.45641,0.410144,0.172903][0.971123,0.23107,-0.0593928][0.169093,0.49509,0][3.25309,-1.04015,-1.97284][-0.854928,0.140059,0.49948][0.273764,0.54294,0][3.54228,-1.07285,-1.33626][-0.933124,0.143902,0.329501][0.291314,0.534064,0][3.57478,-0.353025,-1.33658][-0.94319,-0.0555365,0.327578][0.303017,0.550731,0][-0.0238169,-4.07755,1.07257][0.00507075,0.959264,-0.282465][0.699501,0.0993666,0][-0.893285,-4.07818,0.635141][0.215761,0.962682,-0.163371][0.723069,0.0851023,0][-0.664082,-3.81604,1.62037][0.167401,0.885306,-0.433832][0.721232,0.115314,0][-2.45578,1.72504,-3.09417][-0.187848,0.244696,-0.283773][0.495709,0.697243,0][-1.97638,2.79427,-2.48953][-0.536472,0.699311,-0.4724][0.480216,0.734461,0][-1.47372,2.7953,-2.82138][-0.213628,0.714272,-0.666467][0.462869,0.728281,0][3.8626,0.488954,-2.26531][0.796514,0.253054,-0.549116][0.26096,0.779766,0][3.61435,1.29954,-2.09627][0.747895,0.434417,-0.501932][0.254246,0.805328,0][3.94266,1.26217,-1.37508][0.890754,0.41756,-0.179447][0.230699,0.799513,0][-3.19047,-2.27154,0.778959][0.830099,0.494218,-0.258234][0.810169,0.0862464,0][-3.2614,-2.29097,-0.462691][0.851621,0.511393,0.114973][0.810464,0.0482473,0][-3.58194,-1.62773,0.174031][0.93901,0.339055,-0.0574658][0.82863,0.0670486,0][-1.27709,2.74582,-1.65994][0.341996,-0.828226,0.443938][0.167814,0.727134,0][-1.77617,2.75627,-1.06732][0.44504,-0.859261,0.252211][0.149449,0.732513,0][-1.98456,2.31814,-1.74684][0.516645,-0.717392,0.467362][0.157917,0.708432,0][-0.332234,-2.01374,-3.40838][0.341491,0.59755,3.27831][0.527023,0.540673,0][0.387983,-1.65318,-3.58184][-0.0581412,0.319484,0.945806][0.504755,0.530162,0][0.41228,-0.951961,-3.75434][-0.0510904,0.0923705,0.994413][0.503516,0.508746,0][0.751125,-0.620809,-4.3912][0.478128,0.000251505,-1.17083][0.296139,0.277209,0][1.29056,-1.20093,-4.17104][0.25541,-0.128559,-0.958247][0.280784,0.258479,0][0.489037,-1.16851,-4.49835][0.184041,-0.125211,-0.974911][0.30518,0.260996,0][-1.43465,-3.80468,1.01451][0.384749,0.875395,-0.292665][0.742024,0.0960005,0][-1.70655,-3.79939,0.41555][0.481217,0.87208,-0.0889189][0.748937,0.077417,0][-1.92107,-3.40551,1.35912][0.54751,0.760938,-0.348147][0.76104,0.105833,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-1.98969,-4.44366,-0.640122][-0.278599,-0.954793,0.103693][0.351787,0.0925702,0][-1.81264,-4.4518,-0.999823][-0.107191,-0.963158,-0.246652][0.363282,0.0962983,0][0.604201,-2.34692,3.21939][-0.195101,0.504719,-0.840949][0.557253,0.144465,0][-0.0173977,-2.36337,3.27022][0.0550604,0.496625,-0.866217][0.538254,0.143782,0][-0.01685,-1.71188,3.5652][0.00511024,0.323238,-0.946304][0.539512,0.123904,0][-2.99344,1.8195,0.751826][0.780963,-0.597984,-0.180314][0.0799764,0.730391,0][-2.51413,1.80215,1.79125][0.628183,-0.614963,-0.476662][0.0572615,0.753338,0][-3.13716,1.20947,1.46609][0.814075,-0.442387,-0.376266][0.0513225,0.727599,0][-0.831739,-2.09045,4.26973][-0.0811125,-0.322498,0.943088][0.149924,0.0707598,0][-0.86581,-1.2408,4.47191][-0.0900975,-0.14335,0.985562][0.12393,0.0703194,0][-1.69854,-1.22609,4.23484][-0.445865,-0.144927,0.88329][0.122892,0.0448772,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-1.47642,-4.45568,1.5808][-0.0340186,-0.961283,0.273456][0.28596,0.114575,0][-1.74104,-4.44823,1.27342][-0.28888,-0.95701,-0.026068][0.294452,0.106126,0][0.180805,2.77388,-2.08558][-0.0687725,-0.841218,0.536304][0.670654,0.408271,0][-0.590996,2.75599,-2.01931][0.162007,-0.841176,0.515923][0.673407,0.4318,0][-0.746019,2.32188,-2.55743][0.226091,-0.725995,0.649473][0.652613,0.437877,0][1.42841,2.77085,-2.78764][0.227064,0.704316,-0.672593][0.26901,0.379412,0][1.7085,2.07783,-3.29903][0.299795,0.556717,-0.774719][0.261784,0.357731,0][1.0125,2.01266,-3.43828][0.270064,0.550162,-0.790182][0.283146,0.357069,0][2.13896,-1.26169,-4.0332][0.333904,-0.154059,-0.929932][0.255011,0.255009,0][2.15493,-0.390136,-4.06377][0.338448,0.0747117,-0.938015][0.252864,0.281573,0][2.87989,-0.367719,-3.62777][0.685243,0.0851222,-0.723323][0.230699,0.280876,0][2.37347,0.203974,-2.89781][-0.440779,-0.0151489,0.619773][0.442754,0.474802,0][1.74968,0.00648673,-3.34627][-1.05221,-0.0361627,1.4795][0.46196,0.480397,0][1.76695,-1.0146,-3.35894][-0.44962,0.121652,0.884897][0.462154,0.511619,0][-3.06049,2.83202,0.777071][-0.612996,0.738926,0.279686][0.060501,0.336033,0][-3.6213,2.18074,0.957053][-0.753699,0.590344,0.288847][0.086382,0.335631,0][-3.26615,2.09777,1.56281][-0.728013,0.597079,0.336889][0.0883697,0.354186,0][-3.75332,-0.248909,2.71213][-0.872093,0.0389062,0.487791][0.165817,0.372161,0][-3.65341,0.614906,2.65877][-0.847633,0.230624,0.47784][0.140882,0.376317,0][-3.91024,0.591408,1.85184][-0.892227,0.226861,0.390467][0.139129,0.351391,0][-1.18341,2.74486,2.93012][-0.368292,0.72521,0.581749][0.0530634,0.976224,0][-0.912469,3.29429,2.28825][-0.329408,0.859445,0.390954][0.0799939,0.979461,0][-1.28031,3.16673,1.99903][-0.245791,0.859383,0.448383][0.0792213,0.991555,0][-0.264513,3.32988,-2.48597][-0.217187,0.864554,-0.453184][0.494165,0.670393,0][-0.175633,3.60739,-1.71581][-0.237528,0.965884,-0.103197][0.472225,0.661771,0][0.148605,3.6145,-1.71223][0.22018,0.967629,-0.123346][0.475768,0.653614,0][2.99224,0.438535,2.08489][-0.79561,-0.234967,-0.558386][0.396883,0.502367,0][3.3503,0.421374,1.4657][-0.890278,-0.219395,-0.399087][0.383782,0.516648,0][3.44353,-0.293369,1.48137][-0.909944,-0.0385811,-0.412932][0.373479,0.501155,0][-0.0177661,-2.94443,2.85742][-0.0294074,0.659388,-0.751227][0.937918,0.354024,0][1.04872,-2.92088,2.65506][-0.295844,0.650883,-0.699162][0.906314,0.343866,0][0.85551,-3.42072,2.16291][-0.255377,0.790547,-0.556613][0.916214,0.323945,0][4.09096,-2.14023,-1.46844][0.917923,-0.333481,-0.214962][0.0918809,0.44776,0][3.7456,-2.94136,-1.31727][0.845635,-0.500843,-0.184549][0.0654114,0.453374,0][3.44364,-2.90631,-2.00889][0.676482,-0.505883,-0.535215][0.061693,0.432353,0][2.3811,-2.88794,-3.18894][-1.28826,0.54193,-0.0239803][0.589511,0.785309,0][2.10853,-3.50997,-2.82851][-1.92147,2.87475,-0.0403026][0.578491,0.806066,0][2.113,-3.43597,-1.02756][-3.28522,1.33183,-0.0583912][0.52343,0.803958,0][4.1237,-2.11343,-0.6465][0.933301,-0.331651,-0.137686][0.0939845,0.472828,0][4.32293,-1.29723,-0.703447][0.978944,-0.146001,-0.142658][0.119092,0.470147,0][4.53668,-1.32476,0.137117][0.987783,-0.145985,-0.0545306][0.12205,0.495754,0][1.67798,-1.17341,4.23475][0.480271,-0.137546,0.866268][0.12367,0.148119,0][1.59847,-2.02452,4.04953][0.472744,-0.317372,0.822063][0.149629,0.145086,0][2.24047,-1.94533,3.50906][0.538705,-0.307515,0.784367][0.147662,0.164765,0][0.778623,3.08934,1.1521][-0.174533,-0.927163,-0.331521][0.514024,0.333479,0][1.38805,3.09386,0.318708][-0.367293,-0.923281,-0.11246][0.510808,0.303113,0][1.68548,2.76396,1.18161][-0.449569,-0.841283,-0.300217][0.537235,0.315522,0][-1.7991,2.31224,1.85789][0.450556,-0.733493,-0.508907][0.0690346,0.773631,0][-2.36789,2.34159,1.06737][0.605637,-0.740255,-0.291935][0.0850499,0.754386,0][-1.6548,2.76093,1.14584][0.417673,-0.855521,-0.305995][0.0950667,0.772811,0][-3.27809,-3.51593,-1.08906][-0.745948,-0.654232,-0.124667][0.360001,0.0436315,0][-3.76585,-2.80979,-1.25692][-0.845835,-0.502526,-0.178975][0.362526,0.0205554,0][-3.4401,-2.80566,-1.94166][-0.681983,-0.497126,-0.536437][0.384345,0.02709,0][-3.10276,-1.64028,-1.7872][0.814745,0.318079,0.484785][0.81296,0.00763081,0][-3.39382,-1.64022,-1.16741][0.888413,0.337191,0.311486][0.821728,0.0262653,0][-2.84984,-2.299,-1.63965][0.751173,0.51215,0.416463][0.79762,0.0127185,0][-3.53403,2.14932,-1.14947][-0.807244,0.570668,-0.150646][0.0714659,0.272978,0][-2.99257,2.80949,-1.00784][-0.686669,0.720547,-0.0964195][0.0478275,0.282953,0][-2.75133,2.80493,-1.56328][-0.52662,0.713136,-0.462718][0.0410481,0.267099,0][-4.29639,-1.17906,-1.45528][-0.960195,-0.141902,-0.240603][0.168731,0.240629,0][-4.33614,-0.308531,-1.46323][-0.969037,0.0489352,-0.242018][0.145688,0.245769,0][-3.96235,-0.298052,-2.24403][-0.802406,0.0487192,-0.594787][0.135267,0.22369,0][0.61893,3.56164,0.624071][-0.220012,0.972248,0.0795534][0.0300846,0.922594,0][1.19208,3.60849,1.25048][-0.077448,0.956712,0.280543][0.0188724,0.900813,0][1.40664,3.62235,1.01421][0.231097,0.969121,-0.0860089][0.0278243,0.898512,0][2.78743,2.63497,1.31347][0.663937,0.696139,0.273091][0.0403795,0.848224,0][3.28084,1.98719,1.51267][0.765817,0.552743,0.328633][0.0438539,0.825621,0][3.64427,2.0422,0.906248][0.778631,0.557458,0.288052][0.0646015,0.824679,0][-0.579934,-3.54194,-3.21556][0.21759,1.13756,0.0340557][0.765742,0.413187,0][-0.896673,-3.48567,-3.07158][0.317407,1.6594,0.0496784][0.775806,0.416087,0][-0.576029,-3.57898,-2.0033][0.0846325,2.65283,0.900071][0.770817,0.449906,0][0.812714,-3.53391,-3.13641][-0.00599194,0.481671,-0.00833057][0.328002,0.837147,0][0.81337,-3.51427,-2.00095][-0.0262315,2.10866,-0.0364695][0.362718,0.836912,0][1.67699,-3.49462,-1.48612][-0.34569,5.17696,0.6244][0.378458,0.860588,0][1.45517,1.63239,-2.83207][-0.252313,-2.71606,1.25731][0.6859,0.511732,0][0.666175,1.40057,-3.25159][0.191994,-1.67898,1.16755][0.708617,0.509632,0][1.09837,1.50568,-3.68319][0.751315,-3.40226,0.0410112][0.708815,0.526568,0][-0.288091,1.79603,-3.11328][0.0379791,-0.577907,0.815219][0.522979,0.424257,0][0.875266,1.77281,-2.9908][-0.247661,-0.571548,0.782302][0.487437,0.42579,0][0.239846,2.33153,-2.64441][-0.097823,-0.723807,0.683034][0.506463,0.408263,0][-3.98085,-1.07863,1.85524][-0.905635,-0.141693,0.399685][0.1851,0.340746,0][-4.01955,-0.239687,1.88004][-0.915197,0.0405996,0.400958][0.163124,0.346664,0][-4.45413,-0.283026,1.11188][-0.946835,0.0397166,0.319258][0.164413,0.322244,0][-2.41114,-3.53676,2.55464][-0.446887,-0.646054,0.618794][0.647867,0.988803,0][-1.9765,-4.14997,2.10122][-0.286329,-0.822926,0.490723][0.627469,0.999387,0][-1.49394,-4.02495,2.34855][-0.33752,-0.821541,0.459511][0.616103,0.989235,0][0.489028,-0.641741,-4.49622][-0.10315,0.704063,-0.00952558][0.549918,0.904465,0][-0.368758,-0.767796,-4.52456][-0.234973,1.60383,-0.021699][0.527779,0.905332,0][-0.434485,-0.766868,-3.74429][-0.11724,0.800236,-0.0108267][0.525945,0.881476,0][-0.556994,-0.252344,-4.44756][1.98679,-0.434652,0.0564344][0.723022,0.744787,0][-0.370038,0.604854,-4.42733][1.75497,-0.430725,-0.0305402][0.749195,0.744428,0][-0.660672,-0.630292,-3.70846][1.12327,-0.267376,-0.0052713][0.712062,0.76781,0][-2.2941,0.265848,-3.75444][0.981955,1.74344,-0.00549453][0.269646,0.996083,0][-2.7169,0.639916,-3.43025][0.817295,0.930943,-0.00828306][0.250407,0.997489,0][-2.27894,0.259927,-2.92426][0.55078,0.627368,-0.005582][0.255457,0.975032,0][-2.75668,-1.17157,-3.52664][-0.686049,-0.136793,-0.71458][0.404226,0.267086,0][-2.78742,-0.301335,-3.55216][-0.686569,0.0528615,-0.725141][0.403506,0.293699,0][-2.04624,-0.29486,-4.04255][-0.372931,0.0623176,-0.925764][0.380877,0.292484,0][-0.537014,0.681982,-4.33827][-1.01668,0.92527,-0.0400112][0.37017,0.947756,0][-1.2097,-0.0620055,-4.18426][-1.2826,1.14497,-0.0710671][0.342304,0.937531,0][-1.22813,-0.0434165,-3.55212][-1.13479,1.02581,-0.0510726][0.346271,0.918613,0][0.41228,-0.951961,-3.75434][-0.0510904,0.0923705,0.994413][0.503516,0.508746,0][-0.434485,-0.766868,-3.74429][-0.11724,0.800236,-0.0108267][0.529267,0.50249,0][-0.332234,-2.01374,-3.40838][0.341491,0.59755,3.27831][0.527023,0.540673,0][3.57478,-0.353025,-1.33658][-0.94319,-0.0555365,0.327578][0.303017,0.550731,0][3.74595,-0.374934,-0.642639][-0.988074,-0.0479522,0.146326][0.321298,0.539844,0][3.64593,0.34233,-0.598287][-0.952072,-0.280608,0.121727][0.333092,0.554268,0][1.54374,2.76394,-1.35302][-0.446736,-0.835755,0.319282][0.484924,0.258215,0][1.94289,2.74599,-0.673691][-0.536046,-0.823454,0.185952][0.506847,0.267063,0][1.4091,3.0928,-0.213347][-0.377019,-0.92272,0.0802779][0.500924,0.29018,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.313527,0.669884,0][1.68422,-4.44603,1.1946][0.272319,-0.961737,-0.0300762][0.340996,0.61833,0][1.42527,-4.44711,1.50556][0.0264614,-0.964925,0.261188][0.351485,0.623957,0][2.72487,-2.82227,2.86213][0.520666,-0.48129,0.705171][0.0603026,0.581433,0][2.37545,-3.54901,2.49472][0.422184,-0.650342,0.631519][0.0352482,0.571129,0][2.80887,-3.56994,1.99724][0.671606,-0.65917,0.338291][0.0396968,0.555743,0][1.96785,-2.91773,2.04605][-0.536795,0.652194,-0.535252][0.334824,0.416135,0][2.78065,-2.9578,0.621209][-0.735732,0.637422,-0.228893][0.304585,0.448868,0][2.12073,-3.4167,0.926727][-0.559097,0.779625,-0.282127][0.300012,0.426118,0][2.08435,-3.49913,-0.846122][-0.927368,1.23866,0.408661][0.254084,0.455032,0][2.82525,-2.98629,-0.463422][-0.718231,0.68185,0.138651][0.277332,0.467762,0][2.32253,-2.94592,-1.69329][-2.86467,1.5081,0.177633][0.243477,0.484984,0][1.24708,1.1464,3.1838][-0.323074,-0.418218,-0.84895][0.583525,0.0390941,0][0.614586,1.12435,3.36305][-0.107939,-0.431471,-0.895646][0.564183,0.0385621,0][1.12443,1.76503,2.84442][-0.256656,-0.585099,-0.769277][0.580961,0.0199837,0][-2.02179,0.441334,3.08953][0.484394,-0.283911,-0.8275][0.482435,0.0543808,0][-2.56455,0.479388,2.67539][0.653624,-0.239394,-0.71796][0.465946,0.0521855,0][-2.39737,1.15607,2.49692][0.576985,-0.439786,-0.688242][0.472337,0.0318556,0][-2.82825,1.35521,-2.82579][1.76824,0.139234,-0.155654][0.353224,0.999411,0][-2.86162,1.17381,-1.88381][1.50608,-0.047157,0.309556][0.345344,0.971178,0][-2.73375,0.680725,-2.3555][2.76184,0.064189,0.664701][0.362504,0.978777,0][-2.67754,1.68053,-1.64761][0.0258397,-0.726455,-0.00394815][0.719264,0.602351,0][-2.77246,1.68212,-2.55968][0.0202695,-0.569857,-0.00309707][0.734073,0.578575,0][-2.37767,1.69347,-2.06505][0.113063,-2.89537,-0.0458976][0.733479,0.597145,0][-2.35456,0.48271,3.6514][-0.498006,0.229999,0.836116][0.0701976,0.0260346,0][-2.4085,-0.349162,3.75264][-0.52166,0.038094,0.852303][0.0955858,0.0237974,0][-1.71785,-0.35397,4.27775][-0.444701,0.0420573,0.894691][0.0962214,0.0449041,0][1.62853,0.56024,4.16427][0.447484,0.242156,0.860883][0.0706457,0.147834,0][1.50741,1.37974,3.89534][0.415912,0.419118,0.807067][0.0455116,0.144712,0][0.747034,1.34007,4.11355][0.0414342,0.416417,0.908229][0.0461863,0.121442,0][-0.747991,-3.99837,-2.56718][-0.148859,-0.816944,-0.557175][0.413579,0.114338,0][-0.896673,-3.48567,-3.07158][0.317407,1.6594,0.0496784][0.427679,0.10191,0][-0.579934,-3.54194,-3.21556][0.21759,1.13756,0.0340557][0.433133,0.110852,0][1.54494,-4.30684,-1.34265][0.165374,-0.971922,-0.167388][0.265195,0.635756,0][2.08429,-4.02225,-1.81142][0.408612,-0.831649,-0.376026][0.249312,0.626807,0][2.47175,-4.1937,-1.44209][0.353312,-0.834963,-0.421908][0.258495,0.612284,0][2.8593,-1.24057,-3.60516][0.67629,-0.142624,-0.722696][0.54802,0.572241,0][2.87989,-0.367719,-3.62777][0.685243,0.0851222,-0.723323][0.571776,0.578072,0][3.36116,-0.358737,-2.9395][0.745345,0.0837381,-0.661399][0.57242,0.600077,0][3.76418,-2.10069,-2.22069][0.755481,-0.342252,-0.55867][0.298437,0.889049,0][3.44364,-2.90631,-2.00889][0.676482,-0.505883,-0.535215][0.27378,0.877359,0][2.90513,-2.79209,-2.52414][0.631011,-0.509404,-0.585092][0.284529,0.856966,0][-1.80953,1.74186,-3.49123][-0.421623,-2.5359,-0.0697338][0.771949,0.571653,0][-2.37767,1.69347,-2.06505][0.113063,-2.89537,-0.0458976][0.733479,0.597145,0][-2.45578,1.72504,-3.09417][-0.187848,0.244696,-0.283773][0.750522,0.570572,0][-0.370038,0.604854,-4.42733][1.75497,-0.430725,-0.0305402][0.749195,0.744428,0][-0.296875,0.771221,-3.60508][1.24367,-0.319431,-0.046031][0.755685,0.769342,0][-0.660672,-0.630292,-3.70846][1.12327,-0.267376,-0.0052713][0.712062,0.76781,0][0.219797,0.624287,-3.64653][-0.420602,-1.59046,-0.0709132][0.632355,0.817198,0][-0.296875,0.771221,-3.60508][1.24367,-0.319431,-0.046031][0.616103,0.817829,0][-0.293295,0.790573,-4.33279][-0.412201,-1.62635,-0.0858895][0.616824,0.795592,0][-1.22813,-0.0434165,-3.55212][-1.13479,1.02581,-0.0510726][0.346271,0.918613,0][-0.570918,0.669167,-3.59299][-1.21832,1.12158,-0.0361384][0.373748,0.925239,0][-0.537014,0.681982,-4.33827][-1.01668,0.92527,-0.0400112][0.37017,0.947756,0][-1.97687,-3.27849,-2.9864][1.68487,3.12243,-0.0250925][0.80843,0.413686,0][-2.43456,-2.80479,-3.08427][1.04307,0.990601,-0.0833671][0.826556,0.407861,0][-2.3952,-2.73467,-1.75859][0.353761,0.335966,-0.0282743][0.832557,0.447945,0][-1.13804,-3.43783,-3.12493][0.0688564,0.348973,0.0120743][0.782778,0.413361,0][-1.43899,-3.42263,-1.84799][0.539165,2.02488,0.565707][0.79717,0.450642,0][-1.00145,-3.5047,-1.97125][0.71134,2.79572,0.663654][0.783565,0.448929,0][-2.75133,2.80493,-1.56328][-0.52662,0.713136,-0.462718][0.446698,0.808195,0][-2.15174,3.32824,-1.24194][-0.315807,0.862914,-0.39452][0.427739,0.790917,0][-1.81528,3.17752,-1.56831][-0.386189,0.864228,-0.322442][0.437468,0.779442,0][-2.18002,2.78339,2.29606][-0.333576,0.731702,0.594424][0.0613112,0.383537,0][-1.69993,3.31497,1.79036][-0.193078,0.862307,0.468132][0.0374074,0.373249,0][-2.00632,3.3273,1.4364][-0.468559,0.871995,0.141692][0.0384654,0.361888,0][-0.368758,-0.767796,-4.52456][-0.234973,1.60383,-0.021699][0.330591,0.274857,0][0.489028,-0.641741,-4.49622][-0.10315,0.704063,-0.00952558][0.304176,0.277069,0][0.489037,-1.16851,-4.49835][0.184041,-0.125211,-0.974911][0.30518,0.260996,0][-0.368758,-0.767796,-4.52456][-0.234973,1.60383,-0.021699][0.330591,0.274857,0][-0.334319,-1.98905,-4.29655][-0.539444,-0.40246,-2.07419][0.331867,0.237526,0][-1.13901,-1.81251,-4.02251][-0.37949,-0.19526,-0.988543][0.356085,0.244446,0][-1.92107,-3.40551,1.35912][0.54751,0.760938,-0.348147][0.76104,0.105833,0][-2.35397,-3.38845,0.1155][0.625832,0.778878,-0.0410317][0.771827,0.0673813,0][-2.78995,-2.87106,0.680683][0.742552,0.633671,-0.216973][0.791225,0.0839478,0][-1.95449,-1.69291,2.99777][0.468293,0.353368,-0.809835][0.480423,0.119634,0][-0.695368,-1.71632,3.49157][0.233049,0.399734,-0.88651][0.518799,0.122747,0][-0.0173977,-2.36337,3.27022][0.0550604,0.496625,-0.866217][0.538254,0.143782,0][0.589683,2.75874,3.11321][-0.0398004,0.717402,0.695522][0.00271304,0.117637,0][0.670554,2.09797,3.67997][0.00411691,0.57663,0.816995][0.0229668,0.119641,0][1.35558,2.1269,3.49075][0.383563,0.576161,0.721746][0.0225671,0.1406,0][2.59011,2.76265,1.88534][0.64539,0.704082,0.296211][0.021514,0.847553,0][2.03522,3.3184,1.4865][0.494949,0.853927,0.160726][0.0233968,0.873125,0][1.72388,3.31873,1.83347][0.196239,0.85613,0.478049][0.0101836,0.876653,0][1.504,-3.79967,-0.911301][-0.373797,0.895959,0.239863][0.658519,0.0402022,0][0.504508,-3.78664,-1.67748][-0.141802,0.88385,0.44576][0.685487,0.0157528,0][0.493368,-4.06243,-0.960538][-0.138622,0.957354,0.253491][0.683054,0.0377786,0][-1.06512,-3.81582,-1.35857][0.265319,0.893741,0.361707][0.728938,0.0238856,0][-1.00145,-3.5047,-1.97125][0.71134,2.79572,0.663654][0.730492,0.00508265,0][-1.43899,-3.42263,-1.84799][0.539165,2.02488,0.565707][0.743808,0.00835609,0][-1.40322,-1.78073,-3.22419][0.405469,0.347367,1.13554][0.559594,0.532793,0][-0.937719,-1.87695,-3.36098][0.450585,0.386018,1.26189][0.545434,0.536064,0][-1.00455,-0.921648,-3.62934][0.260708,0.148547,0.953921][0.5468,0.506817,0][-3.39382,-1.64022,-1.16741][0.888413,0.337191,0.311486][0.871976,0.488864,0][-3.10276,-1.64028,-1.7872][0.814745,0.318079,0.484785][0.885405,0.504924,0][-3.24865,-0.939,-1.86777][0.851145,0.138341,0.506373][0.868714,0.519313,0][2.7649,0.56666,-3.4858][-1.9698,1.80624,-0.141748][0.633891,0.768852,0][2.41282,0.163222,-3.79828][-0.755271,0.709562,-0.0651228][0.616103,0.764136,0][2.37347,0.203974,-2.89781][-0.440779,-0.0151489,0.619773][0.636378,0.745502,0][1.09837,1.50568,-3.68319][0.751315,-3.40226,0.0410112][0.708815,0.526568,0][1.82627,1.65282,-3.48731][0.282275,-2.59671,0.106814][0.690908,0.533563,0][1.45517,1.63239,-2.83207][-0.252313,-2.71606,1.25731][0.6859,0.511732,0][2.9925,2.69555,-0.979218][0.710092,0.698554,-0.0882762][0.10633,0.872471,0][3.53108,2.01591,-1.19852][0.807857,0.572577,-0.139723][0.122158,0.853594,0][3.23215,2.04822,-1.84649][0.651161,0.596628,-0.469067][0.136665,0.869647,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.0415957,0.944767,0][1.62428,3.60392,-0.523175][0.233714,0.960742,0.149509][0.0732701,0.91205,0][1.48377,3.60778,-0.823658][0.048995,0.969461,-0.240302][0.0800351,0.919411,0][0.100247,-3.48992,-3.43834][-0.761105,-0.0492717,0.00483812][0.654721,0.863053,0][0.109114,-3.50286,-2.17521][-0.712714,-0.046139,0.00453052][0.616103,0.863297,0][0.0674111,-2.9231,-2.8314][-2.42751,-0.154908,0.0133374][0.636165,0.847772,0][0.812714,-3.53391,-3.13641][-0.00599194,0.481671,-0.00833057][0.558619,0.728743,0][0.287127,-4.13163,-2.78703][0.186512,-0.819565,-0.54178][0.537265,0.715894,0][0.100247,-3.48992,-3.43834][-0.761105,-0.0492717,0.00483812][0.56417,0.706722,0][2.09672,0.0891406,-3.96971][-0.607071,1.99774,-0.0730785][0.385714,0.791335,0][1.74968,0.00648673,-3.34627][-1.05221,-0.0361627,1.4795][0.384127,0.770505,0][2.37347,0.203974,-2.89781][-0.440779,-0.0151489,0.619773][0.402632,0.762595,0][0.59885,0.623478,-4.3361][1.15964,-0.0646017,-0.0324171][0.616103,0.886323,0][0.653474,1.43195,-3.99324][1.92671,-0.102693,-0.0446862][0.641463,0.885471,0][0.620083,0.628647,-3.58686][1.10892,-0.0617761,-0.0309992][0.626636,0.906669,0][-0.434485,-0.766868,-3.74429][-0.11724,0.800236,-0.0108267][0.525945,0.881476,0][0.74401,-0.627141,-3.70534][-0.182819,1.5385,0.0123073][0.556795,0.880285,0][0.751125,-0.620809,-4.3912][0.478128,0.000251505,-1.17083][0.55691,0.901255,0][-0.293295,0.790573,-4.33279][-0.412201,-1.62635,-0.0858895][0.616824,0.795592,0][0.232594,0.672618,-4.39229][-0.328992,-1.41758,-0.0975165][0.632979,0.794405,0][0.219797,0.624287,-3.64653][-0.420602,-1.59046,-0.0709132][0.632355,0.817198,0][2.113,-3.43597,-1.02756][-3.28522,1.33183,-0.0583912][0.52343,0.803958,0][2.32253,-2.94592,-1.69329][-2.86467,1.5081,0.177633][0.543783,0.787672,0][2.3811,-2.88794,-3.18894][-1.28826,0.54193,-0.0239803][0.589511,0.785309,0][0.455344,-1.85572,-4.329][0.443414,-2.71821,-0.0160608][0.948709,0.116884,0][1.22236,-1.7471,-4.04924][0.0594715,-2.74806,0.0522794][0.927125,0.118021,0][1.21741,-1.73466,-3.36342][0.22149,-1.42568,0.00393588][0.918093,0.0990955,0][-3.68017,-0.190269,0.908628][0.971644,-0.0431785,-0.232474][0.0389295,0.680327,0][-3.78403,-0.210659,0.194125][0.997662,-0.0469705,-0.0496419][0.0557051,0.666205,0][-3.68018,0.505142,0.20561][0.957683,-0.286723,-0.0251742][0.0675945,0.683732,0][-3.48773,0.493572,-1.17496][0.915149,-0.24502,0.320105][0.103373,0.661233,0][-3.19562,0.494633,-1.81563][0.836601,-0.24421,0.490367][0.121585,0.653082,0][-2.86162,1.17381,-1.88381][1.50608,-0.047157,0.309556][0.136594,0.670811,0][1.56183,-3.79782,0.677034][-0.395549,0.893021,-0.214606][0.283541,0.415959,0][1.72049,-3.80379,0.0330609][-0.450609,0.892696,-0.00679869][0.268517,0.428823,0][1.05001,-4.06483,0.0173279][-0.268365,0.963004,-0.0245837][0.258983,0.416094,0][2.32932,-3.44016,0.0601929][-0.588497,0.807948,-0.0298623][0.279513,0.443025,0][2.12073,-3.4167,0.926727][-0.559097,0.779625,-0.282127][0.300012,0.426118,0][2.78065,-2.9578,0.621209][-0.735732,0.637422,-0.228893][0.304585,0.448868,0][3.90049,0.463864,1.74603][0.889166,0.216173,0.403302][0.165199,0.543365,0][4.00864,-0.366262,1.76008][0.906042,0.0384041,0.421441][0.143626,0.544601,0][4.45561,-0.402134,1.00219][0.944528,0.0417294,0.32577][0.147538,0.521268,0][3.96248,-2.95871,0.177424][0.856744,-0.511958,-0.062363][0.0694383,0.498954,0][4.3293,-2.17194,0.161126][0.941031,-0.333696,-0.0557431][0.0959416,0.497464,0][4.21803,-2.12499,0.974498][0.887388,-0.314394,0.337194][0.0967336,0.52232,0][-4.21114,-1.9923,1.05688][-0.884948,-0.323266,0.335211][0.453715,0.88151,0][-3.86419,-2.77717,0.978718][-0.806883,-0.488957,0.331454][0.427739,0.87712,0][-3.48183,-2.6667,1.6344][-0.802019,-0.480013,0.355463][0.431831,0.85403,0][-2.71304,-3.97761,-0.347131][-0.57246,-0.814139,-0.0973021][0.339923,0.0676927,0][-3.31464,-3.39263,-0.429034][-0.754633,-0.645243,-0.119124][0.339656,0.0433367,0][-3.27809,-3.51593,-1.08906][-0.745948,-0.654232,-0.124667][0.360001,0.0436315,0][-1.97583,2.77103,0.444219][0.474429,-0.870274,-0.132439][0.110392,0.757311,0][-2.01868,2.76958,-0.330273][0.511786,-0.854896,0.0850214][0.129423,0.743209,0][-1.38119,3.08295,-0.249176][0.361158,-0.930428,0.0621957][0.137124,0.758478,0][-0.590996,2.75599,-2.01931][0.162007,-0.841176,0.515923][0.426399,0.280044,0][0.180805,2.77388,-2.08558][-0.0687725,-0.841218,0.536304][0.441437,0.265028,0][0.390317,3.09966,-1.39609][-0.0969188,-0.923797,0.370414][0.456074,0.280281,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.427739,0.634012,0][0.148605,3.6145,-1.71223][0.22018,0.967629,-0.123346][0.475768,0.653614,0][-0.175633,3.60739,-1.71581][-0.237528,0.965884,-0.103197][0.472225,0.661771,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.675251,0.21594,0][-1.46955,3.59568,-0.858899][-0.0135615,0.963574,-0.267097][0.710076,0.25175,0][-1.59843,3.60042,-0.562185][-0.183412,0.972679,0.142319][0.70207,0.257353,0][3.41442,-1.0132,1.4561][-0.899516,0.138752,-0.41427][0.361161,0.484973,0][3.04856,-0.995147,2.09116][-0.808655,0.140107,-0.571355][0.374615,0.470351,0][3.07469,-0.274797,2.12182][-0.818074,-0.0352837,-0.574029][0.387054,0.486418,0][0.692021,-0.991583,3.67081][-0.189892,0.137164,-0.972176][0.562515,0.103275,0][1.37549,-0.96296,3.46794][-0.38121,0.136249,-0.914393][0.583425,0.103704,0][1.31441,-1.6669,3.31339][-0.367141,0.331537,-0.869074][0.58022,0.125068,0][-1.47372,2.7953,-2.82138][-0.213628,0.714272,-0.666467][0.462869,0.728281,0][-1.71738,2.15367,-3.31737][-0.317153,0.5652,-0.761553][0.469517,0.703352,0][-2.45578,1.72504,-3.09417][-0.187848,0.244696,-0.283773][0.495709,0.697243,0][0.411348,1.38515,-4.14487][0.226671,0.397234,-0.889284][0.302685,0.339066,0][0.232594,0.672618,-4.39229][-0.328992,-1.41758,-0.0975165][0.309497,0.317665,0][-0.293295,0.790573,-4.33279][-0.412201,-1.62635,-0.0858895][0.325319,0.322266,0][-0.86581,-1.2408,4.47191][-0.0900975,-0.14335,0.985562][0.12393,0.0703194,0][-0.831739,-2.09045,4.26973][-0.0811125,-0.322498,0.943088][0.149924,0.0707598,0][-0.0115876,-2.03007,4.1978][-0.0101687,-0.319014,0.947695][0.148659,0.0958706,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.69709,0.571994,0][0.761612,-4.45862,1.96745][0.26785,-0.956106,0.11882][0.641257,0.599881,0][0.379683,-4.4649,2.09844][-0.111996,-0.967117,0.228344][0.636084,0.589903,0][0.596589,-4.29179,-1.91674][0.0705208,-0.968754,-0.237785][0.251887,0.664596,0][0.790807,-3.99323,-2.60143][0.137193,-0.829905,-0.540773][0.230966,0.666284,0][1.32278,-4.14068,-2.52622][0.0775339,-0.831089,-0.550708][0.230699,0.649482,0][2.08435,-3.49913,-0.846122][-0.927368,1.23866,0.408661][0.398025,0.871934,0][2.10853,-3.50997,-2.82851][-1.92147,2.87475,-0.0403026][0.337416,0.872744,0][1.62016,-3.527,-3.10835][-0.0192065,1.01495,-0.00856415][0.328861,0.859432,0][2.81651,1.74038,1.25318][-0.770083,-0.558477,-0.308343][0.57302,0.28887,0][2.51862,1.75534,1.76555][-0.669778,-0.553362,-0.495165][0.576462,0.306332,0][2.3932,2.30069,1.07694][-0.630293,-0.722412,-0.284343][0.554954,0.296775,0][2.67287,1.71365,-1.57303][-0.731269,-0.531723,0.427219][0.515266,0.224497,0][3.09358,1.68999,0.113966][-0.844063,-0.536095,0.0126173][0.557298,0.256694,0][2.47498,2.2657,-0.865875][-0.703195,-0.680491,0.206031][0.519278,0.249206,0][-3.78403,-0.210659,0.194125][0.997662,-0.0469705,-0.0496419][0.0557051,0.666205,0][-3.68017,-0.190269,0.908628][0.971644,-0.0431785,-0.232474][0.0389295,0.680327,0][-3.64588,-0.910325,0.891314][0.961035,0.14386,-0.236044][0.0281445,0.664061,0][-2.56455,0.479388,2.67539][0.653624,-0.239394,-0.71796][0.465946,0.0521855,0][-2.02179,0.441334,3.08953][0.484394,-0.283911,-0.8275][0.482435,0.0543808,0][-2.07272,-0.272369,3.1777][0.525948,-0.0420563,-0.849477][0.479521,0.0760617,0][-2.33334,-2.58036,-2.02819][2.18026,-0.903558,-0.016946][0.527342,0.856057,0][-2.3952,-2.73467,-1.75859][0.353761,0.335966,-0.0282743][0.517882,0.858112,0][-2.43456,-2.80479,-3.08427][1.04307,0.990601,-0.0833671][0.545399,0.828252,0][-0.937719,-1.87695,-3.36098][0.450585,0.386018,1.26189][0.997992,0.329898,0][-1.40322,-1.78073,-3.22419][0.405469,0.347367,1.13554][0.983248,0.330172,0][-1.13901,-1.81251,-4.02251][-0.37949,-0.19526,-0.988543][0.997187,0.308697,0][-1.27679,-4.14505,-2.46562][-0.120841,-0.815176,-0.566467][0.720182,0.909772,0][-1.13804,-3.43783,-3.12493][0.0688564,0.348973,0.0120743][0.700697,0.899483,0][-0.747991,-3.99837,-2.56718][-0.148859,-0.816944,-0.557175][0.720543,0.892998,0][-2.43456,-2.80479,-3.08427][1.04307,0.990601,-0.0833671][0.422219,0.0507887,0][-2.12511,-3.52217,-2.68284][-0.556551,-0.65357,-0.51293][0.412054,0.069912,0][-2.50818,-3.40356,-2.14144][-0.575183,-0.63885,-0.510916][0.394228,0.0597259,0][0.397339,2.74586,1.97257][-0.0882714,-0.853005,-0.514385][0.525248,0.356734,0][-0.378711,2.74002,1.96182][0.113463,-0.842432,-0.526721][0.508502,0.370107,0][-0.251554,3.07791,1.32985][0.0931118,-0.923165,-0.372956][0.495564,0.355732,0][1.12443,1.76503,2.84442][-0.256656,-0.585099,-0.769277][0.580961,0.0199837,0][-0.0300772,1.73551,3.0528][0.0298039,-0.549037,-0.835266][0.545676,0.0186847,0][-0.00758104,2.28747,2.57443][0.0126607,-0.71334,-0.700703][0.547414,0.00188518,0][3.25721,1.04936,-1.17452][-0.86168,-0.435844,0.259898][0.918657,0.441981,0][2.81641,1.39139,-1.6937][-2.12368,-0.671842,0.649243][0.903069,0.459299,0][2.89342,0.76728,-2.08764][-2.23314,-0.497774,0.352073][0.887406,0.442887,0][2.84322,1.27684,-2.88922][-2.04576,-0.252092,-0.0321276][0.661379,0.771124,0][2.89342,0.76728,-2.08764][-2.23314,-0.497774,0.352073][0.669708,0.744428,0][2.81641,1.39139,-1.6937][-2.12368,-0.671842,0.649243][0.689686,0.747828,0][1.77876,-4.14684,-2.25034][0.433894,-0.832352,-0.344858][0.237096,0.63563,0][1.3231,-4.4361,-1.66231][0.246646,-0.967179,-0.0610706][0.256219,0.641672,0][0.989892,-4.42934,-1.86229][-0.0822303,-0.957543,-0.276313][0.251599,0.651815,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-1.27625,-4.46379,-1.59109][-0.276179,-0.959161,-0.0611192][0.38295,0.109163,0][-0.936869,-4.46165,-1.80433][0.0686134,-0.960862,-0.268397][0.390493,0.117738,0][-1.68237,0.0847727,-3.34527][0.683375,-0.0283525,0.980157][0.566806,0.475576,0][-2.27894,0.259927,-2.92426][0.55078,0.627368,-0.005582][0.584917,0.4698,0][-2.28504,-0.939491,-2.95471][0.607961,0.134504,0.782491][0.585952,0.506457,0][-2.27894,0.259927,-2.92426][0.55078,0.627368,-0.005582][0.255457,0.975032,0][-1.68237,0.0847727,-3.34527][0.683375,-0.0283525,0.980157][0.278234,0.974756,0][-2.2941,0.265848,-3.75444][0.981955,1.74344,-0.00549453][0.269646,0.996083,0][-2.2122,1.27675,3.41071][-0.455426,0.421972,0.783918][0.0460282,0.0309476,0][-2.35456,0.48271,3.6514][-0.498006,0.229999,0.836116][0.0701976,0.0260346,0][-1.68655,0.507499,4.16194][-0.437003,0.233095,0.868732][0.0699125,0.0464703,0][-2.56892,2.81537,1.8519][-0.600964,0.745669,0.287784][0.0622489,0.369372,0][-3.04526,2.18115,2.22367][-0.696709,0.60886,0.379324][0.087942,0.375036,0][-2.59416,2.13503,2.73902][-0.424582,0.601063,0.677092][0.087099,0.391415,0][1.21741,-1.73466,-3.36342][0.22149,-1.42568,0.00393588][0.918093,0.0990955,0][0.373269,-1.88007,-3.47729][0.41034,-2.38579,-0.0286778][0.938917,0.0926758,0][0.455344,-1.85572,-4.329][0.443414,-2.71821,-0.0160608][0.948709,0.116884,0][-0.435122,-2.46369,-3.42102][-0.353244,-1.53993,-0.0523709][0.993759,0.237791,0][-1.2419,-2.26246,-3.89636][-0.341626,-1.48973,-0.0508351][0.975201,0.215665,0][-0.478381,-2.4287,-4.17371][-0.290085,-1.26225,-0.0420152][1,0.215579,0][-3.61609,1.39392,-2.00057][-0.729422,0.40159,-0.553777][0.0869539,0.242633,0][-3.86219,0.566839,-2.16015][-0.78656,0.246312,-0.566262][0.111255,0.231939,0][-4.21978,0.557605,-1.3975][-0.944858,0.239131,-0.223742][0.121313,0.253533,0][-2.73375,0.680725,-2.3555][2.76184,0.064189,0.664701][0.362504,0.978777,0][-2.87673,0.845002,-3.03806][1.36861,-0.00977806,-0.28906][0.369335,0.99868,0][-2.82825,1.35521,-2.82579][1.76824,0.139234,-0.155654][0.353224,0.999411,0][0.0178759,3.358,-0.0541983][0.0117639,-0.999926,0.00307508][0.471623,0.320629,0][-0.56503,3.28431,0.359804][0.16819,-0.976856,-0.132154][0.467942,0.340063,0][-0.693966,3.28344,-0.158134][0.19976,-0.978752,0.0462557][0.455124,0.330107,0][0.0193888,3.28698,0.66423][0.0101346,-0.978192,-0.207455][0.486332,0.33697,0][0.672146,3.29516,0.259289][-0.171269,-0.980183,-0.0995447][0.492336,0.31598,0][0.778623,3.08934,1.1521][-0.174533,-0.927163,-0.331521][0.514024,0.333479,0][0.81337,-3.51427,-2.00095][-0.0262315,2.10866,-0.0364695][0.479462,0.931198,0][0.812714,-3.53391,-3.13641][-0.00599194,0.481671,-0.00833057][0.444746,0.93175,0][0.77344,-2.87214,-2.78634][2.43407,0.146248,-0.00339202][0.455449,0.913921,0][0.773354,-2.88741,-3.6927][0.876416,0.0525242,-0.000967893][0.427739,0.914345,0][0.77344,-2.87214,-2.78634][2.43407,0.146248,-0.00339202][0.455449,0.913921,0][0.812714,-3.53391,-3.13641][-0.00599194,0.481671,-0.00833057][0.444746,0.93175,0][3.09438,2.72169,0.804742][0.65869,0.698529,0.279613][0.0575932,0.847859,0][3.64427,2.0422,0.906248][0.778631,0.557458,0.288052][0.0646015,0.824679,0][3.74473,2.00579,0.203849][0.82262,0.561343,-0.0904994][0.0855245,0.830509,0][2.37759,3.14457,-0.283775][0.542365,0.83402,-0.101245][0.0775764,0.884596,0][3.02674,2.57672,-0.382934][0.714051,0.689825,-0.119468][0.090717,0.862736,0][2.9925,2.69555,-0.979218][0.710092,0.698554,-0.0882762][0.10633,0.872471,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.675251,0.21594,0][-1.47368,3.4625,0.67516][-0.159011,0.982817,0.0937342][0.664041,0.260866,0][-1.37128,3.60184,0.981437][-0.241285,0.96696,-0.0822829][0.654686,0.261989,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.858195,0.177774,0][-0.310956,3.58994,1.65539][0.167998,0.967631,0.188329][0.907772,0.16141,0][0.0126885,3.45066,1.62645][0.000662781,0.978903,0.204325][0.908117,0.172208,0][-0.0115876,-2.03007,4.1978][-0.0101687,-0.319014,0.947695][0.148659,0.0958706,0][-0.0074778,-1.21638,4.39214][-0.00806922,-0.138033,0.990395][0.123791,0.096572,0][-0.86581,-1.2408,4.47191][-0.0900975,-0.14335,0.985562][0.12393,0.0703194,0][-0.0103179,-0.377936,4.43012][-0.00570033,0.0487583,0.998794][0.098162,0.0970783,0][-0.0251626,0.454913,4.3077][-0.0051793,0.235814,0.971784][0.0726951,0.0972138,0][-0.867985,0.493266,4.39212][-0.0794944,0.236255,0.968434][0.0709267,0.0714798,0][-0.0182071,-3.46667,3.37481][0.00765025,-0.643206,0.765655][0.192565,0.094652,0][-0.0156618,-2.78941,3.85554][-0.00571556,-0.490364,0.871499][0.171866,0.0952089,0][-0.767706,-2.88482,3.92281][-0.0553053,-0.489242,0.870393][0.17425,0.072155,0][-1.82337,-3.45013,2.84678][-0.437813,-0.641059,0.630367][0.244935,0.0965157,0][-1.49394,-4.02495,2.34855][-0.33752,-0.821541,0.459511][0.261952,0.111232,0][-1.06888,-4.17876,2.69042][-0.348474,-0.827304,0.440607][0.253133,0.126096,0][0.349101,2.13756,-3.7175][0.223804,0.574524,-0.787295][0.541789,0.656255,0][0.27437,2.79641,-3.15544][0.224428,0.714279,-0.6629][0.521777,0.658869,0][0.838662,2.6678,-2.91406][0.2203,0.70182,-0.677434][0.522132,0.640066,0][-0.382212,1.42227,-4.14936][-0.186343,0.391843,-0.900963][0.326829,0.341711,0][-0.361533,2.16474,-3.72466][-0.180753,0.573948,-0.798694][0.324783,0.364327,0][0.349101,2.13756,-3.7175][0.223804,0.574524,-0.787295][0.303151,0.362144,0][3.8604,-2.91806,0.922146][0.800019,-0.496722,0.336508][0.0700963,0.521714,0][3.35597,-3.61675,0.816991][0.669831,-0.664784,0.33074][0.0441165,0.519468,0][3.45044,-3.64821,0.16812][0.734101,-0.674794,-0.0758158][0.0437241,0.49963,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.313527,0.669884,0][2.07757,-4.46451,0.070143][0.190132,-0.968009,-0.163733][0.305321,0.612567,0][2.01529,-4.45692,0.46582][0.134312,-0.963935,0.229759][0.317555,0.612524,0][-4.37172,-0.315332,-0.593215][-0.988995,0.0506223,-0.139017][0.152377,0.271521,0][-4.33388,-1.15277,-0.592732][-0.980255,-0.138737,-0.140901][0.174499,0.266363,0][-4.53814,-1.18606,0.239489][-0.988647,-0.142991,-0.0461541][0.183761,0.290327,0][-2.99257,2.80949,-1.00784][-0.686669,0.720547,-0.0964195][0.0478275,0.282953,0][-3.53403,2.14932,-1.14947][-0.807244,0.570668,-0.150646][0.0714659,0.272978,0][-3.55658,2.0605,-0.434978][-0.81524,0.568639,-0.109701][0.0791203,0.293622,0][2.28776,0.546745,3.62415][0.542576,0.232493,0.807192][0.0715247,0.167974,0][2.36307,-0.27867,3.71109][0.566532,0.0444978,0.822837][0.096807,0.169692,0][3.13877,-0.272885,3.27608][0.636569,0.0400068,0.770181][0.097179,0.193405,0][3.65478,1.25645,1.65949][0.840937,0.392694,0.372313][0.656775,0.313983,0][3.90049,0.463864,1.74603][0.889166,0.216173,0.403302][0.647363,0.33769,0][4.33508,0.459159,1.01192][0.921612,0.221323,0.318821][0.622538,0.329687,0][3.61435,1.29954,-2.09627][0.747895,0.434417,-0.501932][0.254246,0.805328,0][3.8626,0.488954,-2.26531][0.796514,0.253054,-0.549116][0.26096,0.779766,0][2.91022,0.776809,-3.09841][0.451961,0.229621,-0.437329][0.292626,0.800113,0][2.89342,0.76728,-2.08764][-2.23314,-0.497774,0.352073][0.669708,0.744428,0][2.84322,1.27684,-2.88922][-2.04576,-0.252092,-0.0321276][0.661379,0.771124,0][2.91022,0.776809,-3.09841][0.451961,0.229621,-0.437329][0.647765,0.766194,0][3.10457,-1.73986,-1.87875][-0.784718,0.379729,0.489922][0.263865,0.523853,0][3.37958,-1.77043,-1.2691][-0.863719,0.38356,0.326911][0.280671,0.515349,0][3.54228,-1.07285,-1.33626][-0.933124,0.143902,0.329501][0.291314,0.534064,0][3.27578,-2.41845,0.0790753][-0.84623,0.5245,-0.0937853][0.303297,0.47586,0][2.67239,-2.34604,1.84712][-0.705737,0.512532,-0.489129][0.344192,0.44004,0][3.26236,-1.71161,1.39594][-0.849938,0.363944,-0.380985][0.347398,0.468591,0][-3.2614,-2.29097,-0.462691][0.851621,0.511393,0.114973][0.810464,0.0482473,0][-2.84984,-2.299,-1.63965][0.751173,0.51215,0.416463][0.79762,0.0127185,0][-3.39382,-1.64022,-1.16741][0.888413,0.337191,0.311486][0.821728,0.0262653,0][-1.99484,-3.30296,-1.41201][2.64493,2.87025,0.996407][0.761242,0.0210431,0][-2.22249,-3.39767,-0.763915][0.603677,0.771501,0.200899][0.767063,0.0406538,0][-1.5059,-3.81118,-0.862642][0.408347,0.88702,0.215519][0.741769,0.0385788,0][0.0674111,-2.9231,-2.8314][-2.42751,-0.154908,0.0133374][0.636165,0.847772,0][0.0627435,-2.90729,-3.84954][-0.9396,-0.0580783,0.00340589][0.667293,0.847394,0][0.100247,-3.48992,-3.43834][-0.761105,-0.0492717,0.00483812][0.654721,0.863053,0][0.773354,-2.88741,-3.6927][0.876416,0.0525242,-0.000967893][0.806365,0.894387,0][0.806652,-3.45923,-3.23931][0.336426,-0.826164,-1.06669][0.806438,0.876875,0][0.100247,-3.48992,-3.43834][-0.761105,-0.0492717,0.00483812][0.828052,0.877285,0][0.620083,0.628647,-3.58686][1.10892,-0.0617761,-0.0309992][0.344621,0.764102,0][1.3151,-0.161256,-4.17654][0.489126,0.443002,-0.0169175][0.366238,0.791045,0][0.59885,0.623478,-4.3361][1.15964,-0.0646017,-0.0324171][0.336372,0.785479,0][1.3151,-0.161256,-4.17654][0.489126,0.443002,-0.0169175][0.278054,0.290157,0][1.29056,-1.20093,-4.17104][0.25541,-0.128559,-0.958247][0.280784,0.258479,0][0.751125,-0.620809,-4.3912][0.478128,0.000251505,-1.17083][0.296139,0.277209,0][2.47498,2.2657,-0.865875][-0.703195,-0.680491,0.206031][0.519278,0.249206,0][1.9711,2.30449,-1.72544][-0.561349,-0.710182,0.424886][0.491404,0.238122,0][2.67287,1.71365,-1.57303][-0.731269,-0.531723,0.427219][0.515266,0.224497,0][0.875266,1.77281,-2.9908][-0.247661,-0.571548,0.782302][0.44867,0.223206,0][1.45517,1.63239,-2.83207][-0.252313,-2.71606,1.25731][0.465557,0.215579,0][1.60994,2.32399,-2.0715][-0.408672,-0.716942,0.564784][0.476758,0.236481,0][3.37958,-1.77043,-1.2691][-0.863719,0.38356,0.326911][0.280671,0.515349,0][3.10457,-1.73986,-1.87875][-0.784718,0.379729,0.489922][0.263865,0.523853,0][2.50948,-2.51345,-1.97761][-3.01648,1.68249,0.601469][0.244645,0.501763,0][2.15699,-1.95716,-3.81433][-0.799069,-0.526853,-0.00359744][0.898295,0.124273,0][2.45501,-2.42039,-2.16919][-0.727847,-0.476033,-0.00218941][0.863223,0.0855078,0][2.14068,-1.92564,-2.80002][-1.99434,-1.25815,0.00701034][0.885313,0.0960967,0][0.620083,0.628647,-3.58686][1.10892,-0.0617761,-0.0309992][0.344621,0.764102,0][1.30819,-0.118826,-3.54541][1.16828,1.07221,-0.0592882][0.372078,0.772639,0][1.3151,-0.161256,-4.17654][0.489126,0.443002,-0.0169175][0.366238,0.791045,0][0.232594,0.672618,-4.39229][-0.328992,-1.41758,-0.0975165][0.632979,0.794405,0][0.74401,-0.627141,-3.70534][-0.182819,1.5385,0.0123073][0.663097,0.816605,0][0.219797,0.624287,-3.64653][-0.420602,-1.59046,-0.0709132][0.632355,0.817198,0][-0.0177157,-4.22677,0.00639689][-0.00691331,0.999975,-0.001344][0.696188,0.0668709,0][0.553802,-4.07062,0.884738][-0.18429,0.958614,-0.217017][0.683382,0.0942223,0][1.05001,-4.06483,0.0173279][-0.268365,0.963004,-0.0245837][0.668726,0.0682319,0][-0.893285,-4.07818,0.635141][0.215761,0.962682,-0.163371][0.723069,0.0851023,0][-1.07146,-4.07941,-0.13679][0.285524,0.957267,0.0460048][0.727105,0.0613343,0][-1.70655,-3.79939,0.41555][0.481217,0.87208,-0.0889189][0.748937,0.077417,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.0415957,0.944767,0][1.24216,3.47209,-1.05489][0.155932,0.979269,-0.129295][0.0844597,0.926815,0][1.04943,3.6181,-1.32886][0.267675,0.963372,0.0162605][0.0891398,0.936839,0][1.79491,3.17747,-1.52416][0.413693,0.844863,-0.339212][0.105382,0.915248,0][2.29218,2.63656,-1.9566][0.544221,0.698038,-0.465367][0.125951,0.90172,0][1.93866,2.76408,-2.45198][0.559864,0.690978,-0.457276][0.135079,0.918364,0][0.614586,1.12435,3.36305][-0.107939,-0.431471,-0.895646][0.564183,0.0385621,0][1.24708,1.1464,3.1838][-0.323074,-0.418218,-0.84895][0.583525,0.0390941,0][1.33722,0.469508,3.40594][-0.354456,-0.239155,-0.903972][0.584986,0.0599207,0][-0.74086,-0.297306,3.6936][0.188599,-0.045137,-0.981016][0.520114,0.0793601,0][-1.43302,-0.287798,3.49459][0.361269,-0.0425499,-0.93149][0.499012,0.0777513,0][-1.40229,0.425993,3.3993][0.360536,-0.245998,-0.899721][0.50131,0.0560292,0][-3.19047,-2.27154,0.778959][0.830099,0.494218,-0.258234][0.810169,0.0862464,0][-2.27725,-2.31901,2.36909][0.650628,0.507466,-0.564944][0.786085,0.135797,0][-1.98781,-2.91371,2.06535][0.554734,0.642667,-0.52844][0.770045,0.127103,0][-3.06693,-0.907473,2.18593][0.812817,0.146874,-0.563699][0.000108897,0.693006,0][-3.4147,-0.895224,1.56801][0.900485,0.163009,-0.40318][0.0131763,0.678744,0][-3.448,-0.174091,1.59127][0.912018,-0.0417297,-0.408023][0.023837,0.695149,0][0.638586,-3.56809,3.43342][0.0472193,-0.655335,0.753861][0.948905,0.0183156,0][0.523127,-4.16858,2.81222][-0.0106997,-0.831539,0.555363][0.924155,0.0281992,0][1.03963,-4.15625,2.63866][0.37749,-0.819887,0.430448][0.91667,0.0133118,0][2.37545,-3.54901,2.49472][0.422184,-0.650342,0.631519][0.196775,0.167757,0][2.72487,-2.82227,2.86213][0.520666,-0.48129,0.705171][0.174809,0.178951,0][2.05042,-2.72348,3.2295][0.488518,-0.482612,0.726936][0.171312,0.158406,0][-1.98456,2.31814,-1.74684][0.516645,-0.717392,0.467362][0.674494,0.475429,0][-0.746019,2.32188,-2.55743][0.226091,-0.725995,0.649473][0.652613,0.437877,0][-1.27709,2.74582,-1.65994][0.341996,-0.828226,0.443938][0.683212,0.452642,0][-0.643527,1.42924,-3.25798][-0.17271,-0.631497,0.016986][0.796518,0.599373,0][-1.44336,1.65918,-2.8417][-0.429928,-1.57199,0.0422835][0.768817,0.594243,0][-1.80953,1.74186,-3.49123][-0.421623,-2.5359,-0.0697338][0.771949,0.571653,0][-0.615564,1.47515,-4.01241][-1.8941,-0.148376,-0.0835103][0.392651,0.941985,0][-0.537014,0.681982,-4.33827][-1.01668,0.92527,-0.0400112][0.37017,0.947756,0][-0.570918,0.669167,-3.59299][-1.21832,1.12158,-0.0361384][0.373748,0.925239,0][-0.293295,0.790573,-4.33279][-0.412201,-1.62635,-0.0858895][0.325319,0.322266,0][-0.382212,1.42227,-4.14936][-0.186343,0.391843,-0.900963][0.326829,0.341711,0][0.411348,1.38515,-4.14487][0.226671,0.397234,-0.889284][0.302685,0.339066,0][-2.36789,2.34159,1.06737][0.605637,-0.740255,-0.291935][0.0850499,0.754386,0][-2.60231,2.34654,0.114588][0.680787,-0.73177,-0.0322747][0.107219,0.73527,0][-1.97583,2.77103,0.444219][0.474429,-0.870274,-0.132439][0.110392,0.757311,0][-3.68018,0.505142,0.20561][0.957683,-0.286723,-0.0251742][0.0675945,0.683732,0][-3.65001,0.495103,-0.494072][0.95039,-0.28866,0.115908][0.0851601,0.671523,0][-3.26268,1.17601,-1.09138][0.860825,-0.433468,0.266619][0.113828,0.680552,0][-2.33268,-4.1278,1.68903][-0.55717,-0.809882,0.18345][0.279493,0.0871695,0][-1.74104,-4.44823,1.27342][-0.28888,-0.95701,-0.026068][0.294452,0.106126,0][-1.47642,-4.45568,1.5808][-0.0340186,-0.961283,0.273456][0.28596,0.114575,0][-3.97714,-2.80155,0.229507][-0.865203,-0.498238,-0.0564101][0.316698,0.0197999,0][-3.47797,-3.50209,0.209824][-0.758234,-0.646823,-0.0818598][0.319897,0.0424663,0][-3.38478,-3.48793,0.862681][-0.701895,-0.63765,0.317405][0.300339,0.0471193,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.675251,0.21594,0][-1.68301,3.60682,0.0775666][-0.148468,0.966071,-0.211339][0.683577,0.264169,0][-1.63624,3.60696,0.398027][-0.0723592,0.970154,0.231443][0.673742,0.26514,0][-2.35077,3.20245,-0.337852][-0.490924,0.869468,-0.0549456][0.0338147,0.307267,0][-3.00857,2.69724,-0.400265][-0.692426,0.716163,-0.0875027][0.0552874,0.300286,0][-3.14758,2.82356,0.183748][-0.683371,0.720775,-0.116134][0.0576942,0.31806,0][-0.556994,-0.252344,-4.44756][1.98679,-0.434652,0.0564344][0.335353,0.290944,0][-1.2097,-0.0620055,-4.18426][-1.2826,1.14497,-0.0710671][0.354907,0.297996,0][-0.537014,0.681982,-4.33827][-1.01668,0.92527,-0.0400112][0.332963,0.319416,0][-1.2097,-0.0620055,-4.18426][-1.2826,1.14497,-0.0710671][0.354907,0.297996,0][-0.653632,-0.612801,-4.38936][-1.19207,-0.230949,-3.20323][0.338988,0.28013,0][-2.02415,-1.16491,-4.00929][-0.375856,-0.136048,-0.916637][0.381861,0.265893,0][-2.77246,1.68212,-2.55968][0.0202695,-0.569857,-0.00309707][0.383039,0.171855,0][-2.87673,0.845002,-3.03806][1.36861,-0.00977806,-0.28906][0.364049,0.193201,0][-3.86219,0.566839,-2.16015][-0.78656,0.246312,-0.566262][0.336466,0.173773,0][-2.78742,-0.301335,-3.55216][-0.686569,0.0528615,-0.725141][0.969696,0.592289,0][-2.75668,-1.17157,-3.52664][-0.686049,-0.136793,-0.71458][0.945967,0.592395,0][-3.2727,-1.13105,-2.81644][-0.736417,-0.135198,-0.662881][0.939615,0.570904,0][1.33722,0.469508,3.40594][-0.354456,-0.239155,-0.903972][0.584986,0.0599207,0][1.96325,0.478825,3.0811][-0.532002,-0.233158,-0.814009][0.604107,0.0608291,0][2.02327,-0.231555,3.16034][-0.554138,-0.0455337,-0.831179][0.604585,0.0826201,0][2.36373,1.14149,2.47029][-0.64835,-0.416328,-0.637427][0.902603,0.259412,0][3.13871,1.10666,1.38918][-0.829496,-0.398842,-0.390976][0.901185,0.218754,0][2.99224,0.438535,2.08489][-0.79561,-0.234967,-0.558386][0.924542,0.237306,0][2.47061,1.64192,-3.11986][0.303706,0.236699,-0.155802][0.165685,0.900057,0][1.93866,2.76408,-2.45198][0.559864,0.690978,-0.457276][0.135079,0.918364,0][2.29218,2.63656,-1.9566][0.544221,0.698038,-0.465367][0.125951,0.90172,0][2.37571,1.64383,-2.0855][-0.988608,-1.34602,0.598864][0.651814,0.510243,0][2.47061,1.64192,-3.11986][0.303706,0.236699,-0.155802][0.669876,0.536337,0][2.71189,1.5624,-2.59192][-0.69419,-2.46917,-0.0638093][0.653659,0.528785,0][2.87989,-0.367719,-3.62777][0.685243,0.0851222,-0.723323][0.230699,0.280876,0][2.8593,-1.24057,-3.60516][0.67629,-0.142624,-0.722696][0.23299,0.254281,0][2.13896,-1.26169,-4.0332][0.333904,-0.154059,-0.929932][0.255011,0.255009,0][2.15699,-1.95716,-3.81433][-0.799069,-0.526853,-0.00359744][0.898295,0.124273,0][2.53899,-2.52889,-3.29331][-1.73755,-1.1758,-0.0163181][0.875123,0.117965,0][2.45501,-2.42039,-2.16919][-0.727847,-0.476033,-0.00218941][0.863223,0.0855078,0][-3.55658,2.0605,-0.434978][-0.81524,0.568639,-0.109701][0.0791203,0.293622,0][-3.97606,1.32336,-0.484964][-0.903586,0.410033,-0.12412][0.103939,0.286248,0][-4.1644,1.39155,0.284223][-0.908841,0.411532,-0.0681943][0.109824,0.309023,0][-4.45413,-0.283026,1.11188][-0.946835,0.0397166,0.319258][0.164413,0.322244,0][-4.33328,0.58586,1.10833][-0.924245,0.224724,0.308659][0.139425,0.327976,0][-4.45327,0.553368,0.264161][-0.970234,0.235025,-0.0583954][0.135933,0.302287,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.34765,0.692174,0][0.646106,3.59966,1.57939][0.228235,0.971365,0.0660186][0.301547,0.714623,0][0.902465,3.46329,1.38815][0.547698,5.82811,0.925455][0.299617,0.70418,0][0.670554,2.09797,3.67997][0.00411691,0.57663,0.816995][0.0229668,0.119641,0][0.589683,2.75874,3.11321][-0.0398004,0.717402,0.695522][0.00271304,0.117637,0][-0.0113331,2.62808,3.04184][-0.0104633,0.711319,0.702791][0.00628146,0.099174,0][2.03522,3.3184,1.4865][0.494949,0.853927,0.160726][0.0233968,0.873125,0][1.40664,3.62235,1.01421][0.231097,0.969121,-0.0860089][0.0278243,0.898512,0][1.19208,3.60849,1.25048][-0.077448,0.956712,0.280543][0.0188724,0.900813,0][1.64199,3.46289,-0.198235][0.21468,0.975658,-0.0447646][0.0651551,0.90587,0][2.37759,3.14457,-0.283775][0.542365,0.83402,-0.101245][0.0775764,0.884596,0][2.35034,3.2792,-0.752786][0.546801,0.837262,0.00057527][0.0896351,0.892746,0][-0.559911,-2.94829,2.79898][0.211134,0.630418,-0.746991][0.730898,0.151012,0][-1.98781,-2.91371,2.06535][0.554734,0.642667,-0.52844][0.770045,0.127103,0][-1.79079,-2.34696,2.74098][0.408159,0.511229,-0.756341][0.772679,0.147676,0][0.627646,-3.80711,1.59885][-0.209966,0.883874,-0.417948][0.685555,0.115989,0][-0.664082,-3.81604,1.62037][0.167401,0.885306,-0.433832][0.721232,0.115314,0][-0.0167534,-3.43418,2.34038][0.000401077,0.799937,-0.600083][0.709061,0.137798,0][4.45561,-0.402134,1.00219][0.944528,0.0417294,0.32577][0.147538,0.521268,0][4.41717,-1.27437,0.990746][0.93369,-0.133801,0.332144][0.122877,0.521839,0][4.53668,-1.32476,0.137117][0.987783,-0.145985,-0.0545306][0.12205,0.495754,0][4.45641,0.410144,0.172903][0.971123,0.23107,-0.0593928][0.169093,0.49509,0][4.17509,1.23735,0.190217][0.911346,0.405162,-0.0727419][0.188386,0.494899,0][4.06136,1.28151,0.974886][0.865694,0.398415,0.303052][0.189036,0.518881,0][-1.98456,2.31814,-1.74684][0.516645,-0.717392,0.467362][0.157917,0.708432,0][-2.47124,2.33558,-0.871942][0.661034,-0.711713,0.237695][0.132695,0.719064,0][-2.67754,1.68053,-1.64761][0.0258397,-0.726455,-0.00394815][0.140127,0.688396,0][-2.99344,1.8195,0.751826][0.780963,-0.597984,-0.180314][0.0799764,0.730391,0][-3.0532,1.80458,-0.413577][0.832273,-0.543525,0.109097][0.108445,0.708932,0][-2.60231,2.34654,0.114588][0.680787,-0.73177,-0.0322747][0.107219,0.73527,0][-3.25031,-2.7678,2.35143][-0.782504,-0.486244,0.388914][0.254484,0.0467521,0][-2.84124,-3.49662,2.05737][-0.707393,-0.631785,0.316926][0.265775,0.0663472,0][-2.41114,-3.53676,2.55464][-0.446887,-0.646054,0.618794][0.252085,0.0804314,0][-3.15371,-1.17812,3.33437][-0.610675,-0.151054,0.777341][0.849899,0.634012,0][-3.18804,-0.307349,3.37328][-0.610908,0.0333891,0.790997][0.875021,0.634069,0][-3.75332,-0.248909,2.71213][-0.872093,0.0389062,0.487791][0.877398,0.660527,0][1.76695,-1.0146,-3.35894][-0.44962,0.121652,0.884897][0.462154,0.511619,0][1.11057,-0.991188,-3.61641][-0.280574,0.132973,0.950577][0.4822,0.510439,0][1.21741,-1.73466,-3.36342][0.22149,-1.42568,0.00393588][0.479461,0.533239,0][2.15699,-1.95716,-3.81433][-0.799069,-0.526853,-0.00359744][0.898295,0.124273,0][2.14068,-1.92564,-2.80002][-1.99434,-1.25815,0.00701034][0.885313,0.0960967,0][1.654,-1.82926,-3.15227][-0.574905,-2.5798,0.0615732][0.903291,0.0992164,0][3.68244,0.350581,0.100765][-0.96081,-0.276557,-0.01901][0.350981,0.542551,0][3.64593,0.34233,-0.598287][-0.952072,-0.280608,0.121727][0.333092,0.554268,0][3.74595,-0.374934,-0.642639][-0.988074,-0.0479522,0.146326][0.321298,0.539844,0][2.51862,1.75534,1.76555][-0.669778,-0.553362,-0.495165][0.576462,0.306332,0][2.81651,1.74038,1.25318][-0.770083,-0.558477,-0.308343][0.57302,0.28887,0][3.13871,1.10666,1.38918][-0.829496,-0.398842,-0.390976][0.588873,0.281194,0][0.623513,-0.304763,-4.45863][0.476304,0.178799,-1.25868][0.299431,0.287096,0][0.59885,0.623478,-4.3361][1.15964,-0.0646017,-0.0324171][0.298415,0.315467,0][1.3151,-0.161256,-4.17654][0.489126,0.443002,-0.0169175][0.278054,0.290157,0][0.232594,0.672618,-4.39229][-0.328992,-1.41758,-0.0975165][0.632979,0.794405,0][0.623513,-0.304763,-4.45863][0.476304,0.178799,-1.25868][0.656501,0.793298,0][0.74401,-0.627141,-3.70534][-0.182819,1.5385,0.0123073][0.663097,0.816605,0][1.99077,-4.32529,-0.316246][0.217626,-0.975962,-0.0117392][0.984789,0.412128,0][2.69328,-4.06991,-0.40612][0.525212,-0.849575,-0.0487329][0.977757,0.434045,0][2.81357,-4.21016,0.121939][0.50981,-0.852837,-0.11297][0.961455,0.428867,0][2.47175,-4.1937,-1.44209][0.353312,-0.834963,-0.421908][0.014144,0.451472,0][3.01344,-3.61568,-1.74556][0.565709,-0.653693,-0.502651][0.0367966,0.441341,0][3.27668,-3.64421,-1.1383][0.740056,-0.660409,-0.127185][0.0400992,0.459796,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-0.172423,-4.4442,-2.03734][-0.187043,-0.961522,-0.201224][0.399953,0.137748,0][0.227332,-4.43569,-2.05061][0.202436,-0.960992,-0.188454][0.401604,0.148598,0][0.227332,-4.43569,-2.05061][0.202436,-0.960992,-0.188454][0.517883,0.723186,0][0.287127,-4.13163,-2.78703][0.186512,-0.819565,-0.54178][0.537265,0.715894,0][0.790807,-3.99323,-2.60143][0.137193,-0.829905,-0.540773][0.538247,0.732503,0][0.504508,-3.78664,-1.67748][-0.141802,0.88385,0.44576][0.685487,0.0157528,0][-0.186838,-3.53495,-2.13309][-0.0627887,3.73129,0.961664][0.70736,0.000995784,0][-0.0949779,-4.07084,-1.05708][0.0266729,0.954268,0.297761][0.699126,0.034224,0][0.109114,-3.50286,-2.17521][-0.712714,-0.046139,0.00453052][0.855965,0.570572,0][0.81337,-3.51427,-2.00095][-0.0262315,2.10866,-0.0364695][0.871354,0.58655,0][0.77344,-2.87214,-2.78634][2.43407,0.146248,-0.00339202][0.84458,0.602256,0][-0.867985,0.493266,4.39212][-0.0794944,0.236255,0.968434][0.0709267,0.0714798,0][-0.833072,1.31595,4.10589][-0.0648496,0.419346,0.905507][0.0458058,0.073129,0][-1.59552,1.32827,3.88991][-0.421478,0.422199,0.802561][0.0448899,0.0498331,0][-0.744381,2.0725,3.66662][-0.04074,0.581031,0.812861][0.0227442,0.076375,0][-0.608924,2.73875,3.09682][-0.00211356,0.71614,0.697953][0.00247577,0.0809866,0][-1.18341,2.74486,2.93012][-0.368292,0.72521,0.581749][0.00188281,0.0634316,0][-2.04624,-0.29486,-4.04255][-0.372931,0.0623176,-0.925764][0.380877,0.292484,0][-2.02415,-1.16491,-4.00929][-0.375856,-0.136048,-0.916637][0.381861,0.265893,0][-2.75668,-1.17157,-3.52664][-0.686049,-0.136793,-0.71458][0.404226,0.267086,0][-2.43456,-2.80479,-3.08427][1.04307,0.990601,-0.0833671][0.545399,0.828252,0][-1.94711,-1.99175,-3.83371][1.28219,-2.20229,0.202326][0.581896,0.833151,0][-2.12647,-2.06619,-2.62858][1.32067,-1.21719,0.121371][0.552301,0.855531,0][-0.186838,-3.53495,-2.13309][-0.0627887,3.73129,0.961664][0.70736,0.000995784,0][-1.06512,-3.81582,-1.35857][0.265319,0.893741,0.361707][0.728938,0.0238856,0][-0.0949779,-4.07084,-1.05708][0.0266729,0.954268,0.297761][0.699126,0.034224,0][-0.0177157,-4.22677,0.00639689][-0.00691331,0.999975,-0.001344][0.696188,0.0668709,0][-0.0949779,-4.07084,-1.05708][0.0266729,0.954268,0.297761][0.699126,0.034224,0][-0.659377,-4.08018,-0.825308][0.177471,0.960941,0.21236][0.714898,0.0407255,0][-0.0300772,1.73551,3.0528][0.0298039,-0.549037,-0.835266][0.545676,0.0186847,0][-1.17183,1.73682,2.83213][0.257523,-0.583838,-0.769945][0.510839,0.0164694,0][-0.975476,2.28882,2.38408][0.238729,-0.724246,-0.646897][0.517882,0,0][-1.6548,2.76093,1.14584][0.417673,-0.855521,-0.305995][0.760184,0.528698,0][-1.09689,2.74736,1.675][0.256284,-0.858496,-0.444188][0.776202,0.511485,0][-1.7991,2.31224,1.85789][0.450556,-0.733493,-0.508907][0.785338,0.535686,0][0.790807,-3.99323,-2.60143][0.137193,-0.829905,-0.540773][0.538247,0.732503,0][0.287127,-4.13163,-2.78703][0.186512,-0.819565,-0.54178][0.537265,0.715894,0][0.812714,-3.53391,-3.13641][-0.00599194,0.481671,-0.00833057][0.558619,0.728743,0][1.39623,-3.52855,-3.11031][-0.0148802,1.78642,-0.0347417][0.328801,0.853247,0][0.812714,-3.53391,-3.13641][-0.00599194,0.481671,-0.00833057][0.328002,0.837147,0][1.67699,-3.49462,-1.48612][-0.34569,5.17696,0.6244][0.378458,0.860588,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.675251,0.21594,0][-0.79037,3.59402,-1.53197][0.117026,0.966268,-0.229413][0.725823,0.228718,0][-1.0587,3.59126,-1.35308][-0.248987,0.968299,0.0200431][0.722182,0.237169,0][-1.47372,2.7953,-2.82138][-0.213628,0.714272,-0.666467][0.462869,0.728281,0][-1.15979,3.31186,-2.21736][-0.074841,0.866051,-0.494322][0.456523,0.752463,0][-0.695853,3.18163,-2.30759][-0.173712,0.864519,-0.471625][0.443958,0.747951,0][1.4091,3.0928,-0.213347][-0.377019,-0.92272,0.0802779][0.500924,0.29018,0][0.869455,3.10096,-1.13813][-0.250275,-0.928686,0.273688][0.471323,0.277936,0][1.54374,2.76394,-1.35302][-0.446736,-0.835755,0.319282][0.484924,0.258215,0][0.0178759,3.358,-0.0541983][0.0117639,-0.999926,0.00307508][0.471623,0.320629,0][0.672146,3.29516,0.259289][-0.171269,-0.980183,-0.0995447][0.492336,0.31598,0][0.0193888,3.28698,0.66423][0.0101346,-0.978192,-0.207455][0.486332,0.33697,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.858195,0.0491283,0][-0.019023,-4.32955,2.07188][0.0079132,-0.970825,0.239657][0.907887,0.0460175,0][-0.416053,-4.47116,2.12454][0.145581,-0.961185,0.234369][0.909308,0.0588617,0][-0.416053,-4.47116,2.12454][0.145581,-0.961185,0.234369][0.272807,0.145855,0][-0.55051,-4.18364,2.84046][0.0637305,-0.826655,0.559089][0.250215,0.140951,0][-1.06888,-4.17876,2.69042][-0.348474,-0.827304,0.440607][0.253133,0.126096,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-2.1226,-4.43567,0.144798][-0.230956,-0.958925,-0.16469][0.327514,0.0915373,0][-2.0168,-4.30181,-0.240311][-0.261161,-0.964273,-0.0444044][0.339348,0.0913928,0][-1.86893,-4.30461,0.891763][-0.252856,-0.963234,0.0907982][0.305431,0.0994345,0][-2.50662,-3.97567,1.17773][-0.549131,-0.805039,0.224429][0.294253,0.0786509,0][-2.78126,-4.10692,0.70723][-0.510404,-0.812213,0.282485][0.307872,0.0711395,0][-3.47797,-3.50209,0.209824][-0.758234,-0.646823,-0.0818598][0.319897,0.0424663,0][-3.97714,-2.80155,0.229507][-0.865203,-0.498238,-0.0564101][0.316698,0.0197999,0][-3.79915,-2.71558,-0.502196][-0.859378,-0.495449,-0.12649][0.339358,0.0210527,0][-4.33614,-0.308531,-1.46323][-0.969037,0.0489352,-0.242018][0.145688,0.245769,0][-4.29639,-1.17906,-1.45528][-0.960195,-0.141902,-0.240603][0.168731,0.240629,0][-4.33388,-1.15277,-0.592732][-0.980255,-0.138737,-0.140901][0.174499,0.266363,0][3.35597,-3.61675,0.816991][0.669831,-0.664784,0.33074][0.0441165,0.519468,0][3.8604,-2.91806,0.922146][0.800019,-0.496722,0.336508][0.0700963,0.521714,0][3.47867,-2.78698,1.56454][0.779162,-0.48794,0.393474][0.0695306,0.541389,0][3.7148,-0.317072,2.59351][0.867897,0.039208,0.495194][0.142146,0.570155,0][3.68464,-1.191,2.5618][0.85896,-0.133667,0.494288][0.117521,0.570106,0][3.97464,-1.20566,1.73754][0.894356,-0.131955,0.427452][0.119919,0.544798,0][-2.44134,-4.12977,-1.37648][-0.404322,-0.820071,-0.404979][0.37227,0.0735475,0][-1.81264,-4.4518,-0.999823][-0.107191,-0.963158,-0.246652][0.363282,0.0962983,0][-1.98969,-4.44366,-0.640122][-0.278599,-0.954793,0.103693][0.351787,0.0925702,0][-2.12511,-3.52217,-2.68284][-0.556551,-0.65357,-0.51293][0.412054,0.069912,0][-1.72816,-4.14722,-2.17892][-0.463672,-0.816969,-0.342884][0.398916,0.0906155,0][-2.04354,-4.0008,-1.7416][-0.43527,-0.813977,-0.384682][0.384424,0.0815737,0][-0.570918,0.669167,-3.59299][-1.21832,1.12158,-0.0361384][0.373748,0.925239,0][-0.643527,1.42924,-3.25798][-0.17271,-0.631497,0.016986][0.395458,0.919032,0][-0.615564,1.47515,-4.01241][-1.8941,-0.148376,-0.0835103][0.392651,0.941985,0][0.875266,1.77281,-2.9908][-0.247661,-0.571548,0.782302][0.487437,0.42579,0][-0.288091,1.79603,-3.11328][0.0379791,-0.577907,0.815219][0.522979,0.424257,0][-0.31244,1.18219,-3.46521][0.0783222,-0.414184,0.906817][0.524157,0.443002,0][-1.67321,-0.935011,-3.3566][0.468451,0.142575,0.871909][0.567248,0.506753,0][-1.00455,-0.921648,-3.62934][0.260708,0.148547,0.953921][0.5468,0.506817,0][-1.22813,-0.0434165,-3.55212][-1.13479,1.02581,-0.0510726][0.553013,0.479816,0][-1.22813,-0.0434165,-3.55212][-1.13479,1.02581,-0.0510726][0.553013,0.479816,0][-0.660672,-0.630292,-3.70846][1.12327,-0.267376,-0.0052713][0.536083,0.498155,0][-0.296875,0.771221,-3.60508][1.24367,-0.319431,-0.046031][0.523972,0.455575,0][2.91329,-1.69548,2.00013][-0.749941,0.321026,-0.578386][0.360175,0.454645,0][1.92061,-1.65854,2.98534][-0.564745,0.311802,-0.764096][0.378031,0.427668,0][2.00955,-0.952843,3.12603][-0.563902,0.14945,-0.812206][0.393455,0.442133,0][1.04872,-2.92088,2.65506][-0.295844,0.650883,-0.699162][0.906314,0.343866,0][1.96785,-2.91773,2.04605][-0.536795,0.652194,-0.535252][0.879738,0.325001,0][1.60542,-3.40947,1.66468][-0.399718,0.811628,-0.426011][0.89447,0.308697,0][4.24764,0.372745,-0.651957][0.962318,0.233715,-0.139001][0.16442,0.470028,0][4.36421,-0.457976,-0.706057][0.988715,0.0473355,-0.142133][0.142861,0.469179,0][4.32774,-0.409879,-1.57719][0.972229,0.0543467,-0.227635][0.142727,0.442532,0][3.18094,-2.02375,-2.77757][0.708703,-0.344914,-0.615447][0.234158,0.921538,0][3.33696,-1.19972,-2.92291][0.749314,-0.140576,-0.647122][0.259006,0.927869,0][3.94627,-1.24054,-2.34933][0.803616,-0.145138,-0.577179][0.256599,0.946384,0][-0.695368,-1.71632,3.49157][0.233049,0.399734,-0.88651][0.518799,0.122747,0][-1.95449,-1.69291,2.99777][0.468293,0.353368,-0.809835][0.480423,0.119634,0][-1.41479,-1.00794,3.45941][0.360541,0.166225,-0.917812][0.498196,0.0997604,0][-2.04934,-0.992521,3.146][0.526634,0.150007,-0.836752][0.478863,0.0980811,0][-2.60726,-0.953239,2.7189][0.684821,0.149501,-0.713211][0.461913,0.0958195,0][-2.63427,-0.232529,2.74873][0.682912,-0.0419184,-0.729297][0.462462,0.0737762,0][-1.30699,-3.58415,3.25847][-0.406031,-0.642828,0.649547][0.234254,0.113883,0][-1.49406,-2.87395,3.7086][-0.42738,-0.48721,0.761559][0.218949,0.101181,0][-2.08657,-2.76753,3.24904][-0.481679,-0.489164,0.72712][0.230885,0.0819057,0][-3.18804,-0.307349,3.37328][-0.610908,0.0333891,0.790997][0.0937563,0,0][-3.15371,-1.17812,3.33437][-0.610675,-0.151054,0.777341][0.120396,0.000433503,0][-2.38122,-1.18789,3.71463][-0.525174,-0.147466,0.83812][0.121241,0.0240378,0][0.451938,3.47678,-1.58198][0.030598,0.986881,-0.158526][0.476308,0.642692,0][0.649977,3.20121,-2.28913][0.142994,0.855164,-0.498244][0.499737,0.643295,0][0.20714,3.33519,-2.47969][0.218293,0.859903,-0.461427][0.499316,0.658455,0][1.51554,3.33122,-1.91806][0.45754,0.846626,-0.27181][0.112383,0.929056,0][1.04943,3.6181,-1.32886][0.267675,0.963372,0.0162605][0.0891398,0.936839,0][1.24216,3.47209,-1.05489][0.155932,0.979269,-0.129295][0.0844597,0.926815,0][1.05001,-4.06483,0.0173279][-0.268365,0.963004,-0.0245837][0.668726,0.0682319,0][0.553802,-4.07062,0.884738][-0.18429,0.958614,-0.217017][0.683382,0.0942223,0][1.56183,-3.79782,0.677034][-0.395549,0.893021,-0.214606][0.658755,0.0887882,0][1.60542,-3.40947,1.66468][-0.399718,0.811628,-0.426011][0.89447,0.308697,0][0.85551,-3.42072,2.16291][-0.255377,0.790547,-0.556613][0.916214,0.323945,0][1.04872,-2.92088,2.65506][-0.295844,0.650883,-0.699162][0.906314,0.343866,0][3.78357,-0.367308,0.0756393][-0.99818,-0.0432252,-0.0420463][0.339665,0.527787,0][3.68244,-0.33077,0.791794][-0.971923,-0.0410873,-0.231684][0.357409,0.514956,0][3.58312,0.385343,0.796803][-0.949763,-0.222856,-0.21974][0.368207,0.530052,0][3.65006,-1.05016,0.772974][-0.961376,0.141128,-0.236305][0.345236,0.498636,0][3.74855,-1.08611,0.0635054][-0.988391,0.144977,-0.0454395][0.327648,0.511335,0][3.57756,-1.77915,0.0686935][-0.941776,0.332829,-0.0477779][0.315465,0.493725,0][0.747034,1.34007,4.11355][0.0414342,0.416417,0.908229][0.0461863,0.121442,0][0.820165,0.512977,4.40026][0.070984,0.237928,0.968685][0.0715185,0.123093,0][1.62853,0.56024,4.16427][0.447484,0.242156,0.860883][0.0706457,0.147834,0][1.59847,-2.02452,4.04953][0.472744,-0.317372,0.822063][0.149629,0.145086,0][1.67798,-1.17341,4.23475][0.480271,-0.137546,0.866268][0.12367,0.148119,0][0.853635,-1.22293,4.48635][0.0978432,-0.137997,0.985588][0.124601,0.122887,0][-2.86162,1.17381,-1.88381][1.50608,-0.047157,0.309556][0.136594,0.670811,0][-3.26268,1.17601,-1.09138][0.860825,-0.433468,0.266619][0.113828,0.680552,0][-3.48773,0.493572,-1.17496][0.915149,-0.24502,0.320105][0.103373,0.661233,0][-3.0532,1.80458,-0.413577][0.832273,-0.543525,0.109097][0.108445,0.708932,0][-2.67754,1.68053,-1.64761][0.0258397,-0.726455,-0.00394815][0.140127,0.688396,0][-2.47124,2.33558,-0.871942][0.661034,-0.711713,0.237695][0.132695,0.719064,0][1.12008,2.75846,1.70287][-0.266053,-0.843867,-0.465944][0.535334,0.337739,0][1.68548,2.76396,1.18161][-0.449569,-0.841283,-0.300217][0.537235,0.315522,0][1.81284,2.31339,1.8815][-0.484135,-0.707505,-0.51483][0.558059,0.326089,0][0.969839,2.30545,2.40397][-0.229695,-0.719264,-0.655667][0.55027,0.353206,0][-0.00758104,2.28747,2.57443][0.0126607,-0.71334,-0.700703][0.532861,0.374304,0][0.397339,2.74586,1.97257][-0.0882714,-0.853005,-0.514385][0.525248,0.356734,0][0.620083,0.628647,-3.58686][1.10892,-0.0617761,-0.0309992][0.496046,0.460581,0][0.666175,1.40057,-3.25159][0.191994,-1.67898,1.16755][0.494091,0.43702,0][-0.31244,1.18219,-3.46521][0.0783222,-0.414184,0.906817][0.524157,0.443002,0][0.653474,1.43195,-3.99324][1.92671,-0.102693,-0.0446862][0.641463,0.885471,0][0.666175,1.40057,-3.25159][0.191994,-1.67898,1.16755][0.650886,0.906107,0][0.620083,0.628647,-3.58686][1.10892,-0.0617761,-0.0309992][0.626636,0.906669,0][-3.58471,-0.221008,-1.22221][0.943082,-0.0517202,0.328513][0.0924483,0.643178,0][-3.28114,-0.218797,-1.87638][0.858005,-0.0548872,0.510701][0.111102,0.634936,0][-3.19562,0.494633,-1.81563][0.836601,-0.24421,0.490367][0.121585,0.653082,0][-2.81824,-0.937658,-2.45189][0.736011,0.126337,0.665076][0.602248,0.506023,0][-2.28504,-0.939491,-2.95471][0.607961,0.134504,0.782491][0.585952,0.506457,0][-2.27894,0.259927,-2.92426][0.55078,0.627368,-0.005582][0.584917,0.4698,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.313527,0.669884,0][1.8289,-4.45842,-1.07872][0.0550213,-0.959484,-0.276339][0.271671,0.624813,0][1.98399,-4.46617,-0.717267][0.217874,-0.970676,0.101583][0.281921,0.618782,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.313527,0.669884,0][0.989892,-4.42934,-1.86229][-0.0822303,-0.957543,-0.276313][0.251599,0.651815,0][1.3231,-4.4361,-1.66231][0.246646,-0.967179,-0.0610706][0.256219,0.641672,0][1.37549,-0.96296,3.46794][-0.38121,0.136249,-0.914393][0.583425,0.103704,0][0.692021,-0.991583,3.67081][-0.189892,0.137164,-0.972176][0.562515,0.103275,0][0.69294,-0.271541,3.7024][-0.183765,-0.0513598,-0.981627][0.563915,0.0813057,0][-1.43302,-0.287798,3.49459][0.361269,-0.0425499,-0.93149][0.499012,0.0777513,0][-0.74086,-0.297306,3.6936][0.188599,-0.045137,-0.981016][0.520114,0.0793601,0][-0.728795,-1.01722,3.6589][0.190536,0.144066,-0.971051][0.519111,0.101351,0][-2.22249,-3.39767,-0.763915][0.603677,0.771501,0.200899][0.767063,0.0406538,0][-1.99484,-3.30296,-1.41201][2.64493,2.87025,0.996407][0.761242,0.0210431,0][-2.27851,-2.89933,-1.72441][1.82615,1.46338,0.232478][0.773952,0.01101,0][-2.27851,-2.89933,-1.72441][1.82615,1.46338,0.232478][0.827418,0.449796,0][-1.99484,-3.30296,-1.41201][2.64493,2.87025,0.996407][0.815953,0.46123,0][-1.97687,-3.27849,-2.9864][1.68487,3.12243,-0.0250925][0.80843,0.413686,0][0.4783,3.30049,2.4312][-0.102101,0.856178,0.506493][0.638227,0.664442,0][0.334365,3.59484,1.66254][-0.196159,0.960628,0.196761][0.612842,0.66731,0][0.0126885,3.45066,1.62645][0.000662781,0.978903,0.204325][0.610483,0.656736,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.564368,0.662295,0][0.0126885,3.45066,1.62645][0.000662781,0.978903,0.204325][0.610483,0.656736,0][0.334365,3.59484,1.66254][-0.196159,0.960628,0.196761][0.612842,0.66731,0][-2.91303,1.38356,3.08393][-0.512999,0.426331,0.745033][0.113788,0.396003,0][-2.59416,2.13503,2.73902][-0.424582,0.601063,0.677092][0.087099,0.391415,0][-3.04526,2.18115,2.22367][-0.696709,0.60886,0.379324][0.087942,0.375036,0][-3.65341,0.614906,2.65877][-0.847633,0.230624,0.47784][0.140882,0.376317,0][-3.75332,-0.248909,2.71213][-0.872093,0.0389062,0.487791][0.165817,0.372161,0][-3.18804,-0.307349,3.37328][-0.610908,0.0333891,0.790997][0.164885,0.393138,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.0415957,0.944767,0][1.67786,3.60701,0.438348][0.110267,0.96421,0.241123][0.0470451,0.898689,0][1.72337,3.6042,0.119229][0.178718,0.963441,-0.199604][0.0564769,0.901502,0][2.4967,3.28169,0.181334][0.526575,0.837599,-0.145417][0.0652308,0.877376,0][1.72337,3.6042,0.119229][0.178718,0.963441,-0.199604][0.0564769,0.901502,0][1.67786,3.60701,0.438348][0.110267,0.96421,0.241123][0.0470451,0.898689,0][-2.28504,-0.939491,-2.95471][0.607961,0.134504,0.782491][0.585952,0.506457,0][-2.81824,-0.937658,-2.45189][0.736011,0.126337,0.665076][0.602248,0.506023,0][-2.69207,-1.64051,-2.34598][0.695942,0.328204,0.638708][0.598888,0.527596,0][-2.12647,-2.06619,-2.62858][1.32067,-1.21719,0.121371][0.552301,0.855531,0][-1.94711,-1.99175,-3.83371][1.28219,-2.20229,0.202326][0.581896,0.833151,0][-1.40322,-1.78073,-3.22419][0.405469,0.347367,1.13554][0.577387,0.855347,0][3.64593,0.34233,-0.598287][-0.952072,-0.280608,0.121727][0.5687,0.219082,0][3.68244,0.350581,0.100765][-0.96081,-0.276557,-0.01901][0.58299,0.235001,0][3.35646,1.0742,0.765443][-0.897961,-0.411747,-0.155337][0.581726,0.262374,0][3.09358,1.68999,0.113966][-0.844063,-0.536095,0.0126173][0.557298,0.256694,0][2.67287,1.71365,-1.57303][-0.731269,-0.531723,0.427219][0.515266,0.224497,0][3.25721,1.04936,-1.17452][-0.86168,-0.435844,0.259898][0.542134,0.218145,0][3.28003,-0.319935,-1.97898][-0.859492,-0.0915513,0.502883][0.285286,0.559659,0][2.87631,-0.297167,-2.5447][-0.740237,-0.0874267,0.666637][0.268499,0.565853,0][2.8556,-1.01707,-2.53239][-0.733794,0.169402,0.657913][0.257182,0.549098,0][2.37347,0.203974,-2.89781][-0.440779,-0.0151489,0.619773][0.636378,0.745502,0][2.73895,0.606744,-2.41028][-0.865221,0.796526,-0.0505668][0.658131,0.74662,0][2.7649,0.56666,-3.4858][-1.9698,1.80624,-0.141748][0.633891,0.768852,0][1.3231,-4.4361,-1.66231][0.246646,-0.967179,-0.0610706][0.427739,0.600703,0][1.77876,-4.14684,-2.25034][0.433894,-0.832352,-0.344858][0.445919,0.587065,0][2.08429,-4.02225,-1.81142][0.408612,-0.831649,-0.376026][0.449487,0.601968,0][2.90513,-2.79209,-2.52414][0.631011,-0.509404,-0.585092][0.498363,0.592837,0][2.53843,-3.4653,-2.20059][0.555446,-0.647177,-0.522151][0.473183,0.596158,0][2.10853,-3.50997,-2.82851][-1.92147,2.87475,-0.0403026][0.471736,0.575845,0][0.773354,-2.88741,-3.6927][0.876416,0.0525242,-0.000967893][0.41052,0.191289,0][0.389396,-2.89636,-3.86626][-0.0126256,0.80417,-0.0135452][0.405213,0.180765,0][0.77344,-2.87214,-2.78634][2.43407,0.146248,-0.00339202][0.43823,0.191094,0][0.100247,-3.48992,-3.43834][-0.761105,-0.0492717,0.00483812][0.56417,0.706722,0][0.389396,-2.89636,-3.86626][-0.0126256,0.80417,-0.0135452][0.586538,0.712435,0][0.773354,-2.88741,-3.6927][0.876416,0.0525242,-0.000967893][0.584243,0.724755,0][-2.75894,2.7093,1.29157][-0.602107,0.740528,0.298472][0.770209,0.917144,0][-2.15476,3.19884,0.991774][-0.426344,0.874901,0.229737][0.745994,0.90929,0][-2.39114,3.34636,0.585582][-0.401348,0.876083,0.267205][0.748859,0.894618,0][-2.39114,3.34636,0.585582][-0.401348,0.876083,0.267205][0.672155,0.283535,0][-1.63624,3.60696,0.398027][-0.0723592,0.970154,0.231443][0.673742,0.26514,0][-1.68301,3.60682,0.0775666][-0.148468,0.966071,-0.211339][0.683577,0.264169,0][3.04573,0.582116,3.21364][0.610629,0.225018,0.759275][0.0709798,0.191167,0][2.84845,1.38876,3.02265][0.558242,0.404362,0.724471][0.0461849,0.185707,0][2.13309,1.32809,3.39704][0.501267,0.40918,0.762432][0.0475333,0.163799,0][1.92041,2.04088,3.05021][0.448108,0.565614,0.692301][0.0255961,0.157803,0][2.13309,1.32809,3.39704][0.501267,0.40918,0.762432][0.0475333,0.163799,0][2.84845,1.38876,3.02265][0.558242,0.404362,0.724471][0.0461849,0.185707,0][1.68422,-4.44603,1.1946][0.272319,-0.961737,-0.0300762][0.340996,0.61833,0][2.28853,-4.15668,1.61958][0.517905,-0.835809,0.182199][0.351853,0.603494,0][1.93841,-4.15267,2.02798][0.267121,-0.831412,0.487238][0.365681,0.611228,0][2.73196,-4.19031,0.652924][0.4449,-0.844231,0.298894][0.320704,0.59543,0][2.01529,-4.45692,0.46582][0.134312,-0.963935,0.229759][0.317555,0.612524,0][2.07757,-4.46451,0.070143][0.190132,-0.968009,-0.163733][0.305321,0.612567,0][-0.879167,2.68295,-2.93595][-0.217421,0.717773,-0.661461][0.339591,0.381126,0][-1.01524,2.06912,-3.4541][-0.258917,0.550924,-0.793375][0.344913,0.362655,0][-1.71738,2.15367,-3.31737][-0.317153,0.5652,-0.761553][0.366177,0.366573,0][-1.80953,1.74186,-3.49123][-0.421623,-2.5359,-0.0697338][0.771949,0.571653,0][-1.07299,1.57861,-3.69263][-0.869273,-3.35365,-0.293602][0.793585,0.580419,0][-0.643527,1.42924,-3.25798][-0.17271,-0.631497,0.016986][0.796518,0.599373,0][-2.31591,2.67905,-1.98695][-0.543475,0.711128,-0.446017][0.0360168,0.254973,0][-1.81528,3.17752,-1.56831][-0.386189,0.864228,-0.322442][0.0191833,0.272054,0][-1.55149,3.30921,-1.95713][-0.422113,0.866473,-0.266545][0.00960429,0.262086,0][-1.55149,3.30921,-1.95713][-0.422113,0.866473,-0.266545][0.742444,0.24271,0][-1.0587,3.59126,-1.35308][-0.248987,0.968299,0.0200431][0.722182,0.237169,0][-0.79037,3.59402,-1.53197][0.117026,0.966268,-0.229413][0.725823,0.228718,0][-0.334319,-1.98905,-4.29655][-0.539444,-0.40246,-2.07419][0.331867,0.237526,0][-0.368758,-0.767796,-4.52456][-0.234973,1.60383,-0.021699][0.330591,0.274857,0][0.489037,-1.16851,-4.49835][0.184041,-0.125211,-0.974911][0.30518,0.260996,0][-0.334319,-1.98905,-4.29655][-0.539444,-0.40246,-2.07419][0.966336,0.107055,0][0.455344,-1.85572,-4.329][0.443414,-2.71821,-0.0160608][0.948709,0.116884,0][0.373269,-1.88007,-3.47729][0.41034,-2.38579,-0.0286778][0.938917,0.0926758,0][-3.00857,2.69724,-0.400265][-0.692426,0.716163,-0.0875027][0.0552874,0.300286,0][-2.35077,3.20245,-0.337852][-0.490924,0.869468,-0.0549456][0.0338147,0.307267,0][-2.3383,3.33636,-0.811252][-0.490064,0.871668,-0.00556161][0.0267489,0.294055,0][-2.3383,3.33636,-0.811252][-0.490064,0.871668,-0.00556161][0.713376,0.272259,0][-1.59843,3.60042,-0.562185][-0.183412,0.972679,0.142319][0.70207,0.257353,0][-1.46955,3.59568,-0.858899][-0.0135615,0.963574,-0.267097][0.710076,0.25175,0][2.84845,1.38876,3.02265][0.558242,0.404362,0.724471][0.703983,0.32543,0][3.04573,0.582116,3.21364][0.610629,0.225018,0.759275][0.697738,0.350721,0][3.61239,0.539171,2.55622][0.848972,0.219859,0.480529][0.672088,0.345127,0][3.68464,-1.191,2.5618][0.85896,-0.133667,0.494288][0.117521,0.570106,0][3.7148,-0.317072,2.59351][0.867897,0.039208,0.495194][0.142146,0.570155,0][3.13877,-0.272885,3.27608][0.636569,0.0400068,0.770181][0.136711,0.591242,0][-3.39382,-1.64022,-1.16741][0.888413,0.337191,0.311486][0.821728,0.0262653,0][-3.55446,-1.63766,-0.506248][0.937549,0.323129,0.128797][0.826964,0.0462978,0][-3.2614,-2.29097,-0.462691][0.851621,0.511393,0.114973][0.810464,0.0482473,0][-3.64588,-0.910325,0.891314][0.961035,0.14386,-0.236044][0.0281445,0.664061,0][-3.75052,-0.930036,0.183367][0.988424,0.141605,-0.0544633][0.044761,0.650062,0][-3.78403,-0.210659,0.194125][0.997662,-0.0469705,-0.0496419][0.0557051,0.666205,0][-3.14758,2.82356,0.183748][-0.683371,0.720775,-0.116134][0.0576942,0.31806,0][-3.72311,2.16109,0.255814][-0.814336,0.573878,-0.0867229][0.0833108,0.314332,0][-3.6213,2.18074,0.957053][-0.753699,0.590344,0.288847][0.086382,0.335631,0][-3.72311,2.16109,0.255814][-0.814336,0.573878,-0.0867229][0.0833108,0.314332,0][-4.1644,1.39155,0.284223][-0.908841,0.411532,-0.0681943][0.109824,0.309023,0][-4.05226,1.41964,1.07143][-0.860404,0.412102,0.299796][0.113136,0.332966,0][2.35583,-1.01572,-2.99607][-0.593187,0.130486,0.79442][0.444156,0.51207,0][2.8556,-1.01707,-2.53239][-0.733794,0.169402,0.657913][0.428881,0.512465,0][2.87631,-0.297167,-2.5447][-0.740237,-0.0874267,0.666637][0.427739,0.490475,0][2.45501,-2.42039,-2.16919][-0.727847,-0.476033,-0.00218941][0.240931,0.506665,0][3.10457,-1.73986,-1.87875][-0.784718,0.379729,0.489922][0.263865,0.523853,0][2.14068,-1.92564,-2.80002][-1.99434,-1.25815,0.00701034][0.230699,0.525649,0][-2.72286,2.05735,-2.31365][-0.624672,0.551455,-0.552885][0.0556362,0.240127,0][-2.31591,2.67905,-1.98695][-0.543475,0.711128,-0.446017][0.0360168,0.254973,0][-1.97638,2.79427,-2.48953][-0.536472,0.699311,-0.4724][0.0251372,0.241737,0][-3.86219,0.566839,-2.16015][-0.78656,0.246312,-0.566262][0.94303,0.708046,0][-3.61609,1.39392,-2.00057][-0.729422,0.40159,-0.553777][0.966747,0.696489,0][-2.77246,1.68212,-2.55968][0.0202695,-0.569857,-0.00309707][0.99068,0.709531,0][1.24216,3.47209,-1.05489][0.155932,0.979269,-0.129295][0.0844597,0.926815,0][1.79491,3.17747,-1.52416][0.413693,0.844863,-0.339212][0.105382,0.915248,0][1.51554,3.33122,-1.91806][0.45754,0.846626,-0.27181][0.112383,0.929056,0][2.14504,3.29259,-1.18863][0.383606,0.846135,-0.370002][0.0993893,0.903552,0][1.48377,3.60778,-0.823658][0.048995,0.969461,-0.240302][0.0800351,0.919411,0][1.62428,3.60392,-0.523175][0.233714,0.960742,0.149509][0.0732701,0.91205,0][1.72049,-3.80379,0.0330609][-0.450609,0.892696,-0.00679869][0.268517,0.428823,0][1.504,-3.79967,-0.911301][-0.373797,0.895959,0.239863][0.243353,0.44323,0][0.919172,-4.06286,-0.561953][-0.237453,0.961531,0.138111][0.243552,0.424939,0][1.62016,-3.527,-3.10835][-0.0192065,1.01495,-0.00856415][0.328861,0.859432,0][1.67699,-3.49462,-1.48612][-0.34569,5.17696,0.6244][0.378458,0.860588,0][2.08435,-3.49913,-0.846122][-0.927368,1.23866,0.408661][0.398025,0.871934,0][1.93841,-4.15267,2.02798][0.267121,-0.831412,0.487238][0.365681,0.611228,0][1.42527,-4.44711,1.50556][0.0264614,-0.964925,0.261188][0.351485,0.623957,0][1.68422,-4.44603,1.1946][0.272319,-0.961737,-0.0300762][0.340996,0.61833,0][0.761612,-4.45862,1.96745][0.26785,-0.956106,0.11882][0.641257,0.599881,0][1.03963,-4.15625,2.63866][0.37749,-0.819887,0.430448][0.6213,0.605986,0][0.523127,-4.16858,2.81222][-0.0106997,-0.831539,0.555363][0.614419,0.592529,0][0.77344,-2.87214,-2.78634][2.43407,0.146248,-0.00339202][0.84458,0.602256,0][0.0674111,-2.9231,-2.8314][-2.42751,-0.154908,0.0133374][0.832829,0.58406,0][0.109114,-3.50286,-2.17521][-0.712714,-0.046139,0.00453052][0.855965,0.570572,0][0.0674111,-2.9231,-2.8314][-2.42751,-0.154908,0.0133374][0.436853,0.172189,0][0.77344,-2.87214,-2.78634][2.43407,0.146248,-0.00339202][0.43823,0.191094,0][0.389396,-2.89636,-3.86626][-0.0126256,0.80417,-0.0135452][0.405213,0.180765,0][-1.31714,1.10855,3.17584][0.313984,-0.418885,-0.852026][0.505208,0.0353637,0][0.614586,1.12435,3.36305][-0.107939,-0.431471,-0.895646][0.564183,0.0385621,0][-0.0329439,0.421141,3.66031][0.0270093,-0.285025,-0.95814][0.543085,0.0587861,0][-1.17183,1.73682,2.83213][0.257523,-0.583838,-0.769945][0.510839,0.0164694,0][-0.0300772,1.73551,3.0528][0.0298039,-0.549037,-0.835266][0.545676,0.0186847,0][-1.31714,1.10855,3.17584][0.313984,-0.418885,-0.852026][0.505208,0.0353637,0][-1.1297,3.08333,0.766064][0.304411,-0.928782,-0.211418][0.746741,0.511431,0][-0.251554,3.07791,1.32985][0.0931118,-0.923165,-0.372956][0.764374,0.48503,0][-0.378711,2.74002,1.96182][0.113463,-0.842432,-0.526721][0.785893,0.490497,0][-0.693966,3.28344,-0.158134][0.19976,-0.978752,0.0462557][0.455124,0.330107,0][-0.56503,3.28431,0.359804][0.16819,-0.976856,-0.132154][0.467942,0.340063,0][-1.1297,3.08333,0.766064][0.304411,-0.928782,-0.211418][0.46577,0.357948,0][-0.579934,-3.54194,-3.21556][0.21759,1.13756,0.0340557][0.433133,0.110852,0][-0.252153,-4.13,-2.7726][-0.213146,-0.823856,-0.525195][0.421574,0.128964,0][-0.747991,-3.99837,-2.56718][-0.148859,-0.816944,-0.557175][0.413579,0.114338,0][0.287127,-4.13163,-2.78703][0.186512,-0.819565,-0.54178][0.423714,0.143781,0][0.227332,-4.43569,-2.05061][0.202436,-0.960992,-0.188454][0.401604,0.148598,0][-0.172423,-4.4442,-2.03734][-0.187043,-0.961522,-0.201224][0.399953,0.137748,0][-0.873119,3.07699,-1.16195][0.247835,-0.9317,0.265542][0.163636,0.747667,0][-1.38119,3.08295,-0.249176][0.361158,-0.930428,0.0621957][0.137124,0.758478,0][-2.01868,2.76958,-0.330273][0.511786,-0.854896,0.0850214][0.129423,0.743209,0][0.0752346,3.29287,-0.766961][0.00202308,-0.982522,0.186135][0.459641,0.302265,0][-0.693966,3.28344,-0.158134][0.19976,-0.978752,0.0462557][0.455124,0.330107,0][-0.873119,3.07699,-1.16195][0.247835,-0.9317,0.265542][0.433835,0.307883,0][1.30232,3.17761,2.03279][0.272548,0.859196,0.433012][0.275172,0.707193,0][1.64706,2.66356,2.5951][0.379124,0.710785,0.592494][0.251555,0.707436,0][2.19053,2.77433,2.33298][0.372632,0.710654,0.596755][0.247887,0.692058,0][0.646106,3.59966,1.57939][0.228235,0.971365,0.0660186][0.301547,0.714623,0][0.931567,3.30899,2.31244][0.307281,0.86454,0.39768][0.277306,0.721748,0][1.30232,3.17761,2.03279][0.272548,0.859196,0.433012][0.275172,0.707193,0][-3.86419,-2.77717,0.978718][-0.806883,-0.488957,0.331454][0.29426,0.0252009,0][-4.21114,-1.9923,1.05688][-0.884948,-0.323266,0.335211][0.28964,0.0058458,0][-4.33452,-2.02306,0.238724][-0.943711,-0.327543,-0.0461022][0.314148,0,0][-4.53814,-1.18606,0.239489][-0.988647,-0.142991,-0.0461541][0.183761,0.290327,0][-4.33452,-2.02306,0.238724][-0.943711,-0.327543,-0.0461022][0.203777,0.285622,0][-4.21114,-1.9923,1.05688][-0.884948,-0.323266,0.335211][0.207091,0.310536,0][-3.48183,-2.6667,1.6344][-0.802019,-0.480013,0.355463][0.275386,0.036588,0][-3.04878,-3.36812,1.43343][-0.715444,-0.625103,0.312068][0.283885,0.0568154,0][-2.84124,-3.49662,2.05737][-0.707393,-0.631785,0.316926][0.265775,0.0663472,0][-1.74104,-4.44823,1.27342][-0.28888,-0.95701,-0.026068][0.294452,0.106126,0][-2.33268,-4.1278,1.68903][-0.55717,-0.809882,0.18345][0.279493,0.0871695,0][-2.50662,-3.97567,1.17773][-0.549131,-0.805039,0.224429][0.294253,0.0786509,0][-2.02415,-1.16491,-4.00929][-0.375856,-0.136048,-0.916637][0.381861,0.265893,0][-0.653632,-0.612801,-4.38936][-1.19207,-0.230949,-3.20323][0.338988,0.28013,0][-1.13901,-1.81251,-4.02251][-0.37949,-0.19526,-0.988543][0.356085,0.244446,0][-1.94711,-1.99175,-3.83371][1.28219,-2.20229,0.202326][0.976299,0.308927,0][-1.13901,-1.81251,-4.02251][-0.37949,-0.19526,-0.988543][0.997187,0.308697,0][-1.40322,-1.78073,-3.22419][0.405469,0.347367,1.13554][0.983248,0.330172,0][-0.872957,3.45246,1.36615][-0.487627,5.81739,0.999538][0.101698,0.998106,0][-1.28031,3.16673,1.99903][-0.245791,0.859383,0.448383][0.0792213,0.991555,0][-0.912469,3.29429,2.28825][-0.329408,0.859445,0.390954][0.0799939,0.979461,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.675251,0.21594,0][-1.1612,3.59775,1.22317][0.0596052,0.965994,0.251601][0.646152,0.257952,0][-0.872957,3.45246,1.36615][-0.487627,5.81739,0.999538][0.639649,0.249343,0][2.78065,-2.9578,0.621209][-0.735732,0.637422,-0.228893][0.304585,0.448868,0][2.82525,-2.98629,-0.463422][-0.718231,0.68185,0.138651][0.277332,0.467762,0][2.32932,-3.44016,0.0601929][-0.588497,0.807948,-0.0298623][0.279513,0.443025,0][3.5402,-1.78787,-0.611162][-0.930447,0.338477,0.140361][0.298043,0.505085,0][3.57756,-1.77915,0.0686935][-0.941776,0.332829,-0.0477779][0.315465,0.493725,0][3.74855,-1.08611,0.0635054][-0.988391,0.144977,-0.0454395][0.327648,0.511335,0][-2.27851,-2.89933,-1.72441][1.82615,1.46338,0.232478][0.773952,0.01101,0][-2.84859,-2.88121,-0.402485][0.759337,0.640485,0.114829][0.791481,0.0507989,0][-2.22249,-3.39767,-0.763915][0.603677,0.771501,0.200899][0.767063,0.0406538,0][-2.84859,-2.88121,-0.402485][0.759337,0.640485,0.114829][0.791481,0.0507989,0][-2.78995,-2.87106,0.680683][0.742552,0.633671,-0.216973][0.791225,0.0839478,0][-2.35397,-3.38845,0.1155][0.625832,0.778878,-0.0410317][0.771827,0.0673813,0][1.68548,2.76396,1.18161][-0.449569,-0.841283,-0.300217][0.537235,0.315522,0][2.06273,2.74719,0.0962511][-0.585027,-0.810617,-0.0253698][0.524367,0.283127,0][2.55678,2.28342,0.607303][-0.699392,-0.705399,-0.115161][0.549493,0.282669,0][2.06273,2.74719,0.0962511][-0.585027,-0.810617,-0.0253698][0.524367,0.283127,0][1.68548,2.76396,1.18161][-0.449569,-0.841283,-0.300217][0.537235,0.315522,0][1.38805,3.09386,0.318708][-0.367293,-0.923281,-0.11246][0.510808,0.303113,0][2.80887,-3.56994,1.99724][0.671606,-0.65917,0.338291][0.0396968,0.555743,0][3.22443,-2.85668,2.2834][0.760428,-0.490457,0.425678][0.0651392,0.563546,0][2.72487,-2.82227,2.86213][0.520666,-0.48129,0.705171][0.0603026,0.581433,0][3.1158,-1.14718,3.23602][0.629015,-0.132955,0.76594][0.11216,0.590934,0][2.97565,-2.00865,3.10196][0.590365,-0.303897,0.747741][0.0863435,0.587798,0][3.51986,-2.04995,2.46497][0.82365,-0.309621,0.475116][0.091499,0.568116,0][-1.27679,-4.14505,-2.46562][-0.120841,-0.815176,-0.566467][0.409044,0.102017,0][-0.936869,-4.46165,-1.80433][0.0686134,-0.960862,-0.268397][0.390493,0.117738,0][-1.27625,-4.46379,-1.59109][-0.276179,-0.959161,-0.0611192][0.38295,0.109163,0][-1.51493,-4.32197,-1.26957][-0.194427,-0.966535,-0.167355][0.372223,0.10189,0][-2.04354,-4.0008,-1.7416][-0.43527,-0.813977,-0.384682][0.384424,0.0815737,0][-1.72816,-4.14722,-2.17892][-0.463672,-0.816969,-0.342884][0.398916,0.0906155,0][2.68349,-4.21248,-0.946061][0.525795,-0.850197,-0.026559][0.272551,0.603932,0][1.98399,-4.46617,-0.717267][0.217874,-0.970676,0.101583][0.281921,0.618782,0][1.8289,-4.45842,-1.07872][0.0550213,-0.959484,-0.276339][0.271671,0.624813,0][1.98399,-4.46617,-0.717267][0.217874,-0.970676,0.101583][0.00112927,0.474134,0][2.68349,-4.21248,-0.946061][0.525795,-0.850197,-0.026559][0.0169244,0.466544,0][2.69328,-4.06991,-0.40612][0.525212,-0.849575,-0.0487329][0.0216151,0.482888,0][3.64427,2.0422,0.906248][0.778631,0.557458,0.288052][0.0646015,0.824679,0][3.09438,2.72169,0.804742][0.65869,0.698529,0.279613][0.0575932,0.847859,0][2.78743,2.63497,1.31347][0.663937,0.696139,0.273091][0.0403795,0.848224,0][1.67786,3.60701,0.438348][0.110267,0.96421,0.241123][0.0470451,0.898689,0][2.43051,3.2953,0.645805][0.455285,0.84833,0.270279][0.0514533,0.873392,0][2.4967,3.28169,0.181334][0.526575,0.837599,-0.145417][0.0652308,0.877376,0][-0.435122,-2.46369,-3.42102][-0.353244,-1.53993,-0.0523709][0.993759,0.237791,0][-1.04061,-2.32689,-3.37362][-0.418262,-1.82898,-0.0643852][0.975819,0.232873,0][-1.2419,-2.26246,-3.89636][-0.341626,-1.48973,-0.0508351][0.975201,0.215665,0][-0.937719,-1.87695,-3.36098][0.450585,0.386018,1.26189][0.545434,0.536064,0][-0.332234,-2.01374,-3.40838][0.341491,0.59755,3.27831][0.527023,0.540673,0][-0.434485,-0.766868,-3.74429][-0.11724,0.800236,-0.0108267][0.529267,0.50249,0][-2.39737,1.15607,2.49692][0.576985,-0.439786,-0.688242][0.0301839,0.752332,0][-2.81517,1.19503,2.02102][0.720454,-0.435106,-0.540026][0.0396043,0.740431,0][-2.51413,1.80215,1.79125][0.628183,-0.614963,-0.476662][0.0572615,0.753338,0][-1.7991,2.31224,1.85789][0.450556,-0.733493,-0.508907][0.785338,0.535686,0][-0.975476,2.28882,2.38408][0.238729,-0.724246,-0.646897][0.802052,0.511148,0][-1.6856,1.75054,2.56967][0.435579,-0.587397,-0.682082][0.812627,0.536773,0][2.73356,2.71946,-1.53172][0.55372,0.711165,-0.433172][0.118673,0.886219,0][3.23215,2.04822,-1.84649][0.651161,0.596628,-0.469067][0.136665,0.869647,0][2.71657,1.98258,-2.3376][2.08727,1.90135,-2.04943][0.144857,0.888057,0][2.91022,0.776809,-3.09841][0.451961,0.229621,-0.437329][0.292626,0.800113,0][2.84322,1.27684,-2.88922][-2.04576,-0.252092,-0.0321276][0.284641,0.814738,0][3.61435,1.29954,-2.09627][0.747895,0.434417,-0.501932][0.254246,0.805328,0][2.00955,-0.952843,3.12603][-0.563902,0.14945,-0.812206][0.602792,0.104603,0][2.57355,-0.96671,2.65655][-0.674779,0.194314,-0.71198][0.619976,0.106101,0][2.91329,-1.69548,2.00013][-0.749941,0.321026,-0.578386][0.628954,0.128986,0][2.59389,-0.245424,2.69048][-0.702065,-0.0393292,-0.711026][0.62197,0.0841304,0][2.02327,-0.231555,3.16034][-0.554138,-0.0455337,-0.831179][0.604585,0.0826201,0][1.96325,0.478825,3.0811][-0.532002,-0.233158,-0.814009][0.604107,0.0608291,0][3.29502,-3.53272,-0.480967][0.742621,-0.663409,-0.0916597][0.044174,0.479755,0][3.77496,-2.87085,-0.565719][0.855837,-0.502724,-0.121704][0.068601,0.476249,0][3.96248,-2.95871,0.177424][0.856744,-0.511958,-0.062363][0.0694383,0.498954,0][4.3293,-2.17194,0.161126][0.941031,-0.333696,-0.0557431][0.0959416,0.497464,0][3.96248,-2.95871,0.177424][0.856744,-0.511958,-0.062363][0.0694383,0.498954,0][3.77496,-2.87085,-0.565719][0.855837,-0.502724,-0.121704][0.068601,0.476249,0][3.17864,2.69581,0.210515][0.71105,0.6942,-0.111778][0.0752597,0.852867,0][3.74473,2.00579,0.203849][0.82262,0.561343,-0.0904994][0.0855245,0.830509,0][3.56756,1.90936,-0.493409][0.819003,0.560148,-0.124371][0.10347,0.842584,0][4.20939,0.447482,-1.4979][0.947212,0.243669,-0.208362][0.165029,0.444124,0][3.94266,1.26217,-1.37508][0.890754,0.41756,-0.179447][0.184284,0.447162,0][3.97943,1.16868,-0.582486][0.904442,0.405821,-0.131503][0.183075,0.471456,0][1.27094,-3.54505,3.23213][0.425958,-0.64871,0.630662][0.195872,0.134,0][1.4601,-2.82474,3.71855][0.450117,-0.494804,0.743346][0.17399,0.140291,0][0.736628,-2.85933,3.93874][0.0716128,-0.500669,0.862671][0.174535,0.118153,0][0.809825,-2.06847,4.29044][0.0901461,-0.321888,0.942477][0.150414,0.12095,0][0.736628,-2.85933,3.93874][0.0716128,-0.500669,0.862671][0.174535,0.118153,0][1.4601,-2.82474,3.71855][0.450117,-0.494804,0.743346][0.17399,0.140291,0][2.37571,1.64383,-2.0855][-0.988608,-1.34602,0.598864][0.499644,0.217068,0][2.67287,1.71365,-1.57303][-0.731269,-0.531723,0.427219][0.515266,0.224497,0][1.9711,2.30449,-1.72544][-0.561349,-0.710182,0.424886][0.491404,0.238122,0][2.71189,1.5624,-2.59192][-0.69419,-2.46917,-0.0638093][0.653659,0.528785,0][2.59198,1.56564,-1.68763][-2.05047,-0.41982,1.03203][0.638674,0.505309,0][2.37571,1.64383,-2.0855][-0.988608,-1.34602,0.598864][0.651814,0.510243,0][0.523127,-4.16858,2.81222][-0.0106997,-0.831539,0.555363][0.614419,0.592529,0][0.379683,-4.4649,2.09844][-0.111996,-0.967117,0.228344][0.636084,0.589903,0][0.761612,-4.45862,1.96745][0.26785,-0.956106,0.11882][0.641257,0.599881,0][-0.55051,-4.18364,2.84046][0.0637305,-0.826655,0.559089][0.932209,0.0592869,0][-0.416053,-4.47116,2.12454][0.145581,-0.961185,0.234369][0.909308,0.0588617,0][-0.019023,-4.32955,2.07188][0.0079132,-0.970825,0.239657][0.907887,0.0460175,0][1.60994,2.32399,-2.0715][-0.408672,-0.716942,0.564784][0.476758,0.236481,0][0.239846,2.33153,-2.64441][-0.097823,-0.723807,0.683034][0.436245,0.247167,0][0.875266,1.77281,-2.9908][-0.247661,-0.571548,0.782302][0.44867,0.223206,0][0.180805,2.77388,-2.08558][-0.0687725,-0.841218,0.536304][0.441437,0.265028,0][1.25776,2.77419,-1.62922][-0.317606,-0.830702,0.457231][0.473337,0.256821,0][0.390317,3.09966,-1.39609][-0.0969188,-0.923797,0.370414][0.456074,0.280281,0][-1.27679,-4.14505,-2.46562][-0.120841,-0.815176,-0.566467][0.720182,0.909772,0][-1.63007,-3.34335,-3.15577][-0.0880615,-0.714981,-0.785463][0.693599,0.913057,0][-1.13804,-3.43783,-3.12493][0.0688564,0.348973,0.0120743][0.700697,0.899483,0][-1.63007,-3.34335,-3.15577][-0.0880615,-0.714981,-0.785463][0.797315,0.410163,0][-1.43899,-3.42263,-1.84799][0.539165,2.02488,0.565707][0.79717,0.450642,0][-1.13804,-3.43783,-3.12493][0.0688564,0.348973,0.0120743][0.782778,0.413361,0][-3.0532,1.80458,-0.413577][0.832273,-0.543525,0.109097][0.108445,0.708932,0][-2.99344,1.8195,0.751826][0.780963,-0.597984,-0.180314][0.0799764,0.730391,0][-3.3484,1.20298,0.852655][0.889496,-0.428076,-0.159835][0.0649937,0.714435,0][-3.13716,1.20947,1.46609][0.814075,-0.442387,-0.376266][0.0513225,0.727599,0][-3.3484,1.20298,0.852655][0.889496,-0.428076,-0.159835][0.0649937,0.714435,0][-2.99344,1.8195,0.751826][0.780963,-0.597984,-0.180314][0.0799764,0.730391,0][1.11057,-0.991188,-3.61641][-0.280574,0.132973,0.950577][0.4822,0.510439,0][1.76695,-1.0146,-3.35894][-0.44962,0.121652,0.884897][0.462154,0.511619,0][1.74968,0.00648673,-3.34627][-1.05221,-0.0361627,1.4795][0.46196,0.480397,0][1.30819,-0.118826,-3.54541][1.16828,1.07221,-0.0592882][0.475543,0.483915,0][0.219797,0.624287,-3.64653][-0.420602,-1.59046,-0.0709132][0.508284,0.460431,0][0.74401,-0.627141,-3.70534][-0.182819,1.5385,0.0123073][0.493147,0.499053,0][-0.879167,2.68295,-2.93595][-0.217421,0.717773,-0.661461][0.218949,0.174045,0][-0.695853,3.18163,-2.30759][-0.173712,0.864519,-0.471625][0.242816,0.181881,0][-0.264513,3.32988,-2.48597][-0.217187,0.864554,-0.453184][0.241374,0.192899,0][0.27437,2.79641,-3.15544][0.224428,0.714279,-0.6629][0.304176,0.382391,0][0.349101,2.13756,-3.7175][0.223804,0.574524,-0.787295][0.303151,0.362144,0][-0.361533,2.16474,-3.72466][-0.180753,0.573948,-0.798694][0.324783,0.364327,0][-2.15476,3.19884,0.991774][-0.426344,0.874901,0.229737][0.0407033,0.347404,0][-2.75894,2.7093,1.29157][-0.602107,0.740528,0.298472][0.0636005,0.351463,0][-2.56892,2.81537,1.8519][-0.600964,0.745669,0.287784][0.0622489,0.369372,0][-2.00632,3.3273,1.4364][-0.468559,0.871995,0.141692][0.0384654,0.361888,0][-1.37128,3.60184,0.981437][-0.241285,0.96696,-0.0822829][0.0199006,0.351945,0][-1.47368,3.4625,0.67516][-0.159011,0.982817,0.0937342][0.0228162,0.341646,0][-2.99356,-3.51749,-1.68841][-0.583633,-0.648457,-0.488748][0.379105,0.049401,0][-3.4401,-2.80566,-1.94166][-0.681983,-0.497126,-0.536437][0.384345,0.02709,0][-2.87786,-2.71145,-2.46089][-0.652126,-0.486328,-0.581564][0.40175,0.0395536,0][-3.12943,-1.94641,-2.68991][-0.707556,-0.313274,-0.633422][0.821964,0.340411,0][-3.2727,-1.13105,-2.81644][-0.736417,-0.135198,-0.662881][0.821906,0.314806,0][-2.75668,-1.17157,-3.52664][-0.686049,-0.136793,-0.71458][0.848768,0.315371,0][-0.55051,-4.18364,2.84046][0.0637305,-0.826655,0.559089][0.250215,0.140951,0][-0.674132,-3.59173,3.44497][-0.00916164,-0.643692,0.76523][0.230594,0.132051,0][-1.30699,-3.58415,3.25847][-0.406031,-0.642828,0.649547][0.234254,0.113883,0][-1.49406,-2.87395,3.7086][-0.42738,-0.48721,0.761559][0.173404,0.0499612,0][-1.30699,-3.58415,3.25847][-0.406031,-0.642828,0.649547][0.195244,0.0551766,0][-0.674132,-3.59173,3.44497][-0.00916164,-0.643692,0.76523][0.195923,0.0745149,0][-0.608924,2.73875,3.09682][-0.00211356,0.71614,0.697953][0.00247577,0.0809866,0][-0.744381,2.0725,3.66662][-0.04074,0.581031,0.812861][0.0227442,0.076375,0][-0.0375836,1.98532,3.59912][-0.00937697,0.573501,0.819151][0.025909,0.0979168,0][-0.0426874,1.25218,4.02709][-0.00582079,0.414096,0.910215][0.0483139,0.0972422,0][-0.0251626,0.454913,4.3077][-0.0051793,0.235814,0.971784][0.0726951,0.0972138,0][0.820165,0.512977,4.40026][0.070984,0.237928,0.968685][0.0715185,0.123093,0][-1.68655,0.507499,4.16194][-0.437003,0.233095,0.868732][0.0699125,0.0464703,0][-1.59552,1.32827,3.88991][-0.421478,0.422199,0.802561][0.0448899,0.0498331,0][-2.2122,1.27675,3.41071][-0.455426,0.421972,0.783918][0.0460282,0.0309476,0][-1.69993,3.31497,1.79036][-0.193078,0.862307,0.468132][0.52621,0.927505,0][-2.18002,2.78339,2.29606][-0.333576,0.731702,0.594424][0.548375,0.942531,0][-1.64943,2.64254,2.56163][-0.34478,0.72148,0.600495][0.537162,0.955654,0][-2.60726,-0.953239,2.7189][0.684821,0.149501,-0.713211][0.461913,0.0958195,0][-2.04934,-0.992521,3.146][0.526634,0.150007,-0.836752][0.478863,0.0980811,0][-1.95449,-1.69291,2.99777][0.468293,0.353368,-0.809835][0.480423,0.119634,0][-2.27725,-2.31901,2.36909][0.650628,0.507466,-0.564944][0.786085,0.135797,0][-1.79079,-2.34696,2.74098][0.408159,0.511229,-0.756341][0.772679,0.147676,0][-1.98781,-2.91371,2.06535][0.554734,0.642667,-0.52844][0.770045,0.127103,0][3.44364,-2.90631,-2.00889][0.676482,-0.505883,-0.535215][0.061693,0.432353,0][3.76418,-2.10069,-2.22069][0.755481,-0.342252,-0.55867][0.0878972,0.424894,0][4.09096,-2.14023,-1.46844][0.917923,-0.333481,-0.214962][0.0918809,0.44776,0][4.32774,-0.409879,-1.57719][0.972229,0.0543467,-0.227635][0.142727,0.442532,0][4.28902,-1.28347,-1.56639][0.962406,-0.145375,-0.229437][0.11805,0.443785,0][3.94627,-1.24054,-2.34933][0.803616,-0.145138,-0.577179][0.113919,0.419985,0][-4.25166,0.520448,-0.55186][-0.962345,0.237321,-0.132552][0.128604,0.278379,0][-4.37172,-0.315332,-0.593215][-0.988995,0.0506223,-0.139017][0.152377,0.271521,0][-4.57888,-0.316974,0.244022][-0.997558,0.0474115,-0.0512768][0.160856,0.295826,0][-4.21978,0.557605,-1.3975][-0.944858,0.239131,-0.223742][0.121313,0.253533,0][-3.94709,1.38762,-1.27713][-0.890741,0.412086,-0.191746][0.0963252,0.263156,0][-3.61609,1.39392,-2.00057][-0.729422,0.40159,-0.553777][0.0869539,0.242633,0][-2.27725,-2.31901,2.36909][0.650628,0.507466,-0.564944][0.830483,0.281188,0][-3.19047,-2.27154,0.778959][0.830099,0.494218,-0.258234][0.774548,0.285241,0][-3.48005,-1.6114,0.84916][0.899681,0.343005,-0.270039][0.769901,0.263591,0][-3.58194,-1.62773,0.174031][0.93901,0.339055,-0.0574658][0.82863,0.0670486,0][-3.48005,-1.6114,0.84916][0.899681,0.343005,-0.270039][0.826791,0.0877728,0][-3.19047,-2.27154,0.778959][0.830099,0.494218,-0.258234][0.810169,0.0862464,0][-2.1226,-4.43567,0.144798][-0.230956,-0.958925,-0.16469][0.327514,0.0915373,0][-2.85315,-4.1103,0.17273][-0.563163,-0.81689,-0.124653][0.323886,0.067346,0][-2.71304,-3.97761,-0.347131][-0.57246,-0.814139,-0.0973021][0.339923,0.0676927,0][-3.31464,-3.39263,-0.429034][-0.754633,-0.645243,-0.119124][0.339656,0.0433367,0][-2.71304,-3.97761,-0.347131][-0.57246,-0.814139,-0.0973021][0.339923,0.0676927,0][-2.85315,-4.1103,0.17273][-0.563163,-0.81689,-0.124653][0.323886,0.067346,0][-2.02415,-1.16491,-4.00929][-0.375856,-0.136048,-0.916637][0.381861,0.265893,0][-2.04624,-0.29486,-4.04255][-0.372931,0.0623176,-0.925764][0.380877,0.292484,0][-1.2097,-0.0620055,-4.18426][-1.2826,1.14497,-0.0710671][0.354907,0.297996,0][-1.2097,-0.0620055,-4.18426][-1.2826,1.14497,-0.0710671][0.305251,0.98712,0][-2.01201,0.18536,-3.95544][0.80369,2.68925,0.00912781][0.280425,0.996018,0][-1.68237,0.0847727,-3.34527][0.683375,-0.0283525,0.980157][0.278234,0.974756,0][-0.321241,-3.51615,-3.40748][-0.00733347,-0.754838,-0.741609][0.56285,0.696489,0][0.100247,-3.48992,-3.43834][-0.761105,-0.0492717,0.00483812][0.56417,0.706722,0][0.287127,-4.13163,-2.78703][0.186512,-0.819565,-0.54178][0.537265,0.715894,0][0.109114,-3.50286,-2.17521][-0.712714,-0.046139,0.00453052][0.752225,0.447457,0][0.100247,-3.48992,-3.43834][-0.761105,-0.0492717,0.00483812][0.746741,0.409228,0][-0.321241,-3.51615,-3.40748][-0.00733347,-0.754838,-0.741609][0.758092,0.408431,0][-1.44336,1.65918,-2.8417][-0.429928,-1.57199,0.0422835][0.558387,0.427623,0][-0.643527,1.42924,-3.25798][-0.17271,-0.631497,0.016986][0.534102,0.435217,0][-0.865382,1.79356,-3.00181][0.273162,-0.559145,0.782776][0.540626,0.423925,0][0.239846,2.33153,-2.64441][-0.097823,-0.723807,0.683034][0.506463,0.408263,0][-0.746019,2.32188,-2.55743][0.226091,-0.725995,0.649473][0.536604,0.407861,0][-0.288091,1.79603,-3.11328][0.0379791,-0.577907,0.815219][0.522979,0.424257,0][-3.448,-0.174091,1.59127][0.912018,-0.0417297,-0.408023][0.023837,0.695149,0][-3.09668,-0.186089,2.21352][0.815726,-0.04263,-0.576866][0.0106917,0.70953,0][-3.06693,-0.907473,2.18593][0.812817,0.146874,-0.563699][0.000108897,0.693006,0][-3.58007,0.523494,0.899491][0.946579,-0.23346,-0.22245][0.0512743,0.697405,0][-3.35457,0.536511,1.56046][0.885874,-0.235157,-0.399911][0.0366242,0.711704,0][-3.448,-0.174091,1.59127][0.912018,-0.0417297,-0.408023][0.023837,0.695149,0][1.29056,-1.20093,-4.17104][0.25541,-0.128559,-0.958247][0.280784,0.258479,0][1.3151,-0.161256,-4.17654][0.489126,0.443002,-0.0169175][0.278054,0.290157,0][2.15493,-0.390136,-4.06377][0.338448,0.0747117,-0.938015][0.252864,0.281573,0][1.74968,0.00648673,-3.34627][-1.05221,-0.0361627,1.4795][0.384127,0.770505,0][2.09672,0.0891406,-3.96971][-0.607071,1.99774,-0.0730785][0.385714,0.791335,0][1.3151,-0.161256,-4.17654][0.489126,0.443002,-0.0169175][0.366238,0.791045,0][2.01529,-4.45692,0.46582][0.134312,-0.963935,0.229759][0.806365,0.827478,0][2.73196,-4.19031,0.652924][0.4449,-0.844231,0.298894][0.829872,0.831651,0][2.46171,-4.02488,1.11244][0.479245,-0.838024,0.260846][0.824102,0.84731,0][3.02541,-3.46342,1.37505][0.670579,-0.655791,0.346788][0.0447316,0.536518,0][2.46171,-4.02488,1.11244][0.479245,-0.838024,0.260846][0.0216064,0.529349,0][2.73196,-4.19031,0.652924][0.4449,-0.844231,0.298894][0.0199904,0.51535,0][1.72388,3.31873,1.83347][0.196239,0.85613,0.478049][0.0101836,0.876653,0][2.19053,2.77433,2.33298][0.372632,0.710654,0.596755][0.00443156,0.852184,0][2.59011,2.76265,1.88534][0.64539,0.704082,0.296211][0.021514,0.847553,0][3.3854,1.35019,2.41434][0.804973,0.396627,0.441254][0.0232653,0.804176,0][3.04475,2.09603,2.19057][0.73828,0.557441,0.37974][0.0216911,0.824381,0][2.56511,2.12459,2.72827][0.48192,0.564307,0.670306][0.00109866,0.830106,0][-2.08657,-2.76753,3.24904][-0.481679,-0.489164,0.72712][0.169732,0.0319265,0][-2.27378,-2.00353,3.54321][-0.510652,-0.324031,0.796391][0.146247,0.0267447,0][-3.0099,-2.0239,3.1818][-0.582752,-0.328325,0.743372][0.146349,0.00423054,0][-2.76035,-2.81822,2.92003][-0.52877,-0.4954,0.689188][0.797017,0.636883,0][-3.0099,-2.0239,3.1818][-0.582752,-0.328325,0.743372][0.823627,0.634961,0][-3.54545,-1.9683,2.55888][-0.836483,-0.322076,0.443354][0.825911,0.659941,0][-1.11704,-4.32373,1.76394][-0.153474,-0.968637,0.195417][0.281336,0.123411,0][-1.49394,-4.02495,2.34855][-0.33752,-0.821541,0.459511][0.261952,0.111232,0][-1.9765,-4.14997,2.10122][-0.286329,-0.822926,0.490723][0.268128,0.0986925,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-0.801248,-4.46867,2.01621][-0.242732,-0.962977,0.117284][0.274881,0.134842,0][-1.11704,-4.32373,1.76394][-0.153474,-0.968637,0.195417][0.281336,0.123411,0][-0.0177157,-4.22677,0.00639689][-0.00691331,0.999975,-0.001344][0.696188,0.0668709,0][-0.893285,-4.07818,0.635141][0.215761,0.962682,-0.163371][0.723069,0.0851023,0][-0.0238169,-4.07755,1.07257][0.00507075,0.959264,-0.282465][0.699501,0.0993666,0][-0.0177157,-4.22677,0.00639689][-0.00691331,0.999975,-0.001344][0.696188,0.0668709,0][-1.07146,-4.07941,-0.13679][0.285524,0.957267,0.0460048][0.727105,0.0613343,0][-0.893285,-4.07818,0.635141][0.215761,0.962682,-0.163371][0.723069,0.0851023,0][1.77876,-4.14684,-2.25034][0.433894,-0.832352,-0.344858][0.445919,0.587065,0][2.10853,-3.50997,-2.82851][-1.92147,2.87475,-0.0403026][0.471736,0.575845,0][2.53843,-3.4653,-2.20059][0.555446,-0.647177,-0.522151][0.473183,0.596158,0][2.10853,-3.50997,-2.82851][-1.92147,2.87475,-0.0403026][0.771832,0.865053,0][1.32278,-4.14068,-2.52622][0.0775339,-0.831089,-0.550708][0.750236,0.844716,0][1.62016,-3.527,-3.10835][-0.0192065,1.01495,-0.00856415][0.775511,0.848418,0][-0.664082,-3.81604,1.62037][0.167401,0.885306,-0.433832][0.721232,0.115314,0][-1.43465,-3.80468,1.01451][0.384749,0.875395,-0.292665][0.742024,0.0960005,0][-1.92107,-3.40551,1.35912][0.54751,0.760938,-0.348147][0.76104,0.105833,0][-1.98781,-2.91371,2.06535][0.554734,0.642667,-0.52844][0.770045,0.127103,0][-0.559911,-2.94829,2.79898][0.211134,0.630418,-0.746991][0.730898,0.151012,0][-1.28173,-3.42496,1.967][0.338401,0.775031,-0.533678][0.74378,0.125076,0][0.664434,0.442435,3.59933][-0.169624,-0.23952,-0.955959][0.564405,0.059465,0][-0.0329439,0.421141,3.66031][0.0270093,-0.285025,-0.95814][0.543085,0.0587861,0][0.614586,1.12435,3.36305][-0.107939,-0.431471,-0.895646][0.564183,0.0385621,0][1.38276,-0.242124,3.5004][-0.375406,-0.0504886,-0.925484][0.58502,0.0817223,0][0.69294,-0.271541,3.7024][-0.183765,-0.0513598,-0.981627][0.563915,0.0813057,0][0.664434,0.442435,3.59933][-0.169624,-0.23952,-0.955959][0.564405,0.059465,0][-3.19562,0.494633,-1.81563][0.836601,-0.24421,0.490367][0.121585,0.653082,0][-3.48773,0.493572,-1.17496][0.915149,-0.24502,0.320105][0.103373,0.661233,0][-3.58471,-0.221008,-1.22221][0.943082,-0.0517202,0.328513][0.0924483,0.643178,0][-3.58471,-0.221008,-1.22221][0.943082,-0.0517202,0.328513][0.0924483,0.643178,0][-3.75311,-0.220644,-0.524611][0.988932,-0.0506048,0.139474][0.0737536,0.65367,0][-3.72053,-0.940058,-0.528902][0.980653,0.139426,0.137405][0.0626405,0.63763,0][-4.01955,-0.239687,1.88004][-0.915197,0.0405996,0.400958][0.163124,0.346664,0][-3.98085,-1.07863,1.85524][-0.905635,-0.141693,0.399685][0.1851,0.340746,0][-3.71584,-1.12013,2.67849][-0.867028,-0.145175,0.47664][0.188617,0.365772,0][-3.71584,-1.12013,2.67849][-0.867028,-0.145175,0.47664][0.852271,0.660282,0][-3.54545,-1.9683,2.55888][-0.836483,-0.322076,0.443354][0.825911,0.659941,0][-3.0099,-2.0239,3.1818][-0.582752,-0.328325,0.743372][0.823627,0.634961,0][-2.27894,0.259927,-2.92426][0.55078,0.627368,-0.005582][0.152387,0.637961,0][-2.73375,0.680725,-2.3555][2.76184,0.064189,0.664701][0.141486,0.652692,0][-2.84938,-0.217171,-2.46788][0.727519,-0.045467,0.684579][0.129131,0.629139,0][-2.87673,0.845002,-3.03806][1.36861,-0.00977806,-0.28906][0.237721,0.99175,0][-2.73375,0.680725,-2.3555][2.76184,0.064189,0.664701][0.230699,0.971178,0][-2.27894,0.259927,-2.92426][0.55078,0.627368,-0.005582][0.255457,0.975032,0][0.623513,-0.304763,-4.45863][0.476304,0.178799,-1.25868][0.299431,0.287096,0][0.232594,0.672618,-4.39229][-0.328992,-1.41758,-0.0975165][0.309497,0.317665,0][0.59885,0.623478,-4.3361][1.15964,-0.0646017,-0.0324171][0.298415,0.315467,0][0.411348,1.38515,-4.14487][0.226671,0.397234,-0.889284][0.302685,0.339066,0][0.59885,0.623478,-4.3361][1.15964,-0.0646017,-0.0324171][0.298415,0.315467,0][0.232594,0.672618,-4.39229][-0.328992,-1.41758,-0.0975165][0.309497,0.317665,0][1.93866,2.76408,-2.45198][0.559864,0.690978,-0.457276][0.135079,0.918364,0][2.47061,1.64192,-3.11986][0.303706,0.236699,-0.155802][0.165685,0.900057,0][1.7085,2.07783,-3.29903][0.299795,0.556717,-0.774719][0.159723,0.926703,0][1.82627,1.65282,-3.48731][0.282275,-2.59671,0.106814][0.690908,0.533563,0][2.47061,1.64192,-3.11986][0.303706,0.236699,-0.155802][0.669876,0.536337,0][2.37571,1.64383,-2.0855][-0.988608,-1.34602,0.598864][0.651814,0.510243,0][2.87631,-0.297167,-2.5447][-0.740237,-0.0874267,0.666637][0.864984,0.41627,0][3.28003,-0.319935,-1.97898][-0.859492,-0.0915513,0.502883][0.884392,0.407861,0][2.89342,0.76728,-2.08764][-2.23314,-0.497774,0.352073][0.887406,0.442887,0][3.47784,0.361904,-1.27472][-0.90707,-0.249739,0.338901][0.911906,0.420772,0][2.89342,0.76728,-2.08764][-2.23314,-0.497774,0.352073][0.887406,0.442887,0][3.28003,-0.319935,-1.97898][-0.859492,-0.0915513,0.502883][0.884392,0.407861,0][-2.87673,0.845002,-3.03806][1.36861,-0.00977806,-0.28906][0.685361,0.634056,0][-3.3089,-0.292378,-2.8334][-0.738941,0.0482543,-0.672039][0.721189,0.644062,0][-3.96235,-0.298052,-2.24403][-0.802406,0.0487192,-0.594787][0.723174,0.663942,0][-3.96235,-0.298052,-2.24403][-0.802406,0.0487192,-0.594787][0.135267,0.22369,0][-3.9217,-1.169,-2.23189][-0.790429,-0.139544,-0.596448][0.158339,0.218675,0][-4.29639,-1.17906,-1.45528][-0.960195,-0.141902,-0.240603][0.168731,0.240629,0][-1.59552,1.32827,3.88991][-0.421478,0.422199,0.802561][0.0448899,0.0498331,0][-1.68655,0.507499,4.16194][-0.437003,0.233095,0.868732][0.0699125,0.0464703,0][-0.867985,0.493266,4.39212][-0.0794944,0.236255,0.968434][0.0709267,0.0714798,0][-1.71785,-0.35397,4.27775][-0.444701,0.0420573,0.894691][0.0962214,0.0449041,0][-1.69854,-1.22609,4.23484][-0.445865,-0.144927,0.88329][0.122892,0.0448772,0][-0.86581,-1.2408,4.47191][-0.0900975,-0.14335,0.985562][0.12393,0.0703194,0][-0.0251626,0.454913,4.3077][-0.0051793,0.235814,0.971784][0.0726951,0.0972138,0][-0.0103179,-0.377936,4.43012][-0.00570033,0.0487583,0.998794][0.098162,0.0970783,0][0.859314,-0.352044,4.52456][0.0910753,0.0494112,0.994617][0.0979858,0.123677,0][0.859314,-0.352044,4.52456][0.0910753,0.0494112,0.994617][0.0979858,0.123677,0][0.853635,-1.22293,4.48635][0.0978432,-0.137997,0.985588][0.124601,0.122887,0][1.67798,-1.17341,4.23475][0.480271,-0.137546,0.866268][0.12367,0.148119,0][3.94266,1.26217,-1.37508][0.890754,0.41756,-0.179447][0.230699,0.799513,0][4.20939,0.447482,-1.4979][0.947212,0.243669,-0.208362][0.23594,0.77356,0][3.8626,0.488954,-2.26531][0.796514,0.253054,-0.549116][0.26096,0.779766,0][3.94627,-1.24054,-2.34933][0.803616,-0.145138,-0.577179][0.113919,0.419985,0][3.97754,-0.366165,-2.36418][0.813008,0.0679196,-0.578278][0.138517,0.418611,0][4.32774,-0.409879,-1.57719][0.972229,0.0543467,-0.227635][0.142727,0.442532,0][-1.13901,-1.81251,-4.02251][-0.37949,-0.19526,-0.988543][0.356085,0.244446,0][-0.334319,-1.98905,-4.29655][-0.539444,-0.40246,-2.07419][0.331867,0.237526,0][-0.478381,-2.4287,-4.17371][-0.290085,-1.26225,-0.0420152][0.3371,0.224385,0][-0.435122,-2.46369,-3.42102][-0.353244,-1.53993,-0.0523709][0.720889,0.949033,0][-0.478381,-2.4287,-4.17371][-0.290085,-1.26225,-0.0420152][0.697877,0.949482,0][-0.334319,-1.98905,-4.29655][-0.539444,-0.40246,-2.07419][0.693599,0.935588,0][2.15493,-0.390136,-4.06377][0.338448,0.0747117,-0.938015][0.252864,0.281573,0][2.13896,-1.26169,-4.0332][0.333904,-0.154059,-0.929932][0.255011,0.255009,0][1.29056,-1.20093,-4.17104][0.25541,-0.128559,-0.958247][0.280784,0.258479,0][1.22236,-1.7471,-4.04924][0.0594715,-2.74806,0.0522794][0.927125,0.118021,0][2.15699,-1.95716,-3.81433][-0.799069,-0.526853,-0.00359744][0.898295,0.124273,0][1.654,-1.82926,-3.15227][-0.574905,-2.5798,0.0615732][0.903291,0.0992164,0][-2.50818,-3.40356,-2.14144][-0.575183,-0.63885,-0.510916][0.394228,0.0597259,0][-2.87786,-2.71145,-2.46089][-0.652126,-0.486328,-0.581564][0.40175,0.0395536,0][-2.43456,-2.80479,-3.08427][1.04307,0.990601,-0.0833671][0.422219,0.0507887,0][-2.64201,-2.01465,-3.3694][-0.665891,-0.316243,-0.675706][0.402333,0.241142,0][-1.94711,-1.99175,-3.83371][1.28219,-2.20229,0.202326][0.381085,0.240516,0][-2.43456,-2.80479,-3.08427][1.04307,0.990601,-0.0833671][0.397508,0.216636,0][-0.576029,-3.57898,-2.0033][0.0846325,2.65283,0.900071][0.717716,0.00457982,0][-1.06512,-3.81582,-1.35857][0.265319,0.893741,0.361707][0.728938,0.0238856,0][-0.186838,-3.53495,-2.13309][-0.0627887,3.73129,0.961664][0.70736,0.000995784,0][-0.576029,-3.57898,-2.0033][0.0846325,2.65283,0.900071][0.770817,0.449906,0][-0.186838,-3.53495,-2.13309][-0.0627887,3.73129,0.961664][0.760116,0.447542,0][-0.321241,-3.51615,-3.40748][-0.00733347,-0.754838,-0.741609][0.758092,0.408431,0][4.57888,-0.453208,0.139614][0.997404,0.0452308,-0.0560292][0.146731,0.494907,0][4.53668,-1.32476,0.137117][0.987783,-0.145985,-0.0545306][0.12205,0.495754,0][4.32293,-1.29723,-0.703447][0.978944,-0.146001,-0.142658][0.119092,0.470147,0][4.53668,-1.32476,0.137117][0.987783,-0.145985,-0.0545306][0.12205,0.495754,0][4.57888,-0.453208,0.139614][0.997404,0.0452308,-0.0560292][0.146731,0.494907,0][4.45561,-0.402134,1.00219][0.944528,0.0417294,0.32577][0.147538,0.521268,0][-0.0375836,1.98532,3.59912][-0.00937697,0.573501,0.819151][0.025909,0.0979168,0][-0.0113331,2.62808,3.04184][-0.0104633,0.711319,0.702791][0.00628146,0.099174,0][-0.608924,2.73875,3.09682][-0.00211356,0.71614,0.697953][0.00247577,0.0809866,0][-0.310956,3.58994,1.65539][0.167998,0.967631,0.188329][0.907772,0.16141,0][-0.46064,3.2905,2.41873][0.0642918,0.855873,0.513175][0.930927,0.15848,0][0.00816369,3.15714,2.37593][-0.0019916,0.855021,0.518589][0.931299,0.173247,0][3.3503,0.421374,1.4657][-0.890278,-0.219395,-0.399087][0.383782,0.516648,0][3.58312,0.385343,0.796803][-0.949763,-0.222856,-0.21974][0.368207,0.530052,0][3.68244,-0.33077,0.791794][-0.971923,-0.0410873,-0.231684][0.357409,0.514956,0][3.13871,1.10666,1.38918][-0.829496,-0.398842,-0.390976][0.998794,0.259965,0][3.35646,1.0742,0.765443][-0.897961,-0.411747,-0.155337][0.996998,0.274956,0][3.58312,0.385343,0.796803][-0.949763,-0.222856,-0.21974][0.975201,0.278078,0][0.589683,2.75874,3.11321][-0.0398004,0.717402,0.695522][0.663187,0.657313,0][0.4783,3.30049,2.4312][-0.102101,0.856178,0.506493][0.638227,0.664442,0][0.00816369,3.15714,2.37593][-0.0019916,0.855021,0.518589][0.634092,0.649992,0][1.64706,2.66356,2.5951][0.379124,0.710785,0.592494][0.00637025,0.149888,0][1.92041,2.04088,3.05021][0.448108,0.565614,0.692301][0.0255961,0.157803,0][2.56511,2.12459,2.72827][0.48192,0.564307,0.670306][0.0234937,0.177568,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-1.86893,-4.30461,0.891763][-0.252856,-0.963234,0.0907982][0.305431,0.0994345,0][-2.07109,-4.43685,0.541848][-0.187565,-0.956344,0.224111][0.315618,0.0943506,0][-2.78126,-4.10692,0.70723][-0.510404,-0.812213,0.282485][0.307872,0.0711395,0][-2.07109,-4.43685,0.541848][-0.187565,-0.956344,0.224111][0.315618,0.0943506,0][-1.86893,-4.30461,0.891763][-0.252856,-0.963234,0.0907982][0.305431,0.0994345,0][-0.291909,4.13716,0.190957][0.0557931,-0.892555,0.827025][0.827751,0.934395,0][-0.984956,4.19924,0.285077][0.0472786,-1.04725,1.03886][0.806365,0.936269,0][-1.01037,3.91551,0.000208898][0.0548666,-1.04619,1.00904][0.806458,0.923952,0][-0.291909,4.13716,-0.190539][0.301508,1.42618,-1.53025][0.715021,0.982568,0][-0.984956,4.19924,-0.284659][0.232641,1.02218,-1.03886][0.693599,0.983967,0][-0.959542,4.48297,0.000208892][0.22758,1.02374,-1.05941][0.693965,0.971656,0][0.869455,3.10096,-1.13813][-0.250275,-0.928686,0.273688][0.471323,0.277936,0][1.4091,3.0928,-0.213347][-0.377019,-0.92272,0.0802779][0.500924,0.29018,0][0.693127,3.29738,-0.272823][-0.185411,-0.97955,0.0781331][0.482417,0.303074,0][1.38805,3.09386,0.318708][-0.367293,-0.923281,-0.11246][0.510808,0.303113,0][0.778623,3.08934,1.1521][-0.174533,-0.927163,-0.331521][0.514024,0.333479,0][0.672146,3.29516,0.259289][-0.171269,-0.980183,-0.0995447][0.492336,0.31598,0][3.13871,1.10666,1.38918][-0.829496,-0.398842,-0.390976][0.901185,0.218754,0][2.36373,1.14149,2.47029][-0.64835,-0.416328,-0.637427][0.902603,0.259412,0][2.51862,1.75534,1.76555][-0.669778,-0.553362,-0.495165][0.880771,0.240389,0][1.65468,1.77109,2.57901][-0.451886,-0.581471,-0.676528][0.573646,0.340878,0][2.51862,1.75534,1.76555][-0.669778,-0.553362,-0.495165][0.576462,0.306332,0][2.36373,1.14149,2.47029][-0.64835,-0.416328,-0.637427][0.592973,0.320645,0][-4.45327,0.553368,0.264161][-0.970234,0.235025,-0.0583954][0.135933,0.302287,0][-4.57888,-0.316974,0.244022][-0.997558,0.0474115,-0.0512768][0.160856,0.295826,0][-4.45413,-0.283026,1.11188][-0.946835,0.0397166,0.319258][0.164413,0.322244,0][-4.57888,-0.316974,0.244022][-0.997558,0.0474115,-0.0512768][0.160856,0.295826,0][-4.45327,0.553368,0.264161][-0.970234,0.235025,-0.0583954][0.135933,0.302287,0][-4.25166,0.520448,-0.55186][-0.962345,0.237321,-0.132552][0.128604,0.278379,0][-0.664082,-3.81604,1.62037][0.167401,0.885306,-0.433832][0.721232,0.115314,0][0.627646,-3.80711,1.59885][-0.209966,0.883874,-0.417948][0.685555,0.115989,0][-0.0238169,-4.07755,1.07257][0.00507075,0.959264,-0.282465][0.699501,0.0993666,0][0.627646,-3.80711,1.59885][-0.209966,0.883874,-0.417948][0.804538,0.770287,0][1.56183,-3.79782,0.677034][-0.395549,0.893021,-0.214606][0.777859,0.744428,0][0.553802,-4.07062,0.884738][-0.18429,0.958614,-0.217017][0.809489,0.749406,0][4.06136,1.28151,0.974886][0.865694,0.398415,0.303052][0.189036,0.518881,0][4.33508,0.459159,1.01192][0.921612,0.221323,0.318821][0.169842,0.520732,0][4.45641,0.410144,0.172903][0.971123,0.23107,-0.0593928][0.169093,0.49509,0][4.33508,0.459159,1.01192][0.921612,0.221323,0.318821][0.622538,0.329687,0][4.06136,1.28151,0.974886][0.865694,0.398415,0.303052][0.633869,0.305709,0][3.65478,1.25645,1.65949][0.840937,0.392694,0.372313][0.656775,0.313983,0][-1.01037,3.91551,0.000208898][0.0548666,-1.04619,1.00904][0.806458,0.923952,0][-0.438658,3.9588,0.000208842][0.12126,-1.60153,1.40429][0.823849,0.926118,0][-0.291909,4.13716,0.190957][0.0557931,-0.892555,0.827025][0.827751,0.934395,0][-0.0971423,3.46798,0.102702][-0.271165,-0.12141,0.322146][0.91513,0.910189,0][-0.291909,4.13716,0.190957][0.0557931,-0.892555,0.827025][0.936415,0.909204,0][-0.438658,3.9588,0.000208842][0.12126,-1.60153,1.40429][0.932707,0.915214,0][-0.959542,4.48297,0.000208892][0.22758,1.02374,-1.05941][0.859437,0.947056,0][-0.145161,4.31553,0.000208879][0.165302,0.803969,-0.878956][0.884835,0.946009,0][-0.291909,4.13716,-0.190539][0.301508,1.42618,-1.53025][0.881799,0.952385,0][-0.0971422,3.46798,-0.102285][0.243201,0.0410466,-0.225485][0.940522,0.867325,0][-0.291909,4.13716,-0.190539][0.301508,1.42618,-1.53025][0.920256,0.874437,0][-0.145161,4.31553,0.000208879][0.165302,0.803969,-0.878956][0.91438,0.867411,0][1.45899,-4.01044,2.28937][0.311211,-0.822192,0.476601][0.639294,0.704691,0][1.78682,-3.4213,2.81015][0.417721,-0.644175,0.64074][0.665271,0.705894,0][1.27094,-3.54505,3.23213][0.425958,-0.64871,0.630662][0.664431,0.722254,0][1.0719,-4.3127,1.70438][0.147505,-0.967632,0.204771][0.618066,0.69775,0][1.45899,-4.01044,2.28937][0.311211,-0.822192,0.476601][0.639294,0.704691,0][1.03963,-4.15625,2.63866][0.37749,-0.819887,0.430448][0.637696,0.718867,0][-0.0173977,-2.36337,3.27022][0.0550604,0.496625,-0.866217][0.538254,0.143782,0][0.604201,-2.34692,3.21939][-0.195101,0.504719,-0.840949][0.557253,0.144465,0][-0.0177661,-2.94443,2.85742][-0.0294074,0.659388,-0.751227][0.537136,0.161512,0][-0.0167534,-3.43418,2.34038][0.000401077,0.799937,-0.600083][0.709061,0.137798,0][-1.28173,-3.42496,1.967][0.338401,0.775031,-0.533678][0.74378,0.125076,0][-0.559911,-2.94829,2.79898][0.211134,0.630418,-0.746991][0.730898,0.151012,0][2.67239,-2.34604,1.84712][-0.705737,0.512532,-0.489129][0.344192,0.44004,0][1.76047,-2.32134,2.74498][-0.491964,0.489053,-0.720276][0.360269,0.415175,0][2.91329,-1.69548,2.00013][-0.749941,0.321026,-0.578386][0.360175,0.454645,0][2.91329,-1.69548,2.00013][-0.749941,0.321026,-0.578386][0.360175,0.454645,0][3.26236,-1.71161,1.39594][-0.849938,0.363944,-0.380985][0.347398,0.468591,0][2.67239,-2.34604,1.84712][-0.705737,0.512532,-0.489129][0.344192,0.44004,0][-0.937719,-1.87695,-3.36098][0.450585,0.386018,1.26189][0.187859,0.804176,0][-1.13901,-1.81251,-4.02251][-0.37949,-0.19526,-0.988543][0.208101,0.804236,0][-1.2419,-2.26246,-3.89636][-0.341626,-1.48973,-0.0508351][0.204762,0.818167,0][-0.478381,-2.4287,-4.17371][-0.290085,-1.26225,-0.0420152][0.3371,0.224385,0][-1.2419,-2.26246,-3.89636][-0.341626,-1.48973,-0.0508351][0.360082,0.230912,0][-1.13901,-1.81251,-4.02251][-0.37949,-0.19526,-0.988543][0.356085,0.244446,0][1.04872,-2.92088,2.65506][-0.295844,0.650883,-0.699162][0.569723,0.162826,0][-0.0177661,-2.94443,2.85742][-0.0294074,0.659388,-0.751227][0.537136,0.161512,0][0.604201,-2.34692,3.21939][-0.195101,0.504719,-0.840949][0.557253,0.144465,0][1.92061,-1.65854,2.98534][-0.564745,0.311802,-0.764096][0.378031,0.427668,0][2.91329,-1.69548,2.00013][-0.749941,0.321026,-0.578386][0.360175,0.454645,0][1.76047,-2.32134,2.74498][-0.491964,0.489053,-0.720276][0.360269,0.415175,0][3.33696,-1.19972,-2.92291][0.749314,-0.140576,-0.647122][0.549519,0.59429,0][3.18094,-2.02375,-2.77757][0.708703,-0.344914,-0.615447][0.524382,0.591971,0][2.71962,-2.09343,-3.43247][0.64307,-0.362476,-0.674591][0.522095,0.570572,0][2.53899,-2.52889,-3.29331][-1.73755,-1.1758,-0.0163181][0.245219,0.215579,0][2.15699,-1.95716,-3.81433][-0.799069,-0.526853,-0.00359744][0.255786,0.233753,0][2.71962,-2.09343,-3.43247][0.64307,-0.362476,-0.674591][0.238877,0.228523,0][-3.91024,0.591408,1.85184][-0.892227,0.226861,0.390467][0.139129,0.351391,0][-4.01955,-0.239687,1.88004][-0.915197,0.0405996,0.400958][0.163124,0.346664,0][-3.75332,-0.248909,2.71213][-0.872093,0.0389062,0.487791][0.165817,0.372161,0][-4.33328,0.58586,1.10833][-0.924245,0.224724,0.308659][0.139425,0.327976,0][-4.05226,1.41964,1.07143][-0.860404,0.412102,0.299796][0.113136,0.332966,0][-4.1644,1.39155,0.284223][-0.908841,0.411532,-0.0681943][0.109824,0.309023,0][-3.4401,-2.80566,-1.94166][-0.681983,-0.497126,-0.536437][0.384345,0.02709,0][-2.99356,-3.51749,-1.68841][-0.583633,-0.648457,-0.488748][0.379105,0.049401,0][-3.27809,-3.51593,-1.08906][-0.745948,-0.654232,-0.124667][0.360001,0.0436315,0][-1.98969,-4.44366,-0.640122][-0.278599,-0.954793,0.103693][0.351787,0.0925702,0][-2.67764,-4.12288,-0.888504][-0.572416,-0.819221,-0.0348811][0.356693,0.0686501,0][-2.44134,-4.12977,-1.37648][-0.404322,-0.820071,-0.404979][0.37227,0.0735475,0][-1.5059,-3.81118,-0.862642][0.408347,0.88702,0.215519][0.741769,0.0385788,0][-1.70655,-3.79939,0.41555][0.481217,0.87208,-0.0889189][0.748937,0.077417,0][-1.07146,-4.07941,-0.13679][0.285524,0.957267,0.0460048][0.727105,0.0613343,0][-0.659377,-4.08018,-0.825308][0.177471,0.960941,0.21236][0.714898,0.0407255,0][-0.0949779,-4.07084,-1.05708][0.0266729,0.954268,0.297761][0.699126,0.034224,0][-1.06512,-3.81582,-1.35857][0.265319,0.893741,0.361707][0.728938,0.0238856,0][3.22443,-2.85668,2.2834][0.760428,-0.490457,0.425678][0.0651392,0.563546,0][2.80887,-3.56994,1.99724][0.671606,-0.65917,0.338291][0.0396968,0.555743,0][3.02541,-3.46342,1.37505][0.670579,-0.655791,0.346788][0.0447316,0.536518,0][3.47867,-2.78698,1.56454][0.779162,-0.48794,0.393474][0.0695306,0.541389,0][3.79747,-2.02343,1.67964][0.853779,-0.307567,0.420075][0.0949211,0.543961,0][3.51986,-2.04995,2.46497][0.82365,-0.309621,0.475116][0.091499,0.568116,0][-0.767706,-2.88482,3.92281][-0.0553053,-0.489242,0.870393][0.17425,0.072155,0][-0.674132,-3.59173,3.44497][-0.00916164,-0.643692,0.76523][0.195923,0.0745149,0][-0.0182071,-3.46667,3.37481][0.00765025,-0.643206,0.765655][0.192565,0.094652,0][-0.674132,-3.59173,3.44497][-0.00916164,-0.643692,0.76523][0.195923,0.0745149,0][-0.767706,-2.88482,3.92281][-0.0553053,-0.489242,0.870393][0.17425,0.072155,0][-1.49406,-2.87395,3.7086][-0.42738,-0.48721,0.761559][0.173404,0.0499612,0][0.100247,-3.48992,-3.43834][-0.761105,-0.0492717,0.00483812][0.980296,3.43357e-005,0][0.0627435,-2.90729,-3.84954][-0.9396,-0.0580783,0.00340589][0.998146,0,0][0.389396,-2.89636,-3.86626][-0.0126256,0.80417,-0.0135452][0.997857,0.00998831,0][0.0674111,-2.9231,-2.8314][-2.42751,-0.154908,0.0133374][0.436853,0.172189,0][0.389396,-2.89636,-3.86626][-0.0126256,0.80417,-0.0135452][0.405213,0.180765,0][0.0627435,-2.90729,-3.84954][-0.9396,-0.0580783,0.00340589][0.405724,0.171855,0][-2.38122,-1.18789,3.71463][-0.525174,-0.147466,0.83812][0.121241,0.0240378,0][-2.4085,-0.349162,3.75264][-0.52166,0.038094,0.852303][0.0955858,0.0237974,0][-3.18804,-0.307349,3.37328][-0.610908,0.0333891,0.790997][0.0937563,0,0][-1.69854,-1.22609,4.23484][-0.445865,-0.144927,0.88329][0.122892,0.0448772,0][-1.62514,-2.077,4.03955][-0.440067,-0.322189,0.838174][0.148952,0.0465186,0][-0.831739,-2.09045,4.26973][-0.0811125,-0.322498,0.943088][0.149924,0.0707598,0][1.45517,1.63239,-2.83207][-0.252313,-2.71606,1.25731][0.465557,0.215579,0][1.93694,1.68422,-2.48118][-0.585438,-1.84457,1.07627][0.482165,0.215795,0][1.60994,2.32399,-2.0715][-0.408672,-0.716942,0.564784][0.476758,0.236481,0][1.82627,1.65282,-3.48731][0.282275,-2.59671,0.106814][0.690908,0.533563,0][1.93694,1.68422,-2.48118][-0.585438,-1.84457,1.07627][0.669293,0.511516,0][1.45517,1.63239,-2.83207][-0.252313,-2.71606,1.25731][0.6859,0.511732,0][-0.0177157,-4.22677,0.00639689][-0.00691331,0.999975,-0.001344][0.696188,0.0668709,0][0.919172,-4.06286,-0.561953][-0.237453,0.961531,0.138111][0.671713,0.0503972,0][0.493368,-4.06243,-0.960538][-0.138622,0.957354,0.253491][0.683054,0.0377786,0][0.493368,-4.06243,-0.960538][-0.138622,0.957354,0.253491][0.683054,0.0377786,0][0.919172,-4.06286,-0.561953][-0.237453,0.961531,0.138111][0.671713,0.0503972,0][1.504,-3.79967,-0.911301][-0.373797,0.895959,0.239863][0.658519,0.0402022,0][0.693127,3.29738,-0.272823][-0.185411,-0.97955,0.0781331][0.482417,0.303074,0][0.0752346,3.29287,-0.766961][0.00202308,-0.982522,0.186135][0.459641,0.302265,0][0.869455,3.10096,-1.13813][-0.250275,-0.928686,0.273688][0.471323,0.277936,0][-0.403879,3.08452,-1.40727][0.104555,-0.926756,0.36082][0.439024,0.293888,0][0.390317,3.09966,-1.39609][-0.0969188,-0.923797,0.370414][0.456074,0.280281,0][0.0752346,3.29287,-0.766961][0.00202308,-0.982522,0.186135][0.459641,0.302265,0][-2.84984,-2.299,-1.63965][0.751173,0.51215,0.416463][0.901506,0.490424,0][-2.33334,-2.58036,-2.02819][2.18026,-0.903558,-0.016946][0.920767,0.497086,0][-2.69207,-1.64051,-2.34598][0.695942,0.328204,0.638708][0.899479,0.52027,0][-2.69207,-1.64051,-2.34598][0.695942,0.328204,0.638708][0.598888,0.527596,0][-2.12647,-2.06619,-2.62858][1.32067,-1.21719,0.121371][0.581902,0.541007,0][-2.28504,-0.939491,-2.95471][0.607961,0.134504,0.782491][0.585952,0.506457,0][1.19208,3.60849,1.25048][-0.077448,0.956712,0.280543][0.0188724,0.900813,0][1.72388,3.31873,1.83347][0.196239,0.85613,0.478049][0.0101836,0.876653,0][2.03522,3.3184,1.4865][0.494949,0.853927,0.160726][0.0233968,0.873125,0][1.30232,3.17761,2.03279][0.272548,0.859196,0.433012][0.275172,0.707193,0][0.902465,3.46329,1.38815][0.547698,5.82811,0.925455][0.299617,0.70418,0][0.646106,3.59966,1.57939][0.228235,0.971365,0.0660186][0.301547,0.714623,0][3.97464,-1.20566,1.73754][0.894356,-0.131955,0.427452][0.119919,0.544798,0][4.00864,-0.366262,1.76008][0.906042,0.0384041,0.421441][0.143626,0.544601,0][3.7148,-0.317072,2.59351][0.867897,0.039208,0.495194][0.142146,0.570155,0][4.41717,-1.27437,0.990746][0.93369,-0.133801,0.332144][0.122877,0.521839,0][4.21803,-2.12499,0.974498][0.887388,-0.314394,0.337194][0.0967336,0.52232,0][4.3293,-2.17194,0.161126][0.941031,-0.333696,-0.0557431][0.0959416,0.497464,0][-1.97638,2.79427,-2.48953][-0.536472,0.699311,-0.4724][0.0251372,0.241737,0][-2.45578,1.72504,-3.09417][-0.187848,0.244696,-0.283773][0.0558077,0.215579,0][-2.72286,2.05735,-2.31365][-0.624672,0.551455,-0.552885][0.0556362,0.240127,0][-2.45578,1.72504,-3.09417][-0.187848,0.244696,-0.283773][0.750522,0.570572,0][-2.37767,1.69347,-2.06505][0.113063,-2.89537,-0.0458976][0.733479,0.597145,0][-2.77246,1.68212,-2.55968][0.0202695,-0.569857,-0.00309707][0.734073,0.578575,0][2.84322,1.27684,-2.88922][-2.04576,-0.252092,-0.0321276][0.165415,0.883446,0][2.71657,1.98258,-2.3376][2.08727,1.90135,-2.04943][0.144857,0.888057,0][3.23215,2.04822,-1.84649][0.651161,0.596628,-0.469067][0.136665,0.869647,0][2.47061,1.64192,-3.11986][0.303706,0.236699,-0.155802][0.899461,0.799037,0][2.71657,1.98258,-2.3376][2.08727,1.90135,-2.04943][0.872948,0.804773,0][2.71189,1.5624,-2.59192][-0.69419,-2.46917,-0.0638093][0.8825,0.793298,0][0.451938,3.47678,-1.58198][0.030598,0.986881,-0.158526][0.732443,0.180577,0][0.242637,3.43438,-0.813593][-0.00360188,0.999269,-0.0380686][0.756122,0.18308,0][0.772228,3.62052,-1.51433][-0.118314,0.971251,-0.206577][0.732279,0.188956,0][0.649977,3.20121,-2.28913][0.142994,0.855164,-0.498244][0.970006,0.512326,0][0.451938,3.47678,-1.58198][0.030598,0.986881,-0.158526][0.950611,0.498223,0][0.772228,3.62052,-1.51433][-0.118314,0.971251,-0.206577][0.956258,0.488864,0][1.7085,2.07783,-3.29903][0.299795,0.556717,-0.774719][0.159723,0.926703,0][1.42841,2.77085,-2.78764][0.227064,0.704316,-0.672593][0.138612,0.935546,0][1.93866,2.76408,-2.45198][0.559864,0.690978,-0.457276][0.135079,0.918364,0][1.04943,3.6181,-1.32886][0.267675,0.963372,0.0162605][0.0891398,0.936839,0][1.51554,3.33122,-1.91806][0.45754,0.846626,-0.27181][0.112383,0.929056,0][1.11367,3.33783,-2.18779][0.104081,0.855344,-0.507498][0.115308,0.94267,0][-3.04526,2.18115,2.22367][-0.696709,0.60886,0.379324][0.087942,0.375036,0][-2.56892,2.81537,1.8519][-0.600964,0.745669,0.287784][0.0622489,0.369372,0][-2.75894,2.7093,1.29157][-0.602107,0.740528,0.298472][0.0636005,0.351463,0][-3.26615,2.09777,1.56281][-0.728013,0.597079,0.336889][0.0883697,0.354186,0][-3.6562,1.38186,1.75591][-0.83031,0.418236,0.368327][0.113938,0.35427,0][-3.41543,1.43701,2.50369][-0.786742,0.429279,0.443573][0.114626,0.377588,0][3.35646,1.0742,0.765443][-0.897961,-0.411747,-0.155337][0.581726,0.262374,0][3.13871,1.10666,1.38918][-0.829496,-0.398842,-0.390976][0.588873,0.281194,0][2.81651,1.74038,1.25318][-0.770083,-0.558477,-0.308343][0.57302,0.28887,0][2.55678,2.28342,0.607303][-0.699392,-0.705399,-0.115161][0.549493,0.282669,0][2.47498,2.2657,-0.865875][-0.703195,-0.680491,0.206031][0.519278,0.249206,0][3.09358,1.68999,0.113966][-0.844063,-0.536095,0.0126173][0.557298,0.256694,0][-1.01524,2.06912,-3.4541][-0.258917,0.550924,-0.793375][0.449556,0.69915,0][-0.879167,2.68295,-2.93595][-0.217421,0.717773,-0.661461][0.446322,0.723794,0][-0.327652,2.80686,-3.16385][-0.192074,0.721525,-0.665213][0.427739,0.722566,0][-0.264513,3.32988,-2.48597][-0.217187,0.864554,-0.453184][0.428993,0.748188,0][-0.327652,2.80686,-3.16385][-0.192074,0.721525,-0.665213][0.427739,0.722566,0][-0.879167,2.68295,-2.93595][-0.217421,0.717773,-0.661461][0.446322,0.723794,0][-0.0156618,-2.78941,3.85554][-0.00571556,-0.490364,0.871499][0.171866,0.0952089,0][-0.0115876,-2.03007,4.1978][-0.0101687,-0.319014,0.947695][0.148659,0.0958706,0][-0.831739,-2.09045,4.26973][-0.0811125,-0.322498,0.943088][0.149924,0.0707598,0][0.736628,-2.85933,3.93874][0.0716128,-0.500669,0.862671][0.174535,0.118153,0][0.638586,-3.56809,3.43342][0.0472193,-0.655335,0.753861][0.196129,0.114655,0][1.27094,-3.54505,3.23213][0.425958,-0.64871,0.630662][0.195872,0.134,0][-1.37128,3.60184,0.981437][-0.241285,0.96696,-0.0822829][0.654686,0.261989,0][-2.00632,3.3273,1.4364][-0.468559,0.871995,0.141692][0.644341,0.278836,0][-1.69993,3.31497,1.79036][-0.193078,0.862307,0.468132][0.631834,0.272879,0][-1.28031,3.16673,1.99903][-0.245791,0.859383,0.448383][0.622538,0.261145,0][-0.872957,3.45246,1.36615][-0.487627,5.81739,0.999538][0.639649,0.249343,0][-1.1612,3.59775,1.22317][0.0596052,0.965994,0.251601][0.646152,0.257952,0][-3.76585,-2.80979,-1.25692][-0.845835,-0.502526,-0.178975][0.362526,0.0205554,0][-3.27809,-3.51593,-1.08906][-0.745948,-0.654232,-0.124667][0.360001,0.0436315,0][-3.31464,-3.39263,-0.429034][-0.754633,-0.645243,-0.119124][0.339656,0.0433367,0][-3.79915,-2.71558,-0.502196][-0.859378,-0.495449,-0.12649][0.339358,0.0210527,0][-4.14111,-1.96188,-0.558309][-0.93674,-0.322544,-0.135954][0.338878,0.00176839,0][-4.10562,-2.02262,-1.38201][-0.919533,-0.326351,-0.218983][0.364099,0.000661793,0][2.91022,0.776809,-3.09841][0.451961,0.229621,-0.437329][0.292626,0.800113,0][3.36116,-0.358737,-2.9395][0.745345,0.0837381,-0.661399][0.28978,0.762595,0][2.87989,-0.367719,-3.62777][0.685243,0.0851222,-0.723323][0.314198,0.768857,0][2.91022,0.776809,-3.09841][0.451961,0.229621,-0.437329][0.647765,0.766194,0][2.7649,0.56666,-3.4858][-1.9698,1.80624,-0.141748][0.633891,0.768852,0][2.73895,0.606744,-2.41028][-0.865221,0.796526,-0.0505668][0.658131,0.74662,0][-0.936869,-4.46165,-1.80433][0.0686134,-0.960862,-0.268397][0.390493,0.117738,0][-1.27679,-4.14505,-2.46562][-0.120841,-0.815176,-0.566467][0.409044,0.102017,0][-0.747991,-3.99837,-2.56718][-0.148859,-0.816944,-0.557175][0.413579,0.114338,0][-0.544085,-4.31551,-1.8828][-0.0512573,-0.966971,-0.24968][0.393899,0.126402,0][-0.747991,-3.99837,-2.56718][-0.148859,-0.816944,-0.557175][0.413579,0.114338,0][-0.252153,-4.13,-2.7726][-0.213146,-0.823856,-0.525195][0.421574,0.128964,0][-2.81517,1.19503,2.02102][0.720454,-0.435106,-0.540026][0.0396043,0.740431,0][-2.39737,1.15607,2.49692][0.576985,-0.439786,-0.688242][0.0301839,0.752332,0][-2.56455,0.479388,2.67539][0.653624,-0.239394,-0.71796][0.0136957,0.738362,0][-3.09668,-0.186089,2.21352][0.815726,-0.04263,-0.576866][0.807397,0.215579,0][-2.63427,-0.232529,2.74873][0.682912,-0.0419184,-0.729297][0.828778,0.216473,0][-2.60726,-0.953239,2.7189][0.684821,0.149501,-0.713211][0.830462,0.237081,0][-1.72816,-4.14722,-2.17892][-0.463672,-0.816969,-0.342884][0.398916,0.0906155,0][-2.12511,-3.52217,-2.68284][-0.556551,-0.65357,-0.51293][0.412054,0.069912,0][-1.63007,-3.34335,-3.15577][-0.0880615,-0.714981,-0.785463][0.427716,0.0796007,0][-1.97687,-3.27849,-2.9864][1.68487,3.12243,-0.0250925][0.80843,0.413686,0][-1.99484,-3.30296,-1.41201][2.64493,2.87025,0.996407][0.815953,0.46123,0][-1.63007,-3.34335,-3.15577][-0.0880615,-0.714981,-0.785463][0.797315,0.410163,0][2.82525,-2.98629,-0.463422][-0.718231,0.68185,0.138651][0.277332,0.467762,0][2.78065,-2.9578,0.621209][-0.735732,0.637422,-0.228893][0.304585,0.448868,0][3.27578,-2.41845,0.0790753][-0.84623,0.5245,-0.0937853][0.303297,0.47586,0][2.67239,-2.34604,1.84712][-0.705737,0.512532,-0.489129][0.344192,0.44004,0][3.27578,-2.41845,0.0790753][-0.84623,0.5245,-0.0937853][0.303297,0.47586,0][2.78065,-2.9578,0.621209][-0.735732,0.637422,-0.228893][0.304585,0.448868,0][-3.3089,-0.292378,-2.8334][-0.738941,0.0482543,-0.672039][0.96239,0.570572,0][-2.87673,0.845002,-3.03806][1.36861,-0.00977806,-0.28906][0.999697,0.575439,0][-2.7169,0.639916,-3.43025][0.817295,0.930943,-0.00828306][0.99653,0.587556,0][-2.27894,0.259927,-2.92426][0.55078,0.627368,-0.005582][0.255457,0.975032,0][-2.7169,0.639916,-3.43025][0.817295,0.930943,-0.00828306][0.250407,0.997489,0][-2.87673,0.845002,-3.03806][1.36861,-0.00977806,-0.28906][0.237721,0.99175,0][3.23215,2.04822,-1.84649][0.651161,0.596628,-0.469067][0.136665,0.869647,0][2.73356,2.71946,-1.53172][0.55372,0.711165,-0.433172][0.118673,0.886219,0][2.9925,2.69555,-0.979218][0.710092,0.698554,-0.0882762][0.10633,0.872471,0][1.62428,3.60392,-0.523175][0.233714,0.960742,0.149509][0.0732701,0.91205,0][2.35034,3.2792,-0.752786][0.546801,0.837262,0.00057527][0.0896351,0.892746,0][2.14504,3.29259,-1.18863][0.383606,0.846135,-0.370002][0.0993893,0.903552,0][-0.378711,2.74002,1.96182][0.113463,-0.842432,-0.526721][0.508502,0.370107,0][0.397339,2.74586,1.97257][-0.0882714,-0.853005,-0.514385][0.525248,0.356734,0][-0.00758104,2.28747,2.57443][0.0126607,-0.71334,-0.700703][0.532861,0.374304,0][-0.975476,2.28882,2.38408][0.238729,-0.724246,-0.646897][0.802052,0.511148,0][-1.7991,2.31224,1.85789][0.450556,-0.733493,-0.508907][0.785338,0.535686,0][-1.09689,2.74736,1.675][0.256284,-0.858496,-0.444188][0.776202,0.511485,0][-2.01868,2.76958,-0.330273][0.511786,-0.854896,0.0850214][0.129423,0.743209,0][-1.97583,2.77103,0.444219][0.474429,-0.870274,-0.132439][0.110392,0.757311,0][-2.60231,2.34654,0.114588][0.680787,-0.73177,-0.0322747][0.107219,0.73527,0][-2.47124,2.33558,-0.871942][0.661034,-0.711713,0.237695][0.132695,0.719064,0][-1.98456,2.31814,-1.74684][0.516645,-0.717392,0.467362][0.157917,0.708432,0][-1.77617,2.75627,-1.06732][0.44504,-0.859261,0.252211][0.149449,0.732513,0][0.390317,3.09966,-1.39609][-0.0969188,-0.923797,0.370414][0.456074,0.280281,0][-0.403879,3.08452,-1.40727][0.104555,-0.926756,0.36082][0.439024,0.293888,0][-0.590996,2.75599,-2.01931][0.162007,-0.841176,0.515923][0.426399,0.280044,0][-1.77617,2.75627,-1.06732][0.44504,-0.859261,0.252211][0.698672,0.467689,0][-1.27709,2.74582,-1.65994][0.341996,-0.828226,0.443938][0.683212,0.452642,0][-0.873119,3.07699,-1.16195][0.247835,-0.9317,0.265542][0.700635,0.439294,0][-1.04061,-2.32689,-3.37362][-0.418262,-1.82898,-0.0643852][0.990578,0.759672,0][-0.435122,-2.46369,-3.42102][-0.353244,-1.53993,-0.0523709][0.971635,0.758515,0][-0.332234,-2.01374,-3.40838][0.341491,0.59755,3.27831][0.972458,0.744428,0][-0.334319,-1.98905,-4.29655][-0.539444,-0.40246,-2.07419][0.693599,0.935588,0][-0.332234,-2.01374,-3.40838][0.341491,0.59755,3.27831][0.720759,0.935231,0][-0.435122,-2.46369,-3.42102][-0.353244,-1.53993,-0.0523709][0.720889,0.949033,0][1.39623,-3.52855,-3.11031][-0.0148802,1.78642,-0.0347417][0.769323,0.947184,0][1.62016,-3.527,-3.10835][-0.0192065,1.01495,-0.00856415][0.774697,0.951425,0][1.32278,-4.14068,-2.52622][0.0775339,-0.831089,-0.550708][0.755874,0.960392,0][1.62016,-3.527,-3.10835][-0.0192065,1.01495,-0.00856415][0.328861,0.859432,0][1.39623,-3.52855,-3.11031][-0.0148802,1.78642,-0.0347417][0.328801,0.853247,0][1.67699,-3.49462,-1.48612][-0.34569,5.17696,0.6244][0.378458,0.860588,0][-2.33334,-2.58036,-2.02819][2.18026,-0.903558,-0.016946][0.779241,0.00151819,0][-2.84984,-2.299,-1.63965][0.751173,0.51215,0.416463][0.79762,0.0127185,0][-2.3952,-2.73467,-1.75859][0.353761,0.335966,-0.0282743][0.77927,0.0097655,0][-2.84859,-2.88121,-0.402485][0.759337,0.640485,0.114829][0.791481,0.0507989,0][-2.27851,-2.89933,-1.72441][1.82615,1.46338,0.232478][0.773952,0.01101,0][-2.84984,-2.299,-1.63965][0.751173,0.51215,0.416463][0.79762,0.0127185,0][2.53843,-3.4653,-2.20059][0.555446,-0.647177,-0.522151][0.261635,0.847012,0][2.90513,-2.79209,-2.52414][0.631011,-0.509404,-0.585092][0.284529,0.856966,0][3.44364,-2.90631,-2.00889][0.676482,-0.505883,-0.535215][0.27378,0.877359,0][3.01344,-3.61568,-1.74556][0.565709,-0.653693,-0.502651][0.250833,0.864577,0][2.47175,-4.1937,-1.44209][0.353312,-0.834963,-0.421908][0.230699,0.850787,0][2.08429,-4.02225,-1.81142][0.408612,-0.831649,-0.376026][0.24077,0.836912,0][-1.43899,-3.42263,-1.84799][0.539165,2.02488,0.565707][0.743808,0.00835609,0][-1.99484,-3.30296,-1.41201][2.64493,2.87025,0.996407][0.761242,0.0210431,0][-1.06512,-3.81582,-1.35857][0.265319,0.893741,0.361707][0.728938,0.0238856,0][-1.63007,-3.34335,-3.15577][-0.0880615,-0.714981,-0.785463][0.797315,0.410163,0][-1.99484,-3.30296,-1.41201][2.64493,2.87025,0.996407][0.815953,0.46123,0][-1.43899,-3.42263,-1.84799][0.539165,2.02488,0.565707][0.79717,0.450642,0][-0.556994,-0.252344,-4.44756][1.98679,-0.434652,0.0564344][0.335353,0.290944,0][-0.537014,0.681982,-4.33827][-1.01668,0.92527,-0.0400112][0.332963,0.319416,0][-0.370038,0.604854,-4.42733][1.75497,-0.430725,-0.0305402][0.328015,0.316745,0][-0.537014,0.681982,-4.33827][-1.01668,0.92527,-0.0400112][0.332963,0.319416,0][-0.382212,1.42227,-4.14936][-0.186343,0.391843,-0.900963][0.326829,0.341711,0][-0.370038,0.604854,-4.42733][1.75497,-0.430725,-0.0305402][0.328015,0.316745,0][-1.9708,2.00423,3.03846][-0.403115,0.589599,0.699909][0.0272674,0.993188,0][-2.2122,1.27675,3.41071][-0.455426,0.421972,0.783918][0.00206603,0.999207,0][-1.59552,1.32827,3.88991][-0.421478,0.422199,0.802561][0,0.981926,0][-1.42305,2.08173,3.4712][-0.396547,0.590482,0.702909][0.021982,0.055638,0][-1.59552,1.32827,3.88991][-0.421478,0.422199,0.802561][0.0448899,0.0498331,0][-0.833072,1.31595,4.10589][-0.0648496,0.419346,0.905507][0.0458058,0.073129,0][1.654,-1.82926,-3.15227][-0.574905,-2.5798,0.0615732][0.466183,0.53644,0][2.14068,-1.92564,-2.80002][-1.99434,-1.25815,0.00701034][0.451376,0.53973,0][2.35583,-1.01572,-2.99607][-0.593187,0.130486,0.79442][0.444156,0.51207,0][2.8556,-1.01707,-2.53239][-0.733794,0.169402,0.657913][0.257182,0.549098,0][2.35583,-1.01572,-2.99607][-0.593187,0.130486,0.79442][0.241892,0.551997,0][2.14068,-1.92564,-2.80002][-1.99434,-1.25815,0.00701034][0.230699,0.525649,0][-1.70655,-3.79939,0.41555][0.481217,0.87208,-0.0889189][0.748937,0.077417,0][-1.5059,-3.81118,-0.862642][0.408347,0.88702,0.215519][0.741769,0.0385788,0][-2.22249,-3.39767,-0.763915][0.603677,0.771501,0.200899][0.767063,0.0406538,0][-2.35397,-3.38845,0.1155][0.625832,0.778878,-0.0410317][0.771827,0.0673813,0][-1.92107,-3.40551,1.35912][0.54751,0.760938,-0.348147][0.76104,0.105833,0][-1.70655,-3.79939,0.41555][0.481217,0.87208,-0.0889189][0.748937,0.077417,0][-0.251554,3.07791,1.32985][0.0931118,-0.923165,-0.372956][0.495564,0.355732,0][0.778623,3.08934,1.1521][-0.174533,-0.927163,-0.331521][0.514024,0.333479,0][1.12008,2.75846,1.70287][-0.266053,-0.843867,-0.465944][0.535334,0.337739,0][1.68548,2.76396,1.18161][-0.449569,-0.841283,-0.300217][0.537235,0.315522,0][1.12008,2.75846,1.70287][-0.266053,-0.843867,-0.465944][0.535334,0.337739,0][0.778623,3.08934,1.1521][-0.174533,-0.927163,-0.331521][0.514024,0.333479,0][3.74473,2.00579,0.203849][0.82262,0.561343,-0.0904994][0.0855245,0.830509,0][3.17864,2.69581,0.210515][0.71105,0.6942,-0.111778][0.0752597,0.852867,0][3.09438,2.72169,0.804742][0.65869,0.698529,0.279613][0.0575932,0.847859,0][2.43051,3.2953,0.645805][0.455285,0.84833,0.270279][0.0514533,0.873392,0][3.09438,2.72169,0.804742][0.65869,0.698529,0.279613][0.0575932,0.847859,0][3.17864,2.69581,0.210515][0.71105,0.6942,-0.111778][0.0752597,0.852867,0][-3.04878,-3.36812,1.43343][-0.715444,-0.625103,0.312068][0.283885,0.0568154,0][-3.48183,-2.6667,1.6344][-0.802019,-0.480013,0.355463][0.275386,0.036588,0][-3.86419,-2.77717,0.978718][-0.806883,-0.488957,0.331454][0.29426,0.0252009,0][-3.38478,-3.48793,0.862681][-0.701895,-0.63765,0.317405][0.300339,0.0471193,0][-2.78126,-4.10692,0.70723][-0.510404,-0.812213,0.282485][0.307872,0.0711395,0][-2.50662,-3.97567,1.17773][-0.549131,-0.805039,0.224429][0.294253,0.0786509,0][1.94289,2.74599,-0.673691][-0.536046,-0.823454,0.185952][0.506847,0.267063,0][1.54374,2.76394,-1.35302][-0.446736,-0.835755,0.319282][0.484924,0.258215,0][1.9711,2.30449,-1.72544][-0.561349,-0.710182,0.424886][0.491404,0.238122,0][0.239846,2.33153,-2.64441][-0.097823,-0.723807,0.683034][0.436245,0.247167,0][1.60994,2.32399,-2.0715][-0.408672,-0.716942,0.564784][0.476758,0.236481,0][1.25776,2.77419,-1.62922][-0.317606,-0.830702,0.457231][0.473337,0.256821,0][-1.60851,3.46147,-0.238949][-0.179555,0.983543,-0.0200869][0.720032,0.851226,0][-2.35077,3.20245,-0.337852][-0.490924,0.869468,-0.0549456][0.705624,0.870663,0][-2.45919,3.34648,0.119351][-0.470139,0.868413,-0.157569][0.693599,0.861718,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.675251,0.21594,0][-1.59843,3.60042,-0.562185][-0.183412,0.972679,0.142319][0.70207,0.257353,0][-1.60851,3.46147,-0.238949][-0.179555,0.983543,-0.0200869][0.692101,0.258127,0][3.53108,2.01591,-1.19852][0.807857,0.572577,-0.139723][0.122158,0.853594,0][2.9925,2.69555,-0.979218][0.710092,0.698554,-0.0882762][0.10633,0.872471,0][3.02674,2.57672,-0.382934][0.714051,0.689825,-0.119468][0.090717,0.862736,0][3.56756,1.90936,-0.493409][0.819003,0.560148,-0.124371][0.10347,0.842584,0][3.97943,1.16868,-0.582486][0.904442,0.405821,-0.131503][0.114551,0.824559,0][3.94266,1.26217,-1.37508][0.890754,0.41756,-0.179447][0.135744,0.836518,0][2.32932,-3.44016,0.0601929][-0.588497,0.807948,-0.0298623][0.279513,0.443025,0][2.08435,-3.49913,-0.846122][-0.927368,1.23866,0.408661][0.254084,0.455032,0][1.504,-3.79967,-0.911301][-0.373797,0.895959,0.239863][0.243353,0.44323,0][2.08435,-3.49913,-0.846122][-0.927368,1.23866,0.408661][0.254084,0.455032,0][2.32932,-3.44016,0.0601929][-0.588497,0.807948,-0.0298623][0.279513,0.443025,0][2.82525,-2.98629,-0.463422][-0.718231,0.68185,0.138651][0.277332,0.467762,0][-0.01685,-1.71188,3.5652][0.00511024,0.323238,-0.946304][0.539512,0.123904,0][0.661111,-1.69174,3.50761][-0.186635,0.320062,-0.928832][0.560237,0.124581,0][0.604201,-2.34692,3.21939][-0.195101,0.504719,-0.840949][0.557253,0.144465,0][0.692021,-0.991583,3.67081][-0.189892,0.137164,-0.972176][0.562515,0.103275,0][-0.0177773,-1.01362,3.73275][0.00525051,0.140113,-0.990122][0.540814,0.102595,0][-0.0233181,-0.293931,3.7654][0.00654393,-0.0489855,-0.998778][0.542016,0.0806242,0][-1.23966,3.45041,-1.08578][-0.149627,0.981626,-0.118414][0.714952,0.24214,0][-1.81528,3.17752,-1.56831][-0.386189,0.864228,-0.322442][0.732146,0.250878,0][-2.15174,3.32824,-1.24194][-0.315807,0.862914,-0.39452][0.724997,0.264124,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.675251,0.21594,0][-1.0587,3.59126,-1.35308][-0.248987,0.968299,0.0200431][0.722182,0.237169,0][-1.23966,3.45041,-1.08578][-0.149627,0.981626,-0.118414][0.714952,0.24214,0][2.32253,-2.94592,-1.69329][-2.86467,1.5081,0.177633][0.243477,0.484984,0][2.82525,-2.98629,-0.463422][-0.718231,0.68185,0.138651][0.277332,0.467762,0][3.24034,-2.42772,-0.544022][-0.828422,0.531102,0.177899][0.2873,0.48623,0][3.27578,-2.41845,0.0790753][-0.84623,0.5245,-0.0937853][0.303297,0.47586,0][3.24034,-2.42772,-0.544022][-0.828422,0.531102,0.177899][0.2873,0.48623,0][2.82525,-2.98629,-0.463422][-0.718231,0.68185,0.138651][0.277332,0.467762,0][3.04856,-0.995147,2.09116][-0.808655,0.140107,-0.571355][0.374615,0.470351,0][3.41442,-1.0132,1.4561][-0.899516,0.138752,-0.41427][0.361161,0.484973,0][3.26236,-1.71161,1.39594][-0.849938,0.363944,-0.380985][0.347398,0.468591,0][3.68244,-0.33077,0.791794][-0.971923,-0.0410873,-0.231684][0.357409,0.514956,0][3.44353,-0.293369,1.48137][-0.909944,-0.0385811,-0.412932][0.373479,0.501155,0][3.3503,0.421374,1.4657][-0.890278,-0.219395,-0.399087][0.383782,0.516648,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-2.0168,-4.30181,-0.240311][-0.261161,-0.964273,-0.0444044][0.339348,0.0913928,0][-1.98969,-4.44366,-0.640122][-0.278599,-0.954793,0.103693][0.351787,0.0925702,0][-2.67764,-4.12288,-0.888504][-0.572416,-0.819221,-0.0348811][0.356693,0.0686501,0][-1.98969,-4.44366,-0.640122][-0.278599,-0.954793,0.103693][0.351787,0.0925702,0][-2.0168,-4.30181,-0.240311][-0.261161,-0.964273,-0.0444044][0.339348,0.0913928,0][-1.38119,3.08295,-0.249176][0.361158,-0.930428,0.0621957][0.562304,0.985219,0][-1.1297,3.08333,0.766064][0.304411,-0.928782,-0.211418][0.533693,0.997687,0][-1.6548,2.76093,1.14584][0.417673,-0.855521,-0.305995][0.517882,0.986202,0][-1.09689,2.74736,1.675][0.256284,-0.858496,-0.444188][0.776202,0.511485,0][-1.6548,2.76093,1.14584][0.417673,-0.855521,-0.305995][0.760184,0.528698,0][-1.1297,3.08333,0.766064][0.304411,-0.928782,-0.211418][0.746741,0.511431,0][-3.6213,2.18074,0.957053][-0.753699,0.590344,0.288847][0.086382,0.335631,0][-3.06049,2.83202,0.777071][-0.612996,0.738926,0.279686][0.060501,0.336033,0][-3.14758,2.82356,0.183748][-0.683371,0.720775,-0.116134][0.0576942,0.31806,0][-1.68301,3.60682,0.0775666][-0.148468,0.966071,-0.211339][0.683577,0.264169,0][-2.45919,3.34648,0.119351][-0.470139,0.868413,-0.157569][0.686464,0.282127,0][-2.39114,3.34636,0.585582][-0.401348,0.876083,0.267205][0.672155,0.283535,0][-2.12647,-2.06619,-2.62858][1.32067,-1.21719,0.121371][0.581902,0.541007,0][-1.40322,-1.78073,-3.22419][0.405469,0.347367,1.13554][0.559594,0.532793,0][-1.67321,-0.935011,-3.3566][0.468451,0.142575,0.871909][0.567248,0.506753,0][-1.00455,-0.921648,-3.62934][0.260708,0.148547,0.953921][0.5468,0.506817,0][-1.67321,-0.935011,-3.3566][0.468451,0.142575,0.871909][0.567248,0.506753,0][-1.40322,-1.78073,-3.22419][0.405469,0.347367,1.13554][0.559594,0.532793,0][2.51862,1.75534,1.76555][-0.669778,-0.553362,-0.495165][0.576462,0.306332,0][1.65468,1.77109,2.57901][-0.451886,-0.581471,-0.676528][0.573646,0.340878,0][1.81284,2.31339,1.8815][-0.484135,-0.707505,-0.51483][0.558059,0.326089,0][-0.00758104,2.28747,2.57443][0.0126607,-0.71334,-0.700703][0.547414,0.00188518,0][0.969839,2.30545,2.40397][-0.229695,-0.719264,-0.655667][0.577273,0.00319857,0][1.12443,1.76503,2.84442][-0.256656,-0.585099,-0.769277][0.580961,0.0199837,0][-2.84124,-3.49662,2.05737][-0.707393,-0.631785,0.316926][0.265775,0.0663472,0][-3.25031,-2.7678,2.35143][-0.782504,-0.486244,0.388914][0.254484,0.0467521,0][-3.48183,-2.6667,1.6344][-0.802019,-0.480013,0.355463][0.275386,0.036588,0][-3.79778,-1.89605,1.77516][-0.866637,-0.317869,0.384577][0.457554,0.856296,0][-3.98085,-1.07863,1.85524][-0.905635,-0.141693,0.399685][0.48289,0.857839,0][-4.41187,-1.15256,1.09789][-0.932984,-0.144244,0.329749][0.479572,0.884356,0][-3.4147,-0.895224,1.56801][0.900485,0.163009,-0.40318][0.78758,0.238024,0][-3.06693,-0.907473,2.18593][0.812817,0.146874,-0.563699][0.809185,0.236211,0][-2.92528,-1.61483,2.08229][0.787778,0.388949,-0.477625][0.810742,0.258122,0][-1.95449,-1.69291,2.99777][0.468293,0.353368,-0.809835][0.480423,0.119634,0][-2.48664,-1.65698,2.59043][0.660944,0.330513,-0.673731][0.464253,0.117523,0][-2.60726,-0.953239,2.7189][0.684821,0.149501,-0.713211][0.461913,0.0958195,0][-1.13901,-1.81251,-4.02251][-0.37949,-0.19526,-0.988543][0.356085,0.244446,0][-0.653632,-0.612801,-4.38936][-1.19207,-0.230949,-3.20323][0.338988,0.28013,0][-0.368758,-0.767796,-4.52456][-0.234973,1.60383,-0.021699][0.330591,0.274857,0][-0.368758,-0.767796,-4.52456][-0.234973,1.60383,-0.021699][0.527779,0.905332,0][-0.653632,-0.612801,-4.38936][-1.19207,-0.230949,-3.20323][0.517882,0.901198,0][-0.434485,-0.766868,-3.74429][-0.11724,0.800236,-0.0108267][0.525945,0.881476,0][-0.0153521,-4.03723,2.77396][0.0112223,-0.825254,0.56465][0.929568,0.0424217,0][-0.0182071,-3.46667,3.37481][0.00765025,-0.643206,0.765655][0.954135,0.0362682,0][-0.674132,-3.59173,3.44497][-0.00916164,-0.643692,0.76523][0.958123,0.0563961,0][0.379683,-4.4649,2.09844][-0.111996,-0.967117,0.228344][0.636084,0.589903,0][0.523127,-4.16858,2.81222][-0.0106997,-0.831539,0.555363][0.614419,0.592529,0][-0.0153521,-4.03723,2.77396][0.0112223,-0.825254,0.56465][0.613692,0.575886,0][-1.28031,3.16673,1.99903][-0.245791,0.859383,0.448383][0.0792213,0.991555,0][-1.64943,2.64254,2.56163][-0.34478,0.72148,0.600495][0.0533926,0.990551,0][-1.18341,2.74486,2.93012][-0.368292,0.72521,0.581749][0.0530634,0.976224,0][-1.59552,1.32827,3.88991][-0.421478,0.422199,0.802561][0,0.981926,0][-1.42305,2.08173,3.4712][-0.396547,0.590482,0.702909][0.0259732,0.977111,0][-1.9708,2.00423,3.03846][-0.403115,0.589599,0.699909][0.0272674,0.993188,0][-3.0099,-2.0239,3.1818][-0.582752,-0.328325,0.743372][0.146349,0.00423054,0][-2.76035,-2.81822,2.92003][-0.52877,-0.4954,0.689188][0.170804,0.0112963,0][-2.08657,-2.76753,3.24904][-0.481679,-0.489164,0.72712][0.169732,0.0319265,0][-1.49394,-4.02495,2.34855][-0.33752,-0.821541,0.459511][0.261952,0.111232,0][-1.82337,-3.45013,2.84678][-0.437813,-0.641059,0.630367][0.244935,0.0965157,0][-2.41114,-3.53676,2.55464][-0.446887,-0.646054,0.618794][0.252085,0.0804314,0][-2.78995,-2.87106,0.680683][0.742552,0.633671,-0.216973][0.791225,0.0839478,0][-1.98781,-2.91371,2.06535][0.554734,0.642667,-0.52844][0.770045,0.127103,0][-1.92107,-3.40551,1.35912][0.54751,0.760938,-0.348147][0.76104,0.105833,0][-1.28173,-3.42496,1.967][0.338401,0.775031,-0.533678][0.74378,0.125076,0][-1.92107,-3.40551,1.35912][0.54751,0.760938,-0.348147][0.76104,0.105833,0][-1.98781,-2.91371,2.06535][0.554734,0.642667,-0.52844][0.770045,0.127103,0][0.820165,0.512977,4.40026][0.070984,0.237928,0.968685][0.0715185,0.123093,0][0.747034,1.34007,4.11355][0.0414342,0.416417,0.908229][0.0461863,0.121442,0][-0.0426874,1.25218,4.02709][-0.00582079,0.414096,0.910215][0.0483139,0.0972422,0][-0.0113331,2.62808,3.04184][-0.0104633,0.711319,0.702791][0.00628146,0.099174,0][-0.0375836,1.98532,3.59912][-0.00937697,0.573501,0.819151][0.025909,0.0979168,0][0.670554,2.09797,3.67997][0.00411691,0.57663,0.816995][0.0229668,0.119641,0][2.05042,-2.72348,3.2295][0.488518,-0.482612,0.726936][0.691249,0.703307,0][2.24047,-1.94533,3.50906][0.538705,-0.307515,0.784367][0.715814,0.696489,0][1.59847,-2.02452,4.04953][0.472744,-0.317372,0.822063][0.716734,0.716039,0][1.4601,-2.82474,3.71855][0.450117,-0.494804,0.743346][0.17399,0.140291,0][1.59847,-2.02452,4.04953][0.472744,-0.317372,0.822063][0.149629,0.145086,0][0.809825,-2.06847,4.29044][0.0901461,-0.321888,0.942477][0.150414,0.12095,0][0.85551,-3.42072,2.16291][-0.255377,0.790547,-0.556613][0.658519,0.191413,0][1.60542,-3.40947,1.66468][-0.399718,0.811628,-0.426011][0.681765,0.180577,0][1.56183,-3.79782,0.677034][-0.395549,0.893021,-0.214606][0.710105,0.191673,0][1.72049,-3.80379,0.0330609][-0.450609,0.892696,-0.00679869][0.268517,0.428823,0][1.56183,-3.79782,0.677034][-0.395549,0.893021,-0.214606][0.283541,0.415959,0][2.12073,-3.4167,0.926727][-0.559097,0.779625,-0.282127][0.300012,0.426118,0][2.46171,-4.02488,1.11244][0.479245,-0.838024,0.260846][0.0216064,0.529349,0][3.02541,-3.46342,1.37505][0.670579,-0.655791,0.346788][0.0447316,0.536518,0][2.80887,-3.56994,1.99724][0.671606,-0.65917,0.338291][0.0396968,0.555743,0][1.81397,-4.30953,0.815079][0.208483,-0.970592,0.120359][0.00502142,0.520871,0][2.46171,-4.02488,1.11244][0.479245,-0.838024,0.260846][0.0216064,0.529349,0][2.28853,-4.15668,1.61958][0.517905,-0.835809,0.182199][0.0163001,0.545063,0][-0.47325,3.45833,-1.59341][-0.0754292,0.985598,-0.15135][0.725251,0.218027,0][-0.695853,3.18163,-2.30759][-0.173712,0.864519,-0.471625][0.747103,0.215579,0][-1.15979,3.31186,-2.21736][-0.074841,0.866051,-0.494322][0.747728,0.230364,0][-0.47325,3.45833,-1.59341][-0.0754292,0.985598,-0.15135][0.267009,0.183504,0][-0.22847,3.42708,-0.819523][-0.0347766,0.998736,-0.0362774][0.289814,0.176794,0][-0.175633,3.60739,-1.71581][-0.237528,0.965884,-0.103197][0.266518,0.1923,0][2.19053,3.17503,1.04244][0.494271,0.848141,0.190662][0.0383036,0.873072,0][2.78743,2.63497,1.31347][0.663937,0.696139,0.273091][0.0403795,0.848224,0][3.09438,2.72169,0.804742][0.65869,0.698529,0.279613][0.0575932,0.847859,0][1.40664,3.62235,1.01421][0.231097,0.969121,-0.0860089][0.0278243,0.898512,0][2.03522,3.3184,1.4865][0.494949,0.853927,0.160726][0.0233968,0.873125,0][2.19053,3.17503,1.04244][0.494271,0.848141,0.190662][0.0383036,0.873072,0][-3.3484,1.20298,0.852655][0.889496,-0.428076,-0.159835][0.0649937,0.714435,0][-3.13716,1.20947,1.46609][0.814075,-0.442387,-0.376266][0.0513225,0.727599,0][-3.35457,0.536511,1.56046][0.885874,-0.235157,-0.399911][0.0366242,0.711704,0][-2.56455,0.479388,2.67539][0.653624,-0.239394,-0.71796][0.0136957,0.738362,0][-3.01197,0.523759,2.16069][0.785621,-0.239275,-0.570567][0.0239527,0.725589,0][-2.81517,1.19503,2.02102][0.720454,-0.435106,-0.540026][0.0396043,0.740431,0][-2.87786,-2.71145,-2.46089][-0.652126,-0.486328,-0.581564][0.40175,0.0395536,0][-2.50818,-3.40356,-2.14144][-0.575183,-0.63885,-0.510916][0.394228,0.0597259,0][-2.99356,-3.51749,-1.68841][-0.583633,-0.648457,-0.488748][0.379105,0.049401,0][-1.81264,-4.4518,-0.999823][-0.107191,-0.963158,-0.246652][0.363282,0.0962983,0][-2.44134,-4.12977,-1.37648][-0.404322,-0.820071,-0.404979][0.37227,0.0735475,0][-2.04354,-4.0008,-1.7416][-0.43527,-0.813977,-0.384682][0.384424,0.0815737,0][3.74595,-0.374934,-0.642639][-0.988074,-0.0479522,0.146326][0.321298,0.539844,0][3.78357,-0.367308,0.0756393][-0.99818,-0.0432252,-0.0420463][0.339665,0.527787,0][3.68244,0.350581,0.100765][-0.96081,-0.276557,-0.01901][0.350981,0.542551,0][3.74855,-1.08611,0.0635054][-0.988391,0.144977,-0.0454395][0.327648,0.511335,0][3.71062,-1.09396,-0.648342][-0.978348,0.146178,0.146515][0.309436,0.523271,0][3.5402,-1.78787,-0.611162][-0.930447,0.338477,0.140361][0.298043,0.505085,0][1.9711,2.30449,-1.72544][-0.561349,-0.710182,0.424886][0.491404,0.238122,0][2.47498,2.2657,-0.865875][-0.703195,-0.680491,0.206031][0.519278,0.249206,0][1.94289,2.74599,-0.673691][-0.536046,-0.823454,0.185952][0.506847,0.267063,0][2.47498,2.2657,-0.865875][-0.703195,-0.680491,0.206031][0.519278,0.249206,0][2.55678,2.28342,0.607303][-0.699392,-0.705399,-0.115161][0.549493,0.282669,0][2.06273,2.74719,0.0962511][-0.585027,-0.810617,-0.0253698][0.524367,0.283127,0][0.838662,2.6678,-2.91406][0.2203,0.70182,-0.677434][0.522132,0.640066,0][1.0125,2.01266,-3.43828][0.270064,0.550162,-0.790182][0.542194,0.634516,0][0.349101,2.13756,-3.7175][0.223804,0.574524,-0.787295][0.541789,0.656255,0][1.09837,1.50568,-3.68319][0.751315,-3.40226,0.0410112][0.708815,0.526568,0][0.666175,1.40057,-3.25159][0.191994,-1.67898,1.16755][0.708617,0.509632,0][0.653474,1.43195,-3.99324][1.92671,-0.102693,-0.0446862][0.723622,0.52665,0][-1.28173,-3.42496,1.967][0.338401,0.775031,-0.533678][0.74378,0.125076,0][-0.0167534,-3.43418,2.34038][0.000401077,0.799937,-0.600083][0.709061,0.137798,0][-0.664082,-3.81604,1.62037][0.167401,0.885306,-0.433832][0.721232,0.115314,0][-1.92107,-3.40551,1.35912][0.54751,0.760938,-0.348147][0.76104,0.105833,0][-1.28173,-3.42496,1.967][0.338401,0.775031,-0.533678][0.74378,0.125076,0][-0.664082,-3.81604,1.62037][0.167401,0.885306,-0.433832][0.721232,0.115314,0][-0.0329439,0.421141,3.66031][0.0270093,-0.285025,-0.95814][0.543085,0.0587861,0][0.664434,0.442435,3.59933][-0.169624,-0.23952,-0.955959][0.564405,0.059465,0][0.69294,-0.271541,3.7024][-0.183765,-0.0513598,-0.981627][0.563915,0.0813057,0][-1.40229,0.425993,3.3993][0.360536,-0.245998,-0.899721][0.50131,0.0560292,0][-0.73053,0.417141,3.59191][0.162696,-0.283294,-0.945132][0.521791,0.0575791,0][-0.74086,-0.297306,3.6936][0.188599,-0.045137,-0.981016][0.520114,0.0793601,0][1.96325,0.478825,3.0811][-0.532002,-0.233158,-0.814009][0.604107,0.0608291,0][2.522,0.46506,2.63186][-0.681763,-0.223482,-0.696603][0.62113,0.0623137,0][2.59389,-0.245424,2.69048][-0.702065,-0.0393292,-0.711026][0.62197,0.0841304,0][2.36373,1.14149,2.47029][-0.64835,-0.416328,-0.637427][0.902603,0.259412,0][1.83701,1.15386,2.88375][-0.491657,-0.412814,-0.766719][0.901208,0.279132,0][1.65468,1.77109,2.57901][-0.451886,-0.581471,-0.676528][0.879738,0.276049,0][1.0125,2.01266,-3.43828][0.270064,0.550162,-0.790182][0.283146,0.357069,0][0.838662,2.6678,-2.91406][0.2203,0.70182,-0.677434][0.287202,0.377391,0][1.42841,2.77085,-2.78764][0.227064,0.704316,-0.672593][0.26901,0.379412,0][0.772228,3.62052,-1.51433][-0.118314,0.971251,-0.206577][0.0911532,0.946198,0][1.11367,3.33783,-2.18779][0.104081,0.855344,-0.507498][0.115308,0.94267,0][0.649977,3.20121,-2.28913][0.142994,0.855164,-0.498244][0.113594,0.95405,0][-1.81528,3.17752,-1.56831][-0.386189,0.864228,-0.322442][0.437468,0.779442,0][-2.31591,2.67905,-1.98695][-0.543475,0.711128,-0.446017][0.457699,0.792752,0][-2.75133,2.80493,-1.56328][-0.52662,0.713136,-0.462718][0.446698,0.808195,0][-2.31591,2.67905,-1.98695][-0.543475,0.711128,-0.446017][0.457699,0.792752,0][-2.72286,2.05735,-2.31365][-0.624672,0.551455,-0.552885][0.478934,0.805533,0][-3.24255,2.15078,-1.80579][-0.656161,0.562445,-0.503098][0.467089,0.824465,0][0.778623,3.08934,1.1521][-0.174533,-0.927163,-0.331521][0.514024,0.333479,0][-0.251554,3.07791,1.32985][0.0931118,-0.923165,-0.372956][0.495564,0.355732,0][0.0193888,3.28698,0.66423][0.0101346,-0.978192,-0.207455][0.486332,0.33697,0][-0.251554,3.07791,1.32985][0.0931118,-0.923165,-0.372956][0.495564,0.355732,0][-1.1297,3.08333,0.766064][0.304411,-0.928782,-0.211418][0.46577,0.357948,0][0.0193888,3.28698,0.66423][0.0101346,-0.978192,-0.207455][0.486332,0.33697,0][1.4601,-2.82474,3.71855][0.450117,-0.494804,0.743346][0.691311,0.721539,0][1.27094,-3.54505,3.23213][0.425958,-0.64871,0.630662][0.664431,0.722254,0][1.78682,-3.4213,2.81015][0.417721,-0.644175,0.64074][0.665271,0.705894,0][1.59847,-2.02452,4.04953][0.472744,-0.317372,0.822063][0.716734,0.716039,0][1.4601,-2.82474,3.71855][0.450117,-0.494804,0.743346][0.691311,0.721539,0][2.05042,-2.72348,3.2295][0.488518,-0.482612,0.726936][0.691249,0.703307,0][-2.67754,1.68053,-1.64761][0.0258397,-0.726455,-0.00394815][0.140127,0.688396,0][-2.37767,1.69347,-2.06505][0.113063,-2.89537,-0.0458976][0.153003,0.684521,0][-1.98456,2.31814,-1.74684][0.516645,-0.717392,0.467362][0.157917,0.708432,0][-0.746019,2.32188,-2.55743][0.226091,-0.725995,0.649473][0.652613,0.437877,0][-1.98456,2.31814,-1.74684][0.516645,-0.717392,0.467362][0.674494,0.475429,0][-1.93276,1.71346,-2.48343][0.825359,-1.49009,1.32505][0.645328,0.475744,0][1.30819,-0.118826,-3.54541][1.16828,1.07221,-0.0592882][0.475543,0.483915,0][0.620083,0.628647,-3.58686][1.10892,-0.0617761,-0.0309992][0.496046,0.460581,0][0.219797,0.624287,-3.64653][-0.420602,-1.59046,-0.0709132][0.508284,0.460431,0][0.620083,0.628647,-3.58686][1.10892,-0.0617761,-0.0309992][0.496046,0.460581,0][-0.31244,1.18219,-3.46521][0.0783222,-0.414184,0.906817][0.524157,0.443002,0][0.219797,0.624287,-3.64653][-0.420602,-1.59046,-0.0709132][0.508284,0.460431,0][-1.47368,3.4625,0.67516][-0.159011,0.982817,0.0937342][0.0228162,0.341646,0][-2.15476,3.19884,0.991774][-0.426344,0.874901,0.229737][0.0407033,0.347404,0][-2.00632,3.3273,1.4364][-0.468559,0.871995,0.141692][0.0384654,0.361888,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.675251,0.21594,0][-1.63624,3.60696,0.398027][-0.0723592,0.970154,0.231443][0.673742,0.26514,0][-1.47368,3.4625,0.67516][-0.159011,0.982817,0.0937342][0.664041,0.260866,0][2.69328,-4.06991,-0.40612][0.525212,-0.849575,-0.0487329][0.0216151,0.482888,0][3.29502,-3.53272,-0.480967][0.742621,-0.663409,-0.0916597][0.044174,0.479755,0][3.45044,-3.64821,0.16812][0.734101,-0.674794,-0.0758158][0.0437241,0.49963,0][3.45044,-3.64821,0.16812][0.734101,-0.674794,-0.0758158][0.0437241,0.49963,0][2.81357,-4.21016,0.121939][0.50981,-0.852837,-0.11297][0.0198882,0.499108,0][2.69328,-4.06991,-0.40612][0.525212,-0.849575,-0.0487329][0.0216151,0.482888,0][1.42527,-4.44711,1.50556][0.0264614,-0.964925,0.261188][0.351485,0.623957,0][1.93841,-4.15267,2.02798][0.267121,-0.831412,0.487238][0.365681,0.611228,0][1.45899,-4.01044,2.28937][0.311211,-0.822192,0.476601][0.375886,0.624954,0][1.78682,-3.4213,2.81015][0.417721,-0.644175,0.64074][0.40265,0.707498,0][1.45899,-4.01044,2.28937][0.311211,-0.822192,0.476601][0.381957,0.723315,0][1.93841,-4.15267,2.02798][0.267121,-0.831412,0.487238][0.369824,0.71113,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.0415957,0.944767,0][1.64199,3.46289,-0.198235][0.21468,0.975658,-0.0447646][0.0651551,0.90587,0][1.62428,3.60392,-0.523175][0.233714,0.960742,0.149509][0.0732701,0.91205,0][2.35034,3.2792,-0.752786][0.546801,0.837262,0.00057527][0.0896351,0.892746,0][1.62428,3.60392,-0.523175][0.233714,0.960742,0.149509][0.0732701,0.91205,0][1.64199,3.46289,-0.198235][0.21468,0.975658,-0.0447646][0.0651551,0.90587,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-1.51493,-4.32197,-1.26957][-0.194427,-0.966535,-0.167355][0.372223,0.10189,0][-1.27625,-4.46379,-1.59109][-0.276179,-0.959161,-0.0611192][0.38295,0.109163,0][-1.72816,-4.14722,-2.17892][-0.463672,-0.816969,-0.342884][0.398916,0.0906155,0][-1.27625,-4.46379,-1.59109][-0.276179,-0.959161,-0.0611192][0.38295,0.109163,0][-1.51493,-4.32197,-1.26957][-0.194427,-0.966535,-0.167355][0.372223,0.10189,0][-3.28114,-0.218797,-1.87638][0.858005,-0.0548872,0.510701][0.111102,0.634936,0][-2.84938,-0.217171,-2.46788][0.727519,-0.045467,0.684579][0.129131,0.629139,0][-2.73375,0.680725,-2.3555][2.76184,0.064189,0.664701][0.141486,0.652692,0][-2.81824,-0.937658,-2.45189][0.736011,0.126337,0.665076][0.883404,0.535392,0][-3.24865,-0.939,-1.86777][0.851145,0.138341,0.506373][0.868714,0.519313,0][-3.10276,-1.64028,-1.7872][0.814745,0.318079,0.484785][0.885405,0.504924,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.313527,0.669884,0][1.99077,-4.32529,-0.316246][0.217626,-0.975962,-0.0117392][0.294287,0.618524,0][2.07757,-4.46451,0.070143][0.190132,-0.968009,-0.163733][0.305321,0.612567,0][2.81357,-4.21016,0.121939][0.50981,-0.852837,-0.11297][0.961455,0.428867,0][2.07757,-4.46451,0.070143][0.190132,-0.968009,-0.163733][0.972727,0.407861,0][1.99077,-4.32529,-0.316246][0.217626,-0.975962,-0.0117392][0.984789,0.412128,0][-0.570918,0.669167,-3.59299][-1.21832,1.12158,-0.0361384][0.532421,0.4585,0][-0.31244,1.18219,-3.46521][0.0783222,-0.414184,0.906817][0.524157,0.443002,0][-0.643527,1.42924,-3.25798][-0.17271,-0.631497,0.016986][0.534102,0.435217,0][-0.570918,0.669167,-3.59299][-1.21832,1.12158,-0.0361384][0.532421,0.4585,0][-1.22813,-0.0434165,-3.55212][-1.13479,1.02581,-0.0510726][0.553013,0.479816,0][-0.296875,0.771221,-3.60508][1.24367,-0.319431,-0.046031][0.523972,0.455575,0][-2.4085,-0.349162,3.75264][-0.52166,0.038094,0.852303][0.0955858,0.0237974,0][-2.35456,0.48271,3.6514][-0.498006,0.229999,0.836116][0.0701976,0.0260346,0][-3.10967,0.557838,3.29299][-0.579542,0.226814,0.782743][0.067367,0.0030076,0][-3.10967,0.557838,3.29299][-0.579542,0.226814,0.782743][0.139996,0.396438,0][-2.91303,1.38356,3.08393][-0.512999,0.426331,0.745033][0.113788,0.396003,0][-3.41543,1.43701,2.50369][-0.786742,0.429279,0.443573][0.114626,0.377588,0][0.00816369,3.15714,2.37593][-0.0019916,0.855021,0.518589][0.931299,0.173247,0][0.0126885,3.45066,1.62645][0.000662781,0.978903,0.204325][0.908117,0.172208,0][-0.310956,3.58994,1.65539][0.167998,0.967631,0.188329][0.907772,0.16141,0][0.0126885,3.45066,1.62645][0.000662781,0.978903,0.204325][0.610483,0.656736,0][0.00816369,3.15714,2.37593][-0.0019916,0.855021,0.518589][0.634092,0.649992,0][0.4783,3.30049,2.4312][-0.102101,0.856178,0.506493][0.638227,0.664442,0][1.504,-3.79967,-0.911301][-0.373797,0.895959,0.239863][0.91005,0.589033,0][1.67699,-3.49462,-1.48612][-0.34569,5.17696,0.6244][0.896161,0.603473,0][0.81337,-3.51427,-2.00095][-0.0262315,2.10866,-0.0364695][0.871354,0.58655,0][1.504,-3.79967,-0.911301][-0.373797,0.895959,0.239863][0.243353,0.44323,0][2.08435,-3.49913,-0.846122][-0.927368,1.23866,0.408661][0.254084,0.455032,0][1.67699,-3.49462,-1.48612][-0.34569,5.17696,0.6244][0.23512,0.462079,0][-0.912469,3.29429,2.28825][-0.329408,0.859445,0.390954][0.0799939,0.979461,0][-0.621421,3.59087,1.5652][-0.258329,0.964002,0.0629826][0.103296,0.988904,0][-0.872957,3.45246,1.36615][-0.487627,5.81739,0.999538][0.101698,0.998106,0][-0.432264,3.42284,0.685575][-0.121962,0.357619,-0.0945385][0.580737,0.647362,0][-0.872957,3.45246,1.36615][-0.487627,5.81739,0.999538][0.595835,0.634012,0][-0.621421,3.59087,1.5652][-0.258329,0.964002,0.0629826][0.60222,0.642139,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-0.544085,-4.31551,-1.8828][-0.0512573,-0.966971,-0.24968][0.393899,0.126402,0][-0.172423,-4.4442,-2.03734][-0.187043,-0.961522,-0.201224][0.399953,0.137748,0][-0.252153,-4.13,-2.7726][-0.213146,-0.823856,-0.525195][0.421574,0.128964,0][-0.172423,-4.4442,-2.03734][-0.187043,-0.961522,-0.201224][0.399953,0.137748,0][-0.544085,-4.31551,-1.8828][-0.0512573,-0.966971,-0.24968][0.393899,0.126402,0][3.77496,-2.87085,-0.565719][0.855837,-0.502724,-0.121704][0.068601,0.476249,0][4.1237,-2.11343,-0.6465][0.933301,-0.331651,-0.137686][0.0939845,0.472828,0][4.3293,-2.17194,0.161126][0.941031,-0.333696,-0.0557431][0.0959416,0.497464,0][3.7456,-2.94136,-1.31727][0.845635,-0.500843,-0.184549][0.0654114,0.453374,0][3.27668,-3.64421,-1.1383][0.740056,-0.660409,-0.127185][0.0400992,0.459796,0][3.01344,-3.61568,-1.74556][0.565709,-0.653693,-0.502651][0.0367966,0.441341,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-0.416053,-4.47116,2.12454][0.145581,-0.961185,0.234369][0.272807,0.145855,0][-0.801248,-4.46867,2.01621][-0.242732,-0.962977,0.117284][0.274881,0.134842,0][-1.06888,-4.17876,2.69042][-0.348474,-0.827304,0.440607][0.253133,0.126096,0][-0.801248,-4.46867,2.01621][-0.242732,-0.962977,0.117284][0.274881,0.134842,0][-0.416053,-4.47116,2.12454][0.145581,-0.961185,0.234369][0.272807,0.145855,0][-3.72311,2.16109,0.255814][-0.814336,0.573878,-0.0867229][0.0833108,0.314332,0][-3.14758,2.82356,0.183748][-0.683371,0.720775,-0.116134][0.0576942,0.31806,0][-3.00857,2.69724,-0.400265][-0.692426,0.716163,-0.0875027][0.0552874,0.300286,0][-4.1644,1.39155,0.284223][-0.908841,0.411532,-0.0681943][0.109824,0.309023,0][-3.72311,2.16109,0.255814][-0.814336,0.573878,-0.0867229][0.0833108,0.314332,0][-3.55658,2.0605,-0.434978][-0.81524,0.568639,-0.109701][0.0791203,0.293622,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.313527,0.669884,0][1.54494,-4.30684,-1.34265][0.165374,-0.971922,-0.167388][0.265195,0.635756,0][1.8289,-4.45842,-1.07872][0.0550213,-0.959484,-0.276339][0.271671,0.624813,0][2.47175,-4.1937,-1.44209][0.353312,-0.834963,-0.421908][0.258495,0.612284,0][1.8289,-4.45842,-1.07872][0.0550213,-0.959484,-0.276339][0.271671,0.624813,0][1.54494,-4.30684,-1.34265][0.165374,-0.971922,-0.167388][0.265195,0.635756,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.920856,0.700081,0][1.0719,-4.3127,1.70438][0.147505,-0.967632,0.204771][0.861644,0.709321,0][0.761612,-4.45862,1.96745][0.26785,-0.956106,0.11882][0.858721,0.696489,0][1.03963,-4.15625,2.63866][0.37749,-0.819887,0.430448][0.637696,0.718867,0][0.761612,-4.45862,1.96745][0.26785,-0.956106,0.11882][0.616103,0.708961,0][1.0719,-4.3127,1.70438][0.147505,-0.967632,0.204771][0.618066,0.69775,0][3.24034,-2.42772,-0.544022][-0.828422,0.531102,0.177899][0.2873,0.48623,0][2.50948,-2.51345,-1.97761][-3.01648,1.68249,0.601469][0.244645,0.501763,0][2.32253,-2.94592,-1.69329][-2.86467,1.5081,0.177633][0.243477,0.484984,0][2.3811,-2.88794,-3.18894][-1.28826,0.54193,-0.0239803][0.589511,0.785309,0][2.32253,-2.94592,-1.69329][-2.86467,1.5081,0.177633][0.543783,0.787672,0][2.50948,-2.51345,-1.97761][-3.01648,1.68249,0.601469][0.552476,0.773273,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.313527,0.669884,0][0.596589,-4.29179,-1.91674][0.0705208,-0.968754,-0.237785][0.251887,0.664596,0][0.989892,-4.42934,-1.86229][-0.0822303,-0.957543,-0.276313][0.251599,0.651815,0][1.32278,-4.14068,-2.52622][0.0775339,-0.831089,-0.550708][0.230699,0.649482,0][0.989892,-4.42934,-1.86229][-0.0822303,-0.957543,-0.276313][0.251599,0.651815,0][0.596589,-4.29179,-1.91674][0.0705208,-0.968754,-0.237785][0.251887,0.664596,0][-3.65001,0.495103,-0.494072][0.95039,-0.28866,0.115908][0.0851601,0.671523,0][-3.68018,0.505142,0.20561][0.957683,-0.286723,-0.0251742][0.0675945,0.683732,0][-3.78403,-0.210659,0.194125][0.997662,-0.0469705,-0.0496419][0.0557051,0.666205,0][-3.75311,-0.220644,-0.524611][0.988932,-0.0506048,0.139474][0.0737536,0.65367,0][-3.58471,-0.221008,-1.22221][0.943082,-0.0517202,0.328513][0.0924483,0.643178,0][-3.48773,0.493572,-1.17496][0.915149,-0.24502,0.320105][0.103373,0.661233,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.313527,0.669884,0][1.81397,-4.30953,0.815079][0.208483,-0.970592,0.120359][0.32925,0.61829,0][1.68422,-4.44603,1.1946][0.272319,-0.961737,-0.0300762][0.340996,0.61833,0][2.28853,-4.15668,1.61958][0.517905,-0.835809,0.182199][0.0163001,0.545063,0][1.68422,-4.44603,1.1946][0.272319,-0.961737,-0.0300762][0,0.53267,0][1.81397,-4.30953,0.815079][0.208483,-0.970592,0.120359][0.00502142,0.520871,0][3.28084,1.98719,1.51267][0.765817,0.552743,0.328633][0.0438539,0.825621,0][3.65478,1.25645,1.65949][0.840937,0.392694,0.372313][0.0478724,0.805717,0][4.06136,1.28151,0.974886][0.865694,0.398415,0.303052][0.0714487,0.80431,0][3.04475,2.09603,2.19057][0.73828,0.557441,0.37974][0.0216911,0.824381,0][2.59011,2.76265,1.88534][0.64539,0.704082,0.296211][0.021514,0.847553,0][2.19053,2.77433,2.33298][0.372632,0.710654,0.596755][0.00443156,0.852184,0][2.24047,-1.94533,3.50906][0.538705,-0.307515,0.784367][0.147662,0.164765,0][2.34713,-1.11962,3.66933][0.564685,-0.135171,0.814162][0.1225,0.16861,0][1.67798,-1.17341,4.23475][0.480271,-0.137546,0.866268][0.12367,0.148119,0][2.97565,-2.00865,3.10196][0.590365,-0.303897,0.747741][0.0863435,0.587798,0][2.72487,-2.82227,2.86213][0.520666,-0.48129,0.705171][0.0603026,0.581433,0][3.22443,-2.85668,2.2834][0.760428,-0.490457,0.425678][0.0651392,0.563546,0][1.37549,-0.96296,3.46794][-0.38121,0.136249,-0.914393][0.583425,0.103704,0][2.00955,-0.952843,3.12603][-0.563902,0.14945,-0.812206][0.602792,0.104603,0][1.92061,-1.65854,2.98534][-0.564745,0.311802,-0.764096][0.598734,0.125968,0][2.02327,-0.231555,3.16034][-0.554138,-0.0455337,-0.831179][0.604585,0.0826201,0][1.38276,-0.242124,3.5004][-0.375406,-0.0504886,-0.925484][0.58502,0.0817223,0][1.33722,0.469508,3.40594][-0.354456,-0.239155,-0.903972][0.584986,0.0599207,0][3.97943,1.16868,-0.582486][0.904442,0.405821,-0.131503][0.183075,0.471456,0][4.24764,0.372745,-0.651957][0.962318,0.233715,-0.139001][0.16442,0.470028,0][4.20939,0.447482,-1.4979][0.947212,0.243669,-0.208362][0.165029,0.444124,0][4.17509,1.23735,0.190217][0.911346,0.405162,-0.0727419][0.0948579,0.810744,0][3.74473,2.00579,0.203849][0.82262,0.561343,-0.0904994][0.0855245,0.830509,0][3.64427,2.0422,0.906248][0.778631,0.557458,0.288052][0.0646015,0.824679,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.0415957,0.944767,0][1.51348,3.46835,0.712487][0.178607,0.982118,0.0595337][0.0382674,0.897775,0][1.67786,3.60701,0.438348][0.110267,0.96421,0.241123][0.0470451,0.898689,0][2.43051,3.2953,0.645805][0.455285,0.84833,0.270279][0.0514533,0.873392,0][1.67786,3.60701,0.438348][0.110267,0.96421,0.241123][0.0470451,0.898689,0][1.51348,3.46835,0.712487][0.178607,0.982118,0.0595337][0.0382674,0.897775,0][2.10853,-3.50997,-2.82851][-1.92147,2.87475,-0.0403026][0.471736,0.575845,0][2.53899,-2.52889,-3.29331][-1.73755,-1.1758,-0.0163181][0.507082,0.570847,0][2.90513,-2.79209,-2.52414][0.631011,-0.509404,-0.585092][0.498363,0.592837,0][2.53899,-2.52889,-3.29331][-1.73755,-1.1758,-0.0163181][0.507082,0.570847,0][2.71962,-2.09343,-3.43247][0.64307,-0.362476,-0.674591][0.522095,0.570572,0][3.18094,-2.02375,-2.77757][0.708703,-0.344914,-0.615447][0.524382,0.591971,0][3.02674,2.57672,-0.382934][0.714051,0.689825,-0.119468][0.090717,0.862736,0][2.37759,3.14457,-0.283775][0.542365,0.83402,-0.101245][0.0775764,0.884596,0][2.4967,3.28169,0.181334][0.526575,0.837599,-0.145417][0.0652308,0.877376,0][1.72337,3.6042,0.119229][0.178718,0.963441,-0.199604][0.0564769,0.901502,0][2.4967,3.28169,0.181334][0.526575,0.837599,-0.145417][0.0652308,0.877376,0][2.37759,3.14457,-0.283775][0.542365,0.83402,-0.101245][0.0775764,0.884596,0][-3.6562,1.38186,1.75591][-0.83031,0.418236,0.368327][0.113938,0.35427,0][-3.91024,0.591408,1.85184][-0.892227,0.226861,0.390467][0.139129,0.351391,0][-3.65341,0.614906,2.65877][-0.847633,0.230624,0.47784][0.140882,0.376317,0][-4.05226,1.41964,1.07143][-0.860404,0.412102,0.299796][0.113136,0.332966,0][-3.6213,2.18074,0.957053][-0.753699,0.590344,0.288847][0.086382,0.335631,0][-3.72311,2.16109,0.255814][-0.814336,0.573878,-0.0867229][0.0833108,0.314332,0][-1.38119,3.08295,-0.249176][0.361158,-0.930428,0.0621957][0.440657,0.338421,0][-0.873119,3.07699,-1.16195][0.247835,-0.9317,0.265542][0.433835,0.307883,0][-0.693966,3.28344,-0.158134][0.19976,-0.978752,0.0462557][0.455124,0.330107,0][-1.1297,3.08333,0.766064][0.304411,-0.928782,-0.211418][0.46577,0.357948,0][-1.38119,3.08295,-0.249176][0.361158,-0.930428,0.0621957][0.440657,0.338421,0][-0.693966,3.28344,-0.158134][0.19976,-0.978752,0.0462557][0.455124,0.330107,0][3.79747,-2.02343,1.67964][0.853779,-0.307567,0.420075][0.0949211,0.543961,0][3.97464,-1.20566,1.73754][0.894356,-0.131955,0.427452][0.119919,0.544798,0][3.68464,-1.191,2.5618][0.85896,-0.133667,0.494288][0.117521,0.570106,0][4.21803,-2.12499,0.974498][0.887388,-0.314394,0.337194][0.0967336,0.52232,0][3.8604,-2.91806,0.922146][0.800019,-0.496722,0.336508][0.0700963,0.521714,0][3.96248,-2.95871,0.177424][0.856744,-0.511958,-0.062363][0.0694383,0.498954,0][-3.97606,1.32336,-0.484964][-0.903586,0.410033,-0.12412][0.103939,0.286248,0][-4.25166,0.520448,-0.55186][-0.962345,0.237321,-0.132552][0.128604,0.278379,0][-4.45327,0.553368,0.264161][-0.970234,0.235025,-0.0583954][0.135933,0.302287,0][-3.94709,1.38762,-1.27713][-0.890741,0.412086,-0.191746][0.0963252,0.263156,0][-3.53403,2.14932,-1.14947][-0.807244,0.570668,-0.150646][0.0714659,0.272978,0][-3.24255,2.15078,-1.80579][-0.656161,0.562445,-0.503098][0.0631896,0.254306,0][2.81357,-4.21016,0.121939][0.50981,-0.852837,-0.11297][0.0198882,0.499108,0][3.45044,-3.64821,0.16812][0.734101,-0.674794,-0.0758158][0.0437241,0.49963,0][3.35597,-3.61675,0.816991][0.669831,-0.664784,0.33074][0.0441165,0.519468,0][2.07757,-4.46451,0.070143][0.190132,-0.968009,-0.163733][0.305321,0.612567,0][2.81357,-4.21016,0.121939][0.50981,-0.852837,-0.11297][0.304276,0.595418,0][2.73196,-4.19031,0.652924][0.4449,-0.844231,0.298894][0.320704,0.59543,0][-3.2727,-1.13105,-2.81644][-0.736417,-0.135198,-0.662881][0.939615,0.570904,0][-3.3089,-0.292378,-2.8334][-0.738941,0.0482543,-0.672039][0.96239,0.570572,0][-2.78742,-0.301335,-3.55216][-0.686569,0.0528615,-0.725141][0.969696,0.592289,0][-3.9217,-1.169,-2.23189][-0.790429,-0.139544,-0.596448][0.795849,0.315301,0][-3.74745,-2.01463,-2.12711][-0.751678,-0.322602,-0.575246][0.797023,0.341865,0][-4.10562,-2.02262,-1.38201][-0.919533,-0.326351,-0.218983][0.772151,0.343727,0][1.8289,-4.45842,-1.07872][0.0550213,-0.959484,-0.276339][0.271671,0.624813,0][2.47175,-4.1937,-1.44209][0.353312,-0.834963,-0.421908][0.258495,0.612284,0][2.68349,-4.21248,-0.946061][0.525795,-0.850197,-0.026559][0.272551,0.603932,0][3.27668,-3.64421,-1.1383][0.740056,-0.660409,-0.127185][0.0400992,0.459796,0][2.68349,-4.21248,-0.946061][0.525795,-0.850197,-0.026559][0.0169244,0.466544,0][2.47175,-4.1937,-1.44209][0.353312,-0.834963,-0.421908][0.014144,0.451472,0][1.76047,-2.32134,2.74498][-0.491964,0.489053,-0.720276][0.592584,0.145887,0][0.604201,-2.34692,3.21939][-0.195101,0.504719,-0.840949][0.557253,0.144465,0][1.31441,-1.6669,3.31339][-0.367141,0.331537,-0.869074][0.58022,0.125068,0][0.661111,-1.69174,3.50761][-0.186635,0.320062,-0.928832][0.560237,0.124581,0][1.31441,-1.6669,3.31339][-0.367141,0.331537,-0.869074][0.58022,0.125068,0][0.604201,-2.34692,3.21939][-0.195101,0.504719,-0.840949][0.557253,0.144465,0][-0.728795,-1.01722,3.6589][0.190536,0.144066,-0.971051][0.519111,0.101351,0][-1.41479,-1.00794,3.45941][0.360541,0.166225,-0.917812][0.498196,0.0997604,0][-1.43302,-0.287798,3.49459][0.361269,-0.0425499,-0.93149][0.499012,0.0777513,0][-2.63427,-0.232529,2.74873][0.682912,-0.0419184,-0.729297][0.462462,0.0737762,0][-2.07272,-0.272369,3.1777][0.525948,-0.0420563,-0.849477][0.479521,0.0760617,0][-2.04934,-0.992521,3.146][0.526634,0.150007,-0.836752][0.478863,0.0980811,0][3.57756,-1.77915,0.0686935][-0.941776,0.332829,-0.0477779][0.315465,0.493725,0][3.48552,-1.74617,0.745319][-0.893886,0.373003,-0.24867][0.332232,0.481605,0][3.65006,-1.05016,0.772974][-0.961376,0.141128,-0.236305][0.345236,0.498636,0][3.41442,-1.0132,1.4561][-0.899516,0.138752,-0.41427][0.361161,0.484973,0][3.65006,-1.05016,0.772974][-0.961376,0.141128,-0.236305][0.345236,0.498636,0][3.48552,-1.74617,0.745319][-0.893886,0.373003,-0.24867][0.332232,0.481605,0][-1.41479,-1.00794,3.45941][0.360541,0.166225,-0.917812][0.498196,0.0997604,0][-0.728795,-1.01722,3.6589][0.190536,0.144066,-0.971051][0.519111,0.101351,0][-0.695368,-1.71632,3.49157][0.233049,0.399734,-0.88651][0.518799,0.122747,0][0.661111,-1.69174,3.50761][-0.186635,0.320062,-0.928832][0.560237,0.124581,0][-0.01685,-1.71188,3.5652][0.00511024,0.323238,-0.946304][0.539512,0.123904,0][-0.0177773,-1.01362,3.73275][0.00525051,0.140113,-0.990122][0.540814,0.102595,0][2.34713,-1.11962,3.66933][0.564685,-0.135171,0.814162][0.1225,0.16861,0][2.36307,-0.27867,3.71109][0.566532,0.0444978,0.822837][0.096807,0.169692,0][1.68954,-0.301399,4.27593][0.471453,0.0499333,0.880476][0.0970252,0.149089,0][1.68954,-0.301399,4.27593][0.471453,0.0499333,0.880476][0.0970252,0.149089,0][1.62853,0.56024,4.16427][0.447484,0.242156,0.860883][0.0706457,0.147834,0][0.820165,0.512977,4.40026][0.070984,0.237928,0.968685][0.0715185,0.123093,0][3.54228,-1.07285,-1.33626][-0.933124,0.143902,0.329501][0.291314,0.534064,0][3.25309,-1.04015,-1.97284][-0.854928,0.140059,0.49948][0.273764,0.54294,0][3.10457,-1.73986,-1.87875][-0.784718,0.379729,0.489922][0.263865,0.523853,0][2.14068,-1.92564,-2.80002][-1.99434,-1.25815,0.00701034][0.230699,0.525649,0][3.10457,-1.73986,-1.87875][-0.784718,0.379729,0.489922][0.263865,0.523853,0][2.8556,-1.01707,-2.53239][-0.733794,0.169402,0.657913][0.257182,0.549098,0][-3.48005,-1.6114,0.84916][0.899681,0.343005,-0.270039][0.0192606,0.64918,0][-3.58194,-1.62773,0.174031][0.93901,0.339055,-0.0574658][0.0351305,0.635864,0][-3.75052,-0.930036,0.183367][0.988424,0.141605,-0.0544633][0.044761,0.650062,0][-3.55238,-0.940827,-1.2202][0.934239,0.138341,0.328723][0.0811691,0.627237,0][-3.72053,-0.940058,-0.528902][0.980653,0.139426,0.137405][0.0626405,0.63763,0][-3.55446,-1.63766,-0.506248][0.937549,0.323129,0.128797][0.0521925,0.623969,0][-0.434485,-0.766868,-3.74429][-0.11724,0.800236,-0.0108267][0.529267,0.50249,0][-1.00455,-0.921648,-3.62934][0.260708,0.148547,0.953921][0.5468,0.506817,0][-0.937719,-1.87695,-3.36098][0.450585,0.386018,1.26189][0.545434,0.536064,0][-0.653632,-0.612801,-4.38936][-1.19207,-0.230949,-3.20323][0.517882,0.901198,0][-0.660672,-0.630292,-3.70846][1.12327,-0.267376,-0.0052713][0.517913,0.880381,0][-0.434485,-0.766868,-3.74429][-0.11724,0.800236,-0.0108267][0.525945,0.881476,0][4.32293,-1.29723,-0.703447][0.978944,-0.146001,-0.142658][0.119092,0.470147,0][4.36421,-0.457976,-0.706057][0.988715,0.0473355,-0.142133][0.142861,0.469179,0][4.57888,-0.453208,0.139614][0.997404,0.0452308,-0.0560292][0.146731,0.494907,0][4.28902,-1.28347,-1.56639][0.962406,-0.145375,-0.229437][0.11805,0.443785,0][4.09096,-2.14023,-1.46844][0.917923,-0.333481,-0.214962][0.0918809,0.44776,0][3.76418,-2.10069,-2.22069][0.755481,-0.342252,-0.55867][0.0878972,0.424894,0][2.59389,-0.245424,2.69048][-0.702065,-0.0393292,-0.711026][0.398174,0.472004,0][3.07469,-0.274797,2.12182][-0.818074,-0.0352837,-0.574029][0.387054,0.486418,0][3.04856,-0.995147,2.09116][-0.808655,0.140107,-0.571355][0.374615,0.470351,0][3.07469,-0.274797,2.12182][-0.818074,-0.0352837,-0.574029][0.945636,0.235448,0][2.59389,-0.245424,2.69048][-0.702065,-0.0393292,-0.711026][0.945447,0.258179,0][2.522,0.46506,2.63186][-0.681763,-0.223482,-0.696603][0.924343,0.259308,0][0.0178759,3.358,-0.0541983][0.0117639,-0.999926,0.00307508][0.471623,0.320629,0][0.0752346,3.29287,-0.766961][0.00202308,-0.982522,0.186135][0.459641,0.302265,0][0.693127,3.29738,-0.272823][-0.185411,-0.97955,0.0781331][0.482417,0.303074,0][0.0178759,3.358,-0.0541983][0.0117639,-0.999926,0.00307508][0.471623,0.320629,0][-0.693966,3.28344,-0.158134][0.19976,-0.978752,0.0462557][0.455124,0.330107,0][0.0752346,3.29287,-0.766961][0.00202308,-0.982522,0.186135][0.459641,0.302265,0][2.29218,2.63656,-1.9566][0.544221,0.698038,-0.465367][0.125951,0.90172,0][1.79491,3.17747,-1.52416][0.413693,0.844863,-0.339212][0.105382,0.915248,0][2.14504,3.29259,-1.18863][0.383606,0.846135,-0.370002][0.0993893,0.903552,0][1.48377,3.60778,-0.823658][0.048995,0.969461,-0.240302][0.0800351,0.919411,0][2.14504,3.29259,-1.18863][0.383606,0.846135,-0.370002][0.0993893,0.903552,0][1.79491,3.17747,-1.52416][0.413693,0.844863,-0.339212][0.105382,0.915248,0][-0.0074778,-1.21638,4.39214][-0.00806922,-0.138033,0.990395][0.123791,0.096572,0][-0.0103179,-0.377936,4.43012][-0.00570033,0.0487583,0.998794][0.098162,0.0970783,0][-0.87585,-0.3689,4.51482][-0.0882229,0.0454196,0.995065][0.0972734,0.0706295,0][0.853635,-1.22293,4.48635][0.0978432,-0.137997,0.985588][0.124601,0.122887,0][0.809825,-2.06847,4.29044][0.0901461,-0.321888,0.942477][0.150414,0.12095,0][1.59847,-2.02452,4.04953][0.472744,-0.317372,0.822063][0.149629,0.145086,0][-4.14111,-1.96188,-0.558309][-0.93674,-0.322544,-0.135954][0.194144,0.262849,0][-4.33388,-1.15277,-0.592732][-0.980255,-0.138737,-0.140901][0.174499,0.266363,0][-4.29639,-1.17906,-1.45528][-0.960195,-0.141902,-0.240603][0.168731,0.240629,0][-4.33452,-2.02306,0.238724][-0.943711,-0.327543,-0.0461022][0.314148,0,0][-3.97714,-2.80155,0.229507][-0.865203,-0.498238,-0.0564101][0.316698,0.0197999,0][-3.86419,-2.77717,0.978718][-0.806883,-0.488957,0.331454][0.29426,0.0252009,0][-1.9765,-4.14997,2.10122][-0.286329,-0.822926,0.490723][0.268128,0.0986925,0][-2.41114,-3.53676,2.55464][-0.446887,-0.646054,0.618794][0.252085,0.0804314,0][-2.84124,-3.49662,2.05737][-0.707393,-0.631785,0.316926][0.265775,0.0663472,0][-1.47642,-4.45568,1.5808][-0.0340186,-0.961283,0.273456][0.28596,0.114575,0][-1.9765,-4.14997,2.10122][-0.286329,-0.822926,0.490723][0.268128,0.0986925,0][-2.33268,-4.1278,1.68903][-0.55717,-0.809882,0.18345][0.279493,0.0871695,0][3.36116,-0.358737,-2.9395][0.745345,0.0837381,-0.661399][0.57242,0.600077,0][3.33696,-1.19972,-2.92291][0.749314,-0.140576,-0.647122][0.549519,0.59429,0][2.8593,-1.24057,-3.60516][0.67629,-0.142624,-0.722696][0.54802,0.572241,0][3.97754,-0.366165,-2.36418][0.813008,0.0679196,-0.578278][0.138517,0.418611,0][3.8626,0.488954,-2.26531][0.796514,0.253054,-0.549116][0.160823,0.420802,0][4.20939,0.447482,-1.4979][0.947212,0.243669,-0.208362][0.165029,0.444124,0][-0.615564,1.47515,-4.01241][-1.8941,-0.148376,-0.0835103][0.333849,0.343769,0][-1.01524,2.06912,-3.4541][-0.258917,0.550924,-0.793375][0.344913,0.362655,0][-0.361533,2.16474,-3.72466][-0.180753,0.573948,-0.798694][0.324783,0.364327,0][-1.07299,1.57861,-3.69263][-0.869273,-3.35365,-0.293602][0.793585,0.580419,0][-0.615564,1.47515,-4.01241][-1.8941,-0.148376,-0.0835103][0.810655,0.581147,0][-0.643527,1.42924,-3.25798][-0.17271,-0.631497,0.016986][0.796518,0.599373,0][1.35558,2.1269,3.49075][0.383563,0.576161,0.721746][0.0225671,0.1406,0][1.17047,2.77608,2.95946][0.351267,0.720372,0.598059][0.00259372,0.135401,0][0.589683,2.75874,3.11321][-0.0398004,0.717402,0.695522][0.00271304,0.117637,0][0.4783,3.30049,2.4312][-0.102101,0.856178,0.506493][0.283318,0.733239,0][0.589683,2.75874,3.11321][-0.0398004,0.717402,0.695522][0.261297,0.740421,0][1.17047,2.77608,2.95946][0.351267,0.720372,0.598059][0.253686,0.725724,0][-0.865382,1.79356,-3.00181][0.273162,-0.559145,0.782776][0.540626,0.423925,0][-0.288091,1.79603,-3.11328][0.0379791,-0.577907,0.815219][0.522979,0.424257,0][-0.746019,2.32188,-2.55743][0.226091,-0.725995,0.649473][0.536604,0.407861,0][-1.93276,1.71346,-2.48343][0.825359,-1.49009,1.32505][0.645328,0.475744,0][-0.865382,1.79356,-3.00181][0.273162,-0.559145,0.782776][0.632255,0.443124,0][-0.746019,2.32188,-2.55743][0.226091,-0.725995,0.649473][0.652613,0.437877,0][4.00864,-0.366262,1.76008][0.906042,0.0384041,0.421441][0.143626,0.544601,0][3.90049,0.463864,1.74603][0.889166,0.216173,0.403302][0.165199,0.543365,0][3.61239,0.539171,2.55622][0.848972,0.219859,0.480529][0.16449,0.568179,0][3.61239,0.539171,2.55622][0.848972,0.219859,0.480529][0.672088,0.345127,0][3.3854,1.35019,2.41434][0.804973,0.396627,0.441254][0.680043,0.320257,0][2.84845,1.38876,3.02265][0.558242,0.404362,0.724471][0.703983,0.32543,0][2.13309,1.32809,3.39704][0.501267,0.40918,0.762432][0.0475333,0.163799,0][2.28776,0.546745,3.62415][0.542576,0.232493,0.807192][0.0715247,0.167974,0][3.04573,0.582116,3.21364][0.610629,0.225018,0.759275][0.0709798,0.191167,0][1.50741,1.37974,3.89534][0.415912,0.419118,0.807067][0.0455116,0.144712,0][1.35558,2.1269,3.49075][0.383563,0.576161,0.721746][0.0225671,0.1406,0][0.670554,2.09797,3.67997][0.00411691,0.57663,0.816995][0.0229668,0.119641,0][2.71189,1.5624,-2.59192][-0.69419,-2.46917,-0.0638093][0.758966,0.989957,0][2.71657,1.98258,-2.3376][2.08727,1.90135,-2.04943][0.773646,0.99312,0][2.84322,1.27684,-2.88922][-2.04576,-0.252092,-0.0321276][0.745994,0.992541,0][2.71189,1.5624,-2.59192][-0.69419,-2.46917,-0.0638093][0.653659,0.528785,0][2.84322,1.27684,-2.88922][-2.04576,-0.252092,-0.0321276][0.653784,0.54046,0][2.81641,1.39139,-1.6937][-2.12368,-0.671842,0.649243][0.632255,0.510838,0][2.50948,-2.51345,-1.97761][-3.01648,1.68249,0.601469][0.244645,0.501763,0][3.24034,-2.42772,-0.544022][-0.828422,0.531102,0.177899][0.2873,0.48623,0][3.37958,-1.77043,-1.2691][-0.863719,0.38356,0.326911][0.280671,0.515349,0][3.57756,-1.77915,0.0686935][-0.941776,0.332829,-0.0477779][0.315465,0.493725,0][3.5402,-1.78787,-0.611162][-0.930447,0.338477,0.140361][0.298043,0.505085,0][3.24034,-2.42772,-0.544022][-0.828422,0.531102,0.177899][0.2873,0.48623,0][-0.984956,4.19924,-0.284659][0.232641,1.02218,-1.03886][0.747612,0.317991,0][-0.291909,4.13716,-0.190539][0.301508,1.42618,-1.53025][0.726157,0.31727,0][-0.438658,3.9588,0.000208842][0.12126,-1.60153,1.40429][0.729608,0.308787,0][-0.0971422,3.46798,-0.102285][0.243201,0.0410466,-0.225485][0.970087,0.873004,0][-0.438658,3.9588,0.000208842][0.12126,-1.60153,1.40429][0.987464,0.867326,0][-0.291909,4.13716,-0.190539][0.301508,1.42618,-1.53025][0.991395,0.873192,0][-3.26268,1.17601,-1.09138][0.860825,-0.433468,0.266619][0.113828,0.680552,0][-3.3484,1.20298,0.852655][0.889496,-0.428076,-0.159835][0.0649937,0.714435,0][-3.68018,0.505142,0.20561][0.957683,-0.286723,-0.0251742][0.0675945,0.683732,0][-3.35457,0.536511,1.56046][0.885874,-0.235157,-0.399911][0.0366242,0.711704,0][-3.58007,0.523494,0.899491][0.946579,-0.23346,-0.22245][0.0512743,0.697405,0][-3.3484,1.20298,0.852655][0.889496,-0.428076,-0.159835][0.0649937,0.714435,0][-1.2419,-2.26246,-3.89636][-0.341626,-1.48973,-0.0508351][0.204762,0.818167,0][-1.04061,-2.32689,-3.37362][-0.418262,-1.82898,-0.0643852][0.18876,0.817949,0][-0.937719,-1.87695,-3.36098][0.450585,0.386018,1.26189][0.187859,0.804176,0][-0.332234,-2.01374,-3.40838][0.341491,0.59755,3.27831][0.972458,0.744428,0][-0.937719,-1.87695,-3.36098][0.450585,0.386018,1.26189][0.991401,0.745584,0][-1.04061,-2.32689,-3.37362][-0.418262,-1.82898,-0.0643852][0.990578,0.759672,0][-1.31714,1.10855,3.17584][0.313984,-0.418885,-0.852026][0.505208,0.0353637,0][-2.39737,1.15607,2.49692][0.576985,-0.439786,-0.688242][0.472337,0.0318556,0][-1.6856,1.75054,2.56967][0.435579,-0.587397,-0.682082][0.495188,0.015072,0][-2.51413,1.80215,1.79125][0.628183,-0.614963,-0.476662][0.0572615,0.753338,0][-1.6856,1.75054,2.56967][0.435579,-0.587397,-0.682082][0.0431244,0.774611,0][-2.39737,1.15607,2.49692][0.576985,-0.439786,-0.688242][0.0301839,0.752332,0][-2.27378,-2.00353,3.54321][-0.510652,-0.324031,0.796391][0.146247,0.0267447,0][-2.38122,-1.18789,3.71463][-0.525174,-0.147466,0.83812][0.121241,0.0240378,0][-3.15371,-1.17812,3.33437][-0.610675,-0.151054,0.777341][0.120396,0.000433503,0][-1.62514,-2.077,4.03955][-0.440067,-0.322189,0.838174][0.148952,0.0465186,0][-1.49406,-2.87395,3.7086][-0.42738,-0.48721,0.761559][0.173404,0.0499612,0][-0.767706,-2.88482,3.92281][-0.0553053,-0.489242,0.870393][0.17425,0.072155,0][-0.73053,0.417141,3.59191][0.162696,-0.283294,-0.945132][0.521791,0.0575791,0][-1.40229,0.425993,3.3993][0.360536,-0.245998,-0.899721][0.50131,0.0560292,0][-1.31714,1.10855,3.17584][0.313984,-0.418885,-0.852026][0.505208,0.0353637,0][-2.39737,1.15607,2.49692][0.576985,-0.439786,-0.688242][0.472337,0.0318556,0][-1.31714,1.10855,3.17584][0.313984,-0.418885,-0.852026][0.505208,0.0353637,0][-1.40229,0.425993,3.3993][0.360536,-0.245998,-0.899721][0.50131,0.0560292,0][-3.26268,1.17601,-1.09138][0.860825,-0.433468,0.266619][0.113828,0.680552,0][-2.86162,1.17381,-1.88381][1.50608,-0.047157,0.309556][0.136594,0.670811,0][-2.67754,1.68053,-1.64761][0.0258397,-0.726455,-0.00394815][0.140127,0.688396,0][-2.67754,1.68053,-1.64761][0.0258397,-0.726455,-0.00394815][0.327425,0.971987,0][-2.86162,1.17381,-1.88381][1.50608,-0.047157,0.309556][0.345344,0.971178,0][-2.77246,1.68212,-2.55968][0.0202695,-0.569857,-0.00309707][0.340851,0.996456,0][0.614586,1.12435,3.36305][-0.107939,-0.431471,-0.895646][0.564183,0.0385621,0][-1.31714,1.10855,3.17584][0.313984,-0.418885,-0.852026][0.505208,0.0353637,0][-0.0300772,1.73551,3.0528][0.0298039,-0.549037,-0.835266][0.545676,0.0186847,0][-0.0300772,1.73551,3.0528][0.0298039,-0.549037,-0.835266][0.545676,0.0186847,0][1.12443,1.76503,2.84442][-0.256656,-0.585099,-0.769277][0.580961,0.0199837,0][0.614586,1.12435,3.36305][-0.107939,-0.431471,-0.895646][0.564183,0.0385621,0][-1.15979,3.31186,-2.21736][-0.074841,0.866051,-0.494322][0.456523,0.752463,0][-1.47372,2.7953,-2.82138][-0.213628,0.714272,-0.666467][0.462869,0.728281,0][-1.97638,2.79427,-2.48953][-0.536472,0.699311,-0.4724][0.480216,0.734461,0][-0.79037,3.59402,-1.53197][0.117026,0.966268,-0.229413][0.725823,0.228718,0][-1.15979,3.31186,-2.21736][-0.074841,0.866051,-0.494322][0.747728,0.230364,0][-1.55149,3.30921,-1.95713][-0.422113,0.866473,-0.266545][0.742444,0.24271,0][-2.92528,-1.61483,2.08229][0.787778,0.388949,-0.477625][0.810742,0.258122,0][-3.48005,-1.6114,0.84916][0.899681,0.343005,-0.270039][0.769901,0.263591,0][-3.4147,-0.895224,1.56801][0.900485,0.163009,-0.40318][0.78758,0.238024,0][-3.75052,-0.930036,0.183367][0.988424,0.141605,-0.0544633][0.044761,0.650062,0][-3.64588,-0.910325,0.891314][0.961035,0.14386,-0.236044][0.0281445,0.664061,0][-3.48005,-1.6114,0.84916][0.899681,0.343005,-0.270039][0.0192606,0.64918,0][-2.15174,3.32824,-1.24194][-0.315807,0.862914,-0.39452][0.0216223,0.281731,0][-2.75133,2.80493,-1.56328][-0.52662,0.713136,-0.462718][0.0410481,0.267099,0][-2.99257,2.80949,-1.00784][-0.686669,0.720547,-0.0964195][0.0478275,0.282953,0][-1.46955,3.59568,-0.858899][-0.0135615,0.963574,-0.267097][0.710076,0.25175,0][-2.15174,3.32824,-1.24194][-0.315807,0.862914,-0.39452][0.724997,0.264124,0][-2.3383,3.33636,-0.811252][-0.490064,0.871668,-0.00556161][0.713376,0.272259,0][-2.69207,-1.64051,-2.34598][0.695942,0.328204,0.638708][0.899479,0.52027,0][-2.33334,-2.58036,-2.02819][2.18026,-0.903558,-0.016946][0.920767,0.497086,0][-2.12647,-2.06619,-2.62858][1.32067,-1.21719,0.121371][0.921046,0.522014,0][-2.12647,-2.06619,-2.62858][1.32067,-1.21719,0.121371][0.552301,0.855531,0][-2.33334,-2.58036,-2.02819][2.18026,-0.903558,-0.016946][0.527342,0.856057,0][-2.43456,-2.80479,-3.08427][1.04307,0.990601,-0.0833671][0.545399,0.828252,0][-0.984956,4.19924,0.285077][0.0472786,-1.04725,1.03886][0.802248,0.184575,0][-0.291909,4.13716,0.190957][0.0557931,-0.892555,0.827025][0.823142,0.180577,0][-0.145161,4.31553,0.000208879][0.165302,0.803969,-0.878956][0.82815,0.185557,0][-0.0971423,3.46798,0.102702][-0.271165,-0.12141,0.322146][0.885565,0.915553,0][-0.145161,4.31553,0.000208879][0.165302,0.803969,-0.878956][0.859437,0.916444,0][-0.291909,4.13716,0.190957][0.0557931,-0.892555,0.827025][0.865046,0.909204,0][1.3151,-0.161256,-4.17654][0.489126,0.443002,-0.0169175][0.278054,0.290157,0][2.09672,0.0891406,-3.96971][-0.607071,1.99774,-0.0730785][0.253726,0.296309,0][2.15493,-0.390136,-4.06377][0.338448,0.0747117,-0.938015][0.252864,0.281573,0][2.41282,0.163222,-3.79828][-0.755271,0.709562,-0.0651228][0.24394,0.297967,0][2.87989,-0.367719,-3.62777][0.685243,0.0851222,-0.723323][0.230699,0.280876,0][2.15493,-0.390136,-4.06377][0.338448,0.0747117,-0.938015][0.252864,0.281573,0][3.35646,1.0742,0.765443][-0.897961,-0.411747,-0.155337][0.581726,0.262374,0][3.25721,1.04936,-1.17452][-0.86168,-0.435844,0.259898][0.542134,0.218145,0][3.64593,0.34233,-0.598287][-0.952072,-0.280608,0.121727][0.5687,0.219082,0][2.89342,0.76728,-2.08764][-2.23314,-0.497774,0.352073][0.887406,0.442887,0][3.47784,0.361904,-1.27472][-0.90707,-0.249739,0.338901][0.911906,0.420772,0][3.25721,1.04936,-1.17452][-0.86168,-0.435844,0.259898][0.918657,0.441981,0][1.96785,-2.91773,2.04605][-0.536795,0.652194,-0.535252][0.879738,0.325001,0][1.04872,-2.92088,2.65506][-0.295844,0.650883,-0.699162][0.906314,0.343866,0][1.76047,-2.32134,2.74498][-0.491964,0.489053,-0.720276][0.880798,0.353776,0][0.604201,-2.34692,3.21939][-0.195101,0.504719,-0.840949][0.557253,0.144465,0][1.76047,-2.32134,2.74498][-0.491964,0.489053,-0.720276][0.592584,0.145887,0][1.04872,-2.92088,2.65506][-0.295844,0.650883,-0.699162][0.569723,0.162826,0][-2.78126,-4.10692,0.70723][-0.510404,-0.812213,0.282485][0.307872,0.0711395,0][-3.38478,-3.48793,0.862681][-0.701895,-0.63765,0.317405][0.300339,0.0471193,0][-3.47797,-3.50209,0.209824][-0.758234,-0.646823,-0.0818598][0.319897,0.0424663,0][-2.07109,-4.43685,0.541848][-0.187565,-0.956344,0.224111][0.315618,0.0943506,0][-2.78126,-4.10692,0.70723][-0.510404,-0.812213,0.282485][0.307872,0.0711395,0][-2.85315,-4.1103,0.17273][-0.563163,-0.81689,-0.124653][0.323886,0.067346,0][-0.0173977,-2.36337,3.27022][0.0550604,0.496625,-0.866217][0.538254,0.143782,0][-1.79079,-2.34696,2.74098][0.408159,0.511229,-0.756341][0.484172,0.139903,0][-1.95449,-1.69291,2.99777][0.468293,0.353368,-0.809835][0.480423,0.119634,0][-2.48664,-1.65698,2.59043][0.660944,0.330513,-0.673731][0.83103,0.258914,0][-1.95449,-1.69291,2.99777][0.468293,0.353368,-0.809835][0.850173,0.261248,0][-1.79079,-2.34696,2.74098][0.408159,0.511229,-0.756341][0.847956,0.283189,0][-3.48005,-1.6114,0.84916][0.899681,0.343005,-0.270039][0.12547,0.991242,0][-2.92528,-1.61483,2.08229][0.787778,0.388949,-0.477625][0.163331,0.976224,0][-2.27725,-2.31901,2.36909][0.650628,0.507466,-0.564944][0.188404,0.989649,0][-1.79079,-2.34696,2.74098][0.408159,0.511229,-0.756341][0.889376,0.827478,0][-2.27725,-2.31901,2.36909][0.650628,0.507466,-0.564944][0.878596,0.837761,0][-2.48664,-1.65698,2.59043][0.660944,0.330513,-0.673731][0.859437,0.828618,0][-2.78995,-2.87106,0.680683][0.742552,0.633671,-0.216973][0.791225,0.0839478,0][-2.84859,-2.88121,-0.402485][0.759337,0.640485,0.114829][0.791481,0.0507989,0][-3.2614,-2.29097,-0.462691][0.851621,0.511393,0.114973][0.810464,0.0482473,0][-2.84984,-2.299,-1.63965][0.751173,0.51215,0.416463][0.79762,0.0127185,0][-3.2614,-2.29097,-0.462691][0.851621,0.511393,0.114973][0.810464,0.0482473,0][-2.84859,-2.88121,-0.402485][0.759337,0.640485,0.114829][0.791481,0.0507989,0][2.78065,-2.9578,0.621209][-0.735732,0.637422,-0.228893][0.304585,0.448868,0][1.96785,-2.91773,2.04605][-0.536795,0.652194,-0.535252][0.334824,0.416135,0][2.67239,-2.34604,1.84712][-0.705737,0.512532,-0.489129][0.344192,0.44004,0][1.76047,-2.32134,2.74498][-0.491964,0.489053,-0.720276][0.360269,0.415175,0][2.67239,-2.34604,1.84712][-0.705737,0.512532,-0.489129][0.344192,0.44004,0][1.96785,-2.91773,2.04605][-0.536795,0.652194,-0.535252][0.334824,0.416135,0][-0.912469,3.29429,2.28825][-0.329408,0.859445,0.390954][0.693599,0.810582,0][-1.18341,2.74486,2.93012][-0.368292,0.72521,0.581749][0.714333,0.793298,0][-0.608924,2.73875,3.09682][-0.00211356,0.71614,0.697953][0.72382,0.807972,0][-0.621421,3.59087,1.5652][-0.258329,0.964002,0.0629826][0.904053,0.153165,0][-0.912469,3.29429,2.28825][-0.329408,0.859445,0.390954][0.925534,0.146446,0][-0.46064,3.2905,2.41873][0.0642918,0.855873,0.513175][0.930927,0.15848,0][1.17047,2.77608,2.95946][0.351267,0.720372,0.598059][0.253686,0.725724,0][0.931567,3.30899,2.31244][0.307281,0.86454,0.39768][0.277306,0.721748,0][0.4783,3.30049,2.4312][-0.102101,0.856178,0.506493][0.283318,0.733239,0][0.334365,3.59484,1.66254][-0.196159,0.960628,0.196761][0.305659,0.722567,0][0.4783,3.30049,2.4312][-0.102101,0.856178,0.506493][0.283318,0.733239,0][0.931567,3.30899,2.31244][0.307281,0.86454,0.39768][0.277306,0.721748,0][-0.327652,2.80686,-3.16385][-0.192074,0.721525,-0.665213][0.515123,0.674315,0][-0.264513,3.32988,-2.48597][-0.217187,0.864554,-0.453184][0.494165,0.670393,0][0.20714,3.33519,-2.47969][0.218293,0.859903,-0.461427][0.499316,0.658455,0][0.148605,3.6145,-1.71223][0.22018,0.967629,-0.123346][0.475768,0.653614,0][0.20714,3.33519,-2.47969][0.218293,0.859903,-0.461427][0.499316,0.658455,0][-0.264513,3.32988,-2.48597][-0.217187,0.864554,-0.453184][0.494165,0.670393,0][0.349101,2.13756,-3.7175][0.223804,0.574524,-0.787295][0.303151,0.362144,0][0.411348,1.38515,-4.14487][0.226671,0.397234,-0.889284][0.302685,0.339066,0][-0.382212,1.42227,-4.14936][-0.186343,0.391843,-0.900963][0.326829,0.341711,0][0.653474,1.43195,-3.99324][1.92671,-0.102693,-0.0446862][0.295208,0.340033,0][0.349101,2.13756,-3.7175][0.223804,0.574524,-0.787295][0.303151,0.362144,0][1.0125,2.01266,-3.43828][0.270064,0.550162,-0.790182][0.283146,0.357069,0][2.3932,2.30069,1.07694][-0.630293,-0.722412,-0.284343][0.554954,0.296775,0][1.81284,2.31339,1.8815][-0.484135,-0.707505,-0.51483][0.558059,0.326089,0][1.68548,2.76396,1.18161][-0.449569,-0.841283,-0.300217][0.537235,0.315522,0][2.55678,2.28342,0.607303][-0.699392,-0.705399,-0.115161][0.549493,0.282669,0][2.3932,2.30069,1.07694][-0.630293,-0.722412,-0.284343][0.554954,0.296775,0][1.68548,2.76396,1.18161][-0.449569,-0.841283,-0.300217][0.537235,0.315522,0][-3.3484,1.20298,0.852655][0.889496,-0.428076,-0.159835][0.0649937,0.714435,0][-3.26268,1.17601,-1.09138][0.860825,-0.433468,0.266619][0.113828,0.680552,0][-3.0532,1.80458,-0.413577][0.832273,-0.543525,0.109097][0.108445,0.708932,0][-2.67754,1.68053,-1.64761][0.0258397,-0.726455,-0.00394815][0.140127,0.688396,0][-3.0532,1.80458,-0.413577][0.832273,-0.543525,0.109097][0.108445,0.708932,0][-3.26268,1.17601,-1.09138][0.860825,-0.433468,0.266619][0.113828,0.680552,0][0.969839,2.30545,2.40397][-0.229695,-0.719264,-0.655667][0.55027,0.353206,0][1.81284,2.31339,1.8815][-0.484135,-0.707505,-0.51483][0.558059,0.326089,0][1.65468,1.77109,2.57901][-0.451886,-0.581471,-0.676528][0.573646,0.340878,0][1.81284,2.31339,1.8815][-0.484135,-0.707505,-0.51483][0.558059,0.326089,0][0.969839,2.30545,2.40397][-0.229695,-0.719264,-0.655667][0.55027,0.353206,0][1.12008,2.75846,1.70287][-0.266053,-0.843867,-0.465944][0.535334,0.337739,0][3.25721,1.04936,-1.17452][-0.86168,-0.435844,0.259898][0.542134,0.218145,0][3.35646,1.0742,0.765443][-0.897961,-0.411747,-0.155337][0.581726,0.262374,0][3.09358,1.68999,0.113966][-0.844063,-0.536095,0.0126173][0.557298,0.256694,0][2.81651,1.74038,1.25318][-0.770083,-0.558477,-0.308343][0.57302,0.28887,0][3.09358,1.68999,0.113966][-0.844063,-0.536095,0.0126173][0.557298,0.256694,0][3.35646,1.0742,0.765443][-0.897961,-0.411747,-0.155337][0.581726,0.262374,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.0415957,0.944767,0][1.04943,3.6181,-1.32886][0.267675,0.963372,0.0162605][0.0891398,0.936839,0][0.772228,3.62052,-1.51433][-0.118314,0.971251,-0.206577][0.0911532,0.946198,0][1.11367,3.33783,-2.18779][0.104081,0.855344,-0.507498][0.115308,0.94267,0][0.772228,3.62052,-1.51433][-0.118314,0.971251,-0.206577][0.0911532,0.946198,0][1.04943,3.6181,-1.32886][0.267675,0.963372,0.0162605][0.0891398,0.936839,0][1.19208,3.60849,1.25048][-0.077448,0.956712,0.280543][0.790069,0.71093,0][0.61893,3.56164,0.624071][-0.220012,0.972248,0.0795534][0.764826,0.704712,0][0.471785,3.43019,0.696953][-0.685217,1.20019,0.505061][0.764749,0.698281,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.0415957,0.944767,0][0.61893,3.56164,0.624071][-0.220012,0.972248,0.0795534][0.0300846,0.922594,0][1.51348,3.46835,0.712487][0.178607,0.982118,0.0595337][0.0382674,0.897775,0][-1.71738,2.15367,-3.31737][-0.317153,0.5652,-0.761553][0.366177,0.366573,0][-1.47372,2.7953,-2.82138][-0.213628,0.714272,-0.666467][0.35752,0.385687,0][-0.879167,2.68295,-2.93595][-0.217421,0.717773,-0.661461][0.339591,0.381126,0][-0.695853,3.18163,-2.30759][-0.173712,0.864519,-0.471625][0.443958,0.747951,0][-0.879167,2.68295,-2.93595][-0.217421,0.717773,-0.661461][0.446322,0.723794,0][-1.47372,2.7953,-2.82138][-0.213628,0.714272,-0.666467][0.462869,0.728281,0][-0.019023,-4.32955,2.07188][0.0079132,-0.970825,0.239657][0.907887,0.0460175,0][-0.0153521,-4.03723,2.77396][0.0112223,-0.825254,0.56465][0.929568,0.0424217,0][-0.55051,-4.18364,2.84046][0.0637305,-0.826655,0.559089][0.932209,0.0592869,0][-0.674132,-3.59173,3.44497][-0.00916164,-0.643692,0.76523][0.958123,0.0563961,0][-0.55051,-4.18364,2.84046][0.0637305,-0.826655,0.559089][0.932209,0.0592869,0][-0.0153521,-4.03723,2.77396][0.0112223,-0.825254,0.56465][0.929568,0.0424217,0][-3.04526,2.18115,2.22367][-0.696709,0.60886,0.379324][0.087942,0.375036,0][-3.41543,1.43701,2.50369][-0.786742,0.429279,0.443573][0.114626,0.377588,0][-2.91303,1.38356,3.08393][-0.512999,0.426331,0.745033][0.113788,0.396003,0][-3.41543,1.43701,2.50369][-0.786742,0.429279,0.443573][0.114626,0.377588,0][-3.04526,2.18115,2.22367][-0.696709,0.60886,0.379324][0.087942,0.375036,0][-3.26615,2.09777,1.56281][-0.728013,0.597079,0.336889][0.0883697,0.354186,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.675251,0.21594,0][-1.60851,3.46147,-0.238949][-0.179555,0.983543,-0.0200869][0.692101,0.258127,0][-1.68301,3.60682,0.0775666][-0.148468,0.966071,-0.211339][0.683577,0.264169,0][-2.45919,3.34648,0.119351][-0.470139,0.868413,-0.157569][0.693599,0.861718,0][-1.68301,3.60682,0.0775666][-0.148468,0.966071,-0.211339][0.711629,0.844314,0][-1.60851,3.46147,-0.238949][-0.179555,0.983543,-0.0200869][0.720032,0.851226,0][-2.71304,-3.97761,-0.347131][-0.57246,-0.814139,-0.0973021][0.339923,0.0676927,0][-2.0168,-4.30181,-0.240311][-0.261161,-0.964273,-0.0444044][0.339348,0.0913928,0][-2.1226,-4.43567,0.144798][-0.230956,-0.958925,-0.16469][0.327514,0.0915373,0][-2.0168,-4.30181,-0.240311][-0.261161,-0.964273,-0.0444044][0.339348,0.0913928,0][-2.71304,-3.97761,-0.347131][-0.57246,-0.814139,-0.0973021][0.339923,0.0676927,0][-2.67764,-4.12288,-0.888504][-0.572416,-0.819221,-0.0348811][0.356693,0.0686501,0][-0.0177661,-2.94443,2.85742][-0.0294074,0.659388,-0.751227][0.537136,0.161512,0][-0.559911,-2.94829,2.79898][0.211134,0.630418,-0.746991][0.520585,0.160597,0][-0.0173977,-2.36337,3.27022][0.0550604,0.496625,-0.866217][0.538254,0.143782,0][-1.79079,-2.34696,2.74098][0.408159,0.511229,-0.756341][0.484172,0.139903,0][-0.0173977,-2.36337,3.27022][0.0550604,0.496625,-0.866217][0.538254,0.143782,0][-0.559911,-2.94829,2.79898][0.211134,0.630418,-0.746991][0.520585,0.160597,0][-2.51413,1.80215,1.79125][0.628183,-0.614963,-0.476662][0.0572615,0.753338,0][-2.99344,1.8195,0.751826][0.780963,-0.597984,-0.180314][0.0799764,0.730391,0][-2.36789,2.34159,1.06737][0.605637,-0.740255,-0.291935][0.0850499,0.754386,0][-2.60231,2.34654,0.114588][0.680787,-0.73177,-0.0322747][0.107219,0.73527,0][-2.36789,2.34159,1.06737][0.605637,-0.740255,-0.291935][0.0850499,0.754386,0][-2.99344,1.8195,0.751826][0.780963,-0.597984,-0.180314][0.0799764,0.730391,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.675251,0.21594,0][-1.23966,3.45041,-1.08578][-0.149627,0.981626,-0.118414][0.714952,0.24214,0][-1.46955,3.59568,-0.858899][-0.0135615,0.963574,-0.267097][0.710076,0.25175,0][-2.15174,3.32824,-1.24194][-0.315807,0.862914,-0.39452][0.724997,0.264124,0][-1.46955,3.59568,-0.858899][-0.0135615,0.963574,-0.267097][0.710076,0.25175,0][-1.23966,3.45041,-1.08578][-0.149627,0.981626,-0.118414][0.714952,0.24214,0][2.59198,1.56564,-1.68763][-2.05047,-0.41982,1.03203][0.986204,0.18842,0][2.67287,1.71365,-1.57303][-0.731269,-0.531723,0.427219][0.991096,0.19227,0][2.37571,1.64383,-2.0855][-0.988608,-1.34602,0.598864][0.974416,0.191489,0][2.81641,1.39139,-1.6937][-2.12368,-0.671842,0.649243][0.519203,0.216473,0][3.25721,1.04936,-1.17452][-0.86168,-0.435844,0.259898][0.542134,0.218145,0][2.67287,1.71365,-1.57303][-0.731269,-0.531723,0.427219][0.515266,0.224497,0][-2.75133,2.80493,-1.56328][-0.52662,0.713136,-0.462718][0.0410481,0.267099,0][-3.24255,2.15078,-1.80579][-0.656161,0.562445,-0.503098][0.0631896,0.254306,0][-3.53403,2.14932,-1.14947][-0.807244,0.570668,-0.150646][0.0714659,0.272978,0][-3.24255,2.15078,-1.80579][-0.656161,0.562445,-0.503098][0.467089,0.824465,0][-2.75133,2.80493,-1.56328][-0.52662,0.713136,-0.462718][0.446698,0.808195,0][-2.31591,2.67905,-1.98695][-0.543475,0.711128,-0.446017][0.457699,0.792752,0][-2.87786,-2.71145,-2.46089][-0.652126,-0.486328,-0.581564][0.821372,0.365558,0][-3.12943,-1.94641,-2.68991][-0.707556,-0.313274,-0.633422][0.821964,0.340411,0][-2.64201,-2.01465,-3.3694][-0.665891,-0.316243,-0.675706][0.847575,0.341795,0][-2.64201,-2.01465,-3.3694][-0.665891,-0.316243,-0.675706][0.847575,0.341795,0][-2.43456,-2.80479,-3.08427][1.04307,0.990601,-0.0833671][0.844824,0.367723,0][-2.87786,-2.71145,-2.46089][-0.652126,-0.486328,-0.581564][0.821372,0.365558,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-1.11704,-4.32373,1.76394][-0.153474,-0.968637,0.195417][0.281336,0.123411,0][-1.47642,-4.45568,1.5808][-0.0340186,-0.961283,0.273456][0.28596,0.114575,0][-1.9765,-4.14997,2.10122][-0.286329,-0.822926,0.490723][0.268128,0.0986925,0][-1.47642,-4.45568,1.5808][-0.0340186,-0.961283,0.273456][0.28596,0.114575,0][-1.11704,-4.32373,1.76394][-0.153474,-0.968637,0.195417][0.281336,0.123411,0][0.81337,-3.51427,-2.00095][-0.0262315,2.10866,-0.0364695][0.871354,0.58655,0][0.109114,-3.50286,-2.17521][-0.712714,-0.046139,0.00453052][0.855965,0.570572,0][0.504508,-3.78664,-1.67748][-0.141802,0.88385,0.44576][0.877182,0.571691,0][0.81337,-3.51427,-2.00095][-0.0262315,2.10866,-0.0364695][0.871354,0.58655,0][0.504508,-3.78664,-1.67748][-0.141802,0.88385,0.44576][0.877182,0.571691,0][1.504,-3.79967,-0.911301][-0.373797,0.895959,0.239863][0.91005,0.589033,0][-4.10562,-2.02262,-1.38201][-0.919533,-0.326351,-0.218983][0.364099,0.000661793,0][-3.76585,-2.80979,-1.25692][-0.845835,-0.502526,-0.178975][0.362526,0.0205554,0][-3.79915,-2.71558,-0.502196][-0.859378,-0.495449,-0.12649][0.339358,0.0210527,0][-3.76585,-2.80979,-1.25692][-0.845835,-0.502526,-0.178975][0.362526,0.0205554,0][-4.10562,-2.02262,-1.38201][-0.919533,-0.326351,-0.218983][0.364099,0.000661793,0][-3.74745,-2.01463,-2.12711][-0.751678,-0.322602,-0.575246][0.387848,0.00782941,0][0.790807,-3.99323,-2.60143][0.137193,-0.829905,-0.540773][0.745994,0.946709,0][1.39623,-3.52855,-3.11031][-0.0148802,1.78642,-0.0347417][0.769323,0.947184,0][1.32278,-4.14068,-2.52622][0.0775339,-0.831089,-0.550708][0.755874,0.960392,0][0.790807,-3.99323,-2.60143][0.137193,-0.829905,-0.540773][0.538247,0.732503,0][0.812714,-3.53391,-3.13641][-0.00599194,0.481671,-0.00833057][0.558619,0.728743,0][1.39623,-3.52855,-3.11031][-0.0148802,1.78642,-0.0347417][0.558569,0.743708,0][3.51986,-2.04995,2.46497][0.82365,-0.309621,0.475116][0.091499,0.568116,0][3.22443,-2.85668,2.2834][0.760428,-0.490457,0.425678][0.0651392,0.563546,0][3.47867,-2.78698,1.56454][0.779162,-0.48794,0.393474][0.0695306,0.541389,0][3.22443,-2.85668,2.2834][0.760428,-0.490457,0.425678][0.0651392,0.563546,0][3.51986,-2.04995,2.46497][0.82365,-0.309621,0.475116][0.091499,0.568116,0][2.97565,-2.00865,3.10196][0.590365,-0.303897,0.747741][0.0863435,0.587798,0][0.85551,-3.42072,2.16291][-0.255377,0.790547,-0.556613][0.916214,0.323945,0][-0.0167534,-3.43418,2.34038][0.000401077,0.799937,-0.600083][0.942006,0.332638,0][-0.0177661,-2.94443,2.85742][-0.0294074,0.659388,-0.751227][0.937918,0.354024,0][-0.559911,-2.94829,2.79898][0.211134,0.630418,-0.746991][0.954125,0.355723,0][-0.0177661,-2.94443,2.85742][-0.0294074,0.659388,-0.751227][0.937918,0.354024,0][-0.0167534,-3.43418,2.34038][0.000401077,0.799937,-0.600083][0.942006,0.332638,0][1.56183,-3.79782,0.677034][-0.395549,0.893021,-0.214606][0.831662,0.7578,0][0.627646,-3.80711,1.59885][-0.209966,0.883874,-0.417948][0.859365,0.744428,0][0.85551,-3.42072,2.16291][-0.255377,0.790547,-0.556613][0.877108,0.757425,0][-0.0167534,-3.43418,2.34038][0.000401077,0.799937,-0.600083][0.709061,0.137798,0][0.85551,-3.42072,2.16291][-0.255377,0.790547,-0.556613][0.684879,0.133272,0][0.627646,-3.80711,1.59885][-0.209966,0.883874,-0.417948][0.685555,0.115989,0][0.751125,-0.620809,-4.3912][0.478128,0.000251505,-1.17083][0.296139,0.277209,0][0.623513,-0.304763,-4.45863][0.476304,0.178799,-1.25868][0.299431,0.287096,0][1.3151,-0.161256,-4.17654][0.489126,0.443002,-0.0169175][0.278054,0.290157,0][0.74401,-0.627141,-3.70534][-0.182819,1.5385,0.0123073][0.663097,0.816605,0][0.623513,-0.304763,-4.45863][0.476304,0.178799,-1.25868][0.656501,0.793298,0][0.751125,-0.620809,-4.3912][0.478128,0.000251505,-1.17083][0.664034,0.795657,0][1.25776,2.77419,-1.62922][-0.317606,-0.830702,0.457231][0.473337,0.256821,0][0.180805,2.77388,-2.08558][-0.0687725,-0.841218,0.536304][0.441437,0.265028,0][0.239846,2.33153,-2.64441][-0.097823,-0.723807,0.683034][0.436245,0.247167,0][-0.746019,2.32188,-2.55743][0.226091,-0.725995,0.649473][0.652613,0.437877,0][0.239846,2.33153,-2.64441][-0.097823,-0.723807,0.683034][0.648795,0.407861,0][0.180805,2.77388,-2.08558][-0.0687725,-0.841218,0.536304][0.670654,0.408271,0][2.19053,2.77433,2.33298][0.372632,0.710654,0.596755][0.00443156,0.852184,0][2.56511,2.12459,2.72827][0.48192,0.564307,0.670306][0.00109866,0.830106,0][3.04475,2.09603,2.19057][0.73828,0.557441,0.37974][0.0216911,0.824381,0][2.56511,2.12459,2.72827][0.48192,0.564307,0.670306][0.0234937,0.177568,0][2.19053,2.77433,2.33298][0.372632,0.710654,0.596755][0.00336906,0.166578,0][1.64706,2.66356,2.5951][0.379124,0.710785,0.592494][0.00637025,0.149888,0][-1.06512,-3.81582,-1.35857][0.265319,0.893741,0.361707][0.728938,0.0238856,0][-1.5059,-3.81118,-0.862642][0.408347,0.88702,0.215519][0.741769,0.0385788,0][-1.07146,-4.07941,-0.13679][0.285524,0.957267,0.0460048][0.727105,0.0613343,0][-1.5059,-3.81118,-0.862642][0.408347,0.88702,0.215519][0.741769,0.0385788,0][-1.06512,-3.81582,-1.35857][0.265319,0.893741,0.361707][0.728938,0.0238856,0][-1.99484,-3.30296,-1.41201][2.64493,2.87025,0.996407][0.761242,0.0210431,0][-0.984956,4.19924,0.285077][0.0472786,-1.04725,1.03886][0.976299,0.364419,0][-0.959542,4.48297,0.000208892][0.22758,1.02374,-1.05941][0.976901,0.352479,0][-1.01037,3.91551,0.000208898][0.0548666,-1.04619,1.00904][0.988254,0.364286,0][-0.145161,4.31553,0.000208879][0.165302,0.803969,-0.878956][0.859437,0.868783,0][-0.959542,4.48297,0.000208892][0.22758,1.02374,-1.05941][0.884815,0.867325,0][-0.984956,4.19924,0.285077][0.0472786,-1.04725,1.03886][0.884535,0.879639,0][-0.959542,4.48297,0.000208892][0.22758,1.02374,-1.05941][0.976901,0.352479,0][-0.984956,4.19924,-0.284659][0.232641,1.02218,-1.03886][0.988855,0.352346,0][-1.01037,3.91551,0.000208898][0.0548666,-1.04619,1.00904][0.988254,0.364286,0][-0.438658,3.9588,0.000208842][0.12126,-1.60153,1.40429][0.729608,0.308787,0][-1.01037,3.91551,0.000208898][0.0548666,-1.04619,1.00904][0.746857,0.305709,0][-0.984956,4.19924,-0.284659][0.232641,1.02218,-1.03886][0.747612,0.317991,0][-0.867985,0.493266,4.39212][-0.0794944,0.236255,0.968434][0.0709267,0.0714798,0][-0.87585,-0.3689,4.51482][-0.0882229,0.0454196,0.995065][0.0972734,0.0706295,0][-0.0103179,-0.377936,4.43012][-0.00570033,0.0487583,0.998794][0.098162,0.0970783,0][-0.87585,-0.3689,4.51482][-0.0882229,0.0454196,0.995065][0.0972734,0.0706295,0][-0.867985,0.493266,4.39212][-0.0794944,0.236255,0.968434][0.0709267,0.0714798,0][-1.68655,0.507499,4.16194][-0.437003,0.233095,0.868732][0.0699125,0.0464703,0][-2.3952,-2.73467,-1.75859][0.353761,0.335966,-0.0282743][0.77927,0.0097655,0][-2.84984,-2.299,-1.63965][0.751173,0.51215,0.416463][0.79762,0.0127185,0][-2.27851,-2.89933,-1.72441][1.82615,1.46338,0.232478][0.773952,0.01101,0][-2.27851,-2.89933,-1.72441][1.82615,1.46338,0.232478][0.827418,0.449796,0][-1.97687,-3.27849,-2.9864][1.68487,3.12243,-0.0250925][0.80843,0.413686,0][-2.3952,-2.73467,-1.75859][0.353761,0.335966,-0.0282743][0.832557,0.447945,0][3.04573,0.582116,3.21364][0.610629,0.225018,0.759275][0.697738,0.350721,0][3.13877,-0.272885,3.27608][0.636569,0.0400068,0.770181][0.689829,0.375415,0][3.7148,-0.317072,2.59351][0.867897,0.039208,0.495194][0.663414,0.36956,0][3.13877,-0.272885,3.27608][0.636569,0.0400068,0.770181][0.097179,0.193405,0][3.04573,0.582116,3.21364][0.610629,0.225018,0.759275][0.0709798,0.191167,0][2.28776,0.546745,3.62415][0.542576,0.232493,0.807192][0.0715247,0.167974,0][3.09358,1.68999,0.113966][-0.844063,-0.536095,0.0126173][0.557298,0.256694,0][2.81651,1.74038,1.25318][-0.770083,-0.558477,-0.308343][0.57302,0.28887,0][2.55678,2.28342,0.607303][-0.699392,-0.705399,-0.115161][0.549493,0.282669,0][2.3932,2.30069,1.07694][-0.630293,-0.722412,-0.284343][0.554954,0.296775,0][2.55678,2.28342,0.607303][-0.699392,-0.705399,-0.115161][0.549493,0.282669,0][2.81651,1.74038,1.25318][-0.770083,-0.558477,-0.308343][0.57302,0.28887,0][-1.98781,-2.91371,2.06535][0.554734,0.642667,-0.52844][0.770045,0.127103,0][-2.78995,-2.87106,0.680683][0.742552,0.633671,-0.216973][0.791225,0.0839478,0][-3.19047,-2.27154,0.778959][0.830099,0.494218,-0.258234][0.810169,0.0862464,0][-3.2614,-2.29097,-0.462691][0.851621,0.511393,0.114973][0.810464,0.0482473,0][-3.19047,-2.27154,0.778959][0.830099,0.494218,-0.258234][0.810169,0.0862464,0][-2.78995,-2.87106,0.680683][0.742552,0.633671,-0.216973][0.791225,0.0839478,0][-0.0177157,-4.22677,0.00639689][-0.00691331,0.999975,-0.001344][0.696188,0.0668709,0][-0.659377,-4.08018,-0.825308][0.177471,0.960941,0.21236][0.714898,0.0407255,0][-1.07146,-4.07941,-0.13679][0.285524,0.957267,0.0460048][0.727105,0.0613343,0][-1.07146,-4.07941,-0.13679][0.285524,0.957267,0.0460048][0.727105,0.0613343,0][-0.659377,-4.08018,-0.825308][0.177471,0.960941,0.21236][0.714898,0.0407255,0][-1.06512,-3.81582,-1.35857][0.265319,0.893741,0.361707][0.728938,0.0238856,0][-3.79778,-1.89605,1.77516][-0.866637,-0.317869,0.384577][0.457554,0.856296,0][-4.41187,-1.15256,1.09789][-0.932984,-0.144244,0.329749][0.479572,0.884356,0][-4.21114,-1.9923,1.05688][-0.884948,-0.323266,0.335211][0.453715,0.88151,0][-4.41187,-1.15256,1.09789][-0.932984,-0.144244,0.329749][0.187245,0.316465,0][-4.53814,-1.18606,0.239489][-0.988647,-0.142991,-0.0461541][0.183761,0.290327,0][-4.21114,-1.9923,1.05688][-0.884948,-0.323266,0.335211][0.207091,0.310536,0][-2.47124,2.33558,-0.871942][0.661034,-0.711713,0.237695][0.132695,0.719064,0][-2.60231,2.34654,0.114588][0.680787,-0.73177,-0.0322747][0.107219,0.73527,0][-3.0532,1.80458,-0.413577][0.832273,-0.543525,0.109097][0.108445,0.708932,0][-2.60231,2.34654,0.114588][0.680787,-0.73177,-0.0322747][0.107219,0.73527,0][-2.47124,2.33558,-0.871942][0.661034,-0.711713,0.237695][0.132695,0.719064,0][-2.01868,2.76958,-0.330273][0.511786,-0.854896,0.0850214][0.129423,0.743209,0][2.19053,2.77433,2.33298][0.372632,0.710654,0.596755][0.836548,0.704325,0][1.72388,3.31873,1.83347][0.196239,0.85613,0.478049][0.814531,0.7103,0][1.30232,3.17761,2.03279][0.272548,0.859196,0.433012][0.813364,0.696489,0][0.902465,3.46329,1.38815][0.547698,5.82811,0.925455][0.299617,0.70418,0][1.30232,3.17761,2.03279][0.272548,0.859196,0.433012][0.275172,0.707193,0][1.72388,3.31873,1.83347][0.196239,0.85613,0.478049][0.272733,0.695864,0][-1.43465,-3.80468,1.01451][0.384749,0.875395,-0.292665][0.742024,0.0960005,0][-0.664082,-3.81604,1.62037][0.167401,0.885306,-0.433832][0.721232,0.115314,0][-0.893285,-4.07818,0.635141][0.215761,0.962682,-0.163371][0.723069,0.0851023,0][-1.70655,-3.79939,0.41555][0.481217,0.87208,-0.0889189][0.748937,0.077417,0][-1.43465,-3.80468,1.01451][0.384749,0.875395,-0.292665][0.742024,0.0960005,0][-0.893285,-4.07818,0.635141][0.215761,0.962682,-0.163371][0.723069,0.0851023,0][-1.6856,1.75054,2.56967][0.435579,-0.587397,-0.682082][0.0431244,0.774611,0][-2.51413,1.80215,1.79125][0.628183,-0.614963,-0.476662][0.0572615,0.753338,0][-1.7991,2.31224,1.85789][0.450556,-0.733493,-0.508907][0.0690346,0.773631,0][-2.36789,2.34159,1.06737][0.605637,-0.740255,-0.291935][0.0850499,0.754386,0][-1.7991,2.31224,1.85789][0.450556,-0.733493,-0.508907][0.0690346,0.773631,0][-2.51413,1.80215,1.79125][0.628183,-0.614963,-0.476662][0.0572615,0.753338,0][2.87989,-0.367719,-3.62777][0.685243,0.0851222,-0.723323][0.230699,0.280876,0][2.41282,0.163222,-3.79828][-0.755271,0.709562,-0.0651228][0.24394,0.297967,0][2.7649,0.56666,-3.4858][-1.9698,1.80624,-0.141748][0.232428,0.309607,0][2.87989,-0.367719,-3.62777][0.685243,0.0851222,-0.723323][0.314198,0.768857,0][2.7649,0.56666,-3.4858][-1.9698,1.80624,-0.141748][0.306222,0.796379,0][2.91022,0.776809,-3.09841][0.451961,0.229621,-0.437329][0.292626,0.800113,0][0.387983,-1.65318,-3.58184][-0.0581412,0.319484,0.945806][0.504755,0.530162,0][0.373269,-1.88007,-3.47729][0.41034,-2.38579,-0.0286778][0.505365,0.537086,0][1.21741,-1.73466,-3.36342][0.22149,-1.42568,0.00393588][0.479461,0.533239,0][0.387983,-1.65318,-3.58184][-0.0581412,0.319484,0.945806][0.504755,0.530162,0][1.21741,-1.73466,-3.36342][0.22149,-1.42568,0.00393588][0.479461,0.533239,0][1.11057,-0.991188,-3.61641][-0.280574,0.132973,0.950577][0.4822,0.510439,0][-2.2122,1.27675,3.41071][-0.455426,0.421972,0.783918][0.0460282,0.0309476,0][-1.9708,2.00423,3.03846][-0.403115,0.589599,0.699909][0.0239633,0.0388407,0][-2.59416,2.13503,2.73902][-0.424582,0.601063,0.677092][0.0195243,0.0198801,0][-2.59416,2.13503,2.73902][-0.424582,0.601063,0.677092][0.0195243,0.0198801,0][-2.91303,1.38356,3.08393][-0.512999,0.426331,0.745033][0.0422678,0.00960213,0][-2.2122,1.27675,3.41071][-0.455426,0.421972,0.783918][0.0460282,0.0309476,0][0.989892,-4.42934,-1.86229][-0.0822303,-0.957543,-0.276313][0.251599,0.651815,0][1.32278,-4.14068,-2.52622][0.0775339,-0.831089,-0.550708][0.230699,0.649482,0][1.77876,-4.14684,-2.25034][0.433894,-0.832352,-0.344858][0.237096,0.63563,0][2.10853,-3.50997,-2.82851][-1.92147,2.87475,-0.0403026][0.771832,0.865053,0][1.77876,-4.14684,-2.25034][0.433894,-0.832352,-0.344858][0.745994,0.860283,0][1.32278,-4.14068,-2.52622][0.0775339,-0.831089,-0.550708][0.750236,0.844716,0][-0.744381,2.0725,3.66662][-0.04074,0.581031,0.812861][0.0227442,0.076375,0][-0.833072,1.31595,4.10589][-0.0648496,0.419346,0.905507][0.0458058,0.073129,0][-0.0426874,1.25218,4.02709][-0.00582079,0.414096,0.910215][0.0483139,0.0972422,0][-0.833072,1.31595,4.10589][-0.0648496,0.419346,0.905507][0.0458058,0.073129,0][-0.744381,2.0725,3.66662][-0.04074,0.581031,0.812861][0.0227442,0.076375,0][-1.42305,2.08173,3.4712][-0.396547,0.590482,0.702909][0.021982,0.055638,0][3.09438,2.72169,0.804742][0.65869,0.698529,0.279613][0.0575932,0.847859,0][2.43051,3.2953,0.645805][0.455285,0.84833,0.270279][0.0514533,0.873392,0][2.19053,3.17503,1.04244][0.494271,0.848141,0.190662][0.0383036,0.873072,0][1.51348,3.46835,0.712487][0.178607,0.982118,0.0595337][0.0382674,0.897775,0][2.19053,3.17503,1.04244][0.494271,0.848141,0.190662][0.0383036,0.873072,0][2.43051,3.2953,0.645805][0.455285,0.84833,0.270279][0.0514533,0.873392,0][0.773354,-2.88741,-3.6927][0.876416,0.0525242,-0.000967893][0.427739,0.914345,0][0.812714,-3.53391,-3.13641][-0.00599194,0.481671,-0.00833057][0.444746,0.93175,0][0.806652,-3.45923,-3.23931][0.336426,-0.826164,-1.06669][0.4416,0.929759,0][0.100247,-3.48992,-3.43834][-0.761105,-0.0492717,0.00483812][0.56417,0.706722,0][0.806652,-3.45923,-3.23931][0.336426,-0.826164,-1.06669][0.562173,0.727646,0][0.812714,-3.53391,-3.13641][-0.00599194,0.481671,-0.00833057][0.558619,0.728743,0][-0.172423,-4.4442,-2.03734][-0.187043,-0.961522,-0.201224][0.399953,0.137748,0][-0.252153,-4.13,-2.7726][-0.213146,-0.823856,-0.525195][0.421574,0.128964,0][0.287127,-4.13163,-2.78703][0.186512,-0.819565,-0.54178][0.423714,0.143781,0][-0.252153,-4.13,-2.7726][-0.213146,-0.823856,-0.525195][0.536892,0.702719,0][-0.321241,-3.51615,-3.40748][-0.00733347,-0.754838,-0.741609][0.56285,0.696489,0][0.287127,-4.13163,-2.78703][0.186512,-0.819565,-0.54178][0.537265,0.715894,0][2.87631,-0.297167,-2.5447][-0.740237,-0.0874267,0.666637][0.427739,0.490475,0][2.37347,0.203974,-2.89781][-0.440779,-0.0151489,0.619773][0.442754,0.474802,0][2.35583,-1.01572,-2.99607][-0.593187,0.130486,0.79442][0.444156,0.51207,0][2.73895,0.606744,-2.41028][-0.865221,0.796526,-0.0505668][0.875531,0.441951,0][2.37347,0.203974,-2.89781][-0.440779,-0.0151489,0.619773][0.854731,0.43815,0][2.87631,-0.297167,-2.5447][-0.740237,-0.0874267,0.666637][0.864984,0.41627,0][-3.54545,-1.9683,2.55888][-0.836483,-0.322076,0.443354][0.825911,0.659941,0][-3.25031,-2.7678,2.35143][-0.782504,-0.486244,0.388914][0.799103,0.659703,0][-2.76035,-2.81822,2.92003][-0.52877,-0.4954,0.689188][0.797017,0.636883,0][-3.25031,-2.7678,2.35143][-0.782504,-0.486244,0.388914][0.254484,0.0467521,0][-3.54545,-1.9683,2.55888][-0.836483,-0.322076,0.443354][0.246078,0.0290847,0][-3.79778,-1.89605,1.77516][-0.866637,-0.317869,0.384577][0.268983,0.0184865,0][-4.33388,-1.15277,-0.592732][-0.980255,-0.138737,-0.140901][0.174499,0.266363,0][-4.37172,-0.315332,-0.593215][-0.988995,0.0506223,-0.139017][0.152377,0.271521,0][-4.33614,-0.308531,-1.46323][-0.969037,0.0489352,-0.242018][0.145688,0.245769,0][-4.33614,-0.308531,-1.46323][-0.969037,0.0489352,-0.242018][0.145688,0.245769,0][-4.21978,0.557605,-1.3975][-0.944858,0.239131,-0.223742][0.121313,0.253533,0][-3.86219,0.566839,-2.16015][-0.78656,0.246312,-0.566262][0.111255,0.231939,0][-1.27625,-4.46379,-1.59109][-0.276179,-0.959161,-0.0611192][0.38295,0.109163,0][-1.72816,-4.14722,-2.17892][-0.463672,-0.816969,-0.342884][0.398916,0.0906155,0][-1.27679,-4.14505,-2.46562][-0.120841,-0.815176,-0.566467][0.409044,0.102017,0][-1.63007,-3.34335,-3.15577][-0.0880615,-0.714981,-0.785463][0.427716,0.0796007,0][-1.27679,-4.14505,-2.46562][-0.120841,-0.815176,-0.566467][0.409044,0.102017,0][-1.72816,-4.14722,-2.17892][-0.463672,-0.816969,-0.342884][0.398916,0.0906155,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.0415957,0.944767,0][1.72337,3.6042,0.119229][0.178718,0.963441,-0.199604][0.0564769,0.901502,0][1.64199,3.46289,-0.198235][0.21468,0.975658,-0.0447646][0.0651551,0.90587,0][2.37759,3.14457,-0.283775][0.542365,0.83402,-0.101245][0.0775764,0.884596,0][1.64199,3.46289,-0.198235][0.21468,0.975658,-0.0447646][0.0651551,0.90587,0][1.72337,3.6042,0.119229][0.178718,0.963441,-0.199604][0.0564769,0.901502,0][1.9711,2.30449,-1.72544][-0.561349,-0.710182,0.424886][0.491404,0.238122,0][1.60994,2.32399,-2.0715][-0.408672,-0.716942,0.564784][0.476758,0.236481,0][1.93694,1.68422,-2.48118][-0.585438,-1.84457,1.07627][0.482165,0.215795,0][1.60994,2.32399,-2.0715][-0.408672,-0.716942,0.564784][0.476758,0.236481,0][1.9711,2.30449,-1.72544][-0.561349,-0.710182,0.424886][0.491404,0.238122,0][1.54374,2.76394,-1.35302][-0.446736,-0.835755,0.319282][0.484924,0.258215,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-1.74104,-4.44823,1.27342][-0.28888,-0.95701,-0.026068][0.294452,0.106126,0][-1.86893,-4.30461,0.891763][-0.252856,-0.963234,0.0907982][0.305431,0.0994345,0][-2.50662,-3.97567,1.17773][-0.549131,-0.805039,0.224429][0.294253,0.0786509,0][-1.86893,-4.30461,0.891763][-0.252856,-0.963234,0.0907982][0.305431,0.0994345,0][-1.74104,-4.44823,1.27342][-0.28888,-0.95701,-0.026068][0.294452,0.106126,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-0.936869,-4.46165,-1.80433][0.0686134,-0.960862,-0.268397][0.390493,0.117738,0][-0.544085,-4.31551,-1.8828][-0.0512573,-0.966971,-0.24968][0.393899,0.126402,0][-0.747991,-3.99837,-2.56718][-0.148859,-0.816944,-0.557175][0.996822,0.166246,0][-0.544085,-4.31551,-1.8828][-0.0512573,-0.966971,-0.24968][0.974416,0.159089,0][-0.936869,-4.46165,-1.80433][0.0686134,-0.960862,-0.268397][0.97759,0.146446,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.313527,0.669884,0][1.98399,-4.46617,-0.717267][0.217874,-0.970676,0.101583][0.281921,0.618782,0][1.99077,-4.32529,-0.316246][0.217626,-0.975962,-0.0117392][0.294287,0.618524,0][2.69328,-4.06991,-0.40612][0.525212,-0.849575,-0.0487329][0.977757,0.434045,0][1.99077,-4.32529,-0.316246][0.217626,-0.975962,-0.0117392][0.984789,0.412128,0][1.98399,-4.46617,-0.717267][0.217874,-0.970676,0.101583][0.994881,0.415165,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.0415957,0.944767,0][1.48377,3.60778,-0.823658][0.048995,0.969461,-0.240302][0.0800351,0.919411,0][1.24216,3.47209,-1.05489][0.155932,0.979269,-0.129295][0.0844597,0.926815,0][1.79491,3.17747,-1.52416][0.413693,0.844863,-0.339212][0.105382,0.915248,0][1.24216,3.47209,-1.05489][0.155932,0.979269,-0.129295][0.0844597,0.926815,0][1.48377,3.60778,-0.823658][0.048995,0.969461,-0.240302][0.0800351,0.919411,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.69709,0.571994,0][0.379683,-4.4649,2.09844][-0.111996,-0.967117,0.228344][0.636084,0.589903,0][-0.019023,-4.32955,2.07188][0.0079132,-0.970825,0.239657][0.635435,0.577097,0][-0.0153521,-4.03723,2.77396][0.0112223,-0.825254,0.56465][0.613692,0.575886,0][-0.019023,-4.32955,2.07188][0.0079132,-0.970825,0.239657][0.635435,0.577097,0][0.379683,-4.4649,2.09844][-0.111996,-0.967117,0.228344][0.636084,0.589903,0][-0.801248,-4.46867,2.01621][-0.242732,-0.962977,0.117284][0.274881,0.134842,0][-1.06888,-4.17876,2.69042][-0.348474,-0.827304,0.440607][0.253133,0.126096,0][-1.49394,-4.02495,2.34855][-0.33752,-0.821541,0.459511][0.261952,0.111232,0][-1.49394,-4.02495,2.34855][-0.33752,-0.821541,0.459511][0.261952,0.111232,0][-1.11704,-4.32373,1.76394][-0.153474,-0.968637,0.195417][0.281336,0.123411,0][-0.801248,-4.46867,2.01621][-0.242732,-0.962977,0.117284][0.274881,0.134842,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.313527,0.669884,0][2.01529,-4.45692,0.46582][0.134312,-0.963935,0.229759][0.317555,0.612524,0][1.81397,-4.30953,0.815079][0.208483,-0.970592,0.120359][0.32925,0.61829,0][2.46171,-4.02488,1.11244][0.479245,-0.838024,0.260846][0.336058,0.6028,0][1.81397,-4.30953,0.815079][0.208483,-0.970592,0.120359][0.32925,0.61829,0][2.01529,-4.45692,0.46582][0.134312,-0.963935,0.229759][0.317555,0.612524,0][-0.975476,2.28882,2.38408][0.238729,-0.724246,-0.646897][0.517882,0,0][-0.00758104,2.28747,2.57443][0.0126607,-0.71334,-0.700703][0.547414,0.00188518,0][-0.0300772,1.73551,3.0528][0.0298039,-0.549037,-0.835266][0.545676,0.0186847,0][-0.00758104,2.28747,2.57443][0.0126607,-0.71334,-0.700703][0.809628,0.483404,0][-0.975476,2.28882,2.38408][0.238729,-0.724246,-0.646897][0.802052,0.511148,0][-0.378711,2.74002,1.96182][0.113463,-0.842432,-0.526721][0.785893,0.490497,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-1.81264,-4.4518,-0.999823][-0.107191,-0.963158,-0.246652][0.363282,0.0962983,0][-1.51493,-4.32197,-1.26957][-0.194427,-0.966535,-0.167355][0.372223,0.10189,0][-2.04354,-4.0008,-1.7416][-0.43527,-0.813977,-0.384682][0.384424,0.0815737,0][-1.51493,-4.32197,-1.26957][-0.194427,-0.966535,-0.167355][0.372223,0.10189,0][-1.81264,-4.4518,-0.999823][-0.107191,-0.963158,-0.246652][0.363282,0.0962983,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.991488,0.634012,0][0.227332,-4.43569,-2.05061][0.202436,-0.960992,-0.188454][0.928912,0.649073,0][0.596589,-4.29179,-1.91674][0.0705208,-0.968754,-0.237785][0.930174,0.639488,0][0.790807,-3.99323,-2.60143][0.137193,-0.829905,-0.540773][0.906963,0.63552,0][0.596589,-4.29179,-1.91674][0.0705208,-0.968754,-0.237785][0.930174,0.639488,0][0.227332,-4.43569,-2.05061][0.202436,-0.960992,-0.188454][0.928912,0.649073,0][-2.77246,1.68212,-2.55968][0.0202695,-0.569857,-0.00309707][0.383039,0.171855,0][-2.82825,1.35521,-2.82579][1.76824,0.139234,-0.155654][0.376169,0.182561,0][-2.87673,0.845002,-3.03806][1.36861,-0.00977806,-0.28906][0.364049,0.193201,0][-2.86162,1.17381,-1.88381][1.50608,-0.047157,0.309556][0.345344,0.971178,0][-2.82825,1.35521,-2.82579][1.76824,0.139234,-0.155654][0.353224,0.999411,0][-2.77246,1.68212,-2.55968][0.0202695,-0.569857,-0.00309707][0.340851,0.996456,0][-0.145161,4.31553,0.000208879][0.165302,0.803969,-0.878956][0.806365,0.968968,0][-0.0971423,3.46798,0.102702][-0.271165,-0.12141,0.322146][0.829229,0.965834,0][-0.0971422,3.46798,-0.102285][0.243201,0.0410466,-0.225485][0.829229,0.972101,0][-0.438658,3.9588,0.000208842][0.12126,-1.60153,1.40429][0.875242,0.985084,0][-0.0971422,3.46798,-0.102285][0.243201,0.0410466,-0.225485][0.859437,0.988217,0][-0.0971423,3.46798,0.102702][-0.271165,-0.12141,0.322146][0.859437,0.98195,0][-1.64943,2.64254,2.56163][-0.34478,0.72148,0.600495][0.537162,0.955654,0][-1.28031,3.16673,1.99903][-0.245791,0.859383,0.448383][0.517882,0.938183,0][-1.69993,3.31497,1.79036][-0.193078,0.862307,0.468132][0.52621,0.927505,0][-1.1612,3.59775,1.22317][0.0596052,0.965994,0.251601][0.646152,0.257952,0][-1.69993,3.31497,1.79036][-0.193078,0.862307,0.468132][0.631834,0.272879,0][-1.28031,3.16673,1.99903][-0.245791,0.859383,0.448383][0.622538,0.261145,0][2.113,-3.43597,-1.02756][-3.28522,1.33183,-0.0583912][0.250764,0.459957,0][2.08435,-3.49913,-0.846122][-0.927368,1.23866,0.408661][0.254084,0.455032,0][2.32253,-2.94592,-1.69329][-2.86467,1.5081,0.177633][0.243477,0.484984,0][2.113,-3.43597,-1.02756][-3.28522,1.33183,-0.0583912][0.52343,0.803958,0][2.10853,-3.50997,-2.82851][-1.92147,2.87475,-0.0403026][0.578491,0.806066,0][2.08435,-3.49913,-0.846122][-0.927368,1.23866,0.408661][0.517882,0.806078,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.313527,0.669884,0][1.42527,-4.44711,1.50556][0.0264614,-0.964925,0.261188][0.351485,0.623957,0][1.0719,-4.3127,1.70438][0.147505,-0.967632,0.204771][0.359251,0.634423,0][1.45899,-4.01044,2.28937][0.311211,-0.822192,0.476601][0.375886,0.624954,0][1.0719,-4.3127,1.70438][0.147505,-0.967632,0.204771][0.359251,0.634423,0][1.42527,-4.44711,1.50556][0.0264614,-0.964925,0.261188][0.351485,0.623957,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.313527,0.669884,0][1.3231,-4.4361,-1.66231][0.246646,-0.967179,-0.0610706][0.256219,0.641672,0][1.54494,-4.30684,-1.34265][0.165374,-0.971922,-0.167388][0.265195,0.635756,0][2.08429,-4.02225,-1.81142][0.408612,-0.831649,-0.376026][0.449487,0.601968,0][1.54494,-4.30684,-1.34265][0.165374,-0.971922,-0.167388][0.431358,0.611838,0][1.3231,-4.4361,-1.66231][0.246646,-0.967179,-0.0610706][0.427739,0.600703,0][1.504,-3.79967,-0.911301][-0.373797,0.895959,0.239863][0.243353,0.44323,0][1.72049,-3.80379,0.0330609][-0.450609,0.892696,-0.00679869][0.268517,0.428823,0][2.32932,-3.44016,0.0601929][-0.588497,0.807948,-0.0298623][0.279513,0.443025,0][2.12073,-3.4167,0.926727][-0.559097,0.779625,-0.282127][0.300012,0.426118,0][2.32932,-3.44016,0.0601929][-0.588497,0.807948,-0.0298623][0.279513,0.443025,0][1.72049,-3.80379,0.0330609][-0.450609,0.892696,-0.00679869][0.268517,0.428823,0][2.89342,0.76728,-2.08764][-2.23314,-0.497774,0.352073][0.887406,0.442887,0][2.73895,0.606744,-2.41028][-0.865221,0.796526,-0.0505668][0.875531,0.441951,0][2.87631,-0.297167,-2.5447][-0.740237,-0.0874267,0.666637][0.864984,0.41627,0][2.73895,0.606744,-2.41028][-0.865221,0.796526,-0.0505668][0.658131,0.74662,0][2.89342,0.76728,-2.08764][-2.23314,-0.497774,0.352073][0.669708,0.744428,0][2.91022,0.776809,-3.09841][0.451961,0.229621,-0.437329][0.647765,0.766194,0][-0.31244,1.18219,-3.46521][0.0783222,-0.414184,0.906817][0.524157,0.443002,0][0.666175,1.40057,-3.25159][0.191994,-1.67898,1.16755][0.494091,0.43702,0][0.875266,1.77281,-2.9908][-0.247661,-0.571548,0.782302][0.487437,0.42579,0][0.875266,1.77281,-2.9908][-0.247661,-0.571548,0.782302][0.487437,0.42579,0][0.666175,1.40057,-3.25159][0.191994,-1.67898,1.16755][0.494091,0.43702,0][1.45517,1.63239,-2.83207][-0.252313,-2.71606,1.25731][0.469811,0.430493,0][-2.35077,3.20245,-0.337852][-0.490924,0.869468,-0.0549456][0.961455,0.46608,0][-1.60851,3.46147,-0.238949][-0.179555,0.983543,-0.0200869][0.983582,0.456219,0][-1.59843,3.60042,-0.562185][-0.183412,0.972679,0.142319][0.988364,0.465859,0][-1.59843,3.60042,-0.562185][-0.183412,0.972679,0.142319][0.0120498,0.305313,0][-2.3383,3.33636,-0.811252][-0.490064,0.871668,-0.00556161][0.0267489,0.294055,0][-2.35077,3.20245,-0.337852][-0.490924,0.869468,-0.0549456][0.0338147,0.307267,0][-3.72053,-0.940058,-0.528902][0.980653,0.139426,0.137405][0.0626405,0.63763,0][-3.55238,-0.940827,-1.2202][0.934239,0.138341,0.328723][0.0811691,0.627237,0][-3.58471,-0.221008,-1.22221][0.943082,-0.0517202,0.328513][0.0924483,0.643178,0][-3.28114,-0.218797,-1.87638][0.858005,-0.0548872,0.510701][0.111102,0.634936,0][-3.58471,-0.221008,-1.22221][0.943082,-0.0517202,0.328513][0.0924483,0.643178,0][-3.55238,-0.940827,-1.2202][0.934239,0.138341,0.328723][0.0811691,0.627237,0][0.373269,-1.88007,-3.47729][0.41034,-2.38579,-0.0286778][0.505365,0.537086,0][0.387983,-1.65318,-3.58184][-0.0581412,0.319484,0.945806][0.504755,0.530162,0][-0.332234,-2.01374,-3.40838][0.341491,0.59755,3.27831][0.527023,0.540673,0][-0.334319,-1.98905,-4.29655][-0.539444,-0.40246,-2.07419][0.966336,0.107055,0][0.373269,-1.88007,-3.47729][0.41034,-2.38579,-0.0286778][0.938917,0.0926758,0][-0.332234,-2.01374,-3.40838][0.341491,0.59755,3.27831][0.953956,0.0828841,0][-3.09668,-0.186089,2.21352][0.815726,-0.04263,-0.576866][0.0106917,0.70953,0][-3.448,-0.174091,1.59127][0.912018,-0.0417297,-0.408023][0.023837,0.695149,0][-3.35457,0.536511,1.56046][0.885874,-0.235157,-0.399911][0.0366242,0.711704,0][-2.63427,-0.232529,2.74873][0.682912,-0.0419184,-0.729297][0,0.722775,0][-3.09668,-0.186089,2.21352][0.815726,-0.04263,-0.576866][0.0106917,0.70953,0][-3.01197,0.523759,2.16069][0.785621,-0.239275,-0.570567][0.0239527,0.725589,0][-0.0233181,-0.293931,3.7654][0.00654393,-0.0489855,-0.998778][0.542016,0.0806242,0][0.69294,-0.271541,3.7024][-0.183765,-0.0513598,-0.981627][0.563915,0.0813057,0][0.692021,-0.991583,3.67081][-0.189892,0.137164,-0.972176][0.562515,0.103275,0][0.69294,-0.271541,3.7024][-0.183765,-0.0513598,-0.981627][0.563915,0.0813057,0][-0.0233181,-0.293931,3.7654][0.00654393,-0.0489855,-0.998778][0.542016,0.0806242,0][-0.0329439,0.421141,3.66031][0.0270093,-0.285025,-0.95814][0.543085,0.0587861,0][-1.81528,3.17752,-1.56831][-0.386189,0.864228,-0.322442][0.0191833,0.272054,0][-1.23966,3.45041,-1.08578][-0.149627,0.981626,-0.118414][0.00793791,0.289835,0][-1.0587,3.59126,-1.35308][-0.248987,0.968299,0.0200431][0,0.283298,0][-1.0587,3.59126,-1.35308][-0.248987,0.968299,0.0200431][0,0.283298,0][-1.55149,3.30921,-1.95713][-0.422113,0.866473,-0.266545][0.00960429,0.262086,0][-1.81528,3.17752,-1.56831][-0.386189,0.864228,-0.322442][0.0191833,0.272054,0][3.74595,-0.374934,-0.642639][-0.988074,-0.0479522,0.146326][0.321298,0.539844,0][3.57478,-0.353025,-1.33658][-0.94319,-0.0555365,0.327578][0.303017,0.550731,0][3.54228,-1.07285,-1.33626][-0.933124,0.143902,0.329501][0.291314,0.534064,0][3.78357,-0.367308,0.0756393][-0.99818,-0.0432252,-0.0420463][0.339665,0.527787,0][3.74595,-0.374934,-0.642639][-0.988074,-0.0479522,0.146326][0.321298,0.539844,0][3.71062,-1.09396,-0.648342][-0.978348,0.146178,0.146515][0.309436,0.523271,0][-0.695853,3.18163,-2.30759][-0.173712,0.864519,-0.471625][0.242816,0.181881,0][-0.47325,3.45833,-1.59341][-0.0754292,0.985598,-0.15135][0.267009,0.183504,0][-0.175633,3.60739,-1.71581][-0.237528,0.965884,-0.103197][0.266518,0.1923,0][-0.175633,3.60739,-1.71581][-0.237528,0.965884,-0.103197][0.266518,0.1923,0][-0.264513,3.32988,-2.48597][-0.217187,0.864554,-0.453184][0.241374,0.192899,0][-0.695853,3.18163,-2.30759][-0.173712,0.864519,-0.471625][0.242816,0.181881,0][1.96325,0.478825,3.0811][-0.532002,-0.233158,-0.814009][0.604107,0.0608291,0][1.33722,0.469508,3.40594][-0.354456,-0.239155,-0.903972][0.584986,0.0599207,0][1.24708,1.1464,3.1838][-0.323074,-0.418218,-0.84895][0.583525,0.0390941,0][2.522,0.46506,2.63186][-0.681763,-0.223482,-0.696603][0.62113,0.0623137,0][1.96325,0.478825,3.0811][-0.532002,-0.233158,-0.814009][0.604107,0.0608291,0][1.83701,1.15386,2.88375][-0.491657,-0.412814,-0.766719][0.60154,0.0399905,0][-2.22249,-3.39767,-0.763915][0.603677,0.771501,0.200899][0.767063,0.0406538,0][-2.35397,-3.38845,0.1155][0.625832,0.778878,-0.0410317][0.771827,0.0673813,0][-1.70655,-3.79939,0.41555][0.481217,0.87208,-0.0889189][0.748937,0.077417,0][-2.35397,-3.38845,0.1155][0.625832,0.778878,-0.0410317][0.771827,0.0673813,0][-2.22249,-3.39767,-0.763915][0.603677,0.771501,0.200899][0.767063,0.0406538,0][-2.84859,-2.88121,-0.402485][0.759337,0.640485,0.114829][0.791481,0.0507989,0][2.13896,-1.26169,-4.0332][0.333904,-0.154059,-0.929932][0.255011,0.255009,0][2.15699,-1.95716,-3.81433][-0.799069,-0.526853,-0.00359744][0.255786,0.233753,0][1.22236,-1.7471,-4.04924][0.0594715,-2.74806,0.0522794][0.283905,0.241943,0][2.13896,-1.26169,-4.0332][0.333904,-0.154059,-0.929932][0.255011,0.255009,0][2.8593,-1.24057,-3.60516][0.67629,-0.142624,-0.722696][0.23299,0.254281,0][2.15699,-1.95716,-3.81433][-0.799069,-0.526853,-0.00359744][0.255786,0.233753,0][2.80887,-3.56994,1.99724][0.671606,-0.65917,0.338291][0.0396968,0.555743,0][2.28853,-4.15668,1.61958][0.517905,-0.835809,0.182199][0.0163001,0.545063,0][2.46171,-4.02488,1.11244][0.479245,-0.838024,0.260846][0.0216064,0.529349,0][2.28853,-4.15668,1.61958][0.517905,-0.835809,0.182199][0.0163001,0.545063,0][2.80887,-3.56994,1.99724][0.671606,-0.65917,0.338291][0.0396968,0.555743,0][2.37545,-3.54901,2.49472][0.422184,-0.650342,0.631519][0.0352482,0.571129,0][0.672146,3.29516,0.259289][-0.171269,-0.980183,-0.0995447][0.492336,0.31598,0][0.693127,3.29738,-0.272823][-0.185411,-0.97955,0.0781331][0.482417,0.303074,0][1.4091,3.0928,-0.213347][-0.377019,-0.92272,0.0802779][0.500924,0.29018,0][0.0178759,3.358,-0.0541983][0.0117639,-0.999926,0.00307508][0.471623,0.320629,0][0.693127,3.29738,-0.272823][-0.185411,-0.97955,0.0781331][0.482417,0.303074,0][0.672146,3.29516,0.259289][-0.171269,-0.980183,-0.0995447][0.492336,0.31598,0][-2.2941,0.265848,-3.75444][0.981955,1.74344,-0.00549453][0.387372,0.310066,0][-2.78742,-0.301335,-3.55216][-0.686569,0.0528615,-0.725141][0.403506,0.293699,0][-2.7169,0.639916,-3.43025][0.817295,0.930943,-0.00828306][0.39956,0.322286,0][-2.7169,0.639916,-3.43025][0.817295,0.930943,-0.00828306][0.99653,0.587556,0][-2.78742,-0.301335,-3.55216][-0.686569,0.0528615,-0.725141][0.969696,0.592289,0][-3.3089,-0.292378,-2.8334][-0.738941,0.0482543,-0.672039][0.96239,0.570572,0][-2.2941,0.265848,-3.75444][0.981955,1.74344,-0.00549453][0.387372,0.310066,0][-2.04624,-0.29486,-4.04255][-0.372931,0.0623176,-0.925764][0.380877,0.292484,0][-2.78742,-0.301335,-3.55216][-0.686569,0.0528615,-0.725141][0.403506,0.293699,0][-1.68237,0.0847727,-3.34527][0.683375,-0.0283525,0.980157][0.278234,0.974756,0][-2.01201,0.18536,-3.95544][0.80369,2.68925,0.00912781][0.280425,0.996018,0][-2.2941,0.265848,-3.75444][0.981955,1.74344,-0.00549453][0.269646,0.996083,0][-2.15476,3.19884,0.991774][-0.426344,0.874901,0.229737][0.658137,0.27813,0][-1.47368,3.4625,0.67516][-0.159011,0.982817,0.0937342][0.664041,0.260866,0][-1.63624,3.60696,0.398027][-0.0723592,0.970154,0.231443][0.673742,0.26514,0][-1.63624,3.60696,0.398027][-0.0723592,0.970154,0.231443][0.673742,0.26514,0][-2.39114,3.34636,0.585582][-0.401348,0.876083,0.267205][0.672155,0.283535,0][-2.15476,3.19884,0.991774][-0.426344,0.874901,0.229737][0.658137,0.27813,0][-1.44336,1.65918,-2.8417][-0.429928,-1.57199,0.0422835][0.634724,0.461074,0][-0.865382,1.79356,-3.00181][0.273162,-0.559145,0.782776][0.632255,0.443124,0][-1.93276,1.71346,-2.48343][0.825359,-1.49009,1.32505][0.645328,0.475744,0][-1.80953,1.74186,-3.49123][-0.421623,-2.5359,-0.0697338][0.771949,0.571653,0][-1.44336,1.65918,-2.8417][-0.429928,-1.57199,0.0422835][0.768817,0.594243,0][-1.93276,1.71346,-2.48343][0.825359,-1.49009,1.32505][0.750834,0.594298,0][3.3503,0.421374,1.4657][-0.890278,-0.219395,-0.399087][0.92292,0.215579,0][2.99224,0.438535,2.08489][-0.79561,-0.234967,-0.558386][0.924542,0.237306,0][3.13871,1.10666,1.38918][-0.829496,-0.398842,-0.390976][0.901185,0.218754,0][3.58312,0.385343,0.796803][-0.949763,-0.222856,-0.21974][0.975201,0.278078,0][3.3503,0.421374,1.4657][-0.890278,-0.219395,-0.399087][0.977149,0.261982,0][3.13871,1.10666,1.38918][-0.829496,-0.398842,-0.390976][0.998794,0.259965,0][3.24034,-2.42772,-0.544022][-0.828422,0.531102,0.177899][0.2873,0.48623,0][3.27578,-2.41845,0.0790753][-0.84623,0.5245,-0.0937853][0.303297,0.47586,0][3.57756,-1.77915,0.0686935][-0.941776,0.332829,-0.0477779][0.315465,0.493725,0][3.48552,-1.74617,0.745319][-0.893886,0.373003,-0.24867][0.332232,0.481605,0][3.57756,-1.77915,0.0686935][-0.941776,0.332829,-0.0477779][0.315465,0.493725,0][3.27578,-2.41845,0.0790753][-0.84623,0.5245,-0.0937853][0.303297,0.47586,0][-0.434485,-0.766868,-3.74429][-0.11724,0.800236,-0.0108267][0.529267,0.50249,0][0.41228,-0.951961,-3.75434][-0.0510904,0.0923705,0.994413][0.503516,0.508746,0][0.74401,-0.627141,-3.70534][-0.182819,1.5385,0.0123073][0.493147,0.499053,0][0.74401,-0.627141,-3.70534][-0.182819,1.5385,0.0123073][0.493147,0.499053,0][1.11057,-0.991188,-3.61641][-0.280574,0.132973,0.950577][0.4822,0.510439,0][1.30819,-0.118826,-3.54541][1.16828,1.07221,-0.0592882][0.475543,0.483915,0][-2.12511,-3.52217,-2.68284][-0.556551,-0.65357,-0.51293][0.412054,0.069912,0][-1.97687,-3.27849,-2.9864][1.68487,3.12243,-0.0250925][0.421384,0.0698097,0][-1.63007,-3.34335,-3.15577][-0.0880615,-0.714981,-0.785463][0.427716,0.0796007,0][-1.97687,-3.27849,-2.9864][1.68487,3.12243,-0.0250925][0.421384,0.0698097,0][-2.12511,-3.52217,-2.68284][-0.556551,-0.65357,-0.51293][0.412054,0.069912,0][-2.43456,-2.80479,-3.08427][1.04307,0.990601,-0.0833671][0.422219,0.0507887,0][-0.0177157,-4.22677,0.00639689][-0.00691331,0.999975,-0.001344][0.696188,0.0668709,0][-0.0238169,-4.07755,1.07257][0.00507075,0.959264,-0.282465][0.699501,0.0993666,0][0.553802,-4.07062,0.884738][-0.18429,0.958614,-0.217017][0.683382,0.0942223,0][0.553802,-4.07062,0.884738][-0.18429,0.958614,-0.217017][0.683382,0.0942223,0][-0.0238169,-4.07755,1.07257][0.00507075,0.959264,-0.282465][0.699501,0.0993666,0][0.627646,-3.80711,1.59885][-0.209966,0.883874,-0.417948][0.685555,0.115989,0][2.19053,3.17503,1.04244][0.494271,0.848141,0.190662][0.0383036,0.873072,0][1.51348,3.46835,0.712487][0.178607,0.982118,0.0595337][0.0382674,0.897775,0][1.40664,3.62235,1.01421][0.231097,0.969121,-0.0860089][0.0278243,0.898512,0][0.61893,3.56164,0.624071][-0.220012,0.972248,0.0795534][0.0300846,0.922594,0][1.40664,3.62235,1.01421][0.231097,0.969121,-0.0860089][0.0278243,0.898512,0][1.51348,3.46835,0.712487][0.178607,0.982118,0.0595337][0.0382674,0.897775,0][0.20714,3.33519,-2.47969][0.218293,0.859903,-0.461427][0.499316,0.658455,0][0.148605,3.6145,-1.71223][0.22018,0.967629,-0.123346][0.475768,0.653614,0][0.451938,3.47678,-1.58198][0.030598,0.986881,-0.158526][0.476308,0.642692,0][0.242637,3.43438,-0.813593][-0.00360188,0.999269,-0.0380686][0.452726,0.637858,0][0.451938,3.47678,-1.58198][0.030598,0.986881,-0.158526][0.476308,0.642692,0][0.148605,3.6145,-1.71223][0.22018,0.967629,-0.123346][0.475768,0.653614,0][-2.45919,3.34648,0.119351][-0.470139,0.868413,-0.157569][0.0344759,0.321468,0][-3.14758,2.82356,0.183748][-0.683371,0.720775,-0.116134][0.0576942,0.31806,0][-3.06049,2.83202,0.777071][-0.612996,0.738926,0.279686][0.060501,0.336033,0][-3.14758,2.82356,0.183748][-0.683371,0.720775,-0.116134][0.0576942,0.31806,0][-2.45919,3.34648,0.119351][-0.470139,0.868413,-0.157569][0.0344759,0.321468,0][-2.35077,3.20245,-0.337852][-0.490924,0.869468,-0.0549456][0.0338147,0.307267,0][2.15699,-1.95716,-3.81433][-0.799069,-0.526853,-0.00359744][0.255786,0.233753,0][2.8593,-1.24057,-3.60516][0.67629,-0.142624,-0.722696][0.23299,0.254281,0][2.71962,-2.09343,-3.43247][0.64307,-0.362476,-0.674591][0.238877,0.228523,0][2.71962,-2.09343,-3.43247][0.64307,-0.362476,-0.674591][0.522095,0.570572,0][2.8593,-1.24057,-3.60516][0.67629,-0.142624,-0.722696][0.54802,0.572241,0][3.33696,-1.19972,-2.92291][0.749314,-0.140576,-0.647122][0.549519,0.59429,0][-1.55149,3.30921,-1.95713][-0.422113,0.866473,-0.266545][0.00960429,0.262086,0][-1.97638,2.79427,-2.48953][-0.536472,0.699311,-0.4724][0.0251372,0.241737,0][-2.31591,2.67905,-1.98695][-0.543475,0.711128,-0.446017][0.0360168,0.254973,0][-1.97638,2.79427,-2.48953][-0.536472,0.699311,-0.4724][0.480216,0.734461,0][-1.55149,3.30921,-1.95713][-0.422113,0.866473,-0.266545][0.470074,0.757268,0][-1.15979,3.31186,-2.21736][-0.074841,0.866051,-0.494322][0.456523,0.752463,0][-3.41543,1.43701,2.50369][-0.786742,0.429279,0.443573][0.114626,0.377588,0][-3.65341,0.614906,2.65877][-0.847633,0.230624,0.47784][0.140882,0.376317,0][-3.10967,0.557838,3.29299][-0.579542,0.226814,0.782743][0.139996,0.396438,0][-3.65341,0.614906,2.65877][-0.847633,0.230624,0.47784][0.140882,0.376317,0][-3.41543,1.43701,2.50369][-0.786742,0.429279,0.443573][0.114626,0.377588,0][-3.6562,1.38186,1.75591][-0.83031,0.418236,0.368327][0.113938,0.35427,0][1.60542,-3.40947,1.66468][-0.399718,0.811628,-0.426011][0.314757,0.407861,0][2.12073,-3.4167,0.926727][-0.559097,0.779625,-0.282127][0.300012,0.426118,0][1.56183,-3.79782,0.677034][-0.395549,0.893021,-0.214606][0.283541,0.415959,0][2.12073,-3.4167,0.926727][-0.559097,0.779625,-0.282127][0.300012,0.426118,0][1.60542,-3.40947,1.66468][-0.399718,0.811628,-0.426011][0.314757,0.407861,0][1.96785,-2.91773,2.04605][-0.536795,0.652194,-0.535252][0.334824,0.416135,0][3.96248,-2.95871,0.177424][0.856744,-0.511958,-0.062363][0.0694383,0.498954,0][3.45044,-3.64821,0.16812][0.734101,-0.674794,-0.0758158][0.0437241,0.49963,0][3.29502,-3.53272,-0.480967][0.742621,-0.663409,-0.0916597][0.044174,0.479755,0][3.45044,-3.64821,0.16812][0.734101,-0.674794,-0.0758158][0.0437241,0.49963,0][3.96248,-2.95871,0.177424][0.856744,-0.511958,-0.062363][0.0694383,0.498954,0][3.8604,-2.91806,0.922146][0.800019,-0.496722,0.336508][0.0700963,0.521714,0][3.94627,-1.24054,-2.34933][0.803616,-0.145138,-0.577179][0.256599,0.946384,0][3.76418,-2.10069,-2.22069][0.755481,-0.342252,-0.55867][0.230699,0.939189,0][3.18094,-2.02375,-2.77757][0.708703,-0.344914,-0.615447][0.234158,0.921538,0][3.76418,-2.10069,-2.22069][0.755481,-0.342252,-0.55867][0.0878972,0.424894,0][3.94627,-1.24054,-2.34933][0.803616,-0.145138,-0.577179][0.113919,0.419985,0][4.28902,-1.28347,-1.56639][0.962406,-0.145375,-0.229437][0.11805,0.443785,0][3.26236,-1.71161,1.39594][-0.849938,0.363944,-0.380985][0.347398,0.468591,0][2.91329,-1.69548,2.00013][-0.749941,0.321026,-0.578386][0.360175,0.454645,0][3.04856,-0.995147,2.09116][-0.808655,0.140107,-0.571355][0.374615,0.470351,0][2.57355,-0.96671,2.65655][-0.674779,0.194314,-0.71198][0.385682,0.456034,0][3.04856,-0.995147,2.09116][-0.808655,0.140107,-0.571355][0.374615,0.470351,0][2.91329,-1.69548,2.00013][-0.749941,0.321026,-0.578386][0.360175,0.454645,0][3.35597,-3.61675,0.816991][0.669831,-0.664784,0.33074][0.0441165,0.519468,0][2.73196,-4.19031,0.652924][0.4449,-0.844231,0.298894][0.0199904,0.51535,0][2.81357,-4.21016,0.121939][0.50981,-0.852837,-0.11297][0.0198882,0.499108,0][2.73196,-4.19031,0.652924][0.4449,-0.844231,0.298894][0.0199904,0.51535,0][3.35597,-3.61675,0.816991][0.669831,-0.664784,0.33074][0.0441165,0.519468,0][3.02541,-3.46342,1.37505][0.670579,-0.655791,0.346788][0.0447316,0.536518,0][2.68349,-4.21248,-0.946061][0.525795,-0.850197,-0.026559][0.0169244,0.466544,0][3.27668,-3.64421,-1.1383][0.740056,-0.660409,-0.127185][0.0400992,0.459796,0][3.29502,-3.53272,-0.480967][0.742621,-0.663409,-0.0916597][0.044174,0.479755,0][3.29502,-3.53272,-0.480967][0.742621,-0.663409,-0.0916597][0.044174,0.479755,0][2.69328,-4.06991,-0.40612][0.525212,-0.849575,-0.0487329][0.0216151,0.482888,0][2.68349,-4.21248,-0.946061][0.525795,-0.850197,-0.026559][0.0169244,0.466544,0][-0.370038,0.604854,-4.42733][1.75497,-0.430725,-0.0305402][0.749195,0.744428,0][-0.293295,0.790573,-4.33279][-0.412201,-1.62635,-0.0858895][0.755436,0.747087,0][-0.296875,0.771221,-3.60508][1.24367,-0.319431,-0.046031][0.755685,0.769342,0][-0.382212,1.42227,-4.14936][-0.186343,0.391843,-0.900963][0.326829,0.341711,0][-0.293295,0.790573,-4.33279][-0.412201,-1.62635,-0.0858895][0.325319,0.322266,0][-0.370038,0.604854,-4.42733][1.75497,-0.430725,-0.0305402][0.328015,0.316745,0][-1.15979,3.31186,-2.21736][-0.074841,0.866051,-0.494322][0.747728,0.230364,0][-0.79037,3.59402,-1.53197][0.117026,0.966268,-0.229413][0.725823,0.228718,0][-0.47325,3.45833,-1.59341][-0.0754292,0.985598,-0.15135][0.725251,0.218027,0][-0.22847,3.42708,-0.819523][-0.0347766,0.998736,-0.0362774][0.700576,0.216417,0][-0.47325,3.45833,-1.59341][-0.0754292,0.985598,-0.15135][0.725251,0.218027,0][-0.79037,3.59402,-1.53197][0.117026,0.966268,-0.229413][0.725823,0.228718,0][-1.94711,-1.99175,-3.83371][1.28219,-2.20229,0.202326][0.381085,0.240516,0][-2.64201,-2.01465,-3.3694][-0.665891,-0.316243,-0.675706][0.402333,0.241142,0][-2.02415,-1.16491,-4.00929][-0.375856,-0.136048,-0.916637][0.381861,0.265893,0][-1.94711,-1.99175,-3.83371][1.28219,-2.20229,0.202326][0.381085,0.240516,0][-2.02415,-1.16491,-4.00929][-0.375856,-0.136048,-0.916637][0.381861,0.265893,0][-1.13901,-1.81251,-4.02251][-0.37949,-0.19526,-0.988543][0.356085,0.244446,0][1.72388,3.31873,1.83347][0.196239,0.85613,0.478049][0.814531,0.7103,0][1.19208,3.60849,1.25048][-0.077448,0.956712,0.280543][0.790069,0.71093,0][0.902465,3.46329,1.38815][0.547698,5.82811,0.925455][0.789431,0.700509,0][0.471785,3.43019,0.696953][-0.685217,1.20019,0.505061][0.764749,0.698281,0][0.902465,3.46329,1.38815][0.547698,5.82811,0.925455][0.789431,0.700509,0][1.19208,3.60849,1.25048][-0.077448,0.956712,0.280543][0.790069,0.71093,0][0.820165,0.512977,4.40026][0.070984,0.237928,0.968685][0.0715185,0.123093,0][0.859314,-0.352044,4.52456][0.0910753,0.0494112,0.994617][0.0979858,0.123677,0][1.68954,-0.301399,4.27593][0.471453,0.0499333,0.880476][0.0970252,0.149089,0][0.859314,-0.352044,4.52456][0.0910753,0.0494112,0.994617][0.0979858,0.123677,0][0.820165,0.512977,4.40026][0.070984,0.237928,0.968685][0.0715185,0.123093,0][-0.0251626,0.454913,4.3077][-0.0051793,0.235814,0.971784][0.0726951,0.0972138,0][2.37545,-3.54901,2.49472][0.422184,-0.650342,0.631519][0.0352482,0.571129,0][1.93841,-4.15267,2.02798][0.267121,-0.831412,0.487238][0.0123571,0.557705,0][2.28853,-4.15668,1.61958][0.517905,-0.835809,0.182199][0.0163001,0.545063,0][1.93841,-4.15267,2.02798][0.267121,-0.831412,0.487238][0.369824,0.71113,0][2.37545,-3.54901,2.49472][0.422184,-0.650342,0.631519][0.388754,0.692058,0][1.78682,-3.4213,2.81015][0.417721,-0.644175,0.64074][0.40265,0.707498,0][2.53843,-3.4653,-2.20059][0.555446,-0.647177,-0.522151][0.473183,0.596158,0][2.08429,-4.02225,-1.81142][0.408612,-0.831649,-0.376026][0.449487,0.601968,0][1.77876,-4.14684,-2.25034][0.433894,-0.832352,-0.344858][0.445919,0.587065,0][2.08429,-4.02225,-1.81142][0.408612,-0.831649,-0.376026][0.24077,0.836912,0][2.53843,-3.4653,-2.20059][0.555446,-0.647177,-0.522151][0.261635,0.847012,0][3.01344,-3.61568,-1.74556][0.565709,-0.653693,-0.502651][0.250833,0.864577,0][4.53668,-1.32476,0.137117][0.987783,-0.145985,-0.0545306][0.12205,0.495754,0][4.3293,-2.17194,0.161126][0.941031,-0.333696,-0.0557431][0.0959416,0.497464,0][4.1237,-2.11343,-0.6465][0.933301,-0.331651,-0.137686][0.0939845,0.472828,0][4.3293,-2.17194,0.161126][0.941031,-0.333696,-0.0557431][0.0959416,0.497464,0][4.53668,-1.32476,0.137117][0.987783,-0.145985,-0.0545306][0.12205,0.495754,0][4.41717,-1.27437,0.990746][0.93369,-0.133801,0.332144][0.122877,0.521839,0][-4.57888,-0.316974,0.244022][-0.997558,0.0474115,-0.0512768][0.160856,0.295826,0][-4.53814,-1.18606,0.239489][-0.988647,-0.142991,-0.0461541][0.183761,0.290327,0][-4.41187,-1.15256,1.09789][-0.932984,-0.144244,0.329749][0.187245,0.316465,0][-4.53814,-1.18606,0.239489][-0.988647,-0.142991,-0.0461541][0.183761,0.290327,0][-4.57888,-0.316974,0.244022][-0.997558,0.0474115,-0.0512768][0.160856,0.295826,0][-4.37172,-0.315332,-0.593215][-0.988995,0.0506223,-0.139017][0.152377,0.271521,0][-0.0113331,2.62808,3.04184][-0.0104633,0.711319,0.702791][0.952243,0.177187,0][0.00816369,3.15714,2.37593][-0.0019916,0.855021,0.518589][0.931299,0.173247,0][-0.46064,3.2905,2.41873][0.0642918,0.855873,0.513175][0.930927,0.15848,0][0.00816369,3.15714,2.37593][-0.0019916,0.855021,0.518589][0.634092,0.649992,0][-0.0113331,2.62808,3.04184][-0.0104633,0.711319,0.702791][0.657399,0.639621,0][0.589683,2.75874,3.11321][-0.0398004,0.717402,0.695522][0.663187,0.657313,0][-2.50818,-3.40356,-2.14144][-0.575183,-0.63885,-0.510916][0.394228,0.0597259,0][-2.04354,-4.0008,-1.7416][-0.43527,-0.813977,-0.384682][0.384424,0.0815737,0][-2.44134,-4.12977,-1.37648][-0.404322,-0.820071,-0.404979][0.37227,0.0735475,0][-2.04354,-4.0008,-1.7416][-0.43527,-0.813977,-0.384682][0.384424,0.0815737,0][-2.50818,-3.40356,-2.14144][-0.575183,-0.63885,-0.510916][0.394228,0.0597259,0][-2.12511,-3.52217,-2.68284][-0.556551,-0.65357,-0.51293][0.412054,0.069912,0][3.47867,-2.78698,1.56454][0.779162,-0.48794,0.393474][0.0695306,0.541389,0][3.02541,-3.46342,1.37505][0.670579,-0.655791,0.346788][0.0447316,0.536518,0][3.35597,-3.61675,0.816991][0.669831,-0.664784,0.33074][0.0441165,0.519468,0][3.02541,-3.46342,1.37505][0.670579,-0.655791,0.346788][0.0447316,0.536518,0][3.47867,-2.78698,1.56454][0.779162,-0.48794,0.393474][0.0695306,0.541389,0][3.22443,-2.85668,2.2834][0.760428,-0.490457,0.425678][0.0651392,0.563546,0][-2.3383,3.33636,-0.811252][-0.490064,0.871668,-0.00556161][0.0267489,0.294055,0][-2.99257,2.80949,-1.00784][-0.686669,0.720547,-0.0964195][0.0478275,0.282953,0][-3.00857,2.69724,-0.400265][-0.692426,0.716163,-0.0875027][0.0552874,0.300286,0][-2.99257,2.80949,-1.00784][-0.686669,0.720547,-0.0964195][0.0478275,0.282953,0][-2.3383,3.33636,-0.811252][-0.490064,0.871668,-0.00556161][0.0267489,0.294055,0][-2.15174,3.32824,-1.24194][-0.315807,0.862914,-0.39452][0.0216223,0.281731,0][-1.22813,-0.0434165,-3.55212][-1.13479,1.02581,-0.0510726][0.553013,0.479816,0][-1.68237,0.0847727,-3.34527][0.683375,-0.0283525,0.980157][0.566806,0.475576,0][-1.67321,-0.935011,-3.3566][0.468451,0.142575,0.871909][0.567248,0.506753,0][-1.2097,-0.0620055,-4.18426][-1.2826,1.14497,-0.0710671][0.305251,0.98712,0][-1.68237,0.0847727,-3.34527][0.683375,-0.0283525,0.980157][0.278234,0.974756,0][-1.22813,-0.0434165,-3.55212][-1.13479,1.02581,-0.0510726][0.293523,0.97174,0][-1.68655,0.507499,4.16194][-0.437003,0.233095,0.868732][0.0699125,0.0464703,0][-1.71785,-0.35397,4.27775][-0.444701,0.0420573,0.894691][0.0962214,0.0449041,0][-0.87585,-0.3689,4.51482][-0.0882229,0.0454196,0.995065][0.0972734,0.0706295,0][-1.71785,-0.35397,4.27775][-0.444701,0.0420573,0.894691][0.0962214,0.0449041,0][-1.68655,0.507499,4.16194][-0.437003,0.233095,0.868732][0.0699125,0.0464703,0][-2.35456,0.48271,3.6514][-0.498006,0.229999,0.836116][0.0701976,0.0260346,0][-4.1644,1.39155,0.284223][-0.908841,0.411532,-0.0681943][0.109824,0.309023,0][-4.45327,0.553368,0.264161][-0.970234,0.235025,-0.0583954][0.135933,0.302287,0][-4.33328,0.58586,1.10833][-0.924245,0.224724,0.308659][0.139425,0.327976,0][-4.45327,0.553368,0.264161][-0.970234,0.235025,-0.0583954][0.135933,0.302287,0][-4.1644,1.39155,0.284223][-0.908841,0.411532,-0.0681943][0.109824,0.309023,0][-3.97606,1.32336,-0.484964][-0.903586,0.410033,-0.12412][0.103939,0.286248,0][0.148605,3.6145,-1.71223][0.22018,0.967629,-0.123346][0.475768,0.653614,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.427739,0.634012,0][0.242637,3.43438,-0.813593][-0.00360188,0.999269,-0.0380686][0.452726,0.637858,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.780074,0.187892,0][0.772228,3.62052,-1.51433][-0.118314,0.971251,-0.206577][0.732279,0.188956,0][0.242637,3.43438,-0.813593][-0.00360188,0.999269,-0.0380686][0.756122,0.18308,0][-4.29639,-1.17906,-1.45528][-0.960195,-0.141902,-0.240603][0.168731,0.240629,0][-4.10562,-2.02262,-1.38201][-0.919533,-0.326351,-0.218983][0.189601,0.238049,0][-4.14111,-1.96188,-0.558309][-0.93674,-0.322544,-0.135954][0.194144,0.262849,0][-4.10562,-2.02262,-1.38201][-0.919533,-0.326351,-0.218983][0.772151,0.343727,0][-4.29639,-1.17906,-1.45528][-0.960195,-0.141902,-0.240603][0.769901,0.317286,0][-3.9217,-1.169,-2.23189][-0.790429,-0.139544,-0.596448][0.795849,0.315301,0][-3.86219,0.566839,-2.16015][-0.78656,0.246312,-0.566262][0.111255,0.231939,0][-3.96235,-0.298052,-2.24403][-0.802406,0.0487192,-0.594787][0.135267,0.22369,0][-4.33614,-0.308531,-1.46323][-0.969037,0.0489352,-0.242018][0.145688,0.245769,0][-3.96235,-0.298052,-2.24403][-0.802406,0.0487192,-0.594787][0.723174,0.663942,0][-3.86219,0.566839,-2.16015][-0.78656,0.246312,-0.566262][0.696562,0.66329,0][-2.87673,0.845002,-3.03806][1.36861,-0.00977806,-0.28906][0.685361,0.634056,0][-0.327652,2.80686,-3.16385][-0.192074,0.721525,-0.665213][0.427739,0.722566,0][-0.361533,2.16474,-3.72466][-0.180753,0.573948,-0.798694][0.427955,0.696489,0][-1.01524,2.06912,-3.4541][-0.258917,0.550924,-0.793375][0.449556,0.69915,0][-0.361533,2.16474,-3.72466][-0.180753,0.573948,-0.798694][0.324783,0.364327,0][-0.327652,2.80686,-3.16385][-0.192074,0.721525,-0.665213][0.322526,0.383856,0][0.27437,2.79641,-3.15544][0.224428,0.714279,-0.6629][0.304176,0.382391,0][4.45641,0.410144,0.172903][0.971123,0.23107,-0.0593928][0.169093,0.49509,0][4.57888,-0.453208,0.139614][0.997404,0.0452308,-0.0560292][0.146731,0.494907,0][4.36421,-0.457976,-0.706057][0.988715,0.0473355,-0.142133][0.142861,0.469179,0][4.57888,-0.453208,0.139614][0.997404,0.0452308,-0.0560292][0.146731,0.494907,0][4.45641,0.410144,0.172903][0.971123,0.23107,-0.0593928][0.169093,0.49509,0][4.33508,0.459159,1.01192][0.921612,0.221323,0.318821][0.169842,0.520732,0][-2.76035,-2.81822,2.92003][-0.52877,-0.4954,0.689188][0.170804,0.0112963,0][-2.41114,-3.53676,2.55464][-0.446887,-0.646054,0.618794][0.193014,0.0214616,0][-1.82337,-3.45013,2.84678][-0.437813,-0.641059,0.630367][0.190782,0.0394882,0][-2.41114,-3.53676,2.55464][-0.446887,-0.646054,0.618794][0.252085,0.0804314,0][-2.76035,-2.81822,2.92003][-0.52877,-0.4954,0.689188][0.23883,0.062864,0][-3.25031,-2.7678,2.35143][-0.782504,-0.486244,0.388914][0.254484,0.0467521,0][-0.87585,-0.3689,4.51482][-0.0882229,0.0454196,0.995065][0.0972734,0.0706295,0][-0.86581,-1.2408,4.47191][-0.0900975,-0.14335,0.985562][0.12393,0.0703194,0][-0.0074778,-1.21638,4.39214][-0.00806922,-0.138033,0.990395][0.123791,0.096572,0][-0.86581,-1.2408,4.47191][-0.0900975,-0.14335,0.985562][0.12393,0.0703194,0][-0.87585,-0.3689,4.51482][-0.0882229,0.0454196,0.995065][0.0972734,0.0706295,0][-1.71785,-0.35397,4.27775][-0.444701,0.0420573,0.894691][0.0962214,0.0449041,0][0.649977,3.20121,-2.28913][0.142994,0.855164,-0.498244][0.499737,0.643295,0][0.838662,2.6678,-2.91406][0.2203,0.70182,-0.677434][0.522132,0.640066,0][0.27437,2.79641,-3.15544][0.224428,0.714279,-0.6629][0.521777,0.658869,0][0.838662,2.6678,-2.91406][0.2203,0.70182,-0.677434][0.98803,0.529047,0][0.649977,3.20121,-2.28913][0.142994,0.855164,-0.498244][0.970006,0.512326,0][1.11367,3.33783,-2.18779][0.104081,0.855344,-0.507498][0.978254,0.499824,0][0.670554,2.09797,3.67997][0.00411691,0.57663,0.816995][0.0229668,0.119641,0][0.747034,1.34007,4.11355][0.0414342,0.416417,0.908229][0.0461863,0.121442,0][1.50741,1.37974,3.89534][0.415912,0.419118,0.807067][0.0455116,0.144712,0][0.747034,1.34007,4.11355][0.0414342,0.416417,0.908229][0.0461863,0.121442,0][0.670554,2.09797,3.67997][0.00411691,0.57663,0.816995][0.0229668,0.119641,0][-0.0375836,1.98532,3.59912][-0.00937697,0.573501,0.819151][0.025909,0.0979168,0][-4.45413,-0.283026,1.11188][-0.946835,0.0397166,0.319258][0.164413,0.322244,0][-4.41187,-1.15256,1.09789][-0.932984,-0.144244,0.329749][0.187245,0.316465,0][-3.98085,-1.07863,1.85524][-0.905635,-0.141693,0.399685][0.1851,0.340746,0][-4.41187,-1.15256,1.09789][-0.932984,-0.144244,0.329749][0.187245,0.316465,0][-4.45413,-0.283026,1.11188][-0.946835,0.0397166,0.319258][0.164413,0.322244,0][-4.57888,-0.316974,0.244022][-0.997558,0.0474115,-0.0512768][0.160856,0.295826,0][-1.18341,2.74486,2.93012][-0.368292,0.72521,0.581749][0.00188281,0.0634316,0][-1.42305,2.08173,3.4712][-0.396547,0.590482,0.702909][0.021982,0.055638,0][-0.744381,2.0725,3.66662][-0.04074,0.581031,0.812861][0.0227442,0.076375,0][-1.42305,2.08173,3.4712][-0.396547,0.590482,0.702909][0.0259732,0.977111,0][-1.18341,2.74486,2.93012][-0.368292,0.72521,0.581749][0.0530634,0.976224,0][-1.64943,2.64254,2.56163][-0.34478,0.72148,0.600495][0.0533926,0.990551,0][4.20939,0.447482,-1.4979][0.947212,0.243669,-0.208362][0.165029,0.444124,0][4.32774,-0.409879,-1.57719][0.972229,0.0543467,-0.227635][0.142727,0.442532,0][3.97754,-0.366165,-2.36418][0.813008,0.0679196,-0.578278][0.138517,0.418611,0][4.32774,-0.409879,-1.57719][0.972229,0.0543467,-0.227635][0.142727,0.442532,0][4.20939,0.447482,-1.4979][0.947212,0.243669,-0.208362][0.165029,0.444124,0][4.24764,0.372745,-0.651957][0.962318,0.233715,-0.139001][0.16442,0.470028,0][-2.73375,0.680725,-2.3555][2.76184,0.064189,0.664701][0.141486,0.652692,0][-3.19562,0.494633,-1.81563][0.836601,-0.24421,0.490367][0.121585,0.653082,0][-3.28114,-0.218797,-1.87638][0.858005,-0.0548872,0.510701][0.111102,0.634936,0][-2.86162,1.17381,-1.88381][1.50608,-0.047157,0.309556][0.136594,0.670811,0][-3.19562,0.494633,-1.81563][0.836601,-0.24421,0.490367][0.121585,0.653082,0][-2.73375,0.680725,-2.3555][2.76184,0.064189,0.664701][0.141486,0.652692,0][-3.04878,-3.36812,1.43343][-0.715444,-0.625103,0.312068][0.283885,0.0568154,0][-2.50662,-3.97567,1.17773][-0.549131,-0.805039,0.224429][0.294253,0.0786509,0][-2.33268,-4.1278,1.68903][-0.55717,-0.809882,0.18345][0.279493,0.0871695,0][-2.50662,-3.97567,1.17773][-0.549131,-0.805039,0.224429][0.294253,0.0786509,0][-3.04878,-3.36812,1.43343][-0.715444,-0.625103,0.312068][0.283885,0.0568154,0][-3.38478,-3.48793,0.862681][-0.701895,-0.63765,0.317405][0.300339,0.0471193,0][0.411348,1.38515,-4.14487][0.226671,0.397234,-0.889284][0.302685,0.339066,0][0.653474,1.43195,-3.99324][1.92671,-0.102693,-0.0446862][0.295208,0.340033,0][0.59885,0.623478,-4.3361][1.15964,-0.0646017,-0.0324171][0.298415,0.315467,0][0.411348,1.38515,-4.14487][0.226671,0.397234,-0.889284][0.302685,0.339066,0][0.349101,2.13756,-3.7175][0.223804,0.574524,-0.787295][0.303151,0.362144,0][0.653474,1.43195,-3.99324][1.92671,-0.102693,-0.0446862][0.295208,0.340033,0][-3.10967,0.557838,3.29299][-0.579542,0.226814,0.782743][0.067367,0.0030076,0][-3.18804,-0.307349,3.37328][-0.610908,0.0333891,0.790997][0.0937563,0,0][-2.4085,-0.349162,3.75264][-0.52166,0.038094,0.852303][0.0955858,0.0237974,0][-3.18804,-0.307349,3.37328][-0.610908,0.0333891,0.790997][0.164885,0.393138,0][-3.10967,0.557838,3.29299][-0.579542,0.226814,0.782743][0.139996,0.396438,0][-3.65341,0.614906,2.65877][-0.847633,0.230624,0.47784][0.140882,0.376317,0][1.68954,-0.301399,4.27593][0.471453,0.0499333,0.880476][0.0970252,0.149089,0][1.67798,-1.17341,4.23475][0.480271,-0.137546,0.866268][0.12367,0.148119,0][2.34713,-1.11962,3.66933][0.564685,-0.135171,0.814162][0.1225,0.16861,0][1.67798,-1.17341,4.23475][0.480271,-0.137546,0.866268][0.12367,0.148119,0][1.68954,-0.301399,4.27593][0.471453,0.0499333,0.880476][0.0970252,0.149089,0][0.859314,-0.352044,4.52456][0.0910753,0.0494112,0.994617][0.0979858,0.123677,0][-3.75332,-0.248909,2.71213][-0.872093,0.0389062,0.487791][0.877398,0.660527,0][-3.71584,-1.12013,2.67849][-0.867028,-0.145175,0.47664][0.852271,0.660282,0][-3.15371,-1.17812,3.33437][-0.610675,-0.151054,0.777341][0.849899,0.634012,0][-3.71584,-1.12013,2.67849][-0.867028,-0.145175,0.47664][0.188617,0.365772,0][-3.75332,-0.248909,2.71213][-0.872093,0.0389062,0.487791][0.165817,0.372161,0][-4.01955,-0.239687,1.88004][-0.915197,0.0405996,0.400958][0.163124,0.346664,0][-0.186838,-3.53495,-2.13309][-0.0627887,3.73129,0.961664][0.70736,0.000995784,0][0.504508,-3.78664,-1.67748][-0.141802,0.88385,0.44576][0.685487,0.0157528,0][0.109114,-3.50286,-2.17521][-0.712714,-0.046139,0.00453052][0.699532,0,0][-0.321241,-3.51615,-3.40748][-0.00733347,-0.754838,-0.741609][0.758092,0.408431,0][-0.186838,-3.53495,-2.13309][-0.0627887,3.73129,0.961664][0.760116,0.447542,0][0.109114,-3.50286,-2.17521][-0.712714,-0.046139,0.00453052][0.752225,0.447457,0][-3.00857,2.69724,-0.400265][-0.692426,0.716163,-0.0875027][0.0552874,0.300286,0][-3.55658,2.0605,-0.434978][-0.81524,0.568639,-0.109701][0.0791203,0.293622,0][-3.72311,2.16109,0.255814][-0.814336,0.573878,-0.0867229][0.0833108,0.314332,0][-3.55658,2.0605,-0.434978][-0.81524,0.568639,-0.109701][0.0791203,0.293622,0][-3.00857,2.69724,-0.400265][-0.692426,0.716163,-0.0875027][0.0552874,0.300286,0][-2.99257,2.80949,-1.00784][-0.686669,0.720547,-0.0964195][0.0478275,0.282953,0][-2.1226,-4.43567,0.144798][-0.230956,-0.958925,-0.16469][0.327514,0.0915373,0][-0.0204788,-4.48286,0.0493874][-0.00110098,-0.999995,-0.00288185][0.337104,0.149681,0][-2.07109,-4.43685,0.541848][-0.187565,-0.956344,0.224111][0.315618,0.0943506,0][-2.85315,-4.1103,0.17273][-0.563163,-0.81689,-0.124653][0.323886,0.067346,0][-2.1226,-4.43567,0.144798][-0.230956,-0.958925,-0.16469][0.327514,0.0915373,0][-2.07109,-4.43685,0.541848][-0.187565,-0.956344,0.224111][0.315618,0.0943506,0][0.20714,3.33519,-2.47969][0.218293,0.859903,-0.461427][0.499316,0.658455,0][0.27437,2.79641,-3.15544][0.224428,0.714279,-0.6629][0.521777,0.658869,0][-0.327652,2.80686,-3.16385][-0.192074,0.721525,-0.665213][0.515123,0.674315,0][0.27437,2.79641,-3.15544][0.224428,0.714279,-0.6629][0.521777,0.658869,0][0.20714,3.33519,-2.47969][0.218293,0.859903,-0.461427][0.499316,0.658455,0][0.649977,3.20121,-2.28913][0.142994,0.855164,-0.498244][0.499737,0.643295,0][3.64427,2.0422,0.906248][0.778631,0.557458,0.288052][0.0646015,0.824679,0][4.06136,1.28151,0.974886][0.865694,0.398415,0.303052][0.0714487,0.80431,0][4.17509,1.23735,0.190217][0.911346,0.405162,-0.0727419][0.0948579,0.810744,0][4.06136,1.28151,0.974886][0.865694,0.398415,0.303052][0.0714487,0.80431,0][3.64427,2.0422,0.906248][0.778631,0.557458,0.288052][0.0646015,0.824679,0][3.28084,1.98719,1.51267][0.765817,0.552743,0.328633][0.0438539,0.825621,0][-3.15371,-1.17812,3.33437][-0.610675,-0.151054,0.777341][0.120396,0.000433503,0][-3.0099,-2.0239,3.1818][-0.582752,-0.328325,0.743372][0.146349,0.00423054,0][-2.27378,-2.00353,3.54321][-0.510652,-0.324031,0.796391][0.146247,0.0267447,0][-3.0099,-2.0239,3.1818][-0.582752,-0.328325,0.743372][0.823627,0.634961,0][-3.15371,-1.17812,3.33437][-0.610675,-0.151054,0.777341][0.849899,0.634012,0][-3.71584,-1.12013,2.67849][-0.867028,-0.145175,0.47664][0.852271,0.660282,0][1.21741,-1.73466,-3.36342][0.22149,-1.42568,0.00393588][0.479461,0.533239,0][1.654,-1.82926,-3.15227][-0.574905,-2.5798,0.0615732][0.466183,0.53644,0][1.76695,-1.0146,-3.35894][-0.44962,0.121652,0.884897][0.462154,0.511619,0][1.654,-1.82926,-3.15227][-0.574905,-2.5798,0.0615732][0.903291,0.0992164,0][1.21741,-1.73466,-3.36342][0.22149,-1.42568,0.00393588][0.918093,0.0990955,0][1.22236,-1.7471,-4.04924][0.0594715,-2.74806,0.0522794][0.927125,0.118021,0][0.523127,-4.16858,2.81222][-0.0106997,-0.831539,0.555363][0.924155,0.0281992,0][0.638586,-3.56809,3.43342][0.0472193,-0.655335,0.753861][0.948905,0.0183156,0][-0.0182071,-3.46667,3.37481][0.00765025,-0.643206,0.765655][0.954135,0.0362682,0][-0.0182071,-3.46667,3.37481][0.00765025,-0.643206,0.765655][0.594594,0.570572,0][-0.0153521,-4.03723,2.77396][0.0112223,-0.825254,0.56465][0.613692,0.575886,0][0.523127,-4.16858,2.81222][-0.0106997,-0.831539,0.555363][0.614419,0.592529,0][0.489037,-1.16851,-4.49835][0.184041,-0.125211,-0.974911][0.30518,0.260996,0][0.455344,-1.85572,-4.329][0.443414,-2.71821,-0.0160608][0.307517,0.24009,0][-0.334319,-1.98905,-4.29655][-0.539444,-0.40246,-2.07419][0.331867,0.237526,0][1.22236,-1.7471,-4.04924][0.0594715,-2.74806,0.0522794][0.283905,0.241943,0][0.455344,-1.85572,-4.329][0.443414,-2.71821,-0.0160608][0.307517,0.24009,0][0.489037,-1.16851,-4.49835][0.184041,-0.125211,-0.974911][0.30518,0.260996,0][1.27094,-3.54505,3.23213][0.425958,-0.64871,0.630662][0.664431,0.722254,0][1.03963,-4.15625,2.63866][0.37749,-0.819887,0.430448][0.637696,0.718867,0][1.45899,-4.01044,2.28937][0.311211,-0.822192,0.476601][0.639294,0.704691,0][1.03963,-4.15625,2.63866][0.37749,-0.819887,0.430448][0.91667,0.0133118,0][1.27094,-3.54505,3.23213][0.425958,-0.64871,0.630662][0.940148,0,0][0.638586,-3.56809,3.43342][0.0472193,-0.655335,0.753861][0.948905,0.0183156,0][-1.30699,-3.58415,3.25847][-0.406031,-0.642828,0.649547][0.234254,0.113883,0][-1.06888,-4.17876,2.69042][-0.348474,-0.827304,0.440607][0.253133,0.126096,0][-0.55051,-4.18364,2.84046][0.0637305,-0.826655,0.559089][0.250215,0.140951,0][-1.06888,-4.17876,2.69042][-0.348474,-0.827304,0.440607][0.253133,0.126096,0][-1.30699,-3.58415,3.25847][-0.406031,-0.642828,0.649547][0.234254,0.113883,0][-1.82337,-3.45013,2.84678][-0.437813,-0.641059,0.630367][0.244935,0.0965157,0][-2.00632,3.3273,1.4364][-0.468559,0.871995,0.141692][0.0384654,0.361888,0][-2.56892,2.81537,1.8519][-0.600964,0.745669,0.287784][0.0622489,0.369372,0][-2.18002,2.78339,2.29606][-0.333576,0.731702,0.594424][0.0613112,0.383537,0][-2.56892,2.81537,1.8519][-0.600964,0.745669,0.287784][0.0622489,0.369372,0][-2.00632,3.3273,1.4364][-0.468559,0.871995,0.141692][0.0384654,0.361888,0][-2.15476,3.19884,0.991774][-0.426344,0.874901,0.229737][0.0407033,0.347404,0][2.45501,-2.42039,-2.16919][-0.727847,-0.476033,-0.00218941][0.240931,0.506665,0][2.50948,-2.51345,-1.97761][-3.01648,1.68249,0.601469][0.244645,0.501763,0][3.10457,-1.73986,-1.87875][-0.784718,0.379729,0.489922][0.263865,0.523853,0][2.50948,-2.51345,-1.97761][-3.01648,1.68249,0.601469][0.858195,0.0814607,0][2.45501,-2.42039,-2.16919][-0.727847,-0.476033,-0.00218941][0.863223,0.0855078,0][2.53899,-2.52889,-3.29331][-1.73755,-1.1758,-0.0163181][0.875123,0.117965,0][1.38805,3.09386,0.318708][-0.367293,-0.923281,-0.11246][0.510808,0.303113,0][1.4091,3.0928,-0.213347][-0.377019,-0.92272,0.0802779][0.500924,0.29018,0][2.06273,2.74719,0.0962511][-0.585027,-0.810617,-0.0253698][0.524367,0.283127,0][1.4091,3.0928,-0.213347][-0.377019,-0.92272,0.0802779][0.500924,0.29018,0][1.38805,3.09386,0.318708][-0.367293,-0.923281,-0.11246][0.510808,0.303113,0][0.672146,3.29516,0.259289][-0.171269,-0.980183,-0.0995447][0.492336,0.31598,0][3.27668,-3.64421,-1.1383][0.740056,-0.660409,-0.127185][0.0400992,0.459796,0][3.7456,-2.94136,-1.31727][0.845635,-0.500843,-0.184549][0.0654114,0.453374,0][3.77496,-2.87085,-0.565719][0.855837,-0.502724,-0.121704][0.068601,0.476249,0][3.77496,-2.87085,-0.565719][0.855837,-0.502724,-0.121704][0.068601,0.476249,0][3.29502,-3.53272,-0.480967][0.742621,-0.663409,-0.0916597][0.044174,0.479755,0][3.27668,-3.64421,-1.1383][0.740056,-0.660409,-0.127185][0.0400992,0.459796,0][-2.75668,-1.17157,-3.52664][-0.686049,-0.136793,-0.71458][0.848768,0.315371,0][-2.64201,-2.01465,-3.3694][-0.665891,-0.316243,-0.675706][0.847575,0.341795,0][-3.12943,-1.94641,-2.68991][-0.707556,-0.313274,-0.633422][0.821964,0.340411,0][-2.64201,-2.01465,-3.3694][-0.665891,-0.316243,-0.675706][0.402333,0.241142,0][-2.75668,-1.17157,-3.52664][-0.686049,-0.136793,-0.71458][0.404226,0.267086,0][-2.02415,-1.16491,-4.00929][-0.375856,-0.136048,-0.916637][0.381861,0.265893,0][-3.86419,-2.77717,0.978718][-0.806883,-0.488957,0.331454][0.29426,0.0252009,0][-3.38478,-3.48793,0.862681][-0.701895,-0.63765,0.317405][0.300339,0.0471193,0][-3.04878,-3.36812,1.43343][-0.715444,-0.625103,0.312068][0.283885,0.0568154,0][-3.38478,-3.48793,0.862681][-0.701895,-0.63765,0.317405][0.300339,0.0471193,0][-3.86419,-2.77717,0.978718][-0.806883,-0.488957,0.331454][0.29426,0.0252009,0][-3.97714,-2.80155,0.229507][-0.865203,-0.498238,-0.0564101][0.316698,0.0197999,0][-0.831739,-2.09045,4.26973][-0.0811125,-0.322498,0.943088][0.149924,0.0707598,0][-0.767706,-2.88482,3.92281][-0.0553053,-0.489242,0.870393][0.17425,0.072155,0][-0.0156618,-2.78941,3.85554][-0.00571556,-0.490364,0.871499][0.171866,0.0952089,0][-0.767706,-2.88482,3.92281][-0.0553053,-0.489242,0.870393][0.17425,0.072155,0][-0.831739,-2.09045,4.26973][-0.0811125,-0.322498,0.943088][0.149924,0.0707598,0][-1.62514,-2.077,4.03955][-0.440067,-0.322189,0.838174][0.148952,0.0465186,0][-3.27809,-3.51593,-1.08906][-0.745948,-0.654232,-0.124667][0.360001,0.0436315,0][-2.67764,-4.12288,-0.888504][-0.572416,-0.819221,-0.0348811][0.356693,0.0686501,0][-2.71304,-3.97761,-0.347131][-0.57246,-0.814139,-0.0973021][0.339923,0.0676927,0][-2.67764,-4.12288,-0.888504][-0.572416,-0.819221,-0.0348811][0.356693,0.0686501,0][-3.27809,-3.51593,-1.08906][-0.745948,-0.654232,-0.124667][0.360001,0.0436315,0][-2.99356,-3.51749,-1.68841][-0.583633,-0.648457,-0.488748][0.379105,0.049401,0][1.64706,2.66356,2.5951][0.379124,0.710785,0.592494][0.251555,0.707436,0][1.30232,3.17761,2.03279][0.272548,0.859196,0.433012][0.275172,0.707193,0][0.931567,3.30899,2.31244][0.307281,0.86454,0.39768][0.277306,0.721748,0][0.931567,3.30899,2.31244][0.307281,0.86454,0.39768][0.277306,0.721748,0][1.17047,2.77608,2.95946][0.351267,0.720372,0.598059][0.253686,0.725724,0][1.64706,2.66356,2.5951][0.379124,0.710785,0.592494][0.251555,0.707436,0][-2.39114,3.34636,0.585582][-0.401348,0.876083,0.267205][0.036869,0.335547,0][-3.06049,2.83202,0.777071][-0.612996,0.738926,0.279686][0.060501,0.336033,0][-2.75894,2.7093,1.29157][-0.602107,0.740528,0.298472][0.0636005,0.351463,0][-3.06049,2.83202,0.777071][-0.612996,0.738926,0.279686][0.060501,0.336033,0][-2.39114,3.34636,0.585582][-0.401348,0.876083,0.267205][0.036869,0.335547,0][-2.45919,3.34648,0.119351][-0.470139,0.868413,-0.157569][0.0344759,0.321468,0][-0.56503,3.28431,0.359804][0.16819,-0.976856,-0.132154][0.467942,0.340063,0][0.0193888,3.28698,0.66423][0.0101346,-0.978192,-0.207455][0.486332,0.33697,0][-1.1297,3.08333,0.766064][0.304411,-0.928782,-0.211418][0.46577,0.357948,0][0.0178759,3.358,-0.0541983][0.0117639,-0.999926,0.00307508][0.471623,0.320629,0][0.0193888,3.28698,0.66423][0.0101346,-0.978192,-0.207455][0.486332,0.33697,0][-0.56503,3.28431,0.359804][0.16819,-0.976856,-0.132154][0.467942,0.340063,0][2.56511,2.12459,2.72827][0.48192,0.564307,0.670306][0.00109866,0.830106,0][2.84845,1.38876,3.02265][0.558242,0.404362,0.724471][0,0.810584,0][3.3854,1.35019,2.41434][0.804973,0.396627,0.441254][0.0232653,0.804176,0][2.84845,1.38876,3.02265][0.558242,0.404362,0.724471][0.0461849,0.185707,0][2.56511,2.12459,2.72827][0.48192,0.564307,0.670306][0.0234937,0.177568,0][1.92041,2.04088,3.05021][0.448108,0.565614,0.692301][0.0255961,0.157803,0][4.33508,0.459159,1.01192][0.921612,0.221323,0.318821][0.169842,0.520732,0][4.45561,-0.402134,1.00219][0.944528,0.0417294,0.32577][0.147538,0.521268,0][4.57888,-0.453208,0.139614][0.997404,0.0452308,-0.0560292][0.146731,0.494907,0][4.45561,-0.402134,1.00219][0.944528,0.0417294,0.32577][0.147538,0.521268,0][4.33508,0.459159,1.01192][0.921612,0.221323,0.318821][0.169842,0.520732,0][3.90049,0.463864,1.74603][0.889166,0.216173,0.403302][0.165199,0.543365,0][-1.13804,-3.43783,-3.12493][0.0688564,0.348973,0.0120743][0.700697,0.899483,0][-0.896673,-3.48567,-3.07158][0.317407,1.6594,0.0496784][0.704223,0.892837,0][-0.747991,-3.99837,-2.56718][-0.148859,-0.816944,-0.557175][0.720543,0.892998,0][-0.576029,-3.57898,-2.0033][0.0846325,2.65283,0.900071][0.770817,0.449906,0][-0.896673,-3.48567,-3.07158][0.317407,1.6594,0.0496784][0.775806,0.416087,0][-1.13804,-3.43783,-3.12493][0.0688564,0.348973,0.0120743][0.782778,0.413361,0][2.05042,-2.72348,3.2295][0.488518,-0.482612,0.726936][0.171312,0.158406,0][1.78682,-3.4213,2.81015][0.417721,-0.644175,0.64074][0.192455,0.149855,0][2.37545,-3.54901,2.49472][0.422184,-0.650342,0.631519][0.196775,0.167757,0][1.78682,-3.4213,2.81015][0.417721,-0.644175,0.64074][0.665271,0.705894,0][2.05042,-2.72348,3.2295][0.488518,-0.482612,0.726936][0.691249,0.703307,0][1.4601,-2.82474,3.71855][0.450117,-0.494804,0.743346][0.691311,0.721539,0][3.97943,1.16868,-0.582486][0.904442,0.405821,-0.131503][0.114551,0.824559,0][3.56756,1.90936,-0.493409][0.819003,0.560148,-0.124371][0.10347,0.842584,0][3.74473,2.00579,0.203849][0.82262,0.561343,-0.0904994][0.0855245,0.830509,0][3.74473,2.00579,0.203849][0.82262,0.561343,-0.0904994][0.0855245,0.830509,0][4.17509,1.23735,0.190217][0.911346,0.405162,-0.0727419][0.0948579,0.810744,0][3.97943,1.16868,-0.582486][0.904442,0.405821,-0.131503][0.114551,0.824559,0][3.53108,2.01591,-1.19852][0.807857,0.572577,-0.139723][0.122158,0.853594,0][3.94266,1.26217,-1.37508][0.890754,0.41756,-0.179447][0.135744,0.836518,0][3.61435,1.29954,-2.09627][0.747895,0.434417,-0.501932][0.151933,0.85429,0][3.94266,1.26217,-1.37508][0.890754,0.41756,-0.179447][0.135744,0.836518,0][3.53108,2.01591,-1.19852][0.807857,0.572577,-0.139723][0.122158,0.853594,0][3.56756,1.90936,-0.493409][0.819003,0.560148,-0.124371][0.10347,0.842584,0][2.81641,1.39139,-1.6937][-2.12368,-0.671842,0.649243][0.632255,0.510838,0][2.59198,1.56564,-1.68763][-2.05047,-0.41982,1.03203][0.638674,0.505309,0][2.71189,1.5624,-2.59192][-0.69419,-2.46917,-0.0638093][0.653659,0.528785,0][2.59198,1.56564,-1.68763][-2.05047,-0.41982,1.03203][0.924815,0.793298,0][2.81641,1.39139,-1.6937][-2.12368,-0.671842,0.649243][0.93242,0.797498,0][2.67287,1.71365,-1.57303][-0.731269,-0.531723,0.427219][0.921635,0.797357,0][1.51554,3.33122,-1.91806][0.45754,0.846626,-0.27181][0.112383,0.929056,0][1.93866,2.76408,-2.45198][0.559864,0.690978,-0.457276][0.135079,0.918364,0][1.42841,2.77085,-2.78764][0.227064,0.704316,-0.672593][0.138612,0.935546,0][1.93866,2.76408,-2.45198][0.559864,0.690978,-0.457276][0.135079,0.918364,0][1.51554,3.33122,-1.91806][0.45754,0.846626,-0.27181][0.112383,0.929056,0][1.79491,3.17747,-1.52416][0.413693,0.844863,-0.339212][0.105382,0.915248,0][2.78743,2.63497,1.31347][0.663937,0.696139,0.273091][0.0403795,0.848224,0][2.19053,3.17503,1.04244][0.494271,0.848141,0.190662][0.0383036,0.873072,0][2.03522,3.3184,1.4865][0.494949,0.853927,0.160726][0.0233968,0.873125,0][2.03522,3.3184,1.4865][0.494949,0.853927,0.160726][0.0233968,0.873125,0][2.59011,2.76265,1.88534][0.64539,0.704082,0.296211][0.021514,0.847553,0][2.78743,2.63497,1.31347][0.663937,0.696139,0.273091][0.0403795,0.848224,0][-2.18002,2.78339,2.29606][-0.333576,0.731702,0.594424][0,0.0329972,0][-2.59416,2.13503,2.73902][-0.424582,0.601063,0.677092][0.0195243,0.0198801,0][-1.9708,2.00423,3.03846][-0.403115,0.589599,0.699909][0.0239633,0.0388407,0][-2.59416,2.13503,2.73902][-0.424582,0.601063,0.677092][0.087099,0.391415,0][-2.18002,2.78339,2.29606][-0.333576,0.731702,0.594424][0.0613112,0.383537,0][-2.56892,2.81537,1.8519][-0.600964,0.745669,0.287784][0.0622489,0.369372,0][3.33696,-1.19972,-2.92291][0.749314,-0.140576,-0.647122][0.259006,0.927869,0][3.36116,-0.358737,-2.9395][0.745345,0.0837381,-0.661399][0.284621,0.93021,0][3.97754,-0.366165,-2.36418][0.813008,0.0679196,-0.578278][0.28322,0.949004,0][3.97754,-0.366165,-2.36418][0.813008,0.0679196,-0.578278][0.28322,0.949004,0][3.94627,-1.24054,-2.34933][0.803616,-0.145138,-0.577179][0.256599,0.946384,0][3.33696,-1.19972,-2.92291][0.749314,-0.140576,-0.647122][0.259006,0.927869,0][-0.79037,3.59402,-1.53197][0.117026,0.966268,-0.229413][0.725823,0.228718,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.675251,0.21594,0][-0.22847,3.42708,-0.819523][-0.0347766,0.998736,-0.0362774][0.700576,0.216417,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.314293,0.171855,0][-0.175633,3.60739,-1.71581][-0.237528,0.965884,-0.103197][0.266518,0.1923,0][-0.22847,3.42708,-0.819523][-0.0347766,0.998736,-0.0362774][0.289814,0.176794,0][3.44364,-2.90631,-2.00889][0.676482,-0.505883,-0.535215][0.27378,0.877359,0][3.01344,-3.61568,-1.74556][0.565709,-0.653693,-0.502651][0.250833,0.864577,0][2.53843,-3.4653,-2.20059][0.555446,-0.647177,-0.522151][0.261635,0.847012,0][3.01344,-3.61568,-1.74556][0.565709,-0.653693,-0.502651][0.0367966,0.441341,0][3.44364,-2.90631,-2.00889][0.676482,-0.505883,-0.535215][0.061693,0.432353,0][3.7456,-2.94136,-1.31727][0.845635,-0.500843,-0.184549][0.0654114,0.453374,0][-3.4401,-2.80566,-1.94166][-0.681983,-0.497126,-0.536437][0.798529,0.367872,0][-3.74745,-2.01463,-2.12711][-0.751678,-0.322602,-0.575246][0.797023,0.341865,0][-3.12943,-1.94641,-2.68991][-0.707556,-0.313274,-0.633422][0.821964,0.340411,0][-3.12943,-1.94641,-2.68991][-0.707556,-0.313274,-0.633422][0.821964,0.340411,0][-2.87786,-2.71145,-2.46089][-0.652126,-0.486328,-0.581564][0.821372,0.365558,0][-3.4401,-2.80566,-1.94166][-0.681983,-0.497126,-0.536437][0.798529,0.367872,0][0.397339,2.74586,1.97257][-0.0882714,-0.853005,-0.514385][0.525248,0.356734,0][1.12008,2.75846,1.70287][-0.266053,-0.843867,-0.465944][0.535334,0.337739,0][0.969839,2.30545,2.40397][-0.229695,-0.719264,-0.655667][0.55027,0.353206,0][1.12008,2.75846,1.70287][-0.266053,-0.843867,-0.465944][0.535334,0.337739,0][0.397339,2.74586,1.97257][-0.0882714,-0.853005,-0.514385][0.525248,0.356734,0][-0.251554,3.07791,1.32985][0.0931118,-0.923165,-0.372956][0.495564,0.355732,0][-3.6562,1.38186,1.75591][-0.83031,0.418236,0.368327][0.113938,0.35427,0][-3.26615,2.09777,1.56281][-0.728013,0.597079,0.336889][0.0883697,0.354186,0][-3.6213,2.18074,0.957053][-0.753699,0.590344,0.288847][0.086382,0.335631,0][-3.6213,2.18074,0.957053][-0.753699,0.590344,0.288847][0.086382,0.335631,0][-4.05226,1.41964,1.07143][-0.860404,0.412102,0.299796][0.113136,0.332966,0][-3.6562,1.38186,1.75591][-0.83031,0.418236,0.368327][0.113938,0.35427,0][-0.0426874,1.25218,4.02709][-0.00582079,0.414096,0.910215][0.0483139,0.0972422,0][-0.0375836,1.98532,3.59912][-0.00937697,0.573501,0.819151][0.025909,0.0979168,0][-0.744381,2.0725,3.66662][-0.04074,0.581031,0.812861][0.0227442,0.076375,0][-0.0375836,1.98532,3.59912][-0.00937697,0.573501,0.819151][0.025909,0.0979168,0][-0.0426874,1.25218,4.02709][-0.00582079,0.414096,0.910215][0.0483139,0.0972422,0][0.747034,1.34007,4.11355][0.0414342,0.416417,0.908229][0.0461863,0.121442,0][3.23215,2.04822,-1.84649][0.651161,0.596628,-0.469067][0.136665,0.869647,0][3.61435,1.29954,-2.09627][0.747895,0.434417,-0.501932][0.151933,0.85429,0][2.84322,1.27684,-2.88922][-2.04576,-0.252092,-0.0321276][0.165415,0.883446,0][3.61435,1.29954,-2.09627][0.747895,0.434417,-0.501932][0.151933,0.85429,0][3.23215,2.04822,-1.84649][0.651161,0.596628,-0.469067][0.136665,0.869647,0][3.53108,2.01591,-1.19852][0.807857,0.572577,-0.139723][0.122158,0.853594,0][3.61239,0.539171,2.55622][0.848972,0.219859,0.480529][0.16449,0.568179,0][3.7148,-0.317072,2.59351][0.867897,0.039208,0.495194][0.142146,0.570155,0][4.00864,-0.366262,1.76008][0.906042,0.0384041,0.421441][0.143626,0.544601,0][3.7148,-0.317072,2.59351][0.867897,0.039208,0.495194][0.663414,0.36956,0][3.61239,0.539171,2.55622][0.848972,0.219859,0.480529][0.672088,0.345127,0][3.04573,0.582116,3.21364][0.610629,0.225018,0.759275][0.697738,0.350721,0][3.68464,-1.191,2.5618][0.85896,-0.133667,0.494288][0.117521,0.570106,0][3.51986,-2.04995,2.46497][0.82365,-0.309621,0.475116][0.091499,0.568116,0][3.79747,-2.02343,1.67964][0.853779,-0.307567,0.420075][0.0949211,0.543961,0][3.51986,-2.04995,2.46497][0.82365,-0.309621,0.475116][0.091499,0.568116,0][3.68464,-1.191,2.5618][0.85896,-0.133667,0.494288][0.117521,0.570106,0][3.1158,-1.14718,3.23602][0.629015,-0.132955,0.76594][0.11216,0.590934,0][-0.403879,3.08452,-1.40727][0.104555,-0.926756,0.36082][0.693951,0.425037,0][-0.873119,3.07699,-1.16195][0.247835,-0.9317,0.265542][0.700635,0.439294,0][-1.27709,2.74582,-1.65994][0.341996,-0.828226,0.443938][0.683212,0.452642,0][-0.873119,3.07699,-1.16195][0.247835,-0.9317,0.265542][0.433835,0.307883,0][-0.403879,3.08452,-1.40727][0.104555,-0.926756,0.36082][0.439024,0.293888,0][0.0752346,3.29287,-0.766961][0.00202308,-0.982522,0.186135][0.459641,0.302265,0][-2.35456,0.48271,3.6514][-0.498006,0.229999,0.836116][0.0701976,0.0260346,0][-2.2122,1.27675,3.41071][-0.455426,0.421972,0.783918][0.0460282,0.0309476,0][-2.91303,1.38356,3.08393][-0.512999,0.426331,0.745033][0.0422678,0.00960213,0][-2.91303,1.38356,3.08393][-0.512999,0.426331,0.745033][0.0422678,0.00960213,0][-3.10967,0.557838,3.29299][-0.579542,0.226814,0.782743][0.067367,0.0030076,0][-2.35456,0.48271,3.6514][-0.498006,0.229999,0.836116][0.0701976,0.0260346,0][0.638586,-3.56809,3.43342][0.0472193,-0.655335,0.753861][0.196129,0.114655,0][0.736628,-2.85933,3.93874][0.0716128,-0.500669,0.862671][0.174535,0.118153,0][-0.0156618,-2.78941,3.85554][-0.00571556,-0.490364,0.871499][0.171866,0.0952089,0][-0.0156618,-2.78941,3.85554][-0.00571556,-0.490364,0.871499][0.171866,0.0952089,0][-0.0182071,-3.46667,3.37481][0.00765025,-0.643206,0.765655][0.192565,0.094652,0][0.638586,-3.56809,3.43342][0.0472193,-0.655335,0.753861][0.196129,0.114655,0][0.869455,3.10096,-1.13813][-0.250275,-0.928686,0.273688][0.471323,0.277936,0][0.390317,3.09966,-1.39609][-0.0969188,-0.923797,0.370414][0.456074,0.280281,0][1.25776,2.77419,-1.62922][-0.317606,-0.830702,0.457231][0.473337,0.256821,0][0.390317,3.09966,-1.39609][-0.0969188,-0.923797,0.370414][0.456074,0.280281,0][0.869455,3.10096,-1.13813][-0.250275,-0.928686,0.273688][0.471323,0.277936,0][0.0752346,3.29287,-0.766961][0.00202308,-0.982522,0.186135][0.459641,0.302265,0][2.72487,-2.82227,2.86213][0.520666,-0.48129,0.705171][0.174809,0.178951,0][2.97565,-2.00865,3.10196][0.590365,-0.303897,0.747741][0.150118,0.187192,0][2.24047,-1.94533,3.50906][0.538705,-0.307515,0.784367][0.147662,0.164765,0][2.24047,-1.94533,3.50906][0.538705,-0.307515,0.784367][0.147662,0.164765,0][2.05042,-2.72348,3.2295][0.488518,-0.482612,0.726936][0.171312,0.158406,0][2.72487,-2.82227,2.86213][0.520666,-0.48129,0.705171][0.174809,0.178951,0][-2.08657,-2.76753,3.24904][-0.481679,-0.489164,0.72712][0.230885,0.0819057,0][-1.82337,-3.45013,2.84678][-0.437813,-0.641059,0.630367][0.244935,0.0965157,0][-1.30699,-3.58415,3.25847][-0.406031,-0.642828,0.649547][0.234254,0.113883,0][-1.82337,-3.45013,2.84678][-0.437813,-0.641059,0.630367][0.190782,0.0394882,0][-2.08657,-2.76753,3.24904][-0.481679,-0.489164,0.72712][0.169732,0.0319265,0][-2.76035,-2.81822,2.92003][-0.52877,-0.4954,0.689188][0.170804,0.0112963,0][-0.46064,3.2905,2.41873][0.0642918,0.855873,0.513175][0.930927,0.15848,0][-0.608924,2.73875,3.09682][-0.00211356,0.71614,0.697953][0.951867,0.159123,0][-0.0113331,2.62808,3.04184][-0.0104633,0.711319,0.702791][0.952243,0.177187,0][-0.608924,2.73875,3.09682][-0.00211356,0.71614,0.697953][0.72382,0.807972,0][-0.46064,3.2905,2.41873][0.0642918,0.855873,0.513175][0.701034,0.82214,0][-0.912469,3.29429,2.28825][-0.329408,0.859445,0.390954][0.693599,0.810582,0][-3.97606,1.32336,-0.484964][-0.903586,0.410033,-0.12412][0.103939,0.286248,0][-3.55658,2.0605,-0.434978][-0.81524,0.568639,-0.109701][0.0791203,0.293622,0][-3.53403,2.14932,-1.14947][-0.807244,0.570668,-0.150646][0.0714659,0.272978,0][-3.53403,2.14932,-1.14947][-0.807244,0.570668,-0.150646][0.0714659,0.272978,0][-3.94709,1.38762,-1.27713][-0.890741,0.412086,-0.191746][0.0963252,0.263156,0][-3.97606,1.32336,-0.484964][-0.903586,0.410033,-0.12412][0.103939,0.286248,0][-2.84124,-3.49662,2.05737][-0.707393,-0.631785,0.316926][0.265775,0.0663472,0][-2.33268,-4.1278,1.68903][-0.55717,-0.809882,0.18345][0.279493,0.0871695,0][-1.9765,-4.14997,2.10122][-0.286329,-0.822926,0.490723][0.268128,0.0986925,0][-2.33268,-4.1278,1.68903][-0.55717,-0.809882,0.18345][0.279493,0.0871695,0][-2.84124,-3.49662,2.05737][-0.707393,-0.631785,0.316926][0.265775,0.0663472,0][-3.04878,-3.36812,1.43343][-0.715444,-0.625103,0.312068][0.283885,0.0568154,0][-3.54545,-1.9683,2.55888][-0.836483,-0.322076,0.443354][0.208525,0.357361,0][-3.71584,-1.12013,2.67849][-0.867028,-0.145175,0.47664][0.188617,0.365772,0][-3.98085,-1.07863,1.85524][-0.905635,-0.141693,0.399685][0.1851,0.340746,0][-3.98085,-1.07863,1.85524][-0.905635,-0.141693,0.399685][0.1851,0.340746,0][-3.79778,-1.89605,1.77516][-0.866637,-0.317869,0.384577][0.204294,0.333743,0][-3.54545,-1.9683,2.55888][-0.836483,-0.322076,0.443354][0.208525,0.357361,0][-2.99356,-3.51749,-1.68841][-0.583633,-0.648457,-0.488748][0.379105,0.049401,0][-2.44134,-4.12977,-1.37648][-0.404322,-0.820071,-0.404979][0.37227,0.0735475,0][-2.67764,-4.12288,-0.888504][-0.572416,-0.819221,-0.0348811][0.356693,0.0686501,0][-2.44134,-4.12977,-1.37648][-0.404322,-0.820071,-0.404979][0.37227,0.0735475,0][-2.99356,-3.51749,-1.68841][-0.583633,-0.648457,-0.488748][0.379105,0.049401,0][-2.50818,-3.40356,-2.14144][-0.575183,-0.63885,-0.510916][0.394228,0.0597259,0][-1.97583,2.77103,0.444219][0.474429,-0.870274,-0.132439][0.110392,0.757311,0][-1.6548,2.76093,1.14584][0.417673,-0.855521,-0.305995][0.0950667,0.772811,0][-2.36789,2.34159,1.06737][0.605637,-0.740255,-0.291935][0.0850499,0.754386,0][-1.6548,2.76093,1.14584][0.417673,-0.855521,-0.305995][0.949461,0.744576,0][-1.97583,2.77103,0.444219][0.474429,-0.870274,-0.132439][0.928763,0.755216,0][-1.38119,3.08295,-0.249176][0.361158,-0.930428,0.0621957][0.906673,0.744428,0][-0.0251626,0.454913,4.3077][-0.0051793,0.235814,0.971784][0.0726951,0.0972138,0][-0.0426874,1.25218,4.02709][-0.00582079,0.414096,0.910215][0.0483139,0.0972422,0][-0.833072,1.31595,4.10589][-0.0648496,0.419346,0.905507][0.0458058,0.073129,0][-0.833072,1.31595,4.10589][-0.0648496,0.419346,0.905507][0.0458058,0.073129,0][-0.867985,0.493266,4.39212][-0.0794944,0.236255,0.968434][0.0709267,0.0714798,0][-0.0251626,0.454913,4.3077][-0.0051793,0.235814,0.971784][0.0726951,0.0972138,0][3.13877,-0.272885,3.27608][0.636569,0.0400068,0.770181][0.136711,0.591242,0][3.1158,-1.14718,3.23602][0.629015,-0.132955,0.76594][0.11216,0.590934,0][3.68464,-1.191,2.5618][0.85896,-0.133667,0.494288][0.117521,0.570106,0][3.1158,-1.14718,3.23602][0.629015,-0.132955,0.76594][0.123886,0.192085,0][3.13877,-0.272885,3.27608][0.636569,0.0400068,0.770181][0.097179,0.193405,0][2.36307,-0.27867,3.71109][0.566532,0.0444978,0.822837][0.096807,0.169692,0][4.24764,0.372745,-0.651957][0.962318,0.233715,-0.139001][0.453247,0.981778,0][3.97943,1.16868,-0.582486][0.904442,0.405821,-0.131503][0.427739,0.978166,0][4.17509,1.23735,0.190217][0.911346,0.405162,-0.0727419][0.429071,0.953924,0][4.17509,1.23735,0.190217][0.911346,0.405162,-0.0727419][0.429071,0.953924,0][4.45641,0.410144,0.172903][0.971123,0.23107,-0.0593928][0.45568,0.956098,0][4.24764,0.372745,-0.651957][0.962318,0.233715,-0.139001][0.453247,0.981778,0][3.36116,-0.358737,-2.9395][0.745345,0.0837381,-0.661399][0.284621,0.93021,0][2.91022,0.776809,-3.09841][0.451961,0.229621,-0.437329][0.320131,0.918613,0][3.8626,0.488954,-2.26531][0.796514,0.253054,-0.549116][0.309532,0.947126,0][3.8626,0.488954,-2.26531][0.796514,0.253054,-0.549116][0.309532,0.947126,0][3.97754,-0.366165,-2.36418][0.813008,0.0679196,-0.578278][0.28322,0.949004,0][3.36116,-0.358737,-2.9395][0.745345,0.0837381,-0.661399][0.284621,0.93021,0][-1.80953,1.74186,-3.49123][-0.421623,-2.5359,-0.0697338][0.369773,0.354182,0][-1.71738,2.15367,-3.31737][-0.317153,0.5652,-0.761553][0.366177,0.366573,0][-1.01524,2.06912,-3.4541][-0.258917,0.550924,-0.793375][0.344913,0.362655,0][-2.45578,1.72504,-3.09417][-0.187848,0.244696,-0.283773][0.389525,0.3549,0][-1.71738,2.15367,-3.31737][-0.317153,0.5652,-0.761553][0.366177,0.366573,0][-1.80953,1.74186,-3.49123][-0.421623,-2.5359,-0.0697338][0.369773,0.354182,0][-3.9217,-1.169,-2.23189][-0.790429,-0.139544,-0.596448][0.749579,0.66029,0][-3.96235,-0.298052,-2.24403][-0.802406,0.0487192,-0.594787][0.723174,0.663942,0][-3.3089,-0.292378,-2.8334][-0.738941,0.0482543,-0.672039][0.721189,0.644062,0][-3.3089,-0.292378,-2.8334][-0.738941,0.0482543,-0.672039][0.721189,0.644062,0][-3.2727,-1.13105,-2.81644][-0.736417,-0.135198,-0.662881][0.746624,0.640634,0][-3.9217,-1.169,-2.23189][-0.790429,-0.139544,-0.596448][0.749579,0.66029,0][3.8604,-2.91806,0.922146][0.800019,-0.496722,0.336508][0.0700963,0.521714,0][4.21803,-2.12499,0.974498][0.887388,-0.314394,0.337194][0.0967336,0.52232,0][3.79747,-2.02343,1.67964][0.853779,-0.307567,0.420075][0.0949211,0.543961,0][3.79747,-2.02343,1.67964][0.853779,-0.307567,0.420075][0.0949211,0.543961,0][3.47867,-2.78698,1.56454][0.779162,-0.48794,0.393474][0.0695306,0.541389,0][3.8604,-2.91806,0.922146][0.800019,-0.496722,0.336508][0.0700963,0.521714,0][3.28084,1.98719,1.51267][0.765817,0.552743,0.328633][0.0438539,0.825621,0][2.78743,2.63497,1.31347][0.663937,0.696139,0.273091][0.0403795,0.848224,0][2.59011,2.76265,1.88534][0.64539,0.704082,0.296211][0.021514,0.847553,0][2.59011,2.76265,1.88534][0.64539,0.704082,0.296211][0.021514,0.847553,0][3.04475,2.09603,2.19057][0.73828,0.557441,0.37974][0.0216911,0.824381,0][3.28084,1.98719,1.51267][0.765817,0.552743,0.328633][0.0438539,0.825621,0][-3.74745,-2.01463,-2.12711][-0.751678,-0.322602,-0.575246][0.774843,0.65264,0][-3.9217,-1.169,-2.23189][-0.790429,-0.139544,-0.596448][0.749579,0.66029,0][-3.2727,-1.13105,-2.81644][-0.736417,-0.135198,-0.662881][0.746624,0.640634,0][-3.2727,-1.13105,-2.81644][-0.736417,-0.135198,-0.662881][0.746624,0.640634,0][-3.12943,-1.94641,-2.68991][-0.707556,-0.313274,-0.633422][0.771053,0.634012,0][-3.74745,-2.01463,-2.12711][-0.751678,-0.322602,-0.575246][0.774843,0.65264,0][-2.72286,2.05735,-2.31365][-0.624672,0.551455,-0.552885][0.0556362,0.240127,0][-2.77246,1.68212,-2.55968][0.0202695,-0.569857,-0.00309707][0.0646715,0.230289,0][-3.61609,1.39392,-2.00057][-0.729422,0.40159,-0.553777][0.0869539,0.242633,0][-2.77246,1.68212,-2.55968][0.0202695,-0.569857,-0.00309707][0.0646715,0.230289,0][-2.72286,2.05735,-2.31365][-0.624672,0.551455,-0.552885][0.0556362,0.240127,0][-2.45578,1.72504,-3.09417][-0.187848,0.244696,-0.283773][0.0558077,0.215579,0][-1.2097,-0.0620055,-4.18426][-1.2826,1.14497,-0.0710671][0.354907,0.297996,0][-0.556994,-0.252344,-4.44756][1.98679,-0.434652,0.0564344][0.335353,0.290944,0][-0.653632,-0.612801,-4.38936][-1.19207,-0.230949,-3.20323][0.338988,0.28013,0][-0.653632,-0.612801,-4.38936][-1.19207,-0.230949,-3.20323][0.71186,0.746985,0][-0.556994,-0.252344,-4.44756][1.98679,-0.434652,0.0564344][0.723022,0.744787,0][-0.660672,-0.630292,-3.70846][1.12327,-0.267376,-0.0052713][0.712062,0.76781,0][1.11367,3.33783,-2.18779][0.104081,0.855344,-0.507498][0.978254,0.499824,0][1.42841,2.77085,-2.78764][0.227064,0.704316,-0.672593][0.998711,0.514292,0][0.838662,2.6678,-2.91406][0.2203,0.70182,-0.677434][0.98803,0.529047,0][1.42841,2.77085,-2.78764][0.227064,0.704316,-0.672593][0.138612,0.935546,0][1.11367,3.33783,-2.18779][0.104081,0.855344,-0.507498][0.115308,0.94267,0][1.51554,3.33122,-1.91806][0.45754,0.846626,-0.27181][0.112383,0.929056,0][-1.77617,2.75627,-1.06732][0.44504,-0.859261,0.252211][0.149449,0.732513,0][-2.01868,2.76958,-0.330273][0.511786,-0.854896,0.0850214][0.129423,0.743209,0][-2.47124,2.33558,-0.871942][0.661034,-0.711713,0.237695][0.132695,0.719064,0][-2.01868,2.76958,-0.330273][0.511786,-0.854896,0.0850214][0.717176,0.474891,0][-1.77617,2.75627,-1.06732][0.44504,-0.859261,0.252211][0.698672,0.467689,0][-0.873119,3.07699,-1.16195][0.247835,-0.9317,0.265542][0.700635,0.439294,0][2.10853,-3.50997,-2.82851][-1.92147,2.87475,-0.0403026][0.471736,0.575845,0][2.3811,-2.88794,-3.18894][-1.28826,0.54193,-0.0239803][0.494676,0.570738,0][2.53899,-2.52889,-3.29331][-1.73755,-1.1758,-0.0163181][0.507082,0.570847,0][2.50948,-2.51345,-1.97761][-3.01648,1.68249,0.601469][0.552476,0.773273,0][2.53899,-2.52889,-3.29331][-1.73755,-1.1758,-0.0163181][0.592702,0.77332,0][2.3811,-2.88794,-3.18894][-1.28826,0.54193,-0.0239803][0.589511,0.785309,0][3.7456,-2.94136,-1.31727][0.845635,-0.500843,-0.184549][0.0654114,0.453374,0][4.09096,-2.14023,-1.46844][0.917923,-0.333481,-0.214962][0.0918809,0.44776,0][4.1237,-2.11343,-0.6465][0.933301,-0.331651,-0.137686][0.0939845,0.472828,0][4.1237,-2.11343,-0.6465][0.933301,-0.331651,-0.137686][0.0939845,0.472828,0][3.77496,-2.87085,-0.565719][0.855837,-0.502724,-0.121704][0.068601,0.476249,0][3.7456,-2.94136,-1.31727][0.845635,-0.500843,-0.184549][0.0654114,0.453374,0][2.53899,-2.52889,-3.29331][-1.73755,-1.1758,-0.0163181][0.507082,0.570847,0][3.18094,-2.02375,-2.77757][0.708703,-0.344914,-0.615447][0.524382,0.591971,0][2.90513,-2.79209,-2.52414][0.631011,-0.509404,-0.585092][0.498363,0.592837,0][2.90513,-2.79209,-2.52414][0.631011,-0.509404,-0.585092][0.498363,0.592837,0][3.18094,-2.02375,-2.77757][0.708703,-0.344914,-0.615447][0.524382,0.591971,0][3.76418,-2.10069,-2.22069][0.755481,-0.342252,-0.55867][0.525068,0.609821,0][0.646106,3.59966,1.57939][0.228235,0.971365,0.0660186][0.301547,0.714623,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.34765,0.692174,0][0.334365,3.59484,1.66254][-0.196159,0.960628,0.196761][0.305659,0.722567,0][0.931567,3.30899,2.31244][0.307281,0.86454,0.39768][0.277306,0.721748,0][0.646106,3.59966,1.57939][0.228235,0.971365,0.0660186][0.301547,0.714623,0][0.334365,3.59484,1.66254][-0.196159,0.960628,0.196761][0.305659,0.722567,0][-3.97714,-2.80155,0.229507][-0.865203,-0.498238,-0.0564101][0.316698,0.0197999,0][-4.33452,-2.02306,0.238724][-0.943711,-0.327543,-0.0461022][0.314148,0,0][-4.14111,-1.96188,-0.558309][-0.93674,-0.322544,-0.135954][0.338878,0.00176839,0][-4.14111,-1.96188,-0.558309][-0.93674,-0.322544,-0.135954][0.338878,0.00176839,0][-3.79915,-2.71558,-0.502196][-0.859378,-0.495449,-0.12649][0.339358,0.0210527,0][-3.97714,-2.80155,0.229507][-0.865203,-0.498238,-0.0564101][0.316698,0.0197999,0][1.92041,2.04088,3.05021][0.448108,0.565614,0.692301][0.230699,0.705821,0][1.64706,2.66356,2.5951][0.379124,0.710785,0.592494][0.251555,0.707436,0][1.17047,2.77608,2.95946][0.351267,0.720372,0.598059][0.253686,0.725724,0][1.17047,2.77608,2.95946][0.351267,0.720372,0.598059][0.253686,0.725724,0][1.35558,2.1269,3.49075][0.383563,0.576161,0.721746][0.232608,0.727239,0][1.92041,2.04088,3.05021][0.448108,0.565614,0.692301][0.230699,0.705821,0][-2.75894,2.7093,1.29157][-0.602107,0.740528,0.298472][0.0636005,0.351463,0][-3.26615,2.09777,1.56281][-0.728013,0.597079,0.336889][0.0883697,0.354186,0][-3.04526,2.18115,2.22367][-0.696709,0.60886,0.379324][0.087942,0.375036,0][-3.26615,2.09777,1.56281][-0.728013,0.597079,0.336889][0.0883697,0.354186,0][-2.75894,2.7093,1.29157][-0.602107,0.740528,0.298472][0.0636005,0.351463,0][-3.06049,2.83202,0.777071][-0.612996,0.738926,0.279686][0.060501,0.336033,0][-3.47797,-3.50209,0.209824][-0.758234,-0.646823,-0.0818598][0.319897,0.0424663,0][-2.85315,-4.1103,0.17273][-0.563163,-0.81689,-0.124653][0.323886,0.067346,0][-2.78126,-4.10692,0.70723][-0.510404,-0.812213,0.282485][0.307872,0.0711395,0][-2.85315,-4.1103,0.17273][-0.563163,-0.81689,-0.124653][0.323886,0.067346,0][-3.47797,-3.50209,0.209824][-0.758234,-0.646823,-0.0818598][0.319897,0.0424663,0][-3.31464,-3.39263,-0.429034][-0.754633,-0.645243,-0.119124][0.339656,0.0433367,0][-3.79778,-1.89605,1.77516][-0.866637,-0.317869,0.384577][0.268983,0.0184865,0][-3.48183,-2.6667,1.6344][-0.802019,-0.480013,0.355463][0.275386,0.036588,0][-3.25031,-2.7678,2.35143][-0.782504,-0.486244,0.388914][0.254484,0.0467521,0][-3.48183,-2.6667,1.6344][-0.802019,-0.480013,0.355463][0.431831,0.85403,0][-3.79778,-1.89605,1.77516][-0.866637,-0.317869,0.384577][0.457554,0.856296,0][-4.21114,-1.9923,1.05688][-0.884948,-0.323266,0.335211][0.453715,0.88151,0][4.28902,-1.28347,-1.56639][0.962406,-0.145375,-0.229437][0.11805,0.443785,0][4.32774,-0.409879,-1.57719][0.972229,0.0543467,-0.227635][0.142727,0.442532,0][4.36421,-0.457976,-0.706057][0.988715,0.0473355,-0.142133][0.142861,0.469179,0][4.36421,-0.457976,-0.706057][0.988715,0.0473355,-0.142133][0.142861,0.469179,0][4.32293,-1.29723,-0.703447][0.978944,-0.146001,-0.142658][0.119092,0.470147,0][4.28902,-1.28347,-1.56639][0.962406,-0.145375,-0.229437][0.11805,0.443785,0][-2.07272,-0.272369,3.1777][0.525948,-0.0420563,-0.849477][0.479521,0.0760617,0][-2.63427,-0.232529,2.74873][0.682912,-0.0419184,-0.729297][0.462462,0.0737762,0][-2.56455,0.479388,2.67539][0.653624,-0.239394,-0.71796][0.465946,0.0521855,0][-3.01197,0.523759,2.16069][0.785621,-0.239275,-0.570567][0.0239527,0.725589,0][-2.56455,0.479388,2.67539][0.653624,-0.239394,-0.71796][0.0136957,0.738362,0][-2.63427,-0.232529,2.74873][0.682912,-0.0419184,-0.729297][0,0.722775,0][0.853635,-1.22293,4.48635][0.0978432,-0.137997,0.985588][0.124601,0.122887,0][0.859314,-0.352044,4.52456][0.0910753,0.0494112,0.994617][0.0979858,0.123677,0][-0.0103179,-0.377936,4.43012][-0.00570033,0.0487583,0.998794][0.098162,0.0970783,0][-0.0103179,-0.377936,4.43012][-0.00570033,0.0487583,0.998794][0.098162,0.0970783,0][-0.0074778,-1.21638,4.39214][-0.00806922,-0.138033,0.990395][0.123791,0.096572,0][0.853635,-1.22293,4.48635][0.0978432,-0.137997,0.985588][0.124601,0.122887,0][-4.25166,0.520448,-0.55186][-0.962345,0.237321,-0.132552][0.128604,0.278379,0][-3.97606,1.32336,-0.484964][-0.903586,0.410033,-0.12412][0.103939,0.286248,0][-3.94709,1.38762,-1.27713][-0.890741,0.412086,-0.191746][0.0963252,0.263156,0][-3.94709,1.38762,-1.27713][-0.890741,0.412086,-0.191746][0.0963252,0.263156,0][-4.21978,0.557605,-1.3975][-0.944858,0.239131,-0.223742][0.121313,0.253533,0][-4.25166,0.520448,-0.55186][-0.962345,0.237321,-0.132552][0.128604,0.278379,0][-1.1612,3.59775,1.22317][0.0596052,0.965994,0.251601][0.646152,0.257952,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.675251,0.21594,0][-1.37128,3.60184,0.981437][-0.241285,0.96696,-0.0822829][0.654686,0.261989,0][-1.69993,3.31497,1.79036][-0.193078,0.862307,0.468132][0.631834,0.272879,0][-1.1612,3.59775,1.22317][0.0596052,0.965994,0.251601][0.646152,0.257952,0][-1.37128,3.60184,0.981437][-0.241285,0.96696,-0.0822829][0.654686,0.261989,0][-3.24255,2.15078,-1.80579][-0.656161,0.562445,-0.503098][0.0631896,0.254306,0][-3.61609,1.39392,-2.00057][-0.729422,0.40159,-0.553777][0.0869539,0.242633,0][-3.94709,1.38762,-1.27713][-0.890741,0.412086,-0.191746][0.0963252,0.263156,0][-3.61609,1.39392,-2.00057][-0.729422,0.40159,-0.553777][0.0869539,0.242633,0][-3.24255,2.15078,-1.80579][-0.656161,0.562445,-0.503098][0.0631896,0.254306,0][-2.72286,2.05735,-2.31365][-0.624672,0.551455,-0.552885][0.0556362,0.240127,0][-0.579934,-3.54194,-3.21556][0.21759,1.13756,0.0340557][0.765742,0.413187,0][-0.576029,-3.57898,-2.0033][0.0846325,2.65283,0.900071][0.770817,0.449906,0][-0.321241,-3.51615,-3.40748][-0.00733347,-0.754838,-0.741609][0.758092,0.408431,0][-0.579934,-3.54194,-3.21556][0.21759,1.13756,0.0340557][0.433133,0.110852,0][-0.321241,-3.51615,-3.40748][-0.00733347,-0.754838,-0.741609][0.43974,0.116975,0][-0.252153,-4.13,-2.7726][-0.213146,-0.823856,-0.525195][0.421574,0.128964,0][-1.64943,2.64254,2.56163][-0.34478,0.72148,0.600495][0.0533926,0.990551,0][-1.9708,2.00423,3.03846][-0.403115,0.589599,0.699909][0.0272674,0.993188,0][-1.42305,2.08173,3.4712][-0.396547,0.590482,0.702909][0.0259732,0.977111,0][-1.9708,2.00423,3.03846][-0.403115,0.589599,0.699909][0.0239633,0.0388407,0][-1.64943,2.64254,2.56163][-0.34478,0.72148,0.600495][0.00468063,0.0491151,0][-2.18002,2.78339,2.29606][-0.333576,0.731702,0.594424][0,0.0329972,0][4.09096,-2.14023,-1.46844][0.917923,-0.333481,-0.214962][0.0918809,0.44776,0][4.28902,-1.28347,-1.56639][0.962406,-0.145375,-0.229437][0.11805,0.443785,0][4.32293,-1.29723,-0.703447][0.978944,-0.146001,-0.142658][0.119092,0.470147,0][4.32293,-1.29723,-0.703447][0.978944,-0.146001,-0.142658][0.119092,0.470147,0][4.1237,-2.11343,-0.6465][0.933301,-0.331651,-0.137686][0.0939845,0.472828,0][4.09096,-2.14023,-1.46844][0.917923,-0.333481,-0.214962][0.0918809,0.44776,0][0.736628,-2.85933,3.93874][0.0716128,-0.500669,0.862671][0.174535,0.118153,0][0.809825,-2.06847,4.29044][0.0901461,-0.321888,0.942477][0.150414,0.12095,0][-0.0115876,-2.03007,4.1978][-0.0101687,-0.319014,0.947695][0.148659,0.0958706,0][-0.0115876,-2.03007,4.1978][-0.0101687,-0.319014,0.947695][0.148659,0.0958706,0][-0.0156618,-2.78941,3.85554][-0.00571556,-0.490364,0.871499][0.171866,0.0952089,0][0.736628,-2.85933,3.93874][0.0716128,-0.500669,0.862671][0.174535,0.118153,0][-0.310956,3.58994,1.65539][0.167998,0.967631,0.188329][0.907772,0.16141,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.858195,0.177774,0][-0.621421,3.59087,1.5652][-0.258329,0.964002,0.0629826][0.904053,0.153165,0][-0.46064,3.2905,2.41873][0.0642918,0.855873,0.513175][0.930927,0.15848,0][-0.310956,3.58994,1.65539][0.167998,0.967631,0.188329][0.907772,0.16141,0][-0.621421,3.59087,1.5652][-0.258329,0.964002,0.0629826][0.904053,0.153165,0][2.4967,3.28169,0.181334][0.526575,0.837599,-0.145417][0.0652308,0.877376,0][3.17864,2.69581,0.210515][0.71105,0.6942,-0.111778][0.0752597,0.852867,0][3.02674,2.57672,-0.382934][0.714051,0.689825,-0.119468][0.090717,0.862736,0][3.17864,2.69581,0.210515][0.71105,0.6942,-0.111778][0.0752597,0.852867,0][2.4967,3.28169,0.181334][0.526575,0.837599,-0.145417][0.0652308,0.877376,0][2.43051,3.2953,0.645805][0.455285,0.84833,0.270279][0.0514533,0.873392,0][2.35034,3.2792,-0.752786][0.546801,0.837262,0.00057527][0.0896351,0.892746,0][2.9925,2.69555,-0.979218][0.710092,0.698554,-0.0882762][0.10633,0.872471,0][2.73356,2.71946,-1.53172][0.55372,0.711165,-0.433172][0.118673,0.886219,0][2.9925,2.69555,-0.979218][0.710092,0.698554,-0.0882762][0.10633,0.872471,0][2.35034,3.2792,-0.752786][0.546801,0.837262,0.00057527][0.0896351,0.892746,0][2.37759,3.14457,-0.283775][0.542365,0.83402,-0.101245][0.0775764,0.884596,0][-4.33452,-2.02306,0.238724][-0.943711,-0.327543,-0.0461022][0.203777,0.285622,0][-4.53814,-1.18606,0.239489][-0.988647,-0.142991,-0.0461541][0.183761,0.290327,0][-4.33388,-1.15277,-0.592732][-0.980255,-0.138737,-0.140901][0.174499,0.266363,0][-4.33388,-1.15277,-0.592732][-0.980255,-0.138737,-0.140901][0.174499,0.266363,0][-4.14111,-1.96188,-0.558309][-0.93674,-0.322544,-0.135954][0.194144,0.262849,0][-4.33452,-2.02306,0.238724][-0.943711,-0.327543,-0.0461022][0.203777,0.285622,0][2.28776,0.546745,3.62415][0.542576,0.232493,0.807192][0.0715247,0.167974,0][2.13309,1.32809,3.39704][0.501267,0.40918,0.762432][0.0475333,0.163799,0][1.50741,1.37974,3.89534][0.415912,0.419118,0.807067][0.0455116,0.144712,0][1.50741,1.37974,3.89534][0.415912,0.419118,0.807067][0.0455116,0.144712,0][1.62853,0.56024,4.16427][0.447484,0.242156,0.860883][0.0706457,0.147834,0][2.28776,0.546745,3.62415][0.542576,0.232493,0.807192][0.0715247,0.167974,0][-4.37172,-0.315332,-0.593215][-0.988995,0.0506223,-0.139017][0.152377,0.271521,0][-4.25166,0.520448,-0.55186][-0.962345,0.237321,-0.132552][0.128604,0.278379,0][-4.21978,0.557605,-1.3975][-0.944858,0.239131,-0.223742][0.121313,0.253533,0][-4.21978,0.557605,-1.3975][-0.944858,0.239131,-0.223742][0.121313,0.253533,0][-4.33614,-0.308531,-1.46323][-0.969037,0.0489352,-0.242018][0.145688,0.245769,0][-4.37172,-0.315332,-0.593215][-0.988995,0.0506223,-0.139017][0.152377,0.271521,0][-1.49406,-2.87395,3.7086][-0.42738,-0.48721,0.761559][0.173404,0.0499612,0][-1.62514,-2.077,4.03955][-0.440067,-0.322189,0.838174][0.148952,0.0465186,0][-2.27378,-2.00353,3.54321][-0.510652,-0.324031,0.796391][0.146247,0.0267447,0][-2.27378,-2.00353,3.54321][-0.510652,-0.324031,0.796391][0.7768,0.811324,0][-2.08657,-2.76753,3.24904][-0.481679,-0.489164,0.72712][0.751411,0.815151,0][-1.49406,-2.87395,3.7086][-0.42738,-0.48721,0.761559][0.745994,0.793298,0][-1.69854,-1.22609,4.23484][-0.445865,-0.144927,0.88329][0.122892,0.0448772,0][-1.71785,-0.35397,4.27775][-0.444701,0.0420573,0.894691][0.0962214,0.0449041,0][-2.4085,-0.349162,3.75264][-0.52166,0.038094,0.852303][0.0955858,0.0237974,0][-2.4085,-0.349162,3.75264][-0.52166,0.038094,0.852303][0.0955858,0.0237974,0][-2.38122,-1.18789,3.71463][-0.525174,-0.147466,0.83812][0.121241,0.0240378,0][-1.69854,-1.22609,4.23484][-0.445865,-0.144927,0.88329][0.122892,0.0448772,0][1.74968,0.00648673,-3.34627][-1.05221,-0.0361627,1.4795][0.46196,0.480397,0][1.30819,-0.118826,-3.54541][1.16828,1.07221,-0.0592882][0.475543,0.483915,0][1.11057,-0.991188,-3.61641][-0.280574,0.132973,0.950577][0.4822,0.510439,0][1.3151,-0.161256,-4.17654][0.489126,0.443002,-0.0169175][0.366238,0.791045,0][1.30819,-0.118826,-3.54541][1.16828,1.07221,-0.0592882][0.372078,0.772639,0][1.74968,0.00648673,-3.34627][-1.05221,-0.0361627,1.4795][0.384127,0.770505,0][-3.91024,0.591408,1.85184][-0.892227,0.226861,0.390467][0.139129,0.351391,0][-3.6562,1.38186,1.75591][-0.83031,0.418236,0.368327][0.113938,0.35427,0][-4.05226,1.41964,1.07143][-0.860404,0.412102,0.299796][0.113136,0.332966,0][-4.05226,1.41964,1.07143][-0.860404,0.412102,0.299796][0.113136,0.332966,0][-4.33328,0.58586,1.10833][-0.924245,0.224724,0.308659][0.139425,0.327976,0][-3.91024,0.591408,1.85184][-0.892227,0.226861,0.390467][0.139129,0.351391,0][3.65478,1.25645,1.65949][0.840937,0.392694,0.372313][0.0478724,0.805717,0][3.28084,1.98719,1.51267][0.765817,0.552743,0.328633][0.0438539,0.825621,0][3.04475,2.09603,2.19057][0.73828,0.557441,0.37974][0.0216911,0.824381,0][3.04475,2.09603,2.19057][0.73828,0.557441,0.37974][0.0216911,0.824381,0][3.3854,1.35019,2.41434][0.804973,0.396627,0.441254][0.0232653,0.804176,0][3.65478,1.25645,1.65949][0.840937,0.392694,0.372313][0.0478724,0.805717,0][-0.872957,3.45246,1.36615][-0.487627,5.81739,0.999538][0.930022,0.379682,0][-0.432264,3.42284,0.685575][-0.121962,0.357619,-0.0945385][0.90522,0.380066,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.879738,0.377897,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.564368,0.662295,0][-0.432264,3.42284,0.685575][-0.121962,0.357619,-0.0945385][0.580737,0.647362,0][-0.621421,3.59087,1.5652][-0.258329,0.964002,0.0629826][0.60222,0.642139,0][1.12443,1.76503,2.84442][-0.256656,-0.585099,-0.769277][0.580961,0.0199837,0][1.65468,1.77109,2.57901][-0.451886,-0.581471,-0.676528][0.597153,0.0208089,0][1.83701,1.15386,2.88375][-0.491657,-0.412814,-0.766719][0.60154,0.0399905,0][1.65468,1.77109,2.57901][-0.451886,-0.581471,-0.676528][0.573646,0.340878,0][1.12443,1.76503,2.84442][-0.256656,-0.585099,-0.769277][0.567528,0.356434,0][0.969839,2.30545,2.40397][-0.229695,-0.719264,-0.655667][0.55027,0.353206,0][0.809825,-2.06847,4.29044][0.0901461,-0.321888,0.942477][0.150414,0.12095,0][0.853635,-1.22293,4.48635][0.0978432,-0.137997,0.985588][0.124601,0.122887,0][-0.0074778,-1.21638,4.39214][-0.00806922,-0.138033,0.990395][0.123791,0.096572,0][-0.0074778,-1.21638,4.39214][-0.00806922,-0.138033,0.990395][0.123791,0.096572,0][-0.0115876,-2.03007,4.1978][-0.0101687,-0.319014,0.947695][0.148659,0.0958706,0][0.809825,-2.06847,4.29044][0.0901461,-0.321888,0.942477][0.150414,0.12095,0][2.99224,0.438535,2.08489][-0.79561,-0.234967,-0.558386][0.924542,0.237306,0][2.522,0.46506,2.63186][-0.681763,-0.223482,-0.696603][0.924343,0.259308,0][2.36373,1.14149,2.47029][-0.64835,-0.416328,-0.637427][0.902603,0.259412,0][1.83701,1.15386,2.88375][-0.491657,-0.412814,-0.766719][0.60154,0.0399905,0][2.36373,1.14149,2.47029][-0.64835,-0.416328,-0.637427][0.617589,0.0413716,0][2.522,0.46506,2.63186][-0.681763,-0.223482,-0.696603][0.62113,0.0623137,0][-3.55446,-1.63766,-0.506248][0.937549,0.323129,0.128797][0.0521925,0.623969,0][-3.39382,-1.64022,-1.16741][0.888413,0.337191,0.311486][0.0698832,0.613986,0][-3.55238,-0.940827,-1.2202][0.934239,0.138341,0.328723][0.0811691,0.627237,0][-3.24865,-0.939,-1.86777][0.851145,0.138341,0.506373][0.868714,0.519313,0][-3.55238,-0.940827,-1.2202][0.934239,0.138341,0.328723][0.854731,0.5025,0][-3.39382,-1.64022,-1.16741][0.888413,0.337191,0.311486][0.871976,0.488864,0][-4.01955,-0.239687,1.88004][-0.915197,0.0405996,0.400958][0.163124,0.346664,0][-3.91024,0.591408,1.85184][-0.892227,0.226861,0.390467][0.139129,0.351391,0][-4.33328,0.58586,1.10833][-0.924245,0.224724,0.308659][0.139425,0.327976,0][-4.33328,0.58586,1.10833][-0.924245,0.224724,0.308659][0.139425,0.327976,0][-4.45413,-0.283026,1.11188][-0.946835,0.0397166,0.319258][0.164413,0.322244,0][-4.01955,-0.239687,1.88004][-0.915197,0.0405996,0.400958][0.163124,0.346664,0][-1.80953,1.74186,-3.49123][-0.421623,-2.5359,-0.0697338][0.369773,0.354182,0][-1.01524,2.06912,-3.4541][-0.258917,0.550924,-0.793375][0.344913,0.362655,0][-1.07299,1.57861,-3.69263][-0.869273,-3.35365,-0.293602][0.34761,0.347797,0][-0.615564,1.47515,-4.01241][-1.8941,-0.148376,-0.0835103][0.333849,0.343769,0][-1.07299,1.57861,-3.69263][-0.869273,-3.35365,-0.293602][0.34761,0.347797,0][-1.01524,2.06912,-3.4541][-0.258917,0.550924,-0.793375][0.344913,0.362655,0][2.06273,2.74719,0.0962511][-0.585027,-0.810617,-0.0253698][0.524367,0.283127,0][1.94289,2.74599,-0.673691][-0.536046,-0.823454,0.185952][0.506847,0.267063,0][2.47498,2.2657,-0.865875][-0.703195,-0.680491,0.206031][0.519278,0.249206,0][1.94289,2.74599,-0.673691][-0.536046,-0.823454,0.185952][0.506847,0.267063,0][2.06273,2.74719,0.0962511][-0.585027,-0.810617,-0.0253698][0.524367,0.283127,0][1.4091,3.0928,-0.213347][-0.377019,-0.92272,0.0802779][0.500924,0.29018,0][2.97565,-2.00865,3.10196][0.590365,-0.303897,0.747741][0.150118,0.187192,0][3.1158,-1.14718,3.23602][0.629015,-0.132955,0.76594][0.123886,0.192085,0][2.34713,-1.11962,3.66933][0.564685,-0.135171,0.814162][0.1225,0.16861,0][2.34713,-1.11962,3.66933][0.564685,-0.135171,0.814162][0.1225,0.16861,0][2.24047,-1.94533,3.50906][0.538705,-0.307515,0.784367][0.147662,0.164765,0][2.97565,-2.00865,3.10196][0.590365,-0.303897,0.747741][0.150118,0.187192,0][3.90049,0.463864,1.74603][0.889166,0.216173,0.403302][0.647363,0.33769,0][3.65478,1.25645,1.65949][0.840937,0.392694,0.372313][0.656775,0.313983,0][3.3854,1.35019,2.41434][0.804973,0.396627,0.441254][0.680043,0.320257,0][3.3854,1.35019,2.41434][0.804973,0.396627,0.441254][0.680043,0.320257,0][3.61239,0.539171,2.55622][0.848972,0.219859,0.480529][0.672088,0.345127,0][3.90049,0.463864,1.74603][0.889166,0.216173,0.403302][0.647363,0.33769,0][-0.570918,0.669167,-3.59299][-1.21832,1.12158,-0.0361384][0.532421,0.4585,0][-0.296875,0.771221,-3.60508][1.24367,-0.319431,-0.046031][0.523972,0.455575,0][-0.31244,1.18219,-3.46521][0.0783222,-0.414184,0.906817][0.524157,0.443002,0][-0.31244,1.18219,-3.46521][0.0783222,-0.414184,0.906817][0.524157,0.443002,0][-0.296875,0.771221,-3.60508][1.24367,-0.319431,-0.046031][0.523972,0.455575,0][0.219797,0.624287,-3.64653][-0.420602,-1.59046,-0.0709132][0.508284,0.460431,0][-3.75311,-0.220644,-0.524611][0.988932,-0.0506048,0.139474][0.0737536,0.65367,0][-3.78403,-0.210659,0.194125][0.997662,-0.0469705,-0.0496419][0.0557051,0.666205,0][-3.75052,-0.930036,0.183367][0.988424,0.141605,-0.0544633][0.044761,0.650062,0][-3.78403,-0.210659,0.194125][0.997662,-0.0469705,-0.0496419][0.0557051,0.666205,0][-3.75311,-0.220644,-0.524611][0.988932,-0.0506048,0.139474][0.0737536,0.65367,0][-3.65001,0.495103,-0.494072][0.95039,-0.28866,0.115908][0.0851601,0.671523,0][-3.79915,-2.71558,-0.502196][-0.859378,-0.495449,-0.12649][0.339358,0.0210527,0][-3.31464,-3.39263,-0.429034][-0.754633,-0.645243,-0.119124][0.339656,0.0433367,0][-3.47797,-3.50209,0.209824][-0.758234,-0.646823,-0.0818598][0.319897,0.0424663,0][-3.31464,-3.39263,-0.429034][-0.754633,-0.645243,-0.119124][0.339656,0.0433367,0][-3.79915,-2.71558,-0.502196][-0.859378,-0.495449,-0.12649][0.339358,0.0210527,0][-3.76585,-2.80979,-1.25692][-0.845835,-0.502526,-0.178975][0.362526,0.0205554,0][3.71062,-1.09396,-0.648342][-0.978348,0.146178,0.146515][0.309436,0.523271,0][3.74855,-1.08611,0.0635054][-0.988391,0.144977,-0.0454395][0.327648,0.511335,0][3.78357,-0.367308,0.0756393][-0.99818,-0.0432252,-0.0420463][0.339665,0.527787,0][3.68244,-0.33077,0.791794][-0.971923,-0.0410873,-0.231684][0.357409,0.514956,0][3.78357,-0.367308,0.0756393][-0.99818,-0.0432252,-0.0420463][0.339665,0.527787,0][3.74855,-1.08611,0.0635054][-0.988391,0.144977,-0.0454395][0.327648,0.511335,0][-3.55238,-0.940827,-1.2202][0.934239,0.138341,0.328723][0.0811691,0.627237,0][-3.24865,-0.939,-1.86777][0.851145,0.138341,0.506373][0.0996528,0.619104,0][-3.28114,-0.218797,-1.87638][0.858005,-0.0548872,0.510701][0.111102,0.634936,0][-2.84938,-0.217171,-2.46788][0.727519,-0.045467,0.684579][0.129131,0.629139,0][-3.28114,-0.218797,-1.87638][0.858005,-0.0548872,0.510701][0.111102,0.634936,0][-3.24865,-0.939,-1.86777][0.851145,0.138341,0.506373][0.0996528,0.619104,0][-3.06693,-0.907473,2.18593][0.812817,0.146874,-0.563699][0.809185,0.236211,0][-2.60726,-0.953239,2.7189][0.684821,0.149501,-0.713211][0.830462,0.237081,0][-2.48664,-1.65698,2.59043][0.660944,0.330513,-0.673731][0.83103,0.258914,0][-2.60726,-0.953239,2.7189][0.684821,0.149501,-0.713211][0.830462,0.237081,0][-3.06693,-0.907473,2.18593][0.812817,0.146874,-0.563699][0.809185,0.236211,0][-3.09668,-0.186089,2.21352][0.815726,-0.04263,-0.576866][0.807397,0.215579,0][2.00955,-0.952843,3.12603][-0.563902,0.14945,-0.812206][0.602792,0.104603,0][1.37549,-0.96296,3.46794][-0.38121,0.136249,-0.914393][0.583425,0.103704,0][1.38276,-0.242124,3.5004][-0.375406,-0.0504886,-0.925484][0.58502,0.0817223,0][0.69294,-0.271541,3.7024][-0.183765,-0.0513598,-0.981627][0.563915,0.0813057,0][1.38276,-0.242124,3.5004][-0.375406,-0.0504886,-0.925484][0.58502,0.0817223,0][1.37549,-0.96296,3.46794][-0.38121,0.136249,-0.914393][0.583425,0.103704,0][-0.0177157,-4.22677,0.00639689][-0.00691331,0.999975,-0.001344][0.696188,0.0668709,0][1.05001,-4.06483,0.0173279][-0.268365,0.963004,-0.0245837][0.668726,0.0682319,0][0.919172,-4.06286,-0.561953][-0.237453,0.961531,0.138111][0.671713,0.0503972,0][0.919172,-4.06286,-0.561953][-0.237453,0.961531,0.138111][0.243552,0.424939,0][1.05001,-4.06483,0.0173279][-0.268365,0.963004,-0.0245837][0.258983,0.416094,0][1.72049,-3.80379,0.0330609][-0.450609,0.892696,-0.00679869][0.268517,0.428823,0][-3.72053,-0.940058,-0.528902][0.980653,0.139426,0.137405][0.0626405,0.63763,0][-3.75052,-0.930036,0.183367][0.988424,0.141605,-0.0544633][0.044761,0.650062,0][-3.58194,-1.62773,0.174031][0.93901,0.339055,-0.0574658][0.0351305,0.635864,0][-3.75052,-0.930036,0.183367][0.988424,0.141605,-0.0544633][0.044761,0.650062,0][-3.72053,-0.940058,-0.528902][0.980653,0.139426,0.137405][0.0626405,0.63763,0][-3.75311,-0.220644,-0.524611][0.988932,-0.0506048,0.139474][0.0737536,0.65367,0][1.31441,-1.6669,3.31339][-0.367141,0.331537,-0.869074][0.58022,0.125068,0][0.661111,-1.69174,3.50761][-0.186635,0.320062,-0.928832][0.560237,0.124581,0][0.692021,-0.991583,3.67081][-0.189892,0.137164,-0.972176][0.562515,0.103275,0][-0.0177773,-1.01362,3.73275][0.00525051,0.140113,-0.990122][0.540814,0.102595,0][0.692021,-0.991583,3.67081][-0.189892,0.137164,-0.972176][0.562515,0.103275,0][0.661111,-1.69174,3.50761][-0.186635,0.320062,-0.928832][0.560237,0.124581,0][1.54374,2.76394,-1.35302][-0.446736,-0.835755,0.319282][0.484924,0.258215,0][1.25776,2.77419,-1.62922][-0.317606,-0.830702,0.457231][0.473337,0.256821,0][1.60994,2.32399,-2.0715][-0.408672,-0.716942,0.564784][0.476758,0.236481,0][1.25776,2.77419,-1.62922][-0.317606,-0.830702,0.457231][0.473337,0.256821,0][1.54374,2.76394,-1.35302][-0.446736,-0.835755,0.319282][0.484924,0.258215,0][0.869455,3.10096,-1.13813][-0.250275,-0.928686,0.273688][0.471323,0.277936,0][-0.537014,0.681982,-4.33827][-1.01668,0.92527,-0.0400112][0.332963,0.319416,0][-0.615564,1.47515,-4.01241][-1.8941,-0.148376,-0.0835103][0.333849,0.343769,0][-0.382212,1.42227,-4.14936][-0.186343,0.391843,-0.900963][0.326829,0.341711,0][-0.615564,1.47515,-4.01241][-1.8941,-0.148376,-0.0835103][0.333849,0.343769,0][-0.361533,2.16474,-3.72466][-0.180753,0.573948,-0.798694][0.324783,0.364327,0][-0.382212,1.42227,-4.14936][-0.186343,0.391843,-0.900963][0.326829,0.341711,0][-1.62514,-2.077,4.03955][-0.440067,-0.322189,0.838174][0.148952,0.0465186,0][-1.69854,-1.22609,4.23484][-0.445865,-0.144927,0.88329][0.122892,0.0448772,0][-2.38122,-1.18789,3.71463][-0.525174,-0.147466,0.83812][0.121241,0.0240378,0][-2.38122,-1.18789,3.71463][-0.525174,-0.147466,0.83812][0.121241,0.0240378,0][-2.27378,-2.00353,3.54321][-0.510652,-0.324031,0.796391][0.146247,0.0267447,0][-1.62514,-2.077,4.03955][-0.440067,-0.322189,0.838174][0.148952,0.0465186,0][-3.68017,-0.190269,0.908628][0.971644,-0.0431785,-0.232474][0.0389295,0.680327,0][-3.448,-0.174091,1.59127][0.912018,-0.0417297,-0.408023][0.023837,0.695149,0][-3.4147,-0.895224,1.56801][0.900485,0.163009,-0.40318][0.0131763,0.678744,0][-3.448,-0.174091,1.59127][0.912018,-0.0417297,-0.408023][0.023837,0.695149,0][-3.68017,-0.190269,0.908628][0.971644,-0.0431785,-0.232474][0.0389295,0.680327,0][-3.58007,0.523494,0.899491][0.946579,-0.23346,-0.22245][0.0512743,0.697405,0][2.13309,1.32809,3.39704][0.501267,0.40918,0.762432][0.61926,0.936234,0][1.92041,2.04088,3.05021][0.448108,0.565614,0.692301][0.643988,0.938226,0][1.35558,2.1269,3.49075][0.383563,0.576161,0.721746][0.642345,0.959132,0][1.35558,2.1269,3.49075][0.383563,0.576161,0.721746][0.642345,0.959132,0][1.50741,1.37974,3.89534][0.415912,0.419118,0.807067][0.616103,0.959238,0][2.13309,1.32809,3.39704][0.501267,0.40918,0.762432][0.61926,0.936234,0][-3.24865,-0.939,-1.86777][0.851145,0.138341,0.506373][0.0996528,0.619104,0][-2.81824,-0.937658,-2.45189][0.736011,0.126337,0.665076][0.117483,0.613416,0][-2.84938,-0.217171,-2.46788][0.727519,-0.045467,0.684579][0.129131,0.629139,0][-2.27894,0.259927,-2.92426][0.55078,0.627368,-0.005582][0.584917,0.4698,0][-2.84938,-0.217171,-2.46788][0.727519,-0.045467,0.684579][0.60269,0.483979,0][-2.81824,-0.937658,-2.45189][0.736011,0.126337,0.665076][0.602248,0.506023,0][4.21803,-2.12499,0.974498][0.887388,-0.314394,0.337194][0.0967336,0.52232,0][4.41717,-1.27437,0.990746][0.93369,-0.133801,0.332144][0.122877,0.521839,0][3.97464,-1.20566,1.73754][0.894356,-0.131955,0.427452][0.119919,0.544798,0][3.97464,-1.20566,1.73754][0.894356,-0.131955,0.427452][0.119919,0.544798,0][3.79747,-2.02343,1.67964][0.853779,-0.307567,0.420075][0.0949211,0.543961,0][4.21803,-2.12499,0.974498][0.887388,-0.314394,0.337194][0.0967336,0.52232,0][-0.643527,1.42924,-3.25798][-0.17271,-0.631497,0.016986][0.534102,0.435217,0][-0.288091,1.79603,-3.11328][0.0379791,-0.577907,0.815219][0.522979,0.424257,0][-0.865382,1.79356,-3.00181][0.273162,-0.559145,0.782776][0.540626,0.423925,0][-0.643527,1.42924,-3.25798][-0.17271,-0.631497,0.016986][0.534102,0.435217,0][-0.31244,1.18219,-3.46521][0.0783222,-0.414184,0.906817][0.524157,0.443002,0][-0.288091,1.79603,-3.11328][0.0379791,-0.577907,0.815219][0.522979,0.424257,0][-3.35457,0.536511,1.56046][0.885874,-0.235157,-0.399911][0.0366242,0.711704,0][-3.01197,0.523759,2.16069][0.785621,-0.239275,-0.570567][0.0239527,0.725589,0][-3.09668,-0.186089,2.21352][0.815726,-0.04263,-0.576866][0.0106917,0.70953,0][-3.01197,0.523759,2.16069][0.785621,-0.239275,-0.570567][0.0239527,0.725589,0][-3.35457,0.536511,1.56046][0.885874,-0.235157,-0.399911][0.0366242,0.711704,0][-3.13716,1.20947,1.46609][0.814075,-0.442387,-0.376266][0.0513225,0.727599,0][2.29218,2.63656,-1.9566][0.544221,0.698038,-0.465367][0.125951,0.90172,0][2.71657,1.98258,-2.3376][2.08727,1.90135,-2.04943][0.144857,0.888057,0][2.47061,1.64192,-3.11986][0.303706,0.236699,-0.155802][0.165685,0.900057,0][2.71657,1.98258,-2.3376][2.08727,1.90135,-2.04943][0.144857,0.888057,0][2.29218,2.63656,-1.9566][0.544221,0.698038,-0.465367][0.125951,0.90172,0][2.73356,2.71946,-1.53172][0.55372,0.711165,-0.433172][0.118673,0.886219,0][2.36307,-0.27867,3.71109][0.566532,0.0444978,0.822837][0.096807,0.169692,0][2.28776,0.546745,3.62415][0.542576,0.232493,0.807192][0.0715247,0.167974,0][1.62853,0.56024,4.16427][0.447484,0.242156,0.860883][0.0706457,0.147834,0][1.62853,0.56024,4.16427][0.447484,0.242156,0.860883][0.0706457,0.147834,0][1.68954,-0.301399,4.27593][0.471453,0.0499333,0.880476][0.0970252,0.149089,0][2.36307,-0.27867,3.71109][0.566532,0.0444978,0.822837][0.096807,0.169692,0][3.71062,-1.09396,-0.648342][-0.978348,0.146178,0.146515][0.309436,0.523271,0][3.54228,-1.07285,-1.33626][-0.933124,0.143902,0.329501][0.291314,0.534064,0][3.37958,-1.77043,-1.2691][-0.863719,0.38356,0.326911][0.280671,0.515349,0][3.54228,-1.07285,-1.33626][-0.933124,0.143902,0.329501][0.291314,0.534064,0][3.71062,-1.09396,-0.648342][-0.978348,0.146178,0.146515][0.309436,0.523271,0][3.74595,-0.374934,-0.642639][-0.988074,-0.0479522,0.146326][0.321298,0.539844,0][3.74855,-1.08611,0.0635054][-0.988391,0.144977,-0.0454395][0.327648,0.511335,0][3.65006,-1.05016,0.772974][-0.961376,0.141128,-0.236305][0.345236,0.498636,0][3.68244,-0.33077,0.791794][-0.971923,-0.0410873,-0.231684][0.357409,0.514956,0][3.44353,-0.293369,1.48137][-0.909944,-0.0385811,-0.412932][0.373479,0.501155,0][3.68244,-0.33077,0.791794][-0.971923,-0.0410873,-0.231684][0.357409,0.514956,0][3.65006,-1.05016,0.772974][-0.961376,0.141128,-0.236305][0.345236,0.498636,0][3.57478,-0.353025,-1.33658][-0.94319,-0.0555365,0.327578][0.303017,0.550731,0][3.28003,-0.319935,-1.97898][-0.859492,-0.0915513,0.502883][0.285286,0.559659,0][3.25309,-1.04015,-1.97284][-0.854928,0.140059,0.49948][0.273764,0.54294,0][3.28003,-0.319935,-1.97898][-0.859492,-0.0915513,0.502883][0.285286,0.559659,0][3.57478,-0.353025,-1.33658][-0.94319,-0.0555365,0.327578][0.303017,0.550731,0][3.47784,0.361904,-1.27472][-0.90707,-0.249739,0.338901][0.315235,0.564826,0][-1.09689,2.74736,1.675][0.256284,-0.858496,-0.444188][0.776202,0.511485,0][-0.378711,2.74002,1.96182][0.113463,-0.842432,-0.526721][0.785893,0.490497,0][-0.975476,2.28882,2.38408][0.238729,-0.724246,-0.646897][0.802052,0.511148,0][-0.378711,2.74002,1.96182][0.113463,-0.842432,-0.526721][0.806365,0.805304,0][-1.09689,2.74736,1.675][0.256284,-0.858496,-0.444188][0.824601,0.793298,0][-1.1297,3.08333,0.766064][0.304411,-0.928782,-0.211418][0.850774,0.804012,0][2.57355,-0.96671,2.65655][-0.674779,0.194314,-0.71198][0.619976,0.106101,0][2.00955,-0.952843,3.12603][-0.563902,0.14945,-0.812206][0.602792,0.104603,0][2.02327,-0.231555,3.16034][-0.554138,-0.0455337,-0.831179][0.604585,0.0826201,0][1.38276,-0.242124,3.5004][-0.375406,-0.0504886,-0.925484][0.58502,0.0817223,0][2.02327,-0.231555,3.16034][-0.554138,-0.0455337,-0.831179][0.604585,0.0826201,0][2.00955,-0.952843,3.12603][-0.563902,0.14945,-0.812206][0.602792,0.104603,0][-0.590996,2.75599,-2.01931][0.162007,-0.841176,0.515923][0.673407,0.4318,0][-1.27709,2.74582,-1.65994][0.341996,-0.828226,0.443938][0.683212,0.452642,0][-0.746019,2.32188,-2.55743][0.226091,-0.725995,0.649473][0.652613,0.437877,0][-1.27709,2.74582,-1.65994][0.341996,-0.828226,0.443938][0.683212,0.452642,0][-0.590996,2.75599,-2.01931][0.162007,-0.841176,0.515923][0.673407,0.4318,0][-0.403879,3.08452,-1.40727][0.104555,-0.926756,0.36082][0.693951,0.425037,0][4.41717,-1.27437,0.990746][0.93369,-0.133801,0.332144][0.122877,0.521839,0][4.45561,-0.402134,1.00219][0.944528,0.0417294,0.32577][0.147538,0.521268,0][4.00864,-0.366262,1.76008][0.906042,0.0384041,0.421441][0.143626,0.544601,0][4.00864,-0.366262,1.76008][0.906042,0.0384041,0.421441][0.143626,0.544601,0][3.97464,-1.20566,1.73754][0.894356,-0.131955,0.427452][0.119919,0.544798,0][4.41717,-1.27437,0.990746][0.93369,-0.133801,0.332144][0.122877,0.521839,0][3.02674,2.57672,-0.382934][0.714051,0.689825,-0.119468][0.090717,0.862736,0][3.56756,1.90936,-0.493409][0.819003,0.560148,-0.124371][0.10347,0.842584,0][3.53108,2.01591,-1.19852][0.807857,0.572577,-0.139723][0.122158,0.853594,0][3.56756,1.90936,-0.493409][0.819003,0.560148,-0.124371][0.10347,0.842584,0][3.02674,2.57672,-0.382934][0.714051,0.689825,-0.119468][0.090717,0.862736,0][3.17864,2.69581,0.210515][0.71105,0.6942,-0.111778][0.0752597,0.852867,0][-3.48773,0.493572,-1.17496][0.915149,-0.24502,0.320105][0.103373,0.661233,0][-3.65001,0.495103,-0.494072][0.95039,-0.28866,0.115908][0.0851601,0.671523,0][-3.75311,-0.220644,-0.524611][0.988932,-0.0506048,0.139474][0.0737536,0.65367,0][-3.65001,0.495103,-0.494072][0.95039,-0.28866,0.115908][0.0851601,0.671523,0][-3.48773,0.493572,-1.17496][0.915149,-0.24502,0.320105][0.103373,0.661233,0][-3.26268,1.17601,-1.09138][0.860825,-0.433468,0.266619][0.113828,0.680552,0][3.65006,-1.05016,0.772974][-0.961376,0.141128,-0.236305][0.345236,0.498636,0][3.41442,-1.0132,1.4561][-0.899516,0.138752,-0.41427][0.361161,0.484973,0][3.44353,-0.293369,1.48137][-0.909944,-0.0385811,-0.412932][0.373479,0.501155,0][3.07469,-0.274797,2.12182][-0.818074,-0.0352837,-0.574029][0.387054,0.486418,0][3.44353,-0.293369,1.48137][-0.909944,-0.0385811,-0.412932][0.373479,0.501155,0][3.41442,-1.0132,1.4561][-0.899516,0.138752,-0.41427][0.361161,0.484973,0][1.22236,-1.7471,-4.04924][0.0594715,-2.74806,0.0522794][0.283905,0.241943,0][1.29056,-1.20093,-4.17104][0.25541,-0.128559,-0.958247][0.280784,0.258479,0][2.13896,-1.26169,-4.0332][0.333904,-0.154059,-0.929932][0.255011,0.255009,0][0.489037,-1.16851,-4.49835][0.184041,-0.125211,-0.974911][0.30518,0.260996,0][1.29056,-1.20093,-4.17104][0.25541,-0.128559,-0.958247][0.280784,0.258479,0][1.22236,-1.7471,-4.04924][0.0594715,-2.74806,0.0522794][0.283905,0.241943,0][3.25309,-1.04015,-1.97284][-0.854928,0.140059,0.49948][0.273764,0.54294,0][2.8556,-1.01707,-2.53239][-0.733794,0.169402,0.657913][0.257182,0.549098,0][3.10457,-1.73986,-1.87875][-0.784718,0.379729,0.489922][0.263865,0.523853,0][2.8556,-1.01707,-2.53239][-0.733794,0.169402,0.657913][0.257182,0.549098,0][3.25309,-1.04015,-1.97284][-0.854928,0.140059,0.49948][0.273764,0.54294,0][3.28003,-0.319935,-1.97898][-0.859492,-0.0915513,0.502883][0.285286,0.559659,0][-0.74086,-0.297306,3.6936][0.188599,-0.045137,-0.981016][0.520114,0.0793601,0][-0.0233181,-0.293931,3.7654][0.00654393,-0.0489855,-0.998778][0.542016,0.0806242,0][-0.0177773,-1.01362,3.73275][0.00525051,0.140113,-0.990122][0.540814,0.102595,0][-0.0233181,-0.293931,3.7654][0.00654393,-0.0489855,-0.998778][0.542016,0.0806242,0][-0.74086,-0.297306,3.6936][0.188599,-0.045137,-0.981016][0.520114,0.0793601,0][-0.73053,0.417141,3.59191][0.162696,-0.283294,-0.945132][0.521791,0.0575791,0][-0.728795,-1.01722,3.6589][0.190536,0.144066,-0.971051][0.519111,0.101351,0][-0.0177773,-1.01362,3.73275][0.00525051,0.140113,-0.990122][0.540814,0.102595,0][-0.01685,-1.71188,3.5652][0.00511024,0.323238,-0.946304][0.539512,0.123904,0][-0.0177773,-1.01362,3.73275][0.00525051,0.140113,-0.990122][0.540814,0.102595,0][-0.728795,-1.01722,3.6589][0.190536,0.144066,-0.971051][0.519111,0.101351,0][-0.74086,-0.297306,3.6936][0.188599,-0.045137,-0.981016][0.520114,0.0793601,0][3.58312,0.385343,0.796803][-0.949763,-0.222856,-0.21974][0.368207,0.530052,0][3.68244,0.350581,0.100765][-0.96081,-0.276557,-0.01901][0.350981,0.542551,0][3.78357,-0.367308,0.0756393][-0.99818,-0.0432252,-0.0420463][0.339665,0.527787,0][3.68244,0.350581,0.100765][-0.96081,-0.276557,-0.01901][0.350981,0.542551,0][3.58312,0.385343,0.796803][-0.949763,-0.222856,-0.21974][0.368207,0.530052,0][3.35646,1.0742,0.765443][-0.897961,-0.411747,-0.155337][0.376714,0.543824,0][3.44353,-0.293369,1.48137][-0.909944,-0.0385811,-0.412932][0.373479,0.501155,0][3.07469,-0.274797,2.12182][-0.818074,-0.0352837,-0.574029][0.387054,0.486418,0][2.99224,0.438535,2.08489][-0.79561,-0.234967,-0.558386][0.396883,0.502367,0][2.522,0.46506,2.63186][-0.681763,-0.223482,-0.696603][0.924343,0.259308,0][2.99224,0.438535,2.08489][-0.79561,-0.234967,-0.558386][0.924542,0.237306,0][3.07469,-0.274797,2.12182][-0.818074,-0.0352837,-0.574029][0.945636,0.235448,0][0.664434,0.442435,3.59933][-0.169624,-0.23952,-0.955959][0.564405,0.059465,0][1.33722,0.469508,3.40594][-0.354456,-0.239155,-0.903972][0.584986,0.0599207,0][1.38276,-0.242124,3.5004][-0.375406,-0.0504886,-0.925484][0.58502,0.0817223,0][1.33722,0.469508,3.40594][-0.354456,-0.239155,-0.903972][0.584986,0.0599207,0][0.664434,0.442435,3.59933][-0.169624,-0.23952,-0.955959][0.564405,0.059465,0][0.614586,1.12435,3.36305][-0.107939,-0.431471,-0.895646][0.564183,0.0385621,0][-1.67321,-0.935011,-3.3566][0.468451,0.142575,0.871909][0.567248,0.506753,0][-2.28504,-0.939491,-2.95471][0.607961,0.134504,0.782491][0.585952,0.506457,0][-2.12647,-2.06619,-2.62858][1.32067,-1.21719,0.121371][0.581902,0.541007,0][-2.28504,-0.939491,-2.95471][0.607961,0.134504,0.782491][0.585952,0.506457,0][-1.67321,-0.935011,-3.3566][0.468451,0.142575,0.871909][0.567248,0.506753,0][-1.68237,0.0847727,-3.34527][0.683375,-0.0283525,0.980157][0.566806,0.475576,0][1.82627,1.65282,-3.48731][0.282275,-2.59671,0.106814][0.259,0.344538,0][1.09837,1.50568,-3.68319][0.751315,-3.40226,0.0410112][0.281491,0.341435,0][1.0125,2.01266,-3.43828][0.270064,0.550162,-0.790182][0.283146,0.357069,0][1.0125,2.01266,-3.43828][0.270064,0.550162,-0.790182][0.283146,0.357069,0][1.09837,1.50568,-3.68319][0.751315,-3.40226,0.0410112][0.281491,0.341435,0][0.653474,1.43195,-3.99324][1.92671,-0.102693,-0.0446862][0.295208,0.340033,0][-2.07272,-0.272369,3.1777][0.525948,-0.0420563,-0.849477][0.479521,0.0760617,0][-1.43302,-0.287798,3.49459][0.361269,-0.0425499,-0.93149][0.499012,0.0777513,0][-1.41479,-1.00794,3.45941][0.360541,0.166225,-0.917812][0.498196,0.0997604,0][-1.43302,-0.287798,3.49459][0.361269,-0.0425499,-0.93149][0.499012,0.0777513,0][-2.07272,-0.272369,3.1777][0.525948,-0.0420563,-0.849477][0.479521,0.0760617,0][-2.02179,0.441334,3.08953][0.484394,-0.283911,-0.8275][0.482435,0.0543808,0][-2.69207,-1.64051,-2.34598][0.695942,0.328204,0.638708][0.899479,0.52027,0][-3.10276,-1.64028,-1.7872][0.814745,0.318079,0.484785][0.885405,0.504924,0][-2.84984,-2.299,-1.63965][0.751173,0.51215,0.416463][0.901506,0.490424,0][-3.10276,-1.64028,-1.7872][0.814745,0.318079,0.484785][0.885405,0.504924,0][-2.69207,-1.64051,-2.34598][0.695942,0.328204,0.638708][0.899479,0.52027,0][-2.81824,-0.937658,-2.45189][0.736011,0.126337,0.665076][0.883404,0.535392,0][3.04856,-0.995147,2.09116][-0.808655,0.140107,-0.571355][0.374615,0.470351,0][2.57355,-0.96671,2.65655][-0.674779,0.194314,-0.71198][0.385682,0.456034,0][2.59389,-0.245424,2.69048][-0.702065,-0.0393292,-0.711026][0.398174,0.472004,0][2.02327,-0.231555,3.16034][-0.554138,-0.0455337,-0.831179][0.604585,0.0826201,0][2.59389,-0.245424,2.69048][-0.702065,-0.0393292,-0.711026][0.62197,0.0841304,0][2.57355,-0.96671,2.65655][-0.674779,0.194314,-0.71198][0.619976,0.106101,0][0.41228,-0.951961,-3.75434][-0.0510904,0.0923705,0.994413][0.503516,0.508746,0][1.11057,-0.991188,-3.61641][-0.280574,0.132973,0.950577][0.4822,0.510439,0][0.74401,-0.627141,-3.70534][-0.182819,1.5385,0.0123073][0.493147,0.499053,0][1.11057,-0.991188,-3.61641][-0.280574,0.132973,0.950577][0.4822,0.510439,0][0.41228,-0.951961,-3.75434][-0.0510904,0.0923705,0.994413][0.503516,0.508746,0][0.387983,-1.65318,-3.58184][-0.0581412,0.319484,0.945806][0.504755,0.530162,0][1.0125,2.01266,-3.43828][0.270064,0.550162,-0.790182][0.283146,0.357069,0][1.7085,2.07783,-3.29903][0.299795,0.556717,-0.774719][0.261784,0.357731,0][1.82627,1.65282,-3.48731][0.282275,-2.59671,0.106814][0.259,0.344538,0][1.82627,1.65282,-3.48731][0.282275,-2.59671,0.106814][0.259,0.344538,0][1.7085,2.07783,-3.29903][0.299795,0.556717,-0.774719][0.261784,0.357731,0][2.47061,1.64192,-3.11986][0.303706,0.236699,-0.155802][0.239359,0.342978,0][2.35583,-1.01572,-2.99607][-0.593187,0.130486,0.79442][0.444156,0.51207,0][1.76695,-1.0146,-3.35894][-0.44962,0.121652,0.884897][0.462154,0.511619,0][1.654,-1.82926,-3.15227][-0.574905,-2.5798,0.0615732][0.466183,0.53644,0][1.76695,-1.0146,-3.35894][-0.44962,0.121652,0.884897][0.462154,0.511619,0][2.35583,-1.01572,-2.99607][-0.593187,0.130486,0.79442][0.444156,0.51207,0][2.37347,0.203974,-2.89781][-0.440779,-0.0151489,0.619773][0.442754,0.474802,0][1.93694,1.68422,-2.48118][-0.585438,-1.84457,1.07627][0.482165,0.215795,0][2.37571,1.64383,-2.0855][-0.988608,-1.34602,0.598864][0.499644,0.217068,0][1.9711,2.30449,-1.72544][-0.561349,-0.710182,0.424886][0.491404,0.238122,0][2.37571,1.64383,-2.0855][-0.988608,-1.34602,0.598864][0.651814,0.510243,0][1.93694,1.68422,-2.48118][-0.585438,-1.84457,1.07627][0.669293,0.511516,0][1.82627,1.65282,-3.48731][0.282275,-2.59671,0.106814][0.690908,0.533563,0][-3.64588,-0.910325,0.891314][0.961035,0.14386,-0.236044][0.0281445,0.664061,0][-3.4147,-0.895224,1.56801][0.900485,0.163009,-0.40318][0.0131763,0.678744,0][-3.48005,-1.6114,0.84916][0.899681,0.343005,-0.270039][0.0192606,0.64918,0][-3.4147,-0.895224,1.56801][0.900485,0.163009,-0.40318][0.0131763,0.678744,0][-3.64588,-0.910325,0.891314][0.961035,0.14386,-0.236044][0.0281445,0.664061,0][-3.68017,-0.190269,0.908628][0.971644,-0.0431785,-0.232474][0.0389295,0.680327,0][-0.0177157,-4.22677,0.00639689][-0.00691331,0.999975,-0.001344][0.696188,0.0668709,0][0.493368,-4.06243,-0.960538][-0.138622,0.957354,0.253491][0.683054,0.0377786,0][-0.0949779,-4.07084,-1.05708][0.0266729,0.954268,0.297761][0.699126,0.034224,0][-0.0949779,-4.07084,-1.05708][0.0266729,0.954268,0.297761][0.699126,0.034224,0][0.493368,-4.06243,-0.960538][-0.138622,0.957354,0.253491][0.683054,0.0377786,0][0.504508,-3.78664,-1.67748][-0.141802,0.88385,0.44576][0.685487,0.0157528,0][-3.68018,0.505142,0.20561][0.957683,-0.286723,-0.0251742][0.0675945,0.683732,0][-3.58007,0.523494,0.899491][0.946579,-0.23346,-0.22245][0.0512743,0.697405,0][-3.68017,-0.190269,0.908628][0.971644,-0.0431785,-0.232474][0.0389295,0.680327,0][-3.58007,0.523494,0.899491][0.946579,-0.23346,-0.22245][0.0512743,0.697405,0][-3.68018,0.505142,0.20561][0.957683,-0.286723,-0.0251742][0.0675945,0.683732,0][-3.3484,1.20298,0.852655][0.889496,-0.428076,-0.159835][0.0649937,0.714435,0][-3.55446,-1.63766,-0.506248][0.937549,0.323129,0.128797][0.826964,0.0462978,0][-3.58194,-1.62773,0.174031][0.93901,0.339055,-0.0574658][0.82863,0.0670486,0][-3.2614,-2.29097,-0.462691][0.851621,0.511393,0.114973][0.810464,0.0482473,0][-3.58194,-1.62773,0.174031][0.93901,0.339055,-0.0574658][0.0351305,0.635864,0][-3.55446,-1.63766,-0.506248][0.937549,0.323129,0.128797][0.0521925,0.623969,0][-3.72053,-0.940058,-0.528902][0.980653,0.139426,0.137405][0.0626405,0.63763,0][2.14504,3.29259,-1.18863][0.383606,0.846135,-0.370002][0.0993893,0.903552,0][2.73356,2.71946,-1.53172][0.55372,0.711165,-0.433172][0.118673,0.886219,0][2.29218,2.63656,-1.9566][0.544221,0.698038,-0.465367][0.125951,0.90172,0][2.73356,2.71946,-1.53172][0.55372,0.711165,-0.433172][0.118673,0.886219,0][2.14504,3.29259,-1.18863][0.383606,0.846135,-0.370002][0.0993893,0.903552,0][2.35034,3.2792,-0.752786][0.546801,0.837262,0.00057527][0.0896351,0.892746,0][0.902465,3.46329,1.38815][0.547698,5.82811,0.925455][0.918941,0.828066,0][0.471785,3.43019,0.696953][-0.685217,1.20019,0.505061][0.943854,0.827478,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.969655,0.829332,0][0.0193331,3.47622,-0.0165036][0.140097,5.88623,-0.030126][0.738907,0.697349,0][0.471785,3.43019,0.696953][-0.685217,1.20019,0.505061][0.764749,0.698281,0][0.61893,3.56164,0.624071][-0.220012,0.972248,0.0795534][0.764826,0.704712,0][-2.04934,-0.992521,3.146][0.526634,0.150007,-0.836752][0.478863,0.0980811,0][-1.41479,-1.00794,3.45941][0.360541,0.166225,-0.917812][0.498196,0.0997604,0][-1.95449,-1.69291,2.99777][0.468293,0.353368,-0.809835][0.480423,0.119634,0][-1.41479,-1.00794,3.45941][0.360541,0.166225,-0.917812][0.498196,0.0997604,0][-2.04934,-0.992521,3.146][0.526634,0.150007,-0.836752][0.478863,0.0980811,0][-2.07272,-0.272369,3.1777][0.525948,-0.0420563,-0.849477][0.479521,0.0760617,0][3.26236,-1.71161,1.39594][-0.849938,0.363944,-0.380985][0.347398,0.468591,0][3.48552,-1.74617,0.745319][-0.893886,0.373003,-0.24867][0.332232,0.481605,0][3.27578,-2.41845,0.0790753][-0.84623,0.5245,-0.0937853][0.303297,0.47586,0][3.48552,-1.74617,0.745319][-0.893886,0.373003,-0.24867][0.332232,0.481605,0][3.26236,-1.71161,1.39594][-0.849938,0.363944,-0.380985][0.347398,0.468591,0][3.41442,-1.0132,1.4561][-0.899516,0.138752,-0.41427][0.361161,0.484973,0][1.24708,1.1464,3.1838][-0.323074,-0.418218,-0.84895][0.583525,0.0390941,0][1.83701,1.15386,2.88375][-0.491657,-0.412814,-0.766719][0.60154,0.0399905,0][1.96325,0.478825,3.0811][-0.532002,-0.233158,-0.814009][0.604107,0.0608291,0][1.83701,1.15386,2.88375][-0.491657,-0.412814,-0.766719][0.60154,0.0399905,0][1.24708,1.1464,3.1838][-0.323074,-0.418218,-0.84895][0.583525,0.0390941,0][1.12443,1.76503,2.84442][-0.256656,-0.585099,-0.769277][0.580961,0.0199837,0][3.64593,0.34233,-0.598287][-0.952072,-0.280608,0.121727][0.333092,0.554268,0][3.47784,0.361904,-1.27472][-0.90707,-0.249739,0.338901][0.315235,0.564826,0][3.57478,-0.353025,-1.33658][-0.94319,-0.0555365,0.327578][0.303017,0.550731,0][3.47784,0.361904,-1.27472][-0.90707,-0.249739,0.338901][0.911906,0.420772,0][3.64593,0.34233,-0.598287][-0.952072,-0.280608,0.121727][0.93189,0.415444,0][3.25721,1.04936,-1.17452][-0.86168,-0.435844,0.259898][0.918657,0.441981,0][-2.2941,0.265848,-3.75444][0.981955,1.74344,-0.00549453][0.387372,0.310066,0][-2.01201,0.18536,-3.95544][0.80369,2.68925,0.00912781][0.378918,0.307073,0][-2.04624,-0.29486,-4.04255][-0.372931,0.0623176,-0.925764][0.380877,0.292484,0][-1.2097,-0.0620055,-4.18426][-1.2826,1.14497,-0.0710671][0.354907,0.297996,0][-2.04624,-0.29486,-4.04255][-0.372931,0.0623176,-0.925764][0.380877,0.292484,0][-2.01201,0.18536,-3.95544][0.80369,2.68925,0.00912781][0.378918,0.307073,0][3.5402,-1.78787,-0.611162][-0.930447,0.338477,0.140361][0.298043,0.505085,0][3.37958,-1.77043,-1.2691][-0.863719,0.38356,0.326911][0.280671,0.515349,0][3.24034,-2.42772,-0.544022][-0.828422,0.531102,0.177899][0.2873,0.48623,0][3.37958,-1.77043,-1.2691][-0.863719,0.38356,0.326911][0.280671,0.515349,0][3.5402,-1.78787,-0.611162][-0.930447,0.338477,0.140361][0.298043,0.505085,0][3.71062,-1.09396,-0.648342][-0.978348,0.146178,0.146515][0.309436,0.523271,0][-2.02179,0.441334,3.08953][0.484394,-0.283911,-0.8275][0.482435,0.0543808,0][-1.40229,0.425993,3.3993][0.360536,-0.245998,-0.899721][0.50131,0.0560292,0][-1.43302,-0.287798,3.49459][0.361269,-0.0425499,-0.93149][0.499012,0.0777513,0][-1.40229,0.425993,3.3993][0.360536,-0.245998,-0.899721][0.50131,0.0560292,0][-2.02179,0.441334,3.08953][0.484394,-0.283911,-0.8275][0.482435,0.0543808,0][-2.39737,1.15607,2.49692][0.576985,-0.439786,-0.688242][0.472337,0.0318556,0][-0.660672,-0.630292,-3.70846][1.12327,-0.267376,-0.0052713][0.536083,0.498155,0][-1.00455,-0.921648,-3.62934][0.260708,0.148547,0.953921][0.5468,0.506817,0][-0.434485,-0.766868,-3.74429][-0.11724,0.800236,-0.0108267][0.529267,0.50249,0][-1.22813,-0.0434165,-3.55212][-1.13479,1.02581,-0.0510726][0.553013,0.479816,0][-1.00455,-0.921648,-3.62934][0.260708,0.148547,0.953921][0.5468,0.506817,0][-0.660672,-0.630292,-3.70846][1.12327,-0.267376,-0.0052713][0.536083,0.498155,0][-0.695368,-1.71632,3.49157][0.233049,0.399734,-0.88651][0.518799,0.122747,0][-0.01685,-1.71188,3.5652][0.00511024,0.323238,-0.946304][0.539512,0.123904,0][-0.0173977,-2.36337,3.27022][0.0550604,0.496625,-0.866217][0.538254,0.143782,0][-0.01685,-1.71188,3.5652][0.00511024,0.323238,-0.946304][0.539512,0.123904,0][-0.695368,-1.71632,3.49157][0.233049,0.399734,-0.88651][0.518799,0.122747,0][-0.728795,-1.01722,3.6589][0.190536,0.144066,-0.971051][0.519111,0.101351,0][-0.73053,0.417141,3.59191][0.162696,-0.283294,-0.945132][0.521791,0.0575791,0][-0.0329439,0.421141,3.66031][0.0270093,-0.285025,-0.95814][0.543085,0.0587861,0][-0.0233181,-0.293931,3.7654][0.00654393,-0.0489855,-0.998778][0.542016,0.0806242,0][-0.0329439,0.421141,3.66031][0.0270093,-0.285025,-0.95814][0.543085,0.0587861,0][-0.73053,0.417141,3.59191][0.162696,-0.283294,-0.945132][0.521791,0.0575791,0][-1.31714,1.10855,3.17584][0.313984,-0.418885,-0.852026][0.505208,0.0353637,0][1.31441,-1.6669,3.31339][-0.367141,0.331537,-0.869074][0.58022,0.125068,0][1.92061,-1.65854,2.98534][-0.564745,0.311802,-0.764096][0.598734,0.125968,0][1.76047,-2.32134,2.74498][-0.491964,0.489053,-0.720276][0.592584,0.145887,0][1.92061,-1.65854,2.98534][-0.564745,0.311802,-0.764096][0.598734,0.125968,0][1.31441,-1.6669,3.31339][-0.367141,0.331537,-0.869074][0.58022,0.125068,0][1.37549,-0.96296,3.46794][-0.38121,0.136249,-0.914393][0.583425,0.103704,0][-2.37767,1.69347,-2.06505][0.113063,-2.89537,-0.0458976][0.153003,0.684521,0][-1.93276,1.71346,-2.48343][0.825359,-1.49009,1.32505][0.167092,0.682322,0][-1.98456,2.31814,-1.74684][0.516645,-0.717392,0.467362][0.157917,0.708432,0][-1.80953,1.74186,-3.49123][-0.421623,-2.5359,-0.0697338][0.771949,0.571653,0][-1.93276,1.71346,-2.48343][0.825359,-1.49009,1.32505][0.750834,0.594298,0][-2.37767,1.69347,-2.06505][0.113063,-2.89537,-0.0458976][0.733479,0.597145,0][-1.6856,1.75054,2.56967][0.435579,-0.587397,-0.682082][0.495188,0.015072,0][-1.17183,1.73682,2.83213][0.257523,-0.583838,-0.769945][0.510839,0.0164694,0][-1.31714,1.10855,3.17584][0.313984,-0.418885,-0.852026][0.505208,0.0353637,0][-1.17183,1.73682,2.83213][0.257523,-0.583838,-0.769945][0.821241,0.521672,0][-1.6856,1.75054,2.56967][0.435579,-0.587397,-0.682082][0.812627,0.536773,0][-0.975476,2.28882,2.38408][0.238729,-0.724246,-0.646897][0.802052,0.511148,0][0.489037,-1.16851,-4.49835][0.184041,-0.125211,-0.974911][0.30518,0.260996,0][0.489028,-0.641741,-4.49622][-0.10315,0.704063,-0.00952558][0.304176,0.277069,0][0.751125,-0.620809,-4.3912][0.478128,0.000251505,-1.17083][0.296139,0.277209,0][0.489028,-0.641741,-4.49622][-0.10315,0.704063,-0.00952558][0.549918,0.904465,0][-0.434485,-0.766868,-3.74429][-0.11724,0.800236,-0.0108267][0.525945,0.881476,0][0.751125,-0.620809,-4.3912][0.478128,0.000251505,-1.17083][0.55691,0.901255,0][-2.92528,-1.61483,2.08229][0.787778,0.388949,-0.477625][0.810742,0.258122,0][-2.48664,-1.65698,2.59043][0.660944,0.330513,-0.673731][0.83103,0.258914,0][-2.27725,-2.31901,2.36909][0.650628,0.507466,-0.564944][0.830483,0.281188,0][-2.48664,-1.65698,2.59043][0.660944,0.330513,-0.673731][0.83103,0.258914,0][-2.92528,-1.61483,2.08229][0.787778,0.388949,-0.477625][0.810742,0.258122,0][-3.06693,-0.907473,2.18593][0.812817,0.146874,-0.563699][0.809185,0.236211,0][-3.13716,1.20947,1.46609][0.814075,-0.442387,-0.376266][0.0513225,0.727599,0][-2.81517,1.19503,2.02102][0.720454,-0.435106,-0.540026][0.0396043,0.740431,0][-3.01197,0.523759,2.16069][0.785621,-0.239275,-0.570567][0.0239527,0.725589,0][-2.81517,1.19503,2.02102][0.720454,-0.435106,-0.540026][0.0396043,0.740431,0][-3.13716,1.20947,1.46609][0.814075,-0.442387,-0.376266][0.0513225,0.727599,0][-2.51413,1.80215,1.79125][0.628183,-0.614963,-0.476662][0.0572615,0.753338,0][2.41282,0.163222,-3.79828][-0.755271,0.709562,-0.0651228][0.39483,0.789046,0][2.09672,0.0891406,-3.96971][-0.607071,1.99774,-0.0730785][0.385714,0.791335,0][2.37347,0.203974,-2.89781][-0.440779,-0.0151489,0.619773][0.402632,0.762595,0][2.15493,-0.390136,-4.06377][0.338448,0.0747117,-0.938015][0.252864,0.281573,0][2.09672,0.0891406,-3.96971][-0.607071,1.99774,-0.0730785][0.253726,0.296309,0][2.41282,0.163222,-3.79828][-0.755271,0.709562,-0.0651228][0.24394,0.297967,0][-0.576029,-3.57898,-2.0033][0.0846325,2.65283,0.900071][0.717716,0.00457982,0][-1.00145,-3.5047,-1.97125][0.71134,2.79572,0.663654][0.730492,0.00508265,0][-1.06512,-3.81582,-1.35857][0.265319,0.893741,0.361707][0.728938,0.0238856,0][-1.13804,-3.43783,-3.12493][0.0688564,0.348973,0.0120743][0.782778,0.413361,0][-1.00145,-3.5047,-1.97125][0.71134,2.79572,0.663654][0.783565,0.448929,0][-0.576029,-3.57898,-2.0033][0.0846325,2.65283,0.900071][0.770817,0.449906,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/VikingHelm.mesh b/shareddata/charcustom/hats/fonts/VikingHelm.mesh deleted file mode 100644 index 9591d83..0000000 --- a/shareddata/charcustom/hats/fonts/VikingHelm.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -598 -[-0.911762,-0.93744,-1.1406][-0.615435,0.164322,-0.770868][0.00492573,0.502407,0][-1.31647,-0.93744,-0.632548][-0.888955,0.164321,-0.427501][0.0756475,0.502407,0][-1.25546,-0.531079,-0.60321][-0.888955,0.164321,-0.427502][0.0756475,0.601417,0][-1.25546,-0.531079,-0.60321][-0.888955,0.164321,-0.427502][0.0756475,0.601417,0][-0.869527,-0.531079,-1.0877][-0.615435,0.164322,-0.770868][0.00492573,0.601417,0][-0.911762,-0.93744,-1.1406][-0.615435,0.164322,-0.770868][0.00492573,0.502407,0][-1.31647,-0.93744,-0.632548][-0.888955,0.164321,-0.427501][0.0756475,0.502407,0][-1.46066,-0.93744,0.000787643][-0.986407,0.164322,0.000537123][0.146368,0.502407,0][-1.39297,-0.531079,0.000751451][-0.986407,0.164321,0.000537737][0.146368,0.601417,0][-1.39297,-0.531079,0.000751451][-0.986407,0.164321,0.000537737][0.146368,0.601417,0][-1.25546,-0.531079,-0.60321][-0.888955,0.164321,-0.427502][0.0756475,0.601417,0][-1.31647,-0.93744,-0.632548][-0.888955,0.164321,-0.427501][0.0756475,0.502407,0][-1.46066,-0.93744,0.000787643][-0.986407,0.164322,0.000537123][0.146368,0.502407,0][-1.31578,-0.93744,0.633966][-0.888489,0.164322,0.42847][0.21709,0.502407,0][-1.2548,-0.531079,0.604561][-0.888489,0.164322,0.42847][0.21709,0.601417,0][-1.2548,-0.531079,0.604561][-0.888489,0.164322,0.42847][0.21709,0.601417,0][-1.39297,-0.531079,0.000751451][-0.986407,0.164321,0.000537737][0.146368,0.601417,0][-1.46066,-0.93744,0.000787643][-0.986407,0.164322,0.000537123][0.146368,0.502407,0][-1.31578,-0.93744,0.633966][-0.888489,0.164322,0.42847][0.21709,0.502407,0][-0.910518,-0.93744,1.14158][-0.614594,0.16432,0.771539][0.287811,0.502407,0][-0.868341,-0.531079,1.08863][-0.614594,0.16432,0.771539][0.287811,0.601417,0][-0.868341,-0.531079,1.08863][-0.614594,0.16432,0.771539][0.287811,0.601417,0][-1.2548,-0.531079,0.604561][-0.888489,0.164322,0.42847][0.21709,0.601417,0][-1.31578,-0.93744,0.633966][-0.888489,0.164322,0.42847][0.21709,0.502407,0][-0.910518,-0.93744,1.14158][-0.614594,0.16432,0.771539][0.287811,0.502407,0][-0.325147,-0.93744,1.42308][-0.218972,0.164321,0.961795][0.358533,0.502407,0][-0.310119,-0.531079,1.35708][-0.218972,0.16432,0.961795][0.358533,0.601417,0][-0.310119,-0.531079,1.35708][-0.218972,0.16432,0.961795][0.358533,0.601417,0][-0.868341,-0.531079,1.08863][-0.614594,0.16432,0.771539][0.287811,0.601417,0][-0.910518,-0.93744,1.14158][-0.614594,0.16432,0.771539][0.287811,0.502407,0][-0.325147,-0.93744,1.42308][-0.218972,0.164321,0.961795][0.358533,0.502407,0][0.324395,-0.93744,1.42273][0.22002,0.164322,0.961556][0.429253,0.502407,0][0.309295,-0.531079,1.35674][0.220019,0.164322,0.961556][0.429253,0.601417,0][0.309295,-0.531079,1.35674][0.220019,0.164322,0.961556][0.429253,0.601417,0][-0.310119,-0.531079,1.35708][-0.218972,0.16432,0.961795][0.358533,0.601417,0][-0.325147,-0.93744,1.42308][-0.218972,0.164321,0.961795][0.358533,0.502407,0][0.324395,-0.93744,1.42273][0.22002,0.164322,0.961556][0.429253,0.502407,0][0.909459,-0.93744,1.14059][0.615435,0.164321,0.770868][0.499975,0.502407,0][0.867224,-0.531079,1.08768][0.615435,0.164321,0.770868][0.499975,0.601417,0][0.867224,-0.531079,1.08768][0.615435,0.164321,0.770868][0.499975,0.601417,0][0.309295,-0.531079,1.35674][0.220019,0.164322,0.961556][0.429253,0.601417,0][0.324395,-0.93744,1.42273][0.22002,0.164322,0.961556][0.429253,0.502407,0][0.909459,-0.93744,1.14059][0.615435,0.164321,0.770868][0.499975,0.502407,0][1.31416,-0.93744,0.632533][0.888955,0.164321,0.427502][0.570697,0.502407,0][1.25316,-0.531079,0.603195][0.888955,0.164321,0.427502][0.570697,0.601417,0][1.25316,-0.531079,0.603195][0.888955,0.164321,0.427502][0.570697,0.601417,0][0.867224,-0.531079,1.08768][0.615435,0.164321,0.770868][0.499975,0.601417,0][0.909459,-0.93744,1.14059][0.615435,0.164321,0.770868][0.499975,0.502407,0][1.31416,-0.93744,0.632533][0.888955,0.164321,0.427502][0.570697,0.502407,0][1.45836,-0.93744,-0.00080219][0.986407,0.164321,-0.000536907][0.641418,0.502407,0][1.39066,-0.531079,-0.00076584][0.986407,0.164321,-0.000537443][0.641418,0.601417,0][1.39066,-0.531079,-0.00076584][0.986407,0.164321,-0.000537443][0.641418,0.601417,0][1.25316,-0.531079,0.603195][0.888955,0.164321,0.427502][0.570697,0.601417,0][1.31416,-0.93744,0.632533][0.888955,0.164321,0.427502][0.570697,0.502407,0][1.45836,-0.93744,-0.00080219][0.986407,0.164321,-0.000536907][0.641418,0.502407,0][1.31347,-0.93744,-0.63398][0.888489,0.164321,-0.42847][0.71214,0.502407,0][1.2525,-0.531079,-0.604577][0.888488,0.164321,-0.42847][0.71214,0.601417,0][1.2525,-0.531079,-0.604577][0.888488,0.164321,-0.42847][0.71214,0.601417,0][1.39066,-0.531079,-0.00076584][0.986407,0.164321,-0.000537443][0.641418,0.601417,0][1.45836,-0.93744,-0.00080219][0.986407,0.164321,-0.000536907][0.641418,0.502407,0][1.31347,-0.93744,-0.63398][0.888489,0.164321,-0.42847][0.71214,0.502407,0][0.908215,-0.93744,-1.14159][0.614594,0.16432,-0.77154][0.78286,0.502407,0][0.866038,-0.531079,-1.08864][0.614594,0.16432,-0.771539][0.78286,0.601417,0][0.866038,-0.531079,-1.08864][0.614594,0.16432,-0.771539][0.78286,0.601417,0][1.2525,-0.531079,-0.604577][0.888488,0.164321,-0.42847][0.71214,0.601417,0][1.31347,-0.93744,-0.63398][0.888489,0.164321,-0.42847][0.71214,0.502407,0][0.908215,-0.93744,-1.14159][0.614594,0.16432,-0.77154][0.78286,0.502407,0][0.322844,-0.93744,-1.4231][0.218972,0.164321,-0.961795][0.853582,0.502407,0][0.307816,-0.531079,-1.35709][0.218972,0.164321,-0.961795][0.853582,0.601417,0][0.307816,-0.531079,-1.35709][0.218972,0.164321,-0.961795][0.853582,0.601417,0][0.866038,-0.531079,-1.08864][0.614594,0.16432,-0.771539][0.78286,0.601417,0][0.908215,-0.93744,-1.14159][0.614594,0.16432,-0.77154][0.78286,0.502407,0][0.322844,-0.93744,-1.4231][0.218972,0.164321,-0.961795][0.853582,0.502407,0][-0.326698,-0.93744,-1.42275][-0.22002,0.164322,-0.961556][0.924304,0.502407,0][-0.3116,-0.531079,-1.35676][-0.22002,0.164322,-0.961556][0.924304,0.601417,0][-0.3116,-0.531079,-1.35676][-0.22002,0.164322,-0.961556][0.924304,0.601417,0][0.307816,-0.531079,-1.35709][0.218972,0.164321,-0.961795][0.853582,0.601417,0][0.322844,-0.93744,-1.4231][0.218972,0.164321,-0.961795][0.853582,0.502407,0][-0.326698,-0.93744,-1.42275][-0.22002,0.164322,-0.961556][0.924304,0.502407,0][-0.911762,-0.93744,-1.1406][-0.615435,0.164322,-0.770868][0.995025,0.502407,0][-0.869527,-0.531079,-1.0877][-0.615435,0.164322,-0.770868][0.995025,0.601417,0][-0.869527,-0.531079,-1.0877][-0.615435,0.164322,-0.770868][0.995025,0.601417,0][-0.3116,-0.531079,-1.35676][-0.22002,0.164322,-0.961556][0.924304,0.601417,0][-0.326698,-0.93744,-1.42275][-0.22002,0.164322,-0.961556][0.924304,0.502407,0][-0.820689,-0.510889,-1.02653][-0.589165,0.329086,-0.737962][0.00492573,0.601417,0][-1.18492,-0.510889,-0.569286][-0.851008,0.329086,-0.409253][0.0756475,0.601417,0][-1.00812,0.05203,-0.484264][-2.73545,1.0578,-1.31549][0.0756475,0.700427,0][-1.00812,0.05203,-0.484264][-2.73545,1.0578,-1.31549][0.0756475,0.700427,0][-0.698292,0.0520301,-0.873218][-1.89379,1.0578,-2.37208][0.00492573,0.700427,0][-0.820689,-0.510889,-1.02653][-0.589165,0.329086,-0.737962][0.00492573,0.601417,0][-1.18492,-0.510889,-0.569286][-0.851008,0.329086,-0.409253][0.0756475,0.601417,0][-1.31469,-0.510889,0.000708791][-0.9443,0.329086,0.000514577][0.146368,0.601417,0][-1.11851,0.0520299,0.000601277][-3.03533,1.0578,0.00165231][0.146368,0.700427,0][-1.11851,0.0520299,0.000601277][-3.03533,1.0578,0.00165231][0.146368,0.700427,0][-1.00812,0.05203,-0.484264][-2.73545,1.0578,-1.31549][0.0756475,0.700427,0][-1.18492,-0.510889,-0.569286][-0.851008,0.329086,-0.409253][0.0756475,0.601417,0][-1.31469,-0.510889,0.000708791][-0.9443,0.329086,0.000514577][0.146368,0.601417,0][-1.1843,-0.51089,0.57056][-0.850562,0.329086,0.41018][0.21709,0.601417,0][-1.0076,0.0520298,0.485346][-2.73402,1.0578,1.31847][0.21709,0.700427,0][-1.0076,0.0520298,0.485346][-2.73402,1.0578,1.31847][0.21709,0.700427,0][-1.11851,0.0520299,0.000601277][-3.03533,1.0578,0.00165231][0.146368,0.700427,0][-1.31469,-0.510889,0.000708791][-0.9443,0.329086,0.000514577][0.146368,0.601417,0][-1.1843,-0.51089,0.57056][-0.850562,0.329086,0.41018][0.21709,0.601417,0][-0.81957,-0.51089,1.02741][-0.588359,0.329086,0.738604][0.287811,0.601417,0][-0.697339,0.0520298,0.873962][-1.8912,1.0578,2.37415][0.287811,0.700427,0][-0.697339,0.0520298,0.873962][-1.8912,1.0578,2.37415][0.287811,0.700427,0][-1.0076,0.0520298,0.485346][-2.73402,1.0578,1.31847][0.21709,0.700427,0][-1.1843,-0.51089,0.57056][-0.850562,0.329086,0.41018][0.21709,0.601417,0][-0.81957,-0.51089,1.02741][-0.588359,0.329086,0.738604][0.287811,0.601417,0][-0.292743,-0.51089,1.28076][-0.209625,0.329085,0.920739][0.358533,0.601417,0][-0.249194,0.0520297,1.08948][-0.673811,1.0578,2.95959][0.358533,0.700427,0][-0.249194,0.0520297,1.08948][-0.673811,1.0578,2.95959][0.358533,0.700427,0][-0.697339,0.0520298,0.873962][-1.8912,1.0578,2.37415][0.287811,0.700427,0][-0.81957,-0.51089,1.02741][-0.588359,0.329086,0.738604][0.287811,0.601417,0][-0.292743,-0.51089,1.28076][-0.209625,0.329085,0.920739][0.358533,0.601417,0][0.291836,-0.51089,1.28044][0.210628,0.329086,0.92051][0.429253,0.601417,0][0.248078,0.0520297,1.08921][0.677037,1.0578,2.95886][0.429253,0.700427,0][0.248078,0.0520297,1.08921][0.677037,1.0578,2.95886][0.429253,0.700427,0][-0.249194,0.0520297,1.08948][-0.673811,1.0578,2.95959][0.358533,0.700427,0][-0.292743,-0.51089,1.28076][-0.209625,0.329085,0.920739][0.358533,0.601417,0][0.291836,-0.51089,1.28044][0.210628,0.329086,0.92051][0.429253,0.601417,0][0.818386,-0.51089,1.02651][0.589164,0.329086,0.737962][0.499975,0.601417,0][0.695989,0.0520298,0.873202][1.89379,1.0578,2.37208][0.499975,0.700427,0][0.695989,0.0520298,0.873202][1.89379,1.0578,2.37208][0.499975,0.700427,0][0.248078,0.0520297,1.08921][0.677037,1.0578,2.95886][0.429253,0.700427,0][0.291836,-0.51089,1.28044][0.210628,0.329086,0.92051][0.429253,0.601417,0][0.818386,-0.51089,1.02651][0.589164,0.329086,0.737962][0.499975,0.601417,0][1.18262,-0.51089,0.569271][0.851008,0.329086,0.409253][0.570697,0.601417,0][1.00582,0.0520298,0.48425][2.73545,1.0578,1.31549][0.570697,0.700427,0][1.00582,0.0520298,0.48425][2.73545,1.0578,1.31549][0.570697,0.700427,0][0.695989,0.0520298,0.873202][1.89379,1.0578,2.37208][0.499975,0.700427,0][0.818386,-0.51089,1.02651][0.589164,0.329086,0.737962][0.499975,0.601417,0][1.18262,-0.51089,0.569271][0.851008,0.329086,0.409253][0.570697,0.601417,0][1.31239,-0.510889,-0.000723167][0.9443,0.329086,-0.000514228][0.641418,0.601417,0][1.11621,0.0520299,-0.000615434][3.03533,1.0578,-0.00165087][0.641418,0.700427,0][1.11621,0.0520299,-0.000615434][3.03533,1.0578,-0.00165087][0.641418,0.700427,0][1.00582,0.0520298,0.48425][2.73545,1.0578,1.31549][0.570697,0.700427,0][1.18262,-0.51089,0.569271][0.851008,0.329086,0.409253][0.570697,0.601417,0][1.31239,-0.510889,-0.000723167][0.9443,0.329086,-0.000514228][0.641418,0.601417,0][1.182,-0.510889,-0.570576][0.850561,0.329086,-0.41018][0.71214,0.601417,0][1.00529,0.05203,-0.485362][2.73402,1.0578,-1.31847][0.71214,0.700427,0][1.00529,0.05203,-0.485362][2.73402,1.0578,-1.31847][0.71214,0.700427,0][1.11621,0.0520299,-0.000615434][3.03533,1.0578,-0.00165087][0.641418,0.700427,0][1.31239,-0.510889,-0.000723167][0.9443,0.329086,-0.000514228][0.641418,0.601417,0][1.182,-0.510889,-0.570576][0.850561,0.329086,-0.41018][0.71214,0.601417,0][0.817267,-0.510889,-1.02742][0.588359,0.329086,-0.738604][0.78286,0.601417,0][0.695036,0.0520301,-0.873976][1.8912,1.0578,-2.37415][0.78286,0.700427,0][0.695036,0.0520301,-0.873976][1.8912,1.0578,-2.37415][0.78286,0.700427,0][1.00529,0.05203,-0.485362][2.73402,1.0578,-1.31847][0.71214,0.700427,0][1.182,-0.510889,-0.570576][0.850561,0.329086,-0.41018][0.71214,0.601417,0][0.817267,-0.510889,-1.02742][0.588359,0.329086,-0.738604][0.78286,0.601417,0][0.29044,-0.510889,-1.28077][0.209625,0.329086,-0.920739][0.853582,0.601417,0][0.246891,0.0520301,-1.08949][0.673811,1.0578,-2.95959][0.853582,0.700427,0][0.246891,0.0520301,-1.08949][0.673811,1.0578,-2.95959][0.853582,0.700427,0][0.695036,0.0520301,-0.873976][1.8912,1.0578,-2.37415][0.78286,0.700427,0][0.817267,-0.510889,-1.02742][0.588359,0.329086,-0.738604][0.78286,0.601417,0][0.29044,-0.510889,-1.28077][0.209625,0.329086,-0.920739][0.853582,0.601417,0][-0.29414,-0.510889,-1.28045][-0.210628,0.329086,-0.92051][0.924304,0.601417,0][-0.250381,0.0520301,-1.08922][-0.677033,1.0578,-2.95886][0.924304,0.700427,0][-0.250381,0.0520301,-1.08922][-0.677033,1.0578,-2.95886][0.924304,0.700427,0][0.246891,0.0520301,-1.08949][0.673811,1.0578,-2.95959][0.853582,0.700427,0][0.29044,-0.510889,-1.28077][0.209625,0.329086,-0.920739][0.853582,0.601417,0][-0.29414,-0.510889,-1.28045][-0.210628,0.329086,-0.92051][0.924304,0.601417,0][-0.820689,-0.510889,-1.02653][-0.589165,0.329086,-0.737962][0.995025,0.601417,0][-0.698292,0.0520301,-0.873218][-1.89379,1.0578,-2.37208][0.995025,0.700427,0][-0.698292,0.0520301,-0.873218][-1.89379,1.0578,-2.37208][0.995025,0.700427,0][-0.250381,0.0520301,-1.08922][-0.677033,1.0578,-2.95886][0.924304,0.700427,0][-0.29414,-0.510889,-1.28045][-0.210628,0.329086,-0.92051][0.924304,0.601417,0][-0.698292,0.0520301,-0.873218][-1.89379,1.0578,-2.37208][0.00492573,0.700427,0][-1.00812,0.05203,-0.484264][-2.73545,1.0578,-1.31549][0.0756475,0.700427,0][-0.73276,0.418801,-0.351841][-2.33751,2.16082,-1.12412][0.0756475,0.799437,0][-0.73276,0.418801,-0.351841][-2.33751,2.16082,-1.12412][0.0756475,0.799437,0][-0.507654,0.418801,-0.634432][-1.61829,2.16083,-2.027][0.00492573,0.799437,0][-0.698292,0.0520301,-0.873218][-1.89379,1.0578,-2.37208][0.00492573,0.700427,0][-1.00812,0.05203,-0.484264][-2.73545,1.0578,-1.31549][0.0756475,0.700427,0][-1.11851,0.0520299,0.000601277][-3.03533,1.0578,0.00165231][0.146368,0.700427,0][-0.812963,0.418801,0.000434816][-2.59376,2.16082,0.00141465][0.146368,0.799437,0][-0.812963,0.418801,0.000434816][-2.59376,2.16082,0.00141465][0.146368,0.799437,0][-0.73276,0.418801,-0.351841][-2.33751,2.16082,-1.12412][0.0756475,0.799437,0][-1.00812,0.05203,-0.484264][-2.73545,1.0578,-1.31549][0.0756475,0.700427,0][-1.11851,0.0520299,0.000601277][-3.03533,1.0578,0.00165231][0.146368,0.700427,0][-1.0076,0.0520298,0.485346][-2.73402,1.0578,1.31847][0.21709,0.700427,0][-0.732376,0.418801,0.352623][-2.33628,2.16082,1.12667][0.21709,0.799437,0][-0.732376,0.418801,0.352623][-2.33628,2.16082,1.12667][0.21709,0.799437,0][-0.812963,0.418801,0.000434816][-2.59376,2.16082,0.00141465][0.146368,0.799437,0][-1.11851,0.0520299,0.000601277][-3.03533,1.0578,0.00165231][0.146368,0.700427,0][-1.0076,0.0520298,0.485346][-2.73402,1.0578,1.31847][0.21709,0.700427,0][-0.697339,0.0520298,0.873962][-1.8912,1.0578,2.37415][0.287811,0.700427,0][-0.506961,0.418801,0.634968][-1.61608,2.16083,2.02876][0.287811,0.799437,0][-0.506961,0.418801,0.634968][-1.61608,2.16083,2.02876][0.287811,0.799437,0][-0.732376,0.418801,0.352623][-2.33628,2.16082,1.12667][0.21709,0.799437,0][-1.0076,0.0520298,0.485346][-2.73402,1.0578,1.31847][0.21709,0.700427,0][-0.697339,0.0520298,0.873962][-1.8912,1.0578,2.37415][0.287811,0.700427,0][-0.249194,0.0520297,1.08948][-0.673811,1.0578,2.95959][0.358533,0.700427,0][-0.181365,0.418801,0.791549][-0.575788,2.16083,2.52904][0.358533,0.799437,0][-0.181365,0.418801,0.791549][-0.575788,2.16083,2.52904][0.358533,0.799437,0][-0.506961,0.418801,0.634968][-1.61608,2.16083,2.02876][0.287811,0.799437,0][-0.697339,0.0520298,0.873962][-1.8912,1.0578,2.37415][0.287811,0.700427,0][-0.249194,0.0520297,1.08948][-0.673811,1.0578,2.95959][0.358533,0.700427,0][0.248078,0.0520297,1.08921][0.677037,1.0578,2.95886][0.429253,0.700427,0][0.179924,0.418801,0.791352][0.578539,2.16082,2.52841][0.429253,0.799437,0][0.179924,0.418801,0.791352][0.578539,2.16082,2.52841][0.429253,0.799437,0][-0.181365,0.418801,0.791549][-0.575788,2.16083,2.52904][0.358533,0.799437,0][-0.249194,0.0520297,1.08948][-0.673811,1.0578,2.95959][0.358533,0.700427,0][0.248078,0.0520297,1.08921][0.677037,1.0578,2.95886][0.429253,0.700427,0][0.695989,0.0520298,0.873202][1.89379,1.0578,2.37208][0.499975,0.700427,0][0.505351,0.418801,0.634418][1.61829,2.16082,2.02701][0.499975,0.799437,0][0.505351,0.418801,0.634418][1.61829,2.16082,2.02701][0.499975,0.799437,0][0.179924,0.418801,0.791352][0.578539,2.16082,2.52841][0.429253,0.799437,0][0.248078,0.0520297,1.08921][0.677037,1.0578,2.95886][0.429253,0.700427,0][0.695989,0.0520298,0.873202][1.89379,1.0578,2.37208][0.499975,0.700427,0][1.00582,0.0520298,0.48425][2.73545,1.0578,1.31549][0.570697,0.700427,0][0.730457,0.418801,0.351827][2.33751,2.16082,1.12412][0.570697,0.799437,0][0.730457,0.418801,0.351827][2.33751,2.16082,1.12412][0.570697,0.799437,0][0.505351,0.418801,0.634418][1.61829,2.16082,2.02701][0.499975,0.799437,0][0.695989,0.0520298,0.873202][1.89379,1.0578,2.37208][0.499975,0.700427,0][1.00582,0.0520298,0.48425][2.73545,1.0578,1.31549][0.570697,0.700427,0][1.11621,0.0520299,-0.000615434][3.03533,1.0578,-0.00165087][0.641418,0.700427,0][0.81066,0.418801,-0.000449963][2.59376,2.16082,-0.00141225][0.641418,0.799437,0][0.81066,0.418801,-0.000449963][2.59376,2.16082,-0.00141225][0.641418,0.799437,0][0.730457,0.418801,0.351827][2.33751,2.16082,1.12412][0.570697,0.799437,0][1.00582,0.0520298,0.48425][2.73545,1.0578,1.31549][0.570697,0.700427,0][1.11621,0.0520299,-0.000615434][3.03533,1.0578,-0.00165087][0.641418,0.700427,0][1.00529,0.05203,-0.485362][2.73402,1.0578,-1.31847][0.71214,0.700427,0][0.730074,0.418801,-0.352637][2.33629,2.16082,-1.12666][0.71214,0.799437,0][0.730074,0.418801,-0.352637][2.33629,2.16082,-1.12666][0.71214,0.799437,0][0.81066,0.418801,-0.000449963][2.59376,2.16082,-0.00141225][0.641418,0.799437,0][1.11621,0.0520299,-0.000615434][3.03533,1.0578,-0.00165087][0.641418,0.700427,0][1.00529,0.05203,-0.485362][2.73402,1.0578,-1.31847][0.71214,0.700427,0][0.695036,0.0520301,-0.873976][1.8912,1.0578,-2.37415][0.78286,0.700427,0][0.504658,0.418801,-0.634983][1.61608,2.16082,-2.02877][0.78286,0.799437,0][0.504658,0.418801,-0.634983][1.61608,2.16082,-2.02877][0.78286,0.799437,0][0.730074,0.418801,-0.352637][2.33629,2.16082,-1.12666][0.71214,0.799437,0][1.00529,0.05203,-0.485362][2.73402,1.0578,-1.31847][0.71214,0.700427,0][0.695036,0.0520301,-0.873976][1.8912,1.0578,-2.37415][0.78286,0.700427,0][0.246891,0.0520301,-1.08949][0.673811,1.0578,-2.95959][0.853582,0.700427,0][0.179062,0.418801,-0.791563][0.575786,2.16082,-2.52904][0.853582,0.799437,0][0.179062,0.418801,-0.791563][0.575786,2.16082,-2.52904][0.853582,0.799437,0][0.504658,0.418801,-0.634983][1.61608,2.16082,-2.02877][0.78286,0.799437,0][0.695036,0.0520301,-0.873976][1.8912,1.0578,-2.37415][0.78286,0.700427,0][0.246891,0.0520301,-1.08949][0.673811,1.0578,-2.95959][0.853582,0.700427,0][-0.250381,0.0520301,-1.08922][-0.677033,1.0578,-2.95886][0.924304,0.700427,0][-0.182227,0.418801,-0.791366][-0.578539,2.16083,-2.52841][0.924304,0.799437,0][-0.182227,0.418801,-0.791366][-0.578539,2.16083,-2.52841][0.924304,0.799437,0][0.179062,0.418801,-0.791563][0.575786,2.16082,-2.52904][0.853582,0.799437,0][0.246891,0.0520301,-1.08949][0.673811,1.0578,-2.95959][0.853582,0.700427,0][-0.250381,0.0520301,-1.08922][-0.677033,1.0578,-2.95886][0.924304,0.700427,0][-0.698292,0.0520301,-0.873218][-1.89379,1.0578,-2.37208][0.995025,0.700427,0][-0.507654,0.418801,-0.634432][-1.61829,2.16083,-2.027][0.995025,0.799437,0][-0.507654,0.418801,-0.634432][-1.61829,2.16083,-2.027][0.995025,0.799437,0][-0.182227,0.418801,-0.791366][-0.578539,2.16083,-2.52841][0.924304,0.799437,0][-0.250381,0.0520301,-1.08922][-0.677033,1.0578,-2.95886][0.924304,0.700427,0][-0.507654,0.418801,-0.634432][-1.61829,2.16083,-2.027][0.00492573,0.799437,0][-0.73276,0.418801,-0.351841][-2.33751,2.16082,-1.12412][0.0756475,0.799437,0][-0.385781,0.632674,-0.184977][-1.53677,3.0698,-0.739042][0.0756475,0.898447,0][-0.385781,0.632674,-0.184977][-1.53677,3.0698,-0.739042][0.0756475,0.898447,0][-0.267436,0.632674,-0.333543][-1.06393,3.06981,-1.33264][0.00492573,0.898447,0][-0.507654,0.418801,-0.634432][-1.61829,2.16083,-2.027][0.00492573,0.799437,0][-0.73276,0.418801,-0.351841][-2.33751,2.16082,-1.12412][0.0756475,0.799437,0][-0.812963,0.418801,0.000434816][-2.59376,2.16082,0.00141465][0.146368,0.799437,0][-0.427947,0.632674,0.000225275][-1.70525,3.06981,0.00092951][0.146368,0.898447,0][-0.427947,0.632674,0.000225275][-1.70525,3.06981,0.00092951][0.146368,0.898447,0][-0.385781,0.632674,-0.184977][-1.53677,3.0698,-0.739042][0.0756475,0.898447,0][-0.73276,0.418801,-0.351841][-2.33751,2.16082,-1.12412][0.0756475,0.799437,0][-0.812963,0.418801,0.000434816][-2.59376,2.16082,0.00141465][0.146368,0.799437,0][-0.732376,0.418801,0.352623][-2.33628,2.16082,1.12667][0.21709,0.799437,0][-0.385579,0.632674,0.185382][-1.53597,3.0698,0.740717][0.21709,0.898447,0][-0.385579,0.632674,0.185382][-1.53597,3.0698,0.740717][0.21709,0.898447,0][-0.427947,0.632674,0.000225275][-1.70525,3.06981,0.00092951][0.146368,0.898447,0][-0.812963,0.418801,0.000434816][-2.59376,2.16082,0.00141465][0.146368,0.799437,0][-0.732376,0.418801,0.352623][-2.33628,2.16082,1.12667][0.21709,0.799437,0][-0.506961,0.418801,0.634968][-1.61608,2.16083,2.02876][0.287811,0.799437,0][-0.267072,0.632674,0.33382][-1.06248,3.0698,1.3338][0.287811,0.898447,0][-0.267072,0.632674,0.33382][-1.06248,3.0698,1.3338][0.287811,0.898447,0][-0.385579,0.632674,0.185382][-1.53597,3.0698,0.740717][0.21709,0.898447,0][-0.732376,0.418801,0.352623][-2.33628,2.16082,1.12667][0.21709,0.799437,0][-0.506961,0.418801,0.634968][-1.61608,2.16083,2.02876][0.287811,0.799437,0][-0.181365,0.418801,0.791549][-0.575788,2.16083,2.52904][0.358533,0.799437,0][-0.0958953,0.632674,0.416139][-0.378544,3.06981,1.6627][0.358533,0.898447,0][-0.0958953,0.632674,0.416139][-0.378544,3.06981,1.6627][0.358533,0.898447,0][-0.267072,0.632674,0.33382][-1.06248,3.0698,1.3338][0.287811,0.898447,0][-0.506961,0.418801,0.634968][-1.61608,2.16083,2.02876][0.287811,0.799437,0][-0.181365,0.418801,0.791549][-0.575788,2.16083,2.52904][0.358533,0.799437,0][0.179924,0.418801,0.791352][0.578539,2.16082,2.52841][0.429253,0.799437,0][0.0940454,0.632674,0.416035][0.380356,3.0698,1.66229][0.429253,0.898447,0][0.0940454,0.632674,0.416035][0.380356,3.0698,1.66229][0.429253,0.898447,0][-0.0958953,0.632674,0.416139][-0.378544,3.06981,1.6627][0.358533,0.898447,0][-0.181365,0.418801,0.791549][-0.575788,2.16083,2.52904][0.358533,0.799437,0][0.179924,0.418801,0.791352][0.578539,2.16082,2.52841][0.429253,0.799437,0][0.505351,0.418801,0.634418][1.61829,2.16082,2.02701][0.499975,0.799437,0][0.265133,0.632674,0.33353][1.06393,3.06981,1.33264][0.499975,0.898447,0][0.265133,0.632674,0.33353][1.06393,3.06981,1.33264][0.499975,0.898447,0][0.0940454,0.632674,0.416035][0.380356,3.0698,1.66229][0.429253,0.898447,0][0.179924,0.418801,0.791352][0.578539,2.16082,2.52841][0.429253,0.799437,0][0.505351,0.418801,0.634418][1.61829,2.16082,2.02701][0.499975,0.799437,0][0.730457,0.418801,0.351827][2.33751,2.16082,1.12412][0.570697,0.799437,0][0.383478,0.632674,0.184963][1.53677,3.0698,0.739043][0.570697,0.898447,0][0.383478,0.632674,0.184963][1.53677,3.0698,0.739043][0.570697,0.898447,0][0.265133,0.632674,0.33353][1.06393,3.06981,1.33264][0.499975,0.898447,0][0.505351,0.418801,0.634418][1.61829,2.16082,2.02701][0.499975,0.799437,0][0.730457,0.418801,0.351827][2.33751,2.16082,1.12412][0.570697,0.799437,0][0.81066,0.418801,-0.000449963][2.59376,2.16082,-0.00141225][0.641418,0.799437,0][0.425644,0.632674,-0.000239206][1.70525,3.06981,-0.000927833][0.641418,0.898447,0][0.425644,0.632674,-0.000239206][1.70525,3.06981,-0.000927833][0.641418,0.898447,0][0.383478,0.632674,0.184963][1.53677,3.0698,0.739043][0.570697,0.898447,0][0.730457,0.418801,0.351827][2.33751,2.16082,1.12412][0.570697,0.799437,0][0.81066,0.418801,-0.000449963][2.59376,2.16082,-0.00141225][0.641418,0.799437,0][0.730074,0.418801,-0.352637][2.33629,2.16082,-1.12666][0.71214,0.799437,0][0.383276,0.632674,-0.185396][1.53597,3.0698,-0.740714][0.71214,0.898447,0][0.383276,0.632674,-0.185396][1.53597,3.0698,-0.740714][0.71214,0.898447,0][0.425644,0.632674,-0.000239206][1.70525,3.06981,-0.000927833][0.641418,0.898447,0][0.81066,0.418801,-0.000449963][2.59376,2.16082,-0.00141225][0.641418,0.799437,0][0.730074,0.418801,-0.352637][2.33629,2.16082,-1.12666][0.71214,0.799437,0][0.504658,0.418801,-0.634983][1.61608,2.16082,-2.02877][0.78286,0.799437,0][0.264769,0.632674,-0.333833][1.06248,3.06981,-1.33379][0.78286,0.898447,0][0.264769,0.632674,-0.333833][1.06248,3.06981,-1.33379][0.78286,0.898447,0][0.383276,0.632674,-0.185396][1.53597,3.0698,-0.740714][0.71214,0.898447,0][0.730074,0.418801,-0.352637][2.33629,2.16082,-1.12666][0.71214,0.799437,0][0.504658,0.418801,-0.634983][1.61608,2.16082,-2.02877][0.78286,0.799437,0][0.179062,0.418801,-0.791563][0.575786,2.16082,-2.52904][0.853582,0.799437,0][0.0935923,0.632674,-0.416153][0.378543,3.06981,-1.6627][0.853582,0.898447,0][0.0935923,0.632674,-0.416153][0.378543,3.06981,-1.6627][0.853582,0.898447,0][0.264769,0.632674,-0.333833][1.06248,3.06981,-1.33379][0.78286,0.898447,0][0.504658,0.418801,-0.634983][1.61608,2.16082,-2.02877][0.78286,0.799437,0][0.179062,0.418801,-0.791563][0.575786,2.16082,-2.52904][0.853582,0.799437,0][-0.182227,0.418801,-0.791366][-0.578539,2.16083,-2.52841][0.924304,0.799437,0][-0.0963496,0.632674,-0.416049][-0.38036,3.0698,-1.66228][0.924304,0.898447,0][-0.0963496,0.632674,-0.416049][-0.38036,3.0698,-1.66228][0.924304,0.898447,0][0.0935923,0.632674,-0.416153][0.378543,3.06981,-1.6627][0.853582,0.898447,0][0.179062,0.418801,-0.791563][0.575786,2.16082,-2.52904][0.853582,0.799437,0][-0.182227,0.418801,-0.791366][-0.578539,2.16083,-2.52841][0.924304,0.799437,0][-0.507654,0.418801,-0.634432][-1.61829,2.16083,-2.027][0.995025,0.799437,0][-0.267436,0.632674,-0.333543][-1.06393,3.06981,-1.33264][0.995025,0.898447,0][-0.267436,0.632674,-0.333543][-1.06393,3.06981,-1.33264][0.995025,0.898447,0][-0.0963496,0.632674,-0.416049][-0.38036,3.0698,-1.66228][0.924304,0.898447,0][-0.182227,0.418801,-0.791366][-0.578539,2.16083,-2.52841][0.924304,0.799437,0][-0.267436,0.632674,-0.333543][-1.06393,3.06981,-1.33264][0.00492573,0.898447,0][-0.385781,0.632674,-0.184977][-1.53677,3.0698,-0.739042][0.0756475,0.898447,0][-0.00115151,0.700273,-6.9523e-006][0,1,2.22229e-007][0.0402861,0.997457,0][-0.385781,0.632674,-0.184977][-1.53677,3.0698,-0.739042][0.0756475,0.898447,0][-0.427947,0.632674,0.000225275][-1.70525,3.06981,0.00092951][0.146368,0.898447,0][-0.00115151,0.700273,-6.9523e-006][0,1,2.22229e-007][0.111008,0.997457,0][-0.427947,0.632674,0.000225275][-1.70525,3.06981,0.00092951][0.146368,0.898447,0][-0.385579,0.632674,0.185382][-1.53597,3.0698,0.740717][0.21709,0.898447,0][-0.00115151,0.700273,-6.9523e-006][0,1,2.22229e-007][0.181729,0.997457,0][-0.385579,0.632674,0.185382][-1.53597,3.0698,0.740717][0.21709,0.898447,0][-0.267072,0.632674,0.33382][-1.06248,3.0698,1.3338][0.287811,0.898447,0][-0.00115151,0.700273,-6.9523e-006][0,1,2.22229e-007][0.25245,0.997457,0][-0.267072,0.632674,0.33382][-1.06248,3.0698,1.3338][0.287811,0.898447,0][-0.0958953,0.632674,0.416139][-0.378544,3.06981,1.6627][0.358533,0.898447,0][-0.00115151,0.700273,-6.9523e-006][0,1,2.22229e-007][0.323172,0.997457,0][-0.0958953,0.632674,0.416139][-0.378544,3.06981,1.6627][0.358533,0.898447,0][0.0940454,0.632674,0.416035][0.380356,3.0698,1.66229][0.429253,0.898447,0][-0.00115151,0.700273,-6.9523e-006][0,1,2.22229e-007][0.393893,0.997457,0][0.0940454,0.632674,0.416035][0.380356,3.0698,1.66229][0.429253,0.898447,0][0.265133,0.632674,0.33353][1.06393,3.06981,1.33264][0.499975,0.898447,0][-0.00115151,0.700273,-6.9523e-006][0,1,2.22229e-007][0.464615,0.997457,0][0.265133,0.632674,0.33353][1.06393,3.06981,1.33264][0.499975,0.898447,0][0.383478,0.632674,0.184963][1.53677,3.0698,0.739043][0.570697,0.898447,0][-0.00115151,0.700273,-6.9523e-006][0,1,2.22229e-007][0.535336,0.997457,0][0.383478,0.632674,0.184963][1.53677,3.0698,0.739043][0.570697,0.898447,0][0.425644,0.632674,-0.000239206][1.70525,3.06981,-0.000927833][0.641418,0.898447,0][-0.00115151,0.700273,-6.9523e-006][0,1,2.22229e-007][0.606057,0.997457,0][0.425644,0.632674,-0.000239206][1.70525,3.06981,-0.000927833][0.641418,0.898447,0][0.383276,0.632674,-0.185396][1.53597,3.0698,-0.740714][0.71214,0.898447,0][-0.00115151,0.700273,-6.9523e-006][0,1,2.22229e-007][0.676778,0.997457,0][0.383276,0.632674,-0.185396][1.53597,3.0698,-0.740714][0.71214,0.898447,0][0.264769,0.632674,-0.333833][1.06248,3.06981,-1.33379][0.78286,0.898447,0][-0.00115151,0.700273,-6.9523e-006][0,1,2.22229e-007][0.7475,0.997457,0][0.264769,0.632674,-0.333833][1.06248,3.06981,-1.33379][0.78286,0.898447,0][0.0935923,0.632674,-0.416153][0.378543,3.06981,-1.6627][0.853582,0.898447,0][-0.00115151,0.700273,-6.9523e-006][0,1,2.22229e-007][0.818222,0.997457,0][0.0935923,0.632674,-0.416153][0.378543,3.06981,-1.6627][0.853582,0.898447,0][-0.0963496,0.632674,-0.416049][-0.38036,3.0698,-1.66228][0.924304,0.898447,0][-0.00115151,0.700273,-6.9523e-006][0,1,2.22229e-007][0.888943,0.997457,0][-0.0963496,0.632674,-0.416049][-0.38036,3.0698,-1.66228][0.924304,0.898447,0][-0.267436,0.632674,-0.333543][-1.06393,3.06981,-1.33264][0.995025,0.898447,0][-0.00115151,0.700273,-6.9523e-006][0,1,2.22229e-007][0.959664,0.997457,0][1.20505,-0.456536,-0.205037][0.388908,-0.480796,-1.47884][0.505617,0.326127,0][1.10038,-0.280235,-0.289963][0.353361,-0.436734,-1.34213][0.536681,0.274314,0][1.60168,-0.0383096,-0.236701][0.463081,-0.572978,-1.76728][0.669568,0.370437,0][1.60168,-0.0383096,-0.236701][0.463081,-0.572978,-1.76728][0.669568,0.370437,0][1.71971,-0.156974,-0.167375][0.31664,-0.391897,-1.2099][0.655319,0.417648,0][1.20505,-0.456536,-0.205037][0.388908,-0.480796,-1.47884][0.505617,0.326127,0][1.10038,-0.280235,-0.289963][0.353361,-0.436734,-1.34213][0.536681,0.274314,0][0.995709,-0.103935,-0.205037][-0.11264,0.567258,-1.31641][0.567745,0.222501,0][1.48366,0.0803547,-0.167375][-0.194267,0.799275,-1.74367][0.683818,0.323227,0][1.48366,0.0803547,-0.167375][-0.194267,0.799275,-1.74367][0.683818,0.323227,0][1.60168,-0.0383096,-0.236701][0.463081,-0.572978,-1.76728][0.669568,0.370437,0][1.10038,-0.280235,-0.289963][0.353361,-0.436734,-1.34213][0.536681,0.274314,0][0.995709,-0.103935,-0.205037][-0.11264,0.567258,-1.31641][0.481215,0.298143,0][0.952354,-0.0309111,-7.09467e-006][-0.435587,1.30988,-0.558639][0.468349,0.358554,0][1.43477,0.129511,-7.06344e-006][-0.529099,1.53968,-0.620044][0.359239,0.358554,0][1.43477,0.129511,-7.06344e-006][-0.529099,1.53968,-0.620044][0.359239,0.358554,0][1.48366,0.0803547,-0.167375][-0.194267,0.799275,-1.74367][0.365142,0.309239,0][0.995709,-0.103935,-0.205037][-0.11264,0.567258,-1.31641][0.481215,0.298143,0][0.952354,-0.0309111,-7.09467e-006][-0.435587,1.30988,-0.558639][0.468349,0.358554,0][0.995709,-0.103935,0.205022][-0.474136,1.37602,0.590349][0.481215,0.418965,0][1.48366,0.0803547,0.167361][-0.440645,1.31237,0.52635][0.365142,0.407868,0][1.48366,0.0803547,0.167361][-0.440645,1.31237,0.52635][0.365142,0.407868,0][1.43477,0.129511,-7.06344e-006][-0.529099,1.53968,-0.620044][0.359239,0.358554,0][0.952354,-0.0309111,-7.09467e-006][-0.435587,1.30988,-0.558639][0.468349,0.358554,0][0.995709,-0.103935,0.205022][-0.474136,1.37602,0.590349][0.419088,0.098172,0][1.10038,-0.280236,0.289949][-0.145181,0.626615,1.47974][0.450152,0.149985,0][1.60168,-0.0383097,0.236686][-0.12067,0.54622,1.17727][0.317265,0.246108,0][1.60168,-0.0383097,0.236686][-0.12067,0.54622,1.17727][0.317265,0.246108,0][1.48366,0.0803547,0.167361][-0.440645,1.31237,0.52635][0.303015,0.198898,0][0.995709,-0.103935,0.205022][-0.474136,1.37602,0.590349][0.419088,0.098172,0][1.10038,-0.280236,0.289949][-0.145181,0.626615,1.47974][0.450152,0.149985,0][1.20505,-0.456536,0.205022][0.388535,-0.481627,1.47867][0.481215,0.201797,0][1.71971,-0.156974,0.167361][0.317437,-0.391907,1.20968][0.331514,0.293319,0][1.71971,-0.156974,0.167361][0.317437,-0.391907,1.20968][0.331514,0.293319,0][1.60168,-0.0383097,0.236686][-0.12067,0.54622,1.17727][0.317265,0.246108,0][1.10038,-0.280236,0.289949][-0.145181,0.626615,1.47974][0.450152,0.149985,0][1.20505,-0.456536,0.205022][0.388535,-0.481627,1.47867][0.96039,0.09621,0][1.2484,-0.529561,-7.19176e-006][0.762469,-1.22632,0.598008][0.973257,0.156622,0][1.7686,-0.206127,-7.12879e-006][0.723188,-1.1704,0.558339][0.816591,0.156622,0][1.7686,-0.206127,-7.12879e-006][0.723188,-1.1704,0.558339][0.816591,0.156622,0][1.71971,-0.156974,0.167361][0.317437,-0.391907,1.20968][0.810688,0.107307,0][1.20505,-0.456536,0.205022][0.388535,-0.481627,1.47867][0.96039,0.09621,0][1.2484,-0.529561,-7.19176e-006][0.762469,-1.22632,0.598008][0.973257,0.156622,0][1.20505,-0.456536,-0.205037][0.388908,-0.480796,-1.47884][0.96039,0.217033,0][1.71971,-0.156974,-0.167375][0.31664,-0.391897,-1.2099][0.810688,0.205936,0][1.71971,-0.156974,-0.167375][0.31664,-0.391897,-1.2099][0.810688,0.205936,0][1.7686,-0.206127,-7.12879e-006][0.723188,-1.1704,0.558339][0.816591,0.156622,0][1.2484,-0.529561,-7.19176e-006][0.762469,-1.22632,0.598008][0.973257,0.156622,0][1.94075,0.781266,-0.0495851][1.66331,1.21814,-1.67518][0.929526,0.343651,0][1.87698,0.776555,-0.077753][-0.0781621,1.05601,-2.38736][0.91938,0.327776,0][1.85334,0.997102,0.0205764][-0.107697,0.994181,0.00211628][0.973256,0.29078,0][1.87698,0.776555,-0.077753][-0.0781621,1.05601,-2.38736][0.91938,0.327776,0][1.81411,0.771127,-0.0494741][-1.86727,0.851183,-1.70003][0.909174,0.312234,0][1.85334,0.997102,0.0205764][-0.107697,0.994181,0.00211628][0.973256,0.29078,0][1.81411,0.771127,-0.0494741][-1.86727,0.851183,-1.70003][0.139786,0.343978,0][1.78804,0.768068,0.0205514][-2.61288,0.744945,0.0425227][0.144227,0.364611,0][1.85334,0.997102,0.0205764][-0.107697,0.994181,0.00211628][0.075703,0.364619,0][1.78804,0.768068,0.0205514][-2.61288,0.744945,0.0425227][0.144227,0.364611,0][1.81586,0.769319,0.0907389][-1.83061,0.840231,1.74999][0.140009,0.385292,0][1.85334,0.997102,0.0205764][-0.107697,0.994181,0.00211628][0.075703,0.364619,0][1.81586,0.769319,0.0907389][-1.83061,0.840231,1.74999][0.077882,0.188613,0][1.87963,0.77403,0.118907][-0.0584219,1.04231,2.3802][0.067737,0.204486,0][1.85334,0.997102,0.0205764][-0.107697,0.994181,0.00211628][0.013576,0.166451,0][1.87963,0.77403,0.118907][-0.0584219,1.04231,2.3802][0.067737,0.204486,0][1.9425,0.779455,0.0906279][1.64919,1.21047,1.66183][0.057531,0.22003,0][1.85334,0.997102,0.0205764][-0.107697,0.994181,0.00211628][0.013576,0.166451,0][1.9425,0.779455,0.0906279][1.64919,1.21047,1.66183][0.536704,0.129917,0][1.96857,0.782516,0.0206024][2.36923,1.27224,-0.000304148][0.532263,0.15055,0][1.85334,0.997102,0.0205764][-0.107697,0.994181,0.00211628][0.49275,0.150557,0][1.96857,0.782516,0.0206024][2.36923,1.27224,-0.000304148][0.532263,0.15055,0][1.94075,0.781266,-0.0495851][1.66331,1.21814,-1.67518][0.536481,0.17123,0][1.85334,0.997102,0.0205764][-0.107697,0.994181,0.00211628][0.49275,0.150557,0][1.71971,-0.156974,-0.167375][0.31664,-0.391897,-1.2099][0.655319,0.417648,0][1.60168,-0.0383096,-0.236701][0.463081,-0.572978,-1.76728][0.669568,0.370437,0][1.85244,0.406418,-0.162499][0.767382,-0.166013,-1.70752][0.819975,0.373215,0][1.85244,0.406418,-0.162499][0.767382,-0.166013,-1.70752][0.819975,0.373215,0][1.96384,0.379282,-0.110549][0.548764,-0.118566,-1.23863][0.828529,0.405897,0][1.71971,-0.156974,-0.167375][0.31664,-0.391897,-1.2099][0.655319,0.417648,0][1.60168,-0.0383096,-0.236701][0.463081,-0.572978,-1.76728][0.669568,0.370437,0][1.48366,0.0803547,-0.167375][-0.194267,0.799275,-1.74367][0.683818,0.323227,0][1.74195,0.431858,-0.110569][-0.592659,0.625015,-1.67073][0.811107,0.341005,0][1.74195,0.431858,-0.110569][-0.592659,0.625015,-1.67073][0.811107,0.341005,0][1.85244,0.406418,-0.162499][0.767382,-0.166013,-1.70752][0.819975,0.373215,0][1.60168,-0.0383096,-0.236701][0.463081,-0.572978,-1.76728][0.669568,0.370437,0][1.48366,0.0803547,-0.167375][-0.194267,0.799275,-1.74367][0.365142,0.309239,0][1.43477,0.129511,-7.06344e-006][-0.529099,1.53968,-0.620044][0.359239,0.358554,0][1.69708,0.440704,0.014828][-1.24699,1.01891,-0.554483][0.241839,0.362925,0][1.69708,0.440704,0.014828][-1.24699,1.01891,-0.554483][0.241839,0.362925,0][1.74195,0.431858,-0.110569][-0.592659,0.625015,-1.67073][0.237853,0.325977,0][1.48366,0.0803547,-0.167375][-0.194267,0.799275,-1.74367][0.365142,0.309239,0][1.43477,0.129511,-7.06344e-006][-0.529099,1.53968,-0.620044][0.359239,0.358554,0][1.48366,0.0803547,0.167361][-0.440645,1.31237,0.52635][0.365142,0.407868,0][1.74412,0.427774,0.140231][-1.08891,0.884977,0.519818][0.238608,0.399874,0][1.74412,0.427774,0.140231][-1.08891,0.884977,0.519818][0.238608,0.399874,0][1.69708,0.440704,0.014828][-1.24699,1.01891,-0.554483][0.241839,0.362925,0][1.43477,0.129511,-7.06344e-006][-0.529099,1.53968,-0.620044][0.359239,0.358554,0][1.48366,0.0803547,0.167361][-0.440645,1.31237,0.52635][0.303015,0.198898,0][1.60168,-0.0383097,0.236686][-0.12067,0.54622,1.17727][0.317265,0.246108,0][1.85551,0.400638,0.192176][-0.433996,0.410088,1.21057][0.167927,0.250491,0][1.85551,0.400638,0.192176][-0.433996,0.410088,1.21057][0.167927,0.250491,0][1.74412,0.427774,0.140231][-1.08891,0.884977,0.519818][0.176481,0.21781,0][1.48366,0.0803547,0.167361][-0.440645,1.31237,0.52635][0.303015,0.198898,0][1.60168,-0.0383097,0.236686][-0.12067,0.54622,1.17727][0.317265,0.246108,0][1.71971,-0.156974,0.167361][0.317437,-0.391907,1.20968][0.331514,0.293319,0][1.96601,0.375196,0.140238][0.539225,-0.186297,1.23816][0.159059,0.282702,0][1.96601,0.375196,0.140238][0.539225,-0.186297,1.23816][0.159059,0.282702,0][1.85551,0.400638,0.192176][-0.433996,0.410088,1.21057][0.167927,0.250491,0][1.60168,-0.0383097,0.236686][-0.12067,0.54622,1.17727][0.317265,0.246108,0][1.71971,-0.156974,0.167361][0.317437,-0.391907,1.20968][0.810688,0.107307,0][1.7686,-0.206127,-7.12879e-006][0.723188,-1.1704,0.558339][0.816591,0.156622,0][2.01088,0.366349,0.0148462][1.31068,-0.578387,0.51763][0.634248,0.152245,0][2.01088,0.366349,0.0148462][1.31068,-0.578387,0.51763][0.634248,0.152245,0][1.96601,0.375196,0.140238][0.539225,-0.186297,1.23816][0.638233,0.115299,0][1.71971,-0.156974,0.167361][0.317437,-0.391907,1.20968][0.810688,0.107307,0][1.7686,-0.206127,-7.12879e-006][0.723188,-1.1704,0.558339][0.816591,0.156622,0][1.71971,-0.156974,-0.167375][0.31664,-0.391897,-1.2099][0.810688,0.205936,0][1.96384,0.379282,-0.110549][0.548764,-0.118566,-1.23863][0.637478,0.189192,0][1.96384,0.379282,-0.110549][0.548764,-0.118566,-1.23863][0.637478,0.189192,0][2.01088,0.366349,0.0148462][1.31068,-0.578387,0.51763][0.634248,0.152245,0][1.7686,-0.206127,-7.12879e-006][0.723188,-1.1704,0.558339][0.816591,0.156622,0][1.96384,0.379282,-0.110549][0.548764,-0.118566,-1.23863][0.828529,0.405897,0][1.85244,0.406418,-0.162499][0.767382,-0.166013,-1.70752][0.819975,0.373215,0][1.87698,0.776555,-0.077753][-0.0781621,1.05601,-2.38736][0.91938,0.327776,0][1.87698,0.776555,-0.077753][-0.0781621,1.05601,-2.38736][0.91938,0.327776,0][1.94075,0.781266,-0.0495851][1.66331,1.21814,-1.67518][0.929526,0.343651,0][1.96384,0.379282,-0.110549][0.548764,-0.118566,-1.23863][0.828529,0.405897,0][1.85244,0.406418,-0.162499][0.767382,-0.166013,-1.70752][0.819975,0.373215,0][1.74195,0.431858,-0.110569][-0.592659,0.625015,-1.67073][0.811107,0.341005,0][1.81411,0.771127,-0.0494741][-1.86727,0.851183,-1.70003][0.909174,0.312234,0][1.81411,0.771127,-0.0494741][-1.86727,0.851183,-1.70003][0.909174,0.312234,0][1.87698,0.776555,-0.077753][-0.0781621,1.05601,-2.38736][0.91938,0.327776,0][1.85244,0.406418,-0.162499][0.767382,-0.166013,-1.70752][0.819975,0.373215,0][1.74195,0.431858,-0.110569][-0.592659,0.625015,-1.67073][0.237853,0.325977,0][1.69708,0.440704,0.014828][-1.24699,1.01891,-0.554483][0.241839,0.362925,0][1.78804,0.768068,0.0205514][-2.61288,0.744945,0.0425227][0.144227,0.364611,0][1.78804,0.768068,0.0205514][-2.61288,0.744945,0.0425227][0.144227,0.364611,0][1.81411,0.771127,-0.0494741][-1.86727,0.851183,-1.70003][0.139786,0.343978,0][1.74195,0.431858,-0.110569][-0.592659,0.625015,-1.67073][0.237853,0.325977,0][1.69708,0.440704,0.014828][-1.24699,1.01891,-0.554483][0.241839,0.362925,0][1.74412,0.427774,0.140231][-1.08891,0.884977,0.519818][0.238608,0.399874,0][1.81586,0.769319,0.0907389][-1.83061,0.840231,1.74999][0.140009,0.385292,0][1.81586,0.769319,0.0907389][-1.83061,0.840231,1.74999][0.140009,0.385292,0][1.78804,0.768068,0.0205514][-2.61288,0.744945,0.0425227][0.144227,0.364611,0][1.69708,0.440704,0.014828][-1.24699,1.01891,-0.554483][0.241839,0.362925,0][1.74412,0.427774,0.140231][-1.08891,0.884977,0.519818][0.176481,0.21781,0][1.85551,0.400638,0.192176][-0.433996,0.410088,1.21057][0.167927,0.250491,0][1.87963,0.77403,0.118907][-0.0584219,1.04231,2.3802][0.067737,0.204486,0][1.87963,0.77403,0.118907][-0.0584219,1.04231,2.3802][0.067737,0.204486,0][1.81586,0.769319,0.0907389][-1.83061,0.840231,1.74999][0.077882,0.188613,0][1.74412,0.427774,0.140231][-1.08891,0.884977,0.519818][0.176481,0.21781,0][1.85551,0.400638,0.192176][-0.433996,0.410088,1.21057][0.167927,0.250491,0][1.96601,0.375196,0.140238][0.539225,-0.186297,1.23816][0.159059,0.282702,0][1.9425,0.779455,0.0906279][1.64919,1.21047,1.66183][0.057531,0.22003,0][1.9425,0.779455,0.0906279][1.64919,1.21047,1.66183][0.057531,0.22003,0][1.87963,0.77403,0.118907][-0.0584219,1.04231,2.3802][0.067737,0.204486,0][1.85551,0.400638,0.192176][-0.433996,0.410088,1.21057][0.167927,0.250491,0][1.96601,0.375196,0.140238][0.539225,-0.186297,1.23816][0.638233,0.115299,0][2.01088,0.366349,0.0148462][1.31068,-0.578387,0.51763][0.634248,0.152245,0][1.96857,0.782516,0.0206024][2.36923,1.27224,-0.000304148][0.532263,0.15055,0][1.96857,0.782516,0.0206024][2.36923,1.27224,-0.000304148][0.532263,0.15055,0][1.9425,0.779455,0.0906279][1.64919,1.21047,1.66183][0.536704,0.129917,0][1.96601,0.375196,0.140238][0.539225,-0.186297,1.23816][0.638233,0.115299,0][2.01088,0.366349,0.0148462][1.31068,-0.578387,0.51763][0.634248,0.152245,0][1.96384,0.379282,-0.110549][0.548764,-0.118566,-1.23863][0.637478,0.189192,0][1.94075,0.781266,-0.0495851][1.66331,1.21814,-1.67518][0.536481,0.17123,0][1.94075,0.781266,-0.0495851][1.66331,1.21814,-1.67518][0.536481,0.17123,0][1.96857,0.782516,0.0206024][2.36923,1.27224,-0.000304148][0.532263,0.15055,0][2.01088,0.366349,0.0148462][1.31068,-0.578387,0.51763][0.634248,0.152245,0][-1.20735,-0.456536,-0.205037][-0.388908,-0.480796,-1.47884][0.505617,0.326127,0][-1.72201,-0.156974,-0.167375][-0.31664,-0.391897,-1.2099][0.655319,0.417648,0][-1.60399,-0.0383096,-0.236701][-0.463081,-0.572978,-1.76728][0.669568,0.370437,0][-1.60399,-0.0383096,-0.236701][-0.463081,-0.572978,-1.76728][0.669568,0.370437,0][-1.10268,-0.280235,-0.289963][-0.353361,-0.436734,-1.34213][0.536681,0.274314,0][-1.20735,-0.456536,-0.205037][-0.388908,-0.480796,-1.47884][0.505617,0.326127,0][-1.10268,-0.280235,-0.289963][-0.353361,-0.436734,-1.34213][0.536681,0.274314,0][-1.60399,-0.0383096,-0.236701][-0.463081,-0.572978,-1.76728][0.669568,0.370437,0][-1.48596,0.0803547,-0.167375][0.194267,0.799275,-1.74367][0.683818,0.323227,0][-1.48596,0.0803547,-0.167375][0.194267,0.799275,-1.74367][0.683818,0.323227,0][-0.998012,-0.103935,-0.205037][0.11264,0.567258,-1.31641][0.567745,0.222501,0][-1.10268,-0.280235,-0.289963][-0.353361,-0.436734,-1.34213][0.536681,0.274314,0][-0.998012,-0.103935,-0.205037][0.11264,0.567258,-1.31641][0.481215,0.298143,0][-1.48596,0.0803547,-0.167375][0.194267,0.799275,-1.74367][0.365142,0.309239,0][-1.43707,0.129511,-7.06344e-006][0.529099,1.53968,-0.620044][0.359239,0.358554,0][-1.43707,0.129511,-7.06344e-006][0.529099,1.53968,-0.620044][0.359239,0.358554,0][-0.954657,-0.0309111,-7.09467e-006][0.435587,1.30988,-0.558639][0.468349,0.358554,0][-0.998012,-0.103935,-0.205037][0.11264,0.567258,-1.31641][0.481215,0.298143,0][-0.954657,-0.0309111,-7.09467e-006][0.435587,1.30988,-0.558639][0.468349,0.358554,0][-1.43707,0.129511,-7.06344e-006][0.529099,1.53968,-0.620044][0.359239,0.358554,0][-1.48596,0.0803547,0.167361][0.440645,1.31237,0.52635][0.365142,0.407868,0][-1.48596,0.0803547,0.167361][0.440645,1.31237,0.52635][0.365142,0.407868,0][-0.998012,-0.103935,0.205022][0.474136,1.37602,0.590348][0.481215,0.418965,0][-0.954657,-0.0309111,-7.09467e-006][0.435587,1.30988,-0.558639][0.468349,0.358554,0][-0.998012,-0.103935,0.205022][0.474136,1.37602,0.590348][0.419088,0.098172,0][-1.48596,0.0803547,0.167361][0.440645,1.31237,0.52635][0.303015,0.198898,0][-1.60399,-0.0383097,0.236686][0.12067,0.54622,1.17727][0.317265,0.246108,0][-1.60399,-0.0383097,0.236686][0.12067,0.54622,1.17727][0.317265,0.246108,0][-1.10268,-0.280236,0.289949][0.145181,0.626615,1.47974][0.450152,0.149985,0][-0.998012,-0.103935,0.205022][0.474136,1.37602,0.590348][0.419088,0.098172,0][-1.10268,-0.280236,0.289949][0.145181,0.626615,1.47974][0.450152,0.149985,0][-1.60399,-0.0383097,0.236686][0.12067,0.54622,1.17727][0.317265,0.246108,0][-1.72201,-0.156974,0.167361][-0.317437,-0.391907,1.20968][0.331514,0.293319,0][-1.72201,-0.156974,0.167361][-0.317437,-0.391907,1.20968][0.331514,0.293319,0][-1.20735,-0.456536,0.205022][-0.388535,-0.481627,1.47867][0.481215,0.201797,0][-1.10268,-0.280236,0.289949][0.145181,0.626615,1.47974][0.450152,0.149985,0][-1.20735,-0.456536,0.205022][-0.388535,-0.481627,1.47867][0.96039,0.09621,0][-1.72201,-0.156974,0.167361][-0.317437,-0.391907,1.20968][0.810688,0.107307,0][-1.7709,-0.206127,-7.12879e-006][-0.723188,-1.1704,0.558339][0.816591,0.156622,0][-1.7709,-0.206127,-7.12879e-006][-0.723188,-1.1704,0.558339][0.816591,0.156622,0][-1.2507,-0.529561,-7.19176e-006][-0.762469,-1.22632,0.598008][0.973257,0.156622,0][-1.20735,-0.456536,0.205022][-0.388535,-0.481627,1.47867][0.96039,0.09621,0][-1.2507,-0.529561,-7.19176e-006][-0.762469,-1.22632,0.598008][0.973257,0.156622,0][-1.7709,-0.206127,-7.12879e-006][-0.723188,-1.1704,0.558339][0.816591,0.156622,0][-1.72201,-0.156974,-0.167375][-0.31664,-0.391897,-1.2099][0.810688,0.205936,0][-1.72201,-0.156974,-0.167375][-0.31664,-0.391897,-1.2099][0.810688,0.205936,0][-1.20735,-0.456536,-0.205037][-0.388908,-0.480796,-1.47884][0.96039,0.217033,0][-1.2507,-0.529561,-7.19176e-006][-0.762469,-1.22632,0.598008][0.973257,0.156622,0][-1.94305,0.781266,-0.0495851][-1.66331,1.21814,-1.67518][0.929526,0.343651,0][-1.85565,0.997102,0.0205764][0.107697,0.994182,0.0021161][0.973256,0.29078,0][-1.87928,0.776555,-0.077753][0.0781633,1.05601,-2.38736][0.91938,0.327776,0][-1.87928,0.776555,-0.077753][0.0781633,1.05601,-2.38736][0.91938,0.327776,0][-1.85565,0.997102,0.0205764][0.107697,0.994182,0.0021161][0.973256,0.29078,0][-1.81641,0.771127,-0.0494741][1.86727,0.851184,-1.70003][0.909174,0.312234,0][-1.81641,0.771127,-0.0494741][1.86727,0.851184,-1.70003][0.139786,0.343978,0][-1.85565,0.997102,0.0205764][0.107697,0.994182,0.0021161][0.075703,0.364619,0][-1.79035,0.768068,0.0205514][2.61288,0.744946,0.0425209][0.144227,0.364611,0][-1.79035,0.768068,0.0205514][2.61288,0.744946,0.0425209][0.144227,0.364611,0][-1.85565,0.997102,0.0205764][0.107697,0.994182,0.0021161][0.075703,0.364619,0][-1.81817,0.769319,0.0907389][1.83061,0.840232,1.74998][0.140009,0.385292,0][-1.81817,0.769319,0.0907389][1.83061,0.840232,1.74998][0.077882,0.188613,0][-1.85565,0.997102,0.0205764][0.107697,0.994182,0.0021161][0.013576,0.166451,0][-1.88193,0.77403,0.118907][0.0584221,1.04231,2.3802][0.067737,0.204486,0][-1.88193,0.77403,0.118907][0.0584221,1.04231,2.3802][0.067737,0.204486,0][-1.85565,0.997102,0.0205764][0.107697,0.994182,0.0021161][0.013576,0.166451,0][-1.94481,0.779455,0.0906279][-1.64919,1.21047,1.66183][0.057531,0.22003,0][-1.94481,0.779455,0.0906279][-1.64919,1.21047,1.66183][0.536704,0.129917,0][-1.85565,0.997102,0.0205764][0.107697,0.994182,0.0021161][0.49275,0.150557,0][-1.97088,0.782516,0.0206024][-2.36923,1.27224,-0.000304133][0.532263,0.15055,0][-1.97088,0.782516,0.0206024][-2.36923,1.27224,-0.000304133][0.532263,0.15055,0][-1.85565,0.997102,0.0205764][0.107697,0.994182,0.0021161][0.49275,0.150557,0][-1.94305,0.781266,-0.0495851][-1.66331,1.21814,-1.67518][0.536481,0.17123,0][-1.72201,-0.156974,-0.167375][-0.31664,-0.391897,-1.2099][0.655319,0.417648,0][-1.96614,0.379282,-0.110549][-0.548764,-0.118566,-1.23863][0.828529,0.405897,0][-1.85475,0.406418,-0.162499][-0.767382,-0.166014,-1.70752][0.819975,0.373215,0][-1.85475,0.406418,-0.162499][-0.767382,-0.166014,-1.70752][0.819975,0.373215,0][-1.60399,-0.0383096,-0.236701][-0.463081,-0.572978,-1.76728][0.669568,0.370437,0][-1.72201,-0.156974,-0.167375][-0.31664,-0.391897,-1.2099][0.655319,0.417648,0][-1.60399,-0.0383096,-0.236701][-0.463081,-0.572978,-1.76728][0.669568,0.370437,0][-1.85475,0.406418,-0.162499][-0.767382,-0.166014,-1.70752][0.819975,0.373215,0][-1.74425,0.431858,-0.110569][0.592658,0.625015,-1.67074][0.811107,0.341005,0][-1.74425,0.431858,-0.110569][0.592658,0.625015,-1.67074][0.811107,0.341005,0][-1.48596,0.0803547,-0.167375][0.194267,0.799275,-1.74367][0.683818,0.323227,0][-1.60399,-0.0383096,-0.236701][-0.463081,-0.572978,-1.76728][0.669568,0.370437,0][-1.48596,0.0803547,-0.167375][0.194267,0.799275,-1.74367][0.365142,0.309239,0][-1.74425,0.431858,-0.110569][0.592658,0.625015,-1.67074][0.237853,0.325977,0][-1.69938,0.440704,0.014828][1.24699,1.01891,-0.554483][0.241839,0.362925,0][-1.69938,0.440704,0.014828][1.24699,1.01891,-0.554483][0.241839,0.362925,0][-1.43707,0.129511,-7.06344e-006][0.529099,1.53968,-0.620044][0.359239,0.358554,0][-1.48596,0.0803547,-0.167375][0.194267,0.799275,-1.74367][0.365142,0.309239,0][-1.43707,0.129511,-7.06344e-006][0.529099,1.53968,-0.620044][0.359239,0.358554,0][-1.69938,0.440704,0.014828][1.24699,1.01891,-0.554483][0.241839,0.362925,0][-1.74642,0.427774,0.140231][1.08891,0.884977,0.519818][0.238608,0.399874,0][-1.74642,0.427774,0.140231][1.08891,0.884977,0.519818][0.238608,0.399874,0][-1.48596,0.0803547,0.167361][0.440645,1.31237,0.52635][0.365142,0.407868,0][-1.43707,0.129511,-7.06344e-006][0.529099,1.53968,-0.620044][0.359239,0.358554,0][-1.48596,0.0803547,0.167361][0.440645,1.31237,0.52635][0.303015,0.198898,0][-1.74642,0.427774,0.140231][1.08891,0.884977,0.519818][0.176481,0.21781,0][-1.85782,0.400638,0.192176][0.433996,0.410088,1.21057][0.167927,0.250491,0][-1.85782,0.400638,0.192176][0.433996,0.410088,1.21057][0.167927,0.250491,0][-1.60399,-0.0383097,0.236686][0.12067,0.54622,1.17727][0.317265,0.246108,0][-1.48596,0.0803547,0.167361][0.440645,1.31237,0.52635][0.303015,0.198898,0][-1.60399,-0.0383097,0.236686][0.12067,0.54622,1.17727][0.317265,0.246108,0][-1.85782,0.400638,0.192176][0.433996,0.410088,1.21057][0.167927,0.250491,0][-1.96831,0.375196,0.140238][-0.539225,-0.186297,1.23816][0.159059,0.282702,0][-1.96831,0.375196,0.140238][-0.539225,-0.186297,1.23816][0.159059,0.282702,0][-1.72201,-0.156974,0.167361][-0.317437,-0.391907,1.20968][0.331514,0.293319,0][-1.60399,-0.0383097,0.236686][0.12067,0.54622,1.17727][0.317265,0.246108,0][-1.72201,-0.156974,0.167361][-0.317437,-0.391907,1.20968][0.810688,0.107307,0][-1.96831,0.375196,0.140238][-0.539225,-0.186297,1.23816][0.638233,0.115299,0][-2.01318,0.366349,0.0148462][-1.31068,-0.578387,0.517631][0.634248,0.152245,0][-2.01318,0.366349,0.0148462][-1.31068,-0.578387,0.517631][0.634248,0.152245,0][-1.7709,-0.206127,-7.12879e-006][-0.723188,-1.1704,0.558339][0.816591,0.156622,0][-1.72201,-0.156974,0.167361][-0.317437,-0.391907,1.20968][0.810688,0.107307,0][-1.7709,-0.206127,-7.12879e-006][-0.723188,-1.1704,0.558339][0.816591,0.156622,0][-2.01318,0.366349,0.0148462][-1.31068,-0.578387,0.517631][0.634248,0.152245,0][-1.96614,0.379282,-0.110549][-0.548764,-0.118566,-1.23863][0.637478,0.189192,0][-1.96614,0.379282,-0.110549][-0.548764,-0.118566,-1.23863][0.637478,0.189192,0][-1.72201,-0.156974,-0.167375][-0.31664,-0.391897,-1.2099][0.810688,0.205936,0][-1.7709,-0.206127,-7.12879e-006][-0.723188,-1.1704,0.558339][0.816591,0.156622,0][-1.96614,0.379282,-0.110549][-0.548764,-0.118566,-1.23863][0.828529,0.405897,0][-1.94305,0.781266,-0.0495851][-1.66331,1.21814,-1.67518][0.929526,0.343651,0][-1.87928,0.776555,-0.077753][0.0781633,1.05601,-2.38736][0.91938,0.327776,0][-1.87928,0.776555,-0.077753][0.0781633,1.05601,-2.38736][0.91938,0.327776,0][-1.85475,0.406418,-0.162499][-0.767382,-0.166014,-1.70752][0.819975,0.373215,0][-1.96614,0.379282,-0.110549][-0.548764,-0.118566,-1.23863][0.828529,0.405897,0][-1.85475,0.406418,-0.162499][-0.767382,-0.166014,-1.70752][0.819975,0.373215,0][-1.87928,0.776555,-0.077753][0.0781633,1.05601,-2.38736][0.91938,0.327776,0][-1.81641,0.771127,-0.0494741][1.86727,0.851184,-1.70003][0.909174,0.312234,0][-1.81641,0.771127,-0.0494741][1.86727,0.851184,-1.70003][0.909174,0.312234,0][-1.74425,0.431858,-0.110569][0.592658,0.625015,-1.67074][0.811107,0.341005,0][-1.85475,0.406418,-0.162499][-0.767382,-0.166014,-1.70752][0.819975,0.373215,0][-1.74425,0.431858,-0.110569][0.592658,0.625015,-1.67074][0.237853,0.325977,0][-1.81641,0.771127,-0.0494741][1.86727,0.851184,-1.70003][0.139786,0.343978,0][-1.79035,0.768068,0.0205514][2.61288,0.744946,0.0425209][0.144227,0.364611,0][-1.79035,0.768068,0.0205514][2.61288,0.744946,0.0425209][0.144227,0.364611,0][-1.69938,0.440704,0.014828][1.24699,1.01891,-0.554483][0.241839,0.362925,0][-1.74425,0.431858,-0.110569][0.592658,0.625015,-1.67074][0.237853,0.325977,0][-1.69938,0.440704,0.014828][1.24699,1.01891,-0.554483][0.241839,0.362925,0][-1.79035,0.768068,0.0205514][2.61288,0.744946,0.0425209][0.144227,0.364611,0][-1.81817,0.769319,0.0907389][1.83061,0.840232,1.74998][0.140009,0.385292,0][-1.81817,0.769319,0.0907389][1.83061,0.840232,1.74998][0.140009,0.385292,0][-1.74642,0.427774,0.140231][1.08891,0.884977,0.519818][0.238608,0.399874,0][-1.69938,0.440704,0.014828][1.24699,1.01891,-0.554483][0.241839,0.362925,0][-1.74642,0.427774,0.140231][1.08891,0.884977,0.519818][0.176481,0.21781,0][-1.81817,0.769319,0.0907389][1.83061,0.840232,1.74998][0.077882,0.188613,0][-1.88193,0.77403,0.118907][0.0584221,1.04231,2.3802][0.067737,0.204486,0][-1.88193,0.77403,0.118907][0.0584221,1.04231,2.3802][0.067737,0.204486,0][-1.85782,0.400638,0.192176][0.433996,0.410088,1.21057][0.167927,0.250491,0][-1.74642,0.427774,0.140231][1.08891,0.884977,0.519818][0.176481,0.21781,0][-1.85782,0.400638,0.192176][0.433996,0.410088,1.21057][0.167927,0.250491,0][-1.88193,0.77403,0.118907][0.0584221,1.04231,2.3802][0.067737,0.204486,0][-1.94481,0.779455,0.0906279][-1.64919,1.21047,1.66183][0.057531,0.22003,0][-1.94481,0.779455,0.0906279][-1.64919,1.21047,1.66183][0.057531,0.22003,0][-1.96831,0.375196,0.140238][-0.539225,-0.186297,1.23816][0.159059,0.282702,0][-1.85782,0.400638,0.192176][0.433996,0.410088,1.21057][0.167927,0.250491,0][-1.96831,0.375196,0.140238][-0.539225,-0.186297,1.23816][0.638233,0.115299,0][-1.94481,0.779455,0.0906279][-1.64919,1.21047,1.66183][0.536704,0.129917,0][-1.97088,0.782516,0.0206024][-2.36923,1.27224,-0.000304133][0.532263,0.15055,0][-1.97088,0.782516,0.0206024][-2.36923,1.27224,-0.000304133][0.532263,0.15055,0][-2.01318,0.366349,0.0148462][-1.31068,-0.578387,0.517631][0.634248,0.152245,0][-1.96831,0.375196,0.140238][-0.539225,-0.186297,1.23816][0.638233,0.115299,0][-2.01318,0.366349,0.0148462][-1.31068,-0.578387,0.517631][0.634248,0.152245,0][-1.97088,0.782516,0.0206024][-2.36923,1.27224,-0.000304133][0.532263,0.15055,0][-1.94305,0.781266,-0.0495851][-1.66331,1.21814,-1.67518][0.536481,0.17123,0][-1.94305,0.781266,-0.0495851][-1.66331,1.21814,-1.67518][0.536481,0.17123,0][-1.96614,0.379282,-0.110549][-0.548764,-0.118566,-1.23863][0.637478,0.189192,0][-2.01318,0.366349,0.0148462][-1.31068,-0.578387,0.517631][0.634248,0.152245,0][-0.862864,-0.937684,-1.07935][0,-1,-2.63368e-007][0.00492573,0.502407,0][-0.309217,-0.937684,-1.34635][0,-1,-2.97673e-007][0.924304,0.502407,0][-1.24584,-0.937684,-0.598582][1.43837e-007,-1,-1.38754e-007][0.0756475,0.502407,0][-0.309217,-0.937684,-1.34635][0,-1,-2.97673e-007][0.924304,0.502407,0][0.305446,-0.937684,-1.34668][0,-1,-2.23496e-007][0.853582,0.502407,0][0.859384,-0.937684,-1.08029][0,-1,-2.52849e-007][0.78286,0.502407,0][0.859384,-0.937684,-1.08029][0,-1,-2.52849e-007][0.78286,0.502407,0][1.24288,-0.937684,-0.599938][0,-1,-1.79182e-007][0.71214,0.502407,0][1.37998,-0.937684,-0.000759503][0,-1,-2.18157e-007][0.641418,0.502407,0][1.37998,-0.937684,-0.000759503][0,-1,-2.18157e-007][0.641418,0.502407,0][1.24354,-0.937684,0.598567][-1.31705e-007,-1,-2.28891e-007][0.570697,0.502407,0][0.860561,-0.937684,1.07934][0,-1,-1.5554e-007][0.499975,0.502407,0][0.860561,-0.937684,1.07934][0,-1,-1.5554e-007][0.499975,0.502407,0][0.306914,-0.937684,1.34633][0,-1,-2.23495e-007][0.429253,0.502407,0][-0.307749,-0.937684,1.34667][0,-1,-2.73694e-007][0.358533,0.502407,0][-0.307749,-0.937684,1.34667][0,-1,-2.73694e-007][0.358533,0.502407,0][-0.861687,-0.937684,1.08028][0,-1,0][0.287811,0.502407,0][-1.24519,-0.937684,0.599923][0,-1,-2.04161e-007][0.21709,0.502407,0][-1.24519,-0.937684,0.599923][0,-1,-2.04161e-007][0.21709,0.502407,0][-1.38229,-0.937684,0.00074496][0,-1,-1.9893e-007][0.146368,0.502407,0][-1.24584,-0.937684,-0.598582][1.43837e-007,-1,-1.38754e-007][0.0756475,0.502407,0][0.363829,-0.937684,1.12329][0,-3.45575,0][0.437811,0.502407,0][0.576855,-0.937684,1.01475][0,-3.1503,0][0.461862,0.502407,0][0.860561,-0.937684,1.07934][0,-1,-1.5554e-007][0.499975,0.502407,0][-0.00115135,-0.937684,1.1811][-1.21628e-007,-3.45575,-1.45504e-006][0.392877,0.502407,0][0.363829,-0.937684,1.12329][0,-3.45575,0][0.437811,0.502407,0][0.860561,-0.937684,1.07934][0,-1,-1.5554e-007][0.499975,0.502407,0][-0.00115135,-0.937684,1.1811][-1.21628e-007,-3.45575,-1.45504e-006][0.392877,0.502407,0][0.860561,-0.937684,1.07934][0,-1,-1.5554e-007][0.499975,0.502407,0][-0.307749,-0.937684,1.34667][0,-1,-2.73694e-007][0.358533,0.502407,0][-0.366132,-0.937684,1.12329][4.11436e-007,-3.45575,-1.02964e-006][0.344581,0.502407,0][-0.00115135,-0.937684,1.1811][-1.21628e-007,-3.45575,-1.45504e-006][0.392877,0.502407,0][-0.307749,-0.937684,1.34667][0,-1,-2.73694e-007][0.358533,0.502407,0][-0.695386,-0.937684,0.955527][-9.89449e-006,2.81292,1.02345e-005][0.29765,0.502407,0][-0.366132,-0.937684,1.12329][4.11436e-007,-3.45575,-1.02964e-006][0.344581,0.502407,0][-0.307749,-0.937684,1.34667][0,-1,-2.73694e-007][0.358533,0.502407,0][-0.964932,-0.937684,0.67804][2.11797e-007,-3.44123,-8.07489e-007][0.253631,0.502407,0][-0.695386,-0.937684,0.955527][-9.89449e-006,2.81292,1.02345e-005][0.29765,0.502407,0][-0.307749,-0.937684,1.34667][0,-1,-2.73694e-007][0.358533,0.502407,0][-0.964932,-0.937684,0.67804][2.11797e-007,-3.44123,-8.07489e-007][0.253631,0.502407,0][-0.307749,-0.937684,1.34667][0,-1,-2.73694e-007][0.358533,0.502407,0][-1.24519,-0.937684,0.599923][0,-1,-2.04161e-007][0.21709,0.502407,0][-1.12445,-0.937684,0.364975][3.95937e-007,-3.45575,-6.73229e-007][0.202354,0.502407,0][-0.964932,-0.937684,0.67804][2.11797e-007,-3.44123,-8.07489e-007][0.253631,0.502407,0][-1.24519,-0.937684,0.599923][0,-1,-2.04161e-007][0.21709,0.502407,0][-1.18225,-0.937684,-5.25305e-006][1.55582e-007,-3.45575,-6.97213e-007][0.153088,0.502407,0][-1.12445,-0.937684,0.364975][3.95937e-007,-3.45575,-6.73229e-007][0.202354,0.502407,0][-1.24519,-0.937684,0.599923][0,-1,-2.04161e-007][0.21709,0.502407,0][-1.18225,-0.937684,-5.25305e-006][1.55582e-007,-3.45575,-6.97213e-007][0.153088,0.502407,0][-1.24519,-0.937684,0.599923][0,-1,-2.04161e-007][0.21709,0.502407,0][-1.24584,-0.937684,-0.598582][1.43837e-007,-1,-1.38754e-007][0.0756475,0.502407,0][-1.12445,-0.937684,-0.364986][1.20679e-006,-3.45575,-6.27126e-007][0.11625,0.502407,0][-1.18225,-0.937684,-5.25305e-006][1.55582e-007,-3.45575,-6.97213e-007][0.153088,0.502407,0][-1.24584,-0.937684,-0.598582][1.43837e-007,-1,-1.38754e-007][0.0756475,0.502407,0][-1.12445,-0.937684,-0.364986][1.20679e-006,-3.45575,-6.27126e-007][0.11625,0.502407,0][-1.24584,-0.937684,-0.598582][1.43837e-007,-1,-1.38754e-007][0.0756475,0.502407,0][-1.07483,-0.937684,-0.462361][2.14919e-007,-3.14159,-2.69801e-007][0.110096,0.502407,0][0.693083,-0.937684,-0.955537][0,-3.45575,-1.68595e-006][0.715623,0.502407,0][0.575655,-0.937684,-1.01537][0,-3.14159,-4.786e-007][0.687546,0.502407,0][0.859384,-0.937684,-1.08029][0,-1,-2.52849e-007][0.78286,0.502407,0][0.859384,-0.937684,-1.08029][0,-1,-2.52849e-007][0.78286,0.502407,0][0.859543,-0.937684,-0.789077][6.4336e-007,-3.14159,-6.43359e-007][0.744715,0.502407,0][0.693083,-0.937684,-0.955537][0,-3.45575,-1.68595e-006][0.715623,0.502407,0][-0.695386,-0.937684,-0.955537][-6.468e-007,-3.4707,-1.63029e-006][0.491809,0.502407,0][-0.965189,-0.937684,-0.677546][8.93688e-007,-3.44081,5.79056e-007][0.20231,0.502407,0][-1.24584,-0.937684,-0.598582][1.43837e-007,-1,-1.38754e-007][0.0756475,0.502407,0][-0.695386,-0.937684,-0.955537][-6.468e-007,-3.4707,-1.63029e-006][0.491809,0.502407,0][-1.24584,-0.937684,-0.598582][1.43837e-007,-1,-1.38754e-007][0.0756475,0.502407,0][-0.309217,-0.937684,-1.34635][0,-1,-2.97673e-007][0.924304,0.502407,0][-0.366132,-0.937684,-1.1233][0,-3.45575,-9.0641e-007][0.694938,0.502407,0][-0.695386,-0.937684,-0.955537][-6.468e-007,-3.4707,-1.63029e-006][0.491809,0.502407,0][-0.309217,-0.937684,-1.34635][0,-1,-2.97673e-007][0.924304,0.502407,0][-0.00115156,-0.937684,-1.18111][1.98865e-007,-3.45575,-1.61729e-006][0.791813,0.502407,0][-0.366132,-0.937684,-1.1233][0,-3.45575,-9.0641e-007][0.694938,0.502407,0][-0.309217,-0.937684,-1.34635][0,-1,-2.97673e-007][0.924304,0.502407,0][0.363829,-0.937684,-1.1233][0,-3.45575,-1.13627e-006][0.772952,0.502407,0][-0.00115156,-0.937684,-1.18111][1.98865e-007,-3.45575,-1.61729e-006][0.791813,0.502407,0][-0.309217,-0.937684,-1.34635][0,-1,-2.97673e-007][0.924304,0.502407,0][0.363829,-0.937684,-1.1233][0,-3.45575,-1.13627e-006][0.772952,0.502407,0][-0.309217,-0.937684,-1.34635][0,-1,-2.97673e-007][0.924304,0.502407,0][0.859384,-0.937684,-1.08029][0,-1,-2.52849e-007][0.78286,0.502407,0][0.363829,-0.937684,-1.1233][0,-3.45575,-1.13627e-006][0.772952,0.502407,0][0.859384,-0.937684,-1.08029][0,-1,-2.52849e-007][0.78286,0.502407,0][0.575655,-0.937684,-1.01537][0,-3.14159,-4.786e-007][0.687546,0.502407,0][-0.869527,-0.531079,-1.0877][-0.615435,0.164322,-0.770868][0.00492573,0.601417,0][-1.25546,-0.531079,-0.60321][-0.888955,0.164321,-0.427502][0.0756475,0.601417,0][-1.18492,-0.510889,-0.569286][-0.851008,0.329086,-0.409253][0.0756475,0.601417,0][-1.18492,-0.510889,-0.569286][-0.851008,0.329086,-0.409253][0.0756475,0.601417,0][-0.820689,-0.510889,-1.02653][-0.589165,0.329086,-0.737962][0.00492573,0.601417,0][-0.869527,-0.531079,-1.0877][-0.615435,0.164322,-0.770868][0.00492573,0.601417,0][-1.31647,-0.93744,-0.632548][-0.888955,0.164321,-0.427501][0.0756475,0.502407,0][-0.911762,-0.93744,-1.1406][-0.615435,0.164322,-0.770868][0.00492573,0.502407,0][-0.862864,-0.937684,-1.07935][0,-1,-2.63368e-007][0.00492573,0.502407,0][-0.862864,-0.937684,-1.07935][0,-1,-2.63368e-007][0.00492573,0.502407,0][-1.24584,-0.937684,-0.598582][1.43837e-007,-1,-1.38754e-007][0.0756475,0.502407,0][-1.31647,-0.93744,-0.632548][-0.888955,0.164321,-0.427501][0.0756475,0.502407,0][-1.25546,-0.531079,-0.60321][-0.888955,0.164321,-0.427502][0.0756475,0.601417,0][-1.39297,-0.531079,0.000751451][-0.986407,0.164321,0.000537737][0.146368,0.601417,0][-1.31469,-0.510889,0.000708791][-0.9443,0.329086,0.000514577][0.146368,0.601417,0][-1.31469,-0.510889,0.000708791][-0.9443,0.329086,0.000514577][0.146368,0.601417,0][-1.18492,-0.510889,-0.569286][-0.851008,0.329086,-0.409253][0.0756475,0.601417,0][-1.25546,-0.531079,-0.60321][-0.888955,0.164321,-0.427502][0.0756475,0.601417,0][-1.46066,-0.93744,0.000787643][-0.986407,0.164322,0.000537123][0.146368,0.502407,0][-1.31647,-0.93744,-0.632548][-0.888955,0.164321,-0.427501][0.0756475,0.502407,0][-1.24584,-0.937684,-0.598582][1.43837e-007,-1,-1.38754e-007][0.0756475,0.502407,0][-1.24584,-0.937684,-0.598582][1.43837e-007,-1,-1.38754e-007][0.0756475,0.502407,0][-1.38229,-0.937684,0.00074496][0,-1,-1.9893e-007][0.146368,0.502407,0][-1.46066,-0.93744,0.000787643][-0.986407,0.164322,0.000537123][0.146368,0.502407,0][-1.39297,-0.531079,0.000751451][-0.986407,0.164321,0.000537737][0.146368,0.601417,0][-1.2548,-0.531079,0.604561][-0.888489,0.164322,0.42847][0.21709,0.601417,0][-1.1843,-0.51089,0.57056][-0.850562,0.329086,0.41018][0.21709,0.601417,0][-1.1843,-0.51089,0.57056][-0.850562,0.329086,0.41018][0.21709,0.601417,0][-1.31469,-0.510889,0.000708791][-0.9443,0.329086,0.000514577][0.146368,0.601417,0][-1.39297,-0.531079,0.000751451][-0.986407,0.164321,0.000537737][0.146368,0.601417,0][-1.31578,-0.93744,0.633966][-0.888489,0.164322,0.42847][0.21709,0.502407,0][-1.46066,-0.93744,0.000787643][-0.986407,0.164322,0.000537123][0.146368,0.502407,0][-1.38229,-0.937684,0.00074496][0,-1,-1.9893e-007][0.146368,0.502407,0][-1.38229,-0.937684,0.00074496][0,-1,-1.9893e-007][0.146368,0.502407,0][-1.24519,-0.937684,0.599923][0,-1,-2.04161e-007][0.21709,0.502407,0][-1.31578,-0.93744,0.633966][-0.888489,0.164322,0.42847][0.21709,0.502407,0][-1.2548,-0.531079,0.604561][-0.888489,0.164322,0.42847][0.21709,0.601417,0][-0.868341,-0.531079,1.08863][-0.614594,0.16432,0.771539][0.287811,0.601417,0][-0.81957,-0.51089,1.02741][-0.588359,0.329086,0.738604][0.287811,0.601417,0][-0.81957,-0.51089,1.02741][-0.588359,0.329086,0.738604][0.287811,0.601417,0][-1.1843,-0.51089,0.57056][-0.850562,0.329086,0.41018][0.21709,0.601417,0][-1.2548,-0.531079,0.604561][-0.888489,0.164322,0.42847][0.21709,0.601417,0][-0.910518,-0.93744,1.14158][-0.614594,0.16432,0.771539][0.287811,0.502407,0][-1.31578,-0.93744,0.633966][-0.888489,0.164322,0.42847][0.21709,0.502407,0][-1.24519,-0.937684,0.599923][0,-1,-2.04161e-007][0.21709,0.502407,0][-1.24519,-0.937684,0.599923][0,-1,-2.04161e-007][0.21709,0.502407,0][-0.861687,-0.937684,1.08028][0,-1,0][0.287811,0.502407,0][-0.910518,-0.93744,1.14158][-0.614594,0.16432,0.771539][0.287811,0.502407,0][-0.868341,-0.531079,1.08863][-0.614594,0.16432,0.771539][0.287811,0.601417,0][-0.310119,-0.531079,1.35708][-0.218972,0.16432,0.961795][0.358533,0.601417,0][-0.292743,-0.51089,1.28076][-0.209625,0.329085,0.920739][0.358533,0.601417,0][-0.292743,-0.51089,1.28076][-0.209625,0.329085,0.920739][0.358533,0.601417,0][-0.81957,-0.51089,1.02741][-0.588359,0.329086,0.738604][0.287811,0.601417,0][-0.868341,-0.531079,1.08863][-0.614594,0.16432,0.771539][0.287811,0.601417,0][-0.325147,-0.93744,1.42308][-0.218972,0.164321,0.961795][0.358533,0.502407,0][-0.910518,-0.93744,1.14158][-0.614594,0.16432,0.771539][0.287811,0.502407,0][-0.861687,-0.937684,1.08028][0,-1,0][0.287811,0.502407,0][-0.861687,-0.937684,1.08028][0,-1,0][0.287811,0.502407,0][-0.307749,-0.937684,1.34667][0,-1,-2.73694e-007][0.358533,0.502407,0][-0.325147,-0.93744,1.42308][-0.218972,0.164321,0.961795][0.358533,0.502407,0][-0.310119,-0.531079,1.35708][-0.218972,0.16432,0.961795][0.358533,0.601417,0][0.309295,-0.531079,1.35674][0.220019,0.164322,0.961556][0.429253,0.601417,0][0.291836,-0.51089,1.28044][0.210628,0.329086,0.92051][0.429253,0.601417,0][0.291836,-0.51089,1.28044][0.210628,0.329086,0.92051][0.429253,0.601417,0][-0.292743,-0.51089,1.28076][-0.209625,0.329085,0.920739][0.358533,0.601417,0][-0.310119,-0.531079,1.35708][-0.218972,0.16432,0.961795][0.358533,0.601417,0][0.324395,-0.93744,1.42273][0.22002,0.164322,0.961556][0.429253,0.502407,0][-0.325147,-0.93744,1.42308][-0.218972,0.164321,0.961795][0.358533,0.502407,0][-0.307749,-0.937684,1.34667][0,-1,-2.73694e-007][0.358533,0.502407,0][-0.307749,-0.937684,1.34667][0,-1,-2.73694e-007][0.358533,0.502407,0][0.306914,-0.937684,1.34633][0,-1,-2.23495e-007][0.429253,0.502407,0][0.324395,-0.93744,1.42273][0.22002,0.164322,0.961556][0.429253,0.502407,0][0.309295,-0.531079,1.35674][0.220019,0.164322,0.961556][0.429253,0.601417,0][0.867224,-0.531079,1.08768][0.615435,0.164321,0.770868][0.499975,0.601417,0][0.818386,-0.51089,1.02651][0.589164,0.329086,0.737962][0.499975,0.601417,0][0.818386,-0.51089,1.02651][0.589164,0.329086,0.737962][0.499975,0.601417,0][0.291836,-0.51089,1.28044][0.210628,0.329086,0.92051][0.429253,0.601417,0][0.309295,-0.531079,1.35674][0.220019,0.164322,0.961556][0.429253,0.601417,0][0.909459,-0.93744,1.14059][0.615435,0.164321,0.770868][0.499975,0.502407,0][0.324395,-0.93744,1.42273][0.22002,0.164322,0.961556][0.429253,0.502407,0][0.306914,-0.937684,1.34633][0,-1,-2.23495e-007][0.429253,0.502407,0][0.306914,-0.937684,1.34633][0,-1,-2.23495e-007][0.429253,0.502407,0][0.860561,-0.937684,1.07934][0,-1,-1.5554e-007][0.499975,0.502407,0][0.909459,-0.93744,1.14059][0.615435,0.164321,0.770868][0.499975,0.502407,0][0.867224,-0.531079,1.08768][0.615435,0.164321,0.770868][0.499975,0.601417,0][1.25316,-0.531079,0.603195][0.888955,0.164321,0.427502][0.570697,0.601417,0][1.18262,-0.51089,0.569271][0.851008,0.329086,0.409253][0.570697,0.601417,0][1.18262,-0.51089,0.569271][0.851008,0.329086,0.409253][0.570697,0.601417,0][0.818386,-0.51089,1.02651][0.589164,0.329086,0.737962][0.499975,0.601417,0][0.867224,-0.531079,1.08768][0.615435,0.164321,0.770868][0.499975,0.601417,0][1.31416,-0.93744,0.632533][0.888955,0.164321,0.427502][0.570697,0.502407,0][0.909459,-0.93744,1.14059][0.615435,0.164321,0.770868][0.499975,0.502407,0][0.860561,-0.937684,1.07934][0,-1,-1.5554e-007][0.499975,0.502407,0][0.860561,-0.937684,1.07934][0,-1,-1.5554e-007][0.499975,0.502407,0][1.24354,-0.937684,0.598567][-1.31705e-007,-1,-2.28891e-007][0.570697,0.502407,0][1.31416,-0.93744,0.632533][0.888955,0.164321,0.427502][0.570697,0.502407,0][1.25316,-0.531079,0.603195][0.888955,0.164321,0.427502][0.570697,0.601417,0][1.39066,-0.531079,-0.00076584][0.986407,0.164321,-0.000537443][0.641418,0.601417,0][1.31239,-0.510889,-0.000723167][0.9443,0.329086,-0.000514228][0.641418,0.601417,0][1.31239,-0.510889,-0.000723167][0.9443,0.329086,-0.000514228][0.641418,0.601417,0][1.18262,-0.51089,0.569271][0.851008,0.329086,0.409253][0.570697,0.601417,0][1.25316,-0.531079,0.603195][0.888955,0.164321,0.427502][0.570697,0.601417,0][1.45836,-0.93744,-0.00080219][0.986407,0.164321,-0.000536907][0.641418,0.502407,0][1.31416,-0.93744,0.632533][0.888955,0.164321,0.427502][0.570697,0.502407,0][1.24354,-0.937684,0.598567][-1.31705e-007,-1,-2.28891e-007][0.570697,0.502407,0][1.24354,-0.937684,0.598567][-1.31705e-007,-1,-2.28891e-007][0.570697,0.502407,0][1.37998,-0.937684,-0.000759503][0,-1,-2.18157e-007][0.641418,0.502407,0][1.45836,-0.93744,-0.00080219][0.986407,0.164321,-0.000536907][0.641418,0.502407,0][1.39066,-0.531079,-0.00076584][0.986407,0.164321,-0.000537443][0.641418,0.601417,0][1.2525,-0.531079,-0.604577][0.888488,0.164321,-0.42847][0.71214,0.601417,0][1.182,-0.510889,-0.570576][0.850561,0.329086,-0.41018][0.71214,0.601417,0][1.182,-0.510889,-0.570576][0.850561,0.329086,-0.41018][0.71214,0.601417,0][1.31239,-0.510889,-0.000723167][0.9443,0.329086,-0.000514228][0.641418,0.601417,0][1.39066,-0.531079,-0.00076584][0.986407,0.164321,-0.000537443][0.641418,0.601417,0][1.31347,-0.93744,-0.63398][0.888489,0.164321,-0.42847][0.71214,0.502407,0][1.45836,-0.93744,-0.00080219][0.986407,0.164321,-0.000536907][0.641418,0.502407,0][1.37998,-0.937684,-0.000759503][0,-1,-2.18157e-007][0.641418,0.502407,0][1.37998,-0.937684,-0.000759503][0,-1,-2.18157e-007][0.641418,0.502407,0][1.24288,-0.937684,-0.599938][0,-1,-1.79182e-007][0.71214,0.502407,0][1.31347,-0.93744,-0.63398][0.888489,0.164321,-0.42847][0.71214,0.502407,0][1.2525,-0.531079,-0.604577][0.888488,0.164321,-0.42847][0.71214,0.601417,0][0.866038,-0.531079,-1.08864][0.614594,0.16432,-0.771539][0.78286,0.601417,0][0.817267,-0.510889,-1.02742][0.588359,0.329086,-0.738604][0.78286,0.601417,0][0.817267,-0.510889,-1.02742][0.588359,0.329086,-0.738604][0.78286,0.601417,0][1.182,-0.510889,-0.570576][0.850561,0.329086,-0.41018][0.71214,0.601417,0][1.2525,-0.531079,-0.604577][0.888488,0.164321,-0.42847][0.71214,0.601417,0][0.908215,-0.93744,-1.14159][0.614594,0.16432,-0.77154][0.78286,0.502407,0][1.31347,-0.93744,-0.63398][0.888489,0.164321,-0.42847][0.71214,0.502407,0][1.24288,-0.937684,-0.599938][0,-1,-1.79182e-007][0.71214,0.502407,0][1.24288,-0.937684,-0.599938][0,-1,-1.79182e-007][0.71214,0.502407,0][0.859384,-0.937684,-1.08029][0,-1,-2.52849e-007][0.78286,0.502407,0][0.908215,-0.93744,-1.14159][0.614594,0.16432,-0.77154][0.78286,0.502407,0][0.866038,-0.531079,-1.08864][0.614594,0.16432,-0.771539][0.78286,0.601417,0][0.307816,-0.531079,-1.35709][0.218972,0.164321,-0.961795][0.853582,0.601417,0][0.29044,-0.510889,-1.28077][0.209625,0.329086,-0.920739][0.853582,0.601417,0][0.29044,-0.510889,-1.28077][0.209625,0.329086,-0.920739][0.853582,0.601417,0][0.817267,-0.510889,-1.02742][0.588359,0.329086,-0.738604][0.78286,0.601417,0][0.866038,-0.531079,-1.08864][0.614594,0.16432,-0.771539][0.78286,0.601417,0][0.322844,-0.93744,-1.4231][0.218972,0.164321,-0.961795][0.853582,0.502407,0][0.908215,-0.93744,-1.14159][0.614594,0.16432,-0.77154][0.78286,0.502407,0][0.859384,-0.937684,-1.08029][0,-1,-2.52849e-007][0.78286,0.502407,0][0.859384,-0.937684,-1.08029][0,-1,-2.52849e-007][0.78286,0.502407,0][0.305446,-0.937684,-1.34668][0,-1,-2.23496e-007][0.853582,0.502407,0][0.322844,-0.93744,-1.4231][0.218972,0.164321,-0.961795][0.853582,0.502407,0][0.307816,-0.531079,-1.35709][0.218972,0.164321,-0.961795][0.853582,0.601417,0][-0.3116,-0.531079,-1.35676][-0.22002,0.164322,-0.961556][0.924304,0.601417,0][-0.29414,-0.510889,-1.28045][-0.210628,0.329086,-0.92051][0.924304,0.601417,0][-0.29414,-0.510889,-1.28045][-0.210628,0.329086,-0.92051][0.924304,0.601417,0][0.29044,-0.510889,-1.28077][0.209625,0.329086,-0.920739][0.853582,0.601417,0][0.307816,-0.531079,-1.35709][0.218972,0.164321,-0.961795][0.853582,0.601417,0][-0.326698,-0.93744,-1.42275][-0.22002,0.164322,-0.961556][0.924304,0.502407,0][0.322844,-0.93744,-1.4231][0.218972,0.164321,-0.961795][0.853582,0.502407,0][0.305446,-0.937684,-1.34668][0,-1,-2.23496e-007][0.853582,0.502407,0][0.305446,-0.937684,-1.34668][0,-1,-2.23496e-007][0.853582,0.502407,0][-0.309217,-0.937684,-1.34635][0,-1,-2.97673e-007][0.924304,0.502407,0][-0.326698,-0.93744,-1.42275][-0.22002,0.164322,-0.961556][0.924304,0.502407,0][-0.3116,-0.531079,-1.35676][-0.22002,0.164322,-0.961556][0.924304,0.601417,0][-0.869527,-0.531079,-1.0877][-0.615435,0.164322,-0.770868][0.995025,0.601417,0][-0.820689,-0.510889,-1.02653][-0.589165,0.329086,-0.737962][0.995025,0.601417,0][-0.820689,-0.510889,-1.02653][-0.589165,0.329086,-0.737962][0.995025,0.601417,0][-0.29414,-0.510889,-1.28045][-0.210628,0.329086,-0.92051][0.924304,0.601417,0][-0.3116,-0.531079,-1.35676][-0.22002,0.164322,-0.961556][0.924304,0.601417,0][-0.911762,-0.93744,-1.1406][-0.615435,0.164322,-0.770868][0.995025,0.502407,0][-0.326698,-0.93744,-1.42275][-0.22002,0.164322,-0.961556][0.924304,0.502407,0][-0.309217,-0.937684,-1.34635][0,-1,-2.97673e-007][0.924304,0.502407,0][-0.309217,-0.937684,-1.34635][0,-1,-2.97673e-007][0.924304,0.502407,0][-0.862864,-0.937684,-1.07935][0,-1,-2.63368e-007][0.995025,0.502407,0][-0.911762,-0.93744,-1.1406][-0.615435,0.164322,-0.770868][0.995025,0.502407,0][0.95438,-0.937684,-0.69424][-1.82924e-007,-3.45575,-4.8854e-007][0.732285,0.502407,0][0.859543,-0.937684,-0.789077][6.4336e-007,-3.14159,-6.43359e-007][0.744715,0.502407,0][0.859384,-0.937684,-1.08029][0,-1,-2.52849e-007][0.78286,0.502407,0][1.12214,-0.937684,-0.364986][-1.3699e-006,-3.45575,-1.46233e-007][0.689145,0.502407,0][0.95438,-0.937684,-0.69424][-1.82924e-007,-3.45575,-4.8854e-007][0.732285,0.502407,0][0.859384,-0.937684,-1.08029][0,-1,-2.52849e-007][0.78286,0.502407,0][1.12214,-0.937684,-0.364986][-1.3699e-006,-3.45575,-1.46233e-007][0.689145,0.502407,0][0.859384,-0.937684,-1.08029][0,-1,-2.52849e-007][0.78286,0.502407,0][1.37998,-0.937684,-0.000759503][0,-1,-2.18157e-007][0.641418,0.502407,0][1.17995,-0.937684,-5.35532e-006][0,-3.45575,-8.4575e-007][0.641333,0.502407,0][1.12214,-0.937684,-0.364986][-1.3699e-006,-3.45575,-1.46233e-007][0.689145,0.502407,0][1.37998,-0.937684,-0.000759503][0,-1,-2.18157e-007][0.641418,0.502407,0][1.12214,-0.937684,0.364975][0,-3.45575,-5.82885e-007][0.59353,0.502407,0][1.17995,-0.937684,-5.35532e-006][0,-3.45575,-8.4575e-007][0.641333,0.502407,0][1.37998,-0.937684,-0.000759503][0,-1,-2.18157e-007][0.641418,0.502407,0][1.12214,-0.937684,0.364975][0,-3.45575,-5.82885e-007][0.59353,0.502407,0][1.37998,-0.937684,-0.000759503][0,-1,-2.18157e-007][0.641418,0.502407,0][0.860561,-0.937684,1.07934][0,-1,-1.5554e-007][0.499975,0.502407,0][0.95438,-0.937684,0.694229][1.75459e-007,-3.45575,-4.92112e-007][0.550413,0.502407,0][1.12214,-0.937684,0.364975][0,-3.45575,-5.82885e-007][0.59353,0.502407,0][0.860561,-0.937684,1.07934][0,-1,-1.5554e-007][0.499975,0.502407,0][0.95438,-0.937684,0.694229][1.75459e-007,-3.45575,-4.92112e-007][0.550413,0.502407,0][0.860561,-0.937684,1.07934][0,-1,-1.5554e-007][0.499975,0.502407,0][0.860403,-0.937684,0.788207][-3.58474e-007,-3.14159,-6.42995e-007][0.53811,0.502407,0][-1.07483,-0.937684,-0.462361][2.14919e-007,-3.14159,-2.69801e-007][0.110096,0.502407,0][-1.24584,-0.937684,-0.598582][1.43837e-007,-1,-1.38754e-007][0.0756475,0.502407,0][-0.965189,-0.937684,-0.677546][8.93688e-007,-3.44081,5.79056e-007][0.20231,0.502407,0][0.695754,-0.937684,0.952855][2.26354e-007,-3.44704,-2.94937e-007][0.467369,0.502407,0][0.860561,-0.937684,1.07934][0,-1,-1.5554e-007][0.499975,0.502407,0][0.576855,-0.937684,1.01475][0,-3.1503,0][0.461862,0.502407,0][0.860403,-0.937684,0.788207][-3.58474e-007,-3.14159,-6.42995e-007][0.53811,0.502407,0][0.860561,-0.937684,1.07934][0,-1,-1.5554e-007][0.499975,0.502407,0][0.695754,-0.937684,0.952855][2.26354e-007,-3.44704,-2.94937e-007][0.467369,0.502407,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][0.544995,-0.305886,-0.177459][-0.082025,-0.996274,0.0266513][0.230416,0.120023,0][0.573101,-0.305886,-5.24086e-006][-0.0862462,-0.996274,-2.56233e-007][0.2325,0.106866,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][0.463428,-0.305886,-0.337542][-0.0697746,-0.996274,0.050694][0.224368,0.131892,0][0.544995,-0.305886,-0.177459][-0.082025,-0.996274,0.0266513][0.230416,0.120023,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][0.336385,-0.305886,-0.464585][-0.0506942,-0.996274,0.0697744][0.214949,0.141312,0][0.463428,-0.305886,-0.337542][-0.0697746,-0.996274,0.050694][0.224368,0.131892,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][0.176302,-0.305886,-0.546152][-0.0266515,-0.996274,0.0820248][0.20308,0.14736,0][0.336385,-0.305886,-0.464585][-0.0506942,-0.996274,0.0697744][0.214949,0.141312,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][-0.00115154,-0.305886,-0.574258][0,-0.996274,0.0862459][0.189923,0.149443,0][0.176302,-0.305886,-0.546152][-0.0266515,-0.996274,0.0820248][0.20308,0.14736,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][-0.178605,-0.305886,-0.546152][0.0266515,-0.996274,0.0820248][0.176765,0.14736,0][-0.00115154,-0.305886,-0.574258][0,-0.996274,0.0862459][0.189923,0.149443,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][-0.338689,-0.305886,-0.464585][0.0506942,-0.996274,0.0697745][0.164896,0.141312,0][-0.178605,-0.305886,-0.546152][0.0266515,-0.996274,0.0820248][0.176765,0.14736,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][-0.465731,-0.305886,-0.337542][0.0697746,-0.996274,0.050694][0.155477,0.131892,0][-0.338689,-0.305886,-0.464585][0.0506942,-0.996274,0.0697745][0.164896,0.141312,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][-0.547298,-0.305886,-0.177459][0.082025,-0.996274,0.0266514][0.149429,0.120023,0][-0.465731,-0.305886,-0.337542][0.0697746,-0.996274,0.050694][0.155477,0.131892,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][-0.575404,-0.305886,-5.19066e-006][0.0862461,-0.996274,-2.34944e-007][0.147345,0.106866,0][-0.547298,-0.305886,-0.177459][0.082025,-0.996274,0.0266514][0.149429,0.120023,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][-0.547298,-0.305886,0.177449][0.0820249,-0.996274,-0.0266518][0.149429,0.0937089,0][-0.575404,-0.305886,-5.19066e-006][0.0862461,-0.996274,-2.34944e-007][0.147345,0.106866,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][-0.465731,-0.305886,0.337532][0.0697746,-0.996274,-0.0506944][0.155477,0.0818396,0][-0.547298,-0.305886,0.177449][0.0820249,-0.996274,-0.0266518][0.149429,0.0937089,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][-0.338688,-0.305886,0.464575][0.0506942,-0.996274,-0.0697748][0.164896,0.0724202,0][-0.465731,-0.305886,0.337532][0.0697746,-0.996274,-0.0506944][0.155477,0.0818396,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][-0.178605,-0.305886,0.546141][0.0266515,-0.996274,-0.0820252][0.176765,0.0663725,0][-0.338688,-0.305886,0.464575][0.0506942,-0.996274,-0.0697748][0.164896,0.0724202,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][-0.00115144,-0.305886,0.574247][0,-0.996274,-0.0862463][0.189923,0.0642886,0][-0.178605,-0.305886,0.546141][0.0266515,-0.996274,-0.0820252][0.176765,0.0663725,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][0.176302,-0.305886,0.546141][-0.0266515,-0.996274,-0.0820252][0.20308,0.0663725,0][-0.00115144,-0.305886,0.574247][0,-0.996274,-0.0862463][0.189923,0.0642886,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][0.336386,-0.305886,0.464575][-0.0506942,-0.996274,-0.0697748][0.214949,0.0724202,0][0.176302,-0.305886,0.546141][-0.0266515,-0.996274,-0.0820252][0.20308,0.0663725,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][0.463428,-0.305886,0.337532][-0.0697747,-0.996274,-0.0506943][0.224368,0.0818396,0][0.336386,-0.305886,0.464575][-0.0506942,-0.996274,-0.0697748][0.214949,0.0724202,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][0.544995,-0.305886,0.177448][-0.082025,-0.996274,-0.0266518][0.230416,0.0937089,0][0.463428,-0.305886,0.337532][-0.0697747,-0.996274,-0.0506943][0.224368,0.0818396,0][-0.00115151,-0.305886,-5.24086e-006][0,-1,-1.95939e-007][0.189923,0.106866,0][0.573101,-0.305886,-5.24086e-006][-0.0862462,-0.996274,-2.56233e-007][0.2325,0.106866,0][0.544995,-0.305886,0.177448][-0.082025,-0.996274,-0.0266518][0.230416,0.0937089,0][0.723344,-0.335587,-0.235408][-0.307213,-0.946391,0.0998194][0.24364,0.12432,0][0.760628,-0.335587,-5.24665e-006][-0.323023,-0.946391,-2.13439e-007][0.246404,0.106866,0][0.573101,-0.305886,-5.24086e-006][-0.0862462,-0.996274,-2.56233e-007][0.2325,0.106866,0][0.573101,-0.305886,-5.24086e-006][-0.0862462,-0.996274,-2.56233e-007][0.2325,0.106866,0][0.544995,-0.305886,-0.177459][-0.082025,-0.996274,0.0266513][0.230416,0.120023,0][0.723344,-0.335587,-0.235408][-0.307213,-0.946391,0.0998194][0.24364,0.12432,0][0.615141,-0.335587,-0.447768][-0.261331,-0.946391,0.189868][0.235617,0.140065,0][0.723344,-0.335587,-0.235408][-0.307213,-0.946391,0.0998194][0.24364,0.12432,0][0.544995,-0.305886,-0.177459][-0.082025,-0.996274,0.0266513][0.230416,0.120023,0][0.544995,-0.305886,-0.177459][-0.082025,-0.996274,0.0266513][0.230416,0.120023,0][0.463428,-0.305886,-0.337542][-0.0697746,-0.996274,0.050694][0.224368,0.131892,0][0.615141,-0.335587,-0.447768][-0.261331,-0.946391,0.189868][0.235617,0.140065,0][0.446611,-0.335587,-0.616298][-0.189868,-0.946391,0.261331][0.223122,0.15256,0][0.615141,-0.335587,-0.447768][-0.261331,-0.946391,0.189868][0.235617,0.140065,0][0.463428,-0.305886,-0.337542][-0.0697746,-0.996274,0.050694][0.224368,0.131892,0][0.463428,-0.305886,-0.337542][-0.0697746,-0.996274,0.050694][0.224368,0.131892,0][0.336385,-0.305886,-0.464585][-0.0506942,-0.996274,0.0697744][0.214949,0.141312,0][0.446611,-0.335587,-0.616298][-0.189868,-0.946391,0.261331][0.223122,0.15256,0][0.234251,-0.335587,-0.7245][-0.0998196,-0.946391,0.307213][0.207376,0.160583,0][0.446611,-0.335587,-0.616298][-0.189868,-0.946391,0.261331][0.223122,0.15256,0][0.336385,-0.305886,-0.464585][-0.0506942,-0.996274,0.0697744][0.214949,0.141312,0][0.336385,-0.305886,-0.464585][-0.0506942,-0.996274,0.0697744][0.214949,0.141312,0][0.176302,-0.305886,-0.546152][-0.0266515,-0.996274,0.0820248][0.20308,0.14736,0][0.234251,-0.335587,-0.7245][-0.0998196,-0.946391,0.307213][0.207376,0.160583,0][-0.00115155,-0.335587,-0.761785][0,-0.946391,0.323023][0.189923,0.163347,0][0.234251,-0.335587,-0.7245][-0.0998196,-0.946391,0.307213][0.207376,0.160583,0][0.176302,-0.305886,-0.546152][-0.0266515,-0.996274,0.0820248][0.20308,0.14736,0][0.176302,-0.305886,-0.546152][-0.0266515,-0.996274,0.0820248][0.20308,0.14736,0][-0.00115154,-0.305886,-0.574258][0,-0.996274,0.0862459][0.189923,0.149443,0][-0.00115155,-0.335587,-0.761785][0,-0.946391,0.323023][0.189923,0.163347,0][-0.236554,-0.335587,-0.7245][0.0998197,-0.946391,0.307213][0.172469,0.160583,0][-0.00115155,-0.335587,-0.761785][0,-0.946391,0.323023][0.189923,0.163347,0][-0.00115154,-0.305886,-0.574258][0,-0.996274,0.0862459][0.189923,0.149443,0][-0.00115154,-0.305886,-0.574258][0,-0.996274,0.0862459][0.189923,0.149443,0][-0.178605,-0.305886,-0.546152][0.0266515,-0.996274,0.0820248][0.176765,0.14736,0][-0.236554,-0.335587,-0.7245][0.0998197,-0.946391,0.307213][0.172469,0.160583,0][-0.448914,-0.335587,-0.616298][0.189868,-0.946391,0.261331][0.156724,0.15256,0][-0.236554,-0.335587,-0.7245][0.0998197,-0.946391,0.307213][0.172469,0.160583,0][-0.178605,-0.305886,-0.546152][0.0266515,-0.996274,0.0820248][0.176765,0.14736,0][-0.178605,-0.305886,-0.546152][0.0266515,-0.996274,0.0820248][0.176765,0.14736,0][-0.338689,-0.305886,-0.464585][0.0506942,-0.996274,0.0697745][0.164896,0.141312,0][-0.448914,-0.335587,-0.616298][0.189868,-0.946391,0.261331][0.156724,0.15256,0][-0.617444,-0.335587,-0.447768][0.261331,-0.946391,0.189868][0.144228,0.140065,0][-0.448914,-0.335587,-0.616298][0.189868,-0.946391,0.261331][0.156724,0.15256,0][-0.338689,-0.305886,-0.464585][0.0506942,-0.996274,0.0697745][0.164896,0.141312,0][-0.338689,-0.305886,-0.464585][0.0506942,-0.996274,0.0697745][0.164896,0.141312,0][-0.465731,-0.305886,-0.337542][0.0697746,-0.996274,0.050694][0.155477,0.131892,0][-0.617444,-0.335587,-0.447768][0.261331,-0.946391,0.189868][0.144228,0.140065,0][-0.725647,-0.335587,-0.235408][0.307213,-0.946391,0.0998194][0.136205,0.12432,0][-0.617444,-0.335587,-0.447768][0.261331,-0.946391,0.189868][0.144228,0.140065,0][-0.465731,-0.305886,-0.337542][0.0697746,-0.996274,0.050694][0.155477,0.131892,0][-0.465731,-0.305886,-0.337542][0.0697746,-0.996274,0.050694][0.155477,0.131892,0][-0.547298,-0.305886,-0.177459][0.082025,-0.996274,0.0266514][0.149429,0.120023,0][-0.725647,-0.335587,-0.235408][0.307213,-0.946391,0.0998194][0.136205,0.12432,0][-0.762931,-0.335587,-5.18005e-006][0.323023,-0.946391,-1.71935e-007][0.133441,0.106866,0][-0.725647,-0.335587,-0.235408][0.307213,-0.946391,0.0998194][0.136205,0.12432,0][-0.547298,-0.305886,-0.177459][0.082025,-0.996274,0.0266514][0.149429,0.120023,0][-0.547298,-0.305886,-0.177459][0.082025,-0.996274,0.0266514][0.149429,0.120023,0][-0.575404,-0.305886,-5.19066e-006][0.0862461,-0.996274,-2.34944e-007][0.147345,0.106866,0][-0.762931,-0.335587,-5.18005e-006][0.323023,-0.946391,-1.71935e-007][0.133441,0.106866,0][-0.725647,-0.335588,0.235398][0.307213,-0.946391,-0.0998198][0.136205,0.0894123,0][-0.762931,-0.335587,-5.18005e-006][0.323023,-0.946391,-1.71935e-007][0.133441,0.106866,0][-0.575404,-0.305886,-5.19066e-006][0.0862461,-0.996274,-2.34944e-007][0.147345,0.106866,0][-0.575404,-0.305886,-5.19066e-006][0.0862461,-0.996274,-2.34944e-007][0.147345,0.106866,0][-0.547298,-0.305886,0.177449][0.0820249,-0.996274,-0.0266518][0.149429,0.0937089,0][-0.725647,-0.335588,0.235398][0.307213,-0.946391,-0.0998198][0.136205,0.0894123,0][-0.617444,-0.335588,0.447757][0.261331,-0.946391,-0.189868][0.144228,0.073667,0][-0.725647,-0.335588,0.235398][0.307213,-0.946391,-0.0998198][0.136205,0.0894123,0][-0.547298,-0.305886,0.177449][0.0820249,-0.996274,-0.0266518][0.149429,0.0937089,0][-0.547298,-0.305886,0.177449][0.0820249,-0.996274,-0.0266518][0.149429,0.0937089,0][-0.465731,-0.305886,0.337532][0.0697746,-0.996274,-0.0506944][0.155477,0.0818396,0][-0.617444,-0.335588,0.447757][0.261331,-0.946391,-0.189868][0.144228,0.073667,0][-0.448914,-0.335588,0.616287][0.189868,-0.946391,-0.261331][0.156724,0.0611715,0][-0.617444,-0.335588,0.447757][0.261331,-0.946391,-0.189868][0.144228,0.073667,0][-0.465731,-0.305886,0.337532][0.0697746,-0.996274,-0.0506944][0.155477,0.0818396,0][-0.465731,-0.305886,0.337532][0.0697746,-0.996274,-0.0506944][0.155477,0.0818396,0][-0.338688,-0.305886,0.464575][0.0506942,-0.996274,-0.0697748][0.164896,0.0724202,0][-0.448914,-0.335588,0.616287][0.189868,-0.946391,-0.261331][0.156724,0.0611715,0][-0.236554,-0.335588,0.72449][0.0998196,-0.946391,-0.307213][0.172469,0.0531489,0][-0.448914,-0.335588,0.616287][0.189868,-0.946391,-0.261331][0.156724,0.0611715,0][-0.338688,-0.305886,0.464575][0.0506942,-0.996274,-0.0697748][0.164896,0.0724202,0][-0.338688,-0.305886,0.464575][0.0506942,-0.996274,-0.0697748][0.164896,0.0724202,0][-0.178605,-0.305886,0.546141][0.0266515,-0.996274,-0.0820252][0.176765,0.0663725,0][-0.236554,-0.335588,0.72449][0.0998196,-0.946391,-0.307213][0.172469,0.0531489,0][-0.00115141,-0.335588,0.761774][0,-0.946391,-0.323023][0.189923,0.0503845,0][-0.236554,-0.335588,0.72449][0.0998196,-0.946391,-0.307213][0.172469,0.0531489,0][-0.178605,-0.305886,0.546141][0.0266515,-0.996274,-0.0820252][0.176765,0.0663725,0][-0.178605,-0.305886,0.546141][0.0266515,-0.996274,-0.0820252][0.176765,0.0663725,0][-0.00115144,-0.305886,0.574247][0,-0.996274,-0.0862463][0.189923,0.0642886,0][-0.00115141,-0.335588,0.761774][0,-0.946391,-0.323023][0.189923,0.0503845,0][0.234251,-0.335588,0.72449][-0.0998197,-0.946391,-0.307213][0.207376,0.0531489,0][-0.00115141,-0.335588,0.761774][0,-0.946391,-0.323023][0.189923,0.0503845,0][-0.00115144,-0.305886,0.574247][0,-0.996274,-0.0862463][0.189923,0.0642886,0][-0.00115144,-0.305886,0.574247][0,-0.996274,-0.0862463][0.189923,0.0642886,0][0.176302,-0.305886,0.546141][-0.0266515,-0.996274,-0.0820252][0.20308,0.0663725,0][0.234251,-0.335588,0.72449][-0.0998197,-0.946391,-0.307213][0.207376,0.0531489,0][0.446611,-0.335588,0.616287][-0.189868,-0.946391,-0.261331][0.223122,0.0611716,0][0.234251,-0.335588,0.72449][-0.0998197,-0.946391,-0.307213][0.207376,0.0531489,0][0.176302,-0.305886,0.546141][-0.0266515,-0.996274,-0.0820252][0.20308,0.0663725,0][0.176302,-0.305886,0.546141][-0.0266515,-0.996274,-0.0820252][0.20308,0.0663725,0][0.336386,-0.305886,0.464575][-0.0506942,-0.996274,-0.0697748][0.214949,0.0724202,0][0.446611,-0.335588,0.616287][-0.189868,-0.946391,-0.261331][0.223122,0.0611716,0][0.615141,-0.335588,0.447757][-0.261331,-0.946391,-0.189868][0.235617,0.073667,0][0.446611,-0.335588,0.616287][-0.189868,-0.946391,-0.261331][0.223122,0.0611716,0][0.336386,-0.305886,0.464575][-0.0506942,-0.996274,-0.0697748][0.214949,0.0724202,0][0.336386,-0.305886,0.464575][-0.0506942,-0.996274,-0.0697748][0.214949,0.0724202,0][0.463428,-0.305886,0.337532][-0.0697747,-0.996274,-0.0506943][0.224368,0.0818396,0][0.615141,-0.335588,0.447757][-0.261331,-0.946391,-0.189868][0.235617,0.073667,0][0.723344,-0.335588,0.235397][-0.307213,-0.946391,-0.0998198][0.24364,0.0894123,0][0.615141,-0.335588,0.447757][-0.261331,-0.946391,-0.189868][0.235617,0.073667,0][0.463428,-0.305886,0.337532][-0.0697747,-0.996274,-0.0506943][0.224368,0.0818396,0][0.463428,-0.305886,0.337532][-0.0697747,-0.996274,-0.0506943][0.224368,0.0818396,0][0.544995,-0.305886,0.177448][-0.082025,-0.996274,-0.0266518][0.230416,0.0937089,0][0.723344,-0.335588,0.235397][-0.307213,-0.946391,-0.0998198][0.24364,0.0894123,0][0.760628,-0.335587,-5.24665e-006][-0.323023,-0.946391,-2.13439e-007][0.246404,0.106866,0][0.723344,-0.335588,0.235397][-0.307213,-0.946391,-0.0998198][0.24364,0.0894123,0][0.544995,-0.305886,0.177448][-0.082025,-0.996274,-0.0266518][0.230416,0.0937089,0][0.544995,-0.305886,0.177448][-0.082025,-0.996274,-0.0266518][0.230416,0.0937089,0][0.573101,-0.305886,-5.24086e-006][-0.0862462,-0.996274,-2.56233e-007][0.2325,0.106866,0][0.760628,-0.335587,-5.24665e-006][-0.323023,-0.946391,-2.13439e-007][0.246404,0.106866,0][0.884234,-0.421784,-0.287685][-0.568566,-0.801627,0.184738][0.255569,0.128196,0][0.929798,-0.421784,-5.26343e-006][-0.597825,-0.801627,-1.41732e-007][0.258947,0.106866,0][0.760628,-0.335587,-5.24665e-006][-0.323023,-0.946391,-2.13439e-007][0.246404,0.106866,0][0.760628,-0.335587,-5.24665e-006][-0.323023,-0.946391,-2.13439e-007][0.246404,0.106866,0][0.723344,-0.335587,-0.235408][-0.307213,-0.946391,0.0998194][0.24364,0.12432,0][0.884234,-0.421784,-0.287685][-0.568566,-0.801627,0.184738][0.255569,0.128196,0][0.752003,-0.421784,-0.547204][-0.483651,-0.801627,0.351393][0.245765,0.147438,0][0.884234,-0.421784,-0.287685][-0.568566,-0.801627,0.184738][0.255569,0.128196,0][0.723344,-0.335587,-0.235408][-0.307213,-0.946391,0.0998194][0.24364,0.12432,0][0.723344,-0.335587,-0.235408][-0.307213,-0.946391,0.0998194][0.24364,0.12432,0][0.615141,-0.335587,-0.447768][-0.261331,-0.946391,0.189868][0.235617,0.140065,0][0.752003,-0.421784,-0.547204][-0.483651,-0.801627,0.351393][0.245765,0.147438,0][0.546047,-0.421784,-0.75316][-0.351393,-0.801627,0.483651][0.230494,0.162708,0][0.752003,-0.421784,-0.547204][-0.483651,-0.801627,0.351393][0.245765,0.147438,0][0.615141,-0.335587,-0.447768][-0.261331,-0.946391,0.189868][0.235617,0.140065,0][0.615141,-0.335587,-0.447768][-0.261331,-0.946391,0.189868][0.235617,0.140065,0][0.446611,-0.335587,-0.616298][-0.189868,-0.946391,0.261331][0.223122,0.15256,0][0.546047,-0.421784,-0.75316][-0.351393,-0.801627,0.483651][0.230494,0.162708,0][0.286528,-0.421784,-0.885391][-0.184738,-0.801627,0.568565][0.211252,0.172512,0][0.546047,-0.421784,-0.75316][-0.351393,-0.801627,0.483651][0.230494,0.162708,0][0.446611,-0.335587,-0.616298][-0.189868,-0.946391,0.261331][0.223122,0.15256,0][0.446611,-0.335587,-0.616298][-0.189868,-0.946391,0.261331][0.223122,0.15256,0][0.234251,-0.335587,-0.7245][-0.0998196,-0.946391,0.307213][0.207376,0.160583,0][0.286528,-0.421784,-0.885391][-0.184738,-0.801627,0.568565][0.211252,0.172512,0][-0.00115155,-0.421784,-0.930955][0,-0.801627,0.597825][0.189923,0.17589,0][0.286528,-0.421784,-0.885391][-0.184738,-0.801627,0.568565][0.211252,0.172512,0][0.234251,-0.335587,-0.7245][-0.0998196,-0.946391,0.307213][0.207376,0.160583,0][0.234251,-0.335587,-0.7245][-0.0998196,-0.946391,0.307213][0.207376,0.160583,0][-0.00115155,-0.335587,-0.761785][0,-0.946391,0.323023][0.189923,0.163347,0][-0.00115155,-0.421784,-0.930955][0,-0.801627,0.597825][0.189923,0.17589,0][-0.288831,-0.421784,-0.885391][0.184738,-0.801627,0.568565][0.168593,0.172512,0][-0.00115155,-0.421784,-0.930955][0,-0.801627,0.597825][0.189923,0.17589,0][-0.00115155,-0.335587,-0.761785][0,-0.946391,0.323023][0.189923,0.163347,0][-0.00115155,-0.335587,-0.761785][0,-0.946391,0.323023][0.189923,0.163347,0][-0.236554,-0.335587,-0.7245][0.0998197,-0.946391,0.307213][0.172469,0.160583,0][-0.288831,-0.421784,-0.885391][0.184738,-0.801627,0.568565][0.168593,0.172512,0][-0.54835,-0.421784,-0.753159][0.351393,-0.801627,0.483651][0.149351,0.162708,0][-0.288831,-0.421784,-0.885391][0.184738,-0.801627,0.568565][0.168593,0.172512,0][-0.236554,-0.335587,-0.7245][0.0998197,-0.946391,0.307213][0.172469,0.160583,0][-0.236554,-0.335587,-0.7245][0.0998197,-0.946391,0.307213][0.172469,0.160583,0][-0.448914,-0.335587,-0.616298][0.189868,-0.946391,0.261331][0.156724,0.15256,0][-0.54835,-0.421784,-0.753159][0.351393,-0.801627,0.483651][0.149351,0.162708,0][-0.754306,-0.421784,-0.547204][0.483651,-0.801627,0.351393][0.134081,0.147438,0][-0.54835,-0.421784,-0.753159][0.351393,-0.801627,0.483651][0.149351,0.162708,0][-0.448914,-0.335587,-0.616298][0.189868,-0.946391,0.261331][0.156724,0.15256,0][-0.448914,-0.335587,-0.616298][0.189868,-0.946391,0.261331][0.156724,0.15256,0][-0.617444,-0.335587,-0.447768][0.261331,-0.946391,0.189868][0.144228,0.140065,0][-0.754306,-0.421784,-0.547204][0.483651,-0.801627,0.351393][0.134081,0.147438,0][-0.886537,-0.421784,-0.287685][0.568565,-0.801627,0.184738][0.124276,0.128196,0][-0.754306,-0.421784,-0.547204][0.483651,-0.801627,0.351393][0.134081,0.147438,0][-0.617444,-0.335587,-0.447768][0.261331,-0.946391,0.189868][0.144228,0.140065,0][-0.617444,-0.335587,-0.447768][0.261331,-0.946391,0.189868][0.144228,0.140065,0][-0.725647,-0.335587,-0.235408][0.307213,-0.946391,0.0998194][0.136205,0.12432,0][-0.886537,-0.421784,-0.287685][0.568565,-0.801627,0.184738][0.124276,0.128196,0][-0.932101,-0.421784,-5.18204e-006][0.597825,-0.801627,-2.26936e-007][0.120898,0.106866,0][-0.886537,-0.421784,-0.287685][0.568565,-0.801627,0.184738][0.124276,0.128196,0][-0.725647,-0.335587,-0.235408][0.307213,-0.946391,0.0998194][0.136205,0.12432,0][-0.725647,-0.335587,-0.235408][0.307213,-0.946391,0.0998194][0.136205,0.12432,0][-0.762931,-0.335587,-5.18005e-006][0.323023,-0.946391,-1.71935e-007][0.133441,0.106866,0][-0.932101,-0.421784,-5.18204e-006][0.597825,-0.801627,-2.26936e-007][0.120898,0.106866,0][-0.886537,-0.421784,0.287674][0.568566,-0.801626,-0.184738][0.124276,0.0855363,0][-0.932101,-0.421784,-5.18204e-006][0.597825,-0.801627,-2.26936e-007][0.120898,0.106866,0][-0.762931,-0.335587,-5.18005e-006][0.323023,-0.946391,-1.71935e-007][0.133441,0.106866,0][-0.762931,-0.335587,-5.18005e-006][0.323023,-0.946391,-1.71935e-007][0.133441,0.106866,0][-0.725647,-0.335588,0.235398][0.307213,-0.946391,-0.0998198][0.136205,0.0894123,0][-0.886537,-0.421784,0.287674][0.568566,-0.801626,-0.184738][0.124276,0.0855363,0][-0.754306,-0.421784,0.547193][0.483651,-0.801626,-0.351393][0.134081,0.0662944,0][-0.886537,-0.421784,0.287674][0.568566,-0.801626,-0.184738][0.124276,0.0855363,0][-0.725647,-0.335588,0.235398][0.307213,-0.946391,-0.0998198][0.136205,0.0894123,0][-0.725647,-0.335588,0.235398][0.307213,-0.946391,-0.0998198][0.136205,0.0894123,0][-0.617444,-0.335588,0.447757][0.261331,-0.946391,-0.189868][0.144228,0.073667,0][-0.754306,-0.421784,0.547193][0.483651,-0.801626,-0.351393][0.134081,0.0662944,0][-0.54835,-0.421784,0.753149][0.351393,-0.801626,-0.483651][0.149351,0.051024,0][-0.754306,-0.421784,0.547193][0.483651,-0.801626,-0.351393][0.134081,0.0662944,0][-0.617444,-0.335588,0.447757][0.261331,-0.946391,-0.189868][0.144228,0.073667,0][-0.617444,-0.335588,0.447757][0.261331,-0.946391,-0.189868][0.144228,0.073667,0][-0.448914,-0.335588,0.616287][0.189868,-0.946391,-0.261331][0.156724,0.0611715,0][-0.54835,-0.421784,0.753149][0.351393,-0.801626,-0.483651][0.149351,0.051024,0][-0.288831,-0.421784,0.885381][0.184738,-0.801626,-0.568566][0.168593,0.0412198,0][-0.54835,-0.421784,0.753149][0.351393,-0.801626,-0.483651][0.149351,0.051024,0][-0.448914,-0.335588,0.616287][0.189868,-0.946391,-0.261331][0.156724,0.0611715,0][-0.448914,-0.335588,0.616287][0.189868,-0.946391,-0.261331][0.156724,0.0611715,0][-0.236554,-0.335588,0.72449][0.0998196,-0.946391,-0.307213][0.172469,0.0531489,0][-0.288831,-0.421784,0.885381][0.184738,-0.801626,-0.568566][0.168593,0.0412198,0][-0.00115139,-0.421784,0.930945][0,-0.801627,-0.597825][0.189923,0.0378415,0][-0.288831,-0.421784,0.885381][0.184738,-0.801626,-0.568566][0.168593,0.0412198,0][-0.236554,-0.335588,0.72449][0.0998196,-0.946391,-0.307213][0.172469,0.0531489,0][-0.236554,-0.335588,0.72449][0.0998196,-0.946391,-0.307213][0.172469,0.0531489,0][-0.00115141,-0.335588,0.761774][0,-0.946391,-0.323023][0.189923,0.0503845,0][-0.00115139,-0.421784,0.930945][0,-0.801627,-0.597825][0.189923,0.0378415,0][0.286528,-0.421784,0.885381][-0.184738,-0.801626,-0.568566][0.211252,0.0412198,0][-0.00115139,-0.421784,0.930945][0,-0.801627,-0.597825][0.189923,0.0378415,0][-0.00115141,-0.335588,0.761774][0,-0.946391,-0.323023][0.189923,0.0503845,0][-0.00115141,-0.335588,0.761774][0,-0.946391,-0.323023][0.189923,0.0503845,0][0.234251,-0.335588,0.72449][-0.0998197,-0.946391,-0.307213][0.207376,0.0531489,0][0.286528,-0.421784,0.885381][-0.184738,-0.801626,-0.568566][0.211252,0.0412198,0][0.546047,-0.421784,0.753149][-0.351393,-0.801626,-0.483651][0.230494,0.051024,0][0.286528,-0.421784,0.885381][-0.184738,-0.801626,-0.568566][0.211252,0.0412198,0][0.234251,-0.335588,0.72449][-0.0998197,-0.946391,-0.307213][0.207376,0.0531489,0][0.234251,-0.335588,0.72449][-0.0998197,-0.946391,-0.307213][0.207376,0.0531489,0][0.446611,-0.335588,0.616287][-0.189868,-0.946391,-0.261331][0.223122,0.0611716,0][0.546047,-0.421784,0.753149][-0.351393,-0.801626,-0.483651][0.230494,0.051024,0][0.752003,-0.421784,0.547193][-0.483651,-0.801626,-0.351393][0.245765,0.0662944,0][0.546047,-0.421784,0.753149][-0.351393,-0.801626,-0.483651][0.230494,0.051024,0][0.446611,-0.335588,0.616287][-0.189868,-0.946391,-0.261331][0.223122,0.0611716,0][0.446611,-0.335588,0.616287][-0.189868,-0.946391,-0.261331][0.223122,0.0611716,0][0.615141,-0.335588,0.447757][-0.261331,-0.946391,-0.189868][0.235617,0.073667,0][0.752003,-0.421784,0.547193][-0.483651,-0.801626,-0.351393][0.245765,0.0662944,0][0.884234,-0.421784,0.287674][-0.568565,-0.801627,-0.184738][0.255569,0.0855363,0][0.752003,-0.421784,0.547193][-0.483651,-0.801626,-0.351393][0.245765,0.0662944,0][0.615141,-0.335588,0.447757][-0.261331,-0.946391,-0.189868][0.235617,0.073667,0][0.615141,-0.335588,0.447757][-0.261331,-0.946391,-0.189868][0.235617,0.073667,0][0.723344,-0.335588,0.235397][-0.307213,-0.946391,-0.0998198][0.24364,0.0894123,0][0.884234,-0.421784,0.287674][-0.568565,-0.801627,-0.184738][0.255569,0.0855363,0][0.929798,-0.421784,-5.26343e-006][-0.597825,-0.801627,-1.41732e-007][0.258947,0.106866,0][0.884234,-0.421784,0.287674][-0.568565,-0.801627,-0.184738][0.255569,0.0855363,0][0.723344,-0.335588,0.235397][-0.307213,-0.946391,-0.0998198][0.24364,0.0894123,0][0.723344,-0.335588,0.235397][-0.307213,-0.946391,-0.0998198][0.24364,0.0894123,0][0.760628,-0.335587,-5.24665e-006][-0.323023,-0.946391,-2.13439e-007][0.246404,0.106866,0][0.929798,-0.421784,-5.26343e-006][-0.597825,-0.801627,-1.41732e-007][0.258947,0.106866,0][1.01192,-0.556038,-0.329172][-0.774422,-0.580478,0.251625][0.265036,0.131272,0][1.06405,-0.556038,-5.28957e-006][-0.814276,-0.580478,-1.46066e-007][0.268901,0.106866,0][0.929798,-0.421784,-5.26343e-006][-0.597825,-0.801627,-1.41732e-007][0.258947,0.106866,0][0.929798,-0.421784,-5.26343e-006][-0.597825,-0.801627,-1.41732e-007][0.258947,0.106866,0][0.884234,-0.421784,-0.287685][-0.568566,-0.801627,0.184738][0.255569,0.128196,0][1.01192,-0.556038,-0.329172][-0.774422,-0.580478,0.251625][0.265036,0.131272,0][0.860617,-0.556038,-0.626117][-0.658763,-0.580478,0.478619][0.253818,0.153288,0][1.01192,-0.556038,-0.329172][-0.774422,-0.580478,0.251625][0.265036,0.131272,0][0.884234,-0.421784,-0.287685][-0.568566,-0.801627,0.184738][0.255569,0.128196,0][0.884234,-0.421784,-0.287685][-0.568566,-0.801627,0.184738][0.255569,0.128196,0][0.752003,-0.421784,-0.547204][-0.483651,-0.801627,0.351393][0.245765,0.147438,0][0.860617,-0.556038,-0.626117][-0.658763,-0.580478,0.478619][0.253818,0.153288,0][0.62496,-0.556038,-0.861774][-0.478619,-0.580478,0.658763][0.236345,0.170761,0][0.860617,-0.556038,-0.626117][-0.658763,-0.580478,0.478619][0.253818,0.153288,0][0.752003,-0.421784,-0.547204][-0.483651,-0.801627,0.351393][0.245765,0.147438,0][0.752003,-0.421784,-0.547204][-0.483651,-0.801627,0.351393][0.245765,0.147438,0][0.546047,-0.421784,-0.75316][-0.351393,-0.801627,0.483651][0.230494,0.162708,0][0.62496,-0.556038,-0.861774][-0.478619,-0.580478,0.658763][0.236345,0.170761,0][0.328015,-0.556038,-1.01307][-0.251625,-0.580478,0.774422][0.214328,0.181979,0][0.62496,-0.556038,-0.861774][-0.478619,-0.580478,0.658763][0.236345,0.170761,0][0.546047,-0.421784,-0.75316][-0.351393,-0.801627,0.483651][0.230494,0.162708,0][0.546047,-0.421784,-0.75316][-0.351393,-0.801627,0.483651][0.230494,0.162708,0][0.286528,-0.421784,-0.885391][-0.184738,-0.801627,0.568565][0.211252,0.172512,0][0.328015,-0.556038,-1.01307][-0.251625,-0.580478,0.774422][0.214328,0.181979,0][-0.00115156,-0.556038,-1.06521][0,-0.580478,0.814276][0.189923,0.185845,0][0.328015,-0.556038,-1.01307][-0.251625,-0.580478,0.774422][0.214328,0.181979,0][0.286528,-0.421784,-0.885391][-0.184738,-0.801627,0.568565][0.211252,0.172512,0][0.286528,-0.421784,-0.885391][-0.184738,-0.801627,0.568565][0.211252,0.172512,0][-0.00115155,-0.421784,-0.930955][0,-0.801627,0.597825][0.189923,0.17589,0][-0.00115156,-0.556038,-1.06521][0,-0.580478,0.814276][0.189923,0.185845,0][-0.330318,-0.556038,-1.01307][0.251625,-0.580478,0.774422][0.165517,0.181979,0][-0.00115156,-0.556038,-1.06521][0,-0.580478,0.814276][0.189923,0.185845,0][-0.00115155,-0.421784,-0.930955][0,-0.801627,0.597825][0.189923,0.17589,0][-0.00115155,-0.421784,-0.930955][0,-0.801627,0.597825][0.189923,0.17589,0][-0.288831,-0.421784,-0.885391][0.184738,-0.801627,0.568565][0.168593,0.172512,0][-0.330318,-0.556038,-1.01307][0.251625,-0.580478,0.774422][0.165517,0.181979,0][-0.627263,-0.556038,-0.861774][0.478619,-0.580478,0.658763][0.1435,0.170761,0][-0.330318,-0.556038,-1.01307][0.251625,-0.580478,0.774422][0.165517,0.181979,0][-0.288831,-0.421784,-0.885391][0.184738,-0.801627,0.568565][0.168593,0.172512,0][-0.288831,-0.421784,-0.885391][0.184738,-0.801627,0.568565][0.168593,0.172512,0][-0.54835,-0.421784,-0.753159][0.351393,-0.801627,0.483651][0.149351,0.162708,0][-0.627263,-0.556038,-0.861774][0.478619,-0.580478,0.658763][0.1435,0.170761,0][-0.86292,-0.556038,-0.626117][0.658763,-0.580478,0.478619][0.126027,0.153288,0][-0.627263,-0.556038,-0.861774][0.478619,-0.580478,0.658763][0.1435,0.170761,0][-0.54835,-0.421784,-0.753159][0.351393,-0.801627,0.483651][0.149351,0.162708,0][-0.54835,-0.421784,-0.753159][0.351393,-0.801627,0.483651][0.149351,0.162708,0][-0.754306,-0.421784,-0.547204][0.483651,-0.801627,0.351393][0.134081,0.147438,0][-0.86292,-0.556038,-0.626117][0.658763,-0.580478,0.478619][0.126027,0.153288,0][-1.01422,-0.556038,-0.329171][0.774422,-0.580478,0.251625][0.114809,0.131272,0][-0.86292,-0.556038,-0.626117][0.658763,-0.580478,0.478619][0.126027,0.153288,0][-0.754306,-0.421784,-0.547204][0.483651,-0.801627,0.351393][0.134081,0.147438,0][-0.754306,-0.421784,-0.547204][0.483651,-0.801627,0.351393][0.134081,0.147438,0][-0.886537,-0.421784,-0.287685][0.568565,-0.801627,0.184738][0.124276,0.128196,0][-1.01422,-0.556038,-0.329171][0.774422,-0.580478,0.251625][0.114809,0.131272,0][-1.06636,-0.556038,-5.19645e-006][0.814276,-0.580478,-2.48203e-007][0.110944,0.106866,0][-1.01422,-0.556038,-0.329171][0.774422,-0.580478,0.251625][0.114809,0.131272,0][-0.886537,-0.421784,-0.287685][0.568565,-0.801627,0.184738][0.124276,0.128196,0][-0.886537,-0.421784,-0.287685][0.568565,-0.801627,0.184738][0.124276,0.128196,0][-0.932101,-0.421784,-5.18204e-006][0.597825,-0.801627,-2.26936e-007][0.120898,0.106866,0][-1.06636,-0.556038,-5.19645e-006][0.814276,-0.580478,-2.48203e-007][0.110944,0.106866,0][-1.01422,-0.556038,0.329161][0.774422,-0.580478,-0.251625][0.114809,0.0824603,0][-1.06636,-0.556038,-5.19645e-006][0.814276,-0.580478,-2.48203e-007][0.110944,0.106866,0][-0.932101,-0.421784,-5.18204e-006][0.597825,-0.801627,-2.26936e-007][0.120898,0.106866,0][-0.932101,-0.421784,-5.18204e-006][0.597825,-0.801627,-2.26936e-007][0.120898,0.106866,0][-0.886537,-0.421784,0.287674][0.568566,-0.801626,-0.184738][0.124276,0.0855363,0][-1.01422,-0.556038,0.329161][0.774422,-0.580478,-0.251625][0.114809,0.0824603,0][-0.86292,-0.556038,0.626106][0.658763,-0.580478,-0.47862][0.126027,0.0604435,0][-1.01422,-0.556038,0.329161][0.774422,-0.580478,-0.251625][0.114809,0.0824603,0][-0.886537,-0.421784,0.287674][0.568566,-0.801626,-0.184738][0.124276,0.0855363,0][-0.886537,-0.421784,0.287674][0.568566,-0.801626,-0.184738][0.124276,0.0855363,0][-0.754306,-0.421784,0.547193][0.483651,-0.801626,-0.351393][0.134081,0.0662944,0][-0.86292,-0.556038,0.626106][0.658763,-0.580478,-0.47862][0.126027,0.0604435,0][-0.627263,-0.556038,0.861763][0.478619,-0.580478,-0.658763][0.1435,0.0429709,0][-0.86292,-0.556038,0.626106][0.658763,-0.580478,-0.47862][0.126027,0.0604435,0][-0.754306,-0.421784,0.547193][0.483651,-0.801626,-0.351393][0.134081,0.0662944,0][-0.754306,-0.421784,0.547193][0.483651,-0.801626,-0.351393][0.134081,0.0662944,0][-0.54835,-0.421784,0.753149][0.351393,-0.801626,-0.483651][0.149351,0.051024,0][-0.627263,-0.556038,0.861763][0.478619,-0.580478,-0.658763][0.1435,0.0429709,0][-0.330318,-0.556038,1.01306][0.251625,-0.580478,-0.774423][0.165517,0.0317528,0][-0.627263,-0.556038,0.861763][0.478619,-0.580478,-0.658763][0.1435,0.0429709,0][-0.54835,-0.421784,0.753149][0.351393,-0.801626,-0.483651][0.149351,0.051024,0][-0.54835,-0.421784,0.753149][0.351393,-0.801626,-0.483651][0.149351,0.051024,0][-0.288831,-0.421784,0.885381][0.184738,-0.801626,-0.568566][0.168593,0.0412198,0][-0.330318,-0.556038,1.01306][0.251625,-0.580478,-0.774423][0.165517,0.0317528,0][-0.00115137,-0.556038,1.0652][0,-0.580478,-0.814276][0.189923,0.0278874,0][-0.330318,-0.556038,1.01306][0.251625,-0.580478,-0.774423][0.165517,0.0317528,0][-0.288831,-0.421784,0.885381][0.184738,-0.801626,-0.568566][0.168593,0.0412198,0][-0.288831,-0.421784,0.885381][0.184738,-0.801626,-0.568566][0.168593,0.0412198,0][-0.00115139,-0.421784,0.930945][0,-0.801627,-0.597825][0.189923,0.0378415,0][-0.00115137,-0.556038,1.0652][0,-0.580478,-0.814276][0.189923,0.0278874,0][0.328015,-0.556038,1.01306][-0.251625,-0.580478,-0.774422][0.214328,0.0317528,0][-0.00115137,-0.556038,1.0652][0,-0.580478,-0.814276][0.189923,0.0278874,0][-0.00115139,-0.421784,0.930945][0,-0.801627,-0.597825][0.189923,0.0378415,0][-0.00115139,-0.421784,0.930945][0,-0.801627,-0.597825][0.189923,0.0378415,0][0.286528,-0.421784,0.885381][-0.184738,-0.801626,-0.568566][0.211252,0.0412198,0][0.328015,-0.556038,1.01306][-0.251625,-0.580478,-0.774422][0.214328,0.0317528,0][0.62496,-0.556038,0.861763][-0.478619,-0.580478,-0.658763][0.236345,0.0429709,0][0.328015,-0.556038,1.01306][-0.251625,-0.580478,-0.774422][0.214328,0.0317528,0][0.286528,-0.421784,0.885381][-0.184738,-0.801626,-0.568566][0.211252,0.0412198,0][0.286528,-0.421784,0.885381][-0.184738,-0.801626,-0.568566][0.211252,0.0412198,0][0.546047,-0.421784,0.753149][-0.351393,-0.801626,-0.483651][0.230494,0.051024,0][0.62496,-0.556038,0.861763][-0.478619,-0.580478,-0.658763][0.236345,0.0429709,0][0.860617,-0.556038,0.626106][-0.658763,-0.580478,-0.478619][0.253818,0.0604435,0][0.62496,-0.556038,0.861763][-0.478619,-0.580478,-0.658763][0.236345,0.0429709,0][0.546047,-0.421784,0.753149][-0.351393,-0.801626,-0.483651][0.230494,0.051024,0][0.546047,-0.421784,0.753149][-0.351393,-0.801626,-0.483651][0.230494,0.051024,0][0.752003,-0.421784,0.547193][-0.483651,-0.801626,-0.351393][0.245765,0.0662944,0][0.860617,-0.556038,0.626106][-0.658763,-0.580478,-0.478619][0.253818,0.0604435,0][1.01192,-0.556038,0.329161][-0.774423,-0.580478,-0.251625][0.265036,0.0824603,0][0.860617,-0.556038,0.626106][-0.658763,-0.580478,-0.478619][0.253818,0.0604435,0][0.752003,-0.421784,0.547193][-0.483651,-0.801626,-0.351393][0.245765,0.0662944,0][0.752003,-0.421784,0.547193][-0.483651,-0.801626,-0.351393][0.245765,0.0662944,0][0.884234,-0.421784,0.287674][-0.568565,-0.801627,-0.184738][0.255569,0.0855363,0][1.01192,-0.556038,0.329161][-0.774423,-0.580478,-0.251625][0.265036,0.0824603,0][1.06405,-0.556038,-5.28957e-006][-0.814276,-0.580478,-1.46066e-007][0.268901,0.106866,0][1.01192,-0.556038,0.329161][-0.774423,-0.580478,-0.251625][0.265036,0.0824603,0][0.884234,-0.421784,0.287674][-0.568565,-0.801627,-0.184738][0.255569,0.0855363,0][0.884234,-0.421784,0.287674][-0.568565,-0.801627,-0.184738][0.255569,0.0855363,0][0.929798,-0.421784,-5.26343e-006][-0.597825,-0.801627,-1.41732e-007][0.258947,0.106866,0][1.06405,-0.556038,-5.28957e-006][-0.814276,-0.580478,-1.46066e-007][0.268901,0.106866,0][1.0939,-0.725209,-0.355808][-0.905884,-0.304531,0.294339][0.271114,0.133247,0][1.15025,-0.725209,-5.32251e-006][-0.952503,-0.30453,-2.18003e-007][0.275292,0.106866,0][1.06405,-0.556038,-5.28957e-006][-0.814276,-0.580478,-1.46066e-007][0.268901,0.106866,0][1.06405,-0.556038,-5.28957e-006][-0.814276,-0.580478,-1.46066e-007][0.268901,0.106866,0][1.01192,-0.556038,-0.329172][-0.774422,-0.580478,0.251625][0.265036,0.131272,0][1.0939,-0.725209,-0.355808][-0.905884,-0.304531,0.294339][0.271114,0.133247,0][0.930351,-0.725209,-0.676782][-0.770591,-0.304531,0.559867][0.258988,0.157045,0][1.0939,-0.725209,-0.355808][-0.905884,-0.304531,0.294339][0.271114,0.133247,0][1.01192,-0.556038,-0.329172][-0.774422,-0.580478,0.251625][0.265036,0.131272,0][1.01192,-0.556038,-0.329172][-0.774422,-0.580478,0.251625][0.265036,0.131272,0][0.860617,-0.556038,-0.626117][-0.658763,-0.580478,0.478619][0.253818,0.153288,0][0.930351,-0.725209,-0.676782][-0.770591,-0.304531,0.559867][0.258988,0.157045,0][0.675625,-0.725209,-0.931508][-0.559867,-0.30453,0.770591][0.240102,0.175931,0][0.930351,-0.725209,-0.676782][-0.770591,-0.304531,0.559867][0.258988,0.157045,0][0.860617,-0.556038,-0.626117][-0.658763,-0.580478,0.478619][0.253818,0.153288,0][0.860617,-0.556038,-0.626117][-0.658763,-0.580478,0.478619][0.253818,0.153288,0][0.62496,-0.556038,-0.861774][-0.478619,-0.580478,0.658763][0.236345,0.170761,0][0.675625,-0.725209,-0.931508][-0.559867,-0.30453,0.770591][0.240102,0.175931,0][0.354651,-0.725209,-1.09505][-0.294339,-0.304531,0.905884][0.216303,0.188057,0][0.675625,-0.725209,-0.931508][-0.559867,-0.30453,0.770591][0.240102,0.175931,0][0.62496,-0.556038,-0.861774][-0.478619,-0.580478,0.658763][0.236345,0.170761,0][0.62496,-0.556038,-0.861774][-0.478619,-0.580478,0.658763][0.236345,0.170761,0][0.328015,-0.556038,-1.01307][-0.251625,-0.580478,0.774422][0.214328,0.181979,0][0.354651,-0.725209,-1.09505][-0.294339,-0.304531,0.905884][0.216303,0.188057,0][-0.00115156,-0.725209,-1.15141][0,-0.304531,0.952502][0.189923,0.192236,0][0.354651,-0.725209,-1.09505][-0.294339,-0.304531,0.905884][0.216303,0.188057,0][0.328015,-0.556038,-1.01307][-0.251625,-0.580478,0.774422][0.214328,0.181979,0][0.328015,-0.556038,-1.01307][-0.251625,-0.580478,0.774422][0.214328,0.181979,0][-0.00115156,-0.556038,-1.06521][0,-0.580478,0.814276][0.189923,0.185845,0][-0.00115156,-0.725209,-1.15141][0,-0.304531,0.952502][0.189923,0.192236,0][-0.356954,-0.725209,-1.09505][0.29434,-0.304531,0.905884][0.163542,0.188057,0][-0.00115156,-0.725209,-1.15141][0,-0.304531,0.952502][0.189923,0.192236,0][-0.00115156,-0.556038,-1.06521][0,-0.580478,0.814276][0.189923,0.185845,0][-0.00115156,-0.556038,-1.06521][0,-0.580478,0.814276][0.189923,0.185845,0][-0.330318,-0.556038,-1.01307][0.251625,-0.580478,0.774422][0.165517,0.181979,0][-0.356954,-0.725209,-1.09505][0.29434,-0.304531,0.905884][0.163542,0.188057,0][-0.677928,-0.725209,-0.931508][0.559867,-0.304531,0.770591][0.139744,0.175931,0][-0.356954,-0.725209,-1.09505][0.29434,-0.304531,0.905884][0.163542,0.188057,0][-0.330318,-0.556038,-1.01307][0.251625,-0.580478,0.774422][0.165517,0.181979,0][-0.330318,-0.556038,-1.01307][0.251625,-0.580478,0.774422][0.165517,0.181979,0][-0.627263,-0.556038,-0.861774][0.478619,-0.580478,0.658763][0.1435,0.170761,0][-0.677928,-0.725209,-0.931508][0.559867,-0.304531,0.770591][0.139744,0.175931,0][-0.932655,-0.725209,-0.676782][0.770591,-0.304531,0.559867][0.120857,0.157045,0][-0.677928,-0.725209,-0.931508][0.559867,-0.304531,0.770591][0.139744,0.175931,0][-0.627263,-0.556038,-0.861774][0.478619,-0.580478,0.658763][0.1435,0.170761,0][-0.627263,-0.556038,-0.861774][0.478619,-0.580478,0.658763][0.1435,0.170761,0][-0.86292,-0.556038,-0.626117][0.658763,-0.580478,0.478619][0.126027,0.153288,0][-0.932655,-0.725209,-0.676782][0.770591,-0.304531,0.559867][0.120857,0.157045,0][-1.0962,-0.725209,-0.355808][0.905884,-0.304531,0.294339][0.108731,0.133247,0][-0.932655,-0.725209,-0.676782][0.770591,-0.304531,0.559867][0.120857,0.157045,0][-0.86292,-0.556038,-0.626117][0.658763,-0.580478,0.478619][0.126027,0.153288,0][-0.86292,-0.556038,-0.626117][0.658763,-0.580478,0.478619][0.126027,0.153288,0][-1.01422,-0.556038,-0.329171][0.774422,-0.580478,0.251625][0.114809,0.131272,0][-1.0962,-0.725209,-0.355808][0.905884,-0.304531,0.294339][0.108731,0.133247,0][-1.15255,-0.725209,-5.22185e-006][0.952503,-0.30453,0][0.104553,0.106866,0][-1.0962,-0.725209,-0.355808][0.905884,-0.304531,0.294339][0.108731,0.133247,0][-1.01422,-0.556038,-0.329171][0.774422,-0.580478,0.251625][0.114809,0.131272,0][-1.01422,-0.556038,-0.329171][0.774422,-0.580478,0.251625][0.114809,0.131272,0][-1.06636,-0.556038,-5.19645e-006][0.814276,-0.580478,-2.48203e-007][0.110944,0.106866,0][-1.15255,-0.725209,-5.22185e-006][0.952503,-0.30453,0][0.104553,0.106866,0][-1.0962,-0.725209,0.355797][0.905884,-0.304531,-0.29434][0.108731,0.0804853,0][-1.15255,-0.725209,-5.22185e-006][0.952503,-0.30453,0][0.104553,0.106866,0][-1.06636,-0.556038,-5.19645e-006][0.814276,-0.580478,-2.48203e-007][0.110944,0.106866,0][-1.06636,-0.556038,-5.19645e-006][0.814276,-0.580478,-2.48203e-007][0.110944,0.106866,0][-1.01422,-0.556038,0.329161][0.774422,-0.580478,-0.251625][0.114809,0.0824603,0][-1.0962,-0.725209,0.355797][0.905884,-0.304531,-0.29434][0.108731,0.0804853,0][-0.932654,-0.725209,0.676771][0.770591,-0.30453,-0.559867][0.120857,0.056687,0][-1.0962,-0.725209,0.355797][0.905884,-0.304531,-0.29434][0.108731,0.0804853,0][-1.01422,-0.556038,0.329161][0.774422,-0.580478,-0.251625][0.114809,0.0824603,0][-1.01422,-0.556038,0.329161][0.774422,-0.580478,-0.251625][0.114809,0.0824603,0][-0.86292,-0.556038,0.626106][0.658763,-0.580478,-0.47862][0.126027,0.0604435,0][-0.932654,-0.725209,0.676771][0.770591,-0.30453,-0.559867][0.120857,0.056687,0][-0.677928,-0.725209,0.931498][0.559867,-0.30453,-0.770591][0.139744,0.0378005,0][-0.932654,-0.725209,0.676771][0.770591,-0.30453,-0.559867][0.120857,0.056687,0][-0.86292,-0.556038,0.626106][0.658763,-0.580478,-0.47862][0.126027,0.0604435,0][-0.86292,-0.556038,0.626106][0.658763,-0.580478,-0.47862][0.126027,0.0604435,0][-0.627263,-0.556038,0.861763][0.478619,-0.580478,-0.658763][0.1435,0.0429709,0][-0.677928,-0.725209,0.931498][0.559867,-0.30453,-0.770591][0.139744,0.0378005,0][-0.356954,-0.725209,1.09504][0.294339,-0.304531,-0.905884][0.163542,0.0256747,0][-0.677928,-0.725209,0.931498][0.559867,-0.30453,-0.770591][0.139744,0.0378005,0][-0.627263,-0.556038,0.861763][0.478619,-0.580478,-0.658763][0.1435,0.0429709,0][-0.627263,-0.556038,0.861763][0.478619,-0.580478,-0.658763][0.1435,0.0429709,0][-0.330318,-0.556038,1.01306][0.251625,-0.580478,-0.774423][0.165517,0.0317528,0][-0.356954,-0.725209,1.09504][0.294339,-0.304531,-0.905884][0.163542,0.0256747,0][-0.00115136,-0.725209,1.1514][0,-0.30453,-0.952503][0.189923,0.0214964,0][-0.356954,-0.725209,1.09504][0.294339,-0.304531,-0.905884][0.163542,0.0256747,0][-0.330318,-0.556038,1.01306][0.251625,-0.580478,-0.774423][0.165517,0.0317528,0][-0.330318,-0.556038,1.01306][0.251625,-0.580478,-0.774423][0.165517,0.0317528,0][-0.00115137,-0.556038,1.0652][0,-0.580478,-0.814276][0.189923,0.0278874,0][-0.00115136,-0.725209,1.1514][0,-0.30453,-0.952503][0.189923,0.0214964,0][0.354651,-0.725209,1.09504][-0.29434,-0.30453,-0.905884][0.216303,0.0256747,0][-0.00115136,-0.725209,1.1514][0,-0.30453,-0.952503][0.189923,0.0214964,0][-0.00115137,-0.556038,1.0652][0,-0.580478,-0.814276][0.189923,0.0278874,0][-0.00115137,-0.556038,1.0652][0,-0.580478,-0.814276][0.189923,0.0278874,0][0.328015,-0.556038,1.01306][-0.251625,-0.580478,-0.774422][0.214328,0.0317528,0][0.354651,-0.725209,1.09504][-0.29434,-0.30453,-0.905884][0.216303,0.0256747,0][0.675625,-0.725209,0.931498][-0.559867,-0.30453,-0.770591][0.240102,0.0378005,0][0.354651,-0.725209,1.09504][-0.29434,-0.30453,-0.905884][0.216303,0.0256747,0][0.328015,-0.556038,1.01306][-0.251625,-0.580478,-0.774422][0.214328,0.0317528,0][0.328015,-0.556038,1.01306][-0.251625,-0.580478,-0.774422][0.214328,0.0317528,0][0.62496,-0.556038,0.861763][-0.478619,-0.580478,-0.658763][0.236345,0.0429709,0][0.675625,-0.725209,0.931498][-0.559867,-0.30453,-0.770591][0.240102,0.0378005,0][0.930352,-0.725209,0.676771][-0.770591,-0.30453,-0.559867][0.258988,0.056687,0][0.675625,-0.725209,0.931498][-0.559867,-0.30453,-0.770591][0.240102,0.0378005,0][0.62496,-0.556038,0.861763][-0.478619,-0.580478,-0.658763][0.236345,0.0429709,0][0.62496,-0.556038,0.861763][-0.478619,-0.580478,-0.658763][0.236345,0.0429709,0][0.860617,-0.556038,0.626106][-0.658763,-0.580478,-0.478619][0.253818,0.0604435,0][0.930352,-0.725209,0.676771][-0.770591,-0.30453,-0.559867][0.258988,0.056687,0][1.0939,-0.725209,0.355797][-0.905884,-0.304531,-0.294339][0.271114,0.0804854,0][0.930352,-0.725209,0.676771][-0.770591,-0.30453,-0.559867][0.258988,0.056687,0][0.860617,-0.556038,0.626106][-0.658763,-0.580478,-0.478619][0.253818,0.0604435,0][0.860617,-0.556038,0.626106][-0.658763,-0.580478,-0.478619][0.253818,0.0604435,0][1.01192,-0.556038,0.329161][-0.774423,-0.580478,-0.251625][0.265036,0.0824603,0][1.0939,-0.725209,0.355797][-0.905884,-0.304531,-0.294339][0.271114,0.0804854,0][1.15025,-0.725209,-5.32251e-006][-0.952503,-0.30453,-2.18003e-007][0.275292,0.106866,0][1.0939,-0.725209,0.355797][-0.905884,-0.304531,-0.294339][0.271114,0.0804854,0][1.01192,-0.556038,0.329161][-0.774423,-0.580478,-0.251625][0.265036,0.0824603,0][1.01192,-0.556038,0.329161][-0.774423,-0.580478,-0.251625][0.265036,0.0824603,0][1.06405,-0.556038,-5.28957e-006][-0.814276,-0.580478,-1.46066e-007][0.268901,0.106866,0][1.15025,-0.725209,-5.32251e-006][-0.952503,-0.30453,-2.18003e-007][0.275292,0.106866,0][1.12214,-0.912736,-0.364986][-0.94817,-0.0778555,0.308079][0.273208,0.133927,0][1.17995,-0.912736,-5.35902e-006][-0.996965,-0.077855,-1.24048e-007][0.277494,0.106866,0][1.15025,-0.725209,-5.32251e-006][-0.952503,-0.30453,-2.18003e-007][0.275292,0.106866,0][1.15025,-0.725209,-5.32251e-006][-0.952503,-0.30453,-2.18003e-007][0.275292,0.106866,0][1.0939,-0.725209,-0.355808][-0.905884,-0.304531,0.294339][0.271114,0.133247,0][1.12214,-0.912736,-0.364986][-0.94817,-0.0778555,0.308079][0.273208,0.133927,0][0.95438,-0.912736,-0.69424][-0.806561,-0.0778543,0.586001][0.26077,0.158339,0][1.12214,-0.912736,-0.364986][-0.94817,-0.0778555,0.308079][0.273208,0.133927,0][1.0939,-0.725209,-0.355808][-0.905884,-0.304531,0.294339][0.271114,0.133247,0][1.0939,-0.725209,-0.355808][-0.905884,-0.304531,0.294339][0.271114,0.133247,0][0.930351,-0.725209,-0.676782][-0.770591,-0.304531,0.559867][0.258988,0.157045,0][0.95438,-0.912736,-0.69424][-0.806561,-0.0778543,0.586001][0.26077,0.158339,0][0.693083,-0.912736,-0.955537][-0.586001,-0.0778556,0.806561][0.241396,0.177713,0][0.95438,-0.912736,-0.69424][-0.806561,-0.0778543,0.586001][0.26077,0.158339,0][0.930351,-0.725209,-0.676782][-0.770591,-0.304531,0.559867][0.258988,0.157045,0][0.930351,-0.725209,-0.676782][-0.770591,-0.304531,0.559867][0.258988,0.157045,0][0.675625,-0.725209,-0.931508][-0.559867,-0.30453,0.770591][0.240102,0.175931,0][0.693083,-0.912736,-0.955537][-0.586001,-0.0778556,0.806561][0.241396,0.177713,0][0.363829,-0.912735,-1.1233][-0.308079,-0.0778548,0.94817][0.216984,0.190152,0][0.693083,-0.912736,-0.955537][-0.586001,-0.0778556,0.806561][0.241396,0.177713,0][0.675625,-0.725209,-0.931508][-0.559867,-0.30453,0.770591][0.240102,0.175931,0][0.675625,-0.725209,-0.931508][-0.559867,-0.30453,0.770591][0.240102,0.175931,0][0.354651,-0.725209,-1.09505][-0.294339,-0.304531,0.905884][0.216303,0.188057,0][0.363829,-0.912735,-1.1233][-0.308079,-0.0778548,0.94817][0.216984,0.190152,0][-0.00115156,-0.912735,-1.18111][3.53405e-007,-0.0778505,0.996965][0.189923,0.194438,0][0.363829,-0.912735,-1.1233][-0.308079,-0.0778548,0.94817][0.216984,0.190152,0][0.354651,-0.725209,-1.09505][-0.294339,-0.304531,0.905884][0.216303,0.188057,0][0.354651,-0.725209,-1.09505][-0.294339,-0.304531,0.905884][0.216303,0.188057,0][-0.00115156,-0.725209,-1.15141][0,-0.304531,0.952502][0.189923,0.192236,0][-0.00115156,-0.912735,-1.18111][3.53405e-007,-0.0778505,0.996965][0.189923,0.194438,0][-0.366132,-0.912735,-1.1233][0.308079,-0.0778547,0.94817][0.162861,0.190152,0][-0.00115156,-0.912735,-1.18111][3.53405e-007,-0.0778505,0.996965][0.189923,0.194438,0][-0.00115156,-0.725209,-1.15141][0,-0.304531,0.952502][0.189923,0.192236,0][-0.00115156,-0.725209,-1.15141][0,-0.304531,0.952502][0.189923,0.192236,0][-0.356954,-0.725209,-1.09505][0.29434,-0.304531,0.905884][0.163542,0.188057,0][-0.366132,-0.912735,-1.1233][0.308079,-0.0778547,0.94817][0.162861,0.190152,0][-0.695386,-0.912736,-0.955537][0.586001,-0.0778548,0.806561][0.138449,0.177713,0][-0.366132,-0.912735,-1.1233][0.308079,-0.0778547,0.94817][0.162861,0.190152,0][-0.356954,-0.725209,-1.09505][0.29434,-0.304531,0.905884][0.163542,0.188057,0][-0.356954,-0.725209,-1.09505][0.29434,-0.304531,0.905884][0.163542,0.188057,0][-0.677928,-0.725209,-0.931508][0.559867,-0.304531,0.770591][0.139744,0.175931,0][-0.695386,-0.912736,-0.955537][0.586001,-0.0778548,0.806561][0.138449,0.177713,0][-0.956684,-0.912736,-0.69424][0.793389,-0.00352709,0.608705][0.119075,0.158339,0][-0.695386,-0.912736,-0.955537][0.586001,-0.0778548,0.806561][0.138449,0.177713,0][-0.677928,-0.725209,-0.931508][0.559867,-0.304531,0.770591][0.139744,0.175931,0][-0.677928,-0.725209,-0.931508][0.559867,-0.304531,0.770591][0.139744,0.175931,0][-0.932655,-0.725209,-0.676782][0.770591,-0.304531,0.559867][0.120857,0.157045,0][-0.956684,-0.912736,-0.69424][0.793389,-0.00352709,0.608705][0.119075,0.158339,0][-1.12445,-0.912736,-0.364986][0.94817,-0.0778527,0.308079][0.106637,0.133927,0][-0.956684,-0.912736,-0.69424][0.793389,-0.00352709,0.608705][0.119075,0.158339,0][-0.932655,-0.725209,-0.676782][0.770591,-0.304531,0.559867][0.120857,0.157045,0][-0.932655,-0.725209,-0.676782][0.770591,-0.304531,0.559867][0.120857,0.157045,0][-1.0962,-0.725209,-0.355808][0.905884,-0.304531,0.294339][0.108731,0.133247,0][-1.12445,-0.912736,-0.364986][0.94817,-0.0778527,0.308079][0.106637,0.133927,0][-1.18225,-0.912736,-5.25577e-006][0.996965,-0.0778549,0][0.102351,0.106866,0][-1.12445,-0.912736,-0.364986][0.94817,-0.0778527,0.308079][0.106637,0.133927,0][-1.0962,-0.725209,-0.355808][0.905884,-0.304531,0.294339][0.108731,0.133247,0][-1.0962,-0.725209,-0.355808][0.905884,-0.304531,0.294339][0.108731,0.133247,0][-1.15255,-0.725209,-5.22185e-006][0.952503,-0.30453,0][0.104553,0.106866,0][-1.18225,-0.912736,-5.25577e-006][0.996965,-0.0778549,0][0.102351,0.106866,0][-1.12445,-0.912736,0.364975][0.94817,-0.0778547,-0.308079][0.106637,0.0798048,0][-1.18225,-0.912736,-5.25577e-006][0.996965,-0.0778549,0][0.102351,0.106866,0][-1.15255,-0.725209,-5.22185e-006][0.952503,-0.30453,0][0.104553,0.106866,0][-1.15255,-0.725209,-5.22185e-006][0.952503,-0.30453,0][0.104553,0.106866,0][-1.0962,-0.725209,0.355797][0.905884,-0.304531,-0.29434][0.108731,0.0804853,0][-1.12445,-0.912736,0.364975][0.94817,-0.0778547,-0.308079][0.106637,0.0798048,0][-0.956683,-0.912736,0.694229][0.790809,-0.000434527,-0.612062][0.119075,0.0553926,0][-1.12445,-0.912736,0.364975][0.94817,-0.0778547,-0.308079][0.106637,0.0798048,0][-1.0962,-0.725209,0.355797][0.905884,-0.304531,-0.29434][0.108731,0.0804853,0][-1.0962,-0.725209,0.355797][0.905884,-0.304531,-0.29434][0.108731,0.0804853,0][-0.932654,-0.725209,0.676771][0.770591,-0.30453,-0.559867][0.120857,0.056687,0][-0.956683,-0.912736,0.694229][0.790809,-0.000434527,-0.612062][0.119075,0.0553926,0][-0.695386,-0.912736,0.955527][0.588946,-0.0755517,-0.804633][0.138449,0.0360189,0][-0.956683,-0.912736,0.694229][0.790809,-0.000434527,-0.612062][0.119075,0.0553926,0][-0.932654,-0.725209,0.676771][0.770591,-0.30453,-0.559867][0.120857,0.056687,0][-0.932654,-0.725209,0.676771][0.770591,-0.30453,-0.559867][0.120857,0.056687,0][-0.677928,-0.725209,0.931498][0.559867,-0.30453,-0.770591][0.139744,0.0378005,0][-0.695386,-0.912736,0.955527][0.588946,-0.0755517,-0.804633][0.138449,0.0360189,0][-0.366132,-0.912736,1.12329][0.308079,-0.077853,-0.94817][0.162861,0.0235803,0][-0.695386,-0.912736,0.955527][0.588946,-0.0755517,-0.804633][0.138449,0.0360189,0][-0.677928,-0.725209,0.931498][0.559867,-0.30453,-0.770591][0.139744,0.0378005,0][-0.677928,-0.725209,0.931498][0.559867,-0.30453,-0.770591][0.139744,0.0378005,0][-0.356954,-0.725209,1.09504][0.294339,-0.304531,-0.905884][0.163542,0.0256747,0][-0.366132,-0.912736,1.12329][0.308079,-0.077853,-0.94817][0.162861,0.0235803,0][-0.00115136,-0.912736,1.1811][0,-0.0778548,-0.996965][0.189923,0.0192942,0][-0.366132,-0.912736,1.12329][0.308079,-0.077853,-0.94817][0.162861,0.0235803,0][-0.356954,-0.725209,1.09504][0.294339,-0.304531,-0.905884][0.163542,0.0256747,0][-0.356954,-0.725209,1.09504][0.294339,-0.304531,-0.905884][0.163542,0.0256747,0][-0.00115136,-0.725209,1.1514][0,-0.30453,-0.952503][0.189923,0.0214964,0][-0.00115136,-0.912736,1.1811][0,-0.0778548,-0.996965][0.189923,0.0192942,0][0.363829,-0.912736,1.12329][-0.308079,-0.0778527,-0.94817][0.216984,0.0235803,0][-0.00115136,-0.912736,1.1811][0,-0.0778548,-0.996965][0.189923,0.0192942,0][-0.00115136,-0.725209,1.1514][0,-0.30453,-0.952503][0.189923,0.0214964,0][-0.00115136,-0.725209,1.1514][0,-0.30453,-0.952503][0.189923,0.0214964,0][0.354651,-0.725209,1.09504][-0.29434,-0.30453,-0.905884][0.216303,0.0256747,0][0.363829,-0.912736,1.12329][-0.308079,-0.0778527,-0.94817][0.216984,0.0235803,0][0.693083,-0.912736,0.955526][-0.582174,-0.0666835,-0.810325][0.241396,0.0360189,0][0.363829,-0.912736,1.12329][-0.308079,-0.0778527,-0.94817][0.216984,0.0235803,0][0.354651,-0.725209,1.09504][-0.29434,-0.30453,-0.905884][0.216303,0.0256747,0][0.354651,-0.725209,1.09504][-0.29434,-0.30453,-0.905884][0.216303,0.0256747,0][0.675625,-0.725209,0.931498][-0.559867,-0.30453,-0.770591][0.240102,0.0378005,0][0.693083,-0.912736,0.955526][-0.582174,-0.0666835,-0.810325][0.241396,0.0360189,0][0.95438,-0.912736,0.694229][-0.806561,-0.0778555,-0.586001][0.26077,0.0553926,0][0.693083,-0.912736,0.955526][-0.582174,-0.0666835,-0.810325][0.241396,0.0360189,0][0.675625,-0.725209,0.931498][-0.559867,-0.30453,-0.770591][0.240102,0.0378005,0][0.675625,-0.725209,0.931498][-0.559867,-0.30453,-0.770591][0.240102,0.0378005,0][0.930352,-0.725209,0.676771][-0.770591,-0.30453,-0.559867][0.258988,0.056687,0][0.95438,-0.912736,0.694229][-0.806561,-0.0778555,-0.586001][0.26077,0.0553926,0][1.12214,-0.912736,0.364975][-0.94817,-0.0778551,-0.308079][0.273208,0.0798049,0][0.95438,-0.912736,0.694229][-0.806561,-0.0778555,-0.586001][0.26077,0.0553926,0][0.930352,-0.725209,0.676771][-0.770591,-0.30453,-0.559867][0.258988,0.056687,0][0.930352,-0.725209,0.676771][-0.770591,-0.30453,-0.559867][0.258988,0.056687,0][1.0939,-0.725209,0.355797][-0.905884,-0.304531,-0.294339][0.271114,0.0804854,0][1.12214,-0.912736,0.364975][-0.94817,-0.0778551,-0.308079][0.273208,0.0798049,0][1.17995,-0.912736,-5.35902e-006][-0.996965,-0.077855,-1.24048e-007][0.277494,0.106866,0][1.12214,-0.912736,0.364975][-0.94817,-0.0778551,-0.308079][0.273208,0.0798049,0][1.0939,-0.725209,0.355797][-0.905884,-0.304531,-0.294339][0.271114,0.0804854,0][1.0939,-0.725209,0.355797][-0.905884,-0.304531,-0.294339][0.271114,0.0804854,0][1.15025,-0.725209,-5.32251e-006][-0.952503,-0.30453,-2.18003e-007][0.275292,0.106866,0][1.17995,-0.912736,-5.35902e-006][-0.996965,-0.077855,-1.24048e-007][0.277494,0.106866,0][0.95438,-0.912736,-0.69424][-0.806561,-0.0778543,0.586001][0.103936,0.997457,0][0.95438,-0.937684,-0.69424][-1.82924e-007,-3.45575,-4.8854e-007][0.103936,0.975949,0][1.12214,-0.937684,-0.364986][-1.3699e-006,-3.45575,-1.46233e-007][0.0544307,0.975949,0][1.12214,-0.937684,-0.364986][-1.3699e-006,-3.45575,-1.46233e-007][0.0544307,0.975949,0][1.12214,-0.912736,-0.364986][-0.94817,-0.0778555,0.308079][0.0544307,0.997457,0][0.95438,-0.912736,-0.69424][-0.806561,-0.0778543,0.586001][0.103936,0.997457,0][-0.366132,-0.912735,-1.1233][0.308079,-0.0778547,0.94817][0.301955,0.997457,0][-0.366132,-0.937684,-1.1233][0,-3.45575,-9.0641e-007][0.301955,0.975949,0][-0.00115156,-0.937684,-1.18111][1.98865e-007,-3.45575,-1.61729e-006][0.25245,0.975949,0][-0.00115156,-0.937684,-1.18111][1.98865e-007,-3.45575,-1.61729e-006][0.25245,0.975949,0][-0.00115156,-0.912735,-1.18111][3.53405e-007,-0.0778505,0.996965][0.25245,0.997457,0][-0.366132,-0.912735,-1.1233][0.308079,-0.0778547,0.94817][0.301955,0.997457,0][-0.956684,-0.912736,-0.69424][0.793389,-0.00352709,0.608705][0.400965,0.997457,0][-0.965189,-0.937684,-0.677546][8.93688e-007,-3.44081,5.79056e-007][0.405985,0.975949,0][-0.695386,-0.937684,-0.955537][-6.468e-007,-3.4707,-1.63029e-006][0.35146,0.975949,0][-0.695386,-0.937684,-0.955537][-6.468e-007,-3.4707,-1.63029e-006][0.35146,0.975949,0][-0.695386,-0.912736,-0.955537][0.586001,-0.0778548,0.806561][0.35146,0.997457,0][-0.956684,-0.912736,-0.69424][0.793389,-0.00352709,0.608705][0.400965,0.997457,0][-1.18225,-0.912736,-5.25577e-006][0.996965,-0.0778549,0][0.499975,0.997457,0][-1.18225,-0.937684,-5.25305e-006][1.55582e-007,-3.45575,-6.97213e-007][0.499975,0.975949,0][-1.12445,-0.937684,-0.364986][1.20679e-006,-3.45575,-6.27126e-007][0.45047,0.975949,0][-1.12445,-0.937684,-0.364986][1.20679e-006,-3.45575,-6.27126e-007][0.45047,0.975949,0][-1.12445,-0.912736,-0.364986][0.94817,-0.0778527,0.308079][0.45047,0.997457,0][-1.18225,-0.912736,-5.25577e-006][0.996965,-0.0778549,0][0.499975,0.997457,0][-0.695386,-0.912736,0.955527][0.588946,-0.0755517,-0.804633][0.64849,0.997457,0][-0.695386,-0.937684,0.955527][-9.89449e-006,2.81292,1.02345e-005][0.64849,0.975949,0][-0.964932,-0.937684,0.67804][2.11797e-007,-3.44123,-8.07489e-007][0.598985,0.975949,0][-0.964932,-0.937684,0.67804][2.11797e-007,-3.44123,-8.07489e-007][0.598985,0.975949,0][-0.956683,-0.912736,0.694229][0.790809,-0.000434527,-0.612062][0.598985,0.997457,0][-0.695386,-0.912736,0.955527][0.588946,-0.0755517,-0.804633][0.64849,0.997457,0][-0.00115136,-0.912736,1.1811][0,-0.0778548,-0.996965][0.7475,0.997457,0][-0.00115135,-0.937684,1.1811][-1.21628e-007,-3.45575,-1.45504e-006][0.7475,0.975949,0][-0.366132,-0.937684,1.12329][4.11436e-007,-3.45575,-1.02964e-006][0.697995,0.975949,0][-0.366132,-0.937684,1.12329][4.11436e-007,-3.45575,-1.02964e-006][0.697995,0.975949,0][-0.366132,-0.912736,1.12329][0.308079,-0.077853,-0.94817][0.697995,0.997457,0][-0.00115136,-0.912736,1.1811][0,-0.0778548,-0.996965][0.7475,0.997457,0][0.693083,-0.912736,0.955526][-0.582174,-0.0666835,-0.810325][0.84651,0.997457,0][0.695754,-0.937684,0.952855][2.26354e-007,-3.44704,-2.94937e-007][0.847522,0.975949,0][0.576855,-0.937684,1.01475][0,-3.1503,0][0.829034,0.975949,0][0.693083,-0.912736,0.955526][-0.582174,-0.0666835,-0.810325][0.84651,0.997457,0][0.576855,-0.937684,1.01475][0,-3.1503,0][0.829034,0.975949,0][0.363829,-0.937684,1.12329][0,-3.45575,0][0.797005,0.975949,0][0.363829,-0.912736,1.12329][-0.308079,-0.0778527,-0.94817][0.797005,0.997457,0][0.693083,-0.912736,0.955526][-0.582174,-0.0666835,-0.810325][0.84651,0.997457,0][0.363829,-0.937684,1.12329][0,-3.45575,0][0.797005,0.975949,0][1.12214,-0.912736,0.364975][-0.94817,-0.0778551,-0.308079][0.94552,0.997457,0][1.12214,-0.937684,0.364975][0,-3.45575,-5.82885e-007][0.94552,0.975949,0][0.95438,-0.937684,0.694229][1.75459e-007,-3.45575,-4.92112e-007][0.896015,0.975949,0][0.95438,-0.937684,0.694229][1.75459e-007,-3.45575,-4.92112e-007][0.896015,0.975949,0][0.95438,-0.912736,0.694229][-0.806561,-0.0778555,-0.586001][0.896015,0.997457,0][1.12214,-0.912736,0.364975][-0.94817,-0.0778551,-0.308079][0.94552,0.997457,0][1.12214,-0.912736,-0.364986][-0.94817,-0.0778555,0.308079][0.0544307,0.997457,0][1.12214,-0.937684,-0.364986][-1.3699e-006,-3.45575,-1.46233e-007][0.0544307,0.975949,0][1.17995,-0.937684,-5.35532e-006][0,-3.45575,-8.4575e-007][0.00492573,0.975949,0][1.17995,-0.937684,-5.35532e-006][0,-3.45575,-8.4575e-007][0.00492573,0.975949,0][1.17995,-0.912736,-5.35902e-006][-0.996965,-0.077855,-1.24048e-007][0.00492573,0.997457,0][1.12214,-0.912736,-0.364986][-0.94817,-0.0778555,0.308079][0.0544307,0.997457,0][0.859543,-0.937684,-0.789077][6.4336e-007,-3.14159,-6.43359e-007][0.121903,0.975949,0][0.95438,-0.937684,-0.69424][-1.82924e-007,-3.45575,-4.8854e-007][0.103936,0.975949,0][0.95438,-0.912736,-0.69424][-0.806561,-0.0778543,0.586001][0.103936,0.997457,0][0.859543,-0.937684,-0.789077][6.4336e-007,-3.14159,-6.43359e-007][0.121903,0.975949,0][0.95438,-0.912736,-0.69424][-0.806561,-0.0778543,0.586001][0.103936,0.997457,0][0.693083,-0.912736,-0.955537][-0.586001,-0.0778556,0.806561][0.153441,0.997457,0][0.859543,-0.937684,-0.789077][6.4336e-007,-3.14159,-6.43359e-007][0.121903,0.975949,0][0.693083,-0.912736,-0.955537][-0.586001,-0.0778556,0.806561][0.153441,0.997457,0][0.693083,-0.937684,-0.955537][0,-3.45575,-1.68595e-006][0.153441,0.975949,0][0.860403,-0.937684,0.788207][-3.58474e-007,-3.14159,-6.42995e-007][0.87821,0.975949,0][0.695754,-0.937684,0.952855][2.26354e-007,-3.44704,-2.94937e-007][0.847522,0.975949,0][0.693083,-0.912736,0.955526][-0.582174,-0.0666835,-0.810325][0.84651,0.997457,0][0.860403,-0.937684,0.788207][-3.58474e-007,-3.14159,-6.42995e-007][0.87821,0.975949,0][0.693083,-0.912736,0.955526][-0.582174,-0.0666835,-0.810325][0.84651,0.997457,0][0.95438,-0.912736,0.694229][-0.806561,-0.0778555,-0.586001][0.896015,0.997457,0][0.95438,-0.937684,0.694229][1.75459e-007,-3.45575,-4.92112e-007][0.896015,0.975949,0][0.860403,-0.937684,0.788207][-3.58474e-007,-3.14159,-6.42995e-007][0.87821,0.975949,0][0.95438,-0.912736,0.694229][-0.806561,-0.0778555,-0.586001][0.896015,0.997457,0][1.12214,-0.912736,0.364975][-0.94817,-0.0778551,-0.308079][0.94552,0.997457,0][1.17995,-0.912736,-5.35902e-006][-0.996965,-0.077855,-1.24048e-007][0.995025,0.997457,0][1.17995,-0.937684,-5.35532e-006][0,-3.45575,-8.4575e-007][0.995025,0.975949,0][1.17995,-0.937684,-5.35532e-006][0,-3.45575,-8.4575e-007][0.995025,0.975949,0][1.12214,-0.937684,0.364975][0,-3.45575,-5.82885e-007][0.94552,0.975949,0][1.12214,-0.912736,0.364975][-0.94817,-0.0778551,-0.308079][0.94552,0.997457,0][-0.964932,-0.937684,0.67804][2.11797e-007,-3.44123,-8.07489e-007][0.598985,0.975949,0][-1.12445,-0.937684,0.364975][3.95937e-007,-3.45575,-6.73229e-007][0.54948,0.975949,0][-1.12445,-0.912736,0.364975][0.94817,-0.0778547,-0.308079][0.54948,0.997457,0][-1.12445,-0.912736,0.364975][0.94817,-0.0778547,-0.308079][0.54948,0.997457,0][-0.956683,-0.912736,0.694229][0.790809,-0.000434527,-0.612062][0.598985,0.997457,0][-0.964932,-0.937684,0.67804][2.11797e-007,-3.44123,-8.07489e-007][0.598985,0.975949,0][-0.366132,-0.912736,1.12329][0.308079,-0.077853,-0.94817][0.697995,0.997457,0][-0.366132,-0.937684,1.12329][4.11436e-007,-3.45575,-1.02964e-006][0.697995,0.975949,0][-0.695386,-0.937684,0.955527][-9.89449e-006,2.81292,1.02345e-005][0.64849,0.975949,0][-0.695386,-0.937684,0.955527][-9.89449e-006,2.81292,1.02345e-005][0.64849,0.975949,0][-0.695386,-0.912736,0.955527][0.588946,-0.0755517,-0.804633][0.64849,0.997457,0][-0.366132,-0.912736,1.12329][0.308079,-0.077853,-0.94817][0.697995,0.997457,0][0.363829,-0.912736,1.12329][-0.308079,-0.0778527,-0.94817][0.797005,0.997457,0][0.363829,-0.937684,1.12329][0,-3.45575,0][0.797005,0.975949,0][-0.00115135,-0.937684,1.1811][-1.21628e-007,-3.45575,-1.45504e-006][0.7475,0.975949,0][-0.00115135,-0.937684,1.1811][-1.21628e-007,-3.45575,-1.45504e-006][0.7475,0.975949,0][-0.00115136,-0.912736,1.1811][0,-0.0778548,-0.996965][0.7475,0.997457,0][0.363829,-0.912736,1.12329][-0.308079,-0.0778527,-0.94817][0.797005,0.997457,0][-1.07483,-0.937684,-0.462361][2.14919e-007,-3.14159,-2.69801e-007][0.435829,0.975949,0][-0.965189,-0.937684,-0.677546][8.93688e-007,-3.44081,5.79056e-007][0.405985,0.975949,0][-0.956684,-0.912736,-0.69424][0.793389,-0.00352709,0.608705][0.400965,0.997457,0][-1.07483,-0.937684,-0.462361][2.14919e-007,-3.14159,-2.69801e-007][0.435829,0.975949,0][-0.956684,-0.912736,-0.69424][0.793389,-0.00352709,0.608705][0.400965,0.997457,0][-1.12445,-0.912736,-0.364986][0.94817,-0.0778527,0.308079][0.45047,0.997457,0][-1.12445,-0.937684,-0.364986][1.20679e-006,-3.45575,-6.27126e-007][0.45047,0.975949,0][-1.07483,-0.937684,-0.462361][2.14919e-007,-3.14159,-2.69801e-007][0.435829,0.975949,0][-1.12445,-0.912736,-0.364986][0.94817,-0.0778527,0.308079][0.45047,0.997457,0][-1.12445,-0.912736,0.364975][0.94817,-0.0778547,-0.308079][0.54948,0.997457,0][-1.12445,-0.937684,0.364975][3.95937e-007,-3.45575,-6.73229e-007][0.54948,0.975949,0][-1.18225,-0.937684,-5.25305e-006][1.55582e-007,-3.45575,-6.97213e-007][0.499975,0.975949,0][-1.18225,-0.937684,-5.25305e-006][1.55582e-007,-3.45575,-6.97213e-007][0.499975,0.975949,0][-1.18225,-0.912736,-5.25577e-006][0.996965,-0.0778549,0][0.499975,0.997457,0][-1.12445,-0.912736,0.364975][0.94817,-0.0778547,-0.308079][0.54948,0.997457,0][0.575655,-0.937684,-1.01537][0,-3.14159,-4.786e-007][0.171097,0.975949,0][0.693083,-0.937684,-0.955537][0,-3.45575,-1.68595e-006][0.153441,0.975949,0][0.693083,-0.912736,-0.955537][-0.586001,-0.0778556,0.806561][0.153441,0.997457,0][0.575655,-0.937684,-1.01537][0,-3.14159,-4.786e-007][0.171097,0.975949,0][0.693083,-0.912736,-0.955537][-0.586001,-0.0778556,0.806561][0.153441,0.997457,0][0.363829,-0.912735,-1.1233][-0.308079,-0.0778548,0.94817][0.202946,0.997457,0][0.575655,-0.937684,-1.01537][0,-3.14159,-4.786e-007][0.171097,0.975949,0][0.363829,-0.912735,-1.1233][-0.308079,-0.0778548,0.94817][0.202946,0.997457,0][0.363829,-0.937684,-1.1233][0,-3.45575,-1.13627e-006][0.202946,0.975949,0][-0.00115156,-0.912735,-1.18111][3.53405e-007,-0.0778505,0.996965][0.25245,0.997457,0][-0.00115156,-0.937684,-1.18111][1.98865e-007,-3.45575,-1.61729e-006][0.25245,0.975949,0][0.363829,-0.937684,-1.1233][0,-3.45575,-1.13627e-006][0.202946,0.975949,0][0.363829,-0.937684,-1.1233][0,-3.45575,-1.13627e-006][0.202946,0.975949,0][0.363829,-0.912735,-1.1233][-0.308079,-0.0778548,0.94817][0.202946,0.997457,0][-0.00115156,-0.912735,-1.18111][3.53405e-007,-0.0778505,0.996965][0.25245,0.997457,0][-0.695386,-0.912736,-0.955537][0.586001,-0.0778548,0.806561][0.35146,0.997457,0][-0.695386,-0.937684,-0.955537][-6.468e-007,-3.4707,-1.63029e-006][0.35146,0.975949,0][-0.366132,-0.937684,-1.1233][0,-3.45575,-9.0641e-007][0.301955,0.975949,0][-0.366132,-0.937684,-1.1233][0,-3.45575,-9.0641e-007][0.301955,0.975949,0][-0.366132,-0.912735,-1.1233][0.308079,-0.0778547,0.94817][0.301955,0.997457,0][-0.695386,-0.912736,-0.955537][0.586001,-0.0778548,0.806561][0.35146,0.997457,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/VoidStar.mesh b/shareddata/charcustom/hats/fonts/VoidStar.mesh deleted file mode 100644 index 72e8dcc..0000000 --- a/shareddata/charcustom/hats/fonts/VoidStar.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -1204 -[1.11362,0.311808,2.51096][0.384697,0,0.923043][0.794982,0.834014,0][1.11362,0.375019,2.51096][0.384697,0,0.923043][0.794982,0.828458,0][0.99924,0.375019,2.55863][0.384697,0,0.923043][0.805035,0.828458,0][0.99924,0.375019,2.55863][0.384697,0,0.923043][0.805035,0.828458,0][0.99924,0.311808,2.55863][0.384697,0,0.923043][0.805035,0.834014,0][1.11362,0.311808,2.51096][0.384697,0,0.923043][0.794982,0.834014,0][0.931732,0.19685,1.73404][0,1.47262,0][0.225319,0.260858,0][0.838558,0.19685,1.56063][0,1.66897,0][0.223417,0.278055,0][0.517981,0.19685,1.69424][0,1.66897,0][0.192894,0.277689,0][0.517981,0.19685,1.69424][0,1.66897,0][0.192894,0.277689,0][0.575535,0.19685,1.88249][0,1.47262,1.201e-007][0.191405,0.260451,0][0.931732,0.19685,1.73404][0,1.47262,0][0.225319,0.260858,0][0.838558,0.19685,1.56063][0,1.66897,0][0.429321,0.547109,0][0.838558,0,1.56063][-0.604282,0,-1.44991][0.429321,0.56441,0][0.517981,0,1.69424][-0.604282,0,-1.44991][0.401145,0.56441,0][0.517981,0,1.69424][-0.604282,0,-1.44991][0.401145,0.56441,0][0.517981,0.19685,1.69424][0,1.66897,0][0.401145,0.547109,0][0.838558,0.19685,1.56063][0,1.66897,0][0.429321,0.547109,0][0.838558,0,1.56063][-0.604282,0,-1.44991][0.391771,0.196923,0][0.931732,0,1.73404][0,-1.47262,0][0.408297,0.191799,0][0.575535,0,1.88249][0,-1.47262,0][0.415119,0.225023,0][0.575535,0,1.88249][0,-1.47262,0][0.415119,0.225023,0][0.517981,0,1.69424][-0.604282,0,-1.44991][0.397911,0.226825,0][0.838558,0,1.56063][-0.604282,0,-1.44991][0.391771,0.196923,0][0.575535,0,1.88249][0,-1.47262,0][0.579427,0.193702,0][0.575535,0.19685,1.88249][0,1.47262,1.201e-007][0.596729,0.193702,0][0.197221,0.19685,1.9586][0.309807,0,1.53994][0.596729,0.226953,0][0.197221,0.19685,1.9586][0.309807,0,1.53994][0.596729,0.226953,0][0.197221,0,1.9586][0.309807,0,1.53994][0.579427,0.226953,0][0.575535,0,1.88249][0,-1.47262,0][0.579427,0.193702,0][0.418442,0.905327,1.83881][0,1,0][0.721523,0.855948,0][0.404257,0.905327,1.79241][0,1,0][0.721237,0.860203,0][0.320338,0.905327,1.80929][0,1,0][0.713717,0.860437,0][0.320338,0.905327,1.80929][0,1,0][0.713717,0.860437,0][0.325199,0.905327,1.85756][0,1,0][0.713167,0.856209,0][0.418442,0.905327,1.83881][0,1,0][0.721523,0.855948,0][0.517981,0.19685,1.69424][0,1.66897,0][0.401145,0.547109,0][0.517981,0,1.69424][-0.604282,0,-1.44991][0.401145,0.56441,0][0.177498,0,1.76274][-0.309807,0,-1.53994][0.371219,0.56441,0][0.177498,0,1.76274][-0.309807,0,-1.53994][0.371219,0.56441,0][0.177498,0.19685,1.76274][-0.309807,0,-1.53994][0.371219,0.547109,0][0.517981,0.19685,1.69424][0,1.66897,0][0.401145,0.547109,0][0.517981,0,1.69424][-0.604282,0,-1.44991][0.397911,0.226825,0][0.575535,0,1.88249][0,-1.47262,0][0.415119,0.225023,0][0.197221,0,1.9586][0.309807,0,1.53994][0.415327,0.25894,0][0.197221,0,1.9586][0.309807,0,1.53994][0.415327,0.25894,0][0.177498,0,1.76274][-0.309807,0,-1.53994][0.398099,0.25735,0][0.517981,0,1.69424][-0.604282,0,-1.44991][0.397911,0.226825,0][0.0679491,0.311808,2.74599][0.00217992,0,0.999998][0.660671,0.826192,0][0.0679491,0.375019,2.74599][0.00217992,0,0.999998][0.660671,0.820636,0][-0.0559673,0.375019,2.74626][0.00217992,0,0.999998][0.671562,0.820636,0][-0.0559673,0.375019,2.74626][0.00217992,0,0.999998][0.671562,0.820636,0][-0.0559673,0.311808,2.74626][0.00217992,0,0.999998][0.671562,0.826192,0][0.0679491,0.311808,2.74599][0.00217992,0,0.999998][0.660671,0.826192,0][0.197221,0.19685,1.9586][0.309807,0,1.53994][0.0222147,0.700424,0][0.177498,0.19685,1.76274][-0.309807,0,-1.53994][0.005,0.698691,0][-0.169806,0.19685,1.7635][0,1.66897,1.26949e-007][0.00506661,0.668165,0][-0.169806,0.19685,1.7635][0,1.66897,1.26949e-007][0.00506661,0.668165,0][-0.188673,0.19685,1.95944][0,1.47262,0][0.0222887,0.666507,0][0.197221,0.19685,1.9586][0.309807,0,1.53994][0.0222147,0.700424,0][0.177498,0.19685,1.76274][-0.309807,0,-1.53994][0.371219,0.547109,0][0.177498,0,1.76274][-0.309807,0,-1.53994][0.371219,0.56441,0][-0.169806,0,1.7635][-0.00342745,0,-1.57079][0.340693,0.56441,0][-0.169806,0,1.7635][-0.00342745,0,-1.57079][0.340693,0.56441,0][-0.169806,0.19685,1.7635][0,1.66897,1.26949e-007][0.340693,0.547109,0][0.177498,0.19685,1.76274][-0.309807,0,-1.53994][0.371219,0.547109,0][0.177498,0,1.76274][-0.309807,0,-1.53994][0.398099,0.25735,0][0.197221,0,1.9586][0.309807,0,1.53994][0.415327,0.25894,0][-0.188673,0,1.95944][0,-1.47262,0][0.408916,0.292246,0][-0.188673,0,1.95944][0,-1.47262,0][0.408916,0.292246,0][-0.169806,0,1.7635][-0.00342745,0,-1.57079][0.392328,0.287325,0][0.177498,0,1.76274][-0.309807,0,-1.53994][0.398099,0.25735,0][-0.188673,0,1.95944][0,-1.47262,0][0.18703,0.244514,0][-0.188673,0.19685,1.95944][0,1.47262,0][0.18703,0.261816,0][-0.567316,0.19685,1.88498][-0.303086,0,1.54128][0.15375,0.261816,0][-0.567316,0.19685,1.88498][-0.303086,0,1.54128][0.15375,0.261816,0][-0.567316,0,1.88498][-0.303086,0,1.54128][0.15375,0.244514,0][-0.188673,0,1.95944][0,-1.47262,0][0.18703,0.244514,0][-0.317091,0.905327,1.85897][0,1,0][0.88363,0.77581,0][-0.312441,0.905327,1.81067][0,1,0][0.88404,0.771565,0][-0.396432,0.905327,1.79415][0,1,0][0.891564,0.771551,0][-0.396432,0.905327,1.79415][0,1,0][0.891564,0.771551,0][-0.410415,0.905327,1.84061][0,1,0][0.891989,0.775795,0][-0.317091,0.905327,1.85897][0,1,0][0.88363,0.77581,0][-0.169806,0.19685,1.7635][0,1.66897,1.26949e-007][0.340693,0.547109,0][-0.169806,0,1.7635][-0.00342745,0,-1.57079][0.340693,0.56441,0][-0.510584,0,1.69648][0.303086,0,-1.54128][0.310741,0.56441,0][-0.510584,0,1.69648][0.303086,0,-1.54128][0.310741,0.56441,0][-0.510584,0.19685,1.69648][0.303086,0,-1.54128][0.310741,0.547109,0][-0.169806,0.19685,1.7635][0,1.66897,1.26949e-007][0.340693,0.547109,0][-0.169806,0,1.7635][-0.00342745,0,-1.57079][0.392328,0.287325,0][-0.188673,0,1.95944][0,-1.47262,0][0.408916,0.292246,0][-0.567316,0,1.88498][-0.303086,0,1.54128][0.396129,0.323661,0][-0.567316,0,1.88498][-0.303086,0,1.54128][0.396129,0.323661,0][-0.510584,0,1.69648][0.303086,0,-1.54128][0.38082,0.315599,0][-0.169806,0,1.7635][-0.00342745,0,-1.57079][0.392328,0.287325,0][-0.988067,0.311808,2.56296][-0.380667,0,0.924712][0.794977,0.814851,0][-0.988067,0.375019,2.56296][-0.380667,0,0.924712][0.794977,0.809295,0][-1.10265,0.375019,2.51579][-0.380667,0,0.924712][0.805049,0.809295,0][-1.10265,0.375019,2.51579][-0.380667,0,0.924712][0.805049,0.809295,0][-1.10265,0.311808,2.51579][-0.380667,0,0.924712][0.805049,0.814851,0][-0.988067,0.311808,2.56296][-0.380667,0,0.924712][0.794977,0.814851,0][-0.567316,0.19685,1.88498][-0.303086,0,1.54128][0.406027,0.0389004,0][-0.510584,0.19685,1.69648][0.303086,0,-1.54128][0.388871,0.0366615,0][-0.831741,0.19685,1.56428][0,1.66897,0][0.389835,0.00615116,0][-0.831741,0.19685,1.56428][0,1.66897,0][0.389835,0.00615116,0][-0.924157,0.19685,1.73809][0,1.47262,0][0.407098,0.005,0][-0.567316,0.19685,1.88498][-0.303086,0,1.54128][0.406027,0.0389004,0][-0.510584,0.19685,1.69648][0.303086,0,-1.54128][0.310741,0.547109,0][-0.510584,0,1.69648][0.303086,0,-1.54128][0.310741,0.56441,0][-0.831741,0,1.56428][0.59795,0,-1.45253][0.282514,0.56441,0][-0.831741,0,1.56428][0.59795,0,-1.45253][0.282514,0.56441,0][-0.831741,0.19685,1.56428][0,1.66897,0][0.282514,0.547109,0][-0.510584,0.19685,1.69648][0.303086,0,-1.54128][0.310741,0.547109,0][-0.510584,0,1.69648][0.303086,0,-1.54128][0.38082,0.315599,0][-0.567316,0,1.88498][-0.303086,0,1.54128][0.396129,0.323661,0][-0.924157,0,1.73809][0,-1.47262,0][0.37746,0.351977,0][-0.924157,0,1.73809][0,-1.47262,0][0.37746,0.351977,0][-0.831741,0,1.56428][0.59795,0,-1.45253][0.364018,0.341084,0][-0.510584,0,1.69648][0.303086,0,-1.54128][0.38082,0.315599,0][-0.924157,0,1.73809][0,-1.47262,0][0.907597,0.005,0][-0.924157,0.19685,1.73809][0,1.47262,0][0.924899,0.005,0][-1.24548,0.19685,1.52439][-0.869836,0,1.30797][0.924899,0.0389173,0][-1.24548,0.19685,1.52439][-0.869836,0,1.30797][0.924899,0.0389173,0][-1.24548,0,1.52439][-0.869836,0,1.30797][0.907597,0.0389173,0][-0.924157,0,1.73809][0,-1.47262,0][0.907597,0.005,0][-1.00435,0.905327,1.59611][0,1,0][0.889199,0.226021,0][-0.981571,0.905327,1.55328][0,1,0][0.88883,0.230269,0][-1.05285,0.905327,1.50587][0,1,0][0.881307,0.230356,0][-1.05285,0.905327,1.50587][0,1,0][0.881307,0.230356,0][-1.08355,0.905327,1.54345][0,1,0][0.88084,0.226118,0][-1.00435,0.905327,1.59611][0,1,0][0.889199,0.226021,0][-0.831741,0.19685,1.56428][0,1.66897,0][0.282514,0.547109,0][-0.831741,0,1.56428][0.59795,0,-1.45253][0.282514,0.56441,0][-1.12093,0,1.37196][0.869836,0,-1.30797][0.257096,0.56441,0][-1.12093,0,1.37196][0.869836,0,-1.30797][0.257096,0.56441,0][-1.12093,0.19685,1.37196][0.869836,0,-1.30797][0.257096,0.547109,0][-0.831741,0.19685,1.56428][0,1.66897,0][0.282514,0.547109,0][-0.831741,0,1.56428][0.59795,0,-1.45253][0.364018,0.341084,0][-0.924157,0,1.73809][0,-1.47262,0][0.37746,0.351977,0][-1.24548,0,1.52439][-0.869836,0,1.30797][0.353625,0.376108,0][-1.24548,0,1.52439][-0.869836,0,1.30797][0.353625,0.376108,0][-1.12093,0,1.37196][0.869836,0,-1.30797][0.342567,0.362801,0][-0.831741,0,1.56428][0.59795,0,-1.45253][0.364018,0.341084,0][-1.89366,0.311808,1.98975][-0.705563,0,0.708647][0.765937,0.538623,0][-1.89366,0.375019,1.98975][-0.705563,0,0.708647][0.765937,0.533067,0][-1.98147,0.375019,1.90232][-0.705563,0,0.708647][0.776829,0.533067,0][-1.98147,0.375019,1.90232][-0.705563,0,0.708647][0.776829,0.533067,0][-1.98147,0.311808,1.90232][-0.705563,0,0.708647][0.776829,0.538623,0][-1.89366,0.311808,1.98975][-0.705563,0,0.708647][0.765937,0.538623,0][-1.24548,0.19685,1.52439][-0.869836,0,1.30797][0.458523,0.0426546,0][-1.12093,0.19685,1.37196][0.869836,0,-1.30797][0.475701,0.0447252,0][-1.36705,0.19685,1.12691][0,1.66897,0][0.475036,0.0752435,0][-1.36705,0.19685,1.12691][0,1.66897,0][0.475036,0.0752435,0][-1.51895,0.19685,1.25212][0,1.47262,0][0.457784,0.0765638,0][-1.24548,0.19685,1.52439][-0.869836,0,1.30797][0.458523,0.0426546,0][-1.12093,0.19685,1.37196][0.869836,0,-1.30797][0.257096,0.547109,0][-1.12093,0,1.37196][0.869836,0,-1.30797][0.257096,0.56441,0][-1.36705,0,1.12691][1.1083,0,-1.11314][0.235464,0.56441,0][-1.36705,0,1.12691][1.1083,0,-1.11314][0.235464,0.56441,0][-1.36705,0.19685,1.12691][0,1.66897,0][0.235464,0.547109,0][-1.12093,0.19685,1.37196][0.869836,0,-1.30797][0.257096,0.547109,0][-1.12093,0,1.37196][0.869836,0,-1.30797][0.342567,0.362801,0][-1.24548,0,1.52439][-0.869836,0,1.30797][0.353625,0.376108,0][-1.51895,0,1.25212][0,-1.47262,0][0.32554,0.395125,0][-1.51895,0,1.25212][0,-1.47262,0][0.32554,0.395125,0][-1.36705,0,1.12691][1.1083,0,-1.11314][0.31729,0.379916,0][-1.12093,0,1.37196][0.869836,0,-1.30797][0.342567,0.362801,0][-1.51895,0,1.25212][0,-1.47262,0][0.484839,0.144768,0][-1.51895,0.19685,1.25212][0,1.47262,0][0.50214,0.144768,0][-1.73404,0.19685,0.931731][-1.30416,0,0.875535][0.50214,0.178686,0][-1.73404,0.19685,0.931731][-1.30416,0,0.875535][0.50214,0.178686,0][-1.73404,0,0.931731][-1.30416,0,0.875535][0.484839,0.178686,0][-1.51895,0,1.25212][0,-1.47262,0][0.484839,0.144768,0][-1.5387,0.905327,1.09027][0,1,0][0.58978,0.970841,0][-1.50127,0.905327,1.05941][0,1,0][0.589453,0.975093,0][-1.54898,0.905327,0.988339][0,1,0][0.581931,0.975254,0][-1.54898,0.905327,0.988339][0,1,0][0.581931,0.975254,0][-1.59172,0.905327,1.0113][0,1,0][0.581422,0.97102,0][-1.5387,0.905327,1.09027][0,1,0][0.58978,0.970841,0][-1.36705,0.19685,1.12691][0,1.66897,0][0.224201,0.637943,0][-1.36705,0,1.12691][1.1083,0,-1.11314][0.224201,0.655244,0][-1.56063,0,0.838558][1.30416,0,-0.875535][0.198857,0.655244,0][-1.56063,0,0.838558][1.30416,0,-0.875535][0.198857,0.655244,0][-1.56063,0.19685,0.838558][1.30416,0,-0.875535][0.198857,0.637943,0][-1.36705,0.19685,1.12691][0,1.66897,0][0.224201,0.637943,0][-1.36705,0,1.12691][1.1083,0,-1.11314][0.31729,0.379916,0][-1.51895,0,1.25212][0,-1.47262,0][0.32554,0.395125,0][-1.73404,0,0.931731][-1.30416,0,0.875535][0.294285,0.408297,0][-1.73404,0,0.931731][-1.30416,0,0.875535][0.294285,0.408297,0][-1.56063,0,0.838558][1.30416,0,-0.875535][0.289161,0.391771,0][-1.36705,0,1.12691][1.1083,0,-1.11314][0.31729,0.379916,0][-2.51096,0.311808,1.11362][-0.923043,0,0.384696][0.862314,0.777107,0][-2.51096,0.375019,1.11362][-0.923043,0,0.384696][0.862314,0.771551,0][-2.55863,0.375019,0.99924][-0.923043,0,0.384696][0.872367,0.771551,0][-2.55863,0.375019,0.99924][-0.923043,0,0.384696][0.872367,0.771551,0][-2.55863,0.311808,0.99924][-0.923043,0,0.384696][0.872367,0.777107,0][-2.51096,0.311808,1.11362][-0.923043,0,0.384696][0.862314,0.777107,0][-1.73404,0.19685,0.931731][-1.30416,0,0.875535][0.298518,0.191413,0][-1.56063,0.19685,0.838558][1.30416,0,-0.875535][0.315715,0.193315,0][-1.69424,0.19685,0.517981][0,1.66897,0][0.315349,0.223839,0][-1.69424,0.19685,0.517981][0,1.66897,0][0.315349,0.223839,0][-1.88249,0.19685,0.575535][0,1.47262,0][0.298111,0.225328,0][-1.73404,0.19685,0.931731][-1.30416,0,0.875535][0.298518,0.191413,0][-1.56063,0.19685,0.838558][1.30416,0,-0.875535][0.198857,0.637943,0][-1.56063,0,0.838558][1.30416,0,-0.875535][0.198857,0.655244,0][-1.69424,0,0.517981][1.44991,0,-0.604283][0.170681,0.655244,0][-1.69424,0,0.517981][1.44991,0,-0.604283][0.170681,0.655244,0][-1.69424,0.19685,0.517981][0,1.66897,0][0.170681,0.637943,0][-1.56063,0.19685,0.838558][1.30416,0,-0.875535][0.198857,0.637943,0][-1.56063,0,0.838558][1.30416,0,-0.875535][0.289161,0.391771,0][-1.73404,0,0.931731][-1.30416,0,0.875535][0.294285,0.408297,0][-1.88249,0,0.575535][0,-1.47262,0][0.261061,0.415119,0][-1.88249,0,0.575535][0,-1.47262,0][0.261061,0.415119,0][-1.69424,0,0.517981][1.44991,0,-0.604283][0.259259,0.397911,0][-1.56063,0,0.838558][1.30416,0,-0.875535][0.289161,0.391771,0][-1.88249,0,0.575535][0,-1.47262,0][0.484839,0.242636,0][-1.88249,0.19685,0.575535][0,1.47262,0][0.50214,0.242636,0][-1.9586,0.19685,0.19722][-1.53994,0,0.309807][0.50214,0.275887,0][-1.9586,0.19685,0.19722][-1.53994,0,0.309807][0.50214,0.275887,0][-1.9586,0,0.19722][-1.53994,0,0.309807][0.484839,0.275887,0][-1.88249,0,0.575535][0,-1.47262,0][0.484839,0.242636,0][-1.83881,0.905327,0.418441][0,1,0][0.413769,0.703315,0][-1.79241,0.905327,0.404256][0,1,0][0.414054,0.69906,0][-1.80929,0.905327,0.320338][0,1,0][0.421574,0.698825,0][-1.80929,0.905327,0.320338][0,1,0][0.421574,0.698825,0][-1.85756,0.905327,0.325199][0,1,0][0.422124,0.703054,0][-1.83881,0.905327,0.418441][0,1,0][0.413769,0.703315,0][-1.69424,0.19685,0.517981][0,1.66897,0][0.170681,0.637943,0][-1.69424,0,0.517981][1.44991,0,-0.604283][0.170681,0.655244,0][-1.76274,0,0.177498][1.53994,0,-0.309806][0.140755,0.655244,0][-1.76274,0,0.177498][1.53994,0,-0.309806][0.140755,0.655244,0][-1.76274,0.19685,0.177498][1.53994,0,-0.309806][0.140755,0.637943,0][-1.69424,0.19685,0.517981][0,1.66897,0][0.170681,0.637943,0][-1.69424,0,0.517981][1.44991,0,-0.604283][0.259259,0.397911,0][-1.88249,0,0.575535][0,-1.47262,0][0.261061,0.415119,0][-1.9586,0,0.19722][-1.53994,0,0.309807][0.227144,0.415327,0][-1.9586,0,0.19722][-1.53994,0,0.309807][0.227144,0.415327,0][-1.76274,0,0.177498][1.53994,0,-0.309806][0.228734,0.398099,0][-1.69424,0,0.517981][1.44991,0,-0.604283][0.259259,0.397911,0][-2.74599,0.311808,0.067949][-0.999998,0,0.00217991][0.308341,0.654167,0][-2.74599,0.375019,0.067949][-0.999998,0,0.00217991][0.308341,0.648611,0][-2.74626,0.375019,-0.0559677][-0.999998,0,0.00217991][0.319232,0.648611,0][-2.74626,0.375019,-0.0559677][-0.999998,0,0.00217991][0.319232,0.648611,0][-2.74626,0.311808,-0.0559677][-0.999998,0,0.00217991][0.319232,0.654167,0][-2.74599,0.311808,0.067949][-0.999998,0,0.00217991][0.308341,0.654167,0][-1.9586,0.19685,0.19722][-1.53994,0,0.309807][0.304693,0.575673,0][-1.76274,0.19685,0.177498][1.53994,0,-0.309806][0.321908,0.577406,0][-1.7635,0.19685,-0.169806][0,1.66897,0][0.321841,0.607932,0][-1.7635,0.19685,-0.169806][0,1.66897,0][0.321841,0.607932,0][-1.95944,0.19685,-0.188673][0,1.47262,0][0.304619,0.60959,0][-1.9586,0.19685,0.19722][-1.53994,0,0.309807][0.304693,0.575673,0][-1.76274,0.19685,0.177498][1.53994,0,-0.309806][0.140755,0.637943,0][-1.76274,0,0.177498][1.53994,0,-0.309806][0.140755,0.655244,0][-1.7635,0,-0.169806][1.57079,0,-0.00342799][0.110229,0.655244,0][-1.7635,0,-0.169806][1.57079,0,-0.00342799][0.110229,0.655244,0][-1.7635,0.19685,-0.169806][0,1.66897,0][0.110229,0.637943,0][-1.76274,0.19685,0.177498][1.53994,0,-0.309806][0.140755,0.637943,0][-1.76274,0,0.177498][1.53994,0,-0.309806][0.228734,0.398099,0][-1.9586,0,0.19722][-1.53994,0,0.309807][0.227144,0.415327,0][-1.95944,0,-0.188673][0,-1.47262,0][0.193839,0.408916,0][-1.95944,0,-0.188673][0,-1.47262,0][0.193839,0.408916,0][-1.7635,0,-0.169806][1.57079,0,-0.00342799][0.198759,0.392328,0][-1.76274,0,0.177498][1.53994,0,-0.309806][0.228734,0.398099,0][-1.95944,0,-0.188673][0,-1.47262,0][0.586299,0.0958342,0][-1.95944,0.19685,-0.188673][0,1.47262,0][0.603601,0.0958342,0][-1.88498,0.19685,-0.567316][-1.54128,0,-0.303085][0.603601,0.129114,0][-1.88498,0.19685,-0.567316][-1.54128,0,-0.303085][0.603601,0.129114,0][-1.88498,0,-0.567316][-1.54128,0,-0.303085][0.586299,0.129114,0][-1.95944,0,-0.188673][0,-1.47262,0][0.586299,0.0958342,0][-1.85897,0.905327,-0.317091][0,1,0][0.934592,0.175951,0][-1.81067,0.905327,-0.312441][0,1,0][0.934182,0.180195,0][-1.79415,0.905327,-0.396432][0,1,0][0.926658,0.180209,0][-1.79415,0.905327,-0.396432][0,1,0][0.926658,0.180209,0][-1.84061,0.905327,-0.410415][0,1,0][0.926233,0.175966,0][-1.85897,0.905327,-0.317091][0,1,0][0.934592,0.175951,0][-1.7635,0.19685,-0.169806][0,1.66897,0][0.110229,0.637943,0][-1.7635,0,-0.169806][1.57079,0,-0.00342799][0.110229,0.655244,0][-1.69648,0,-0.510584][1.54128,0,0.303086][0.0802773,0.655244,0][-1.69648,0,-0.510584][1.54128,0,0.303086][0.0802773,0.655244,0][-1.69648,0.19685,-0.510584][1.54128,0,0.303086][0.0802773,0.637943,0][-1.7635,0.19685,-0.169806][0,1.66897,0][0.110229,0.637943,0][-1.7635,0,-0.169806][1.57079,0,-0.00342799][0.198759,0.392328,0][-1.95944,0,-0.188673][0,-1.47262,0][0.193839,0.408916,0][-1.88498,0,-0.567316][-1.54128,0,-0.303085][0.162424,0.396129,0][-1.88498,0,-0.567316][-1.54128,0,-0.303085][0.162424,0.396129,0][-1.69648,0,-0.510584][1.54128,0,0.303086][0.170486,0.380821,0][-1.7635,0,-0.169806][1.57079,0,-0.00342799][0.198759,0.392328,0][-2.56296,0.311808,-0.988068][-0.924712,0,-0.380667][0.77565,0.797923,0][-2.56296,0.375019,-0.988068][-0.924712,0,-0.380667][0.77565,0.792367,0][-2.51579,0.375019,-1.10265][-0.924712,0,-0.380667][0.785722,0.792367,0][-2.51579,0.375019,-1.10265][-0.924712,0,-0.380667][0.785722,0.792367,0][-2.51579,0.311808,-1.10265][-0.924712,0,-0.380667][0.785722,0.797923,0][-2.56296,0.311808,-0.988068][-0.924712,0,-0.380667][0.77565,0.797923,0][-1.88498,0.19685,-0.567316][-1.54128,0,-0.303085][0.0389004,0.0748539,0][-1.69648,0.19685,-0.510584][1.54128,0,0.303086][0.0366615,0.0920101,0][-1.56428,0.19685,-0.831741][0,1.66897,0][0.00615114,0.0910459,0][-1.56428,0.19685,-0.831741][0,1.66897,0][0.00615114,0.0910459,0][-1.73809,0.19685,-0.924157][0,1.47262,0][0.005,0.0737825,0][-1.88498,0.19685,-0.567316][-1.54128,0,-0.303085][0.0389004,0.0748539,0][-1.69648,0.19685,-0.510584][1.54128,0,0.303086][0.0802773,0.637943,0][-1.69648,0,-0.510584][1.54128,0,0.303086][0.0802773,0.655244,0][-1.56428,0,-0.831741][1.45253,0,0.59795][0.0520499,0.655244,0][-1.56428,0,-0.831741][1.45253,0,0.59795][0.0520499,0.655244,0][-1.56428,0.19685,-0.831741][0,1.66897,0][0.0520499,0.637943,0][-1.69648,0.19685,-0.510584][1.54128,0,0.303086][0.0802773,0.637943,0][-1.69648,0,-0.510584][1.54128,0,0.303086][0.170486,0.380821,0][-1.88498,0,-0.567316][-1.54128,0,-0.303085][0.162424,0.396129,0][-1.73809,0,-0.924157][0,-1.47262,0][0.134107,0.37746,0][-1.73809,0,-0.924157][0,-1.47262,0][0.134107,0.37746,0][-1.56428,0,-0.831741][1.45253,0,0.59795][0.145,0.364018,0][-1.69648,0,-0.510584][1.54128,0,0.303086][0.170486,0.380821,0][-1.73809,0,-0.924157][0,-1.47262,0][0.484839,0.193702,0][-1.73809,0.19685,-0.924157][0,1.47262,0][0.50214,0.193702,0][-1.52439,0.19685,-1.24548][-1.30797,0,-0.869837][0.50214,0.22762,0][-1.52439,0.19685,-1.24548][-1.30797,0,-0.869837][0.50214,0.22762,0][-1.52439,0,-1.24548][-1.30797,0,-0.869837][0.484839,0.22762,0][-1.73809,0,-0.924157][0,-1.47262,0][0.484839,0.193702,0][-1.59611,0.905327,-1.00435][0,1,0][0.991028,0.710017,0][-1.55328,0.905327,-0.981571][0,1,0][0.990659,0.714266,0][-1.50587,0.905327,-1.05285][0,1,0][0.983136,0.714353,0][-1.50587,0.905327,-1.05285][0,1,0][0.983136,0.714353,0][-1.54345,0.905327,-1.08355][0,1,0][0.982669,0.710114,0][-1.59611,0.905327,-1.00435][0,1,0][0.991028,0.710017,0][-1.56428,0.19685,-0.831741][0,1.66897,0][0.0520499,0.637943,0][-1.56428,0,-0.831741][1.45253,0,0.59795][0.0520499,0.655244,0][-1.37196,0,-1.12093][1.30797,0,0.869836][0.0266319,0.655244,0][-1.37196,0,-1.12093][1.30797,0,0.869836][0.0266319,0.655244,0][-1.37196,0.19685,-1.12093][1.30797,0,0.869836][0.0266319,0.637943,0][-1.56428,0.19685,-0.831741][0,1.66897,0][0.0520499,0.637943,0][-1.56428,0,-0.831741][1.45253,0,0.59795][0.145,0.364018,0][-1.73809,0,-0.924157][0,-1.47262,0][0.134107,0.37746,0][-1.52439,0,-1.24548][-1.30797,0,-0.869837][0.109977,0.353625,0][-1.52439,0,-1.24548][-1.30797,0,-0.869837][0.109977,0.353625,0][-1.37196,0,-1.12093][1.30797,0,0.869836][0.123283,0.342567,0][-1.56428,0,-0.831741][1.45253,0,0.59795][0.145,0.364018,0][-1.98975,0.311808,-1.89366][-0.708647,0,-0.705563][0.983668,0.423688,0][-1.98975,0.37502,-1.89366][-0.708647,0,-0.705563][0.983668,0.418133,0][-1.90232,0.37502,-1.98147][-0.708647,0,-0.705563][0.99456,0.418133,0][-1.90232,0.37502,-1.98147][-0.708647,0,-0.705563][0.99456,0.418133,0][-1.90232,0.311808,-1.98147][-0.708647,0,-0.705563][0.99456,0.423688,0][-1.98975,0.311808,-1.89366][-0.708647,0,-0.705563][0.983668,0.423688,0][-1.52439,0.19685,-1.24548][-1.30797,0,-0.869837][0.458523,0.426525,0][-1.37196,0.19685,-1.12093][1.30797,0,0.869836][0.475701,0.428596,0][-1.12691,0.19685,-1.36705][0,1.66897,0][0.475036,0.459114,0][-1.12691,0.19685,-1.36705][0,1.66897,0][0.475036,0.459114,0][-1.25212,0.19685,-1.51895][0,1.47262,0][0.457784,0.460435,0][-1.52439,0.19685,-1.24548][-1.30797,0,-0.869837][0.458523,0.426525,0][-1.37196,0.19685,-1.12093][1.30797,0,0.869836][0.0266319,0.637943,0][-1.37196,0,-1.12093][1.30797,0,0.869836][0.0266319,0.655244,0][-1.12691,0,-1.36705][1.11314,0,1.1083][0.005,0.655244,0][-1.12691,0,-1.36705][1.11314,0,1.1083][0.005,0.655244,0][-1.12691,0.19685,-1.36705][0,1.66897,0][0.005,0.637943,0][-1.37196,0.19685,-1.12093][1.30797,0,0.869836][0.0266319,0.637943,0][-1.37196,0,-1.12093][1.30797,0,0.869836][0.123283,0.342567,0][-1.52439,0,-1.24548][-1.30797,0,-0.869837][0.109977,0.353625,0][-1.25212,0,-1.51895][0,-1.47262,0][0.0909598,0.32554,0][-1.25212,0,-1.51895][0,-1.47262,0][0.0909598,0.32554,0][-1.12691,0,-1.36705][1.11314,0,1.1083][0.106168,0.31729,0][-1.37196,0,-1.12093][1.30797,0,0.869836][0.123283,0.342567,0][-1.25212,0,-1.51895][0,-1.47262,0][0.005,0.715441,0][-1.25212,0.19685,-1.51895][0,1.47262,0][0.0223017,0.715441,0][-0.931731,0.19685,-1.73404][-0.875535,0,-1.30416][0.0223017,0.749358,0][-0.931731,0.19685,-1.73404][-0.875535,0,-1.30416][0.0223017,0.749358,0][-0.931731,0,-1.73404][-0.875535,0,-1.30416][0.005,0.749358,0][-1.25212,0,-1.51895][0,-1.47262,0][0.005,0.715441,0][-1.09027,0.905327,-1.5387][0,1,0][0.406896,0.752172,0][-1.05941,0.905327,-1.50127][0,1,0][0.407223,0.74792,0][-0.988339,0.905327,-1.54898][0,1,0][0.414745,0.747759,0][-0.988339,0.905327,-1.54898][0,1,0][0.414745,0.747759,0][-1.0113,0.905327,-1.59172][0,1,0][0.415254,0.751993,0][-1.09027,0.905327,-1.5387][0,1,0][0.406896,0.752172,0][-1.12691,0.19685,-1.36705][0,1.66897,0][0.70404,0.06727,0][-1.12691,0,-1.36705][1.11314,0,1.1083][0.70404,0.0845717,0][-0.838558,0,-1.56063][0.875535,0,1.30416][0.678696,0.0845717,0][-0.838558,0,-1.56063][0.875535,0,1.30416][0.678696,0.0845717,0][-0.838558,0.19685,-1.56063][0.875535,0,1.30416][0.678696,0.06727,0][-1.12691,0.19685,-1.36705][0,1.66897,0][0.70404,0.06727,0][-1.12691,0,-1.36705][1.11314,0,1.1083][0.106168,0.31729,0][-1.25212,0,-1.51895][0,-1.47262,0][0.0909598,0.32554,0][-0.931731,0,-1.73404][-0.875535,0,-1.30416][0.0777874,0.294285,0][-0.931731,0,-1.73404][-0.875535,0,-1.30416][0.0777874,0.294285,0][-0.838558,0,-1.56063][0.875535,0,1.30416][0.0943129,0.289161,0][-1.12691,0,-1.36705][1.11314,0,1.1083][0.106168,0.31729,0][-1.11362,0.311808,-2.51096][-0.384697,0,-0.923043][0.63823,0.757197,0][-1.11362,0.37502,-2.51096][-0.384697,0,-0.923043][0.63823,0.751641,0][-0.99924,0.37502,-2.55863][-0.384697,0,-0.923043][0.649121,0.751641,0][-0.99924,0.37502,-2.55863][-0.384697,0,-0.923043][0.649121,0.751641,0][-0.99924,0.311808,-2.55863][-0.384697,0,-0.923043][0.649121,0.757197,0][-1.11362,0.311808,-2.51096][-0.384697,0,-0.923043][0.63823,0.757197,0][-0.931731,0.19685,-1.73404][-0.875535,0,-1.30416][0.0426635,0.406068,0][-0.838558,0.19685,-1.56063][0.875535,0,1.30416][0.0445655,0.388871,0][-0.517981,0.19685,-1.69424][0,1.66897,0][0.075089,0.389237,0][-0.517981,0.19685,-1.69424][0,1.66897,0][0.075089,0.389237,0][-0.575534,0.19685,-1.88249][0,1.47262,1.201e-007][0.0765783,0.406474,0][-0.931731,0.19685,-1.73404][-0.875535,0,-1.30416][0.0426635,0.406068,0][-0.838558,0.19685,-1.56063][0.875535,0,1.30416][0.678696,0.06727,0][-0.838558,0,-1.56063][0.875535,0,1.30416][0.678696,0.0845717,0][-0.517981,0,-1.69424][0.604282,0,1.44991][0.650519,0.0845717,0][-0.517981,0,-1.69424][0.604282,0,1.44991][0.650519,0.0845717,0][-0.517981,0.19685,-1.69424][0,1.66897,0][0.650519,0.06727,0][-0.838558,0.19685,-1.56063][0.875535,0,1.30416][0.678696,0.06727,0][-0.838558,0,-1.56063][0.875535,0,1.30416][0.0943129,0.289161,0][-0.931731,0,-1.73404][-0.875535,0,-1.30416][0.0777874,0.294285,0][-0.575534,0,-1.88249][0,-1.47262,0][0.0709657,0.261061,0][-0.575534,0,-1.88249][0,-1.47262,0][0.0709657,0.261061,0][-0.517981,0,-1.69424][0.604282,0,1.44991][0.0881734,0.259259,0][-0.838558,0,-1.56063][0.875535,0,1.30416][0.0943129,0.289161,0][-0.575534,0,-1.88249][0,-1.47262,0][0.005,0.813309,0][-0.575534,0.19685,-1.88249][0,1.47262,1.201e-007][0.0223017,0.813309,0][-0.19722,0.19685,-1.9586][-0.309808,0,-1.53994][0.0223017,0.84656,0][-0.19722,0.19685,-1.9586][-0.309808,0,-1.53994][0.0223017,0.84656,0][-0.19722,0,-1.9586][-0.309808,0,-1.53994][0.005,0.84656,0][-0.575534,0,-1.88249][0,-1.47262,0][0.005,0.813309,0][-0.418441,0.905327,-1.83881][0,1,0][0.686919,0.859026,0][-0.404256,0.905327,-1.79241][0,1,0][0.687204,0.854771,0][-0.320338,0.905327,-1.80929][0,1,0][0.694724,0.854537,0][-0.320338,0.905327,-1.80929][0,1,0][0.694724,0.854537,0][-0.325199,0.905327,-1.85756][0,1,0][0.695274,0.858765,0][-0.418441,0.905327,-1.83881][0,1,0][0.686919,0.859026,0][-0.517981,0.19685,-1.69424][0,1.66897,0][0.650519,0.06727,0][-0.517981,0,-1.69424][0.604282,0,1.44991][0.650519,0.0845717,0][-0.177498,0,-1.76274][0.309807,0,1.53994][0.620593,0.0845717,0][-0.177498,0,-1.76274][0.309807,0,1.53994][0.620593,0.0845717,0][-0.177498,0.19685,-1.76274][0.309807,0,1.53994][0.620593,0.06727,0][-0.517981,0.19685,-1.69424][0,1.66897,0][0.650519,0.06727,0][-0.517981,0,-1.69424][0.604282,0,1.44991][0.0881734,0.259259,0][-0.575534,0,-1.88249][0,-1.47262,0][0.0709657,0.261061,0][-0.19722,0,-1.9586][-0.309808,0,-1.53994][0.0707568,0.227144,0][-0.19722,0,-1.9586][-0.309808,0,-1.53994][0.0707568,0.227144,0][-0.177498,0,-1.76274][0.309807,0,1.53994][0.0879854,0.228734,0][-0.517981,0,-1.69424][0.604282,0,1.44991][0.0881734,0.259259,0][-0.067949,0.311808,-2.74599][-0.00217991,0,-0.999998][0.788179,0.0834945,0][-0.067949,0.37502,-2.74599][-0.00217991,0,-0.999998][0.788179,0.0779387,0][0.0559677,0.37502,-2.74626][-0.00217991,0,-0.999998][0.799071,0.0779387,0][0.0559677,0.37502,-2.74626][-0.00217991,0,-0.999998][0.799071,0.0779387,0][0.0559677,0.311808,-2.74626][-0.00217991,0,-0.999998][0.799071,0.0834945,0][-0.067949,0.311808,-2.74599][-0.00217991,0,-0.999998][0.788179,0.0834945,0][-0.19722,0.19685,-1.9586][-0.309808,0,-1.53994][0.554068,0.0958343,0][-0.177498,0.19685,-1.76274][0.309807,0,1.53994][0.571283,0.0975677,0][0.169806,0.19685,-1.7635][0,1.66897,1.26949e-007][0.571216,0.128093,0][0.169806,0.19685,-1.7635][0,1.66897,1.26949e-007][0.571216,0.128093,0][0.188673,0.19685,-1.95944][0,1.47262,0][0.553994,0.129751,0][-0.19722,0.19685,-1.9586][-0.309808,0,-1.53994][0.554068,0.0958343,0][-0.177498,0.19685,-1.76274][0.309807,0,1.53994][0.620593,0.06727,0][-0.177498,0,-1.76274][0.309807,0,1.53994][0.620593,0.0845717,0][0.169806,0,-1.7635][0.00342799,0,1.57079][0.590068,0.0845717,0][0.169806,0,-1.7635][0.00342799,0,1.57079][0.590068,0.0845717,0][0.169806,0.19685,-1.7635][0,1.66897,1.26949e-007][0.590068,0.06727,0][-0.177498,0.19685,-1.76274][0.309807,0,1.53994][0.620593,0.06727,0][-0.177498,0,-1.76274][0.309807,0,1.53994][0.0879854,0.228734,0][-0.19722,0,-1.9586][-0.309808,0,-1.53994][0.0707568,0.227144,0][0.188673,0,-1.95944][0,-1.47262,0][0.0771688,0.193839,0][0.188673,0,-1.95944][0,-1.47262,0][0.0771688,0.193839,0][0.169806,0,-1.7635][0.00342799,0,1.57079][0.0937561,0.198759,0][-0.177498,0,-1.76274][0.309807,0,1.53994][0.0879854,0.228734,0][0.188673,0,-1.95944][0,-1.47262,0][0.106461,0.666507,0][0.188673,0.19685,-1.95944][0,1.47262,0][0.123763,0.666507,0][0.567316,0.19685,-1.88498][0.303086,0,-1.54128][0.123763,0.699787,0][0.567316,0.19685,-1.88498][0.303086,0,-1.54128][0.123763,0.699787,0][0.567316,0,-1.88498][0.303086,0,-1.54128][0.106461,0.699787,0][0.188673,0,-1.95944][0,-1.47262,0][0.106461,0.666507,0][0.317091,0.905327,-1.85897][0,1,0][0.974384,0.687416,0][0.312441,0.905327,-1.81067][0,1,0][0.973973,0.691661,0][0.396432,0.905327,-1.79415][0,1,0][0.96645,0.691675,0][0.396432,0.905327,-1.79415][0,1,0][0.96645,0.691675,0][0.410415,0.905327,-1.84061][0,1,0][0.966024,0.687432,0][0.317091,0.905327,-1.85897][0,1,0][0.974384,0.687416,0][0.169806,0.19685,-1.7635][0,1.66897,1.26949e-007][0.590068,0.06727,0][0.169806,0,-1.7635][0.00342799,0,1.57079][0.590068,0.0845717,0][0.510584,0,-1.69648][-0.303086,0,1.54128][0.560116,0.0845717,0][0.510584,0,-1.69648][-0.303086,0,1.54128][0.560116,0.0845717,0][0.510584,0.19685,-1.69648][-0.303086,0,1.54128][0.560116,0.06727,0][0.169806,0.19685,-1.7635][0,1.66897,1.26949e-007][0.590068,0.06727,0][0.169806,0,-1.7635][0.00342799,0,1.57079][0.0937561,0.198759,0][0.188673,0,-1.95944][0,-1.47262,0][0.0771688,0.193839,0][0.567316,0,-1.88498][0.303086,0,-1.54128][0.0899551,0.162424,0][0.567316,0,-1.88498][0.303086,0,-1.54128][0.0899551,0.162424,0][0.510584,0,-1.69648][-0.303086,0,1.54128][0.105264,0.170486,0][0.169806,0,-1.7635][0.00342799,0,1.57079][0.0937561,0.198759,0][0.988068,0.311808,-2.56296][0.380669,0,-0.924711][0.686919,0.801542,0][0.988068,0.37502,-2.56296][0.380669,0,-0.924711][0.686919,0.795986,0][1.10265,0.37502,-2.51579][0.380669,0,-0.924711][0.69781,0.795986,0][1.10265,0.37502,-2.51579][0.380669,0,-0.924711][0.69781,0.795986,0][1.10265,0.311808,-2.51579][0.380669,0,-0.924711][0.69781,0.801542,0][0.988068,0.311808,-2.56296][0.380669,0,-0.924711][0.686919,0.801542,0][0.567316,0.19685,-1.88498][0.303086,0,-1.54128][0.458725,0.388871,0][0.510584,0.19685,-1.69648][-0.303086,0,1.54128][0.475881,0.39111,0][0.831741,0.19685,-1.56428][0,1.66897,0][0.474917,0.42162,0][0.831741,0.19685,-1.56428][0,1.66897,0][0.474917,0.42162,0][0.924157,0.19685,-1.73809][0,1.47262,0][0.457653,0.422771,0][0.567316,0.19685,-1.88498][0.303086,0,-1.54128][0.458725,0.388871,0][0.510584,0.19685,-1.69648][-0.303086,0,1.54128][0.560116,0.06727,0][0.510584,0,-1.69648][-0.303086,0,1.54128][0.560116,0.0845717,0][0.831741,0,-1.56428][-0.597951,0,1.45253][0.531888,0.0845717,0][0.831741,0,-1.56428][-0.597951,0,1.45253][0.531888,0.0845717,0][0.831741,0.19685,-1.56428][0,1.66897,0][0.531888,0.06727,0][0.510584,0.19685,-1.69648][-0.303086,0,1.54128][0.560116,0.06727,0][0.510584,0,-1.69648][-0.303086,0,1.54128][0.105264,0.170486,0][0.567316,0,-1.88498][0.303086,0,-1.54128][0.0899551,0.162424,0][0.924157,0,-1.73809][0,-1.47262,0][0.108625,0.134107,0][0.924157,0,-1.73809][0,-1.47262,0][0.108625,0.134107,0][0.831741,0,-1.56428][-0.597951,0,1.45253][0.122066,0.145,0][0.510584,0,-1.69648][-0.303086,0,1.54128][0.105264,0.170486,0][0.924157,0,-1.73809][0,-1.47262,0][0.813009,0.005,0][0.924157,0.19685,-1.73809][0,1.47262,0][0.830311,0.005,0][1.24548,0.19685,-1.52439][0.869837,0,-1.30797][0.830311,0.0389173,0][1.24548,0.19685,-1.52439][0.869837,0,-1.30797][0.830311,0.0389173,0][1.24548,0,-1.52439][0.869836,0,-1.30797][0.813009,0.0389173,0][0.924157,0,-1.73809][0,-1.47262,0][0.813009,0.005,0][1.00435,0.905327,-1.59611][0,1,0][0.875693,0.27929,0][0.981572,0.905327,-1.55328][0,1,0][0.876062,0.275042,0][1.05285,0.905327,-1.50587][0,1,0][0.883585,0.274955,0][1.05285,0.905327,-1.50587][0,1,0][0.883585,0.274955,0][1.08355,0.905327,-1.54345][0,1,0][0.884052,0.279193,0][1.00435,0.905327,-1.59611][0,1,0][0.875693,0.27929,0][0.831741,0.19685,-1.56428][0,1.66897,0][0.531888,0.06727,0][0.831741,0,-1.56428][-0.597951,0,1.45253][0.531888,0.0845717,0][1.12093,0,-1.37196][-0.869836,0,1.30797][0.50647,0.0845717,0][1.12093,0,-1.37196][-0.869836,0,1.30797][0.50647,0.0845717,0][1.12093,0.19685,-1.37196][-0.869836,0,1.30797][0.50647,0.06727,0][0.831741,0.19685,-1.56428][0,1.66897,0][0.531888,0.06727,0][0.831741,0,-1.56428][-0.597951,0,1.45253][0.122066,0.145,0][0.924157,0,-1.73809][0,-1.47262,0][0.108625,0.134107,0][1.24548,0,-1.52439][0.869836,0,-1.30797][0.13246,0.109977,0][1.24548,0,-1.52439][0.869836,0,-1.30797][0.13246,0.109977,0][1.12093,0,-1.37196][-0.869836,0,1.30797][0.143518,0.123283,0][0.831741,0,-1.56428][-0.597951,0,1.45253][0.122066,0.145,0][1.89366,0.311808,-1.98975][0.705562,0,-0.708648][0.746874,0.132686,0][1.89366,0.37502,-1.98975][0.705563,0,-0.708648][0.746874,0.12713,0][1.98147,0.37502,-1.90232][0.705563,0,-0.708648][0.757765,0.12713,0][1.98147,0.37502,-1.90232][0.705563,0,-0.708648][0.757765,0.12713,0][1.98147,0.311808,-1.90232][0.705563,0,-0.708648][0.757765,0.132686,0][1.89366,0.311808,-1.98975][0.705562,0,-0.708648][0.746874,0.132686,0][1.24548,0.19685,-1.52439][0.869837,0,-1.30797][0.005,0.406048,0][1.12093,0.19685,-1.37196][-0.869836,0,1.30797][0.00707061,0.388871,0][1.36705,0.19685,-1.12691][0,1.66897,0][0.0375889,0.389536,0][1.36705,0.19685,-1.12691][0,1.66897,0][0.0375889,0.389536,0][1.51895,0.19685,-1.25212][0,1.47262,0][0.0389093,0.406787,0][1.24548,0.19685,-1.52439][0.869837,0,-1.30797][0.005,0.406048,0][1.12093,0.19685,-1.37196][-0.869836,0,1.30797][0.50647,0.06727,0][1.12093,0,-1.37196][-0.869836,0,1.30797][0.50647,0.0845717,0][1.36705,0,-1.12691][-1.1083,0,1.11314][0.484839,0.0845717,0][1.36705,0,-1.12691][-1.1083,0,1.11314][0.484839,0.0845717,0][1.36705,0.19685,-1.12691][0,1.66897,0][0.484839,0.06727,0][1.12093,0.19685,-1.37196][-0.869836,0,1.30797][0.50647,0.06727,0][1.12093,0,-1.37196][-0.869836,0,1.30797][0.143518,0.123283,0][1.24548,0,-1.52439][0.869836,0,-1.30797][0.13246,0.109977,0][1.51895,0,-1.25212][0,-1.47262,0][0.160544,0.0909598,0][1.51895,0,-1.25212][0,-1.47262,0][0.160544,0.0909598,0][1.36705,0,-1.12691][-1.1083,0,1.11314][0.168794,0.106168,0][1.12093,0,-1.37196][-0.869836,0,1.30797][0.143518,0.123283,0][1.51895,0,-1.25212][0,-1.47262,0][0.33317,0.575673,0][1.51895,0.19685,-1.25212][0,1.47262,0][0.350472,0.575673,0][1.73404,0.19685,-0.931731][1.30416,1.85494e-007,-0.875534][0.350472,0.60959,0][1.73404,0.19685,-0.931731][1.30416,1.85494e-007,-0.875534][0.350472,0.60959,0][1.73404,0,-0.931731][1.30416,2.65105e-007,-0.875535][0.33317,0.60959,0][1.51895,0,-1.25212][0,-1.47262,0][0.33317,0.575673,0][1.5387,0.905327,-1.09027][0,1,0][0.660671,0.8836,0][1.50127,0.905327,-1.05941][0,1,0][0.660998,0.879348,0][1.54898,0.905327,-0.988339][0,1,0][0.66852,0.879187,0][1.54898,0.905327,-0.988339][0,1,0][0.66852,0.879187,0][1.59172,0.905327,-1.0113][0,1,0][0.669028,0.883421,0][1.5387,0.905327,-1.09027][0,1,0][0.660671,0.8836,0][1.36705,0.19685,-1.12691][0,1.66897,0][0.224201,0.547109,0][1.36705,0,-1.12691][-1.1083,0,1.11314][0.224201,0.56441,0][1.56063,0,-0.838558][-1.30416,0,0.875535][0.198857,0.56441,0][1.56063,0,-0.838558][-1.30416,0,0.875535][0.198857,0.56441,0][1.56063,0.19685,-0.838558][-1.30416,0,0.875535][0.198857,0.547109,0][1.36705,0.19685,-1.12691][0,1.66897,0][0.224201,0.547109,0][1.36705,0,-1.12691][-1.1083,0,1.11314][0.168794,0.106168,0][1.51895,0,-1.25212][0,-1.47262,0][0.160544,0.0909598,0][1.73404,0,-0.931731][1.30416,2.65105e-007,-0.875535][0.191799,0.0777874,0][1.73404,0,-0.931731][1.30416,2.65105e-007,-0.875535][0.191799,0.0777874,0][1.56063,0,-0.838558][-1.30416,0,0.875535][0.196923,0.0943129,0][1.36705,0,-1.12691][-1.1083,0,1.11314][0.168794,0.106168,0][2.51096,0.311808,-1.11362][0.923043,0,-0.384697][0.855713,0.653438,0][2.51096,0.375019,-1.11362][0.923043,0,-0.384697][0.855713,0.647883,0][2.55863,0.375019,-0.99924][0.923043,0,-0.384697][0.865766,0.647883,0][2.55863,0.375019,-0.99924][0.923043,0,-0.384697][0.865766,0.647883,0][2.55863,0.311808,-0.99924][0.923043,0,-0.384697][0.865766,0.653438,0][2.51096,0.311808,-1.11362][0.923043,0,-0.384697][0.855713,0.653438,0][1.73404,0.19685,-0.931731][1.30416,1.85494e-007,-0.875534][0.0765695,0.0744443,0][1.56063,0.19685,-0.838558][-1.30416,0,0.875535][0.0746674,0.0916412,0][1.69424,0.19685,-0.517981][0,1.66897,0][0.044144,0.0912753,0][1.69424,0.19685,-0.517981][0,1.66897,0][0.044144,0.0912753,0][1.88249,0.19685,-0.575534][0,1.47262,0][0.0426546,0.0740378,0][1.73404,0.19685,-0.931731][1.30416,1.85494e-007,-0.875534][0.0765695,0.0744443,0][1.56063,0.19685,-0.838558][-1.30416,0,0.875535][0.198857,0.547109,0][1.56063,0,-0.838558][-1.30416,0,0.875535][0.198857,0.56441,0][1.69424,0,-0.517981][-1.44991,0,0.604282][0.170681,0.56441,0][1.69424,0,-0.517981][-1.44991,0,0.604282][0.170681,0.56441,0][1.69424,0.19685,-0.517981][0,1.66897,0][0.170681,0.547109,0][1.56063,0.19685,-0.838558][-1.30416,0,0.875535][0.198857,0.547109,0][1.56063,0,-0.838558][-1.30416,0,0.875535][0.196923,0.0943129,0][1.73404,0,-0.931731][1.30416,2.65105e-007,-0.875535][0.191799,0.0777874,0][1.88249,0,-0.575534][0,-1.47262,0][0.225023,0.0709657,0][1.88249,0,-0.575534][0,-1.47262,0][0.225023,0.0709657,0][1.69424,0,-0.517981][-1.44991,0,0.604282][0.226825,0.0881734,0][1.56063,0,-0.838558][-1.30416,0,0.875535][0.196923,0.0943129,0][1.88249,0,-0.575534][0,-1.47262,0][0.674015,0.144768,0][1.88249,0.19685,-0.575534][0,1.47262,0][0.691317,0.144768,0][1.9586,0.19685,-0.19722][1.53994,0,-0.309807][0.691317,0.178019,0][1.9586,0.19685,-0.19722][1.53994,0,-0.309807][0.691317,0.178019,0][1.9586,0,-0.19722][1.53994,0,-0.309807][0.674015,0.178019,0][1.88249,0,-0.575534][0,-1.47262,0][0.674015,0.144768,0][1.83881,0.905327,-0.418441][0,1,0][0.909636,0.128153,0][1.79241,0.905327,-0.404256][0,1,0][0.909351,0.132408,0][1.80929,0.905327,-0.320338][0,1,0][0.901831,0.132642,0][1.80929,0.905327,-0.320338][0,1,0][0.901831,0.132642,0][1.85756,0.905327,-0.325198][0,1,0][0.901281,0.128414,0][1.83881,0.905327,-0.418441][0,1,0][0.909636,0.128153,0][1.69424,0.19685,-0.517981][0,1.66897,0][0.170681,0.547109,0][1.69424,0,-0.517981][-1.44991,0,0.604282][0.170681,0.56441,0][1.76274,0,-0.177498][-1.53994,0,0.309807][0.140755,0.56441,0][1.76274,0,-0.177498][-1.53994,0,0.309807][0.140755,0.56441,0][1.76274,0.19685,-0.177498][-1.53994,0,0.309807][0.140755,0.547109,0][1.69424,0.19685,-0.517981][0,1.66897,0][0.170681,0.547109,0][1.69424,0,-0.517981][-1.44991,0,0.604282][0.226825,0.0881734,0][1.88249,0,-0.575534][0,-1.47262,0][0.225023,0.0709657,0][1.9586,0,-0.19722][1.53994,0,-0.309807][0.25894,0.0707568,0][1.9586,0,-0.19722][1.53994,0,-0.309807][0.25894,0.0707568,0][1.76274,0,-0.177498][-1.53994,0,0.309807][0.25735,0.0879854,0][1.69424,0,-0.517981][-1.44991,0,0.604282][0.226825,0.0881734,0][2.74599,0.311808,-0.0679487][0.999998,0,-0.00217992][0.581422,0.898702,0][2.74599,0.375019,-0.0679487][0.999998,0,-0.00217992][0.581422,0.893146,0][2.74626,0.375019,0.0559676][0.999998,0,-0.00217992][0.592314,0.893146,0][2.74626,0.375019,0.0559676][0.999998,0,-0.00217992][0.592314,0.893146,0][2.74626,0.311808,0.0559676][0.999998,0,-0.00217992][0.592314,0.898702,0][2.74599,0.311808,-0.0679487][0.999998,0,-0.00217992][0.581422,0.898702,0][1.9586,0.19685,-0.19722][1.53994,0,-0.309807][0.732517,0.0389172,0][1.76274,0.19685,-0.177498][-1.53994,0,0.309807][0.715302,0.0371838,0][1.7635,0.19685,0.169806][0,1.66897,0][0.715369,0.0066583,0][1.7635,0.19685,0.169806][0,1.66897,0][0.715369,0.0066583,0][1.95944,0.19685,0.188673][0,1.47262,0][0.732591,0.005,0][1.9586,0.19685,-0.19722][1.53994,0,-0.309807][0.732517,0.0389172,0][1.76274,0.19685,-0.177498][-1.53994,0,0.309807][0.140755,0.547109,0][1.76274,0,-0.177498][-1.53994,0,0.309807][0.140755,0.56441,0][1.7635,0,0.169806][-1.57079,0,0.00342691][0.110229,0.56441,0][1.7635,0,0.169806][-1.57079,0,0.00342691][0.110229,0.56441,0][1.7635,0.19685,0.169806][0,1.66897,0][0.110229,0.547109,0][1.76274,0.19685,-0.177498][-1.53994,0,0.309807][0.140755,0.547109,0][1.76274,0,-0.177498][-1.53994,0,0.309807][0.25735,0.0879854,0][1.9586,0,-0.19722][1.53994,0,-0.309807][0.25894,0.0707568,0][1.95944,0,0.188673][0,-1.47262,0][0.292246,0.0771688,0][1.95944,0,0.188673][0,-1.47262,0][0.292246,0.0771688,0][1.7635,0,0.169806][-1.57079,0,0.00342691][0.287325,0.0937561,0][1.76274,0,-0.177498][-1.53994,0,0.309807][0.25735,0.0879854,0][1.95944,0,0.188673][0,-1.47262,0][0.0995884,0.715441,0][1.95944,0.19685,0.188673][0,1.47262,0][0.11689,0.715441,0][1.88498,0.19685,0.567316][1.54128,0,0.303086][0.11689,0.748721,0][1.88498,0.19685,0.567316][1.54128,0,0.303086][0.11689,0.748721,0][1.88498,0,0.567316][1.54128,0,0.303086][0.0995884,0.748721,0][1.95944,0,0.188673][0,-1.47262,0][0.0995884,0.715441,0][1.85897,0.905327,0.317091][0,1,0][0.831644,0.229256,0][1.81067,0.905327,0.312441][0,1,0][0.832054,0.225012,0][1.79415,0.905327,0.396432][0,1,0][0.839578,0.224998,0][1.79415,0.905327,0.396432][0,1,0][0.839578,0.224998,0][1.84061,0.905327,0.410415][0,1,0][0.840004,0.229241,0][1.85897,0.905327,0.317091][0,1,0][0.831644,0.229256,0][1.7635,0.19685,0.169806][0,1.66897,0][0.110229,0.547109,0][1.7635,0,0.169806][-1.57079,0,0.00342691][0.110229,0.56441,0][1.69648,0,0.510584][-1.54128,0,-0.303086][0.0802773,0.56441,0][1.69648,0,0.510584][-1.54128,0,-0.303086][0.0802773,0.56441,0][1.69648,0.19685,0.510584][-1.54128,0,-0.303086][0.0802773,0.547109,0][1.7635,0.19685,0.169806][0,1.66897,0][0.110229,0.547109,0][1.7635,0,0.169806][-1.57079,0,0.00342691][0.287325,0.0937561,0][1.95944,0,0.188673][0,-1.47262,0][0.292246,0.0771688,0][1.88498,0,0.567316][1.54128,0,0.303086][0.323661,0.0899551,0][1.88498,0,0.567316][1.54128,0,0.303086][0.323661,0.0899551,0][1.69648,0,0.510584][-1.54128,0,-0.303086][0.315599,0.105264,0][1.7635,0,0.169806][-1.57079,0,0.00342691][0.287325,0.0937561,0][2.56296,0.311808,0.988067][0.924711,0,0.380669][0.891182,0.63262,0][2.56296,0.375019,0.988067][0.924711,0,0.380669][0.891182,0.627064,0][2.51579,0.375019,1.10265][0.924711,0,0.380669][0.901254,0.627064,0][2.51579,0.375019,1.10265][0.924711,0,0.380669][0.901254,0.627064,0][2.51579,0.311808,1.10265][0.924711,0,0.380669][0.901254,0.63262,0][2.56296,0.311808,0.988067][0.924711,0,0.380669][0.891182,0.63262,0][1.88498,0.19685,0.567316][1.54128,0,0.303086][0.15375,0.170906,0][1.69648,0.19685,0.510584][-1.54128,0,-0.303086][0.155989,0.15375,0][1.56428,0.19685,0.831741][0,1.66897,0][0.186499,0.154714,0][1.56428,0.19685,0.831741][0,1.66897,0][0.186499,0.154714,0][1.73809,0.19685,0.924157][0,1.47262,0][0.18765,0.171978,0][1.88498,0.19685,0.567316][1.54128,0,0.303086][0.15375,0.170906,0][1.69648,0.19685,0.510584][-1.54128,0,-0.303086][0.0802773,0.547109,0][1.69648,0,0.510584][-1.54128,0,-0.303086][0.0802773,0.56441,0][1.56428,0,0.831741][-1.45253,0,-0.59795][0.0520499,0.56441,0][1.56428,0,0.831741][-1.45253,0,-0.59795][0.0520499,0.56441,0][1.56428,0.19685,0.831741][0,1.66897,0][0.0520499,0.547109,0][1.69648,0.19685,0.510584][-1.54128,0,-0.303086][0.0802773,0.547109,0][1.69648,0,0.510584][-1.54128,0,-0.303086][0.315599,0.105264,0][1.88498,0,0.567316][1.54128,0,0.303086][0.323661,0.0899551,0][1.73809,0,0.924157][0,-1.47262,0][0.351977,0.108625,0][1.73809,0,0.924157][0,-1.47262,0][0.351977,0.108625,0][1.56428,0,0.831741][-1.45253,0,-0.59795][0.341084,0.122066,0][1.69648,0,0.510584][-1.54128,0,-0.303086][0.315599,0.105264,0][1.73809,0,0.924157][0,-1.47262,0][0.579427,0.144768,0][1.73809,0.19685,0.924157][0,1.47262,0][0.596729,0.144768,0][1.52439,0.19685,1.24548][1.30797,0,0.869836][0.596729,0.178686,0][1.52439,0.19685,1.24548][1.30797,0,0.869836][0.596729,0.178686,0][1.52439,0,1.24548][1.30797,0,0.869836][0.579427,0.178686,0][1.73809,0,0.924157][0,-1.47262,0][0.579427,0.144768,0][1.59611,0.905327,1.00435][0,1,0][0.738974,0.893555,0][1.55328,0.905327,0.981572][0,1,0][0.739343,0.889307,0][1.50587,0.905327,1.05285][0,1,0][0.746866,0.88922,0][1.50587,0.905327,1.05285][0,1,0][0.746866,0.88922,0][1.54345,0.905327,1.08355][0,1,0][0.747333,0.893459,0][1.59611,0.905327,1.00435][0,1,0][0.738974,0.893555,0][1.56428,0.19685,0.831741][0,1.66897,0][0.0520499,0.547109,0][1.56428,0,0.831741][-1.45253,0,-0.59795][0.0520499,0.56441,0][1.37196,0,1.12093][-1.30797,0,-0.869837][0.0266319,0.56441,0][1.37196,0,1.12093][-1.30797,0,-0.869837][0.0266319,0.56441,0][1.37196,0.19685,1.12093][-1.30797,0,-0.869837][0.0266319,0.547109,0][1.56428,0.19685,0.831741][0,1.66897,0][0.0520499,0.547109,0][1.56428,0,0.831741][-1.45253,0,-0.59795][0.341084,0.122066,0][1.73809,0,0.924157][0,-1.47262,0][0.351977,0.108625,0][1.52439,0,1.24548][1.30797,0,0.869836][0.376108,0.13246,0][1.52439,0,1.24548][1.30797,0,0.869836][0.376108,0.13246,0][1.37196,0,1.12093][-1.30797,0,-0.869837][0.362801,0.143518,0][1.56428,0,0.831741][-1.45253,0,-0.59795][0.341084,0.122066,0][1.98975,0.311808,1.89366][0.708648,0,0.705562][0.267035,0.703359,0][1.98975,0.375019,1.89366][0.708648,0,0.705562][0.267035,0.697803,0][1.90232,0.375019,1.98147][0.708648,0,0.705562][0.277927,0.697803,0][1.90232,0.375019,1.98147][0.708648,0,0.705562][0.277927,0.697803,0][1.90232,0.311808,1.98147][0.708648,0,0.705562][0.277927,0.703359,0][1.98975,0.311808,1.89366][0.708648,0,0.705562][0.267035,0.703359,0][1.52439,0.19685,1.24548][1.30797,0,0.869836][0.208582,0.187659,0][1.37196,0.19685,1.12093][-1.30797,0,-0.869837][0.191405,0.185589,0][1.12691,0.19685,1.36705][0,1.66897,0][0.19207,0.15507,0][1.12691,0.19685,1.36705][0,1.66897,0][0.19207,0.15507,0][1.25212,0.19685,1.51895][0,1.47262,0][0.209321,0.15375,0][1.52439,0.19685,1.24548][1.30797,0,0.869836][0.208582,0.187659,0][1.37196,0.19685,1.12093][-1.30797,0,-0.869837][0.0266319,0.547109,0][1.37196,0,1.12093][-1.30797,0,-0.869837][0.0266319,0.56441,0][1.12691,0,1.36705][-1.11314,0,-1.10829][0.005,0.56441,0][1.12691,0,1.36705][-1.11314,0,-1.10829][0.005,0.56441,0][1.12691,0.19685,1.36705][0,1.66897,0][0.005,0.547109,0][1.37196,0.19685,1.12093][-1.30797,0,-0.869837][0.0266319,0.547109,0][1.37196,0,1.12093][-1.30797,0,-0.869837][0.362801,0.143518,0][1.52439,0,1.24548][1.30797,0,0.869836][0.376108,0.13246,0][1.25212,0,1.51895][0,-1.47262,0][0.395125,0.160544,0][1.25212,0,1.51895][0,-1.47262,0][0.395125,0.160544,0][1.12691,0,1.36705][-1.11314,0,-1.10829][0.379916,0.168794,0][1.37196,0,1.12093][-1.30797,0,-0.869837][0.362801,0.143518,0][1.25212,0,1.51895][0,-1.47262,0][0.005,0.764375,0][1.25212,0.19685,1.51895][0,1.47262,0][0.0223017,0.764375,0][0.931732,0.19685,1.73404][0,1.47262,0][0.0223017,0.798292,0][0.931732,0.19685,1.73404][0,1.47262,0][0.0223017,0.798292,0][0.931732,0,1.73404][0,-1.47262,0][0.005,0.798292,0][1.25212,0,1.51895][0,-1.47262,0][0.005,0.764375,0][1.09027,0.905327,1.5387][0,1,0][0.799638,0.274955,0][1.05941,0.905327,1.50127][0,1,0][0.799311,0.279206,0][0.988339,0.905327,1.54898][0,1,0][0.791789,0.279368,0][0.988339,0.905327,1.54898][0,1,0][0.791789,0.279368,0][1.0113,0.905327,1.59172][0,1,0][0.791281,0.275134,0][1.09027,0.905327,1.5387][0,1,0][0.799638,0.274955,0][1.12691,0.19685,1.36705][0,1.66897,0][0.454665,0.547109,0][1.12691,0,1.36705][-1.11314,0,-1.10829][0.454665,0.56441,0][0.838558,0,1.56063][-0.604282,0,-1.44991][0.429321,0.56441,0][0.838558,0,1.56063][-0.604282,0,-1.44991][0.429321,0.56441,0][0.838558,0.19685,1.56063][0,1.66897,0][0.429321,0.547109,0][1.12691,0.19685,1.36705][0,1.66897,0][0.454665,0.547109,0][1.12691,0,1.36705][-1.11314,0,-1.10829][0.379916,0.168794,0][1.25212,0,1.51895][0,-1.47262,0][0.395125,0.160544,0][0.931732,0,1.73404][0,-1.47262,0][0.408297,0.191799,0][0.931732,0,1.73404][0,-1.47262,0][0.408297,0.191799,0][0.838558,0,1.56063][-0.604282,0,-1.44991][0.391771,0.196923,0][1.12691,0,1.36705][-1.11314,0,-1.10829][0.379916,0.168794,0][0.575535,0.19685,1.88249][0,1.47262,1.201e-007][0.307717,0.0214963,0][0.575535,0,1.88249][0,-1.47262,0][0.3025,0.005,0][0.99924,0.311808,2.55863][0.384697,0,0.923043][0.377632,0.00998168,0][0.99924,0.311808,2.55863][0.384697,0,0.923043][0.377632,0.00998168,0][0.99924,0.375019,2.55863][0.384697,0,0.923043][0.379307,0.0152789,0][0.575535,0.19685,1.88249][0,1.47262,1.201e-007][0.307717,0.0214963,0][0.575535,0,1.88249][0,-1.47262,0][0.415119,0.225023,0][0.931732,0,1.73404][0,-1.47262,0][0.408297,0.191799,0][1.11362,0.311808,2.51096][0.384697,0,0.923043][0.47838,0.189163,0][1.11362,0.311808,2.51096][0.384697,0,0.923043][0.47838,0.189163,0][0.99924,0.311808,2.55863][0.384697,0,0.923043][0.48057,0.199831,0][0.575535,0,1.88249][0,-1.47262,0][0.415119,0.225023,0][0.931732,0,1.73404][0,-1.47262,0][0.577006,0.307183,0][0.931732,0.19685,1.73404][0,1.47262,0][0.582866,0.290904,0][1.11362,0.375019,2.51096][0.384697,0,0.923043][0.65242,0.299298,0][1.11362,0.375019,2.51096][0.384697,0,0.923043][0.65242,0.299298,0][1.11362,0.311808,2.51096][0.384697,0,0.923043][0.650538,0.304525,0][0.931732,0,1.73404][0,-1.47262,0][0.577006,0.307183,0][0.931732,0.19685,1.73404][0,1.47262,0][0.225319,0.260858,0][0.575535,0.19685,1.88249][0,1.47262,1.201e-007][0.191405,0.260451,0][0.99924,0.375019,2.55863][0.384697,0,0.923043][0.203746,0.191413,0][0.99924,0.375019,2.55863][0.384697,0,0.923043][0.203746,0.191413,0][1.11362,0.375019,2.51096][0.384697,0,0.923043][0.214636,0.191544,0][0.931732,0.19685,1.73404][0,1.47262,0][0.225319,0.260858,0][0.197221,0,1.9586][0.309807,0,1.53994][0.773055,0.112113,0][0.197221,0.19685,1.9586][0.309807,0,1.53994][0.778916,0.0958342,0][0.0679491,0.375019,2.74599][0.00217992,0,0.999998][0.849335,0.10454,0][0.0679491,0.375019,2.74599][0.00217992,0,0.999998][0.849335,0.10454,0][0.0679491,0.311808,2.74599][0.00217992,0,0.999998][0.847453,0.109767,0][0.197221,0,1.9586][0.309807,0,1.53994][0.773055,0.112113,0][0.197221,0.19685,1.9586][0.309807,0,1.53994][0.0222147,0.700424,0][-0.188673,0.19685,1.95944][0,1.47262,0][0.0222887,0.666507,0][-0.0559673,0.375019,2.74626][0.00217992,0,0.999998][0.0914441,0.678171,0][-0.0559673,0.375019,2.74626][0.00217992,0,0.999998][0.0914441,0.678171,0][0.0679491,0.375019,2.74599][0.00217992,0,0.999998][0.0914204,0.689062,0][0.197221,0.19685,1.9586][0.309807,0,1.53994][0.0222147,0.700424,0][-0.188673,0.19685,1.95944][0,1.47262,0][0.839262,0.144768,0][-0.188673,0,1.95944][0,-1.47262,0][0.84448,0.161265,0][-0.0559673,0.311808,2.74626][0.00217992,0,0.999998][0.770279,0.155988,0][-0.0559673,0.311808,2.74626][0.00217992,0,0.999998][0.770279,0.155988,0][-0.0559673,0.375019,2.74626][0.00217992,0,0.999998][0.768604,0.150691,0][-0.188673,0.19685,1.95944][0,1.47262,0][0.839262,0.144768,0][-0.188673,0,1.95944][0,-1.47262,0][0.408916,0.292246,0][0.197221,0,1.9586][0.309807,0,1.53994][0.415327,0.25894,0][0.0679491,0.311808,2.74599][0.00217992,0,0.999998][0.481084,0.283324,0][0.0679491,0.311808,2.74599][0.00217992,0,0.999998][0.481084,0.283324,0][-0.0559673,0.311808,2.74626][0.00217992,0,0.999998][0.479025,0.294019,0][-0.188673,0,1.95944][0,-1.47262,0][0.408916,0.292246,0][-0.567316,0,1.88498][-0.303086,0,1.54128][0.907597,0.0702131,0][-0.567316,0.19685,1.88498][-0.303086,0,1.54128][0.913457,0.053934,0][-0.988067,0.375019,2.56296][-0.380667,0,0.924712][0.984748,0.0629533,0][-0.988067,0.375019,2.56296][-0.380667,0,0.924712][0.984748,0.0629533,0][-0.988067,0.311808,2.56296][-0.380667,0,0.924712][0.982867,0.0681808,0][-0.567316,0,1.88498][-0.303086,0,1.54128][0.907597,0.0702131,0][-0.567316,0.19685,1.88498][-0.303086,0,1.54128][0.406027,0.0389004,0][-0.924157,0.19685,1.73809][0,1.47262,0][0.407098,0.005,0][-1.10265,0.375019,2.51579][-0.380667,0,0.924712][0.475881,0.0186924,0][-1.10265,0.375019,2.51579][-0.380667,0,0.924712][0.475881,0.0186924,0][-0.988067,0.375019,2.56296][-0.380667,0,0.924712][0.475537,0.0295783,0][-0.567316,0.19685,1.88498][-0.303086,0,1.54128][0.406027,0.0389004,0][-0.924157,0.19685,1.73809][0,1.47262,0][0.862206,0.160934,0][-0.924157,0,1.73809][0,-1.47262,0][0.855742,0.144885,0][-1.10265,0.311808,2.51579][-0.380667,0,0.924712][0.929386,0.144768,0][-1.10265,0.311808,2.51579][-0.380667,0,0.924712][0.929386,0.144768,0][-1.10265,0.375019,2.51579][-0.380667,0,0.924712][0.931462,0.149922,0][-0.924157,0.19685,1.73809][0,1.47262,0][0.862206,0.160934,0][-0.924157,0,1.73809][0,-1.47262,0][0.37746,0.351977,0][-0.567316,0,1.88498][-0.303086,0,1.54128][0.396129,0.323661,0][-0.988067,0.311808,2.56296][-0.380667,0,0.924712][0.447549,0.371352,0][-0.988067,0.311808,2.56296][-0.380667,0,0.924712][0.447549,0.371352,0][-1.10265,0.311808,2.51579][-0.380667,0,0.924712][0.441554,0.380445,0][-0.924157,0,1.73809][0,-1.47262,0][0.37746,0.351977,0][-1.24548,0,1.52439][-0.869836,0,1.30797][0.484839,0.307183,0][-1.24548,0.19685,1.52439][-0.869836,0,1.30797][0.490699,0.290904,0][-1.89366,0.375019,1.98975][-0.705563,0,0.708647][0.56199,0.299923,0][-1.89366,0.375019,1.98975][-0.705563,0,0.708647][0.56199,0.299923,0][-1.89366,0.311808,1.98975][-0.705563,0,0.708647][0.560108,0.305151,0][-1.24548,0,1.52439][-0.869836,0,1.30797][0.484839,0.307183,0][-1.24548,0.19685,1.52439][-0.869836,0,1.30797][0.458523,0.0426546,0][-1.51895,0.19685,1.25212][0,1.47262,0][0.457784,0.0765638,0][-1.98147,0.375019,1.90232][-0.705563,0,0.708647][0.388871,0.0635464,0][-1.98147,0.375019,1.90232][-0.705563,0,0.708647][0.388871,0.0635464,0][-1.89366,0.375019,1.98975][-0.705563,0,0.708647][0.389108,0.0526576,0][-1.24548,0.19685,1.52439][-0.869836,0,1.30797][0.458523,0.0426546,0][-1.51895,0.19685,1.25212][0,1.47262,0][0.307054,0.620853,0][-1.51895,0,1.25212][0,-1.47262,0][0.312271,0.637349,0][-1.98147,0.311808,1.90232][-0.705563,0,0.708647][0.237139,0.632367,0][-1.98147,0.311808,1.90232][-0.705563,0,0.708647][0.237139,0.632367,0][-1.98147,0.375019,1.90232][-0.705563,0,0.708647][0.235464,0.62707,0][-1.51895,0.19685,1.25212][0,1.47262,0][0.307054,0.620853,0][-1.51895,0,1.25212][0,-1.47262,0][0.32554,0.395125,0][-1.24548,0,1.52439][-0.869836,0,1.30797][0.353625,0.376108,0][-1.89366,0.311808,1.98975][-0.705563,0,0.708647][0.38288,0.439847,0][-1.89366,0.311808,1.98975][-0.705563,0,0.708647][0.38288,0.439847,0][-1.98147,0.311808,1.90232][-0.705563,0,0.708647][0.373862,0.445953,0][-1.51895,0,1.25212][0,-1.47262,0][0.32554,0.395125,0][-1.73404,0,0.931731][-1.30416,0,0.875535][0.761154,0.209981,0][-1.73404,0.19685,0.931731][-1.30416,0,0.875535][0.767014,0.193702,0][-2.51096,0.375019,1.11362][-0.923043,0,0.384696][0.836567,0.202096,0][-2.51096,0.375019,1.11362][-0.923043,0,0.384696][0.836567,0.202096,0][-2.51096,0.311808,1.11362][-0.923043,0,0.384696][0.834686,0.207324,0][-1.73404,0,0.931731][-1.30416,0,0.875535][0.761154,0.209981,0][-1.73404,0.19685,0.931731][-1.30416,0,0.875535][0.298518,0.191413,0][-1.88249,0.19685,0.575535][0,1.47262,0][0.298111,0.225328,0][-2.55863,0.375019,0.99924][-0.923043,0,0.384696][0.229074,0.212987,0][-2.55863,0.375019,0.99924][-0.923043,0,0.384696][0.229074,0.212987,0][-2.51096,0.375019,1.11362][-0.923043,0,0.384696][0.229204,0.202096,0][-1.73404,0.19685,0.931731][-1.30416,0,0.875535][0.298518,0.191413,0][-1.88249,0.19685,0.575535][0,1.47262,0][0.884599,0.053934,0][-1.88249,0,0.575535][0,-1.47262,0][0.889816,0.0704304,0][-2.55863,0.311808,0.99924][-0.923043,0,0.384696][0.814684,0.0654487,0][-2.55863,0.311808,0.99924][-0.923043,0,0.384696][0.814684,0.0654487,0][-2.55863,0.375019,0.99924][-0.923043,0,0.384696][0.813009,0.0601515,0][-1.88249,0.19685,0.575535][0,1.47262,0][0.884599,0.053934,0][-1.88249,0,0.575535][0,-1.47262,0][0.261061,0.415119,0][-1.73404,0,0.931731][-1.30416,0,0.875535][0.294285,0.408297,0][-2.51096,0.311808,1.11362][-0.923043,0,0.384696][0.296922,0.47838,0][-2.51096,0.311808,1.11362][-0.923043,0,0.384696][0.296922,0.47838,0][-2.55863,0.311808,0.99924][-0.923043,0,0.384696][0.286253,0.48057,0][-1.88249,0,0.575535][0,-1.47262,0][0.261061,0.415119,0][-1.9586,0,0.19722][-1.53994,0,0.309807][0.293217,0.682786,0][-1.9586,0.19685,0.19722][-1.53994,0,0.309807][0.299077,0.666507,0][-2.74599,0.375019,0.067949][-0.999998,0,0.00217991][0.369496,0.675212,0][-2.74599,0.375019,0.067949][-0.999998,0,0.00217991][0.369496,0.675212,0][-2.74599,0.311808,0.067949][-0.999998,0,0.00217991][0.367614,0.68044,0][-1.9586,0,0.19722][-1.53994,0,0.309807][0.293217,0.682786,0][-1.9586,0.19685,0.19722][-1.53994,0,0.309807][0.304693,0.575673,0][-1.95944,0.19685,-0.188673][0,1.47262,0][0.304619,0.60959,0][-2.74626,0.375019,-0.0559677][-0.999998,0,0.00217991][0.235464,0.597926,0][-2.74626,0.375019,-0.0559677][-0.999998,0,0.00217991][0.235464,0.597926,0][-2.74599,0.375019,0.067949][-0.999998,0,0.00217991][0.235487,0.587035,0][-1.9586,0.19685,0.19722][-1.53994,0,0.309807][0.304693,0.575673,0][-1.95944,0.19685,-0.188673][0,1.47262,0][0.170247,0.795671,0][-1.95944,0,-0.188673][0,-1.47262,0][0.175464,0.812167,0][-2.74626,0.311808,-0.0559677][-0.999998,0,0.00217991][0.101264,0.806891,0][-2.74626,0.311808,-0.0559677][-0.999998,0,0.00217991][0.101264,0.806891,0][-2.74626,0.375019,-0.0559677][-0.999998,0,0.00217991][0.0995884,0.801594,0][-1.95944,0.19685,-0.188673][0,1.47262,0][0.170247,0.795671,0][-1.95944,0,-0.188673][0,-1.47262,0][0.193839,0.408916,0][-1.9586,0,0.19722][-1.53994,0,0.309807][0.227144,0.415327,0][-2.74599,0.311808,0.067949][-0.999998,0,0.00217991][0.202761,0.481084,0][-2.74599,0.311808,0.067949][-0.999998,0,0.00217991][0.202761,0.481084,0][-2.74626,0.311808,-0.0559677][-0.999998,0,0.00217991][0.192066,0.479025,0][-1.95944,0,-0.188673][0,-1.47262,0][0.193839,0.408916,0][-1.88498,0,-0.567316][-1.54128,0,-0.303085][0.579427,0.258915,0][-1.88498,0.19685,-0.567316][-1.54128,0,-0.303085][0.585287,0.242636,0][-2.56296,0.375019,-0.988068][-0.924712,0,-0.380667][0.656578,0.251655,0][-2.56296,0.375019,-0.988068][-0.924712,0,-0.380667][0.656578,0.251655,0][-2.56296,0.311808,-0.988068][-0.924712,0,-0.380667][0.654696,0.256883,0][-1.88498,0,-0.567316][-1.54128,0,-0.303085][0.579427,0.258915,0][-1.88498,0.19685,-0.567316][-1.54128,0,-0.303085][0.0389004,0.0748539,0][-1.73809,0.19685,-0.924157][0,1.47262,0][0.005,0.0737825,0][-2.51579,0.375019,-1.10265][-0.924712,0,-0.380667][0.0186924,0.005,0][-2.51579,0.375019,-1.10265][-0.924712,0,-0.380667][0.0186924,0.005,0][-2.56296,0.375019,-0.988068][-0.924712,0,-0.380667][0.0295783,0.00534402,0][-1.88498,0.19685,-0.567316][-1.54128,0,-0.303085][0.0389004,0.0748539,0][-1.73809,0.19685,-0.924157][0,1.47262,0][0.289516,0.780541,0][-1.73809,0,-0.924157][0,-1.47262,0][0.283052,0.764492,0][-2.51579,0.311808,-1.10265][-0.924712,0,-0.380667][0.356696,0.764375,0][-2.51579,0.311808,-1.10265][-0.924712,0,-0.380667][0.356696,0.764375,0][-2.51579,0.375019,-1.10265][-0.924712,0,-0.380667][0.358772,0.769529,0][-1.73809,0.19685,-0.924157][0,1.47262,0][0.289516,0.780541,0][-1.73809,0,-0.924157][0,-1.47262,0][0.134107,0.37746,0][-1.88498,0,-0.567316][-1.54128,0,-0.303085][0.162424,0.396129,0][-2.56296,0.311808,-0.988068][-0.924712,0,-0.380667][0.114732,0.447549,0][-2.56296,0.311808,-0.988068][-0.924712,0,-0.380667][0.114732,0.447549,0][-2.51579,0.311808,-1.10265][-0.924712,0,-0.380667][0.105639,0.441554,0][-1.73809,0,-0.924157][0,-1.47262,0][0.134107,0.37746,0][-1.52439,0,-1.24548][-1.30797,0,-0.869837][0.680888,0.112113,0][-1.52439,0.19685,-1.24548][-1.30797,0,-0.869837][0.686748,0.0958342,0][-1.98975,0.37502,-1.89366][-0.708647,0,-0.705563][0.758039,0.104853,0][-1.98975,0.37502,-1.89366][-0.708647,0,-0.705563][0.758039,0.104853,0][-1.98975,0.311808,-1.89366][-0.708647,0,-0.705563][0.756157,0.110081,0][-1.52439,0,-1.24548][-1.30797,0,-0.869837][0.680888,0.112113,0][-1.52439,0.19685,-1.24548][-1.30797,0,-0.869837][0.458523,0.426525,0][-1.25212,0.19685,-1.51895][0,1.47262,0][0.457784,0.460435,0][-1.90232,0.37502,-1.98147][-0.708647,0,-0.705563][0.388871,0.447417,0][-1.90232,0.37502,-1.98147][-0.708647,0,-0.705563][0.388871,0.447417,0][-1.98975,0.37502,-1.89366][-0.708647,0,-0.705563][0.389108,0.436528,0][-1.52439,0.19685,-1.24548][-1.30797,0,-0.869837][0.458523,0.426525,0][-1.25212,0.19685,-1.51895][0,1.47262,0][0.106185,0.0214963,0][-1.25212,0,-1.51895][0,-1.47262,0][0.100968,0.005,0][-1.90232,0.311808,-1.98147][-0.708647,0,-0.705563][0.176099,0.00998168,0][-1.90232,0.311808,-1.98147][-0.708647,0,-0.705563][0.176099,0.00998168,0][-1.90232,0.37502,-1.98147][-0.708647,0,-0.705563][0.177775,0.0152789,0][-1.25212,0.19685,-1.51895][0,1.47262,0][0.106185,0.0214963,0][-1.25212,0,-1.51895][0,-1.47262,0][0.0909598,0.32554,0][-1.52439,0,-1.24548][-1.30797,0,-0.869837][0.109977,0.353625,0][-1.98975,0.311808,-1.89366][-0.708647,0,-0.705563][0.0462376,0.38288,0][-1.98975,0.311808,-1.89366][-0.708647,0,-0.705563][0.0462376,0.38288,0][-1.90232,0.311808,-1.98147][-0.708647,0,-0.705563][0.040131,0.373862,0][-1.25212,0,-1.51895][0,-1.47262,0][0.0909598,0.32554,0][-0.931731,0,-1.73404][-0.875535,0,-1.30416][0.671595,0.258915,0][-0.931731,0.19685,-1.73404][-0.875535,0,-1.30416][0.677455,0.242636,0][-1.11362,0.37502,-2.51096][-0.384697,0,-0.923043][0.747008,0.25103,0][-1.11362,0.37502,-2.51096][-0.384697,0,-0.923043][0.747008,0.25103,0][-1.11362,0.311808,-2.51096][-0.384697,0,-0.923043][0.745127,0.256258,0][-0.931731,0,-1.73404][-0.875535,0,-1.30416][0.671595,0.258915,0][-0.931731,0.19685,-1.73404][-0.875535,0,-1.30416][0.0426635,0.406068,0][-0.575534,0.19685,-1.88249][0,1.47262,1.201e-007][0.0765783,0.406474,0][-0.99924,0.37502,-2.55863][-0.384697,0,-0.923043][0.0642371,0.475512,0][-0.99924,0.37502,-2.55863][-0.384697,0,-0.923043][0.0642371,0.475512,0][-1.11362,0.37502,-2.51096][-0.384697,0,-0.923043][0.0533465,0.475381,0][-0.931731,0.19685,-1.73404][-0.875535,0,-1.30416][0.0426635,0.406068,0][-0.575534,0.19685,-1.88249][0,1.47262,1.201e-007][0.786892,0.0501798,0][-0.575534,0,-1.88249][0,-1.47262,0][0.792109,0.0666761,0][-0.99924,0.311808,-2.55863][-0.384697,0,-0.923043][0.716978,0.0616944,0][-0.99924,0.311808,-2.55863][-0.384697,0,-0.923043][0.716978,0.0616944,0][-0.99924,0.37502,-2.55863][-0.384697,0,-0.923043][0.715302,0.0563972,0][-0.575534,0.19685,-1.88249][0,1.47262,1.201e-007][0.786892,0.0501798,0][-0.575534,0,-1.88249][0,-1.47262,0][0.0709657,0.261061,0][-0.931731,0,-1.73404][-0.875535,0,-1.30416][0.0777874,0.294285,0][-1.11362,0.311808,-2.51096][-0.384697,0,-0.923043][0.0077048,0.296922,0][-1.11362,0.311808,-2.51096][-0.384697,0,-0.923043][0.0077048,0.296922,0][-0.99924,0.311808,-2.55863][-0.384697,0,-0.923043][0.00551426,0.286253,0][-0.575534,0,-1.88249][0,-1.47262,0][0.0709657,0.261061,0][-0.19722,0,-1.9586][-0.309808,0,-1.53994][0.286345,0.73172,0][-0.19722,0.19685,-1.9586][-0.309808,0,-1.53994][0.292205,0.715441,0][-0.067949,0.37502,-2.74599][-0.00217991,0,-0.999998][0.362624,0.724146,0][-0.067949,0.37502,-2.74599][-0.00217991,0,-0.999998][0.362624,0.724146,0][-0.067949,0.311808,-2.74599][-0.00217991,0,-0.999998][0.360742,0.729374,0][-0.19722,0,-1.9586][-0.309808,0,-1.53994][0.286345,0.73172,0][-0.19722,0.19685,-1.9586][-0.309808,0,-1.53994][0.554068,0.0958343,0][0.188673,0.19685,-1.95944][0,1.47262,0][0.553994,0.129751,0][0.0559677,0.37502,-2.74626][-0.00217991,0,-0.999998][0.484839,0.118088,0][0.0559677,0.37502,-2.74626][-0.00217991,0,-0.999998][0.484839,0.118088,0][-0.067949,0.37502,-2.74599][-0.00217991,0,-0.999998][0.484862,0.107196,0][-0.19722,0.19685,-1.9586][-0.309808,0,-1.53994][0.554068,0.0958343,0][0.188673,0.19685,-1.95944][0,1.47262,0][0.0756585,0.861577,0][0.188673,0,-1.95944][0,-1.47262,0][0.0808758,0.878073,0][0.0559677,0.311808,-2.74626][-0.00217991,0,-0.999998][0.00667536,0.872797,0][0.0559677,0.311808,-2.74626][-0.00217991,0,-0.999998][0.00667536,0.872797,0][0.0559677,0.37502,-2.74626][-0.00217991,0,-0.999998][0.005,0.8675,0][0.188673,0.19685,-1.95944][0,1.47262,0][0.0756585,0.861577,0][0.188673,0,-1.95944][0,-1.47262,0][0.0771688,0.193839,0][-0.19722,0,-1.9586][-0.309808,0,-1.53994][0.0707568,0.227144,0][-0.067949,0.311808,-2.74599][-0.00217991,0,-0.999998][0.005,0.202761,0][-0.067949,0.311808,-2.74599][-0.00217991,0,-0.999998][0.005,0.202761,0][0.0559677,0.311808,-2.74626][-0.00217991,0,-0.999998][0.007059,0.192066,0][0.188673,0,-1.95944][0,-1.47262,0][0.0771688,0.193839,0][0.567316,0,-1.88498][0.303086,0,-1.54128][0.194177,0.73172,0][0.567316,0.19685,-1.88498][0.303086,0,-1.54128][0.200037,0.715441,0][0.988068,0.37502,-2.56296][0.380669,0,-0.924711][0.271328,0.72446,0][0.988068,0.37502,-2.56296][0.380669,0,-0.924711][0.271328,0.72446,0][0.988068,0.311808,-2.56296][0.380669,0,-0.924711][0.269446,0.729688,0][0.567316,0,-1.88498][0.303086,0,-1.54128][0.194177,0.73172,0][0.567316,0.19685,-1.88498][0.303086,0,-1.54128][0.458725,0.388871,0][0.924157,0.19685,-1.73809][0,1.47262,0][0.457653,0.422771,0][1.10265,0.37502,-2.51579][0.380669,0,-0.924711][0.388871,0.409079,0][1.10265,0.37502,-2.51579][0.380669,0,-0.924711][0.388871,0.409079,0][0.988068,0.37502,-2.56296][0.380669,0,-0.924711][0.389215,0.398193,0][0.567316,0.19685,-1.88498][0.303086,0,-1.54128][0.458725,0.388871,0][0.924157,0.19685,-1.73809][0,1.47262,0][0.106052,0.839595,0][0.924157,0,-1.73809][0,-1.47262,0][0.0995884,0.823546,0][1.10265,0.311808,-2.51579][0.380669,0,-0.924711][0.173232,0.82343,0][1.10265,0.311808,-2.51579][0.380669,0,-0.924711][0.173232,0.82343,0][1.10265,0.37502,-2.51579][0.380669,0,-0.924711][0.175308,0.828583,0][0.924157,0.19685,-1.73809][0,1.47262,0][0.106052,0.839595,0][0.924157,0,-1.73809][0,-1.47262,0][0.108625,0.134107,0][0.567316,0,-1.88498][0.303086,0,-1.54128][0.0899551,0.162424,0][0.988068,0.311808,-2.56296][0.380669,0,-0.924711][0.038535,0.114732,0][0.988068,0.311808,-2.56296][0.380669,0,-0.924711][0.038535,0.114732,0][1.10265,0.311808,-2.51579][0.380669,0,-0.924711][0.04453,0.105639,0][0.924157,0,-1.73809][0,-1.47262,0][0.108625,0.134107,0][1.24548,0,-1.52439][0.869836,0,-1.30797][0.0995884,0.780654,0][1.24548,0.19685,-1.52439][0.869837,0,-1.30797][0.105448,0.764375,0][1.89366,0.37502,-1.98975][0.705563,0,-0.708648][0.176739,0.773394,0][1.89366,0.37502,-1.98975][0.705563,0,-0.708648][0.176739,0.773394,0][1.89366,0.311808,-1.98975][0.705562,0,-0.708648][0.174858,0.778622,0][1.24548,0,-1.52439][0.869836,0,-1.30797][0.0995884,0.780654,0][1.24548,0.19685,-1.52439][0.869837,0,-1.30797][0.005,0.406048,0][1.51895,0.19685,-1.25212][0,1.47262,0][0.0389093,0.406787,0][1.98147,0.37502,-1.90232][0.705563,0,-0.708648][0.0258918,0.475701,0][1.98147,0.37502,-1.90232][0.705563,0,-0.708648][0.0258918,0.475701,0][1.89366,0.37502,-1.98975][0.705563,0,-0.708648][0.015003,0.475463,0][1.24548,0.19685,-1.52439][0.869837,0,-1.30797][0.005,0.406048,0][1.51895,0.19685,-1.25212][0,1.47262,0][0.005,0.307717,0][1.51895,0,-1.25212][0,-1.47262,0][0.0214963,0.3025,0][1.98147,0.311808,-1.90232][0.705563,0,-0.708648][0.0165147,0.377632,0][1.98147,0.311808,-1.90232][0.705563,0,-0.708648][0.0165147,0.377632,0][1.98147,0.37502,-1.90232][0.705563,0,-0.708648][0.0112175,0.379307,0][1.51895,0.19685,-1.25212][0,1.47262,0][0.005,0.307717,0][1.51895,0,-1.25212][0,-1.47262,0][0.160544,0.0909598,0][1.24548,0,-1.52439][0.869836,0,-1.30797][0.13246,0.109977,0][1.89366,0.311808,-1.98975][0.705562,0,-0.708648][0.103204,0.0462376,0][1.89366,0.311808,-1.98975][0.705562,0,-0.708648][0.103204,0.0462376,0][1.98147,0.311808,-1.90232][0.705563,0,-0.708648][0.112223,0.040131,0][1.51895,0,-1.25212][0,-1.47262,0][0.160544,0.0909598,0][1.73404,0,-0.931731][1.30416,2.65105e-007,-0.875535][0.484839,0.338479,0][1.73404,0.19685,-0.931731][1.30416,1.85494e-007,-0.875534][0.490699,0.3222,0][2.51096,0.375019,-1.11362][0.923043,0,-0.384697][0.560252,0.330594,0][2.51096,0.375019,-1.11362][0.923043,0,-0.384697][0.560252,0.330594,0][2.51096,0.311808,-1.11362][0.923043,0,-0.384697][0.558371,0.335821,0][1.73404,0,-0.931731][1.30416,2.65105e-007,-0.875535][0.484839,0.338479,0][1.73404,0.19685,-0.931731][1.30416,1.85494e-007,-0.875534][0.0765695,0.0744443,0][1.88249,0.19685,-0.575534][0,1.47262,0][0.0426546,0.0740378,0][2.55863,0.375019,-0.99924][0.923043,0,-0.384697][0.0549958,0.005,0][2.55863,0.375019,-0.99924][0.923043,0,-0.384697][0.0549958,0.005,0][2.51096,0.375019,-1.11362][0.923043,0,-0.384697][0.0658864,0.00513053,0][1.73404,0.19685,-0.931731][1.30416,1.85494e-007,-0.875534][0.0765695,0.0744443,0][1.88249,0.19685,-0.575534][0,1.47262,0][0.45125,0.106185,0][1.88249,0,-0.575534][0,-1.47262,0][0.467746,0.100968,0][2.55863,0.311808,-0.99924][0.923043,0,-0.384697][0.462764,0.176099,0][2.55863,0.311808,-0.99924][0.923043,0,-0.384697][0.462764,0.176099,0][2.55863,0.375019,-0.99924][0.923043,0,-0.384697][0.457467,0.177775,0][1.88249,0.19685,-0.575534][0,1.47262,0][0.45125,0.106185,0][1.88249,0,-0.575534][0,-1.47262,0][0.225023,0.0709657,0][1.73404,0,-0.931731][1.30416,2.65105e-007,-0.875535][0.191799,0.0777874,0][2.51096,0.311808,-1.11362][0.923043,0,-0.384697][0.189163,0.0077048,0][2.51096,0.311808,-1.11362][0.923043,0,-0.384697][0.189163,0.0077048,0][2.55863,0.311808,-0.99924][0.923043,0,-0.384697][0.199832,0.00551424,0][1.88249,0,-0.575534][0,-1.47262,0][0.225023,0.0709657,0][1.9586,0,-0.19722][1.53994,0,-0.309807][0.191756,0.780654,0][1.9586,0.19685,-0.19722][1.53994,0,-0.309807][0.197616,0.764375,0][2.74599,0.375019,-0.0679487][0.999998,0,-0.00217992][0.268035,0.77308,0][2.74599,0.375019,-0.0679487][0.999998,0,-0.00217992][0.268035,0.77308,0][2.74599,0.311808,-0.0679487][0.999998,0,-0.00217992][0.266154,0.778308,0][1.9586,0,-0.19722][1.53994,0,-0.309807][0.191756,0.780654,0][1.9586,0.19685,-0.19722][1.53994,0,-0.309807][0.732517,0.0389172,0][1.95944,0.19685,0.188673][0,1.47262,0][0.732591,0.005,0][2.74626,0.375019,0.0559676][0.999998,0,-0.00217992][0.801746,0.0166639,0][2.74626,0.375019,0.0559676][0.999998,0,-0.00217992][0.801746,0.0166639,0][2.74599,0.375019,-0.0679487][0.999998,0,-0.00217992][0.801723,0.0275552,0][1.9586,0.19685,-0.19722][1.53994,0,-0.309807][0.732517,0.0389172,0][1.95944,0.19685,0.188673][0,1.47262,0][0.744674,0.193702,0][1.95944,0,0.188673][0,-1.47262,0][0.749891,0.210199,0][2.74626,0.311808,0.0559676][0.999998,0,-0.00217992][0.675691,0.204922,0][2.74626,0.311808,0.0559676][0.999998,0,-0.00217992][0.675691,0.204922,0][2.74626,0.375019,0.0559676][0.999998,0,-0.00217992][0.674015,0.199625,0][1.95944,0.19685,0.188673][0,1.47262,0][0.744674,0.193702,0][1.95944,0,0.188673][0,-1.47262,0][0.292246,0.0771688,0][1.9586,0,-0.19722][1.53994,0,-0.309807][0.25894,0.0707568,0][2.74599,0.311808,-0.0679487][0.999998,0,-0.00217992][0.283324,0.005,0][2.74599,0.311808,-0.0679487][0.999998,0,-0.00217992][0.283324,0.005,0][2.74626,0.311808,0.0559676][0.999998,0,-0.00217992][0.294019,0.00705898,0][1.95944,0,0.188673][0,-1.47262,0][0.292246,0.0771688,0][1.88498,0,0.567316][1.54128,0,0.303086][0.33317,0.640886,0][1.88498,0.19685,0.567316][1.54128,0,0.303086][0.33903,0.624607,0][2.56296,0.375019,0.988067][0.924711,0,0.380669][0.410321,0.633626,0][2.56296,0.375019,0.988067][0.924711,0,0.380669][0.410321,0.633626,0][2.56296,0.311808,0.988067][0.924711,0,0.380669][0.40844,0.638854,0][1.88498,0,0.567316][1.54128,0,0.303086][0.33317,0.640886,0][1.88498,0.19685,0.567316][1.54128,0,0.303086][0.15375,0.170906,0][1.73809,0.19685,0.924157][0,1.47262,0][0.18765,0.171978,0][2.51579,0.375019,1.10265][0.924711,0,0.380669][0.173958,0.24076,0][2.51579,0.375019,1.10265][0.924711,0,0.380669][0.173958,0.24076,0][2.56296,0.375019,0.988067][0.924711,0,0.380669][0.163072,0.240416,0][1.88498,0.19685,0.567316][1.54128,0,0.303086][0.15375,0.170906,0][1.73809,0.19685,0.924157][0,1.47262,0][0.0114641,0.905501,0][1.73809,0,0.924157][0,-1.47262,0][0.005,0.889452,0][2.51579,0.311808,1.10265][0.924711,0,0.380669][0.0786441,0.889336,0][2.51579,0.311808,1.10265][0.924711,0,0.380669][0.0786441,0.889336,0][2.51579,0.375019,1.10265][0.924711,0,0.380669][0.0807198,0.894489,0][1.73809,0.19685,0.924157][0,1.47262,0][0.0114641,0.905501,0][1.73809,0,0.924157][0,-1.47262,0][0.351977,0.108625,0][1.88498,0,0.567316][1.54128,0,0.303086][0.323661,0.0899551,0][2.56296,0.311808,0.988067][0.924711,0,0.380669][0.371352,0.038535,0][2.56296,0.311808,0.988067][0.924711,0,0.380669][0.371352,0.038535,0][2.51579,0.311808,1.10265][0.924711,0,0.380669][0.380445,0.04453,0][1.73809,0,0.924157][0,-1.47262,0][0.351977,0.108625,0][1.52439,0,1.24548][1.30797,0,0.869836][0.201049,0.682786,0][1.52439,0.19685,1.24548][1.30797,0,0.869836][0.206909,0.666507,0][1.98975,0.375019,1.89366][0.708648,0,0.705562][0.2782,0.675526,0][1.98975,0.375019,1.89366][0.708648,0,0.705562][0.2782,0.675526,0][1.98975,0.311808,1.89366][0.708648,0,0.705562][0.276319,0.680754,0][1.52439,0,1.24548][1.30797,0,0.869836][0.201049,0.682786,0][1.52439,0.19685,1.24548][1.30797,0,0.869836][0.208582,0.187659,0][1.25212,0.19685,1.51895][0,1.47262,0][0.209321,0.15375,0][1.90232,0.375019,1.98147][0.708648,0,0.705562][0.278234,0.166767,0][1.90232,0.375019,1.98147][0.708648,0,0.705562][0.278234,0.166767,0][1.98975,0.375019,1.89366][0.708648,0,0.705562][0.277997,0.177656,0][1.52439,0.19685,1.24548][1.30797,0,0.869836][0.208582,0.187659,0][1.25212,0.19685,1.51895][0,1.47262,0][0.005,0.106185,0][1.25212,0,1.51895][0,-1.47262,0][0.0214963,0.100968,0][1.90232,0.311808,1.98147][0.708648,0,0.705562][0.0165147,0.176099,0][1.90232,0.311808,1.98147][0.708648,0,0.705562][0.0165147,0.176099,0][1.90232,0.375019,1.98147][0.708648,0,0.705562][0.0112175,0.177775,0][1.25212,0.19685,1.51895][0,1.47262,0][0.005,0.106185,0][1.25212,0,1.51895][0,-1.47262,0][0.395125,0.160544,0][1.52439,0,1.24548][1.30797,0,0.869836][0.376108,0.13246,0][1.98975,0.311808,1.89366][0.708648,0,0.705562][0.439847,0.103204,0][1.98975,0.311808,1.89366][0.708648,0,0.705562][0.439847,0.103204,0][1.90232,0.311808,1.98147][0.708648,0,0.705562][0.445953,0.112223,0][1.25212,0,1.51895][0,-1.47262,0][0.395125,0.160544,0][0.575535,0.19685,1.88249][0,1.47262,1.201e-007][0.484839,0.499236,0][0.517981,0.19685,1.69424][0,1.66897,0][0.484839,0.48269,0][0.404257,0.905327,1.79241][0,1,0][0.547109,0.491318,0][0.404257,0.905327,1.79241][0,1,0][0.547109,0.491318,0][0.418442,0.905327,1.83881][0,1,0][0.547109,0.495396,0][0.575535,0.19685,1.88249][0,1.47262,1.201e-007][0.484839,0.499236,0][0.517981,0.19685,1.69424][0,1.66897,0][0.401145,0.547109,0][0.177498,0.19685,1.76274][-0.309807,0,-1.53994][0.371219,0.547109,0][0.320338,0.905327,1.80929][0,1,0][0.383773,0.484839,0][0.320338,0.905327,1.80929][0,1,0][0.383773,0.484839,0][0.404257,0.905327,1.79241][0,1,0][0.391149,0.484839,0][0.517981,0.19685,1.69424][0,1.66897,0][0.401145,0.547109,0][0.177498,0.19685,1.76274][-0.309807,0,-1.53994][0.641734,0.403029,0][0.197221,0.19685,1.9586][0.309807,0,1.53994][0.641734,0.385814,0][0.325199,0.905327,1.85756][0,1,0][0.704004,0.394694,0][0.325199,0.905327,1.85756][0,1,0][0.704004,0.394694,0][0.320338,0.905327,1.80929][0,1,0][0.704004,0.398937,0][0.177498,0.19685,1.76274][-0.309807,0,-1.53994][0.641734,0.403029,0][0.197221,0.19685,1.9586][0.309807,0,1.53994][0.596729,0.226953,0][0.575535,0.19685,1.88249][0,1.47262,1.201e-007][0.596729,0.193702,0][0.418442,0.905327,1.83881][0,1,0][0.658999,0.20751,0][0.418442,0.905327,1.83881][0,1,0][0.658999,0.20751,0][0.325199,0.905327,1.85756][0,1,0][0.658999,0.215705,0][0.197221,0.19685,1.9586][0.309807,0,1.53994][0.596729,0.226953,0][-0.188673,0.19685,1.95944][0,1.47262,0][0.0995884,0.936471,0][-0.169806,0.19685,1.7635][0,1.66897,1.26949e-007][0.0995884,0.919249,0][-0.312441,0.905327,1.81067][0,1,0][0.161858,0.923395,0][-0.312441,0.905327,1.81067][0,1,0][0.161858,0.923395,0][-0.317091,0.905327,1.85897][0,1,0][0.161858,0.92764,0][-0.188673,0.19685,1.95944][0,1.47262,0][0.0995884,0.936471,0][-0.169806,0.19685,1.7635][0,1.66897,1.26949e-007][0.340693,0.547109,0][-0.510584,0.19685,1.69648][0.303086,0,-1.54128][0.310741,0.547109,0][-0.396432,0.905327,1.79415][0,1,0][0.320774,0.484839,0][-0.396432,0.905327,1.79415][0,1,0][0.320774,0.484839,0][-0.312441,0.905327,1.81067][0,1,0][0.328156,0.484839,0][-0.169806,0.19685,1.7635][0,1.66897,1.26949e-007][0.340693,0.547109,0][-0.510584,0.19685,1.69648][0.303086,0,-1.54128][0.333771,0.87118,0][-0.567316,0.19685,1.88498][-0.303086,0,1.54128][0.333771,0.854612,0][-0.410415,0.905327,1.84061][0,1,0][0.396041,0.858512,0][-0.410415,0.905327,1.84061][0,1,0][0.396041,0.858512,0][-0.396432,0.905327,1.79415][0,1,0][0.396041,0.862595,0][-0.510584,0.19685,1.69648][0.303086,0,-1.54128][0.333771,0.87118,0][-0.567316,0.19685,1.88498][-0.303086,0,1.54128][0.15375,0.261816,0][-0.188673,0.19685,1.95944][0,1.47262,0][0.18703,0.261816,0][-0.317091,0.905327,1.85897][0,1,0][0.175743,0.324086,0][-0.317091,0.905327,1.85897][0,1,0][0.175743,0.324086,0][-0.410415,0.905327,1.84061][0,1,0][0.16754,0.324086,0][-0.567316,0.19685,1.88498][-0.303086,0,1.54128][0.15375,0.261816,0][-0.924157,0.19685,1.73809][0,1.47262,0][0.918921,0.259938,0][-0.831741,0.19685,1.56428][0,1.66897,0][0.918921,0.242636,0][-0.981571,0.905327,1.55328][0,1,0][0.982352,0.247965,0][-0.981571,0.905327,1.55328][0,1,0][0.982352,0.247965,0][-1.00435,0.905327,1.59611][0,1,0][0.982352,0.252229,0][-0.924157,0.19685,1.73809][0,1.47262,0][0.918921,0.259938,0][-0.831741,0.19685,1.56428][0,1.66897,0][0.282514,0.547109,0][-1.12093,0.19685,1.37196][0.869836,0,-1.30797][0.257096,0.547109,0][-1.05285,0.905327,1.50587][0,1,0][0.26308,0.484839,0][-1.05285,0.905327,1.50587][0,1,0][0.26308,0.484839,0][-0.981571,0.905327,1.55328][0,1,0][0.269345,0.484839,0][-0.831741,0.19685,1.56428][0,1.66897,0][0.282514,0.547109,0][-1.12093,0.19685,1.37196][0.869836,0,-1.30797][0.178036,0.871914,0][-1.24548,0.19685,1.52439][-0.869836,0,1.30797][0.178036,0.854612,0][-1.08355,0.905327,1.54345][0,1,0][0.241467,0.862321,0][-1.08355,0.905327,1.54345][0,1,0][0.241467,0.862321,0][-1.05285,0.905327,1.50587][0,1,0][0.241467,0.866585,0][-1.12093,0.19685,1.37196][0.869836,0,-1.30797][0.178036,0.871914,0][-1.24548,0.19685,1.52439][-0.869836,0,1.30797][0.924899,0.0389173,0][-0.924157,0.19685,1.73809][0,1.47262,0][0.924899,0.005,0][-1.00435,0.905327,1.59611][0,1,0][0.987169,0.0177789,0][-1.00435,0.905327,1.59611][0,1,0][0.987169,0.0177789,0][-1.08355,0.905327,1.54345][0,1,0][0.987169,0.0261384,0][-1.24548,0.19685,1.52439][-0.869836,0,1.30797][0.924899,0.0389173,0][-1.51895,0.19685,1.25212][0,1.47262,0][0.762025,0.259938,0][-1.36705,0.19685,1.12691][0,1.66897,0][0.762025,0.242636,0][-1.50127,0.905327,1.05941][0,1,0][0.825456,0.247965,0][-1.50127,0.905327,1.05941][0,1,0][0.825456,0.247965,0][-1.5387,0.905327,1.09027][0,1,0][0.825456,0.252229,0][-1.51895,0.19685,1.25212][0,1.47262,0][0.762025,0.259938,0][-1.36705,0.19685,1.12691][0,1.66897,0][0.224201,0.637943,0][-1.56063,0.19685,0.838558][1.30416,0,-0.875535][0.198857,0.637943,0][-1.54898,0.905327,0.988339][0,1,0][0.212022,0.575673,0][-1.54898,0.905327,0.988339][0,1,0][0.212022,0.575673,0][-1.50127,0.905327,1.05941][0,1,0][0.218268,0.575673,0][-1.36705,0.19685,1.12691][0,1.66897,0][0.224201,0.637943,0][-1.56063,0.19685,0.838558][1.30416,0,-0.875535][0.484839,0.403116,0][-1.73404,0.19685,0.931731][-1.30416,0,0.875535][0.484839,0.385814,0][-1.59172,0.905327,1.0113][0,1,0][0.54827,0.393523,0][-1.59172,0.905327,1.0113][0,1,0][0.54827,0.393523,0][-1.54898,0.905327,0.988339][0,1,0][0.54827,0.397787,0][-1.56063,0.19685,0.838558][1.30416,0,-0.875535][0.484839,0.403116,0][-1.73404,0.19685,0.931731][-1.30416,0,0.875535][0.50214,0.178686,0][-1.51895,0.19685,1.25212][0,1.47262,0][0.50214,0.144768,0][-1.5387,0.905327,1.09027][0,1,0][0.56441,0.157547,0][-1.5387,0.905327,1.09027][0,1,0][0.56441,0.157547,0][-1.59172,0.905327,1.0113][0,1,0][0.56441,0.165907,0][-1.73404,0.19685,0.931731][-1.30416,0,0.875535][0.50214,0.178686,0][-1.88249,0.19685,0.575535][0,1.47262,0][0.640573,0.434678,0][-1.69424,0.19685,0.517981][0,1.66897,0][0.640573,0.418133,0][-1.79241,0.905327,0.404256][0,1,0][0.702843,0.426761,0][-1.79241,0.905327,0.404256][0,1,0][0.702843,0.426761,0][-1.83881,0.905327,0.418441][0,1,0][0.702843,0.430839,0][-1.88249,0.19685,0.575535][0,1.47262,0][0.640573,0.434678,0][-1.69424,0.19685,0.517981][0,1.66897,0][0.170681,0.637943,0][-1.76274,0.19685,0.177498][1.53994,0,-0.309806][0.140755,0.637943,0][-1.80929,0.905327,0.320338][0,1,0][0.153309,0.575673,0][-1.80929,0.905327,0.320338][0,1,0][0.153309,0.575673,0][-1.79241,0.905327,0.404256][0,1,0][0.160685,0.575673,0][-1.69424,0.19685,0.517981][0,1.66897,0][0.170681,0.637943,0][-1.76274,0.19685,0.177498][1.53994,0,-0.309806][0.720182,0.37071,0][-1.9586,0.19685,0.19722][-1.53994,0,0.309807][0.720182,0.353496,0][-1.85756,0.905327,0.325199][0,1,0][0.782452,0.362376,0][-1.85756,0.905327,0.325199][0,1,0][0.782452,0.362376,0][-1.80929,0.905327,0.320338][0,1,0][0.782452,0.366619,0][-1.76274,0.19685,0.177498][1.53994,0,-0.309806][0.720182,0.37071,0][-1.9586,0.19685,0.19722][-1.53994,0,0.309807][0.50214,0.275887,0][-1.88249,0.19685,0.575535][0,1.47262,0][0.50214,0.242636,0][-1.83881,0.905327,0.418441][0,1,0][0.56441,0.256444,0][-1.83881,0.905327,0.418441][0,1,0][0.56441,0.256444,0][-1.85756,0.905327,0.325199][0,1,0][0.56441,0.264639,0][-1.9586,0.19685,0.19722][-1.53994,0,0.309807][0.50214,0.275887,0][-1.95944,0.19685,-0.188673][0,1.47262,0][0.178036,0.904152,0][-1.7635,0.19685,-0.169806][0,1.66897,0][0.178036,0.88693,0][-1.81067,0.905327,-0.312441][0,1,0][0.240306,0.891077,0][-1.81067,0.905327,-0.312441][0,1,0][0.240306,0.891077,0][-1.85897,0.905327,-0.317091][0,1,0][0.240306,0.895321,0][-1.95944,0.19685,-0.188673][0,1.47262,0][0.178036,0.904152,0][-1.7635,0.19685,-0.169806][0,1.66897,0][0.110229,0.637943,0][-1.69648,0.19685,-0.510584][1.54128,0,0.303086][0.0802773,0.637943,0][-1.79415,0.905327,-0.396432][0,1,0][0.0903105,0.575673,0][-1.79415,0.905327,-0.396432][0,1,0][0.0903105,0.575673,0][-1.81067,0.905327,-0.312441][0,1,0][0.0976927,0.575673,0][-1.7635,0.19685,-0.169806][0,1.66897,0][0.110229,0.637943,0][-1.69648,0.19685,-0.510584][1.54128,0,0.303086][0.851584,0.211004,0][-1.88498,0.19685,-0.567316][-1.54128,0,-0.303085][0.851584,0.193702,0][-1.84061,0.905327,-0.410415][0,1,0][0.915015,0.201411,0][-1.84061,0.905327,-0.410415][0,1,0][0.915015,0.201411,0][-1.79415,0.905327,-0.396432][0,1,0][0.915015,0.205675,0][-1.69648,0.19685,-0.510584][1.54128,0,0.303086][0.851584,0.211004,0][-1.88498,0.19685,-0.567316][-1.54128,0,-0.303085][0.603601,0.129114,0][-1.95944,0.19685,-0.188673][0,1.47262,0][0.603601,0.0958342,0][-1.85897,0.905327,-0.317091][0,1,0][0.665871,0.107121,0][-1.85897,0.905327,-0.317091][0,1,0][0.665871,0.107121,0][-1.84061,0.905327,-0.410415][0,1,0][0.665871,0.115324,0][-1.88498,0.19685,-0.567316][-1.54128,0,-0.303085][0.603601,0.129114,0][-1.73809,0.19685,-0.924157][0,1.47262,0][0.0995884,0.904232,0][-1.56428,0.19685,-0.831741][0,1.66897,0][0.0995884,0.88693,0][-1.55328,0.905327,-0.981571][0,1,0][0.16302,0.892259,0][-1.55328,0.905327,-0.981571][0,1,0][0.16302,0.892259,0][-1.59611,0.905327,-1.00435][0,1,0][0.16302,0.896524,0][-1.73809,0.19685,-0.924157][0,1.47262,0][0.0995884,0.904232,0][-1.56428,0.19685,-0.831741][0,1.66897,0][0.0520499,0.637943,0][-1.37196,0.19685,-1.12093][1.30797,0,0.869836][0.0266319,0.637943,0][-1.50587,0.905327,-1.05285][0,1,0][0.0326161,0.575673,0][-1.50587,0.905327,-1.05285][0,1,0][0.0326161,0.575673,0][-1.55328,0.905327,-0.981571][0,1,0][0.0388809,0.575673,0][-1.56428,0.19685,-0.831741][0,1.66897,0][0.0520499,0.637943,0][-1.37196,0.19685,-1.12093][1.30797,0,0.869836][0.484839,0.435434,0][-1.52439,0.19685,-1.24548][-1.30797,0,-0.869837][0.484839,0.418133,0][-1.54345,0.905327,-1.08355][0,1,0][0.54827,0.425841,0][-1.54345,0.905327,-1.08355][0,1,0][0.54827,0.425841,0][-1.50587,0.905327,-1.05285][0,1,0][0.54827,0.430106,0][-1.37196,0.19685,-1.12093][1.30797,0,0.869836][0.484839,0.435434,0][-1.52439,0.19685,-1.24548][-1.30797,0,-0.869837][0.50214,0.22762,0][-1.73809,0.19685,-0.924157][0,1.47262,0][0.50214,0.193702,0][-1.59611,0.905327,-1.00435][0,1,0][0.56441,0.206481,0][-1.59611,0.905327,-1.00435][0,1,0][0.56441,0.206481,0][-1.54345,0.905327,-1.08355][0,1,0][0.56441,0.214841,0][-1.52439,0.19685,-1.24548][-1.30797,0,-0.869837][0.50214,0.22762,0][-1.25212,0.19685,-1.51895][0,1.47262,0][0.384513,0.683809,0][-1.12691,0.19685,-1.36705][0,1.66897,0][0.384513,0.666507,0][-1.05941,0.905327,-1.50127][0,1,0][0.447944,0.671836,0][-1.05941,0.905327,-1.50127][0,1,0][0.447944,0.671836,0][-1.09027,0.905327,-1.5387][0,1,0][0.447944,0.6761,0][-1.25212,0.19685,-1.51895][0,1.47262,0][0.384513,0.683809,0][-1.12691,0.19685,-1.36705][0,1.66897,0][0.70404,0.06727,0][-0.838558,0.19685,-1.56063][0.875535,0,1.30416][0.678696,0.06727,0][-0.988339,0.905327,-1.54898][0,1,0][0.69186,0.005,0][-0.988339,0.905327,-1.54898][0,1,0][0.69186,0.005,0][-1.05941,0.905327,-1.50127][0,1,0][0.698107,0.005,0][-1.12691,0.19685,-1.36705][0,1.66897,0][0.70404,0.06727,0][-0.838558,0.19685,-1.56063][0.875535,0,1.30416][0.0995884,0.871914,0][-0.931731,0.19685,-1.73404][-0.875535,0,-1.30416][0.0995884,0.854612,0][-1.0113,0.905327,-1.59172][0,1,0][0.16302,0.862321,0][-1.0113,0.905327,-1.59172][0,1,0][0.16302,0.862321,0][-0.988339,0.905327,-1.54898][0,1,0][0.16302,0.866585,0][-0.838558,0.19685,-1.56063][0.875535,0,1.30416][0.0995884,0.871914,0][-0.931731,0.19685,-1.73404][-0.875535,0,-1.30416][0.0223017,0.749358,0][-1.25212,0.19685,-1.51895][0,1.47262,0][0.0223017,0.715441,0][-1.09027,0.905327,-1.5387][0,1,0][0.0845717,0.72822,0][-1.09027,0.905327,-1.5387][0,1,0][0.0845717,0.72822,0][-1.0113,0.905327,-1.59172][0,1,0][0.0845717,0.736579,0][-0.931731,0.19685,-1.73404][-0.875535,0,-1.30416][0.0223017,0.749358,0][-0.575534,0.19685,-1.88249][0,1.47262,1.201e-007][0.562125,0.466997,0][-0.517981,0.19685,-1.69424][0,1.66897,0][0.562125,0.450451,0][-0.404256,0.905327,-1.79241][0,1,0][0.624395,0.459079,0][-0.404256,0.905327,-1.79241][0,1,0][0.624395,0.459079,0][-0.418441,0.905327,-1.83881][0,1,0][0.624395,0.463157,0][-0.575534,0.19685,-1.88249][0,1.47262,1.201e-007][0.562125,0.466997,0][-0.517981,0.19685,-1.69424][0,1.66897,0][0.650519,0.06727,0][-0.177498,0.19685,-1.76274][0.309807,0,1.53994][0.620593,0.06727,0][-0.320338,0.905327,-1.80929][0,1,0][0.633148,0.005,0][-0.320338,0.905327,-1.80929][0,1,0][0.633148,0.005,0][-0.404256,0.905327,-1.79241][0,1,0][0.640524,0.005,0][-0.517981,0.19685,-1.69424][0,1.66897,0][0.650519,0.06727,0][-0.177498,0.19685,-1.76274][0.309807,0,1.53994][0.563286,0.435347,0][-0.19722,0.19685,-1.9586][-0.309808,0,-1.53994][0.563286,0.418133,0][-0.325199,0.905327,-1.85756][0,1,0][0.625556,0.427013,0][-0.325199,0.905327,-1.85756][0,1,0][0.625556,0.427013,0][-0.320338,0.905327,-1.80929][0,1,0][0.625556,0.431256,0][-0.177498,0.19685,-1.76274][0.309807,0,1.53994][0.563286,0.435347,0][-0.19722,0.19685,-1.9586][-0.309808,0,-1.53994][0.0223017,0.84656,0][-0.575534,0.19685,-1.88249][0,1.47262,1.201e-007][0.0223017,0.813309,0][-0.418441,0.905327,-1.83881][0,1,0][0.0845717,0.827116,0][-0.418441,0.905327,-1.83881][0,1,0][0.0845717,0.827116,0][-0.325199,0.905327,-1.85756][0,1,0][0.0845717,0.835312,0][-0.19722,0.19685,-1.9586][-0.309808,0,-1.53994][0.0223017,0.84656,0][0.188673,0.19685,-1.95944][0,1.47262,0][0.484839,0.467673,0][0.169806,0.19685,-1.7635][0,1.66897,1.26949e-007][0.484839,0.450451,0][0.312441,0.905327,-1.81067][0,1,0][0.547109,0.454597,0][0.312441,0.905327,-1.81067][0,1,0][0.547109,0.454597,0][0.317091,0.905327,-1.85897][0,1,0][0.547109,0.458842,0][0.188673,0.19685,-1.95944][0,1.47262,0][0.484839,0.467673,0][0.169806,0.19685,-1.7635][0,1.66897,1.26949e-007][0.590068,0.06727,0][0.510584,0.19685,-1.69648][-0.303086,0,1.54128][0.560116,0.06727,0][0.396432,0.905327,-1.79415][0,1,0][0.570149,0.005,0][0.396432,0.905327,-1.79415][0,1,0][0.570149,0.005,0][0.312441,0.905327,-1.81067][0,1,0][0.577531,0.005,0][0.169806,0.19685,-1.7635][0,1.66897,1.26949e-007][0.590068,0.06727,0][0.510584,0.19685,-1.69648][-0.303086,0,1.54128][0.178036,0.935737,0][0.567316,0.19685,-1.88498][0.303086,0,-1.54128][0.178036,0.919169,0][0.410415,0.905327,-1.84061][0,1,0][0.240306,0.923069,0][0.410415,0.905327,-1.84061][0,1,0][0.240306,0.923069,0][0.396432,0.905327,-1.79415][0,1,0][0.240306,0.927152,0][0.510584,0.19685,-1.69648][-0.303086,0,1.54128][0.178036,0.935737,0][0.567316,0.19685,-1.88498][0.303086,0,-1.54128][0.123763,0.699787,0][0.188673,0.19685,-1.95944][0,1.47262,0][0.123763,0.666507,0][0.317091,0.905327,-1.85897][0,1,0][0.186033,0.677794,0][0.317091,0.905327,-1.85897][0,1,0][0.186033,0.677794,0][0.410415,0.905327,-1.84061][0,1,0][0.186033,0.685996,0][0.567316,0.19685,-1.88498][0.303086,0,-1.54128][0.123763,0.699787,0][0.924157,0.19685,-1.73809][0,1.47262,0][0.005,0.93782,0][0.831741,0.19685,-1.56428][0,1.66897,0][0.005,0.920518,0][0.981572,0.905327,-1.55328][0,1,0][0.0684312,0.925847,0][0.981572,0.905327,-1.55328][0,1,0][0.0684312,0.925847,0][1.00435,0.905327,-1.59611][0,1,0][0.0684312,0.930111,0][0.924157,0.19685,-1.73809][0,1.47262,0][0.005,0.93782,0][0.831741,0.19685,-1.56428][0,1.66897,0][0.531888,0.06727,0][1.12093,0.19685,-1.37196][-0.869836,0,1.30797][0.50647,0.06727,0][1.05285,0.905327,-1.50587][0,1,0][0.512455,0.005,0][1.05285,0.905327,-1.50587][0,1,0][0.512455,0.005,0][0.981572,0.905327,-1.55328][0,1,0][0.518719,0.005,0][0.831741,0.19685,-1.56428][0,1.66897,0][0.531888,0.06727,0][1.12093,0.19685,-1.37196][-0.869836,0,1.30797][0.484839,0.370797,0][1.24548,0.19685,-1.52439][0.869837,0,-1.30797][0.484839,0.353496,0][1.08355,0.905327,-1.54345][0,1,0][0.54827,0.361204,0][1.08355,0.905327,-1.54345][0,1,0][0.54827,0.361204,0][1.05285,0.905327,-1.50587][0,1,0][0.54827,0.365469,0][1.12093,0.19685,-1.37196][-0.869836,0,1.30797][0.484839,0.370797,0][1.24548,0.19685,-1.52439][0.869837,0,-1.30797][0.830311,0.0389173,0][0.924157,0.19685,-1.73809][0,1.47262,0][0.830311,0.005,0][1.00435,0.905327,-1.59611][0,1,0][0.892581,0.0177789,0][1.00435,0.905327,-1.59611][0,1,0][0.892581,0.0177789,0][1.08355,0.905327,-1.54345][0,1,0][0.892581,0.0261385,0][1.24548,0.19685,-1.52439][0.869837,0,-1.30797][0.830311,0.0389173,0][1.51895,0.19685,-1.25212][0,1.47262,0][0.563286,0.403116,0][1.36705,0.19685,-1.12691][0,1.66897,0][0.563286,0.385814,0][1.50127,0.905327,-1.05941][0,1,0][0.626718,0.391143,0][1.50127,0.905327,-1.05941][0,1,0][0.626718,0.391143,0][1.5387,0.905327,-1.09027][0,1,0][0.626718,0.395407,0][1.51895,0.19685,-1.25212][0,1.47262,0][0.563286,0.403116,0][1.36705,0.19685,-1.12691][0,1.66897,0][0.224201,0.547109,0][1.56063,0.19685,-0.838558][-1.30416,0,0.875535][0.198857,0.547109,0][1.54898,0.905327,-0.988339][0,1,0][0.212022,0.484839,0][1.54898,0.905327,-0.988339][0,1,0][0.212022,0.484839,0][1.50127,0.905327,-1.05941][0,1,0][0.218268,0.484839,0][1.36705,0.19685,-1.12691][0,1.66897,0][0.224201,0.547109,0][1.56063,0.19685,-0.838558][-1.30416,0,0.875535][0.840473,0.259938,0][1.73404,0.19685,-0.931731][1.30416,1.85494e-007,-0.875534][0.840473,0.242636,0][1.59172,0.905327,-1.0113][0,1,0][0.903904,0.250345,0][1.59172,0.905327,-1.0113][0,1,0][0.903904,0.250345,0][1.54898,0.905327,-0.988339][0,1,0][0.903904,0.254609,0][1.56063,0.19685,-0.838558][-1.30416,0,0.875535][0.840473,0.259938,0][1.73404,0.19685,-0.931731][1.30416,1.85494e-007,-0.875534][0.350472,0.60959,0][1.51895,0.19685,-1.25212][0,1.47262,0][0.350472,0.575673,0][1.5387,0.905327,-1.09027][0,1,0][0.412742,0.588452,0][1.5387,0.905327,-1.09027][0,1,0][0.412742,0.588452,0][1.59172,0.905327,-1.0113][0,1,0][0.412742,0.596811,0][1.73404,0.19685,-0.931731][1.30416,1.85494e-007,-0.875534][0.350472,0.60959,0][1.88249,0.19685,-0.575534][0,1.47262,0][0.005,0.970138,0][1.69424,0.19685,-0.517981][0,1.66897,0][0.005,0.952836,0][1.79241,0.905327,-0.404256][0,1,0][0.0684312,0.958165,0][1.79241,0.905327,-0.404256][0,1,0][0.0684312,0.958165,0][1.83881,0.905327,-0.418441][0,1,0][0.0684312,0.96243,0][1.88249,0.19685,-0.575534][0,1.47262,0][0.005,0.970138,0][1.69424,0.19685,-0.517981][0,1.66897,0][0.170681,0.547109,0][1.76274,0.19685,-0.177498][-1.53994,0,0.309807][0.140755,0.547109,0][1.80929,0.905327,-0.320338][0,1,0][0.153309,0.484839,0][1.80929,0.905327,-0.320338][0,1,0][0.153309,0.484839,0][1.79241,0.905327,-0.404256][0,1,0][0.160685,0.484839,0][1.69424,0.19685,-0.517981][0,1.66897,0][0.170681,0.547109,0][1.76274,0.19685,-0.177498][-1.53994,0,0.309807][0.0995884,0.968702,0][1.9586,0.19685,-0.19722][1.53994,0,-0.309807][0.0995884,0.951488,0][1.85756,0.905327,-0.325198][0,1,0][0.161858,0.960368,0][1.85756,0.905327,-0.325198][0,1,0][0.161858,0.960368,0][1.80929,0.905327,-0.320338][0,1,0][0.161858,0.964611,0][1.76274,0.19685,-0.177498][-1.53994,0,0.309807][0.0995884,0.968702,0][1.9586,0.19685,-0.19722][1.53994,0,-0.309807][0.691317,0.178019,0][1.88249,0.19685,-0.575534][0,1.47262,0][0.691317,0.144768,0][1.83881,0.905327,-0.418441][0,1,0][0.753587,0.158576,0][1.83881,0.905327,-0.418441][0,1,0][0.753587,0.158576,0][1.85756,0.905327,-0.325198][0,1,0][0.753587,0.166771,0][1.9586,0.19685,-0.19722][1.53994,0,-0.309807][0.691317,0.178019,0][1.95944,0.19685,0.188673][0,1.47262,0][0.256484,0.871834,0][1.7635,0.19685,0.169806][0,1.66897,0][0.256484,0.854612,0][1.81067,0.905327,0.312441][0,1,0][0.318754,0.858758,0][1.81067,0.905327,0.312441][0,1,0][0.318754,0.858758,0][1.85897,0.905327,0.317091][0,1,0][0.318754,0.863003,0][1.95944,0.19685,0.188673][0,1.47262,0][0.256484,0.871834,0][1.7635,0.19685,0.169806][0,1.66897,0][0.110229,0.547109,0][1.69648,0.19685,0.510584][-1.54128,0,-0.303086][0.0802773,0.547109,0][1.79415,0.905327,0.396432][0,1,0][0.0903105,0.484839,0][1.79415,0.905327,0.396432][0,1,0][0.0903105,0.484839,0][1.81067,0.905327,0.312441][0,1,0][0.0976927,0.484839,0][1.7635,0.19685,0.169806][0,1.66897,0][0.110229,0.547109,0][1.69648,0.19685,0.510584][-1.54128,0,-0.303086][0.255323,0.903498,0][1.88498,0.19685,0.567316][1.54128,0,0.303086][0.255323,0.88693,0][1.84061,0.905327,0.410415][0,1,0][0.317593,0.89083,0][1.84061,0.905327,0.410415][0,1,0][0.317593,0.89083,0][1.79415,0.905327,0.396432][0,1,0][0.317593,0.894913,0][1.69648,0.19685,0.510584][-1.54128,0,-0.303086][0.255323,0.903498,0][1.88498,0.19685,0.567316][1.54128,0,0.303086][0.11689,0.748721,0][1.95944,0.19685,0.188673][0,1.47262,0][0.11689,0.715441,0][1.85897,0.905327,0.317091][0,1,0][0.17916,0.726728,0][1.85897,0.905327,0.317091][0,1,0][0.17916,0.726728,0][1.84061,0.905327,0.410415][0,1,0][0.17916,0.73493,0][1.88498,0.19685,0.567316][1.54128,0,0.303086][0.11689,0.748721,0][1.73809,0.19685,0.924157][0,1.47262,0][0.641734,0.370797,0][1.56428,0.19685,0.831741][0,1.66897,0][0.641734,0.353496,0][1.55328,0.905327,0.981572][0,1,0][0.705165,0.358824,0][1.55328,0.905327,0.981572][0,1,0][0.705165,0.358824,0][1.59611,0.905327,1.00435][0,1,0][0.705165,0.363089,0][1.73809,0.19685,0.924157][0,1.47262,0][0.641734,0.370797,0][1.56428,0.19685,0.831741][0,1.66897,0][0.0520499,0.547109,0][1.37196,0.19685,1.12093][-1.30797,0,-0.869837][0.0266319,0.547109,0][1.50587,0.905327,1.05285][0,1,0][0.0326161,0.484839,0][1.50587,0.905327,1.05285][0,1,0][0.0326161,0.484839,0][1.55328,0.905327,0.981572][0,1,0][0.0388809,0.484839,0][1.56428,0.19685,0.831741][0,1.66897,0][0.0520499,0.547109,0][1.37196,0.19685,1.12093][-1.30797,0,-0.869837][0.864352,0.113136,0][1.52439,0.19685,1.24548][1.30797,0,0.869836][0.864352,0.0958342,0][1.54345,0.905327,1.08355][0,1,0][0.927783,0.103543,0][1.54345,0.905327,1.08355][0,1,0][0.927783,0.103543,0][1.50587,0.905327,1.05285][0,1,0][0.927783,0.107807,0][1.37196,0.19685,1.12093][-1.30797,0,-0.869837][0.864352,0.113136,0][1.52439,0.19685,1.24548][1.30797,0,0.869836][0.596729,0.178686,0][1.73809,0.19685,0.924157][0,1.47262,0][0.596729,0.144768,0][1.59611,0.905327,1.00435][0,1,0][0.658999,0.157547,0][1.59611,0.905327,1.00435][0,1,0][0.658999,0.157547,0][1.54345,0.905327,1.08355][0,1,0][0.658999,0.165907,0][1.52439,0.19685,1.24548][1.30797,0,0.869836][0.596729,0.178686,0][0.838558,0.19685,1.56063][0,1.66897,0][0.563286,0.370797,0][0.931732,0.19685,1.73404][0,1.47262,0][0.563286,0.353496,0][1.0113,0.905327,1.59172][0,1,0][0.626718,0.361204,0][1.0113,0.905327,1.59172][0,1,0][0.626718,0.361204,0][0.988339,0.905327,1.54898][0,1,0][0.626718,0.365469,0][0.838558,0.19685,1.56063][0,1.66897,0][0.563286,0.370797,0][0.931732,0.19685,1.73404][0,1.47262,0][0.0223017,0.798292,0][1.25212,0.19685,1.51895][0,1.47262,0][0.0223017,0.764375,0][1.09027,0.905327,1.5387][0,1,0][0.0845717,0.777154,0][1.09027,0.905327,1.5387][0,1,0][0.0845717,0.777154,0][1.0113,0.905327,1.59172][0,1,0][0.0845717,0.785513,0][0.931732,0.19685,1.73404][0,1.47262,0][0.0223017,0.798292,0][1.25212,0.19685,1.51895][0,1.47262,0][0.377641,0.732743,0][1.12691,0.19685,1.36705][0,1.66897,0][0.377641,0.715441,0][1.05941,0.905327,1.50127][0,1,0][0.441072,0.72077,0][1.05941,0.905327,1.50127][0,1,0][0.441072,0.72077,0][1.09027,0.905327,1.5387][0,1,0][0.441072,0.725034,0][1.25212,0.19685,1.51895][0,1.47262,0][0.377641,0.732743,0][1.12691,0.19685,1.36705][0,1.66897,0][0.454665,0.547109,0][0.838558,0.19685,1.56063][0,1.66897,0][0.429321,0.547109,0][0.988339,0.905327,1.54898][0,1,0][0.442486,0.484839,0][0.988339,0.905327,1.54898][0,1,0][0.442486,0.484839,0][1.05941,0.905327,1.50127][0,1,0][0.448732,0.484839,0][1.12691,0.19685,1.36705][0,1.66897,0][0.454665,0.547109,0][0.371357,0.936111,-1.98889][0.954862,-0.29705,-1.30299e-005][0.86443,0.275041,0][0.286832,0.664406,-1.98898][0.954862,-0.29705,-1.30299e-005][0.840619,0.27686,0][0.286832,0.664407,-2.01073][0.954862,-0.29705,-1.30299e-005][0.840473,0.274955,0][0.371358,0.936111,-2.01063][0.954861,-0.297053,1.83243e-005][0.190839,0.110711,0][0.371357,0.936111,-1.98889][0.954861,-0.297053,1.83243e-005][0.192745,0.110564,0][0.286832,0.664407,-2.01073][0.954861,-0.297053,1.83243e-005][0.192658,0.134522,0][0.371357,0.936111,-1.98889][0.954862,-0.29705,-1.30299e-005][0.942878,0.275041,0][0.286832,0.664406,-1.98898][0.954862,-0.29705,-1.30299e-005][0.919067,0.27686,0][0.286832,0.664407,-2.01073][0.954862,-0.29705,-1.30299e-005][0.918921,0.274955,0][0.371358,0.936111,-2.01063][0.954861,-0.297053,1.83243e-005][0.301202,0.110711,0][0.371357,0.936111,-1.98889][0.954861,-0.297053,1.83243e-005][0.303107,0.110564,0][0.286832,0.664407,-2.01073][0.954861,-0.297053,1.83243e-005][0.303021,0.134522,0][-0.305794,0.979987,-2.12109][-0.519319,-0.210071,-0.828359][0.369132,0.21338,0][-0.154955,0.843617,-2.18107][-0.519319,-0.210071,-0.828359][0.360081,0.197092,0][-0.134039,0.553037,-2.1205][-0.519319,-0.210071,-0.828359][0.370124,0.172943,0][-0.284316,0.664422,-2.01064][-0.693051,-0.279731,-0.664402][0.681548,0.290904,0][-0.305794,0.979987,-2.12109][-0.693051,-0.279731,-0.664402][0.707884,0.304077,0][-0.134039,0.553037,-2.1205][-0.693051,-0.279731,-0.664402][0.667437,0.303726,0][-0.305794,0.979987,-2.12109][-0.519319,-0.210071,-0.828359][0.138809,0.189388,0][-0.154955,0.843617,-2.18107][-0.519319,-0.210071,-0.828359][0.129758,0.1731,0][-0.134039,0.553037,-2.1205][-0.519319,-0.210071,-0.828359][0.139801,0.148952,0][-0.284316,0.664422,-2.01064][-0.693051,-0.279731,-0.664402][0.58938,0.3222,0][-0.305794,0.979987,-2.12109][-0.693051,-0.279731,-0.664402][0.615716,0.335373,0][-0.134039,0.553037,-2.1205][-0.693051,-0.279731,-0.664402][0.575269,0.335022,0][-0.284316,0.664421,-1.98889][-0.954493,-0.298234,0][0.708941,0.273932,0][-0.36918,0.936029,-1.98889][-0.954493,-0.298234,0][0.732814,0.273932,0][-0.36918,0.936029,-2.01064][-0.954493,-0.298234,0][0.732814,0.275843,0][-0.284316,0.664422,-2.01064][-0.954493,-0.298234,-1.22639e-005][0.338264,0.699714,0][-0.284316,0.664421,-1.98889][-0.954493,-0.298234,-1.22639e-005][0.338264,0.697803,0][-0.36918,0.936029,-2.01064][-0.954493,-0.298234,-1.22639e-005][0.362137,0.699714,0][-0.284316,0.664421,-1.98889][-0.954493,-0.298234,0][0.323691,0.746737,0][-0.36918,0.936029,-1.98889][-0.954493,-0.298234,0][0.347564,0.746737,0][-0.36918,0.936029,-2.01064][-0.954493,-0.298234,0][0.347564,0.748648,0][-0.284316,0.664422,-2.01064][-0.954493,-0.298234,-1.22639e-005][0.624474,0.275843,0][-0.284316,0.664421,-1.98889][-0.954493,-0.298234,-1.22639e-005][0.624474,0.273932,0][-0.36918,0.936029,-2.01064][-0.954493,-0.298234,-1.22639e-005][0.648347,0.275843,0][-0.402082,1.18254,-1.98921][-0.977407,0.211366,-2.00964e-005][0.811691,0.668683,0][-0.369181,1.33469,-1.98829][-0.977407,0.211366,-2.00964e-005][0.825064,0.668602,0][-0.36918,1.33469,-2.01003][-0.977407,0.211366,-2.00964e-005][0.825064,0.670513,0][-0.402081,1.18254,-2.01095][-0.977407,0.211366,-2.00968e-005][0.885701,0.736505,0][-0.402082,1.18254,-1.98921][-0.977407,0.211366,-2.00968e-005][0.885701,0.734594,0][-0.36918,1.33469,-2.01003][-0.977407,0.211366,-2.00968e-005][0.899073,0.736424,0][-0.402082,1.18254,-1.98921][-0.977407,0.211366,-2.00964e-005][0.816298,0.828539,0][-0.369181,1.33469,-1.98829][-0.977407,0.211366,-2.00964e-005][0.82967,0.828458,0][-0.36918,1.33469,-2.01003][-0.977407,0.211366,-2.00964e-005][0.82967,0.830369,0][-0.402081,1.18254,-2.01095][-0.977407,0.211366,-2.00968e-005][0.861472,0.755116,0][-0.402082,1.18254,-1.98921][-0.977407,0.211366,-2.00968e-005][0.861472,0.753205,0][-0.36918,1.33469,-2.01003][-0.977407,0.211366,-2.00968e-005][0.874844,0.755035,0][-0.206491,1.18254,-2.18108][-0.398252,-0.0754649,-0.914166][0.614223,0.655186,0][-0.182699,1.05693,-2.18107][-0.398252,-0.0754649,-0.914166][0.622763,0.647883,0][-0.305794,0.979987,-2.12109][-0.398252,-0.0754649,-0.914166][0.634735,0.654756,0][-0.206491,1.18254,-2.18108][-0.398252,-0.0754649,-0.914166][0.585359,0.675905,0][-0.182699,1.05693,-2.18107][-0.398252,-0.0754649,-0.914166][0.593899,0.668602,0][-0.305794,0.979987,-2.12109][-0.398252,-0.0754649,-0.914166][0.605871,0.675475,0][-0.146012,1.32654,-2.18107][-0.438211,0.186034,-0.87941][0.713167,0.777351,0][-0.176251,1.25531,-2.18107][-0.438211,0.186034,-0.87941][0.71672,0.771551,0][-0.278485,1.29612,-2.1215][-0.438211,0.186034,-0.87941][0.726209,0.777119,0][-0.146012,1.32654,-2.18107][-0.438211,0.186034,-0.87941][0.52025,0.934844,0][-0.176251,1.25531,-2.18107][-0.438211,0.186034,-0.87941][0.523803,0.929045,0][-0.278485,1.29612,-2.1215][-0.438211,0.186034,-0.87941][0.533291,0.934613,0][7.72071e-007,1.38566,-2.18107][-0.180951,0.469757,-0.864052][0.622469,0.848037,0][-0.0752536,1.35683,-2.18099][-0.180951,0.469757,-0.864052][0.618368,0.853812,0][-0.117181,1.45308,-2.11988][-0.180951,0.469757,-0.864052][0.609426,0.847978,0][7.72071e-007,1.38566,-2.18107][-0.180951,0.469757,-0.864052][0.865199,0.602539,0][-0.0752536,1.35683,-2.18099][-0.180951,0.469757,-0.864052][0.861098,0.608314,0][-0.117181,1.45308,-2.11988][-0.180951,0.469757,-0.864052][0.852156,0.60248,0][0.146013,1.32654,-2.18107][0.192687,0.458205,-0.86771][0.530984,0.949861,0][0.0743639,1.35667,-2.18107][0.192687,0.458205,-0.86771][0.53104,0.956693,0][0.119723,1.45312,-2.12007][0.192687,0.458205,-0.86771][0.52025,0.956392,0][0.146013,1.32654,-2.18107][0.192687,0.458205,-0.86771][0.723901,0.792367,0][0.0743639,1.35667,-2.18107][0.192687,0.458205,-0.86771][0.723957,0.799199,0][0.119723,1.45312,-2.12007][0.192687,0.458205,-0.86771][0.713167,0.798899,0][0.402082,1.18254,-1.98921][0.646892,-0.0830861,0.758042][0.347837,0.239472,0][0.190826,1.26134,-1.8003][0.646892,-0.0830861,0.758042][0.340887,0.21457,0][-1.07964e-006,1.18124,-1.64623][0.646892,-0.0830861,0.758042][0.347952,0.193021,0][0.205225,1.04179,-1.79847][0.643819,0.123028,0.755223][0.0088463,0.520338,0][0.402082,1.18254,-1.98921][0.643819,0.123028,0.755223][0.0213118,0.496294,0][-1.07964e-006,1.18124,-1.64623][0.643819,0.123028,0.755223][0.0211965,0.542745,0][0.402082,1.18254,-1.98921][0.646892,-0.0830861,0.758042][0.239472,0.341002,0][0.190826,1.26134,-1.8003][0.646892,-0.0830861,0.758042][0.21457,0.347952,0][-1.07964e-006,1.18124,-1.64623][0.646892,-0.0830861,0.758042][0.193021,0.340887,0][0.205225,1.04179,-1.79847][0.643819,0.123028,0.755223][0.488685,0.0404995,0][0.402082,1.18254,-1.98921][0.643819,0.123028,0.755223][0.50115,0.0164559,0][-1.07964e-006,1.18124,-1.64623][0.643819,0.123028,0.755223][0.501035,0.062907,0][-0.0752536,1.35683,-2.18099][-0.000556108,-0.00145918,-0.999999][0.186094,0.142219,0][7.72071e-007,1.38566,-2.18107][-0.000556108,-0.00145918,-0.999999][0.179479,0.144754,0][0.0743639,1.35667,-2.18107][-0.000556108,-0.00145918,-0.999999][0.172943,0.142205,0][-0.0752536,1.35683,-2.18099][-0.000556108,-0.00145918,-0.999999][0.267666,0.142579,0][7.72071e-007,1.38566,-2.18107][-0.000556108,-0.00145918,-0.999999][0.261052,0.145113,0][0.0743639,1.35667,-2.18107][-0.000556108,-0.00145918,-0.999999][0.254516,0.142565,0][-0.0752536,1.35683,-2.18099][-0.000555944,-0.00130616,-0.999999][0.820162,0.627498,0][0.0743639,1.35667,-2.18107][-0.000555944,-0.00130616,-0.999999][0.807095,0.62898,0][0.146013,1.32654,-2.18107][-0.000555944,-0.00130616,-0.999999][0.800538,0.627064,0][-0.0752536,1.35683,-2.18099][-0.000555944,-0.00130616,-0.999999][0.784693,0.648317,0][0.0743639,1.35667,-2.18107][-0.000555944,-0.00130616,-0.999999][0.771626,0.649798,0][0.146013,1.32654,-2.18107][-0.000555944,-0.00130616,-0.999999][0.765068,0.647883,0][-0.0752536,1.35683,-2.18099][1.62383e-006,0.00276665,-0.999996][0.819228,0.0816929,0][0.146013,1.32654,-2.18107][1.62383e-006,0.00276665,-0.999996][0.838676,0.0843553,0][-0.146012,1.32654,-2.18107][1.62383e-006,0.00276665,-0.999996][0.813009,0.0843554,0][-0.0752536,1.35683,-2.18099][1.62383e-006,0.00276665,-0.999996][0.870571,0.128153,0][0.146013,1.32654,-2.18107][1.62383e-006,0.00276665,-0.999996][0.890018,0.130815,0][-0.146012,1.32654,-2.18107][1.62383e-006,0.00276665,-0.999996][0.864352,0.130815,0][-0.146012,1.32654,-2.18107][1.63289e-006,-7.38784e-006,-1][0.450742,0.924151,0][0.146013,1.32654,-2.18107][1.63289e-006,-7.38784e-006,-1][0.425549,0.919244,0][-0.176251,1.25531,-2.18107][1.63289e-006,-7.38784e-006,-1][0.454548,0.918515,0][-0.146012,1.32654,-2.18107][1.63289e-006,-7.38784e-006,-1][0.541874,0.632701,0][0.146013,1.32654,-2.18107][1.63289e-006,-7.38784e-006,-1][0.516681,0.627794,0][-0.176251,1.25531,-2.18107][1.63289e-006,-7.38784e-006,-1][0.54568,0.627064,0][-0.176251,1.25531,-2.18107][0.00083952,-0.00379831,-0.999992][0.201049,0.704063,0][0.146013,1.32654,-2.18107][0.00083952,-0.00379831,-0.999992][0.229374,0.697803,0][0.176253,1.25526,-2.18078][0.00083952,-0.00379831,-0.999992][0.232032,0.704067,0][-0.176251,1.25531,-2.18107][0.00083952,-0.00379831,-0.999992][0.680888,0.133391,0][0.146013,1.32654,-2.18107][0.00083952,-0.00379831,-0.999992][0.709212,0.12713,0][0.176253,1.25526,-2.18078][0.00083952,-0.00379831,-0.999992][0.71187,0.133395,0][-0.176251,1.25531,-2.18107][0.000840627,0.0044413,-0.99999][0.269686,0.6498,0][0.176253,1.25526,-2.18078][0.000840627,0.0044413,-0.99999][0.239066,0.654523,0][0.206492,1.18254,-2.18108][0.000840627,0.0044413,-0.99999][0.235464,0.648611,0][-0.176251,1.25531,-2.18107][0.000840627,0.0044413,-0.99999][0.749525,0.0791272,0][0.176253,1.25526,-2.18078][0.000840627,0.0044413,-0.99999][0.718904,0.0838498,0][0.206492,1.18254,-2.18108][0.000840627,0.0044413,-0.99999][0.715302,0.0779387,0][-0.176251,1.25531,-2.18107][0,1.96591e-005,-1][0.0803325,0.472443,0][0.206492,1.18254,-2.18108][0,1.96591e-005,-1][0.0867281,0.438803,0][-0.206491,1.18254,-2.18108][0,1.96591e-005,-1][0.0867281,0.475101,0][-0.176251,1.25531,-2.18107][0,1.96591e-005,-1][0.0803237,0.0885725,0][0.206492,1.18254,-2.18108][0,1.96591e-005,-1][0.0867192,0.0549322,0][-0.206491,1.18254,-2.18108][0,1.96591e-005,-1][0.0867192,0.0912305,0][-0.206491,1.18254,-2.18108][0,-1.52325e-005,-1][0.425169,0.475194,0][0.206492,1.18254,-2.18108][0,-1.52325e-005,-1][0.388871,0.475194,0][0.186311,1.05733,-2.18107][0,-1.52325e-005,-1][0.390645,0.464189,0][-0.206491,1.18254,-2.18108][0,-1.52325e-005,-1][0.425169,0.0913236,0][0.206492,1.18254,-2.18108][0,-1.52325e-005,-1][0.388871,0.0913236,0][0.186311,1.05733,-2.18107][0,-1.52325e-005,-1][0.390645,0.080318,0][-0.206491,1.18254,-2.18108][-5.77919e-006,-3.33619e-005,-1][0.3025,0.449099,0][0.186311,1.05733,-2.18107][-5.77919e-006,-3.33619e-005,-1][0.302582,0.412863,0][-0.182699,1.05693,-2.18107][-5.77919e-006,-3.33619e-005,-1][0.312396,0.443776,0][-0.206491,1.18254,-2.18108][-5.77919e-006,-3.33619e-005,-1][0.235322,0.132405,0][0.186311,1.05733,-2.18107][-5.77919e-006,-3.33619e-005,-1][0.235405,0.0961693,0][-0.182699,1.05693,-2.18107][-5.77919e-006,-3.33619e-005,-1][0.245218,0.127082,0][-0.182699,1.05693,-2.18107][-5.83209e-006,1.60067e-005,-1][0.474953,0.321693,0][0.186311,1.05733,-2.18107][-5.83209e-006,1.60067e-005,-1][0.471241,0.353914,0][-0.154955,0.843617,-2.18107][-5.83209e-006,1.60067e-005,-1][0.456048,0.321949,0][-0.182699,1.05693,-2.18107][-5.83209e-006,1.60067e-005,-1][0.100968,0.456048,0][0.186311,1.05733,-2.18107][-5.83209e-006,1.60067e-005,-1][0.133188,0.459761,0][-0.154955,0.843617,-2.18107][-5.83209e-006,1.60067e-005,-1][0.101224,0.474953,0][-0.154955,0.843617,-2.18107][3.21829e-006,1.55453e-006,-1][0.186727,0.795671,0][0.186311,1.05733,-2.18107][3.21829e-006,1.55453e-006,-1][0.222113,0.796229,0][0.141541,0.843273,-2.18107][3.21829e-006,1.55453e-006,-1][0.208576,0.809874,0][-0.154955,0.843617,-2.18107][3.21829e-006,1.55453e-006,-1][0.190325,0.82343,0][0.186311,1.05733,-2.18107][3.21829e-006,1.55453e-006,-1][0.225711,0.823988,0][0.141541,0.843273,-2.18107][3.21829e-006,1.55453e-006,-1][0.212174,0.837633,0][-0.154955,0.843617,-2.18107][0,-0.00279537,-0.999996][0.194177,0.746737,0][0.141541,0.843273,-2.18107][0,-0.00279537,-0.999996][0.220237,0.746767,0][0.0842644,0.774104,-2.18088][0,-0.00279537,-0.999996][0.215203,0.752846,0][-0.154955,0.843617,-2.18107][0,-0.00279537,-0.999996][0.773055,0.12713,0][0.141541,0.843273,-2.18107][0,-0.00279537,-0.999996][0.799115,0.12716,0][0.0842644,0.774104,-2.18088][0,-0.00279537,-0.999996][0.794081,0.13324,0][-0.154955,0.843617,-2.18107][0.00114175,0.00113383,-0.999999][0.761154,0.225513,0][0.0842644,0.774104,-2.18088][0.00114175,0.00113383,-0.999999][0.783043,0.224998,0][-0.0841783,0.774029,-2.18107][0.00114175,0.00113383,-0.999999][0.768929,0.229469,0][-0.154955,0.843617,-2.18107][0.00114175,0.00113383,-0.999999][0.855742,0.176465,0][0.0842644,0.774104,-2.18088][0.00114175,0.00113383,-0.999999][0.877631,0.175951,0][-0.0841783,0.774029,-2.18107][0.00114175,0.00113383,-0.999999][0.863518,0.180421,0][-0.0841783,0.774029,-2.18107][0.0011417,0.00122677,-0.999999][0.250127,0.473577,0][0.0842644,0.774104,-2.18088][0.0011417,0.00122677,-0.999999][0.235322,0.473584,0][7.72071e-007,0.693744,-2.18108][0.0011417,0.00122677,-0.999999][0.242729,0.466521,0][-0.0841783,0.774029,-2.18107][0.0011417,0.00122677,-0.999999][0.466527,0.245329,0][0.0842644,0.774104,-2.18088][0.0011417,0.00122677,-0.999999][0.466521,0.230524,0][7.72071e-007,0.693744,-2.18108][0.0011417,0.00122677,-0.999999][0.473584,0.23793,0][0.30333,0.979945,-2.12093][0.420249,-0.067748,-0.904876][0.617134,0.675489,0][0.186311,1.05733,-2.18107][0.420249,-0.067748,-0.904876][0.628647,0.668602,0][0.206492,1.18254,-2.18108][0.420249,-0.067748,-0.904876][0.637565,0.67529,0][0.30333,0.979945,-2.12093][0.420249,-0.067748,-0.904876][0.660956,0.633951,0][0.186311,1.05733,-2.18107][0.420249,-0.067748,-0.904876][0.672469,0.627064,0][0.206492,1.18254,-2.18108][0.420249,-0.067748,-0.904876][0.681387,0.633753,0][0.27884,1.2961,-2.12158][0.693301,0.0522291,-0.718753][0.13713,0.473697,0][0.402082,1.18254,-2.01095][0.693301,0.0522291,-0.718753][0.136942,0.456048,0][0.30333,0.979945,-2.12093][0.693301,0.0522291,-0.718753][0.158981,0.456396,0][0.206492,1.18254,-2.18108][0.592211,0.0442225,-0.804568][0.447126,0.080318,0][0.27884,1.2961,-2.12158][0.592211,0.0442225,-0.804568][0.456786,0.0889242,0][0.30333,0.979945,-2.12093][0.592211,0.0442225,-0.804568][0.428923,0.0895997,0][0.27884,1.2961,-2.12158][0.693301,0.0522291,-0.718753][0.473697,0.37952,0][0.402082,1.18254,-2.01095][0.693301,0.0522291,-0.718753][0.456048,0.379707,0][0.30333,0.979945,-2.12093][0.693301,0.0522291,-0.718753][0.456396,0.357668,0][0.206492,1.18254,-2.18108][0.592211,0.0442225,-0.804568][0.056791,0.3025,0][0.27884,1.2961,-2.12158][0.592211,0.0442225,-0.804568][0.0664519,0.311106,0][0.30333,0.979945,-2.12093][0.592211,0.0442225,-0.804568][0.0385887,0.311782,0][0.286887,1.4585,-1.98819][0.826793,0.562506,0][0.805066,0.864814,0][0.371348,1.33436,-1.98829][0.826793,0.562506,0][0.791954,0.866307,0][0.371348,1.33436,-2.01003][0.826793,0.562506,0][0.791737,0.864408,0][0.286887,1.4585,-2.00993][0.826793,0.562506,0][0.83956,0.792367,0][0.286887,1.4585,-1.98819][0.826793,0.562506,0][0.839778,0.794266,0][0.371348,1.33436,-2.01003][0.826793,0.562506,0][0.826448,0.79386,0][0.286887,1.4585,-1.98819][0.826793,0.562506,0][0.83453,0.847899,0][0.371348,1.33436,-1.98829][0.826793,0.562506,0][0.821417,0.849391,0][0.371348,1.33436,-2.01003][0.826793,0.562506,0][0.8212,0.847493,0][0.286887,1.4585,-2.00993][0.826793,0.562506,0][0.78009,0.887131,0][0.286887,1.4585,-1.98819][0.826793,0.562506,0][0.780308,0.88903,0][0.371348,1.33436,-2.01003][0.826793,0.562506,0][0.766978,0.888624,0][0.146013,1.32654,-2.18107][0.478157,0.459911,-0.74823][0.255323,0.994368,0][0.119723,1.45312,-2.12007][0.478157,0.459911,-0.74823][0.262929,0.984367,0][0.286887,1.4585,-2.00993][0.478157,0.459911,-0.74823][0.27798,0.993491,0][0.27884,1.2961,-2.12158][0.447292,0.491536,-0.74721][0.798448,0.395962,0][0.146013,1.32654,-2.18107][0.447292,0.491536,-0.74721][0.790213,0.385814,0][0.286887,1.4585,-2.00993][0.447292,0.491536,-0.74721][0.81288,0.386358,0][0.146013,1.32654,-2.18107][0.478157,0.459911,-0.74823][0.178036,0.993835,0][0.119723,1.45312,-2.12007][0.478157,0.459911,-0.74823][0.185642,0.983834,0][0.286887,1.4585,-2.00993][0.478157,0.459911,-0.74823][0.200693,0.992958,0][0.27884,1.2961,-2.12158][0.447292,0.491536,-0.74721][0.3025,0.461088,0][0.146013,1.32654,-2.18107][0.447292,0.491536,-0.74721][0.312648,0.452853,0][0.286887,1.4585,-2.00993][0.447292,0.491536,-0.74721][0.312104,0.47552,0][0.27884,1.2961,-2.12158][0.436308,0.18145,-0.881312][0.786422,0.694305,0][0.176253,1.25526,-2.18078][0.436308,0.18145,-0.881312][0.775411,0.694221,0][0.146013,1.32654,-2.18107][0.436308,0.18145,-0.881312][0.775317,0.687416,0][0.27884,1.2961,-2.12158][0.436308,0.18145,-0.881312][0.901709,0.557096,0][0.176253,1.25526,-2.18078][0.436308,0.18145,-0.881312][0.890697,0.557012,0][0.146013,1.32654,-2.18107][0.436308,0.18145,-0.881312][0.890603,0.550207,0][-0.134039,0.553037,-2.1205][-0.20541,-0.215344,-0.954691][0.365483,0.48644,0][-0.0841783,0.774029,-2.18107][-0.20541,-0.215344,-0.954691][0.3474,0.496331,0][7.72071e-007,0.693744,-2.18108][-0.20541,-0.215344,-0.954691][0.347595,0.486108,0][-0.134039,0.553037,-2.1205][-0.20541,-0.215344,-0.954691][0.135019,0.577274,0][-0.0841783,0.774029,-2.18107][-0.20541,-0.215344,-0.954691][0.116936,0.587165,0][7.72071e-007,0.693744,-2.18108][-0.20541,-0.215344,-0.954691][0.117131,0.576943,0][0.135983,0.552794,-2.12049][0.477857,-0.188095,-0.858063][0.341594,0.148952,0][0.141541,0.843273,-2.18107][0.477857,-0.188095,-0.858063][0.351496,0.173084,0][0.30333,0.979945,-2.12093][0.477857,-0.188095,-0.858063][0.340887,0.189267,0][0.286832,0.664407,-2.01073][0.689299,-0.270741,-0.671987][0.436063,0.243942,0][0.135983,0.552794,-2.12049][0.689299,-0.270741,-0.671987][0.422459,0.230524,0][0.30333,0.979945,-2.12093][0.689299,-0.270741,-0.671987][0.462767,0.231614,0][0.135983,0.552794,-2.12049][0.477857,-0.188095,-0.858063][0.189267,0.341594,0][0.141541,0.843273,-2.18107][0.477857,-0.188095,-0.858063][0.165135,0.351496,0][0.30333,0.979945,-2.12093][0.477857,-0.188095,-0.858063][0.148952,0.340887,0][0.286832,0.664407,-2.01073][0.689299,-0.270741,-0.671987][0.235322,0.436063,0][0.135983,0.552794,-2.12049][0.689299,-0.270741,-0.671987][0.248741,0.422459,0][0.30333,0.979945,-2.12093][0.689299,-0.270741,-0.671987][0.247651,0.462767,0][0.402082,1.18254,-1.98921][0.992317,-0.123719,1.90431e-005][0.760634,0.79425,0][0.371357,0.936111,-1.98889][0.992317,-0.123719,1.90431e-005][0.738974,0.794278,0][0.371358,0.936111,-2.01063][0.992317,-0.123719,1.90431e-005][0.738974,0.792367,0][0.402082,1.18254,-2.01095][0.992317,-0.12372,2.04033e-005][0.756798,0.668602,0][0.402082,1.18254,-1.98921][0.992317,-0.12372,2.04033e-005][0.756798,0.670513,0][0.371358,0.936111,-2.01063][0.992317,-0.12372,2.04033e-005][0.735138,0.66863,0][0.402082,1.18254,-1.98921][0.992317,-0.123719,1.90431e-005][0.795987,0.755087,0][0.371357,0.936111,-1.98889][0.992317,-0.123719,1.90431e-005][0.774327,0.755116,0][0.371358,0.936111,-2.01063][0.992317,-0.123719,1.90431e-005][0.774327,0.753205,0][0.402082,1.18254,-2.01095][0.992317,-0.12372,2.04033e-005][0.820216,0.734594,0][0.402082,1.18254,-1.98921][0.992317,-0.12372,2.04033e-005][0.820216,0.736505,0][0.371358,0.936111,-2.01063][0.992317,-0.12372,2.04033e-005][0.798557,0.734622,0][-0.305794,0.979987,-2.12109][-0.410252,-0.053341,-0.910411][0.490176,0.587464,0][-0.182699,1.05693,-2.18107][-0.410252,-0.053341,-0.910411][0.484839,0.574732,0][-0.154955,0.843617,-2.18107][-0.410252,-0.053341,-0.910411][0.503745,0.574693,0][-0.305794,0.979987,-2.12109][-0.410252,-0.053341,-0.910411][0.564233,0.527023,0][-0.182699,1.05693,-2.18107][-0.410252,-0.053341,-0.910411][0.558896,0.514291,0][-0.154955,0.843617,-2.18107][-0.410252,-0.053341,-0.910411][0.577803,0.514252,0][0.162831,0.447894,-1.98891][0.774529,-0.632539,0][0.785985,0.501044,0][7.43101e-007,0.248512,-1.98921][0.774529,-0.632539,0][0.763424,0.502748,0][7.46384e-007,0.248512,-2.01095][0.774529,-0.632539,0][0.763278,0.500843,0][0.162832,0.447894,-2.01065][0.774528,-0.63254,1.5925e-005][0.99178,0.226474,0][0.162831,0.447894,-1.98891][0.774528,-0.63254,1.5925e-005][0.991926,0.228379,0][7.46384e-007,0.248512,-2.01095][0.774528,-0.63254,1.5925e-005][0.969219,0.228179,0][0.162831,0.447894,-1.98891][0.774529,-0.632539,0][0.863138,0.468805,0][7.43101e-007,0.248512,-1.98921][0.774529,-0.632539,0][0.840577,0.470509,0][7.46384e-007,0.248512,-2.01095][0.774529,-0.632539,0][0.840431,0.468604,0][0.162832,0.447894,-2.01065][0.774528,-0.63254,1.5925e-005][0.96904,0.177786,0][0.162831,0.447894,-1.98891][0.774528,-0.63254,1.5925e-005][0.969186,0.179691,0][7.46384e-007,0.248512,-2.01095][0.774528,-0.63254,1.5925e-005][0.946479,0.179491,0][0.286832,0.664406,-1.98898][0.86776,-0.496984,1.78419e-005][0.938655,0.552111,0][0.162831,0.447894,-1.98891][0.86776,-0.496984,1.78419e-005][0.916725,0.552118,0][0.162832,0.447894,-2.01065][0.86776,-0.496984,1.78419e-005][0.916725,0.550207,0][0.286832,0.664407,-2.01073][0.867761,-0.496981,-2.17997e-005][0.928173,0.60248,0][0.286832,0.664406,-1.98898][0.867761,-0.496981,-2.17997e-005][0.928173,0.604391,0][0.162832,0.447894,-2.01065][0.867761,-0.496981,-2.17997e-005][0.906243,0.602487,0][0.286832,0.664406,-1.98898][0.86776,-0.496984,1.78419e-005][0.83413,0.711921,0][0.162831,0.447894,-1.98891][0.86776,-0.496984,1.78419e-005][0.8122,0.711928,0][0.162832,0.447894,-2.01065][0.86776,-0.496984,1.78419e-005][0.8122,0.710017,0][0.286832,0.664407,-2.01073][0.867761,-0.496981,-2.17997e-005][0.823369,0.687416,0][0.286832,0.664406,-1.98898][0.867761,-0.496981,-2.17997e-005][0.823369,0.689327,0][0.162832,0.447894,-2.01065][0.867761,-0.496981,-2.17997e-005][0.801439,0.687423,0][-0.278485,1.29612,-2.1215][-0.43956,0.182694,-0.879437][0.671886,0.805126,0][-0.176251,1.25531,-2.18107][-0.43956,0.182694,-0.879437][0.660896,0.805619,0][-0.206491,1.18254,-2.18108][-0.43956,0.182694,-0.879437][0.660671,0.798697,0][-0.278485,1.29612,-2.1215][-0.43956,0.182694,-0.879437][0.698134,0.780476,0][-0.176251,1.25531,-2.18107][-0.43956,0.182694,-0.879437][0.687144,0.780969,0][-0.206491,1.18254,-2.18108][-0.43956,0.182694,-0.879437][0.686919,0.774047,0][-0.157369,0.447843,-1.98889][-0.86272,-0.505682,-2.07946e-005][0.741225,0.771552,0][-0.284316,0.664421,-1.98889][-0.86272,-0.505682,-2.07946e-005][0.76329,0.771551,0][-0.284316,0.664422,-2.01064][-0.86272,-0.505682,-2.07946e-005][0.76329,0.773462,0][-0.157369,0.447845,-2.01063][-0.862719,-0.505683,-3.04987e-005][0.763456,0.628975,0][-0.157369,0.447843,-1.98889][-0.862719,-0.505683,-3.04987e-005][0.763456,0.627064,0][-0.284316,0.664422,-2.01064][-0.862719,-0.505683,-3.04987e-005][0.785521,0.628975,0][-0.157369,0.447843,-1.98889][-0.86272,-0.505682,-2.07946e-005][0.727987,0.647883,0][-0.284316,0.664421,-1.98889][-0.86272,-0.505682,-2.07946e-005][0.750051,0.647883,0][-0.284316,0.664422,-2.01064][-0.86272,-0.505682,-2.07946e-005][0.750051,0.649794,0][-0.157369,0.447845,-2.01063][-0.862719,-0.505683,-3.04987e-005][0.761475,0.736505,0][-0.157369,0.447843,-1.98889][-0.862719,-0.505683,-3.04987e-005][0.761475,0.734594,0][-0.284316,0.664422,-2.01064][-0.862719,-0.505683,-3.04987e-005][0.78354,0.736504,0][7.43101e-007,0.248512,-1.98921][-0.784877,-0.619652,-3.73724e-005][0.794306,0.225027,0][-0.157369,0.447843,-1.98889][-0.784877,-0.619652,-3.73724e-005][0.816627,0.224998,0][-0.157369,0.447845,-2.01063][-0.784877,-0.619652,-3.73724e-005][0.816628,0.226909,0][7.46384e-007,0.248512,-2.01095][-0.784879,-0.619649,0][0.6978,0.670513,0][7.43101e-007,0.248512,-1.98921][-0.784879,-0.619649,0][0.6978,0.668602,0][-0.157369,0.447845,-2.01063][-0.784879,-0.619649,0][0.720121,0.670485,0][7.43101e-007,0.248512,-1.98921][-0.784877,-0.619652,-3.73724e-005][0.888894,0.175979,0][-0.157369,0.447843,-1.98889][-0.784877,-0.619652,-3.73724e-005][0.911216,0.175951,0][-0.157369,0.447845,-2.01063][-0.784877,-0.619652,-3.73724e-005][0.911216,0.177862,0][7.46384e-007,0.248512,-2.01095][-0.784879,-0.619649,0][0.736989,0.755116,0][7.43101e-007,0.248512,-1.98921][-0.784879,-0.619649,0][0.736989,0.753205,0][-0.157369,0.447845,-2.01063][-0.784879,-0.619649,0][0.75931,0.755087,0][-0.117181,1.45308,-2.11988][-0.449541,0.469808,-0.759733][0.570222,0.647883,0][-0.146012,1.32654,-2.18107][-0.449541,0.469808,-0.759733][0.560854,0.656325,0][-0.278485,1.29612,-2.1215][-0.449541,0.469808,-0.759733][0.550448,0.64846,0][-0.284316,1.45899,-2.01003][-0.467333,0.487862,-0.737286][0.446065,0.854673,0][-0.117181,1.45308,-2.11988][-0.467333,0.487862,-0.737286][0.463651,0.854612,0][-0.278485,1.29612,-2.1215][-0.467333,0.487862,-0.737286][0.452351,0.870849,0][-0.117181,1.45308,-2.11988][-0.449541,0.469808,-0.759733][0.675161,0.574693,0][-0.146012,1.32654,-2.18107][-0.449541,0.469808,-0.759733][0.665792,0.583135,0][-0.278485,1.29612,-2.1215][-0.449541,0.469808,-0.759733][0.655387,0.57527,0][-0.284316,1.45899,-2.01003][-0.467333,0.487862,-0.737286][0.367394,0.886992,0][-0.117181,1.45308,-2.11988][-0.467333,0.487862,-0.737286][0.384981,0.88693,0][-0.278485,1.29612,-2.1215][-0.467333,0.487862,-0.737286][0.373681,0.903167,0][-0.36918,0.936029,-1.98889][-0.991211,-0.132294,-2.03806e-005][0.950931,0.438582,0][-0.402082,1.18254,-1.98921][-0.991211,-0.132294,-2.03806e-005][0.972536,0.436953,0][-0.402081,1.18254,-2.01095][-0.991211,-0.132294,-2.03806e-005][0.972682,0.438858,0][-0.36918,0.936029,-2.01064][-0.991211,-0.132292,0][0.729591,0.538734,0][-0.36918,0.936029,-1.98889][-0.991211,-0.132292,0][0.729444,0.536829,0][-0.402081,1.18254,-2.01095][-0.991211,-0.132292,0][0.751196,0.537104,0][-0.36918,0.936029,-1.98889][-0.991211,-0.132294,-2.03806e-005][0.916149,0.437915,0][-0.402082,1.18254,-1.98921][-0.991211,-0.132294,-2.03806e-005][0.937754,0.436285,0][-0.402081,1.18254,-2.01095][-0.991211,-0.132294,-2.03806e-005][0.9379,0.438191,0][-0.36918,0.936029,-2.01064][-0.991211,-0.132292,0][0.884432,0.538692,0][-0.36918,0.936029,-1.98889][-0.991211,-0.132292,0][0.884286,0.536787,0][-0.402081,1.18254,-2.01095][-0.991211,-0.132292,0][0.906037,0.537063,0][-0.278485,1.29612,-2.1215][-0.588915,0.0498437,-0.806656][0.293165,0.349826,0][-0.206491,1.18254,-2.18108][-0.588915,0.0498437,-0.806656][0.302504,0.340887,0][-0.305794,0.979987,-2.12109][-0.588915,0.0498437,-0.806656][0.321054,0.349651,0][-0.402081,1.18254,-2.01095][-0.695122,0.0591336,-0.716456][0.172943,0.121649,0][-0.278485,1.29612,-2.1215][-0.695122,0.0591336,-0.716456][0.186698,0.110564,0][-0.305794,0.979987,-2.12109][-0.695122,0.0591336,-0.716456][0.187085,0.138451,0][-0.278485,1.29612,-2.1215][-0.588915,0.0498437,-0.806656][0.129758,0.292601,0][-0.206491,1.18254,-2.18108][-0.588915,0.0498437,-0.806656][0.138697,0.30194,0][-0.305794,0.979987,-2.12109][-0.588915,0.0498437,-0.806656][0.129933,0.32049,0][-0.402081,1.18254,-2.01095][-0.695122,0.0591336,-0.716456][0.283306,0.121649,0][-0.278485,1.29612,-2.1215][-0.695122,0.0591336,-0.716456][0.297061,0.110564,0][-0.305794,0.979987,-2.12109][-0.695122,0.0591336,-0.716456][0.297448,0.138451,0][-0.117181,1.45308,-2.11988][-0.197121,0.462838,-0.864248][0.244107,0.747048,0][-0.0752536,1.35683,-2.18099][-0.197121,0.462838,-0.864248][0.234958,0.752551,0][-0.146012,1.32654,-2.18107][-0.197121,0.462838,-0.864248][0.231499,0.746737,0][-0.117181,1.45308,-2.11988][-0.197121,0.462838,-0.864248][0.822985,0.127441,0][-0.0752536,1.35683,-2.18099][-0.197121,0.462838,-0.864248][0.813836,0.132944,0][-0.146012,1.32654,-2.18107][-0.197121,0.462838,-0.864248][0.810378,0.12713,0][-0.284316,1.45899,-2.01003][-0.825882,0.563842,-1.69809e-005][0.920235,0.773462,0][-0.36918,1.33469,-2.01003][-0.825883,0.563842,-1.69809e-005][0.907006,0.773462,0][-0.369181,1.33469,-1.98829][-0.825882,0.563842,-1.69809e-005][0.907006,0.771551,0][-0.284316,1.45899,-1.98829][-0.825881,0.563844,0][0.854286,0.809295,0][-0.284316,1.45899,-2.01003][-0.825881,0.563844,0][0.854286,0.811206,0][-0.369181,1.33469,-1.98829][-0.825881,0.563844,0][0.841057,0.809295,0][-0.284316,1.45899,-2.01003][-0.825882,0.563842,-1.69809e-005][0.915003,0.649794,0][-0.36918,1.33469,-2.01003][-0.825883,0.563842,-1.69809e-005][0.901774,0.649794,0][-0.369181,1.33469,-1.98829][-0.825882,0.563842,-1.69809e-005][0.901774,0.647883,0][-0.284316,1.45899,-1.98829][-0.825881,0.563844,0][0.950491,0.627064,0][-0.284316,1.45899,-2.01003][-0.825881,0.563844,0][0.950491,0.628975,0][-0.369181,1.33469,-1.98829][-0.825881,0.563844,0][0.937262,0.627065,0][-0.157436,1.5434,-1.98859][-0.163747,0.986502,5.94725e-005][0.297144,0.144117,0][3.0027e-007,1.56953,-1.9886][-0.163747,0.986502,5.94725e-005][0.283306,0.144116,0][3.03553e-007,1.56954,-2.01034][-0.163747,0.986502,5.94725e-005][0.283306,0.142205,0][-0.157436,1.5434,-2.01034][-0.163755,0.986501,0][0.875214,0.471182,0][-0.157436,1.5434,-1.98859][-0.163755,0.986501,0][0.875214,0.469271,0][3.03553e-007,1.56954,-2.01034][-0.163755,0.986501,0][0.889051,0.471182,0][-0.157436,1.5434,-1.98859][-0.163747,0.986502,5.94725e-005][0.328753,0.992351,0][3.0027e-007,1.56953,-1.9886][-0.163747,0.986502,5.94725e-005][0.342591,0.992352,0][3.03553e-007,1.56954,-2.01034][-0.163747,0.986502,5.94725e-005][0.342591,0.994263,0][-0.157436,1.5434,-2.01034][-0.163755,0.986501,0][0.699246,0.536882,0][-0.157436,1.5434,-1.98859][-0.163755,0.986501,0][0.699246,0.534971,0][3.03553e-007,1.56954,-2.01034][-0.163755,0.986501,0][0.713083,0.536883,0][0.119723,1.45312,-2.12007][0.180773,0.463612,-0.867401][0.50115,0.00739239,0][0.0743639,1.35667,-2.18107][0.180773,0.463612,-0.867401][0.491752,0.0127018,0][7.72071e-007,1.38566,-2.18107][0.180773,0.463612,-0.867401][0.487948,0.00680738,0][0.119723,1.45312,-2.12007][0.180773,0.463612,-0.867401][0.0213118,0.487231,0][0.0743639,1.35667,-2.18107][0.180773,0.463612,-0.867401][0.0119137,0.49254,0][7.72071e-007,1.38566,-2.18107][0.180773,0.463612,-0.867401][0.00810982,0.486646,0][0.119723,1.45312,-2.12007][-0.000705162,0.671434,-0.741064][0.446187,0.963818,0][7.72071e-007,1.38566,-2.18107][-0.000705162,0.671434,-0.741064][0.43567,0.971819,0][-0.117181,1.45308,-2.11988][-0.000705162,0.671434,-0.741064][0.425365,0.963823,0][3.03553e-007,1.56954,-2.01034][-0.000697767,0.685521,-0.728052][0.768418,0.385814,0][0.119723,1.45312,-2.12007][-0.000697767,0.685521,-0.728052][0.77895,0.399868,0][-0.117181,1.45308,-2.11988][-0.000697767,0.685521,-0.728052][0.758128,0.399873,0][0.119723,1.45312,-2.12007][-0.000705162,0.671434,-0.741064][0.451435,0.795671,0][7.72071e-007,1.38566,-2.18107][-0.000705162,0.671434,-0.741064][0.440918,0.803672,0][-0.117181,1.45308,-2.11988][-0.000705162,0.671434,-0.741064][0.430613,0.795676,0][3.03553e-007,1.56954,-2.01034][-0.000697767,0.685521,-0.728052][0.842544,0.353496,0][0.119723,1.45312,-2.12007][-0.000697767,0.685521,-0.728052][0.853076,0.36755,0][-0.117181,1.45308,-2.11988][-0.000697767,0.685521,-0.728052][0.832253,0.367555,0][0.286887,1.4585,-1.98819][0.526423,0.388229,0.756411][0.289411,0.340887,0][0.0790804,1.3668,-1.7965][0.526423,0.388229,0.756411][0.264243,0.347886,0][-1.07964e-006,1.18124,-1.64623][0.526423,0.388229,0.756411][0.243227,0.341026,0][0.190826,1.26134,-1.8003][0.386282,0.53074,0.754388][0.0873315,0.026567,0][0.286887,1.4585,-1.98819][0.386282,0.53074,0.754388][0.0811179,0.051178,0][-1.07964e-006,1.18124,-1.64623][0.386282,0.53074,0.754388][0.0803237,0.005,0][0.286887,1.4585,-1.98819][0.526423,0.388229,0.756411][0.347886,0.289411,0][0.0790804,1.3668,-1.7965][0.526423,0.388229,0.756411][0.340887,0.264243,0][-1.07964e-006,1.18124,-1.64623][0.526423,0.388229,0.756411][0.347747,0.243227,0][0.190826,1.26134,-1.8003][0.386282,0.53074,0.754388][0.0873403,0.410438,0][0.286887,1.4585,-1.98819][0.386282,0.53074,0.754388][0.0811268,0.435049,0][-1.07964e-006,1.18124,-1.64623][0.386282,0.53074,0.754388][0.0803325,0.388871,0][0.371348,1.33436,-1.98829][0.980117,0.19842,2.01524e-005][0.890512,0.648345,0][0.402082,1.18254,-1.98921][0.980117,0.19842,2.01524e-005][0.877246,0.649781,0][0.402082,1.18254,-2.01095][0.980117,0.19842,2.01524e-005][0.877029,0.647883,0][0.371348,1.33436,-2.01003][0.980116,0.198423,0][0.622692,0.989855,0][0.371348,1.33436,-1.98829][0.980116,0.198423,0][0.62291,0.991754,0][0.402082,1.18254,-2.01095][0.980116,0.198423,0][0.609426,0.991291,0][0.371348,1.33436,-1.98829][0.980117,0.19842,2.01524e-005][0.925999,0.627527,0][0.402082,1.18254,-1.98921][0.980117,0.19842,2.01524e-005][0.912733,0.628963,0][0.402082,1.18254,-2.01095][0.980117,0.19842,2.01524e-005][0.912516,0.627064,0][0.371348,1.33436,-2.01003][0.980116,0.198423,0][0.829577,0.809295,0][0.371348,1.33436,-1.98829][0.980116,0.198423,0][0.829795,0.811194,0][0.402082,1.18254,-2.01095][0.980116,0.198423,0][0.816311,0.810731,0][0.206492,1.18254,-2.18108][0.435067,0.184529,-0.881286][0.880244,0.609402,0][0.176253,1.25526,-2.18078][0.435067,0.184529,-0.881286][0.880215,0.60248,0][0.27884,1.2961,-2.12158][0.435067,0.184529,-0.881286][0.891227,0.602562,0][0.206492,1.18254,-2.18108][0.435067,0.184529,-0.881286][0.609455,0.875751,0][0.176253,1.25526,-2.18078][0.435067,0.184529,-0.881286][0.609426,0.868829,0][0.27884,1.2961,-2.12158][0.435067,0.184529,-0.881286][0.620438,0.868911,0][-0.134039,0.553037,-2.1205][-0.000340706,-0.395162,-0.918611][0.257525,0.96935,0][7.72071e-007,0.693744,-2.18108][-0.000340706,-0.395162,-0.918611][0.255323,0.951595,0][0.135983,0.552794,-2.12049][-0.000340706,-0.395162,-0.918611][0.273342,0.951655,0][7.46384e-007,0.248512,-2.01095][-0.000289626,-0.338595,-0.940932][0.322072,0.15375,0][-0.134039,0.553037,-2.1205][-0.000289626,-0.338595,-0.940932][0.33385,0.182196,0][0.135983,0.552794,-2.12049][-0.000289626,-0.338595,-0.940932][0.310118,0.182173,0][-0.134039,0.553037,-2.1205][-0.000340706,-0.395162,-0.918611][0.971421,0.211457,0][7.72071e-007,0.693744,-2.18108][-0.000340706,-0.395162,-0.918611][0.969219,0.193702,0][0.135983,0.552794,-2.12049][-0.000340706,-0.395162,-0.918611][0.987237,0.193763,0][7.46384e-007,0.248512,-2.01095][-0.000289626,-0.338595,-0.940932][0.427759,0.587451,0][-0.134039,0.553037,-2.1205][-0.000289626,-0.338595,-0.940932][0.456205,0.575673,0][0.135983,0.552794,-2.12049][-0.000289626,-0.338595,-0.940932][0.456182,0.599406,0][0.135983,0.552794,-2.12049][0.241404,-0.202547,-0.949052][0.697679,0.274116,0][0.0842644,0.774104,-2.18088][0.241404,-0.202547,-0.949052][0.677607,0.279046,0][0.141541,0.843273,-2.18107][0.241404,-0.202547,-0.949052][0.671595,0.273932,0][0.135983,0.552794,-2.12049][0.241404,-0.202547,-0.949052][0.312429,0.74692,0][0.0842644,0.774104,-2.18088][0.241404,-0.202547,-0.949052][0.292357,0.751851,0][0.141541,0.843273,-2.18107][0.241404,-0.202547,-0.949052][0.286345,0.746737,0][0.141541,0.843273,-2.18107][0.409981,-0.0857465,-0.908055][0.346849,0.925369,0][0.186311,1.05733,-2.18107][0.409981,-0.0857465,-0.908055][0.328783,0.931931,0][0.30333,0.979945,-2.12093][0.409981,-0.0857465,-0.908055][0.328753,0.918515,0][0.141541,0.843273,-2.18107][0.409981,-0.0857465,-0.908055][0.286304,0.802525,0][0.186311,1.05733,-2.18107][0.409981,-0.0857465,-0.908055][0.268237,0.809087,0][0.30333,0.979945,-2.12093][0.409981,-0.0857465,-0.908055][0.268207,0.795671,0][0.0842644,0.774104,-2.18088][0.2051,-0.212747,-0.955339][0.541102,0.611386,0][0.135983,0.552794,-2.12049][0.2051,-0.212747,-0.955339][0.520433,0.611454,0][7.72071e-007,0.693744,-2.18108][0.2051,-0.212747,-0.955339][0.536058,0.60248,0][0.0842644,0.774104,-2.18088][0.2051,-0.212747,-0.955339][0.606811,0.559112,0][0.135983,0.552794,-2.12049][0.2051,-0.212747,-0.955339][0.586143,0.559181,0][7.72071e-007,0.693744,-2.18108][0.2051,-0.212747,-0.955339][0.601768,0.550207,0][-0.154955,0.843617,-2.18107][-0.210387,-0.214006,-0.953907][0.582264,0.60248,0][-0.0841783,0.774029,-2.18107][-0.210387,-0.214006,-0.953907][0.576003,0.608555,0][-0.134039,0.553037,-2.1205][-0.210387,-0.214006,-0.953907][0.556118,0.603129,0][-0.154955,0.843617,-2.18107][-0.210387,-0.214006,-0.953907][0.647974,0.550207,0][-0.0841783,0.774029,-2.18107][-0.210387,-0.214006,-0.953907][0.641712,0.556282,0][-0.134039,0.553037,-2.1205][-0.210387,-0.214006,-0.953907][0.621828,0.550856,0][-0.284316,1.45899,-1.98829][-0.553902,0.832582,0][0.954141,0.276451,0][-0.157436,1.5434,-1.98859][-0.553902,0.832582,0][0.967451,0.274955,0][-0.157436,1.5434,-2.01034][-0.553902,0.832582,0][0.967668,0.276853,0][-0.284316,1.45899,-2.01003][-0.553902,0.832582,0][0.485056,0.992838,0][-0.284316,1.45899,-1.98829][-0.553902,0.832582,0][0.484839,0.990939,0][-0.157436,1.5434,-2.01034][-0.553902,0.832582,0][0.498366,0.991342,0][-0.284316,1.45899,-1.98829][-0.553902,0.832582,0][0.52025,0.992381,0][-0.157436,1.5434,-1.98859][-0.553902,0.832582,0][0.53356,0.990885,0][-0.157436,1.5434,-2.01034][-0.553902,0.832582,0][0.533777,0.992784,0][-0.284316,1.45899,-2.01003][-0.553902,0.832582,0][0.850155,0.0835915,0][-0.284316,1.45899,-1.98829][-0.553902,0.832582,0][0.849938,0.0816929,0][-0.157436,1.5434,-2.01034][-0.553902,0.832582,0][0.863466,0.0820953,0][3.0027e-007,1.56953,-1.9886][0.158817,0.987308,0][0.811431,0.792646,0][0.162945,1.54332,-1.98869][0.158817,0.987308,0][0.797201,0.794266,0][0.162945,1.54332,-2.01043][0.158817,0.987308,0][0.796984,0.792367,0][3.03553e-007,1.56954,-2.01034][0.158825,0.987307,5.95698e-005][0.846238,0.753205,0][3.0027e-007,1.56953,-1.9886][0.158825,0.987307,5.95697e-005][0.846455,0.755103,0][0.162945,1.54332,-2.01043][0.158825,0.987307,5.95698e-005][0.832008,0.754825,0][3.0027e-007,1.56953,-1.9886][0.158817,0.987308,0][0.806183,0.847771,0][0.162945,1.54332,-1.98869][0.158817,0.987308,0][0.791954,0.849391,0][0.162945,1.54332,-2.01043][0.158817,0.987308,0][0.791737,0.847493,0][3.03553e-007,1.56954,-2.01034][0.158825,0.987307,5.95698e-005][0.870467,0.734594,0][3.0027e-007,1.56953,-1.9886][0.158825,0.987307,5.95697e-005][0.870684,0.736492,0][0.162945,1.54332,-2.01043][0.158825,0.987307,5.95698e-005][0.856237,0.736214,0][0.162945,1.54332,-1.98869][0.564771,0.825248,0][0.857887,0.830325,0][0.286887,1.4585,-1.98819][0.564771,0.825248,0][0.844687,0.830369,0][0.286887,1.4585,-2.00993][0.564771,0.825248,0][0.844687,0.828458,0][0.162945,1.54332,-2.01043][0.564771,0.825248,0][0.92729,0.734594,0][0.162945,1.54332,-1.98869][0.564771,0.825248,0][0.92729,0.736505,0][0.286887,1.4585,-2.00993][0.564771,0.825248,0][0.91409,0.734637,0][0.162945,1.54332,-1.98869][0.564771,0.825248,0][0.853281,0.670469,0][0.286887,1.4585,-1.98819][0.564771,0.825248,0][0.84008,0.670513,0][0.286887,1.4585,-2.00993][0.564771,0.825248,0][0.84008,0.668602,0][0.162945,1.54332,-2.01043][0.564771,0.825248,0][0.903061,0.753205,0][0.162945,1.54332,-1.98869][0.564771,0.825248,0][0.903061,0.755116,0][0.286887,1.4585,-2.00993][0.564771,0.825248,0][0.889861,0.753248,0][0.162945,1.54332,-2.01043][0.421367,0.611789,-0.669451][0.913761,0.335211,0][0.286887,1.4585,-2.00993][0.421367,0.611789,-0.669451][0.900566,0.334823,0][0.119723,1.45312,-2.12007][0.421367,0.611789,-0.669451][0.912832,0.3222,0][0.162945,1.54332,-2.01043][0.421367,0.611789,-0.669451][0.921146,0.463462,0][0.286887,1.4585,-2.00993][0.421367,0.611789,-0.669451][0.907952,0.463074,0][0.119723,1.45312,-2.12007][0.421367,0.611789,-0.669451][0.920217,0.450451,0][3.03553e-007,1.56954,-2.01034][0.119183,0.743165,-0.658408][0.0748211,0.588034,0][0.162945,1.54332,-2.01043][0.119183,0.743165,-0.658408][0.0604639,0.590105,0][0.119723,1.45312,-2.12007][0.119183,0.743165,-0.658408][0.0610967,0.577076,0][3.03553e-007,1.56954,-2.01034][0.119183,0.743165,-0.658408][0.192987,0.588034,0][0.162945,1.54332,-2.01043][0.119183,0.743165,-0.658408][0.17863,0.590105,0][0.119723,1.45312,-2.12007][0.119183,0.743165,-0.658408][0.179263,0.577076,0][-0.157436,1.5434,-2.01034][-0.123337,0.742936,-0.657901][0.192987,0.487182,0][3.03553e-007,1.56954,-2.01034][-0.123337,0.742936,-0.657901][0.192682,0.501205,0][-0.117181,1.45308,-2.11988][-0.123337,0.742936,-0.657901][0.180158,0.489093,0][-0.157436,1.5434,-2.01034][-0.123337,0.742936,-0.657901][0.0748211,0.487182,0][3.03553e-007,1.56954,-2.01034][-0.123337,0.742936,-0.657901][0.0745154,0.501205,0][-0.117181,1.45308,-2.11988][-0.123337,0.742936,-0.657901][0.0619916,0.489093,0][-0.284316,1.45899,-2.01003][-0.414923,0.621267,-0.66473][0.328753,0.953008,0][-0.157436,1.5434,-2.01034][-0.414923,0.621267,-0.66473][0.337867,0.943193,0][-0.117181,1.45308,-2.11988][-0.414923,0.621267,-0.66473][0.34634,0.953015,0][-0.284316,1.45899,-2.01003][-0.414923,0.621267,-0.66473][0.358112,0.994451,0][-0.157436,1.5434,-2.01034][-0.414923,0.621267,-0.66473][0.367226,0.984636,0][-0.117181,1.45308,-2.11988][-0.414923,0.621267,-0.66473][0.375698,0.994458,0][-0.36918,1.33469,-2.01003][-0.623981,0.42601,-0.655105][0.529053,0.678496,0][-0.284316,1.45899,-2.01003][-0.623981,0.42601,-0.655105][0.52025,0.668622,0][-0.278485,1.29612,-2.1215][-0.623981,0.42601,-0.655105][0.537604,0.668602,0][-0.36918,1.33469,-2.01003][-0.623981,0.42601,-0.655105][0.493642,0.703155,0][-0.284316,1.45899,-2.01003][-0.623981,0.42601,-0.655105][0.484839,0.69328,0][-0.278485,1.29612,-2.1215][-0.623981,0.42601,-0.655105][0.502193,0.69326,0][-0.402081,1.18254,-2.01095][-0.736837,0.163323,-0.656047][0.469768,0.728208,0][-0.36918,1.33469,-2.01003][-0.736837,0.163323,-0.656047][0.456088,0.728435,0][-0.278485,1.29612,-2.1215][-0.736837,0.163323,-0.656047][0.457559,0.715441,0][-0.402081,1.18254,-2.01095][-0.736837,0.163323,-0.656047][0.148952,0.129985,0][-0.36918,1.33469,-2.01003][-0.736837,0.163323,-0.656047][0.162631,0.129758,0][-0.278485,1.29612,-2.1215][-0.736837,0.163323,-0.656047][0.161161,0.142752,0][-0.36918,0.936029,-2.01064][-0.841698,-0.113021,-0.527987][0.297047,0.83527,0][-0.402081,1.18254,-2.01095][-0.841698,-0.113021,-0.527987][0.276017,0.829308,0][-0.305794,0.979987,-2.12109][-0.841698,-0.113021,-0.527987][0.297177,0.82343,0][-0.36918,0.936029,-2.01064][-0.841698,-0.113021,-0.527987][0.31074,0.958562,0][-0.402081,1.18254,-2.01095][-0.841698,-0.113021,-0.527987][0.28971,0.9526,0][-0.305794,0.979987,-2.12109][-0.841698,-0.113021,-0.527987][0.31087,0.946721,0][-0.284316,0.664422,-2.01064][-0.794276,-0.248173,-0.55456][0.412863,0.177915,0][-0.36918,0.936029,-2.01064][-0.794276,-0.248173,-0.55456][0.435886,0.168145,0][-0.305794,0.979987,-2.12109][-0.794276,-0.248173,-0.55456][0.442309,0.178093,0][-0.284316,0.664422,-2.01064][-0.794276,-0.248173,-0.55456][0.168324,0.0385887,0][-0.36918,0.936029,-2.01064][-0.794276,-0.248173,-0.55456][0.178093,0.0616121,0][-0.305794,0.979987,-2.12109][-0.794276,-0.248173,-0.55456][0.168145,0.0680347,0][-0.157369,0.447845,-2.01063][-0.717582,-0.420614,-0.555121][0.687161,0.335651,0][-0.284316,0.664422,-2.01064][-0.717582,-0.420614,-0.555121][0.669511,0.32241,0][-0.134039,0.553037,-2.1205][-0.717582,-0.420614,-0.555121][0.688576,0.3222,0][-0.157369,0.447845,-2.01063][-0.717582,-0.420614,-0.555121][0.779329,0.304355,0][-0.284316,0.664422,-2.01064][-0.717582,-0.420614,-0.555121][0.761678,0.291115,0][-0.134039,0.553037,-2.1205][-0.717582,-0.420614,-0.555121][0.780744,0.290904,0][7.46384e-007,0.248512,-2.01095][-0.625546,-0.492887,-0.604776][0.27681,0.368918,0][-0.157369,0.447845,-2.01063][-0.625546,-0.492887,-0.604776][0.297308,0.360081,0][-0.134039,0.553037,-2.1205][-0.625546,-0.492887,-0.604776][0.307597,0.368858,0][7.46384e-007,0.248512,-2.01095][-0.625546,-0.492887,-0.604776][0.15375,0.336678,0][-0.157369,0.447845,-2.01063][-0.625546,-0.492887,-0.604776][0.174248,0.32784,0][-0.134039,0.553037,-2.1205][-0.625546,-0.492887,-0.604776][0.184538,0.336618,0][0.162832,0.447894,-2.01065][0.607381,-0.495086,-0.621271][0.369304,0.277274,0][7.46384e-007,0.248512,-2.01095][0.607381,-0.495086,-0.621271][0.360625,0.298169,0][0.135983,0.552794,-2.12049][0.607381,-0.495086,-0.621271][0.360081,0.267339,0][0.162832,0.447894,-2.01065][0.607381,-0.495086,-0.621271][0.119788,0.286745,0][7.46384e-007,0.248512,-2.01095][0.607381,-0.495086,-0.621271][0.111109,0.30764,0][0.135983,0.552794,-2.12049][0.607381,-0.495086,-0.621271][0.110564,0.27681,0][0.286832,0.664407,-2.01073][0.715196,-0.409802,-0.566177][0.752733,0.429201,0][0.162832,0.447894,-2.01065][0.715196,-0.409802,-0.566177][0.771665,0.418133,0][0.135983,0.552794,-2.12049][0.715196,-0.409802,-0.566177][0.771678,0.431689,0][0.286832,0.664407,-2.01073][0.715196,-0.409802,-0.566177][0.331042,0.132247,0][0.162832,0.447894,-2.01065][0.715196,-0.409802,-0.566177][0.31211,0.143315,0][0.135983,0.552794,-2.12049][0.715196,-0.409802,-0.566177][0.312097,0.129758,0][0.371358,0.936111,-2.01063][0.779759,-0.242385,-0.577257][0.0398581,0.168145,0][0.286832,0.664407,-2.01073][0.779759,-0.242385,-0.577257][0.0631724,0.177196,0][0.30333,0.979945,-2.12093][0.779759,-0.242385,-0.577257][0.0337903,0.178526,0][0.371358,0.936111,-2.01063][0.779759,-0.242385,-0.577257][0.312881,0.0398581,0][0.286832,0.664407,-2.01073][0.779759,-0.242385,-0.577257][0.303829,0.0631724,0][0.30333,0.979945,-2.12093][0.779759,-0.242385,-0.577257][0.3025,0.0337903,0][0.402082,1.18254,-2.01095][0.82755,-0.103894,-0.551694][0.696112,0.461901,0][0.371358,0.936111,-2.01063][0.82755,-0.103894,-0.551694][0.674286,0.462097,0][0.30333,0.979945,-2.12093][0.82755,-0.103894,-0.551694][0.677277,0.450451,0][0.402082,1.18254,-2.01095][0.82755,-0.103894,-0.551694][0.618959,0.49414,0][0.371358,0.936111,-2.01063][0.82755,-0.103894,-0.551694][0.597132,0.494336,0][0.30333,0.979945,-2.12093][0.82755,-0.103894,-0.551694][0.600124,0.48269,0][0.371348,1.33436,-2.01003][0.73436,0.152699,-0.661361][0.605664,0.00634344,0][0.402082,1.18254,-2.01095][0.73436,0.152699,-0.661361][0.614858,0.0163849,0][0.27884,1.2961,-2.12158][0.73436,0.152699,-0.661361][0.597208,0.016445,0][0.371348,1.33436,-2.01003][0.73436,0.152699,-0.661361][0.125826,0.486182,0][0.402082,1.18254,-2.01095][0.73436,0.152699,-0.661361][0.135019,0.496223,0][0.27884,1.2961,-2.12158][0.73436,0.152699,-0.661361][0.11737,0.496284,0][0.286887,1.4585,-2.00993][0.620927,0.422954,-0.659969][0.328753,0.964277,0][0.371348,1.33436,-2.01003][0.620927,0.422954,-0.659969][0.34195,0.964284,0][0.27884,1.2961,-2.12158][0.620927,0.422954,-0.659969][0.340157,0.977335,0][0.286887,1.4585,-2.00993][0.620927,0.422954,-0.659969][0.52025,0.693513,0][0.371348,1.33436,-2.01003][0.620927,0.422954,-0.659969][0.533447,0.693519,0][0.27884,1.2961,-2.12158][0.620927,0.422954,-0.659969][0.531653,0.70657,0][-0.0796965,1.36736,-1.79715][-0.117311,0.706821,0.697597][0.356132,0.891228,0][3.0027e-007,1.56953,-1.9886][-0.117311,0.706821,0.697597][0.33261,0.900957,0][-0.157436,1.5434,-1.98859][-0.117311,0.706821,0.697597][0.332664,0.88693,0][-0.0796965,1.36736,-1.79715][-0.117311,0.706821,0.697597][0.820991,0.357793,0][3.0027e-007,1.56953,-1.9886][-0.117311,0.706821,0.697597][0.797469,0.367523,0][-0.157436,1.5434,-1.98859][-0.117311,0.706821,0.697597][0.797523,0.353496,0][-1.07964e-006,1.18124,-1.64623][-0.532866,0.383497,0.75431][0.11815,0.223803,0][-0.0796965,1.36736,-1.79715][-0.532866,0.383497,0.75431][0.110564,0.202944,0][-0.284316,1.45899,-1.98829][-0.532866,0.383497,0.75431][0.116513,0.177742,0][-0.189725,1.26138,-1.80011][-0.386054,0.532495,0.753267][0.168145,0.434612,0][-1.07964e-006,1.18124,-1.64623][-0.386054,0.532495,0.753267][0.174275,0.412863,0][-0.284316,1.45899,-1.98829][-0.386054,0.532495,0.753267][0.175393,0.458939,0][-1.07964e-006,1.18124,-1.64623][-0.532866,0.383497,0.75431][0.223803,0.360081,0][-0.0796965,1.36736,-1.79715][-0.532866,0.383497,0.75431][0.202944,0.367666,0][-0.284316,1.45899,-1.98829][-0.532866,0.383497,0.75431][0.177742,0.361717,0][-0.189725,1.26138,-1.80011][-0.386054,0.532495,0.753267][0.43719,0.3025,0][-1.07964e-006,1.18124,-1.64623][-0.386054,0.532495,0.753267][0.458939,0.30863,0][-0.284316,1.45899,-1.98829][-0.386054,0.532495,0.753267][0.412863,0.309748,0][-1.07964e-006,1.18124,-1.64623][-0.647254,-0.0758758,0.758489][0.136822,0.239593,0][-0.189725,1.26138,-1.80011][-0.647254,-0.0758758,0.758489][0.129758,0.218129,0][-0.402082,1.18254,-1.98921][-0.647254,-0.0758758,0.758489][0.136707,0.193142,0][-0.204582,1.04185,-1.79856][-0.644095,0.119663,0.755528][0.24298,0.0290813,0][-1.07964e-006,1.18124,-1.64623][-0.644095,0.119663,0.755528][0.230639,0.0514509,0][-0.402082,1.18254,-1.98921][-0.644095,0.119663,0.755528][0.230524,0.005,0][-1.07964e-006,1.18124,-1.64623][-0.647254,-0.0758758,0.758489][0.367144,0.263585,0][-0.189725,1.26138,-1.80011][-0.647254,-0.0758758,0.758489][0.360081,0.242121,0][-0.402082,1.18254,-1.98921][-0.647254,-0.0758758,0.758489][0.367029,0.217134,0][-0.204582,1.04185,-1.79856][-0.644095,0.119663,0.755528][0.0290813,0.235322,0][-1.07964e-006,1.18124,-1.64623][-0.644095,0.119663,0.755528][0.0514509,0.247663,0][-0.402082,1.18254,-1.98921][-0.644095,0.119663,0.755528][0.005,0.247778,0][-0.204582,1.04185,-1.79856][-0.646398,-0.230279,0.727421][0.305673,0.18322,0][-0.284316,0.664421,-1.98889][-0.646398,-0.230279,0.727421][0.281989,0.15375,0][-0.0932789,0.729317,-1.79859][-0.646398,-0.230279,0.727421][0.306363,0.154069,0][-1.07964e-006,1.18124,-1.64623][-0.505547,-0.180129,0.843787][0.598089,0.0201992,0][-0.204582,1.04185,-1.79856][-0.505547,-0.180129,0.843787][0.614858,0.0394731,0][-0.0932789,0.729317,-1.79859][-0.505547,-0.180129,0.843787][0.597505,0.062907,0][-0.204582,1.04185,-1.79856][-0.646398,-0.230279,0.727421][0.215089,0.311279,0][-0.284316,0.664421,-1.98889][-0.646398,-0.230279,0.727421][0.191405,0.281809,0][-0.0932789,0.729317,-1.79859][-0.646398,-0.230279,0.727421][0.215779,0.282128,0][-1.07964e-006,1.18124,-1.64623][-0.505547,-0.180129,0.843787][0.11825,0.500038,0][-0.204582,1.04185,-1.79856][-0.505547,-0.180129,0.843787][0.135019,0.519312,0][-0.0932789,0.729317,-1.79859][-0.505547,-0.180129,0.843787][0.117666,0.542745,0][-0.0932789,0.729317,-1.79859][-0.506273,-0.400925,0.76351][0.659957,0.0167184,0][-0.157369,0.447843,-1.98889][-0.506273,-0.400925,0.76351][0.672826,0.0442489,0][7.43101e-007,0.248512,-1.98921][-0.506273,-0.400925,0.76351][0.660573,0.062907,0][-0.0932789,0.729317,-1.79859][-0.506273,-0.400925,0.76351][0.541791,0.0167184,0][-0.157369,0.447843,-1.98889][-0.506273,-0.400925,0.76351][0.55466,0.0442489,0][7.43101e-007,0.248512,-1.98921][-0.506273,-0.400925,0.76351][0.542407,0.062907,0][0.0913676,0.729502,-1.79881][0.637144,-0.233099,0.734651][0.201965,0.100968,0][0.286832,0.664406,-1.98898][0.637144,-0.233099,0.734651][0.226598,0.101654,0][0.205225,1.04179,-1.79847][0.637144,-0.233099,0.734651][0.201734,0.130182,0][-1.07964e-006,1.18124,-1.64623][0.501938,-0.183926,0.845121][0.135019,0.590919,0][0.0913676,0.729502,-1.79881][0.501938,-0.183926,0.845121][0.134087,0.63358,0][0.205225,1.04179,-1.79847][0.501938,-0.183926,0.845121][0.117478,0.609545,0][0.0913676,0.729502,-1.79881][0.637144,-0.233099,0.734651][0.350908,0.451481,0][0.286832,0.664406,-1.98898][0.637144,-0.233099,0.734651][0.350221,0.476114,0][0.205225,1.04179,-1.79847][0.637144,-0.233099,0.734651][0.321693,0.45125,0][-1.07964e-006,1.18124,-1.64623][0.501938,-0.183926,0.845121][0.365483,0.500085,0][0.0913676,0.729502,-1.79881][0.501938,-0.183926,0.845121][0.364551,0.542745,0][0.205225,1.04179,-1.79847][0.501938,-0.183926,0.845121][0.347941,0.518711,0][0.190826,1.26134,-1.8003][0.687992,0.134937,0.713063][0.639412,0.461156,0][0.402082,1.18254,-1.98921][0.687992,0.134937,0.713063][0.662946,0.450451,0][0.371348,1.33436,-1.98829][0.687992,0.134937,0.713063][0.663023,0.464065,0][0.190826,1.26134,-1.8003][0.687992,0.134937,0.713063][0.71786,0.428838,0][0.402082,1.18254,-1.98921][0.687992,0.134937,0.713063][0.741393,0.418133,0][0.371348,1.33436,-1.98829][0.687992,0.134937,0.713063][0.741471,0.431747,0][0.0790804,1.3668,-1.7965][0.396428,0.58341,0.708857][0.261,0.825193,0][0.286887,1.4585,-1.98819][0.396428,0.58341,0.708857][0.237509,0.836619,0][0.162945,1.54332,-1.98869][0.396428,0.58341,0.708857][0.236974,0.82343,0][0.0790804,1.3668,-1.7965][0.396428,0.58341,0.708857][0.313736,0.920278,0][0.286887,1.4585,-1.98819][0.396428,0.58341,0.708857][0.290245,0.931704,0][0.162945,1.54332,-1.98869][0.396428,0.58341,0.708857][0.28971,0.918515,0][0.205225,1.04179,-1.79847][0.675801,-0.210475,0.706395][0.270129,0.100968,0][0.286832,0.664406,-1.98898][0.675801,-0.210475,0.706395][0.270156,0.138811,0][0.371357,0.936111,-1.98889][0.675801,-0.210475,0.706395][0.254516,0.119294,0][0.205225,1.04179,-1.79847][0.675801,-0.210475,0.706395][0.425338,0.624633,0][0.286832,0.664406,-1.98898][0.675801,-0.210475,0.706395][0.463181,0.624607,0][0.371357,0.936111,-1.98889][0.675801,-0.210475,0.706395][0.443665,0.640247,0][0.205225,1.04179,-1.79847][0.725361,-0.0895492,0.682519][0.255323,0.925214,0][0.371357,0.936111,-1.98889][0.725361,-0.0895492,0.682519][0.278448,0.918515,0][0.402082,1.18254,-1.98921][0.725361,-0.0895492,0.682519][0.277794,0.940332,0][0.205225,1.04179,-1.79847][0.725361,-0.0895492,0.682519][0.178036,0.957453,0][0.371357,0.936111,-1.98889][0.725361,-0.0895492,0.682519][0.201161,0.950754,0][0.402082,1.18254,-1.98921][0.725361,-0.0895492,0.682519][0.200507,0.972571,0][-0.0932789,0.729317,-1.79859][0.00146396,-0.368309,0.929702][0.423451,0.500486,0][7.43101e-007,0.248512,-1.98921][0.00146396,-0.368309,0.929702][0.415253,0.542745,0][0.0913676,0.729502,-1.79881][0.00146396,-0.368309,0.929702][0.407222,0.50047,0][-1.07964e-006,1.18124,-1.64623][0.00143615,-0.319739,0.947505][0.0666227,0.593859,0][-0.0932789,0.729317,-1.79859][0.00143615,-0.319739,0.947505][0.0748211,0.63358,0][0.0913676,0.729502,-1.79881][0.00143615,-0.319739,0.947505][0.058592,0.633563,0][-0.0932789,0.729317,-1.79859][0.00146396,-0.368309,0.929702][0.305285,0.500486,0][7.43101e-007,0.248512,-1.98921][0.00146396,-0.368309,0.929702][0.297086,0.542745,0][0.0913676,0.729502,-1.79881][0.00146396,-0.368309,0.929702][0.289056,0.50047,0][-1.07964e-006,1.18124,-1.64623][0.00143615,-0.319739,0.947505][0.184789,0.593859,0][-0.0932789,0.729317,-1.79859][0.00143615,-0.319739,0.947505][0.192987,0.63358,0][0.0913676,0.729502,-1.79881][0.00143615,-0.319739,0.947505][0.176758,0.633563,0][0.0913676,0.729502,-1.79881][0.594968,-0.340495,0.728063][0.971117,0.145247,0][0.162831,0.447894,-1.98891][0.594968,-0.340495,0.728063][0.949241,0.166523,0][0.286832,0.664406,-1.98898][0.594968,-0.340495,0.728063][0.946479,0.144768,0][0.0913676,0.729502,-1.79881][0.594968,-0.340495,0.728063][0.355141,0.45125,0][0.162831,0.447894,-1.98891][0.594968,-0.340495,0.728063][0.376418,0.473126,0][0.286832,0.664406,-1.98898][0.594968,-0.340495,0.728063][0.354662,0.475888,0][-0.204582,1.04185,-1.79856][-0.677892,-0.211809,0.703989][0.192987,0.542745,0][-0.36918,0.936029,-1.98889][-0.677892,-0.211809,0.703989][0.176795,0.525041,0][-0.284316,0.664421,-1.98889][-0.677892,-0.211809,0.703989][0.191703,0.504959,0][-0.204582,1.04185,-1.79856][-0.677892,-0.211809,0.703989][0.0748211,0.542745,0][-0.36918,0.936029,-1.98889][-0.677892,-0.211809,0.703989][0.0586284,0.525041,0][-0.284316,0.664421,-1.98889][-0.677892,-0.211809,0.703989][0.0735369,0.504959,0][0.0913676,0.729502,-1.79881][0.488132,-0.39983,0.775798][0.251776,0.496576,0][7.43101e-007,0.248512,-1.98921][0.488132,-0.39983,0.775798][0.251385,0.542745,0][0.162831,0.447894,-1.98891][0.488132,-0.39983,0.775798][0.23858,0.524092,0][0.0913676,0.729502,-1.79881][0.488132,-0.39983,0.775798][0.0213118,0.58741,0][7.43101e-007,0.248512,-1.98921][0.488132,-0.39983,0.775798][0.0209209,0.63358,0][0.162831,0.447894,-1.98891][0.488132,-0.39983,0.775798][0.00811607,0.614926,0][-0.189725,1.26138,-1.80011][-0.687411,0.144333,0.711783][0.411058,0.854822,0][-0.369181,1.33469,-1.98829][-0.687411,0.144333,0.711783][0.434802,0.854612,0][-0.402082,1.18254,-1.98921][-0.687411,0.144333,0.711783][0.433271,0.868208,0][-0.189725,1.26138,-1.80011][-0.687411,0.144333,0.711783][0.562125,0.4829,0][-0.369181,1.33469,-1.98829][-0.687411,0.144333,0.711783][0.58587,0.48269,0][-0.402082,1.18254,-1.98921][-0.687411,0.144333,0.711783][0.584339,0.496285,0][-0.0932789,0.729317,-1.79859][-0.59841,-0.350753,0.720331][0.966969,0.114727,0][-0.284316,0.664421,-1.98889][-0.59841,-0.350753,0.720331][0.942799,0.117896,0][-0.157369,0.447843,-1.98889][-0.59841,-0.350753,0.720331][0.943166,0.0958342,0][-0.0932789,0.729317,-1.79859][-0.59841,-0.350753,0.720331][0.954202,0.212595,0][-0.284316,0.664421,-1.98889][-0.59841,-0.350753,0.720331][0.930032,0.215764,0][-0.157369,0.447843,-1.98889][-0.59841,-0.350753,0.720331][0.930399,0.193702,0][-0.0796965,1.36736,-1.79715][-0.392281,0.592201,0.703857][0.746662,0.301196,0][-0.157436,1.5434,-1.98859][-0.392281,0.592201,0.703857][0.723006,0.304298,0][-0.284316,1.45899,-1.98829][-0.392281,0.592201,0.703857][0.7229,0.290904,0][-0.0796965,1.36736,-1.79715][-0.392281,0.592201,0.703857][0.654494,0.332492,0][-0.157436,1.5434,-1.98859][-0.392281,0.592201,0.703857][0.630838,0.335594,0][-0.284316,1.45899,-1.98829][-0.392281,0.592201,0.703857][0.630733,0.3222,0][-0.204582,1.04185,-1.79856][-0.725874,-0.0959981,0.681096][0.508828,0.514663,0][-0.402082,1.18254,-1.98921][-0.725874,-0.0959981,0.681096][0.491117,0.53519,0][-0.36918,0.936029,-1.98889][-0.725874,-0.0959981,0.681096][0.484839,0.514252,0][-0.204582,1.04185,-1.79856][-0.725874,-0.0959981,0.681096][0.236413,0.951165,0][-0.402082,1.18254,-1.98921][-0.725874,-0.0959981,0.681096][0.218701,0.971692,0][-0.36918,0.936029,-1.98889][-0.725874,-0.0959981,0.681096][0.212423,0.950754,0][0.0790804,1.3668,-1.7965][0.114022,0.70639,0.698579][0.743111,0.399904,0][0.162945,1.54332,-1.98869][0.114022,0.70639,0.698579][0.719021,0.400043,0][3.0027e-007,1.56953,-1.9886][0.114022,0.70639,0.698579][0.721843,0.385814,0][0.0790804,1.3668,-1.7965][0.114022,0.70639,0.698579][0.397879,0.778465,0][0.162945,1.54332,-1.98869][0.114022,0.70639,0.698579][0.373789,0.778603,0][3.0027e-007,1.56953,-1.9886][0.114022,0.70639,0.698579][0.376611,0.764375,0][-0.189725,1.26138,-1.80011][-0.581871,0.397244,0.709664][0.508408,0.553095,0][-0.284316,1.45899,-1.98829][-0.581871,0.397244,0.709664][0.485223,0.56343,0][-0.369181,1.33469,-1.98829][-0.581871,0.397244,0.709664][0.484839,0.550207,0][-0.189725,1.26138,-1.80011][-0.581871,0.397244,0.709664][0.256945,0.798559,0][-0.284316,1.45899,-1.98829][-0.581871,0.397244,0.709664][0.23376,0.808894,0][-0.369181,1.33469,-1.98829][-0.581871,0.397244,0.709664][0.233376,0.795671,0][0.190826,1.26134,-1.8003][0.581228,0.394888,0.711504][0.547633,0.527114,0][0.371348,1.33436,-1.98829][0.581228,0.394888,0.711504][0.523845,0.527311,0][0.286887,1.4585,-1.98819][0.581228,0.394888,0.711504][0.52575,0.514252,0][0.190826,1.26134,-1.8003][0.581228,0.394888,0.711504][0.436685,0.777236,0][0.371348,1.33436,-1.98829][0.581228,0.394888,0.711504][0.412896,0.777434,0][0.286887,1.4585,-1.98819][0.581228,0.394888,0.711504][0.414801,0.764375,0][-1.07964e-006,1.18124,-1.64623][-0.125504,0.656128,0.74414][0.136842,0.288847,0][0.0790804,1.3668,-1.7965][-0.125504,0.656128,0.74414][0.129758,0.267905,0][3.0027e-007,1.56953,-1.9886][-0.125504,0.656128,0.74414][0.136672,0.243347,0][-0.0796965,1.36736,-1.79715][0.123129,0.656324,0.744364][0.117784,0.252067,0][-1.07964e-006,1.18124,-1.64623][0.123129,0.656324,0.744364][0.110564,0.273056,0][3.0027e-007,1.56953,-1.9886][0.123129,0.656324,0.744364][0.110912,0.227557,0][-1.07964e-006,1.18124,-1.64623][-0.125504,0.656128,0.74414][0.474423,0.464189,0][0.0790804,1.3668,-1.7965][-0.125504,0.656128,0.74414][0.453481,0.471273,0][3.0027e-007,1.56953,-1.9886][-0.125504,0.656128,0.74414][0.428923,0.464359,0][-0.0796965,1.36736,-1.79715][0.123129,0.656324,0.744364][0.248546,0.3673,0][-1.07964e-006,1.18124,-1.64623][0.123129,0.656324,0.744364][0.227557,0.360081,0][3.0027e-007,1.56953,-1.9886][0.123129,0.656324,0.744364][0.273056,0.360428,0][-0.534229,0.588469,-1.93924][0.768177,0.555571,-0.31819][0.943279,0.809295,0][-0.590536,0.679682,-1.91592][0.768177,0.555571,-0.31819][0.952921,0.809295,0][-0.587091,0.679682,-1.9076][0.768177,0.555571,-0.31819][0.952921,0.810086,0][-0.530783,0.588469,-1.93092][0.768176,0.555571,-0.318191][0.979337,0.648674,0][-0.534229,0.588469,-1.93924][0.768176,0.555571,-0.318191][0.979337,0.647883,0][-0.587091,0.679682,-1.9076][0.768176,0.555571,-0.318191][0.988979,0.648674,0][-0.534229,0.588469,-1.93924][0.768177,0.555571,-0.31819][0.94688,0.828458,0][-0.590536,0.679682,-1.91592][0.768177,0.555571,-0.31819][0.956522,0.828458,0][-0.587091,0.679682,-1.9076][0.768177,0.555571,-0.31819][0.956522,0.829249,0][-0.530783,0.588469,-1.93092][0.768176,0.555571,-0.318191][0.791737,0.909977,0][-0.534229,0.588469,-1.93924][0.768176,0.555571,-0.318191][0.791737,0.909185,0][-0.587091,0.679682,-1.9076][0.768176,0.555571,-0.318191][0.801378,0.909977,0][-0.590536,0.679682,-1.91592][0.513282,0.831469,-0.212606][0.369722,0.302715,0][-0.674806,0.740629,-1.88101][0.513282,0.831469,-0.212606][0.360081,0.302715,0][-0.67136,0.740629,-1.8727][0.513282,0.831469,-0.212606][0.360081,0.301923,0][-0.587091,0.679682,-1.9076][0.513281,0.831469,-0.212609][0.841054,0.894169,0][-0.590536,0.679682,-1.91592][0.513281,0.831469,-0.212609][0.841054,0.893377,0][-0.67136,0.740629,-1.8727][0.513281,0.831469,-0.212609][0.850696,0.894169,0][-0.590536,0.679682,-1.91592][0.513282,0.831469,-0.212606][0.274701,0.12776,0][-0.674806,0.740629,-1.88101][0.513282,0.831469,-0.212606][0.274701,0.137402,0][-0.67136,0.740629,-1.8727][0.513282,0.831469,-0.212606][0.27391,0.137402,0][-0.587091,0.679682,-1.9076][0.513281,0.831469,-0.212609][0.816395,0.909977,0][-0.590536,0.679682,-1.91592][0.513281,0.831469,-0.212609][0.816395,0.909185,0][-0.67136,0.740629,-1.8727][0.513281,0.831469,-0.212609][0.826037,0.909977,0][-0.674806,0.740629,-1.88101][0.180239,0.980785,-0.074659][0.713167,0.922878,0][-0.774209,0.76203,-1.83984][0.180239,0.980785,-0.074659][0.722809,0.922878,0][-0.770763,0.76203,-1.83152][0.180239,0.980785,-0.074659][0.722809,0.92367,0][-0.67136,0.740629,-1.8727][0.18024,0.980785,-0.0746571][0.686919,0.874834,0][-0.674806,0.740629,-1.88101][0.18024,0.980785,-0.0746571][0.686919,0.874043,0][-0.770763,0.76203,-1.83152][0.18024,0.980785,-0.0746571][0.696561,0.874834,0][-0.674806,0.740629,-1.88101][0.180239,0.980785,-0.074659][0.967395,0.753205,0][-0.774209,0.76203,-1.83984][0.180239,0.980785,-0.074659][0.977037,0.753205,0][-0.770763,0.76203,-1.83152][0.180239,0.980785,-0.074659][0.977037,0.753996,0][-0.67136,0.740629,-1.8727][0.18024,0.980785,-0.0746571][0.426516,0.748551,0][-0.674806,0.740629,-1.88101][0.18024,0.980785,-0.0746571][0.426516,0.747759,0][-0.770763,0.76203,-1.83152][0.18024,0.980785,-0.0746571][0.436158,0.748551,0][-0.774209,0.76203,-1.83984][-0.180239,0.980785,0.0746567][0.801378,0.878361,0][-0.873612,0.740629,-1.79867][-0.180239,0.980785,0.0746567][0.791737,0.878361,0][-0.870167,0.740629,-1.79035][-0.180239,0.980785,0.0746567][0.791737,0.877569,0][-0.770763,0.76203,-1.83152][-0.180238,0.980786,0.0746586][0.833099,0.341142,0][-0.774209,0.76203,-1.83984][-0.180238,0.980786,0.0746586][0.833047,0.340353,0][-0.870167,0.740629,-1.79035][-0.180238,0.980786,0.0746586][0.842535,0.340511,0][-0.774209,0.76203,-1.83984][-0.180239,0.980785,0.0746567][0.988573,0.275746,0][-0.873612,0.740629,-1.79867][-0.180239,0.980785,0.0746567][0.978931,0.275746,0][-0.870167,0.740629,-1.79035][-0.180239,0.980785,0.0746567][0.978931,0.274955,0][-0.770763,0.76203,-1.83152][-0.180238,0.980786,0.0746586][0.925258,0.309846,0][-0.774209,0.76203,-1.83984][-0.180238,0.980786,0.0746586][0.925205,0.309057,0][-0.870167,0.740629,-1.79035][-0.180238,0.980786,0.0746586][0.934693,0.309215,0][-0.873612,0.740629,-1.79867][-0.51328,0.83147,0.212606][0.670313,0.899408,0][-0.957882,0.679682,-1.76376][-0.51328,0.83147,0.212606][0.660671,0.899408,0][-0.954436,0.679682,-1.75544][-0.51328,0.83147,0.212606][0.660671,0.898616,0][-0.870167,0.740629,-1.79035][-0.513281,0.83147,0.212605][0.0918859,0.398513,0][-0.873612,0.740629,-1.79867][-0.513281,0.83147,0.212605][0.0910945,0.398513,0][-0.954436,0.679682,-1.75544][-0.513281,0.83147,0.212605][0.0918859,0.388871,0][-0.873612,0.740629,-1.79867][-0.51328,0.83147,0.212606][0.820543,0.275746,0][-0.957882,0.679682,-1.76376][-0.51328,0.83147,0.212606][0.810901,0.275746,0][-0.954436,0.679682,-1.75544][-0.51328,0.83147,0.212606][0.810901,0.274955,0][-0.870167,0.740629,-1.79035][-0.513281,0.83147,0.212605][0.067718,0.177787,0][-0.873612,0.740629,-1.79867][-0.513281,0.83147,0.212605][0.0669266,0.177787,0][-0.954436,0.679682,-1.75544][-0.513281,0.83147,0.212605][0.067718,0.168145,0][-0.957882,0.679682,-1.76376][-0.76818,0.55557,0.318183][0.27391,0.11061,0][-1.01419,0.588469,-1.74044][-0.76818,0.55557,0.318183][0.27391,0.100968,0][-1.01074,0.588469,-1.73212][-0.76818,0.55557,0.318184][0.274701,0.100968,0][-0.954436,0.679682,-1.75544][-0.768178,0.555571,0.318187][0.591064,0.99027,0][-0.957882,0.679682,-1.76376][-0.768178,0.555571,0.318187][0.591064,0.991062,0][-1.01074,0.588469,-1.73212][-0.768178,0.555571,0.318187][0.581422,0.99027,0][-0.957882,0.679682,-1.76376][-0.76818,0.55557,0.318183][0.0552051,0.244964,0][-1.01419,0.588469,-1.74044][-0.76818,0.55557,0.318183][0.0552051,0.235322,0][-1.01074,0.588469,-1.73212][-0.76818,0.55557,0.318184][0.0559965,0.235322,0][-0.954436,0.679682,-1.75544][-0.768178,0.555571,0.318187][0.910103,0.226021,0][-0.957882,0.679682,-1.76376][-0.768178,0.555571,0.318187][0.910103,0.226812,0][-1.01074,0.588469,-1.73212][-0.768178,0.555571,0.318187][0.900461,0.226021,0][-1.01419,0.588469,-1.74044][-0.90613,0.195091,0.375323][0.807621,0.501876,0][-1.03396,0.480876,-1.73225][-0.90613,0.195091,0.375323][0.798144,0.502236,0][-1.03052,0.480876,-1.72393][-0.90613,0.195091,0.375323][0.79806,0.50151,0][-1.01074,0.588469,-1.73212][-0.90613,0.195091,0.375323][0.969464,0.309724,0][-1.01419,0.588469,-1.74044][-0.90613,0.195091,0.375323][0.969547,0.310451,0][-1.03052,0.480876,-1.72393][-0.90613,0.195091,0.375323][0.959987,0.310084,0][-1.01419,0.588469,-1.74044][-0.90613,0.195091,0.375323][0.451198,0.841949,0][-1.03396,0.480876,-1.73225][-0.90613,0.195091,0.375323][0.441721,0.842309,0][-1.03052,0.480876,-1.72393][-0.90613,0.195091,0.375323][0.441638,0.841582,0][-1.01074,0.588469,-1.73212][-0.90613,0.195091,0.375323][0.877306,0.34102,0][-1.01419,0.588469,-1.74044][-0.90613,0.195091,0.375323][0.877389,0.341746,0][-1.03052,0.480876,-1.72393][-0.90613,0.195091,0.375323][0.867829,0.34138,0][-1.03396,0.480876,-1.73225][-0.90613,-0.19509,0.375323][0.748431,0.987623,0][-1.01419,0.373283,-1.74044][-0.90613,-0.19509,0.375323][0.738974,0.988343,0][-1.01074,0.373283,-1.73212][-0.90613,-0.19509,0.375323][0.738974,0.987612,0][-1.03052,0.480876,-1.72393][-0.90613,-0.19509,0.375323][0.670127,0.977656,0][-1.03396,0.480876,-1.73225][-0.90613,-0.19509,0.375323][0.670127,0.978387,0][-1.01074,0.373283,-1.73212][-0.90613,-0.19509,0.375323][0.660671,0.978375,0][-1.03396,0.480876,-1.73225][-0.90613,-0.19509,0.375323][0.776435,0.979343,0][-1.01419,0.373283,-1.74044][-0.90613,-0.19509,0.375323][0.766978,0.980063,0][-1.01074,0.373283,-1.73212][-0.90613,-0.19509,0.375323][0.766978,0.979332,0][-1.03052,0.480876,-1.72393][-0.90613,-0.19509,0.375323][0.825852,0.940801,0][-1.03396,0.480876,-1.73225][-0.90613,-0.19509,0.375323][0.825852,0.941532,0][-1.01074,0.373283,-1.73212][-0.90613,-0.19509,0.375323][0.816395,0.94152,0][-0.954436,0.28207,-1.75544][-0.272585,-0.392848,0.878275][0.13437,0.983719,0][-0.782485,0.400276,-1.6492][-0.272585,-0.392848,0.878275][0.154798,0.986216,0][-1.01074,0.373283,-1.73212][-0.272585,-0.392848,0.878275][0.134545,0.993359,0][-0.954436,0.28207,-1.75544][-0.272585,-0.392848,0.878275][0.0397819,0.985155,0][-0.782485,0.400276,-1.6492][-0.272585,-0.392848,0.878275][0.06021,0.987652,0][-1.01074,0.373283,-1.73212][-0.272585,-0.392848,0.878275][0.0399563,0.994795,0][-0.770763,0.199722,-1.83152][0.14315,-0.69352,0.706073][0.375875,0.82343,0][-0.70802,0.36689,-1.68005][0.14315,-0.69352,0.706073][0.396269,0.826189,0][-0.870166,0.221123,-1.79035][0.14315,-0.69352,0.706073][0.375926,0.833071,0][-0.770763,0.199722,-1.83152][0.14315,-0.69352,0.706073][0.859442,0.290904,0][-0.70802,0.36689,-1.68005][0.14315,-0.69352,0.706073][0.879837,0.293663,0][-0.870166,0.221123,-1.79035][0.14315,-0.69352,0.706073][0.859493,0.300546,0][-0.770763,0.199722,-1.83152][0.398046,-0.69352,0.600491][0.650798,0.48269,0][-0.67136,0.221123,-1.8727][0.398046,-0.69352,0.600491][0.649634,0.492261,0][-0.70802,0.36689,-1.68005][0.398046,-0.69352,0.600491][0.630221,0.483074,0][-0.770763,0.199722,-1.83152][0.398046,-0.69352,0.600491][0.727951,0.450451,0][-0.67136,0.221123,-1.8727][0.398046,-0.69352,0.600491][0.726787,0.460022,0][-0.70802,0.36689,-1.68005][0.398046,-0.69352,0.600491][0.707375,0.450835,0][-0.58709,0.28207,-1.9076][0.633542,-0.587937,0.502946][0.57476,0.584334,0][-0.633555,0.400276,-1.71089][0.633542,-0.587937,0.502946][0.554357,0.581645,0][-0.67136,0.221123,-1.8727][0.633542,-0.587937,0.502946][0.574677,0.574693,0][-0.58709,0.28207,-1.9076][0.633542,-0.587937,0.502946][0.648818,0.523894,0][-0.633555,0.400276,-1.71089][0.633542,-0.587937,0.502946][0.628414,0.521205,0][-0.67136,0.221123,-1.8727][0.633542,-0.587937,0.502946][0.648734,0.514252,0][-0.511011,0.480876,-1.93911][0.911327,0.13795,0.387884][0.484839,0.681998,0][-0.530783,0.588469,-1.93092][0.911327,0.13795,0.387884][0.485558,0.672541,0][-0.602711,0.480876,-1.72367][0.911327,0.13795,0.387884][0.503775,0.681998,0][-0.511011,0.480876,-1.93911][0.911327,0.13795,0.387884][0.389954,0.977214,0][-0.530783,0.588469,-1.93092][0.911327,0.13795,0.387884][0.390674,0.967757,0][-0.602711,0.480876,-1.72367][0.911327,0.13795,0.387884][0.40889,0.977214,0][-0.587091,0.679682,-1.9076][0.633542,0.587937,0.502945][0.613397,0.514252,0][-0.67136,0.740629,-1.8727][0.633542,0.587937,0.502945][0.6122,0.52382,0][-0.633555,0.561476,-1.71089][0.633542,0.587937,0.502945][0.592819,0.514566,0][-0.587091,0.679682,-1.9076][0.633542,0.587937,0.502945][0.53934,0.574693,0][-0.67136,0.740629,-1.8727][0.633542,0.587937,0.502945][0.538143,0.58426,0][-0.633555,0.561476,-1.71089][0.633542,0.587937,0.502945][0.518762,0.575007,0][-0.587091,0.679682,-1.9076][0.813781,0.392849,0.428288][0.57488,0.559847,0][-0.633555,0.561476,-1.71089][0.813781,0.392849,0.428288][0.554452,0.55735,0][-0.530783,0.588469,-1.93092][0.813781,0.392849,0.428288][0.574706,0.550207,0][-0.587091,0.679682,-1.9076][0.813781,0.392849,0.428288][0.452265,0.896571,0][-0.633555,0.561476,-1.71089][0.813781,0.392849,0.428288][0.431837,0.894073,0][-0.530783,0.588469,-1.93092][0.813781,0.392849,0.428288][0.45209,0.88693,0][-1.03052,0.480876,-1.72393][-0.37013,0.13795,0.91868][0.821784,0.331657,0][-0.813329,0.480876,-1.63643][-0.37013,0.13795,0.91868][0.802695,0.331657,0][-1.01074,0.588469,-1.73212][-0.37013,0.13795,0.91868][0.820046,0.3222,0][-1.03052,0.480876,-1.72393][-0.37013,0.13795,0.91868][0.913943,0.300361,0][-0.813329,0.480876,-1.63643][-0.37013,0.13795,0.91868][0.894853,0.300361,0][-1.01074,0.588469,-1.73212][-0.37013,0.13795,0.91868][0.912205,0.290904,0][-0.770763,0.76203,-1.83152][0.398047,0.69352,0.600491][0.684229,0.523894,0][-0.70802,0.594863,-1.68005][0.398047,0.69352,0.600491][0.663835,0.521135,0][-0.67136,0.740629,-1.8727][0.398047,0.69352,0.600491][0.684178,0.514252,0][-0.770763,0.76203,-1.83152][0.398047,0.69352,0.600491][0.919306,0.395456,0][-0.70802,0.594863,-1.68005][0.398047,0.69352,0.600491][0.898912,0.392697,0][-0.67136,0.740629,-1.8727][0.398047,0.69352,0.600491][0.919255,0.385814,0][-0.70802,0.594863,-1.68005][0.520999,0.630085,0.575807][0.951639,0.582041,0][-0.67044,0.480876,-1.58932][0.520999,0.630085,0.575807][0.940605,0.574752,0][-0.633555,0.561476,-1.71089][0.520999,0.630085,0.575807][0.953829,0.574693,0][-0.67136,0.740629,-1.8727][0.520999,0.63004,0.575856][0.950931,0.425482,0][-0.70802,0.594863,-1.68005][0.520999,0.63004,0.575856][0.97111,0.418133,0][-0.633555,0.561476,-1.71089][0.520999,0.63004,0.575856][0.972406,0.42569,0][-0.70802,0.594863,-1.68005][0.520999,0.630085,0.575807][0.750453,0.717366,0][-0.67044,0.480876,-1.58932][0.520999,0.630085,0.575807][0.73942,0.710076,0][-0.633555,0.561476,-1.71089][0.520999,0.630085,0.575807][0.752643,0.710017,0][-0.67136,0.740629,-1.8727][0.520999,0.63004,0.575856][0.875214,0.4578,0][-0.70802,0.594863,-1.68005][0.520999,0.63004,0.575856][0.895393,0.450451,0][-0.633555,0.561476,-1.71089][0.520999,0.63004,0.575856][0.896689,0.458009,0][-0.770763,0.76203,-1.83152][0.14315,0.69352,0.706072][0.782941,0.427704,0][-0.870167,0.740629,-1.79035][0.14315,0.69352,0.706072][0.784105,0.418133,0][-0.70802,0.594863,-1.68005][0.14315,0.69352,0.706072][0.803517,0.42732,0][-0.770763,0.76203,-1.83152][0.14315,0.69352,0.706072][0.699839,0.331771,0][-0.870167,0.740629,-1.79035][0.14315,0.69352,0.706072][0.701003,0.3222,0][-0.70802,0.594863,-1.68005][0.14315,0.69352,0.706072][0.720415,0.331387,0][-0.954436,0.679682,-1.75544][-0.0923448,0.587938,0.803618][0.767275,0.3222,0][-0.782485,0.561477,-1.6492][-0.0923448,0.587938,0.803618][0.787678,0.324889,0][-0.870167,0.740629,-1.79035][-0.0923448,0.587938,0.803618][0.767358,0.331841,0][-0.954436,0.679682,-1.75544][-0.0923448,0.587938,0.803618][0.850377,0.418133,0][-0.782485,0.561477,-1.6492][-0.0923448,0.587938,0.803618][0.87078,0.420822,0][-0.870167,0.740629,-1.79035][-0.0923448,0.587938,0.803618][0.85046,0.427774,0][-0.782485,0.561477,-1.6492][0.0387557,0.630085,0.775558][0.45961,0.963818,0][-0.67044,0.480876,-1.58932][0.0387557,0.630085,0.775558][0.470673,0.971062,0][-0.70802,0.594863,-1.68005][0.0387557,0.630085,0.775558][0.45745,0.971175,0][-0.870167,0.740629,-1.79035][0.0387906,0.63004,0.775593][0.574096,0.668721,0][-0.782485,0.561477,-1.6492][0.0387906,0.63004,0.775593][0.553947,0.676154,0][-0.70802,0.594863,-1.68005][0.0387906,0.63004,0.775593][0.55262,0.668602,0][-0.782485,0.561477,-1.6492][0.0387557,0.630085,0.775558][0.457724,0.943099,0][-0.67044,0.480876,-1.58932][0.0387557,0.630085,0.775558][0.468788,0.950343,0][-0.70802,0.594863,-1.68005][0.0387557,0.630085,0.775558][0.455564,0.950456,0][-0.870167,0.740629,-1.79035][0.0387906,0.63004,0.775593][0.602961,0.648002,0][-0.782485,0.561477,-1.6492][0.0387906,0.63004,0.775593][0.582811,0.655435,0][-0.70802,0.594863,-1.68005][0.0387906,0.63004,0.775593][0.581485,0.647883,0][-0.954436,0.679682,-1.75544][-0.272585,0.392848,0.878276][0.505418,0.627064,0][-1.01074,0.588469,-1.73212][-0.272585,0.392848,0.878276][0.504131,0.63662,0][-0.782485,0.561477,-1.6492][-0.272585,0.392848,0.878276][0.484839,0.627185,0][-0.954436,0.679682,-1.75544][-0.272585,0.392848,0.878276][0.353741,0.795671,0][-1.01074,0.588469,-1.73212][-0.272585,0.392848,0.878276][0.352453,0.805226,0][-0.782485,0.561477,-1.6492][-0.272585,0.392848,0.878276][0.333161,0.795791,0][-1.03052,0.480876,-1.72393][-0.37013,-0.13795,0.91868][0.377201,0.963917,0][-1.01074,0.373283,-1.73212][-0.37013,-0.13795,0.91868][0.375463,0.973374,0][-0.813329,0.480876,-1.63643][-0.37013,-0.13795,0.91868][0.358112,0.963917,0][-1.03052,0.480876,-1.72393][-0.37013,-0.13795,0.91868][0.829168,0.450451,0][-1.01074,0.373283,-1.73212][-0.37013,-0.13795,0.91868][0.82743,0.459908,0][-0.813329,0.480876,-1.63643][-0.37013,-0.13795,0.91868][0.810079,0.450451,0][-0.813329,0.480876,-1.63643][-0.302245,0.260989,0.916806][0.532809,0.917783,0][-0.67044,0.480876,-1.58932][-0.302245,0.260989,0.916806][0.52025,0.917783,0][-0.782485,0.561477,-1.6492][-0.302245,0.260989,0.916806][0.530098,0.910698,0][-1.01074,0.588469,-1.73212][-0.302186,0.260971,0.916831][0.884286,0.514259,0][-0.813329,0.480876,-1.63643][-0.302186,0.260971,0.916831][0.904047,0.514252,0][-0.782485,0.561477,-1.6492][-0.302186,0.260971,0.916831][0.903039,0.52177,0][-0.813329,0.480876,-1.63643][-0.302245,0.260989,0.916806][0.0213118,0.583656,0][-0.67044,0.480876,-1.58932][-0.302245,0.260989,0.916806][0.00875285,0.583656,0][-0.782485,0.561477,-1.6492][-0.302245,0.260989,0.916806][0.0186009,0.576572,0][-1.01074,0.588469,-1.73212][-0.302186,0.260971,0.916831][0.949147,0.482696,0][-0.813329,0.480876,-1.63643][-0.302186,0.260971,0.916831][0.968908,0.48269,0][-0.782485,0.561477,-1.6492][-0.302186,0.260971,0.916831][0.967901,0.490208,0][-0.954436,0.28207,-1.75544][-0.0923464,-0.587937,0.803618][0.358112,0.928082,0][-0.870166,0.221123,-1.79035][-0.0923464,-0.587937,0.803618][0.359309,0.918515,0][-0.782485,0.400276,-1.6492][-0.0923464,-0.587937,0.803618][0.37869,0.927768,0][-0.954436,0.28207,-1.75544][-0.0923464,-0.587937,0.803618][0.28971,0.979392,0][-0.870166,0.221123,-1.79035][-0.0923464,-0.587937,0.803618][0.290907,0.969824,0][-0.782485,0.400276,-1.6492][-0.0923464,-0.587937,0.803618][0.310288,0.979078,0][-0.782485,0.400276,-1.6492][-0.302246,-0.260988,0.916806][0.974939,0.581777,0][-0.67044,0.480876,-1.58932][-0.302246,-0.260988,0.916806][0.965092,0.574693,0][-0.813329,0.480876,-1.63643][-0.302246,-0.260988,0.916806][0.97765,0.574693,0][-1.01074,0.373283,-1.73212][-0.302186,-0.260969,0.916831][0.63823,0.692711,0][-0.782485,0.400276,-1.6492][-0.302186,-0.260969,0.916831][0.657726,0.687416,0][-0.813329,0.480876,-1.63643][-0.302186,-0.260969,0.916831][0.657858,0.695001,0][-0.782485,0.400276,-1.6492][-0.302246,-0.260988,0.916806][0.749483,0.634149,0][-0.67044,0.480876,-1.58932][-0.302246,-0.260988,0.916806][0.739635,0.627064,0][-0.813329,0.480876,-1.63643][-0.302246,-0.260988,0.916806][0.752193,0.627064,0][-1.01074,0.373283,-1.73212][-0.302186,-0.260969,0.916831][0.804771,0.579988,0][-0.782485,0.400276,-1.6492][-0.302186,-0.260969,0.916831][0.824267,0.574693,0][-0.813329,0.480876,-1.63643][-0.302186,-0.260969,0.916831][0.824399,0.582277,0][-0.58709,0.28207,-1.9076][0.813782,-0.392847,0.428288][0.818534,0.427688,0][-0.530783,0.373283,-1.93092][0.813782,-0.392847,0.428288][0.819821,0.418133,0][-0.633555,0.400276,-1.71089][0.813782,-0.392847,0.428288][0.839114,0.427568,0][-0.58709,0.28207,-1.9076][0.813782,-0.392847,0.428288][0.735432,0.331756,0][-0.530783,0.373283,-1.93092][0.813782,-0.392847,0.428288][0.736719,0.3222,0][-0.633555,0.400276,-1.71089][0.813782,-0.392847,0.428288][0.756012,0.331635,0][-0.70802,0.36689,-1.68005][0.0387543,-0.630084,0.775559][0.720004,0.687416,0][-0.67044,0.480876,-1.58932][0.0387543,-0.630084,0.775559][0.731037,0.694706,0][-0.782485,0.400276,-1.6492][0.0387543,-0.630084,0.775559][0.717814,0.694765,0][-0.870166,0.221123,-1.79035][0.0387889,-0.630039,0.775594][0.981462,0.291113,0][-0.70802,0.36689,-1.68005][0.0387889,-0.630039,0.775594][0.961282,0.298462,0][-0.782485,0.400276,-1.6492][0.0387889,-0.630039,0.775594][0.959987,0.290904,0][-0.70802,0.36689,-1.68005][0.0387543,-0.630084,0.775559][0.689109,0.755436,0][-0.67044,0.480876,-1.58932][0.0387543,-0.630084,0.775559][0.700142,0.762725,0][-0.782485,0.400276,-1.6492][0.0387543,-0.630084,0.775559][0.686919,0.762785,0][-0.870166,0.221123,-1.79035][0.0387889,-0.630039,0.775594][0.889304,0.322409,0][-0.70802,0.36689,-1.68005][0.0387889,-0.630039,0.775594][0.869124,0.329758,0][-0.782485,0.400276,-1.6492][0.0387889,-0.630039,0.775594][0.867829,0.3222,0][-0.511011,0.480876,-1.93911][0.911326,-0.13795,0.387884][0.699246,0.514252,0][-0.602711,0.480876,-1.72367][0.911326,-0.13795,0.387884][0.718182,0.514252,0][-0.530783,0.373283,-1.93092][0.911326,-0.13795,0.387884][0.699965,0.523709,0][-0.511011,0.480876,-1.93911][0.911326,-0.13795,0.387884][0.934323,0.385814,0][-0.602711,0.480876,-1.72367][0.911326,-0.13795,0.387884][0.953259,0.385814,0][-0.530783,0.373283,-1.93092][0.911326,-0.13795,0.387884][0.935043,0.395271,0][-0.633555,0.400276,-1.71089][0.521,-0.630084,0.575806][0.563684,0.8661,0][-0.67044,0.480876,-1.58932][0.521,-0.630084,0.575806][0.55262,0.858856,0][-0.70802,0.36689,-1.68005][0.521,-0.630084,0.575806][0.565844,0.858743,0][-0.67136,0.221123,-1.8727][0.521,-0.630039,0.575856][0.425365,0.990514,0][-0.633555,0.400276,-1.71089][0.521,-0.630039,0.575856][0.445515,0.983082,0][-0.70802,0.36689,-1.68005][0.521,-0.630039,0.575856][0.446841,0.990634,0][-0.633555,0.400276,-1.71089][0.521,-0.630084,0.575806][0.592486,0.816763,0][-0.67044,0.480876,-1.58932][0.521,-0.630084,0.575806][0.581422,0.809519,0][-0.70802,0.36689,-1.68005][0.521,-0.630084,0.575806][0.594646,0.809406,0][-0.67136,0.221123,-1.8727][0.521,-0.630039,0.575856][0.484839,0.725604,0][-0.633555,0.400276,-1.71089][0.521,-0.630039,0.575856][0.504988,0.718171,0][-0.70802,0.36689,-1.68005][0.521,-0.630039,0.575856][0.506315,0.725724,0][-0.67044,0.480876,-1.58932][0.862033,0.260849,0.434577][0.613212,0.273932,0][-0.602711,0.480876,-1.72367][0.862033,0.260849,0.434577][0.600603,0.27792,0][-0.530783,0.588469,-1.93092][0.862033,0.260849,0.434577][0.579427,0.274343,0][-0.633555,0.561476,-1.71089][0.861935,0.261106,0.434618][0.0252505,0.352732,0][-0.67044,0.480876,-1.58932][0.861935,0.261106,0.434618][0.0289305,0.340031,0][-0.530783,0.588469,-1.93092][0.861935,0.261106,0.434618][0.0293408,0.373815,0][-0.67044,0.480876,-1.58932][0.862033,0.260849,0.434577][0.327002,0.697803,0][-0.602711,0.480876,-1.72367][0.862033,0.260849,0.434577][0.314393,0.70179,0][-0.530783,0.588469,-1.93092][0.862033,0.260849,0.434577][0.293217,0.698214,0][-0.633555,0.561476,-1.71089][0.861935,0.261106,0.434618][0.4715,0.1512,0][-0.67044,0.480876,-1.58932][0.861935,0.261106,0.434618][0.47518,0.138498,0][-0.530783,0.588469,-1.93092][0.861935,0.261106,0.434618][0.475591,0.172283,0][-0.602711,0.480876,-1.72367][0.861999,-0.260988,0.43456][0.670484,0.647883,0][-0.67044,0.480876,-1.58932][0.861999,-0.260988,0.43456][0.683708,0.647883,0][-0.633555,0.400276,-1.71089][0.861999,-0.260988,0.43456][0.672707,0.655221,0][-0.530783,0.373283,-1.93092][0.861975,-0.26097,0.434619][0.852275,0.482714,0][-0.602711,0.480876,-1.72367][0.861975,-0.26097,0.434619][0.832159,0.490236,0][-0.633555,0.400276,-1.71089][0.861975,-0.26097,0.434619][0.830798,0.48269,0][-0.602711,0.480876,-1.72367][0.861999,-0.260988,0.43456][0.660671,0.780096,0][-0.67044,0.480876,-1.58932][0.861999,-0.260988,0.43456][0.673895,0.780096,0][-0.633555,0.400276,-1.71089][0.861999,-0.260988,0.43456][0.662894,0.787434,0][-0.530783,0.373283,-1.93092][0.861975,-0.26097,0.434619][0.649694,0.627088,0][-0.602711,0.480876,-1.72367][0.861975,-0.26097,0.434619][0.629578,0.634611,0][-0.633555,0.400276,-1.71089][0.861975,-0.26097,0.434619][0.628217,0.627064,0][-0.590536,0.679682,-1.91592][0.300821,0.40632,-0.862793][0.520302,0.807042,0][-0.534229,0.588469,-1.93924][0.300821,0.40632,-0.862793][0.52025,0.797401,0][-0.683533,0.617397,-1.97768][0.300821,0.40632,-0.862793][0.531428,0.805471,0][-0.590536,0.679682,-1.91592][0.300821,0.40632,-0.862793][0.788214,0.559849,0][-0.534229,0.588469,-1.93924][0.300821,0.40632,-0.862793][0.788161,0.550207,0][-0.683533,0.617397,-1.97768][0.300821,0.40632,-0.862793][0.799339,0.558278,0][-0.774209,0.76203,-1.83984][-0.129171,0.717301,-0.684686][0.77967,0.61204,0][-0.674806,0.740629,-1.88101][-0.129171,0.717301,-0.684686][0.780926,0.60248,0][-0.809662,0.673946,-1.92543][-0.129171,0.717301,-0.684686][0.790905,0.611993,0][-0.774209,0.76203,-1.83984][-0.129171,0.717301,-0.684686][0.52025,0.877071,0][-0.674806,0.740629,-1.88101][-0.129171,0.717301,-0.684686][0.521506,0.867511,0][-0.809662,0.673946,-1.92543][-0.129171,0.717301,-0.684686][0.531485,0.877023,0][-0.774209,0.76203,-1.83984][-0.392808,0.717301,-0.575484][0.620581,0.793623,0][-0.809662,0.673946,-1.92543][-0.392808,0.717301,-0.575484][0.609426,0.792278,0][-0.873612,0.740629,-1.79867][-0.392808,0.717301,-0.575484][0.620438,0.783982,0][-0.774209,0.76203,-1.83984][-0.392808,0.717301,-0.575484][0.563775,0.843726,0][-0.809662,0.673946,-1.92543][-0.392808,0.717301,-0.575484][0.55262,0.842381,0][-0.873612,0.740629,-1.79867][-0.392808,0.717301,-0.575484][0.563632,0.834085,0][-0.957882,0.679682,-1.76376][-0.636378,0.608098,-0.474594][0.620658,0.734776,0][-0.873612,0.740629,-1.79867][-0.636378,0.608098,-0.474594][0.619633,0.744363,0][-0.935791,0.617397,-1.87319][-0.636378,0.608098,-0.474594][0.609426,0.735095,0][-0.957882,0.679682,-1.76376][-0.636378,0.608098,-0.474594][0.531481,0.818305,0][-0.873612,0.740629,-1.79867][-0.636378,0.608098,-0.474594][0.530457,0.827892,0][-0.935791,0.617397,-1.87319][-0.636378,0.608098,-0.474594][0.52025,0.818624,0][-1.01419,0.373283,-1.74044][-0.768178,-0.555571,0.318188][0.92772,0.753996,0][-0.957882,0.28207,-1.76376][-0.768178,-0.555571,0.318188][0.918078,0.753996,0][-0.954436,0.28207,-1.75544][-0.768178,-0.555571,0.318188][0.918078,0.753205,0][-1.01074,0.373283,-1.73212][-0.76818,-0.555571,0.318183][0.722809,0.891262,0][-1.01419,0.373283,-1.74044][-0.76818,-0.555571,0.318183][0.722809,0.892054,0][-0.954436,0.28207,-1.75544][-0.76818,-0.555571,0.318183][0.713167,0.891262,0][-1.01419,0.373283,-1.74044][-0.768178,-0.555571,0.318188][0.951949,0.735385,0][-0.957882,0.28207,-1.76376][-0.768178,-0.555571,0.318188][0.942307,0.735385,0][-0.954436,0.28207,-1.75544][-0.768178,-0.555571,0.318188][0.942307,0.734594,0][-1.01074,0.373283,-1.73212][-0.76818,-0.555571,0.318183][0.467687,0.698825,0][-1.01419,0.373283,-1.74044][-0.76818,-0.555571,0.318183][0.467687,0.699617,0][-0.954436,0.28207,-1.75544][-0.76818,-0.555571,0.318183][0.458045,0.698825,0][-0.957882,0.28207,-1.76376][-0.513281,-0.831469,0.212606][0.816395,0.956927,0][-0.873612,0.221123,-1.79867][-0.513281,-0.831469,0.212606][0.824403,0.956549,0][-0.870166,0.221123,-1.79035][-0.513281,-0.831469,0.212606][0.82444,0.957339,0][-0.954436,0.28207,-1.75544][-0.513281,-0.831469,0.212607][0.895352,0.275745,0][-0.957882,0.28207,-1.76376][-0.513281,-0.831469,0.212607][0.895314,0.274955,0][-0.870166,0.221123,-1.79035][-0.513281,-0.831469,0.212607][0.90336,0.275367,0][-0.957882,0.28207,-1.76376][-0.513281,-0.831469,0.212606][0.841054,0.941118,0][-0.873612,0.221123,-1.79867][-0.513281,-0.831469,0.212606][0.849062,0.94074,0][-0.870166,0.221123,-1.79035][-0.513281,-0.831469,0.212606][0.849099,0.941531,0][-0.954436,0.28207,-1.75544][-0.513281,-0.831469,0.212607][0.791774,0.9574,0][-0.957882,0.28207,-1.76376][-0.513281,-0.831469,0.212607][0.791737,0.95661,0][-0.870166,0.221123,-1.79035][-0.513281,-0.831469,0.212607][0.799782,0.957022,0][-0.873612,0.221123,-1.79867][-0.18024,-0.980785,0.0746571][0.738974,0.97225,0][-0.774209,0.199722,-1.83984][-0.18024,-0.980785,0.0746571][0.74842,0.971805,0][-0.770763,0.199722,-1.83152][-0.18024,-0.980785,0.0746571][0.748457,0.972595,0][-0.870166,0.221123,-1.79035][-0.18024,-0.980785,0.0746573][0.94231,0.669392,0][-0.873612,0.221123,-1.79867][-0.18024,-0.980785,0.0746573][0.942273,0.668602,0][-0.770763,0.199722,-1.83152][-0.18024,-0.980785,0.0746573][0.951757,0.668946,0][-0.873612,0.221123,-1.79867][-0.18024,-0.980785,0.0746571][0.766978,0.963971,0][-0.774209,0.199722,-1.83984][-0.18024,-0.980785,0.0746571][0.776424,0.963525,0][-0.770763,0.199722,-1.83152][-0.18024,-0.980785,0.0746571][0.776461,0.964315,0][-0.870166,0.221123,-1.79035][-0.18024,-0.980785,0.0746573][0.713205,0.939477,0][-0.873612,0.221123,-1.79867][-0.18024,-0.980785,0.0746573][0.713167,0.938686,0][-0.770763,0.199722,-1.83152][-0.18024,-0.980785,0.0746573][0.722651,0.939031,0][-0.774209,0.199722,-1.83984][0.180239,-0.980785,-0.0746584][0.660671,0.962294,0][-0.674806,0.221123,-1.88101][0.180239,-0.980785,-0.0746584][0.670117,0.961848,0][-0.67136,0.221123,-1.8727][0.180239,-0.980785,-0.0746584][0.670154,0.962639,0][-0.770763,0.199722,-1.83152][0.180239,-0.980786,-0.0746566][0.841091,0.909976,0][-0.774209,0.199722,-1.83984][0.180239,-0.980786,-0.0746566][0.841054,0.909185,0][-0.67136,0.221123,-1.8727][0.180239,-0.980786,-0.0746566][0.850537,0.90953,0][-0.774209,0.199722,-1.83984][0.180239,-0.980785,-0.0746584][0.686919,0.937721,0][-0.674806,0.221123,-1.88101][0.180239,-0.980785,-0.0746584][0.696365,0.937275,0][-0.67136,0.221123,-1.8727][0.180239,-0.980785,-0.0746584][0.696402,0.938066,0][-0.770763,0.199722,-1.83152][0.180239,-0.980786,-0.0746566][0.816432,0.925784,0][-0.774209,0.199722,-1.83984][0.180239,-0.980786,-0.0746566][0.816395,0.924993,0][-0.67136,0.221123,-1.8727][0.180239,-0.980786,-0.0746566][0.825879,0.925338,0][-0.674806,0.221123,-1.88101][0.51328,-0.83147,-0.212609][0.914667,0.893755,0][-0.590536,0.28207,-1.91592][0.51328,-0.83147,-0.212609][0.922675,0.893377,0][-0.58709,0.28207,-1.9076][0.51328,-0.83147,-0.212609][0.922712,0.894168,0][-0.67136,0.221123,-1.8727][0.51328,-0.83147,-0.212607][0.713205,0.971027,0][-0.674806,0.221123,-1.88101][0.51328,-0.83147,-0.212607][0.713167,0.970237,0][-0.58709,0.28207,-1.9076][0.51328,-0.83147,-0.212607][0.721213,0.970649,0][-0.674806,0.221123,-1.88101][0.51328,-0.83147,-0.212609][0.865554,0.925311,0][-0.590536,0.28207,-1.91592][0.51328,-0.83147,-0.212609][0.873562,0.924933,0][-0.58709,0.28207,-1.9076][0.51328,-0.83147,-0.212609][0.873599,0.925724,0][-0.67136,0.221123,-1.8727][0.51328,-0.83147,-0.212607][0.686956,0.969616,0][-0.674806,0.221123,-1.88101][0.51328,-0.83147,-0.212607][0.686919,0.968826,0][-0.58709,0.28207,-1.9076][0.51328,-0.83147,-0.212607][0.694964,0.969238,0][-0.590536,0.28207,-1.91592][0.768178,-0.555571,-0.318187][0.95991,0.771551,0][-0.534229,0.373283,-1.93924][0.768178,-0.555571,-0.318187][0.969552,0.771551,0][-0.530783,0.373283,-1.93092][0.768178,-0.555571,-0.318187][0.969552,0.772343,0][-0.58709,0.28207,-1.9076][0.768177,-0.55557,-0.318191][0.897562,0.829249,0][-0.590536,0.28207,-1.91592][0.768177,-0.55557,-0.318191][0.897562,0.828458,0][-0.530783,0.373283,-1.93092][0.768177,-0.55557,-0.318191][0.907204,0.829249,0][-0.590536,0.28207,-1.91592][0.768178,-0.555571,-0.318187][0.954679,0.647883,0][-0.534229,0.373283,-1.93924][0.768178,-0.555571,-0.318187][0.96432,0.647883,0][-0.530783,0.373283,-1.93092][0.768178,-0.555571,-0.318187][0.96432,0.648674,0][-0.58709,0.28207,-1.9076][0.768177,-0.55557,-0.318191][0.892956,0.669393,0][-0.590536,0.28207,-1.91592][0.768177,-0.55557,-0.318191][0.892956,0.668602,0][-0.530783,0.373283,-1.93092][0.768177,-0.55557,-0.318191][0.902598,0.669393,0][-0.534229,0.373283,-1.93924][0.906126,-0.19509,-0.375333][0.791737,0.893377,0][-0.514456,0.480876,-1.94743][0.906126,-0.19509,-0.375333][0.801378,0.893377,0][-0.511011,0.480876,-1.93911][0.906126,-0.19509,-0.375333][0.801378,0.894169,0][-0.530783,0.373283,-1.93092][0.906129,-0.19509,-0.375328][0.968908,0.848224,0][-0.534229,0.373283,-1.93924][0.906129,-0.19509,-0.375328][0.968908,0.847493,0][-0.511011,0.480876,-1.93911][0.906129,-0.19509,-0.375328][0.978365,0.847504,0][-0.534229,0.373283,-1.93924][0.906126,-0.19509,-0.375333][0.893961,0.809295,0][-0.514456,0.480876,-1.94743][0.906126,-0.19509,-0.375333][0.903603,0.809295,0][-0.511011,0.480876,-1.93911][0.906126,-0.19509,-0.375333][0.903603,0.810086,0][-0.530783,0.373283,-1.93092][0.906129,-0.19509,-0.375328][0.974156,0.793099,0][-0.534229,0.373283,-1.93924][0.906129,-0.19509,-0.375328][0.974156,0.792367,0][-0.511011,0.480876,-1.93911][0.906129,-0.19509,-0.375328][0.983612,0.792379,0][-0.514456,0.480876,-1.94743][0.906127,0.19509,-0.375332][0.816395,0.893377,0][-0.534229,0.588469,-1.93924][0.906127,0.19509,-0.375332][0.826037,0.893377,0][-0.530783,0.588469,-1.93092][0.906127,0.19509,-0.375332][0.826037,0.894169,0][-0.511011,0.480876,-1.93911][0.906126,0.19509,-0.375333][0.875699,0.793159,0][-0.514456,0.480876,-1.94743][0.906126,0.19509,-0.375333][0.875699,0.792367,0][-0.530783,0.588469,-1.93092][0.906126,0.19509,-0.375333][0.885341,0.793159,0][-0.514456,0.480876,-1.94743][0.906127,0.19509,-0.375332][0.766978,0.931909,0][-0.534229,0.588469,-1.93924][0.906127,0.19509,-0.375332][0.77662,0.931909,0][-0.530783,0.588469,-1.93092][0.906127,0.19509,-0.375332][0.77662,0.9327,0][-0.511011,0.480876,-1.93911][0.906126,0.19509,-0.375333][0.870451,0.848284,0][-0.514456,0.480876,-1.94743][0.906126,0.19509,-0.375333][0.870451,0.847493,0][-0.530783,0.588469,-1.93092][0.906126,0.19509,-0.375333][0.880093,0.848284,0][-0.514456,0.480876,-1.94743][0.401711,-0.142679,-0.904584][0.671906,0.759279,0][-0.534229,0.373283,-1.93924][0.401711,-0.142679,-0.904584][0.67061,0.768833,0][-0.631289,0.480876,-1.99932][0.401711,-0.142679,-0.904584][0.660671,0.759279,0][-0.514456,0.480876,-1.94743][0.401711,-0.142679,-0.904584][0.706551,0.687416,0][-0.534229,0.373283,-1.93924][0.401711,-0.142679,-0.904584][0.705255,0.696971,0][-0.631289,0.480876,-1.99932][0.401711,-0.142679,-0.904584][0.695315,0.687416,0][-0.514456,0.480876,-1.94743][0.40171,0.142681,-0.904583][0.821837,0.559761,0][-0.631289,0.480876,-1.99932][0.40171,0.142681,-0.904583][0.810602,0.559761,0][-0.534229,0.588469,-1.93924][0.40171,0.142681,-0.904583][0.820541,0.550207,0][-0.514456,0.480876,-1.94743][0.40171,0.142681,-0.904583][0.993222,0.126271,0][-0.631289,0.480876,-1.99932][0.40171,0.142681,-0.904583][0.981986,0.126271,0][-0.534229,0.588469,-1.93924][0.40171,0.142681,-0.904583][0.991926,0.116717,0][-0.590536,0.679682,-1.91592][0.114402,0.608098,-0.785576][0.982379,0.144768,0][-0.683533,0.617397,-1.97768][0.114402,0.608098,-0.785576][0.99359,0.145527,0][-0.674806,0.740629,-1.88101][0.114402,0.608098,-0.785576][0.983027,0.154388,0][-0.590536,0.679682,-1.91592][0.114402,0.608098,-0.785576][0.981986,0.0958342,0][-0.683533,0.617397,-1.97768][0.114402,0.608098,-0.785576][0.993196,0.0965935,0][-0.674806,0.740629,-1.88101][0.114402,0.608098,-0.785576][0.982634,0.105454,0][-0.809662,0.673946,-1.92543][-0.0475394,0.618563,-0.784296][0.52025,0.748182,0][-0.674806,0.740629,-1.88101][-0.0475394,0.618563,-0.784296][0.534037,0.748232,0][-0.683533,0.617397,-1.97768][-0.0475394,0.618563,-0.784296][0.526326,0.759661,0][-0.770034,0.614677,-1.97455][-0.0478163,0.618197,-0.784568][0.588022,0.914111,0][-0.809662,0.673946,-1.92543][-0.0478163,0.618197,-0.784568][0.581422,0.910323,0][-0.683533,0.617397,-1.97768][-0.0478163,0.618197,-0.784568][0.594405,0.909965,0][-0.809662,0.673946,-1.92543][-0.0475394,0.618563,-0.784296][0.728467,0.550207,0][-0.674806,0.740629,-1.88101][-0.0475394,0.618563,-0.784296][0.742254,0.550257,0][-0.683533,0.617397,-1.97768][-0.0475394,0.618563,-0.784296][0.734543,0.561686,0][-0.770034,0.614677,-1.97455][-0.0478163,0.618197,-0.784568][0.745573,0.813441,0][-0.809662,0.673946,-1.92543][-0.0478163,0.618197,-0.784568][0.738974,0.809653,0][-0.683533,0.617397,-1.97768][-0.0478163,0.618197,-0.784568][0.751957,0.809295,0][-0.957882,0.679682,-1.76376][-0.822798,0.406319,-0.397376][0.581422,0.760146,0][-0.935791,0.617397,-1.87319][-0.822798,0.406319,-0.397376][0.592654,0.760442,0][-1.01419,0.588469,-1.74044][-0.822798,0.406319,-0.397376][0.582466,0.769732,0][-0.957882,0.679682,-1.76376][-0.822798,0.406319,-0.397376][0.55262,0.809483,0][-0.935791,0.617397,-1.87319][-0.822798,0.406319,-0.397376][0.563852,0.809779,0][-1.01419,0.588469,-1.74044][-0.822798,0.406319,-0.397376][0.553664,0.819068,0][-0.935791,0.617397,-1.87319][-0.520965,0.618563,-0.588197][0.59441,0.687416,0][-0.873612,0.740629,-1.79867][-0.520965,0.618563,-0.588197][0.588038,0.699643,0][-0.809662,0.673946,-1.92543][-0.520965,0.618563,-0.588197][0.581422,0.687546,0][-0.872437,0.614666,-1.93213][-0.520962,0.618196,-0.588586][0.977646,0.60248,0][-0.935791,0.617397,-1.87319][-0.520962,0.618196,-0.588586][0.984177,0.606385,0][-0.809662,0.673946,-1.92543][-0.520962,0.618196,-0.588586][0.97119,0.606512,0][-0.935791,0.617397,-1.87319][-0.520965,0.618563,-0.588197][0.760951,0.574693,0][-0.873612,0.740629,-1.79867][-0.520965,0.618563,-0.588197][0.754579,0.586919,0][-0.809662,0.673946,-1.92543][-0.520965,0.618563,-0.588197][0.747964,0.574823,0][-0.872437,0.614666,-1.93213][-0.520962,0.618196,-0.588586][0.872841,0.687416,0][-0.935791,0.617397,-1.87319][-0.520962,0.618196,-0.588586][0.879373,0.691321,0][-0.809662,0.673946,-1.92543][-0.520962,0.618196,-0.588586][0.866385,0.691449,0][-1.03396,0.480876,-1.73225][-0.923689,-0.14268,-0.355586][0.63823,0.730922,0][-0.988036,0.480876,-1.85155][-0.923689,-0.14268,-0.355586][0.648716,0.730922,0][-1.01419,0.373283,-1.74044][-0.923689,-0.14268,-0.355586][0.63895,0.740378,0][-1.03396,0.480876,-1.73225][-0.923689,-0.14268,-0.355586][0.983925,0.48269,0][-0.988036,0.480876,-1.85155][-0.923689,-0.14268,-0.355586][0.99441,0.48269,0][-1.01419,0.373283,-1.74044][-0.923689,-0.14268,-0.355586][0.984644,0.492147,0][-1.03396,0.480876,-1.73225][-0.923689,0.14268,-0.355586][0.609426,0.836716,0][-1.01419,0.588469,-1.74044][-0.923689,0.14268,-0.355586][0.610146,0.827259,0][-0.988036,0.480876,-1.85155][-0.923689,0.14268,-0.355586][0.619912,0.836716,0][-1.03396,0.480876,-1.73225][-0.923689,0.14268,-0.355586][0.830408,0.611937,0][-1.01419,0.588469,-1.74044][-0.923689,0.14268,-0.355586][0.831128,0.60248,0][-0.988036,0.480876,-1.85155][-0.923689,0.14268,-0.355586][0.840893,0.611937,0][-0.988036,0.480876,-1.85155][-0.855729,0.256217,-0.449533][0.861604,0.514252,0][-1.01419,0.588469,-1.74044][-0.855729,0.256217,-0.449533][0.869269,0.525712,0][-0.935791,0.617397,-1.87319][-0.855729,0.256217,-0.449533][0.855482,0.525707,0][-0.94484,0.536283,-1.90214][-0.855527,0.256065,-0.450004][0.773501,0.832476,0][-0.988036,0.480876,-1.85155][-0.855527,0.256065,-0.450004][0.766978,0.828558,0][-0.935791,0.617397,-1.87319][-0.855527,0.256065,-0.450004][0.779965,0.828458,0][-0.988036,0.480876,-1.85155][-0.855729,0.256217,-0.449533][0.926465,0.48269,0][-1.01419,0.588469,-1.74044][-0.855729,0.256217,-0.449533][0.93413,0.49415,0][-0.935791,0.617397,-1.87319][-0.855729,0.256217,-0.449533][0.920343,0.494144,0][-0.94484,0.536283,-1.90214][-0.855527,0.256065,-0.450004][0.900912,0.691435,0][-0.988036,0.480876,-1.85155][-0.855527,0.256065,-0.450004][0.894389,0.687517,0][-0.935791,0.617397,-1.87319][-0.855527,0.256065,-0.450004][0.907377,0.687416,0][-0.957882,0.28207,-1.76376][-0.822799,-0.406319,-0.397376][0.768354,0.60248,0][-1.01419,0.373283,-1.74044][-0.822799,-0.406319,-0.397376][0.768407,0.612122,0][-0.935791,0.344355,-1.87319][-0.822799,-0.406319,-0.397376][0.757229,0.604052,0][-0.957882,0.28207,-1.76376][-0.822799,-0.406319,-0.397376][0.495964,0.862577,0][-1.01419,0.373283,-1.74044][-0.822799,-0.406319,-0.397376][0.496017,0.872219,0][-0.935791,0.344355,-1.87319][-0.822799,-0.406319,-0.397376][0.484839,0.864149,0][-0.957882,0.28207,-1.76376][-0.636379,-0.608098,-0.474593][0.620636,0.723513,0][-0.935791,0.344355,-1.87319][-0.636379,-0.608098,-0.474593][0.609426,0.722754,0][-0.873612,0.221123,-1.79867][-0.636378,-0.608098,-0.474593][0.619989,0.713893,0][-0.957882,0.28207,-1.76376][-0.636379,-0.608098,-0.474593][0.56383,0.773616,0][-0.935791,0.344355,-1.87319][-0.636379,-0.608098,-0.474593][0.55262,0.772857,0][-0.873612,0.221123,-1.79867][-0.636378,-0.608098,-0.474593][0.563183,0.763996,0][-0.774209,0.199722,-1.83984][-0.392808,-0.717301,-0.575483][0.586783,0.848745,0][-0.873612,0.221123,-1.79867][-0.392808,-0.717301,-0.575483][0.593901,0.85497,0][-0.809662,0.287806,-1.92543][-0.392808,-0.717301,-0.575483][0.581422,0.854874,0][-0.774209,0.199722,-1.83984][-0.392808,-0.717301,-0.575483][0.557981,0.898082,0][-0.873612,0.221123,-1.79867][-0.392808,-0.717301,-0.575483][0.565099,0.904307,0][-0.809662,0.287806,-1.92543][-0.392808,-0.717301,-0.575483][0.55262,0.904211,0][-0.590536,0.28207,-1.91592][0.1144,-0.608098,-0.785576][0.941504,0.52384,0][-0.674806,0.221123,-1.88101][0.1144,-0.608098,-0.785576][0.942528,0.514252,0][-0.683533,0.344355,-1.97768][0.1144,-0.608098,-0.785576][0.952735,0.52352,0][-0.590536,0.28207,-1.91592][0.1144,-0.608098,-0.785576][0.484839,0.893069,0][-0.674806,0.221123,-1.88101][0.1144,-0.608098,-0.785576][0.485863,0.883482,0][-0.683533,0.344355,-1.97768][0.1144,-0.608098,-0.785576][0.49607,0.89275,0][-0.774209,0.199722,-1.83984][-0.129171,-0.717302,-0.684685][0.248534,0.704036,0][-0.809662,0.287806,-1.92543][-0.129171,-0.717302,-0.684685][0.243294,0.697803,0][-0.674806,0.221123,-1.88101][-0.129171,-0.717302,-0.684685][0.255773,0.697951,0][-0.774209,0.199722,-1.83984][-0.129171,-0.717302,-0.684685][0.728372,0.133363,0][-0.809662,0.287806,-1.92543][-0.129171,-0.717302,-0.684685][0.723133,0.12713,0][-0.674806,0.221123,-1.88101][-0.129171,-0.717302,-0.684685][0.735611,0.127278,0][-0.590536,0.28207,-1.91592][0.30082,-0.406319,-0.862793][0.899336,0.584278,0][-0.683533,0.344355,-1.97768][0.30082,-0.406319,-0.862793][0.888104,0.583982,0][-0.534229,0.373283,-1.93924][0.30082,-0.406319,-0.862793][0.898292,0.574693,0][-0.590536,0.28207,-1.91592][0.30082,-0.406319,-0.862793][0.69815,0.719603,0][-0.683533,0.344355,-1.97768][0.30082,-0.406319,-0.862793][0.686919,0.719306,0][-0.534229,0.373283,-1.93924][0.30082,-0.406319,-0.862793][0.697107,0.710017,0][-0.697608,0.536283,-2.00455][0.287196,0.255951,-0.923043][0.538536,0.0129642,0][-0.683533,0.617397,-1.97768][0.287196,0.255951,-0.923043][0.542311,0.00635468,0][-0.534229,0.588469,-1.93924][0.287196,0.255951,-0.923043][0.55466,0.0124865,0][-0.631289,0.480876,-1.99932][0.28702,0.256409,-0.92297][0.410998,0.496716,0][-0.697608,0.536283,-2.00455][0.28702,0.256409,-0.92297][0.407339,0.490044,0][-0.534229,0.588469,-1.93924][0.28702,0.256409,-0.92297][0.423451,0.4908,0][-0.697608,0.536283,-2.00455][0.287196,0.255951,-0.923043][0.656703,0.0129642,0][-0.683533,0.617397,-1.97768][0.287196,0.255951,-0.923043][0.660478,0.00635468,0][-0.534229,0.588469,-1.93924][0.287196,0.255951,-0.923043][0.672826,0.0124865,0][-0.631289,0.480876,-1.99932][0.28702,0.256409,-0.92297][0.292831,0.496716,0][-0.697608,0.536283,-2.00455][0.28702,0.256409,-0.92297][0.289172,0.490044,0][-0.534229,0.588469,-1.93924][0.28702,0.256409,-0.92297][0.305285,0.4908,0][-0.872437,0.614666,-1.93213][-0.340989,0.454117,-0.823106][0.771815,0.67445,0][-0.809662,0.673946,-1.92543][-0.340989,0.454117,-0.823106][0.776687,0.668602,0][-0.770034,0.614677,-1.97455][-0.340989,0.454117,-0.823106][0.781557,0.674449,0][-0.872437,0.614666,-1.93213][-0.340989,0.454117,-0.823106][0.255369,0.752585,0][-0.809662,0.673946,-1.92543][-0.340989,0.454117,-0.823106][0.260241,0.746737,0][-0.770034,0.614677,-1.97455][-0.340989,0.454117,-0.823106][0.265111,0.752584,0][-0.770034,0.614677,-1.97455][-0.0443114,0.321084,-0.946013][0.713167,0.82006,0][-0.683533,0.617397,-1.97768][-0.0443114,0.321084,-0.946013][0.718043,0.814216,0][-0.697608,0.536283,-2.00455][-0.0443114,0.321084,-0.946013][0.722911,0.820066,0][-0.770034,0.614677,-1.97455][-0.0443114,0.321084,-0.946013][0.686919,0.818649,0][-0.683533,0.617397,-1.97768][-0.0443114,0.321084,-0.946013][0.691794,0.812804,0][-0.697608,0.536283,-2.00455][-0.0443114,0.321084,-0.946013][0.696663,0.818655,0][-0.94484,0.536283,-1.90214][-0.637641,0.321077,-0.700231][0.768384,0.875869,0][-0.935791,0.617397,-1.87319][-0.637641,0.321077,-0.700231][0.766978,0.868388,0][-0.872437,0.614666,-1.93213][-0.637641,0.321077,-0.700231][0.774587,0.868357,0][-0.94484,0.536283,-1.90214][-0.637641,0.321077,-0.700231][0.639636,0.793081,0][-0.935791,0.617397,-1.87319][-0.637641,0.321077,-0.700231][0.63823,0.7856,0][-0.872437,0.614666,-1.93213][-0.637641,0.321077,-0.700231][0.64584,0.78557,0][-0.935791,0.344355,-1.87319][-0.85573,-0.256217,-0.449533][0.725463,0.574693,0][-1.01419,0.373283,-1.74044][-0.85573,-0.256217,-0.449533][0.732947,0.586272,0][-0.988036,0.480876,-1.85155][-0.85573,-0.256217,-0.449533][0.719162,0.58605,0][-0.94483,0.425444,-1.90214][-0.855529,-0.256065,-0.450002][0.616034,0.894927,0][-0.935791,0.344355,-1.87319][-0.855529,-0.256065,-0.450002][0.609426,0.891153,0][-0.988036,0.480876,-1.85155][-0.855529,-0.256065,-0.450002][0.622409,0.890768,0][-0.935791,0.344355,-1.87319][-0.85573,-0.256217,-0.449533][0.804977,0.514252,0][-1.01419,0.373283,-1.74044][-0.85573,-0.256217,-0.449533][0.812461,0.525831,0][-0.988036,0.480876,-1.85155][-0.85573,-0.256217,-0.449533][0.798676,0.525609,0][-0.94483,0.425444,-1.90214][-0.855529,-0.256065,-0.450002][0.559228,0.946643,0][-0.935791,0.344355,-1.87319][-0.855529,-0.256065,-0.450002][0.55262,0.942869,0][-0.988036,0.480876,-1.85155][-0.855529,-0.256065,-0.450002][0.565603,0.942483,0][-0.94483,0.425444,-1.90214][-0.760498,-4.20981e-005,-0.649341][0.713167,0.840931,0][-0.988036,0.480876,-1.85155][-0.760498,-4.20981e-005,-0.649341][0.718039,0.835083,0][-0.94484,0.536283,-1.90214][-0.760498,-4.20981e-005,-0.649341][0.722909,0.84093,0][-0.94483,0.425444,-1.90214][-0.760498,-4.20981e-005,-0.649341][0.766978,0.853341,0][-0.988036,0.480876,-1.85155][-0.760498,-4.20981e-005,-0.649341][0.77185,0.847493,0][-0.94484,0.536283,-1.90214][-0.760498,-4.20981e-005,-0.649341][0.77672,0.85334,0][-0.809662,0.287806,-1.92543][-0.520966,-0.618563,-0.588196][0.676544,0.613959,0][-0.873612,0.221123,-1.79867][-0.520966,-0.618563,-0.588196][0.662757,0.61391,0][-0.935791,0.344355,-1.87319][-0.520966,-0.618563,-0.588196][0.670468,0.60248,0][-0.872414,0.347075,-1.93214][-0.520963,-0.618196,-0.588584][0.949573,0.60248,0][-0.809662,0.287806,-1.92543][-0.520963,-0.618196,-0.588584][0.956173,0.606268,0][-0.935791,0.344355,-1.87319][-0.520963,-0.618196,-0.588584][0.94319,0.606626,0][-0.809662,0.287806,-1.92543][-0.520966,-0.618563,-0.588196][0.471891,0.99456,0][-0.873612,0.221123,-1.79867][-0.520966,-0.618563,-0.588196][0.458104,0.994511,0][-0.935791,0.344355,-1.87319][-0.520966,-0.618563,-0.588196][0.465815,0.983082,0][-0.872414,0.347075,-1.93214][-0.520963,-0.618196,-0.588584][0.844769,0.687416,0][-0.809662,0.287806,-1.92543][-0.520963,-0.618196,-0.588584][0.851369,0.691205,0][-0.935791,0.344355,-1.87319][-0.520963,-0.618196,-0.588584][0.838386,0.691563,0][-0.683533,0.344355,-1.97768][-0.047539,-0.618563,-0.784296][0.892339,0.494916,0][-0.674806,0.221123,-1.88101][-0.047539,-0.618563,-0.784296][0.898711,0.48269,0][-0.809662,0.287806,-1.92543][-0.047539,-0.618563,-0.784296][0.905326,0.494786,0][-0.770011,0.347086,-1.97456][-0.0478165,-0.618196,-0.784569][0.883677,0.714049,0][-0.683533,0.344355,-1.97768][-0.0478165,-0.618196,-0.784569][0.877146,0.710145,0][-0.809662,0.287806,-1.92543][-0.0478165,-0.618196,-0.784569][0.890133,0.710017,0][-0.683533,0.344355,-1.97768][-0.047539,-0.618563,-0.784296][0.827478,0.526479,0][-0.674806,0.221123,-1.88101][-0.047539,-0.618563,-0.784296][0.83385,0.514252,0][-0.809662,0.287806,-1.92543][-0.047539,-0.618563,-0.784296][0.840465,0.526349,0][-0.770011,0.347086,-1.97456][-0.0478165,-0.618196,-0.784569][0.812837,0.775584,0][-0.683533,0.344355,-1.97768][-0.0478165,-0.618196,-0.784569][0.806306,0.771679,0][-0.809662,0.287806,-1.92543][-0.0478165,-0.618196,-0.784569][0.819293,0.771551,0][-0.631289,0.480876,-1.99932][0.287225,-0.256218,-0.92296][0.492503,0.825026,0][-0.534229,0.373283,-1.93924][0.287225,-0.256218,-0.92296][0.484839,0.813566,0][-0.683533,0.344355,-1.97768][0.287225,-0.256218,-0.92296][0.498626,0.813572,0][-0.697608,0.425469,-2.00455][0.286746,-0.256065,-0.923151][0.559085,0.980822,0][-0.631289,0.480876,-1.99932][0.286746,-0.256065,-0.923151][0.565608,0.98474,0][-0.683533,0.344355,-1.97768][0.286746,-0.256065,-0.923151][0.55262,0.98484,0][-0.631289,0.480876,-1.99932][0.287225,-0.256218,-0.92296][0.527914,0.782384,0][-0.534229,0.373283,-1.93924][0.287225,-0.256218,-0.92296][0.52025,0.770924,0][-0.683533,0.344355,-1.97768][0.287225,-0.256218,-0.92296][0.534037,0.770929,0][-0.697608,0.425469,-2.00455][0.286746,-0.256065,-0.923151][0.615891,0.929107,0][-0.631289,0.480876,-1.99932][0.286746,-0.256065,-0.923151][0.622414,0.933025,0][-0.683533,0.344355,-1.97768][0.286746,-0.256065,-0.923151][0.609426,0.933125,0][-0.697608,0.536283,-2.00455][0.0786305,0,-0.996904][0.619166,0.969009,0][-0.631289,0.480876,-1.99932][0.0786305,0,-0.996904][0.614296,0.974838,0][-0.697608,0.425469,-2.00455][0.0786305,0,-0.996904][0.609426,0.969009,0][-0.697608,0.536283,-2.00455][0.0786305,0,-0.996904][0.967652,0.710017,0][-0.631289,0.480876,-1.99932][0.0786305,0,-0.996904][0.962782,0.715846,0][-0.697608,0.425469,-2.00455][0.0786305,0,-0.996904][0.957912,0.710017,0][-0.697608,0.425469,-2.00455][-0.0442558,-0.321077,-0.946019][0.953356,0.687416,0][-0.683533,0.344355,-1.97768][-0.0442558,-0.321077,-0.946019][0.954762,0.694897,0][-0.770011,0.347086,-1.97456][-0.0442558,-0.321077,-0.946019][0.947152,0.694928,0][-0.697608,0.425469,-2.00455][-0.0442558,-0.321077,-0.946019][0.799023,0.668602,0][-0.683533,0.344355,-1.97768][-0.0442558,-0.321077,-0.946019][0.800429,0.676082,0][-0.770011,0.347086,-1.97456][-0.0442558,-0.321077,-0.946019][0.792819,0.676113,0][-0.770011,0.347086,-1.97456][-0.340909,-0.454116,-0.82314][0.844975,0.734594,0][-0.809662,0.287806,-1.92543][-0.340909,-0.454116,-0.82314][0.840103,0.740442,0][-0.872414,0.347075,-1.93214][-0.340909,-0.454116,-0.82314][0.835233,0.734595,0][-0.770011,0.347086,-1.97456][-0.340909,-0.454116,-0.82314][0.820746,0.753205,0][-0.809662,0.287806,-1.92543][-0.340909,-0.454116,-0.82314][0.815874,0.759053,0][-0.872414,0.347075,-1.93214][-0.340909,-0.454116,-0.82314][0.811004,0.753206,0][-0.872414,0.347075,-1.93214][-0.637586,-0.321139,-0.700252][0.932136,0.687422,0][-0.935791,0.344355,-1.87319][-0.637586,-0.321139,-0.700252][0.92726,0.693267,0][-0.94483,0.425444,-1.90214][-0.637586,-0.321139,-0.700252][0.922394,0.687416,0][-0.872414,0.347075,-1.93214][-0.637586,-0.321139,-0.700252][0.942896,0.710023,0][-0.935791,0.344355,-1.87319][-0.637586,-0.321139,-0.700252][0.93802,0.715867,0][-0.94483,0.425444,-1.90214][-0.637586,-0.321139,-0.700252][0.933154,0.710017,0][-0.770011,0.347086,-1.97456][-0.382684,2.17526e-006,-0.923879][0.86069,0.226021,0][-0.872414,0.347075,-1.93214][-0.382684,2.17526e-006,-0.923879][0.869577,0.230011,0][-0.697608,0.425469,-2.00455][-0.382684,2.17526e-006,-0.923879][0.851584,0.229483,0][-0.770011,0.347086,-1.97456][-0.382684,2.17526e-006,-0.923879][0.771131,0.274955,0][-0.872414,0.347075,-1.93214][-0.382684,2.17526e-006,-0.923879][0.780018,0.278945,0][-0.697608,0.425469,-2.00455][-0.382684,2.17526e-006,-0.923879][0.762025,0.278417,0][-0.697608,0.425469,-2.00455][-0.382683,-3.32055e-007,-0.92388][0.856566,0.3222,0][-0.872414,0.347075,-1.93214][-0.382683,-3.32055e-007,-0.92388][0.839936,0.32909,0][-0.94483,0.425444,-1.90214][-0.382683,-3.32055e-007,-0.92388][0.833047,0.322202,0][-0.697608,0.425469,-2.00455][-0.382683,-3.32055e-007,-0.92388][0.939668,0.418133,0][-0.872414,0.347075,-1.93214][-0.382683,-3.32055e-007,-0.92388][0.923038,0.425023,0][-0.94483,0.425444,-1.90214][-0.382683,-3.32055e-007,-0.92388][0.916149,0.418135,0][-0.697608,0.425469,-2.00455][-0.382683,-4.11672e-007,-0.92388][0.123108,0.993459,0][-0.94483,0.425444,-1.90214][-0.382683,-4.11672e-007,-0.92388][0.0995884,0.993461,0][-0.697608,0.536283,-2.00455][-0.382683,-4.11672e-007,-0.92388][0.123108,0.983719,0][-0.697608,0.425469,-2.00455][-0.382683,-4.11672e-007,-0.92388][0.0285193,0.994895,0][-0.94483,0.425444,-1.90214][-0.382683,-4.11672e-007,-0.92388][0.005,0.994897,0][-0.697608,0.536283,-2.00455][-0.382683,-4.11672e-007,-0.92388][0.0285193,0.985155,0][-0.697608,0.536283,-2.00455][-0.382683,6.51666e-007,-0.92388][0.201734,0.143679,0][-0.94483,0.425444,-1.90214][-0.382683,6.51666e-007,-0.92388][0.225253,0.133937,0][-0.94484,0.536283,-1.90214][-0.382683,6.51666e-007,-0.92388][0.225254,0.143679,0][-0.697608,0.536283,-2.00455][-0.382683,6.51666e-007,-0.92388][0.340887,0.293165,0][-0.94483,0.425444,-1.90214][-0.382683,6.51666e-007,-0.92388][0.350629,0.316685,0][-0.94484,0.536283,-1.90214][-0.382683,6.51666e-007,-0.92388][0.340887,0.316686,0][-0.697608,0.536283,-2.00455][-0.382683,-1.25585e-006,-0.92388][0.235944,0.993599,0][-0.94484,0.536283,-1.90214][-0.382683,-1.25585e-006,-0.92388][0.212423,0.993599,0][-0.770034,0.614677,-1.97455][-0.382683,-1.25585e-006,-0.92388][0.229053,0.986708,0][-0.697608,0.536283,-2.00455][-0.382683,-1.25585e-006,-0.92388][0.584217,0.633955,0][-0.94484,0.536283,-1.90214][-0.382683,-1.25585e-006,-0.92388][0.560697,0.633955,0][-0.770034,0.614677,-1.97455][-0.382683,-1.25585e-006,-0.92388][0.577327,0.627064,0][-0.770034,0.614677,-1.97455][-0.382684,2.08993e-006,-0.923879][0.384513,0.698825,0][-0.94484,0.536283,-1.90214][-0.382684,2.08993e-006,-0.923879][0.402506,0.699353,0][-0.872437,0.614666,-1.93213][-0.382684,2.08993e-006,-0.923879][0.3934,0.702816,0][-0.770034,0.614677,-1.97455][-0.382684,2.08993e-006,-0.923879][0.377641,0.747759,0][-0.94484,0.536283,-1.90214][-0.382684,2.08993e-006,-0.923879][0.395634,0.748287,0][-0.872437,0.614666,-1.93213][-0.382684,2.08993e-006,-0.923879][0.386528,0.75175,0][0.532863,0.588469,-1.93924][-0.768177,0.555571,-0.31819][0.791737,0.925785,0][0.585725,0.679682,-1.9076][-0.768177,0.555571,-0.31819][0.801378,0.924993,0][0.58917,0.679682,-1.91592][-0.768177,0.555571,-0.31819][0.801378,0.925785,0][0.529417,0.588469,-1.93092][-0.768179,0.555571,-0.318186][0.660671,0.930232,0][0.585725,0.679682,-1.9076][-0.768179,0.555571,-0.318186][0.670313,0.930232,0][0.532863,0.588469,-1.93924][-0.768179,0.555571,-0.318186][0.660671,0.931024,0][0.532863,0.588469,-1.93924][-0.768177,0.555571,-0.31819][0.925016,0.793159,0][0.585725,0.679682,-1.9076][-0.768177,0.555571,-0.31819][0.934658,0.792367,0][0.58917,0.679682,-1.91592][-0.768177,0.555571,-0.31819][0.934658,0.793159,0][0.529417,0.588469,-1.93092][-0.768179,0.555571,-0.318186][0.738974,0.940188,0][0.585725,0.679682,-1.9076][-0.768179,0.555571,-0.318186][0.748616,0.940188,0][0.532863,0.588469,-1.93924][-0.768179,0.555571,-0.318186][0.738974,0.94098,0][0.58917,0.679682,-1.91592][-0.513282,0.831469,-0.212606][0.85104,0.793159,0][0.669995,0.740629,-1.8727][-0.513282,0.831469,-0.212606][0.860682,0.792367,0][0.67344,0.740629,-1.88101][-0.513282,0.831469,-0.212606][0.860682,0.793159,0][0.585725,0.679682,-1.9076][-0.51328,0.831469,-0.212608][0.686919,0.921467,0][0.669995,0.740629,-1.8727][-0.51328,0.831469,-0.212608][0.696561,0.921467,0][0.58917,0.679682,-1.91592][-0.51328,0.831469,-0.212608][0.686919,0.922259,0][0.58917,0.679682,-1.91592][-0.513282,0.831469,-0.212606][0.845793,0.848284,0][0.669995,0.740629,-1.8727][-0.513282,0.831469,-0.212606][0.855435,0.847493,0][0.67344,0.740629,-1.88101][-0.513282,0.831469,-0.212606][0.855435,0.848284,0][0.585725,0.679682,-1.9076][-0.51328,0.831469,-0.212608][0.660671,0.94604,0][0.669995,0.740629,-1.8727][-0.51328,0.831469,-0.212608][0.670313,0.94604,0][0.58917,0.679682,-1.91592][-0.51328,0.831469,-0.212608][0.660671,0.946832,0][0.67344,0.740629,-1.88101][-0.18024,0.980785,-0.074658][0.738974,0.956788,0][0.769398,0.76203,-1.83152][-0.18024,0.980785,-0.074658][0.748616,0.955996,0][0.772843,0.76203,-1.83984][-0.18024,0.980785,-0.074658][0.748616,0.956788,0][0.669995,0.740629,-1.8727][-0.18024,0.980785,-0.0746571][0.713167,0.875454,0][0.769398,0.76203,-1.83152][-0.18024,0.980785,-0.0746571][0.722809,0.875454,0][0.67344,0.740629,-1.88101][-0.18024,0.980785,-0.0746571][0.713167,0.876246,0][0.67344,0.740629,-1.88101][-0.18024,0.980785,-0.074658][0.766978,0.948508,0][0.769398,0.76203,-1.83152][-0.18024,0.980785,-0.074658][0.77662,0.947717,0][0.772843,0.76203,-1.83984][-0.18024,0.980785,-0.074658][0.77662,0.948508,0][0.669995,0.740629,-1.8727][-0.18024,0.980785,-0.0746571][0.433387,0.698825,0][0.769398,0.76203,-1.83152][-0.18024,0.980785,-0.0746571][0.443029,0.698825,0][0.67344,0.740629,-1.88101][-0.18024,0.980785,-0.0746571][0.433387,0.699617,0][0.772843,0.76203,-1.83984][0.180239,0.980785,0.0746567][0.748616,0.908572,0][0.868801,0.740629,-1.79035][0.180239,0.980785,0.0746567][0.738974,0.909364,0][0.872246,0.740629,-1.79867][0.180239,0.980785,0.0746567][0.738974,0.908572,0][0.769398,0.76203,-1.83152][0.180239,0.980786,0.0746576][0.875354,0.878361,0][0.868801,0.740629,-1.79035][0.180239,0.980786,0.0746576][0.865713,0.878361,0][0.772843,0.76203,-1.83984][0.180239,0.980786,0.0746576][0.875354,0.877569,0][0.772843,0.76203,-1.83984][0.180239,0.980785,0.0746567][0.77662,0.900293,0][0.868801,0.740629,-1.79035][0.180239,0.980785,0.0746567][0.766978,0.901084,0][0.872246,0.740629,-1.79867][0.180239,0.980785,0.0746567][0.766978,0.900293,0][0.769398,0.76203,-1.83152][0.180239,0.980786,0.0746576][0.929411,0.848284,0][0.868801,0.740629,-1.79035][0.180239,0.980786,0.0746576][0.919769,0.848284,0][0.772843,0.76203,-1.83984][0.180239,0.980786,0.0746576][0.929411,0.847493,0][0.872246,0.740629,-1.79867][0.513279,0.83147,0.212609][0.927256,0.668602,0][0.95307,0.679682,-1.75544][0.513279,0.83147,0.212609][0.917615,0.669393,0][0.956516,0.679682,-1.76376][0.513279,0.83147,0.212609][0.917615,0.668602,0][0.868801,0.740629,-1.79035][0.513281,0.831469,0.212606][0.27391,0.124006,0][0.95307,0.679682,-1.75544][0.513281,0.831469,0.212606][0.27391,0.114364,0][0.872246,0.740629,-1.79867][0.513281,0.831469,0.212606][0.274701,0.124006,0][0.872246,0.740629,-1.79867][0.513279,0.83147,0.212609][0.931863,0.828458,0][0.95307,0.679682,-1.75544][0.513279,0.83147,0.212609][0.922221,0.829249,0][0.956516,0.679682,-1.76376][0.513279,0.83147,0.212609][0.922221,0.828458,0][0.868801,0.740629,-1.79035][0.513281,0.831469,0.212606][0.0910857,0.0146419,0][0.95307,0.679682,-1.75544][0.513281,0.831469,0.212606][0.0910857,0.005,0][0.872246,0.740629,-1.79867][0.513281,0.831469,0.212606][0.0918771,0.0146419,0][0.956516,0.679682,-1.76376][0.76818,0.55557,0.318184][0.230524,0.0559965,0][1.00938,0.588469,-1.73212][0.76818,0.55557,0.318184][0.240166,0.0552051,0][1.01282,0.588469,-1.74044][0.76818,0.55557,0.318184][0.240166,0.0559965,0][0.95307,0.679682,-1.75544][0.768177,0.555571,0.318191][0.928262,0.810086,0][1.00938,0.588469,-1.73212][0.768177,0.555571,0.318191][0.91862,0.810086,0][0.956516,0.679682,-1.76376][0.768177,0.555571,0.318191][0.928262,0.809295,0][0.956516,0.679682,-1.76376][0.76818,0.55557,0.318184][0.3025,0.067718,0][1.00938,0.588469,-1.73212][0.76818,0.55557,0.318184][0.312142,0.0669266,0][1.01282,0.588469,-1.74044][0.76818,0.55557,0.318184][0.312142,0.067718,0][0.95307,0.679682,-1.75544][0.768177,0.555571,0.318191][0.909999,0.793159,0][1.00938,0.588469,-1.73212][0.768177,0.555571,0.318191][0.900358,0.793159,0][0.956516,0.679682,-1.76376][0.768177,0.555571,0.318191][0.909999,0.792367,0][1.01282,0.588469,-1.74044][0.906128,0.195091,0.375328][0.877939,0.668602,0][1.02915,0.480876,-1.72393][0.906128,0.195091,0.375328][0.868297,0.669393,0][1.0326,0.480876,-1.73225][0.906128,0.195091,0.375328][0.868297,0.668602,0][1.00938,0.588469,-1.73212][0.90613,0.195091,0.375323][0.713252,0.954494,0][1.02915,0.480876,-1.72393][0.90613,0.195091,0.375323][0.722728,0.954871,0][1.01282,0.588469,-1.74044][0.90613,0.195091,0.375323][0.713167,0.95522,0][1.01282,0.588469,-1.74044][0.906128,0.195091,0.375328][0.882546,0.828458,0][1.02915,0.480876,-1.72393][0.906128,0.195091,0.375328][0.872904,0.829249,0][1.0326,0.480876,-1.73225][0.906128,0.195091,0.375328][0.872904,0.828458,0][1.00938,0.588469,-1.73212][0.90613,0.195091,0.375323][0.687003,0.953083,0][1.02915,0.480876,-1.72393][0.90613,0.195091,0.375323][0.69648,0.95346,0][1.01282,0.588469,-1.74044][0.90613,0.195091,0.375323][0.686919,0.953809,0][1.0326,0.480876,-1.73225][0.906129,-0.19509,0.375328][0.924309,0.878289,0][1.00938,0.373283,-1.73212][0.906129,-0.19509,0.375328][0.914852,0.8783,0][1.01282,0.373283,-1.74044][0.906129,-0.19509,0.375328][0.914852,0.877569,0][1.02915,0.480876,-1.72393][0.906129,-0.19509,0.375328][0.89965,0.894108,0][1.00938,0.373283,-1.73212][0.906129,-0.19509,0.375328][0.890193,0.893389,0][1.0326,0.480876,-1.73225][0.906129,-0.19509,0.375328][0.89965,0.893377,0][1.0326,0.480876,-1.73225][0.906129,-0.19509,0.375328][0.875011,0.909905,0][1.00938,0.373283,-1.73212][0.906129,-0.19509,0.375328][0.865554,0.909916,0][1.01282,0.373283,-1.74044][0.906129,-0.19509,0.375328][0.865554,0.909185,0][1.02915,0.480876,-1.72393][0.906129,-0.19509,0.375328][0.850511,0.925724,0][1.00938,0.373283,-1.73212][0.906129,-0.19509,0.375328][0.841054,0.925004,0][1.0326,0.480876,-1.73225][0.906129,-0.19509,0.375328][0.850511,0.924993,0][0.95307,0.28207,-1.75544][0.272585,-0.392848,0.878275][0.344032,0.832985,0][1.00938,0.373283,-1.73212][0.272585,-0.392848,0.878275][0.345319,0.82343,0][0.781119,0.400276,-1.6492][0.272585,-0.392848,0.878275][0.364612,0.832865,0][0.95307,0.28207,-1.75544][0.272585,-0.392848,0.878275][0.8276,0.30046,0][1.00938,0.373283,-1.73212][0.272585,-0.392848,0.878275][0.828887,0.290904,0][0.781119,0.400276,-1.6492][0.272585,-0.392848,0.878275][0.84818,0.300339,0][0.769398,0.199722,-1.83152][-0.14315,-0.69352,0.706073][0.884915,0.353496,0][0.868801,0.221123,-1.79035][-0.14315,-0.69352,0.706073][0.88375,0.363067,0][0.706654,0.36689,-1.68005][-0.14315,-0.69352,0.706073][0.864338,0.35388,0][0.769398,0.199722,-1.83152][-0.14315,-0.69352,0.706073][0.41682,0.88693,0][0.868801,0.221123,-1.79035][-0.14315,-0.69352,0.706073][0.415656,0.896502,0][0.706654,0.36689,-1.68005][-0.14315,-0.69352,0.706073][0.396243,0.887315,0][0.769398,0.199722,-1.83152][-0.398046,-0.69352,0.600491][0.365003,0.795671,0][0.706654,0.36689,-1.68005][-0.398046,-0.69352,0.600491][0.385398,0.79843,0][0.669995,0.221123,-1.8727][-0.398046,-0.69352,0.600491][0.365054,0.805313,0][0.769398,0.199722,-1.83152][-0.398046,-0.69352,0.600491][0.389954,0.943099,0][0.706654,0.36689,-1.68005][-0.398046,-0.69352,0.600491][0.410349,0.945858,0][0.669995,0.221123,-1.8727][-0.398046,-0.69352,0.600491][0.390005,0.952741,0][0.585725,0.28207,-1.9076][-0.633542,-0.587938,0.502946][0.484839,0.612048,0][0.669995,0.221123,-1.8727][-0.633542,-0.587938,0.502946][0.486036,0.60248,0][0.632189,0.400276,-1.71089][-0.633542,-0.587938,0.502946][0.505416,0.611734,0][0.585725,0.28207,-1.9076][-0.633542,-0.587938,0.502946][0.297566,0.805238,0][0.669995,0.221123,-1.8727][-0.633542,-0.587938,0.502946][0.298763,0.795671,0][0.632189,0.400276,-1.71089][-0.633542,-0.587938,0.502946][0.318144,0.804924,0][0.509645,0.480876,-1.93911][-0.911327,0.13795,0.387883][0.444302,0.952556,0][0.601345,0.480876,-1.72367][-0.911327,0.13795,0.387883][0.425365,0.952556,0][0.529417,0.588469,-1.93092][-0.911327,0.13795,0.387883][0.443582,0.943099,0][0.509645,0.480876,-1.93911][-0.911327,0.13795,0.387883][0.419351,0.805127,0][0.601345,0.480876,-1.72367][-0.911327,0.13795,0.387883][0.400414,0.805127,0][0.529417,0.588469,-1.93092][-0.911327,0.13795,0.387883][0.418631,0.795671,0][0.585725,0.679682,-1.9076][-0.633543,0.587938,0.502944][0.697505,0.48269,0][0.632189,0.561476,-1.71089][-0.633543,0.587938,0.502944][0.717909,0.485379,0][0.669995,0.740629,-1.8727][-0.633543,0.587938,0.502944][0.697589,0.492331,0][0.585725,0.679682,-1.9076][-0.633543,0.587938,0.502944][0.774659,0.450451,0][0.632189,0.561476,-1.71089][-0.633543,0.587938,0.502944][0.795062,0.45314,0][0.669995,0.740629,-1.8727][-0.633543,0.587938,0.502944][0.774742,0.460093,0][0.585725,0.679682,-1.9076][-0.813781,0.392849,0.428287][0.414286,0.918515,0][0.529417,0.588469,-1.93092][-0.813781,0.392849,0.428287][0.412999,0.92807,0][0.632189,0.561476,-1.71089][-0.813781,0.392849,0.428287][0.393706,0.918635,0][0.585725,0.679682,-1.9076][-0.813781,0.392849,0.428287][0.378692,0.943099,0][0.529417,0.588469,-1.93092][-0.813781,0.392849,0.428287][0.377405,0.952654,0][0.632189,0.561476,-1.71089][-0.813781,0.392849,0.428287][0.358112,0.943219,0][1.02915,0.480876,-1.72393][0.37013,0.13795,0.91868][0.411286,0.832886,0][1.00938,0.588469,-1.73212][0.37013,0.13795,0.91868][0.413024,0.82343,0][0.811963,0.480876,-1.63642][0.37013,0.13795,0.91868][0.430375,0.832886,0][1.02915,0.480876,-1.72393][0.37013,0.13795,0.91868][0.885797,0.427589,0][1.00938,0.588469,-1.73212][0.37013,0.13795,0.91868][0.887535,0.418133,0][0.811963,0.480876,-1.63642][0.37013,0.13795,0.91868][0.904886,0.427589,0][0.769398,0.76203,-1.83152][-0.398047,0.69352,0.60049][0.792006,0.300475,0][0.669995,0.740629,-1.8727][-0.398047,0.69352,0.60049][0.793171,0.290904,0][0.706654,0.594863,-1.68005][-0.398047,0.69352,0.600491][0.812583,0.300091,0][0.769398,0.76203,-1.83152][-0.398047,0.69352,0.60049][0.308439,0.833001,0][0.669995,0.740629,-1.8727][-0.398047,0.69352,0.60049][0.309603,0.82343,0][0.706654,0.594863,-1.68005][-0.398047,0.69352,0.600491][0.329016,0.832617,0][0.706654,0.594863,-1.68005][-0.520999,0.630085,0.575807][0.648827,0.675959,0][0.632189,0.561476,-1.71089][-0.520999,0.630085,0.575807][0.650988,0.668602,0][0.669074,0.480876,-1.58932][-0.520999,0.630085,0.575807][0.662051,0.675846,0][0.669995,0.740629,-1.8727][-0.520999,0.63004,0.575856][0.787414,0.514372,0][0.632189,0.561476,-1.71089][-0.520999,0.63004,0.575856][0.767264,0.521805,0][0.706654,0.594863,-1.68005][-0.520999,0.63004,0.575856][0.765937,0.514252,0][0.706654,0.594863,-1.68005][-0.520999,0.630085,0.575807][0.645998,0.65524,0][0.632189,0.561476,-1.71089][-0.520999,0.630085,0.575807][0.648158,0.647883,0][0.669074,0.480876,-1.58932][-0.520999,0.630085,0.575807][0.659221,0.655127,0][0.669995,0.740629,-1.8727][-0.520999,0.63004,0.575856][0.707899,0.574812,0][0.632189,0.561476,-1.71089][-0.520999,0.63004,0.575856][0.68775,0.582245,0][0.706654,0.594863,-1.68005][-0.520999,0.63004,0.575856][0.686423,0.574693,0][0.769398,0.76203,-1.83152][-0.14315,0.69352,0.706072][0.505233,0.657524,0][0.706654,0.594863,-1.68005][-0.14315,0.69352,0.706072][0.484839,0.654765,0][0.868801,0.740629,-1.79035][-0.14315,0.69352,0.706072][0.505182,0.647883,0][0.769398,0.76203,-1.83152][-0.14315,0.69352,0.706072][0.610171,0.584335,0][0.706654,0.594863,-1.68005][-0.14315,0.69352,0.706072][0.589777,0.581576,0][0.868801,0.740629,-1.79035][-0.14315,0.69352,0.706072][0.610121,0.574693,0][0.95307,0.679682,-1.75544][0.0923449,0.587938,0.803618][0.920509,0.353496,0][0.868801,0.740629,-1.79035][0.0923449,0.587938,0.803618][0.919312,0.363063,0][0.78112,0.561477,-1.6492][0.0923449,0.587938,0.803618][0.899932,0.35381,0][0.95307,0.679682,-1.75544][0.0923449,0.587938,0.803618][0.848474,0.385814,0][0.868801,0.740629,-1.79035][0.0923449,0.587938,0.803618][0.847277,0.395381,0][0.78112,0.561477,-1.6492][0.0923449,0.587938,0.803618][0.827897,0.386128,0][0.78112,0.561477,-1.6492][-0.0387557,0.630085,0.775558][0.533473,0.892087,0][0.706654,0.594863,-1.68005][-0.0387557,0.630085,0.775558][0.531283,0.899436,0][0.669074,0.480876,-1.58932][-0.0387557,0.630085,0.775558][0.52025,0.892146,0][0.868801,0.740629,-1.79035][-0.0387906,0.63004,0.775593][0.597281,0.609829,0][0.706654,0.594863,-1.68005][-0.0387906,0.63004,0.775593][0.617461,0.60248,0][0.78112,0.561477,-1.6492][-0.0387906,0.63004,0.775593][0.618756,0.610038,0][0.78112,0.561477,-1.6492][-0.0387557,0.630085,0.775558][0.726391,0.734594,0][0.706654,0.594863,-1.68005][-0.0387557,0.630085,0.775558][0.724201,0.741942,0][0.669074,0.480876,-1.58932][-0.0387557,0.630085,0.775558][0.713167,0.734653,0][0.868801,0.740629,-1.79035][-0.0387906,0.63004,0.775593][0.662991,0.557556,0][0.706654,0.594863,-1.68005][-0.0387906,0.63004,0.775593][0.68317,0.550207,0][0.78112,0.561477,-1.6492][-0.0387906,0.63004,0.775593][0.684466,0.557765,0][0.95307,0.679682,-1.75544][0.272585,0.392848,0.878276][0.686243,0.49233,0][0.78112,0.561477,-1.6492][0.272585,0.392848,0.878276][0.665815,0.489833,0][1.00938,0.588469,-1.73212][0.272585,0.392848,0.878276][0.686069,0.48269,0][0.95307,0.679682,-1.75544][0.272585,0.392848,0.878276][0.763396,0.460091,0][0.78112,0.561477,-1.6492][0.272585,0.392848,0.878276][0.742968,0.457594,0][1.00938,0.588469,-1.73212][0.272585,0.392848,0.878276][0.763222,0.450451,0][1.02915,0.480876,-1.72393][0.37013,-0.13795,0.91868][0.970947,0.353496,0][0.811963,0.480876,-1.63642][0.37013,-0.13795,0.91868][0.990036,0.353496,0][1.00938,0.373283,-1.73212][0.37013,-0.13795,0.91868][0.972684,0.362952,0][1.02915,0.480876,-1.72393][0.37013,-0.13795,0.91868][0.732926,0.48269,0][0.811963,0.480876,-1.63642][0.37013,-0.13795,0.91868][0.752015,0.48269,0][1.00938,0.373283,-1.73212][0.37013,-0.13795,0.91868][0.734664,0.492147,0][0.811963,0.480876,-1.63642][0.302245,0.260989,0.916806][0.713167,0.760289,0][0.78112,0.561477,-1.6492][0.302245,0.260989,0.916806][0.715878,0.753205,0][0.669074,0.480876,-1.58932][0.302245,0.260989,0.916806][0.725726,0.760289,0][1.00938,0.588469,-1.73212][0.302186,0.260971,0.916831][0.707435,0.60477,0][0.78112,0.561477,-1.6492][0.302186,0.260971,0.916831][0.687939,0.610064,0][0.811963,0.480876,-1.63642][0.302186,0.260971,0.916831][0.687807,0.60248,0][0.811963,0.480876,-1.63642][0.302245,0.260989,0.916806][0.239217,0.492822,0][0.78112,0.561477,-1.6492][0.302245,0.260989,0.916806][0.241928,0.485738,0][0.669074,0.480876,-1.58932][0.302245,0.260989,0.916806][0.251776,0.492822,0][1.00938,0.588469,-1.73212][0.302186,0.260971,0.916831][0.773144,0.552496,0][0.78112,0.561477,-1.6492][0.302186,0.260971,0.916831][0.753649,0.557791,0][0.811963,0.480876,-1.63642][0.302186,0.260971,0.916831][0.753516,0.550207,0][0.95307,0.28207,-1.75544][0.0923465,-0.587937,0.803618][0.883895,0.395456,0][0.781119,0.400276,-1.6492][0.0923465,-0.587937,0.803618][0.863491,0.392767,0][0.868801,0.221123,-1.79035][0.0923465,-0.587937,0.803618][0.883811,0.385814,0][0.95307,0.28207,-1.75544][0.0923465,-0.587937,0.803618][0.95593,0.363137,0][0.781119,0.400276,-1.6492][0.0923465,-0.587937,0.803618][0.935526,0.360448,0][0.868801,0.221123,-1.79035][0.0923465,-0.587937,0.803618][0.955846,0.353496,0][0.781119,0.400276,-1.6492][0.302246,-0.260988,0.916806][0.766617,0.717102,0][0.811963,0.480876,-1.63642][0.302246,-0.260988,0.916806][0.763906,0.710017,0][0.669074,0.480876,-1.58932][0.302246,-0.260988,0.916806][0.776465,0.710017,0][1.00938,0.373283,-1.73212][0.302186,-0.260969,0.916831][0.742212,0.609992,0][0.811963,0.480876,-1.63642][0.302186,-0.260969,0.916831][0.722451,0.609998,0][0.781119,0.400276,-1.6492][0.302186,-0.260969,0.916831][0.723459,0.60248,0][0.781119,0.400276,-1.6492][0.302246,-0.260988,0.916806][0.740364,0.741678,0][0.811963,0.480876,-1.63642][0.302246,-0.260988,0.916806][0.737653,0.734594,0][0.669074,0.480876,-1.58932][0.302246,-0.260988,0.916806][0.750212,0.734594,0][1.00938,0.373283,-1.73212][0.302186,-0.260969,0.916831][0.5046,0.847554,0][0.811963,0.480876,-1.63642][0.302186,-0.260969,0.916831][0.484839,0.847561,0][0.781119,0.400276,-1.6492][0.302186,-0.260969,0.916831][0.485846,0.840043,0][0.585725,0.28207,-1.9076][-0.813782,-0.392847,0.428288][0.803387,0.172527,0][0.632189,0.400276,-1.71089][-0.813782,-0.392847,0.428288][0.823815,0.175024,0][0.529417,0.373283,-1.93092][-0.813782,-0.392847,0.428288][0.803561,0.182167,0][0.585725,0.28207,-1.9076][-0.813782,-0.392847,0.428288][0.708798,0.221461,0][0.632189,0.400276,-1.71089][-0.813782,-0.392847,0.428288][0.729226,0.223958,0][0.529417,0.373283,-1.93092][-0.813782,-0.392847,0.428288][0.708972,0.231101,0][0.706654,0.36689,-1.68005][-0.0387543,-0.630084,0.775559][0.62265,0.80864,0][0.781119,0.400276,-1.6492][-0.0387543,-0.630084,0.775559][0.620489,0.815997,0][0.669074,0.480876,-1.58932][-0.0387543,-0.630084,0.775559][0.609426,0.808753,0][0.868801,0.221123,-1.79035][-0.0387888,-0.630039,0.775594][0.630019,0.609913,0][0.781119,0.400276,-1.6492][-0.0387888,-0.630039,0.775594][0.650168,0.60248,0][0.706654,0.36689,-1.68005][-0.0387888,-0.630039,0.775594][0.651495,0.610032,0][0.706654,0.36689,-1.68005][-0.0387543,-0.630084,0.775559][0.819145,0.60248,0][0.781119,0.400276,-1.6492][-0.0387543,-0.630084,0.775559][0.816985,0.609838,0][0.669074,0.480876,-1.58932][-0.0387543,-0.630084,0.775559][0.805922,0.602594,0][0.868801,0.221123,-1.79035][-0.0387888,-0.630039,0.775594][0.695728,0.55764,0][0.781119,0.400276,-1.6492][-0.0387888,-0.630039,0.775594][0.715878,0.550207,0][0.706654,0.36689,-1.68005][-0.0387888,-0.630039,0.775594][0.717205,0.557759,0][0.509645,0.480876,-1.93911][-0.911327,-0.137949,0.387883][0.644124,0.574693,0][0.529417,0.373283,-1.93092][-0.911327,-0.137949,0.387883][0.643405,0.58415,0][0.601345,0.480876,-1.72367][-0.911327,-0.137949,0.387883][0.625188,0.574693,0][0.509645,0.480876,-1.93911][-0.911327,-0.137949,0.387883][0.539186,0.647883,0][0.529417,0.373283,-1.93092][-0.911327,-0.137949,0.387883][0.538466,0.657339,0][0.601345,0.480876,-1.72367][-0.911327,-0.137949,0.387883][0.52025,0.647883,0][0.632189,0.400276,-1.71089][-0.521,-0.630084,0.575806][0.8331,0.557555,0][0.706654,0.36689,-1.68005][-0.521,-0.630084,0.575806][0.83529,0.550207,0][0.669074,0.480876,-1.58932][-0.521,-0.630084,0.575806][0.846324,0.557496,0][0.669995,0.221123,-1.8727][-0.521,-0.630039,0.575856][0.819536,0.482898,0][0.706654,0.36689,-1.68005][-0.521,-0.630039,0.575856][0.799356,0.490247,0][0.632189,0.400276,-1.71089][-0.521,-0.630039,0.575856][0.79806,0.48269,0][0.632189,0.400276,-1.71089][-0.521,-0.630084,0.575806][0.715148,0.634413,0][0.706654,0.36689,-1.68005][-0.521,-0.630084,0.575806][0.717339,0.627064,0][0.669074,0.480876,-1.58932][-0.521,-0.630084,0.575806][0.728372,0.634354,0][0.669995,0.221123,-1.8727][-0.521,-0.630039,0.575856][0.616955,0.627273,0][0.706654,0.36689,-1.68005][-0.521,-0.630039,0.575856][0.596775,0.634622,0][0.632189,0.400276,-1.71089][-0.521,-0.630039,0.575856][0.595479,0.627064,0][0.669074,0.480876,-1.58932][-0.862033,0.26085,0.434577][0.472352,0.134744,0][0.529417,0.588469,-1.93092][-0.862033,0.26085,0.434577][0.4715,0.100968,0][0.601345,0.480876,-1.72367][-0.862033,0.26085,0.434577][0.475865,0.121996,0][0.632189,0.561476,-1.71089][-0.861935,0.261104,0.434617][0.122189,0.0294024,0][0.529417,0.588469,-1.93092][-0.861935,0.261104,0.434617][0.100968,0.0261025,0][0.669074,0.480876,-1.58932][-0.861935,0.261104,0.434617][0.134744,0.0252505,0][0.669074,0.480876,-1.58932][-0.862033,0.26085,0.434577][0.0261018,0.336276,0][0.529417,0.588469,-1.93092][-0.862033,0.26085,0.434577][0.0252505,0.3025,0][0.601345,0.480876,-1.72367][-0.862033,0.26085,0.434577][0.0296156,0.323528,0][0.632189,0.561476,-1.71089][-0.861935,0.261104,0.434617][0.15972,0.0294024,0][0.529417,0.588469,-1.93092][-0.861935,0.261104,0.434617][0.138498,0.0261025,0][0.669074,0.480876,-1.58932][-0.861935,0.261104,0.434617][0.172275,0.0252505,0][0.601345,0.480876,-1.72367][-0.861999,-0.260988,0.43456][0.498062,0.953505,0][0.632189,0.400276,-1.71089][-0.861999,-0.260988,0.43456][0.495839,0.960843,0][0.669074,0.480876,-1.58932][-0.861999,-0.260988,0.43456][0.484839,0.953505,0][0.529417,0.373283,-1.93092][-0.861975,-0.26097,0.434619][0.964522,0.385814,0][0.632189,0.400276,-1.71089][-0.861975,-0.26097,0.434619][0.985998,0.38583,0][0.601345,0.480876,-1.72367][-0.861975,-0.26097,0.434619][0.984623,0.393374,0][0.601345,0.480876,-1.72367][-0.861999,-0.260988,0.43456][0.686537,0.668602,0][0.632189,0.400276,-1.71089][-0.861999,-0.260988,0.43456][0.684314,0.67594,0][0.669074,0.480876,-1.58932][-0.861999,-0.260988,0.43456][0.673313,0.668602,0][0.529417,0.373283,-1.93092][-0.861975,-0.26097,0.434619][0.729444,0.514252,0][0.632189,0.400276,-1.71089][-0.861975,-0.26097,0.434619][0.750921,0.514268,0][0.601345,0.480876,-1.72367][-0.861975,-0.26097,0.434619][0.749546,0.521812,0][0.58917,0.679682,-1.91592][-0.30082,0.406319,-0.862793][0.609426,0.75938,0][0.682167,0.617397,-1.97768][-0.30082,0.406319,-0.862793][0.620658,0.759676,0][0.532863,0.588469,-1.93924][-0.30082,0.406319,-0.862793][0.61047,0.768965,0][0.58917,0.679682,-1.91592][-0.30082,0.406319,-0.862793][0.52025,0.842909,0][0.682167,0.617397,-1.97768][-0.30082,0.406319,-0.862793][0.531481,0.843205,0][0.532863,0.588469,-1.93924][-0.30082,0.406319,-0.862793][0.521293,0.852494,0][0.772843,0.76203,-1.83984][0.129171,0.717301,-0.684685][0.592577,0.794389,0][0.808296,0.673946,-1.92543][0.129171,0.717301,-0.684685][0.581422,0.793044,0][0.67344,0.740629,-1.88101][0.129171,0.717301,-0.684685][0.592434,0.784748,0][0.772843,0.76203,-1.83984][0.129171,0.717301,-0.684685][0.671826,0.744262,0][0.808296,0.673946,-1.92543][0.129171,0.717301,-0.684685][0.660671,0.742917,0][0.67344,0.740629,-1.88101][0.129171,0.717301,-0.684685][0.671683,0.734621,0][0.772843,0.76203,-1.83984][0.392808,0.717301,-0.575484][0.713167,0.719577,0][0.872246,0.740629,-1.79867][0.392808,0.717301,-0.575484][0.714423,0.710017,0][0.808296,0.673946,-1.92543][0.392808,0.717301,-0.575484][0.724403,0.71953,0][0.772843,0.76203,-1.83984][0.392808,0.717301,-0.575484][0.914353,0.584253,0][0.872246,0.740629,-1.79867][0.392808,0.717301,-0.575484][0.915609,0.574693,0][0.808296,0.673946,-1.92543][0.392808,0.717301,-0.575484][0.925589,0.584205,0][0.956516,0.679682,-1.76376][0.636379,0.608098,-0.474593][0.168145,0.473903,0][0.934426,0.617397,-1.87319][0.636379,0.608098,-0.474593][0.168904,0.462693,0][0.872246,0.740629,-1.79867][0.636379,0.608098,-0.474593][0.177765,0.473256,0][0.956516,0.679682,-1.76376][0.636379,0.608098,-0.474593][0.473903,0.31212,0][0.934426,0.617397,-1.87319][0.636379,0.608098,-0.474593][0.462693,0.311361,0][0.872246,0.740629,-1.79867][0.636379,0.608098,-0.474593][0.473256,0.3025,0][1.01282,0.373283,-1.74044][0.768176,-0.555571,0.318192][0.878945,0.809295,0][0.95307,0.28207,-1.75544][0.768176,-0.555571,0.318192][0.869303,0.810086,0][0.956516,0.28207,-1.76376][0.768176,-0.555571,0.318192][0.869303,0.809295,0][1.00938,0.373283,-1.73212][0.768178,-0.555571,0.318187][0.722809,0.907862,0][0.95307,0.28207,-1.75544][0.768178,-0.555571,0.318187][0.713167,0.907862,0][1.01282,0.373283,-1.74044][0.768178,-0.555571,0.318187][0.722809,0.90707,0][1.01282,0.373283,-1.74044][0.768176,-0.555571,0.318192][0.975149,0.627064,0][0.95307,0.28207,-1.75544][0.768176,-0.555571,0.318192][0.965507,0.627856,0][0.956516,0.28207,-1.76376][0.768176,-0.555571,0.318192][0.965507,0.627064,0][1.00938,0.373283,-1.73212][0.768178,-0.555571,0.318187][0.696561,0.906451,0][0.95307,0.28207,-1.75544][0.768178,-0.555571,0.318187][0.686919,0.906451,0][1.01282,0.373283,-1.74044][0.768178,-0.555571,0.318187][0.696561,0.905659,0][0.956516,0.28207,-1.76376][0.513281,-0.831469,0.212609][0.888616,0.925646,0][0.868801,0.221123,-1.79035][0.513281,-0.831469,0.212609][0.89664,0.924933,0][0.872246,0.221123,-1.79867][0.513281,-0.831469,0.212609][0.896633,0.925725,0][0.95307,0.28207,-1.75544][0.513281,-0.831469,0.21261][0.939333,0.877569,0][0.868801,0.221123,-1.79035][0.513281,-0.831469,0.21261][0.947349,0.877648,0][0.956516,0.28207,-1.76376][0.513281,-0.831469,0.21261][0.939325,0.878361,0][0.956516,0.28207,-1.76376][0.513281,-0.831469,0.212609][0.865554,0.941453,0][0.868801,0.221123,-1.79035][0.513281,-0.831469,0.212609][0.873578,0.94074,0][0.872246,0.221123,-1.79867][0.513281,-0.831469,0.212609][0.873571,0.941532,0][0.95307,0.28207,-1.75544][0.513281,-0.831469,0.21261][0.791744,0.972417,0][0.868801,0.221123,-1.79035][0.513281,-0.831469,0.21261][0.799761,0.972495,0][0.956516,0.28207,-1.76376][0.513281,-0.831469,0.21261][0.791737,0.973208,0][0.872246,0.221123,-1.79867][0.18024,-0.980785,0.0746582][0.791737,0.9415,0][0.769398,0.199722,-1.83152][0.18024,-0.980785,0.0746583][0.801201,0.940801,0][0.772843,0.199722,-1.83984][0.18024,-0.980785,0.0746582][0.801193,0.941593,0][0.868801,0.221123,-1.79035][0.18024,-0.980785,0.0746582][0.967945,0.809295,0][0.769398,0.199722,-1.83152][0.18024,-0.980785,0.0746582][0.977401,0.809388,0][0.872246,0.221123,-1.79867][0.18024,-0.980785,0.0746583][0.967937,0.810086,0][0.872246,0.221123,-1.79867][0.18024,-0.980785,0.0746582][0.944427,0.848191,0][0.769398,0.199722,-1.83152][0.18024,-0.980785,0.0746583][0.953891,0.847493,0][0.772843,0.199722,-1.83984][0.18024,-0.980785,0.0746582][0.953883,0.848284,0][0.868801,0.221123,-1.79035][0.18024,-0.980785,0.0746582][0.949683,0.792367,0][0.769398,0.199722,-1.83152][0.18024,-0.980785,0.0746582][0.959139,0.79246,0][0.872246,0.221123,-1.79867][0.18024,-0.980785,0.0746583][0.949675,0.793159,0][0.772843,0.199722,-1.83984][-0.180239,-0.980786,-0.0746572][0.865713,0.894076,0][0.669995,0.221123,-1.8727][-0.180239,-0.980786,-0.0746572][0.875176,0.893377,0][0.67344,0.221123,-1.88101][-0.180239,-0.980786,-0.0746572][0.875169,0.894169,0][0.769398,0.199722,-1.83152][-0.180239,-0.980785,-0.0746578][0.971546,0.828458,0][0.669995,0.221123,-1.8727][-0.180239,-0.980785,-0.0746578][0.981002,0.82855,0][0.772843,0.199722,-1.83984][-0.180239,-0.980785,-0.0746578][0.971538,0.829249,0][0.772843,0.199722,-1.83984][-0.180239,-0.980786,-0.0746572][0.890371,0.878268,0][0.669995,0.221123,-1.8727][-0.180239,-0.980786,-0.0746572][0.899835,0.877569,0][0.67344,0.221123,-1.88101][-0.180239,-0.980786,-0.0746572][0.899827,0.878361,0][0.769398,0.199722,-1.83152][-0.180239,-0.980785,-0.0746578][0.966781,0.668602,0][0.669995,0.221123,-1.8727][-0.180239,-0.980785,-0.0746578][0.976237,0.668694,0][0.772843,0.199722,-1.83984][-0.180239,-0.980785,-0.0746578][0.966773,0.669393,0][0.67344,0.221123,-1.88101][-0.513281,-0.83147,-0.212606][0.686919,0.985345,0][0.585725,0.28207,-1.9076][-0.513281,-0.83147,-0.212606][0.694943,0.984633,0][0.58917,0.28207,-1.91592][-0.513281,-0.83147,-0.212606][0.694935,0.985424,0][0.669995,0.221123,-1.8727][-0.513281,-0.83147,-0.212604][0.816403,0.972356,0][0.585725,0.28207,-1.9076][-0.513281,-0.83147,-0.212604][0.824419,0.972434,0][0.67344,0.221123,-1.88101][-0.513281,-0.83147,-0.212604][0.816395,0.973147,0][0.67344,0.221123,-1.88101][-0.513281,-0.83147,-0.212606][0.713167,0.986757,0][0.585725,0.28207,-1.9076][-0.513281,-0.83147,-0.212606][0.721191,0.986044,0][0.58917,0.28207,-1.91592][-0.513281,-0.83147,-0.212606][0.721184,0.986835,0][0.669995,0.221123,-1.8727][-0.513281,-0.83147,-0.212604][0.841062,0.956548,0][0.585725,0.28207,-1.9076][-0.513281,-0.83147,-0.212604][0.849078,0.956626,0][0.67344,0.221123,-1.88101][-0.513281,-0.83147,-0.212604][0.841054,0.957339,0][0.58917,0.28207,-1.91592][-0.768178,-0.55557,-0.318188][0.93002,0.648674,0][0.529417,0.373283,-1.93092][-0.768178,-0.55557,-0.318188][0.939662,0.647883,0][0.532863,0.373283,-1.93924][-0.768178,-0.55557,-0.318188][0.939662,0.648674,0][0.585725,0.28207,-1.9076][-0.768179,-0.55557,-0.318187][0.942737,0.753205,0][0.529417,0.373283,-1.93092][-0.768179,-0.55557,-0.318187][0.952379,0.753205,0][0.58917,0.28207,-1.91592][-0.768179,-0.55557,-0.318187][0.942737,0.753996,0][0.58917,0.28207,-1.91592][-0.768178,-0.55557,-0.318188][0.935251,0.772343,0][0.529417,0.373283,-1.93092][-0.768178,-0.55557,-0.318188][0.944893,0.771551,0][0.532863,0.373283,-1.93924][-0.768178,-0.55557,-0.318188][0.944893,0.772343,0][0.585725,0.28207,-1.9076][-0.768179,-0.55557,-0.318187][0.966966,0.734594,0][0.529417,0.373283,-1.93092][-0.768179,-0.55557,-0.318187][0.976608,0.734594,0][0.58917,0.28207,-1.91592][-0.768179,-0.55557,-0.318187][0.966966,0.735385,0][0.532863,0.373283,-1.93924][-0.906128,-0.195091,-0.375328][0.89511,0.848284,0][0.509645,0.480876,-1.93911][-0.906128,-0.195091,-0.375328][0.904752,0.847493,0][0.51309,0.480876,-1.94743][-0.906128,-0.195091,-0.375328][0.904752,0.848284,0][0.529417,0.373283,-1.93092][-0.906128,-0.195091,-0.375329][0.686919,0.889851,0][0.509645,0.480876,-1.93911][-0.906128,-0.195091,-0.375329][0.696561,0.889851,0][0.532863,0.373283,-1.93924][-0.906128,-0.195091,-0.375329][0.686919,0.890643,0][0.532863,0.373283,-1.93924][-0.906128,-0.195091,-0.375328][0.841054,0.878361,0][0.509645,0.480876,-1.93911][-0.906128,-0.195091,-0.375328][0.850696,0.877569,0][0.51309,0.480876,-1.94743][-0.906128,-0.195091,-0.375328][0.850696,0.878361,0][0.529417,0.373283,-1.93092][-0.906128,-0.195091,-0.375329][0.451175,0.747759,0][0.509645,0.480876,-1.93911][-0.906128,-0.195091,-0.375329][0.460817,0.747759,0][0.532863,0.373283,-1.93924][-0.906128,-0.195091,-0.375329][0.451175,0.748551,0][0.51309,0.480876,-1.94743][-0.906129,0.19509,-0.375327][0.660671,0.915216,0][0.529417,0.588469,-1.93092][-0.906129,0.19509,-0.375327][0.670313,0.914424,0][0.532863,0.588469,-1.93924][-0.906129,0.19509,-0.375327][0.670313,0.915216,0][0.509645,0.480876,-1.93911][-0.906129,0.19509,-0.375328][0.766978,0.916101,0][0.529417,0.588469,-1.93092][-0.906129,0.19509,-0.375328][0.77662,0.916101,0][0.51309,0.480876,-1.94743][-0.906129,0.19509,-0.375328][0.766978,0.916892,0][0.51309,0.480876,-1.94743][-0.906129,0.19509,-0.375327][0.738974,0.925172,0][0.529417,0.588469,-1.93092][-0.906129,0.19509,-0.375327][0.748616,0.92438,0][0.532863,0.588469,-1.93924][-0.906129,0.19509,-0.375327][0.748616,0.925172,0][0.509645,0.480876,-1.93911][-0.906129,0.19509,-0.375328][0.816395,0.877569,0][0.529417,0.588469,-1.93092][-0.906129,0.19509,-0.375328][0.826037,0.877569,0][0.51309,0.480876,-1.94743][-0.906129,0.19509,-0.375328][0.816395,0.878361,0][0.51309,0.480876,-1.94743][-0.40171,-0.14268,-0.904584][0.686919,0.734619,0][0.629923,0.480876,-1.99932][-0.40171,-0.14268,-0.904584][0.698154,0.734619,0][0.532863,0.373283,-1.93924][-0.40171,-0.14268,-0.904584][0.688215,0.744174,0][0.51309,0.480876,-1.94743][-0.40171,-0.14268,-0.904584][0.484839,0.932688,0][0.629923,0.480876,-1.99932][-0.40171,-0.14268,-0.904584][0.496074,0.932688,0][0.532863,0.373283,-1.93924][-0.40171,-0.14268,-0.904584][0.486135,0.942242,0][0.51309,0.480876,-1.94743][-0.40171,0.142681,-0.904584][0.69265,0.636619,0][0.532863,0.588469,-1.93924][-0.40171,0.142681,-0.904584][0.693946,0.627064,0][0.629923,0.480876,-1.99932][-0.40171,0.142681,-0.904584][0.703886,0.636619,0][0.51309,0.480876,-1.94743][-0.40171,0.142681,-0.904584][0.982379,0.175205,0][0.532863,0.588469,-1.93924][-0.40171,0.142681,-0.904584][0.983676,0.165651,0][0.629923,0.480876,-1.99932][-0.40171,0.142681,-0.904584][0.993615,0.175205,0][0.58917,0.679682,-1.91592][-0.114401,0.608098,-0.785576][0.563852,0.784879,0][0.67344,0.740629,-1.88101][-0.114401,0.608098,-0.785576][0.562828,0.794466,0][0.682167,0.617397,-1.97768][-0.114401,0.608098,-0.785576][0.55262,0.785198,0][0.58917,0.679682,-1.91592][-0.114401,0.608098,-0.785576][0.592654,0.735542,0][0.67344,0.740629,-1.88101][-0.114401,0.608098,-0.785576][0.59163,0.74513,0][0.682167,0.617397,-1.97768][-0.114401,0.608098,-0.785576][0.581422,0.735861,0][0.808296,0.673946,-1.92543][0.0475394,0.618563,-0.784296][0.932409,0.450581,0][0.682167,0.617397,-1.97768][0.0475394,0.618563,-0.784296][0.945396,0.450451,0][0.67344,0.740629,-1.88101][0.0475394,0.618563,-0.784296][0.939024,0.462677,0][0.768669,0.614677,-1.97455][0.0478163,0.618197,-0.784568][0.773427,0.809295,0][0.682167,0.617397,-1.97768][0.0478163,0.618197,-0.784568][0.779961,0.8132,0][0.808296,0.673946,-1.92543][0.0478163,0.618197,-0.784568][0.766974,0.813327,0][0.808296,0.673946,-1.92543][0.0475394,0.618563,-0.784296][0.925024,0.32233,0][0.682167,0.617397,-1.97768][0.0475394,0.618563,-0.784296][0.938011,0.3222,0][0.67344,0.740629,-1.88101][0.0475394,0.618563,-0.784296][0.931639,0.334426,0][0.768669,0.614677,-1.97455][0.0478163,0.618197,-0.784568][0.745427,0.828458,0][0.682167,0.617397,-1.97768][0.0478163,0.618197,-0.784568][0.751961,0.832362,0][0.808296,0.673946,-1.92543][0.0478163,0.618197,-0.784568][0.738974,0.83249,0][0.956516,0.679682,-1.76376][0.822799,0.40632,-0.397375][0.638283,0.719659,0][1.01282,0.588469,-1.74044][0.822799,0.40632,-0.397375][0.63823,0.710017,0][0.934426,0.617397,-1.87319][0.822799,0.40632,-0.397375][0.649408,0.718088,0][0.956516,0.679682,-1.76376][0.822799,0.40632,-0.397375][0.672927,0.697058,0][1.01282,0.588469,-1.74044][0.822799,0.40632,-0.397375][0.672875,0.687416,0][0.934426,0.617397,-1.87319][0.822799,0.40632,-0.397375][0.684053,0.695487,0][0.934426,0.617397,-1.87319][0.520965,0.618563,-0.588197][0.490915,0.802303,0][0.808296,0.673946,-1.92543][0.520965,0.618563,-0.588197][0.484839,0.790824,0][0.872246,0.740629,-1.79867][0.520965,0.618563,-0.588197][0.498625,0.790874,0][0.871071,0.614666,-1.93213][0.520962,0.618196,-0.588585][0.616028,0.91409,0][0.808296,0.673946,-1.92543][0.520962,0.618196,-0.588585][0.609426,0.910302,0][0.934426,0.617397,-1.87319][0.520962,0.618196,-0.588585][0.622409,0.909944,0][0.934426,0.617397,-1.87319][0.520965,0.618563,-0.588197][0.558697,0.752734,0][0.808296,0.673946,-1.92543][0.520965,0.618563,-0.588197][0.55262,0.741255,0][0.872246,0.740629,-1.79867][0.520965,0.618563,-0.588197][0.566407,0.741305,0][0.871071,0.614666,-1.93213][0.520962,0.618196,-0.588585][0.559223,0.965805,0][0.808296,0.673946,-1.92543][0.520962,0.618196,-0.588585][0.55262,0.962017,0][0.934426,0.617397,-1.87319][0.520962,0.618196,-0.588585][0.565603,0.961659,0][1.0326,0.480876,-1.73225][0.923689,-0.14268,-0.355585][0.473446,0.666507,0][1.01282,0.373283,-1.74044][0.923689,-0.14268,-0.355585][0.472727,0.675964,0][0.98667,0.480876,-1.85155][0.923689,-0.14268,-0.355585][0.462961,0.666507,0][1.0326,0.480876,-1.73225][0.923689,-0.14268,-0.355585][0.473183,0.795671,0][1.01282,0.373283,-1.74044][0.923689,-0.14268,-0.355585][0.472463,0.805127,0][0.98667,0.480876,-1.85155][0.923689,-0.14268,-0.355585][0.462698,0.795671,0][1.0326,0.480876,-1.73225][0.923689,0.14268,-0.355585][0.563106,0.886819,0][0.98667,0.480876,-1.85155][0.923689,0.14268,-0.355585][0.55262,0.886819,0][1.01282,0.588469,-1.74044][0.923689,0.14268,-0.355585][0.562386,0.877363,0][1.0326,0.480876,-1.73225][0.923689,0.14268,-0.355585][0.591908,0.837482,0][0.98667,0.480876,-1.85155][0.923689,0.14268,-0.355585][0.581422,0.837482,0][1.01282,0.588469,-1.74044][0.923689,0.14268,-0.355585][0.591188,0.828026,0][0.98667,0.480876,-1.85155][0.85573,0.256218,-0.449532][0.877322,0.482912,0][0.934426,0.617397,-1.87319][0.85573,0.256218,-0.449532][0.871022,0.494269,0][1.01282,0.588469,-1.74044][0.85573,0.256218,-0.449532][0.863537,0.48269,0][0.943474,0.536283,-1.90214][0.855527,0.256065,-0.450004][0.526622,0.971709,0][0.934426,0.617397,-1.87319][0.855527,0.256065,-0.450004][0.533232,0.975483,0][0.98667,0.480876,-1.85155][0.855527,0.256065,-0.450004][0.52025,0.975869,0][0.98667,0.480876,-1.85155][0.85573,0.256218,-0.449532][0.534035,0.721808,0][0.934426,0.617397,-1.87319][0.85573,0.256218,-0.449532][0.527734,0.733166,0][1.01282,0.588469,-1.74044][0.85573,0.256218,-0.449532][0.52025,0.721587,0][0.943474,0.536283,-1.90214][0.855527,0.256065,-0.450004][0.784679,0.771551,0][0.934426,0.617397,-1.87319][0.855527,0.256065,-0.450004][0.791289,0.775326,0][0.98667,0.480876,-1.85155][0.855527,0.256065,-0.450004][0.778307,0.775711,0][0.956516,0.28207,-1.76376][0.822799,-0.406319,-0.397375][0.978984,0.523838,0][0.934426,0.344355,-1.87319][0.822799,-0.406319,-0.397375][0.967752,0.523541,0][1.01282,0.373283,-1.74044][0.822799,-0.406319,-0.397375][0.97794,0.514252,0][0.956516,0.28207,-1.76376][0.822799,-0.406319,-0.397375][0.49607,0.917671,0][0.934426,0.344355,-1.87319][0.822799,-0.406319,-0.397375][0.484839,0.917375,0][1.01282,0.373283,-1.74044][0.822799,-0.406319,-0.397375][0.495027,0.908086,0][0.956516,0.28207,-1.76376][0.636379,-0.608099,-0.474592][0.861856,0.58428,0][0.872246,0.221123,-1.79867][0.636379,-0.608099,-0.474592][0.862881,0.574693,0][0.934426,0.344355,-1.87319][0.636379,-0.608099,-0.474592][0.873088,0.583961,0][0.956516,0.28207,-1.76376][0.636379,-0.608099,-0.474592][0.660671,0.719605,0][0.872246,0.221123,-1.79867][0.636379,-0.608099,-0.474592][0.661695,0.710017,0][0.934426,0.344355,-1.87319][0.636379,-0.608099,-0.474592][0.671902,0.719285,0][0.772843,0.199722,-1.83984][0.392809,-0.717301,-0.575482][0.235322,0.144302,0][0.808296,0.287806,-1.92543][0.392809,-0.717301,-0.575482][0.235402,0.13616,0][0.872246,0.221123,-1.79867][0.392809,-0.717301,-0.575482][0.244779,0.144395,0][0.772843,0.199722,-1.83984][0.392809,-0.717301,-0.575482][0.797184,0.71011,0][0.808296,0.287806,-1.92543][0.392809,-0.717301,-0.575482][0.797104,0.718252,0][0.872246,0.221123,-1.79867][0.392809,-0.717301,-0.575482][0.787727,0.710017,0][0.58917,0.28207,-1.91592][-0.1144,-0.608098,-0.785576][0.592632,0.72428,0][0.682167,0.344355,-1.97768][-0.1144,-0.608098,-0.785576][0.581422,0.72352,0][0.67344,0.221123,-1.88101][-0.1144,-0.608098,-0.785576][0.591985,0.714659,0][0.58917,0.28207,-1.91592][-0.1144,-0.608098,-0.785576][0.989287,0.33182,0][0.682167,0.344355,-1.97768][-0.1144,-0.608098,-0.785576][0.978077,0.331061,0][0.67344,0.221123,-1.88101][-0.1144,-0.608098,-0.785576][0.98864,0.3222,0][0.772843,0.199722,-1.83984][0.129171,-0.717302,-0.684685][0.581502,0.869987,0][0.67344,0.221123,-1.88101][0.129171,-0.717301,-0.684685][0.590958,0.87008,0][0.808296,0.287806,-1.92543][0.129171,-0.717301,-0.684685][0.581422,0.87813,0][0.772843,0.199722,-1.83984][0.129171,-0.717302,-0.684685][0.5527,0.919324,0][0.67344,0.221123,-1.88101][0.129171,-0.717301,-0.684685][0.562156,0.919417,0][0.808296,0.287806,-1.92543][0.129171,-0.717301,-0.684685][0.55262,0.927467,0][0.58917,0.28207,-1.91592][-0.30082,-0.406319,-0.862793][0.930189,0.514252,0][0.532863,0.373283,-1.93924][-0.30082,-0.406319,-0.862793][0.930241,0.523894,0][0.682167,0.344355,-1.97768][-0.30082,-0.406319,-0.862793][0.919063,0.515824,0][0.58917,0.28207,-1.91592][-0.30082,-0.406319,-0.862793][0.850541,0.574693,0][0.532863,0.373283,-1.93924][-0.30082,-0.406319,-0.862793][0.850594,0.584335,0][0.682167,0.344355,-1.97768][-0.30082,-0.406319,-0.862793][0.839416,0.576264,0][0.696242,0.536283,-2.00455][-0.287195,0.255951,-0.923043][0.297078,0.655075,0][0.532863,0.588469,-1.93924][-0.287195,0.255951,-0.923043][0.280949,0.6552,0][0.682167,0.617397,-1.97768][-0.287195,0.255951,-0.923043][0.293059,0.648611,0][0.629923,0.480876,-1.99932][-0.28702,0.256409,-0.92297][0.402166,0.995,0][0.532863,0.588469,-1.93924][-0.28702,0.256409,-0.92297][0.389954,0.988601,0][0.696242,0.536283,-2.00455][-0.28702,0.256409,-0.92297][0.406084,0.988477,0][0.696242,0.536283,-2.00455][-0.287195,0.255951,-0.923043][0.776917,0.0844025,0][0.532863,0.588469,-1.93924][-0.287195,0.255951,-0.923043][0.760787,0.0845275,0][0.682167,0.617397,-1.97768][-0.287195,0.255951,-0.923043][0.772898,0.0779387,0][0.629923,0.480876,-1.99932][-0.28702,0.256409,-0.92297][0.0836847,0.991678,0][0.532863,0.588469,-1.93924][-0.28702,0.256409,-0.92297][0.0714726,0.985279,0][0.696242,0.536283,-2.00455][-0.28702,0.256409,-0.92297][0.0876025,0.985155,0][0.871071,0.614666,-1.93213][0.340989,0.454117,-0.823106][0.473269,0.892778,0][0.768669,0.614677,-1.97455][0.340989,0.454117,-0.823106][0.463527,0.892777,0][0.808296,0.673946,-1.92543][0.340989,0.454117,-0.823106][0.468397,0.88693,0][0.871071,0.614666,-1.93213][0.340989,0.454117,-0.823106][0.84399,0.132978,0][0.768669,0.614677,-1.97455][0.340989,0.454117,-0.823106][0.834248,0.132977,0][0.808296,0.673946,-1.92543][0.340989,0.454117,-0.823106][0.839118,0.12713,0][0.768669,0.614677,-1.97455][0.0443114,0.321084,-0.946013][0.473539,0.484839,0][0.696242,0.536283,-2.00455][0.0443114,0.321084,-0.946013][0.467333,0.492351,0][0.682167,0.617397,-1.97768][0.0443114,0.321084,-0.946013][0.465928,0.48487,0][0.768669,0.614677,-1.97455][0.0443114,0.321084,-0.946013][0.7481,0.221461,0][0.696242,0.536283,-2.00455][0.0443114,0.321084,-0.946013][0.741894,0.228974,0][0.682167,0.617397,-1.97768][0.0443114,0.321084,-0.946013][0.740489,0.221493,0][0.943474,0.536283,-1.90214][0.637642,0.321078,-0.70023][0.619168,0.953993,0][0.871071,0.614666,-1.93213][0.637642,0.321078,-0.70023][0.609426,0.953986,0][0.934426,0.617397,-1.87319][0.637642,0.321078,-0.70023][0.6143,0.948142,0][0.943474,0.536283,-1.90214][0.637642,0.321078,-0.70023][0.748716,0.853357,0][0.871071,0.614666,-1.93213][0.637642,0.321078,-0.70023][0.738974,0.85335,0][0.934426,0.617397,-1.87319][0.637642,0.321078,-0.70023][0.743848,0.847506,0][0.934426,0.344355,-1.87319][0.85573,-0.256217,-0.449532][0.623213,0.687422,0][0.98667,0.480876,-1.85155][0.85573,-0.256217,-0.449532][0.617091,0.698877,0][1.01282,0.373283,-1.74044][0.85573,-0.256217,-0.449532][0.609426,0.687416,0][0.943464,0.425444,-1.90214][0.855528,-0.256065,-0.450003][0.840772,0.771551,0][0.98667,0.480876,-1.85155][0.855528,-0.256065,-0.450003][0.847297,0.77547,0][0.934426,0.344355,-1.87319][0.855528,-0.256065,-0.450003][0.83431,0.77557,0][0.934426,0.344355,-1.87319][0.85573,-0.256217,-0.449532][0.789755,0.574698,0][0.98667,0.480876,-1.85155][0.85573,-0.256217,-0.449532][0.783632,0.586153,0][1.01282,0.373283,-1.74044][0.85573,-0.256217,-0.449532][0.775968,0.574693,0][0.943464,0.425444,-1.90214][0.855528,-0.256065,-0.450003][0.911611,0.710017,0][0.98667,0.480876,-1.85155][0.855528,-0.256065,-0.450003][0.918137,0.713936,0][0.934426,0.344355,-1.87319][0.855528,-0.256065,-0.450003][0.90515,0.714036,0][0.943464,0.425444,-1.90214][0.760497,-4.27963e-005,-0.649342][0.660671,0.858322,0][0.943474,0.536283,-1.90214][0.760497,-4.27963e-005,-0.649342][0.670413,0.858323,0][0.98667,0.480876,-1.85155][0.760497,-4.27963e-005,-0.649342][0.665543,0.86417,0][0.943464,0.425444,-1.90214][0.760497,-4.27963e-005,-0.649342][0.686919,0.833672,0][0.943474,0.536283,-1.90214][0.760497,-4.27963e-005,-0.649342][0.696661,0.833673,0][0.98667,0.480876,-1.85155][0.760497,-4.27963e-005,-0.649342][0.691791,0.83952,0][0.808296,0.287806,-1.92543][0.520966,-0.618563,-0.588195][0.497826,0.775678,0][0.934426,0.344355,-1.87319][0.520966,-0.618563,-0.588195][0.484839,0.775808,0][0.872246,0.221123,-1.79867][0.520966,-0.618563,-0.588195][0.49121,0.763582,0][0.871048,0.347075,-1.93214][0.520963,-0.618196,-0.588584][0.869712,0.631096,0][0.934426,0.344355,-1.87319][0.520963,-0.618196,-0.588584][0.863178,0.627192,0][0.808296,0.287806,-1.92543][0.520963,-0.618196,-0.588584][0.876165,0.627064,0][0.808296,0.287806,-1.92543][0.520966,-0.618563,-0.588195][0.565608,0.726108,0][0.934426,0.344355,-1.87319][0.520966,-0.618563,-0.588195][0.55262,0.726238,0][0.872246,0.221123,-1.79867][0.520966,-0.618563,-0.588195][0.558992,0.714012,0][0.871048,0.347075,-1.93214][0.520963,-0.618196,-0.588584][0.834243,0.651915,0][0.934426,0.344355,-1.87319][0.520963,-0.618196,-0.588584][0.827709,0.64801,0][0.808296,0.287806,-1.92543][0.520963,-0.618196,-0.588584][0.840696,0.647883,0][0.682167,0.344355,-1.97768][0.047539,-0.618563,-0.784296][0.960739,0.3222,0][0.808296,0.287806,-1.92543][0.047539,-0.618563,-0.784296][0.966815,0.333679,0][0.67344,0.221123,-1.88101][0.047539,-0.618563,-0.784296][0.953028,0.333629,0][0.768645,0.347086,-1.97456][0.0478165,-0.618196,-0.784569][0.80609,0.647883,0][0.808296,0.287806,-1.92543][0.0478165,-0.618196,-0.784569][0.812692,0.651671,0][0.682167,0.344355,-1.97768][0.0478165,-0.618196,-0.784569][0.799709,0.652029,0][0.682167,0.344355,-1.97768][0.047539,-0.618563,-0.784296][0.968124,0.450451,0][0.808296,0.287806,-1.92543][0.047539,-0.618563,-0.784296][0.9742,0.46193,0][0.67344,0.221123,-1.88101][0.047539,-0.618563,-0.784296][0.960413,0.46188,0][0.768645,0.347086,-1.97456][0.0478165,-0.618196,-0.784569][0.841559,0.627064,0][0.808296,0.287806,-1.92543][0.0478165,-0.618196,-0.784569][0.848161,0.630852,0][0.682167,0.344355,-1.97768][0.0478165,-0.618196,-0.784569][0.835178,0.63121,0][0.629923,0.480876,-1.99932][-0.287225,-0.256218,-0.92296][0.484839,0.748343,0][0.682167,0.344355,-1.97768][-0.287225,-0.256218,-0.92296][0.491139,0.736986,0][0.532863,0.373283,-1.93924][-0.287225,-0.256218,-0.92296][0.498624,0.748565,0][0.696242,0.425469,-2.00455][-0.286746,-0.256065,-0.923151][0.960282,0.554366,0][0.682167,0.344355,-1.97768][-0.286746,-0.256065,-0.923151][0.953672,0.550592,0][0.629923,0.480876,-1.99932][-0.286746,-0.256065,-0.923151][0.966654,0.550207,0][0.629923,0.480876,-1.99932][-0.287225,-0.256218,-0.92296][0.55262,0.698774,0][0.682167,0.344355,-1.97768][-0.287225,-0.256218,-0.92296][0.558921,0.687416,0][0.532863,0.373283,-1.93924][-0.287225,-0.256218,-0.92296][0.566406,0.698995,0][0.696242,0.425469,-2.00455][-0.286746,-0.256065,-0.923151][0.855757,0.714177,0][0.682167,0.344355,-1.97768][-0.286746,-0.256065,-0.923151][0.849147,0.710402,0][0.629923,0.480876,-1.99932][-0.286746,-0.256065,-0.923151][0.862129,0.710017,0][0.696242,0.536283,-2.00455][-0.0786304,0,-0.996904][0.748714,0.874203,0][0.696242,0.425469,-2.00455][-0.0786304,0,-0.996904][0.738974,0.874203,0][0.629923,0.480876,-1.99932][-0.0786304,0,-0.996904][0.743844,0.868374,0][0.696242,0.536283,-2.00455][-0.0786304,0,-0.996904][0.591162,0.955824,0][0.696242,0.425469,-2.00455][-0.0786304,0,-0.996904][0.581422,0.955824,0][0.629923,0.480876,-1.99932][-0.0786304,0,-0.996904][0.586292,0.949995,0][0.696242,0.425469,-2.00455][0.0442558,-0.321077,-0.946019][0.660671,0.837454,0][0.768645,0.347086,-1.97456][0.0442558,-0.321077,-0.946019][0.670413,0.837461,0][0.682167,0.344355,-1.97768][0.0442558,-0.321077,-0.946019][0.665539,0.843305,0][0.696242,0.425469,-2.00455][0.0442558,-0.321077,-0.946019][0.581422,0.929127,0][0.768645,0.347086,-1.97456][0.0442558,-0.321077,-0.946019][0.591164,0.929134,0][0.682167,0.344355,-1.97768][0.0442558,-0.321077,-0.946019][0.586291,0.934978,0][0.768645,0.347086,-1.97456][0.340909,-0.454116,-0.82314][0.63823,0.768459,0][0.871048,0.347075,-1.93214][0.340909,-0.454116,-0.82314][0.647972,0.76846,0][0.808296,0.287806,-1.92543][0.340909,-0.454116,-0.82314][0.643102,0.774307,0][0.768645,0.347086,-1.97456][0.340909,-0.454116,-0.82314][0.981671,0.550207,0][0.871048,0.347075,-1.93214][0.340909,-0.454116,-0.82314][0.991413,0.550208,0][0.808296,0.287806,-1.92543][0.340909,-0.454116,-0.82314][0.986543,0.556055,0][0.871048,0.347075,-1.93214][0.637586,-0.321138,-0.700253][0.835077,0.180037,0][0.943464,0.425444,-1.90214][0.637586,-0.321138,-0.700253][0.841282,0.172527,0][0.934426,0.344355,-1.87319][0.637586,-0.321138,-0.700253][0.842689,0.180005,0][0.871048,0.347075,-1.93214][0.637586,-0.321138,-0.700253][0.985462,0.457961,0][0.943464,0.425444,-1.90214][0.637586,-0.321138,-0.700253][0.991667,0.450451,0][0.934426,0.344355,-1.87319][0.637586,-0.321138,-0.700253][0.993074,0.457929,0][0.768645,0.347086,-1.97456][0.382684,2.38103e-006,-0.923879][0.704007,0.647883,0][0.696242,0.425469,-2.00455][0.382684,2.38103e-006,-0.923879][0.71297,0.6517,0][0.871048,0.347075,-1.93214][0.382684,2.38103e-006,-0.923879][0.69497,0.651521,0][0.768645,0.347086,-1.97456][0.382684,2.38103e-006,-0.923879][0.493876,0.972106,0][0.696242,0.425469,-2.00455][0.382684,2.38103e-006,-0.923879][0.502839,0.975923,0][0.871048,0.347075,-1.93214][0.382684,2.38103e-006,-0.923879][0.484839,0.975745,0][0.696242,0.425469,-2.00455][0.382683,5.76299e-007,-0.92388][0.441638,0.82343,0][0.943464,0.425444,-1.90214][0.382683,5.76299e-007,-0.92388][0.465157,0.823432,0][0.871048,0.347075,-1.93214][0.382683,5.76299e-007,-0.92388][0.458268,0.83032,0][0.696242,0.425469,-2.00455][0.382683,5.76299e-007,-0.92388][0.925205,0.290904,0][0.943464,0.425444,-1.90214][0.382683,5.76299e-007,-0.92388][0.948724,0.290906,0][0.871048,0.347075,-1.93214][0.382683,5.76299e-007,-0.92388][0.941835,0.297794,0][0.696242,0.425469,-2.00455][0.382683,-4.11673e-007,-0.92388][0.51967,0.559947,0][0.696242,0.536283,-2.00455][0.382683,-4.11673e-007,-0.92388][0.51967,0.550207,0][0.943464,0.425444,-1.90214][0.382683,-4.11673e-007,-0.92388][0.54319,0.559949,0][0.696242,0.425469,-2.00455][0.382683,-4.11673e-007,-0.92388][0.447947,0.774115,0][0.696242,0.536283,-2.00455][0.382683,-4.11673e-007,-0.92388][0.447947,0.764375,0][0.943464,0.425444,-1.90214][0.382683,-4.11673e-007,-0.92388][0.471467,0.774117,0][0.696242,0.536283,-2.00455][0.382683,-3.41983e-007,-0.92388][0.674015,0.221461,0][0.943474,0.536283,-1.90214][0.382683,-3.41983e-007,-0.92388][0.697536,0.221461,0][0.943464,0.425444,-1.90214][0.382683,-3.41983e-007,-0.92388][0.697535,0.231203,0][0.696242,0.536283,-2.00455][0.382683,-3.41983e-007,-0.92388][0.768604,0.172527,0][0.943474,0.536283,-1.90214][0.382683,-3.41983e-007,-0.92388][0.792124,0.172527,0][0.943464,0.425444,-1.90214][0.382683,-3.41983e-007,-0.92388][0.792123,0.182269,0][0.696242,0.536283,-2.00455][0.382683,-1.34109e-006,-0.92388][0.763278,0.48958,0][0.768669,0.614677,-1.97455][0.382683,-1.34109e-006,-0.92388][0.770168,0.48269,0][0.943474,0.536283,-1.90214][0.382683,-1.34109e-006,-0.92388][0.786798,0.48958,0][0.696242,0.536283,-2.00455][0.382683,-1.34109e-006,-0.92388][0.840431,0.457341,0][0.768669,0.614677,-1.97455][0.382683,-1.34109e-006,-0.92388][0.847321,0.450451,0][0.943474,0.536283,-1.90214][0.382683,-1.34109e-006,-0.92388][0.863951,0.457341,0][0.768669,0.614677,-1.97455][0.382684,1.7989e-006,-0.923879][0.7603,0.687595,0][0.871071,0.614666,-1.93213][0.382684,1.7989e-006,-0.923879][0.751263,0.691233,0][0.943474,0.536283,-1.90214][0.382684,1.7989e-006,-0.923879][0.7423,0.687416,0][0.768669,0.614677,-1.97455][0.382684,1.7989e-006,-0.923879][0.875586,0.550385,0][0.871071,0.614666,-1.93213][0.382684,1.7989e-006,-0.923879][0.866549,0.554024,0][0.943474,0.536283,-1.90214][0.382684,1.7989e-006,-0.923879][0.857586,0.550207,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/fedora.mesh b/shareddata/charcustom/hats/fonts/fedora.mesh deleted file mode 100644 index 803821e..0000000 --- a/shareddata/charcustom/hats/fonts/fedora.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -750 -[0.433934,-0.214612,1.57339][0.0416511,-0.846715,0.530414][0.0447091,0.332522,0.961822][0.492908,-0.0288535,1.86529][0.0416511,-0.846715,0.530414][0.0426354,0.382081,1.06155][-1.0953e-006,-0.000336729,1.94952][0.0416511,-0.846715,0.530414][0,0.387327,1.06503][-1.0953e-006,-0.000336729,1.94952][0.0416511,-0.846715,0.530414][0,0.387327,1.06503][-1.14062e-006,-0.207374,1.64936][0.0853576,-0.820171,0.565715][0,0.334902,0.966632][0.433934,-0.214612,1.57339][0.0416511,-0.846715,0.530414][0.0447091,0.332522,0.961822][0.8263,-0.235708,1.35196][0.194325,-0.859589,0.472593][0.091096,0.325726,0.949456][0.937182,-0.0753461,1.59805][0.194325,-0.859589,0.472593][0.0875381,0.37092,1.03684][0.492908,-0.0288535,1.86529][0.0416511,-0.846715,0.530414][0.0426354,0.382081,1.06155][0.492908,-0.0288535,1.86529][0.0416511,-0.846715,0.530414][0.0426354,0.382081,1.06155][0.433934,-0.214612,1.57339][0.0416511,-0.846715,0.530414][0.0447091,0.332522,0.961822][0.8263,-0.235708,1.35196][0.194325,-0.859589,0.472593][0.091096,0.325726,0.949456][1.13846,-0.268807,1.00458][0.265295,-0.88656,0.378985][0.140562,0.315686,0.935326][1.28856,-0.148108,1.18186][0.265295,-0.88656,0.378985][0.136661,0.35371,1.00928][0.937182,-0.0753461,1.59805][0.194325,-0.859589,0.472593][0.0875381,0.37092,1.03684][0.937182,-0.0753461,1.59805][0.194325,-0.859589,0.472593][0.0875381,0.37092,1.03684][0.8263,-0.235708,1.35196][0.194325,-0.859589,0.472593][0.091096,0.325726,0.949456][1.13846,-0.268807,1.00458][0.265295,-0.88656,0.378985][0.140562,0.315686,0.935326][1.33952,-0.310611,0.563021][0.237418,-0.934573,0.264963][0.193821,0.304745,0.927704][1.51285,-0.239938,0.656993][0.237418,-0.934573,0.264963][0.19105,0.333724,0.995096][1.28856,-0.148108,1.18186][0.265295,-0.88656,0.378985][0.136661,0.35371,1.00928][1.28856,-0.148108,1.18186][0.265295,-0.88656,0.378985][0.136661,0.35371,1.00928][1.13846,-0.268807,1.00458][0.265295,-0.88656,0.378985][0.140562,0.315686,0.935326][1.33952,-0.310611,0.563021][0.237418,-0.934573,0.264963][0.193821,0.304745,0.927704][1.40864,-0.324531,0.0673282][0.235934,-0.966914,0.0970165][0.250248,0.300669,0.923827][1.5883,-0.280871,0.0655351][0.235934,-0.966914,0.0970165][0.2504,0.324716,0.990411][1.51285,-0.239938,0.656993][0.237418,-0.934573,0.264963][0.19105,0.333724,0.995096][1.51285,-0.239938,0.656993][0.237418,-0.934573,0.264963][0.19105,0.333724,0.995096][1.33952,-0.310611,0.563021][0.237418,-0.934573,0.264963][0.193821,0.304745,0.927704][1.40864,-0.324531,0.0673282][0.235934,-0.966914,0.0970165][0.250248,0.300669,0.923827][1.3374,-0.353775,-0.4232][0.143358,-0.986929,0.0736226][0.30618,0.29816,0.940127][1.50778,-0.336179,-0.519079][0.143358,-0.986929,0.0736226][0.309235,0.319527,1.01964][1.5883,-0.280871,0.0655351][0.235934,-0.966914,0.0970165][0.2504,0.324716,0.990411][1.5883,-0.280871,0.0655351][0.235934,-0.966914,0.0970165][0.2504,0.324716,0.990411][1.40864,-0.324531,0.0673282][0.235934,-0.966914,0.0970165][0.250248,0.300669,0.923827][1.3374,-0.353775,-0.4232][0.143358,-0.986929,0.0736226][0.30618,0.29816,0.940127][1.13416,-0.388519,-0.863428][0.0422912,-0.993558,0.105134][0.359557,0.297752,0.969603][1.28058,-0.401484,-1.04485][0.0422912,-0.993558,0.105134][0.363973,0.31753,1.0737][1.50778,-0.336179,-0.519079][0.143358,-0.986929,0.0736226][0.309235,0.319527,1.01964][1.50778,-0.336179,-0.519079][0.143358,-0.986929,0.0736226][0.309235,0.319527,1.01964][1.3374,-0.353775,-0.4232][0.143358,-0.986929,0.0736226][0.30618,0.29816,0.940127][1.13416,-0.388519,-0.863428][0.0422912,-0.993558,0.105134][0.359557,0.297752,0.969603][0.821267,-0.4316,-1.20536][-0.00558008,-0.979819,0.199809][0.408918,0.296703,1.00369][0.929139,-0.482877,-1.4538][-0.00558008,-0.979819,0.199809][0.412831,0.314354,1.13594][1.28058,-0.401484,-1.04485][0.0422912,-0.993558,0.105134][0.363973,0.31753,1.0737][1.28058,-0.401484,-1.04485][0.0422912,-0.993558,0.105134][0.363973,0.31753,1.0737][1.13416,-0.388519,-0.863428][0.0422912,-0.993558,0.105134][0.359557,0.297752,0.969603][0.821267,-0.4316,-1.20536][-0.00558008,-0.979819,0.199809][0.408918,0.296703,1.00369][0.430592,-0.459058,-1.42305][-0.0311948,-0.969049,0.24489][0.455299,0.296698,1.02815][0.487905,-0.535003,-1.71627][-0.0311948,-0.969049,0.24489][0.457552,0.313401,1.18088][0.929139,-0.482877,-1.4538][-0.00558008,-0.979819,0.199809][0.412831,0.314354,1.13594][0.929139,-0.482877,-1.4538][-0.00558008,-0.979819,0.199809][0.412831,0.314354,1.13594][0.821267,-0.4316,-1.20536][-0.00558008,-0.979819,0.199809][0.408918,0.296703,1.00369][0.430592,-0.459058,-1.42305][-0.0311948,-0.969049,0.24489][0.455299,0.296698,1.02815][-1.61581e-006,-0.468486,-1.4977][-0.0350084,-0.97518,0.218628][0.5,0.296803,1.03701][-1.66304e-006,-0.538607,-1.81047][-0.0350084,-0.97518,0.218628][0.5,0.315228,1.19469][0.487905,-0.535003,-1.71627][-0.0311948,-0.969049,0.24489][0.457552,0.313401,1.18088][0.487905,-0.535003,-1.71627][-0.0311948,-0.969049,0.24489][0.457552,0.313401,1.18088][0.430592,-0.459058,-1.42305][-0.0311948,-0.969049,0.24489][0.455299,0.296698,1.02815][-1.61581e-006,-0.468486,-1.4977][-0.0350084,-0.97518,0.218628][0.5,0.296803,1.03701][0.366843,-0.443389,-1.09101][0.0450597,-1.13394,0.0621626][0.451273,0.260722,0.885354][0.430592,-0.459058,-1.42305][-0.0311948,-0.969049,0.24489][0.455299,0.296698,1.02815][0.821267,-0.4316,-1.20536][-0.00558008,-0.979819,0.199809][0.408918,0.296703,1.00369][0.821267,-0.4316,-1.20536][-0.00558008,-0.979819,0.199809][0.408918,0.296703,1.00369][0.701259,-0.433194,-0.92457][0.0415446,-1.51244,0.00916701][0.402222,0.262074,0.881433][0.366843,-0.443389,-1.09101][0.0450597,-1.13394,0.0621626][0.451273,0.260722,0.885354][0.701259,-0.433194,-0.92457][0.0415446,-1.51244,0.00916701][0.402222,0.262074,0.881433][0.821267,-0.4316,-1.20536][-0.00558008,-0.979819,0.199809][0.408918,0.296703,1.00369][1.13416,-0.388519,-0.863428][0.0422912,-0.993558,0.105134][0.359557,0.297752,0.969603][1.13416,-0.388519,-0.863428][0.0422912,-0.993558,0.105134][0.359557,0.297752,0.969603][0.97118,-0.416818,-0.659306][0.161371,-1.46254,-0.0739112][0.352463,0.264094,0.874637][0.701259,-0.433194,-0.92457][0.0415446,-1.51244,0.00916701][0.402222,0.262074,0.881433][0.97118,-0.416818,-0.659306][0.161371,-1.46254,-0.0739112][0.352463,0.264094,0.874637][1.13416,-0.388519,-0.863428][0.0422912,-0.993558,0.105134][0.359557,0.297752,0.969603][1.3374,-0.353775,-0.4232][0.143358,-0.986929,0.0736226][0.30618,0.29816,0.940127][1.3374,-0.353775,-0.4232][0.143358,-0.986929,0.0736226][0.30618,0.29816,0.940127][1.14738,-0.395713,-0.31621][0.299652,-1.51291,-0.0608228][0.301617,0.26664,0.865619][0.97118,-0.416818,-0.659306][0.161371,-1.46254,-0.0739112][0.352463,0.264094,0.874637][1.14738,-0.395713,-0.31621][0.299652,-1.51291,-0.0608228][0.301617,0.26664,0.865619][1.3374,-0.353775,-0.4232][0.143358,-0.986929,0.0736226][0.30618,0.29816,0.940127][1.40864,-0.324531,0.0673282][0.235934,-0.966914,0.0970165][0.250248,0.300669,0.923827][1.40864,-0.324531,0.0673282][0.235934,-0.966914,0.0970165][0.250248,0.300669,0.923827][1.20821,-0.372272,0.0704272][0.39932,-1.67389,0.0386521][0.249881,0.26978,0.856429][1.14738,-0.395713,-0.31621][0.299652,-1.51291,-0.0608228][0.301617,0.26664,0.865619][1.20821,-0.372272,0.0704272][0.39932,-1.67389,0.0386521][0.249881,0.26978,0.856429][1.40864,-0.324531,0.0673282][0.235934,-0.966914,0.0970165][0.250248,0.300669,0.923827][1.33952,-0.310611,0.563021][0.237418,-0.934573,0.264963][0.193821,0.304745,0.927704][1.33952,-0.310611,0.563021][0.237418,-0.934573,0.264963][0.193821,0.304745,0.927704][1.14629,-0.349013,0.457512][0.288153,-1.88834,0.159563][0.198057,0.273512,0.849087][1.20821,-0.372272,0.0704272][0.39932,-1.67389,0.0386521][0.249881,0.26978,0.856429][1.14629,-0.349013,0.457512][0.288153,-1.88834,0.159563][0.198057,0.273512,0.849087][1.33952,-0.310611,0.563021][0.237418,-0.934573,0.264963][0.193821,0.304745,0.927704][1.13846,-0.268807,1.00458][0.265295,-0.88656,0.378985][0.140562,0.315686,0.935326][1.13846,-0.268807,1.00458][0.265295,-0.88656,0.378985][0.140562,0.315686,0.935326][0.970771,-0.328144,0.802014][0.335435,-1.93067,0.287854][0.147122,0.277456,0.844304][1.14629,-0.349013,0.457512][0.288153,-1.88834,0.159563][0.198057,0.273512,0.849087][0.970771,-0.328144,0.802014][0.335435,-1.93067,0.287854][0.147122,0.277456,0.844304][1.13846,-0.268807,1.00458][0.265295,-0.88656,0.378985][0.140562,0.315686,0.935326][0.8263,-0.235708,1.35196][0.194325,-0.859589,0.472593][0.091096,0.325726,0.949456][0.8263,-0.235708,1.35196][0.194325,-0.859589,0.472593][0.091096,0.325726,0.949456][0.702234,-0.31186,1.0693][0.271668,-1.88104,0.387536][0.0974552,0.280693,0.841072][0.970771,-0.328144,0.802014][0.335435,-1.93067,0.287854][0.147122,0.277456,0.844304][0.702234,-0.31186,1.0693][0.271668,-1.88104,0.387536][0.0974552,0.280693,0.841072][0.8263,-0.235708,1.35196][0.194325,-0.859589,0.472593][0.091096,0.325726,0.949456][0.433934,-0.214612,1.57339][0.0416511,-0.846715,0.530414][0.0447091,0.332522,0.961822][0.433934,-0.214612,1.57339][0.0416511,-0.846715,0.530414][0.0447091,0.332522,0.961822][0.36788,-0.301652,1.23742][0.161786,-1.78259,0.430005][0.0485671,0.282629,0.83875][0.702234,-0.31186,1.0693][0.271668,-1.88104,0.387536][0.0974552,0.280693,0.841072][0.36788,-0.301652,1.23742][0.161786,-1.78259,0.430005][0.0485671,0.282629,0.83875][0.433934,-0.214612,1.57339][0.0416511,-0.846715,0.530414][0.0447091,0.332522,0.961822][-1.14062e-006,-0.207374,1.64936][0.0853576,-0.820171,0.565715][0,0.334902,0.966632][-1.14062e-006,-0.207374,1.64936][0.0853576,-0.820171,0.565715][0,0.334902,0.966632][-1.19738e-006,-0.295632,1.27345][0.0107793,-1.62533,0.381605][0,0.280936,0.828276][0.36788,-0.301652,1.23742][0.161786,-1.78259,0.430005][0.0485671,0.282629,0.83875][-1.56043e-006,-0.440492,-1.1309][0.0084121,-0.970916,0.0740998][0.5,0.258931,0.877827][-1.61581e-006,-0.468486,-1.4977][-0.0350084,-0.97518,0.218628][0.5,0.296803,1.03701][0.430592,-0.459058,-1.42305][-0.0311948,-0.969049,0.24489][0.455299,0.296698,1.02815][0.430592,-0.459058,-1.42305][-0.0311948,-0.969049,0.24489][0.455299,0.296698,1.02815][0.366843,-0.443389,-1.09101][0.0450597,-1.13394,0.0621626][0.451273,0.260722,0.885354][-1.56043e-006,-0.440492,-1.1309][0.0084121,-0.970916,0.0740998][0.5,0.258931,0.877827][-1.39607e-006,0.66141,0.0562644][-0.0501094,0.990448,0.128458][0.5,0.121677,0.0188896][-1.32932e-006,0.604076,0.498324][-0.0501094,0.990448,0.128458][0,0.433922,0.232857][0.131964,0.613428,0.477697][-0.0501094,0.990448,0.128458][0.0497677,0.440621,0.231976][-1.39607e-006,0.66141,0.0562644][-0.0501094,0.990448,0.128458][0.5,0.121677,0.0188896][0.131964,0.613428,0.477697][-0.0501094,0.990448,0.128458][0.0497677,0.440621,0.231976][0.251921,0.608975,0.417129][0.0811059,0.992845,0.0876432][0.0998117,0.437482,0.232592][-1.39607e-006,0.66141,0.0562644][-0.0501094,0.990448,0.128458][0.5,0.121677,0.0188896][0.251921,0.608975,0.417129][0.0811059,0.992845,0.0876432][0.0998117,0.437482,0.232592][0.34837,0.60217,0.320861][0.125846,0.990464,0.0560641][0.15053,0.432686,0.23347][-1.39607e-006,0.66141,0.0562644][-0.0501094,0.990448,0.128458][0.5,0.121677,0.0188896][0.34837,0.60217,0.320861][0.125846,0.990464,0.0560641][0.15053,0.432686,0.23347][0.403726,0.593053,0.196615][0.166346,0.986066,0.00175605][0.201462,0.425196,0.23127][-1.39607e-006,0.66141,0.0562644][-0.0501094,0.990448,0.128458][0.5,0.121677,0.0188896][0.403726,0.593053,0.196615][0.166346,0.986066,0.00175605][0.201462,0.425196,0.23127][0.412069,0.583699,0.0656964][0.186293,0.980769,-0.0582003][0.251478,0.416469,0.22674][-1.39607e-006,0.66141,0.0562644][-0.0501094,0.990448,0.128458][0.5,0.121677,0.0188896][0.412069,0.583699,0.0656964][0.186293,0.980769,-0.0582003][0.251478,0.416469,0.22674][0.364316,0.57636,-0.0446986][0.186564,0.971639,-0.145299][0.298354,0.404562,0.212358][-1.39607e-006,0.66141,0.0562644][-0.0501094,0.990448,0.128458][0.5,0.121677,0.0188896][0.364316,0.57636,-0.0446986][0.186564,0.971639,-0.145299][0.298354,0.404562,0.212358][0.267353,0.569863,-0.143769][0.162789,0.961278,-0.222362][0.357174,0.38885,0.193412][-1.39607e-006,0.66141,0.0562644][-0.0501094,0.990448,0.128458][0.5,0.121677,0.0188896][0.267353,0.569863,-0.143769][0.162789,0.961278,-0.222362][0.357174,0.38885,0.193412][0.184194,0.562577,-0.239599][0.166501,0.96173,-0.217607][0.414475,0.38823,0.203639][-1.39607e-006,0.66141,0.0562644][-0.0501094,0.990448,0.128458][0.5,0.121677,0.0188896][0.184194,0.562577,-0.239599][0.166501,0.96173,-0.217607][0.414475,0.38823,0.203639][0.0964636,0.553528,-0.352452][0.174347,0.961453,-0.212631][0.464231,0.399854,0.241889][-1.39607e-006,0.66141,0.0562644][-0.0501094,0.990448,0.128458][0.5,0.121677,0.0188896][0.0964636,0.553528,-0.352452][0.174347,0.961453,-0.212631][0.464231,0.399854,0.241889][-1.46242e-006,0.551267,-0.38315][0.0545555,0.968547,-0.242776][0.5,0.402523,0.252281][0.430766,-0.187472,1.56183][-0.0727758,0.864131,-0.497977][0.0447256,0.335632,0.949118][-1.14245e-006,-0.180284,1.63726][-0.0727758,0.864131,-0.497977][0,0.33801,0.953959][-1.0953e-006,-0.000336729,1.94952][0.0416511,-0.846715,0.530414][0,0.387327,1.06503][-1.0953e-006,-0.000336729,1.94952][0.0416511,-0.846715,0.530414][0,0.387327,1.06503][0.48865,-0.00369652,1.85031][-0.0998068,0.848137,-0.520291][0.0426234,0.384953,1.04904][0.430766,-0.187472,1.56183][-0.0727758,0.864131,-0.497977][0.0447256,0.335632,0.949118][0.820564,-0.208362,1.34199][-0.230948,0.840931,-0.489386][0.091157,0.328862,0.936723][0.430766,-0.187472,1.56183][-0.0727758,0.864131,-0.497977][0.0447256,0.335632,0.949118][0.48865,-0.00369652,1.85031][-0.0998068,0.848137,-0.520291][0.0426234,0.384953,1.04904][0.48865,-0.00369652,1.85031][-0.0998068,0.848137,-0.520291][0.0426234,0.384953,1.04904][0.929468,-0.0498419,1.58515][-0.194575,0.859293,-0.473029][0.0875527,0.373811,1.0242][0.820564,-0.208362,1.34199][-0.230948,0.840931,-0.489386][0.091157,0.328862,0.936723][1.13157,-0.240956,0.997026][-0.350531,0.84861,-0.396218][0.140722,0.318944,0.922776][0.820564,-0.208362,1.34199][-0.230948,0.840931,-0.489386][0.091157,0.328862,0.936723][0.929468,-0.0498419,1.58515][-0.194575,0.859293,-0.473029][0.0875527,0.373811,1.0242][0.929468,-0.0498419,1.58515][-0.194575,0.859293,-0.473029][0.0875527,0.373811,1.0242][1.2793,-0.121713,1.17217][-0.265702,0.886298,-0.379313][0.136782,0.35672,0.99675][1.13157,-0.240956,0.997026][-0.350531,0.84861,-0.396218][0.140722,0.318944,0.922776][1.33245,-0.282107,0.558815][-0.396389,0.879226,-0.264267][0.193989,0.30819,0.915522][1.13157,-0.240956,0.997026][-0.350531,0.84861,-0.396218][0.140722,0.318944,0.922776][1.2793,-0.121713,1.17217][-0.265702,0.886298,-0.379313][0.136782,0.35672,0.99675][1.2793,-0.121713,1.17217][-0.265702,0.886298,-0.379313][0.136782,0.35672,0.99675][1.50391,-0.212274,0.651777][-0.237023,0.934675,-0.264959][0.19121,0.336972,0.983107][1.33245,-0.282107,0.558815][-0.396389,0.879226,-0.264267][0.193989,0.30819,0.915522][1.40194,-0.29568,0.0655862][-0.341537,0.936958,-0.073905][0.250447,0.304277,0.912019][1.33245,-0.282107,0.558815][-0.396389,0.879226,-0.264267][0.193989,0.30819,0.915522][1.50391,-0.212274,0.651777][-0.237023,0.934675,-0.264959][0.19121,0.336972,0.983107][1.50391,-0.212274,0.651777][-0.237023,0.934675,-0.264959][0.19121,0.336972,0.983107][1.5813,-0.252158,0.0635031][-0.235762,0.967,-0.096579][0.250606,0.328311,0.979324][1.40194,-0.29568,0.0655862][-0.341537,0.936958,-0.073905][0.250447,0.304277,0.912019][1.33245,-0.324538,-0.424161][-0.236,0.971463,-0.0237547][0.306473,0.301983,0.929144][1.40194,-0.29568,0.0655862][-0.341537,0.936958,-0.073905][0.250447,0.304277,0.912019][1.5813,-0.252158,0.0635031][-0.235762,0.967,-0.096579][0.250606,0.328311,0.979324][1.5813,-0.252158,0.0635031][-0.235762,0.967,-0.096579][0.250606,0.328311,0.979324][1.50391,-0.306866,-0.520864][-0.143146,0.986973,-0.0734404][0.309537,0.323402,1.01003][1.33245,-0.324538,-0.424161][-0.236,0.971463,-0.0237547][0.306473,0.301983,0.929144][1.13157,-0.359008,-0.86503][-0.116249,0.992914,-0.0246649][0.359869,0.301835,0.959956][1.33245,-0.324538,-0.424161][-0.236,0.971463,-0.0237547][0.306473,0.301983,0.929144][1.50391,-0.306866,-0.520864][-0.143146,0.986973,-0.0734404][0.309537,0.323402,1.01003][1.50391,-0.306866,-0.520864][-0.143146,0.986973,-0.0734404][0.309537,0.323402,1.01003][1.2793,-0.372071,-1.04816][-0.0421791,0.993588,-0.1049][0.364285,0.321556,1.06585][1.13157,-0.359008,-0.86503][-0.116249,0.992914,-0.0246649][0.359869,0.301835,0.959956][0.820563,-0.402117,-1.20859][-0.031464,0.99485,-0.0963464][0.409164,0.300963,0.995443][1.13157,-0.359008,-0.86503][-0.116249,0.992914,-0.0246649][0.359869,0.301835,0.959956][1.2793,-0.372071,-1.04816][-0.0421791,0.993588,-0.1049][0.364285,0.321556,1.06585][1.2793,-0.372071,-1.04816][-0.0421791,0.993588,-0.1049][0.364285,0.321556,1.06585][0.929467,-0.453753,-1.45932][0.00555481,0.979903,-0.199399][0.413062,0.318397,1.12968][0.820563,-0.402117,-1.20859][-0.031464,0.99485,-0.0963464][0.409164,0.300963,0.995443][0.430765,-0.429733,-1.42755][0.0353843,0.981756,-0.186824][0.455409,0.301031,1.02082][0.820563,-0.402117,-1.20859][-0.031464,0.99485,-0.0963464][0.409164,0.300963,0.995443][0.929467,-0.453753,-1.45932][0.00555481,0.979903,-0.199399][0.413062,0.318397,1.12968][0.929467,-0.453753,-1.45932][0.00555481,0.979903,-0.199399][0.413062,0.318397,1.12968][0.488649,-0.506197,-1.7233][0.0311042,0.969156,-0.244479][0.457649,0.317409,1.1756][0.430765,-0.429733,-1.42755][0.0353843,0.981756,-0.186824][0.455409,0.301031,1.02082][-1.61656e-006,-0.439237,-1.50267][0.0215734,0.968956,-0.246292][0.5,0.301147,1.02997][0.430765,-0.429733,-1.42755][0.0353843,0.981756,-0.186824][0.455409,0.301031,1.02082][0.488649,-0.506197,-1.7233][0.0311042,0.969156,-0.244479][0.457649,0.317409,1.1756][0.488649,-0.506197,-1.7233][0.0311042,0.969156,-0.244479][0.457649,0.317409,1.1756][-1.66304e-006,-0.538607,-1.81047][-0.0350084,-0.97518,0.218628][0.5,0.315228,1.19469][-1.61656e-006,-0.439237,-1.50267][0.0215734,0.968956,-0.246292][0.5,0.301147,1.02997][0.366204,-0.413756,-1.09232][-0.0272497,0.999608,-0.00641691][0.451404,0.265046,0.875089][0.699098,-0.403607,-0.924993][-0.0272497,0.999608,-0.00641691][0.402485,0.266172,0.870468][0.820563,-0.402117,-1.20859][-0.031464,0.99485,-0.0963464][0.409164,0.300963,0.995443][0.820563,-0.402117,-1.20859][-0.031464,0.99485,-0.0963464][0.409164,0.300963,0.995443][0.430765,-0.429733,-1.42755][0.0353843,0.981756,-0.186824][0.455409,0.301031,1.02082][0.366204,-0.413756,-1.09232][-0.0272497,0.999608,-0.00641691][0.451404,0.265046,0.875089][0.699098,-0.403607,-0.924993][-0.0272497,0.999608,-0.00641691][0.402485,0.266172,0.870468][0.966807,-0.387475,-0.659007][-0.109281,0.992764,0.049777][0.352776,0.267852,0.86273][1.13157,-0.359008,-0.86503][-0.116249,0.992914,-0.0246649][0.359869,0.301835,0.959956][1.13157,-0.359008,-0.86503][-0.116249,0.992914,-0.0246649][0.359869,0.301835,0.959956][0.820563,-0.402117,-1.20859][-0.031464,0.99485,-0.0963464][0.409164,0.300963,0.995443][0.699098,-0.403607,-0.924993][-0.0272497,0.999608,-0.00641691][0.402485,0.266172,0.870468][0.966807,-0.387475,-0.659007][-0.109281,0.992764,0.049777][0.352776,0.267852,0.86273][1.14121,-0.366693,-0.316377][-0.193944,0.980227,0.039265][0.301897,0.270148,0.853064][1.33245,-0.324538,-0.424161][-0.236,0.971463,-0.0237547][0.306473,0.301983,0.929144][1.33245,-0.324538,-0.424161][-0.236,0.971463,-0.0237547][0.306473,0.301983,0.929144][1.13157,-0.359008,-0.86503][-0.116249,0.992914,-0.0246649][0.359869,0.301835,0.959956][0.966807,-0.387475,-0.659007][-0.109281,0.992764,0.049777][0.352776,0.267852,0.86273][1.14121,-0.366693,-0.316377][-0.193944,0.980227,0.039265][0.301897,0.270148,0.853064][1.20189,-0.343318,0.0690322][-0.231963,0.972465,-0.0224565][0.250065,0.273294,0.843781][1.40194,-0.29568,0.0655862][-0.341537,0.936958,-0.073905][0.250447,0.304277,0.912019][1.40194,-0.29568,0.0655862][-0.341537,0.936958,-0.073905][0.250447,0.304277,0.912019][1.33245,-0.324538,-0.424161][-0.236,0.971463,-0.0237547][0.306473,0.301983,0.929144][1.14121,-0.366693,-0.316377][-0.193944,0.980227,0.039265][0.301897,0.270148,0.853064][1.20189,-0.343318,0.0690322][-0.231963,0.972465,-0.0224565][0.250065,0.273294,0.843781][1.14121,-0.319944,0.454441][-0.149477,0.985251,-0.0832882][0.198226,0.277198,0.836725][1.33245,-0.282107,0.558815][-0.396389,0.879226,-0.264267][0.193989,0.30819,0.915522][1.33245,-0.282107,0.558815][-0.396389,0.879226,-0.264267][0.193989,0.30819,0.915522][1.40194,-0.29568,0.0655862][-0.341537,0.936958,-0.073905][0.250447,0.304277,0.912019][1.20189,-0.343318,0.0690322][-0.231963,0.972465,-0.0224565][0.250065,0.273294,0.843781][1.14121,-0.319944,0.454441][-0.149477,0.985251,-0.0832882][0.198226,0.277198,0.836725][0.966808,-0.29916,0.797071][-0.168532,0.974983,-0.144928][0.147327,0.281164,0.831951][1.13157,-0.240956,0.997026][-0.350531,0.84861,-0.396218][0.140722,0.318944,0.922776][1.13157,-0.240956,0.997026][-0.350531,0.84861,-0.396218][0.140722,0.318944,0.922776][1.33245,-0.282107,0.558815][-0.396389,0.879226,-0.264267][0.193989,0.30819,0.915522][1.14121,-0.319944,0.454441][-0.149477,0.985251,-0.0832882][0.198226,0.277198,0.836725][0.966808,-0.29916,0.797071][-0.168532,0.974983,-0.144928][0.147327,0.281164,0.831951][0.699099,-0.283027,1.06306][-0.139277,0.970049,-0.199017][0.0975893,0.28434,0.828551][0.820564,-0.208362,1.34199][-0.230948,0.840931,-0.489386][0.091157,0.328862,0.936723][0.820564,-0.208362,1.34199][-0.230948,0.840931,-0.489386][0.091157,0.328862,0.936723][1.13157,-0.240956,0.997026][-0.350531,0.84861,-0.396218][0.140722,0.318944,0.922776][0.966808,-0.29916,0.797071][-0.168532,0.974983,-0.144928][0.147327,0.281164,0.831951][0.699099,-0.283027,1.06306][-0.139277,0.970049,-0.199017][0.0975893,0.28434,0.828551][0.366205,-0.272879,1.23038][-0.0873752,0.968645,-0.232578][0.0486346,0.286267,0.826182][0.430766,-0.187472,1.56183][-0.0727758,0.864131,-0.497977][0.0447256,0.335632,0.949118][0.430766,-0.187472,1.56183][-0.0727758,0.864131,-0.497977][0.0447256,0.335632,0.949118][0.820564,-0.208362,1.34199][-0.230948,0.840931,-0.489386][0.091157,0.328862,0.936723][0.699099,-0.283027,1.06306][-0.139277,0.970049,-0.199017][0.0975893,0.28434,0.828551][0.366205,-0.272879,1.23038][-0.0873752,0.968645,-0.232578][0.0486346,0.286267,0.826182][-1.19528e-006,-0.269424,1.28735][-0.0292524,0.968634,-0.246766][0,0.286895,0.825283][-1.14245e-006,-0.180284,1.63726][-0.0727758,0.864131,-0.497977][0,0.33801,0.953959][-1.14245e-006,-0.180284,1.63726][-0.0727758,0.864131,-0.497977][0,0.33801,0.953959][0.430766,-0.187472,1.56183][-0.0727758,0.864131,-0.497977][0.0447256,0.335632,0.949118][0.366205,-0.272879,1.23038][-0.0873752,0.968645,-0.232578][0.0486346,0.286267,0.826182][-1.56321e-006,-0.417211,-1.14929][-0.00195964,0.998846,-0.0479822][0.5,0.264633,0.876571][0.366204,-0.413756,-1.09232][-0.0272497,0.999608,-0.00641691][0.451404,0.265046,0.875089][0.430765,-0.429733,-1.42755][0.0353843,0.981756,-0.186824][0.455409,0.301031,1.02082][0.430765,-0.429733,-1.42755][0.0353843,0.981756,-0.186824][0.455409,0.301031,1.02082][-1.61656e-006,-0.439237,-1.50267][0.0215734,0.968956,-0.246292][0.5,0.301147,1.02997][-1.56321e-006,-0.417211,-1.14929][-0.00195964,0.998846,-0.0479822][0.5,0.264633,0.876571][0.347895,-0.00721364,1.17244][0.152736,0.219637,0.963551][0.0486306,0.326422,0.718786][-1.21948e-006,0.000745723,1.22577][0.152736,0.219637,0.963551][0,0.328,0.716493][-1.21018e-006,-0.269424,1.28735][0.152736,0.219637,0.963551][0,0.286895,0.825283][-1.21018e-006,-0.269424,1.28735][0.152736,0.219637,0.963551][0,0.286895,0.825283][0.366205,-0.272879,1.23038][0.151963,0.220617,0.96345][0.0486346,0.286267,0.826182][0.347895,-0.00721364,1.17244][0.152736,0.219637,0.963551][0.0486306,0.326422,0.718786][0.664145,-0.0134716,1.01348][0.441558,0.220151,0.869804][0.0975817,0.324884,0.719474][0.347895,-0.00721364,1.17244][0.152736,0.219637,0.963551][0.0486306,0.326422,0.718786][0.366205,-0.272879,1.23038][0.151963,0.220617,0.96345][0.0486346,0.286267,0.826182][0.366205,-0.272879,1.23038][0.151963,0.220617,0.96345][0.0486346,0.286267,0.826182][0.699099,-0.283027,1.06306][0.44364,0.217444,0.869426][0.0975893,0.28434,0.828551][0.664145,-0.0134716,1.01348][0.441558,0.220151,0.869804][0.0975817,0.324884,0.719474][0.918468,-0.0234204,0.760791][0.692368,0.216389,0.688334][0.147316,0.322321,0.720157][0.664145,-0.0134716,1.01348][0.441558,0.220151,0.869804][0.0975817,0.324884,0.719474][0.699099,-0.283027,1.06306][0.44364,0.217444,0.869426][0.0975893,0.28434,0.828551][0.699099,-0.283027,1.06306][0.44364,0.217444,0.869426][0.0975893,0.28434,0.828551][0.966808,-0.29916,0.797071][0.69517,0.212235,0.6868][0.147327,0.281164,0.831951][0.918468,-0.0234204,0.760791][0.692368,0.216389,0.688334][0.147316,0.322321,0.720157][1.08415,-0.0362368,0.435293][0.874501,0.210784,0.436828][0.198213,0.319108,0.72139][0.918468,-0.0234204,0.760791][0.692368,0.216389,0.688334][0.147316,0.322321,0.720157][0.966808,-0.29916,0.797071][0.69517,0.212235,0.6868][0.147327,0.281164,0.831951][0.966808,-0.29916,0.797071][0.69517,0.212235,0.6868][0.147327,0.281164,0.831951][1.14121,-0.319944,0.454441][0.877124,0.2057,0.433984][0.198226,0.277198,0.836725][1.08415,-0.0362368,0.435293][0.874501,0.210784,0.436828][0.198213,0.319108,0.72139][1.1418,-0.0506516,0.0691552][0.968165,0.204465,0.144395][0.250051,0.315972,0.724479][1.08415,-0.0362368,0.435293][0.874501,0.210784,0.436828][0.198213,0.319108,0.72139][1.14121,-0.319944,0.454441][0.877124,0.2057,0.433984][0.198226,0.277198,0.836725][1.14121,-0.319944,0.454441][0.877124,0.2057,0.433984][0.198226,0.277198,0.836725][1.20189,-0.343318,0.0690322][0.969839,0.199084,0.140636][0.250065,0.273294,0.843781][1.1418,-0.0506516,0.0691552][0.968165,0.204465,0.144395][0.250051,0.315972,0.724479][1.08415,-0.0650673,-0.296984][0.966919,0.198611,-0.160068][0.301884,0.313506,0.729854][1.1418,-0.0506516,0.0691552][0.968165,0.204465,0.144395][0.250051,0.315972,0.724479][1.20189,-0.343318,0.0690322][0.969839,0.199084,0.140636][0.250065,0.273294,0.843781][1.20189,-0.343318,0.0690322][0.969839,0.199084,0.140636][0.250065,0.273294,0.843781][1.14121,-0.366693,-0.316377][0.967282,0.193532,-0.164045][0.301897,0.270148,0.853064][1.08415,-0.0650673,-0.296984][0.966919,0.198611,-0.160068][0.301884,0.313506,0.729854][0.918468,-0.0778818,-0.622482][0.87119,0.193809,-0.451073][0.352766,0.311758,0.736091][1.08415,-0.0650673,-0.296984][0.966919,0.198611,-0.160068][0.301884,0.313506,0.729854][1.14121,-0.366693,-0.316377][0.967282,0.193532,-0.164045][0.301897,0.270148,0.853064][1.14121,-0.366693,-0.316377][0.967282,0.193532,-0.164045][0.301897,0.270148,0.853064][0.966808,-0.387475,-0.659007][0.870348,0.189518,-0.454508][0.352776,0.267852,0.86273][0.918468,-0.0778818,-0.622482][0.87119,0.193809,-0.451073][0.352766,0.311758,0.736091][0.664143,-0.0878305,-0.875169][0.688221,0.190063,-0.700163][0.402477,0.310485,0.741164][0.918468,-0.0778818,-0.622482][0.87119,0.193809,-0.451073][0.352766,0.311758,0.736091][0.966808,-0.387475,-0.659007][0.870348,0.189518,-0.454508][0.352776,0.267852,0.86273][0.966808,-0.387475,-0.659007][0.870348,0.189518,-0.454508][0.352776,0.267852,0.86273][0.699098,-0.403607,-0.924993][0.686717,0.186858,-0.702499][0.402485,0.266172,0.870468][0.664143,-0.0878305,-0.875169][0.688221,0.190063,-0.700163][0.402477,0.310485,0.741164][0.347893,-0.0940885,-1.03413][0.438197,0.187223,-0.879165][0.4514,0.309613,0.744087][0.664143,-0.0878305,-0.875169][0.688221,0.190063,-0.700163][0.402477,0.310485,0.741164][0.699098,-0.403607,-0.924993][0.686717,0.186858,-0.702499][0.402485,0.266172,0.870468][0.699098,-0.403607,-0.924993][0.686717,0.186858,-0.702499][0.402485,0.266172,0.870468][0.366204,-0.413756,-1.09232][0.436811,0.185261,-0.880269][0.451404,0.265046,0.875089][0.347893,-0.0940885,-1.03413][0.438197,0.187223,-0.879165][0.4514,0.309613,0.744087][-1.56889e-006,-0.09622,-1.08825][0.14995,0.185375,-0.97116][0.5,0.309288,0.744984][0.347893,-0.0940885,-1.03413][0.438197,0.187223,-0.879165][0.4514,0.309613,0.744087][0.366204,-0.413756,-1.09232][0.436811,0.185261,-0.880269][0.451404,0.265046,0.875089][0.366204,-0.413756,-1.09232][0.436811,0.185261,-0.880269][0.451404,0.265046,0.875089][-1.57811e-006,-0.417211,-1.14929][0.149372,0.184711,-0.971375][0.5,0.264633,0.876571][-1.56889e-006,-0.09622,-1.08825][0.14995,0.185375,-0.97116][0.5,0.309288,0.744984][0.319969,0.360582,1.06916][0.149239,0.280034,0.948319][0.0493033,0.401986,0.585266][-1.23561e-006,0.36254,1.11893][0.149239,0.280034,0.948319][0,0.402509,0.584858][-1.21948e-006,0.000745723,1.22577][0.152736,0.219637,0.963551][0,0.328,0.716493][-1.21948e-006,0.000745723,1.22577][0.152736,0.219637,0.963551][0,0.328,0.716493][0.347895,-0.00721364,1.17244][0.152736,0.219637,0.963551][0.0486306,0.326422,0.718786][0.319969,0.360582,1.06916][0.149239,0.280034,0.948319][0.0493033,0.401986,0.585266][0.610874,0.354827,0.922985][0.436143,0.273825,0.857204][0.0988712,0.400399,0.58618][0.319969,0.360582,1.06916][0.149239,0.280034,0.948319][0.0493033,0.401986,0.585266][0.347895,-0.00721364,1.17244][0.152736,0.219637,0.963551][0.0486306,0.326422,0.718786][0.347895,-0.00721364,1.17244][0.152736,0.219637,0.963551][0.0486306,0.326422,0.718786][0.664145,-0.0134716,1.01348][0.441558,0.220151,0.869804][0.0975817,0.324884,0.719474][0.610874,0.354827,0.922985][0.436143,0.273825,0.857204][0.0988712,0.400399,0.58618][0.844911,0.345678,0.690639][0.684407,0.265806,0.678921][0.14911,0.397812,0.587237][0.610874,0.354827,0.922985][0.436143,0.273825,0.857204][0.0988712,0.400399,0.58618][0.664145,-0.0134716,1.01348][0.441558,0.220151,0.869804][0.0975817,0.324884,0.719474][0.664145,-0.0134716,1.01348][0.441558,0.220151,0.869804][0.0975817,0.324884,0.719474][0.918468,-0.0234204,0.760791][0.692368,0.216389,0.688334][0.147316,0.322321,0.720157][0.844911,0.345678,0.690639][0.684407,0.265806,0.678921][0.14911,0.397812,0.587237][0.997475,0.333888,0.391305][0.865642,0.254463,0.431176][0.200335,0.394549,0.588966][0.844911,0.345678,0.690639][0.684407,0.265806,0.678921][0.14911,0.397812,0.587237][0.918468,-0.0234204,0.760791][0.692368,0.216389,0.688334][0.147316,0.322321,0.720157][0.918468,-0.0234204,0.760791][0.692368,0.216389,0.688334][0.147316,0.322321,0.720157][1.08415,-0.0362368,0.435293][0.874501,0.210784,0.436828][0.198213,0.319108,0.72139][0.997475,0.333888,0.391305][0.865642,0.254463,0.431176][0.200335,0.394549,0.588966][1.05059,0.320638,0.0545362][0.959932,0.241655,0.141889][0.25227,0.391214,0.592597][0.997475,0.333888,0.391305][0.865642,0.254463,0.431176][0.200335,0.394549,0.588966][1.08415,-0.0362368,0.435293][0.874501,0.210784,0.436828][0.198213,0.319108,0.72139][1.08415,-0.0362368,0.435293][0.874501,0.210784,0.436828][0.198213,0.319108,0.72139][1.1418,-0.0506516,0.0691552][0.968165,0.204465,0.144395][0.250051,0.315972,0.724479][1.05059,0.320638,0.0545362][0.959932,0.241655,0.141889][0.25227,0.391214,0.592597][0.828204,0.268096,-0.187434][0.459806,0.371696,-0.806487][0.29788,0.354561,0.513462][1.02475,0.305472,-0.0581488][0.459806,0.371696,-0.806487][0.269727,0.38535,0.586375][1.06909,0.0902586,-0.13206][0.459806,0.371696,-0.806487][0.279661,0.338646,0.661263][1.06909,0.0902586,-0.13206][0.459806,0.371696,-0.806487][0.279661,0.338646,0.661263][1.06624,0.0161619,-0.285071][0.606654,0.710998,-0.355602][0.301098,0.32714,0.697432][0.828204,0.268096,-0.187434][0.459806,0.371696,-0.806487][0.29788,0.354561,0.513462][0.626621,0.25233,-0.409107][0.513791,0.685411,-0.515975][0.353815,0.337353,0.480356][0.828204,0.268096,-0.187434][0.459806,0.371696,-0.806487][0.29788,0.354561,0.513462][1.06624,0.0161619,-0.285071][0.606654,0.710998,-0.355602][0.301098,0.32714,0.697432][1.06624,0.0161619,-0.285071][0.606654,0.710998,-0.355602][0.301098,0.32714,0.697432][0.897839,-0.0398836,-0.601367][0.518717,0.750667,-0.409184][0.352134,0.315389,0.712011][0.626621,0.25233,-0.409107][0.513791,0.685411,-0.515975][0.353815,0.337353,0.480356][0.465687,0.236327,-0.630152][0.507645,0.750072,-0.423898][0.406537,0.341164,0.508643][0.626621,0.25233,-0.409107][0.513791,0.685411,-0.515975][0.353815,0.337353,0.480356][0.897839,-0.0398836,-0.601367][0.518717,0.750667,-0.409184][0.352134,0.315389,0.712011][0.897839,-0.0398836,-0.601367][0.518717,0.750667,-0.409184][0.352134,0.315389,0.712011][0.650058,-0.00584598,-0.847123][0.510442,0.755902,-0.409953][0.401824,0.322622,0.703589][0.465687,0.236327,-0.630152][0.507645,0.750072,-0.423898][0.406537,0.341164,0.508643][0.364889,0.233639,-0.905847][0.652567,0.716833,-0.245575][0.443025,0.367408,0.605123][0.465687,0.236327,-0.630152][0.507645,0.750072,-0.423898][0.406537,0.341164,0.508643][0.650058,-0.00584598,-0.847123][0.510442,0.755902,-0.409953][0.401824,0.322622,0.703589][0.650058,-0.00584598,-0.847123][0.510442,0.755902,-0.409953][0.401824,0.322622,0.703589][0.474236,0.0628825,-0.914054][0.444737,0.324911,-0.83465][0.428496,0.333097,0.670289][0.364889,0.233639,-0.905847][0.652567,0.716833,-0.245575][0.443025,0.367408,0.605123][-1.5583e-006,0.2051,-1.01813][0.196082,0.278284,-0.940271][0.5,0.365438,0.633752][0.235902,0.207061,-0.968354][0.196082,0.278284,-0.940271][0.464429,0.363325,0.622046][0.347893,-0.0940885,-1.03413][0.438197,0.187223,-0.879165][0.4514,0.309613,0.744087][0.347893,-0.0940885,-1.03413][0.438197,0.187223,-0.879165][0.4514,0.309613,0.744087][-1.56889e-006,-0.09622,-1.08825][0.14995,0.185375,-0.97116][0.5,0.309288,0.744984][-1.5583e-006,0.2051,-1.01813][0.196082,0.278284,-0.940271][0.5,0.365438,0.633752][0.299129,0.592217,0.993771][0.147623,0.318084,0.936499][0.0498167,0.466643,0.51906][-1.24749e-006,0.59405,1.0403][0.147623,0.318084,0.936499][0,0.467215,0.518605][-1.23561e-006,0.36254,1.11893][0.149239,0.280034,0.948319][0,0.402509,0.584858][-1.23561e-006,0.36254,1.11893][0.149239,0.280034,0.948319][0,0.402509,0.584858][0.319969,0.360582,1.06916][0.149239,0.280034,0.948319][0.0493033,0.401986,0.585266][0.299129,0.592217,0.993771][0.147623,0.318084,0.936499][0.0498167,0.466643,0.51906][0.571118,0.586826,0.857143][0.431127,0.314079,0.845863][0.0998518,0.464949,0.520131][0.299129,0.592217,0.993771][0.147623,0.318084,0.936499][0.0498167,0.466643,0.51906][0.319969,0.360582,1.06916][0.149239,0.280034,0.948319][0.0493033,0.401986,0.585266][0.319969,0.360582,1.06916][0.149239,0.280034,0.948319][0.0493033,0.401986,0.585266][0.610874,0.354827,0.922985][0.436143,0.273825,0.857204][0.0988712,0.400399,0.58618][0.571118,0.586826,0.857143][0.431127,0.314079,0.845863][0.0998518,0.464949,0.520131][0.790014,0.578242,0.63998][0.676522,0.306028,0.669824][0.150466,0.462237,0.521471][0.571118,0.586826,0.857143][0.431127,0.314079,0.845863][0.0998518,0.464949,0.520131][0.610874,0.354827,0.922985][0.436143,0.273825,0.857204][0.0988712,0.400399,0.58618][0.610874,0.354827,0.922985][0.436143,0.273825,0.857204][0.0988712,0.400399,0.58618][0.844911,0.345678,0.690639][0.684407,0.265806,0.678921][0.14911,0.397812,0.587237][0.790014,0.578242,0.63998][0.676522,0.306028,0.669824][0.150466,0.462237,0.521471][0.92014,0.568048,0.35978][0.871563,0.29159,0.394148][0.201367,0.458553,0.517076][0.790014,0.578242,0.63998][0.676522,0.306028,0.669824][0.150466,0.462237,0.521471][0.844911,0.345678,0.690639][0.684407,0.265806,0.678921][0.14911,0.397812,0.587237][0.844911,0.345678,0.690639][0.684407,0.265806,0.678921][0.14911,0.397812,0.587237][0.997475,0.333888,0.391305][0.865642,0.254463,0.431176][0.200335,0.394549,0.588966][0.92014,0.568048,0.35978][0.871563,0.29159,0.394148][0.201367,0.458553,0.517076][0.947098,0.558572,0.0597313][0.943869,0.321777,0.0746403][0.251646,0.454664,0.508449][0.92014,0.568048,0.35978][0.871563,0.29159,0.394148][0.201367,0.458553,0.517076][0.997475,0.333888,0.391305][0.865642,0.254463,0.431176][0.200335,0.394549,0.588966][0.997475,0.333888,0.391305][0.865642,0.254463,0.431176][0.200335,0.394549,0.588966][1.05059,0.320638,0.0545362][0.959932,0.241655,0.141889][0.25227,0.391214,0.592597][0.947098,0.558572,0.0597313][0.943869,0.321777,0.0746403][0.251646,0.454664,0.508449][0.831439,0.512042,-0.192049][0.746877,0.32172,-0.581954][0.29851,0.434353,0.473191][0.962777,0.448562,-0.0585837][0.746877,0.32172,-0.581954][0.271054,0.421092,0.53239][1.02475,0.305472,-0.0581488][0.459806,0.371696,-0.806487][0.269727,0.38535,0.586375][1.02475,0.305472,-0.0581488][0.459806,0.371696,-0.806487][0.269727,0.38535,0.586375][0.828204,0.268096,-0.187434][0.459806,0.371696,-0.806487][0.29788,0.354561,0.513462][0.831439,0.512042,-0.192049][0.746877,0.32172,-0.581954][0.29851,0.434353,0.473191][0.612827,0.521682,-0.417644][0.717464,-0.0226858,-0.696226][0.356897,0.430884,0.42601][0.831439,0.512042,-0.192049][0.746877,0.32172,-0.581954][0.29851,0.434353,0.473191][0.828204,0.268096,-0.187434][0.459806,0.371696,-0.806487][0.29788,0.354561,0.513462][0.828204,0.268096,-0.187434][0.459806,0.371696,-0.806487][0.29788,0.354561,0.513462][0.626621,0.25233,-0.409107][0.513791,0.685411,-0.515975][0.353815,0.337353,0.480356][0.612827,0.521682,-0.417644][0.717464,-0.0226858,-0.696226][0.356897,0.430884,0.42601][0.419147,0.477414,-0.665399][0.785876,0.0206577,-0.618039][0.417507,0.420088,0.464127][0.612827,0.521682,-0.417644][0.717464,-0.0226858,-0.696226][0.356897,0.430884,0.42601][0.626621,0.25233,-0.409107][0.513791,0.685411,-0.515975][0.353815,0.337353,0.480356][0.626621,0.25233,-0.409107][0.513791,0.685411,-0.515975][0.353815,0.337353,0.480356][0.465687,0.236327,-0.630152][0.507645,0.750072,-0.423898][0.406537,0.341164,0.508643][0.419147,0.477414,-0.665399][0.785876,0.0206577,-0.618039][0.417507,0.420088,0.464127][0.341417,0.429352,-0.81962][0.875646,0.0999543,-0.472496][0.44165,0.413608,0.525343][0.419147,0.477414,-0.665399][0.785876,0.0206577,-0.618039][0.417507,0.420088,0.464127][0.465687,0.236327,-0.630152][0.507645,0.750072,-0.423898][0.406537,0.341164,0.508643][0.465687,0.236327,-0.630152][0.507645,0.750072,-0.423898][0.406537,0.341164,0.508643][0.364889,0.233639,-0.905847][0.652567,0.716833,-0.245575][0.443025,0.367408,0.605123][0.341417,0.429352,-0.81962][0.875646,0.0999543,-0.472496][0.44165,0.413608,0.525343][-1.54772e-006,0.515313,-0.948047][0.246219,0.250117,-0.936385][0.5,0.444549,0.549031][0.219743,0.518454,-0.889427][0.246219,0.250117,-0.936385][0.464148,0.443671,0.531074][0.235902,0.207061,-0.968354][0.196082,0.278284,-0.940271][0.464429,0.363325,0.622046][0.235902,0.207061,-0.968354][0.196082,0.278284,-0.940271][0.464429,0.363325,0.622046][-1.5583e-006,0.2051,-1.01813][0.196082,0.278284,-0.940271][0.5,0.365438,0.633752][-1.54772e-006,0.515313,-0.948047][0.246219,0.250117,-0.936385][0.5,0.444549,0.549031][1.06624,0.0161619,-0.285071][0.606654,0.710998,-0.355602][0.301098,0.32714,0.697432][1.06909,0.0902586,-0.13206][0.459806,0.371696,-0.806487][0.279661,0.338646,0.661263][1.1418,-0.0506516,0.0691552][0.968165,0.204465,0.144395][0.250051,0.315972,0.724479][1.1418,-0.0506516,0.0691552][0.968165,0.204465,0.144395][0.250051,0.315972,0.724479][1.08415,-0.0650673,-0.296984][0.966919,0.198611,-0.160068][0.301884,0.313506,0.729854][1.06624,0.0161619,-0.285071][0.606654,0.710998,-0.355602][0.301098,0.32714,0.697432][1.06909,0.0902586,-0.13206][0.459806,0.371696,-0.806487][0.279661,0.338646,0.661263][1.02475,0.305472,-0.0581488][0.459806,0.371696,-0.806487][0.269727,0.38535,0.586375][1.05059,0.320638,0.0545362][0.959932,0.241655,0.141889][0.25227,0.391214,0.592597][1.05059,0.320638,0.0545362][0.959932,0.241655,0.141889][0.25227,0.391214,0.592597][1.1418,-0.0506516,0.0691552][0.968165,0.204465,0.144395][0.250051,0.315972,0.724479][1.06909,0.0902586,-0.13206][0.459806,0.371696,-0.806487][0.279661,0.338646,0.661263][0.897839,-0.0398836,-0.601367][0.518717,0.750667,-0.409184][0.352134,0.315389,0.712011][1.06624,0.0161619,-0.285071][0.606654,0.710998,-0.355602][0.301098,0.32714,0.697432][1.08415,-0.0650673,-0.296984][0.966919,0.198611,-0.160068][0.301884,0.313506,0.729854][1.08415,-0.0650673,-0.296984][0.966919,0.198611,-0.160068][0.301884,0.313506,0.729854][0.918468,-0.0778818,-0.622482][0.87119,0.193809,-0.451073][0.352766,0.311758,0.736091][0.897839,-0.0398836,-0.601367][0.518717,0.750667,-0.409184][0.352134,0.315389,0.712011][0.650058,-0.00584598,-0.847123][0.510442,0.755902,-0.409953][0.401824,0.322622,0.703589][0.897839,-0.0398836,-0.601367][0.518717,0.750667,-0.409184][0.352134,0.315389,0.712011][0.918468,-0.0778818,-0.622482][0.87119,0.193809,-0.451073][0.352766,0.311758,0.736091][0.918468,-0.0778818,-0.622482][0.87119,0.193809,-0.451073][0.352766,0.311758,0.736091][0.664143,-0.0878305,-0.875169][0.688221,0.190063,-0.700163][0.402477,0.310485,0.741164][0.650058,-0.00584598,-0.847123][0.510442,0.755902,-0.409953][0.401824,0.322622,0.703589][0.474236,0.0628825,-0.914054][0.444737,0.324911,-0.83465][0.428496,0.333097,0.670289][0.650058,-0.00584598,-0.847123][0.510442,0.755902,-0.409953][0.401824,0.322622,0.703589][0.664143,-0.0878305,-0.875169][0.688221,0.190063,-0.700163][0.402477,0.310485,0.741164][0.664143,-0.0878305,-0.875169][0.688221,0.190063,-0.700163][0.402477,0.310485,0.741164][0.347893,-0.0940885,-1.03413][0.438197,0.187223,-0.879165][0.4514,0.309613,0.744087][0.474236,0.0628825,-0.914054][0.444737,0.324911,-0.83465][0.428496,0.333097,0.670289][0.364889,0.233639,-0.905847][0.652567,0.716833,-0.245575][0.443025,0.367408,0.605123][0.474236,0.0628825,-0.914054][0.444737,0.324911,-0.83465][0.428496,0.333097,0.670289][0.347893,-0.0940885,-1.03413][0.438197,0.187223,-0.879165][0.4514,0.309613,0.744087][0.347893,-0.0940885,-1.03413][0.438197,0.187223,-0.879165][0.4514,0.309613,0.744087][0.235902,0.207061,-0.968354][0.196082,0.278284,-0.940271][0.464429,0.363325,0.622046][0.364889,0.233639,-0.905847][0.652567,0.716833,-0.245575][0.443025,0.367408,0.605123][0.962777,0.448562,-0.0585837][0.746877,0.32172,-0.581954][0.271054,0.421092,0.53239][0.831439,0.512042,-0.192049][0.746877,0.32172,-0.581954][0.29851,0.434353,0.473191][0.817694,0.568529,-0.190504][0.744133,0.198516,-0.637853][0.299002,0.453639,0.460831][0.817694,0.568529,-0.190504][0.744133,0.198516,-0.637853][0.299002,0.453639,0.460831][0.929272,0.565089,0.0229673][0.771564,0.498462,-0.395252][0.257967,0.456046,0.499172][0.962777,0.448562,-0.0585837][0.746877,0.32172,-0.581954][0.271054,0.421092,0.53239][0.831439,0.512042,-0.192049][0.746877,0.32172,-0.581954][0.29851,0.434353,0.473191][0.612827,0.521682,-0.417644][0.717464,-0.0226858,-0.696226][0.356897,0.430884,0.42601][0.610031,0.584542,-0.412853][0.717363,0.0846146,-0.691543][0.356486,0.455334,0.417363][0.610031,0.584542,-0.412853][0.717363,0.0846146,-0.691543][0.356486,0.455334,0.417363][0.817694,0.568529,-0.190504][0.744133,0.198516,-0.637853][0.299002,0.453639,0.460831][0.831439,0.512042,-0.192049][0.746877,0.32172,-0.581954][0.29851,0.434353,0.473191][0.612827,0.521682,-0.417644][0.717464,-0.0226858,-0.696226][0.356897,0.430884,0.42601][0.419147,0.477414,-0.665399][0.785876,0.0206577,-0.618039][0.417507,0.420088,0.464127][0.417253,0.550774,-0.64897][0.763655,0.159815,-0.625532][0.416263,0.445517,0.448056][0.417253,0.550774,-0.64897][0.763655,0.159815,-0.625532][0.416263,0.445517,0.448056][0.610031,0.584542,-0.412853][0.717363,0.0846146,-0.691543][0.356486,0.455334,0.417363][0.612827,0.521682,-0.417644][0.717464,-0.0226858,-0.696226][0.356897,0.430884,0.42601][0.235902,0.207061,-0.968354][0.196082,0.278284,-0.940271][0.464429,0.363325,0.622046][0.219743,0.518454,-0.889427][0.246219,0.250117,-0.936385][0.464148,0.443671,0.531074][0.251451,0.533027,-0.849576][0.7285,0.203593,-0.654093][0.457497,0.446602,0.513553][0.235902,0.207061,-0.968354][0.196082,0.278284,-0.940271][0.464429,0.363325,0.622046][0.251451,0.533027,-0.849576][0.7285,0.203593,-0.654093][0.457497,0.446602,0.513553][0.341417,0.429352,-0.81962][0.875646,0.0999543,-0.472496][0.44165,0.413608,0.525343][0.235902,0.207061,-0.968354][0.196082,0.278284,-0.940271][0.464429,0.363325,0.622046][0.341417,0.429352,-0.81962][0.875646,0.0999543,-0.472496][0.44165,0.413608,0.525343][0.364889,0.233639,-0.905847][0.652567,0.716833,-0.245575][0.443025,0.367408,0.605123][0.419147,0.477414,-0.665399][0.785876,0.0206577,-0.618039][0.417507,0.420088,0.464127][0.341417,0.429352,-0.81962][0.875646,0.0999543,-0.472496][0.44165,0.413608,0.525343][0.251451,0.533027,-0.849576][0.7285,0.203593,-0.654093][0.457497,0.446602,0.513553][0.251451,0.533027,-0.849576][0.7285,0.203593,-0.654093][0.457497,0.446602,0.513553][0.417253,0.550774,-0.64897][0.763655,0.159815,-0.625532][0.416263,0.445517,0.448056][0.419147,0.477414,-0.665399][0.785876,0.0206577,-0.618039][0.417507,0.420088,0.464127][0.929272,0.565089,0.0229673][0.771564,0.498462,-0.395252][0.257967,0.456046,0.499172][0.947098,0.558572,0.0597313][0.943869,0.321777,0.0746403][0.251646,0.454664,0.508449][1.05059,0.320638,0.0545362][0.959932,0.241655,0.141889][0.25227,0.391214,0.592597][0.929272,0.565089,0.0229673][0.771564,0.498462,-0.395252][0.257967,0.456046,0.499172][1.05059,0.320638,0.0545362][0.959932,0.241655,0.141889][0.25227,0.391214,0.592597][1.02475,0.305472,-0.0581488][0.459806,0.371696,-0.806487][0.269727,0.38535,0.586375][0.929272,0.565089,0.0229673][0.771564,0.498462,-0.395252][0.257967,0.456046,0.499172][1.02475,0.305472,-0.0581488][0.459806,0.371696,-0.806487][0.269727,0.38535,0.586375][0.962777,0.448562,-0.0585837][0.746877,0.32172,-0.581954][0.271054,0.421092,0.53239][0.290003,0.634635,0.963106][0.049032,0.959571,0.277162][0.0499455,0.47978,0.500225][0.27485,0.649479,0.914395][0.049032,0.959571,0.277162][0.0500572,0.483922,0.472714][-1.26004e-006,0.651164,0.957184][0.049032,0.959571,0.277162][0,0.484511,0.472248][-1.26004e-006,0.651164,0.957184][0.049032,0.959571,0.277162][0,0.484511,0.472248][-1.25233e-006,0.636416,1.00823][0.0490292,0.95955,0.277238][0,0.480366,0.499763][0.290003,0.634635,0.963106][0.049032,0.959571,0.277162][0.0499455,0.47978,0.500225][0.299129,0.592217,0.993771][0.147623,0.318084,0.936499][0.0498167,0.466643,0.51906][0.290003,0.634635,0.963106][0.049032,0.959571,0.277162][0.0499455,0.47978,0.500225][-1.25233e-006,0.636416,1.00823][0.0490292,0.95955,0.277238][0,0.480366,0.499763][-1.25233e-006,0.636416,1.00823][0.0490292,0.95955,0.277238][0,0.480366,0.499763][-1.24749e-006,0.59405,1.0403][0.147623,0.318084,0.936499][0,0.467215,0.518605][0.299129,0.592217,0.993771][0.147623,0.318084,0.936499][0.0498167,0.466643,0.51906][0.553675,0.629413,0.830614][0.143183,0.958385,0.246976][0.100097,0.478058,0.501318][0.52469,0.644532,0.788747][0.143183,0.958385,0.246976][0.10031,0.482191,0.473818][0.27485,0.649479,0.914395][0.049032,0.959571,0.277162][0.0500572,0.483922,0.472714][0.27485,0.649479,0.914395][0.049032,0.959571,0.277162][0.0500572,0.483922,0.472714][0.290003,0.634635,0.963106][0.049032,0.959571,0.277162][0.0499455,0.47978,0.500225][0.553675,0.629413,0.830614][0.143183,0.958385,0.246976][0.100097,0.478058,0.501318][0.571118,0.586826,0.857143][0.431127,0.314079,0.845863][0.0998518,0.464949,0.520131][0.553675,0.629413,0.830614][0.143183,0.958385,0.246976][0.100097,0.478058,0.501318][0.290003,0.634635,0.963106][0.049032,0.959571,0.277162][0.0499455,0.47978,0.500225][0.290003,0.634635,0.963106][0.049032,0.959571,0.277162][0.0499455,0.47978,0.500225][0.299129,0.592217,0.993771][0.147623,0.318084,0.936499][0.0498167,0.466643,0.51906][0.571118,0.586826,0.857143][0.431127,0.314079,0.845863][0.0998518,0.464949,0.520131][0.765822,0.621113,0.620033][0.224625,0.956073,0.188329][0.150805,0.475318,0.50269][0.725571,0.636669,0.589068][0.224625,0.956073,0.188329][0.151099,0.479439,0.4752][0.52469,0.644532,0.788747][0.143183,0.958385,0.246976][0.10031,0.482191,0.473818][0.52469,0.644532,0.788747][0.143183,0.958385,0.246976][0.10031,0.482191,0.473818][0.553675,0.629413,0.830614][0.143183,0.958385,0.246976][0.100097,0.478058,0.501318][0.765822,0.621113,0.620033][0.224625,0.956073,0.188329][0.150805,0.475318,0.50269][0.790014,0.578242,0.63998][0.676522,0.306028,0.669824][0.150466,0.462237,0.521471][0.765822,0.621113,0.620033][0.224625,0.956073,0.188329][0.150805,0.475318,0.50269][0.553675,0.629413,0.830614][0.143183,0.958385,0.246976][0.100097,0.478058,0.501318][0.553675,0.629413,0.830614][0.143183,0.958385,0.246976][0.100097,0.478058,0.501318][0.571118,0.586826,0.857143][0.431127,0.314079,0.845863][0.0998518,0.464949,0.520131][0.790014,0.578242,0.63998][0.676522,0.306028,0.669824][0.150466,0.462237,0.521471][0.88946,0.610785,0.34834][0.279045,0.956315,0.0871465][0.201654,0.471525,0.497312][0.840863,0.626515,0.331324][0.279045,0.956315,0.0871465][0.201962,0.475515,0.469366][0.725571,0.636669,0.589068][0.224625,0.956073,0.188329][0.151099,0.479439,0.4752][0.725571,0.636669,0.589068][0.224625,0.956073,0.188329][0.151099,0.479439,0.4752][0.765822,0.621113,0.620033][0.224625,0.956073,0.188329][0.150805,0.475318,0.50269][0.88946,0.610785,0.34834][0.279045,0.956315,0.0871465][0.201654,0.471525,0.497312][0.92014,0.568048,0.35978][0.871563,0.29159,0.394148][0.201367,0.458553,0.517076][0.88946,0.610785,0.34834][0.279045,0.956315,0.0871465][0.201654,0.471525,0.497312][0.765822,0.621113,0.620033][0.224625,0.956073,0.188329][0.150805,0.475318,0.50269][0.765822,0.621113,0.620033][0.224625,0.956073,0.188329][0.150805,0.475318,0.50269][0.790014,0.578242,0.63998][0.676522,0.306028,0.669824][0.150466,0.462237,0.521471][0.92014,0.568048,0.35978][0.871563,0.29159,0.394148][0.201367,0.458553,0.517076][0.910889,0.600769,0.0653103][0.282796,0.959004,-0.0183742][0.250736,0.467398,0.486588][0.858239,0.616188,0.0597423][0.282796,0.959004,-0.0183742][0.251814,0.471077,0.457975][0.840863,0.626515,0.331324][0.279045,0.956315,0.0871465][0.201962,0.475515,0.469366][0.840863,0.626515,0.331324][0.279045,0.956315,0.0871465][0.201962,0.475515,0.469366][0.88946,0.610785,0.34834][0.279045,0.956315,0.0871465][0.201654,0.471525,0.497312][0.910889,0.600769,0.0653103][0.282796,0.959004,-0.0183742][0.250736,0.467398,0.486588][0.947098,0.558572,0.0597313][0.943869,0.321777,0.0746403][0.251646,0.454664,0.508449][0.910889,0.600769,0.0653103][0.282796,0.959004,-0.0183742][0.250736,0.467398,0.486588][0.88946,0.610785,0.34834][0.279045,0.956315,0.0871465][0.201654,0.471525,0.497312][0.88946,0.610785,0.34834][0.279045,0.956315,0.0871465][0.201654,0.471525,0.497312][0.92014,0.568048,0.35978][0.871563,0.29159,0.394148][0.201367,0.458553,0.517076][0.947098,0.558572,0.0597313][0.943869,0.321777,0.0746403][0.251646,0.454664,0.508449][0.801411,0.612861,-0.183533][0.346866,0.933213,-0.0937905][0.298678,0.469216,0.448681][0.758782,0.630008,-0.170575][0.346866,0.933213,-0.0937905][0.298774,0.474305,0.424292][0.858239,0.616188,0.0597423][0.282796,0.959004,-0.0183742][0.251814,0.471077,0.457975][0.858239,0.616188,0.0597423][0.282796,0.959004,-0.0183742][0.251814,0.471077,0.457975][0.910889,0.600769,0.0653103][0.282796,0.959004,-0.0183742][0.250736,0.467398,0.486588][0.801411,0.612861,-0.183533][0.346866,0.933213,-0.0937905][0.298678,0.469216,0.448681][0.817694,0.568529,-0.190504][0.744133,0.198516,-0.637853][0.299002,0.453639,0.460831][0.801411,0.612861,-0.183533][0.346866,0.933213,-0.0937905][0.298678,0.469216,0.448681][0.910889,0.600769,0.0653103][0.282796,0.959004,-0.0183742][0.250736,0.467398,0.486588][0.910889,0.600769,0.0653103][0.282796,0.959004,-0.0183742][0.250736,0.467398,0.486588][0.929272,0.565089,0.0229673][0.771564,0.498462,-0.395252][0.257967,0.456046,0.499172][0.817694,0.568529,-0.190504][0.744133,0.198516,-0.637853][0.299002,0.453639,0.460831][0.593155,0.628124,-0.403432][0.280034,0.937459,-0.206766][0.357131,0.472265,0.40466][0.556832,0.644717,-0.377395][0.280034,0.937459,-0.206766][0.357641,0.47789,0.380327][0.758782,0.630008,-0.170575][0.346866,0.933213,-0.0937905][0.298774,0.474305,0.424292][0.758782,0.630008,-0.170575][0.346866,0.933213,-0.0937905][0.298774,0.474305,0.424292][0.801411,0.612861,-0.183533][0.346866,0.933213,-0.0937905][0.298678,0.469216,0.448681][0.593155,0.628124,-0.403432][0.280034,0.937459,-0.206766][0.357131,0.472265,0.40466][0.610031,0.584542,-0.412853][0.717363,0.0846146,-0.691543][0.356486,0.455334,0.417363][0.593155,0.628124,-0.403432][0.280034,0.937459,-0.206766][0.357131,0.472265,0.40466][0.801411,0.612861,-0.183533][0.346866,0.933213,-0.0937905][0.298678,0.469216,0.448681][0.801411,0.612861,-0.183533][0.346866,0.933213,-0.0937905][0.298678,0.469216,0.448681][0.817694,0.568529,-0.190504][0.744133,0.198516,-0.637853][0.299002,0.453639,0.460831][0.610031,0.584542,-0.412853][0.717363,0.0846146,-0.691543][0.356486,0.455334,0.417363][0.408391,0.596752,-0.620379][0.163558,0.944083,-0.286281][0.414934,0.461423,0.429168][0.383632,0.614839,-0.57488][0.163558,0.944083,-0.286281][0.414537,0.46636,0.40075][0.556832,0.644717,-0.377395][0.280034,0.937459,-0.206766][0.357641,0.47789,0.380327][0.556832,0.644717,-0.377395][0.280034,0.937459,-0.206766][0.357641,0.47789,0.380327][0.593155,0.628124,-0.403432][0.280034,0.937459,-0.206766][0.357131,0.472265,0.40466][0.408391,0.596752,-0.620379][0.163558,0.944083,-0.286281][0.414934,0.461423,0.429168][0.417253,0.550774,-0.64897][0.763655,0.159815,-0.625532][0.416263,0.445517,0.448056][0.408391,0.596752,-0.620379][0.163558,0.944083,-0.286281][0.414934,0.461423,0.429168][0.593155,0.628124,-0.403432][0.280034,0.937459,-0.206766][0.357131,0.472265,0.40466][0.593155,0.628124,-0.403432][0.280034,0.937459,-0.206766][0.357131,0.472265,0.40466][0.610031,0.584542,-0.412853][0.717363,0.0846146,-0.691543][0.356486,0.455334,0.417363][0.417253,0.550774,-0.64897][0.763655,0.159815,-0.625532][0.416263,0.445517,0.448056][0.209266,0.564056,-0.85979][0.200258,0.936026,-0.289398][0.464749,0.456716,0.510905][0.20091,0.581968,-0.807635][0.200258,0.936026,-0.289398][0.464164,0.460437,0.481897][0.383632,0.614839,-0.57488][0.163558,0.944083,-0.286281][0.414537,0.46636,0.40075][0.383632,0.614839,-0.57488][0.163558,0.944083,-0.286281][0.414537,0.46636,0.40075][0.408391,0.596752,-0.620379][0.163558,0.944083,-0.286281][0.414934,0.461423,0.429168][0.209266,0.564056,-0.85979][0.200258,0.936026,-0.289398][0.464749,0.456716,0.510905][0.251451,0.533027,-0.849576][0.7285,0.203593,-0.654093][0.457497,0.446602,0.513553][0.209266,0.564056,-0.85979][0.200258,0.936026,-0.289398][0.464749,0.456716,0.510905][0.408391,0.596752,-0.620379][0.163558,0.944083,-0.286281][0.414934,0.461423,0.429168][0.408391,0.596752,-0.620379][0.163558,0.944083,-0.286281][0.414934,0.461423,0.429168][0.417253,0.550774,-0.64897][0.763655,0.159815,-0.625532][0.416263,0.445517,0.448056][0.251451,0.533027,-0.849576][0.7285,0.203593,-0.654093][0.457497,0.446602,0.513553][-1.54356e-006,0.56027,-0.920514][0.100092,0.928843,-0.356697][0.5,0.457139,0.530897][-1.53613e-006,0.579169,-0.871301][0.100092,0.928843,-0.356697][0.5,0.46121,0.503676][0.20091,0.581968,-0.807635][0.200258,0.936026,-0.289398][0.464164,0.460437,0.481897][0.20091,0.581968,-0.807635][0.200258,0.936026,-0.289398][0.464164,0.460437,0.481897][0.209266,0.564056,-0.85979][0.200258,0.936026,-0.289398][0.464749,0.456716,0.510905][-1.54356e-006,0.56027,-0.920514][0.100092,0.928843,-0.356697][0.5,0.457139,0.530897][-1.54772e-006,0.515313,-0.948047][0.246219,0.250117,-0.936385][0.5,0.444549,0.549031][-1.54356e-006,0.56027,-0.920514][0.100092,0.928843,-0.356697][0.5,0.457139,0.530897][0.209266,0.564056,-0.85979][0.200258,0.936026,-0.289398][0.464749,0.456716,0.510905][0.209266,0.564056,-0.85979][0.200258,0.936026,-0.289398][0.464749,0.456716,0.510905][0.219743,0.518454,-0.889427][0.246219,0.250117,-0.936385][0.464148,0.443671,0.531074][-1.54772e-006,0.515313,-0.948047][0.246219,0.250117,-0.936385][0.5,0.444549,0.549031][-1.23421e-006,0.59405,1.0403][1,0,-1.50996e-007][1,0.467215,0.518605][-1.24676e-006,0.651164,0.957184][1,0,-1.50996e-007][1,0.484511,0.472248][-1.23905e-006,0.636416,1.00823][1,0,-1.50996e-007][1,0.480366,0.499763][0.947098,0.558572,0.0597313][0.943869,0.321777,0.0746403][0.251646,0.454664,0.508449][0.929272,0.565089,0.0229673][0.771564,0.498462,-0.395252][0.257967,0.456046,0.499172][0.910889,0.600769,0.0653103][0.282796,0.959004,-0.0183742][0.250736,0.467398,0.486588][0.209266,0.564056,-0.85979][0.200258,0.936026,-0.289398][0.464749,0.456716,0.510905][0.251451,0.533027,-0.849576][0.7285,0.203593,-0.654093][0.457497,0.446602,0.513553][0.219743,0.518454,-0.889427][0.246219,0.250117,-0.936385][0.464148,0.443671,0.531074][-1.52285e-006,0.579169,-0.871301][1,0,-1.50994e-007][0.5,0.46121,0.503676][-1.53444e-006,0.515313,-0.948047][1,0,-1.50994e-007][0.5,0.444549,0.549031][-1.53028e-006,0.56027,-0.920514][1,0,-1.50994e-007][0.5,0.457139,0.530897][0.230581,0.588963,0.778119][-0.053223,0.920066,-0.388132][0.0500702,0.455261,0.399914][-1.28166e-006,0.59075,0.813972][-0.053223,0.920066,-0.388132][0,0.455968,0.399404][-1.26004e-006,0.651164,0.957184][0.049032,0.959571,0.277162][0,0.484511,0.472248][-1.26004e-006,0.651164,0.957184][0.049032,0.959571,0.277162][0,0.484511,0.472248][0.27485,0.649479,0.914395][0.049032,0.959571,0.277162][0.0500572,0.483922,0.472714][0.230581,0.588963,0.778119][-0.053223,0.920066,-0.388132][0.0500702,0.455261,0.399914][0.44018,0.583728,0.67284][-0.156751,0.920527,-0.357853][0.100318,0.453174,0.401185][0.230581,0.588963,0.778119][-0.053223,0.920066,-0.388132][0.0500702,0.455261,0.399914][0.27485,0.649479,0.914395][0.049032,0.959571,0.277162][0.0500572,0.483922,0.472714][0.27485,0.649479,0.914395][0.049032,0.959571,0.277162][0.0500572,0.483922,0.472714][0.52469,0.644532,0.788747][0.143183,0.958385,0.246976][0.10031,0.482191,0.473818][0.44018,0.583728,0.67284][-0.156751,0.920527,-0.357853][0.100318,0.453174,0.401185][0.608706,0.575407,0.505529][-0.2517,0.920363,-0.299299][0.151074,0.449836,0.402866][0.44018,0.583728,0.67284][-0.156751,0.920527,-0.357853][0.100318,0.453174,0.401185][0.52469,0.644532,0.788747][0.143183,0.958385,0.246976][0.10031,0.482191,0.473818][0.52469,0.644532,0.788747][0.143183,0.958385,0.246976][0.10031,0.482191,0.473818][0.725571,0.636669,0.589068][0.224625,0.956073,0.188329][0.151099,0.479439,0.4752][0.608706,0.575407,0.505529][-0.2517,0.920363,-0.299299][0.151074,0.449836,0.402866][0.705428,0.564666,0.289566][-0.340257,0.919227,-0.198108][0.201878,0.444683,0.398672][0.608706,0.575407,0.505529][-0.2517,0.920363,-0.299299][0.151074,0.449836,0.402866][0.725571,0.636669,0.589068][0.224625,0.956073,0.188329][0.151099,0.479439,0.4752][0.725571,0.636669,0.589068][0.224625,0.956073,0.188329][0.151099,0.479439,0.4752][0.840863,0.626515,0.331324][0.279045,0.956315,0.0871465][0.201962,0.475515,0.469366][0.705428,0.564666,0.289566][-0.340257,0.919227,-0.198108][0.201878,0.444683,0.398672][0.720006,0.55335,0.0620083][-0.396191,0.915427,-0.0709007][0.251661,0.438429,0.389893][0.705428,0.564666,0.289566][-0.340257,0.919227,-0.198108][0.201878,0.444683,0.398672][0.840863,0.626515,0.331324][0.279045,0.956315,0.0871465][0.201962,0.475515,0.469366][0.840863,0.626515,0.331324][0.279045,0.956315,0.0871465][0.201962,0.475515,0.469366][0.858239,0.616188,0.0597423][0.282796,0.959004,-0.0183742][0.251814,0.471077,0.457975][0.720006,0.55335,0.0620083][-0.396191,0.915427,-0.0709007][0.251661,0.438429,0.389893][0.636568,0.543751,-0.130975][-0.408435,0.903242,0.13166][0.298563,0.429337,0.363567][0.720006,0.55335,0.0620083][-0.396191,0.915427,-0.0709007][0.251661,0.438429,0.389893][0.858239,0.616188,0.0597423][0.282796,0.959004,-0.0183742][0.251814,0.471077,0.457975][0.858239,0.616188,0.0597423][0.282796,0.959004,-0.0183742][0.251814,0.471077,0.457975][0.758782,0.630008,-0.170575][0.346866,0.933213,-0.0937905][0.298774,0.474305,0.424292][0.636568,0.543751,-0.130975][-0.408435,0.903242,0.13166][0.298563,0.429337,0.363567][0.467145,0.535132,-0.304268][-0.442207,0.806609,0.392217][0.357404,0.417188,0.328991][0.636568,0.543751,-0.130975][-0.408435,0.903242,0.13166][0.298563,0.429337,0.363567][0.758782,0.630008,-0.170575][0.346866,0.933213,-0.0937905][0.298774,0.474305,0.424292][0.758782,0.630008,-0.170575][0.346866,0.933213,-0.0937905][0.298774,0.474305,0.424292][0.556832,0.644717,-0.377395][0.280034,0.937459,-0.206766][0.357641,0.47789,0.380327][0.467145,0.535132,-0.304268][-0.442207,0.806609,0.392217][0.357404,0.417188,0.328991][0.321842,0.526902,-0.469741][-0.534175,0.726094,0.432949][0.414362,0.417037,0.345377][0.467145,0.535132,-0.304268][-0.442207,0.806609,0.392217][0.357404,0.417188,0.328991][0.556832,0.644717,-0.377395][0.280034,0.937459,-0.206766][0.357641,0.47789,0.380327][0.556832,0.644717,-0.377395][0.280034,0.937459,-0.206766][0.357641,0.47789,0.380327][0.383632,0.614839,-0.57488][0.163558,0.944083,-0.286281][0.414537,0.46636,0.40075][0.321842,0.526902,-0.469741][-0.534175,0.726094,0.432949][0.414362,0.417037,0.345377][0.168551,0.517204,-0.664766][-0.505987,0.784416,0.358704][0.464089,0.426473,0.411261][0.321842,0.526902,-0.469741][-0.534175,0.726094,0.432949][0.414362,0.417037,0.345377][0.383632,0.614839,-0.57488][0.163558,0.944083,-0.286281][0.414537,0.46636,0.40075][0.383632,0.614839,-0.57488][0.163558,0.944083,-0.286281][0.414537,0.46636,0.40075][0.20091,0.581968,-0.807635][0.200258,0.936026,-0.289398][0.464164,0.460437,0.481897][0.168551,0.517204,-0.664766][-0.505987,0.784416,0.358704][0.464089,0.426473,0.411261][-1.513e-006,0.514549,-0.718111][-0.135728,0.913561,0.383384][0.5,0.428544,0.429309][0.168551,0.517204,-0.664766][-0.505987,0.784416,0.358704][0.464089,0.426473,0.411261][0.20091,0.581968,-0.807635][0.200258,0.936026,-0.289398][0.464164,0.460437,0.481897][0.20091,0.581968,-0.807635][0.200258,0.936026,-0.289398][0.464164,0.460437,0.481897][-1.53613e-006,0.579169,-0.871301][0.100092,0.928843,-0.356697][0.5,0.46121,0.503676][-1.513e-006,0.514549,-0.718111][-0.135728,0.913561,0.383384][0.5,0.428544,0.429309][0.194043,0.539217,0.667509][-0.0523431,0.918285,-0.392444][0.049939,0.422972,0.344097][-1.29922e-006,0.54105,0.697679][-0.0523431,0.918285,-0.392444][0,0.423786,0.343594][-1.28166e-006,0.59075,0.813972][-0.053223,0.920066,-0.388132][0,0.455968,0.399404][-1.28166e-006,0.59075,0.813972][-0.053223,0.920066,-0.388132][0,0.455968,0.399404][0.230581,0.588963,0.778119][-0.053223,0.920066,-0.388132][0.0500702,0.455261,0.399914][0.194043,0.539217,0.667509][-0.0523431,0.918285,-0.392444][0.049939,0.422972,0.344097][0.370429,0.533837,0.578918][-0.154038,0.919163,-0.362507][0.100068,0.420551,0.345391][0.194043,0.539217,0.667509][-0.0523431,0.918285,-0.392444][0.049939,0.422972,0.344097][0.230581,0.588963,0.778119][-0.053223,0.920066,-0.388132][0.0500702,0.455261,0.399914][0.230581,0.588963,0.778119][-0.053223,0.920066,-0.388132][0.0500702,0.455261,0.399914][0.44018,0.583728,0.67284][-0.156751,0.920527,-0.357853][0.100318,0.453174,0.401185][0.370429,0.533837,0.578918][-0.154038,0.919163,-0.362507][0.100068,0.420551,0.345391][0.512249,0.525611,0.438107][-0.248486,0.919696,-0.303997][0.150732,0.416814,0.347129][0.370429,0.533837,0.578918][-0.154038,0.919163,-0.362507][0.100068,0.420551,0.345391][0.44018,0.583728,0.67284][-0.156751,0.920527,-0.357853][0.100318,0.453174,0.401185][0.44018,0.583728,0.67284][-0.156751,0.920527,-0.357853][0.100318,0.453174,0.401185][0.608706,0.575407,0.505529][-0.2517,0.920363,-0.299299][0.151074,0.449836,0.402866][0.512249,0.525611,0.438107][-0.248486,0.919696,-0.303997][0.150732,0.416814,0.347129][0.593645,0.514588,0.256375][-0.332265,0.920714,-0.204662][0.201468,0.410475,0.344237][0.512249,0.525611,0.438107][-0.248486,0.919696,-0.303997][0.150732,0.416814,0.347129][0.608706,0.575407,0.505529][-0.2517,0.920363,-0.299299][0.151074,0.449836,0.402866][0.608706,0.575407,0.505529][-0.2517,0.920363,-0.299299][0.151074,0.449836,0.402866][0.705428,0.564666,0.289566][-0.340257,0.919227,-0.198108][0.201878,0.444683,0.398672][0.593645,0.514588,0.256375][-0.332265,0.920714,-0.204662][0.201468,0.410475,0.344237][0.605913,0.503284,0.0648833][-0.387912,0.918299,-0.0790596][0.251219,0.40275,0.337618][0.593645,0.514588,0.256375][-0.332265,0.920714,-0.204662][0.201468,0.410475,0.344237][0.705428,0.564666,0.289566][-0.340257,0.919227,-0.198108][0.201878,0.444683,0.398672][0.705428,0.564666,0.289566][-0.340257,0.919227,-0.198108][0.201878,0.444683,0.398672][0.720006,0.55335,0.0620083][-0.396191,0.915427,-0.0709007][0.251661,0.438429,0.389893][0.605913,0.503284,0.0648833][-0.387912,0.918299,-0.0790596][0.251219,0.40275,0.337618][0.535696,0.494412,-0.0965897][-0.396229,0.90997,0.122303][0.297856,0.390977,0.316412][0.605913,0.503284,0.0648833][-0.387912,0.918299,-0.0790596][0.251219,0.40275,0.337618][0.720006,0.55335,0.0620083][-0.396191,0.915427,-0.0709007][0.251661,0.438429,0.389893][0.720006,0.55335,0.0620083][-0.396191,0.915427,-0.0709007][0.251661,0.438429,0.389893][0.636568,0.543751,-0.130975][-0.408435,0.903242,0.13166][0.298563,0.429337,0.363567][0.535696,0.494412,-0.0965897][-0.396229,0.90997,0.122303][0.297856,0.390977,0.316412][0.393121,0.486559,-0.241497][-0.340422,0.895592,0.286405][0.356526,0.374893,0.288358][0.535696,0.494412,-0.0965897][-0.396229,0.90997,0.122303][0.297856,0.390977,0.316412][0.636568,0.543751,-0.130975][-0.408435,0.903242,0.13166][0.298563,0.429337,0.363567][0.636568,0.543751,-0.130975][-0.408435,0.903242,0.13166][0.298563,0.429337,0.363567][0.467145,0.535132,-0.304268][-0.442207,0.806609,0.392217][0.357404,0.417188,0.328991][0.393121,0.486559,-0.241497][-0.340422,0.895592,0.286405][0.356526,0.374893,0.288358][0.270842,0.47775,-0.381666][-0.364445,0.893677,0.261766][0.413956,0.375689,0.302405][0.393121,0.486559,-0.241497][-0.340422,0.895592,0.286405][0.356526,0.374893,0.288358][0.467145,0.535132,-0.304268][-0.442207,0.806609,0.392217][0.357404,0.417188,0.328991][0.467145,0.535132,-0.304268][-0.442207,0.806609,0.392217][0.357404,0.417188,0.328991][0.321842,0.526902,-0.469741][-0.534175,0.726094,0.432949][0.414362,0.417037,0.345377][0.270842,0.47775,-0.381666][-0.364445,0.893677,0.261766][0.413956,0.375689,0.302405][0.141842,0.466812,-0.546734][-0.403082,0.878394,0.256803][0.463995,0.390039,0.357131][0.270842,0.47775,-0.381666][-0.364445,0.893677,0.261766][0.413956,0.375689,0.302405][0.321842,0.526902,-0.469741][-0.534175,0.726094,0.432949][0.414362,0.417037,0.345377][0.321842,0.526902,-0.469741][-0.534175,0.726094,0.432949][0.414362,0.417037,0.345377][0.168551,0.517204,-0.664766][-0.505987,0.784416,0.358704][0.464089,0.426473,0.411261][0.141842,0.466812,-0.546734][-0.403082,0.878394,0.256803][0.463995,0.390039,0.357131][-1.4939e-006,0.464081,-0.591636][-0.132853,0.922038,0.363589][0.5,0.393303,0.372036][0.141842,0.466812,-0.546734][-0.403082,0.878394,0.256803][0.463995,0.390039,0.357131][0.168551,0.517204,-0.664766][-0.505987,0.784416,0.358704][0.464089,0.426473,0.411261][0.168551,0.517204,-0.664766][-0.505987,0.784416,0.358704][0.464089,0.426473,0.411261][-1.513e-006,0.514549,-0.718111][-0.135728,0.913561,0.383384][0.5,0.428544,0.429309][-1.4939e-006,0.464081,-0.591636][-0.132853,0.922038,0.363589][0.5,0.393303,0.372036][0.131964,0.613428,0.477697][-0.0501094,0.990448,0.128458][0.0497677,0.440621,0.231976][-1.32932e-006,0.604076,0.498324][-0.0501094,0.990448,0.128458][0,0.433922,0.232857][-1.29922e-006,0.54105,0.697679][-0.0523431,0.918285,-0.392444][0,0.423786,0.343594][-1.29922e-006,0.54105,0.697679][-0.0523431,0.918285,-0.392444][0,0.423786,0.343594][0.194043,0.539217,0.667509][-0.0523431,0.918285,-0.392444][0.049939,0.422972,0.344097][0.131964,0.613428,0.477697][-0.0501094,0.990448,0.128458][0.0497677,0.440621,0.231976][0.251921,0.608975,0.417129][0.0811059,0.992845,0.0876432][0.0998117,0.437482,0.232592][0.131964,0.613428,0.477697][-0.0501094,0.990448,0.128458][0.0497677,0.440621,0.231976][0.194043,0.539217,0.667509][-0.0523431,0.918285,-0.392444][0.049939,0.422972,0.344097][0.194043,0.539217,0.667509][-0.0523431,0.918285,-0.392444][0.049939,0.422972,0.344097][0.370429,0.533837,0.578918][-0.154038,0.919163,-0.362507][0.100068,0.420551,0.345391][0.251921,0.608975,0.417129][0.0811059,0.992845,0.0876432][0.0998117,0.437482,0.232592][0.34837,0.60217,0.320861][0.125846,0.990464,0.0560641][0.15053,0.432686,0.23347][0.251921,0.608975,0.417129][0.0811059,0.992845,0.0876432][0.0998117,0.437482,0.232592][0.370429,0.533837,0.578918][-0.154038,0.919163,-0.362507][0.100068,0.420551,0.345391][0.370429,0.533837,0.578918][-0.154038,0.919163,-0.362507][0.100068,0.420551,0.345391][0.512249,0.525611,0.438107][-0.248486,0.919696,-0.303997][0.150732,0.416814,0.347129][0.34837,0.60217,0.320861][0.125846,0.990464,0.0560641][0.15053,0.432686,0.23347][0.403726,0.593053,0.196615][0.166346,0.986066,0.00175605][0.201462,0.425196,0.23127][0.34837,0.60217,0.320861][0.125846,0.990464,0.0560641][0.15053,0.432686,0.23347][0.512249,0.525611,0.438107][-0.248486,0.919696,-0.303997][0.150732,0.416814,0.347129][0.512249,0.525611,0.438107][-0.248486,0.919696,-0.303997][0.150732,0.416814,0.347129][0.593645,0.514588,0.256375][-0.332265,0.920714,-0.204662][0.201468,0.410475,0.344237][0.403726,0.593053,0.196615][0.166346,0.986066,0.00175605][0.201462,0.425196,0.23127][0.412069,0.583699,0.0656964][0.186293,0.980769,-0.0582003][0.251478,0.416469,0.22674][0.403726,0.593053,0.196615][0.166346,0.986066,0.00175605][0.201462,0.425196,0.23127][0.593645,0.514588,0.256375][-0.332265,0.920714,-0.204662][0.201468,0.410475,0.344237][0.593645,0.514588,0.256375][-0.332265,0.920714,-0.204662][0.201468,0.410475,0.344237][0.605913,0.503284,0.0648833][-0.387912,0.918299,-0.0790596][0.251219,0.40275,0.337618][0.412069,0.583699,0.0656964][0.186293,0.980769,-0.0582003][0.251478,0.416469,0.22674][0.364316,0.57636,-0.0446986][0.186564,0.971639,-0.145299][0.298354,0.404562,0.212358][0.412069,0.583699,0.0656964][0.186293,0.980769,-0.0582003][0.251478,0.416469,0.22674][0.605913,0.503284,0.0648833][-0.387912,0.918299,-0.0790596][0.251219,0.40275,0.337618][0.605913,0.503284,0.0648833][-0.387912,0.918299,-0.0790596][0.251219,0.40275,0.337618][0.535696,0.494412,-0.0965897][-0.396229,0.90997,0.122303][0.297856,0.390977,0.316412][0.364316,0.57636,-0.0446986][0.186564,0.971639,-0.145299][0.298354,0.404562,0.212358][0.267353,0.569863,-0.143769][0.162789,0.961278,-0.222362][0.357174,0.38885,0.193412][0.364316,0.57636,-0.0446986][0.186564,0.971639,-0.145299][0.298354,0.404562,0.212358][0.535696,0.494412,-0.0965897][-0.396229,0.90997,0.122303][0.297856,0.390977,0.316412][0.535696,0.494412,-0.0965897][-0.396229,0.90997,0.122303][0.297856,0.390977,0.316412][0.393121,0.486559,-0.241497][-0.340422,0.895592,0.286405][0.356526,0.374893,0.288358][0.267353,0.569863,-0.143769][0.162789,0.961278,-0.222362][0.357174,0.38885,0.193412][0.184194,0.562577,-0.239599][0.166501,0.96173,-0.217607][0.414475,0.38823,0.203639][0.267353,0.569863,-0.143769][0.162789,0.961278,-0.222362][0.357174,0.38885,0.193412][0.393121,0.486559,-0.241497][-0.340422,0.895592,0.286405][0.356526,0.374893,0.288358][0.393121,0.486559,-0.241497][-0.340422,0.895592,0.286405][0.356526,0.374893,0.288358][0.270842,0.47775,-0.381666][-0.364445,0.893677,0.261766][0.413956,0.375689,0.302405][0.184194,0.562577,-0.239599][0.166501,0.96173,-0.217607][0.414475,0.38823,0.203639][0.0964636,0.553528,-0.352452][0.174347,0.961453,-0.212631][0.464231,0.399854,0.241889][0.184194,0.562577,-0.239599][0.166501,0.96173,-0.217607][0.414475,0.38823,0.203639][0.270842,0.47775,-0.381666][-0.364445,0.893677,0.261766][0.413956,0.375689,0.302405][0.270842,0.47775,-0.381666][-0.364445,0.893677,0.261766][0.413956,0.375689,0.302405][0.141842,0.466812,-0.546734][-0.403082,0.878394,0.256803][0.463995,0.390039,0.357131][0.0964636,0.553528,-0.352452][0.174347,0.961453,-0.212631][0.464231,0.399854,0.241889][-1.46242e-006,0.551267,-0.38315][0.0545555,0.968547,-0.242776][0.5,0.402523,0.252281][0.0964636,0.553528,-0.352452][0.174347,0.961453,-0.212631][0.464231,0.399854,0.241889][0.141842,0.466812,-0.546734][-0.403082,0.878394,0.256803][0.463995,0.390039,0.357131][0.141842,0.466812,-0.546734][-0.403082,0.878394,0.256803][0.463995,0.390039,0.357131][-1.4939e-006,0.464081,-0.591636][-0.132853,0.922038,0.363589][0.5,0.393303,0.372036][-1.46242e-006,0.551267,-0.38315][0.0545555,0.968547,-0.242776][0.5,0.402523,0.252281][-1.24749e-006,0.59405,1.0403][0.147623,0.318084,0.936499][1,0.467215,0.518605][-1.25233e-006,0.636416,1.00823][0.0490292,0.95955,0.277238][1,0.480366,0.499763][-1.26004e-006,0.651164,0.957184][0.049032,0.959571,0.277162][1,0.484511,0.472248][-1.53613e-006,0.579169,-0.871301][0.100092,0.928843,-0.356697][0.5,0.46121,0.503676][-1.54356e-006,0.56027,-0.920514][0.100092,0.928843,-0.356697][0.5,0.457139,0.530897][-1.54772e-006,0.515313,-0.948047][0.246219,0.250117,-0.936385][0.5,0.444549,0.549031][-1.0953e-006,-0.000336729,1.94952][0.0416511,-0.846715,0.530414][0,0.387327,1.06503][0.492908,-0.0288535,1.86529][0.0416511,-0.846715,0.530414][0.0426354,0.382081,1.06155][0.48865,-0.00369652,1.85031][-0.0998068,0.848137,-0.520291][0.0426234,0.384953,1.04904][0.937182,-0.0753461,1.59805][0.194325,-0.859589,0.472593][0.0875381,0.37092,1.03684][0.929468,-0.0498419,1.58515][-0.194575,0.859293,-0.473029][0.0875527,0.373811,1.0242][0.48865,-0.00369652,1.85031][-0.0998068,0.848137,-0.520291][0.0426234,0.384953,1.04904][0.48865,-0.00369652,1.85031][-0.0998068,0.848137,-0.520291][0.0426234,0.384953,1.04904][0.492908,-0.0288535,1.86529][0.0416511,-0.846715,0.530414][0.0426354,0.382081,1.06155][0.937182,-0.0753461,1.59805][0.194325,-0.859589,0.472593][0.0875381,0.37092,1.03684][1.28856,-0.148108,1.18186][0.265295,-0.88656,0.378985][0.136661,0.35371,1.00928][1.2793,-0.121713,1.17217][-0.265702,0.886298,-0.379313][0.136782,0.35672,0.99675][0.929468,-0.0498419,1.58515][-0.194575,0.859293,-0.473029][0.0875527,0.373811,1.0242][0.929468,-0.0498419,1.58515][-0.194575,0.859293,-0.473029][0.0875527,0.373811,1.0242][0.937182,-0.0753461,1.59805][0.194325,-0.859589,0.472593][0.0875381,0.37092,1.03684][1.28856,-0.148108,1.18186][0.265295,-0.88656,0.378985][0.136661,0.35371,1.00928][1.51285,-0.239938,0.656993][0.237418,-0.934573,0.264963][0.19105,0.333724,0.995096][1.50391,-0.212274,0.651777][-0.237023,0.934675,-0.264959][0.19121,0.336972,0.983107][1.2793,-0.121713,1.17217][-0.265702,0.886298,-0.379313][0.136782,0.35672,0.99675][1.2793,-0.121713,1.17217][-0.265702,0.886298,-0.379313][0.136782,0.35672,0.99675][1.28856,-0.148108,1.18186][0.265295,-0.88656,0.378985][0.136661,0.35371,1.00928][1.51285,-0.239938,0.656993][0.237418,-0.934573,0.264963][0.19105,0.333724,0.995096][1.5883,-0.280871,0.0655351][0.235934,-0.966914,0.0970165][0.2504,0.324716,0.990411][1.5813,-0.252158,0.0635031][-0.235762,0.967,-0.096579][0.250606,0.328311,0.979324][1.50391,-0.212274,0.651777][-0.237023,0.934675,-0.264959][0.19121,0.336972,0.983107][1.50391,-0.212274,0.651777][-0.237023,0.934675,-0.264959][0.19121,0.336972,0.983107][1.51285,-0.239938,0.656993][0.237418,-0.934573,0.264963][0.19105,0.333724,0.995096][1.5883,-0.280871,0.0655351][0.235934,-0.966914,0.0970165][0.2504,0.324716,0.990411][1.50778,-0.336179,-0.519079][0.143358,-0.986929,0.0736226][0.309235,0.319527,1.01964][1.50391,-0.306866,-0.520864][-0.143146,0.986973,-0.0734404][0.309537,0.323402,1.01003][1.5813,-0.252158,0.0635031][-0.235762,0.967,-0.096579][0.250606,0.328311,0.979324][1.5813,-0.252158,0.0635031][-0.235762,0.967,-0.096579][0.250606,0.328311,0.979324][1.5883,-0.280871,0.0655351][0.235934,-0.966914,0.0970165][0.2504,0.324716,0.990411][1.50778,-0.336179,-0.519079][0.143358,-0.986929,0.0736226][0.309235,0.319527,1.01964][1.28058,-0.401484,-1.04485][0.0422912,-0.993558,0.105134][0.363973,0.31753,1.0737][1.2793,-0.372071,-1.04816][-0.0421791,0.993588,-0.1049][0.364285,0.321556,1.06585][1.50391,-0.306866,-0.520864][-0.143146,0.986973,-0.0734404][0.309537,0.323402,1.01003][1.50391,-0.306866,-0.520864][-0.143146,0.986973,-0.0734404][0.309537,0.323402,1.01003][1.50778,-0.336179,-0.519079][0.143358,-0.986929,0.0736226][0.309235,0.319527,1.01964][1.28058,-0.401484,-1.04485][0.0422912,-0.993558,0.105134][0.363973,0.31753,1.0737][0.929139,-0.482877,-1.4538][-0.00558008,-0.979819,0.199809][0.412831,0.314354,1.13594][0.929467,-0.453753,-1.45932][0.00555481,0.979903,-0.199399][0.413062,0.318397,1.12968][1.2793,-0.372071,-1.04816][-0.0421791,0.993588,-0.1049][0.364285,0.321556,1.06585][1.2793,-0.372071,-1.04816][-0.0421791,0.993588,-0.1049][0.364285,0.321556,1.06585][1.28058,-0.401484,-1.04485][0.0422912,-0.993558,0.105134][0.363973,0.31753,1.0737][0.929139,-0.482877,-1.4538][-0.00558008,-0.979819,0.199809][0.412831,0.314354,1.13594][0.487905,-0.535003,-1.71627][-0.0311948,-0.969049,0.24489][0.457552,0.313401,1.18088][0.488649,-0.506197,-1.7233][0.0311042,0.969156,-0.244479][0.457649,0.317409,1.1756][0.929467,-0.453753,-1.45932][0.00555481,0.979903,-0.199399][0.413062,0.318397,1.12968][0.929467,-0.453753,-1.45932][0.00555481,0.979903,-0.199399][0.413062,0.318397,1.12968][0.929139,-0.482877,-1.4538][-0.00558008,-0.979819,0.199809][0.412831,0.314354,1.13594][0.487905,-0.535003,-1.71627][-0.0311948,-0.969049,0.24489][0.457552,0.313401,1.18088][0.488649,-0.506197,-1.7233][0.0311042,0.969156,-0.244479][0.457649,0.317409,1.1756][0.487905,-0.535003,-1.71627][-0.0311948,-0.969049,0.24489][0.457552,0.313401,1.18088][-1.66304e-006,-0.538607,-1.81047][-0.0350084,-0.97518,0.218628][0.5,0.315228,1.19469][-0.433936,-0.214612,1.57339][-0.0853574,-0.820171,0.565715][0.955291,0.332522,0.961822][-1.14062e-006,-0.207374,1.64936][-0.0853574,-0.820171,0.565715][1,0.334902,0.966632][-1.0953e-006,-0.000336729,1.94952][-0.0853574,-0.820171,0.565715][1,0.387327,1.06503][-1.0953e-006,-0.000336729,1.94952][-0.0853574,-0.820171,0.565715][1,0.387327,1.06503][-0.49291,-0.0288535,1.86529][-0.0416508,-0.846715,0.530414][0.957364,0.382081,1.06155][-0.433936,-0.214612,1.57339][-0.0853574,-0.820171,0.565715][0.955291,0.332522,0.961822][-0.826302,-0.235708,1.35196][-0.230626,-0.841349,0.488819][0.908904,0.325726,0.949456][-0.433936,-0.214612,1.57339][-0.0853574,-0.820171,0.565715][0.955291,0.332522,0.961822][-0.49291,-0.0288535,1.86529][-0.0416508,-0.846715,0.530414][0.957364,0.382081,1.06155][-0.49291,-0.0288535,1.86529][-0.0416508,-0.846715,0.530414][0.957364,0.382081,1.06155][-0.937184,-0.0753461,1.59805][-0.194327,-0.859589,0.472594][0.912462,0.37092,1.03684][-0.826302,-0.235708,1.35196][-0.230626,-0.841349,0.488819][0.908904,0.325726,0.949456][-1.13846,-0.268807,1.00458][-0.350136,-0.849087,0.395545][0.859437,0.315686,0.935326][-0.826302,-0.235708,1.35196][-0.230626,-0.841349,0.488819][0.908904,0.325726,0.949456][-0.937184,-0.0753461,1.59805][-0.194327,-0.859589,0.472594][0.912462,0.37092,1.03684][-0.937184,-0.0753461,1.59805][-0.194327,-0.859589,0.472594][0.912462,0.37092,1.03684][-1.28856,-0.148108,1.18186][-0.265295,-0.88656,0.378986][0.863339,0.35371,1.00928][-1.13846,-0.268807,1.00458][-0.350136,-0.849087,0.395545][0.859437,0.315686,0.935326][-1.33953,-0.310611,0.563022][-0.395996,-0.879607,0.263589][0.806179,0.304745,0.927704][-1.13846,-0.268807,1.00458][-0.350136,-0.849087,0.395545][0.859437,0.315686,0.935326][-1.28856,-0.148108,1.18186][-0.265295,-0.88656,0.378986][0.863339,0.35371,1.00928][-1.28856,-0.148108,1.18186][-0.265295,-0.88656,0.378986][0.863339,0.35371,1.00928][-1.51285,-0.239938,0.656993][-0.237419,-0.934573,0.264963][0.80895,0.333724,0.995096][-1.33953,-0.310611,0.563022][-0.395996,-0.879607,0.263589][0.806179,0.304745,0.927704][-1.40864,-0.324531,0.0673286][-0.341886,-0.936825,0.0739756][0.749752,0.300669,0.923827][-1.33953,-0.310611,0.563022][-0.395996,-0.879607,0.263589][0.806179,0.304745,0.927704][-1.51285,-0.239938,0.656993][-0.237419,-0.934573,0.264963][0.80895,0.333724,0.995096][-1.51285,-0.239938,0.656993][-0.237419,-0.934573,0.264963][0.80895,0.333724,0.995096][-1.5883,-0.280871,0.0655356][-0.235934,-0.966914,0.0970167][0.7496,0.324716,0.990411][-1.40864,-0.324531,0.0673286][-0.341886,-0.936825,0.0739756][0.749752,0.300669,0.923827][-1.3374,-0.353775,-0.423199][-0.236291,-0.971396,0.0235971][0.69382,0.29816,0.940127][-1.40864,-0.324531,0.0673286][-0.341886,-0.936825,0.0739756][0.749752,0.300669,0.923827][-1.5883,-0.280871,0.0655356][-0.235934,-0.966914,0.0970167][0.7496,0.324716,0.990411][-1.5883,-0.280871,0.0655356][-0.235934,-0.966914,0.0970167][0.7496,0.324716,0.990411][-1.50778,-0.336179,-0.519078][-0.143358,-0.986929,0.0736226][0.690765,0.319527,1.01964][-1.3374,-0.353775,-0.423199][-0.236291,-0.971396,0.0235971][0.69382,0.29816,0.940127][-1.13416,-0.38852,-0.863427][-0.116402,-0.992897,0.024626][0.640443,0.297752,0.969603][-1.3374,-0.353775,-0.423199][-0.236291,-0.971396,0.0235971][0.69382,0.29816,0.940127][-1.50778,-0.336179,-0.519078][-0.143358,-0.986929,0.0736226][0.690765,0.319527,1.01964][-1.50778,-0.336179,-0.519078][-0.143358,-0.986929,0.0736226][0.690765,0.319527,1.01964][-1.28058,-0.401485,-1.04485][-0.0422924,-0.993558,0.105135][0.636027,0.31753,1.0737][-1.13416,-0.38852,-0.863427][-0.116402,-0.992897,0.024626][0.640443,0.297752,0.969603][-0.821271,-0.4316,-1.20536][-0.0314982,-0.994833,0.0965146][0.591081,0.296703,1.00369][-1.13416,-0.38852,-0.863427][-0.116402,-0.992897,0.024626][0.640443,0.297752,0.969603][-1.28058,-0.401485,-1.04485][-0.0422924,-0.993558,0.105135][0.636027,0.31753,1.0737][-1.28058,-0.401485,-1.04485][-0.0422924,-0.993558,0.105135][0.636027,0.31753,1.0737][-0.929142,-0.482877,-1.4538][0.0055819,-0.979819,0.199808][0.587169,0.314354,1.13594][-0.821271,-0.4316,-1.20536][-0.0314982,-0.994833,0.0965146][0.591081,0.296703,1.00369][-0.430596,-0.459058,-1.42305][0.035352,-0.981673,0.187265][0.544701,0.296698,1.02815][-0.821271,-0.4316,-1.20536][-0.0314982,-0.994833,0.0965146][0.591081,0.296703,1.00369][-0.929142,-0.482877,-1.4538][0.0055819,-0.979819,0.199808][0.587169,0.314354,1.13594][-0.929142,-0.482877,-1.4538][0.0055819,-0.979819,0.199808][0.587169,0.314354,1.13594][-0.487908,-0.535003,-1.71627][0.031195,-0.969049,0.24489][0.542448,0.313401,1.18088][-0.430596,-0.459058,-1.42305][0.035352,-0.981673,0.187265][0.544701,0.296698,1.02815][-1.61581e-006,-0.468486,-1.4977][0.0215601,-0.968847,0.246721][0.5,0.296803,1.03701][-0.430596,-0.459058,-1.42305][0.035352,-0.981673,0.187265][0.544701,0.296698,1.02815][-0.487908,-0.535003,-1.71627][0.031195,-0.969049,0.24489][0.542448,0.313401,1.18088][-0.487908,-0.535003,-1.71627][0.031195,-0.969049,0.24489][0.542448,0.313401,1.18088][-1.66304e-006,-0.538607,-1.81047][0.0350085,-0.97518,0.218628][0.5,0.315228,1.19469][-1.61581e-006,-0.468486,-1.4977][0.0215601,-0.968847,0.246721][0.5,0.296803,1.03701][-0.366847,-0.443389,-1.09101][-0.019442,-0.707792,0.00428998][0.548727,0.260722,0.885354][-0.701263,-0.433194,-0.92457][-0.0415446,-1.51244,0.00916703][0.597778,0.262074,0.881433][-0.821271,-0.4316,-1.20536][-0.0314982,-0.994833,0.0965146][0.591081,0.296703,1.00369][-0.821271,-0.4316,-1.20536][-0.0314982,-0.994833,0.0965146][0.591081,0.296703,1.00369][-0.430596,-0.459058,-1.42305][0.035352,-0.981673,0.187265][0.544701,0.296698,1.02815][-0.366847,-0.443389,-1.09101][-0.019442,-0.707792,0.00428998][0.548727,0.260722,0.885354][-0.701263,-0.433194,-0.92457][-0.0415446,-1.51244,0.00916703][0.597778,0.262074,0.881433][-0.971182,-0.416818,-0.659306][-0.161368,-1.46254,-0.0739076][0.647537,0.264094,0.874637][-1.13416,-0.38852,-0.863427][-0.116402,-0.992897,0.024626][0.640443,0.297752,0.969603][-1.13416,-0.38852,-0.863427][-0.116402,-0.992897,0.024626][0.640443,0.297752,0.969603][-0.821271,-0.4316,-1.20536][-0.0314982,-0.994833,0.0965146][0.591081,0.296703,1.00369][-0.701263,-0.433194,-0.92457][-0.0415446,-1.51244,0.00916703][0.597778,0.262074,0.881433][-0.971182,-0.416818,-0.659306][-0.161368,-1.46254,-0.0739076][0.647537,0.264094,0.874637][-1.14738,-0.395713,-0.316209][-0.299652,-1.51291,-0.0608229][0.698383,0.26664,0.865619][-1.3374,-0.353775,-0.423199][-0.236291,-0.971396,0.0235971][0.69382,0.29816,0.940127][-1.3374,-0.353775,-0.423199][-0.236291,-0.971396,0.0235971][0.69382,0.29816,0.940127][-1.13416,-0.38852,-0.863427][-0.116402,-0.992897,0.024626][0.640443,0.297752,0.969603][-0.971182,-0.416818,-0.659306][-0.161368,-1.46254,-0.0739076][0.647537,0.264094,0.874637][-1.14738,-0.395713,-0.316209][-0.299652,-1.51291,-0.0608229][0.698383,0.26664,0.865619][-1.20821,-0.372272,0.0704276][-0.39932,-1.67389,0.0386523][0.750119,0.26978,0.856429][-1.40864,-0.324531,0.0673286][-0.341886,-0.936825,0.0739756][0.749752,0.300669,0.923827][-1.40864,-0.324531,0.0673286][-0.341886,-0.936825,0.0739756][0.749752,0.300669,0.923827][-1.3374,-0.353775,-0.423199][-0.236291,-0.971396,0.0235971][0.69382,0.29816,0.940127][-1.14738,-0.395713,-0.316209][-0.299652,-1.51291,-0.0608229][0.698383,0.26664,0.865619][-1.20821,-0.372272,0.0704276][-0.39932,-1.67389,0.0386523][0.750119,0.26978,0.856429][-1.14629,-0.349013,0.457513][-0.288152,-1.88834,0.159563][0.801943,0.273512,0.849087][-1.33953,-0.310611,0.563022][-0.395996,-0.879607,0.263589][0.806179,0.304745,0.927704][-1.33953,-0.310611,0.563022][-0.395996,-0.879607,0.263589][0.806179,0.304745,0.927704][-1.40864,-0.324531,0.0673286][-0.341886,-0.936825,0.0739756][0.749752,0.300669,0.923827][-1.20821,-0.372272,0.0704276][-0.39932,-1.67389,0.0386523][0.750119,0.26978,0.856429][-1.14629,-0.349013,0.457513][-0.288152,-1.88834,0.159563][0.801943,0.273512,0.849087][-0.970772,-0.328144,0.802015][-0.335433,-1.93067,0.287854][0.852878,0.277456,0.844303][-1.13846,-0.268807,1.00458][-0.350136,-0.849087,0.395545][0.859437,0.315686,0.935326][-1.13846,-0.268807,1.00458][-0.350136,-0.849087,0.395545][0.859437,0.315686,0.935326][-1.33953,-0.310611,0.563022][-0.395996,-0.879607,0.263589][0.806179,0.304745,0.927704][-1.14629,-0.349013,0.457513][-0.288152,-1.88834,0.159563][0.801943,0.273512,0.849087][-0.970772,-0.328144,0.802015][-0.335433,-1.93067,0.287854][0.852878,0.277456,0.844303][-0.702235,-0.31186,1.0693][-0.271666,-1.88104,0.387535][0.902545,0.280693,0.841072][-0.826302,-0.235708,1.35196][-0.230626,-0.841349,0.488819][0.908904,0.325726,0.949456][-0.826302,-0.235708,1.35196][-0.230626,-0.841349,0.488819][0.908904,0.325726,0.949456][-1.13846,-0.268807,1.00458][-0.350136,-0.849087,0.395545][0.859437,0.315686,0.935326][-0.970772,-0.328144,0.802015][-0.335433,-1.93067,0.287854][0.852878,0.277456,0.844303][-0.702235,-0.31186,1.0693][-0.271666,-1.88104,0.387535][0.902545,0.280693,0.841072][-0.367882,-0.301652,1.23742][-0.161789,-1.78259,0.430007][0.951433,0.282629,0.83875][-0.433936,-0.214612,1.57339][-0.0853574,-0.820171,0.565715][0.955291,0.332522,0.961822][-0.433936,-0.214612,1.57339][-0.0853574,-0.820171,0.565715][0.955291,0.332522,0.961822][-0.826302,-0.235708,1.35196][-0.230626,-0.841349,0.488819][0.908904,0.325726,0.949456][-0.702235,-0.31186,1.0693][-0.271666,-1.88104,0.387535][0.902545,0.280693,0.841072][-0.367882,-0.301652,1.23742][-0.161789,-1.78259,0.430007][0.951433,0.282629,0.83875][-1.19738e-006,-0.295632,1.27345][0.0107793,-1.62533,0.381605][1,0.280936,0.828276][-1.14062e-006,-0.207374,1.64936][-0.0853574,-0.820171,0.565715][1,0.334902,0.966632][-1.14062e-006,-0.207374,1.64936][-0.0853574,-0.820171,0.565715][1,0.334902,0.966632][-0.433936,-0.214612,1.57339][-0.0853574,-0.820171,0.565715][0.955291,0.332522,0.961822][-0.367882,-0.301652,1.23742][-0.161789,-1.78259,0.430007][0.951433,0.282629,0.83875][-1.56043e-006,-0.440492,-1.1309][0.0084121,-0.970916,0.0740998][0.5,0.258931,0.877827][-0.366847,-0.443389,-1.09101][-0.019442,-0.707792,0.00428998][0.548727,0.260722,0.885354][-0.430596,-0.459058,-1.42305][0.035352,-0.981673,0.187265][0.544701,0.296698,1.02815][-0.430596,-0.459058,-1.42305][0.035352,-0.981673,0.187265][0.544701,0.296698,1.02815][-1.61581e-006,-0.468486,-1.4977][0.0215601,-0.968847,0.246721][0.5,0.296803,1.03701][-1.56043e-006,-0.440492,-1.1309][0.0084121,-0.970916,0.0740998][0.5,0.258931,0.877827][-0.131966,0.613428,0.477697][0.0501163,0.990448,0.12846][0.950232,0.440621,0.231976][-1.31442e-006,0.604075,0.498324][0.0501163,0.990448,0.12846][0,0.433921,0.232857][-1.38117e-006,0.66141,0.0562644][0.0501163,0.990448,0.12846][0.5,0.121677,0.0188896][-0.251923,0.608976,0.417129][-0.0810991,0.992845,0.0876454][0.900188,0.437483,0.232592][-0.131966,0.613428,0.477697][0.0501163,0.990448,0.12846][0.950232,0.440621,0.231976][-1.38117e-006,0.66141,0.0562644][0.0501163,0.990448,0.12846][0.5,0.121677,0.0188896][-0.348372,0.60217,0.320861][-0.12585,0.990464,0.0560586][0.84947,0.432686,0.23347][-0.251923,0.608976,0.417129][-0.0810991,0.992845,0.0876454][0.900188,0.437483,0.232592][-1.38117e-006,0.66141,0.0562644][0.0501163,0.990448,0.12846][0.5,0.121677,0.0188896][-0.403727,0.593053,0.196615][-0.166347,0.986066,0.00175502][0.798538,0.425196,0.231269][-0.348372,0.60217,0.320861][-0.12585,0.990464,0.0560586][0.84947,0.432686,0.23347][-1.38117e-006,0.66141,0.0562644][0.0501163,0.990448,0.12846][0.5,0.121677,0.0188896][-0.41207,0.583699,0.0656965][-0.186293,0.980769,-0.0582002][0.748522,0.416469,0.226739][-0.403727,0.593053,0.196615][-0.166347,0.986066,0.00175502][0.798538,0.425196,0.231269][-1.38117e-006,0.66141,0.0562644][0.0501163,0.990448,0.12846][0.5,0.121677,0.0188896][-0.364318,0.57636,-0.0446985][-0.186565,0.971639,-0.145298][0.701646,0.404562,0.212358][-0.41207,0.583699,0.0656965][-0.186293,0.980769,-0.0582002][0.748522,0.416469,0.226739][-1.38117e-006,0.66141,0.0562644][0.0501163,0.990448,0.12846][0.5,0.121677,0.0188896][-0.267355,0.569863,-0.143769][-0.162789,0.961278,-0.222362][0.642826,0.38885,0.193412][-0.364318,0.57636,-0.0446985][-0.186565,0.971639,-0.145298][0.701646,0.404562,0.212358][-1.38117e-006,0.66141,0.0562644][0.0501163,0.990448,0.12846][0.5,0.121677,0.0188896][-0.184196,0.562577,-0.239599][-0.166501,0.96173,-0.217607][0.585525,0.38823,0.203639][-0.267355,0.569863,-0.143769][-0.162789,0.961278,-0.222362][0.642826,0.38885,0.193412][-1.38117e-006,0.66141,0.0562644][0.0501163,0.990448,0.12846][0.5,0.121677,0.0188896][-0.0964664,0.553528,-0.352452][-0.174347,0.961453,-0.212631][0.535769,0.399854,0.241889][-0.184196,0.562577,-0.239599][-0.166501,0.96173,-0.217607][0.585525,0.38823,0.203639][-1.38117e-006,0.66141,0.0562644][0.0501163,0.990448,0.12846][0.5,0.121677,0.0188896][-1.44752e-006,0.551266,-0.38315][-0.0545467,0.968547,-0.242778][0.5,0.402522,0.252281][-0.0964664,0.553528,-0.352452][-0.174347,0.961453,-0.212631][0.535769,0.399854,0.241889][-1.38117e-006,0.66141,0.0562644][0.0501163,0.990448,0.12846][0.5,0.121677,0.0188896][-0.430768,-0.187471,1.56183][0.0998061,0.848138,-0.520289][0.955274,0.335633,0.949117][-0.488652,-0.00369652,1.85031][0.0998061,0.848138,-0.520289][0.957377,0.384953,1.04904][-1.0953e-006,-0.000336729,1.94952][-0.0853574,-0.820171,0.565715][1,0.387327,1.06503][-1.0953e-006,-0.000336729,1.94952][-0.0853574,-0.820171,0.565715][1,0.387327,1.06503][-1.14245e-006,-0.180283,1.63726][0.0727753,0.864132,-0.497975][1,0.33801,0.953958][-0.430768,-0.187471,1.56183][0.0998061,0.848138,-0.520289][0.955274,0.335633,0.949117][-0.820566,-0.208362,1.34199][0.194575,0.859293,-0.473029][0.908843,0.328862,0.936723][-0.92947,-0.0498419,1.58515][0.194575,0.859293,-0.473029][0.912447,0.373811,1.0242][-0.488652,-0.00369652,1.85031][0.0998061,0.848138,-0.520289][0.957377,0.384953,1.04904][-0.488652,-0.00369652,1.85031][0.0998061,0.848138,-0.520289][0.957377,0.384953,1.04904][-0.430768,-0.187471,1.56183][0.0998061,0.848138,-0.520289][0.955274,0.335633,0.949117][-0.820566,-0.208362,1.34199][0.194575,0.859293,-0.473029][0.908843,0.328862,0.936723][-1.13158,-0.240956,0.997027][0.265702,0.886298,-0.379314][0.859278,0.318944,0.922776][-1.27931,-0.121713,1.17217][0.265702,0.886298,-0.379314][0.863218,0.35672,0.99675][-0.92947,-0.0498419,1.58515][0.194575,0.859293,-0.473029][0.912447,0.373811,1.0242][-0.92947,-0.0498419,1.58515][0.194575,0.859293,-0.473029][0.912447,0.373811,1.0242][-0.820566,-0.208362,1.34199][0.194575,0.859293,-0.473029][0.908843,0.328862,0.936723][-1.13158,-0.240956,0.997027][0.265702,0.886298,-0.379314][0.859278,0.318944,0.922776][-1.33245,-0.282108,0.558816][0.237027,0.934673,-0.264961][0.806011,0.30819,0.915522][-1.50391,-0.212274,0.651778][0.237027,0.934673,-0.264961][0.80879,0.336972,0.983107][-1.27931,-0.121713,1.17217][0.265702,0.886298,-0.379314][0.863218,0.35672,0.99675][-1.27931,-0.121713,1.17217][0.265702,0.886298,-0.379314][0.863218,0.35672,0.99675][-1.13158,-0.240956,0.997027][0.265702,0.886298,-0.379314][0.859278,0.318944,0.922776][-1.33245,-0.282108,0.558816][0.237027,0.934673,-0.264961][0.806011,0.30819,0.915522][-1.40195,-0.295681,0.0655866][0.235767,0.966999,-0.0965796][0.749553,0.304277,0.912019][-1.58131,-0.252158,0.0635036][0.235767,0.966999,-0.0965796][0.749394,0.328311,0.979324][-1.50391,-0.212274,0.651778][0.237027,0.934673,-0.264961][0.80879,0.336972,0.983107][-1.50391,-0.212274,0.651778][0.237027,0.934673,-0.264961][0.80879,0.336972,0.983107][-1.33245,-0.282108,0.558816][0.237027,0.934673,-0.264961][0.806011,0.30819,0.915522][-1.40195,-0.295681,0.0655866][0.235767,0.966999,-0.0965796][0.749553,0.304277,0.912019][-1.33245,-0.324538,-0.42416][0.143146,0.986973,-0.0734405][0.693527,0.301983,0.929144][-1.50391,-0.306866,-0.520863][0.143146,0.986973,-0.0734405][0.690463,0.323402,1.01003][-1.58131,-0.252158,0.0635036][0.235767,0.966999,-0.0965796][0.749394,0.328311,0.979324][-1.58131,-0.252158,0.0635036][0.235767,0.966999,-0.0965796][0.749394,0.328311,0.979324][-1.40195,-0.295681,0.0655866][0.235767,0.966999,-0.0965796][0.749553,0.304277,0.912019][-1.33245,-0.324538,-0.42416][0.143146,0.986973,-0.0734405][0.693527,0.301983,0.929144][-1.13158,-0.359007,-0.865029][0.0421749,0.993588,-0.104902][0.640131,0.301835,0.959956][-1.27931,-0.372071,-1.04816][0.0421749,0.993588,-0.104902][0.635715,0.321556,1.06585][-1.50391,-0.306866,-0.520863][0.143146,0.986973,-0.0734405][0.690463,0.323402,1.01003][-1.50391,-0.306866,-0.520863][0.143146,0.986973,-0.0734405][0.690463,0.323402,1.01003][-1.33245,-0.324538,-0.42416][0.143146,0.986973,-0.0734405][0.693527,0.301983,0.929144][-1.13158,-0.359007,-0.865029][0.0421749,0.993588,-0.104902][0.640131,0.301835,0.959956][-0.820567,-0.402116,-1.20859][-0.00555662,0.979903,-0.199398][0.590836,0.300963,0.995442][-0.929471,-0.453752,-1.45932][-0.00555662,0.979903,-0.199398][0.586938,0.318397,1.12968][-1.27931,-0.372071,-1.04816][0.0421749,0.993588,-0.104902][0.635715,0.321556,1.06585][-1.27931,-0.372071,-1.04816][0.0421749,0.993588,-0.104902][0.635715,0.321556,1.06585][-1.13158,-0.359007,-0.865029][0.0421749,0.993588,-0.104902][0.640131,0.301835,0.959956][-0.820567,-0.402116,-1.20859][-0.00555662,0.979903,-0.199398][0.590836,0.300963,0.995442][-0.430768,-0.429733,-1.42755][-0.0311023,0.969156,-0.244479][0.544591,0.301031,1.02082][-0.488653,-0.506197,-1.7233][-0.0311023,0.969156,-0.244479][0.54235,0.317409,1.1756][-0.929471,-0.453752,-1.45932][-0.00555662,0.979903,-0.199398][0.586938,0.318397,1.12968][-0.929471,-0.453752,-1.45932][-0.00555662,0.979903,-0.199398][0.586938,0.318397,1.12968][-0.820567,-0.402116,-1.20859][-0.00555662,0.979903,-0.199398][0.590836,0.300963,0.995442][-0.430768,-0.429733,-1.42755][-0.0311023,0.969156,-0.244479][0.544591,0.301031,1.02082][-1.61656e-006,-0.439237,-1.50267][0.00830995,0.951605,-0.307212][0.5,0.301147,1.02997][-1.66304e-006,-0.538607,-1.81047][0.0350085,-0.97518,0.218628][0.5,0.315228,1.19469][-0.488653,-0.506197,-1.7233][-0.0311023,0.969156,-0.244479][0.54235,0.317409,1.1756][-0.488653,-0.506197,-1.7233][-0.0311023,0.969156,-0.244479][0.54235,0.317409,1.1756][-0.430768,-0.429733,-1.42755][-0.0311023,0.969156,-0.244479][0.544591,0.301031,1.02082][-1.61656e-006,-0.439237,-1.50267][0.00830995,0.951605,-0.307212][0.5,0.301147,1.02997][-0.366208,-0.413756,-1.09232][0.0396848,0.997687,-0.0551923][0.548596,0.265046,0.875089][-0.430768,-0.429733,-1.42755][-0.0311023,0.969156,-0.244479][0.544591,0.301031,1.02082][-0.820567,-0.402116,-1.20859][-0.00555662,0.979903,-0.199398][0.590836,0.300963,0.995442][-0.820567,-0.402116,-1.20859][-0.00555662,0.979903,-0.199398][0.590836,0.300963,0.995442][-0.699102,-0.403607,-0.924992][0.0272511,0.999608,-0.00641415][0.597515,0.266172,0.870467][-0.366208,-0.413756,-1.09232][0.0396848,0.997687,-0.0551923][0.548596,0.265046,0.875089][-0.699102,-0.403607,-0.924992][0.0272511,0.999608,-0.00641415][0.597515,0.266172,0.870467][-0.820567,-0.402116,-1.20859][-0.00555662,0.979903,-0.199398][0.590836,0.300963,0.995442][-1.13158,-0.359007,-0.865029][0.0421749,0.993588,-0.104902][0.640131,0.301835,0.959956][-1.13158,-0.359007,-0.865029][0.0421749,0.993588,-0.104902][0.640131,0.301835,0.959956][-0.96681,-0.387474,-0.659006][0.109283,0.992764,0.0497755][0.647223,0.267852,0.86273][-0.699102,-0.403607,-0.924992][0.0272511,0.999608,-0.00641415][0.597515,0.266172,0.870467][-0.96681,-0.387474,-0.659006][0.109283,0.992764,0.0497755][0.647223,0.267852,0.86273][-1.13158,-0.359007,-0.865029][0.0421749,0.993588,-0.104902][0.640131,0.301835,0.959956][-1.33245,-0.324538,-0.42416][0.143146,0.986973,-0.0734405][0.693527,0.301983,0.929144][-1.33245,-0.324538,-0.42416][0.143146,0.986973,-0.0734405][0.693527,0.301983,0.929144][-1.14121,-0.366693,-0.316376][0.19394,0.980227,0.0392631][0.698103,0.270148,0.853064][-0.96681,-0.387474,-0.659006][0.109283,0.992764,0.0497755][0.647223,0.267852,0.86273][-1.14121,-0.366693,-0.316376][0.19394,0.980227,0.0392631][0.698103,0.270148,0.853064][-1.33245,-0.324538,-0.42416][0.143146,0.986973,-0.0734405][0.693527,0.301983,0.929144][-1.40195,-0.295681,0.0655866][0.235767,0.966999,-0.0965796][0.749553,0.304277,0.912019][-1.40195,-0.295681,0.0655866][0.235767,0.966999,-0.0965796][0.749553,0.304277,0.912019][-1.2019,-0.343318,0.0690326][0.231958,0.972467,-0.022455][0.749935,0.273294,0.843781][-1.14121,-0.366693,-0.316376][0.19394,0.980227,0.0392631][0.698103,0.270148,0.853064][-1.2019,-0.343318,0.0690326][0.231958,0.972467,-0.022455][0.749935,0.273294,0.843781][-1.40195,-0.295681,0.0655866][0.235767,0.966999,-0.0965796][0.749553,0.304277,0.912019][-1.33245,-0.282108,0.558816][0.237027,0.934673,-0.264961][0.806011,0.30819,0.915522][-1.33245,-0.282108,0.558816][0.237027,0.934673,-0.264961][0.806011,0.30819,0.915522][-1.14121,-0.319944,0.454442][0.149473,0.985252,-0.0832874][0.801774,0.277198,0.836725][-1.2019,-0.343318,0.0690326][0.231958,0.972467,-0.022455][0.749935,0.273294,0.843781][-1.14121,-0.319944,0.454442][0.149473,0.985252,-0.0832874][0.801774,0.277198,0.836725][-1.33245,-0.282108,0.558816][0.237027,0.934673,-0.264961][0.806011,0.30819,0.915522][-1.13158,-0.240956,0.997027][0.265702,0.886298,-0.379314][0.859278,0.318944,0.922776][-1.13158,-0.240956,0.997027][0.265702,0.886298,-0.379314][0.859278,0.318944,0.922776][-0.96681,-0.29916,0.797072][0.168532,0.974983,-0.144928][0.852673,0.281164,0.831951][-1.14121,-0.319944,0.454442][0.149473,0.985252,-0.0832874][0.801774,0.277198,0.836725][-0.96681,-0.29916,0.797072][0.168532,0.974983,-0.144928][0.852673,0.281164,0.831951][-1.13158,-0.240956,0.997027][0.265702,0.886298,-0.379314][0.859278,0.318944,0.922776][-0.820566,-0.208362,1.34199][0.194575,0.859293,-0.473029][0.908843,0.328862,0.936723][-0.820566,-0.208362,1.34199][0.194575,0.859293,-0.473029][0.908843,0.328862,0.936723][-0.699101,-0.283027,1.06306][0.139276,0.970049,-0.199017][0.902411,0.28434,0.828551][-0.96681,-0.29916,0.797072][0.168532,0.974983,-0.144928][0.852673,0.281164,0.831951][-0.699101,-0.283027,1.06306][0.139276,0.970049,-0.199017][0.902411,0.28434,0.828551][-0.820566,-0.208362,1.34199][0.194575,0.859293,-0.473029][0.908843,0.328862,0.936723][-0.430768,-0.187471,1.56183][0.0998061,0.848138,-0.520289][0.955274,0.335633,0.949117][-0.430768,-0.187471,1.56183][0.0998061,0.848138,-0.520289][0.955274,0.335633,0.949117][-0.366207,-0.272878,1.23038][0.0873721,0.968645,-0.232578][0.951365,0.286267,0.826182][-0.699101,-0.283027,1.06306][0.139276,0.970049,-0.199017][0.902411,0.28434,0.828551][-0.366207,-0.272878,1.23038][0.0873721,0.968645,-0.232578][0.951365,0.286267,0.826182][-0.430768,-0.187471,1.56183][0.0998061,0.848138,-0.520289][0.955274,0.335633,0.949117][-1.14245e-006,-0.180283,1.63726][0.0727753,0.864132,-0.497975][1,0.33801,0.953958][-1.14245e-006,-0.180283,1.63726][0.0727753,0.864132,-0.497975][1,0.33801,0.953958][-1.19528e-006,-0.269424,1.28735][0.0292527,0.968634,-0.246766][1,0.286895,0.825282][-0.366207,-0.272878,1.23038][0.0873721,0.968645,-0.232578][0.951365,0.286267,0.826182][-1.56321e-006,-0.417211,-1.14929][0.0111701,0.998001,-0.0622027][0.5,0.264633,0.876571][-1.61656e-006,-0.439237,-1.50267][0.00830995,0.951605,-0.307212][0.5,0.301147,1.02997][-0.430768,-0.429733,-1.42755][-0.0311023,0.969156,-0.244479][0.544591,0.301031,1.02082][-0.430768,-0.429733,-1.42755][-0.0311023,0.969156,-0.244479][0.544591,0.301031,1.02082][-0.366208,-0.413756,-1.09232][0.0396848,0.997687,-0.0551923][0.548596,0.265046,0.875089][-1.56321e-006,-0.417211,-1.14929][0.0111701,0.998001,-0.0622027][0.5,0.264633,0.876571][-0.347896,-0.00721364,1.17244][-0.151964,0.220618,0.963449][0.951369,0.326422,0.718786][-0.366207,-0.272878,1.23038][0.0873721,0.968645,-0.232578][0.951365,0.286267,0.826182][-1.19528e-006,-0.269424,1.28735][0.0292527,0.968634,-0.246766][1,0.286895,0.825282][-1.19528e-006,-0.269424,1.28735][0.0292527,0.968634,-0.246766][1,0.286895,0.825282][-1.20458e-006,0.000745723,1.22577][-0.152736,0.219638,0.963551][1,0.328,0.716493][-0.347896,-0.00721364,1.17244][-0.151964,0.220618,0.963449][0.951369,0.326422,0.718786][-0.664146,-0.0134716,1.01348][-0.443639,0.217446,0.869426][0.902418,0.324884,0.719474][-0.699101,-0.283027,1.06306][-0.443639,0.217446,0.869426][0.902411,0.28434,0.828551][-0.366207,-0.272878,1.23038][0.0873721,0.968645,-0.232578][0.951365,0.286267,0.826182][-0.366207,-0.272878,1.23038][0.0873721,0.968645,-0.232578][0.951365,0.286267,0.826182][-0.347896,-0.00721364,1.17244][-0.151964,0.220618,0.963449][0.951369,0.326422,0.718786][-0.664146,-0.0134716,1.01348][-0.443639,0.217446,0.869426][0.902418,0.324884,0.719474][-0.91847,-0.0234213,0.760792][-0.69517,0.212236,0.6868][0.852684,0.322321,0.720157][-0.96681,-0.29916,0.797072][-0.69517,0.212236,0.6868][0.852673,0.281164,0.831951][-0.699101,-0.283027,1.06306][-0.443639,0.217446,0.869426][0.902411,0.28434,0.828551][-0.699101,-0.283027,1.06306][-0.443639,0.217446,0.869426][0.902411,0.28434,0.828551][-0.664146,-0.0134716,1.01348][-0.443639,0.217446,0.869426][0.902418,0.324884,0.719474][-0.91847,-0.0234213,0.760792][-0.69517,0.212236,0.6868][0.852684,0.322321,0.720157][-0.918471,-0.0778818,-0.622482][-0.870348,0.189517,-0.454508][0.647234,0.311759,0.736091][-0.96681,-0.387474,-0.659006][-0.870348,0.189517,-0.454508][0.647223,0.267852,0.86273][-1.14121,-0.366693,-0.316376][0.19394,0.980227,0.0392631][0.698103,0.270148,0.853064][-1.14121,-0.366693,-0.316376][0.19394,0.980227,0.0392631][0.698103,0.270148,0.853064][-1.08415,-0.0650673,-0.296983][-0.87119,0.193809,-0.451071][0.698116,0.313506,0.729854][-0.918471,-0.0778818,-0.622482][-0.870348,0.189517,-0.454508][0.647234,0.311759,0.736091][-0.664147,-0.0878305,-0.875169][-0.686716,0.186857,-0.702499][0.597523,0.310485,0.741164][-0.699102,-0.403607,-0.924992][0.0272511,0.999608,-0.00641415][0.597515,0.266172,0.870467][-0.96681,-0.387474,-0.659006][-0.870348,0.189517,-0.454508][0.647223,0.267852,0.86273][-0.96681,-0.387474,-0.659006][-0.870348,0.189517,-0.454508][0.647223,0.267852,0.86273][-0.918471,-0.0778818,-0.622482][-0.870348,0.189517,-0.454508][0.647234,0.311759,0.736091][-0.664147,-0.0878305,-0.875169][-0.686716,0.186857,-0.702499][0.597523,0.310485,0.741164][-0.347897,-0.0940885,-1.03413][-0.436812,0.185262,-0.880269][0.5486,0.309613,0.744087][-0.366208,-0.413756,-1.09232][-0.436812,0.185262,-0.880269][0.548596,0.265046,0.875089][-0.699102,-0.403607,-0.924992][0.0272511,0.999608,-0.00641415][0.597515,0.266172,0.870467][-0.699102,-0.403607,-0.924992][0.0272511,0.999608,-0.00641415][0.597515,0.266172,0.870467][-0.664147,-0.0878305,-0.875169][-0.686716,0.186857,-0.702499][0.597523,0.310485,0.741164][-0.347897,-0.0940885,-1.03413][-0.436812,0.185262,-0.880269][0.5486,0.309613,0.744087][-1.55399e-006,-0.09622,-1.08825][-0.149372,0.184711,-0.971375][0.5,0.309288,0.744984][-1.56321e-006,-0.417211,-1.14929][-0.149372,0.184711,-0.971375][0.5,0.264633,0.876571][-0.366208,-0.413756,-1.09232][-0.436812,0.185262,-0.880269][0.548596,0.265046,0.875089][-0.366208,-0.413756,-1.09232][-0.436812,0.185262,-0.880269][0.548596,0.265046,0.875089][-0.347897,-0.0940885,-1.03413][-0.436812,0.185262,-0.880269][0.5486,0.309613,0.744087][-1.55399e-006,-0.09622,-1.08825][-0.149372,0.184711,-0.971375][0.5,0.309288,0.744984][-0.319971,0.360582,1.06916][-0.151769,0.277881,0.948551][0.950697,0.401986,0.585267][-0.347896,-0.00721364,1.17244][-0.151964,0.220618,0.963449][0.951369,0.326422,0.718786][-1.20458e-006,0.000745723,1.22577][-0.152736,0.219638,0.963551][1,0.328,0.716493][-1.20458e-006,0.000745723,1.22577][-0.152736,0.219638,0.963551][1,0.328,0.716493][-1.22071e-006,0.36254,1.11894][-0.149238,0.280031,0.94832][1,0.402509,0.584859][-0.319971,0.360582,1.06916][-0.151769,0.277881,0.948551][0.950697,0.401986,0.585267][-0.610875,0.354826,0.922985][-0.43627,0.273713,0.857175][0.901129,0.400399,0.58618][-0.664146,-0.0134716,1.01348][-0.443639,0.217446,0.869426][0.902418,0.324884,0.719474][-0.347896,-0.00721364,1.17244][-0.151964,0.220618,0.963449][0.951369,0.326422,0.718786][-0.347896,-0.00721364,1.17244][-0.151964,0.220618,0.963449][0.951369,0.326422,0.718786][-0.319971,0.360582,1.06916][-0.151769,0.277881,0.948551][0.950697,0.401986,0.585267][-0.610875,0.354826,0.922985][-0.43627,0.273713,0.857175][0.901129,0.400399,0.58618][-0.844913,0.345677,0.690639][-0.684737,0.26546,0.678724][0.85089,0.397811,0.587237][-0.91847,-0.0234213,0.760792][-0.69517,0.212236,0.6868][0.852684,0.322321,0.720157][-0.664146,-0.0134716,1.01348][-0.443639,0.217446,0.869426][0.902418,0.324884,0.719474][-0.664146,-0.0134716,1.01348][-0.443639,0.217446,0.869426][0.902418,0.324884,0.719474][-0.610875,0.354826,0.922985][-0.43627,0.273713,0.857175][0.901129,0.400399,0.58618][-0.844913,0.345677,0.690639][-0.684737,0.26546,0.678724][0.85089,0.397811,0.587237][-0.997477,0.333888,0.391306][-0.865975,0.253987,0.430788][0.799665,0.394549,0.588966][-1.08415,-0.0362368,0.435294][-0.865975,0.253987,0.430788][0.801787,0.319108,0.72139][-0.91847,-0.0234213,0.760792][-0.69517,0.212236,0.6868][0.852684,0.322321,0.720157][-0.91847,-0.0234213,0.760792][-0.69517,0.212236,0.6868][0.852684,0.322321,0.720157][-0.844913,0.345677,0.690639][-0.684737,0.26546,0.678724][0.85089,0.397811,0.587237][-0.997477,0.333888,0.391306][-0.865975,0.253987,0.430788][0.799665,0.394549,0.588966][-1.05059,0.320638,0.0545366][-0.960026,0.241418,0.141658][0.74773,0.391214,0.592597][-1.1418,-0.0506516,0.0691556][-0.960026,0.241418,0.141658][0.749949,0.315972,0.724479][-1.08415,-0.0362368,0.435294][-0.865975,0.253987,0.430788][0.801787,0.319108,0.72139][-1.08415,-0.0362368,0.435294][-0.865975,0.253987,0.430788][0.801787,0.319108,0.72139][-0.997477,0.333888,0.391306][-0.865975,0.253987,0.430788][0.799665,0.394549,0.588966][-1.05059,0.320638,0.0545366][-0.960026,0.241418,0.141658][0.74773,0.391214,0.592597][-0.828206,0.268096,-0.187433][-0.606656,0.711,-0.355595][0.702119,0.354561,0.513462][-1.06624,0.0161619,-0.285071][-0.606656,0.711,-0.355595][0.698902,0.32714,0.697432][-1.06909,0.0902577,-0.132059][-0.606656,0.711,-0.355595][0.720338,0.338646,0.661263][-1.06909,0.0902577,-0.132059][-0.606656,0.711,-0.355595][0.720338,0.338646,0.661263][-1.02475,0.305472,-0.0581484][-0.459807,0.371695,-0.806487][0.730273,0.38535,0.586375][-0.828206,0.268096,-0.187433][-0.606656,0.711,-0.355595][0.702119,0.354561,0.513462][-0.626623,0.25233,-0.409107][-0.518716,0.750666,-0.409187][0.646184,0.337353,0.480356][-0.89784,-0.0398836,-0.601366][-0.518716,0.750666,-0.409187][0.647866,0.315389,0.71201][-1.06624,0.0161619,-0.285071][-0.606656,0.711,-0.355595][0.698902,0.32714,0.697432][-1.06624,0.0161619,-0.285071][-0.606656,0.711,-0.355595][0.698902,0.32714,0.697432][-0.828206,0.268096,-0.187433][-0.606656,0.711,-0.355595][0.702119,0.354561,0.513462][-0.626623,0.25233,-0.409107][-0.518716,0.750666,-0.409187][0.646184,0.337353,0.480356][-0.465688,0.236327,-0.630152][-0.510442,0.755902,-0.409953][0.593463,0.341164,0.508642][-0.650061,-0.00584598,-0.847122][-0.510442,0.755902,-0.409953][0.598175,0.322622,0.703589][-0.89784,-0.0398836,-0.601366][-0.518716,0.750666,-0.409187][0.647866,0.315389,0.71201][-0.89784,-0.0398836,-0.601366][-0.518716,0.750666,-0.409187][0.647866,0.315389,0.71201][-0.626623,0.25233,-0.409107][-0.518716,0.750666,-0.409187][0.646184,0.337353,0.480356][-0.465688,0.236327,-0.630152][-0.510442,0.755902,-0.409953][0.593463,0.341164,0.508642][-0.364892,0.233639,-0.905847][-0.444741,0.324916,-0.834647][0.556975,0.367408,0.605123][-0.47424,0.0628825,-0.914054][-0.444741,0.324916,-0.834647][0.571504,0.333097,0.670289][-0.650061,-0.00584598,-0.847122][-0.510442,0.755902,-0.409953][0.598175,0.322622,0.703589][-0.650061,-0.00584598,-0.847122][-0.510442,0.755902,-0.409953][0.598175,0.322622,0.703589][-0.465688,0.236327,-0.630152][-0.510442,0.755902,-0.409953][0.593463,0.341164,0.508642][-0.364892,0.233639,-0.905847][-0.444741,0.324916,-0.834647][0.556975,0.367408,0.605123][-1.5434e-006,0.2051,-1.01813][-0.148471,0.224147,-0.963179][0.5,0.365438,0.633752][-1.55399e-006,-0.09622,-1.08825][-0.149372,0.184711,-0.971375][0.5,0.309288,0.744984][-0.347897,-0.0940885,-1.03413][-0.436812,0.185262,-0.880269][0.5486,0.309613,0.744087][-0.347897,-0.0940885,-1.03413][-0.436812,0.185262,-0.880269][0.5486,0.309613,0.744087][-0.235906,0.207061,-0.968354][-0.196082,0.278284,-0.940271][0.535571,0.363325,0.622046][-1.5434e-006,0.2051,-1.01813][-0.148471,0.224147,-0.963179][0.5,0.365438,0.633752][-0.299131,0.592217,0.993771][-0.147632,0.318076,0.9365][0.950183,0.466643,0.51906][-0.319971,0.360582,1.06916][-0.151769,0.277881,0.948551][0.950697,0.401986,0.585267][-1.22071e-006,0.36254,1.11894][-0.149238,0.280031,0.94832][1,0.402509,0.584859][-1.22071e-006,0.36254,1.11894][-0.149238,0.280031,0.94832][1,0.402509,0.584859][-1.23259e-006,0.59405,1.0403][-0.147622,0.318088,0.936498][1,0.467215,0.518605][-0.299131,0.592217,0.993771][-0.147632,0.318076,0.9365][0.950183,0.466643,0.51906][-0.57112,0.586825,0.857144][-0.431238,0.313951,0.845853][0.900148,0.464949,0.520131][-0.610875,0.354826,0.922985][-0.43627,0.273713,0.857175][0.901129,0.400399,0.58618][-0.319971,0.360582,1.06916][-0.151769,0.277881,0.948551][0.950697,0.401986,0.585267][-0.319971,0.360582,1.06916][-0.151769,0.277881,0.948551][0.950697,0.401986,0.585267][-0.299131,0.592217,0.993771][-0.147632,0.318076,0.9365][0.950183,0.466643,0.51906][-0.57112,0.586825,0.857144][-0.431238,0.313951,0.845853][0.900148,0.464949,0.520131][-0.790016,0.578241,0.63998][-0.676812,0.305646,0.669706][0.849534,0.462236,0.521471][-0.844913,0.345677,0.690639][-0.684737,0.26546,0.678724][0.85089,0.397811,0.587237][-0.610875,0.354826,0.922985][-0.43627,0.273713,0.857175][0.901129,0.400399,0.58618][-0.610875,0.354826,0.922985][-0.43627,0.273713,0.857175][0.901129,0.400399,0.58618][-0.57112,0.586825,0.857144][-0.431238,0.313951,0.845853][0.900148,0.464949,0.520131][-0.790016,0.578241,0.63998][-0.676812,0.305646,0.669706][0.849534,0.462236,0.521471][-0.920142,0.568048,0.359781][-0.844695,0.335159,0.417323][0.798633,0.458553,0.517076][-0.997477,0.333888,0.391306][-0.865975,0.253987,0.430788][0.799665,0.394549,0.588966][-0.844913,0.345677,0.690639][-0.684737,0.26546,0.678724][0.85089,0.397811,0.587237][-0.844913,0.345677,0.690639][-0.684737,0.26546,0.678724][0.85089,0.397811,0.587237][-0.790016,0.578241,0.63998][-0.676812,0.305646,0.669706][0.849534,0.462236,0.521471][-0.920142,0.568048,0.359781][-0.844695,0.335159,0.417323][0.798633,0.458553,0.517076][-0.9471,0.558572,0.0597316][-0.910474,0.393219,0.128125][0.748354,0.454664,0.508449][-1.05059,0.320638,0.0545366][-0.960026,0.241418,0.141658][0.74773,0.391214,0.592597][-0.997477,0.333888,0.391306][-0.865975,0.253987,0.430788][0.799665,0.394549,0.588966][-0.997477,0.333888,0.391306][-0.865975,0.253987,0.430788][0.799665,0.394549,0.588966][-0.920142,0.568048,0.359781][-0.844695,0.335159,0.417323][0.798633,0.458553,0.517076][-0.9471,0.558572,0.0597316][-0.910474,0.393219,0.128125][0.748354,0.454664,0.508449][-0.831441,0.512042,-0.192048][-0.552463,-0.0230891,-0.833217][0.70149,0.434353,0.473191][-0.828206,0.268096,-0.187433][-0.606656,0.711,-0.355595][0.702119,0.354561,0.513462][-1.02475,0.305472,-0.0581484][-0.459807,0.371695,-0.806487][0.730273,0.38535,0.586375][-1.02475,0.305472,-0.0581484][-0.459807,0.371695,-0.806487][0.730273,0.38535,0.586375][-0.962779,0.448562,-0.0585834][-0.746877,0.321719,-0.581954][0.728946,0.421092,0.53239][-0.831441,0.512042,-0.192048][-0.552463,-0.0230891,-0.833217][0.70149,0.434353,0.473191][-0.61283,0.521682,-0.417643][-0.739151,0.0165121,-0.673337][0.643103,0.430884,0.42601][-0.626623,0.25233,-0.409107][-0.518716,0.750666,-0.409187][0.646184,0.337353,0.480356][-0.828206,0.268096,-0.187433][-0.606656,0.711,-0.355595][0.702119,0.354561,0.513462][-0.828206,0.268096,-0.187433][-0.606656,0.711,-0.355595][0.702119,0.354561,0.513462][-0.831441,0.512042,-0.192048][-0.552463,-0.0230891,-0.833217][0.70149,0.434353,0.473191][-0.61283,0.521682,-0.417643][-0.739151,0.0165121,-0.673337][0.643103,0.430884,0.42601][-0.419151,0.477414,-0.665399][-0.80413,0.068901,-0.590447][0.582493,0.420088,0.464127][-0.465688,0.236327,-0.630152][-0.510442,0.755902,-0.409953][0.593463,0.341164,0.508642][-0.626623,0.25233,-0.409107][-0.518716,0.750666,-0.409187][0.646184,0.337353,0.480356][-0.626623,0.25233,-0.409107][-0.518716,0.750666,-0.409187][0.646184,0.337353,0.480356][-0.61283,0.521682,-0.417643][-0.739151,0.0165121,-0.673337][0.643103,0.430884,0.42601][-0.419151,0.477414,-0.665399][-0.80413,0.068901,-0.590447][0.582493,0.420088,0.464127][-0.341419,0.429353,-0.81962][-0.90709,0.256006,-0.334138][0.55835,0.413608,0.525343][-0.364892,0.233639,-0.905847][-0.444741,0.324916,-0.834647][0.556975,0.367408,0.605123][-0.465688,0.236327,-0.630152][-0.510442,0.755902,-0.409953][0.593463,0.341164,0.508642][-0.465688,0.236327,-0.630152][-0.510442,0.755902,-0.409953][0.593463,0.341164,0.508642][-0.419151,0.477414,-0.665399][-0.80413,0.068901,-0.590447][0.582493,0.420088,0.464127][-0.341419,0.429353,-0.81962][-0.90709,0.256006,-0.334138][0.55835,0.413608,0.525343][-1.53282e-006,0.515313,-0.948047][-0.199863,0.215916,-0.955738][0.5,0.444549,0.549031][-1.5434e-006,0.2051,-1.01813][-0.148471,0.224147,-0.963179][0.5,0.365438,0.633752][-0.235906,0.207061,-0.968354][-0.196082,0.278284,-0.940271][0.535571,0.363325,0.622046][-0.235906,0.207061,-0.968354][-0.196082,0.278284,-0.940271][0.535571,0.363325,0.622046][-0.219747,0.518454,-0.889427][-0.24622,0.250117,-0.936385][0.535852,0.443671,0.531074][-1.53282e-006,0.515313,-0.948047][-0.199863,0.215916,-0.955738][0.5,0.444549,0.549031][-1.06624,0.0161619,-0.285071][-0.606656,0.711,-0.355595][0.698902,0.32714,0.697432][-1.08415,-0.0650673,-0.296983][-0.87119,0.193809,-0.451071][0.698116,0.313506,0.729854][-1.1418,-0.0506516,0.0691556][-0.960026,0.241418,0.141658][0.749949,0.315972,0.724479][-1.1418,-0.0506516,0.0691556][-0.960026,0.241418,0.141658][0.749949,0.315972,0.724479][-1.06909,0.0902577,-0.132059][-0.606656,0.711,-0.355595][0.720338,0.338646,0.661263][-1.06624,0.0161619,-0.285071][-0.606656,0.711,-0.355595][0.698902,0.32714,0.697432][-1.06909,0.0902577,-0.132059][-0.606656,0.711,-0.355595][0.720338,0.338646,0.661263][-1.1418,-0.0506516,0.0691556][-0.960026,0.241418,0.141658][0.749949,0.315972,0.724479][-1.05059,0.320638,0.0545366][-0.960026,0.241418,0.141658][0.74773,0.391214,0.592597][-1.05059,0.320638,0.0545366][-0.960026,0.241418,0.141658][0.74773,0.391214,0.592597][-1.02475,0.305472,-0.0581484][-0.459807,0.371695,-0.806487][0.730273,0.38535,0.586375][-1.06909,0.0902577,-0.132059][-0.606656,0.711,-0.355595][0.720338,0.338646,0.661263][-0.89784,-0.0398836,-0.601366][-0.518716,0.750666,-0.409187][0.647866,0.315389,0.71201][-0.918471,-0.0778818,-0.622482][-0.870348,0.189517,-0.454508][0.647234,0.311759,0.736091][-1.08415,-0.0650673,-0.296983][-0.87119,0.193809,-0.451071][0.698116,0.313506,0.729854][-1.08415,-0.0650673,-0.296983][-0.87119,0.193809,-0.451071][0.698116,0.313506,0.729854][-1.06624,0.0161619,-0.285071][-0.606656,0.711,-0.355595][0.698902,0.32714,0.697432][-0.89784,-0.0398836,-0.601366][-0.518716,0.750666,-0.409187][0.647866,0.315389,0.71201][-0.650061,-0.00584598,-0.847122][-0.510442,0.755902,-0.409953][0.598175,0.322622,0.703589][-0.664147,-0.0878305,-0.875169][-0.686716,0.186857,-0.702499][0.597523,0.310485,0.741164][-0.918471,-0.0778818,-0.622482][-0.870348,0.189517,-0.454508][0.647234,0.311759,0.736091][-0.918471,-0.0778818,-0.622482][-0.870348,0.189517,-0.454508][0.647234,0.311759,0.736091][-0.89784,-0.0398836,-0.601366][-0.518716,0.750666,-0.409187][0.647866,0.315389,0.71201][-0.650061,-0.00584598,-0.847122][-0.510442,0.755902,-0.409953][0.598175,0.322622,0.703589][-0.47424,0.0628825,-0.914054][-0.444741,0.324916,-0.834647][0.571504,0.333097,0.670289][-0.347897,-0.0940885,-1.03413][-0.436812,0.185262,-0.880269][0.5486,0.309613,0.744087][-0.664147,-0.0878305,-0.875169][-0.686716,0.186857,-0.702499][0.597523,0.310485,0.741164][-0.664147,-0.0878305,-0.875169][-0.686716,0.186857,-0.702499][0.597523,0.310485,0.741164][-0.650061,-0.00584598,-0.847122][-0.510442,0.755902,-0.409953][0.598175,0.322622,0.703589][-0.47424,0.0628825,-0.914054][-0.444741,0.324916,-0.834647][0.571504,0.333097,0.670289][-0.364892,0.233639,-0.905847][-0.444741,0.324916,-0.834647][0.556975,0.367408,0.605123][-0.235906,0.207061,-0.968354][-0.196082,0.278284,-0.940271][0.535571,0.363325,0.622046][-0.347897,-0.0940885,-1.03413][-0.436812,0.185262,-0.880269][0.5486,0.309613,0.744087][-0.347897,-0.0940885,-1.03413][-0.436812,0.185262,-0.880269][0.5486,0.309613,0.744087][-0.47424,0.0628825,-0.914054][-0.444741,0.324916,-0.834647][0.571504,0.333097,0.670289][-0.364892,0.233639,-0.905847][-0.444741,0.324916,-0.834647][0.556975,0.367408,0.605123][-0.962779,0.448562,-0.0585834][-0.746877,0.321719,-0.581954][0.728946,0.421092,0.53239][-0.929274,0.565089,0.0229676][-0.771564,0.498461,-0.395253][0.742033,0.456046,0.499172][-0.817696,0.568529,-0.190503][-0.771564,0.498461,-0.395253][0.700998,0.453639,0.460831][-0.817696,0.568529,-0.190503][-0.771564,0.498461,-0.395253][0.700998,0.453639,0.460831][-0.831441,0.512042,-0.192048][-0.552463,-0.0230891,-0.833217][0.70149,0.434353,0.473191][-0.962779,0.448562,-0.0585834][-0.746877,0.321719,-0.581954][0.728946,0.421092,0.53239][-0.831441,0.512042,-0.192048][-0.552463,-0.0230891,-0.833217][0.70149,0.434353,0.473191][-0.817696,0.568529,-0.190503][-0.771564,0.498461,-0.395253][0.700998,0.453639,0.460831][-0.610033,0.584542,-0.412852][-0.72385,0.194243,-0.662051][0.643514,0.455334,0.417363][-0.610033,0.584542,-0.412852][-0.72385,0.194243,-0.662051][0.643514,0.455334,0.417363][-0.61283,0.521682,-0.417643][-0.739151,0.0165121,-0.673337][0.643103,0.430884,0.42601][-0.831441,0.512042,-0.192048][-0.552463,-0.0230891,-0.833217][0.70149,0.434353,0.473191][-0.61283,0.521682,-0.417643][-0.739151,0.0165121,-0.673337][0.643103,0.430884,0.42601][-0.610033,0.584542,-0.412852][-0.72385,0.194243,-0.662051][0.643514,0.455334,0.417363][-0.417254,0.550774,-0.64897][-0.766138,0.0826536,-0.637338][0.583736,0.445517,0.448056][-0.417254,0.550774,-0.64897][-0.766138,0.0826536,-0.637338][0.583736,0.445517,0.448056][-0.419151,0.477414,-0.665399][-0.80413,0.068901,-0.590447][0.582493,0.420088,0.464127][-0.61283,0.521682,-0.417643][-0.739151,0.0165121,-0.673337][0.643103,0.430884,0.42601][-0.235906,0.207061,-0.968354][-0.196082,0.278284,-0.940271][0.535571,0.363325,0.622046][-0.364892,0.233639,-0.905847][-0.444741,0.324916,-0.834647][0.556975,0.367408,0.605123][-0.341419,0.429353,-0.81962][-0.90709,0.256006,-0.334138][0.55835,0.413608,0.525343][-0.235906,0.207061,-0.968354][-0.196082,0.278284,-0.940271][0.535571,0.363325,0.622046][-0.341419,0.429353,-0.81962][-0.90709,0.256006,-0.334138][0.55835,0.413608,0.525343][-0.251454,0.533027,-0.849576][-0.560975,0.259671,-0.786053][0.542502,0.446602,0.513553][-0.235906,0.207061,-0.968354][-0.196082,0.278284,-0.940271][0.535571,0.363325,0.622046][-0.251454,0.533027,-0.849576][-0.560975,0.259671,-0.786053][0.542502,0.446602,0.513553][-0.219747,0.518454,-0.889427][-0.24622,0.250117,-0.936385][0.535852,0.443671,0.531074][-0.419151,0.477414,-0.665399][-0.80413,0.068901,-0.590447][0.582493,0.420088,0.464127][-0.417254,0.550774,-0.64897][-0.766138,0.0826536,-0.637338][0.583736,0.445517,0.448056][-0.251454,0.533027,-0.849576][-0.560975,0.259671,-0.786053][0.542502,0.446602,0.513553][-0.251454,0.533027,-0.849576][-0.560975,0.259671,-0.786053][0.542502,0.446602,0.513553][-0.341419,0.429353,-0.81962][-0.90709,0.256006,-0.334138][0.55835,0.413608,0.525343][-0.419151,0.477414,-0.665399][-0.80413,0.068901,-0.590447][0.582493,0.420088,0.464127][-0.929274,0.565089,0.0229676][-0.771564,0.498461,-0.395253][0.742033,0.456046,0.499172][-0.962779,0.448562,-0.0585834][-0.746877,0.321719,-0.581954][0.728946,0.421092,0.53239][-1.02475,0.305472,-0.0581484][-0.459807,0.371695,-0.806487][0.730273,0.38535,0.586375][-0.929274,0.565089,0.0229676][-0.771564,0.498461,-0.395253][0.742033,0.456046,0.499172][-1.02475,0.305472,-0.0581484][-0.459807,0.371695,-0.806487][0.730273,0.38535,0.586375][-1.05059,0.320638,0.0545366][-0.960026,0.241418,0.141658][0.74773,0.391214,0.592597][-0.929274,0.565089,0.0229676][-0.771564,0.498461,-0.395253][0.742033,0.456046,0.499172][-1.05059,0.320638,0.0545366][-0.960026,0.241418,0.141658][0.74773,0.391214,0.592597][-0.9471,0.558572,0.0597316][-0.910474,0.393219,0.128125][0.748354,0.454664,0.508449][-0.290005,0.634634,0.963106][-0.0490323,0.959549,0.277238][0.950054,0.47978,0.500225][-1.23743e-006,0.636416,1.00823][-0.0490323,0.959549,0.277238][1,0.480366,0.499763][-1.24514e-006,0.651164,0.957184][-0.0490323,0.959549,0.277238][1,0.484511,0.472248][-1.24514e-006,0.651164,0.957184][-0.0490323,0.959549,0.277238][1,0.484511,0.472248][-0.274852,0.649478,0.914394][-0.0490353,0.959573,0.277156][0.949943,0.483922,0.472713][-0.290005,0.634634,0.963106][-0.0490323,0.959549,0.277238][0.950054,0.47978,0.500225][-0.299131,0.592217,0.993771][-0.147632,0.318076,0.9365][0.950183,0.466643,0.51906][-1.23259e-006,0.59405,1.0403][-0.147622,0.318088,0.936498][1,0.467215,0.518605][-1.23743e-006,0.636416,1.00823][-0.0490323,0.959549,0.277238][1,0.480366,0.499763][-1.23743e-006,0.636416,1.00823][-0.0490323,0.959549,0.277238][1,0.480366,0.499763][-0.290005,0.634634,0.963106][-0.0490323,0.959549,0.277238][0.950054,0.47978,0.500225][-0.299131,0.592217,0.993771][-0.147632,0.318076,0.9365][0.950183,0.466643,0.51906][-0.553677,0.629412,0.830615][-0.143308,0.95825,0.247427][0.899903,0.478058,0.501318][-0.290005,0.634634,0.963106][-0.0490323,0.959549,0.277238][0.950054,0.47978,0.500225][-0.274852,0.649478,0.914394][-0.0490353,0.959573,0.277156][0.949943,0.483922,0.472713][-0.274852,0.649478,0.914394][-0.0490353,0.959573,0.277156][0.949943,0.483922,0.472713][-0.524692,0.644531,0.788747][-0.143182,0.958386,0.246973][0.89969,0.482191,0.473817][-0.553677,0.629412,0.830615][-0.143308,0.95825,0.247427][0.899903,0.478058,0.501318][-0.57112,0.586825,0.857144][-0.431238,0.313951,0.845853][0.900148,0.464949,0.520131][-0.299131,0.592217,0.993771][-0.147632,0.318076,0.9365][0.950183,0.466643,0.51906][-0.290005,0.634634,0.963106][-0.0490323,0.959549,0.277238][0.950054,0.47978,0.500225][-0.290005,0.634634,0.963106][-0.0490323,0.959549,0.277238][0.950054,0.47978,0.500225][-0.553677,0.629412,0.830615][-0.143308,0.95825,0.247427][0.899903,0.478058,0.501318][-0.57112,0.586825,0.857144][-0.431238,0.313951,0.845853][0.900148,0.464949,0.520131][-0.765824,0.621112,0.620034][-0.225222,0.955755,0.189227][0.849195,0.475318,0.50269][-0.553677,0.629412,0.830615][-0.143308,0.95825,0.247427][0.899903,0.478058,0.501318][-0.524692,0.644531,0.788747][-0.143182,0.958386,0.246973][0.89969,0.482191,0.473817][-0.524692,0.644531,0.788747][-0.143182,0.958386,0.246973][0.89969,0.482191,0.473817][-0.725573,0.636669,0.589068][-0.224632,0.956069,0.188341][0.848901,0.479439,0.475199][-0.765824,0.621112,0.620034][-0.225222,0.955755,0.189227][0.849195,0.475318,0.50269][-0.790016,0.578241,0.63998][-0.676812,0.305646,0.669706][0.849534,0.462236,0.521471][-0.57112,0.586825,0.857144][-0.431238,0.313951,0.845853][0.900148,0.464949,0.520131][-0.553677,0.629412,0.830615][-0.143308,0.95825,0.247427][0.899903,0.478058,0.501318][-0.553677,0.629412,0.830615][-0.143308,0.95825,0.247427][0.899903,0.478058,0.501318][-0.765824,0.621112,0.620034][-0.225222,0.955755,0.189227][0.849195,0.475318,0.50269][-0.790016,0.578241,0.63998][-0.676812,0.305646,0.669706][0.849534,0.462236,0.521471][-0.889462,0.610785,0.348341][-0.292912,0.951192,0.0971381][0.798346,0.471525,0.497312][-0.765824,0.621112,0.620034][-0.225222,0.955755,0.189227][0.849195,0.475318,0.50269][-0.725573,0.636669,0.589068][-0.224632,0.956069,0.188341][0.848901,0.479439,0.475199][-0.725573,0.636669,0.589068][-0.224632,0.956069,0.188341][0.848901,0.479439,0.475199][-0.840865,0.626515,0.331325][-0.279045,0.956315,0.087147][0.798038,0.475515,0.469366][-0.889462,0.610785,0.348341][-0.292912,0.951192,0.0971381][0.798346,0.471525,0.497312][-0.920142,0.568048,0.359781][-0.844695,0.335159,0.417323][0.798633,0.458553,0.517076][-0.790016,0.578241,0.63998][-0.676812,0.305646,0.669706][0.849534,0.462236,0.521471][-0.765824,0.621112,0.620034][-0.225222,0.955755,0.189227][0.849195,0.475318,0.50269][-0.765824,0.621112,0.620034][-0.225222,0.955755,0.189227][0.849195,0.475318,0.50269][-0.889462,0.610785,0.348341][-0.292912,0.951192,0.0971381][0.798346,0.471525,0.497312][-0.920142,0.568048,0.359781][-0.844695,0.335159,0.417323][0.798633,0.458553,0.517076][-0.910891,0.600769,0.0653106][-0.311142,0.95031,-0.0100709][0.749264,0.467398,0.486588][-0.889462,0.610785,0.348341][-0.292912,0.951192,0.0971381][0.798346,0.471525,0.497312][-0.840865,0.626515,0.331325][-0.279045,0.956315,0.087147][0.798038,0.475515,0.469366][-0.840865,0.626515,0.331325][-0.279045,0.956315,0.087147][0.798038,0.475515,0.469366][-0.858241,0.616188,0.0597426][-0.282796,0.959004,-0.0183742][0.748186,0.471077,0.457975][-0.910891,0.600769,0.0653106][-0.311142,0.95031,-0.0100709][0.749264,0.467398,0.486588][-0.9471,0.558572,0.0597316][-0.910474,0.393219,0.128125][0.748354,0.454664,0.508449][-0.920142,0.568048,0.359781][-0.844695,0.335159,0.417323][0.798633,0.458553,0.517076][-0.889462,0.610785,0.348341][-0.292912,0.951192,0.0971381][0.798346,0.471525,0.497312][-0.889462,0.610785,0.348341][-0.292912,0.951192,0.0971381][0.798346,0.471525,0.497312][-0.910891,0.600769,0.0653106][-0.311142,0.95031,-0.0100709][0.749264,0.467398,0.486588][-0.9471,0.558572,0.0597316][-0.910474,0.393219,0.128125][0.748354,0.454664,0.508449][-0.801413,0.61286,-0.183532][-0.28796,0.954268,-0.0803219][0.701322,0.469216,0.448681][-0.910891,0.600769,0.0653106][-0.311142,0.95031,-0.0100709][0.749264,0.467398,0.486588][-0.858241,0.616188,0.0597426][-0.282796,0.959004,-0.0183742][0.748186,0.471077,0.457975][-0.858241,0.616188,0.0597426][-0.282796,0.959004,-0.0183742][0.748186,0.471077,0.457975][-0.758784,0.630007,-0.170575][-0.346867,0.933213,-0.0937941][0.701225,0.474305,0.424292][-0.801413,0.61286,-0.183532][-0.28796,0.954268,-0.0803219][0.701322,0.469216,0.448681][-0.817696,0.568529,-0.190503][-0.771564,0.498461,-0.395253][0.700998,0.453639,0.460831][-0.929274,0.565089,0.0229676][-0.771564,0.498461,-0.395253][0.742033,0.456046,0.499172][-0.910891,0.600769,0.0653106][-0.311142,0.95031,-0.0100709][0.749264,0.467398,0.486588][-0.910891,0.600769,0.0653106][-0.311142,0.95031,-0.0100709][0.749264,0.467398,0.486588][-0.801413,0.61286,-0.183532][-0.28796,0.954268,-0.0803219][0.701322,0.469216,0.448681][-0.817696,0.568529,-0.190503][-0.771564,0.498461,-0.395253][0.700998,0.453639,0.460831][-0.593157,0.628124,-0.403431][-0.304345,0.925859,-0.223961][0.642869,0.472265,0.40466][-0.801413,0.61286,-0.183532][-0.28796,0.954268,-0.0803219][0.701322,0.469216,0.448681][-0.758784,0.630007,-0.170575][-0.346867,0.933213,-0.0937941][0.701225,0.474305,0.424292][-0.758784,0.630007,-0.170575][-0.346867,0.933213,-0.0937941][0.701225,0.474305,0.424292][-0.556834,0.644717,-0.377394][-0.280035,0.937459,-0.206764][0.642359,0.47789,0.380327][-0.593157,0.628124,-0.403431][-0.304345,0.925859,-0.223961][0.642869,0.472265,0.40466][-0.610033,0.584542,-0.412852][-0.72385,0.194243,-0.662051][0.643514,0.455334,0.417363][-0.817696,0.568529,-0.190503][-0.771564,0.498461,-0.395253][0.700998,0.453639,0.460831][-0.801413,0.61286,-0.183532][-0.28796,0.954268,-0.0803219][0.701322,0.469216,0.448681][-0.801413,0.61286,-0.183532][-0.28796,0.954268,-0.0803219][0.701322,0.469216,0.448681][-0.593157,0.628124,-0.403431][-0.304345,0.925859,-0.223961][0.642869,0.472265,0.40466][-0.610033,0.584542,-0.412852][-0.72385,0.194243,-0.662051][0.643514,0.455334,0.417363][-0.408393,0.596752,-0.620379][-0.20379,0.929322,-0.307945][0.585066,0.461423,0.429168][-0.593157,0.628124,-0.403431][-0.304345,0.925859,-0.223961][0.642869,0.472265,0.40466][-0.556834,0.644717,-0.377394][-0.280035,0.937459,-0.206764][0.642359,0.47789,0.380327][-0.556834,0.644717,-0.377394][-0.280035,0.937459,-0.206764][0.642359,0.47789,0.380327][-0.383634,0.614839,-0.57488][-0.163558,0.944083,-0.286281][0.585463,0.46636,0.40075][-0.408393,0.596752,-0.620379][-0.20379,0.929322,-0.307945][0.585066,0.461423,0.429168][-0.417254,0.550774,-0.64897][-0.766138,0.0826536,-0.637338][0.583736,0.445517,0.448056][-0.610033,0.584542,-0.412852][-0.72385,0.194243,-0.662051][0.643514,0.455334,0.417363][-0.593157,0.628124,-0.403431][-0.304345,0.925859,-0.223961][0.642869,0.472265,0.40466][-0.593157,0.628124,-0.403431][-0.304345,0.925859,-0.223961][0.642869,0.472265,0.40466][-0.408393,0.596752,-0.620379][-0.20379,0.929322,-0.307945][0.585066,0.461423,0.429168][-0.417254,0.550774,-0.64897][-0.766138,0.0826536,-0.637338][0.583736,0.445517,0.448056][-0.209269,0.564056,-0.85979][-0.178997,0.943822,-0.277776][0.535251,0.456716,0.510905][-0.408393,0.596752,-0.620379][-0.20379,0.929322,-0.307945][0.585066,0.461423,0.429168][-0.383634,0.614839,-0.57488][-0.163558,0.944083,-0.286281][0.585463,0.46636,0.40075][-0.383634,0.614839,-0.57488][-0.163558,0.944083,-0.286281][0.585463,0.46636,0.40075][-0.200914,0.581968,-0.807636][-0.200269,0.936022,-0.289404][0.535836,0.460438,0.481897][-0.209269,0.564056,-0.85979][-0.178997,0.943822,-0.277776][0.535251,0.456716,0.510905][-0.251454,0.533027,-0.849576][-0.560975,0.259671,-0.786053][0.542502,0.446602,0.513553][-0.417254,0.550774,-0.64897][-0.766138,0.0826536,-0.637338][0.583736,0.445517,0.448056][-0.408393,0.596752,-0.620379][-0.20379,0.929322,-0.307945][0.585066,0.461423,0.429168][-0.408393,0.596752,-0.620379][-0.20379,0.929322,-0.307945][0.585066,0.461423,0.429168][-0.209269,0.564056,-0.85979][-0.178997,0.943822,-0.277776][0.535251,0.456716,0.510905][-0.251454,0.533027,-0.849576][-0.560975,0.259671,-0.786053][0.542502,0.446602,0.513553][-1.52866e-006,0.56027,-0.920515][-0.0738041,0.946764,-0.313353][0.5,0.457139,0.530897][-0.209269,0.564056,-0.85979][-0.178997,0.943822,-0.277776][0.535251,0.456716,0.510905][-0.200914,0.581968,-0.807636][-0.200269,0.936022,-0.289404][0.535836,0.460438,0.481897][-0.200914,0.581968,-0.807636][-0.200269,0.936022,-0.289404][0.535836,0.460438,0.481897][-1.52123e-006,0.579169,-0.871301][-0.100088,0.928845,-0.356691][0.5,0.46121,0.503676][-1.52866e-006,0.56027,-0.920515][-0.0738041,0.946764,-0.313353][0.5,0.457139,0.530897][-1.53282e-006,0.515313,-0.948047][-0.199863,0.215916,-0.955738][0.5,0.444549,0.549031][-0.219747,0.518454,-0.889427][-0.24622,0.250117,-0.936385][0.535852,0.443671,0.531074][-0.209269,0.564056,-0.85979][-0.178997,0.943822,-0.277776][0.535251,0.456716,0.510905][-0.209269,0.564056,-0.85979][-0.178997,0.943822,-0.277776][0.535251,0.456716,0.510905][-1.52866e-006,0.56027,-0.920515][-0.0738041,0.946764,-0.313353][0.5,0.457139,0.530897][-1.53282e-006,0.515313,-0.948047][-0.199863,0.215916,-0.955738][0.5,0.444549,0.549031][-1.23421e-006,0.59405,1.0403][-1,0,1.50996e-007][1,0.467215,0.518605][-1.23905e-006,0.636416,1.00823][-1,0,1.50996e-007][1,0.480366,0.499763][-1.24676e-006,0.651164,0.957184][-1,0,1.50996e-007][1,0.484511,0.472248][-0.910891,0.600769,0.0653106][-0.311142,0.95031,-0.0100709][0.749264,0.467398,0.486588][-0.929274,0.565089,0.0229676][-0.771564,0.498461,-0.395253][0.742033,0.456046,0.499172][-0.9471,0.558572,0.0597316][-0.910474,0.393219,0.128125][0.748354,0.454664,0.508449][-0.219747,0.518454,-0.889427][-0.24622,0.250117,-0.936385][0.535852,0.443671,0.531074][-0.251454,0.533027,-0.849576][-0.560975,0.259671,-0.786053][0.542502,0.446602,0.513553][-0.209269,0.564056,-0.85979][-0.178997,0.943822,-0.277776][0.535251,0.456716,0.510905][-1.52285e-006,0.579169,-0.871301][-1,0,1.50997e-007][0.5,0.46121,0.503676][-1.53028e-006,0.56027,-0.920515][-1,0,1.50997e-007][0.5,0.457139,0.530897][-1.53444e-006,0.515313,-0.948047][-1,0,1.50997e-007][0.5,0.444549,0.549031][-0.230583,0.588963,0.778119][0.055113,0.919071,-0.39022][0.94993,0.455261,0.399914][-0.274852,0.649478,0.914394][-0.0490353,0.959573,0.277156][0.949943,0.483922,0.472713][-1.24514e-006,0.651164,0.957184][-0.0490323,0.959549,0.277238][1,0.484511,0.472248][-1.24514e-006,0.651164,0.957184][-0.0490323,0.959549,0.277238][1,0.484511,0.472248][-1.26676e-006,0.59075,0.813972][0.0532229,0.920066,-0.388132][1,0.455968,0.399404][-0.230583,0.588963,0.778119][0.055113,0.919071,-0.39022][0.94993,0.455261,0.399914][-0.440182,0.583728,0.672839][0.163854,0.917689,-0.361939][0.899682,0.453174,0.401185][-0.524692,0.644531,0.788747][-0.143182,0.958386,0.246973][0.89969,0.482191,0.473817][-0.274852,0.649478,0.914394][-0.0490353,0.959573,0.277156][0.949943,0.483922,0.472713][-0.274852,0.649478,0.914394][-0.0490353,0.959573,0.277156][0.949943,0.483922,0.472713][-0.230583,0.588963,0.778119][0.055113,0.919071,-0.39022][0.94993,0.455261,0.399914][-0.440182,0.583728,0.672839][0.163854,0.917689,-0.361939][0.899682,0.453174,0.401185][-0.608708,0.575407,0.505529][0.264303,0.91595,-0.301958][0.848926,0.449836,0.402866][-0.725573,0.636669,0.589068][-0.224632,0.956069,0.188341][0.848901,0.479439,0.475199][-0.524692,0.644531,0.788747][-0.143182,0.958386,0.246973][0.89969,0.482191,0.473817][-0.524692,0.644531,0.788747][-0.143182,0.958386,0.246973][0.89969,0.482191,0.473817][-0.440182,0.583728,0.672839][0.163854,0.917689,-0.361939][0.899682,0.453174,0.401185][-0.608708,0.575407,0.505529][0.264303,0.91595,-0.301958][0.848926,0.449836,0.402866][-0.70543,0.564666,0.289567][0.356841,0.913456,-0.195606][0.798122,0.444683,0.398672][-0.840865,0.626515,0.331325][-0.279045,0.956315,0.087147][0.798038,0.475515,0.469366][-0.725573,0.636669,0.589068][-0.224632,0.956069,0.188341][0.848901,0.479439,0.475199][-0.725573,0.636669,0.589068][-0.224632,0.956069,0.188341][0.848901,0.479439,0.475199][-0.608708,0.575407,0.505529][0.264303,0.91595,-0.301958][0.848926,0.449836,0.402866][-0.70543,0.564666,0.289567][0.356841,0.913456,-0.195606][0.798122,0.444683,0.398672][-0.720008,0.55335,0.0620085][0.413885,0.908282,-0.0610195][0.748339,0.438429,0.389893][-0.858241,0.616188,0.0597426][-0.282796,0.959004,-0.0183742][0.748186,0.471077,0.457975][-0.840865,0.626515,0.331325][-0.279045,0.956315,0.087147][0.798038,0.475515,0.469366][-0.840865,0.626515,0.331325][-0.279045,0.956315,0.087147][0.798038,0.475515,0.469366][-0.70543,0.564666,0.289567][0.356841,0.913456,-0.195606][0.798122,0.444683,0.398672][-0.720008,0.55335,0.0620085][0.413885,0.908282,-0.0610195][0.748339,0.438429,0.389893][-0.63657,0.54375,-0.130974][0.497462,0.826215,0.264388][0.701437,0.429336,0.363567][-0.758784,0.630007,-0.170575][-0.346867,0.933213,-0.0937941][0.701225,0.474305,0.424292][-0.858241,0.616188,0.0597426][-0.282796,0.959004,-0.0183742][0.748186,0.471077,0.457975][-0.858241,0.616188,0.0597426][-0.282796,0.959004,-0.0183742][0.748186,0.471077,0.457975][-0.720008,0.55335,0.0620085][0.413885,0.908282,-0.0610195][0.748339,0.438429,0.389893][-0.63657,0.54375,-0.130974][0.497462,0.826215,0.264388][0.701437,0.429336,0.363567][-0.467147,0.535132,-0.304268][0.468212,0.722579,0.508584][0.642596,0.417188,0.328991][-0.556834,0.644717,-0.377394][-0.280035,0.937459,-0.206764][0.642359,0.47789,0.380327][-0.758784,0.630007,-0.170575][-0.346867,0.933213,-0.0937941][0.701225,0.474305,0.424292][-0.758784,0.630007,-0.170575][-0.346867,0.933213,-0.0937941][0.701225,0.474305,0.424292][-0.63657,0.54375,-0.130974][0.497462,0.826215,0.264388][0.701437,0.429336,0.363567][-0.467147,0.535132,-0.304268][0.468212,0.722579,0.508584][0.642596,0.417188,0.328991][-0.321843,0.526902,-0.469741][0.525206,0.778885,0.342778][0.585637,0.417037,0.345376][-0.383634,0.614839,-0.57488][-0.163558,0.944083,-0.286281][0.585463,0.46636,0.40075][-0.556834,0.644717,-0.377394][-0.280035,0.937459,-0.206764][0.642359,0.47789,0.380327][-0.556834,0.644717,-0.377394][-0.280035,0.937459,-0.206764][0.642359,0.47789,0.380327][-0.467147,0.535132,-0.304268][0.468212,0.722579,0.508584][0.642596,0.417188,0.328991][-0.321843,0.526902,-0.469741][0.525206,0.778885,0.342778][0.585637,0.417037,0.345376][-0.168553,0.517204,-0.664766][0.488443,0.831037,0.266083][0.535911,0.426473,0.411261][-0.200914,0.581968,-0.807636][-0.200269,0.936022,-0.289404][0.535836,0.460438,0.481897][-0.383634,0.614839,-0.57488][-0.163558,0.944083,-0.286281][0.585463,0.46636,0.40075][-0.383634,0.614839,-0.57488][-0.163558,0.944083,-0.286281][0.585463,0.46636,0.40075][-0.321843,0.526902,-0.469741][0.525206,0.778885,0.342778][0.585637,0.417037,0.345376][-0.168553,0.517204,-0.664766][0.488443,0.831037,0.266083][0.535911,0.426473,0.411261][-1.4981e-006,0.514549,-0.718112][0.134757,0.912974,0.385122][0.5,0.428544,0.42931][-1.52123e-006,0.579169,-0.871301][-0.100088,0.928845,-0.356691][0.5,0.46121,0.503676][-0.200914,0.581968,-0.807636][-0.200269,0.936022,-0.289404][0.535836,0.460438,0.481897][-0.200914,0.581968,-0.807636][-0.200269,0.936022,-0.289404][0.535836,0.460438,0.481897][-0.168553,0.517204,-0.664766][0.488443,0.831037,0.266083][0.535911,0.426473,0.411261][-1.4981e-006,0.514549,-0.718112][0.134757,0.912974,0.385122][0.5,0.428544,0.42931][-0.194045,0.539217,0.667509][0.0542516,0.917247,-0.394607][0.950061,0.422972,0.344097][-0.230583,0.588963,0.778119][0.055113,0.919071,-0.39022][0.94993,0.455261,0.399914][-1.26676e-006,0.59075,0.813972][0.0532229,0.920066,-0.388132][1,0.455968,0.399404][-1.26676e-006,0.59075,0.813972][0.0532229,0.920066,-0.388132][1,0.455968,0.399404][-1.28432e-006,0.54105,0.697679][0.052343,0.918285,-0.392444][1,0.423786,0.343594][-0.194045,0.539217,0.667509][0.0542516,0.917247,-0.394607][0.950061,0.422972,0.344097][-0.37043,0.533837,0.578918][0.16137,0.916185,-0.36683][0.899932,0.42055,0.345391][-0.440182,0.583728,0.672839][0.163854,0.917689,-0.361939][0.899682,0.453174,0.401185][-0.230583,0.588963,0.778119][0.055113,0.919071,-0.39022][0.94993,0.455261,0.399914][-0.230583,0.588963,0.778119][0.055113,0.919071,-0.39022][0.94993,0.455261,0.399914][-0.194045,0.539217,0.667509][0.0542516,0.917247,-0.394607][0.950061,0.422972,0.344097][-0.37043,0.533837,0.578918][0.16137,0.916185,-0.36683][0.899932,0.42055,0.345391][-0.512251,0.525611,0.438107][0.258842,0.916075,-0.306281][0.849268,0.416814,0.347129][-0.608708,0.575407,0.505529][0.264303,0.91595,-0.301958][0.848926,0.449836,0.402866][-0.440182,0.583728,0.672839][0.163854,0.917689,-0.361939][0.899682,0.453174,0.401185][-0.440182,0.583728,0.672839][0.163854,0.917689,-0.361939][0.899682,0.453174,0.401185][-0.37043,0.533837,0.578918][0.16137,0.916185,-0.36683][0.899932,0.42055,0.345391][-0.512251,0.525611,0.438107][0.258842,0.916075,-0.306281][0.849268,0.416814,0.347129][-0.593647,0.514588,0.256376][0.349779,0.914762,-0.202151][0.798532,0.410475,0.344237][-0.70543,0.564666,0.289567][0.356841,0.913456,-0.195606][0.798122,0.444683,0.398672][-0.608708,0.575407,0.505529][0.264303,0.91595,-0.301958][0.848926,0.449836,0.402866][-0.608708,0.575407,0.505529][0.264303,0.91595,-0.301958][0.848926,0.449836,0.402866][-0.512251,0.525611,0.438107][0.258842,0.916075,-0.306281][0.849268,0.416814,0.347129][-0.593647,0.514588,0.256376][0.349779,0.914762,-0.202151][0.798532,0.410475,0.344237][-0.605915,0.503284,0.0648835][0.402316,0.912731,-0.0711592][0.748781,0.40275,0.337618][-0.720008,0.55335,0.0620085][0.413885,0.908282,-0.0610195][0.748339,0.438429,0.389893][-0.70543,0.564666,0.289567][0.356841,0.913456,-0.195606][0.798122,0.444683,0.398672][-0.70543,0.564666,0.289567][0.356841,0.913456,-0.195606][0.798122,0.444683,0.398672][-0.593647,0.514588,0.256376][0.349779,0.914762,-0.202151][0.798532,0.410475,0.344237][-0.605915,0.503284,0.0648835][0.402316,0.912731,-0.0711592][0.748781,0.40275,0.337618][-0.535698,0.494412,-0.0965895][0.400239,0.907441,0.127903][0.702144,0.390977,0.316412][-0.63657,0.54375,-0.130974][0.497462,0.826215,0.264388][0.701437,0.429336,0.363567][-0.720008,0.55335,0.0620085][0.413885,0.908282,-0.0610195][0.748339,0.438429,0.389893][-0.720008,0.55335,0.0620085][0.413885,0.908282,-0.0610195][0.748339,0.438429,0.389893][-0.605915,0.503284,0.0648835][0.402316,0.912731,-0.0711592][0.748781,0.40275,0.337618][-0.535698,0.494412,-0.0965895][0.400239,0.907441,0.127903][0.702144,0.390977,0.316412][-0.393122,0.486559,-0.241497][0.341438,0.89426,0.289343][0.643473,0.374893,0.288358][-0.467147,0.535132,-0.304268][0.468212,0.722579,0.508584][0.642596,0.417188,0.328991][-0.63657,0.54375,-0.130974][0.497462,0.826215,0.264388][0.701437,0.429336,0.363567][-0.63657,0.54375,-0.130974][0.497462,0.826215,0.264388][0.701437,0.429336,0.363567][-0.535698,0.494412,-0.0965895][0.400239,0.907441,0.127903][0.702144,0.390977,0.316412][-0.393122,0.486559,-0.241497][0.341438,0.89426,0.289343][0.643473,0.374893,0.288358][-0.270844,0.47775,-0.381666][0.369527,0.885896,0.280424][0.586044,0.375689,0.302405][-0.321843,0.526902,-0.469741][0.525206,0.778885,0.342778][0.585637,0.417037,0.345376][-0.467147,0.535132,-0.304268][0.468212,0.722579,0.508584][0.642596,0.417188,0.328991][-0.467147,0.535132,-0.304268][0.468212,0.722579,0.508584][0.642596,0.417188,0.328991][-0.393122,0.486559,-0.241497][0.341438,0.89426,0.289343][0.643473,0.374893,0.288358][-0.270844,0.47775,-0.381666][0.369527,0.885896,0.280424][0.586044,0.375689,0.302405][-0.141844,0.466812,-0.546734][0.409169,0.868951,0.278398][0.536005,0.390039,0.357131][-0.168553,0.517204,-0.664766][0.488443,0.831037,0.266083][0.535911,0.426473,0.411261][-0.321843,0.526902,-0.469741][0.525206,0.778885,0.342778][0.585637,0.417037,0.345376][-0.321843,0.526902,-0.469741][0.525206,0.778885,0.342778][0.585637,0.417037,0.345376][-0.270844,0.47775,-0.381666][0.369527,0.885896,0.280424][0.586044,0.375689,0.302405][-0.141844,0.466812,-0.546734][0.409169,0.868951,0.278398][0.536005,0.390039,0.357131][-1.479e-006,0.46408,-0.591636][0.130798,0.920804,0.367441][0.5,0.393302,0.372036][-1.4981e-006,0.514549,-0.718112][0.134757,0.912974,0.385122][0.5,0.428544,0.42931][-0.168553,0.517204,-0.664766][0.488443,0.831037,0.266083][0.535911,0.426473,0.411261][-0.168553,0.517204,-0.664766][0.488443,0.831037,0.266083][0.535911,0.426473,0.411261][-0.141844,0.466812,-0.546734][0.409169,0.868951,0.278398][0.536005,0.390039,0.357131][-1.479e-006,0.46408,-0.591636][0.130798,0.920804,0.367441][0.5,0.393302,0.372036][-0.131966,0.613428,0.477697][0.0501163,0.990448,0.12846][0.950232,0.440621,0.231976][-0.194045,0.539217,0.667509][0.0542516,0.917247,-0.394607][0.950061,0.422972,0.344097][-1.28432e-006,0.54105,0.697679][0.052343,0.918285,-0.392444][1,0.423786,0.343594][-1.28432e-006,0.54105,0.697679][0.052343,0.918285,-0.392444][1,0.423786,0.343594][-1.31442e-006,0.604075,0.498324][0.0501163,0.990448,0.12846][1,0.433921,0.232857][-0.131966,0.613428,0.477697][0.0501163,0.990448,0.12846][0.950232,0.440621,0.231976][-0.251923,0.608976,0.417129][-0.0810991,0.992845,0.0876454][0.900188,0.437483,0.232592][-0.37043,0.533837,0.578918][0.16137,0.916185,-0.36683][0.899932,0.42055,0.345391][-0.194045,0.539217,0.667509][0.0542516,0.917247,-0.394607][0.950061,0.422972,0.344097][-0.194045,0.539217,0.667509][0.0542516,0.917247,-0.394607][0.950061,0.422972,0.344097][-0.131966,0.613428,0.477697][0.0501163,0.990448,0.12846][0.950232,0.440621,0.231976][-0.251923,0.608976,0.417129][-0.0810991,0.992845,0.0876454][0.900188,0.437483,0.232592][-0.348372,0.60217,0.320861][-0.12585,0.990464,0.0560586][0.84947,0.432686,0.23347][-0.512251,0.525611,0.438107][0.258842,0.916075,-0.306281][0.849268,0.416814,0.347129][-0.37043,0.533837,0.578918][0.16137,0.916185,-0.36683][0.899932,0.42055,0.345391][-0.37043,0.533837,0.578918][0.16137,0.916185,-0.36683][0.899932,0.42055,0.345391][-0.251923,0.608976,0.417129][-0.0810991,0.992845,0.0876454][0.900188,0.437483,0.232592][-0.348372,0.60217,0.320861][-0.12585,0.990464,0.0560586][0.84947,0.432686,0.23347][-0.403727,0.593053,0.196615][-0.166347,0.986066,0.00175502][0.798538,0.425196,0.231269][-0.593647,0.514588,0.256376][0.349779,0.914762,-0.202151][0.798532,0.410475,0.344237][-0.512251,0.525611,0.438107][0.258842,0.916075,-0.306281][0.849268,0.416814,0.347129][-0.512251,0.525611,0.438107][0.258842,0.916075,-0.306281][0.849268,0.416814,0.347129][-0.348372,0.60217,0.320861][-0.12585,0.990464,0.0560586][0.84947,0.432686,0.23347][-0.403727,0.593053,0.196615][-0.166347,0.986066,0.00175502][0.798538,0.425196,0.231269][-0.41207,0.583699,0.0656965][-0.186293,0.980769,-0.0582002][0.748522,0.416469,0.226739][-0.605915,0.503284,0.0648835][0.402316,0.912731,-0.0711592][0.748781,0.40275,0.337618][-0.593647,0.514588,0.256376][0.349779,0.914762,-0.202151][0.798532,0.410475,0.344237][-0.593647,0.514588,0.256376][0.349779,0.914762,-0.202151][0.798532,0.410475,0.344237][-0.403727,0.593053,0.196615][-0.166347,0.986066,0.00175502][0.798538,0.425196,0.231269][-0.41207,0.583699,0.0656965][-0.186293,0.980769,-0.0582002][0.748522,0.416469,0.226739][-0.364318,0.57636,-0.0446985][-0.186565,0.971639,-0.145298][0.701646,0.404562,0.212358][-0.535698,0.494412,-0.0965895][0.400239,0.907441,0.127903][0.702144,0.390977,0.316412][-0.605915,0.503284,0.0648835][0.402316,0.912731,-0.0711592][0.748781,0.40275,0.337618][-0.605915,0.503284,0.0648835][0.402316,0.912731,-0.0711592][0.748781,0.40275,0.337618][-0.41207,0.583699,0.0656965][-0.186293,0.980769,-0.0582002][0.748522,0.416469,0.226739][-0.364318,0.57636,-0.0446985][-0.186565,0.971639,-0.145298][0.701646,0.404562,0.212358][-0.267355,0.569863,-0.143769][-0.162789,0.961278,-0.222362][0.642826,0.38885,0.193412][-0.393122,0.486559,-0.241497][0.341438,0.89426,0.289343][0.643473,0.374893,0.288358][-0.535698,0.494412,-0.0965895][0.400239,0.907441,0.127903][0.702144,0.390977,0.316412][-0.535698,0.494412,-0.0965895][0.400239,0.907441,0.127903][0.702144,0.390977,0.316412][-0.364318,0.57636,-0.0446985][-0.186565,0.971639,-0.145298][0.701646,0.404562,0.212358][-0.267355,0.569863,-0.143769][-0.162789,0.961278,-0.222362][0.642826,0.38885,0.193412][-0.184196,0.562577,-0.239599][-0.166501,0.96173,-0.217607][0.585525,0.38823,0.203639][-0.270844,0.47775,-0.381666][0.369527,0.885896,0.280424][0.586044,0.375689,0.302405][-0.393122,0.486559,-0.241497][0.341438,0.89426,0.289343][0.643473,0.374893,0.288358][-0.393122,0.486559,-0.241497][0.341438,0.89426,0.289343][0.643473,0.374893,0.288358][-0.267355,0.569863,-0.143769][-0.162789,0.961278,-0.222362][0.642826,0.38885,0.193412][-0.184196,0.562577,-0.239599][-0.166501,0.96173,-0.217607][0.585525,0.38823,0.203639][-0.0964664,0.553528,-0.352452][-0.174347,0.961453,-0.212631][0.535769,0.399854,0.241889][-0.141844,0.466812,-0.546734][0.409169,0.868951,0.278398][0.536005,0.390039,0.357131][-0.270844,0.47775,-0.381666][0.369527,0.885896,0.280424][0.586044,0.375689,0.302405][-0.270844,0.47775,-0.381666][0.369527,0.885896,0.280424][0.586044,0.375689,0.302405][-0.184196,0.562577,-0.239599][-0.166501,0.96173,-0.217607][0.585525,0.38823,0.203639][-0.0964664,0.553528,-0.352452][-0.174347,0.961453,-0.212631][0.535769,0.399854,0.241889][-1.44752e-006,0.551266,-0.38315][-0.0545467,0.968547,-0.242778][0.5,0.402522,0.252281][-1.479e-006,0.46408,-0.591636][0.130798,0.920804,0.367441][0.5,0.393302,0.372036][-0.141844,0.466812,-0.546734][0.409169,0.868951,0.278398][0.536005,0.390039,0.357131][-0.141844,0.466812,-0.546734][0.409169,0.868951,0.278398][0.536005,0.390039,0.357131][-0.0964664,0.553528,-0.352452][-0.174347,0.961453,-0.212631][0.535769,0.399854,0.241889][-1.44752e-006,0.551266,-0.38315][-0.0545467,0.968547,-0.242778][0.5,0.402522,0.252281][-1.23259e-006,0.59405,1.0403][-0.147622,0.318088,0.936498][1,0.467215,0.518605][-1.24514e-006,0.651164,0.957184][-0.0490323,0.959549,0.277238][1,0.484511,0.472248][-1.23743e-006,0.636416,1.00823][-0.0490323,0.959549,0.277238][1,0.480366,0.499763][-1.52123e-006,0.579169,-0.871301][-0.100088,0.928845,-0.356691][0.5,0.46121,0.503676][-1.53282e-006,0.515313,-0.948047][-0.199863,0.215916,-0.955738][0.5,0.444549,0.549031][-1.52866e-006,0.56027,-0.920515][-0.0738041,0.946764,-0.313353][0.5,0.457139,0.530897][-0.488652,-0.00369652,1.85031][0.0998061,0.848138,-0.520289][0.957377,0.384953,1.04904][-0.49291,-0.0288535,1.86529][-0.0416508,-0.846715,0.530414][0.957364,0.382081,1.06155][-1.0953e-006,-0.000336729,1.94952][-0.0853574,-0.820171,0.565715][1,0.387327,1.06503][-0.937184,-0.0753461,1.59805][-0.194327,-0.859589,0.472594][0.912462,0.37092,1.03684][-0.49291,-0.0288535,1.86529][-0.0416508,-0.846715,0.530414][0.957364,0.382081,1.06155][-0.488652,-0.00369652,1.85031][0.0998061,0.848138,-0.520289][0.957377,0.384953,1.04904][-0.488652,-0.00369652,1.85031][0.0998061,0.848138,-0.520289][0.957377,0.384953,1.04904][-0.92947,-0.0498419,1.58515][0.194575,0.859293,-0.473029][0.912447,0.373811,1.0242][-0.937184,-0.0753461,1.59805][-0.194327,-0.859589,0.472594][0.912462,0.37092,1.03684][-1.28856,-0.148108,1.18186][-0.265295,-0.88656,0.378986][0.863339,0.35371,1.00928][-0.937184,-0.0753461,1.59805][-0.194327,-0.859589,0.472594][0.912462,0.37092,1.03684][-0.92947,-0.0498419,1.58515][0.194575,0.859293,-0.473029][0.912447,0.373811,1.0242][-0.92947,-0.0498419,1.58515][0.194575,0.859293,-0.473029][0.912447,0.373811,1.0242][-1.27931,-0.121713,1.17217][0.265702,0.886298,-0.379314][0.863218,0.35672,0.99675][-1.28856,-0.148108,1.18186][-0.265295,-0.88656,0.378986][0.863339,0.35371,1.00928][-1.51285,-0.239938,0.656993][-0.237419,-0.934573,0.264963][0.80895,0.333724,0.995096][-1.28856,-0.148108,1.18186][-0.265295,-0.88656,0.378986][0.863339,0.35371,1.00928][-1.27931,-0.121713,1.17217][0.265702,0.886298,-0.379314][0.863218,0.35672,0.99675][-1.27931,-0.121713,1.17217][0.265702,0.886298,-0.379314][0.863218,0.35672,0.99675][-1.50391,-0.212274,0.651778][0.237027,0.934673,-0.264961][0.80879,0.336972,0.983107][-1.51285,-0.239938,0.656993][-0.237419,-0.934573,0.264963][0.80895,0.333724,0.995096][-1.5883,-0.280871,0.0655356][-0.235934,-0.966914,0.0970167][0.7496,0.324716,0.990411][-1.51285,-0.239938,0.656993][-0.237419,-0.934573,0.264963][0.80895,0.333724,0.995096][-1.50391,-0.212274,0.651778][0.237027,0.934673,-0.264961][0.80879,0.336972,0.983107][-1.50391,-0.212274,0.651778][0.237027,0.934673,-0.264961][0.80879,0.336972,0.983107][-1.58131,-0.252158,0.0635036][0.235767,0.966999,-0.0965796][0.749394,0.328311,0.979324][-1.5883,-0.280871,0.0655356][-0.235934,-0.966914,0.0970167][0.7496,0.324716,0.990411][-1.50778,-0.336179,-0.519078][-0.143358,-0.986929,0.0736226][0.690765,0.319527,1.01964][-1.5883,-0.280871,0.0655356][-0.235934,-0.966914,0.0970167][0.7496,0.324716,0.990411][-1.58131,-0.252158,0.0635036][0.235767,0.966999,-0.0965796][0.749394,0.328311,0.979324][-1.58131,-0.252158,0.0635036][0.235767,0.966999,-0.0965796][0.749394,0.328311,0.979324][-1.50391,-0.306866,-0.520863][0.143146,0.986973,-0.0734405][0.690463,0.323402,1.01003][-1.50778,-0.336179,-0.519078][-0.143358,-0.986929,0.0736226][0.690765,0.319527,1.01964][-1.28058,-0.401485,-1.04485][-0.0422924,-0.993558,0.105135][0.636027,0.31753,1.0737][-1.50778,-0.336179,-0.519078][-0.143358,-0.986929,0.0736226][0.690765,0.319527,1.01964][-1.50391,-0.306866,-0.520863][0.143146,0.986973,-0.0734405][0.690463,0.323402,1.01003][-1.50391,-0.306866,-0.520863][0.143146,0.986973,-0.0734405][0.690463,0.323402,1.01003][-1.27931,-0.372071,-1.04816][0.0421749,0.993588,-0.104902][0.635715,0.321556,1.06585][-1.28058,-0.401485,-1.04485][-0.0422924,-0.993558,0.105135][0.636027,0.31753,1.0737][-0.929142,-0.482877,-1.4538][0.0055819,-0.979819,0.199808][0.587169,0.314354,1.13594][-1.28058,-0.401485,-1.04485][-0.0422924,-0.993558,0.105135][0.636027,0.31753,1.0737][-1.27931,-0.372071,-1.04816][0.0421749,0.993588,-0.104902][0.635715,0.321556,1.06585][-1.27931,-0.372071,-1.04816][0.0421749,0.993588,-0.104902][0.635715,0.321556,1.06585][-0.929471,-0.453752,-1.45932][-0.00555662,0.979903,-0.199398][0.586938,0.318397,1.12968][-0.929142,-0.482877,-1.4538][0.0055819,-0.979819,0.199808][0.587169,0.314354,1.13594][-0.487908,-0.535003,-1.71627][0.031195,-0.969049,0.24489][0.542448,0.313401,1.18088][-0.929142,-0.482877,-1.4538][0.0055819,-0.979819,0.199808][0.587169,0.314354,1.13594][-0.929471,-0.453752,-1.45932][-0.00555662,0.979903,-0.199398][0.586938,0.318397,1.12968][-0.929471,-0.453752,-1.45932][-0.00555662,0.979903,-0.199398][0.586938,0.318397,1.12968][-0.488653,-0.506197,-1.7233][-0.0311023,0.969156,-0.244479][0.54235,0.317409,1.1756][-0.487908,-0.535003,-1.71627][0.031195,-0.969049,0.24489][0.542448,0.313401,1.18088][-0.488653,-0.506197,-1.7233][-0.0311023,0.969156,-0.244479][0.54235,0.317409,1.1756][-1.66304e-006,-0.538607,-1.81047][0.0350085,-0.97518,0.218628][0.5,0.315228,1.19469][-0.487908,-0.535003,-1.71627][0.031195,-0.969049,0.24489][0.542448,0.313401,1.18088][-1.2019,-0.343318,0.0690326][0.231958,0.972467,-0.022455][0.749935,0.273294,0.843781][-1.1418,-0.0506516,0.0691556][-0.960026,0.241418,0.141658][0.749949,0.315972,0.724479][-1.08415,-0.0650673,-0.296983][-0.87119,0.193809,-0.451071][0.698116,0.313506,0.729854][-1.08415,-0.0650673,-0.296983][-0.87119,0.193809,-0.451071][0.698116,0.313506,0.729854][-1.14121,-0.366693,-0.316376][0.19394,0.980227,0.0392631][0.698103,0.270148,0.853064][-1.2019,-0.343318,0.0690326][0.231958,0.972467,-0.022455][0.749935,0.273294,0.843781][-1.1418,-0.0506516,0.0691556][-0.960026,0.241418,0.141658][0.749949,0.315972,0.724479][-1.2019,-0.343318,0.0690326][0.231958,0.972467,-0.022455][0.749935,0.273294,0.843781][-1.14121,-0.319944,0.454442][0.149473,0.985252,-0.0832874][0.801774,0.277198,0.836725][-1.14121,-0.319944,0.454442][0.149473,0.985252,-0.0832874][0.801774,0.277198,0.836725][-1.08415,-0.0362368,0.435294][-0.865975,0.253987,0.430788][0.801787,0.319108,0.72139][-1.1418,-0.0506516,0.0691556][-0.960026,0.241418,0.141658][0.749949,0.315972,0.724479][-1.08415,-0.0362368,0.435294][-0.865975,0.253987,0.430788][0.801787,0.319108,0.72139][-1.14121,-0.319944,0.454442][0.149473,0.985252,-0.0832874][0.801774,0.277198,0.836725][-0.96681,-0.29916,0.797072][-0.69517,0.212236,0.6868][0.852673,0.281164,0.831951][-0.96681,-0.29916,0.797072][-0.69517,0.212236,0.6868][0.852673,0.281164,0.831951][-0.91847,-0.0234213,0.760792][-0.69517,0.212236,0.6868][0.852684,0.322321,0.720157][-1.08415,-0.0362368,0.435294][-0.865975,0.253987,0.430788][0.801787,0.319108,0.72139][0.366843,-0.443389,-1.09101][0.0450597,-1.13394,0.0621626][0.451273,0.260722,0.885354][-0.366847,-0.443389,-1.09101][-0.019442,-0.707792,0.00428998][0.548727,0.260722,0.885354][-1.56043e-006,-0.440492,-1.1309][0.0084121,-0.970916,0.0740998][0.5,0.258931,0.877827][-0.357519,-0.439581,-1.02884][-4.87906e-007,-0.99813,0.0611326][0.550083,0.252936,0.860141][-0.559959,-0.433194,-0.92457][0,-0.998125,0.0612112][0.581644,0.251876,0.852409][-0.701263,-0.433194,-0.92457][-0.0415446,-1.51244,0.00916703][0.597778,0.262074,0.881433][-0.357519,-0.439581,-1.02884][-4.87906e-007,-0.99813,0.0611326][0.550083,0.252936,0.860141][-0.701263,-0.433194,-0.92457][-0.0415446,-1.51244,0.00916703][0.597778,0.262074,0.881433][-0.366847,-0.443389,-1.09101][-0.019442,-0.707792,0.00428998][0.548727,0.260722,0.885354][-7.34089e-007,-0.443083,-1.08602][0,-0.998128,0.061166][0.5,0.252508,0.861619][-0.357519,-0.439581,-1.02884][-4.87906e-007,-0.99813,0.0611326][0.550083,0.252936,0.860141][-0.366847,-0.443389,-1.09101][-0.019442,-0.707792,0.00428998][0.548727,0.260722,0.885354][-7.34089e-007,-0.443083,-1.08602][0,-0.998128,0.061166][0.5,0.252508,0.861619][-0.366847,-0.443389,-1.09101][-0.019442,-0.707792,0.00428998][0.548727,0.260722,0.885354][0.366843,-0.443389,-1.09101][0.0450597,-1.13394,0.0621626][0.451273,0.260722,0.885354][0.357517,-0.43958,-1.02884][-5.23128e-006,-0.998129,0.0611467][0.449916,0.252936,0.860141][-7.34089e-007,-0.443083,-1.08602][0,-0.998128,0.061166][0.5,0.252508,0.861619][0.366843,-0.443389,-1.09101][0.0450597,-1.13394,0.0621626][0.451273,0.260722,0.885354][0.366843,-0.443389,-1.09101][0.0450597,-1.13394,0.0621626][0.451273,0.260722,0.885354][0.701259,-0.433194,-0.92457][0.0415446,-1.51244,0.00916701][0.402222,0.262074,0.881433][0.559958,-0.433194,-0.92457][-6.74301e-007,-0.998125,0.0612105][0.418356,0.251876,0.85241][0.357517,-0.43958,-1.02884][-5.23128e-006,-0.998129,0.0611467][0.449916,0.252936,0.860141][0.366843,-0.443389,-1.09101][0.0450597,-1.13394,0.0621626][0.451273,0.260722,0.885354][0.559958,-0.433194,-0.92457][-6.74301e-007,-0.998125,0.0612105][0.418356,0.251876,0.85241][0.679092,-0.429405,-0.863203][-3.44626e-006,-0.998099,0.0616242][0.399841,0.254186,0.855855][0.559958,-0.433194,-0.92457][-6.74301e-007,-0.998125,0.0612105][0.418356,0.251876,0.85241][0.701259,-0.433194,-0.92457][0.0415446,-1.51244,0.00916701][0.402222,0.262074,0.881433][0.701259,-0.433194,-0.92457][0.0415446,-1.51244,0.00916701][0.402222,0.262074,0.881433][0.97118,-0.416818,-0.659306][0.161371,-1.46254,-0.0739112][0.352463,0.264094,0.874637][0.880204,-0.416818,-0.659306][-3.48865e-007,-0.998103,0.0615635][0.360071,0.254459,0.847012][0.679092,-0.429405,-0.863203][-3.44626e-006,-0.998099,0.0616242][0.399841,0.254186,0.855855][0.701259,-0.433194,-0.92457][0.0415446,-1.51244,0.00916701][0.402222,0.262074,0.881433][0.880204,-0.416818,-0.659306][-3.48865e-007,-0.998103,0.0615635][0.360071,0.254459,0.847012][0.932658,-0.413547,-0.606129][-1.82302e-006,-0.998113,0.0613961][0.34978,0.256161,0.8492][0.880204,-0.416818,-0.659306][-3.48865e-007,-0.998103,0.0615635][0.360071,0.254459,0.847012][0.97118,-0.416818,-0.659306][0.161371,-1.46254,-0.0739112][0.352463,0.264094,0.874637][1.00575,-0.404531,-0.459565][2.41164e-005,-0.998115,0.0613753][0.327075,0.255341,0.840044][0.932658,-0.413547,-0.606129][-1.82302e-006,-0.998113,0.0613961][0.34978,0.256161,0.8492][0.97118,-0.416818,-0.659306][0.161371,-1.46254,-0.0739112][0.352463,0.264094,0.874637][1.00575,-0.404531,-0.459565][2.41164e-005,-0.998115,0.0613753][0.327075,0.255341,0.840044][0.97118,-0.416818,-0.659306][0.161371,-1.46254,-0.0739112][0.352463,0.264094,0.874637][1.14738,-0.395713,-0.31621][0.299652,-1.51291,-0.0608228][0.301617,0.26664,0.865619][1.00575,-0.404531,-0.459565][2.41164e-005,-0.998115,0.0613753][0.327075,0.255341,0.840044][1.14738,-0.395713,-0.31621][0.299652,-1.51291,-0.0608228][0.301617,0.26664,0.865619][1.0818,-0.394694,-0.299408][9.49275e-005,-0.998145,0.0608758][0.302309,0.257684,0.838935][1.14738,-0.395713,-0.31621][0.299652,-1.51291,-0.0608228][0.301617,0.26664,0.865619][1.20821,-0.372272,0.0704272][0.39932,-1.67389,0.0386521][0.249881,0.26978,0.856429][1.13513,-0.372272,0.0704272][0.000777359,-0.998198,0.0599982][0.249873,0.259895,0.827717][1.13513,-0.372272,0.0704272][0.000777359,-0.998198,0.0599982][0.249873,0.259895,0.827717][1.13486,-0.372241,0.0709573][0.000341665,-0.99821,0.0598006][0.249799,0.259862,0.827602][1.0818,-0.394694,-0.299408][9.49275e-005,-0.998145,0.0608758][0.302309,0.257684,0.838935][1.14738,-0.395713,-0.31621][0.299652,-1.51291,-0.0608228][0.301617,0.26664,0.865619][1.13513,-0.372272,0.0704272][0.000777359,-0.998198,0.0599982][0.249873,0.259895,0.827717][1.0818,-0.394694,-0.299408][9.49275e-005,-0.998145,0.0608758][0.302309,0.257684,0.838935][-0.901895,-0.332704,0.726752][-1.77981e-006,-0.99817,0.0604692][0.850227,0.263191,0.805935][-0.823387,-0.328144,0.802015][-1.24665e-006,-0.998154,0.0607282][0.865713,0.261907,0.798862][-0.970772,-0.328144,0.802015][-0.335433,-1.93067,0.287854][0.852878,0.277456,0.844303][-1.04829,-0.349013,0.457513][-2.83608e-007,-0.99818,0.0603008][0.806417,0.260951,0.81254][-0.901895,-0.332704,0.726752][-1.77981e-006,-0.99817,0.0604692][0.850227,0.263191,0.805935][-0.970772,-0.328144,0.802015][-0.335433,-1.93067,0.287854][0.852878,0.277456,0.844303][-1.14629,-0.349013,0.457513][-0.288152,-1.88834,0.159563][0.801943,0.273512,0.849087][-1.04829,-0.349013,0.457513][-2.83608e-007,-0.99818,0.0603008][0.806417,0.260951,0.81254][-0.970772,-0.328144,0.802015][-0.335433,-1.93067,0.287854][0.852878,0.277456,0.844303][-0.650883,-0.318072,0.96735][-5.56466e-006,-0.998149,0.0608173][0.900166,0.264465,0.797931][-0.443905,-0.31186,1.0693][-7.68465e-007,-0.99816,0.0606398][0.933496,0.263276,0.789809][-0.702235,-0.31186,1.0693][-0.271666,-1.88104,0.387535][0.902545,0.280693,0.841072][-0.823387,-0.328144,0.802015][-1.24665e-006,-0.998154,0.0607282][0.865713,0.261907,0.798862][-0.650883,-0.318072,0.96735][-5.56466e-006,-0.998149,0.0608173][0.900166,0.264465,0.797931][-0.702235,-0.31186,1.0693][-0.271666,-1.88104,0.387535][0.902545,0.280693,0.841072][-0.970772,-0.328144,0.802015][-0.335433,-1.93067,0.287854][0.852878,0.277456,0.844303][-0.823387,-0.328144,0.802015][-1.24665e-006,-0.998154,0.0607282][0.865713,0.261907,0.798862][-0.702235,-0.31186,1.0693][-0.271666,-1.88104,0.387535][0.902545,0.280693,0.841072][0.340725,-0.308773,1.12013][-1.52416e-005,-0.998167,0.0605133][0.0499127,0.265289,0.792852][0.443905,-0.31186,1.0693][0,-0.998159,0.0606489][0.066504,0.263276,0.789809][0.702234,-0.31186,1.0693][0.271668,-1.88104,0.387536][0.0974552,0.280693,0.841072][0,-0.305595,1.17248][3.38798e-005,-0.998174,0.0604059][1.4641e-007,0.265573,0.791118][0.340725,-0.308773,1.12013][-1.52416e-005,-0.998167,0.0605133][0.0499127,0.265289,0.792852][0.702234,-0.31186,1.0693][0.271668,-1.88104,0.387536][0.0974552,0.280693,0.841072][0,-0.305595,1.17248][3.38798e-005,-0.998174,0.0604059][1.4641e-007,0.265573,0.791118][0.702234,-0.31186,1.0693][0.271668,-1.88104,0.387536][0.0974552,0.280693,0.841072][0.36788,-0.301652,1.23742][0.161786,-1.78259,0.430005][0.0485671,0.282629,0.83875][-0.340725,-0.308774,1.12013][-1.7123e-006,-0.998162,0.0606098][-0.0499125,0.265289,0.792852][0,-0.305595,1.17248][3.38798e-005,-0.998174,0.0604059][1.4641e-007,0.265573,0.791118][0.36788,-0.301652,1.23742][0.161786,-1.78259,0.430005][0.0485671,0.282629,0.83875][-0.340725,-0.308774,1.12013][-1.7123e-006,-0.998162,0.0606098][-0.0499125,0.265289,0.792852][0.36788,-0.301652,1.23742][0.161786,-1.78259,0.430005][0.0485671,0.282629,0.83875][-0.367882,-0.301652,1.23742][-0.161789,-1.78259,0.430007][-0.0485672,0.282629,0.83875][-0.443905,-0.31186,1.0693][-7.68465e-007,-0.99816,0.0606398][0.933496,0.263276,0.789809][-0.340725,-0.308774,1.12013][-1.7123e-006,-0.998162,0.0606098][0.950087,0.265289,0.792852][-0.367882,-0.301652,1.23742][-0.161789,-1.78259,0.430007][0.951433,0.282629,0.83875][-0.702235,-0.31186,1.0693][-0.271666,-1.88104,0.387535][0.902545,0.280693,0.841072][-0.443905,-0.31186,1.0693][-7.68465e-007,-0.99816,0.0606398][0.933496,0.263276,0.789809][-0.367882,-0.301652,1.23742][-0.161789,-1.78259,0.430007][0.951433,0.282629,0.83875][0.36788,-0.301652,1.23742][0.161786,-1.78259,0.430005][0.0485671,0.282629,0.83875][-1.19738e-006,-0.295632,1.27345][0.0107793,-1.62533,0.381605][0,0.280936,0.828276][-0.367882,-0.301652,1.23742][-0.161789,-1.78259,0.430007][-0.0485672,0.282629,0.83875][1.13486,-0.372241,0.0709573][0.000341665,-0.99821,0.0598006][0.249799,0.259862,0.827602][1.13513,-0.372272,0.0704272][0.000777359,-0.998198,0.0599982][0.249873,0.259895,0.827717][1.20821,-0.372272,0.0704272][0.39932,-1.67389,0.0386521][0.249881,0.26978,0.856429][1.06927,-0.351333,0.418913][3.10237e-007,-0.9982,0.0599799][0.199736,0.261606,0.816147][1.13486,-0.372241,0.0709573][0.000341665,-0.99821,0.0598006][0.249799,0.259862,0.827602][1.20821,-0.372272,0.0704272][0.39932,-1.67389,0.0386521][0.249881,0.26978,0.856429][1.06927,-0.351333,0.418913][3.10237e-007,-0.9982,0.0599799][0.199736,0.261606,0.816147][1.20821,-0.372272,0.0704272][0.39932,-1.67389,0.0386521][0.249881,0.26978,0.856429][1.14629,-0.349013,0.457512][0.288153,-1.88834,0.159563][0.198057,0.273512,0.849087][1.06927,-0.351333,0.418913][3.10237e-007,-0.9982,0.0599799][0.199736,0.261606,0.816147][1.14629,-0.349013,0.457512][0.288153,-1.88834,0.159563][0.198057,0.273512,0.849087][1.04829,-0.349013,0.457512][0,-0.99818,0.0603][0.193583,0.260951,0.812541][0.901894,-0.332704,0.726752][1.17207e-006,-0.99817,0.0604692][0.149774,0.263191,0.805936][1.04829,-0.349013,0.457512][0,-0.99818,0.0603][0.193583,0.260951,0.812541][1.14629,-0.349013,0.457512][0.288153,-1.88834,0.159563][0.198057,0.273512,0.849087][0.901894,-0.332704,0.726752][1.17207e-006,-0.99817,0.0604692][0.149774,0.263191,0.805936][1.14629,-0.349013,0.457512][0.288153,-1.88834,0.159563][0.198057,0.273512,0.849087][0.970771,-0.328144,0.802014][0.335435,-1.93067,0.287854][0.147122,0.277456,0.844304][0.901894,-0.332704,0.726752][1.17207e-006,-0.99817,0.0604692][0.149774,0.263191,0.805936][0.970771,-0.328144,0.802014][0.335435,-1.93067,0.287854][0.147122,0.277456,0.844304][0.823387,-0.328144,0.802014][0,-0.998154,0.0607274][0.134288,0.261907,0.798863][0.650882,-0.318071,0.96735][1.51121e-007,-0.998149,0.0608106][0.0998345,0.264465,0.797931][0.823387,-0.328144,0.802014][0,-0.998154,0.0607274][0.134288,0.261907,0.798863][0.970771,-0.328144,0.802014][0.335435,-1.93067,0.287854][0.147122,0.277456,0.844304][0.650882,-0.318071,0.96735][1.51121e-007,-0.998149,0.0608106][0.0998345,0.264465,0.797931][0.970771,-0.328144,0.802014][0.335435,-1.93067,0.287854][0.147122,0.277456,0.844304][0.702234,-0.31186,1.0693][0.271668,-1.88104,0.387536][0.0974552,0.280693,0.841072][0.650882,-0.318071,0.96735][1.51121e-007,-0.998149,0.0608106][0.0998345,0.264465,0.797931][0.702234,-0.31186,1.0693][0.271668,-1.88104,0.387536][0.0974552,0.280693,0.841072][0.443905,-0.31186,1.0693][0,-0.998159,0.0606489][0.066504,0.263276,0.789809][-0.971182,-0.416818,-0.659306][-0.161368,-1.46254,-0.0739076][0.647537,0.264094,0.874637][-0.880205,-0.416818,-0.659306][0,-0.998103,0.0615618][0.639929,0.254458,0.847011][-0.932659,-0.413547,-0.606128][1.54968e-006,-0.998114,0.0613959][0.650219,0.25616,0.8492][-0.971182,-0.416818,-0.659306][-0.161368,-1.46254,-0.0739076][0.647537,0.264094,0.874637][-0.932659,-0.413547,-0.606128][1.54968e-006,-0.998114,0.0613959][0.650219,0.25616,0.8492][-1.00575,-0.404531,-0.459565][0.000267622,-0.998111,0.0614408][0.672924,0.25534,0.840043][-0.971182,-0.416818,-0.659306][-0.161368,-1.46254,-0.0739076][0.647537,0.264094,0.874637][-1.00575,-0.404531,-0.459565][0.000267622,-0.998111,0.0614408][0.672924,0.25534,0.840043][-1.0818,-0.394694,-0.299407][-8.32852e-005,-0.998143,0.06092][0.697691,0.257684,0.838934][-1.0818,-0.394694,-0.299407][-8.32852e-005,-0.998143,0.06092][0.697691,0.257684,0.838934][-1.13483,-0.372256,0.0706927][0.000119708,-0.998176,0.0603687][0.750164,0.259855,0.827593][-1.13513,-0.372272,0.0704276][0.000140897,-0.998154,0.0607385][0.750127,0.259895,0.827716][-1.13513,-0.372272,0.0704276][0.000140897,-0.998154,0.0607385][0.750127,0.259895,0.827716][-1.20821,-0.372272,0.0704276][-0.39932,-1.67389,0.0386523][0.750119,0.26978,0.856429][-1.14738,-0.395713,-0.316209][-0.299652,-1.51291,-0.0608229][0.698383,0.26664,0.865619][-1.0818,-0.394694,-0.299407][-8.32852e-005,-0.998143,0.06092][0.697691,0.257684,0.838934][-1.13513,-0.372272,0.0704276][0.000140897,-0.998154,0.0607385][0.750127,0.259895,0.827716][-1.14738,-0.395713,-0.316209][-0.299652,-1.51291,-0.0608229][0.698383,0.26664,0.865619][-0.971182,-0.416818,-0.659306][-0.161368,-1.46254,-0.0739076][0.647537,0.264094,0.874637][-1.0818,-0.394694,-0.299407][-8.32852e-005,-0.998143,0.06092][0.697691,0.257684,0.838934][-1.14738,-0.395713,-0.316209][-0.299652,-1.51291,-0.0608229][0.698383,0.26664,0.865619][-1.06927,-0.351333,0.418914][1.25514e-007,-0.9982,0.0599799][0.800264,0.261606,0.816147][-1.04829,-0.349013,0.457513][-2.83608e-007,-0.99818,0.0603008][0.806417,0.260951,0.81254][-1.14629,-0.349013,0.457513][-0.288152,-1.88834,0.159563][0.801943,0.273512,0.849087][-1.06927,-0.351333,0.418914][1.25514e-007,-0.9982,0.0599799][0.800264,0.261606,0.816147][-1.14629,-0.349013,0.457513][-0.288152,-1.88834,0.159563][0.801943,0.273512,0.849087][-1.20821,-0.372272,0.0704276][-0.39932,-1.67389,0.0386523][0.750119,0.26978,0.856429][-1.13483,-0.372256,0.0706927][0.000119708,-0.998176,0.0603687][0.750164,0.259855,0.827593][-1.06927,-0.351333,0.418914][1.25514e-007,-0.9982,0.0599799][0.800264,0.261606,0.816147][-1.20821,-0.372272,0.0704276][-0.39932,-1.67389,0.0386523][0.750119,0.26978,0.856429][-1.13513,-0.372272,0.0704276][0.000140897,-0.998154,0.0607385][0.750127,0.259895,0.827716][-1.13483,-0.372256,0.0706927][0.000119708,-0.998176,0.0603687][0.750164,0.259855,0.827593][-1.20821,-0.372272,0.0704276][-0.39932,-1.67389,0.0386523][0.750119,0.26978,0.856429][-0.679093,-0.429405,-0.863203][2.25719e-006,-0.998099,0.0616239][0.600159,0.254186,0.855854][-0.880205,-0.416818,-0.659306][0,-0.998103,0.0615618][0.639929,0.254458,0.847011][-0.971182,-0.416818,-0.659306][-0.161368,-1.46254,-0.0739076][0.647537,0.264094,0.874637][-0.679093,-0.429405,-0.863203][2.25719e-006,-0.998099,0.0616239][0.600159,0.254186,0.855854][-0.971182,-0.416818,-0.659306][-0.161368,-1.46254,-0.0739076][0.647537,0.264094,0.874637][-0.701263,-0.433194,-0.92457][-0.0415446,-1.51244,0.00916703][0.597778,0.262074,0.881433][-0.679093,-0.429405,-0.863203][2.25719e-006,-0.998099,0.0616239][0.600159,0.254186,0.855854][-0.701263,-0.433194,-0.92457][-0.0415446,-1.51244,0.00916703][0.597778,0.262074,0.881433][-0.559959,-0.433194,-0.92457][0,-0.998125,0.0612112][0.581644,0.251876,0.852409][-0.772585,0.134765,0.0149413][-0.00167147,-0.998177,0.0603399][0.738774,0.300832,0.507757][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][0.795197,0.29899,0.489513][-0.728024,0.148986,0.251615][7.40226e-006,-0.9982,0.0599781][0.789007,0.299952,0.49297][-0.772585,0.134765,0.0149413][-0.00167147,-0.998177,0.0603399][0.738774,0.300832,0.507757][-0.736543,0.119515,-0.236603][-0.0024391,-0.998186,0.0601631][0.687308,0.301213,0.52246][-0.684856,0.112828,-0.345456][-0.00122353,-0.998171,0.0604383][0.663296,0.30006,0.525897][-0.684856,0.112828,-0.345456][-0.00122353,-0.998171,0.0604383][0.663296,0.30006,0.525897][-0.635176,0.106702,-0.44507][-1.01439e-005,-0.998114,0.0613804][0.64163,0.301595,0.534995][-0.599525,0.104479,-0.481213][-0.000369369,-0.998128,0.0611632][0.631746,0.300399,0.53423][-0.599525,0.104479,-0.481213][-0.000369369,-0.998128,0.0611632][0.631746,0.300399,0.53423][-0.462836,0.0959225,-0.619795][7.40082e-006,-0.998099,0.0616323][0.594108,0.3012,0.54387][-0.381865,0.0933476,-0.661504][-7.61126e-005,-0.99814,0.0609612][0.576614,0.29954,0.542293][-0.684856,0.112828,-0.345456][-0.00122353,-0.998171,0.0604383][0.663296,0.30006,0.525897][-0.599525,0.104479,-0.481213][-0.000369369,-0.998128,0.0611632][0.631746,0.300399,0.53423][-0.381865,0.0933476,-0.661504][-7.61126e-005,-0.99814,0.0609612][0.576614,0.29954,0.542293][-0.381865,0.0933476,-0.661504][-7.61126e-005,-0.99814,0.0609612][0.576614,0.29954,0.542293][-0.244273,0.0890074,-0.732372][-1.75311e-006,-0.99813,0.0611245][0.54706,0.300911,0.549463][-0.00128064,0.086627,-0.771235][0,-0.99813,0.0611301][0.500242,0.300765,0.551274][-0.00128064,0.086627,-0.771235][0,-0.99813,0.0611301][0.500242,0.300765,0.551274][0.241712,0.0890074,-0.732372][1.80853e-006,-0.99813,0.0611244][0.453405,0.300777,0.549143][0.379304,0.0933476,-0.661504][1.46349e-005,-0.99811,0.0614553][0.423824,0.299322,0.541786][-0.381865,0.0933476,-0.661504][-7.61126e-005,-0.99814,0.0609612][0.576614,0.29954,0.542293][-0.00128064,0.086627,-0.771235][0,-0.99813,0.0611301][0.500242,0.300765,0.551274][0.379304,0.0933476,-0.661504][1.46349e-005,-0.99811,0.0614553][0.423824,0.299322,0.541786][0.379304,0.0933476,-0.661504][1.46349e-005,-0.99811,0.0614553][0.423824,0.299322,0.541786][0.460275,0.0959225,-0.619795][-6.85644e-006,-0.998099,0.0616317][0.4063,0.300941,0.543257][0.596964,0.104479,-0.481213][0.000369503,-0.998128,0.0611631][0.368593,0.300048,0.533421][0.596964,0.104479,-0.481213][0.000369503,-0.998128,0.0611631][0.368593,0.300048,0.533421][0.632615,0.106702,-0.445071][1.12378e-005,-0.998114,0.0613797][0.358684,0.301228,0.534139][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.336968,0.299646,0.524957][0.379304,0.0933476,-0.661504][1.46349e-005,-0.99811,0.0614553][0.423824,0.299322,0.541786][0.596964,0.104479,-0.481213][0.000369503,-0.998128,0.0611631][0.368593,0.300048,0.533421][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.336968,0.299646,0.524957][-0.381865,0.0933476,-0.661504][-7.61126e-005,-0.99814,0.0609612][0.576614,0.29954,0.542293][0.379304,0.0933476,-0.661504][1.46349e-005,-0.99811,0.0614553][0.423824,0.299322,0.541786][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.336968,0.299646,0.524957][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.336968,0.299646,0.524957][0.733982,0.119515,-0.236603][0.00244445,-0.998186,0.0601606][0.312889,0.300765,0.521442][0.770047,0.134775,0.0151212][0.00166586,-0.998176,0.0603402][0.261225,0.300338,0.50666][0.770047,0.134775,0.0151212][0.00166586,-0.998176,0.0603402][0.261225,0.300338,0.50666][0.725464,0.148986,0.251615][-2.41547e-006,-0.9982,0.0599805][0.210861,0.29945,0.491904][0.711206,0.150562,0.277849][-2.26379e-005,-0.998176,0.0603732][0.204649,0.298488,0.48846][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.336968,0.299646,0.524957][0.770047,0.134775,0.0151212][0.00166586,-0.998176,0.0603402][0.261225,0.300338,0.50666][0.711206,0.150562,0.277849][-2.26379e-005,-0.998176,0.0603732][0.204649,0.298488,0.48846][0.711206,0.150562,0.277849][-2.26379e-005,-0.998176,0.0603732][0.204649,0.298488,0.48846][0.611706,0.161648,0.460842][1.31125e-005,-0.99817,0.0604753][0.159423,0.298526,0.47858][0.558347,0.164746,0.511995][-0.000392126,-0.998185,0.0602285][0.143346,0.296505,0.471724][0.558347,0.164746,0.511995][-0.000392126,-0.998185,0.0602285][0.143346,0.296505,0.471724][0.441102,0.171593,0.624368][1.1581e-005,-0.998148,0.0608251][0.106902,0.297716,0.468024][0.300426,0.175814,0.693661][-2.91517e-005,-0.998166,0.0605336][0.0713994,0.295441,0.459802][0.711206,0.150562,0.277849][-2.26379e-005,-0.998176,0.0603732][0.204649,0.298488,0.48846][0.558347,0.164746,0.511995][-0.000392126,-0.998185,0.0602285][0.143346,0.296505,0.471724][0.300426,0.175814,0.693661][-2.91517e-005,-0.998166,0.0605336][0.0713994,0.295441,0.459802][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.336968,0.299646,0.524957][0.711206,0.150562,0.277849][-2.26379e-005,-0.998176,0.0603732][0.204649,0.298488,0.48846][0.300426,0.175814,0.693661][-2.91517e-005,-0.998166,0.0605336][0.0713994,0.295441,0.459802][0.300426,0.175814,0.693661][-2.91517e-005,-0.998166,0.0605336][0.0713994,0.295441,0.459802][0.230299,0.177913,0.728208][9.94704e-006,-0.998158,0.0606672][0.0535319,0.297179,0.461313][-0.0012802,0.180073,0.763786][0,-0.99816,0.0606269][-0.000293255,0.297047,0.459126][-0.0012802,0.180073,0.763786][0,-0.99816,0.0606269][0.999707,0.297047,0.459126][-0.232859,0.177913,0.728208][-1.00398e-005,-0.998158,0.0606677][0.945918,0.297364,0.461675][-0.302987,0.175814,0.693662][2.51697e-005,-0.998162,0.0606044][0.928072,0.295686,0.460276][0.300426,0.175814,0.693661][-2.91517e-005,-0.998166,0.0605336][0.0713994,0.295441,0.459802][-0.0012802,0.180073,0.763786][0,-0.99816,0.0606269][-0.000293255,0.297047,0.459126][-0.302987,0.175814,0.693662][2.51697e-005,-0.998162,0.0606044][-0.0719281,0.295686,0.460276][-0.302987,0.175814,0.693662][2.51697e-005,-0.998162,0.0606044][0.928072,0.295686,0.460276][-0.443662,0.171592,0.624368][1.10962e-005,-0.99815,0.060793][0.892649,0.298057,0.468707][-0.560908,0.164746,0.511995][0.000393241,-0.998185,0.0602269][0.8563,0.296934,0.472581][-0.560908,0.164746,0.511995][0.000393241,-0.998185,0.0602269][0.8563,0.296934,0.472581][-0.614267,0.161648,0.460842][-1.23591e-005,-0.99817,0.0604748][0.840275,0.298976,0.479505][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][0.795197,0.29899,0.489513][-0.302987,0.175814,0.693662][2.51697e-005,-0.998162,0.0606044][0.928072,0.295686,0.460276][-0.560908,0.164746,0.511995][0.000393241,-0.998185,0.0602269][0.8563,0.296934,0.472581][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][0.795197,0.29899,0.489513][0.300426,0.175814,0.693661][-2.91517e-005,-0.998166,0.0605336][0.0713994,0.295441,0.459802][-0.302987,0.175814,0.693662][2.51697e-005,-0.998162,0.0606044][-0.0719281,0.295686,0.460276][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][-0.204803,0.29899,0.489513][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.336968,0.299646,0.524957][0.300426,0.175814,0.693661][-2.91517e-005,-0.998166,0.0605336][0.0713994,0.295441,0.459802][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][-0.204803,0.29899,0.489513][-0.381865,0.0933476,-0.661504][-7.61126e-005,-0.99814,0.0609612][0.576614,0.29954,0.542293][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.336968,0.299646,0.524957][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][0.795197,0.29899,0.489513][-0.684856,0.112828,-0.345456][-0.00122353,-0.998171,0.0604383][0.663296,0.30006,0.525897][-0.381865,0.0933476,-0.661504][-7.61126e-005,-0.99814,0.0609612][0.576614,0.29954,0.542293][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][0.795197,0.29899,0.489513][-0.772585,0.134765,0.0149413][-0.00167147,-0.998177,0.0603399][0.738774,0.300832,0.507757][-0.684856,0.112828,-0.345456][-0.00122353,-0.998171,0.0604383][0.663296,0.30006,0.525897][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][0.795197,0.29899,0.489513][-0.559959,-0.433194,-0.92457][0,-0.998125,0.0612112][0.581644,0.251876,0.852409][-0.357519,-0.439581,-1.02884][-4.87906e-007,-0.99813,0.0611326][0.550083,0.252936,0.860141][-0.244273,0.0890074,-0.732372][-1.75311e-006,-0.99813,0.0611245][0.54706,0.300911,0.549463][-0.244273,0.0890074,-0.732372][-1.75311e-006,-0.99813,0.0611245][0.54706,0.300911,0.549463][-0.381865,0.0933476,-0.661504][-7.61126e-005,-0.99814,0.0609612][0.576614,0.29954,0.542293][-0.559959,-0.433194,-0.92457][0,-0.998125,0.0612112][0.581644,0.251876,0.852409][-0.357519,-0.439581,-1.02884][-4.87906e-007,-0.99813,0.0611326][0.550083,0.252936,0.860141][-7.34089e-007,-0.443083,-1.08602][0,-0.998128,0.061166][0.5,0.252508,0.861619][-0.00128064,0.086627,-0.771235][0,-0.99813,0.0611301][0.500242,0.300765,0.551274][-0.00128064,0.086627,-0.771235][0,-0.99813,0.0611301][0.500242,0.300765,0.551274][-0.244273,0.0890074,-0.732372][-1.75311e-006,-0.99813,0.0611245][0.54706,0.300911,0.549463][-0.357519,-0.439581,-1.02884][-4.87906e-007,-0.99813,0.0611326][0.550083,0.252936,0.860141][-7.34089e-007,-0.443083,-1.08602][0,-0.998128,0.061166][0.5,0.252508,0.861619][0.357517,-0.43958,-1.02884][-5.23128e-006,-0.998129,0.0611467][0.449916,0.252936,0.860141][0.241712,0.0890074,-0.732372][1.80853e-006,-0.99813,0.0611244][0.453405,0.300777,0.549143][0.241712,0.0890074,-0.732372][1.80853e-006,-0.99813,0.0611244][0.453405,0.300777,0.549143][-0.00128064,0.086627,-0.771235][0,-0.99813,0.0611301][0.500242,0.300765,0.551274][-7.34089e-007,-0.443083,-1.08602][0,-0.998128,0.061166][0.5,0.252508,0.861619][0.357517,-0.43958,-1.02884][-5.23128e-006,-0.998129,0.0611467][0.449916,0.252936,0.860141][0.559958,-0.433194,-0.92457][-6.74301e-007,-0.998125,0.0612105][0.418356,0.251876,0.85241][0.379304,0.0933476,-0.661504][1.46349e-005,-0.99811,0.0614553][0.423824,0.299322,0.541786][0.379304,0.0933476,-0.661504][1.46349e-005,-0.99811,0.0614553][0.423824,0.299322,0.541786][0.241712,0.0890074,-0.732372][1.80853e-006,-0.99813,0.0611244][0.453405,0.300777,0.549143][0.357517,-0.43958,-1.02884][-5.23128e-006,-0.998129,0.0611467][0.449916,0.252936,0.860141][0.559958,-0.433194,-0.92457][-6.74301e-007,-0.998125,0.0612105][0.418356,0.251876,0.85241][0.679092,-0.429405,-0.863203][-3.44626e-006,-0.998099,0.0616242][0.399841,0.254186,0.855855][0.460275,0.0959225,-0.619795][-6.85644e-006,-0.998099,0.0616317][0.4063,0.300941,0.543257][0.460275,0.0959225,-0.619795][-6.85644e-006,-0.998099,0.0616317][0.4063,0.300941,0.543257][0.379304,0.0933476,-0.661504][1.46349e-005,-0.99811,0.0614553][0.423824,0.299322,0.541786][0.559958,-0.433194,-0.92457][-6.74301e-007,-0.998125,0.0612105][0.418356,0.251876,0.85241][0.679092,-0.429405,-0.863203][-3.44626e-006,-0.998099,0.0616242][0.399841,0.254186,0.855855][0.880204,-0.416818,-0.659306][-3.48865e-007,-0.998103,0.0615635][0.360071,0.254459,0.847012][0.596964,0.104479,-0.481213][0.000369503,-0.998128,0.0611631][0.368593,0.300048,0.533421][0.596964,0.104479,-0.481213][0.000369503,-0.998128,0.0611631][0.368593,0.300048,0.533421][0.460275,0.0959225,-0.619795][-6.85644e-006,-0.998099,0.0616317][0.4063,0.300941,0.543257][0.679092,-0.429405,-0.863203][-3.44626e-006,-0.998099,0.0616242][0.399841,0.254186,0.855855][0.880204,-0.416818,-0.659306][-3.48865e-007,-0.998103,0.0615635][0.360071,0.254459,0.847012][0.932658,-0.413547,-0.606129][-1.82302e-006,-0.998113,0.0613961][0.34978,0.256161,0.8492][0.632615,0.106702,-0.445071][1.12378e-005,-0.998114,0.0613797][0.358684,0.301228,0.534139][0.632615,0.106702,-0.445071][1.12378e-005,-0.998114,0.0613797][0.358684,0.301228,0.534139][0.596964,0.104479,-0.481213][0.000369503,-0.998128,0.0611631][0.368593,0.300048,0.533421][0.880204,-0.416818,-0.659306][-3.48865e-007,-0.998103,0.0615635][0.360071,0.254459,0.847012][0.932658,-0.413547,-0.606129][-1.82302e-006,-0.998113,0.0613961][0.34978,0.256161,0.8492][1.00575,-0.404531,-0.459565][2.41164e-005,-0.998115,0.0613753][0.327075,0.255341,0.840044][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.336968,0.299646,0.524957][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.336968,0.299646,0.524957][0.632615,0.106702,-0.445071][1.12378e-005,-0.998114,0.0613797][0.358684,0.301228,0.534139][0.932658,-0.413547,-0.606129][-1.82302e-006,-0.998113,0.0613961][0.34978,0.256161,0.8492][1.00575,-0.404531,-0.459565][2.41164e-005,-0.998115,0.0613753][0.327075,0.255341,0.840044][1.0818,-0.394694,-0.299408][9.49275e-005,-0.998145,0.0608758][0.302309,0.257684,0.838935][0.733982,0.119515,-0.236603][0.00244445,-0.998186,0.0601606][0.312889,0.300765,0.521442][0.733982,0.119515,-0.236603][0.00244445,-0.998186,0.0601606][0.312889,0.300765,0.521442][0.682295,0.112828,-0.345456][0.000320595,-0.998151,0.0607864][0.336968,0.299646,0.524957][1.00575,-0.404531,-0.459565][2.41164e-005,-0.998115,0.0613753][0.327075,0.255341,0.840044][1.0818,-0.394694,-0.299408][9.49275e-005,-0.998145,0.0608758][0.302309,0.257684,0.838935][1.13486,-0.372241,0.0709573][0.000341665,-0.99821,0.0598006][0.249799,0.259862,0.827602][0.770047,0.134775,0.0151212][0.00166586,-0.998176,0.0603402][0.261225,0.300338,0.50666][0.770047,0.134775,0.0151212][0.00166586,-0.998176,0.0603402][0.261225,0.300338,0.50666][0.733982,0.119515,-0.236603][0.00244445,-0.998186,0.0601606][0.312889,0.300765,0.521442][1.0818,-0.394694,-0.299408][9.49275e-005,-0.998145,0.0608758][0.302309,0.257684,0.838935][-0.823387,-0.328144,0.802015][-1.24665e-006,-0.998154,0.0607282][0.865713,0.261907,0.798862][-0.901895,-0.332704,0.726752][-1.77981e-006,-0.99817,0.0604692][0.850227,0.263191,0.805935][-0.614267,0.161648,0.460842][-1.23591e-005,-0.99817,0.0604748][0.840275,0.298976,0.479505][-0.614267,0.161648,0.460842][-1.23591e-005,-0.99817,0.0604748][0.840275,0.298976,0.479505][-0.560908,0.164746,0.511995][0.000393241,-0.998185,0.0602269][0.8563,0.296934,0.472581][-0.823387,-0.328144,0.802015][-1.24665e-006,-0.998154,0.0607282][0.865713,0.261907,0.798862][-0.901895,-0.332704,0.726752][-1.77981e-006,-0.99817,0.0604692][0.850227,0.263191,0.805935][-1.04829,-0.349013,0.457513][-2.83608e-007,-0.99818,0.0603008][0.806417,0.260951,0.81254][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][0.795197,0.29899,0.489513][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][0.795197,0.29899,0.489513][-0.614267,0.161648,0.460842][-1.23591e-005,-0.99817,0.0604748][0.840275,0.298976,0.479505][-0.901895,-0.332704,0.726752][-1.77981e-006,-0.99817,0.0604692][0.850227,0.263191,0.805935][-0.443905,-0.31186,1.0693][-7.68465e-007,-0.99816,0.0606398][0.933496,0.263276,0.789809][-0.650883,-0.318072,0.96735][-5.56466e-006,-0.998149,0.0608173][0.900166,0.264465,0.797931][-0.443662,0.171592,0.624368][1.10962e-005,-0.99815,0.060793][0.892649,0.298057,0.468707][-0.443662,0.171592,0.624368][1.10962e-005,-0.99815,0.060793][0.892649,0.298057,0.468707][-0.302987,0.175814,0.693662][2.51697e-005,-0.998162,0.0606044][0.928072,0.295686,0.460276][-0.443905,-0.31186,1.0693][-7.68465e-007,-0.99816,0.0606398][0.933496,0.263276,0.789809][-0.650883,-0.318072,0.96735][-5.56466e-006,-0.998149,0.0608173][0.900166,0.264465,0.797931][-0.823387,-0.328144,0.802015][-1.24665e-006,-0.998154,0.0607282][0.865713,0.261907,0.798862][-0.560908,0.164746,0.511995][0.000393241,-0.998185,0.0602269][0.8563,0.296934,0.472581][-0.560908,0.164746,0.511995][0.000393241,-0.998185,0.0602269][0.8563,0.296934,0.472581][-0.443662,0.171592,0.624368][1.10962e-005,-0.99815,0.060793][0.892649,0.298057,0.468707][-0.650883,-0.318072,0.96735][-5.56466e-006,-0.998149,0.0608173][0.900166,0.264465,0.797931][0.443905,-0.31186,1.0693][0,-0.998159,0.0606489][0.066504,0.263276,0.789809][0.340725,-0.308773,1.12013][-1.52416e-005,-0.998167,0.0605133][0.0499127,0.265289,0.792852][0.230299,0.177913,0.728208][9.94704e-006,-0.998158,0.0606672][0.0535319,0.297179,0.461313][0.230299,0.177913,0.728208][9.94704e-006,-0.998158,0.0606672][0.0535319,0.297179,0.461313][0.300426,0.175814,0.693661][-2.91517e-005,-0.998166,0.0605336][0.0713994,0.295441,0.459802][0.443905,-0.31186,1.0693][0,-0.998159,0.0606489][0.066504,0.263276,0.789809][0.340725,-0.308773,1.12013][-1.52416e-005,-0.998167,0.0605133][0.0499127,0.265289,0.792852][0,-0.305595,1.17248][3.38798e-005,-0.998174,0.0604059][1.4641e-007,0.265573,0.791118][-0.0012802,0.180073,0.763786][0,-0.99816,0.0606269][-0.000293255,0.297047,0.459126][-0.0012802,0.180073,0.763786][0,-0.99816,0.0606269][-0.000293255,0.297047,0.459126][0.230299,0.177913,0.728208][9.94704e-006,-0.998158,0.0606672][0.0535319,0.297179,0.461313][0.340725,-0.308773,1.12013][-1.52416e-005,-0.998167,0.0605133][0.0499127,0.265289,0.792852][0,-0.305595,1.17248][3.38798e-005,-0.998174,0.0604059][1.4641e-007,0.265573,0.791118][-0.340725,-0.308774,1.12013][-1.7123e-006,-0.998162,0.0606098][-0.0499125,0.265289,0.792852][-0.232859,0.177913,0.728208][-1.00398e-005,-0.998158,0.0606677][-0.054082,0.297364,0.461675][-0.232859,0.177913,0.728208][-1.00398e-005,-0.998158,0.0606677][-0.054082,0.297364,0.461675][-0.0012802,0.180073,0.763786][0,-0.99816,0.0606269][-0.000293255,0.297047,0.459126][0,-0.305595,1.17248][3.38798e-005,-0.998174,0.0604059][1.4641e-007,0.265573,0.791118][-0.340725,-0.308774,1.12013][-1.7123e-006,-0.998162,0.0606098][0.950087,0.265289,0.792852][-0.443905,-0.31186,1.0693][-7.68465e-007,-0.99816,0.0606398][0.933496,0.263276,0.789809][-0.302987,0.175814,0.693662][2.51697e-005,-0.998162,0.0606044][0.928072,0.295686,0.460276][-0.302987,0.175814,0.693662][2.51697e-005,-0.998162,0.0606044][0.928072,0.295686,0.460276][-0.232859,0.177913,0.728208][-1.00398e-005,-0.998158,0.0606677][0.945918,0.297364,0.461675][-0.340725,-0.308774,1.12013][-1.7123e-006,-0.998162,0.0606098][0.950087,0.265289,0.792852][1.13486,-0.372241,0.0709573][0.000341665,-0.99821,0.0598006][0.249799,0.259862,0.827602][1.06927,-0.351333,0.418913][3.10237e-007,-0.9982,0.0599799][0.199736,0.261606,0.816147][0.725464,0.148986,0.251615][-2.41547e-006,-0.9982,0.0599805][0.210861,0.29945,0.491904][0.725464,0.148986,0.251615][-2.41547e-006,-0.9982,0.0599805][0.210861,0.29945,0.491904][0.770047,0.134775,0.0151212][0.00166586,-0.998176,0.0603402][0.261225,0.300338,0.50666][1.13486,-0.372241,0.0709573][0.000341665,-0.99821,0.0598006][0.249799,0.259862,0.827602][1.06927,-0.351333,0.418913][3.10237e-007,-0.9982,0.0599799][0.199736,0.261606,0.816147][1.04829,-0.349013,0.457512][0,-0.99818,0.0603][0.193583,0.260951,0.812541][0.711206,0.150562,0.277849][-2.26379e-005,-0.998176,0.0603732][0.204649,0.298488,0.48846][0.711206,0.150562,0.277849][-2.26379e-005,-0.998176,0.0603732][0.204649,0.298488,0.48846][0.725464,0.148986,0.251615][-2.41547e-006,-0.9982,0.0599805][0.210861,0.29945,0.491904][1.06927,-0.351333,0.418913][3.10237e-007,-0.9982,0.0599799][0.199736,0.261606,0.816147][1.04829,-0.349013,0.457512][0,-0.99818,0.0603][0.193583,0.260951,0.812541][0.901894,-0.332704,0.726752][1.17207e-006,-0.99817,0.0604692][0.149774,0.263191,0.805936][0.611706,0.161648,0.460842][1.31125e-005,-0.99817,0.0604753][0.159423,0.298526,0.47858][0.611706,0.161648,0.460842][1.31125e-005,-0.99817,0.0604753][0.159423,0.298526,0.47858][0.711206,0.150562,0.277849][-2.26379e-005,-0.998176,0.0603732][0.204649,0.298488,0.48846][1.04829,-0.349013,0.457512][0,-0.99818,0.0603][0.193583,0.260951,0.812541][0.901894,-0.332704,0.726752][1.17207e-006,-0.99817,0.0604692][0.149774,0.263191,0.805936][0.823387,-0.328144,0.802014][0,-0.998154,0.0607274][0.134288,0.261907,0.798863][0.558347,0.164746,0.511995][-0.000392126,-0.998185,0.0602285][0.143346,0.296505,0.471724][0.558347,0.164746,0.511995][-0.000392126,-0.998185,0.0602285][0.143346,0.296505,0.471724][0.611706,0.161648,0.460842][1.31125e-005,-0.99817,0.0604753][0.159423,0.298526,0.47858][0.901894,-0.332704,0.726752][1.17207e-006,-0.99817,0.0604692][0.149774,0.263191,0.805936][0.823387,-0.328144,0.802014][0,-0.998154,0.0607274][0.134288,0.261907,0.798863][0.650882,-0.318071,0.96735][1.51121e-007,-0.998149,0.0608106][0.0998345,0.264465,0.797931][0.441102,0.171593,0.624368][1.1581e-005,-0.998148,0.0608251][0.106902,0.297716,0.468024][0.441102,0.171593,0.624368][1.1581e-005,-0.998148,0.0608251][0.106902,0.297716,0.468024][0.558347,0.164746,0.511995][-0.000392126,-0.998185,0.0602285][0.143346,0.296505,0.471724][0.823387,-0.328144,0.802014][0,-0.998154,0.0607274][0.134288,0.261907,0.798863][0.650882,-0.318071,0.96735][1.51121e-007,-0.998149,0.0608106][0.0998345,0.264465,0.797931][0.443905,-0.31186,1.0693][0,-0.998159,0.0606489][0.066504,0.263276,0.789809][0.300426,0.175814,0.693661][-2.91517e-005,-0.998166,0.0605336][0.0713994,0.295441,0.459802][0.300426,0.175814,0.693661][-2.91517e-005,-0.998166,0.0605336][0.0713994,0.295441,0.459802][0.441102,0.171593,0.624368][1.1581e-005,-0.998148,0.0608251][0.106902,0.297716,0.468024][0.650882,-0.318071,0.96735][1.51121e-007,-0.998149,0.0608106][0.0998345,0.264465,0.797931][-0.932659,-0.413547,-0.606128][1.54968e-006,-0.998114,0.0613959][0.650219,0.25616,0.8492][-0.880205,-0.416818,-0.659306][0,-0.998103,0.0615618][0.639929,0.254458,0.847011][-0.599525,0.104479,-0.481213][-0.000369369,-0.998128,0.0611632][0.631746,0.300399,0.53423][-0.599525,0.104479,-0.481213][-0.000369369,-0.998128,0.0611632][0.631746,0.300399,0.53423][-0.635176,0.106702,-0.44507][-1.01439e-005,-0.998114,0.0613804][0.64163,0.301595,0.534995][-0.932659,-0.413547,-0.606128][1.54968e-006,-0.998114,0.0613959][0.650219,0.25616,0.8492][-1.00575,-0.404531,-0.459565][0.000267622,-0.998111,0.0614408][0.672924,0.25534,0.840043][-0.932659,-0.413547,-0.606128][1.54968e-006,-0.998114,0.0613959][0.650219,0.25616,0.8492][-0.635176,0.106702,-0.44507][-1.01439e-005,-0.998114,0.0613804][0.64163,0.301595,0.534995][-0.635176,0.106702,-0.44507][-1.01439e-005,-0.998114,0.0613804][0.64163,0.301595,0.534995][-0.684856,0.112828,-0.345456][-0.00122353,-0.998171,0.0604383][0.663296,0.30006,0.525897][-1.00575,-0.404531,-0.459565][0.000267622,-0.998111,0.0614408][0.672924,0.25534,0.840043][-1.0818,-0.394694,-0.299407][-8.32852e-005,-0.998143,0.06092][0.697691,0.257684,0.838934][-1.00575,-0.404531,-0.459565][0.000267622,-0.998111,0.0614408][0.672924,0.25534,0.840043][-0.684856,0.112828,-0.345456][-0.00122353,-0.998171,0.0604383][0.663296,0.30006,0.525897][-0.684856,0.112828,-0.345456][-0.00122353,-0.998171,0.0604383][0.663296,0.30006,0.525897][-0.736543,0.119515,-0.236603][-0.0024391,-0.998186,0.0601631][0.687308,0.301213,0.52246][-1.0818,-0.394694,-0.299407][-8.32852e-005,-0.998143,0.06092][0.697691,0.257684,0.838934][-1.13483,-0.372256,0.0706927][0.000119708,-0.998176,0.0603687][0.750164,0.259855,0.827593][-1.0818,-0.394694,-0.299407][-8.32852e-005,-0.998143,0.06092][0.697691,0.257684,0.838934][-0.736543,0.119515,-0.236603][-0.0024391,-0.998186,0.0601631][0.687308,0.301213,0.52246][-0.736543,0.119515,-0.236603][-0.0024391,-0.998186,0.0601631][0.687308,0.301213,0.52246][-0.772585,0.134765,0.0149413][-0.00167147,-0.998177,0.0603399][0.738774,0.300832,0.507757][-1.13483,-0.372256,0.0706927][0.000119708,-0.998176,0.0603687][0.750164,0.259855,0.827593][-1.04829,-0.349013,0.457513][-2.83608e-007,-0.99818,0.0603008][0.806417,0.260951,0.81254][-1.06927,-0.351333,0.418914][1.25514e-007,-0.9982,0.0599799][0.800264,0.261606,0.816147][-0.728024,0.148986,0.251615][7.40226e-006,-0.9982,0.0599781][0.789007,0.299952,0.49297][-0.728024,0.148986,0.251615][7.40226e-006,-0.9982,0.0599781][0.789007,0.299952,0.49297][-0.713767,0.150562,0.277849][-0.00016322,-0.998167,0.0605218][0.795197,0.29899,0.489513][-1.04829,-0.349013,0.457513][-2.83608e-007,-0.99818,0.0603008][0.806417,0.260951,0.81254][-1.06927,-0.351333,0.418914][1.25514e-007,-0.9982,0.0599799][0.800264,0.261606,0.816147][-1.13483,-0.372256,0.0706927][0.000119708,-0.998176,0.0603687][0.750164,0.259855,0.827593][-0.772585,0.134765,0.0149413][-0.00167147,-0.998177,0.0603399][0.738774,0.300832,0.507757][-0.772585,0.134765,0.0149413][-0.00167147,-0.998177,0.0603399][0.738774,0.300832,0.507757][-0.728024,0.148986,0.251615][7.40226e-006,-0.9982,0.0599781][0.789007,0.299952,0.49297][-1.06927,-0.351333,0.418914][1.25514e-007,-0.9982,0.0599799][0.800264,0.261606,0.816147][-0.880205,-0.416818,-0.659306][0,-0.998103,0.0615618][0.639929,0.254458,0.847011][-0.679093,-0.429405,-0.863203][2.25719e-006,-0.998099,0.0616239][0.600159,0.254186,0.855854][-0.462836,0.0959225,-0.619795][7.40082e-006,-0.998099,0.0616323][0.594108,0.3012,0.54387][-0.462836,0.0959225,-0.619795][7.40082e-006,-0.998099,0.0616323][0.594108,0.3012,0.54387][-0.599525,0.104479,-0.481213][-0.000369369,-0.998128,0.0611632][0.631746,0.300399,0.53423][-0.880205,-0.416818,-0.659306][0,-0.998103,0.0615618][0.639929,0.254458,0.847011][-0.679093,-0.429405,-0.863203][2.25719e-006,-0.998099,0.0616239][0.600159,0.254186,0.855854][-0.559959,-0.433194,-0.92457][0,-0.998125,0.0612112][0.581644,0.251876,0.852409][-0.381865,0.0933476,-0.661504][-7.61126e-005,-0.99814,0.0609612][0.576614,0.29954,0.542293][-0.381865,0.0933476,-0.661504][-7.61126e-005,-0.99814,0.0609612][0.576614,0.29954,0.542293][-0.462836,0.0959225,-0.619795][7.40082e-006,-0.998099,0.0616323][0.594108,0.3012,0.54387][-0.679093,-0.429405,-0.863203][2.25719e-006,-0.998099,0.0616239][0.600159,0.254186,0.855854] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/gravityhammer.mesh b/shareddata/charcustom/hats/fonts/gravityhammer.mesh deleted file mode 100644 index 1c8ffb5..0000000 --- a/shareddata/charcustom/hats/fonts/gravityhammer.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -742 -[-39.2488,-0.26109,196.726][0,0,1][0.156502,0.9854,0.00969362][-50.1552,-0.268709,196.726][0,0,1][0.0941122,0.976886,0.00997639][-39.3094,-6.34944,196.726][0,0,1][0.156131,0.9854,0.235736][-61.0616,-0.322026,196.726][0,0,0.562366][0.0368312,0.963264,0.0119558][-50.124,-7.14095,196.726][0,0,3.04178][0.0943028,0.976886,0.265123][-50.1552,-0.268709,196.726][0,0,1][0.0941122,0.976886,0.00997639][-39.37,-12.4378,196.726][0,0,2.78172][0.155761,0.9854,0.461779][-39.3094,-6.34944,196.726][0,0,1][0.156131,0.9854,0.235736][-50.124,-7.14095,196.726][0,0,3.04178][0.0943028,0.976886,0.265123][-50.1552,-0.268709,196.726][0,0,1][0.0941122,0.976886,0.00997639][-50.124,-7.14095,196.726][0,0,3.04178][0.0943028,0.976886,0.265123][-39.3094,-6.34944,196.726][0,0,1][0.156131,0.9854,0.235736][-26.408,-0.261093,90.4366][-0.236072,-0.0280943,-0.971329][0.232415,0.758236,0.00969431][-26.0549,-3.39235,90.5259][-0.231135,-0.0570954,-0.971245][0.234573,0.758429,0.125949][-34.354,-0.261094,93.6649][-0.47712,-0.0583831,-0.876897][0.183859,0.765188,0.00969428][-25.7018,-6.52361,90.6152][-0.480532,-0.0867485,-1.14154][0.23673,0.758621,0.242203][-33.2464,-4.56658,93.6424][-1.31708,-0.315291,-2.66756][0.190627,0.765139,0.169544][-26.0549,-3.39235,90.5259][-0.231135,-0.0570954,-0.971245][0.234573,0.758429,0.125949][-42.201,-0.261095,98.9574][-0.219344,-0.0547286,-0.325211][0.135907,0.776584,0.00969425][-34.354,-0.261094,93.6649][-0.47712,-0.0583831,-0.876897][0.183859,0.765188,0.00969428][-33.2464,-4.56658,93.6424][-1.31708,-0.315291,-2.66756][0.190627,0.765139,0.169544][-26.0549,-3.39235,90.5259][-0.231135,-0.0570954,-0.971245][0.234573,0.758429,0.125949][-33.2464,-4.56658,93.6424][-1.31708,-0.315291,-2.66756][0.190627,0.765139,0.169544][-34.354,-0.261094,93.6649][-0.47712,-0.0583831,-0.876897][0.183859,0.765188,0.00969428][-18.068,-0.261087,196.726][0,0,1][0.249919,1.01365,0.00969362][-18.6075,-6.31897,196.726][0,0,1][0.245501,1.01365,0.234605][-8.93077,-5.54456,196.726][0,0,1][0.324739,1.01365,0.205854][-8.93077,-5.54456,196.726][0,0,1][0.324739,1.01365,0.205854][-7.94258,-0.261086,196.726][0,0,1][0.33283,1.01365,0.00969362][-18.068,-0.261087,196.726][0,0,1][0.249919,1.01365,0.00969362][-10.2872,-10.6183,196.726][0,0,2.90711][0.313631,1.01365,0.394225][-8.93077,-5.54456,196.726][0,0,1][0.324739,1.01365,0.205854][-18.6075,-6.31897,196.726][0,0,1][0.245501,1.01365,0.234605][-18.6075,-6.31897,196.726][0,0,1][0.245501,1.01365,0.234605][-19.1471,-12.3769,196.726][0,0,1.28602][0.241083,1.01365,0.459517][-10.2872,-10.6183,196.726][0,0,2.90711][0.313631,1.01365,0.394225][-3.56894,-7.53364,196.726][0,0,2.73489][0.37198,0.987103,0.279702][-0.479803,-4.10715,196.726][0,0,2.9569][0.390857,0.987103,0.152487][-8.93077,-5.54456,196.726][0,0,1][0.339215,0.987103,0.205854][-8.93077,-5.54456,196.726][0,0,1][0.339215,0.987103,0.205854][-10.2872,-10.6183,196.726][0,0,2.90711][0.330926,0.987103,0.394225][-3.56894,-7.53364,196.726][0,0,2.73489][0.37198,0.987103,0.279702][-7.94258,-0.261086,196.726][0,0,1][0.345253,0.987103,0.00969362][-8.93077,-5.54456,196.726][0,0,1][0.339215,0.987103,0.205854][-0.479803,-4.10715,196.726][0,0,2.9569][0.390857,0.987103,0.152487][-0.479803,-4.10715,196.726][0,0,2.9569][0.390857,0.987103,0.152487][1.8728,-0.261084,196.726][0,0,1.02182][0.405233,0.987103,0.00969362][-7.94258,-0.261086,196.726][0,0,1][0.345253,0.987103,0.00969362][1.8728,-0.261084,196.726][0,0,1.02182][0.405233,0.987103,0.00969362][-0.479803,-4.10715,196.726][0,0,2.9569][0.390857,0.987103,0.152487][0.845119,-4.24743,178.208][0.862279,-0.503901,0.0505711][0.398953,0.947228,0.157695][0.845119,-4.24743,178.208][0.862279,-0.503901,0.0505711][0.398953,0.947228,0.157695][2.00801,-0.261085,178.27][0.99106,-0.13175,0.0210345][0.406059,0.947363,0.00969374][1.8728,-0.261084,196.726][0,0,1.02182][0.405233,0.987103,0.00969362][-2.20895,-7.51699,178.158][0.554114,-0.83166,0.0360434][0.38029,0.94712,0.279084][0.845119,-4.24743,178.208][0.862279,-0.503901,0.0505711][0.398953,0.947228,0.157695][-0.479803,-4.10715,196.726][0,0,2.9569][0.390857,0.987103,0.152487][-0.479803,-4.10715,196.726][0,0,2.9569][0.390857,0.987103,0.152487][-3.56894,-7.53364,196.726][0,0,2.73489][0.37198,0.987103,0.279702][-2.20895,-7.51699,178.158][0.554114,-0.83166,0.0360434][0.38029,0.94712,0.279084][-0.848963,-7.50033,159.589][0.528198,-0.848631,0.0288437][0.388601,0.907138,0.278466][2.17004,-4.3877,159.689][0.924962,-0.379265,0.0245375][0.40705,0.907354,0.162903][0.845119,-4.24743,178.208][0.862279,-0.503901,0.0505711][0.398953,0.947228,0.157695][0.845119,-4.24743,178.208][0.862279,-0.503901,0.0505711][0.398953,0.947228,0.157695][-2.20895,-7.51699,178.158][0.554114,-0.83166,0.0360434][0.38029,0.94712,0.279084][-0.848963,-7.50033,159.589][0.528198,-0.848631,0.0288437][0.388601,0.907138,0.278466][2.00801,-0.261085,178.27][0.99106,-0.13175,0.0210345][0.406059,0.947363,0.00969374][0.845119,-4.24743,178.208][0.862279,-0.503901,0.0505711][0.398953,0.947228,0.157695][2.17004,-4.3877,159.689][0.924962,-0.379265,0.0245375][0.40705,0.907354,0.162903][2.17004,-4.3877,159.689][0.924962,-0.379265,0.0245375][0.40705,0.907354,0.162903][2.14323,-0.261086,159.814][0.999968,0.00313779,0.00732592][0.406886,0.907623,0.00969386][2.00801,-0.261085,178.27][0.99106,-0.13175,0.0210345][0.406059,0.947363,0.00969374][-3.56894,-7.53364,196.726][0,0,2.73489][0.37198,0.987103,0.279702][-10.2872,-10.6183,196.726][0,0,2.90711][0.330926,0.987103,0.394225][-8.85762,-10.0448,177.906][0.261239,-0.96526,-0.00530796][0.339662,0.946578,0.372936][-8.85762,-10.0448,177.906][0.261239,-0.96526,-0.00530796][0.339662,0.946578,0.372936][-2.20895,-7.51699,178.158][0.554114,-0.83166,0.0360434][0.38029,0.94712,0.279084][-3.56894,-7.53364,196.726][0,0,2.73489][0.37198,0.987103,0.279702][-17.5517,-11.4572,177.688][0.133049,-0.990607,-0.031542][0.286534,0.946109,0.425374][-8.85762,-10.0448,177.906][0.261239,-0.96526,-0.00530796][0.339662,0.946578,0.372936][-10.2872,-10.6183,196.726][0,0,2.90711][0.330926,0.987103,0.394225][-10.2872,-10.6183,196.726][0,0,2.90711][0.330926,0.987103,0.394225][-19.1471,-12.3769,196.726][0,0,1.28602][0.276785,0.987103,0.459517][-17.5517,-11.4572,177.688][0.133049,-0.990607,-0.031542][0.286534,0.946109,0.425374][-16.0244,-10.6836,159.462][0.112043,-0.993511,-0.0195362][0.295867,0.906864,0.396651][-7.46206,-9.54442,159.492][0.217052,-0.976147,0.00512151][0.34819,0.906928,0.354357][-8.85762,-10.0448,177.906][0.261239,-0.96526,-0.00530796][0.339662,0.946578,0.372936][-8.85762,-10.0448,177.906][0.261239,-0.96526,-0.00530796][0.339662,0.946578,0.372936][-17.5517,-11.4572,177.688][0.133049,-0.990607,-0.031542][0.286534,0.946109,0.425374][-16.0244,-10.6836,159.462][0.112043,-0.993511,-0.0195362][0.295867,0.906864,0.396651][-2.20895,-7.51699,178.158][0.554114,-0.83166,0.0360434][0.38029,0.94712,0.279084][-8.85762,-10.0448,177.906][0.261239,-0.96526,-0.00530796][0.339662,0.946578,0.372936][-7.46206,-9.54442,159.492][0.217052,-0.976147,0.00512151][0.34819,0.906928,0.354357][-7.46206,-9.54442,159.492][0.217052,-0.976147,0.00512151][0.34819,0.906928,0.354357][-0.848963,-7.50033,159.589][0.528198,-0.848631,0.0288437][0.388601,0.907138,0.278466][-2.20895,-7.51699,178.158][0.554114,-0.83166,0.0360434][0.38029,0.94712,0.279084][-18.068,-0.261087,196.726][0,0,1][0.283379,0.987103,0.00969362][-28.5034,-0.261089,196.726][0,0,1][0.219611,0.987103,0.00969362][-28.6899,-6.86418,196.726][0,0,1][0.218471,0.987103,0.254847][-28.6899,-6.86418,196.726][0,0,1][0.218471,0.987103,0.254847][-18.6075,-6.31897,196.726][0,0,1][0.280082,0.987103,0.234605][-18.068,-0.261087,196.726][0,0,1][0.283379,0.987103,0.00969362][-39.3094,-6.34944,196.726][0,0,1][0.156131,0.9854,0.235736][-28.6899,-6.86418,196.726][0,0,1][0.218471,0.987103,0.254847][-28.5034,-0.261089,196.726][0,0,1][0.219611,0.987103,0.00969362][-28.5034,-0.261089,196.726][0,0,1][0.219611,0.987103,0.00969362][-39.2488,-0.26109,196.726][0,0,1][0.156502,0.9854,0.00969362][-39.3094,-6.34944,196.726][0,0,1][0.156131,0.9854,0.235736][-39.37,-12.4378,196.726][0,0,2.78172][0.155761,0.9854,0.461779][-28.8765,-13.4673,196.726][0,0,2.93219][0.217331,0.987103,0.5][-28.6899,-6.86418,196.726][0,0,1][0.218471,0.987103,0.254847][-28.6899,-6.86418,196.726][0,0,1][0.218471,0.987103,0.254847][-39.3094,-6.34944,196.726][0,0,1][0.156131,0.9854,0.235736][-39.37,-12.4378,196.726][0,0,2.78172][0.155761,0.9854,0.461779][-18.6075,-6.31897,196.726][0,0,1][0.280082,0.987103,0.234605][-28.6899,-6.86418,196.726][0,0,1][0.218471,0.987103,0.254847][-28.8765,-13.4673,196.726][0,0,2.93219][0.217331,0.987103,0.5][-28.8765,-13.4673,196.726][0,0,2.93219][0.217331,0.987103,0.5][-19.1471,-12.3769,196.726][0,0,1.28602][0.276785,0.987103,0.459517][-18.6075,-6.31897,196.726][0,0,1][0.280082,0.987103,0.234605][-19.1471,-12.3769,196.726][0,0,1.28602][0.276785,0.987103,0.459517][-28.8765,-13.4673,196.726][0,0,2.93219][0.217331,0.987103,0.5][-26.9428,-12.4238,177.889][0.00474482,-0.998733,-0.0501022][0.229147,0.946542,0.46126][-26.9428,-12.4238,177.889][0.00474482,-0.998733,-0.0501022][0.229147,0.946542,0.46126][-17.5517,-11.4572,177.688][0.133049,-0.990607,-0.031542][0.286534,0.946109,0.425374][-19.1471,-12.3769,196.726][0,0,1.28602][0.276785,0.987103,0.459517][-36.9609,-11.4801,178.024][-0.252322,-0.964725,-0.0750932][0.167928,0.946832,0.426222][-26.9428,-12.4238,177.889][0.00474482,-0.998733,-0.0501022][0.229147,0.946542,0.46126][-28.8765,-13.4673,196.726][0,0,2.93219][0.217331,0.987103,0.5][-28.8765,-13.4673,196.726][0,0,2.93219][0.217331,0.987103,0.5][-39.37,-12.4378,196.726][0,0,2.78172][0.155761,0.9854,0.461779][-36.9609,-11.4801,178.024][-0.252322,-0.964725,-0.0750932][0.167928,0.946832,0.426222][-34.6108,-10.6836,159.779][-0.236289,-0.969216,-0.0692001][0.182289,0.907547,0.396651][-25.0728,-11.534,159.687][0.00160454,-0.999189,-0.040236][0.240574,0.907349,0.428223][-26.9428,-12.4238,177.889][0.00474482,-0.998733,-0.0501022][0.229147,0.946542,0.46126][-26.9428,-12.4238,177.889][0.00474482,-0.998733,-0.0501022][0.229147,0.946542,0.46126][-36.9609,-11.4801,178.024][-0.252322,-0.964725,-0.0750932][0.167928,0.946832,0.426222][-34.6108,-10.6836,159.779][-0.236289,-0.969216,-0.0692001][0.182289,0.907547,0.396651][-17.5517,-11.4572,177.688][0.133049,-0.990607,-0.031542][0.286534,0.946109,0.425374][-26.9428,-12.4238,177.889][0.00474482,-0.998733,-0.0501022][0.229147,0.946542,0.46126][-25.0728,-11.534,159.687][0.00160454,-0.999189,-0.040236][0.240574,0.907349,0.428223][-25.0728,-11.534,159.687][0.00160454,-0.999189,-0.040236][0.240574,0.907349,0.428223][-16.0244,-10.6836,159.462][0.112043,-0.993511,-0.0195362][0.295867,0.906864,0.396651][-17.5517,-11.4572,177.688][0.133049,-0.990607,-0.031542][0.286534,0.946109,0.425374][-39.37,-12.4378,196.726][0,0,2.78172][0.155761,0.9854,0.461779][-50.124,-7.14095,196.726][0,0,3.04178][0.0943028,0.976886,0.265123][-47.0943,-6.91776,177.934][-0.478492,-0.873277,-0.0918301][0.106005,0.94664,0.256836][-47.0943,-6.91776,177.934][-0.478492,-0.873277,-0.0918301][0.106005,0.94664,0.256836][-36.9609,-11.4801,178.024][-0.252322,-0.964725,-0.0750932][0.167928,0.946832,0.426222][-39.37,-12.4378,196.726][0,0,2.78172][0.155761,0.9854,0.461779][-57.3828,-0.29156,177.656][-1.67959,-2.63565,-0.319188][0.0431344,0.946041,0.0108249][-47.0943,-6.91776,177.934][-0.478492,-0.873277,-0.0918301][0.106005,0.94664,0.256836][-50.124,-7.14095,196.726][0,0,3.04178][0.0943028,0.976886,0.265123][-50.124,-7.14095,196.726][0,0,3.04178][0.0943028,0.976886,0.265123][-61.0616,-0.322026,196.726][0,0,0.562366][0.0368312,0.963264,0.0119558][-57.3828,-0.29156,177.656][-1.67959,-2.63565,-0.319188][0.0431344,0.946041,0.0108249][-53.7041,-0.261094,158.587][-1.72652,-2.60385,-0.321054][0.0656144,0.90498,0.00969386][-44.0941,-6.77517,159.372][-0.469262,-0.878269,-0.0918508][0.124339,0.90667,0.251542][-47.0943,-6.91776,177.934][-0.478492,-0.873277,-0.0918301][0.106005,0.94664,0.256836][-47.0943,-6.91776,177.934][-0.478492,-0.873277,-0.0918301][0.106005,0.94664,0.256836][-57.3828,-0.29156,177.656][-1.67959,-2.63565,-0.319188][0.0431344,0.946041,0.0108249][-53.7041,-0.261094,158.587][-1.72652,-2.60385,-0.321054][0.0656144,0.90498,0.00969386][-36.9609,-11.4801,178.024][-0.252322,-0.964725,-0.0750932][0.167928,0.946832,0.426222][-47.0943,-6.91776,177.934][-0.478492,-0.873277,-0.0918301][0.106005,0.94664,0.256836][-44.0941,-6.77517,159.372][-0.469262,-0.878269,-0.0918508][0.124339,0.90667,0.251542][-44.0941,-6.77517,159.372][-0.469262,-0.878269,-0.0918508][0.124339,0.90667,0.251542][-34.6108,-10.6836,159.779][-0.236289,-0.969216,-0.0692001][0.182289,0.907547,0.396651][-36.9609,-11.4801,178.024][-0.252322,-0.964725,-0.0750932][0.167928,0.946832,0.426222][-53.7041,-0.261094,158.587][-1.72652,-2.60385,-0.321054][0.0656144,0.90498,0.00969386][-50.4033,-0.261095,141.476][-1.74263,-2.59284,-0.331693][0.0857848,0.868137,0.00969397][-41.3235,-6.3882,141.798][-0.466561,-0.879794,-0.0910082][0.14127,0.86883,0.237175][-41.3235,-6.3882,141.798][-0.466561,-0.879794,-0.0910082][0.14127,0.86883,0.237175][-44.0941,-6.77517,159.372][-0.469262,-0.878269,-0.0918508][0.124339,0.90667,0.251542][-53.7041,-0.261094,158.587][-1.72652,-2.60385,-0.321054][0.0656144,0.90498,0.00969386][-38.5824,-6.08184,124.454][-0.467134,-0.877226,-0.110729][0.15802,0.831484,0.225801][-41.3235,-6.3882,141.798][-0.466561,-0.879794,-0.0910082][0.14127,0.86883,0.237175][-50.4033,-0.261095,141.476][-1.74263,-2.59284,-0.331693][0.0857848,0.868137,0.00969397][-50.4033,-0.261095,141.476][-1.74263,-2.59284,-0.331693][0.0857848,0.868137,0.00969397][-47.1025,-0.261095,124.366][-1.73805,-2.59173,-0.362069][0.105955,0.831294,0.00969409][-38.5824,-6.08184,124.454][-0.467134,-0.877226,-0.110729][0.15802,0.831484,0.225801][-30.0876,-9.57428,124.663][-0.228831,-0.969624,-0.0863983][0.20993,0.831935,0.355465][-32.3197,-10.0483,141.992][-0.235546,-0.969895,-0.0618205][0.19629,0.869248,0.373066][-41.3235,-6.3882,141.798][-0.466561,-0.879794,-0.0910082][0.14127,0.86883,0.237175][-41.3235,-6.3882,141.798][-0.466561,-0.879794,-0.0910082][0.14127,0.86883,0.237175][-38.5824,-6.08184,124.454][-0.467134,-0.877226,-0.110729][0.15802,0.831484,0.225801][-30.0876,-9.57428,124.663][-0.228831,-0.969624,-0.0863983][0.20993,0.831935,0.355465][-44.0941,-6.77517,159.372][-0.469262,-0.878269,-0.0918508][0.124339,0.90667,0.251542][-41.3235,-6.3882,141.798][-0.466561,-0.879794,-0.0910082][0.14127,0.86883,0.237175][-32.3197,-10.0483,141.992][-0.235546,-0.969895,-0.0618205][0.19629,0.869248,0.373066][-32.3197,-10.0483,141.992][-0.235546,-0.969895,-0.0618205][0.19629,0.869248,0.373066][-34.6108,-10.6836,159.779][-0.236289,-0.969216,-0.0692001][0.182289,0.907547,0.396651][-44.0941,-6.77517,159.372][-0.469262,-0.878269,-0.0918508][0.124339,0.90667,0.251542][-47.1025,-0.261095,124.366][-1.73805,-2.59173,-0.362069][0.105955,0.831294,0.00969409][-44.6518,-0.261095,111.662][-1.62216,-2.66926,-0.335618][0.120931,0.803939,0.00969417][-35.9144,-5.32421,109.048][-0.433938,-0.893034,-0.119116][0.174323,0.798312,0.197673][-35.9144,-5.32421,109.048][-0.433938,-0.893034,-0.119116][0.174323,0.798312,0.197673][-38.5824,-6.08184,124.454][-0.467134,-0.877226,-0.110729][0.15802,0.831484,0.225801][-47.1025,-0.261095,124.366][-1.73805,-2.59173,-0.362069][0.105955,0.831294,0.00969409][-33.2464,-4.56658,93.6424][-1.31708,-0.315291,-2.66756][0.190627,0.765139,0.169544][-35.9144,-5.32421,109.048][-0.433938,-0.893034,-0.119116][0.174323,0.798312,0.197673][-44.6518,-0.261095,111.662][-1.62216,-2.66926,-0.335618][0.120931,0.803939,0.00969417][-44.6518,-0.261095,111.662][-1.62216,-2.66926,-0.335618][0.120931,0.803939,0.00969417][-42.201,-0.261095,98.9574][-0.219344,-0.0547286,-0.325211][0.135907,0.776584,0.00969425][-33.2464,-4.56658,93.6424][-1.31708,-0.315291,-2.66756][0.190627,0.765139,0.169544][-25.7018,-6.52361,90.6152][-0.480532,-0.0867485,-1.14154][0.23673,0.758621,0.242203][-27.8947,-8.04895,107.639][-0.206117,-0.972104,-0.111937][0.22333,0.795278,0.298834][-35.9144,-5.32421,109.048][-0.433938,-0.893034,-0.119116][0.174323,0.798312,0.197673][-35.9144,-5.32421,109.048][-0.433938,-0.893034,-0.119116][0.174323,0.798312,0.197673][-33.2464,-4.56658,93.6424][-1.31708,-0.315291,-2.66756][0.190627,0.765139,0.169544][-25.7018,-6.52361,90.6152][-0.480532,-0.0867485,-1.14154][0.23673,0.758621,0.242203][-38.5824,-6.08184,124.454][-0.467134,-0.877226,-0.110729][0.15802,0.831484,0.225801][-35.9144,-5.32421,109.048][-0.433938,-0.893034,-0.119116][0.174323,0.798312,0.197673][-27.8947,-8.04895,107.639][-0.206117,-0.972104,-0.111937][0.22333,0.795278,0.298834][-27.8947,-8.04895,107.639][-0.206117,-0.972104,-0.111937][0.22333,0.795278,0.298834][-30.0876,-9.57428,124.663][-0.228831,-0.969624,-0.0863983][0.20993,0.831935,0.355465][-38.5824,-6.08184,124.454][-0.467134,-0.877226,-0.110729][0.15802,0.831484,0.225801][-26.408,-0.261093,90.4366][-0.236072,-0.0280943,-0.971329][0.232415,0.758236,0.00969431][-18.1308,-0.261092,89.7475][-0.0161184,-0.0264534,-0.99952][0.282995,0.756753,0.00969431][-18.7477,-3.78376,89.9743][-0.0293687,-0.0614735,-0.997677][0.279226,0.757241,0.140481][-18.7477,-3.78376,89.9743][-0.0293687,-0.0614735,-0.997677][0.279226,0.757241,0.140481][-26.0549,-3.39235,90.5259][-0.231135,-0.0570954,-0.971245][0.234573,0.758429,0.125949][-26.408,-0.261093,90.4366][-0.236072,-0.0280943,-0.971329][0.232415,0.758236,0.00969431][-10.2242,-4.17517,90.2406][0.0265043,-0.0206759,-0.999435][0.331311,0.757814,0.155012][-18.7477,-3.78376,89.9743][-0.0293687,-0.0614735,-0.997677][0.279226,0.757241,0.140481][-18.1308,-0.261092,89.7475][-0.0161184,-0.0264534,-0.99952][0.282995,0.756753,0.00969431][-18.1308,-0.261092,89.7475][-0.0161184,-0.0264534,-0.99952][0.282995,0.756753,0.00969431][-10.2192,-0.261091,90.173][0.0349268,-0.00834295,-0.999355][0.331342,0.757669,0.00969431][-10.2242,-4.17517,90.2406][0.0265043,-0.0206759,-0.999435][0.331311,0.757814,0.155012][-10.2273,-6.52361,90.2811][0.0415396,-0.046731,-1.57076][0.331292,0.757902,0.242203][-19.3635,-6.52361,90.1876][-0.122068,-0.205052,-3.13498][0.275462,0.7577,0.242203][-18.7477,-3.78376,89.9743][-0.0293687,-0.0614735,-0.997677][0.279226,0.757241,0.140481][-18.7477,-3.78376,89.9743][-0.0293687,-0.0614735,-0.997677][0.279226,0.757241,0.140481][-10.2242,-4.17517,90.2406][0.0265043,-0.0206759,-0.999435][0.331311,0.757814,0.155012][-10.2273,-6.52361,90.2811][0.0415396,-0.046731,-1.57076][0.331292,0.757902,0.242203][-26.0549,-3.39235,90.5259][-0.231135,-0.0570954,-0.971245][0.234573,0.758429,0.125949][-18.7477,-3.78376,89.9743][-0.0293687,-0.0614735,-0.997677][0.279226,0.757241,0.140481][-19.3635,-6.52361,90.1876][-0.122068,-0.205052,-3.13498][0.275462,0.7577,0.242203][-19.3635,-6.52361,90.1876][-0.122068,-0.205052,-3.13498][0.275462,0.7577,0.242203][-25.7018,-6.52361,90.6152][-0.480532,-0.0867485,-1.14154][0.23673,0.758621,0.242203][-26.0549,-3.39235,90.5259][-0.231135,-0.0570954,-0.971245][0.234573,0.758429,0.125949][-25.7018,-6.52361,90.6152][-0.480532,-0.0867485,-1.14154][0.23673,0.758621,0.242203][-19.3635,-6.52361,90.1876][-0.122068,-0.205052,-3.13498][0.275462,0.7577,0.242203][-20.3808,-8.52669,107.718][-0.00864676,-0.995098,-0.0985196][0.269246,0.795447,0.316572][-20.3808,-8.52669,107.718][-0.00864676,-0.995098,-0.0985196][0.269246,0.795447,0.316572][-27.8947,-8.04895,107.639][-0.206117,-0.972104,-0.111937][0.22333,0.795278,0.298834][-25.7018,-6.52361,90.6152][-0.480532,-0.0867485,-1.14154][0.23673,0.758621,0.242203][-11.7127,-8.29161,108.008][0.0376173,-0.995851,-0.0828555][0.322215,0.796072,0.307844][-20.3808,-8.52669,107.718][-0.00864676,-0.995098,-0.0985196][0.269246,0.795447,0.316572][-19.3635,-6.52361,90.1876][-0.122068,-0.205052,-3.13498][0.275462,0.7577,0.242203][-19.3635,-6.52361,90.1876][-0.122068,-0.205052,-3.13498][0.275462,0.7577,0.242203][-10.2273,-6.52361,90.2811][0.0415396,-0.046731,-1.57076][0.331292,0.757902,0.242203][-11.7127,-8.29161,108.008][0.0376173,-0.995851,-0.0828555][0.322215,0.796072,0.307844][-13.1741,-9.57428,125.447][0.0787764,-0.995461,-0.0534097][0.313285,0.833623,0.355465][-21.3861,-10.2871,125.104][0.00662745,-0.997824,-0.0655976][0.263103,0.832883,0.38193][-20.3808,-8.52669,107.718][-0.00864676,-0.995098,-0.0985196][0.269246,0.795447,0.316572][-20.3808,-8.52669,107.718][-0.00864676,-0.995098,-0.0985196][0.269246,0.795447,0.316572][-11.7127,-8.29161,108.008][0.0376173,-0.995851,-0.0828555][0.322215,0.796072,0.307844][-13.1741,-9.57428,125.447][0.0787764,-0.995461,-0.0534097][0.313285,0.833623,0.355465][-27.8947,-8.04895,107.639][-0.206117,-0.972104,-0.111937][0.22333,0.795278,0.298834][-20.3808,-8.52669,107.718][-0.00864676,-0.995098,-0.0985196][0.269246,0.795447,0.316572][-21.3861,-10.2871,125.104][0.00662745,-0.997824,-0.0655976][0.263103,0.832883,0.38193][-21.3861,-10.2871,125.104][0.00662745,-0.997824,-0.0655976][0.263103,0.832883,0.38193][-30.0876,-9.57428,124.663][-0.228831,-0.969624,-0.0863983][0.20993,0.831935,0.355465][-27.8947,-8.04895,107.639][-0.206117,-0.972104,-0.111937][0.22333,0.795278,0.298834][-10.2192,-0.261091,90.173][0.0349268,-0.00834295,-0.999355][0.331342,0.757669,0.00969431][-3.36942,-0.26109,90.2885][0.0289521,-0.00452497,-0.999571][0.373199,0.757918,0.00969431][-3.51334,-3.90407,90.3349][0.0209065,-0.0142638,-0.99968][0.37232,0.758017,0.144948][-3.51334,-3.90407,90.3349][0.0209065,-0.0142638,-0.99968][0.37232,0.758017,0.144948][-10.2242,-4.17517,90.2406][0.0265043,-0.0206759,-0.999435][0.331311,0.757814,0.155012][-10.2192,-0.261091,90.173][0.0349268,-0.00834295,-0.999355][0.331342,0.757669,0.00969431][2.82037,-2.91183,90.5187][0.096951,0.0332245,-2.72174][0.411024,0.758413,0.108108][-3.51334,-3.90407,90.3349][0.0209065,-0.0142638,-0.99968][0.37232,0.758017,0.144948][-3.36942,-0.26109,90.2885][0.0289521,-0.00452497,-0.999571][0.373199,0.757918,0.00969431][-3.36942,-0.26109,90.2885][0.0289521,-0.00452497,-0.999571][0.373199,0.757918,0.00969431][2.65053,-0.261089,90.5691][0.0760358,0.0358764,-1.63165][0.409986,0.758522,0.00969431][2.82037,-2.91183,90.5187][0.096951,0.0332245,-2.72174][0.411024,0.758413,0.108108][2.10493,-4.84752,90.469][0.0552537,0.0203799,-2.17052][0.406652,0.758306,0.179975][-4.09888,-6.40672,90.3681][0.0495243,-0.0504426,-2.91367][0.368741,0.758089,0.237863][-3.51334,-3.90407,90.3349][0.0209065,-0.0142638,-0.99968][0.37232,0.758017,0.144948][-3.51334,-3.90407,90.3349][0.0209065,-0.0142638,-0.99968][0.37232,0.758017,0.144948][2.82037,-2.91183,90.5187][0.096951,0.0332245,-2.72174][0.411024,0.758413,0.108108][2.10493,-4.84752,90.469][0.0552537,0.0203799,-2.17052][0.406652,0.758306,0.179975][-10.2242,-4.17517,90.2406][0.0265043,-0.0206759,-0.999435][0.331311,0.757814,0.155012][-3.51334,-3.90407,90.3349][0.0209065,-0.0142638,-0.99968][0.37232,0.758017,0.144948][-4.09888,-6.40672,90.3681][0.0495243,-0.0504426,-2.91367][0.368741,0.758089,0.237863][-4.09888,-6.40672,90.3681][0.0495243,-0.0504426,-2.91367][0.368741,0.758089,0.237863][-10.2273,-6.52361,90.2811][0.0415396,-0.046731,-1.57076][0.331292,0.757902,0.242203][-10.2242,-4.17517,90.2406][0.0265043,-0.0206759,-0.999435][0.331311,0.757814,0.155012][-10.2273,-6.52361,90.2811][0.0415396,-0.046731,-1.57076][0.331292,0.757902,0.242203][-4.09888,-6.40672,90.3681][0.0495243,-0.0504426,-2.91367][0.368741,0.758089,0.237863][-5.00484,-7.97802,107.906][0.144211,-0.987278,-0.0669706][0.363205,0.795852,0.296201][-5.00484,-7.97802,107.906][0.144211,-0.987278,-0.0669706][0.363205,0.795852,0.296201][-11.7127,-8.29161,108.008][0.0376173,-0.995851,-0.0828555][0.322215,0.796072,0.307844][-10.2273,-6.52361,90.2811][0.0415396,-0.046731,-1.57076][0.331292,0.757902,0.242203][0.838753,-6.49196,107.703][0.570914,-0.820293,-0.0342975][0.398914,0.795415,0.241028][-5.00484,-7.97802,107.906][0.144211,-0.987278,-0.0669706][0.363205,0.795852,0.296201][-4.09888,-6.40672,90.3681][0.0495243,-0.0504426,-2.91367][0.368741,0.758089,0.237863][-4.09888,-6.40672,90.3681][0.0495243,-0.0504426,-2.91367][0.368741,0.758089,0.237863][2.10493,-4.84752,90.469][0.0552537,0.0203799,-2.17052][0.406652,0.758306,0.179975][0.838753,-6.49196,107.703][0.570914,-0.820293,-0.0342975][0.398914,0.795415,0.241028][-0.0756245,-7.48224,124.968][0.526506,-0.85009,-0.0117587][0.393327,0.83259,0.277794][-5.72283,-8.97958,125.315][0.166613,-0.985297,-0.0378254][0.358818,0.833338,0.333386][-5.00484,-7.97802,107.906][0.144211,-0.987278,-0.0669706][0.363205,0.795852,0.296201][-5.00484,-7.97802,107.906][0.144211,-0.987278,-0.0669706][0.363205,0.795852,0.296201][0.838753,-6.49196,107.703][0.570914,-0.820293,-0.0342975][0.398914,0.795415,0.241028][-0.0756245,-7.48224,124.968][0.526506,-0.85009,-0.0117587][0.393327,0.83259,0.277794][-11.7127,-8.29161,108.008][0.0376173,-0.995851,-0.0828555][0.322215,0.796072,0.307844][-5.00484,-7.97802,107.906][0.144211,-0.987278,-0.0669706][0.363205,0.795852,0.296201][-5.72283,-8.97958,125.315][0.166613,-0.985297,-0.0378254][0.358818,0.833338,0.333386][-5.72283,-8.97958,125.315][0.166613,-0.985297,-0.0378254][0.358818,0.833338,0.333386][-13.1741,-9.57428,125.447][0.0787764,-0.995461,-0.0534097][0.313285,0.833623,0.355465][-11.7127,-8.29161,108.008][0.0376173,-0.995851,-0.0828555][0.322215,0.796072,0.307844][2.10493,-4.84752,90.469][0.0552537,0.0203799,-2.17052][0.406652,0.758306,0.179975][2.82037,-2.91183,90.5187][0.096951,0.0332245,-2.72174][0.411024,0.758413,0.108108][2.56826,-3.87585,107.53][0.960086,-0.279682,0.00367022][0.409483,0.795043,0.1439][2.56826,-3.87585,107.53][0.960086,-0.279682,0.00367022][0.409483,0.795043,0.1439][0.838753,-6.49196,107.703][0.570914,-0.820293,-0.0342975][0.398914,0.795415,0.241028][2.10493,-4.84752,90.469][0.0552537,0.0203799,-2.17052][0.406652,0.758306,0.179975][2.52795,-0.261088,107.301][0.999931,0.00723399,0.00924899][0.418568,0.791213,0.0096942][2.56826,-3.87585,107.53][0.960086,-0.279682,0.00367022][0.418898,0.791784,0.1439][2.82037,-2.91183,90.5187][0.096951,0.0332245,-2.72174][0.420962,0.74947,0.108108][2.82037,-2.91183,90.5187][0.096951,0.0332245,-2.72174][0.420962,0.74947,0.108108][2.65053,-0.261089,90.5691][0.0760358,0.0358764,-1.63165][0.419572,0.749595,0.00969431][2.52795,-0.261088,107.301][0.999931,0.00723399,0.00924899][0.418568,0.791213,0.0096942][2.40537,-0.261087,124.033][0.999923,0.00936097,0.00818648][0.417564,0.832831,0.00969409][2.49206,-4.5128,124.557][0.940919,-0.338529,0.00829666][0.418274,0.834136,0.167548][2.56826,-3.87585,107.53][0.960086,-0.279682,0.00367022][0.418898,0.791784,0.1439][2.56826,-3.87585,107.53][0.960086,-0.279682,0.00367022][0.418898,0.791784,0.1439][2.52795,-0.261088,107.301][0.999931,0.00723399,0.00924899][0.418568,0.791213,0.0096942][2.40537,-0.261087,124.033][0.999923,0.00936097,0.00818648][0.417564,0.832831,0.00969409][0.838753,-6.49196,107.703][0.570914,-0.820293,-0.0342975][0.398914,0.795415,0.241028][2.56826,-3.87585,107.53][0.960086,-0.279682,0.00367022][0.409483,0.795043,0.1439][2.49206,-4.5128,124.557][0.940919,-0.338529,0.00829666][0.409017,0.831706,0.167548][2.49206,-4.5128,124.557][0.940919,-0.338529,0.00829666][0.409017,0.831706,0.167548][-0.0756245,-7.48224,124.968][0.526506,-0.85009,-0.0117587][0.393327,0.83259,0.277794][0.838753,-6.49196,107.703][0.570914,-0.820293,-0.0342975][0.398914,0.795415,0.241028][2.40537,-0.261087,124.033][0.999923,0.00936097,0.00818648][0.408488,0.830577,0.00969409][2.2743,-0.261087,141.923][0.999973,-0.00297174,0.00668972][0.407687,0.8691,0.00969397][2.2431,-4.61379,142.116][0.931487,-0.363626,0.0103925][0.407496,0.869514,0.171297][2.2431,-4.61379,142.116][0.931487,-0.363626,0.0103925][0.407496,0.869514,0.171297][2.49206,-4.5128,124.557][0.940919,-0.338529,0.00829666][0.409017,0.831706,0.167548][2.40537,-0.261087,124.033][0.999923,0.00936097,0.00818648][0.408488,0.830577,0.00969409][2.17004,-4.3877,159.689][0.924962,-0.379265,0.0245375][0.40705,0.907354,0.162903][2.2431,-4.61379,142.116][0.931487,-0.363626,0.0103925][0.407496,0.869514,0.171297][2.2743,-0.261087,141.923][0.999973,-0.00297174,0.00668972][0.407687,0.8691,0.00969397][2.2743,-0.261087,141.923][0.999973,-0.00297174,0.00668972][0.407687,0.8691,0.00969397][2.14323,-0.261086,159.814][0.999968,0.00313779,0.00732592][0.406886,0.907623,0.00969386][2.17004,-4.3877,159.689][0.924962,-0.379265,0.0245375][0.40705,0.907354,0.162903][-0.848963,-7.50033,159.589][0.528198,-0.848631,0.0288437][0.388601,0.907138,0.278466][-0.638195,-7.81836,142.263][0.524524,-0.851361,0.00764241][0.389889,0.869831,0.290273][2.2431,-4.61379,142.116][0.931487,-0.363626,0.0103925][0.407496,0.869514,0.171297][2.2431,-4.61379,142.116][0.931487,-0.363626,0.0103925][0.407496,0.869514,0.171297][2.17004,-4.3877,159.689][0.924962,-0.379265,0.0245375][0.40705,0.907354,0.162903][-0.848963,-7.50033,159.589][0.528198,-0.848631,0.0288437][0.388601,0.907138,0.278466][2.49206,-4.5128,124.557][0.940919,-0.338529,0.00829666][0.409017,0.831706,0.167548][2.2431,-4.61379,142.116][0.931487,-0.363626,0.0103925][0.407496,0.869514,0.171297][-0.638195,-7.81836,142.263][0.524524,-0.851361,0.00764241][0.389889,0.869831,0.290273][-0.638195,-7.81836,142.263][0.524524,-0.851361,0.00764241][0.389889,0.869831,0.290273][-0.0756245,-7.48224,124.968][0.526506,-0.85009,-0.0117587][0.393327,0.83259,0.277794][2.49206,-4.5128,124.557][0.940919,-0.338529,0.00829666][0.409017,0.831706,0.167548][-16.0244,-10.6836,159.462][0.112043,-0.993511,-0.0195362][0.295867,0.906864,0.396651][-14.5883,-10.2138,142.323][0.0874176,-0.995856,-0.0250763][0.304643,0.869961,0.379208][-6.6749,-9.46796,142.33][0.181332,-0.983373,-0.00984273][0.353,0.869975,0.351518][-6.6749,-9.46796,142.33][0.181332,-0.983373,-0.00984273][0.353,0.869975,0.351518][-7.46206,-9.54442,159.492][0.217052,-0.976147,0.00512151][0.34819,0.906928,0.354357][-16.0244,-10.6836,159.462][0.112043,-0.993511,-0.0195362][0.295867,0.906864,0.396651][-5.72283,-8.97958,125.315][0.166613,-0.985297,-0.0378254][0.358818,0.833338,0.333386][-6.6749,-9.46796,142.33][0.181332,-0.983373,-0.00984273][0.353,0.869975,0.351518][-14.5883,-10.2138,142.323][0.0874176,-0.995856,-0.0250763][0.304643,0.869961,0.379208][-14.5883,-10.2138,142.323][0.0874176,-0.995856,-0.0250763][0.304643,0.869961,0.379208][-13.1741,-9.57428,125.447][0.0787764,-0.995461,-0.0534097][0.313285,0.833623,0.355465][-5.72283,-8.97958,125.315][0.166613,-0.985297,-0.0378254][0.358818,0.833338,0.333386][-0.0756245,-7.48224,124.968][0.526506,-0.85009,-0.0117587][0.393327,0.83259,0.277794][-0.638195,-7.81836,142.263][0.524524,-0.851361,0.00764241][0.389889,0.869831,0.290273][-6.6749,-9.46796,142.33][0.181332,-0.983373,-0.00984273][0.353,0.869975,0.351518][-6.6749,-9.46796,142.33][0.181332,-0.983373,-0.00984273][0.353,0.869975,0.351518][-5.72283,-8.97958,125.315][0.166613,-0.985297,-0.0378254][0.358818,0.833338,0.333386][-0.0756245,-7.48224,124.968][0.526506,-0.85009,-0.0117587][0.393327,0.83259,0.277794][-7.46206,-9.54442,159.492][0.217052,-0.976147,0.00512151][0.34819,0.906928,0.354357][-6.6749,-9.46796,142.33][0.181332,-0.983373,-0.00984273][0.353,0.869975,0.351518][-0.638195,-7.81836,142.263][0.524524,-0.851361,0.00764241][0.389889,0.869831,0.290273][-0.638195,-7.81836,142.263][0.524524,-0.851361,0.00764241][0.389889,0.869831,0.290273][-0.848963,-7.50033,159.589][0.528198,-0.848631,0.0288437][0.388601,0.907138,0.278466][-7.46206,-9.54442,159.492][0.217052,-0.976147,0.00512151][0.34819,0.906928,0.354357][-34.6108,-10.6836,159.779][-0.236289,-0.969216,-0.0692001][0.182289,0.907547,0.396651][-32.3197,-10.0483,141.992][-0.235546,-0.969895,-0.0618205][0.19629,0.869248,0.373066][-23.2092,-10.9127,142.215][-0.00530885,-0.999283,-0.0374865][0.251962,0.869729,0.405155][-23.2092,-10.9127,142.215][-0.00530885,-0.999283,-0.0374865][0.251962,0.869729,0.405155][-25.0728,-11.534,159.687][0.00160454,-0.999189,-0.040236][0.240574,0.907349,0.428223][-34.6108,-10.6836,159.779][-0.236289,-0.969216,-0.0692001][0.182289,0.907547,0.396651][-21.3861,-10.2871,125.104][0.00662745,-0.997824,-0.0655976][0.263103,0.832883,0.38193][-23.2092,-10.9127,142.215][-0.00530885,-0.999283,-0.0374865][0.251962,0.869729,0.405155][-32.3197,-10.0483,141.992][-0.235546,-0.969895,-0.0618205][0.19629,0.869248,0.373066][-32.3197,-10.0483,141.992][-0.235546,-0.969895,-0.0618205][0.19629,0.869248,0.373066][-30.0876,-9.57428,124.663][-0.228831,-0.969624,-0.0863983][0.20993,0.831935,0.355465][-21.3861,-10.2871,125.104][0.00662745,-0.997824,-0.0655976][0.263103,0.832883,0.38193][-13.1741,-9.57428,125.447][0.0787764,-0.995461,-0.0534097][0.313285,0.833623,0.355465][-14.5883,-10.2138,142.323][0.0874176,-0.995856,-0.0250763][0.304643,0.869961,0.379208][-23.2092,-10.9127,142.215][-0.00530885,-0.999283,-0.0374865][0.251962,0.869729,0.405155][-23.2092,-10.9127,142.215][-0.00530885,-0.999283,-0.0374865][0.251962,0.869729,0.405155][-21.3861,-10.2871,125.104][0.00662745,-0.997824,-0.0655976][0.263103,0.832883,0.38193][-13.1741,-9.57428,125.447][0.0787764,-0.995461,-0.0534097][0.313285,0.833623,0.355465][-25.0728,-11.534,159.687][0.00160454,-0.999189,-0.040236][0.240574,0.907349,0.428223][-23.2092,-10.9127,142.215][-0.00530885,-0.999283,-0.0374865][0.251962,0.869729,0.405155][-14.5883,-10.2138,142.323][0.0874176,-0.995856,-0.0250763][0.304643,0.869961,0.379208][-14.5883,-10.2138,142.323][0.0874176,-0.995856,-0.0250763][0.304643,0.869961,0.379208][-16.0244,-10.6836,159.462][0.112043,-0.993511,-0.0195362][0.295867,0.906864,0.396651][-25.0728,-11.534,159.687][0.00160454,-0.999189,-0.040236][0.240574,0.907349,0.428223][-39.2488,0.261095,196.726][0,0,1][0.156502,0.9854,-0.0096936][-39.3094,6.34945,196.726][0,0,1][0.156131,0.9854,-0.235736][-50.1552,0.26871,196.726][0,0,1][0.0941122,0.976886,-0.00997638][-39.37,12.4378,196.726][0,0,2.78172][0.155761,0.9854,-0.461779][-50.124,7.14096,196.726][0,0,3.04178][0.0943028,0.976886,-0.265123][-39.3094,6.34945,196.726][0,0,1][0.156131,0.9854,-0.235736][-61.0616,0.322024,196.726][0,0,0.562366][0.0368312,0.963264,-0.0119558][-50.1552,0.26871,196.726][0,0,1][0.0941122,0.976886,-0.00997638][-50.124,7.14096,196.726][0,0,3.04178][0.0943028,0.976886,-0.265123][-39.3094,6.34945,196.726][0,0,1][0.156131,0.9854,-0.235736][-50.124,7.14096,196.726][0,0,3.04178][0.0943028,0.976886,-0.265123][-50.1552,0.26871,196.726][0,0,1][0.0941122,0.976886,-0.00997638][-26.408,0.261093,90.4366][-0.236072,0.0280944,-0.971329][0.232415,0.758236,-0.00969291][-34.354,0.261092,93.6649][-0.47712,0.0583948,-0.876896][0.183859,0.765188,-0.00969293][-26.0549,3.39235,90.5259][-0.231135,0.0570952,-0.971245][0.234573,0.758429,-0.125947][-42.201,0.261091,98.9574][-0.219344,0.0547278,-0.325211][0.135907,0.776584,-0.00969297][-33.2464,4.56657,93.6424][-1.31708,0.315286,-2.66756][0.190627,0.765139,-0.169543][-34.354,0.261092,93.6649][-0.47712,0.0583948,-0.876896][0.183859,0.765188,-0.00969293][-25.7018,6.52361,90.6152][-0.480532,0.0867485,-1.14154][0.23673,0.758621,-0.242202][-26.0549,3.39235,90.5259][-0.231135,0.0570952,-0.971245][0.234573,0.758429,-0.125947][-33.2464,4.56657,93.6424][-1.31708,0.315286,-2.66756][0.190627,0.765139,-0.169543][-34.354,0.261092,93.6649][-0.47712,0.0583948,-0.876896][0.183859,0.765188,-0.00969293][-33.2464,4.56657,93.6424][-1.31708,0.315286,-2.66756][0.190627,0.765139,-0.169543][-26.0549,3.39235,90.5259][-0.231135,0.0570952,-0.971245][0.234573,0.758429,-0.125947][-18.068,0.261099,196.726][0,0,1][0.283379,0.987103,-0.0096936][-7.94258,0.2611,196.726][0,0,1][0.345253,0.987103,-0.0096936][-8.93077,5.54458,196.726][0,0,1][0.339215,0.987103,-0.205854][-8.93077,5.54458,196.726][0,0,1][0.339215,0.987103,-0.205854][-18.6075,6.31899,196.726][0,0,1][0.280082,0.987103,-0.234605][-18.068,0.261099,196.726][0,0,1][0.283379,0.987103,-0.0096936][-0.479803,4.10716,196.726][0,0,2.9569][0.390857,0.987103,-0.152487][-8.93077,5.54458,196.726][0,0,1][0.339215,0.987103,-0.205854][-7.94258,0.2611,196.726][0,0,1][0.345253,0.987103,-0.0096936][-7.94258,0.2611,196.726][0,0,1][0.345253,0.987103,-0.0096936][1.8728,0.261102,196.726][0,0,1.02182][0.405233,0.987103,-0.0096936][-0.479803,4.10716,196.726][0,0,2.9569][0.390857,0.987103,-0.152487][-3.56894,7.53366,196.726][0,0,2.73489][0.37198,0.987103,-0.279702][-10.2872,10.6183,196.726][0,0,2.90711][0.330926,0.987103,-0.394225][-8.93077,5.54458,196.726][0,0,1][0.339215,0.987103,-0.205854][-8.93077,5.54458,196.726][0,0,1][0.339215,0.987103,-0.205854][-0.479803,4.10716,196.726][0,0,2.9569][0.390857,0.987103,-0.152487][-3.56894,7.53366,196.726][0,0,2.73489][0.37198,0.987103,-0.279702][-18.6075,6.31899,196.726][0,0,1][0.280082,0.987103,-0.234605][-8.93077,5.54458,196.726][0,0,1][0.339215,0.987103,-0.205854][-10.2872,10.6183,196.726][0,0,2.90711][0.330926,0.987103,-0.394225][-10.2872,10.6183,196.726][0,0,2.90711][0.330926,0.987103,-0.394225][-19.1471,12.3769,196.726][0,0,1.28602][0.276785,0.987103,-0.459517][-18.6075,6.31899,196.726][0,0,1][0.280082,0.987103,-0.234605][1.8728,0.261102,196.726][0,0,1.02182][0.405233,0.987103,-0.0096936][2.00801,0.261101,178.27][0.99106,0.13175,0.0210345][0.406059,0.947363,-0.00969348][0.845118,4.24744,178.208][0.862279,0.503902,0.050571][0.398953,0.947228,-0.157695][0.845118,4.24744,178.208][0.862279,0.503902,0.050571][0.398953,0.947228,-0.157695][-0.479803,4.10716,196.726][0,0,2.9569][0.390857,0.987103,-0.152487][1.8728,0.261102,196.726][0,0,1.02182][0.405233,0.987103,-0.0096936][2.17004,4.38772,159.689][0.924962,0.379266,0.0245375][0.40705,0.907354,-0.162902][0.845118,4.24744,178.208][0.862279,0.503902,0.050571][0.398953,0.947228,-0.157695][2.00801,0.261101,178.27][0.99106,0.13175,0.0210345][0.406059,0.947363,-0.00969348][2.00801,0.261101,178.27][0.99106,0.13175,0.0210345][0.406059,0.947363,-0.00969348][2.14323,0.261099,159.814][0.999968,-0.00313777,0.00732589][0.406886,0.907623,-0.00969333][2.17004,4.38772,159.689][0.924962,0.379266,0.0245375][0.40705,0.907354,-0.162902][-0.848967,7.50034,159.589][0.528197,0.848632,0.0288436][0.388601,0.907138,-0.278465][-2.20895,7.517,178.158][0.554114,0.83166,0.0360433][0.38029,0.94712,-0.279084][0.845118,4.24744,178.208][0.862279,0.503902,0.050571][0.398953,0.947228,-0.157695][0.845118,4.24744,178.208][0.862279,0.503902,0.050571][0.398953,0.947228,-0.157695][2.17004,4.38772,159.689][0.924962,0.379266,0.0245375][0.40705,0.907354,-0.162902][-0.848967,7.50034,159.589][0.528197,0.848632,0.0288436][0.388601,0.907138,-0.278465][-0.479803,4.10716,196.726][0,0,2.9569][0.390857,0.987103,-0.152487][0.845118,4.24744,178.208][0.862279,0.503902,0.050571][0.398953,0.947228,-0.157695][-2.20895,7.517,178.158][0.554114,0.83166,0.0360433][0.38029,0.94712,-0.279084][-2.20895,7.517,178.158][0.554114,0.83166,0.0360433][0.38029,0.94712,-0.279084][-3.56894,7.53366,196.726][0,0,2.73489][0.37198,0.987103,-0.279702][-0.479803,4.10716,196.726][0,0,2.9569][0.390857,0.987103,-0.152487][-3.56894,7.53366,196.726][0,0,2.73489][0.37198,0.987103,-0.279702][-2.20895,7.517,178.158][0.554114,0.83166,0.0360433][0.38029,0.94712,-0.279084][-8.85763,10.0449,177.906][0.261239,0.96526,-0.00530809][0.339662,0.946578,-0.372936][-8.85763,10.0449,177.906][0.261239,0.96526,-0.00530809][0.339662,0.946578,-0.372936][-10.2872,10.6183,196.726][0,0,2.90711][0.330926,0.987103,-0.394225][-3.56894,7.53366,196.726][0,0,2.73489][0.37198,0.987103,-0.279702][-7.46206,9.54443,159.492][0.217052,0.976147,0.00512141][0.34819,0.906928,-0.354356][-8.85763,10.0449,177.906][0.261239,0.96526,-0.00530809][0.339662,0.946578,-0.372936][-2.20895,7.517,178.158][0.554114,0.83166,0.0360433][0.38029,0.94712,-0.279084][-2.20895,7.517,178.158][0.554114,0.83166,0.0360433][0.38029,0.94712,-0.279084][-0.848967,7.50034,159.589][0.528197,0.848632,0.0288436][0.388601,0.907138,-0.278465][-7.46206,9.54443,159.492][0.217052,0.976147,0.00512141][0.34819,0.906928,-0.354356][-16.0244,10.6836,159.462][0.112043,0.993511,-0.0195364][0.295867,0.906864,-0.396651][-17.5517,11.4573,177.688][0.133049,0.990608,-0.0315421][0.286534,0.946109,-0.425374][-8.85763,10.0449,177.906][0.261239,0.96526,-0.00530809][0.339662,0.946578,-0.372936][-8.85763,10.0449,177.906][0.261239,0.96526,-0.00530809][0.339662,0.946578,-0.372936][-7.46206,9.54443,159.492][0.217052,0.976147,0.00512141][0.34819,0.906928,-0.354356][-16.0244,10.6836,159.462][0.112043,0.993511,-0.0195364][0.295867,0.906864,-0.396651][-10.2872,10.6183,196.726][0,0,2.90711][0.330926,0.987103,-0.394225][-8.85763,10.0449,177.906][0.261239,0.96526,-0.00530809][0.339662,0.946578,-0.372936][-17.5517,11.4573,177.688][0.133049,0.990608,-0.0315421][0.286534,0.946109,-0.425374][-17.5517,11.4573,177.688][0.133049,0.990608,-0.0315421][0.286534,0.946109,-0.425374][-19.1471,12.3769,196.726][0,0,1.28602][0.276785,0.987103,-0.459517][-10.2872,10.6183,196.726][0,0,2.90711][0.330926,0.987103,-0.394225][-18.068,0.261099,196.726][0,0,1][0.283379,0.987103,-0.0096936][-18.6075,6.31899,196.726][0,0,1][0.280082,0.987103,-0.234605][-28.6899,6.86419,196.726][0,0,1][0.218471,0.987103,-0.254847][-28.6899,6.86419,196.726][0,0,1][0.218471,0.987103,-0.254847][-28.5034,0.261097,196.726][0,0,1][0.219611,0.987103,-0.0096936][-18.068,0.261099,196.726][0,0,1][0.283379,0.987103,-0.0096936][-28.8765,13.4673,196.726][0,0,2.93219][0.217331,0.987103,-0.5][-28.6899,6.86419,196.726][0,0,1][0.218471,0.987103,-0.254847][-18.6075,6.31899,196.726][0,0,1][0.280082,0.987103,-0.234605][-18.6075,6.31899,196.726][0,0,1][0.280082,0.987103,-0.234605][-19.1471,12.3769,196.726][0,0,1.28602][0.276785,0.987103,-0.459517][-28.8765,13.4673,196.726][0,0,2.93219][0.217331,0.987103,-0.5][-39.37,12.4378,196.726][0,0,2.78172][0.155761,0.9854,-0.461779][-39.3094,6.34945,196.726][0,0,1][0.156131,0.9854,-0.235736][-28.6899,6.86419,196.726][0,0,1][0.218471,0.987103,-0.254847][-28.6899,6.86419,196.726][0,0,1][0.218471,0.987103,-0.254847][-28.8765,13.4673,196.726][0,0,2.93219][0.217331,0.987103,-0.5][-39.37,12.4378,196.726][0,0,2.78172][0.155761,0.9854,-0.461779][-28.5034,0.261097,196.726][0,0,1][0.219611,0.987103,-0.0096936][-28.6899,6.86419,196.726][0,0,1][0.218471,0.987103,-0.254847][-39.3094,6.34945,196.726][0,0,1][0.156131,0.9854,-0.235736][-39.3094,6.34945,196.726][0,0,1][0.156131,0.9854,-0.235736][-39.2488,0.261095,196.726][0,0,1][0.156502,0.9854,-0.0096936][-28.5034,0.261097,196.726][0,0,1][0.219611,0.987103,-0.0096936][-19.1471,12.3769,196.726][0,0,1.28602][0.276785,0.987103,-0.459517][-17.5517,11.4573,177.688][0.133049,0.990608,-0.0315421][0.286534,0.946109,-0.425374][-26.9429,12.4238,177.889][0.00474452,0.998733,-0.0501023][0.229147,0.946542,-0.46126][-26.9429,12.4238,177.889][0.00474452,0.998733,-0.0501023][0.229147,0.946542,-0.46126][-28.8765,13.4673,196.726][0,0,2.93219][0.217331,0.987103,-0.5][-19.1471,12.3769,196.726][0,0,1.28602][0.276785,0.987103,-0.459517][-25.0728,11.534,159.687][0.0016042,0.999189,-0.0402362][0.240574,0.907349,-0.428222][-26.9429,12.4238,177.889][0.00474452,0.998733,-0.0501023][0.229147,0.946542,-0.46126][-17.5517,11.4573,177.688][0.133049,0.990608,-0.0315421][0.286534,0.946109,-0.425374][-17.5517,11.4573,177.688][0.133049,0.990608,-0.0315421][0.286534,0.946109,-0.425374][-16.0244,10.6836,159.462][0.112043,0.993511,-0.0195364][0.295867,0.906864,-0.396651][-25.0728,11.534,159.687][0.0016042,0.999189,-0.0402362][0.240574,0.907349,-0.428222][-34.6108,10.6836,159.779][-0.236289,0.969215,-0.0692002][0.182289,0.907547,-0.396651][-36.9609,11.4801,178.024][-0.252323,0.964725,-0.0750933][0.167928,0.946832,-0.426222][-26.9429,12.4238,177.889][0.00474452,0.998733,-0.0501023][0.229147,0.946542,-0.46126][-26.9429,12.4238,177.889][0.00474452,0.998733,-0.0501023][0.229147,0.946542,-0.46126][-25.0728,11.534,159.687][0.0016042,0.999189,-0.0402362][0.240574,0.907349,-0.428222][-34.6108,10.6836,159.779][-0.236289,0.969215,-0.0692002][0.182289,0.907547,-0.396651][-28.8765,13.4673,196.726][0,0,2.93219][0.217331,0.987103,-0.5][-26.9429,12.4238,177.889][0.00474452,0.998733,-0.0501023][0.229147,0.946542,-0.46126][-36.9609,11.4801,178.024][-0.252323,0.964725,-0.0750933][0.167928,0.946832,-0.426222][-36.9609,11.4801,178.024][-0.252323,0.964725,-0.0750933][0.167928,0.946832,-0.426222][-39.37,12.4378,196.726][0,0,2.78172][0.155761,0.9854,-0.461779][-28.8765,13.4673,196.726][0,0,2.93219][0.217331,0.987103,-0.5][-39.37,12.4378,196.726][0,0,2.78172][0.155761,0.9854,-0.461779][-36.9609,11.4801,178.024][-0.252323,0.964725,-0.0750933][0.167928,0.946832,-0.426222][-47.0943,6.91776,177.934][-0.478493,0.873277,-0.0918302][0.106005,0.94664,-0.256836][-47.0943,6.91776,177.934][-0.478493,0.873277,-0.0918302][0.106005,0.94664,-0.256836][-50.124,7.14096,196.726][0,0,3.04178][0.0943028,0.976886,-0.265123][-39.37,12.4378,196.726][0,0,2.78172][0.155761,0.9854,-0.461779][-44.0941,6.77517,159.372][-0.469262,0.878269,-0.0918509][0.124339,0.90667,-0.251542][-47.0943,6.91776,177.934][-0.478493,0.873277,-0.0918302][0.106005,0.94664,-0.256836][-36.9609,11.4801,178.024][-0.252323,0.964725,-0.0750933][0.167928,0.946832,-0.426222][-36.9609,11.4801,178.024][-0.252323,0.964725,-0.0750933][0.167928,0.946832,-0.426222][-34.6108,10.6836,159.779][-0.236289,0.969215,-0.0692002][0.182289,0.907547,-0.396651][-44.0941,6.77517,159.372][-0.469262,0.878269,-0.0918509][0.124339,0.90667,-0.251542][-53.7041,0.261092,158.587][-1.72652,2.60385,-0.321054][0.0656144,0.90498,-0.00969336][-57.3828,0.291558,177.656][-1.67959,2.63565,-0.319189][0.0431343,0.946041,-0.0108246][-47.0943,6.91776,177.934][-0.478493,0.873277,-0.0918302][0.106005,0.94664,-0.256836][-47.0943,6.91776,177.934][-0.478493,0.873277,-0.0918302][0.106005,0.94664,-0.256836][-44.0941,6.77517,159.372][-0.469262,0.878269,-0.0918509][0.124339,0.90667,-0.251542][-53.7041,0.261092,158.587][-1.72652,2.60385,-0.321054][0.0656144,0.90498,-0.00969336][-50.124,7.14096,196.726][0,0,3.04178][0.0943028,0.976886,-0.265123][-47.0943,6.91776,177.934][-0.478493,0.873277,-0.0918302][0.106005,0.94664,-0.256836][-57.3828,0.291558,177.656][-1.67959,2.63565,-0.319189][0.0431343,0.946041,-0.0108246][-57.3828,0.291558,177.656][-1.67959,2.63565,-0.319189][0.0431343,0.946041,-0.0108246][-61.0616,0.322024,196.726][0,0,0.562366][0.0368312,0.963264,-0.0119558][-50.124,7.14096,196.726][0,0,3.04178][0.0943028,0.976886,-0.265123][-53.7041,0.261092,158.587][-1.72652,2.60385,-0.321054][0.0656144,0.90498,-0.00969336][-44.0941,6.77517,159.372][-0.469262,0.878269,-0.0918509][0.124339,0.90667,-0.251542][-41.3235,6.3882,141.798][-0.466562,0.879794,-0.0910083][0.14127,0.86883,-0.237175][-41.3235,6.3882,141.798][-0.466562,0.879794,-0.0910083][0.14127,0.86883,-0.237175][-50.4033,0.261091,141.476][-1.74263,2.59284,-0.331694][0.0857848,0.868137,-0.00969324][-53.7041,0.261092,158.587][-1.72652,2.60385,-0.321054][0.0656144,0.90498,-0.00969336][-32.3197,10.0483,141.992][-0.235546,0.969895,-0.0618205][0.19629,0.869248,-0.373065][-41.3235,6.3882,141.798][-0.466562,0.879794,-0.0910083][0.14127,0.86883,-0.237175][-44.0941,6.77517,159.372][-0.469262,0.878269,-0.0918509][0.124339,0.90667,-0.251542][-44.0941,6.77517,159.372][-0.469262,0.878269,-0.0918509][0.124339,0.90667,-0.251542][-34.6108,10.6836,159.779][-0.236289,0.969215,-0.0692002][0.182289,0.907547,-0.396651][-32.3197,10.0483,141.992][-0.235546,0.969895,-0.0618205][0.19629,0.869248,-0.373065][-30.0876,9.57428,124.663][-0.228832,0.969624,-0.0863984][0.20993,0.831935,-0.355464][-38.5824,6.08184,124.454][-0.467134,0.877226,-0.110729][0.15802,0.831484,-0.2258][-41.3235,6.3882,141.798][-0.466562,0.879794,-0.0910083][0.14127,0.86883,-0.237175][-41.3235,6.3882,141.798][-0.466562,0.879794,-0.0910083][0.14127,0.86883,-0.237175][-32.3197,10.0483,141.992][-0.235546,0.969895,-0.0618205][0.19629,0.869248,-0.373065][-30.0876,9.57428,124.663][-0.228832,0.969624,-0.0863984][0.20993,0.831935,-0.355464][-50.4033,0.261091,141.476][-1.74263,2.59284,-0.331694][0.0857848,0.868137,-0.00969324][-41.3235,6.3882,141.798][-0.466562,0.879794,-0.0910083][0.14127,0.86883,-0.237175][-38.5824,6.08184,124.454][-0.467134,0.877226,-0.110729][0.15802,0.831484,-0.2258][-38.5824,6.08184,124.454][-0.467134,0.877226,-0.110729][0.15802,0.831484,-0.2258][-47.1025,0.261091,124.366][-1.73805,2.59173,-0.36207][0.105955,0.831294,-0.00969313][-50.4033,0.261091,141.476][-1.74263,2.59284,-0.331694][0.0857848,0.868137,-0.00969324][-47.1025,0.261091,124.366][-1.73805,2.59173,-0.36207][0.105955,0.831294,-0.00969313][-38.5824,6.08184,124.454][-0.467134,0.877226,-0.110729][0.15802,0.831484,-0.2258][-35.9144,5.3242,109.048][-0.433938,0.893034,-0.119116][0.174323,0.798312,-0.197671][-35.9144,5.3242,109.048][-0.433938,0.893034,-0.119116][0.174323,0.798312,-0.197671][-44.6518,0.261091,111.662][-1.62216,2.66926,-0.335618][0.120931,0.803939,-0.00969305][-47.1025,0.261091,124.366][-1.73805,2.59173,-0.36207][0.105955,0.831294,-0.00969313][-27.8947,8.04895,107.639][-0.206118,0.972104,-0.111937][0.22333,0.795278,-0.298833][-35.9144,5.3242,109.048][-0.433938,0.893034,-0.119116][0.174323,0.798312,-0.197671][-38.5824,6.08184,124.454][-0.467134,0.877226,-0.110729][0.15802,0.831484,-0.2258][-38.5824,6.08184,124.454][-0.467134,0.877226,-0.110729][0.15802,0.831484,-0.2258][-30.0876,9.57428,124.663][-0.228832,0.969624,-0.0863984][0.20993,0.831935,-0.355464][-27.8947,8.04895,107.639][-0.206118,0.972104,-0.111937][0.22333,0.795278,-0.298833][-25.7018,6.52361,90.6152][-0.480532,0.0867485,-1.14154][0.23673,0.758621,-0.242202][-33.2464,4.56657,93.6424][-1.31708,0.315286,-2.66756][0.190627,0.765139,-0.169543][-35.9144,5.3242,109.048][-0.433938,0.893034,-0.119116][0.174323,0.798312,-0.197671][-35.9144,5.3242,109.048][-0.433938,0.893034,-0.119116][0.174323,0.798312,-0.197671][-27.8947,8.04895,107.639][-0.206118,0.972104,-0.111937][0.22333,0.795278,-0.298833][-25.7018,6.52361,90.6152][-0.480532,0.0867485,-1.14154][0.23673,0.758621,-0.242202][-44.6518,0.261091,111.662][-1.62216,2.66926,-0.335618][0.120931,0.803939,-0.00969305][-35.9144,5.3242,109.048][-0.433938,0.893034,-0.119116][0.174323,0.798312,-0.197671][-33.2464,4.56657,93.6424][-1.31708,0.315286,-2.66756][0.190627,0.765139,-0.169543][-33.2464,4.56657,93.6424][-1.31708,0.315286,-2.66756][0.190627,0.765139,-0.169543][-42.201,0.261091,98.9574][-0.219344,0.0547278,-0.325211][0.135907,0.776584,-0.00969297][-44.6518,0.261091,111.662][-1.62216,2.66926,-0.335618][0.120931,0.803939,-0.00969305][-26.408,0.261093,90.4366][-0.236072,0.0280944,-0.971329][0.232415,0.758236,-0.00969291][-26.0549,3.39235,90.5259][-0.231135,0.0570952,-0.971245][0.234573,0.758429,-0.125947][-18.7477,3.78376,89.9743][-0.0293687,0.0614735,-0.997677][0.279226,0.757241,-0.140479][-18.7477,3.78376,89.9743][-0.0293687,0.0614735,-0.997677][0.279226,0.757241,-0.140479][-18.1308,0.261094,89.7475][-0.0161184,0.0264534,-0.99952][0.282995,0.756753,-0.00969291][-26.408,0.261093,90.4366][-0.236072,0.0280944,-0.971329][0.232415,0.758236,-0.00969291][-19.3635,6.52361,90.1876][-0.122068,0.205052,-3.13498][0.275462,0.7577,-0.242202][-18.7477,3.78376,89.9743][-0.0293687,0.0614735,-0.997677][0.279226,0.757241,-0.140479][-26.0549,3.39235,90.5259][-0.231135,0.0570952,-0.971245][0.234573,0.758429,-0.125947][-26.0549,3.39235,90.5259][-0.231135,0.0570952,-0.971245][0.234573,0.758429,-0.125947][-25.7018,6.52361,90.6152][-0.480532,0.0867485,-1.14154][0.23673,0.758621,-0.242202][-19.3635,6.52361,90.1876][-0.122068,0.205052,-3.13498][0.275462,0.7577,-0.242202][-10.2273,6.52361,90.2811][0.0415396,0.0467311,-1.57076][0.331292,0.757902,-0.242202][-10.2242,4.17517,90.2406][0.0265043,0.0206759,-0.999435][0.331311,0.757814,-0.155011][-18.7477,3.78376,89.9743][-0.0293687,0.0614735,-0.997677][0.279226,0.757241,-0.140479][-18.7477,3.78376,89.9743][-0.0293687,0.0614735,-0.997677][0.279226,0.757241,-0.140479][-19.3635,6.52361,90.1876][-0.122068,0.205052,-3.13498][0.275462,0.7577,-0.242202][-10.2273,6.52361,90.2811][0.0415396,0.0467311,-1.57076][0.331292,0.757902,-0.242202][-18.1308,0.261094,89.7475][-0.0161184,0.0264534,-0.99952][0.282995,0.756753,-0.00969291][-18.7477,3.78376,89.9743][-0.0293687,0.0614735,-0.997677][0.279226,0.757241,-0.140479][-10.2242,4.17517,90.2406][0.0265043,0.0206759,-0.999435][0.331311,0.757814,-0.155011][-10.2242,4.17517,90.2406][0.0265043,0.0206759,-0.999435][0.331311,0.757814,-0.155011][-10.2192,0.261095,90.173][0.0349269,0.00834308,-0.999355][0.331342,0.757669,-0.00969291][-18.1308,0.261094,89.7475][-0.0161184,0.0264534,-0.99952][0.282995,0.756753,-0.00969291][-25.7018,6.52361,90.6152][-0.480532,0.0867485,-1.14154][0.23673,0.758621,-0.242202][-27.8947,8.04895,107.639][-0.206118,0.972104,-0.111937][0.22333,0.795278,-0.298833][-20.3808,8.5267,107.718][-0.00864703,0.995098,-0.0985197][0.269246,0.795447,-0.31657][-20.3808,8.5267,107.718][-0.00864703,0.995098,-0.0985197][0.269246,0.795447,-0.31657][-19.3635,6.52361,90.1876][-0.122068,0.205052,-3.13498][0.275462,0.7577,-0.242202][-25.7018,6.52361,90.6152][-0.480532,0.0867485,-1.14154][0.23673,0.758621,-0.242202][-21.3861,10.2871,125.104][0.00662714,0.997824,-0.0655977][0.263103,0.832883,-0.38193][-20.3808,8.5267,107.718][-0.00864703,0.995098,-0.0985197][0.269246,0.795447,-0.31657][-27.8947,8.04895,107.639][-0.206118,0.972104,-0.111937][0.22333,0.795278,-0.298833][-27.8947,8.04895,107.639][-0.206118,0.972104,-0.111937][0.22333,0.795278,-0.298833][-30.0876,9.57428,124.663][-0.228832,0.969624,-0.0863984][0.20993,0.831935,-0.355464][-21.3861,10.2871,125.104][0.00662714,0.997824,-0.0655977][0.263103,0.832883,-0.38193][-13.1741,9.57429,125.447][0.0787762,0.995461,-0.0534097][0.313285,0.833623,-0.355464][-11.7127,8.29162,108.008][0.0376171,0.995851,-0.0828556][0.322215,0.796072,-0.307843][-20.3808,8.5267,107.718][-0.00864703,0.995098,-0.0985197][0.269246,0.795447,-0.31657][-20.3808,8.5267,107.718][-0.00864703,0.995098,-0.0985197][0.269246,0.795447,-0.31657][-21.3861,10.2871,125.104][0.00662714,0.997824,-0.0655977][0.263103,0.832883,-0.38193][-13.1741,9.57429,125.447][0.0787762,0.995461,-0.0534097][0.313285,0.833623,-0.355464][-19.3635,6.52361,90.1876][-0.122068,0.205052,-3.13498][0.275462,0.7577,-0.242202][-20.3808,8.5267,107.718][-0.00864703,0.995098,-0.0985197][0.269246,0.795447,-0.31657][-11.7127,8.29162,108.008][0.0376171,0.995851,-0.0828556][0.322215,0.796072,-0.307843][-11.7127,8.29162,108.008][0.0376171,0.995851,-0.0828556][0.322215,0.796072,-0.307843][-10.2273,6.52361,90.2811][0.0415396,0.0467311,-1.57076][0.331292,0.757902,-0.242202][-19.3635,6.52361,90.1876][-0.122068,0.205052,-3.13498][0.275462,0.7577,-0.242202][-10.2192,0.261095,90.173][0.0349269,0.00834308,-0.999355][0.331342,0.757669,-0.00969291][-10.2242,4.17517,90.2406][0.0265043,0.0206759,-0.999435][0.331311,0.757814,-0.155011][-3.51334,3.90408,90.3349][0.0209065,0.0142638,-0.99968][0.37232,0.758017,-0.144946][-3.51334,3.90408,90.3349][0.0209065,0.0142638,-0.99968][0.37232,0.758017,-0.144946][-3.36942,0.261096,90.2885][0.028952,0.00452508,-0.999571][0.373199,0.757918,-0.00969291][-10.2192,0.261095,90.173][0.0349269,0.00834308,-0.999355][0.331342,0.757669,-0.00969291][-4.09888,6.40672,90.3681][0.0495243,0.0504426,-2.91367][0.368741,0.758089,-0.237862][-3.51334,3.90408,90.3349][0.0209065,0.0142638,-0.99968][0.37232,0.758017,-0.144946][-10.2242,4.17517,90.2406][0.0265043,0.0206759,-0.999435][0.331311,0.757814,-0.155011][-10.2242,4.17517,90.2406][0.0265043,0.0206759,-0.999435][0.331311,0.757814,-0.155011][-10.2273,6.52361,90.2811][0.0415396,0.0467311,-1.57076][0.331292,0.757902,-0.242202][-4.09888,6.40672,90.3681][0.0495243,0.0504426,-2.91367][0.368741,0.758089,-0.237862][2.10493,4.84753,90.469][0.0552537,-0.02038,-2.17052][0.406652,0.758306,-0.179974][2.82036,2.91184,90.5187][0.0969511,-0.0332245,-2.72174][0.411024,0.758413,-0.108107][-3.51334,3.90408,90.3349][0.0209065,0.0142638,-0.99968][0.37232,0.758017,-0.144946][-3.51334,3.90408,90.3349][0.0209065,0.0142638,-0.99968][0.37232,0.758017,-0.144946][-4.09888,6.40672,90.3681][0.0495243,0.0504426,-2.91367][0.368741,0.758089,-0.237862][2.10493,4.84753,90.469][0.0552537,-0.02038,-2.17052][0.406652,0.758306,-0.179974][-3.36942,0.261096,90.2885][0.028952,0.00452508,-0.999571][0.373199,0.757918,-0.00969291][-3.51334,3.90408,90.3349][0.0209065,0.0142638,-0.99968][0.37232,0.758017,-0.144946][2.82036,2.91184,90.5187][0.0969511,-0.0332245,-2.72174][0.411024,0.758413,-0.108107][2.82036,2.91184,90.5187][0.0969511,-0.0332245,-2.72174][0.411024,0.758413,-0.108107][2.65053,0.261097,90.5691][0.0760357,-0.0358762,-1.63165][0.409986,0.758522,-0.00969291][-3.36942,0.261096,90.2885][0.028952,0.00452508,-0.999571][0.373199,0.757918,-0.00969291][-10.2273,6.52361,90.2811][0.0415396,0.0467311,-1.57076][0.331292,0.757902,-0.242202][-11.7127,8.29162,108.008][0.0376171,0.995851,-0.0828556][0.322215,0.796072,-0.307843][-5.00484,7.97803,107.906][0.14421,0.987278,-0.0669707][0.363205,0.795852,-0.2962][-5.00484,7.97803,107.906][0.14421,0.987278,-0.0669707][0.363205,0.795852,-0.2962][-4.09888,6.40672,90.3681][0.0495243,0.0504426,-2.91367][0.368741,0.758089,-0.237862][-10.2273,6.52361,90.2811][0.0415396,0.0467311,-1.57076][0.331292,0.757902,-0.242202][-5.72283,8.97959,125.315][0.166613,0.985297,-0.0378254][0.358818,0.833338,-0.333385][-5.00484,7.97803,107.906][0.14421,0.987278,-0.0669707][0.363205,0.795852,-0.2962][-11.7127,8.29162,108.008][0.0376171,0.995851,-0.0828556][0.322215,0.796072,-0.307843][-11.7127,8.29162,108.008][0.0376171,0.995851,-0.0828556][0.322215,0.796072,-0.307843][-13.1741,9.57429,125.447][0.0787762,0.995461,-0.0534097][0.313285,0.833623,-0.355464][-5.72283,8.97959,125.315][0.166613,0.985297,-0.0378254][0.358818,0.833338,-0.333385][-0.0756264,7.48225,124.968][0.526506,0.85009,-0.0117587][0.393327,0.83259,-0.277793][0.838751,6.49197,107.703][0.570914,0.820293,-0.0342976][0.398914,0.795415,-0.241027][-5.00484,7.97803,107.906][0.14421,0.987278,-0.0669707][0.363205,0.795852,-0.2962][-5.00484,7.97803,107.906][0.14421,0.987278,-0.0669707][0.363205,0.795852,-0.2962][-5.72283,8.97959,125.315][0.166613,0.985297,-0.0378254][0.358818,0.833338,-0.333385][-0.0756264,7.48225,124.968][0.526506,0.85009,-0.0117587][0.393327,0.83259,-0.277793][-4.09888,6.40672,90.3681][0.0495243,0.0504426,-2.91367][0.368741,0.758089,-0.237862][-5.00484,7.97803,107.906][0.14421,0.987278,-0.0669707][0.363205,0.795852,-0.2962][0.838751,6.49197,107.703][0.570914,0.820293,-0.0342976][0.398914,0.795415,-0.241027][0.838751,6.49197,107.703][0.570914,0.820293,-0.0342976][0.398914,0.795415,-0.241027][2.10493,4.84753,90.469][0.0552537,-0.02038,-2.17052][0.406652,0.758306,-0.179974][-4.09888,6.40672,90.3681][0.0495243,0.0504426,-2.91367][0.368741,0.758089,-0.237862][2.10493,4.84753,90.469][0.0552537,-0.02038,-2.17052][0.406652,0.758306,-0.179974][0.838751,6.49197,107.703][0.570914,0.820293,-0.0342976][0.398914,0.795415,-0.241027][2.56826,3.87586,107.53][0.960086,0.279682,0.00367014][0.409483,0.795043,-0.143899][2.56826,3.87586,107.53][0.960086,0.279682,0.00367014][0.409483,0.795043,-0.143899][2.82036,2.91184,90.5187][0.0969511,-0.0332245,-2.72174][0.411024,0.758413,-0.108107][2.10493,4.84753,90.469][0.0552537,-0.02038,-2.17052][0.406652,0.758306,-0.179974][2.49206,4.51281,124.557][0.940919,0.338529,0.00829663][0.409017,0.831706,-0.167547][2.56826,3.87586,107.53][0.960086,0.279682,0.00367014][0.409483,0.795043,-0.143899][0.838751,6.49197,107.703][0.570914,0.820293,-0.0342976][0.398914,0.795415,-0.241027][0.838751,6.49197,107.703][0.570914,0.820293,-0.0342976][0.398914,0.795415,-0.241027][-0.0756264,7.48225,124.968][0.526506,0.85009,-0.0117587][0.393327,0.83259,-0.277793][2.49206,4.51281,124.557][0.940919,0.338529,0.00829663][0.409017,0.831706,-0.167547][2.40537,0.261098,124.033][0.999923,-0.00936079,0.00818649][0.408488,0.830577,-0.00969313][2.52795,0.261097,107.301][0.999931,-0.00723385,0.00924894][0.409237,0.794549,-0.00969299][2.56826,3.87586,107.53][0.960086,0.279682,0.00367014][0.409483,0.795043,-0.143899][2.56826,3.87586,107.53][0.960086,0.279682,0.00367014][0.409483,0.795043,-0.143899][2.49206,4.51281,124.557][0.940919,0.338529,0.00829663][0.409017,0.831706,-0.167547][2.40537,0.261098,124.033][0.999923,-0.00936079,0.00818649][0.408488,0.830577,-0.00969313][2.82036,2.91184,90.5187][0.0969511,-0.0332245,-2.72174][0.411024,0.758413,-0.108107][2.56826,3.87586,107.53][0.960086,0.279682,0.00367014][0.409483,0.795043,-0.143899][2.52795,0.261097,107.301][0.999931,-0.00723385,0.00924894][0.409237,0.794549,-0.00969299][2.52795,0.261097,107.301][0.999931,-0.00723385,0.00924894][0.409237,0.794549,-0.00969299][2.65053,0.261097,90.5691][0.0760357,-0.0358762,-1.63165][0.409986,0.758522,-0.00969291][2.82036,2.91184,90.5187][0.0969511,-0.0332245,-2.72174][0.411024,0.758413,-0.108107][2.40537,0.261098,124.033][0.999923,-0.00936079,0.00818649][0.408488,0.830577,-0.00969313][2.49206,4.51281,124.557][0.940919,0.338529,0.00829663][0.409017,0.831706,-0.167547][2.2431,4.6138,142.116][0.931487,0.363626,0.0103925][0.407496,0.869514,-0.171296][2.2431,4.6138,142.116][0.931487,0.363626,0.0103925][0.407496,0.869514,-0.171296][2.2743,0.261099,141.923][0.999973,0.00297516,0.00668974][0.407687,0.8691,-0.00969325][2.40537,0.261098,124.033][0.999923,-0.00936079,0.00818649][0.408488,0.830577,-0.00969313][-0.638197,7.81837,142.263][0.524524,0.851361,0.00764236][0.389889,0.869831,-0.290273][2.2431,4.6138,142.116][0.931487,0.363626,0.0103925][0.407496,0.869514,-0.171296][2.49206,4.51281,124.557][0.940919,0.338529,0.00829663][0.409017,0.831706,-0.167547][2.49206,4.51281,124.557][0.940919,0.338529,0.00829663][0.409017,0.831706,-0.167547][-0.0756264,7.48225,124.968][0.526506,0.85009,-0.0117587][0.393327,0.83259,-0.277793][-0.638197,7.81837,142.263][0.524524,0.851361,0.00764236][0.389889,0.869831,-0.290273][-0.848967,7.50034,159.589][0.528197,0.848632,0.0288436][0.388601,0.907138,-0.278465][2.17004,4.38772,159.689][0.924962,0.379266,0.0245375][0.40705,0.907354,-0.162902][2.2431,4.6138,142.116][0.931487,0.363626,0.0103925][0.407496,0.869514,-0.171296][2.2431,4.6138,142.116][0.931487,0.363626,0.0103925][0.407496,0.869514,-0.171296][-0.638197,7.81837,142.263][0.524524,0.851361,0.00764236][0.389889,0.869831,-0.290273][-0.848967,7.50034,159.589][0.528197,0.848632,0.0288436][0.388601,0.907138,-0.278465][2.2743,0.261099,141.923][0.999973,0.00297516,0.00668974][0.407687,0.8691,-0.00969325][2.2431,4.6138,142.116][0.931487,0.363626,0.0103925][0.407496,0.869514,-0.171296][2.17004,4.38772,159.689][0.924962,0.379266,0.0245375][0.40705,0.907354,-0.162902][2.17004,4.38772,159.689][0.924962,0.379266,0.0245375][0.40705,0.907354,-0.162902][2.14323,0.261099,159.814][0.999968,-0.00313777,0.00732589][0.406886,0.907623,-0.00969333][2.2743,0.261099,141.923][0.999973,0.00297516,0.00668974][0.407687,0.8691,-0.00969325][-16.0244,10.6836,159.462][0.112043,0.993511,-0.0195364][0.295867,0.906864,-0.396651][-7.46206,9.54443,159.492][0.217052,0.976147,0.00512141][0.34819,0.906928,-0.354356][-6.6749,9.46797,142.33][0.181331,0.983373,-0.0098428][0.353,0.869975,-0.351517][-6.6749,9.46797,142.33][0.181331,0.983373,-0.0098428][0.353,0.869975,-0.351517][-14.5883,10.2138,142.323][0.0874173,0.995856,-0.0250763][0.304643,0.869961,-0.379207][-16.0244,10.6836,159.462][0.112043,0.993511,-0.0195364][0.295867,0.906864,-0.396651][-0.638197,7.81837,142.263][0.524524,0.851361,0.00764236][0.389889,0.869831,-0.290273][-6.6749,9.46797,142.33][0.181331,0.983373,-0.0098428][0.353,0.869975,-0.351517][-7.46206,9.54443,159.492][0.217052,0.976147,0.00512141][0.34819,0.906928,-0.354356][-7.46206,9.54443,159.492][0.217052,0.976147,0.00512141][0.34819,0.906928,-0.354356][-0.848967,7.50034,159.589][0.528197,0.848632,0.0288436][0.388601,0.907138,-0.278465][-0.638197,7.81837,142.263][0.524524,0.851361,0.00764236][0.389889,0.869831,-0.290273][-0.0756264,7.48225,124.968][0.526506,0.85009,-0.0117587][0.393327,0.83259,-0.277793][-5.72283,8.97959,125.315][0.166613,0.985297,-0.0378254][0.358818,0.833338,-0.333385][-6.6749,9.46797,142.33][0.181331,0.983373,-0.0098428][0.353,0.869975,-0.351517][-6.6749,9.46797,142.33][0.181331,0.983373,-0.0098428][0.353,0.869975,-0.351517][-0.638197,7.81837,142.263][0.524524,0.851361,0.00764236][0.389889,0.869831,-0.290273][-0.0756264,7.48225,124.968][0.526506,0.85009,-0.0117587][0.393327,0.83259,-0.277793][-14.5883,10.2138,142.323][0.0874173,0.995856,-0.0250763][0.304643,0.869961,-0.379207][-6.6749,9.46797,142.33][0.181331,0.983373,-0.0098428][0.353,0.869975,-0.351517][-5.72283,8.97959,125.315][0.166613,0.985297,-0.0378254][0.358818,0.833338,-0.333385][-5.72283,8.97959,125.315][0.166613,0.985297,-0.0378254][0.358818,0.833338,-0.333385][-13.1741,9.57429,125.447][0.0787762,0.995461,-0.0534097][0.313285,0.833623,-0.355464][-14.5883,10.2138,142.323][0.0874173,0.995856,-0.0250763][0.304643,0.869961,-0.379207][-34.6108,10.6836,159.779][-0.236289,0.969215,-0.0692002][0.182289,0.907547,-0.396651][-25.0728,11.534,159.687][0.0016042,0.999189,-0.0402362][0.240574,0.907349,-0.428222][-23.2092,10.9127,142.215][-0.00530899,0.999283,-0.0374865][0.251962,0.869729,-0.405155][-23.2092,10.9127,142.215][-0.00530899,0.999283,-0.0374865][0.251962,0.869729,-0.405155][-32.3197,10.0483,141.992][-0.235546,0.969895,-0.0618205][0.19629,0.869248,-0.373065][-34.6108,10.6836,159.779][-0.236289,0.969215,-0.0692002][0.182289,0.907547,-0.396651][-14.5883,10.2138,142.323][0.0874173,0.995856,-0.0250763][0.304643,0.869961,-0.379207][-23.2092,10.9127,142.215][-0.00530899,0.999283,-0.0374865][0.251962,0.869729,-0.405155][-25.0728,11.534,159.687][0.0016042,0.999189,-0.0402362][0.240574,0.907349,-0.428222][-25.0728,11.534,159.687][0.0016042,0.999189,-0.0402362][0.240574,0.907349,-0.428222][-16.0244,10.6836,159.462][0.112043,0.993511,-0.0195364][0.295867,0.906864,-0.396651][-14.5883,10.2138,142.323][0.0874173,0.995856,-0.0250763][0.304643,0.869961,-0.379207][-13.1741,9.57429,125.447][0.0787762,0.995461,-0.0534097][0.313285,0.833623,-0.355464][-21.3861,10.2871,125.104][0.00662714,0.997824,-0.0655977][0.263103,0.832883,-0.38193][-23.2092,10.9127,142.215][-0.00530899,0.999283,-0.0374865][0.251962,0.869729,-0.405155][-23.2092,10.9127,142.215][-0.00530899,0.999283,-0.0374865][0.251962,0.869729,-0.405155][-14.5883,10.2138,142.323][0.0874173,0.995856,-0.0250763][0.304643,0.869961,-0.379207][-13.1741,9.57429,125.447][0.0787762,0.995461,-0.0534097][0.313285,0.833623,-0.355464][-32.3197,10.0483,141.992][-0.235546,0.969895,-0.0618205][0.19629,0.869248,-0.373065][-23.2092,10.9127,142.215][-0.00530899,0.999283,-0.0374865][0.251962,0.869729,-0.405155][-21.3861,10.2871,125.104][0.00662714,0.997824,-0.0655977][0.263103,0.832883,-0.38193][-21.3861,10.2871,125.104][0.00662714,0.997824,-0.0655977][0.263103,0.832883,-0.38193][-30.0876,9.57428,124.663][-0.228832,0.969624,-0.0863984][0.20993,0.831935,-0.355464][-32.3197,10.0483,141.992][-0.235546,0.969895,-0.0618205][0.19629,0.869248,-0.373065][-61.0616,-0.322026,196.726][0,0,0.562366][0.0368312,0.963264,0.0119558][-50.1552,-0.268709,196.726][0,0,1][0.0941122,0.976886,0.00997639][-50.1552,0.26871,196.726][0,0,1][0.0941122,0.976886,-0.00997638][-50.1552,0.26871,196.726][0,0,1][0.0941122,0.976886,-0.00997638][-61.0616,0.322024,196.726][0,0,0.562366][0.0368312,0.963264,-0.0119558][-61.0616,-0.322026,196.726][0,0,0.562366][0.0368312,0.963264,0.0119558][-50.1552,-0.268709,196.726][0,0,1][0.0941122,0.976886,0.00997639][-39.2488,-0.26109,196.726][0,0,1][0.156502,0.9854,0.00969362][-39.2488,0.261095,196.726][0,0,1][0.156502,0.9854,-0.0096936][-39.2488,0.261095,196.726][0,0,1][0.156502,0.9854,-0.0096936][-50.1552,0.26871,196.726][0,0,1][0.0941122,0.976886,-0.00997638][-50.1552,-0.268709,196.726][0,0,1][0.0941122,0.976886,0.00997639][-39.2488,-0.26109,196.726][0,0,1][0.156502,0.9854,0.00969362][-28.5034,-0.261089,196.726][0,0,1][0.219611,0.987103,0.00969362][-28.5034,0.261097,196.726][0,0,1][0.219611,0.987103,-0.0096936][-28.5034,0.261097,196.726][0,0,1][0.219611,0.987103,-0.0096936][-39.2488,0.261095,196.726][0,0,1][0.156502,0.9854,-0.0096936][-39.2488,-0.26109,196.726][0,0,1][0.156502,0.9854,0.00969362][-28.5034,-0.261089,196.726][0,0,1][0.219611,0.987103,0.00969362][-18.068,-0.261087,196.726][0,0,1][0.283379,0.987103,0.00969362][-18.068,0.261099,196.726][0,0,1][0.283379,0.987103,-0.0096936][-18.068,0.261099,196.726][0,0,1][0.283379,0.987103,-0.0096936][-28.5034,0.261097,196.726][0,0,1][0.219611,0.987103,-0.0096936][-28.5034,-0.261089,196.726][0,0,1][0.219611,0.987103,0.00969362][-18.068,-0.261087,196.726][0,0,1][0.283379,0.987103,0.00969362][-7.94258,-0.261086,196.726][0,0,1][0.345253,0.987103,0.00969362][-7.94258,0.2611,196.726][0,0,1][0.345253,0.987103,-0.0096936][-7.94258,0.2611,196.726][0,0,1][0.345253,0.987103,-0.0096936][-18.068,0.261099,196.726][0,0,1][0.283379,0.987103,-0.0096936][-18.068,-0.261087,196.726][0,0,1][0.283379,0.987103,0.00969362][-7.94258,-0.261086,196.726][0,0,1][0.345253,0.987103,0.00969362][1.8728,-0.261084,196.726][0,0,1.02182][0.405233,0.987103,0.00969362][1.8728,0.261102,196.726][0,0,1.02182][0.405233,0.987103,-0.0096936][1.8728,0.261102,196.726][0,0,1.02182][0.405233,0.987103,-0.0096936][-7.94258,0.2611,196.726][0,0,1][0.345253,0.987103,-0.0096936][-7.94258,-0.261086,196.726][0,0,1][0.345253,0.987103,0.00969362][1.8728,-0.261084,196.726][0,0,1.02182][0.405233,0.987103,0.00969362][2.00801,-0.261085,178.27][0.99106,-0.13175,0.0210345][0.406059,0.947363,0.00969374][2.00801,0.261101,178.27][0.99106,0.13175,0.0210345][0.406059,0.947363,-0.00969348][2.00801,0.261101,178.27][0.99106,0.13175,0.0210345][0.406059,0.947363,-0.00969348][1.8728,0.261102,196.726][0,0,1.02182][0.405233,0.987103,-0.0096936][1.8728,-0.261084,196.726][0,0,1.02182][0.405233,0.987103,0.00969362][2.00801,-0.261085,178.27][0.99106,-0.13175,0.0210345][0.406059,0.947363,0.00969374][2.14323,-0.261086,159.814][0.999968,0.00313779,0.00732592][0.406886,0.907623,0.00969386][2.14323,0.261099,159.814][0.999968,-0.00313777,0.00732589][0.406886,0.907623,-0.00969333][2.14323,0.261099,159.814][0.999968,-0.00313777,0.00732589][0.406886,0.907623,-0.00969333][2.00801,0.261101,178.27][0.99106,0.13175,0.0210345][0.406059,0.947363,-0.00969348][2.00801,-0.261085,178.27][0.99106,-0.13175,0.0210345][0.406059,0.947363,0.00969374][2.14323,-0.261086,159.814][0.999968,0.00313779,0.00732592][0.406886,0.907623,0.00969386][2.2743,-0.261087,141.923][0.999973,-0.00297174,0.00668972][0.407687,0.8691,0.00969397][2.2743,0.261099,141.923][0.999973,0.00297516,0.00668974][0.407687,0.8691,-0.00969325][2.2743,0.261099,141.923][0.999973,0.00297516,0.00668974][0.407687,0.8691,-0.00969325][2.14323,0.261099,159.814][0.999968,-0.00313777,0.00732589][0.406886,0.907623,-0.00969333][2.14323,-0.261086,159.814][0.999968,0.00313779,0.00732592][0.406886,0.907623,0.00969386][2.2743,-0.261087,141.923][0.999973,-0.00297174,0.00668972][0.407687,0.8691,0.00969397][2.40537,-0.261087,124.033][0.999923,0.00936097,0.00818648][0.408488,0.830577,0.00969409][2.40537,0.261098,124.033][0.999923,-0.00936079,0.00818649][0.408488,0.830577,-0.00969313][2.40537,0.261098,124.033][0.999923,-0.00936079,0.00818649][0.408488,0.830577,-0.00969313][2.2743,0.261099,141.923][0.999973,0.00297516,0.00668974][0.407687,0.8691,-0.00969325][2.2743,-0.261087,141.923][0.999973,-0.00297174,0.00668972][0.407687,0.8691,0.00969397][2.40537,-0.261087,124.033][0.999923,0.00936097,0.00818648][0.408488,0.830577,0.00969409][2.52795,-0.261088,107.301][0.999931,0.00723399,0.00924899][0.409237,0.794549,0.0096942][2.52795,0.261097,107.301][0.999931,-0.00723385,0.00924894][0.409237,0.794549,-0.00969299][2.52795,0.261097,107.301][0.999931,-0.00723385,0.00924894][0.409237,0.794549,-0.00969299][2.40537,0.261098,124.033][0.999923,-0.00936079,0.00818649][0.408488,0.830577,-0.00969313][2.40537,-0.261087,124.033][0.999923,0.00936097,0.00818648][0.408488,0.830577,0.00969409][2.52795,-0.261088,107.301][0.999931,0.00723399,0.00924899][0.409237,0.794549,0.0096942][2.65053,-0.261089,90.5691][0.0760358,0.0358764,-1.63165][0.409986,0.758522,0.00969431][2.65053,0.261097,90.5691][0.0760357,-0.0358762,-1.63165][0.409986,0.758522,-0.00969291][2.65053,0.261097,90.5691][0.0760357,-0.0358762,-1.63165][0.409986,0.758522,-0.00969291][2.52795,0.261097,107.301][0.999931,-0.00723385,0.00924894][0.409237,0.794549,-0.00969299][2.52795,-0.261088,107.301][0.999931,0.00723399,0.00924899][0.409237,0.794549,0.0096942][2.65053,-0.261089,90.5691][0.0760358,0.0358764,-1.63165][0.409986,0.758522,0.00969431][-3.36942,-0.26109,90.2885][0.0289521,-0.00452497,-0.999571][0.373199,0.757918,0.00969431][-3.36942,0.261096,90.2885][0.028952,0.00452508,-0.999571][0.373199,0.757918,-0.00969291][-3.36942,0.261096,90.2885][0.028952,0.00452508,-0.999571][0.373199,0.757918,-0.00969291][2.65053,0.261097,90.5691][0.0760357,-0.0358762,-1.63165][0.409986,0.758522,-0.00969291][2.65053,-0.261089,90.5691][0.0760358,0.0358764,-1.63165][0.409986,0.758522,0.00969431][-3.36942,-0.26109,90.2885][0.0289521,-0.00452497,-0.999571][0.373199,0.757918,0.00969431][-10.2192,-0.261091,90.173][0.0349268,-0.00834295,-0.999355][0.331342,0.757669,0.00969431][-10.2192,0.261095,90.173][0.0349269,0.00834308,-0.999355][0.331342,0.757669,-0.00969291][-10.2192,0.261095,90.173][0.0349269,0.00834308,-0.999355][0.331342,0.757669,-0.00969291][-3.36942,0.261096,90.2885][0.028952,0.00452508,-0.999571][0.373199,0.757918,-0.00969291][-3.36942,-0.26109,90.2885][0.0289521,-0.00452497,-0.999571][0.373199,0.757918,0.00969431][-10.2192,-0.261091,90.173][0.0349268,-0.00834295,-0.999355][0.331342,0.757669,0.00969431][-18.1308,-0.261092,89.7475][-0.0161184,-0.0264534,-0.99952][0.282995,0.756753,0.00969431][-18.1308,0.261094,89.7475][-0.0161184,0.0264534,-0.99952][0.282995,0.756753,-0.00969291][-18.1308,0.261094,89.7475][-0.0161184,0.0264534,-0.99952][0.282995,0.756753,-0.00969291][-10.2192,0.261095,90.173][0.0349269,0.00834308,-0.999355][0.331342,0.757669,-0.00969291][-10.2192,-0.261091,90.173][0.0349268,-0.00834295,-0.999355][0.331342,0.757669,0.00969431][-18.1308,-0.261092,89.7475][-0.0161184,-0.0264534,-0.99952][0.282995,0.756753,0.00969431][-26.408,-0.261093,90.4366][-0.236072,-0.0280943,-0.971329][0.232415,0.758236,0.00969431][-26.408,0.261093,90.4366][-0.236072,0.0280944,-0.971329][0.232415,0.758236,-0.00969291][-26.408,0.261093,90.4366][-0.236072,0.0280944,-0.971329][0.232415,0.758236,-0.00969291][-18.1308,0.261094,89.7475][-0.0161184,0.0264534,-0.99952][0.282995,0.756753,-0.00969291][-18.1308,-0.261092,89.7475][-0.0161184,-0.0264534,-0.99952][0.282995,0.756753,0.00969431][-26.408,-0.261093,90.4366][-0.236072,-0.0280943,-0.971329][0.232415,0.758236,0.00969431][-34.354,-0.261094,93.6649][-0.47712,-0.0583831,-0.876897][0.183859,0.765188,0.00969428][-34.354,0.261092,93.6649][-0.47712,0.0583948,-0.876896][0.183859,0.765188,-0.00969293][-34.354,0.261092,93.6649][-0.47712,0.0583948,-0.876896][0.183859,0.765188,-0.00969293][-26.408,0.261093,90.4366][-0.236072,0.0280944,-0.971329][0.232415,0.758236,-0.00969291][-26.408,-0.261093,90.4366][-0.236072,-0.0280943,-0.971329][0.232415,0.758236,0.00969431][-34.354,-0.261094,93.6649][-0.47712,-0.0583831,-0.876897][0.183859,0.765188,0.00969428][-42.201,-0.261095,98.9574][-0.219344,-0.0547286,-0.325211][0.135907,0.776584,0.00969425][-42.201,0.261091,98.9574][-0.219344,0.0547278,-0.325211][0.135907,0.776584,-0.00969297][-42.201,0.261091,98.9574][-0.219344,0.0547278,-0.325211][0.135907,0.776584,-0.00969297][-34.354,0.261092,93.6649][-0.47712,0.0583948,-0.876896][0.183859,0.765188,-0.00969293][-34.354,-0.261094,93.6649][-0.47712,-0.0583831,-0.876897][0.183859,0.765188,0.00969428][-42.201,-0.261095,98.9574][-0.219344,-0.0547286,-0.325211][0.135907,0.776584,0.00969425][-44.6518,-0.261095,111.662][-1.62216,-2.66926,-0.335618][0.120931,0.803939,0.00969417][-44.6518,0.261091,111.662][-1.62216,2.66926,-0.335618][0.120931,0.803939,-0.00969305][-44.6518,0.261091,111.662][-1.62216,2.66926,-0.335618][0.120931,0.803939,-0.00969305][-42.201,0.261091,98.9574][-0.219344,0.0547278,-0.325211][0.135907,0.776584,-0.00969297][-42.201,-0.261095,98.9574][-0.219344,-0.0547286,-0.325211][0.135907,0.776584,0.00969425][-44.6518,-0.261095,111.662][-1.62216,-2.66926,-0.335618][0.120931,0.803939,0.00969417][-47.1025,-0.261095,124.366][-1.73805,-2.59173,-0.362069][0.105955,0.831294,0.00969409][-47.1025,0.261091,124.366][-1.73805,2.59173,-0.36207][0.105955,0.831294,-0.00969313][-47.1025,0.261091,124.366][-1.73805,2.59173,-0.36207][0.105955,0.831294,-0.00969313][-44.6518,0.261091,111.662][-1.62216,2.66926,-0.335618][0.120931,0.803939,-0.00969305][-44.6518,-0.261095,111.662][-1.62216,-2.66926,-0.335618][0.120931,0.803939,0.00969417][-47.1025,-0.261095,124.366][-1.73805,-2.59173,-0.362069][0.105955,0.831294,0.00969409][-50.4033,-0.261095,141.476][-1.74263,-2.59284,-0.331693][0.0857848,0.868137,0.00969397][-50.4033,0.261091,141.476][-1.74263,2.59284,-0.331694][0.0857848,0.868137,-0.00969324][-50.4033,0.261091,141.476][-1.74263,2.59284,-0.331694][0.0857848,0.868137,-0.00969324][-47.1025,0.261091,124.366][-1.73805,2.59173,-0.36207][0.105955,0.831294,-0.00969313][-47.1025,-0.261095,124.366][-1.73805,-2.59173,-0.362069][0.105955,0.831294,0.00969409][-50.4033,-0.261095,141.476][-1.74263,-2.59284,-0.331693][0.0857848,0.868137,0.00969397][-53.7041,-0.261094,158.587][-1.72652,-2.60385,-0.321054][0.0656144,0.90498,0.00969386][-53.7041,0.261092,158.587][-1.72652,2.60385,-0.321054][0.0656144,0.90498,-0.00969336][-53.7041,0.261092,158.587][-1.72652,2.60385,-0.321054][0.0656144,0.90498,-0.00969336][-50.4033,0.261091,141.476][-1.74263,2.59284,-0.331694][0.0857848,0.868137,-0.00969324][-50.4033,-0.261095,141.476][-1.74263,-2.59284,-0.331693][0.0857848,0.868137,0.00969397][-53.7041,-0.261094,158.587][-1.72652,-2.60385,-0.321054][0.0656144,0.90498,0.00969386][-57.3828,-0.29156,177.656][-1.67959,-2.63565,-0.319188][0.0431344,0.946041,0.0108249][-57.3828,0.291558,177.656][-1.67959,2.63565,-0.319189][0.0431343,0.946041,-0.0108246][-57.3828,0.291558,177.656][-1.67959,2.63565,-0.319189][0.0431343,0.946041,-0.0108246][-53.7041,0.261092,158.587][-1.72652,2.60385,-0.321054][0.0656144,0.90498,-0.00969336][-53.7041,-0.261094,158.587][-1.72652,-2.60385,-0.321054][0.0656144,0.90498,0.00969386][-57.3828,-0.29156,177.656][-1.67959,-2.63565,-0.319188][0.0431344,0.946041,0.0108249][-61.0616,-0.322026,196.726][0,0,0.562366][0.0368312,0.963264,0.0119558][-61.0616,0.322024,196.726][0,0,0.562366][0.0368312,0.963264,-0.0119558][-61.0616,0.322024,196.726][0,0,0.562366][0.0368312,0.963264,-0.0119558][-57.3828,0.291558,177.656][-1.67959,2.63565,-0.319189][0.0431343,0.946041,-0.0108246][-57.3828,-0.29156,177.656][-1.67959,-2.63565,-0.319188][0.0431344,0.946041,0.0108249][17.7883,-0.261098,-174.984][4.6408,0.272767,4.52133e-007][0.543527,0.0890694,0.00969603][17.2832,2.60372,-174.984][3.93529,1.23943,3.37993e-007][0.539391,0.0890694,-0.0966663][17.2831,2.60375,197.901][2.90728,1.05816,3.53988e-007][0.540829,0.96189,-0.0966693][17.2831,2.60375,197.901][2.90728,1.05816,3.53988e-007][0.540829,0.96189,-0.0966693][17.7883,-0.261066,197.901][3.09387,2.563e-006,4.58887e-007][0.544965,0.96189,0.009693][17.7883,-0.261098,-174.984][4.6408,0.272767,4.52133e-007][0.543527,0.0890694,0.00969603][17.2832,2.60372,-174.984][3.93529,1.23943,3.37993e-007][0.539391,0.0890694,-0.0966663][15.8287,5.123,-174.984][3.37973,3.192,1.89748e-007][0.52748,0.0890694,-0.1902][15.8286,5.12303,197.901][2.37004,1.9887,1.89216e-007][0.528919,0.96189,-0.190203][15.8286,5.12303,197.901][2.37004,1.9887,1.89216e-007][0.528919,0.96189,-0.190203][17.2831,2.60375,197.901][2.90728,1.05816,3.53988e-007][0.540829,0.96189,-0.0966693][17.2832,2.60372,-174.984][3.93529,1.23943,3.37993e-007][0.539391,0.0890694,-0.0966663][15.8287,5.123,-174.984][3.37973,3.192,1.89748e-007][0.52748,0.0890694,-0.1902][13.6002,6.99288,-174.984][2.08418,4.15543,-1.36376e-007][0.509233,0.0890694,-0.259623][13.6002,6.99291,197.901][1.54693,2.67937,0][0.510671,0.96189,-0.259626][13.6002,6.99291,197.901][1.54693,2.67937,0][0.510671,0.96189,-0.259626][15.8286,5.12303,197.901][2.37004,1.9887,1.89216e-007][0.528919,0.96189,-0.190203][15.8287,5.123,-174.984][3.37973,3.192,1.89748e-007][0.52748,0.0890694,-0.1902][13.6002,6.99288,-174.984][2.08418,4.15543,-1.36376e-007][0.509233,0.0890694,-0.259623][10.8667,7.98782,-174.984][0.537243,4.61766,-1.86502e-007][0.486849,0.0890694,-0.296562][10.8666,7.98785,197.901][0.537244,3.04686,-1.82504e-007][0.488288,0.96189,-0.296565][10.8666,7.98785,197.901][0.537244,3.04686,-1.82504e-007][0.488288,0.96189,-0.296565][13.6002,6.99291,197.901][1.54693,2.67937,0][0.510671,0.96189,-0.259626][13.6002,6.99288,-174.984][2.08418,4.15543,-1.36376e-007][0.509233,0.0890694,-0.259623][10.8667,7.98782,-174.984][0.537243,4.61766,-1.86502e-007][0.486849,0.0890694,-0.296562][7.95766,7.98782,-174.984][-1.07449,4.52293,-3.51424e-007][0.463029,0.0890694,-0.296562][7.9576,7.98785,197.901][-0.537244,3.04686,-3.51183e-007][0.464467,0.96189,-0.296565][7.9576,7.98785,197.901][-0.537244,3.04686,-3.51183e-007][0.464467,0.96189,-0.296565][10.8666,7.98785,197.901][0.537244,3.04686,-1.82504e-007][0.488288,0.96189,-0.296565][10.8667,7.98782,-174.984][0.537243,4.61766,-1.86502e-007][0.486849,0.0890694,-0.296562][7.95766,7.98782,-174.984][-1.07449,4.52293,-3.51424e-007][0.463029,0.0890694,-0.296562][5.22408,6.99288,-174.984][-2.55662,3.88266,-4.66764e-007][0.440645,0.0890694,-0.259623][5.22402,6.99291,197.901][-1.54693,2.67936,-4.74128e-007][0.442083,0.96189,-0.259626][5.22402,6.99291,197.901][-1.54693,2.67936,-4.74128e-007][0.442083,0.96189,-0.259626][7.9576,7.98785,197.901][-0.537244,3.04686,-3.51183e-007][0.464467,0.96189,-0.296565][7.95766,7.98782,-174.984][-1.07449,4.52293,-3.51424e-007][0.463029,0.0890694,-0.296562][5.22408,6.99288,-174.984][-2.55662,3.88266,-4.66764e-007][0.440645,0.0890694,-0.259623][2.99565,5.123,-174.984][-3.73039,2.7741,-5.26043e-007][0.422398,0.0890694,-0.1902][2.99559,5.12303,197.901][-2.37004,1.9887,-5.3065e-007][0.423836,0.96189,-0.190203][2.99559,5.12303,197.901][-2.37004,1.9887,-5.3065e-007][0.423836,0.96189,-0.190203][5.22402,6.99291,197.901][-1.54693,2.67936,-4.74128e-007][0.442083,0.96189,-0.259626][5.22408,6.99288,-174.984][-2.55662,3.88266,-4.66764e-007][0.440645,0.0890694,-0.259623][2.99565,5.123,-174.984][-3.73039,2.7741,-5.26043e-007][0.422398,0.0890694,-0.1902][1.54114,2.60372,-174.984][-4.45421,1.33093,-1.1474e-006][0.410488,0.0890694,-0.0966663][1.54108,2.60375,197.901][-2.90728,1.05816,-5.24276e-007][0.411926,0.96189,-0.0966693][1.54108,2.60375,197.901][-2.90728,1.05816,-5.24276e-007][0.411926,0.96189,-0.0966693][2.99559,5.12303,197.901][-2.37004,1.9887,-5.3065e-007][0.423836,0.96189,-0.190203][2.99565,5.123,-174.984][-3.73039,2.7741,-5.26043e-007][0.422398,0.0890694,-0.1902][1.54114,2.60372,-174.984][-4.45421,1.33093,-1.1474e-006][0.410488,0.0890694,-0.0966663][1.036,-0.261099,-174.984][-4.6408,-0.272768,-4.50508e-007][0.406351,0.0890694,0.00969598][1.03594,-0.261067,197.901][-3.09386,0,-4.66761e-007][0.407789,0.96189,0.00969296][1.03594,-0.261067,197.901][-3.09386,0,-4.66761e-007][0.407789,0.96189,0.00969296][1.54108,2.60375,197.901][-2.90728,1.05816,-5.24276e-007][0.411926,0.96189,-0.0966693][1.54114,2.60372,-174.984][-4.45421,1.33093,-1.1474e-006][0.410488,0.0890694,-0.0966663][1.036,-0.261099,-174.984][-4.6408,-0.272768,-4.50508e-007][0.406351,0.0890694,0.00969598][1.54114,-3.12592,-174.984][-4.26763,-1.84356,-2.78217e-007][0.410488,0.0890694,0.116058][1.54108,-3.12589,197.901][-2.90728,-1.05816,-3.53988e-007][0.411926,0.96189,0.116055][1.54108,-3.12589,197.901][-2.90728,-1.05816,-3.53988e-007][0.411926,0.96189,0.116055][1.03594,-0.261067,197.901][-3.09386,0,-4.66761e-007][0.407789,0.96189,0.00969296][1.036,-0.261099,-174.984][-4.6408,-0.272768,-4.50508e-007][0.406351,0.0890694,0.00969598][1.54114,-3.12592,-174.984][-4.26763,-1.84356,-2.78217e-007][0.410488,0.0890694,0.116058][2.99565,-5.6452,-174.984][-3.37973,-3.192,-1.89748e-007][0.422398,0.0890694,0.209592][2.99559,-5.64516,197.901][-2.37004,-1.9887,-1.89216e-007][0.423836,0.96189,0.209589][2.99559,-5.64516,197.901][-2.37004,-1.9887,-1.89216e-007][0.423836,0.96189,0.209589][1.54108,-3.12589,197.901][-2.90728,-1.05816,-3.53988e-007][0.411926,0.96189,0.116055][1.54114,-3.12592,-174.984][-4.26763,-1.84356,-2.78217e-007][0.410488,0.0890694,0.116058][2.99565,-5.6452,-174.984][-3.37973,-3.192,-1.89748e-007][0.422398,0.0890694,0.209592][5.22408,-7.51507,-174.984][-2.08418,-4.15543,0][0.440645,0.0890694,0.279015][5.22402,-7.51504,197.901][-1.54693,-2.67937,0][0.442083,0.96189,0.279012][5.22402,-7.51504,197.901][-1.54693,-2.67937,0][0.442083,0.96189,0.279012][2.99559,-5.64516,197.901][-2.37004,-1.9887,-1.89216e-007][0.423836,0.96189,0.209589][2.99565,-5.6452,-174.984][-3.37973,-3.192,-1.89748e-007][0.422398,0.0890694,0.209592][5.22408,-7.51507,-174.984][-2.08418,-4.15543,0][0.440645,0.0890694,0.279015][7.95766,-8.51002,-174.984][-0.537245,-4.61766,1.86299e-007][0.463029,0.0890694,0.315954][7.9576,-8.50998,197.901][-0.537245,-3.04686,1.8654e-007][0.464467,0.96189,0.315951][7.9576,-8.50998,197.901][-0.537245,-3.04686,1.8654e-007][0.464467,0.96189,0.315951][5.22402,-7.51504,197.901][-1.54693,-2.67937,0][0.442083,0.96189,0.279012][5.22408,-7.51507,-174.984][-2.08418,-4.15543,0][0.440645,0.0890694,0.279015][7.95766,-8.51002,-174.984][-0.537245,-4.61766,1.86299e-007][0.463029,0.0890694,0.315954][10.8667,-8.51002,-174.984][1.07449,-4.52293,3.47388e-007][0.486849,0.0890694,0.315954][10.8666,-8.50998,197.901][0.537243,-3.04686,3.51385e-007][0.488288,0.96189,0.315951][10.8666,-8.50998,197.901][0.537243,-3.04686,3.51385e-007][0.488288,0.96189,0.315951][7.9576,-8.50998,197.901][-0.537245,-3.04686,1.8654e-007][0.464467,0.96189,0.315951][7.95766,-8.51002,-174.984][-0.537245,-4.61766,1.86299e-007][0.463029,0.0890694,0.315954][10.8667,-8.51002,-174.984][1.07449,-4.52293,3.47388e-007][0.486849,0.0890694,0.315954][13.6002,-7.51508,-174.984][2.55662,-3.88267,5.76381e-007][0.509233,0.0890694,0.279015][13.6002,-7.51504,197.901][1.54693,-2.67937,4.70372e-007][0.510671,0.96189,0.279012][13.6002,-7.51504,197.901][1.54693,-2.67937,4.70372e-007][0.510671,0.96189,0.279012][10.8666,-8.50998,197.901][0.537243,-3.04686,3.51385e-007][0.488288,0.96189,0.315951][10.8667,-8.51002,-174.984][1.07449,-4.52293,3.47388e-007][0.486849,0.0890694,0.315954][13.6002,-7.51508,-174.984][2.55662,-3.88267,5.76381e-007][0.509233,0.0890694,0.279015][15.8287,-5.6452,-174.984][3.73039,-2.7741,1.55178e-006][0.52748,0.0890694,0.209592][15.8286,-5.64517,197.901][2.37004,-1.9887,5.23666e-007][0.528919,0.96189,0.209589][15.8286,-5.64517,197.901][2.37004,-1.9887,5.23666e-007][0.528919,0.96189,0.209589][13.6002,-7.51504,197.901][1.54693,-2.67937,4.70372e-007][0.510671,0.96189,0.279012][13.6002,-7.51508,-174.984][2.55662,-3.88267,5.76381e-007][0.509233,0.0890694,0.279015][15.8287,-5.6452,-174.984][3.73039,-2.7741,1.55178e-006][0.52748,0.0890694,0.209592][17.2832,-3.12592,-174.984][4.45421,-1.33093,1.73051e-006][0.539391,0.0890694,0.116059][17.2831,-3.12589,197.901][2.90728,-1.05816,5.09405e-007][0.540829,0.96189,0.116055][17.2831,-3.12589,197.901][2.90728,-1.05816,5.09405e-007][0.540829,0.96189,0.116055][15.8286,-5.64517,197.901][2.37004,-1.9887,5.23666e-007][0.528919,0.96189,0.209589][15.8287,-5.6452,-174.984][3.73039,-2.7741,1.55178e-006][0.52748,0.0890694,0.209592][17.2832,-3.12592,-174.984][4.45421,-1.33093,1.73051e-006][0.539391,0.0890694,0.116059][17.7883,-0.261098,-174.984][4.6408,0.272767,4.52133e-007][0.543527,0.0890694,0.00969603][17.7883,-0.261066,197.901][3.09387,2.563e-006,4.58887e-007][0.544965,0.96189,0.009693][17.7883,-0.261066,197.901][3.09387,2.563e-006,4.58887e-007][0.544965,0.96189,0.009693][17.2831,-3.12589,197.901][2.90728,-1.05816,5.09405e-007][0.540829,0.96189,0.116055][17.2832,-3.12592,-174.984][4.45421,-1.33093,1.73051e-006][0.539391,0.0890694,0.116059][17.2831,2.60375,197.901][2.90728,1.05816,3.53988e-007][0.540829,0.96189,-0.0966693][15.8286,5.12303,197.901][2.37004,1.9887,1.89216e-007][0.528919,0.96189,-0.190203][13.6002,6.99291,197.901][1.54693,2.67937,0][0.510671,0.96189,-0.259626][13.6002,6.99291,197.901][1.54693,2.67937,0][0.510671,0.96189,-0.259626][10.8666,7.98785,197.901][0.537244,3.04686,-1.82504e-007][0.488288,0.96189,-0.296565][7.9576,7.98785,197.901][-0.537244,3.04686,-3.51183e-007][0.464467,0.96189,-0.296565][7.9576,7.98785,197.901][-0.537244,3.04686,-3.51183e-007][0.464467,0.96189,-0.296565][5.22402,6.99291,197.901][-1.54693,2.67936,-4.74128e-007][0.442083,0.96189,-0.259626][2.99559,5.12303,197.901][-2.37004,1.9887,-5.3065e-007][0.423836,0.96189,-0.190203][13.6002,6.99291,197.901][1.54693,2.67937,0][0.510671,0.96189,-0.259626][7.9576,7.98785,197.901][-0.537244,3.04686,-3.51183e-007][0.464467,0.96189,-0.296565][2.99559,5.12303,197.901][-2.37004,1.9887,-5.3065e-007][0.423836,0.96189,-0.190203][2.99559,5.12303,197.901][-2.37004,1.9887,-5.3065e-007][0.423836,0.96189,-0.190203][1.54108,2.60375,197.901][-2.90728,1.05816,-5.24276e-007][0.411926,0.96189,-0.0966693][1.03594,-0.261067,197.901][-3.09386,0,-4.66761e-007][0.407789,0.96189,0.00969296][1.03594,-0.261067,197.901][-3.09386,0,-4.66761e-007][0.407789,0.96189,0.00969296][1.54108,-3.12589,197.901][-2.90728,-1.05816,-3.53988e-007][0.411926,0.96189,0.116055][2.99559,-5.64516,197.901][-2.37004,-1.9887,-1.89216e-007][0.423836,0.96189,0.209589][2.99559,5.12303,197.901][-2.37004,1.9887,-5.3065e-007][0.423836,0.96189,-0.190203][1.03594,-0.261067,197.901][-3.09386,0,-4.66761e-007][0.407789,0.96189,0.00969296][2.99559,-5.64516,197.901][-2.37004,-1.9887,-1.89216e-007][0.423836,0.96189,0.209589][2.99559,-5.64516,197.901][-2.37004,-1.9887,-1.89216e-007][0.423836,0.96189,0.209589][5.22402,-7.51504,197.901][-1.54693,-2.67937,0][0.442083,0.96189,0.279012][7.9576,-8.50998,197.901][-0.537245,-3.04686,1.8654e-007][0.464467,0.96189,0.315951][7.9576,-8.50998,197.901][-0.537245,-3.04686,1.8654e-007][0.464467,0.96189,0.315951][10.8666,-8.50998,197.901][0.537243,-3.04686,3.51385e-007][0.488288,0.96189,0.315951][13.6002,-7.51504,197.901][1.54693,-2.67937,4.70372e-007][0.510671,0.96189,0.279012][2.99559,-5.64516,197.901][-2.37004,-1.9887,-1.89216e-007][0.423836,0.96189,0.209589][7.9576,-8.50998,197.901][-0.537245,-3.04686,1.8654e-007][0.464467,0.96189,0.315951][13.6002,-7.51504,197.901][1.54693,-2.67937,4.70372e-007][0.510671,0.96189,0.279012][2.99559,5.12303,197.901][-2.37004,1.9887,-5.3065e-007][0.423836,0.96189,-0.190203][2.99559,-5.64516,197.901][-2.37004,-1.9887,-1.89216e-007][0.423836,0.96189,0.209589][13.6002,-7.51504,197.901][1.54693,-2.67937,4.70372e-007][0.510671,0.96189,0.279012][13.6002,6.99291,197.901][1.54693,2.67937,0][0.510671,0.96189,-0.259626][2.99559,5.12303,197.901][-2.37004,1.9887,-5.3065e-007][0.423836,0.96189,-0.190203][13.6002,-7.51504,197.901][1.54693,-2.67937,4.70372e-007][0.510671,0.96189,0.279012][13.6002,-7.51504,197.901][1.54693,-2.67937,4.70372e-007][0.510671,0.96189,0.279012][15.8286,-5.64517,197.901][2.37004,-1.9887,5.23666e-007][0.528919,0.96189,0.209589][17.2831,-3.12589,197.901][2.90728,-1.05816,5.09405e-007][0.540829,0.96189,0.116055][13.6002,6.99291,197.901][1.54693,2.67937,0][0.510671,0.96189,-0.259626][13.6002,-7.51504,197.901][1.54693,-2.67937,4.70372e-007][0.510671,0.96189,0.279012][17.2831,-3.12589,197.901][2.90728,-1.05816,5.09405e-007][0.540829,0.96189,0.116055][17.2831,2.60375,197.901][2.90728,1.05816,3.53988e-007][0.540829,0.96189,-0.0966693][13.6002,6.99291,197.901][1.54693,2.67937,0][0.510671,0.96189,-0.259626][17.2831,-3.12589,197.901][2.90728,-1.05816,5.09405e-007][0.540829,0.96189,0.116055][17.7883,-0.261066,197.901][3.09387,2.563e-006,4.58887e-007][0.544965,0.96189,0.009693][17.2831,2.60375,197.901][2.90728,1.05816,3.53988e-007][0.540829,0.96189,-0.0966693][17.2831,-3.12589,197.901][2.90728,-1.05816,5.09405e-007][0.540829,0.96189,0.116055][17.2832,2.60372,-174.984][3.93529,1.23943,3.37993e-007][0.539391,0.0890694,-0.0966663][17.7883,-0.261098,-174.984][4.6408,0.272767,4.52133e-007][0.543527,0.0890694,0.00969603][17.7883,-0.261099,-179.984][3.09386,2.5034e-006,0][0.568941,0.0781351,0.00969607][17.7883,-0.261099,-179.984][3.09386,2.5034e-006,0][0.568941,0.0781351,0.00969607][17.2832,2.60372,-179.984][2.90728,1.05816,0][0.563274,0.0781351,-0.0966662][17.2832,2.60372,-174.984][3.93529,1.23943,3.37993e-007][0.539391,0.0890694,-0.0966663][17.7883,-0.261098,-174.984][4.6408,0.272767,4.52133e-007][0.543527,0.0890694,0.00969603][17.2832,-3.12592,-174.984][4.45421,-1.33093,1.73051e-006][0.539391,0.0890694,0.116059][17.2832,-3.12592,-179.984][2.90728,-1.05816,1.53253e-006][0.563274,0.0781351,0.116059][17.2832,-3.12592,-179.984][2.90728,-1.05816,1.53253e-006][0.563274,0.0781351,0.116059][17.7883,-0.261099,-179.984][3.09386,2.5034e-006,0][0.568941,0.0781351,0.00969607][17.7883,-0.261098,-174.984][4.6408,0.272767,4.52133e-007][0.543527,0.0890694,0.00969603][17.2832,-3.12592,-174.984][4.45421,-1.33093,1.73051e-006][0.539391,0.0890694,0.116059][15.8287,-5.6452,-174.984][3.73039,-2.7741,1.55178e-006][0.52748,0.0890694,0.209592][15.8287,-5.6452,-179.984][2.37004,-1.9887,1.85797e-006][0.546957,0.0781351,0.209592][15.8287,-5.6452,-179.984][2.37004,-1.9887,1.85797e-006][0.546957,0.0781351,0.209592][17.2832,-3.12592,-179.984][2.90728,-1.05816,1.53253e-006][0.563274,0.0781351,0.116059][17.2832,-3.12592,-174.984][4.45421,-1.33093,1.73051e-006][0.539391,0.0890694,0.116059][15.8287,-5.6452,-174.984][3.73039,-2.7741,1.55178e-006][0.52748,0.0890694,0.209592][13.6002,-7.51508,-174.984][2.55662,-3.88267,5.76381e-007][0.509233,0.0890694,0.279015][13.6002,-7.51508,-179.984][1.54693,-2.67937,6.91183e-007][0.521958,0.0781351,0.279015][13.6002,-7.51508,-179.984][1.54693,-2.67937,6.91183e-007][0.521958,0.0781351,0.279015][15.8287,-5.6452,-179.984][2.37004,-1.9887,1.85797e-006][0.546957,0.0781351,0.209592][15.8287,-5.6452,-174.984][3.73039,-2.7741,1.55178e-006][0.52748,0.0890694,0.209592][13.6002,-7.51508,-174.984][2.55662,-3.88267,5.76381e-007][0.509233,0.0890694,0.279015][10.8667,-8.51002,-174.984][1.07449,-4.52293,3.47388e-007][0.486849,0.0890694,0.315954][10.8667,-8.51002,-179.984][0.537243,-3.04686,0][0.491292,0.0781351,0.315954][10.8667,-8.51002,-179.984][0.537243,-3.04686,0][0.491292,0.0781351,0.315954][13.6002,-7.51508,-179.984][1.54693,-2.67937,6.91183e-007][0.521958,0.0781351,0.279015][13.6002,-7.51508,-174.984][2.55662,-3.88267,5.76381e-007][0.509233,0.0890694,0.279015][10.8667,-8.51002,-174.984][1.07449,-4.52293,3.47388e-007][0.486849,0.0890694,0.315954][7.95766,-8.51002,-174.984][-0.537245,-4.61766,1.86299e-007][0.463029,0.0890694,0.315954][7.95766,-8.51002,-179.984][-0.537245,-3.04686,0][0.458659,0.0781351,0.315954][7.95766,-8.51002,-179.984][-0.537245,-3.04686,0][0.458659,0.0781351,0.315954][10.8667,-8.51002,-179.984][0.537243,-3.04686,0][0.491292,0.0781351,0.315954][10.8667,-8.51002,-174.984][1.07449,-4.52293,3.47388e-007][0.486849,0.0890694,0.315954][7.95766,-8.51002,-174.984][-0.537245,-4.61766,1.86299e-007][0.463029,0.0890694,0.315954][5.22408,-7.51507,-174.984][-2.08418,-4.15543,0][0.440645,0.0890694,0.279015][5.22408,-7.51507,-179.984][-1.54693,-2.67937,0][0.427993,0.0781351,0.279015][5.22408,-7.51507,-179.984][-1.54693,-2.67937,0][0.427993,0.0781351,0.279015][7.95766,-8.51002,-179.984][-0.537245,-3.04686,0][0.458659,0.0781351,0.315954][7.95766,-8.51002,-174.984][-0.537245,-4.61766,1.86299e-007][0.463029,0.0890694,0.315954][5.22408,-7.51507,-174.984][-2.08418,-4.15543,0][0.440645,0.0890694,0.279015][2.99565,-5.6452,-174.984][-3.37973,-3.192,-1.89748e-007][0.422398,0.0890694,0.209592][2.99565,-5.6452,-179.984][-2.37004,-1.9887,0][0.402994,0.0781351,0.209592][2.99565,-5.6452,-179.984][-2.37004,-1.9887,0][0.402994,0.0781351,0.209592][5.22408,-7.51507,-179.984][-1.54693,-2.67937,0][0.427993,0.0781351,0.279015][5.22408,-7.51507,-174.984][-2.08418,-4.15543,0][0.440645,0.0890694,0.279015][2.99565,-5.6452,-174.984][-3.37973,-3.192,-1.89748e-007][0.422398,0.0890694,0.209592][1.54114,-3.12592,-174.984][-4.26763,-1.84356,-2.78217e-007][0.410488,0.0890694,0.116058][1.54114,-3.12592,-179.984][-2.90728,-1.05816,0][0.386677,0.0781351,0.116058][1.54114,-3.12592,-179.984][-2.90728,-1.05816,0][0.386677,0.0781351,0.116058][2.99565,-5.6452,-179.984][-2.37004,-1.9887,0][0.402994,0.0781351,0.209592][2.99565,-5.6452,-174.984][-3.37973,-3.192,-1.89748e-007][0.422398,0.0890694,0.209592][1.54114,-3.12592,-174.984][-4.26763,-1.84356,-2.78217e-007][0.410488,0.0890694,0.116058][1.036,-0.261099,-174.984][-4.6408,-0.272768,-4.50508e-007][0.406351,0.0890694,0.00969598][1.036,-0.2611,-179.984][-3.09386,0,0][0.38101,0.0781351,0.00969602][1.036,-0.2611,-179.984][-3.09386,0,0][0.38101,0.0781351,0.00969602][1.54114,-3.12592,-179.984][-2.90728,-1.05816,0][0.386677,0.0781351,0.116058][1.54114,-3.12592,-174.984][-4.26763,-1.84356,-2.78217e-007][0.410488,0.0890694,0.116058][1.036,-0.261099,-174.984][-4.6408,-0.272768,-4.50508e-007][0.406351,0.0890694,0.00969598][1.54114,2.60372,-174.984][-4.45421,1.33093,-1.1474e-006][0.410488,0.0890694,-0.0966663][1.54114,2.60372,-179.984][-2.90728,1.05816,-8.16721e-007][0.386677,0.0781351,-0.0966662][1.54114,2.60372,-179.984][-2.90728,1.05816,-8.16721e-007][0.386677,0.0781351,-0.0966662][1.036,-0.2611,-179.984][-3.09386,0,0][0.38101,0.0781351,0.00969602][1.036,-0.261099,-174.984][-4.6408,-0.272768,-4.50508e-007][0.406351,0.0890694,0.00969598][1.54114,2.60372,-174.984][-4.45421,1.33093,-1.1474e-006][0.410488,0.0890694,-0.0966663][2.99565,5.123,-174.984][-3.73039,2.7741,-5.26043e-007][0.422398,0.0890694,-0.1902][2.99565,5.123,-179.984][-2.37004,1.9887,-3.94629e-007][0.402994,0.0781351,-0.1902][2.99565,5.123,-179.984][-2.37004,1.9887,-3.94629e-007][0.402994,0.0781351,-0.1902][1.54114,2.60372,-179.984][-2.90728,1.05816,-8.16721e-007][0.386677,0.0781351,-0.0966662][1.54114,2.60372,-174.984][-4.45421,1.33093,-1.1474e-006][0.410488,0.0890694,-0.0966663][2.99565,5.123,-174.984][-3.73039,2.7741,-5.26043e-007][0.422398,0.0890694,-0.1902][5.22408,6.99288,-174.984][-2.55662,3.88266,-4.66764e-007][0.440645,0.0890694,-0.259623][5.22408,6.99288,-179.984][-1.54693,2.67937,0][0.427993,0.0781351,-0.259623][5.22408,6.99288,-179.984][-1.54693,2.67937,0][0.427993,0.0781351,-0.259623][2.99565,5.123,-179.984][-2.37004,1.9887,-3.94629e-007][0.402994,0.0781351,-0.1902][2.99565,5.123,-174.984][-3.73039,2.7741,-5.26043e-007][0.422398,0.0890694,-0.1902][5.22408,6.99288,-174.984][-2.55662,3.88266,-4.66764e-007][0.440645,0.0890694,-0.259623][7.95766,7.98782,-174.984][-1.07449,4.52293,-3.51424e-007][0.463029,0.0890694,-0.296562][7.95766,7.98782,-179.984][-0.537244,3.04686,0][0.458659,0.0781351,-0.296562][7.95766,7.98782,-179.984][-0.537244,3.04686,0][0.458659,0.0781351,-0.296562][5.22408,6.99288,-179.984][-1.54693,2.67937,0][0.427993,0.0781351,-0.259623][5.22408,6.99288,-174.984][-2.55662,3.88266,-4.66764e-007][0.440645,0.0890694,-0.259623][7.95766,7.98782,-174.984][-1.07449,4.52293,-3.51424e-007][0.463029,0.0890694,-0.296562][10.8667,7.98782,-174.984][0.537243,4.61766,-1.86502e-007][0.486849,0.0890694,-0.296562][10.8667,7.98782,-179.984][0.537244,3.04686,0][0.491293,0.0781351,-0.296562][10.8667,7.98782,-179.984][0.537244,3.04686,0][0.491293,0.0781351,-0.296562][7.95766,7.98782,-179.984][-0.537244,3.04686,0][0.458659,0.0781351,-0.296562][7.95766,7.98782,-174.984][-1.07449,4.52293,-3.51424e-007][0.463029,0.0890694,-0.296562][10.8667,7.98782,-174.984][0.537243,4.61766,-1.86502e-007][0.486849,0.0890694,-0.296562][13.6002,6.99288,-174.984][2.08418,4.15543,-1.36376e-007][0.509233,0.0890694,-0.259623][13.6002,6.99288,-179.984][1.54693,2.67937,-1.61977e-007][0.521958,0.0781351,-0.259623][13.6002,6.99288,-179.984][1.54693,2.67937,-1.61977e-007][0.521958,0.0781351,-0.259623][10.8667,7.98782,-179.984][0.537244,3.04686,0][0.491293,0.0781351,-0.296562][10.8667,7.98782,-174.984][0.537243,4.61766,-1.86502e-007][0.486849,0.0890694,-0.296562][13.6002,6.99288,-174.984][2.08418,4.15543,-1.36376e-007][0.509233,0.0890694,-0.259623][15.8287,5.123,-174.984][3.37973,3.192,1.89748e-007][0.52748,0.0890694,-0.1902][15.8287,5.123,-179.984][2.37004,1.9887,0][0.546957,0.0781351,-0.1902][15.8287,5.123,-179.984][2.37004,1.9887,0][0.546957,0.0781351,-0.1902][13.6002,6.99288,-179.984][1.54693,2.67937,-1.61977e-007][0.521958,0.0781351,-0.259623][13.6002,6.99288,-174.984][2.08418,4.15543,-1.36376e-007][0.509233,0.0890694,-0.259623][15.8287,5.123,-174.984][3.37973,3.192,1.89748e-007][0.52748,0.0890694,-0.1902][17.2832,2.60372,-174.984][3.93529,1.23943,3.37993e-007][0.539391,0.0890694,-0.0966663][17.2832,2.60372,-179.984][2.90728,1.05816,0][0.563274,0.0781351,-0.0966662][17.2832,2.60372,-179.984][2.90728,1.05816,0][0.563274,0.0781351,-0.0966662][15.8287,5.123,-179.984][2.37004,1.9887,0][0.546957,0.0781351,-0.1902][15.8287,5.123,-174.984][3.37973,3.192,1.89748e-007][0.52748,0.0890694,-0.1902][17.2832,2.60372,-179.984][2.90728,1.05816,0][0.563274,0.0781351,-0.0966662][17.7883,-0.261099,-179.984][3.09386,2.5034e-006,0][0.568941,0.0781351,0.00969607][20.6915,-0.261098,-180.984][0.914192,6.4075e-007,2.65408][0.60151,0.0754736,0.00969607][20.6915,-0.261098,-180.984][0.914192,6.4075e-007,2.65408][0.60151,0.0754736,0.00969607][20.0113,3.59667,-180.984][0.85906,0.312672,2.65408][0.593879,0.0754736,-0.133532][17.2832,2.60372,-179.984][2.90728,1.05816,0][0.563274,0.0781351,-0.0966662][17.7883,-0.261099,-179.984][3.09386,2.5034e-006,0][0.568941,0.0781351,0.00969607][17.2832,-3.12592,-179.984][2.90728,-1.05816,1.53253e-006][0.563274,0.0781351,0.116059][20.0113,-4.11888,-180.984][0.859059,-0.312672,2.65408][0.593879,0.0754736,0.152924][20.0113,-4.11888,-180.984][0.859059,-0.312672,2.65408][0.593879,0.0754736,0.152924][20.6915,-0.261098,-180.984][0.914192,6.4075e-007,2.65408][0.60151,0.0754736,0.00969607][17.7883,-0.261099,-179.984][3.09386,2.5034e-006,0][0.568941,0.0781351,0.00969607][17.2832,-3.12592,-179.984][2.90728,-1.05816,1.53253e-006][0.563274,0.0781351,0.116059][15.8287,-5.6452,-179.984][2.37004,-1.9887,1.85797e-006][0.546957,0.0781351,0.209592][18.0527,-7.51134,-180.984][0.700311,-0.587632,2.65408][0.571906,0.0754736,0.278876][18.0527,-7.51134,-180.984][0.700311,-0.587632,2.65408][0.571906,0.0754736,0.278876][20.0113,-4.11888,-180.984][0.859059,-0.312672,2.65408][0.593879,0.0754736,0.152924][17.2832,-3.12592,-179.984][2.90728,-1.05816,1.53253e-006][0.563274,0.0781351,0.116059][15.8287,-5.6452,-179.984][2.37004,-1.9887,1.85797e-006][0.546957,0.0781351,0.209592][13.6002,-7.51508,-179.984][1.54693,-2.67937,6.91183e-007][0.521958,0.0781351,0.279015][15.0518,-10.0293,-180.984][0.457095,-0.791713,2.65408][0.538243,0.0754736,0.372361][15.0518,-10.0293,-180.984][0.457095,-0.791713,2.65408][0.538243,0.0754736,0.372361][18.0527,-7.51134,-180.984][0.700311,-0.587632,2.65408][0.571906,0.0754736,0.278876][15.8287,-5.6452,-179.984][2.37004,-1.9887,1.85797e-006][0.546957,0.0781351,0.209592][13.6002,-7.51508,-179.984][1.54693,-2.67937,6.91183e-007][0.521958,0.0781351,0.279015][10.8667,-8.51002,-179.984][0.537243,-3.04686,0][0.491292,0.0781351,0.315954][11.3708,-11.3691,-180.984][0.158747,-0.900303,2.65408][0.496948,0.0754736,0.422104][11.3708,-11.3691,-180.984][0.158747,-0.900303,2.65408][0.496948,0.0754736,0.422104][15.0518,-10.0293,-180.984][0.457095,-0.791713,2.65408][0.538243,0.0754736,0.372361][13.6002,-7.51508,-179.984][1.54693,-2.67937,6.91183e-007][0.521958,0.0781351,0.279015][10.8667,-8.51002,-179.984][0.537243,-3.04686,0][0.491292,0.0781351,0.315954][7.95766,-8.51002,-179.984][-0.537245,-3.04686,0][0.458659,0.0781351,0.315954][7.45352,-11.3691,-180.984][-0.158748,-0.900303,2.65408][0.453003,0.0754736,0.422104][7.45352,-11.3691,-180.984][-0.158748,-0.900303,2.65408][0.453003,0.0754736,0.422104][11.3708,-11.3691,-180.984][0.158747,-0.900303,2.65408][0.496948,0.0754736,0.422104][10.8667,-8.51002,-179.984][0.537243,-3.04686,0][0.491292,0.0781351,0.315954][7.95766,-8.51002,-179.984][-0.537245,-3.04686,0][0.458659,0.0781351,0.315954][5.22408,-7.51507,-179.984][-1.54693,-2.67937,0][0.427993,0.0781351,0.279015][3.77248,-10.0293,-180.984][-0.457096,-0.791713,2.65408][0.411709,0.0754736,0.372361][3.77248,-10.0293,-180.984][-0.457096,-0.791713,2.65408][0.411709,0.0754736,0.372361][7.45352,-11.3691,-180.984][-0.158748,-0.900303,2.65408][0.453003,0.0754736,0.422104][7.95766,-8.51002,-179.984][-0.537245,-3.04686,0][0.458659,0.0781351,0.315954][5.22408,-7.51507,-179.984][-1.54693,-2.67937,0][0.427993,0.0781351,0.279015][2.99565,-5.6452,-179.984][-2.37004,-1.9887,0][0.402994,0.0781351,0.209592][0.771669,-7.51134,-180.984][-0.700311,-0.587631,2.65408][0.378045,0.0754736,0.278876][0.771669,-7.51134,-180.984][-0.700311,-0.587631,2.65408][0.378045,0.0754736,0.278876][3.77248,-10.0293,-180.984][-0.457096,-0.791713,2.65408][0.411709,0.0754736,0.372361][5.22408,-7.51507,-179.984][-1.54693,-2.67937,0][0.427993,0.0781351,0.279015][2.99565,-5.6452,-179.984][-2.37004,-1.9887,0][0.402994,0.0781351,0.209592][1.54114,-3.12592,-179.984][-2.90728,-1.05816,0][0.386677,0.0781351,0.116058][-1.18697,-4.11887,-180.984][-0.859058,-0.312672,2.65408][0.356072,0.0754736,0.152924][-1.18697,-4.11887,-180.984][-0.859058,-0.312672,2.65408][0.356072,0.0754736,0.152924][0.771669,-7.51134,-180.984][-0.700311,-0.587631,2.65408][0.378045,0.0754736,0.278876][2.99565,-5.6452,-179.984][-2.37004,-1.9887,0][0.402994,0.0781351,0.209592][1.54114,-3.12592,-179.984][-2.90728,-1.05816,0][0.386677,0.0781351,0.116058][1.036,-0.2611,-179.984][-3.09386,0,0][0.38101,0.0781351,0.00969602][-1.8672,-0.2611,-180.984][-0.914192,0,2.65408][0.348442,0.0754736,0.00969601][-1.8672,-0.2611,-180.984][-0.914192,0,2.65408][0.348442,0.0754736,0.00969601][-1.18697,-4.11887,-180.984][-0.859058,-0.312672,2.65408][0.356072,0.0754736,0.152924][1.54114,-3.12592,-179.984][-2.90728,-1.05816,0][0.386677,0.0781351,0.116058][1.036,-0.2611,-179.984][-3.09386,0,0][0.38101,0.0781351,0.00969602][1.54114,2.60372,-179.984][-2.90728,1.05816,-8.16721e-007][0.386677,0.0781351,-0.0966662][-1.18697,3.59667,-180.984][-0.859059,0.312672,2.65408][0.356072,0.0754736,-0.133532][-1.18697,3.59667,-180.984][-0.859059,0.312672,2.65408][0.356072,0.0754736,-0.133532][-1.8672,-0.2611,-180.984][-0.914192,0,2.65408][0.348442,0.0754736,0.00969601][1.036,-0.2611,-179.984][-3.09386,0,0][0.38101,0.0781351,0.00969602][1.54114,2.60372,-179.984][-2.90728,1.05816,-8.16721e-007][0.386677,0.0781351,-0.0966662][2.99565,5.123,-179.984][-2.37004,1.9887,-3.94629e-007][0.402994,0.0781351,-0.1902][0.771669,6.98914,-180.984][-0.700312,0.587631,2.65408][0.378045,0.0754736,-0.259484][0.771669,6.98914,-180.984][-0.700312,0.587631,2.65408][0.378045,0.0754736,-0.259484][-1.18697,3.59667,-180.984][-0.859059,0.312672,2.65408][0.356072,0.0754736,-0.133532][1.54114,2.60372,-179.984][-2.90728,1.05816,-8.16721e-007][0.386677,0.0781351,-0.0966662][2.99565,5.123,-179.984][-2.37004,1.9887,-3.94629e-007][0.402994,0.0781351,-0.1902][5.22408,6.99288,-179.984][-1.54693,2.67937,0][0.427993,0.0781351,-0.259623][3.77248,9.50712,-180.984][-0.457096,0.791713,2.65408][0.411709,0.0754736,-0.352969][3.77248,9.50712,-180.984][-0.457096,0.791713,2.65408][0.411709,0.0754736,-0.352969][0.771669,6.98914,-180.984][-0.700312,0.587631,2.65408][0.378045,0.0754736,-0.259484][2.99565,5.123,-179.984][-2.37004,1.9887,-3.94629e-007][0.402994,0.0781351,-0.1902][5.22408,6.99288,-179.984][-1.54693,2.67937,0][0.427993,0.0781351,-0.259623][7.95766,7.98782,-179.984][-0.537244,3.04686,0][0.458659,0.0781351,-0.296562][7.45352,10.8469,-180.984][-0.158748,0.900303,2.65408][0.453003,0.0754736,-0.402712][7.45352,10.8469,-180.984][-0.158748,0.900303,2.65408][0.453003,0.0754736,-0.402712][3.77248,9.50712,-180.984][-0.457096,0.791713,2.65408][0.411709,0.0754736,-0.352969][5.22408,6.99288,-179.984][-1.54693,2.67937,0][0.427993,0.0781351,-0.259623][7.95766,7.98782,-179.984][-0.537244,3.04686,0][0.458659,0.0781351,-0.296562][10.8667,7.98782,-179.984][0.537244,3.04686,0][0.491293,0.0781351,-0.296562][11.3708,10.8469,-180.984][0.158748,0.900303,2.65408][0.496948,0.0754736,-0.402712][11.3708,10.8469,-180.984][0.158748,0.900303,2.65408][0.496948,0.0754736,-0.402712][7.45352,10.8469,-180.984][-0.158748,0.900303,2.65408][0.453003,0.0754736,-0.402712][7.95766,7.98782,-179.984][-0.537244,3.04686,0][0.458659,0.0781351,-0.296562][10.8667,7.98782,-179.984][0.537244,3.04686,0][0.491293,0.0781351,-0.296562][13.6002,6.99288,-179.984][1.54693,2.67937,-1.61977e-007][0.521958,0.0781351,-0.259623][15.0518,9.50712,-180.984][0.457096,0.791713,2.65408][0.538243,0.0754736,-0.352969][15.0518,9.50712,-180.984][0.457096,0.791713,2.65408][0.538243,0.0754736,-0.352969][11.3708,10.8469,-180.984][0.158748,0.900303,2.65408][0.496948,0.0754736,-0.402712][10.8667,7.98782,-179.984][0.537244,3.04686,0][0.491293,0.0781351,-0.296562][13.6002,6.99288,-179.984][1.54693,2.67937,-1.61977e-007][0.521958,0.0781351,-0.259623][15.8287,5.123,-179.984][2.37004,1.9887,0][0.546957,0.0781351,-0.1902][18.0527,6.98914,-180.984][0.700311,0.587631,2.65408][0.571906,0.0754736,-0.259484][18.0527,6.98914,-180.984][0.700311,0.587631,2.65408][0.571906,0.0754736,-0.259484][15.0518,9.50712,-180.984][0.457096,0.791713,2.65408][0.538243,0.0754736,-0.352969][13.6002,6.99288,-179.984][1.54693,2.67937,-1.61977e-007][0.521958,0.0781351,-0.259623][15.8287,5.123,-179.984][2.37004,1.9887,0][0.546957,0.0781351,-0.1902][17.2832,2.60372,-179.984][2.90728,1.05816,0][0.563274,0.0781351,-0.0966662][20.0113,3.59667,-180.984][0.85906,0.312672,2.65408][0.593879,0.0754736,-0.133532][20.0113,3.59667,-180.984][0.85906,0.312672,2.65408][0.593879,0.0754736,-0.133532][18.0527,6.98914,-180.984][0.700311,0.587631,2.65408][0.571906,0.0754736,-0.259484][15.8287,5.123,-179.984][2.37004,1.9887,0][0.546957,0.0781351,-0.1902][20.0113,3.59667,-180.984][0.85906,0.312672,2.65408][0.593879,0.0754736,-0.133532][20.6915,-0.261098,-180.984][0.914192,6.4075e-007,2.65408][0.60151,0.0754736,0.00969607][20.6915,-0.261098,-185.984][3.09386,5.06639e-007,2.35668e-006][0.60151,0.0621662,0.00969611][20.6915,-0.261098,-185.984][3.09386,5.06639e-007,2.35668e-006][0.60151,0.0621662,0.00969611][20.0113,3.59667,-185.984][2.90728,1.05816,1.5184e-006][0.593879,0.0621662,-0.133532][20.0113,3.59667,-180.984][0.85906,0.312672,2.65408][0.593879,0.0754736,-0.133532][20.6915,-0.261098,-180.984][0.914192,6.4075e-007,2.65408][0.60151,0.0754736,0.00969607][20.0113,-4.11888,-180.984][0.859059,-0.312672,2.65408][0.593879,0.0754736,0.152924][20.0113,-4.11888,-185.984][2.90728,-1.05816,7.78053e-007][0.593879,0.0621662,0.152924][20.0113,-4.11888,-185.984][2.90728,-1.05816,7.78053e-007][0.593879,0.0621662,0.152924][20.6915,-0.261098,-185.984][3.09386,5.06639e-007,2.35668e-006][0.60151,0.0621662,0.00969611][20.6915,-0.261098,-180.984][0.914192,6.4075e-007,2.65408][0.60151,0.0754736,0.00969607][20.0113,-4.11888,-180.984][0.859059,-0.312672,2.65408][0.593879,0.0754736,0.152924][18.0527,-7.51134,-180.984][0.700311,-0.587632,2.65408][0.571906,0.0754736,0.278876][18.0527,-7.51134,-185.984][2.37004,-1.9887,1.89657e-007][0.571906,0.0621662,0.278876][18.0527,-7.51134,-185.984][2.37004,-1.9887,1.89657e-007][0.571906,0.0621662,0.278876][20.0113,-4.11888,-185.984][2.90728,-1.05816,7.78053e-007][0.593879,0.0621662,0.152924][20.0113,-4.11888,-180.984][0.859059,-0.312672,2.65408][0.593879,0.0754736,0.152924][18.0527,-7.51134,-180.984][0.700311,-0.587632,2.65408][0.571906,0.0754736,0.278876][15.0518,-10.0293,-180.984][0.457095,-0.791713,2.65408][0.538243,0.0754736,0.372361][15.0518,-10.0293,-185.984][1.54693,-2.67937,4.44844e-007][0.538243,0.0621662,0.372361][15.0518,-10.0293,-185.984][1.54693,-2.67937,4.44844e-007][0.538243,0.0621662,0.372361][18.0527,-7.51134,-185.984][2.37004,-1.9887,1.89657e-007][0.571906,0.0621662,0.278876][18.0527,-7.51134,-180.984][0.700311,-0.587632,2.65408][0.571906,0.0754736,0.278876][15.0518,-10.0293,-180.984][0.457095,-0.791713,2.65408][0.538243,0.0754736,0.372361][11.3708,-11.3691,-180.984][0.158747,-0.900303,2.65408][0.496948,0.0754736,0.422104][11.3708,-11.3691,-185.984][0.537243,-3.04686,9.99861e-007][0.496948,0.0621662,0.422104][11.3708,-11.3691,-185.984][0.537243,-3.04686,9.99861e-007][0.496948,0.0621662,0.422104][15.0518,-10.0293,-185.984][1.54693,-2.67937,4.44844e-007][0.538243,0.0621662,0.372361][15.0518,-10.0293,-180.984][0.457095,-0.791713,2.65408][0.538243,0.0754736,0.372361][11.3708,-11.3691,-180.984][0.158747,-0.900303,2.65408][0.496948,0.0754736,0.422104][7.45352,-11.3691,-180.984][-0.158748,-0.900303,2.65408][0.453003,0.0754736,0.422104][7.45352,-11.3691,-185.984][-0.537244,-3.04686,7.53991e-007][0.453003,0.0621662,0.422104][7.45352,-11.3691,-185.984][-0.537244,-3.04686,7.53991e-007][0.453003,0.0621662,0.422104][11.3708,-11.3691,-185.984][0.537243,-3.04686,9.99861e-007][0.496948,0.0621662,0.422104][11.3708,-11.3691,-180.984][0.158747,-0.900303,2.65408][0.496948,0.0754736,0.422104][7.45352,-11.3691,-180.984][-0.158748,-0.900303,2.65408][0.453003,0.0754736,0.422104][3.77248,-10.0293,-180.984][-0.457096,-0.791713,2.65408][0.411709,0.0754736,0.372361][3.77248,-10.0293,-185.984][-1.54693,-2.67937,8.59672e-007][0.411709,0.0621662,0.372361][3.77248,-10.0293,-185.984][-1.54693,-2.67937,8.59672e-007][0.411709,0.0621662,0.372361][7.45352,-11.3691,-185.984][-0.537244,-3.04686,7.53991e-007][0.453003,0.0621662,0.422104][7.45352,-11.3691,-180.984][-0.158748,-0.900303,2.65408][0.453003,0.0754736,0.422104][3.77248,-10.0293,-180.984][-0.457096,-0.791713,2.65408][0.411709,0.0754736,0.372361][0.771669,-7.51134,-180.984][-0.700311,-0.587631,2.65408][0.378045,0.0754736,0.278876][0.771669,-7.51134,-185.984][-2.37004,-1.9887,2.64819e-007][0.378045,0.0621662,0.278876][0.771669,-7.51134,-185.984][-2.37004,-1.9887,2.64819e-007][0.378045,0.0621662,0.278876][3.77248,-10.0293,-185.984][-1.54693,-2.67937,8.59672e-007][0.411709,0.0621662,0.372361][3.77248,-10.0293,-180.984][-0.457096,-0.791713,2.65408][0.411709,0.0754736,0.372361][0.771669,-7.51134,-180.984][-0.700311,-0.587631,2.65408][0.378045,0.0754736,0.278876][-1.18697,-4.11887,-180.984][-0.859058,-0.312672,2.65408][0.356072,0.0754736,0.152924][-1.18697,-4.11887,-185.984][-2.90728,-1.05816,-7.51955e-007][0.356072,0.0621662,0.152924][-1.18697,-4.11887,-185.984][-2.90728,-1.05816,-7.51955e-007][0.356072,0.0621662,0.152924][0.771669,-7.51134,-185.984][-2.37004,-1.9887,2.64819e-007][0.378045,0.0621662,0.278876][0.771669,-7.51134,-180.984][-0.700311,-0.587631,2.65408][0.378045,0.0754736,0.278876][-1.18697,-4.11887,-180.984][-0.859058,-0.312672,2.65408][0.356072,0.0754736,0.152924][-1.8672,-0.2611,-180.984][-0.914192,0,2.65408][0.348442,0.0754736,0.00969601][-1.8672,-0.2611,-185.984][-3.09386,2.98023e-007,-3.36694e-007][0.348442,0.0621662,0.00969604][-1.8672,-0.2611,-185.984][-3.09386,2.98023e-007,-3.36694e-007][0.348442,0.0621662,0.00969604][-1.18697,-4.11887,-185.984][-2.90728,-1.05816,-7.51955e-007][0.356072,0.0621662,0.152924][-1.18697,-4.11887,-180.984][-0.859058,-0.312672,2.65408][0.356072,0.0754736,0.152924][-1.8672,-0.2611,-180.984][-0.914192,0,2.65408][0.348442,0.0754736,0.00969601][-1.18697,3.59667,-180.984][-0.859059,0.312672,2.65408][0.356072,0.0754736,-0.133532][-1.18697,3.59667,-185.984][-2.90728,1.05816,0][0.356073,0.0621662,-0.133532][-1.18697,3.59667,-185.984][-2.90728,1.05816,0][0.356073,0.0621662,-0.133532][-1.8672,-0.2611,-185.984][-3.09386,2.98023e-007,-3.36694e-007][0.348442,0.0621662,0.00969604][-1.8672,-0.2611,-180.984][-0.914192,0,2.65408][0.348442,0.0754736,0.00969601][-1.18697,3.59667,-180.984][-0.859059,0.312672,2.65408][0.356072,0.0754736,-0.133532][0.771669,6.98914,-180.984][-0.700312,0.587631,2.65408][0.378045,0.0754736,-0.259484][0.771671,6.98914,-185.984][-2.37004,1.9887,-6.47927e-007][0.378045,0.0621662,-0.259484][0.771671,6.98914,-185.984][-2.37004,1.9887,-6.47927e-007][0.378045,0.0621662,-0.259484][-1.18697,3.59667,-185.984][-2.90728,1.05816,0][0.356073,0.0621662,-0.133532][-1.18697,3.59667,-180.984][-0.859059,0.312672,2.65408][0.356072,0.0754736,-0.133532][0.771669,6.98914,-180.984][-0.700312,0.587631,2.65408][0.378045,0.0754736,-0.259484][3.77248,9.50712,-180.984][-0.457096,0.791713,2.65408][0.411709,0.0754736,-0.352969][3.77248,9.50712,-185.984][-1.54693,2.67937,-1.34739e-006][0.411709,0.0621662,-0.352969][3.77248,9.50712,-185.984][-1.54693,2.67937,-1.34739e-006][0.411709,0.0621662,-0.352969][0.771671,6.98914,-185.984][-2.37004,1.9887,-6.47927e-007][0.378045,0.0621662,-0.259484][0.771669,6.98914,-180.984][-0.700312,0.587631,2.65408][0.378045,0.0754736,-0.259484][3.77248,9.50712,-180.984][-0.457096,0.791713,2.65408][0.411709,0.0754736,-0.352969][7.45352,10.8469,-180.984][-0.158748,0.900303,2.65408][0.453003,0.0754736,-0.402712][7.45352,10.8469,-185.984][-0.537244,3.04686,-8.61803e-007][0.453003,0.0621662,-0.402711][7.45352,10.8469,-185.984][-0.537244,3.04686,-8.61803e-007][0.453003,0.0621662,-0.402711][3.77248,9.50712,-185.984][-1.54693,2.67937,-1.34739e-006][0.411709,0.0621662,-0.352969][3.77248,9.50712,-180.984][-0.457096,0.791713,2.65408][0.411709,0.0754736,-0.352969][7.45352,10.8469,-180.984][-0.158748,0.900303,2.65408][0.453003,0.0754736,-0.402712][11.3708,10.8469,-180.984][0.158748,0.900303,2.65408][0.496948,0.0754736,-0.402712][11.3708,10.8469,-185.984][0.537243,3.04686,-9.89437e-007][0.496948,0.0621662,-0.402711][11.3708,10.8469,-185.984][0.537243,3.04686,-9.89437e-007][0.496948,0.0621662,-0.402711][7.45352,10.8469,-185.984][-0.537244,3.04686,-8.61803e-007][0.453003,0.0621662,-0.402711][7.45352,10.8469,-180.984][-0.158748,0.900303,2.65408][0.453003,0.0754736,-0.402712][11.3708,10.8469,-180.984][0.158748,0.900303,2.65408][0.496948,0.0754736,-0.402712][15.0518,9.50712,-180.984][0.457096,0.791713,2.65408][0.538243,0.0754736,-0.352969][15.0518,9.50712,-185.984][1.54693,2.67937,-6.73473e-007][0.538243,0.0621662,-0.352969][15.0518,9.50712,-185.984][1.54693,2.67937,-6.73473e-007][0.538243,0.0621662,-0.352969][11.3708,10.8469,-185.984][0.537243,3.04686,-9.89437e-007][0.496948,0.0621662,-0.402711][11.3708,10.8469,-180.984][0.158748,0.900303,2.65408][0.496948,0.0754736,-0.402712][15.0518,9.50712,-180.984][0.457096,0.791713,2.65408][0.538243,0.0754736,-0.352969][18.0527,6.98914,-180.984][0.700311,0.587631,2.65408][0.571906,0.0754736,-0.259484][18.0527,6.98914,-185.984][2.37004,1.9887,-2.55862e-007][0.571906,0.0621662,-0.259484][18.0527,6.98914,-185.984][2.37004,1.9887,-2.55862e-007][0.571906,0.0621662,-0.259484][15.0518,9.50712,-185.984][1.54693,2.67937,-6.73473e-007][0.538243,0.0621662,-0.352969][15.0518,9.50712,-180.984][0.457096,0.791713,2.65408][0.538243,0.0754736,-0.352969][18.0527,6.98914,-180.984][0.700311,0.587631,2.65408][0.571906,0.0754736,-0.259484][20.0113,3.59667,-180.984][0.85906,0.312672,2.65408][0.593879,0.0754736,-0.133532][20.0113,3.59667,-185.984][2.90728,1.05816,1.5184e-006][0.593879,0.0621662,-0.133532][20.0113,3.59667,-185.984][2.90728,1.05816,1.5184e-006][0.593879,0.0621662,-0.133532][18.0527,6.98914,-185.984][2.37004,1.9887,-2.55862e-007][0.571906,0.0621662,-0.259484][18.0527,6.98914,-180.984][0.700311,0.587631,2.65408][0.571906,0.0754736,-0.259484][20.0113,3.59667,-185.984][2.90728,1.05816,1.5184e-006][0.593879,0.0621662,-0.133532][20.6915,-0.261098,-185.984][3.09386,5.06639e-007,2.35668e-006][0.60151,0.0621662,0.00969611][19.0881,-0.261099,-186.984][1.81111,-9.53674e-007,-2.90401][0.583522,0.0595047,0.00969612][19.0881,-0.261099,-186.984][1.81111,-9.53674e-007,-2.90401][0.583522,0.0595047,0.00969612][18.5046,3.04826,-186.984][1.70189,0.619438,-2.90401][0.576976,0.0595047,-0.113171][20.0113,3.59667,-185.984][2.90728,1.05816,1.5184e-006][0.593879,0.0621662,-0.133532][20.6915,-0.261098,-185.984][3.09386,5.06639e-007,2.35668e-006][0.60151,0.0621662,0.00969611][20.0113,-4.11888,-185.984][2.90728,-1.05816,7.78053e-007][0.593879,0.0621662,0.152924][18.5046,-3.57047,-186.984][1.70189,-0.619436,-2.90401][0.576976,0.0595047,0.132563][18.5046,-3.57047,-186.984][1.70189,-0.619436,-2.90401][0.576976,0.0595047,0.132563][19.0881,-0.261099,-186.984][1.81111,-9.53674e-007,-2.90401][0.583522,0.0595047,0.00969612][20.6915,-0.261098,-185.984][3.09386,5.06639e-007,2.35668e-006][0.60151,0.0621662,0.00969611][20.0113,-4.11888,-185.984][2.90728,-1.05816,7.78053e-007][0.593879,0.0621662,0.152924][18.0527,-7.51134,-185.984][2.37004,-1.9887,1.89657e-007][0.571906,0.0621662,0.278876][16.8244,-6.48067,-186.984][1.38739,-1.16416,-2.90401][0.558127,0.0595047,0.24061][16.8244,-6.48067,-186.984][1.38739,-1.16416,-2.90401][0.558127,0.0595047,0.24061][18.5046,-3.57047,-186.984][1.70189,-0.619436,-2.90401][0.576976,0.0595047,0.132563][20.0113,-4.11888,-185.984][2.90728,-1.05816,7.78053e-007][0.593879,0.0621662,0.152924][18.0527,-7.51134,-185.984][2.37004,-1.9887,1.89657e-007][0.571906,0.0621662,0.278876][15.0518,-10.0293,-185.984][1.54693,-2.67937,4.44844e-007][0.538243,0.0621662,0.372361][14.2501,-8.6407,-186.984][0.905556,-1.56847,-2.90401][0.529249,0.0595047,0.320806][14.2501,-8.6407,-186.984][0.905556,-1.56847,-2.90401][0.529249,0.0595047,0.320806][16.8244,-6.48067,-186.984][1.38739,-1.16416,-2.90401][0.558127,0.0595047,0.24061][18.0527,-7.51134,-185.984][2.37004,-1.9887,1.89657e-007][0.571906,0.0621662,0.278876][15.0518,-10.0293,-185.984][1.54693,-2.67937,4.44844e-007][0.538243,0.0621662,0.372361][11.3708,-11.3691,-185.984][0.537243,-3.04686,9.99861e-007][0.496948,0.0621662,0.422104][11.0924,-9.79003,-186.984][0.314495,-1.7836,-2.90401][0.493824,0.0595047,0.363477][11.0924,-9.79003,-186.984][0.314495,-1.7836,-2.90401][0.493824,0.0595047,0.363477][14.2501,-8.6407,-186.984][0.905556,-1.56847,-2.90401][0.529249,0.0595047,0.320806][15.0518,-10.0293,-185.984][1.54693,-2.67937,4.44844e-007][0.538243,0.0621662,0.372361][11.3708,-11.3691,-185.984][0.537243,-3.04686,9.99861e-007][0.496948,0.0621662,0.422104][7.45352,-11.3691,-185.984][-0.537244,-3.04686,7.53991e-007][0.453003,0.0621662,0.422104][7.73195,-9.79003,-186.984][-0.314498,-1.7836,-2.90401][0.456127,0.0595047,0.363477][7.73195,-9.79003,-186.984][-0.314498,-1.7836,-2.90401][0.456127,0.0595047,0.363477][11.0924,-9.79003,-186.984][0.314495,-1.7836,-2.90401][0.493824,0.0595047,0.363477][11.3708,-11.3691,-185.984][0.537243,-3.04686,9.99861e-007][0.496948,0.0621662,0.422104][7.45352,-11.3691,-185.984][-0.537244,-3.04686,7.53991e-007][0.453003,0.0621662,0.422104][3.77248,-10.0293,-185.984][-1.54693,-2.67937,8.59672e-007][0.411709,0.0621662,0.372361][4.5742,-8.6407,-186.984][-0.905558,-1.56847,-2.90401][0.420702,0.0595047,0.320806][4.5742,-8.6407,-186.984][-0.905558,-1.56847,-2.90401][0.420702,0.0595047,0.320806][7.73195,-9.79003,-186.984][-0.314498,-1.7836,-2.90401][0.456127,0.0595047,0.363477][7.45352,-11.3691,-185.984][-0.537244,-3.04686,7.53991e-007][0.453003,0.0621662,0.422104][3.77248,-10.0293,-185.984][-1.54693,-2.67937,8.59672e-007][0.411709,0.0621662,0.372361][0.771669,-7.51134,-185.984][-2.37004,-1.9887,2.64819e-007][0.378045,0.0621662,0.278876][1.99998,-6.48066,-186.984][-1.38739,-1.16416,-2.90401][0.391824,0.0595047,0.24061][1.99998,-6.48066,-186.984][-1.38739,-1.16416,-2.90401][0.391824,0.0595047,0.24061][4.5742,-8.6407,-186.984][-0.905558,-1.56847,-2.90401][0.420702,0.0595047,0.320806][3.77248,-10.0293,-185.984][-1.54693,-2.67937,8.59672e-007][0.411709,0.0621662,0.372361][0.771669,-7.51134,-185.984][-2.37004,-1.9887,2.64819e-007][0.378045,0.0621662,0.278876][-1.18697,-4.11887,-185.984][-2.90728,-1.05816,-7.51955e-007][0.356072,0.0621662,0.152924][0.319773,-3.57046,-186.984][-1.70189,-0.619437,-2.90401][0.372975,0.0595047,0.132563][0.319773,-3.57046,-186.984][-1.70189,-0.619437,-2.90401][0.372975,0.0595047,0.132563][1.99998,-6.48066,-186.984][-1.38739,-1.16416,-2.90401][0.391824,0.0595047,0.24061][0.771669,-7.51134,-185.984][-2.37004,-1.9887,2.64819e-007][0.378045,0.0621662,0.278876][-1.18697,-4.11887,-185.984][-2.90728,-1.05816,-7.51955e-007][0.356072,0.0621662,0.152924][-1.8672,-0.2611,-185.984][-3.09386,2.98023e-007,-3.36694e-007][0.348442,0.0621662,0.00969604][-0.26376,-0.2611,-186.984][-1.81111,0,-2.90401][0.366429,0.0595047,0.00969606][-0.26376,-0.2611,-186.984][-1.81111,0,-2.90401][0.366429,0.0595047,0.00969606][0.319773,-3.57046,-186.984][-1.70189,-0.619437,-2.90401][0.372975,0.0595047,0.132563][-1.18697,-4.11887,-185.984][-2.90728,-1.05816,-7.51955e-007][0.356072,0.0621662,0.152924][-1.8672,-0.2611,-185.984][-3.09386,2.98023e-007,-3.36694e-007][0.348442,0.0621662,0.00969604][-1.18697,3.59667,-185.984][-2.90728,1.05816,0][0.356073,0.0621662,-0.133532][0.319771,3.04826,-186.984][-1.70189,0.619437,-2.90401][0.372975,0.0595047,-0.113171][0.319771,3.04826,-186.984][-1.70189,0.619437,-2.90401][0.372975,0.0595047,-0.113171][-0.26376,-0.2611,-186.984][-1.81111,0,-2.90401][0.366429,0.0595047,0.00969606][-1.8672,-0.2611,-185.984][-3.09386,2.98023e-007,-3.36694e-007][0.348442,0.0621662,0.00969604][-1.18697,3.59667,-185.984][-2.90728,1.05816,0][0.356073,0.0621662,-0.133532][0.771671,6.98914,-185.984][-2.37004,1.9887,-6.47927e-007][0.378045,0.0621662,-0.259484][1.99998,5.95846,-186.984][-1.38739,1.16416,-2.90401][0.391824,0.0595047,-0.221218][1.99998,5.95846,-186.984][-1.38739,1.16416,-2.90401][0.391824,0.0595047,-0.221218][0.319771,3.04826,-186.984][-1.70189,0.619437,-2.90401][0.372975,0.0595047,-0.113171][-1.18697,3.59667,-185.984][-2.90728,1.05816,0][0.356073,0.0621662,-0.133532][0.771671,6.98914,-185.984][-2.37004,1.9887,-6.47927e-007][0.378045,0.0621662,-0.259484][3.77248,9.50712,-185.984][-1.54693,2.67937,-1.34739e-006][0.411709,0.0621662,-0.352969][4.5742,8.1185,-186.984][-0.905557,1.56847,-2.90401][0.420702,0.0595047,-0.301414][4.5742,8.1185,-186.984][-0.905557,1.56847,-2.90401][0.420702,0.0595047,-0.301414][1.99998,5.95846,-186.984][-1.38739,1.16416,-2.90401][0.391824,0.0595047,-0.221218][0.771671,6.98914,-185.984][-2.37004,1.9887,-6.47927e-007][0.378045,0.0621662,-0.259484][3.77248,9.50712,-185.984][-1.54693,2.67937,-1.34739e-006][0.411709,0.0621662,-0.352969][7.45352,10.8469,-185.984][-0.537244,3.04686,-8.61803e-007][0.453003,0.0621662,-0.402711][7.73195,9.26783,-186.984][-0.314497,1.7836,-2.90401][0.456127,0.0595047,-0.344085][7.73195,9.26783,-186.984][-0.314497,1.7836,-2.90401][0.456127,0.0595047,-0.344085][4.5742,8.1185,-186.984][-0.905557,1.56847,-2.90401][0.420702,0.0595047,-0.301414][3.77248,9.50712,-185.984][-1.54693,2.67937,-1.34739e-006][0.411709,0.0621662,-0.352969][7.45352,10.8469,-185.984][-0.537244,3.04686,-8.61803e-007][0.453003,0.0621662,-0.402711][11.3708,10.8469,-185.984][0.537243,3.04686,-9.89437e-007][0.496948,0.0621662,-0.402711][11.0924,9.26783,-186.984][0.314495,1.7836,-2.90401][0.493824,0.0595047,-0.344085][11.0924,9.26783,-186.984][0.314495,1.7836,-2.90401][0.493824,0.0595047,-0.344085][7.73195,9.26783,-186.984][-0.314497,1.7836,-2.90401][0.456127,0.0595047,-0.344085][7.45352,10.8469,-185.984][-0.537244,3.04686,-8.61803e-007][0.453003,0.0621662,-0.402711][11.3708,10.8469,-185.984][0.537243,3.04686,-9.89437e-007][0.496948,0.0621662,-0.402711][15.0518,9.50712,-185.984][1.54693,2.67937,-6.73473e-007][0.538243,0.0621662,-0.352969][14.2501,8.1185,-186.984][0.905557,1.56847,-2.90401][0.529249,0.0595047,-0.301414][14.2501,8.1185,-186.984][0.905557,1.56847,-2.90401][0.529249,0.0595047,-0.301414][11.0924,9.26783,-186.984][0.314495,1.7836,-2.90401][0.493824,0.0595047,-0.344085][11.3708,10.8469,-185.984][0.537243,3.04686,-9.89437e-007][0.496948,0.0621662,-0.402711][15.0518,9.50712,-185.984][1.54693,2.67937,-6.73473e-007][0.538243,0.0621662,-0.352969][18.0527,6.98914,-185.984][2.37004,1.9887,-2.55862e-007][0.571906,0.0621662,-0.259484][16.8244,5.95847,-186.984][1.38739,1.16416,-2.90401][0.558127,0.0595047,-0.221218][16.8244,5.95847,-186.984][1.38739,1.16416,-2.90401][0.558127,0.0595047,-0.221218][14.2501,8.1185,-186.984][0.905557,1.56847,-2.90401][0.529249,0.0595047,-0.301414][15.0518,9.50712,-185.984][1.54693,2.67937,-6.73473e-007][0.538243,0.0621662,-0.352969][18.0527,6.98914,-185.984][2.37004,1.9887,-2.55862e-007][0.571906,0.0621662,-0.259484][20.0113,3.59667,-185.984][2.90728,1.05816,1.5184e-006][0.593879,0.0621662,-0.133532][18.5046,3.04826,-186.984][1.70189,0.619438,-2.90401][0.576976,0.0595047,-0.113171][18.5046,3.04826,-186.984][1.70189,0.619438,-2.90401][0.576976,0.0595047,-0.113171][16.8244,5.95847,-186.984][1.38739,1.16416,-2.90401][0.558127,0.0595047,-0.221218][18.0527,6.98914,-185.984][2.37004,1.9887,-2.55862e-007][0.571906,0.0621662,-0.259484][18.5046,3.04826,-186.984][1.70189,0.619438,-2.90401][0.576976,0.0595047,-0.113171][19.0881,-0.261099,-186.984][1.81111,-9.53674e-007,-2.90401][0.583522,0.0595047,0.00969612][17.9351,-0.261099,-191.739][0.995879,-0.0445983,-0.0789685][0.566331,0.0446027,0.00969616][17.9351,-0.261099,-191.739][0.995879,-0.0445983,-0.0789685][0.566331,0.0446027,0.00969616][17.4211,2.65392,-191.739][0.794956,0.336045,-0.505092][0.560565,0.0446027,-0.09853][18.5046,3.04826,-186.984][1.70189,0.619438,-2.90401][0.576976,0.0595047,-0.113171][19.0881,-0.261099,-186.984][1.81111,-9.53674e-007,-2.90401][0.583522,0.0595047,0.00969612][18.5046,-3.57047,-186.984][1.70189,-0.619436,-2.90401][0.576976,0.0595047,0.132563][17.4211,-3.17613,-191.739][0.90324,-0.287606,-0.318496][0.560565,0.0446027,0.117922][17.4211,-3.17613,-191.739][0.90324,-0.287606,-0.318496][0.560565,0.0446027,0.117922][17.9351,-0.261099,-191.739][0.995879,-0.0445983,-0.0789685][0.566331,0.0446027,0.00969616][19.0881,-0.261099,-186.984][1.81111,-9.53674e-007,-2.90401][0.583522,0.0595047,0.00969612][18.5046,-3.57047,-186.984][1.70189,-0.619436,-2.90401][0.576976,0.0595047,0.132563][16.8244,-6.48067,-186.984][1.38739,-1.16416,-2.90401][0.558127,0.0595047,0.24061][15.9411,-5.73955,-191.739][0.660738,-0.506964,-0.553546][0.543962,0.0446027,0.213095][15.9411,-5.73955,-191.739][0.660738,-0.506964,-0.553546][0.543962,0.0446027,0.213095][17.4211,-3.17613,-191.739][0.90324,-0.287606,-0.318496][0.560565,0.0446027,0.117922][18.5046,-3.57047,-186.984][1.70189,-0.619436,-2.90401][0.576976,0.0595047,0.132563][16.8244,-6.48067,-186.984][1.38739,-1.16416,-2.90401][0.558127,0.0595047,0.24061][14.2501,-8.6407,-186.984][0.905556,-1.56847,-2.90401][0.529249,0.0595047,0.320806][13.6736,-7.64219,-191.739][0.466061,-0.86072,-0.204813][0.518525,0.0446027,0.283734][13.6736,-7.64219,-191.739][0.466061,-0.86072,-0.204813][0.518525,0.0446027,0.283734][15.9411,-5.73955,-191.739][0.660738,-0.506964,-0.553546][0.543962,0.0446027,0.213095][16.8244,-6.48067,-186.984][1.38739,-1.16416,-2.90401][0.558127,0.0595047,0.24061][14.2501,-8.6407,-186.984][0.905556,-1.56847,-2.90401][0.529249,0.0595047,0.320806][11.0924,-9.79003,-186.984][0.314495,-1.7836,-2.90401][0.493824,0.0595047,0.363477][10.8922,-8.65457,-191.739][0.195476,-0.897448,-0.395445][0.487321,0.0446027,0.321321][10.8922,-8.65457,-191.739][0.195476,-0.897448,-0.395445][0.487321,0.0446027,0.321321][13.6736,-7.64219,-191.739][0.466061,-0.86072,-0.204813][0.518525,0.0446027,0.283734][14.2501,-8.6407,-186.984][0.905556,-1.56847,-2.90401][0.529249,0.0595047,0.320806][11.0924,-9.79003,-186.984][0.314495,-1.7836,-2.90401][0.493824,0.0595047,0.363477][7.73195,-9.79003,-186.984][-0.314498,-1.7836,-2.90401][0.456127,0.0595047,0.363477][7.93217,-8.65457,-191.739][-0.108559,-0.816817,-0.56659][0.454116,0.0446027,0.321321][7.93217,-8.65457,-191.739][-0.108559,-0.816817,-0.56659][0.454116,0.0446027,0.321321][10.8922,-8.65457,-191.739][0.195476,-0.897448,-0.395445][0.487321,0.0446027,0.321321][11.0924,-9.79003,-186.984][0.314495,-1.7836,-2.90401][0.493824,0.0595047,0.363477][7.73195,-9.79003,-186.984][-0.314498,-1.7836,-2.90401][0.456127,0.0595047,0.363477][4.5742,-8.6407,-186.984][-0.905558,-1.56847,-2.90401][0.420702,0.0595047,0.320806][5.15069,-7.64219,-191.739][-0.496069,-0.851523,-0.169778][0.422913,0.0446027,0.283734][5.15069,-7.64219,-191.739][-0.496069,-0.851523,-0.169778][0.422913,0.0446027,0.283734][7.93217,-8.65457,-191.739][-0.108559,-0.816817,-0.56659][0.454116,0.0446027,0.321321][7.73195,-9.79003,-186.984][-0.314498,-1.7836,-2.90401][0.456127,0.0595047,0.363477][4.5742,-8.6407,-186.984][-0.905558,-1.56847,-2.90401][0.420702,0.0595047,0.320806][1.99998,-6.48066,-186.984][-1.38739,-1.16416,-2.90401][0.391824,0.0595047,0.24061][2.88321,-5.73955,-191.739][-0.686802,-0.634081,-0.355308][0.397475,0.0446027,0.213095][2.88321,-5.73955,-191.739][-0.686802,-0.634081,-0.355308][0.397475,0.0446027,0.213095][5.15069,-7.64219,-191.739][-0.496069,-0.851523,-0.169778][0.422913,0.0446027,0.283734][4.5742,-8.6407,-186.984][-0.905558,-1.56847,-2.90401][0.420702,0.0595047,0.320806][1.99998,-6.48066,-186.984][-1.38739,-1.16416,-2.90401][0.391824,0.0595047,0.24061][0.319773,-3.57046,-186.984][-1.70189,-0.619437,-2.90401][0.372975,0.0595047,0.132563][1.40322,-3.17612,-191.739][-0.776,-0.32503,-0.540536][0.380873,0.0446027,0.117922][1.40322,-3.17612,-191.739][-0.776,-0.32503,-0.540536][0.380873,0.0446027,0.117922][2.88321,-5.73955,-191.739][-0.686802,-0.634081,-0.355308][0.397475,0.0446027,0.213095][1.99998,-6.48066,-186.984][-1.38739,-1.16416,-2.90401][0.391824,0.0595047,0.24061][0.319773,-3.57046,-186.984][-1.70189,-0.619437,-2.90401][0.372975,0.0595047,0.132563][-0.26376,-0.2611,-186.984][-1.81111,0,-2.90401][0.366429,0.0595047,0.00969606][0.889219,-0.261101,-191.739][-0.999993,-0.00381835,-0.000235588][0.375107,0.0446027,0.00969611][0.889219,-0.261101,-191.739][-0.999993,-0.00381835,-0.000235588][0.375107,0.0446027,0.00969611][1.40322,-3.17612,-191.739][-0.776,-0.32503,-0.540536][0.380873,0.0446027,0.117922][0.319773,-3.57046,-186.984][-1.70189,-0.619437,-2.90401][0.372975,0.0595047,0.132563][-0.26376,-0.2611,-186.984][-1.81111,0,-2.90401][0.366429,0.0595047,0.00969606][0.319771,3.04826,-186.984][-1.70189,0.619437,-2.90401][0.372975,0.0595047,-0.113171][1.40322,2.65392,-191.739][-0.935479,0.283156,-0.211429][0.380873,0.0446027,-0.09853][1.40322,2.65392,-191.739][-0.935479,0.283156,-0.211429][0.380873,0.0446027,-0.09853][0.889219,-0.261101,-191.739][-0.999993,-0.00381835,-0.000235588][0.375107,0.0446027,0.00969611][-0.26376,-0.2611,-186.984][-1.81111,0,-2.90401][0.366429,0.0595047,0.00969606][0.319771,3.04826,-186.984][-1.70189,0.619437,-2.90401][0.372975,0.0595047,-0.113171][1.99998,5.95846,-186.984][-1.38739,1.16416,-2.90401][0.391824,0.0595047,-0.221218][2.88321,5.21735,-191.739][-0.699334,0.523933,-0.486237][0.397476,0.0446027,-0.193702][2.88321,5.21735,-191.739][-0.699334,0.523933,-0.486237][0.397476,0.0446027,-0.193702][1.40322,2.65392,-191.739][-0.935479,0.283156,-0.211429][0.380873,0.0446027,-0.09853][0.319771,3.04826,-186.984][-1.70189,0.619437,-2.90401][0.372975,0.0595047,-0.113171][1.99998,5.95846,-186.984][-1.38739,1.16416,-2.90401][0.391824,0.0595047,-0.221218][4.5742,8.1185,-186.984][-0.905557,1.56847,-2.90401][0.420702,0.0595047,-0.301414][5.15069,7.11999,-191.739][-0.485121,0.864879,0.129004][0.422913,0.0446027,-0.264342][5.15069,7.11999,-191.739][-0.485121,0.864879,0.129004][0.422913,0.0446027,-0.264342][2.88321,5.21735,-191.739][-0.699334,0.523933,-0.486237][0.397476,0.0446027,-0.193702][1.99998,5.95846,-186.984][-1.38739,1.16416,-2.90401][0.391824,0.0595047,-0.221218][4.5742,8.1185,-186.984][-0.905557,1.56847,-2.90401][0.420702,0.0595047,-0.301414][7.73195,9.26783,-186.984][-0.314497,1.7836,-2.90401][0.456127,0.0595047,-0.344085][7.93217,8.13237,-191.739][-0.224884,0.969533,-0.0971222][0.454116,0.0446027,-0.301929][7.93217,8.13237,-191.739][-0.224884,0.969533,-0.0971222][0.454116,0.0446027,-0.301929][5.15069,7.11999,-191.739][-0.485121,0.864879,0.129004][0.422913,0.0446027,-0.264342][4.5742,8.1185,-186.984][-0.905557,1.56847,-2.90401][0.420702,0.0595047,-0.301414][7.73195,9.26783,-186.984][-0.314497,1.7836,-2.90401][0.456127,0.0595047,-0.344085][11.0924,9.26783,-186.984][0.314495,1.7836,-2.90401][0.493824,0.0595047,-0.344085][10.8922,8.13237,-191.739][0.103899,0.880924,-0.461713][0.487321,0.0446027,-0.301929][10.8922,8.13237,-191.739][0.103899,0.880924,-0.461713][0.487321,0.0446027,-0.301929][7.93217,8.13237,-191.739][-0.224884,0.969533,-0.0971222][0.454116,0.0446027,-0.301929][7.73195,9.26783,-186.984][-0.314497,1.7836,-2.90401][0.456127,0.0595047,-0.344085][11.0924,9.26783,-186.984][0.314495,1.7836,-2.90401][0.493824,0.0595047,-0.344085][14.2501,8.1185,-186.984][0.905557,1.56847,-2.90401][0.529249,0.0595047,-0.301414][13.6736,7.11999,-191.739][0.52865,0.843749,0.0928282][0.518525,0.0446027,-0.264342][13.6736,7.11999,-191.739][0.52865,0.843749,0.0928282][0.518525,0.0446027,-0.264342][10.8922,8.13237,-191.739][0.103899,0.880924,-0.461713][0.487321,0.0446027,-0.301929][11.0924,9.26783,-186.984][0.314495,1.7836,-2.90401][0.493824,0.0595047,-0.344085][14.2501,8.1185,-186.984][0.905557,1.56847,-2.90401][0.529249,0.0595047,-0.301414][16.8244,5.95847,-186.984][1.38739,1.16416,-2.90401][0.558127,0.0595047,-0.221218][15.9411,5.21735,-191.739][0.725164,0.66953,-0.160833][0.543962,0.0446027,-0.193702][15.9411,5.21735,-191.739][0.725164,0.66953,-0.160833][0.543962,0.0446027,-0.193702][13.6736,7.11999,-191.739][0.52865,0.843749,0.0928282][0.518525,0.0446027,-0.264342][14.2501,8.1185,-186.984][0.905557,1.56847,-2.90401][0.529249,0.0595047,-0.301414][16.8244,5.95847,-186.984][1.38739,1.16416,-2.90401][0.558127,0.0595047,-0.221218][18.5046,3.04826,-186.984][1.70189,0.619438,-2.90401][0.576976,0.0595047,-0.113171][17.4211,2.65392,-191.739][0.794956,0.336045,-0.505092][0.560565,0.0446027,-0.09853][17.4211,2.65392,-191.739][0.794956,0.336045,-0.505092][0.560565,0.0446027,-0.09853][15.9411,5.21735,-191.739][0.725164,0.66953,-0.160833][0.543962,0.0446027,-0.193702][16.8244,5.95847,-186.984][1.38739,1.16416,-2.90401][0.558127,0.0595047,-0.221218][9.37272,-0.0333973,-201.016][0,0,-1][0.470276,0.0142325,0.00124225][9.37272,-4.36021,-199.857][1.92765e-007,-0.5309,-0.847435][0.470276,0.0180277,0.161884][7.20932,-3.78053,-199.857][-0.26545,-0.459773,-0.847435][0.446007,0.0180277,0.140362][9.37272,-0.0333973,-201.016][0,0,-1][0.470276,0.0142325,0.00124225][7.20932,-3.78053,-199.857][-0.26545,-0.459773,-0.847435][0.446007,0.0180277,0.140362][5.62559,-2.19681,-199.857][-0.459773,-0.26545,-0.847435][0.42824,0.0180277,0.0815632][9.37272,-0.0333973,-201.016][0,0,-1][0.470276,0.0142325,0.00124225][5.62559,-2.19681,-199.857][-0.459773,-0.26545,-0.847435][0.42824,0.0180277,0.0815632][5.04591,-0.0333987,-199.857][-0.5309,0,-0.847435][0.421737,0.0180277,0.00124227][9.37272,-0.0333973,-201.016][0,0,-1][0.470276,0.0142325,0.00124225][5.04591,-0.0333987,-199.857][-0.5309,0,-0.847435][0.421737,0.0180277,0.00124227][5.62559,2.13001,-199.857][-0.459773,0.26545,-0.847435][0.42824,0.0180277,-0.0790786][9.37272,-0.0333973,-201.016][0,0,-1][0.470276,0.0142325,0.00124225][5.62559,2.13001,-199.857][-0.459773,0.26545,-0.847435][0.42824,0.0180277,-0.0790786][7.20932,3.71373,-199.857][-0.26545,0.459773,-0.847435][0.446007,0.0180277,-0.137878][9.37272,-0.0333973,-201.016][0,0,-1][0.470276,0.0142325,0.00124225][7.20932,3.71373,-199.857][-0.26545,0.459773,-0.847435][0.446007,0.0180277,-0.137878][9.37272,4.29342,-199.857][-5.9605e-007,0.5309,-0.847435][0.470276,0.0180277,-0.1594][9.37272,-0.0333973,-201.016][0,0,-1][0.470276,0.0142325,0.00124225][9.37272,4.29342,-199.857][-5.9605e-007,0.5309,-0.847435][0.470276,0.0180277,-0.1594][11.5361,3.71373,-199.857][0.26545,0.459773,-0.847435][0.494546,0.0180277,-0.137878][9.37272,-0.0333973,-201.016][0,0,-1][0.470276,0.0142325,0.00124225][11.5361,3.71373,-199.857][0.26545,0.459773,-0.847435][0.494546,0.0180277,-0.137878][13.1199,2.13001,-199.857][0.459772,0.26545,-0.847435][0.512312,0.0180277,-0.0790788][9.37272,-0.0333973,-201.016][0,0,-1][0.470276,0.0142325,0.00124225][13.1199,2.13001,-199.857][0.459772,0.26545,-0.847435][0.512312,0.0180277,-0.0790788][13.6995,-0.0333933,-199.857][0.5309,4.23576e-007,-0.847435][0.518815,0.0180277,0.00124212][9.37272,-0.0333973,-201.016][0,0,-1][0.470276,0.0142325,0.00124225][13.6995,-0.0333933,-199.857][0.5309,4.23576e-007,-0.847435][0.518815,0.0180277,0.00124212][13.1199,-2.1968,-199.857][0.459773,-0.265449,-0.847435][0.512312,0.0180277,0.081563][9.37272,-0.0333973,-201.016][0,0,-1][0.470276,0.0142325,0.00124225][13.1199,-2.1968,-199.857][0.459773,-0.265449,-0.847435][0.512312,0.0180277,0.081563][11.5361,-3.78053,-199.857][0.26545,-0.459773,-0.847435][0.494546,0.0180277,0.140362][9.37272,-0.0333973,-201.016][0,0,-1][0.470276,0.0142325,0.00124225][11.5361,-3.78053,-199.857][0.26545,-0.459773,-0.847435][0.494546,0.0180277,0.140362][9.37272,-4.36021,-199.857][1.92765e-007,-0.5309,-0.847435][0.470276,0.0180277,0.161884][5.62559,-6.52362,-196.69][-0.437992,-0.758624,-0.482342][0.42824,0.0283967,0.242205][7.20932,-3.78053,-199.857][-0.26545,-0.459773,-0.847435][0.446007,0.0180277,0.140362][9.37272,-4.36021,-199.857][1.92765e-007,-0.5309,-0.847435][0.470276,0.0180277,0.161884][9.37272,-4.36021,-199.857][1.92765e-007,-0.5309,-0.847435][0.470276,0.0180277,0.161884][9.37272,-7.52766,-196.69][3.97612e-007,-0.875983,-0.482341][0.470276,0.0283967,0.279482][5.62559,-6.52362,-196.69][-0.437992,-0.758624,-0.482342][0.42824,0.0283967,0.242205][2.88251,-3.78053,-196.69][-0.758624,-0.437992,-0.482342][0.397468,0.0283967,0.140362][5.62559,-2.19681,-199.857][-0.459773,-0.26545,-0.847435][0.42824,0.0180277,0.0815632][7.20932,-3.78053,-199.857][-0.26545,-0.459773,-0.847435][0.446007,0.0180277,0.140362][7.20932,-3.78053,-199.857][-0.26545,-0.459773,-0.847435][0.446007,0.0180277,0.140362][5.62559,-6.52362,-196.69][-0.437992,-0.758624,-0.482342][0.42824,0.0283967,0.242205][2.88251,-3.78053,-196.69][-0.758624,-0.437992,-0.482342][0.397468,0.0283967,0.140362][1.87846,-0.0333996,-196.69][-0.875983,-3.55758e-007,-0.482341][0.386204,0.0283967,0.00124227][5.04591,-0.0333987,-199.857][-0.5309,0,-0.847435][0.421737,0.0180277,0.00124227][5.62559,-2.19681,-199.857][-0.459773,-0.26545,-0.847435][0.42824,0.0180277,0.0815632][5.62559,-2.19681,-199.857][-0.459773,-0.26545,-0.847435][0.42824,0.0180277,0.0815632][2.88251,-3.78053,-196.69][-0.758624,-0.437992,-0.482342][0.397468,0.0283967,0.140362][1.87846,-0.0333996,-196.69][-0.875983,-3.55758e-007,-0.482341][0.386204,0.0283967,0.00124227][2.8825,3.71373,-196.69][-0.758624,0.437991,-0.482341][0.397468,0.0283967,-0.137878][5.62559,2.13001,-199.857][-0.459773,0.26545,-0.847435][0.42824,0.0180277,-0.0790786][5.04591,-0.0333987,-199.857][-0.5309,0,-0.847435][0.421737,0.0180277,0.00124227][5.04591,-0.0333987,-199.857][-0.5309,0,-0.847435][0.421737,0.0180277,0.00124227][1.87846,-0.0333996,-196.69][-0.875983,-3.55758e-007,-0.482341][0.386204,0.0283967,0.00124227][2.8825,3.71373,-196.69][-0.758624,0.437991,-0.482341][0.397468,0.0283967,-0.137878][5.62559,6.45682,-196.69][-0.437992,0.758623,-0.482342][0.42824,0.0283967,-0.239721][7.20932,3.71373,-199.857][-0.26545,0.459773,-0.847435][0.446007,0.0180277,-0.137878][5.62559,2.13001,-199.857][-0.459773,0.26545,-0.847435][0.42824,0.0180277,-0.0790786][5.62559,2.13001,-199.857][-0.459773,0.26545,-0.847435][0.42824,0.0180277,-0.0790786][2.8825,3.71373,-196.69][-0.758624,0.437991,-0.482341][0.397468,0.0283967,-0.137878][5.62559,6.45682,-196.69][-0.437992,0.758623,-0.482342][0.42824,0.0283967,-0.239721][9.37272,7.46086,-196.69][-5.85954e-007,0.875983,-0.482342][0.470276,0.0283967,-0.276998][9.37272,4.29342,-199.857][-5.9605e-007,0.5309,-0.847435][0.470276,0.0180277,-0.1594][7.20932,3.71373,-199.857][-0.26545,0.459773,-0.847435][0.446007,0.0180277,-0.137878][7.20932,3.71373,-199.857][-0.26545,0.459773,-0.847435][0.446007,0.0180277,-0.137878][5.62559,6.45682,-196.69][-0.437992,0.758623,-0.482342][0.42824,0.0283967,-0.239721][9.37272,7.46086,-196.69][-5.85954e-007,0.875983,-0.482342][0.470276,0.0283967,-0.276998][13.1199,6.45683,-196.69][0.437991,0.758624,-0.482341][0.512312,0.0283967,-0.239721][11.5361,3.71373,-199.857][0.26545,0.459773,-0.847435][0.494546,0.0180277,-0.137878][9.37272,4.29342,-199.857][-5.9605e-007,0.5309,-0.847435][0.470276,0.0180277,-0.1594][9.37272,4.29342,-199.857][-5.9605e-007,0.5309,-0.847435][0.470276,0.0180277,-0.1594][9.37272,7.46086,-196.69][-5.85954e-007,0.875983,-0.482342][0.470276,0.0283967,-0.276998][13.1199,6.45683,-196.69][0.437991,0.758624,-0.482341][0.512312,0.0283967,-0.239721][15.8629,3.71374,-196.69][0.758624,0.437992,-0.482341][0.543085,0.0283967,-0.137878][13.1199,2.13001,-199.857][0.459772,0.26545,-0.847435][0.512312,0.0180277,-0.0790788][11.5361,3.71373,-199.857][0.26545,0.459773,-0.847435][0.494546,0.0180277,-0.137878][11.5361,3.71373,-199.857][0.26545,0.459773,-0.847435][0.494546,0.0180277,-0.137878][13.1199,6.45683,-196.69][0.437991,0.758624,-0.482341][0.512312,0.0283967,-0.239721][15.8629,3.71374,-196.69][0.758624,0.437992,-0.482341][0.543085,0.0283967,-0.137878][16.867,-0.0333904,-196.69][0.875983,6.80126e-007,-0.482341][0.554348,0.0283967,0.00124201][13.6995,-0.0333933,-199.857][0.5309,4.23576e-007,-0.847435][0.518815,0.0180277,0.00124212][13.1199,2.13001,-199.857][0.459772,0.26545,-0.847435][0.512312,0.0180277,-0.0790788][13.1199,2.13001,-199.857][0.459772,0.26545,-0.847435][0.512312,0.0180277,-0.0790788][15.8629,3.71374,-196.69][0.758624,0.437992,-0.482341][0.543085,0.0283967,-0.137878][16.867,-0.0333904,-196.69][0.875983,6.80126e-007,-0.482341][0.554348,0.0283967,0.00124201][15.8629,-3.78052,-196.69][0.758624,-0.437991,-0.482342][0.543085,0.0283967,0.140362][13.1199,-2.1968,-199.857][0.459773,-0.265449,-0.847435][0.512312,0.0180277,0.081563][13.6995,-0.0333933,-199.857][0.5309,4.23576e-007,-0.847435][0.518815,0.0180277,0.00124212][13.6995,-0.0333933,-199.857][0.5309,4.23576e-007,-0.847435][0.518815,0.0180277,0.00124212][16.867,-0.0333904,-196.69][0.875983,6.80126e-007,-0.482341][0.554348,0.0283967,0.00124201][15.8629,-3.78052,-196.69][0.758624,-0.437991,-0.482342][0.543085,0.0283967,0.140362][13.1199,-6.52361,-196.69][0.437992,-0.758623,-0.482342][0.512312,0.0283967,0.242205][11.5361,-3.78053,-199.857][0.26545,-0.459773,-0.847435][0.494546,0.0180277,0.140362][13.1199,-2.1968,-199.857][0.459773,-0.265449,-0.847435][0.512312,0.0180277,0.081563][13.1199,-2.1968,-199.857][0.459773,-0.265449,-0.847435][0.512312,0.0180277,0.081563][15.8629,-3.78052,-196.69][0.758624,-0.437991,-0.482342][0.543085,0.0283967,0.140362][13.1199,-6.52361,-196.69][0.437992,-0.758623,-0.482342][0.512312,0.0283967,0.242205][9.37272,-7.52766,-196.69][3.97612e-007,-0.875983,-0.482341][0.470276,0.0283967,0.279482][9.37272,-4.36021,-199.857][1.92765e-007,-0.5309,-0.847435][0.470276,0.0180277,0.161884][11.5361,-3.78053,-199.857][0.26545,-0.459773,-0.847435][0.494546,0.0180277,0.140362][11.5361,-3.78053,-199.857][0.26545,-0.459773,-0.847435][0.494546,0.0180277,0.140362][13.1199,-6.52361,-196.69][0.437992,-0.758623,-0.482342][0.512312,0.0283967,0.242205][9.37272,-7.52766,-196.69][3.97612e-007,-0.875983,-0.482341][0.470276,0.0283967,0.279482][5.04591,-7.52766,-192.363][-0.520662,-0.836765,-0.169517][0.421737,0.042561,0.279482][5.62559,-6.52362,-196.69][-0.437992,-0.758624,-0.482342][0.42824,0.0283967,0.242205][9.37272,-7.52766,-196.69][3.97612e-007,-0.875983,-0.482341][0.470276,0.0283967,0.279482][9.37272,-7.52766,-196.69][3.97612e-007,-0.875983,-0.482341][0.470276,0.0283967,0.279482][9.37272,-8.68702,-192.363][-0.0832652,-0.99176,0.0973597][0.470276,0.042561,0.322526][5.04591,-7.52766,-192.363][-0.520662,-0.836765,-0.169517][0.421737,0.042561,0.279482][1.87846,-4.36021,-192.363][-0.885408,-0.425288,0.187573][0.386204,0.042561,0.161884][2.88251,-3.78053,-196.69][-0.758624,-0.437992,-0.482342][0.397468,0.0283967,0.140362][5.62559,-6.52362,-196.69][-0.437992,-0.758624,-0.482342][0.42824,0.0283967,0.242205][5.62559,-6.52362,-196.69][-0.437992,-0.758624,-0.482342][0.42824,0.0283967,0.242205][5.04591,-7.52766,-192.363][-0.520662,-0.836765,-0.169517][0.421737,0.042561,0.279482][1.87846,-4.36021,-192.363][-0.885408,-0.425288,0.187573][0.386204,0.042561,0.161884][0.719097,-0.0334,-192.363][-0.999335,0.0363081,0.00337864][0.373198,0.042561,0.00124226][1.87846,-0.0333996,-196.69][-0.875983,-3.55758e-007,-0.482341][0.386204,0.0283967,0.00124227][2.88251,-3.78053,-196.69][-0.758624,-0.437992,-0.482342][0.397468,0.0283967,0.140362][2.88251,-3.78053,-196.69][-0.758624,-0.437992,-0.482342][0.397468,0.0283967,0.140362][1.87846,-4.36021,-192.363][-0.885408,-0.425288,0.187573][0.386204,0.042561,0.161884][0.719097,-0.0334,-192.363][-0.999335,0.0363081,0.00337864][0.373198,0.042561,0.00124226][1.87846,4.29341,-192.363][-0.804479,0.533633,0.260864][0.386204,0.042561,-0.1594][2.8825,3.71373,-196.69][-0.758624,0.437991,-0.482341][0.397468,0.0283967,-0.137878][1.87846,-0.0333996,-196.69][-0.875983,-3.55758e-007,-0.482341][0.386204,0.0283967,0.00124227][1.87846,-0.0333996,-196.69][-0.875983,-3.55758e-007,-0.482341][0.386204,0.0283967,0.00124227][0.719097,-0.0334,-192.363][-0.999335,0.0363081,0.00337864][0.373198,0.042561,0.00124226][1.87846,4.29341,-192.363][-0.804479,0.533633,0.260864][0.386204,0.042561,-0.1594][5.04591,7.46086,-192.363][-0.481261,0.869935,0.107707][0.421737,0.042561,-0.276998][5.62559,6.45682,-196.69][-0.437992,0.758623,-0.482342][0.42824,0.0283967,-0.239721][2.8825,3.71373,-196.69][-0.758624,0.437991,-0.482341][0.397468,0.0283967,-0.137878][2.8825,3.71373,-196.69][-0.758624,0.437991,-0.482341][0.397468,0.0283967,-0.137878][1.87846,4.29341,-192.363][-0.804479,0.533633,0.260864][0.386204,0.042561,-0.1594][5.04591,7.46086,-192.363][-0.481261,0.869935,0.107707][0.421737,0.042561,-0.276998][9.37272,8.62023,-192.363][0.0534679,0.961753,0.26865][0.470276,0.042561,-0.320041][9.37272,7.46086,-196.69][-5.85954e-007,0.875983,-0.482342][0.470276,0.0283967,-0.276998][5.62559,6.45682,-196.69][-0.437992,0.758623,-0.482342][0.42824,0.0283967,-0.239721][5.62559,6.45682,-196.69][-0.437992,0.758623,-0.482342][0.42824,0.0283967,-0.239721][5.04591,7.46086,-192.363][-0.481261,0.869935,0.107707][0.421737,0.042561,-0.276998][9.37272,8.62023,-192.363][0.0534679,0.961753,0.26865][0.470276,0.042561,-0.320041][13.6995,7.46087,-192.363][0.497329,0.86378,0.0809193][0.518815,0.042561,-0.276998][13.1199,6.45683,-196.69][0.437991,0.758624,-0.482341][0.512312,0.0283967,-0.239721][9.37272,7.46086,-196.69][-5.85954e-007,0.875983,-0.482342][0.470276,0.0283967,-0.276998][9.37272,7.46086,-196.69][-5.85954e-007,0.875983,-0.482342][0.470276,0.0283967,-0.276998][9.37272,8.62023,-192.363][0.0534679,0.961753,0.26865][0.470276,0.042561,-0.320041][13.6995,7.46087,-192.363][0.497329,0.86378,0.0809193][0.518815,0.042561,-0.276998][16.867,4.29342,-192.363][0.875492,0.436132,0.208095][0.554348,0.042561,-0.1594][15.8629,3.71374,-196.69][0.758624,0.437992,-0.482341][0.543085,0.0283967,-0.137878][13.1199,6.45683,-196.69][0.437991,0.758624,-0.482341][0.512312,0.0283967,-0.239721][13.1199,6.45683,-196.69][0.437991,0.758624,-0.482341][0.512312,0.0283967,-0.239721][13.6995,7.46087,-192.363][0.497329,0.86378,0.0809193][0.518815,0.042561,-0.276998][16.867,4.29342,-192.363][0.875492,0.436132,0.208095][0.554348,0.042561,-0.1594][18.0264,-0.0333893,-192.363][0.997599,0.0101198,-0.0685147][0.567354,0.042561,0.00124196][16.867,-0.0333904,-196.69][0.875983,6.80126e-007,-0.482341][0.554348,0.0283967,0.00124201][15.8629,3.71374,-196.69][0.758624,0.437992,-0.482341][0.543085,0.0283967,-0.137878][15.8629,3.71374,-196.69][0.758624,0.437992,-0.482341][0.543085,0.0283967,-0.137878][16.867,4.29342,-192.363][0.875492,0.436132,0.208095][0.554348,0.042561,-0.1594][18.0264,-0.0333893,-192.363][0.997599,0.0101198,-0.0685147][0.567354,0.042561,0.00124196][16.867,-4.3602,-192.363][0.820344,-0.561025,0.110844][0.554348,0.042561,0.161884][15.8629,-3.78052,-196.69][0.758624,-0.437991,-0.482342][0.543085,0.0283967,0.140362][16.867,-0.0333904,-196.69][0.875983,6.80126e-007,-0.482341][0.554348,0.0283967,0.00124201][16.867,-0.0333904,-196.69][0.875983,6.80126e-007,-0.482341][0.554348,0.0283967,0.00124201][18.0264,-0.0333893,-192.363][0.997599,0.0101198,-0.0685147][0.567354,0.042561,0.00124196][16.867,-4.3602,-192.363][0.820344,-0.561025,0.110844][0.554348,0.042561,0.161884][13.6995,-7.52765,-192.363][0.483456,-0.849481,-0.21131][0.518815,0.042561,0.279482][13.1199,-6.52361,-196.69][0.437992,-0.758623,-0.482342][0.512312,0.0283967,0.242205][15.8629,-3.78052,-196.69][0.758624,-0.437991,-0.482342][0.543085,0.0283967,0.140362][15.8629,-3.78052,-196.69][0.758624,-0.437991,-0.482342][0.543085,0.0283967,0.140362][16.867,-4.3602,-192.363][0.820344,-0.561025,0.110844][0.554348,0.042561,0.161884][13.6995,-7.52765,-192.363][0.483456,-0.849481,-0.21131][0.518815,0.042561,0.279482][9.37272,-8.68702,-192.363][-0.0832652,-0.99176,0.0973597][0.470276,0.042561,0.322526][9.37272,-7.52766,-196.69][3.97612e-007,-0.875983,-0.482341][0.470276,0.0283967,0.279482][13.1199,-6.52361,-196.69][0.437992,-0.758623,-0.482342][0.512312,0.0283967,0.242205][13.1199,-6.52361,-196.69][0.437992,-0.758623,-0.482342][0.512312,0.0283967,0.242205][13.6995,-7.52765,-192.363][0.483456,-0.849481,-0.21131][0.518815,0.042561,0.279482][9.37272,-8.68702,-192.363][-0.0832652,-0.99176,0.0973597][0.470276,0.042561,0.322526][13.6995,-7.52765,-192.363][0.483456,-0.849481,-0.21131][0.518815,0.042561,0.279482][16.867,-4.3602,-192.363][0.820344,-0.561025,0.110844][0.554348,0.042561,0.161884][17.4211,-3.17613,-191.739][0.90324,-0.287606,-0.318496][0.560565,0.0446027,0.117922][17.4211,-3.17613,-191.739][0.90324,-0.287606,-0.318496][0.560565,0.0446027,0.117922][15.9411,-5.73955,-191.739][0.660738,-0.506964,-0.553546][0.543962,0.0446027,0.213095][13.6995,-7.52765,-192.363][0.483456,-0.849481,-0.21131][0.518815,0.042561,0.279482][16.867,-4.3602,-192.363][0.820344,-0.561025,0.110844][0.554348,0.042561,0.161884][18.0264,-0.0333893,-192.363][0.997599,0.0101198,-0.0685147][0.567354,0.042561,0.00124196][17.9351,-0.261099,-191.739][0.995879,-0.0445983,-0.0789685][0.566331,0.0446027,0.00969616][17.9351,-0.261099,-191.739][0.995879,-0.0445983,-0.0789685][0.566331,0.0446027,0.00969616][17.4211,-3.17613,-191.739][0.90324,-0.287606,-0.318496][0.560565,0.0446027,0.117922][16.867,-4.3602,-192.363][0.820344,-0.561025,0.110844][0.554348,0.042561,0.161884][18.0264,-0.0333893,-192.363][0.997599,0.0101198,-0.0685147][0.567354,0.042561,0.00124196][17.4211,2.65392,-191.739][0.794956,0.336045,-0.505092][0.560565,0.0446027,-0.09853][17.9351,-0.261099,-191.739][0.995879,-0.0445983,-0.0789685][0.566331,0.0446027,0.00969616][18.0264,-0.0333893,-192.363][0.997599,0.0101198,-0.0685147][0.567354,0.042561,0.00124196][16.867,4.29342,-192.363][0.875492,0.436132,0.208095][0.554348,0.042561,-0.1594][15.9411,5.21735,-191.739][0.725164,0.66953,-0.160833][0.543962,0.0446027,-0.193702][15.9411,5.21735,-191.739][0.725164,0.66953,-0.160833][0.543962,0.0446027,-0.193702][17.4211,2.65392,-191.739][0.794956,0.336045,-0.505092][0.560565,0.0446027,-0.09853][18.0264,-0.0333893,-192.363][0.997599,0.0101198,-0.0685147][0.567354,0.042561,0.00124196][16.867,4.29342,-192.363][0.875492,0.436132,0.208095][0.554348,0.042561,-0.1594][13.6995,7.46087,-192.363][0.497329,0.86378,0.0809193][0.518815,0.042561,-0.276998][13.6736,7.11999,-191.739][0.52865,0.843749,0.0928282][0.518525,0.0446027,-0.264342][13.6736,7.11999,-191.739][0.52865,0.843749,0.0928282][0.518525,0.0446027,-0.264342][15.9411,5.21735,-191.739][0.725164,0.66953,-0.160833][0.543962,0.0446027,-0.193702][16.867,4.29342,-192.363][0.875492,0.436132,0.208095][0.554348,0.042561,-0.1594][13.6995,7.46087,-192.363][0.497329,0.86378,0.0809193][0.518815,0.042561,-0.276998][10.8922,8.13237,-191.739][0.103899,0.880924,-0.461713][0.487321,0.0446027,-0.301929][13.6736,7.11999,-191.739][0.52865,0.843749,0.0928282][0.518525,0.0446027,-0.264342][13.6995,7.46087,-192.363][0.497329,0.86378,0.0809193][0.518815,0.042561,-0.276998][9.37272,8.62023,-192.363][0.0534679,0.961753,0.26865][0.470276,0.042561,-0.320041][7.93217,8.13237,-191.739][-0.224884,0.969533,-0.0971222][0.454116,0.0446027,-0.301929][7.93217,8.13237,-191.739][-0.224884,0.969533,-0.0971222][0.454116,0.0446027,-0.301929][10.8922,8.13237,-191.739][0.103899,0.880924,-0.461713][0.487321,0.0446027,-0.301929][13.6995,7.46087,-192.363][0.497329,0.86378,0.0809193][0.518815,0.042561,-0.276998][9.37272,8.62023,-192.363][0.0534679,0.961753,0.26865][0.470276,0.042561,-0.320041][5.04591,7.46086,-192.363][-0.481261,0.869935,0.107707][0.421737,0.042561,-0.276998][5.15069,7.11999,-191.739][-0.485121,0.864879,0.129004][0.422913,0.0446027,-0.264342][5.15069,7.11999,-191.739][-0.485121,0.864879,0.129004][0.422913,0.0446027,-0.264342][7.93217,8.13237,-191.739][-0.224884,0.969533,-0.0971222][0.454116,0.0446027,-0.301929][9.37272,8.62023,-192.363][0.0534679,0.961753,0.26865][0.470276,0.042561,-0.320041][5.04591,7.46086,-192.363][-0.481261,0.869935,0.107707][0.421737,0.042561,-0.276998][2.88321,5.21735,-191.739][-0.699334,0.523933,-0.486237][0.397476,0.0446027,-0.193702][5.15069,7.11999,-191.739][-0.485121,0.864879,0.129004][0.422913,0.0446027,-0.264342][5.04591,7.46086,-192.363][-0.481261,0.869935,0.107707][0.421737,0.042561,-0.276998][1.87846,4.29341,-192.363][-0.804479,0.533633,0.260864][0.386204,0.042561,-0.1594][1.40322,2.65392,-191.739][-0.935479,0.283156,-0.211429][0.380873,0.0446027,-0.09853][1.40322,2.65392,-191.739][-0.935479,0.283156,-0.211429][0.380873,0.0446027,-0.09853][2.88321,5.21735,-191.739][-0.699334,0.523933,-0.486237][0.397476,0.0446027,-0.193702][5.04591,7.46086,-192.363][-0.481261,0.869935,0.107707][0.421737,0.042561,-0.276998][1.87846,4.29341,-192.363][-0.804479,0.533633,0.260864][0.386204,0.042561,-0.1594][0.719097,-0.0334,-192.363][-0.999335,0.0363081,0.00337864][0.373198,0.042561,0.00124226][0.889219,-0.261101,-191.739][-0.999993,-0.00381835,-0.000235588][0.375107,0.0446027,0.00969611][0.889219,-0.261101,-191.739][-0.999993,-0.00381835,-0.000235588][0.375107,0.0446027,0.00969611][1.40322,2.65392,-191.739][-0.935479,0.283156,-0.211429][0.380873,0.0446027,-0.09853][1.87846,4.29341,-192.363][-0.804479,0.533633,0.260864][0.386204,0.042561,-0.1594][0.719097,-0.0334,-192.363][-0.999335,0.0363081,0.00337864][0.373198,0.042561,0.00124226][1.40322,-3.17612,-191.739][-0.776,-0.32503,-0.540536][0.380873,0.0446027,0.117922][0.889219,-0.261101,-191.739][-0.999993,-0.00381835,-0.000235588][0.375107,0.0446027,0.00969611][0.719097,-0.0334,-192.363][-0.999335,0.0363081,0.00337864][0.373198,0.042561,0.00124226][1.87846,-4.36021,-192.363][-0.885408,-0.425288,0.187573][0.386204,0.042561,0.161884][2.88321,-5.73955,-191.739][-0.686802,-0.634081,-0.355308][0.397475,0.0446027,0.213095][2.88321,-5.73955,-191.739][-0.686802,-0.634081,-0.355308][0.397475,0.0446027,0.213095][1.40322,-3.17612,-191.739][-0.776,-0.32503,-0.540536][0.380873,0.0446027,0.117922][0.719097,-0.0334,-192.363][-0.999335,0.0363081,0.00337864][0.373198,0.042561,0.00124226][1.87846,-4.36021,-192.363][-0.885408,-0.425288,0.187573][0.386204,0.042561,0.161884][5.04591,-7.52766,-192.363][-0.520662,-0.836765,-0.169517][0.421737,0.042561,0.279482][5.15069,-7.64219,-191.739][-0.496069,-0.851523,-0.169778][0.422913,0.0446027,0.283734][5.15069,-7.64219,-191.739][-0.496069,-0.851523,-0.169778][0.422913,0.0446027,0.283734][2.88321,-5.73955,-191.739][-0.686802,-0.634081,-0.355308][0.397475,0.0446027,0.213095][1.87846,-4.36021,-192.363][-0.885408,-0.425288,0.187573][0.386204,0.042561,0.161884][5.04591,-7.52766,-192.363][-0.520662,-0.836765,-0.169517][0.421737,0.042561,0.279482][7.93217,-8.65457,-191.739][-0.108559,-0.816817,-0.56659][0.454116,0.0446027,0.321321][5.15069,-7.64219,-191.739][-0.496069,-0.851523,-0.169778][0.422913,0.0446027,0.283734][5.04591,-7.52766,-192.363][-0.520662,-0.836765,-0.169517][0.421737,0.042561,0.279482][9.37272,-8.68702,-192.363][-0.0832652,-0.99176,0.0973597][0.470276,0.042561,0.322526][10.8922,-8.65457,-191.739][0.195476,-0.897448,-0.395445][0.487321,0.0446027,0.321321][10.8922,-8.65457,-191.739][0.195476,-0.897448,-0.395445][0.487321,0.0446027,0.321321][7.93217,-8.65457,-191.739][-0.108559,-0.816817,-0.56659][0.454116,0.0446027,0.321321][5.04591,-7.52766,-192.363][-0.520662,-0.836765,-0.169517][0.421737,0.042561,0.279482][9.37272,-8.68702,-192.363][-0.0832652,-0.99176,0.0973597][0.470276,0.042561,0.322526][13.6995,-7.52765,-192.363][0.483456,-0.849481,-0.21131][0.518815,0.042561,0.279482][13.6736,-7.64219,-191.739][0.466061,-0.86072,-0.204813][0.518525,0.0446027,0.283734][13.6736,-7.64219,-191.739][0.466061,-0.86072,-0.204813][0.518525,0.0446027,0.283734][10.8922,-8.65457,-191.739][0.195476,-0.897448,-0.395445][0.487321,0.0446027,0.321321][9.37272,-8.68702,-192.363][-0.0832652,-0.99176,0.0973597][0.470276,0.042561,0.322526][13.6995,-7.52765,-192.363][0.483456,-0.849481,-0.21131][0.518815,0.042561,0.279482][15.9411,-5.73955,-191.739][0.660738,-0.506964,-0.553546][0.543962,0.0446027,0.213095][13.6736,-7.64219,-191.739][0.466061,-0.86072,-0.204813][0.518525,0.0446027,0.283734][-13.4238,3.69465,-146.6][-2.86557e-007,1.5708,0][0.247744,0.19243,-0.13717][-9.50302,3.69465,-146.6][-5.63021e-007,3.10501,0][0.28915,0.181579,-0.13717][-9.50302,3.69465,-153.609][-2.86557e-007,1.5708,0][0.294188,0.166856,-0.137169][-9.50302,3.69465,-153.609][-2.86557e-007,1.5708,0][0.294188,0.166856,-0.137169][-13.4238,3.69465,-153.609][-2.86557e-007,1.5708,0][0.249681,0.18352,-0.137169][-13.4238,3.69465,-146.6][-2.86557e-007,1.5708,0][0.247744,0.19243,-0.13717][-9.50302,-3.92711,-153.609][2.86557e-007,-1.5708,-2.13711e-007][0.294188,0.166856,0.145804][-9.50302,-3.92711,-146.6][5.6644e-007,-3.10501,-1.24427e-007][0.28915,0.181579,0.145804][-13.4238,-3.92711,-146.6][2.86557e-007,-1.5708,-2.13711e-007][0.247744,0.19243,0.145804][-13.4238,-3.92711,-146.6][2.86557e-007,-1.5708,-2.13711e-007][0.247744,0.19243,0.145804][-13.4238,-3.92711,-153.609][2.86557e-007,-1.5708,-2.13711e-007][0.249681,0.18352,0.145804][-9.50302,-3.92711,-153.609][2.86557e-007,-1.5708,-2.13711e-007][0.294188,0.166856,0.145804][-13.4238,3.69465,-153.609][-2.86557e-007,1.5708,0][0.249681,0.18352,-0.137169][-9.50302,3.69465,-153.609][-2.86557e-007,1.5708,0][0.294188,0.166856,-0.137169][-9.50302,-3.92711,-153.609][2.86557e-007,-1.5708,-2.13711e-007][0.294188,0.166856,0.145804][-9.50302,-3.92711,-153.609][2.86557e-007,-1.5708,-2.13711e-007][0.294188,0.166856,0.145804][-13.4238,-3.92711,-153.609][2.86557e-007,-1.5708,-2.13711e-007][0.249681,0.18352,0.145804][-13.4238,3.69465,-153.609][-2.86557e-007,1.5708,0][0.249681,0.18352,-0.137169][2.92751,4.65258,-145.719][1.5708,3.14131e-007,0][0.405663,0.181445,-0.172734][2.92751,-4.88503,-145.719][1.5708,3.14131e-007,0][0.405663,0.181445,0.181369][2.92751,-4.88503,-154.49][1.5708,3.14131e-007,0][0.405275,0.151488,0.181369][2.92751,-4.88503,-154.49][1.5708,3.14131e-007,0][0.405275,0.151488,0.181369][2.92751,4.65258,-154.49][1.5708,3.14131e-007,0][0.405275,0.151488,-0.172734][2.92751,4.65258,-145.719][1.5708,3.14131e-007,0][0.405663,0.181445,-0.172734][-17.2764,3.69465,-71.0646][0,0,1][0.255338,0.380313,-0.13717][-18.525,3.69465,-71.0646][0,0,1][0.245114,0.380313,-0.13717][-18.525,-3.92711,-71.0646][0,0,1][0.245114,0.380313,0.145803][-18.525,-3.92711,-71.0646][0,0,1][0.245114,0.380313,0.145803][-17.2764,-3.92711,-71.0646][0,0,1][0.255338,0.380313,0.145803][-17.2764,3.69465,-71.0646][0,0,1][0.255338,0.380313,-0.13717][-13.4238,3.69465,-146.6][-2.86557e-007,1.5708,0][0.247744,0.19243,-0.13717][-13.4238,-3.92711,-146.6][2.86557e-007,-1.5708,-2.13711e-007][0.247744,0.19243,0.145804][-15.9643,-3.92711,-77.1826][-1.56975,-1.96415e-007,-0.0574487][0.250968,0.351919,0.145803][-15.9643,-3.92711,-77.1826][-1.56975,-1.96415e-007,-0.0574487][0.250968,0.351919,0.145803][-15.9643,3.69465,-77.1826][-1.56975,-1.96415e-007,-0.0574487][0.250968,0.351919,-0.13717][-13.4238,3.69465,-146.6][-2.86557e-007,1.5708,0][0.247744,0.19243,-0.13717][-15.9643,3.69465,-77.1826][-1.56975,-1.96415e-007,-0.0574487][0.250968,0.351919,-0.13717][-12.0435,3.69465,-77.1826][-1.95487e-007,1.60738,0][0.288499,0.351919,-0.13717][-9.50302,3.69465,-146.6][-5.63021e-007,3.10501,0][0.28915,0.181579,-0.13717][-9.50302,3.69465,-146.6][-5.63021e-007,3.10501,0][0.28915,0.181579,-0.13717][-13.4238,3.69465,-146.6][-2.86557e-007,1.5708,0][0.247744,0.19243,-0.13717][-15.9643,3.69465,-77.1826][-1.56975,-1.96415e-007,-0.0574487][0.250968,0.351919,-0.13717][-12.0435,-3.92711,-77.1826][1.9892e-007,-1.60738,0][0.288499,0.351919,0.145803][-15.9643,-3.92711,-77.1826][-1.56975,-1.96415e-007,-0.0574487][0.250968,0.351919,0.145803][-13.4238,-3.92711,-146.6][2.86557e-007,-1.5708,-2.13711e-007][0.247744,0.19243,0.145804][-13.4238,-3.92711,-146.6][2.86557e-007,-1.5708,-2.13711e-007][0.247744,0.19243,0.145804][-9.50302,-3.92711,-146.6][5.6644e-007,-3.10501,-1.24427e-007][0.28915,0.181579,0.145804][-12.0435,-3.92711,-77.1826][1.9892e-007,-1.60738,0][0.288499,0.351919,0.145803][-12.0435,3.69465,-77.1826][-1.95487e-007,1.60738,0][0.288499,0.351919,-0.13717][-12.0435,-3.92711,-77.1826][1.9892e-007,-1.60738,0][0.288499,0.351919,0.145803][-9.50302,-3.92711,-146.6][5.6644e-007,-3.10501,-1.24427e-007][0.28915,0.181579,0.145804][-9.50302,-3.92711,-146.6][5.6644e-007,-3.10501,-1.24427e-007][0.28915,0.181579,0.145804][-9.50302,3.69465,-146.6][-5.63021e-007,3.10501,0][0.28915,0.181579,-0.13717][-12.0435,3.69465,-77.1826][-1.95487e-007,1.60738,0][0.288499,0.351919,-0.13717][-13.4238,3.69465,-153.609][-2.86557e-007,1.5708,0][0.249681,0.18352,-0.137169][-13.4238,-3.92711,-153.609][2.86557e-007,-1.5708,-2.13711e-007][0.249681,0.18352,0.145804][-13.4238,-3.92711,-146.6][2.86557e-007,-1.5708,-2.13711e-007][0.247744,0.19243,0.145804][-13.4238,-3.92711,-146.6][2.86557e-007,-1.5708,-2.13711e-007][0.247744,0.19243,0.145804][-13.4238,3.69465,-146.6][-2.86557e-007,1.5708,0][0.247744,0.19243,-0.13717][-13.4238,3.69465,-153.609][-2.86557e-007,1.5708,0][0.249681,0.18352,-0.137169][-9.50302,-3.92711,-146.6][5.6644e-007,-3.10501,-1.24427e-007][0.28915,0.181579,0.145804][-9.50302,-3.92711,-153.609][2.86557e-007,-1.5708,-2.13711e-007][0.294188,0.166856,0.145804][2.92751,-4.88503,-154.49][1.5708,3.14131e-007,0][0.405275,0.151488,0.181369][2.92751,-4.88503,-154.49][1.5708,3.14131e-007,0][0.405275,0.151488,0.181369][2.92751,-4.88503,-145.719][1.5708,3.14131e-007,0][0.405663,0.181445,0.181369][-9.50302,-3.92711,-146.6][5.6644e-007,-3.10501,-1.24427e-007][0.28915,0.181579,0.145804][-9.50302,-3.92711,-153.609][2.86557e-007,-1.5708,-2.13711e-007][0.294188,0.166856,0.145804][-9.50302,3.69465,-153.609][-2.86557e-007,1.5708,0][0.294188,0.166856,-0.137169][2.92751,4.65258,-154.49][1.5708,3.14131e-007,0][0.405275,0.151488,-0.172734][2.92751,4.65258,-154.49][1.5708,3.14131e-007,0][0.405275,0.151488,-0.172734][2.92751,-4.88503,-154.49][1.5708,3.14131e-007,0][0.405275,0.151488,0.181369][-9.50302,-3.92711,-153.609][2.86557e-007,-1.5708,-2.13711e-007][0.294188,0.166856,0.145804][-9.50302,3.69465,-153.609][-2.86557e-007,1.5708,0][0.294188,0.166856,-0.137169][-9.50302,3.69465,-146.6][-5.63021e-007,3.10501,0][0.28915,0.181579,-0.13717][2.92751,4.65258,-145.719][1.5708,3.14131e-007,0][0.405663,0.181445,-0.172734][2.92751,4.65258,-145.719][1.5708,3.14131e-007,0][0.405663,0.181445,-0.172734][2.92751,4.65258,-154.49][1.5708,3.14131e-007,0][0.405275,0.151488,-0.172734][-9.50302,3.69465,-153.609][-2.86557e-007,1.5708,0][0.294188,0.166856,-0.137169][-9.50302,3.69465,-146.6][-5.63021e-007,3.10501,0][0.28915,0.181579,-0.13717][-9.50302,-3.92711,-146.6][5.6644e-007,-3.10501,-1.24427e-007][0.28915,0.181579,0.145804][2.92751,-4.88503,-145.719][1.5708,3.14131e-007,0][0.405663,0.181445,0.181369][2.92751,-4.88503,-145.719][1.5708,3.14131e-007,0][0.405663,0.181445,0.181369][2.92751,4.65258,-145.719][1.5708,3.14131e-007,0][0.405663,0.181445,-0.172734][-9.50302,3.69465,-146.6][-5.63021e-007,3.10501,0][0.28915,0.181579,-0.13717][14.8923,1.0924,201.016][0.0383349,1.55187,0][0.548361,0.959031,-0.0405571][32.9816,0.645548,200.682][0.0657461,2.66153,-1.90377e-007][0.722449,0.965148,-0.0239668][61.0579,-0.0480025,185.423][0.046682,1.88978,0][0.991327,0.933441,0.00178291][61.0579,-0.0480025,185.423][0.046682,1.88978,0][0.991327,0.933441,0.00178291][54.4857,0.114345,148.912][0.0157351,0.636987,0][0.928387,0.857574,-0.00424444][45.9028,0.326362,166.283][0.103947,4.20799,-2.18786e-007][0.85726,0.900311,-0.0121161][14.8923,1.0924,201.016][0.0383349,1.55187,0][0.548361,0.959031,-0.0405571][61.0579,-0.0480025,185.423][0.046682,1.88978,0][0.991327,0.933441,0.00178291][45.9028,0.326362,166.283][0.103947,4.20799,-2.18786e-007][0.85726,0.900311,-0.0121161][14.8923,1.0924,201.016][0.0383349,1.55187,0][0.548361,0.959031,-0.0405571][45.9028,0.326362,166.283][0.103947,4.20799,-2.18786e-007][0.85726,0.900311,-0.0121161][44.0042,0.373262,166.367][0.109273,4.42358,-2.12421e-007][0.839078,0.900485,-0.0138574][14.8923,1.0924,201.016][0.0383349,1.55187,0][0.548361,0.959031,-0.0405571][44.0042,0.373262,166.367][0.109273,4.42358,-2.12421e-007][0.839078,0.900485,-0.0138574][43.2914,0.39087,164.296][0.0904133,3.6601,0][0.832252,0.896181,-0.0145111][43.2914,0.39087,164.296][0.0904133,3.6601,0][0.832252,0.896181,-0.0145111][50.1361,0.221789,128.322][0.0685699,2.77584,0][0.886732,0.814789,-0.00823345][40.4909,0.460045,74.3298][0.0804806,3.25801,-1.33265e-007][0.794364,0.7026,-0.017079][43.2914,0.39087,164.296][0.0904133,3.6601,0][0.832252,0.896181,-0.0145111][40.4909,0.460045,74.3298][0.0804806,3.25801,-1.33265e-007][0.794364,0.7026,-0.017079][39.5263,0.483872,58.109][0.0829234,3.3569,-1.37972e-007][0.785126,0.668895,-0.0179635][14.8923,1.0924,201.016][0.0383349,1.55187,0][0.548361,0.959031,-0.0405571][43.2914,0.39087,164.296][0.0904133,3.6601,0][0.832252,0.896181,-0.0145111][39.5263,0.483872,58.109][0.0829234,3.3569,-1.37972e-007][0.785126,0.668895,-0.0179635][46.2818,0.316995,26.4567][0.0812321,3.28843,-1.45476e-007][0.827684,0.585415,-0.0117677][51.7255,0.182522,15.3226][0.027973,1.1324,0][0.879817,0.562279,-0.00677501][44.8033,0.353516,15.2061][0.0708794,2.86934,0][0.813526,0.562037,-0.0131236][42.7905,0.40324,37.4723][0.0812875,3.29069,-1.77334e-007][0.798676,0.6238,-0.0149698][46.2818,0.316995,26.4567][0.0812321,3.28843,-1.45476e-007][0.827684,0.585415,-0.0117677][44.8033,0.353516,15.2061][0.0708794,2.86934,0][0.813526,0.562037,-0.0131236][39.5263,0.483872,58.109][0.0829234,3.3569,-1.37972e-007][0.785126,0.668895,-0.0179635][42.7905,0.40324,37.4723][0.0812875,3.29069,-1.77334e-007][0.798676,0.6238,-0.0149698][44.8033,0.353516,15.2061][0.0708794,2.86934,0][0.813526,0.562037,-0.0131236][14.8923,1.0924,201.016][0.0383349,1.55187,0][0.548361,0.959031,-0.0405571][39.5263,0.483872,58.109][0.0829234,3.3569,-1.37972e-007][0.785126,0.668895,-0.0179635][44.8033,0.353516,15.2061][0.0708794,2.86934,0][0.813526,0.562037,-0.0131236][44.8033,0.353516,15.2061][0.0708794,2.86934,0][0.813526,0.562037,-0.0131236][39.0187,0.49641,16.7118][0.0639174,2.5875,0][0.758128,0.565166,-0.0184288][33.1357,0.641735,22.8672][0.0955819,3.86934,-1.39726e-007][0.701788,0.577956,-0.0238244][14.8923,1.0924,201.016][0.0383349,1.55187,0][0.548361,0.959031,-0.0405571][44.8033,0.353516,15.2061][0.0708794,2.86934,0][0.813526,0.562037,-0.0131236][33.1357,0.641735,22.8672][0.0955819,3.86934,-1.39726e-007][0.701788,0.577956,-0.0238244][14.8923,1.09239,24.3109][0.0407401,1.64924,0][0.549213,0.598665,-0.040556][14.8923,1.0924,201.016][0.0383349,1.55187,0][0.548361,0.959031,-0.0405571][33.1357,0.641735,22.8672][0.0955819,3.86934,-1.39726e-007][0.701788,0.577956,-0.0238244][33.1142,-2.44606,22.8672][0.268666,-3.86134,-3.74044e-007][0.701582,0.577956,0.0908163][38.9848,-2.0367,16.7118][0.180048,-2.58201,-5.53506e-007][0.757803,0.565166,0.0756179][44.7571,-1.63418,15.2061][0.19966,-2.86326,0][0.813083,0.562037,0.0606736][44.7571,-1.63418,15.2061][0.19966,-2.86326,0][0.813083,0.562037,0.0606736][51.6647,-1.1525,15.3226][0.0787971,-1.13,0][0.879234,0.562279,0.0427906][46.2325,-1.5313,26.4568][0.228823,-3.28147,1.48492e-007][0.827212,0.585415,0.056854][33.1142,-2.44606,22.8672][0.268666,-3.86134,-3.74044e-007][0.701582,0.577956,0.0908163][44.7571,-1.63418,15.2061][0.19966,-2.86326,0][0.813083,0.562037,0.0606736][46.2325,-1.5313,26.4568][0.228823,-3.28147,1.48492e-007][0.827212,0.585415,0.056854][33.1142,-2.44606,22.8672][0.268666,-3.86134,-3.74044e-007][0.701582,0.577956,0.0908163][46.2325,-1.5313,26.4568][0.228823,-3.28147,1.48492e-007][0.827212,0.585415,0.056854][42.7485,-1.77424,37.4723][0.22898,-3.28372,1.60026e-007][0.798275,0.6238,0.0658736][33.1142,-2.44606,22.8672][0.268666,-3.86134,-3.74044e-007][0.701582,0.577956,0.0908163][42.7485,-1.77424,37.4723][0.22898,-3.28372,1.60026e-007][0.798275,0.6238,0.0658736][39.4913,-2.00137,58.109][0.233587,-3.34979,1.95438e-007][0.784791,0.668895,0.0743062][40.4539,-1.93425,74.3298][0.22671,-3.25111,0][0.794009,0.7026,0.071814][50.0786,-1.2631,128.322][0.193154,-2.76996,1.6256e-007][0.886182,0.814789,0.046896][43.2484,-1.73937,164.296][0.254685,-3.65235,1.53445e-007][0.83184,0.896181,0.0645785][39.4913,-2.00137,58.109][0.233587,-3.34979,1.95438e-007][0.784791,0.668895,0.0743062][40.4539,-1.93425,74.3298][0.22671,-3.25111,0][0.794009,0.7026,0.071814][43.2484,-1.73937,164.296][0.254685,-3.65235,1.53445e-007][0.83184,0.896181,0.0645785][45.8543,-1.55766,166.283][0.292305,-4.19911,-0.000886574][0.856796,0.900311,0.0578321][54.419,-0.960434,148.912][0.0443278,-0.637872,-7.49435e-005][0.927749,0.857574,0.0356589][61.0615,-0.503112,185.423][0.130803,-1.88233,-0.000183407][0.991362,0.933441,0.0186798][43.9597,-1.68977,166.367][0.307536,-4.41422,-0.000345704][0.838652,0.900485,0.062737][45.8543,-1.55766,166.283][0.292305,-4.19911,-0.000886574][0.856796,0.900311,0.0578321][61.0615,-0.503112,185.423][0.130803,-1.88233,-0.000183407][0.991362,0.933441,0.0186798][43.9597,-1.68977,166.367][0.307536,-4.41422,-0.000345704][0.838652,0.900485,0.062737][61.0615,-0.503112,185.423][0.130803,-1.88233,-0.000183407][0.991362,0.933441,0.0186798][32.9605,-2.45677,200.682][0.18446,-2.65716,-6.16784e-005][0.722247,0.965148,0.0912131][43.2484,-1.73937,164.296][0.254685,-3.65235,1.53445e-007][0.83184,0.896181,0.0645785][43.9597,-1.68977,166.367][0.307536,-4.41422,-0.000345704][0.838652,0.900485,0.062737][32.9605,-2.45677,200.682][0.18446,-2.65716,-6.16784e-005][0.722247,0.965148,0.0912131][39.4913,-2.00137,58.109][0.233587,-3.34979,1.95438e-007][0.784791,0.668895,0.0743062][43.2484,-1.73937,164.296][0.254685,-3.65235,1.53445e-007][0.83184,0.896181,0.0645785][32.9605,-2.45677,200.682][0.18446,-2.65716,-6.16784e-005][0.722247,0.965148,0.0912131][33.1142,-2.44606,22.8672][0.268666,-3.86134,-3.74044e-007][0.701582,0.577956,0.0908163][39.4913,-2.00137,58.109][0.233587,-3.34979,1.95438e-007][0.784791,0.668895,0.0743062][32.9605,-2.45677,200.682][0.18446,-2.65716,-6.16784e-005][0.722247,0.965148,0.0912131][14.873,-3.71079,24.3109][0.114098,-1.64564,-4.33234e-007][0.549028,0.598665,0.137772][33.1142,-2.44606,22.8672][0.268666,-3.86134,-3.74044e-007][0.701582,0.577956,0.0908163][32.9605,-2.45677,200.682][0.18446,-2.65716,-6.16784e-005][0.722247,0.965148,0.0912131][14.873,-3.71079,24.3109][0.114098,-1.64564,-4.33234e-007][0.549028,0.598665,0.137772][32.9605,-2.45677,200.682][0.18446,-2.65716,-6.16784e-005][0.722247,0.965148,0.0912131][14.873,-3.71078,201.016][0.107369,-1.54866,0][0.548177,0.959031,0.137771][14.8923,1.09239,24.3109][0.0407401,1.64924,0][0.549213,0.598665,-0.040556][33.1357,0.641735,22.8672][0.0955819,3.86934,-1.39726e-007][0.701788,0.577956,-0.0238244][33.1142,-2.44606,22.8672][0.268666,-3.86134,-3.74044e-007][0.701582,0.577956,0.0908163][33.1142,-2.44606,22.8672][0.268666,-3.86134,-3.74044e-007][0.701582,0.577956,0.0908163][14.873,-3.71079,24.3109][0.114098,-1.64564,-4.33234e-007][0.549028,0.598665,0.137772][14.8923,1.09239,24.3109][0.0407401,1.64924,0][0.549213,0.598665,-0.040556][54.4857,0.114345,148.912][0.0157351,0.636987,0][0.928387,0.857574,-0.00424444][54.419,-0.960434,148.912][0.0443278,-0.637872,-7.49435e-005][0.927749,0.857574,0.0356589][45.8543,-1.55766,166.283][0.292305,-4.19911,-0.000886574][0.856796,0.900311,0.0578321][45.8543,-1.55766,166.283][0.292305,-4.19911,-0.000886574][0.856796,0.900311,0.0578321][45.9028,0.326362,166.283][0.103947,4.20799,-2.18786e-007][0.85726,0.900311,-0.0121161][54.4857,0.114345,148.912][0.0157351,0.636987,0][0.928387,0.857574,-0.00424444][32.9816,0.645548,200.682][0.0657461,2.66153,-1.90377e-007][0.722449,0.965148,-0.0239668][14.8923,1.0924,201.016][0.0383349,1.55187,0][0.548361,0.959031,-0.0405571][14.873,-3.71078,201.016][0.107369,-1.54866,0][0.548177,0.959031,0.137771][14.873,-3.71078,201.016][0.107369,-1.54866,0][0.548177,0.959031,0.137771][32.9605,-2.45677,200.682][0.18446,-2.65716,-6.16784e-005][0.722247,0.965148,0.0912131][32.9816,0.645548,200.682][0.0657461,2.66153,-1.90377e-007][0.722449,0.965148,-0.0239668][14.8923,1.0924,201.016][0.0383349,1.55187,0][0.548361,0.959031,-0.0405571][14.8923,1.09239,24.3109][0.0407401,1.64924,0][0.549213,0.598665,-0.040556][14.873,-3.71079,24.3109][0.114098,-1.64564,-4.33234e-007][0.549028,0.598665,0.137772][14.873,-3.71079,24.3109][0.114098,-1.64564,-4.33234e-007][0.549028,0.598665,0.137772][14.873,-3.71078,201.016][0.107369,-1.54866,0][0.548177,0.959031,0.137771][14.8923,1.0924,201.016][0.0383349,1.55187,0][0.548361,0.959031,-0.0405571][32.9816,0.645548,200.682][0.0657461,2.66153,-1.90377e-007][0.722449,0.965148,-0.0239668][32.9605,-2.45677,200.682][0.18446,-2.65716,-6.16784e-005][0.722247,0.965148,0.0912131][61.0615,-0.503112,185.423][0.130803,-1.88233,-0.000183407][0.991362,0.933441,0.0186798][61.0615,-0.503112,185.423][0.130803,-1.88233,-0.000183407][0.991362,0.933441,0.0186798][61.0579,-0.0480025,185.423][0.046682,1.88978,0][0.991327,0.933441,0.00178291][32.9816,0.645548,200.682][0.0657461,2.66153,-1.90377e-007][0.722449,0.965148,-0.0239668][61.0579,-0.0480025,185.423][0.046682,1.88978,0][0.991327,0.933441,0.00178291][61.0615,-0.503112,185.423][0.130803,-1.88233,-0.000183407][0.991362,0.933441,0.0186798][54.419,-0.960434,148.912][0.0443278,-0.637872,-7.49435e-005][0.927749,0.857574,0.0356589][54.419,-0.960434,148.912][0.0443278,-0.637872,-7.49435e-005][0.927749,0.857574,0.0356589][54.4857,0.114345,148.912][0.0157351,0.636987,0][0.928387,0.857574,-0.00424444][61.0579,-0.0480025,185.423][0.046682,1.88978,0][0.991327,0.933441,0.00178291][46.2325,-1.5313,26.4568][0.228823,-3.28147,1.48492e-007][0.827212,0.585415,0.056854][46.2818,0.316995,26.4567][0.0812321,3.28843,-1.45476e-007][0.827684,0.585415,-0.0117677][42.7905,0.40324,37.4723][0.0812875,3.29069,-1.77334e-007][0.798676,0.6238,-0.0149698][42.7905,0.40324,37.4723][0.0812875,3.29069,-1.77334e-007][0.798676,0.6238,-0.0149698][42.7485,-1.77424,37.4723][0.22898,-3.28372,1.60026e-007][0.798275,0.6238,0.0658736][46.2325,-1.5313,26.4568][0.228823,-3.28147,1.48492e-007][0.827212,0.585415,0.056854][50.0786,-1.2631,128.322][0.193154,-2.76996,1.6256e-007][0.886182,0.814789,0.046896][50.1361,0.221789,128.322][0.0685699,2.77584,0][0.886732,0.814789,-0.00823345][43.2914,0.39087,164.296][0.0904133,3.6601,0][0.832252,0.896181,-0.0145111][43.2914,0.39087,164.296][0.0904133,3.6601,0][0.832252,0.896181,-0.0145111][43.2484,-1.73937,164.296][0.254685,-3.65235,1.53445e-007][0.83184,0.896181,0.0645785][50.0786,-1.2631,128.322][0.193154,-2.76996,1.6256e-007][0.886182,0.814789,0.046896][33.1142,-2.44606,22.8672][0.268666,-3.86134,-3.74044e-007][0.701582,0.577956,0.0908163][33.1357,0.641735,22.8672][0.0955819,3.86934,-1.39726e-007][0.701788,0.577956,-0.0238244][39.0187,0.49641,16.7118][0.0639174,2.5875,0][0.758128,0.565166,-0.0184288][39.0187,0.49641,16.7118][0.0639174,2.5875,0][0.758128,0.565166,-0.0184288][38.9848,-2.0367,16.7118][0.180048,-2.58201,-5.53506e-007][0.757803,0.565166,0.0756179][33.1142,-2.44606,22.8672][0.268666,-3.86134,-3.74044e-007][0.701582,0.577956,0.0908163][44.7571,-1.63418,15.2061][0.19966,-2.86326,0][0.813083,0.562037,0.0606736][44.8033,0.353516,15.2061][0.0708794,2.86934,0][0.813526,0.562037,-0.0131236][51.7255,0.182522,15.3226][0.027973,1.1324,0][0.879817,0.562279,-0.00677501][51.7255,0.182522,15.3226][0.027973,1.1324,0][0.879817,0.562279,-0.00677501][51.6647,-1.1525,15.3226][0.0787971,-1.13,0][0.879234,0.562279,0.0427906][44.7571,-1.63418,15.2061][0.19966,-2.86326,0][0.813083,0.562037,0.0606736][50.1361,0.221789,128.322][0.0685699,2.77584,0][0.886732,0.814789,-0.00823345][50.0786,-1.2631,128.322][0.193154,-2.76996,1.6256e-007][0.886182,0.814789,0.046896][40.4539,-1.93425,74.3298][0.22671,-3.25111,0][0.794009,0.7026,0.071814][40.4539,-1.93425,74.3298][0.22671,-3.25111,0][0.794009,0.7026,0.071814][40.4909,0.460045,74.3298][0.0804806,3.25801,-1.33265e-007][0.794364,0.7026,-0.017079][50.1361,0.221789,128.322][0.0685699,2.77584,0][0.886732,0.814789,-0.00823345][39.5263,0.483872,58.109][0.0829234,3.3569,-1.37972e-007][0.785126,0.668895,-0.0179635][39.4913,-2.00137,58.109][0.233587,-3.34979,1.95438e-007][0.784791,0.668895,0.0743062][42.7485,-1.77424,37.4723][0.22898,-3.28372,1.60026e-007][0.798275,0.6238,0.0658736][42.7485,-1.77424,37.4723][0.22898,-3.28372,1.60026e-007][0.798275,0.6238,0.0658736][42.7905,0.40324,37.4723][0.0812875,3.29069,-1.77334e-007][0.798676,0.6238,-0.0149698][39.5263,0.483872,58.109][0.0829234,3.3569,-1.37972e-007][0.785126,0.668895,-0.0179635][38.9848,-2.0367,16.7118][0.180048,-2.58201,-5.53506e-007][0.757803,0.565166,0.0756179][39.0187,0.49641,16.7118][0.0639174,2.5875,0][0.758128,0.565166,-0.0184288][44.8033,0.353516,15.2061][0.0708794,2.86934,0][0.813526,0.562037,-0.0131236][44.8033,0.353516,15.2061][0.0708794,2.86934,0][0.813526,0.562037,-0.0131236][44.7571,-1.63418,15.2061][0.19966,-2.86326,0][0.813083,0.562037,0.0606736][38.9848,-2.0367,16.7118][0.180048,-2.58201,-5.53506e-007][0.757803,0.565166,0.0756179][51.6647,-1.1525,15.3226][0.0787971,-1.13,0][0.879234,0.562279,0.0427906][51.7255,0.182522,15.3226][0.027973,1.1324,0][0.879817,0.562279,-0.00677501][46.2818,0.316995,26.4567][0.0812321,3.28843,-1.45476e-007][0.827684,0.585415,-0.0117677][46.2818,0.316995,26.4567][0.0812321,3.28843,-1.45476e-007][0.827684,0.585415,-0.0117677][46.2325,-1.5313,26.4568][0.228823,-3.28147,1.48492e-007][0.827212,0.585415,0.056854][51.6647,-1.1525,15.3226][0.0787971,-1.13,0][0.879234,0.562279,0.0427906][39.5263,0.483872,58.109][0.0829234,3.3569,-1.37972e-007][0.785126,0.668895,-0.0179635][40.4909,0.460045,74.3298][0.0804806,3.25801,-1.33265e-007][0.794364,0.7026,-0.017079][40.4539,-1.93425,74.3298][0.22671,-3.25111,0][0.794009,0.7026,0.071814][40.4539,-1.93425,74.3298][0.22671,-3.25111,0][0.794009,0.7026,0.071814][39.4913,-2.00137,58.109][0.233587,-3.34979,1.95438e-007][0.784791,0.668895,0.0743062][39.5263,0.483872,58.109][0.0829234,3.3569,-1.37972e-007][0.785126,0.668895,-0.0179635][43.9597,-1.68977,166.367][0.307536,-4.41422,-0.000345704][0.838652,0.900485,0.062737][44.0042,0.373262,166.367][0.109273,4.42358,-2.12421e-007][0.839078,0.900485,-0.0138574][45.9028,0.326362,166.283][0.103947,4.20799,-2.18786e-007][0.85726,0.900311,-0.0121161][45.9028,0.326362,166.283][0.103947,4.20799,-2.18786e-007][0.85726,0.900311,-0.0121161][45.8543,-1.55766,166.283][0.292305,-4.19911,-0.000886574][0.856796,0.900311,0.0578321][43.9597,-1.68977,166.367][0.307536,-4.41422,-0.000345704][0.838652,0.900485,0.062737][43.2484,-1.73937,164.296][0.254685,-3.65235,1.53445e-007][0.83184,0.896181,0.0645785][43.2914,0.39087,164.296][0.0904133,3.6601,0][0.832252,0.896181,-0.0145111][44.0042,0.373262,166.367][0.109273,4.42358,-2.12421e-007][0.839078,0.900485,-0.0138574][44.0042,0.373262,166.367][0.109273,4.42358,-2.12421e-007][0.839078,0.900485,-0.0138574][43.9597,-1.68977,166.367][0.307536,-4.41422,-0.000345704][0.838652,0.900485,0.062737][43.2484,-1.73937,164.296][0.254685,-3.65235,1.53445e-007][0.83184,0.896181,0.0645785][-12.0435,3.69465,-77.1826][-1.95487e-007,1.60738,0][0.288499,0.351919,-0.13717][-15.9643,3.69465,-77.1826][-1.56975,-1.96415e-007,-0.0574487][0.250968,0.351919,-0.13717][-18.525,3.69465,-71.0646][0,0,1][0.245114,0.380313,-0.13717][-18.525,3.69465,-71.0646][0,0,1][0.245114,0.380313,-0.13717][-17.2764,3.69465,-71.0646][0,0,1][0.255338,0.380313,-0.13717][-12.0435,3.69465,-77.1826][-1.95487e-007,1.60738,0][0.288499,0.351919,-0.13717][-15.9643,3.69465,-77.1826][-1.56975,-1.96415e-007,-0.0574487][0.250968,0.351919,-0.13717][-15.9643,-3.92711,-77.1826][-1.56975,-1.96415e-007,-0.0574487][0.250968,0.351919,0.145803][-18.525,-3.92711,-71.0646][0,0,1][0.245114,0.380313,0.145803][-18.525,-3.92711,-71.0646][0,0,1][0.245114,0.380313,0.145803][-18.525,3.69465,-71.0646][0,0,1][0.245114,0.380313,-0.13717][-15.9643,3.69465,-77.1826][-1.56975,-1.96415e-007,-0.0574487][0.250968,0.351919,-0.13717][-15.9643,-3.92711,-77.1826][-1.56975,-1.96415e-007,-0.0574487][0.250968,0.351919,0.145803][-12.0435,-3.92711,-77.1826][1.9892e-007,-1.60738,0][0.288499,0.351919,0.145803][-17.2764,-3.92711,-71.0646][0,0,1][0.255338,0.380313,0.145803][-17.2764,-3.92711,-71.0646][0,0,1][0.255338,0.380313,0.145803][-18.525,-3.92711,-71.0646][0,0,1][0.245114,0.380313,0.145803][-15.9643,-3.92711,-77.1826][-1.56975,-1.96415e-007,-0.0574487][0.250968,0.351919,0.145803][-12.0435,-3.92711,-77.1826][1.9892e-007,-1.60738,0][0.288499,0.351919,0.145803][-12.0435,3.69465,-77.1826][-1.95487e-007,1.60738,0][0.288499,0.351919,-0.13717][-17.2764,3.69465,-71.0646][0,0,1][0.255338,0.380313,-0.13717][-17.2764,3.69465,-71.0646][0,0,1][0.255338,0.380313,-0.13717][-17.2764,-3.92711,-71.0646][0,0,1][0.255338,0.380313,0.145803][-12.0435,-3.92711,-77.1826][1.9892e-007,-1.60738,0][0.288499,0.351919,0.145803] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/hardhat.mesh b/shareddata/charcustom/hats/fonts/hardhat.mesh deleted file mode 100644 index 56ae189..0000000 --- a/shareddata/charcustom/hats/fonts/hardhat.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -336 -[0,-0.490867,-1.11174][0,0.997407,-0.0719623][0.819629,0.104198,0][0,-0.528872,-1.63849][0,0.678639,-0.734472][0.975326,0.0929647,0][-0.487597,-0.51939,-0.977498][-0.131859,0.988189,-0.0780731][0.77995,0.0957672,0][0,-0.528872,-1.63849][0,0.678639,-0.734472][0.975326,0.0929647,0][-0.513057,-0.572337,-1.55428][-0.427174,0.530891,-0.7319][0.950435,0.0801172,0][-0.487597,-0.51939,-0.977498][-0.131859,0.988189,-0.0780731][0.77995,0.0957672,0][-0.513057,-0.572337,-1.55428][-0.427174,0.530891,-0.7319][0.950435,0.0801172,0][-0.892103,-0.615092,-1.27689][-0.676178,0.637748,-0.368864][0.868443,0.06748,0][-0.487597,-0.51939,-0.977498][-0.131859,0.988189,-0.0780731][0.77995,0.0957672,0][-0.892103,-0.615092,-1.27689][-0.676178,0.637748,-0.368864][0.868443,0.06748,0][-0.900961,-0.573056,-0.67348][-0.242078,0.965861,-0.0922512][0.690088,0.0799045,0][-0.487597,-0.51939,-0.977498][-0.131859,0.988189,-0.0780731][0.77995,0.0957672,0][-0.900961,-0.573056,-0.67348][-0.242078,0.965861,-0.0922512][0.690088,0.0799045,0][-1.08441,-0.63172,-0.732329][-0.746897,0.587851,-0.310768][0.707483,0.062565,0][-1.17716,-0.589729,-0.253272][-0.306254,0.945013,-0.114713][0.565884,0.0749761,0][-1.08441,-0.63172,-0.732329][-0.746897,0.587851,-0.310768][0.707483,0.062565,0][-0.900961,-0.573056,-0.67348][-0.242078,0.965861,-0.0922512][0.690088,0.0799045,0][-0.892103,-0.615092,-1.27689][-0.676178,0.637748,-0.368864][0.868443,0.06748,0][-1.08441,-0.63172,-0.732329][-0.746897,0.587851,-0.310768][0.707483,0.062565,0][-1.28475,-0.63172,-0.292868][-0.796851,0.566669,-0.209558][0.577588,0.062565,0][-1.17716,-0.589729,-0.253272][-0.306254,0.945013,-0.114713][0.565884,0.0749761,0][-1.28475,-0.63172,-0.292868][-0.796851,0.566669,-0.209558][0.577588,0.062565,0][-1.27415,-0.589729,0.247418][-0.354778,0.934737,-0.0199991][0.41789,0.0749761,0][-1.17716,-0.589729,-0.253272][-0.306254,0.945013,-0.114713][0.565884,0.0749761,0][-1.28475,-0.63172,-0.292868][-0.796851,0.566669,-0.209558][0.577588,0.062565,0][-1.3824,-0.63172,0.269258][-0.828357,0.55446,0.0799973][0.411435,0.062565,0][-1.27415,-0.589729,0.247418][-0.354778,0.934737,-0.0199991][0.41789,0.0749761,0][-1.3824,-0.63172,0.269258][-0.828357,0.55446,0.0799973][0.411435,0.062565,0][-1.17716,-0.589729,0.723426][-0.344142,0.931081,0.121057][0.277192,0.0749761,0][-1.27415,-0.589729,0.247418][-0.354778,0.934737,-0.0199991][0.41789,0.0749761,0][-1.3824,-0.63172,0.269258][-0.828357,0.55446,0.0799973][0.411435,0.062565,0][-1.25778,-0.63172,0.801687][-0.737479,0.55748,0.381236][0.25406,0.062565,0][-1.17716,-0.589729,0.723426][-0.344142,0.931081,0.121057][0.277192,0.0749761,0][-1.25778,-0.63172,0.801687][-0.737479,0.55748,0.381236][0.25406,0.062565,0][-0.900961,-0.589729,1.12697][-0.259181,0.937923,0.230489][0.157914,0.0749761,0][-1.17716,-0.589729,0.723426][-0.344142,0.931081,0.121057][0.277192,0.0749761,0][-1.25778,-0.63172,0.801687][-0.737479,0.55748,0.381236][0.25406,0.062565,0][-0.958645,-0.63172,1.23061][-0.543412,0.587498,0.599625][0.127278,0.062565,0][-0.900961,-0.589729,1.12697][-0.259181,0.937923,0.230489][0.157914,0.0749761,0][-0.958645,-0.63172,1.23061][-0.543412,0.587498,0.599625][0.127278,0.062565,0][-0.487596,-0.589729,1.3966][-0.134145,0.956075,0.260624][0.0782153,0.0749761,0][-0.900961,-0.589729,1.12697][-0.259181,0.937923,0.230489][0.157914,0.0749761,0][-0.958645,-0.63172,1.23061][-0.543412,0.587498,0.599625][0.127278,0.062565,0][-0.53727,-0.63172,1.53605][-0.260642,0.591281,0.763186][0.0369986,0.062565,0][-0.487596,-0.589729,1.3966][-0.134145,0.956075,0.260624][0.0782153,0.0749761,0][-0.53727,-0.63172,1.53605][-0.260642,0.591281,0.763186][0.0369986,0.062565,0][0,-0.589729,1.49129][-0.0524018,0.960777,0.272327][0.0502288,0.0749761,0][-0.487596,-0.589729,1.3966][-0.134145,0.956075,0.260624][0.0782153,0.0749761,0][0,-0.589729,1.49129][-0.0524018,0.960777,0.272327][0.0502288,0.0749761,0][-0.53727,-0.63172,1.53605][-0.260642,0.591281,0.763186][0.0369986,0.062565,0][0,-0.63172,1.63849][0,0.563189,0.826328][0.00671747,0.062565,0][-0.514644,-0.689224,-1.55514][-0.310201,-0.000303658,-0.950671][0.950689,0.0455678,0][-0.513057,-0.572337,-1.55428][-0.427174,0.530891,-0.7319][0.950435,0.0801172,0][0,-0.528872,-1.63849][0,0.678639,-0.734472][0.975326,0.0929647,0][0,-0.528872,-1.63849][0,0.678639,-0.734472][0.975326,0.0929647,0][0,-0.667683,-1.63508][0,-0.0246183,-0.999697][0.974316,0.051935,0][-0.514644,-0.689224,-1.55514][-0.310201,-0.000303658,-0.950671][0.950689,0.0455678,0][-0.891475,-0.722483,-1.27884][-0.73771,0.00891465,-0.675059][0.869019,0.0357373,0][-0.892103,-0.615092,-1.27689][-0.676178,0.637748,-0.368864][0.868443,0.06748,0][-0.513057,-0.572337,-1.55428][-0.427174,0.530891,-0.7319][0.950435,0.0801172,0][-0.513057,-0.572337,-1.55428][-0.427174,0.530891,-0.7319][0.950435,0.0801172,0][-0.514644,-0.689224,-1.55514][-0.310201,-0.000303658,-0.950671][0.950689,0.0455678,0][-0.891475,-0.722483,-1.27884][-0.73771,0.00891465,-0.675059][0.869019,0.0357373,0][-1.08329,-0.754086,-0.73661][-0.933096,0.00320822,-0.359614][0.708748,0.026396,0][-1.08441,-0.63172,-0.732329][-0.746897,0.587851,-0.310768][0.707483,0.062565,0][-0.892103,-0.615092,-1.27689][-0.676178,0.637748,-0.368864][0.868443,0.06748,0][-0.892103,-0.615092,-1.27689][-0.676178,0.637748,-0.368864][0.868443,0.06748,0][-0.891475,-0.722483,-1.27884][-0.73771,0.00891465,-0.675059][0.869019,0.0357373,0][-1.08329,-0.754086,-0.73661][-0.933096,0.00320822,-0.359614][0.708748,0.026396,0][-1.28536,-0.754086,-0.289185][-0.942598,-0.000634785,-0.333928][0.576499,0.026396,0][-1.28475,-0.63172,-0.292868][-0.796851,0.566669,-0.209558][0.577588,0.062565,0][-1.08441,-0.63172,-0.732329][-0.746897,0.587851,-0.310768][0.707483,0.062565,0][-1.08441,-0.63172,-0.732329][-0.746897,0.587851,-0.310768][0.707483,0.062565,0][-1.08329,-0.754086,-0.73661][-0.933096,0.00320822,-0.359614][0.708748,0.026396,0][-1.28536,-0.754086,-0.289185][-0.942598,-0.000634785,-0.333928][0.576499,0.026396,0][-1.38079,-0.754086,0.270556][-0.999351,-0.00856282,-0.0349787][0.411051,0.026396,0][-1.3824,-0.63172,0.269258][-0.828357,0.55446,0.0799973][0.411435,0.062565,0][-1.28475,-0.63172,-0.292868][-0.796851,0.566669,-0.209558][0.577588,0.062565,0][-1.28475,-0.63172,-0.292868][-0.796851,0.566669,-0.209558][0.577588,0.062565,0][-1.28536,-0.754086,-0.289185][-0.942598,-0.000634785,-0.333928][0.576499,0.026396,0][-1.38079,-0.754086,0.270556][-0.999351,-0.00856282,-0.0349787][0.411051,0.026396,0][-1.25091,-0.754086,0.804845][-0.937425,-0.030814,0.346821][0.253126,0.026396,0][-1.25778,-0.63172,0.801687][-0.737479,0.55748,0.381236][0.25406,0.062565,0][-1.3824,-0.63172,0.269258][-0.828357,0.55446,0.0799973][0.411435,0.062565,0][-1.3824,-0.63172,0.269258][-0.828357,0.55446,0.0799973][0.411435,0.062565,0][-1.38079,-0.754086,0.270556][-0.999351,-0.00856282,-0.0349787][0.411051,0.026396,0][-1.25091,-0.754086,0.804845][-0.937425,-0.030814,0.346821][0.253126,0.026396,0][-0.962957,-0.754086,1.22898][-0.753583,-0.000333737,0.657353][0.127761,0.026396,0][-0.958645,-0.63172,1.23061][-0.543412,0.587498,0.599625][0.127278,0.062565,0][-1.25778,-0.63172,0.801687][-0.737479,0.55748,0.381236][0.25406,0.062565,0][-1.25778,-0.63172,0.801687][-0.737479,0.55748,0.381236][0.25406,0.062565,0][-1.25091,-0.754086,0.804845][-0.937425,-0.030814,0.346821][0.253126,0.026396,0][-0.962957,-0.754086,1.22898][-0.753583,-0.000333737,0.657353][0.127761,0.026396,0][-0.538533,-0.754086,1.53381][-0.456249,-0.00522895,0.889837][0.0376599,0.026396,0][-0.53727,-0.63172,1.53605][-0.260642,0.591281,0.763186][0.0369986,0.062565,0][-0.958645,-0.63172,1.23061][-0.543412,0.587498,0.599625][0.127278,0.062565,0][-0.958645,-0.63172,1.23061][-0.543412,0.587498,0.599625][0.127278,0.062565,0][-0.962957,-0.754086,1.22898][-0.753583,-0.000333737,0.657353][0.127761,0.026396,0][-0.538533,-0.754086,1.53381][-0.456249,-0.00522895,0.889837][0.0376599,0.026396,0][0,-0.754086,1.62495][0,-0.0632444,0.997998][0.0107195,0.026396,0][0,-0.63172,1.63849][0,0.563189,0.826328][0.00671747,0.062565,0][-0.53727,-0.63172,1.53605][-0.260642,0.591281,0.763186][0.0369986,0.062565,0][-0.53727,-0.63172,1.53605][-0.260642,0.591281,0.763186][0.0369986,0.062565,0][-0.538533,-0.754086,1.53381][-0.456249,-0.00522895,0.889837][0.0376599,0.026396,0][0,-0.754086,1.62495][0,-0.0632444,0.997998][0.0107195,0.026396,0][0.487597,-0.51939,-0.977498][0.131859,0.988189,-0.0780731][0.77995,0.0957672,0][0,-0.528872,-1.63849][0,0.678639,-0.734472][0.975326,0.0929647,0][0,-0.490867,-1.11174][0,0.997407,-0.0719623][0.819629,0.104198,0][0.513057,-0.572337,-1.55428][0.427174,0.530891,-0.7319][0.950435,0.0801172,0][0.514644,-0.689224,-1.55514][0.310201,-0.000303627,-0.950671][0.950689,0.0455678,0][0,-0.528872,-1.63849][0,0.678639,-0.734472][0.975326,0.0929647,0][0,-0.528872,-1.63849][0,0.678639,-0.734472][0.975326,0.0929647,0][0.487597,-0.51939,-0.977498][0.131859,0.988189,-0.0780731][0.77995,0.0957672,0][0.513057,-0.572337,-1.55428][0.427174,0.530891,-0.7319][0.950435,0.0801172,0][0.892103,-0.615092,-1.27689][0.676178,0.637748,-0.368864][0.868443,0.06748,0][0.891475,-0.722483,-1.27884][0.73771,0.00891464,-0.675059][0.869019,0.0357373,0][0.513057,-0.572337,-1.55428][0.427174,0.530891,-0.7319][0.950435,0.0801172,0][0.513057,-0.572337,-1.55428][0.427174,0.530891,-0.7319][0.950435,0.0801172,0][0.487597,-0.51939,-0.977498][0.131859,0.988189,-0.0780731][0.77995,0.0957672,0][0.892103,-0.615092,-1.27689][0.676178,0.637748,-0.368864][0.868443,0.06748,0][0.487597,-0.51939,-0.977498][0.131859,0.988189,-0.0780731][0.77995,0.0957672,0][0.900961,-0.573056,-0.67348][0.242078,0.965861,-0.0922512][0.690088,0.0799045,0][0.892103,-0.615092,-1.27689][0.676178,0.637748,-0.368864][0.868443,0.06748,0][1.08441,-0.63172,-0.732329][0.746897,0.587851,-0.310768][0.707483,0.062565,0][0.892103,-0.615092,-1.27689][0.676178,0.637748,-0.368864][0.868443,0.06748,0][0.900961,-0.573056,-0.67348][0.242078,0.965861,-0.0922512][0.690088,0.0799045,0][0.900961,-0.573056,-0.67348][0.242078,0.965861,-0.0922512][0.690088,0.0799045,0][1.17716,-0.589729,-0.253272][0.306254,0.945013,-0.114713][0.565884,0.0749761,0][1.08441,-0.63172,-0.732329][0.746897,0.587851,-0.310768][0.707483,0.062565,0][1.28475,-0.63172,-0.292868][0.796851,0.566669,-0.209558][0.577588,0.062565,0][1.28537,-0.754086,-0.289185][0.942598,-0.000634829,-0.333928][0.576499,0.026396,0][1.08441,-0.63172,-0.732329][0.746897,0.587851,-0.310768][0.707483,0.062565,0][1.08441,-0.63172,-0.732329][0.746897,0.587851,-0.310768][0.707483,0.062565,0][1.17716,-0.589729,-0.253272][0.306254,0.945013,-0.114713][0.565884,0.0749761,0][1.28475,-0.63172,-0.292868][0.796851,0.566669,-0.209558][0.577588,0.062565,0][1.17716,-0.589729,-0.253272][0.306254,0.945013,-0.114713][0.565884,0.0749761,0][1.27415,-0.589729,0.247418][0.354778,0.934737,-0.0199991][0.41789,0.0749761,0][1.28475,-0.63172,-0.292868][0.796851,0.566669,-0.209558][0.577588,0.062565,0][1.3824,-0.63172,0.269258][0.828357,0.55446,0.0799973][0.411435,0.062565,0][1.38079,-0.754086,0.270556][0.999351,-0.00856283,-0.0349787][0.411051,0.026396,0][1.28475,-0.63172,-0.292868][0.796851,0.566669,-0.209558][0.577588,0.062565,0][1.28475,-0.63172,-0.292868][0.796851,0.566669,-0.209558][0.577588,0.062565,0][1.27415,-0.589729,0.247418][0.354778,0.934737,-0.0199991][0.41789,0.0749761,0][1.3824,-0.63172,0.269258][0.828357,0.55446,0.0799973][0.411435,0.062565,0][1.27415,-0.589729,0.247418][0.354778,0.934737,-0.0199991][0.41789,0.0749761,0][1.17716,-0.589729,0.723426][0.344142,0.931081,0.121057][0.277192,0.0749761,0][1.3824,-0.63172,0.269258][0.828357,0.55446,0.0799973][0.411435,0.062565,0][1.25778,-0.63172,0.801687][0.737479,0.55748,0.381236][0.25406,0.062565,0][1.25091,-0.754086,0.804845][0.937425,-0.030814,0.346821][0.253126,0.026396,0][1.3824,-0.63172,0.269258][0.828357,0.55446,0.0799973][0.411435,0.062565,0][1.3824,-0.63172,0.269258][0.828357,0.55446,0.0799973][0.411435,0.062565,0][1.17716,-0.589729,0.723426][0.344142,0.931081,0.121057][0.277192,0.0749761,0][1.25778,-0.63172,0.801687][0.737479,0.55748,0.381236][0.25406,0.062565,0][1.17716,-0.589729,0.723426][0.344142,0.931081,0.121057][0.277192,0.0749761,0][0.900961,-0.589729,1.12697][0.259181,0.937923,0.230489][0.157914,0.0749761,0][1.25778,-0.63172,0.801687][0.737479,0.55748,0.381236][0.25406,0.062565,0][0.958645,-0.63172,1.23061][0.543412,0.587498,0.599625][0.127278,0.062565,0][0.962958,-0.754086,1.22898][0.753583,-0.000333753,0.657353][0.127761,0.026396,0][1.25778,-0.63172,0.801687][0.737479,0.55748,0.381236][0.25406,0.062565,0][1.25778,-0.63172,0.801687][0.737479,0.55748,0.381236][0.25406,0.062565,0][0.900961,-0.589729,1.12697][0.259181,0.937923,0.230489][0.157914,0.0749761,0][0.958645,-0.63172,1.23061][0.543412,0.587498,0.599625][0.127278,0.062565,0][0.900961,-0.589729,1.12697][0.259181,0.937923,0.230489][0.157914,0.0749761,0][0.487596,-0.589729,1.3966][0.134145,0.956075,0.260624][0.0782153,0.0749761,0][0.958645,-0.63172,1.23061][0.543412,0.587498,0.599625][0.127278,0.062565,0][0.53727,-0.63172,1.53605][0.260642,0.591281,0.763186][0.0369986,0.062565,0][0.538534,-0.754086,1.53381][0.456249,-0.00522895,0.889837][0.0376599,0.026396,0][0.958645,-0.63172,1.23061][0.543412,0.587498,0.599625][0.127278,0.062565,0][0.958645,-0.63172,1.23061][0.543412,0.587498,0.599625][0.127278,0.062565,0][0.487596,-0.589729,1.3966][0.134145,0.956075,0.260624][0.0782153,0.0749761,0][0.53727,-0.63172,1.53605][0.260642,0.591281,0.763186][0.0369986,0.062565,0][0,-0.589729,1.49129][0.0524018,0.960777,0.272327][0.0502288,0.0749761,0][0,-0.63172,1.63849][0,0.563189,0.826328][0.00671747,0.062565,0][0.53727,-0.63172,1.53605][0.260642,0.591281,0.763186][0.0369986,0.062565,0][0.53727,-0.63172,1.53605][0.260642,0.591281,0.763186][0.0369986,0.062565,0][0.487596,-0.589729,1.3966][0.134145,0.956075,0.260624][0.0782153,0.0749761,0][0,-0.589729,1.49129][0.0524018,0.960777,0.272327][0.0502288,0.0749761,0][0,-0.528872,-1.63849][0,0.678639,-0.734472][0.975326,0.0929647,0][0.514644,-0.689224,-1.55514][0.310201,-0.000303627,-0.950671][0.950689,0.0455678,0][0,-0.667683,-1.63508][0,-0.0246183,-0.999697][0.974316,0.051935,0][0.513057,-0.572337,-1.55428][0.427174,0.530891,-0.7319][0.950435,0.0801172,0][0.891475,-0.722483,-1.27884][0.73771,0.00891464,-0.675059][0.869019,0.0357373,0][0.514644,-0.689224,-1.55514][0.310201,-0.000303627,-0.950671][0.950689,0.0455678,0][0.892103,-0.615092,-1.27689][0.676178,0.637748,-0.368864][0.868443,0.06748,0][1.08329,-0.754086,-0.73661][0.933096,0.0032082,-0.359614][0.708748,0.026396,0][0.891475,-0.722483,-1.27884][0.73771,0.00891464,-0.675059][0.869019,0.0357373,0][1.08329,-0.754086,-0.73661][0.933096,0.0032082,-0.359614][0.708748,0.026396,0][0.892103,-0.615092,-1.27689][0.676178,0.637748,-0.368864][0.868443,0.06748,0][1.08441,-0.63172,-0.732329][0.746897,0.587851,-0.310768][0.707483,0.062565,0][1.08441,-0.63172,-0.732329][0.746897,0.587851,-0.310768][0.707483,0.062565,0][1.28537,-0.754086,-0.289185][0.942598,-0.000634829,-0.333928][0.576499,0.026396,0][1.08329,-0.754086,-0.73661][0.933096,0.0032082,-0.359614][0.708748,0.026396,0][1.28475,-0.63172,-0.292868][0.796851,0.566669,-0.209558][0.577588,0.062565,0][1.38079,-0.754086,0.270556][0.999351,-0.00856283,-0.0349787][0.411051,0.026396,0][1.28537,-0.754086,-0.289185][0.942598,-0.000634829,-0.333928][0.576499,0.026396,0][1.3824,-0.63172,0.269258][0.828357,0.55446,0.0799973][0.411435,0.062565,0][1.25091,-0.754086,0.804845][0.937425,-0.030814,0.346821][0.253126,0.026396,0][1.38079,-0.754086,0.270556][0.999351,-0.00856283,-0.0349787][0.411051,0.026396,0][1.25778,-0.63172,0.801687][0.737479,0.55748,0.381236][0.25406,0.062565,0][0.962958,-0.754086,1.22898][0.753583,-0.000333753,0.657353][0.127761,0.026396,0][1.25091,-0.754086,0.804845][0.937425,-0.030814,0.346821][0.253126,0.026396,0][0.958645,-0.63172,1.23061][0.543412,0.587498,0.599625][0.127278,0.062565,0][0.538534,-0.754086,1.53381][0.456249,-0.00522895,0.889837][0.0376599,0.026396,0][0.962958,-0.754086,1.22898][0.753583,-0.000333753,0.657353][0.127761,0.026396,0][0.53727,-0.63172,1.53605][0.260642,0.591281,0.763186][0.0369986,0.062565,0][0,-0.754086,1.62495][0,-0.0632444,0.997998][0.0107195,0.026396,0][0.538534,-0.754086,1.53381][0.456249,-0.00522895,0.889837][0.0376599,0.026396,0][0,-0.754086,1.62495][0,-0.0632444,0.997998][0.0107195,0.026396,0][0.53727,-0.63172,1.53605][0.260642,0.591281,0.763186][0.0369986,0.062565,0][0,-0.63172,1.63849][0,0.563189,0.826328][0.00671747,0.062565,0][-0.487597,-0.51939,-0.977498][-0.365164,0.129609,-0.921877][0.916322,0.568891,0][0,-0.180622,-1.04902][0,0.255244,-0.966877][0.940956,0.685565,0][0,-0.490867,-1.11174][0,0.198153,-0.980171][0.962556,0.578714,0][-0.487597,-0.51939,-0.977498][-0.365164,0.129609,-0.921877][0.916322,0.568891,0][-0.900961,-0.573056,-0.67348][-0.679728,0.0850082,-0.728522][0.811616,0.550407,0][-0.467006,-0.180622,-0.950343][-0.392862,0.279728,-0.87602][0.90697,0.685565,0][-0.467006,-0.180622,-0.950343][-0.392862,0.279728,-0.87602][0.90697,0.685565,0][0,-0.180622,-1.04902][0,0.255244,-0.966877][0.940956,0.685565,0][-0.487597,-0.51939,-0.977498][-0.365164,0.129609,-0.921877][0.916322,0.568891,0][-0.900961,-0.573056,-0.67348][-0.679728,0.0850082,-0.728522][0.811616,0.550407,0][-1.17716,-0.589729,-0.253272][-0.897581,0.10676,-0.427727][0.666894,0.544665,0][-0.862915,-0.180622,-0.669328][-0.698765,0.275806,-0.660044][0.810187,0.685565,0][-0.862915,-0.180622,-0.669328][-0.698765,0.275806,-0.660044][0.810187,0.685565,0][-0.467006,-0.180622,-0.950343][-0.392862,0.279728,-0.87602][0.90697,0.685565,0][-0.900961,-0.573056,-0.67348][-0.679728,0.0850082,-0.728522][0.811616,0.550407,0][-1.17716,-0.589729,-0.253272][-0.897581,0.10676,-0.427727][0.666894,0.544665,0][-1.27415,-0.589729,0.247418][-0.990084,0.127613,-0.0587277][0.494452,0.544665,0][-1.12745,-0.180622,-0.248761][-0.892584,0.28741,-0.347404][0.66534,0.685565,0][-1.12745,-0.180622,-0.248761][-0.892584,0.28741,-0.347404][0.66534,0.685565,0][-0.862915,-0.180622,-0.669328][-0.698765,0.275806,-0.660044][0.810187,0.685565,0][-1.17716,-0.589729,-0.253272][-0.897581,0.10676,-0.427727][0.666894,0.544665,0][-1.27415,-0.589729,0.247418][-0.990084,0.127613,-0.0587277][0.494452,0.544665,0][-1.17716,-0.589729,0.723426][-0.937694,0.126031,0.323799][0.330511,0.544665,0][-1.22035,-0.180622,0.247418][-0.957148,0.289433,0.00984128][0.494452,0.685565,0][-1.22035,-0.180622,0.247418][-0.957148,0.289433,0.00984128][0.494452,0.685565,0][-1.12745,-0.180622,-0.248761][-0.892584,0.28741,-0.347404][0.66534,0.685565,0][-1.27415,-0.589729,0.247418][-0.990084,0.127613,-0.0587277][0.494452,0.544665,0][-1.17716,-0.589729,0.723426][-0.937694,0.126031,0.323799][0.330511,0.544665,0][-0.900961,-0.589729,1.12697][-0.741447,0.113284,0.66138][0.191529,0.544665,0][-1.12745,-0.180622,0.709407][-0.882586,0.285118,0.373832][0.335339,0.685565,0][-1.12745,-0.180622,0.709407][-0.882586,0.285118,0.373832][0.335339,0.685565,0][-1.22035,-0.180622,0.247418][-0.957148,0.289433,0.00984128][0.494452,0.685565,0][-1.17716,-0.589729,0.723426][-0.937694,0.126031,0.323799][0.330511,0.544665,0][-0.900961,-0.589729,1.12697][-0.741447,0.113284,0.66138][0.191529,0.544665,0][-0.487596,-0.589729,1.3966][-0.434575,0.0984719,0.895236][0.0986643,0.544665,0][-0.862915,-0.180622,1.10101][-0.672944,0.277229,0.685778][0.200468,0.685565,0][-0.862915,-0.180622,1.10101][-0.672944,0.277229,0.685778][0.200468,0.685565,0][-1.12745,-0.180622,0.709407][-0.882586,0.285118,0.373832][0.335339,0.685565,0][-0.900961,-0.589729,1.12697][-0.741447,0.113284,0.66138][0.191529,0.544665,0][-0.487596,-0.589729,1.3966][-0.434575,0.0984719,0.895236][0.0986643,0.544665,0][0,-0.589729,1.49129][-0.191073,0.0891913,0.977515][0.0660544,0.544665,0][-0.467006,-0.180622,1.36267][-0.361938,0.270366,0.892134][0.11035,0.685565,0][-0.467006,-0.180622,1.36267][-0.361938,0.270366,0.892134][0.11035,0.685565,0][-0.862915,-0.180622,1.10101][-0.672944,0.277229,0.685778][0.200468,0.685565,0][-0.487596,-0.589729,1.3966][-0.434575,0.0984719,0.895236][0.0986643,0.544665,0][-0.467006,-0.180622,1.36267][-0.361938,0.270366,0.892134][0.11035,0.685565,0][0,-0.589729,1.49129][-0.191073,0.0891913,0.977515][0.0660544,0.544665,0][0,-0.180622,1.45456][-0.182844,0.32083,0.92932][0.0787042,0.685565,0][-0.467006,-0.180622,-0.950343][-0.392862,0.279728,-0.87602][0.90697,0.685565,0][0,0.197342,-0.851664][0,0.581659,-0.813433][0.872984,0.815738,0][0,-0.180622,-1.04902][0,0.255244,-0.966877][0.940956,0.685565,0][-0.467006,-0.180622,-0.950343][-0.392862,0.279728,-0.87602][0.90697,0.685565,0][-0.862915,-0.180622,-0.669328][-0.698765,0.275806,-0.660044][0.810187,0.685565,0][-0.395909,0.197342,-0.768007][-0.309928,0.631826,-0.710451][0.844172,0.815738,0][-0.395909,0.197342,-0.768007][-0.309928,0.631826,-0.710451][0.844172,0.815738,0][0,0.197342,-0.851664][0,0.581659,-0.813433][0.872984,0.815738,0][-0.467006,-0.180622,-0.950343][-0.392862,0.279728,-0.87602][0.90697,0.685565,0][-0.862915,-0.180622,-0.669328][-0.698765,0.275806,-0.660044][0.810187,0.685565,0][-1.12745,-0.180622,-0.248761][-0.892584,0.28741,-0.347404][0.66534,0.685565,0][-0.731544,0.197342,-0.529775][-0.569779,0.628523,-0.529444][0.762123,0.815738,0][-0.731544,0.197342,-0.529775][-0.569779,0.628523,-0.529444][0.762123,0.815738,0][-0.395909,0.197342,-0.768007][-0.309928,0.631826,-0.710451][0.844172,0.815738,0][-0.862915,-0.180622,-0.669328][-0.698765,0.275806,-0.660044][0.810187,0.685565,0][-1.12745,-0.180622,-0.248761][-0.892584,0.28741,-0.347404][0.66534,0.685565,0][-1.22035,-0.180622,0.247418][-0.957148,0.289433,0.00984128][0.494452,0.685565,0][-0.955808,0.197342,-0.173235][-0.733888,0.619654,-0.278277][0.639328,0.815738,0][-0.955808,0.197342,-0.173235][-0.733888,0.619654,-0.278277][0.639328,0.815738,0][-0.731544,0.197342,-0.529775][-0.569779,0.628523,-0.529444][0.762123,0.815738,0][-1.12745,-0.180622,-0.248761][-0.892584,0.28741,-0.347404][0.66534,0.685565,0][-1.22035,-0.180622,0.247418][-0.957148,0.289433,0.00984128][0.494452,0.685565,0][-1.12745,-0.180622,0.709407][-0.882586,0.285118,0.373832][0.335339,0.685565,0][-1.03456,0.197342,0.247418][-0.78714,0.616627,0.0135103][0.494452,0.815738,0][-1.03456,0.197342,0.247418][-0.78714,0.616627,0.0135103][0.494452,0.815738,0][-0.955808,0.197342,-0.173235][-0.733888,0.619654,-0.278277][0.639328,0.815738,0][-1.22035,-0.180622,0.247418][-0.957148,0.289433,0.00984128][0.494452,0.685565,0][-1.12745,-0.180622,0.709407][-0.882586,0.285118,0.373832][0.335339,0.685565,0][-0.862915,-0.180622,1.10101][-0.672944,0.277229,0.685778][0.200468,0.685565,0][-0.955808,0.197342,0.639083][-0.723297,0.616112,0.311847][0.35956,0.815738,0][-0.955808,0.197342,0.639083][-0.723297,0.616112,0.311847][0.35956,0.815738,0][-1.03456,0.197342,0.247418][-0.78714,0.616627,0.0135103][0.494452,0.815738,0][-1.12745,-0.180622,0.709407][-0.882586,0.285118,0.373832][0.335339,0.685565,0][-0.862915,-0.180622,1.10101][-0.672944,0.277229,0.685778][0.200468,0.685565,0][-0.467006,-0.180622,1.36267][-0.361938,0.270366,0.892134][0.11035,0.685565,0][-0.731544,0.197342,0.971069][-0.548849,0.614751,0.566433][0.245221,0.815738,0][-0.731544,0.197342,0.971069][-0.548849,0.614751,0.566433][0.245221,0.815738,0][-0.955808,0.197342,0.639083][-0.723297,0.616112,0.311847][0.35956,0.815738,0][-0.862915,-0.180622,1.10101][-0.672944,0.277229,0.685778][0.200468,0.685565,0][-0.467006,-0.180622,1.36267][-0.361938,0.270366,0.892134][0.11035,0.685565,0][0,-0.180622,1.45456][-0.182844,0.32083,0.92932][0.0787042,0.685565,0][-0.395908,0.197342,1.1929][-0.291516,0.609667,0.737105][0.168822,0.815738,0][-0.395908,0.197342,1.1929][-0.291516,0.609667,0.737105][0.168822,0.815738,0][-0.731544,0.197342,0.971069][-0.548849,0.614751,0.566433][0.245221,0.815738,0][-0.467006,-0.180622,1.36267][-0.361938,0.270366,0.892134][0.11035,0.685565,0][-0.395908,0.197342,1.1929][-0.291516,0.609667,0.737105][0.168822,0.815738,0][0,-0.180622,1.45456][-0.182844,0.32083,0.92932][0.0787042,0.685565,0][0,0.197342,1.27079][-0.155408,0.593247,0.789878][0.141995,0.815738,0][-0.395909,0.197342,-0.768007][-0.309928,0.631826,-0.710451][0.844172,0.815738,0][0,0.486626,-0.486993][0,0.768179,-0.640235][0.747389,0.91537,0][0,0.197342,-0.851664][0,0.581659,-0.813433][0.872984,0.815738,0][-0.395909,0.197342,-0.768007][-0.309928,0.631826,-0.710451][0.844172,0.815738,0][-0.731544,0.197342,-0.529775][-0.569779,0.628523,-0.529444][0.762123,0.815738,0][-0.203781,0.494444,-0.45254][-0.252356,0.829642,-0.498008][0.735523,0.918063,0][-0.203781,0.494444,-0.45254][-0.252356,0.829642,-0.498008][0.735523,0.918063,0][0,0.486626,-0.486993][0,0.768179,-0.640235][0.747389,0.91537,0][-0.395909,0.197342,-0.768007][-0.309928,0.631826,-0.710451][0.844172,0.815738,0][-0.731544,0.197342,-0.529775][-0.569779,0.628523,-0.529444][0.762123,0.815738,0][-0.955808,0.197342,-0.173235][-0.733888,0.619654,-0.278277][0.639328,0.815738,0][-0.488802,0.486626,-0.271914][-0.3902,0.857441,-0.335469][0.673314,0.91537,0][-0.488802,0.486626,-0.271914][-0.3902,0.857441,-0.335469][0.673314,0.91537,0][-0.203781,0.494444,-0.45254][-0.252356,0.829642,-0.498008][0.735523,0.918063,0][-0.731544,0.197342,-0.529775][-0.569779,0.628523,-0.529444][0.762123,0.815738,0][-0.955808,0.197342,-0.173235][-0.733888,0.619654,-0.278277][0.639328,0.815738,0][-1.03456,0.197342,0.247418][-0.78714,0.616627,0.0135103][0.494452,0.815738,0][-0.638651,0.486626,-0.0336817][-0.462037,0.872221,-0.160472][0.591265,0.91537,0][-0.638651,0.486626,-0.0336817][-0.462037,0.872221,-0.160472][0.591265,0.91537,0][-0.488802,0.486626,-0.271914][-0.3902,0.857441,-0.335469][0.673314,0.91537,0][-0.955808,0.197342,-0.173235][-0.733888,0.619654,-0.278277][0.639328,0.815738,0][-1.03456,0.197342,0.247418][-0.78714,0.616627,0.0135103][0.494452,0.815738,0][-0.955808,0.197342,0.639083][-0.723297,0.616112,0.311847][0.35956,0.815738,0][-0.69127,0.486626,0.247418][-0.525176,0.850501,0.0289588][0.494452,0.91537,0][-0.69127,0.486626,0.247418][-0.525176,0.850501,0.0289588][0.494452,0.91537,0][-0.638651,0.486626,-0.0336817][-0.462037,0.872221,-0.160472][0.591265,0.91537,0][-1.03456,0.197342,0.247418][-0.78714,0.616627,0.0135103][0.494452,0.815738,0][-0.955808,0.197342,0.639083][-0.723297,0.616112,0.311847][0.35956,0.815738,0][-0.731544,0.197342,0.971069][-0.548849,0.614751,0.566433][0.245221,0.815738,0][-0.638651,0.486626,0.50914][-0.446226,0.869778,0.210638][0.404313,0.91537,0][-0.638651,0.486626,0.50914][-0.446226,0.869778,0.210638][0.404313,0.91537,0][-0.69127,0.486626,0.247418][-0.525176,0.850501,0.0289588][0.494452,0.91537,0][-0.955808,0.197342,0.639083][-0.723297,0.616112,0.311847][0.35956,0.815738,0][-0.731544,0.197342,0.971069][-0.548849,0.614751,0.566433][0.245221,0.815738,0][-0.395908,0.197342,1.1929][-0.291516,0.609667,0.737105][0.168822,0.815738,0][-0.488802,0.486626,0.730966][-0.353596,0.849134,0.392354][0.327914,0.91537,0][-0.488802,0.486626,0.730966][-0.353596,0.849134,0.392354][0.327914,0.91537,0][-0.638651,0.486626,0.50914][-0.446226,0.869778,0.210638][0.404313,0.91537,0][-0.731544,0.197342,0.971069][-0.548849,0.614751,0.566433][0.245221,0.815738,0][-0.395908,0.197342,1.1929][-0.291516,0.609667,0.737105][0.168822,0.815738,0][0,0.197342,1.27079][-0.155408,0.593247,0.789878][0.141995,0.815738,0][-0.209924,0.494444,0.901674][-0.232137,0.830262,0.506732][0.269121,0.918063,0][-0.209924,0.494444,0.901674][-0.232137,0.830262,0.506732][0.269121,0.918063,0][-0.488802,0.486626,0.730966][-0.353596,0.849134,0.392354][0.327914,0.91537,0][-0.395908,0.197342,1.1929][-0.291516,0.609667,0.737105][0.168822,0.815738,0][-0.638651,0.486626,-0.0336817][-0.462037,0.872221,-0.160472][0.591265,0.91537,0][-0.171644,0.643177,0.0823421][-0.249803,0.950627,-0.184137][0.551306,0.969287,0][-0.488802,0.486626,-0.271914][-0.3902,0.857441,-0.335469][0.673314,0.91537,0][-0.638651,0.486626,0.50914][-0.446226,0.869778,0.210638][0.404313,0.91537,0][-0.200857,0.656207,0.247418][-0.309798,0.950802,0.000492366][0.494452,0.973775,0][-0.69127,0.486626,0.247418][-0.525176,0.850501,0.0289588][0.494452,0.91537,0][-0.209924,0.494444,0.901674][-0.232137,0.830262,0.506732][0.269121,0.918063,0][-0.171644,0.643177,0.417257][-0.256156,0.946623,0.195677][0.435958,0.969287,0][-0.488802,0.486626,0.730966][-0.353596,0.849134,0.392354][0.327914,0.91537,0][-0.488802,0.486626,0.730966][-0.353596,0.849134,0.392354][0.327914,0.91537,0][-0.171644,0.643177,0.417257][-0.256156,0.946623,0.195677][0.435958,0.969287,0][-0.638651,0.486626,0.50914][-0.446226,0.869778,0.210638][0.404313,0.91537,0][-0.171644,0.643177,0.417257][-0.256156,0.946623,0.195677][0.435958,0.969287,0][-0.200857,0.656207,0.247418][-0.309798,0.950802,0.000492366][0.494452,0.973775,0][-0.638651,0.486626,0.50914][-0.446226,0.869778,0.210638][0.404313,0.91537,0][-0.200857,0.656207,0.247418][-0.309798,0.950802,0.000492366][0.494452,0.973775,0][-0.638651,0.486626,-0.0336817][-0.462037,0.872221,-0.160472][0.591265,0.91537,0][-0.69127,0.486626,0.247418][-0.525176,0.850501,0.0289588][0.494452,0.91537,0][-0.200857,0.656207,0.247418][-0.309798,0.950802,0.000492366][0.494452,0.973775,0][-0.171644,0.643177,0.0823421][-0.249803,0.950627,-0.184137][0.551306,0.969287,0][-0.638651,0.486626,-0.0336817][-0.462037,0.872221,-0.160472][0.591265,0.91537,0][-0.171644,0.643177,0.0823421][-0.249803,0.950627,-0.184137][0.551306,0.969287,0][-0.203781,0.494444,-0.45254][-0.252356,0.829642,-0.498008][0.735523,0.918063,0][-0.488802,0.486626,-0.271914][-0.3902,0.857441,-0.335469][0.673314,0.91537,0][-0.829017,-0.19677,-0.919331][-0.598681,0.414802,-0.685216][0.896289,0.680003,0][-0.949748,-0.19677,-0.778138][-0.880843,0.4652,0.0877724][0.847661,0.680003,0][-0.656487,-0.0564604,-0.714074][-0.17931,0.953931,-0.240549][0.825597,0.728327,0][-0.656487,-0.0564604,-0.714074][-0.17931,0.953931,-0.240549][0.825597,0.728327,0][-0.664938,-0.19677,-1.00415][-0.0168422,0.459149,-0.8882][0.925502,0.680003,0][-0.829017,-0.19677,-0.919331][-0.598681,0.414802,-0.685216][0.896289,0.680003,0][-0.656487,-0.0564604,-0.714074][-0.17931,0.953931,-0.240549][0.825597,0.728327,0][-0.522068,-0.197892,-0.870284][0.649072,0.315918,-0.692027][0.879397,0.679617,0][-0.664938,-0.19677,-1.00415][-0.0168422,0.459149,-0.8882][0.925502,0.680003,0][-0.516993,-0.598087,-0.874311][0.681081,0.0160037,-0.732033][0.880784,0.541786,0][-0.660379,-0.600361,-1.00777][0.35897,0.0131129,-0.933257][0.926747,0.541003,0][-0.522068,-0.197892,-0.870284][0.649072,0.315918,-0.692027][0.879397,0.679617,0][-0.522068,-0.197892,-0.870284][0.649072,0.315918,-0.692027][0.879397,0.679617,0][-0.660379,-0.600361,-1.00777][0.35897,0.0131129,-0.933257][0.926747,0.541003,0][-0.664938,-0.19677,-1.00415][-0.0168422,0.459149,-0.8882][0.925502,0.680003,0][-0.826283,-0.601474,-0.921501][-0.567949,0.000949326,-0.823063][0.897037,0.54062,0][-0.829017,-0.19677,-0.919331][-0.598681,0.414802,-0.685216][0.896289,0.680003,0][-0.664938,-0.19677,-1.00415][-0.0168422,0.459149,-0.8882][0.925502,0.680003,0][-0.664938,-0.19677,-1.00415][-0.0168422,0.459149,-0.8882][0.925502,0.680003,0][-0.660379,-0.600361,-1.00777][0.35897,0.0131129,-0.933257][0.926747,0.541003,0][-0.826283,-0.601474,-0.921501][-0.567949,0.000949326,-0.823063][0.897037,0.54062,0][-0.951651,-0.601474,-0.776628][-0.947931,0.00218918,-0.318468][0.847141,0.54062,0][-0.829017,-0.19677,-0.919331][-0.598681,0.414802,-0.685216][0.896289,0.680003,0][-0.826283,-0.601474,-0.921501][-0.567949,0.000949326,-0.823063][0.897037,0.54062,0][-0.951651,-0.601474,-0.776628][-0.947931,0.00218918,-0.318468][0.847141,0.54062,0][-0.852872,-0.599202,-0.607774][-0.861669,0.00738176,0.507417][0.788987,0.541403,0][-0.949748,-0.19677,-0.778138][-0.880843,0.4652,0.0877724][0.847661,0.680003,0][-0.949748,-0.19677,-0.778138][-0.880843,0.4652,0.0877724][0.847661,0.680003,0][-0.829017,-0.19677,-0.919331][-0.598681,0.414802,-0.685216][0.896289,0.680003,0][-0.951651,-0.601474,-0.776628][-0.947931,0.00218918,-0.318468][0.847141,0.54062,0][-0.949748,-0.19677,-0.778138][-0.880843,0.4652,0.0877724][0.847661,0.680003,0][-0.852872,-0.599202,-0.607774][-0.861669,0.00738176,0.507417][0.788987,0.541403,0][-0.850058,-0.195618,-0.610008][-0.753224,0.485957,0.443282][0.789756,0.6804,0][-0.850058,-0.195618,-0.610008][-0.753224,0.485957,0.443282][0.789756,0.6804,0][-0.656487,-0.0564604,-0.714074][-0.17931,0.953931,-0.240549][0.825597,0.728327,0][-0.949748,-0.19677,-0.778138][-0.880843,0.4652,0.0877724][0.847661,0.680003,0][-1.35459,-0.234738,0.309281][-0.903659,0.414802,0.106488][0.473146,0.666926,0][-1.30637,-0.234738,0.488687][-0.425537,0.465202,0.776212][0.411357,0.666926,0][-1.08774,-0.094429,0.282995][-0.29979,0.953931,0.011928][0.482199,0.71525,0][-1.08774,-0.094429,0.282995][-0.29979,0.953931,0.011928][0.482199,0.71525,0][-1.3318,-0.234738,0.125986][-0.742185,0.459149,-0.488204][0.536274,0.666926,0][-1.35459,-0.234738,0.309281][-0.903659,0.414802,0.106488][0.473146,0.666926,0][-1.08774,-0.094429,0.282995][-0.29979,0.953931,0.011928][0.482199,0.71525,0][-1.14061,-0.235861,0.0838089][-0.203925,0.315918,-0.926612][0.5508,0.66654,0][-1.3318,-0.234738,0.125986][-0.742185,0.459149,-0.488204][0.536274,0.666926,0][-1.14107,-0.636056,0.0773468][-0.21883,0.0160022,-0.975632][0.553026,0.52871,0][-1.33221,-0.63833,0.120182][-0.566906,0.0131118,-0.823678][0.538273,0.527927,0][-1.14061,-0.235861,0.0838089][-0.203925,0.315918,-0.926612][0.5508,0.66654,0][-1.14061,-0.235861,0.0838089][-0.203925,0.315918,-0.926612][0.5508,0.66654,0][-1.33221,-0.63833,0.120182][-0.566906,0.0131118,-0.823678][0.538273,0.527927,0][-1.3318,-0.234738,0.125986][-0.742185,0.459149,-0.488204][0.536274,0.666926,0][-1.35483,-0.639442,0.305799][-0.999994,0.000949438,0.00321427][0.474345,0.527544,0][-1.35459,-0.234738,0.309281][-0.903659,0.414802,0.106488][0.473146,0.666926,0][-1.3318,-0.234738,0.125986][-0.742185,0.459149,-0.488204][0.536274,0.666926,0][-1.3318,-0.234738,0.125986][-0.742185,0.459149,-0.488204][0.536274,0.666926,0][-1.33221,-0.63833,0.120182][-0.566906,0.0131118,-0.823678][0.538273,0.527927,0][-1.35483,-0.639442,0.305799][-0.999994,0.000949438,0.00321427][0.474345,0.527544,0][-1.3062,-0.639442,0.491111][-0.798567,0.00219005,0.601901][0.410522,0.527544,0][-1.35459,-0.234738,0.309281][-0.903659,0.414802,0.106488][0.473146,0.666926,0][-1.35483,-0.639442,0.305799][-0.999994,0.000949438,0.00321427][0.474345,0.527544,0][-1.3062,-0.639442,0.491111][-0.798567,0.00219005,0.601901][0.410522,0.527544,0][-1.11107,-0.637171,0.505082][-0.0685373,0.00738263,0.997621][0.405711,0.528326,0][-1.30637,-0.234738,0.488687][-0.425537,0.465202,0.776212][0.411357,0.666926,0][-1.30637,-0.234738,0.488687][-0.425537,0.465202,0.776212][0.411357,0.666926,0][-1.35459,-0.234738,0.309281][-0.903659,0.414802,0.106488][0.473146,0.666926,0][-1.3062,-0.639442,0.491111][-0.798567,0.00219005,0.601901][0.410522,0.527544,0][-1.30637,-0.234738,0.488687][-0.425537,0.465202,0.776212][0.411357,0.666926,0][-1.11107,-0.637171,0.505082][-0.0685373,0.00738263,0.997621][0.405711,0.528326,0][-1.11133,-0.233586,0.501498][-0.0601374,0.485958,0.871911][0.406945,0.667323,0][-1.11133,-0.233586,0.501498][-0.0601374,0.485958,0.871911][0.406945,0.667323,0][-1.08774,-0.094429,0.282995][-0.29979,0.953931,0.011928][0.482199,0.71525,0][-1.30637,-0.234738,0.488687][-0.425537,0.465202,0.776212][0.411357,0.666926,0][0,-0.180622,-1.04902][0,0.255244,-0.966877][0.940956,0.685565,0][0.467006,-0.180622,-0.950343][0.392862,0.279729,-0.87602][0.90697,0.685565,0][0.487597,-0.51939,-0.977498][0.365164,0.129609,-0.921877][0.916322,0.568891,0][0.487597,-0.51939,-0.977498][0.365164,0.129609,-0.921877][0.916322,0.568891,0][0,-0.490867,-1.11174][0,0.198153,-0.980171][0.962556,0.578714,0][0,-0.180622,-1.04902][0,0.255244,-0.966877][0.940956,0.685565,0][0.467006,-0.180622,-0.950343][0.392862,0.279729,-0.87602][0.90697,0.685565,0][0.862915,-0.180622,-0.669328][0.698765,0.275806,-0.660044][0.810187,0.685565,0][0.900961,-0.573056,-0.67348][0.679728,0.0850084,-0.728522][0.811616,0.550407,0][0.900961,-0.573056,-0.67348][0.679728,0.0850084,-0.728522][0.811616,0.550407,0][0.487597,-0.51939,-0.977498][0.365164,0.129609,-0.921877][0.916322,0.568891,0][0.467006,-0.180622,-0.950343][0.392862,0.279729,-0.87602][0.90697,0.685565,0][0.862915,-0.180622,-0.669328][0.698765,0.275806,-0.660044][0.810187,0.685565,0][1.12745,-0.180622,-0.248761][0.892584,0.287411,-0.347404][0.66534,0.685565,0][1.17716,-0.589729,-0.253272][0.897581,0.10676,-0.427727][0.666894,0.544665,0][1.17716,-0.589729,-0.253272][0.897581,0.10676,-0.427727][0.666894,0.544665,0][0.900961,-0.573056,-0.67348][0.679728,0.0850084,-0.728522][0.811616,0.550407,0][0.862915,-0.180622,-0.669328][0.698765,0.275806,-0.660044][0.810187,0.685565,0][1.12745,-0.180622,-0.248761][0.892584,0.287411,-0.347404][0.66534,0.685565,0][1.22035,-0.180622,0.247418][0.957148,0.289433,0.00984127][0.494452,0.685565,0][1.27415,-0.589729,0.247418][0.990084,0.127614,-0.0587277][0.494452,0.544665,0][1.27415,-0.589729,0.247418][0.990084,0.127614,-0.0587277][0.494452,0.544665,0][1.17716,-0.589729,-0.253272][0.897581,0.10676,-0.427727][0.666894,0.544665,0][1.12745,-0.180622,-0.248761][0.892584,0.287411,-0.347404][0.66534,0.685565,0][1.22035,-0.180622,0.247418][0.957148,0.289433,0.00984127][0.494452,0.685565,0][1.12745,-0.180622,0.709407][0.882586,0.285118,0.373832][0.335339,0.685565,0][1.17716,-0.589729,0.723426][0.937694,0.126032,0.323799][0.330511,0.544665,0][1.17716,-0.589729,0.723426][0.937694,0.126032,0.323799][0.330511,0.544665,0][1.27415,-0.589729,0.247418][0.990084,0.127614,-0.0587277][0.494452,0.544665,0][1.22035,-0.180622,0.247418][0.957148,0.289433,0.00984127][0.494452,0.685565,0][1.12745,-0.180622,0.709407][0.882586,0.285118,0.373832][0.335339,0.685565,0][0.862915,-0.180622,1.10101][0.672944,0.277229,0.685778][0.200468,0.685565,0][0.900961,-0.589729,1.12697][0.741447,0.113285,0.66138][0.191529,0.544665,0][0.900961,-0.589729,1.12697][0.741447,0.113285,0.66138][0.191529,0.544665,0][1.17716,-0.589729,0.723426][0.937694,0.126032,0.323799][0.330511,0.544665,0][1.12745,-0.180622,0.709407][0.882586,0.285118,0.373832][0.335339,0.685565,0][0.862915,-0.180622,1.10101][0.672944,0.277229,0.685778][0.200468,0.685565,0][0.467006,-0.180622,1.36267][0.361938,0.270366,0.892134][0.11035,0.685565,0][0.487596,-0.589729,1.3966][0.434575,0.098472,0.895236][0.0986643,0.544665,0][0.487596,-0.589729,1.3966][0.434575,0.098472,0.895236][0.0986643,0.544665,0][0.900961,-0.589729,1.12697][0.741447,0.113285,0.66138][0.191529,0.544665,0][0.862915,-0.180622,1.10101][0.672944,0.277229,0.685778][0.200468,0.685565,0][0.467006,-0.180622,1.36267][0.361938,0.270366,0.892134][0.11035,0.685565,0][0,-0.180622,1.45456][0.182844,0.32083,0.92932][0.0787042,0.685565,0][0,-0.589729,1.49129][0.191073,0.0891913,0.977515][0.0660544,0.544665,0][0,-0.589729,1.49129][0.191073,0.0891913,0.977515][0.0660544,0.544665,0][0.487596,-0.589729,1.3966][0.434575,0.098472,0.895236][0.0986643,0.544665,0][0.467006,-0.180622,1.36267][0.361938,0.270366,0.892134][0.11035,0.685565,0][0,0.197342,-0.851664][0,0.581659,-0.813433][0.872984,0.815738,0][0.395909,0.197342,-0.768007][0.309928,0.631826,-0.710451][0.844172,0.815738,0][0.467006,-0.180622,-0.950343][0.392862,0.279729,-0.87602][0.90697,0.685565,0][0.467006,-0.180622,-0.950343][0.392862,0.279729,-0.87602][0.90697,0.685565,0][0,-0.180622,-1.04902][0,0.255244,-0.966877][0.940956,0.685565,0][0,0.197342,-0.851664][0,0.581659,-0.813433][0.872984,0.815738,0][0.395909,0.197342,-0.768007][0.309928,0.631826,-0.710451][0.844172,0.815738,0][0.731544,0.197342,-0.529775][0.569779,0.628523,-0.529444][0.762123,0.815738,0][0.862915,-0.180622,-0.669328][0.698765,0.275806,-0.660044][0.810187,0.685565,0][0.862915,-0.180622,-0.669328][0.698765,0.275806,-0.660044][0.810187,0.685565,0][0.467006,-0.180622,-0.950343][0.392862,0.279729,-0.87602][0.90697,0.685565,0][0.395909,0.197342,-0.768007][0.309928,0.631826,-0.710451][0.844172,0.815738,0][0.731544,0.197342,-0.529775][0.569779,0.628523,-0.529444][0.762123,0.815738,0][0.955808,0.197342,-0.173235][0.733888,0.619654,-0.278277][0.639328,0.815738,0][1.12745,-0.180622,-0.248761][0.892584,0.287411,-0.347404][0.66534,0.685565,0][1.12745,-0.180622,-0.248761][0.892584,0.287411,-0.347404][0.66534,0.685565,0][0.862915,-0.180622,-0.669328][0.698765,0.275806,-0.660044][0.810187,0.685565,0][0.731544,0.197342,-0.529775][0.569779,0.628523,-0.529444][0.762123,0.815738,0][0.955808,0.197342,-0.173235][0.733888,0.619654,-0.278277][0.639328,0.815738,0][1.03456,0.197342,0.247418][0.78714,0.616627,0.0135103][0.494452,0.815738,0][1.22035,-0.180622,0.247418][0.957148,0.289433,0.00984127][0.494452,0.685565,0][1.22035,-0.180622,0.247418][0.957148,0.289433,0.00984127][0.494452,0.685565,0][1.12745,-0.180622,-0.248761][0.892584,0.287411,-0.347404][0.66534,0.685565,0][0.955808,0.197342,-0.173235][0.733888,0.619654,-0.278277][0.639328,0.815738,0][1.03456,0.197342,0.247418][0.78714,0.616627,0.0135103][0.494452,0.815738,0][0.955808,0.197342,0.639083][0.723297,0.616112,0.311847][0.35956,0.815738,0][1.12745,-0.180622,0.709407][0.882586,0.285118,0.373832][0.335339,0.685565,0][1.12745,-0.180622,0.709407][0.882586,0.285118,0.373832][0.335339,0.685565,0][1.22035,-0.180622,0.247418][0.957148,0.289433,0.00984127][0.494452,0.685565,0][1.03456,0.197342,0.247418][0.78714,0.616627,0.0135103][0.494452,0.815738,0][0.955808,0.197342,0.639083][0.723297,0.616112,0.311847][0.35956,0.815738,0][0.731544,0.197342,0.971069][0.548849,0.614751,0.566433][0.245221,0.815738,0][0.862915,-0.180622,1.10101][0.672944,0.277229,0.685778][0.200468,0.685565,0][0.862915,-0.180622,1.10101][0.672944,0.277229,0.685778][0.200468,0.685565,0][1.12745,-0.180622,0.709407][0.882586,0.285118,0.373832][0.335339,0.685565,0][0.955808,0.197342,0.639083][0.723297,0.616112,0.311847][0.35956,0.815738,0][0.731544,0.197342,0.971069][0.548849,0.614751,0.566433][0.245221,0.815738,0][0.395908,0.197342,1.1929][0.291516,0.609667,0.737105][0.168822,0.815738,0][0.467006,-0.180622,1.36267][0.361938,0.270366,0.892134][0.11035,0.685565,0][0.467006,-0.180622,1.36267][0.361938,0.270366,0.892134][0.11035,0.685565,0][0.862915,-0.180622,1.10101][0.672944,0.277229,0.685778][0.200468,0.685565,0][0.731544,0.197342,0.971069][0.548849,0.614751,0.566433][0.245221,0.815738,0][0.395908,0.197342,1.1929][0.291516,0.609667,0.737105][0.168822,0.815738,0][0,0.197342,1.27079][0.155408,0.593247,0.789878][0.141995,0.815738,0][0,-0.180622,1.45456][0.182844,0.32083,0.92932][0.0787042,0.685565,0][0,-0.180622,1.45456][0.182844,0.32083,0.92932][0.0787042,0.685565,0][0.467006,-0.180622,1.36267][0.361938,0.270366,0.892134][0.11035,0.685565,0][0.395908,0.197342,1.1929][0.291516,0.609667,0.737105][0.168822,0.815738,0][0,0.486626,-0.486993][0,0.768179,-0.640235][0.747389,0.91537,0][0.203781,0.494444,-0.45254][0.252356,0.829642,-0.498008][0.735523,0.918063,0][0.395909,0.197342,-0.768007][0.309928,0.631826,-0.710451][0.844172,0.815738,0][0.395909,0.197342,-0.768007][0.309928,0.631826,-0.710451][0.844172,0.815738,0][0,0.197342,-0.851664][0,0.581659,-0.813433][0.872984,0.815738,0][0,0.486626,-0.486993][0,0.768179,-0.640235][0.747389,0.91537,0][0.203781,0.494444,-0.45254][0.252356,0.829642,-0.498008][0.735523,0.918063,0][0.488802,0.486626,-0.271914][0.3902,0.857441,-0.335469][0.673314,0.91537,0][0.731544,0.197342,-0.529775][0.569779,0.628523,-0.529444][0.762123,0.815738,0][0.731544,0.197342,-0.529775][0.569779,0.628523,-0.529444][0.762123,0.815738,0][0.395909,0.197342,-0.768007][0.309928,0.631826,-0.710451][0.844172,0.815738,0][0.203781,0.494444,-0.45254][0.252356,0.829642,-0.498008][0.735523,0.918063,0][0.488802,0.486626,-0.271914][0.3902,0.857441,-0.335469][0.673314,0.91537,0][0.638651,0.486626,-0.0336817][0.462037,0.872222,-0.160472][0.591265,0.91537,0][0.955808,0.197342,-0.173235][0.733888,0.619654,-0.278277][0.639328,0.815738,0][0.955808,0.197342,-0.173235][0.733888,0.619654,-0.278277][0.639328,0.815738,0][0.731544,0.197342,-0.529775][0.569779,0.628523,-0.529444][0.762123,0.815738,0][0.488802,0.486626,-0.271914][0.3902,0.857441,-0.335469][0.673314,0.91537,0][0.638651,0.486626,-0.0336817][0.462037,0.872222,-0.160472][0.591265,0.91537,0][0.69127,0.486626,0.247418][0.525176,0.850501,0.0289588][0.494452,0.91537,0][1.03456,0.197342,0.247418][0.78714,0.616627,0.0135103][0.494452,0.815738,0][1.03456,0.197342,0.247418][0.78714,0.616627,0.0135103][0.494452,0.815738,0][0.955808,0.197342,-0.173235][0.733888,0.619654,-0.278277][0.639328,0.815738,0][0.638651,0.486626,-0.0336817][0.462037,0.872222,-0.160472][0.591265,0.91537,0][0.69127,0.486626,0.247418][0.525176,0.850501,0.0289588][0.494452,0.91537,0][0.638651,0.486626,0.50914][0.446226,0.869778,0.210638][0.404313,0.91537,0][0.955808,0.197342,0.639083][0.723297,0.616112,0.311847][0.35956,0.815738,0][0.955808,0.197342,0.639083][0.723297,0.616112,0.311847][0.35956,0.815738,0][1.03456,0.197342,0.247418][0.78714,0.616627,0.0135103][0.494452,0.815738,0][0.69127,0.486626,0.247418][0.525176,0.850501,0.0289588][0.494452,0.91537,0][0.638651,0.486626,0.50914][0.446226,0.869778,0.210638][0.404313,0.91537,0][0.488802,0.486626,0.730966][0.353596,0.849134,0.392354][0.327914,0.91537,0][0.731544,0.197342,0.971069][0.548849,0.614751,0.566433][0.245221,0.815738,0][0.731544,0.197342,0.971069][0.548849,0.614751,0.566433][0.245221,0.815738,0][0.955808,0.197342,0.639083][0.723297,0.616112,0.311847][0.35956,0.815738,0][0.638651,0.486626,0.50914][0.446226,0.869778,0.210638][0.404313,0.91537,0][0.488802,0.486626,0.730966][0.353596,0.849134,0.392354][0.327914,0.91537,0][0.209924,0.494444,0.901674][0.232137,0.830262,0.506732][0.269121,0.918063,0][0.395908,0.197342,1.1929][0.291516,0.609667,0.737105][0.168822,0.815738,0][0.395908,0.197342,1.1929][0.291516,0.609667,0.737105][0.168822,0.815738,0][0.731544,0.197342,0.971069][0.548849,0.614751,0.566433][0.245221,0.815738,0][0.488802,0.486626,0.730966][0.353596,0.849134,0.392354][0.327914,0.91537,0][0.395908,0.197342,1.1929][0.291516,0.609667,0.737105][0.168822,0.815738,0][0.209924,0.494444,0.901674][0.232137,0.830262,0.506732][0.269121,0.918063,0][0,0.197342,1.27079][0.155408,0.593247,0.789878][0.141995,0.815738,0][0.488802,0.486626,-0.271914][0.3902,0.857441,-0.335469][0.673314,0.91537,0][0.171644,0.643177,0.0823421][0.249803,0.950627,-0.184137][0.551306,0.969287,0][0.638651,0.486626,-0.0336817][0.462037,0.872222,-0.160472][0.591265,0.91537,0][0.69127,0.486626,0.247418][0.525176,0.850501,0.0289588][0.494452,0.91537,0][0.200856,0.656207,0.247418][0.309798,0.950802,0.000492366][0.494452,0.973775,0][0.638651,0.486626,0.50914][0.446226,0.869778,0.210638][0.404313,0.91537,0][0.488802,0.486626,0.730966][0.353596,0.849134,0.392354][0.327914,0.91537,0][0.171644,0.643177,0.417257][0.256156,0.946623,0.195678][0.435958,0.969287,0][0.209924,0.494444,0.901674][0.232137,0.830262,0.506732][0.269121,0.918063,0][0.638651,0.486626,0.50914][0.446226,0.869778,0.210638][0.404313,0.91537,0][0.171644,0.643177,0.417257][0.256156,0.946623,0.195678][0.435958,0.969287,0][0.488802,0.486626,0.730966][0.353596,0.849134,0.392354][0.327914,0.91537,0][0.638651,0.486626,0.50914][0.446226,0.869778,0.210638][0.404313,0.91537,0][0.200856,0.656207,0.247418][0.309798,0.950802,0.000492366][0.494452,0.973775,0][0.171644,0.643177,0.417257][0.256156,0.946623,0.195678][0.435958,0.969287,0][0.69127,0.486626,0.247418][0.525176,0.850501,0.0289588][0.494452,0.91537,0][0.638651,0.486626,-0.0336817][0.462037,0.872222,-0.160472][0.591265,0.91537,0][0.200856,0.656207,0.247418][0.309798,0.950802,0.000492366][0.494452,0.973775,0][0.638651,0.486626,-0.0336817][0.462037,0.872222,-0.160472][0.591265,0.91537,0][0.171644,0.643177,0.0823421][0.249803,0.950627,-0.184137][0.551306,0.969287,0][0.200856,0.656207,0.247418][0.309798,0.950802,0.000492366][0.494452,0.973775,0][0.488802,0.486626,-0.271914][0.3902,0.857441,-0.335469][0.673314,0.91537,0][0.203781,0.494444,-0.45254][0.252356,0.829642,-0.498008][0.735523,0.918063,0][0.171644,0.643177,0.0823421][0.249803,0.950627,-0.184137][0.551306,0.969287,0][0.829017,-0.19677,-0.919331][0.598681,0.414802,-0.685216][0.896289,0.680003,0][0.826283,-0.601474,-0.921501][0.567949,0.000949497,-0.823063][0.897037,0.54062,0][0.664938,-0.19677,-1.00415][0.0168422,0.459149,-0.8882][0.925502,0.680003,0][0.664938,-0.19677,-1.00415][0.0168422,0.459149,-0.8882][0.925502,0.680003,0][0.656487,-0.0564604,-0.714074][0.17931,0.953931,-0.240549][0.825597,0.728327,0][0.829017,-0.19677,-0.919331][0.598681,0.414802,-0.685216][0.896289,0.680003,0][0.829017,-0.19677,-0.919331][0.598681,0.414802,-0.685216][0.896289,0.680003,0][0.656487,-0.0564604,-0.714074][0.17931,0.953931,-0.240549][0.825597,0.728327,0][0.949748,-0.19677,-0.778138][0.880843,0.465201,0.0877723][0.847661,0.680003,0][0.664938,-0.19677,-1.00415][0.0168422,0.459149,-0.8882][0.925502,0.680003,0][0.522068,-0.197892,-0.870284][-0.649072,0.315918,-0.692027][0.879397,0.679617,0][0.656487,-0.0564604,-0.714074][0.17931,0.953931,-0.240549][0.825597,0.728327,0][0.522068,-0.197892,-0.870284][-0.649072,0.315918,-0.692027][0.879397,0.679617,0][0.66038,-0.600361,-1.00777][-0.35897,0.0131127,-0.933257][0.926747,0.541003,0][0.516994,-0.598087,-0.874311][-0.681081,0.0160035,-0.732033][0.880784,0.541786,0][0.664938,-0.19677,-1.00415][0.0168422,0.459149,-0.8882][0.925502,0.680003,0][0.66038,-0.600361,-1.00777][-0.35897,0.0131127,-0.933257][0.926747,0.541003,0][0.522068,-0.197892,-0.870284][-0.649072,0.315918,-0.692027][0.879397,0.679617,0][0.664938,-0.19677,-1.00415][0.0168422,0.459149,-0.8882][0.925502,0.680003,0][0.826283,-0.601474,-0.921501][0.567949,0.000949497,-0.823063][0.897037,0.54062,0][0.66038,-0.600361,-1.00777][-0.35897,0.0131127,-0.933257][0.926747,0.541003,0][0.829017,-0.19677,-0.919331][0.598681,0.414802,-0.685216][0.896289,0.680003,0][0.949748,-0.19677,-0.778138][0.880843,0.465201,0.0877723][0.847661,0.680003,0][0.951652,-0.601474,-0.776628][0.947931,0.00218946,-0.318468][0.847141,0.54062,0][0.951652,-0.601474,-0.776628][0.947931,0.00218946,-0.318468][0.847141,0.54062,0][0.826283,-0.601474,-0.921501][0.567949,0.000949497,-0.823063][0.897037,0.54062,0][0.829017,-0.19677,-0.919331][0.598681,0.414802,-0.685216][0.896289,0.680003,0][0.949748,-0.19677,-0.778138][0.880843,0.465201,0.0877723][0.847661,0.680003,0][0.850058,-0.195618,-0.610008][0.753224,0.485958,0.443282][0.789756,0.6804,0][0.852872,-0.599202,-0.607774][0.861669,0.00738202,0.507417][0.788987,0.541403,0][0.852872,-0.599202,-0.607774][0.861669,0.00738202,0.507417][0.788987,0.541403,0][0.951652,-0.601474,-0.776628][0.947931,0.00218946,-0.318468][0.847141,0.54062,0][0.949748,-0.19677,-0.778138][0.880843,0.465201,0.0877723][0.847661,0.680003,0][0.949748,-0.19677,-0.778138][0.880843,0.465201,0.0877723][0.847661,0.680003,0][0.656487,-0.0564604,-0.714074][0.17931,0.953931,-0.240549][0.825597,0.728327,0][0.850058,-0.195618,-0.610008][0.753224,0.485958,0.443282][0.789756,0.6804,0][1.35459,-0.234738,0.309281][0.903659,0.414802,0.106488][0.473146,0.666926,0][1.35483,-0.639442,0.305799][0.999994,0.000950027,0.00321426][0.474345,0.527544,0][1.3318,-0.234738,0.125986][0.742185,0.459149,-0.488204][0.536274,0.666926,0][1.3318,-0.234738,0.125986][0.742185,0.459149,-0.488204][0.536274,0.666926,0][1.08774,-0.094429,0.282995][0.29979,0.953931,0.011928][0.482199,0.71525,0][1.35459,-0.234738,0.309281][0.903659,0.414802,0.106488][0.473146,0.666926,0][1.35459,-0.234738,0.309281][0.903659,0.414802,0.106488][0.473146,0.666926,0][1.08774,-0.094429,0.282995][0.29979,0.953931,0.011928][0.482199,0.71525,0][1.30637,-0.234738,0.488687][0.425537,0.465202,0.776212][0.411357,0.666926,0][1.3318,-0.234738,0.125986][0.742185,0.459149,-0.488204][0.536274,0.666926,0][1.14061,-0.235861,0.0838089][0.203925,0.315918,-0.926612][0.5508,0.66654,0][1.08774,-0.094429,0.282995][0.29979,0.953931,0.011928][0.482199,0.71525,0][1.14061,-0.235861,0.0838089][0.203925,0.315918,-0.926612][0.5508,0.66654,0][1.33221,-0.63833,0.120182][0.566906,0.0131121,-0.823678][0.538273,0.527927,0][1.14107,-0.636056,0.0773468][0.21883,0.0160023,-0.975632][0.553026,0.52871,0][1.3318,-0.234738,0.125986][0.742185,0.459149,-0.488204][0.536274,0.666926,0][1.33221,-0.63833,0.120182][0.566906,0.0131121,-0.823678][0.538273,0.527927,0][1.14061,-0.235861,0.0838089][0.203925,0.315918,-0.926612][0.5508,0.66654,0][1.3318,-0.234738,0.125986][0.742185,0.459149,-0.488204][0.536274,0.666926,0][1.35483,-0.639442,0.305799][0.999994,0.000950027,0.00321426][0.474345,0.527544,0][1.33221,-0.63833,0.120182][0.566906,0.0131121,-0.823678][0.538273,0.527927,0][1.35459,-0.234738,0.309281][0.903659,0.414802,0.106488][0.473146,0.666926,0][1.30637,-0.234738,0.488687][0.425537,0.465202,0.776212][0.411357,0.666926,0][1.3062,-0.639442,0.491111][0.798567,0.00219052,0.601901][0.410522,0.527544,0][1.3062,-0.639442,0.491111][0.798567,0.00219052,0.601901][0.410522,0.527544,0][1.35483,-0.639442,0.305799][0.999994,0.000950027,0.00321426][0.474345,0.527544,0][1.35459,-0.234738,0.309281][0.903659,0.414802,0.106488][0.473146,0.666926,0][1.30637,-0.234738,0.488687][0.425537,0.465202,0.776212][0.411357,0.666926,0][1.11133,-0.233586,0.501498][0.0601374,0.485958,0.871911][0.406945,0.667323,0][1.11107,-0.637171,0.505082][0.0685373,0.00738267,0.997621][0.405711,0.528326,0][1.11107,-0.637171,0.505082][0.0685373,0.00738267,0.997621][0.405711,0.528326,0][1.3062,-0.639442,0.491111][0.798567,0.00219052,0.601901][0.410522,0.527544,0][1.30637,-0.234738,0.488687][0.425537,0.465202,0.776212][0.411357,0.666926,0][1.30637,-0.234738,0.488687][0.425537,0.465202,0.776212][0.411357,0.666926,0][1.08774,-0.094429,0.282995][0.29979,0.953931,0.011928][0.482199,0.71525,0][1.11133,-0.233586,0.501498][0.0601374,0.485958,0.871911][0.406945,0.667323,0][0.00230536,0.485693,0.305422][-0.00965653,-0.999878,-0.0122946][0.400648,0.392952,0][-0.462249,-0.103553,-0.649134][0.361812,-0.585135,0.725748][0.682833,0.21876,0][0.027252,-0.103553,-0.766648][-0.0599807,-0.591631,0.803975][0.717572,0.21876,0][-0.462249,-0.103553,-0.649134][0.361812,-0.585135,0.725748][0.682833,0.21876,0][0.00230536,0.485693,0.305422][-0.00965653,-0.999878,-0.0122946][0.400648,0.392952,0][-0.819736,-0.103553,-0.296584][0.668142,-0.578804,0.467518][0.578612,0.21876,0][0.00230536,0.485693,0.305422][-0.00965653,-0.999878,-0.0122946][0.400648,0.392952,0][-0.970541,-0.0915642,0.244108][0.826277,-0.562245,0.0338585][0.418774,0.222304,0][-0.819736,-0.103553,-0.296584][0.668142,-0.578804,0.467518][0.578612,0.21876,0][0.00230536,0.485693,0.305422][-0.00965653,-0.999878,-0.0122946][0.400648,0.392952,0][-0.819899,-0.103553,0.752962][0.752743,-0.545644,-0.368308][0.268347,0.21876,0][-0.970541,-0.0915642,0.244108][0.826277,-0.562245,0.0338585][0.418774,0.222304,0][0.00230536,0.485693,0.305422][-0.00965653,-0.999878,-0.0122946][0.400648,0.392952,0][-0.467191,-0.103553,1.1533][0.462449,-0.545831,-0.698719][0.150001,0.21876,0][-0.819899,-0.103553,0.752962][0.752743,-0.545644,-0.368308][0.268347,0.21876,0][-0.467191,-0.103553,1.1533][0.462449,-0.545831,-0.698719][0.150001,0.21876,0][0.00230536,0.485693,0.305422][-0.00965653,-0.999878,-0.0122946][0.400648,0.392952,0][0.0274144,-0.103553,1.26636][0.0273038,-0.543472,-0.838983][0.116578,0.21876,0][0.00230536,0.485693,0.305422][-0.00965653,-0.999878,-0.0122946][0.400648,0.392952,0][0.507197,-0.103553,1.10648][-0.415453,-0.543982,-0.729029][0.163839,0.21876,0][0.0274144,-0.103553,1.26636][0.0273038,-0.543472,-0.838983][0.116578,0.21876,0][0.00230536,0.485693,0.305422][-0.00965653,-0.999878,-0.0122946][0.400648,0.392952,0][0.86088,-0.103553,0.711256][-0.726223,-0.554266,-0.406681][0.280676,0.21876,0][0.507197,-0.103553,1.10648][-0.415453,-0.543982,-0.729029][0.163839,0.21876,0][0.00230536,0.485693,0.305422][-0.00965653,-0.999878,-0.0122946][0.400648,0.392952,0][0.88032,-0.103553,-0.297072][-0.763542,-0.556618,0.327385][0.578756,0.21876,0][0.941304,-0.103553,0.235278][-0.827712,-0.558554,-0.053944][0.421384,0.21876,0][0.941304,-0.103553,0.235278][-0.827712,-0.558554,-0.053944][0.421384,0.21876,0][0.86088,-0.103553,0.711256][-0.726223,-0.554266,-0.406681][0.280676,0.21876,0][0.00230536,0.485693,0.305422][-0.00965653,-0.999878,-0.0122946][0.400648,0.392952,0][0.00230536,0.485693,0.305422][-0.00965653,-0.999878,-0.0122946][0.400648,0.392952,0][0.526961,-0.103553,-0.63496][-0.445902,-0.561439,0.697107][0.678643,0.21876,0][0.88032,-0.103553,-0.297072][-0.763542,-0.556618,0.327385][0.578756,0.21876,0][0.526961,-0.103553,-0.63496][-0.445902,-0.561439,0.697107][0.678643,0.21876,0][0.00230536,0.485693,0.305422][-0.00965653,-0.999878,-0.0122946][0.400648,0.392952,0][0.027252,-0.103553,-0.766648][-0.0599807,-0.591631,0.803975][0.717572,0.21876,0][-1.15987,-0.75016,0.219111][0.51099,-0.857183,-0.0642338][0.426163,0.0276108,0][-0.970541,-0.0915642,0.244108][0.826277,-0.562245,0.0338585][0.418774,0.222304,0][-0.819899,-0.103553,0.752962][0.752743,-0.545644,-0.368308][0.268347,0.21876,0][-0.819899,-0.103553,0.752962][0.752743,-0.545644,-0.368308][0.268347,0.21876,0][-0.956136,-0.75016,0.926549][0.488758,-0.801187,-0.345275][0.217031,0.0276108,0][-1.15987,-0.75016,0.219111][0.51099,-0.857183,-0.0642338][0.426163,0.0276108,0][-1.03906,-0.75016,-0.383357][0.526522,-0.815166,0.241409][0.604264,0.0276108,0][-0.819736,-0.103553,-0.296584][0.668142,-0.578804,0.467518][0.578612,0.21876,0][-0.970541,-0.0915642,0.244108][0.826277,-0.562245,0.0338585][0.418774,0.222304,0][-0.970541,-0.0915642,0.244108][0.826277,-0.562245,0.0338585][0.418774,0.222304,0][-1.15987,-0.75016,0.219111][0.51099,-0.857183,-0.0642338][0.426163,0.0276108,0][-1.03906,-0.75016,-0.383357][0.526522,-0.815166,0.241409][0.604264,0.0276108,0][-0.556654,-0.75016,-0.834208][0.292587,-0.881437,0.370757][0.737544,0.0276108,0][-0.819736,-0.103553,-0.296584][0.668142,-0.578804,0.467518][0.578612,0.21876,0][-1.03906,-0.75016,-0.383357][0.526522,-0.815166,0.241409][0.604264,0.0276108,0][-0.819736,-0.103553,-0.296584][0.668142,-0.578804,0.467518][0.578612,0.21876,0][-0.556654,-0.75016,-0.834208][0.292587,-0.881437,0.370757][0.737544,0.0276108,0][-0.462249,-0.103553,-0.649134][0.361812,-0.585135,0.725748][0.682833,0.21876,0][-0.0445616,-0.75016,-1.00525][0.0499036,-0.905865,0.420616][0.788107,0.0276108,0][0.027252,-0.103553,-0.766648][-0.0599807,-0.591631,0.803975][0.717572,0.21876,0][-0.462249,-0.103553,-0.649134][0.361812,-0.585135,0.725748][0.682833,0.21876,0][-0.462249,-0.103553,-0.649134][0.361812,-0.585135,0.725748][0.682833,0.21876,0][-0.556654,-0.75016,-0.834208][0.292587,-0.881437,0.370757][0.737544,0.0276108,0][-0.0445616,-0.75016,-1.00525][0.0499036,-0.905865,0.420616][0.788107,0.0276108,0][0.520276,-0.75016,-0.85652][-0.20706,-0.881751,0.423841][0.74414,0.0276108,0][0.526961,-0.103553,-0.63496][-0.445902,-0.561439,0.697107][0.678643,0.21876,0][0.027252,-0.103553,-0.766648][-0.0599807,-0.591631,0.803975][0.717572,0.21876,0][0.027252,-0.103553,-0.766648][-0.0599807,-0.591631,0.803975][0.717572,0.21876,0][-0.0445616,-0.75016,-1.00525][0.0499036,-0.905865,0.420616][0.788107,0.0276108,0][0.520276,-0.75016,-0.85652][-0.20706,-0.881751,0.423841][0.74414,0.0276108,0][0.983672,-0.75016,-0.437325][-0.493274,-0.791667,0.360476][0.620218,0.0276108,0][0.88032,-0.103553,-0.297072][-0.763542,-0.556618,0.327385][0.578756,0.21876,0][0.526961,-0.103553,-0.63496][-0.445902,-0.561439,0.697107][0.678643,0.21876,0][0.526961,-0.103553,-0.63496][-0.445902,-0.561439,0.697107][0.678643,0.21876,0][0.520276,-0.75016,-0.85652][-0.20706,-0.881751,0.423841][0.74414,0.0276108,0][0.983672,-0.75016,-0.437325][-0.493274,-0.791667,0.360476][0.620218,0.0276108,0][1.15754,-0.75016,0.231566][-0.513602,-0.857425,0.0321854][0.422481,0.0276108,0][0.941304,-0.103553,0.235278][-0.827712,-0.558554,-0.053944][0.421384,0.21876,0][0.88032,-0.103553,-0.297072][-0.763542,-0.556618,0.327385][0.578756,0.21876,0][0.88032,-0.103553,-0.297072][-0.763542,-0.556618,0.327385][0.578756,0.21876,0][0.983672,-0.75016,-0.437325][-0.493274,-0.791667,0.360476][0.620218,0.0276108,0][1.15754,-0.75016,0.231566][-0.513602,-0.857425,0.0321854][0.422481,0.0276108,0][1.06199,-0.75016,0.750408][-0.65751,-0.714402,-0.239398][0.269102,0.0276108,0][0.86088,-0.103553,0.711256][-0.726223,-0.554266,-0.406681][0.280676,0.21876,0][0.941304,-0.103553,0.235278][-0.827712,-0.558554,-0.053944][0.421384,0.21876,0][0.941304,-0.103553,0.235278][-0.827712,-0.558554,-0.053944][0.421384,0.21876,0][1.15754,-0.75016,0.231566][-0.513602,-0.857425,0.0321854][0.422481,0.0276108,0][1.06199,-0.75016,0.750408][-0.65751,-0.714402,-0.239398][0.269102,0.0276108,0][0.6564,-0.75016,1.23717][-0.323253,-0.859033,-0.396949][0.125205,0.0276108,0][0.507197,-0.103553,1.10648][-0.415453,-0.543982,-0.729029][0.163839,0.21876,0][0.86088,-0.103553,0.711256][-0.726223,-0.554266,-0.406681][0.280676,0.21876,0][0.86088,-0.103553,0.711256][-0.726223,-0.554266,-0.406681][0.280676,0.21876,0][1.06199,-0.75016,0.750408][-0.65751,-0.714402,-0.239398][0.269102,0.0276108,0][0.6564,-0.75016,1.23717][-0.323253,-0.859033,-0.396949][0.125205,0.0276108,0][0.00723534,-0.75016,1.45829][-0.0748146,-0.80132,-0.59354][0.0598395,0.0276108,0][0.0274144,-0.103553,1.26636][0.0273038,-0.543472,-0.838983][0.116578,0.21876,0][0.507197,-0.103553,1.10648][-0.415453,-0.543982,-0.729029][0.163839,0.21876,0][0.507197,-0.103553,1.10648][-0.415453,-0.543982,-0.729029][0.163839,0.21876,0][0.6564,-0.75016,1.23717][-0.323253,-0.859033,-0.396949][0.125205,0.0276108,0][0.00723534,-0.75016,1.45829][-0.0748146,-0.80132,-0.59354][0.0598395,0.0276108,0][-0.536863,-0.75016,1.30229][0.20845,-0.853601,-0.477403][0.105957,0.0276108,0][-0.467191,-0.103553,1.1533][0.462449,-0.545831,-0.698719][0.150001,0.21876,0][0.0274144,-0.103553,1.26636][0.0273038,-0.543472,-0.838983][0.116578,0.21876,0][0.0274144,-0.103553,1.26636][0.0273038,-0.543472,-0.838983][0.116578,0.21876,0][0.00723534,-0.75016,1.45829][-0.0748146,-0.80132,-0.59354][0.0598395,0.0276108,0][-0.536863,-0.75016,1.30229][0.20845,-0.853601,-0.477403][0.105957,0.0276108,0][-0.956136,-0.75016,0.926549][0.488758,-0.801187,-0.345275][0.217031,0.0276108,0][-0.819899,-0.103553,0.752962][0.752743,-0.545644,-0.368308][0.268347,0.21876,0][-0.467191,-0.103553,1.1533][0.462449,-0.545831,-0.698719][0.150001,0.21876,0][-0.467191,-0.103553,1.1533][0.462449,-0.545831,-0.698719][0.150001,0.21876,0][-0.536863,-0.75016,1.30229][0.20845,-0.853601,-0.477403][0.105957,0.0276108,0][-0.956136,-0.75016,0.926549][0.488758,-0.801187,-0.345275][0.217031,0.0276108,0][0,-0.14111,1.54791][0,0.228113,0.973635][0.033493,0.207579,0][-0.208943,-0.146632,1.53385][-0.0850565,0.343636,0.935243][0.0376472,0.205947,0][-0.208943,-0.62525,1.58137][-0.0977035,0.110524,0.989059][0.0236027,0.0644771,0][-0.208943,-0.62525,1.58137][-0.0977035,0.110524,0.989059][0.0236027,0.0644771,0][0,-0.629388,1.60861][0,0.123372,0.99236][0.0155503,0.0632542,0][0,-0.14111,1.54791][0,0.228113,0.973635][0.033493,0.207579,0][0,-0.14111,1.54791][0,0.228113,0.973635][0.033493,0.207579,0][0,0.259376,1.34502][0,0.574629,0.818414][0.0934619,0.325954,0][-0.208943,-0.146632,1.53385][-0.0850565,0.343636,0.935243][0.0376472,0.205947,0][0,0.259376,1.34502][0,0.574629,0.818414][0.0934619,0.325954,0][-0.208943,0.245927,1.32599][-0.112372,0.67957,0.724953][0.0990874,0.321979,0][-0.208943,-0.146632,1.53385][-0.0850565,0.343636,0.935243][0.0376472,0.205947,0][0,0.259376,1.34502][0,0.574629,0.818414][0.0934619,0.325954,0][0,0.597034,0.933666][0,0.852326,0.523011][0.21505,0.425759,0][-0.208943,0.245927,1.32599][-0.112372,0.67957,0.724953][0.0990874,0.321979,0][0,0.597034,0.933666][0,0.852326,0.523011][0.21505,0.425759,0][-0.208943,0.576911,0.920267][-0.117265,0.910694,0.396087][0.21901,0.419811,0][-0.208943,0.245927,1.32599][-0.112372,0.67957,0.724953][0.0990874,0.321979,0][0,0.597034,0.933666][0,0.852326,0.523011][0.21505,0.425759,0][0,0.73838,0.436491][0,0.981223,0.192878][0.362004,0.467538,0][-0.208943,0.576911,0.920267][-0.117265,0.910694,0.396087][0.21901,0.419811,0][0,0.73838,0.436491][0,0.981223,0.192878][0.362004,0.467538,0][-0.208943,0.715461,0.423523][-0.114113,0.987153,0.111834][0.365837,0.460763,0][-0.208943,0.576911,0.920267][-0.117265,0.910694,0.396087][0.21901,0.419811,0][0,0.73838,0.436491][0,0.981223,0.192878][0.362004,0.467538,0][0,0.754087,-0.0415182][0,0.999864,-0.0164948][0.503294,0.472181,0][-0.208943,0.715461,0.423523][-0.114113,0.987153,0.111834][0.365837,0.460763,0][0,0.754087,-0.0415182][0,0.999864,-0.0164948][0.503294,0.472181,0][-0.208943,0.730855,-0.0250593][-0.412208,0.909081,-0.0604675][0.498429,0.465313,0][-0.208943,0.715461,0.423523][-0.114113,0.987153,0.111834][0.365837,0.460763,0][0,0.754087,-0.0415182][0,0.999864,-0.0164948][0.503294,0.472181,0][0,0.696097,-0.535435][0,0.881597,-0.472002][0.649286,0.45504,0][-0.208943,0.730855,-0.0250593][-0.412208,0.909081,-0.0604675][0.498429,0.465313,0][-0.208943,0.674016,-0.509989][-0.487906,0.514688,-0.705014][0.641764,0.448513,0][-0.208943,0.365281,-0.589872][-0.756504,0.163819,-0.633139][0.665376,0.357258,0][-0.208943,0.730855,-0.0250593][-0.412208,0.909081,-0.0604675][0.498429,0.465313,0][-0.208943,0.730855,-0.0250593][-0.412208,0.909081,-0.0604675][0.498429,0.465313,0][0,0.696097,-0.535435][0,0.881597,-0.472002][0.649286,0.45504,0][-0.208943,0.674016,-0.509989][-0.487906,0.514688,-0.705014][0.641764,0.448513,0][0,0.365281,-0.621411][0,0.251013,-0.967984][0.674698,0.357258,0][-0.208943,0.365281,-0.589872][-0.756504,0.163819,-0.633139][0.665376,0.357258,0][-0.208943,0.674016,-0.509989][-0.487906,0.514688,-0.705014][0.641764,0.448513,0][-0.208943,0.674016,-0.509989][-0.487906,0.514688,-0.705014][0.641764,0.448513,0][0,0.696097,-0.535435][0,0.881597,-0.472002][0.649286,0.45504,0][0,0.365281,-0.621411][0,0.251013,-0.967984][0.674698,0.357258,0][-0.208943,0.730855,-0.0250593][-1,-1.54835e-007,0][0.498345,0.465427,0][-0.208943,0.365281,-0.589872][-1,-1.72548e-007,0][0.665314,0.357356,0][-0.208943,0.715461,0.423523][-1,-1.72548e-007,0][0.365735,0.460876,0][-0.208943,-0.146632,1.53385][-1,-1.56553e-007,0][0.0375014,0.206025,0][-0.208943,0.245927,1.32599][-1,-0.000200349,-0.000485822][0.0989496,0.322073,0][-0.208943,-0.62525,1.58137][-1,-0.000186532,-0.000635794][0.0234551,0.0645366,0][-0.208943,-0.62525,1.58137][-1,-0.000186532,-0.000635794][0.0234551,0.0645366,0][-0.208943,0.245927,1.32599][-1,-0.000200349,-0.000485822][0.0989496,0.322073,0][-0.208774,-0.588125,1.43732][-1,-0.000300446,-0.000728728][0.0660377,0.0755113,0][-0.208943,0.245927,1.32599][-1,-0.000200349,-0.000485822][0.0989496,0.322073,0][-0.208943,0.576911,0.920267][-1,-0.000227984,-0.000185877][0.218888,0.419918,0][-0.208774,-0.588125,1.43732][-1,-0.000300446,-0.000728728][0.0660377,0.0755113,0][-0.208943,0.715461,0.423523][-1,-1.72548e-007,0][0.365735,0.460876,0][-0.208943,0.365281,-0.589872][-1,-1.72548e-007,0][0.665314,0.357356,0][-0.208943,0.576911,0.920267][-1,-1.90262e-007,0][0.218888,0.419918,0][-0.208943,0.576911,0.920267][-1,-0.000420841,-0.000241885][0.218888,0.419918,0][-0.208774,0.50009,0.353853][-1,-0.000420841,-0.000241885][0.386331,0.397208,0][-0.208774,0.0340233,1.16443][-1,-0.000420841,-0.000241885][0.146711,0.259431,0][0.208943,-0.62525,1.58137][0.0977035,0.110524,0.989059][0.0236027,0.0644771,0][0,-0.14111,1.54791][0,0.228113,0.973635][0.033493,0.207579,0][0,-0.629388,1.60861][0,0.123372,0.99236][0.0155503,0.0632542,0][0,-0.14111,1.54791][0,0.228113,0.973635][0.033493,0.207579,0][0.208943,-0.62525,1.58137][0.0977035,0.110524,0.989059][0.0236027,0.0644771,0][0.208943,-0.146632,1.53385][0.0850565,0.343636,0.935243][0.0376472,0.205947,0][0.208943,-0.146632,1.53385][0.0850565,0.343636,0.935243][0.0376472,0.205947,0][0,0.259376,1.34502][0,0.574629,0.818414][0.0934619,0.325954,0][0,-0.14111,1.54791][0,0.228113,0.973635][0.033493,0.207579,0][0.208943,-0.146632,1.53385][0.0850565,0.343636,0.935243][0.0376472,0.205947,0][0.208943,0.245927,1.32599][0.112372,0.67957,0.724953][0.0990874,0.321979,0][0,0.259376,1.34502][0,0.574629,0.818414][0.0934619,0.325954,0][0.208943,0.245927,1.32599][0.112372,0.67957,0.724953][0.0990874,0.321979,0][0,0.597034,0.933666][0,0.852326,0.523011][0.21505,0.425759,0][0,0.259376,1.34502][0,0.574629,0.818414][0.0934619,0.325954,0][0.208943,0.245927,1.32599][0.112372,0.67957,0.724953][0.0990874,0.321979,0][0.208943,0.576911,0.920267][0.117265,0.910694,0.396087][0.21901,0.419811,0][0,0.597034,0.933666][0,0.852326,0.523011][0.21505,0.425759,0][0.208943,0.576911,0.920267][0.117265,0.910694,0.396087][0.21901,0.419811,0][0,0.73838,0.436491][0,0.981223,0.192878][0.362004,0.467538,0][0,0.597034,0.933666][0,0.852326,0.523011][0.21505,0.425759,0][0.208943,0.576911,0.920267][0.117265,0.910694,0.396087][0.21901,0.419811,0][0.208943,0.715461,0.423523][0.114113,0.987153,0.111834][0.365837,0.460763,0][0,0.73838,0.436491][0,0.981223,0.192878][0.362004,0.467538,0][0.208943,0.715461,0.423523][0.114113,0.987153,0.111834][0.365837,0.460763,0][0,0.754087,-0.0415182][0,0.999864,-0.0164948][0.503294,0.472181,0][0,0.73838,0.436491][0,0.981223,0.192878][0.362004,0.467538,0][0.208943,0.715461,0.423523][0.114113,0.987153,0.111834][0.365837,0.460763,0][0.208943,0.730855,-0.0250593][0.412207,0.909081,-0.0604675][0.498429,0.465313,0][0,0.754087,-0.0415182][0,0.999864,-0.0164948][0.503294,0.472181,0][0.208943,0.730855,-0.0250593][0.412207,0.909081,-0.0604675][0.498429,0.465313,0][0,0.696097,-0.535435][0,0.881597,-0.472002][0.649286,0.45504,0][0,0.754087,-0.0415182][0,0.999864,-0.0164948][0.503294,0.472181,0][0.208943,0.730855,-0.0250593][0.412207,0.909081,-0.0604675][0.498429,0.465313,0][0.208943,0.674016,-0.509989][0.487906,0.514688,-0.705014][0.641764,0.448513,0][0,0.696097,-0.535435][0,0.881597,-0.472002][0.649286,0.45504,0][0.208943,0.674016,-0.509989][0.487906,0.514688,-0.705014][0.641764,0.448513,0][0,0.365281,-0.621411][0,0.251013,-0.967984][0.674698,0.357258,0][0,0.696097,-0.535435][0,0.881597,-0.472002][0.649286,0.45504,0][0,0.365281,-0.621411][0,0.251013,-0.967984][0.674698,0.357258,0][0.208943,0.674016,-0.509989][0.487906,0.514688,-0.705014][0.641764,0.448513,0][0.208943,0.365281,-0.589872][0.756504,0.16382,-0.633139][0.665376,0.357258,0][0.208943,0.674016,-0.509989][0.487906,0.514688,-0.705014][0.641764,0.448513,0][0.208943,0.730855,-0.0250593][0.412207,0.909081,-0.0604675][0.498429,0.465313,0][0.208943,0.365281,-0.589872][0.756504,0.16382,-0.633139][0.665376,0.357258,0][0.208943,0.715461,0.423523][1,1.72548e-007,0][0.365735,0.460876,0][0.208943,0.365281,-0.589872][1,1.72548e-007,0][0.665314,0.357356,0][0.208943,0.730855,-0.0250593][1,1.54835e-007,0][0.498345,0.465427,0][0.208943,-0.62525,1.58137][1,-0.000186242,-0.000635854][0.0234551,0.0645366,0][0.208943,0.245927,1.32599][1,-0.00020006,-0.000485857][0.0989496,0.322073,0][0.208943,-0.146632,1.53385][1,1.56553e-007,0][0.0375014,0.206025,0][0.208774,-0.588125,1.43732][1,-0.000300168,-0.00072879][0.0660377,0.0755113,0][0.208943,0.245927,1.32599][1,-0.00020006,-0.000485857][0.0989496,0.322073,0][0.208943,-0.62525,1.58137][1,-0.000186242,-0.000635854][0.0234551,0.0645366,0][0.208774,-0.588125,1.43732][1,-0.000300168,-0.00072879][0.0660377,0.0755113,0][0.208943,0.576911,0.920267][1,-0.000227696,-0.000185863][0.218888,0.419918,0][0.208943,0.245927,1.32599][1,-0.00020006,-0.000485857][0.0989496,0.322073,0][0.208943,0.576911,0.920267][1,1.90262e-007,0][0.218888,0.419918,0][0.208943,0.365281,-0.589872][1,1.72548e-007,0][0.665314,0.357356,0][0.208943,0.715461,0.423523][1,1.72548e-007,0][0.365735,0.460876,0][0.208774,0.0340233,1.16443][1,-0.000420583,-0.00024192][0.146711,0.259431,0][0.208774,0.50009,0.353853][1,-0.000420583,-0.00024192][0.386331,0.397208,0][0.208943,0.576911,0.920267][1,-0.000420583,-0.00024192][0.218888,0.419918,0][0,-0.754086,1.62495][0.00184011,-0.999771,-0.0213076][0.0105701,0.0264505,0][-0.536863,-0.75016,1.30229][0.20845,-0.853601,-0.477403][0.105957,0.0276108,0][0.00723534,-0.75016,1.45829][-0.0748146,-0.80132,-0.59354][0.0598395,0.0276108,0][-0.536863,-0.75016,1.30229][0.20845,-0.853601,-0.477403][0.105957,0.0276108,0][0,-0.754086,1.62495][0.00184011,-0.999771,-0.0213076][0.0105701,0.0264505,0][-0.538533,-0.754086,1.53381][0.00749041,-0.999829,-0.0169015][0.0375141,0.0264505,0][-0.962957,-0.754086,1.22898][0.0140066,-0.999803,-0.0140509][0.127627,0.0264505,0][-0.956136,-0.75016,0.926549][0.488758,-0.801187,-0.345275][0.217031,0.0276108,0][-0.536863,-0.75016,1.30229][0.20845,-0.853601,-0.477403][0.105957,0.0276108,0][-0.536863,-0.75016,1.30229][0.20845,-0.853601,-0.477403][0.105957,0.0276108,0][-0.538533,-0.754086,1.53381][0.00749041,-0.999829,-0.0169015][0.0375141,0.0264505,0][-0.962957,-0.754086,1.22898][0.0140066,-0.999803,-0.0140509][0.127627,0.0264505,0][-0.962957,-0.754086,1.22898][0.0140066,-0.999803,-0.0140509][0.127627,0.0264505,0][-1.25091,-0.754086,0.804845][0.0168124,-0.999834,-0.00700114][0.253009,0.0264505,0][-0.956136,-0.75016,0.926549][0.488758,-0.801187,-0.345275][0.217031,0.0276108,0][-1.25091,-0.754086,0.804845][0.0168124,-0.999834,-0.00700114][0.253009,0.0264505,0][-1.15987,-0.75016,0.219111][0.51099,-0.857183,-0.0642338][0.426163,0.0276108,0][-0.956136,-0.75016,0.926549][0.488758,-0.801187,-0.345275][0.217031,0.0276108,0][-1.38079,-0.754086,0.270556][0.0176614,-0.999844,-0.000466921][0.410955,0.0264505,0][-1.28536,-0.754086,-0.289185][0.0183433,-0.999819,0.00510535][0.576425,0.0264505,0][-1.15987,-0.75016,0.219111][0.51099,-0.857183,-0.0642338][0.426163,0.0276108,0][-1.15987,-0.75016,0.219111][0.51099,-0.857183,-0.0642338][0.426163,0.0276108,0][-1.25091,-0.754086,0.804845][0.0168124,-0.999834,-0.00700114][0.253009,0.0264505,0][-1.38079,-0.754086,0.270556][0.0176614,-0.999844,-0.000466921][0.410955,0.0264505,0][-1.15987,-0.75016,0.219111][0.51099,-0.857183,-0.0642338][0.426163,0.0276108,0][-1.28536,-0.754086,-0.289185][0.0183433,-0.999819,0.00510535][0.576425,0.0264505,0][-1.03906,-0.75016,-0.383357][0.526522,-0.815166,0.241409][0.604264,0.0276108,0][-1.08329,-0.754086,-0.73661][0.00833389,-0.999873,-0.0136067][0.708692,0.0264505,0][-0.556654,-0.75016,-0.834208][0.292587,-0.881437,0.370757][0.737544,0.0276108,0][-1.03906,-0.75016,-0.383357][0.526522,-0.815166,0.241409][0.604264,0.0276108,0][-1.03906,-0.75016,-0.383357][0.526522,-0.815166,0.241409][0.604264,0.0276108,0][-1.28536,-0.754086,-0.289185][0.0183433,-0.999819,0.00510535][0.576425,0.0264505,0][-1.08329,-0.754086,-0.73661][0.00833389,-0.999873,-0.0136067][0.708692,0.0264505,0][-0.0445616,-0.75016,-1.00525][0.0499036,-0.905865,0.420616][0.788107,0.0276108,0][-0.514644,-0.689224,-1.55514][0.00675373,-0.995067,-0.0989765][0.950666,0.045625,0][0,-0.667683,-1.63508][0.000238563,-0.991537,-0.129828][0.974296,0.0519924,0][-0.0445616,-0.75016,-1.00525][0.0499036,-0.905865,0.420616][0.788107,0.0276108,0][-0.556654,-0.75016,-0.834208][0.292587,-0.881437,0.370757][0.737544,0.0276108,0][-0.514644,-0.689224,-1.55514][0.00675373,-0.995067,-0.0989765][0.950666,0.045625,0][-0.556654,-0.75016,-0.834208][0.292587,-0.881437,0.370757][0.737544,0.0276108,0][-0.891475,-0.722483,-1.27884][0.0118909,-0.997402,-0.0710411][0.868985,0.0357929,0][-0.514644,-0.689224,-1.55514][0.00675373,-0.995067,-0.0989765][0.950666,0.045625,0][-0.891475,-0.722483,-1.27884][0.0118909,-0.997402,-0.0710411][0.868985,0.0357929,0][-0.556654,-0.75016,-0.834208][0.292587,-0.881437,0.370757][0.737544,0.0276108,0][-1.08329,-0.754086,-0.73661][0.00833389,-0.999873,-0.0136067][0.708692,0.0264505,0][0,-0.667683,-1.63508][0.000238563,-0.991537,-0.129828][0.974296,0.0519924,0][0.514644,-0.689224,-1.55514][-0.00751053,-0.994785,-0.101716][0.950666,0.045625,0][-0.0445616,-0.75016,-1.00525][0.0499036,-0.905865,0.420616][0.788107,0.0276108,0][0.514644,-0.689224,-1.55514][-0.00751053,-0.994785,-0.101716][0.950666,0.045625,0][0.520276,-0.75016,-0.85652][-0.20706,-0.881751,0.423841][0.74414,0.0276108,0][-0.0445616,-0.75016,-1.00525][0.0499036,-0.905865,0.420616][0.788107,0.0276108,0][0.891475,-0.722483,-1.27884][-0.0092402,-0.997254,-0.073479][0.868985,0.0357929,0][1.08329,-0.754086,-0.73661][-0.00665973,-0.999877,-0.0142157][0.708692,0.0264505,0][0.520276,-0.75016,-0.85652][-0.20706,-0.881751,0.423841][0.74414,0.0276108,0][0.520276,-0.75016,-0.85652][-0.20706,-0.881751,0.423841][0.74414,0.0276108,0][0.514644,-0.689224,-1.55514][-0.00751053,-0.994785,-0.101716][0.950666,0.045625,0][0.891475,-0.722483,-1.27884][-0.0092402,-0.997254,-0.073479][0.868985,0.0357929,0][0.520276,-0.75016,-0.85652][-0.20706,-0.881751,0.423841][0.74414,0.0276108,0][1.08329,-0.754086,-0.73661][-0.00665973,-0.999877,-0.0142157][0.708692,0.0264505,0][0.983672,-0.75016,-0.437325][-0.493274,-0.791667,0.360476][0.620218,0.0276108,0][1.08329,-0.754086,-0.73661][-0.00665973,-0.999877,-0.0142157][0.708692,0.0264505,0][1.28537,-0.754086,-0.289185][-0.0165866,-0.999851,0.00483934][0.576425,0.0264505,0][0.983672,-0.75016,-0.437325][-0.493274,-0.791667,0.360476][0.620218,0.0276108,0][1.28537,-0.754086,-0.289185][-0.0165866,-0.999851,0.00483934][0.576425,0.0264505,0][1.15754,-0.75016,0.231566][-0.513602,-0.857425,0.0321854][0.422481,0.0276108,0][0.983672,-0.75016,-0.437325][-0.493274,-0.791667,0.360476][0.620218,0.0276108,0][1.15754,-0.75016,0.231566][-0.513602,-0.857425,0.0321854][0.422481,0.0276108,0][1.28537,-0.754086,-0.289185][-0.0165866,-0.999851,0.00483934][0.576425,0.0264505,0][1.38079,-0.754086,0.270556][-0.0174959,-0.999847,-0.000505454][0.410955,0.0264505,0][1.25091,-0.754086,0.804845][-0.0165998,-0.999833,-0.00763765][0.253009,0.0264505,0][1.06199,-0.75016,0.750408][-0.65751,-0.714402,-0.239398][0.269102,0.0276108,0][1.15754,-0.75016,0.231566][-0.513602,-0.857425,0.0321854][0.422481,0.0276108,0][1.15754,-0.75016,0.231566][-0.513602,-0.857425,0.0321854][0.422481,0.0276108,0][1.38079,-0.754086,0.270556][-0.0174959,-0.999847,-0.000505454][0.410955,0.0264505,0][1.25091,-0.754086,0.804845][-0.0165998,-0.999833,-0.00763765][0.253009,0.0264505,0][1.25091,-0.754086,0.804845][-0.0165998,-0.999833,-0.00763765][0.253009,0.0264505,0][0.6564,-0.75016,1.23717][-0.323253,-0.859033,-0.396949][0.125205,0.0276108,0][1.06199,-0.75016,0.750408][-0.65751,-0.714402,-0.239398][0.269102,0.0276108,0][0.6564,-0.75016,1.23717][-0.323253,-0.859033,-0.396949][0.125205,0.0276108,0][1.25091,-0.754086,0.804845][-0.0165998,-0.999833,-0.00763765][0.253009,0.0264505,0][0.962958,-0.754086,1.22898][-0.0131711,-0.99982,-0.013686][0.127627,0.0264505,0][0.538534,-0.754086,1.53381][-0.00750941,-0.999788,-0.0191829][0.0375141,0.0264505,0][0.00723534,-0.75016,1.45829][-0.0748146,-0.80132,-0.59354][0.0598395,0.0276108,0][0.6564,-0.75016,1.23717][-0.323253,-0.859033,-0.396949][0.125205,0.0276108,0][0.6564,-0.75016,1.23717][-0.323253,-0.859033,-0.396949][0.125205,0.0276108,0][0.962958,-0.754086,1.22898][-0.0131711,-0.99982,-0.013686][0.127627,0.0264505,0][0.538534,-0.754086,1.53381][-0.00750941,-0.999788,-0.0191829][0.0375141,0.0264505,0][0.00723534,-0.75016,1.45829][-0.0748146,-0.80132,-0.59354][0.0598395,0.0276108,0][0.538534,-0.754086,1.53381][-0.00750941,-0.999788,-0.0191829][0.0375141,0.0264505,0][0,-0.754086,1.62495][0.00184011,-0.999771,-0.0213076][0.0105701,0.0264505,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/head.mesh b/shareddata/charcustom/hats/fonts/head.mesh deleted file mode 100644 index a2e048e..0000000 --- a/shareddata/charcustom/hats/fonts/head.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -480 -[1.54972e-006,2.01528,0][0,1,0][0.678218,0.260611,-0.5][0.979834,2.01528,0][0.0941258,0.995548,-0.00496935][0.587458,0.260611,-0.5][0.931877,2.01528,-0.302785][0.0879833,0.995548,-0.0338126][0.591901,0.260611,-0.349756][1.54972e-006,2.01528,0][0,1,0][0.678218,0.260611,-0.5][0.931877,2.01528,-0.302785][0.0879833,0.995548,-0.0338126][0.591901,0.260611,-0.349756][0.792703,2.01528,-0.575931][0.0732284,0.995548,-0.059346][0.604792,0.260611,-0.214219][1.54972e-006,2.01528,0][0,1,0][0.678218,0.260611,-0.5][0.792703,2.01528,-0.575931][0.0732284,0.995548,-0.059346][0.604792,0.260611,-0.214219][0.575933,2.01528,-0.792701][0.0513055,0.995548,-0.0790703][0.624871,0.260611,-0.106656][1.54972e-006,2.01528,0][0,1,0][0.678218,0.260611,-0.5][0.575933,2.01528,-0.792701][0.0513055,0.995548,-0.0790703][0.624871,0.260611,-0.106656][0.302786,2.01528,-0.931876][0.0243603,0.995548,-0.0910546][0.650172,0.260611,-0.037596][1.54972e-006,2.01528,0][0,1,0][0.678218,0.260611,-0.5][0.302786,2.01528,-0.931876][0.0243603,0.995548,-0.0910546][0.650172,0.260611,-0.037596][1.54972e-006,2.01528,-0.979832][-0.00496936,0.995548,-0.0941258][0.678218,0.260611,-0.0137997][1.54972e-006,2.01528,0][0,1,0][0.678218,0.260611,-0.5][1.54972e-006,2.01528,-0.979832][-0.00496936,0.995548,-0.0941258][0.678218,0.260611,-0.0137997][-0.302783,2.01528,-0.931876][-0.0338126,0.995548,-0.0879833][0.706264,0.260611,-0.037596][1.54972e-006,2.01528,0][0,1,0][0.678218,0.260611,-0.5][-0.302783,2.01528,-0.931876][-0.0338126,0.995548,-0.0879833][0.706264,0.260611,-0.037596][-0.575929,2.01528,-0.792701][-0.059346,0.995548,-0.0732284][0.731565,0.260611,-0.106656][1.54972e-006,2.01528,0][0,1,0][0.678218,0.260611,-0.5][-0.575929,2.01528,-0.792701][-0.059346,0.995548,-0.0732284][0.731565,0.260611,-0.106656][-0.7927,2.01528,-0.575931][-0.0790703,0.995548,-0.0513054][0.751644,0.260611,-0.214219][1.54972e-006,2.01528,0][0,1,0][0.678218,0.260611,-0.5][-0.7927,2.01528,-0.575931][-0.0790703,0.995548,-0.0513054][0.751644,0.260611,-0.214219][-0.931874,2.01528,-0.302785][-0.0910545,0.995548,-0.0243603][0.764535,0.260611,-0.349756][1.54972e-006,2.01528,0][0,1,0][0.678218,0.260611,-0.5][-0.931874,2.01528,-0.302785][-0.0910545,0.995548,-0.0243603][0.764535,0.260611,-0.349756][-0.979831,2.01528,0][-0.0941258,0.995548,0.00496935][0.768977,0.260611,-0.5][1.54972e-006,2.01528,0][0,1,0][0.0378195,0.865397,0.5][-0.979831,2.01528,0][-0.0941258,0.995548,0.00496935][0.0378195,0.814306,0.5][-0.931874,2.01528,0.302785][-0.0879833,0.995548,0.0338126][0.0378195,0.816806,0.349756][1.54972e-006,2.01528,0][0,1,0][0.0378195,0.865397,0.5][-0.931874,2.01528,0.302785][-0.0879833,0.995548,0.0338126][0.0378195,0.816806,0.349756][-0.792699,2.01528,0.575931][-0.0732284,0.995548,0.059346][0.0378195,0.824063,0.214218][1.54972e-006,2.01528,0][0,1,0][0.0378195,0.865397,0.5][-0.792699,2.01528,0.575931][-0.0732284,0.995548,0.059346][0.0378195,0.824063,0.214218][-0.575929,2.01528,0.792701][-0.0513054,0.995548,0.0790702][0.0378195,0.835366,0.106656][1.54972e-006,2.01528,0][0,1,0][0.0378195,0.865397,0.5][-0.575929,2.01528,0.792701][-0.0513054,0.995548,0.0790702][0.0378195,0.835366,0.106656][-0.302783,2.01528,0.931876][-0.0243603,0.995548,0.0910545][0.0378195,0.849609,0.037596][1.54972e-006,2.01528,0][0,1,0][0.0378195,0.865397,0.5][-0.302783,2.01528,0.931876][-0.0243603,0.995548,0.0910545][0.0378195,0.849609,0.037596][1.66893e-006,2.01528,0.979832][0.00496935,0.995548,0.0941257][0.0378195,0.865397,0.0137997][1.54972e-006,2.01528,0][0,1,0][0.0378195,0.865397,0.5][1.66893e-006,2.01528,0.979832][0.00496935,0.995548,0.0941257][0.0378195,0.865397,0.0137997][0.302786,2.01528,0.931876][0.0338126,0.995548,0.0879833][0.0378195,0.881185,0.037596][1.54972e-006,2.01528,0][0,1,0][0.0378195,0.865397,0.5][0.302786,2.01528,0.931876][0.0338126,0.995548,0.0879833][0.0378195,0.881185,0.037596][0.575933,2.01528,0.792701][0.059346,0.995548,0.0732284][0.0378195,0.895427,0.106656][1.54972e-006,2.01528,0][0,1,0][0.0378195,0.865397,0.5][0.575933,2.01528,0.792701][0.059346,0.995548,0.0732284][0.0378195,0.895427,0.106656][0.792703,2.01528,0.575931][0.0790703,0.995548,0.0513054][0.0378195,0.90673,0.214219][1.54972e-006,2.01528,0][0,1,0][0.0378195,0.865397,0.5][0.792703,2.01528,0.575931][0.0790703,0.995548,0.0513054][0.0378195,0.90673,0.214219][0.931877,2.01528,0.302785][0.0910546,0.995548,0.0243603][0.0378195,0.913987,0.349756][1.54972e-006,2.01528,0][0,1,0][0.0378195,0.865397,0.5][0.931877,2.01528,0.302785][0.0910546,0.995548,0.0243603][0.0378195,0.913987,0.349756][0.979834,2.01528,0][0.0941258,0.995548,-0.00496935][0.0378195,0.916488,0.5][1.23619,1.96461,-0.401662][0.291269,0.951082,-0.102981][0.563713,0.26547,-0.300692][0.931877,2.01528,-0.302785][0.0879833,0.995548,-0.0338126][0.591901,0.260611,-0.349756][0.979834,2.01528,0][0.0941258,0.995548,-0.00496935][0.587458,0.260611,-0.5][0.979834,2.01528,0][0.0941258,0.995548,-0.00496935][0.587458,0.260611,-0.5][1.29981,1.96461,0][0.308836,0.951082,-0.0079339][0.55782,0.26547,-0.5][1.23619,1.96461,-0.401662][0.291269,0.951082,-0.102981][0.563713,0.26547,-0.300692][1.05157,1.96461,-0.764006][0.24519,0.951082,-0.187948][0.580814,0.26547,-0.120894][0.792703,2.01528,-0.575931][0.0732284,0.995548,-0.059346][0.604792,0.260611,-0.214219][0.931877,2.01528,-0.302785][0.0879833,0.995548,-0.0338126][0.591901,0.260611,-0.349756][0.931877,2.01528,-0.302785][0.0879833,0.995548,-0.0338126][0.591901,0.260611,-0.349756][1.23619,1.96461,-0.401662][0.291269,0.951082,-0.102981][0.563713,0.26547,-0.300692][1.05157,1.96461,-0.764006][0.24519,0.951082,-0.187948][0.580814,0.26547,-0.120894][0.764008,1.96461,-1.05156][0.175111,0.951082,-0.254517][0.60745,0.26547,0.0217943][0.575933,2.01528,-0.792701][0.0513055,0.995548,-0.0790703][0.624871,0.260611,-0.106656][0.792703,2.01528,-0.575931][0.0732284,0.995548,-0.059346][0.604792,0.260611,-0.214219][0.792703,2.01528,-0.575931][0.0732284,0.995548,-0.059346][0.604792,0.260611,-0.214219][1.05157,1.96461,-0.764006][0.24519,0.951082,-0.187948][0.580814,0.26547,-0.120894][0.764008,1.96461,-1.05156][0.175111,0.951082,-0.254517][0.60745,0.26547,0.0217943][0.401663,1.96461,-1.23619][0.08789,0.951082,-0.296172][0.641013,0.26547,0.113406][0.302786,2.01528,-0.931876][0.0243603,0.995548,-0.0910546][0.650172,0.260611,-0.037596][0.575933,2.01528,-0.792701][0.0513055,0.995548,-0.0790703][0.624871,0.260611,-0.106656][0.575933,2.01528,-0.792701][0.0513055,0.995548,-0.0790703][0.624871,0.260611,-0.106656][0.764008,1.96461,-1.05156][0.175111,0.951082,-0.254517][0.60745,0.26547,0.0217943][0.401663,1.96461,-1.23619][0.08789,0.951082,-0.296172][0.641013,0.26547,0.113406][1.43051e-006,1.96461,-1.2998][-0.0079339,0.951082,-0.308836][0.678218,0.26547,0.144973][1.54972e-006,2.01528,-0.979832][-0.00496936,0.995548,-0.0941258][0.678218,0.260611,-0.0137997][0.302786,2.01528,-0.931876][0.0243603,0.995548,-0.0910546][0.650172,0.260611,-0.037596][0.302786,2.01528,-0.931876][0.0243603,0.995548,-0.0910546][0.650172,0.260611,-0.037596][0.401663,1.96461,-1.23619][0.08789,0.951082,-0.296172][0.641013,0.26547,0.113406][1.43051e-006,1.96461,-1.2998][-0.0079339,0.951082,-0.308836][0.678218,0.26547,0.144973][-0.40166,1.96461,-1.23619][-0.102981,0.951082,-0.291269][0.715423,0.26547,0.113406][-0.302783,2.01528,-0.931876][-0.0338126,0.995548,-0.0879833][0.706264,0.260611,-0.037596][1.54972e-006,2.01528,-0.979832][-0.00496936,0.995548,-0.0941258][0.678218,0.260611,-0.0137997][1.54972e-006,2.01528,-0.979832][-0.00496936,0.995548,-0.0941258][0.678218,0.260611,-0.0137997][1.43051e-006,1.96461,-1.2998][-0.0079339,0.951082,-0.308836][0.678218,0.26547,0.144973][-0.40166,1.96461,-1.23619][-0.102981,0.951082,-0.291269][0.715423,0.26547,0.113406][-0.764005,1.96461,-1.05156][-0.187948,0.951082,-0.24519][0.748986,0.26547,0.0217942][-0.575929,2.01528,-0.792701][-0.059346,0.995548,-0.0732284][0.731565,0.260611,-0.106656][-0.302783,2.01528,-0.931876][-0.0338126,0.995548,-0.0879833][0.706264,0.260611,-0.037596][-0.302783,2.01528,-0.931876][-0.0338126,0.995548,-0.0879833][0.706264,0.260611,-0.037596][-0.40166,1.96461,-1.23619][-0.102981,0.951082,-0.291269][0.715423,0.26547,0.113406][-0.764005,1.96461,-1.05156][-0.187948,0.951082,-0.24519][0.748986,0.26547,0.0217942][-1.05156,1.96461,-0.764006][-0.254517,0.951082,-0.175111][0.775621,0.26547,-0.120894][-0.7927,2.01528,-0.575931][-0.0790703,0.995548,-0.0513054][0.751644,0.260611,-0.214219][-0.575929,2.01528,-0.792701][-0.059346,0.995548,-0.0732284][0.731565,0.260611,-0.106656][-0.575929,2.01528,-0.792701][-0.059346,0.995548,-0.0732284][0.731565,0.260611,-0.106656][-0.764005,1.96461,-1.05156][-0.187948,0.951082,-0.24519][0.748986,0.26547,0.0217942][-1.05156,1.96461,-0.764006][-0.254517,0.951082,-0.175111][0.775621,0.26547,-0.120894][-1.23619,1.96461,-0.401662][-0.296172,0.951082,-0.08789][0.792722,0.26547,-0.300692][-0.931874,2.01528,-0.302785][-0.0910545,0.995548,-0.0243603][0.764535,0.260611,-0.349756][-0.7927,2.01528,-0.575931][-0.0790703,0.995548,-0.0513054][0.751644,0.260611,-0.214219][-0.7927,2.01528,-0.575931][-0.0790703,0.995548,-0.0513054][0.751644,0.260611,-0.214219][-1.05156,1.96461,-0.764006][-0.254517,0.951082,-0.175111][0.775621,0.26547,-0.120894][-1.23619,1.96461,-0.401662][-0.296172,0.951082,-0.08789][0.792722,0.26547,-0.300692][-1.2998,1.96461,0][-0.308836,0.951082,0.0079339][0.798615,0.26547,-0.5][-0.979831,2.01528,0][-0.0941258,0.995548,0.00496935][0.768977,0.260611,-0.5][-0.931874,2.01528,-0.302785][-0.0910545,0.995548,-0.0243603][0.764535,0.260611,-0.349756][-0.931874,2.01528,-0.302785][-0.0910545,0.995548,-0.0243603][0.764535,0.260611,-0.349756][-1.23619,1.96461,-0.401662][-0.296172,0.951082,-0.08789][0.792722,0.26547,-0.300692][-1.2998,1.96461,0][-0.308836,0.951082,0.0079339][0.798615,0.26547,-0.5][-1.23619,1.96461,0.401662][-0.291269,0.951082,0.102981][0.0413755,0.800939,0.300692][-0.931874,2.01528,0.302785][-0.0879833,0.995548,0.0338126][0.0378195,0.816806,0.349756][-0.979831,2.01528,0][-0.0941258,0.995548,0.00496935][0.0378195,0.814306,0.5][-0.979831,2.01528,0][-0.0941258,0.995548,0.00496935][0.0378195,0.814306,0.5][-1.2998,1.96461,0][-0.308836,0.951082,0.0079339][0.0413755,0.797621,0.5][-1.23619,1.96461,0.401662][-0.291269,0.951082,0.102981][0.0413755,0.800939,0.300692][-1.05156,1.96461,0.764006][-0.24519,0.951082,0.187948][0.0413755,0.810565,0.120894][-0.792699,2.01528,0.575931][-0.0732284,0.995548,0.059346][0.0378195,0.824063,0.214218][-0.931874,2.01528,0.302785][-0.0879833,0.995548,0.0338126][0.0378195,0.816806,0.349756][-0.931874,2.01528,0.302785][-0.0879833,0.995548,0.0338126][0.0378195,0.816806,0.349756][-1.23619,1.96461,0.401662][-0.291269,0.951082,0.102981][0.0413755,0.800939,0.300692][-1.05156,1.96461,0.764006][-0.24519,0.951082,0.187948][0.0413755,0.810565,0.120894][-0.764005,1.96461,1.05156][-0.175111,0.951082,0.254517][0.0413755,0.825559,-0.0217944][-0.575929,2.01528,0.792701][-0.0513054,0.995548,0.0790702][0.0378195,0.835366,0.106656][-0.792699,2.01528,0.575931][-0.0732284,0.995548,0.059346][0.0378195,0.824063,0.214218][-0.792699,2.01528,0.575931][-0.0732284,0.995548,0.059346][0.0378195,0.824063,0.214218][-1.05156,1.96461,0.764006][-0.24519,0.951082,0.187948][0.0413755,0.810565,0.120894][-0.764005,1.96461,1.05156][-0.175111,0.951082,0.254517][0.0413755,0.825559,-0.0217944][-0.40166,1.96461,1.23619][-0.08789,0.951082,0.296172][0.0413755,0.844453,-0.113406][-0.302783,2.01528,0.931876][-0.0243603,0.995548,0.0910545][0.0378195,0.849609,0.037596][-0.575929,2.01528,0.792701][-0.0513054,0.995548,0.0790702][0.0378195,0.835366,0.106656][-0.575929,2.01528,0.792701][-0.0513054,0.995548,0.0790702][0.0378195,0.835366,0.106656][-0.764005,1.96461,1.05156][-0.175111,0.951082,0.254517][0.0413755,0.825559,-0.0217944][-0.40166,1.96461,1.23619][-0.08789,0.951082,0.296172][0.0413755,0.844453,-0.113406][1.78814e-006,1.96461,1.29981][0.00793392,0.951082,0.308836][0.0413755,0.865397,-0.144973][1.66893e-006,2.01528,0.979832][0.00496935,0.995548,0.0941257][0.0378195,0.865397,0.0137997][-0.302783,2.01528,0.931876][-0.0243603,0.995548,0.0910545][0.0378195,0.849609,0.037596][-0.302783,2.01528,0.931876][-0.0243603,0.995548,0.0910545][0.0378195,0.849609,0.037596][-0.40166,1.96461,1.23619][-0.08789,0.951082,0.296172][0.0413755,0.844453,-0.113406][1.78814e-006,1.96461,1.29981][0.00793392,0.951082,0.308836][0.0413755,0.865397,-0.144973][0.401663,1.96461,1.23619][0.102981,0.951082,0.291269][0.0413755,0.88634,-0.113406][0.302786,2.01528,0.931876][0.0338126,0.995548,0.0879833][0.0378195,0.881185,0.037596][1.66893e-006,2.01528,0.979832][0.00496935,0.995548,0.0941257][0.0378195,0.865397,0.0137997][1.66893e-006,2.01528,0.979832][0.00496935,0.995548,0.0941257][0.0378195,0.865397,0.0137997][1.78814e-006,1.96461,1.29981][0.00793392,0.951082,0.308836][0.0413755,0.865397,-0.144973][0.401663,1.96461,1.23619][0.102981,0.951082,0.291269][0.0413755,0.88634,-0.113406][0.764008,1.96461,1.05156][0.187948,0.951082,0.24519][0.0413755,0.905234,-0.0217941][0.575933,2.01528,0.792701][0.059346,0.995548,0.0732284][0.0378195,0.895427,0.106656][0.302786,2.01528,0.931876][0.0338126,0.995548,0.0879833][0.0378195,0.881185,0.037596][0.302786,2.01528,0.931876][0.0338126,0.995548,0.0879833][0.0378195,0.881185,0.037596][0.401663,1.96461,1.23619][0.102981,0.951082,0.291269][0.0413755,0.88634,-0.113406][0.764008,1.96461,1.05156][0.187948,0.951082,0.24519][0.0413755,0.905234,-0.0217941][1.05157,1.96461,0.764006][0.254517,0.951082,0.175111][0.0413755,0.920228,0.120894][0.792703,2.01528,0.575931][0.0790703,0.995548,0.0513054][0.0378195,0.90673,0.214219][0.575933,2.01528,0.792701][0.059346,0.995548,0.0732284][0.0378195,0.895427,0.106656][0.575933,2.01528,0.792701][0.059346,0.995548,0.0732284][0.0378195,0.895427,0.106656][0.764008,1.96461,1.05156][0.187948,0.951082,0.24519][0.0413755,0.905234,-0.0217941][1.05157,1.96461,0.764006][0.254517,0.951082,0.175111][0.0413755,0.920228,0.120894][1.23619,1.96461,0.401661][0.296172,0.951082,0.0878899][0.0413755,0.929855,0.300692][0.931877,2.01528,0.302785][0.0910546,0.995548,0.0243603][0.0378195,0.913987,0.349756][0.792703,2.01528,0.575931][0.0790703,0.995548,0.0513054][0.0378195,0.90673,0.214219][0.792703,2.01528,0.575931][0.0790703,0.995548,0.0513054][0.0378195,0.90673,0.214219][1.05157,1.96461,0.764006][0.254517,0.951082,0.175111][0.0413755,0.920228,0.120894][1.23619,1.96461,0.401661][0.296172,0.951082,0.0878899][0.0413755,0.929855,0.300692][1.29981,1.96461,0][0.308836,0.951082,-0.0079339][0.0413755,0.933172,0.5][0.979834,2.01528,0][0.0941258,0.995548,-0.00496935][0.0378195,0.916488,0.5][0.931877,2.01528,0.302785][0.0910546,0.995548,0.0243603][0.0378195,0.913987,0.349756][0.931877,2.01528,0.302785][0.0910546,0.995548,0.0243603][0.0378195,0.913987,0.349756][1.23619,1.96461,0.401661][0.296172,0.951082,0.0878899][0.0413755,0.929855,0.300692][1.29981,1.96461,0][0.308836,0.951082,-0.0079339][0.0413755,0.933172,0.5][1.51071,1.81753,-0.49086][0.556709,0.809169,-0.187939][0.538285,0.279572,-0.256431][1.23619,1.96461,-0.401662][0.291269,0.951082,-0.102981][0.563713,0.26547,-0.300692][1.29981,1.96461,0][0.308836,0.951082,-0.0079339][0.55782,0.26547,-0.5][1.29981,1.96461,0][0.308836,0.951082,-0.0079339][0.55782,0.26547,-0.5][1.58846,1.81753,0][0.587538,0.809169,-0.00670793][0.531083,0.279572,-0.5][1.51071,1.81753,-0.49086][0.556709,0.809169,-0.187939][0.538285,0.279572,-0.256431][1.28509,1.81753,-0.933671][0.471385,0.809169,-0.350773][0.559183,0.279572,-0.0367051][1.05157,1.96461,-0.764006][0.24519,0.951082,-0.187948][0.580814,0.26547,-0.120894][1.23619,1.96461,-0.401662][0.291269,0.951082,-0.102981][0.563713,0.26547,-0.300692][1.23619,1.96461,-0.401662][0.291269,0.951082,-0.102981][0.563713,0.26547,-0.300692][1.51071,1.81753,-0.49086][0.556709,0.809169,-0.187939][0.538285,0.279572,-0.256431][1.28509,1.81753,-0.933671][0.471385,0.809169,-0.350773][0.559183,0.279572,-0.0367051][0.933673,1.81753,-1.28509][0.339919,0.809169,-0.479271][0.591734,0.279572,0.137671][0.764008,1.96461,-1.05156][0.175111,0.951082,-0.254517][0.60745,0.26547,0.0217943][1.05157,1.96461,-0.764006][0.24519,0.951082,-0.187948][0.580814,0.26547,-0.120894][1.05157,1.96461,-0.764006][0.24519,0.951082,-0.187948][0.580814,0.26547,-0.120894][1.28509,1.81753,-0.933671][0.471385,0.809169,-0.350773][0.559183,0.279572,-0.0367051][0.933673,1.81753,-1.28509][0.339919,0.809169,-0.479271][0.591734,0.279572,0.137671][0.490862,1.81753,-1.51071][0.175179,0.809169,-0.560854][0.632751,0.279572,0.249627][0.401663,1.96461,-1.23619][0.08789,0.951082,-0.296172][0.641013,0.26547,0.113406][0.764008,1.96461,-1.05156][0.175111,0.951082,-0.254517][0.60745,0.26547,0.0217943][0.764008,1.96461,-1.05156][0.175111,0.951082,-0.254517][0.60745,0.26547,0.0217943][0.933673,1.81753,-1.28509][0.339919,0.809169,-0.479271][0.591734,0.279572,0.137671][0.490862,1.81753,-1.51071][0.175179,0.809169,-0.560854][0.632751,0.279572,0.249627][1.43051e-006,1.81753,-1.58846][-0.00670806,0.809169,-0.587538][0.678218,0.279572,0.288204][1.43051e-006,1.96461,-1.2998][-0.0079339,0.951082,-0.308836][0.678218,0.26547,0.144973][0.401663,1.96461,-1.23619][0.08789,0.951082,-0.296172][0.641013,0.26547,0.113406][0.401663,1.96461,-1.23619][0.08789,0.951082,-0.296172][0.641013,0.26547,0.113406][0.490862,1.81753,-1.51071][0.175179,0.809169,-0.560854][0.632751,0.279572,0.249627][1.43051e-006,1.81753,-1.58846][-0.00670806,0.809169,-0.587538][0.678218,0.279572,0.288204][-0.490859,1.81753,-1.51071][-0.187939,0.809169,-0.556709][0.723685,0.279572,0.249627][-0.40166,1.96461,-1.23619][-0.102981,0.951082,-0.291269][0.715423,0.26547,0.113406][1.43051e-006,1.96461,-1.2998][-0.0079339,0.951082,-0.308836][0.678218,0.26547,0.144973][1.43051e-006,1.96461,-1.2998][-0.0079339,0.951082,-0.308836][0.678218,0.26547,0.144973][1.43051e-006,1.81753,-1.58846][-0.00670806,0.809169,-0.587538][0.678218,0.279572,0.288204][-0.490859,1.81753,-1.51071][-0.187939,0.809169,-0.556709][0.723685,0.279572,0.249627][-0.93367,1.81753,-1.28509][-0.350773,0.809169,-0.471385][0.764701,0.279572,0.137671][-0.764005,1.96461,-1.05156][-0.187948,0.951082,-0.24519][0.748986,0.26547,0.0217942][-0.40166,1.96461,-1.23619][-0.102981,0.951082,-0.291269][0.715423,0.26547,0.113406][-0.40166,1.96461,-1.23619][-0.102981,0.951082,-0.291269][0.715423,0.26547,0.113406][-0.490859,1.81753,-1.51071][-0.187939,0.809169,-0.556709][0.723685,0.279572,0.249627][-0.93367,1.81753,-1.28509][-0.350773,0.809169,-0.471385][0.764701,0.279572,0.137671][-1.28509,1.81753,-0.933671][-0.479271,0.809169,-0.339919][0.797252,0.279572,-0.0367053][-1.05156,1.96461,-0.764006][-0.254517,0.951082,-0.175111][0.775621,0.26547,-0.120894][-0.764005,1.96461,-1.05156][-0.187948,0.951082,-0.24519][0.748986,0.26547,0.0217942][-0.764005,1.96461,-1.05156][-0.187948,0.951082,-0.24519][0.748986,0.26547,0.0217942][-0.93367,1.81753,-1.28509][-0.350773,0.809169,-0.471385][0.764701,0.279572,0.137671][-1.28509,1.81753,-0.933671][-0.479271,0.809169,-0.339919][0.797252,0.279572,-0.0367053][-1.51071,1.81753,-0.49086][-0.560854,0.809169,-0.175179][0.818151,0.279572,-0.256432][-1.23619,1.96461,-0.401662][-0.296172,0.951082,-0.08789][0.792722,0.26547,-0.300692][-1.05156,1.96461,-0.764006][-0.254517,0.951082,-0.175111][0.775621,0.26547,-0.120894][-1.05156,1.96461,-0.764006][-0.254517,0.951082,-0.175111][0.775621,0.26547,-0.120894][-1.28509,1.81753,-0.933671][-0.479271,0.809169,-0.339919][0.797252,0.279572,-0.0367053][-1.51071,1.81753,-0.49086][-0.560854,0.809169,-0.175179][0.818151,0.279572,-0.256432][-1.58845,1.81753,0][-0.587538,0.809169,0.00670803][0.825352,0.279572,-0.5][-1.2998,1.96461,0][-0.308836,0.951082,0.0079339][0.798615,0.26547,-0.5][-1.23619,1.96461,-0.401662][-0.296172,0.951082,-0.08789][0.792722,0.26547,-0.300692][-1.23619,1.96461,-0.401662][-0.296172,0.951082,-0.08789][0.792722,0.26547,-0.300692][-1.51071,1.81753,-0.49086][-0.560854,0.809169,-0.175179][0.818151,0.279572,-0.256432][-1.58845,1.81753,0][-0.587538,0.809169,0.00670803][0.825352,0.279572,-0.5][-1.51071,1.81753,0.49086][-0.556709,0.809169,0.187939][0.0516957,0.786624,0.256431][-1.23619,1.96461,0.401662][-0.291269,0.951082,0.102981][0.0413755,0.800939,0.300692][-1.2998,1.96461,0][-0.308836,0.951082,0.0079339][0.0413755,0.797621,0.5][-1.2998,1.96461,0][-0.308836,0.951082,0.0079339][0.0413755,0.797621,0.5][-1.58845,1.81753,0][-0.587538,0.809169,0.00670803][0.0516957,0.78257,0.5][-1.51071,1.81753,0.49086][-0.556709,0.809169,0.187939][0.0516957,0.786624,0.256431][-1.28509,1.81753,0.933671][-0.471385,0.809169,0.350773][0.0516957,0.798389,0.036705][-1.05156,1.96461,0.764006][-0.24519,0.951082,0.187948][0.0413755,0.810565,0.120894][-1.23619,1.96461,0.401662][-0.291269,0.951082,0.102981][0.0413755,0.800939,0.300692][-1.23619,1.96461,0.401662][-0.291269,0.951082,0.102981][0.0413755,0.800939,0.300692][-1.51071,1.81753,0.49086][-0.556709,0.809169,0.187939][0.0516957,0.786624,0.256431][-1.28509,1.81753,0.933671][-0.471385,0.809169,0.350773][0.0516957,0.798389,0.036705][-0.93367,1.81753,1.28509][-0.339919,0.809169,0.479271][0.0516957,0.816713,-0.137671][-0.764005,1.96461,1.05156][-0.175111,0.951082,0.254517][0.0413755,0.825559,-0.0217944][-1.05156,1.96461,0.764006][-0.24519,0.951082,0.187948][0.0413755,0.810565,0.120894][-1.05156,1.96461,0.764006][-0.24519,0.951082,0.187948][0.0413755,0.810565,0.120894][-1.28509,1.81753,0.933671][-0.471385,0.809169,0.350773][0.0516957,0.798389,0.036705][-0.93367,1.81753,1.28509][-0.339919,0.809169,0.479271][0.0516957,0.816713,-0.137671][-0.490858,1.81753,1.51071][-0.175179,0.809169,0.560855][0.0516957,0.839802,-0.249627][-0.40166,1.96461,1.23619][-0.08789,0.951082,0.296172][0.0413755,0.844453,-0.113406][-0.764005,1.96461,1.05156][-0.175111,0.951082,0.254517][0.0413755,0.825559,-0.0217944][-0.764005,1.96461,1.05156][-0.175111,0.951082,0.254517][0.0413755,0.825559,-0.0217944][-0.93367,1.81753,1.28509][-0.339919,0.809169,0.479271][0.0516957,0.816713,-0.137671][-0.490858,1.81753,1.51071][-0.175179,0.809169,0.560855][0.0516957,0.839802,-0.249627][1.78814e-006,1.81753,1.58846][0.00670801,0.809169,0.587538][0.0516957,0.865397,-0.288204][1.78814e-006,1.96461,1.29981][0.00793392,0.951082,0.308836][0.0413755,0.865397,-0.144973][-0.40166,1.96461,1.23619][-0.08789,0.951082,0.296172][0.0413755,0.844453,-0.113406][-0.40166,1.96461,1.23619][-0.08789,0.951082,0.296172][0.0413755,0.844453,-0.113406][-0.490858,1.81753,1.51071][-0.175179,0.809169,0.560855][0.0516957,0.839802,-0.249627][1.78814e-006,1.81753,1.58846][0.00670801,0.809169,0.587538][0.0516957,0.865397,-0.288204][0.490862,1.81753,1.51071][0.187939,0.809169,0.556709][0.0516957,0.890991,-0.249627][0.401663,1.96461,1.23619][0.102981,0.951082,0.291269][0.0413755,0.88634,-0.113406][1.78814e-006,1.96461,1.29981][0.00793392,0.951082,0.308836][0.0413755,0.865397,-0.144973][1.78814e-006,1.96461,1.29981][0.00793392,0.951082,0.308836][0.0413755,0.865397,-0.144973][1.78814e-006,1.81753,1.58846][0.00670801,0.809169,0.587538][0.0516957,0.865397,-0.288204][0.490862,1.81753,1.51071][0.187939,0.809169,0.556709][0.0516957,0.890991,-0.249627][0.933673,1.81753,1.28509][0.350773,0.809169,0.471385][0.0516957,0.914081,-0.137671][0.764008,1.96461,1.05156][0.187948,0.951082,0.24519][0.0413755,0.905234,-0.0217941][0.401663,1.96461,1.23619][0.102981,0.951082,0.291269][0.0413755,0.88634,-0.113406][0.401663,1.96461,1.23619][0.102981,0.951082,0.291269][0.0413755,0.88634,-0.113406][0.490862,1.81753,1.51071][0.187939,0.809169,0.556709][0.0516957,0.890991,-0.249627][0.933673,1.81753,1.28509][0.350773,0.809169,0.471385][0.0516957,0.914081,-0.137671][1.28509,1.81753,0.933671][0.479271,0.809169,0.339919][0.0516957,0.932405,0.0367053][1.05157,1.96461,0.764006][0.254517,0.951082,0.175111][0.0413755,0.920228,0.120894][0.764008,1.96461,1.05156][0.187948,0.951082,0.24519][0.0413755,0.905234,-0.0217941][0.764008,1.96461,1.05156][0.187948,0.951082,0.24519][0.0413755,0.905234,-0.0217941][0.933673,1.81753,1.28509][0.350773,0.809169,0.471385][0.0516957,0.914081,-0.137671][1.28509,1.81753,0.933671][0.479271,0.809169,0.339919][0.0516957,0.932405,0.0367053][1.51071,1.81753,0.49086][0.560854,0.809169,0.175179][0.0516957,0.944169,0.256432][1.23619,1.96461,0.401661][0.296172,0.951082,0.0878899][0.0413755,0.929855,0.300692][1.05157,1.96461,0.764006][0.254517,0.951082,0.175111][0.0413755,0.920228,0.120894][1.05157,1.96461,0.764006][0.254517,0.951082,0.175111][0.0413755,0.920228,0.120894][1.28509,1.81753,0.933671][0.479271,0.809169,0.339919][0.0516957,0.932405,0.0367053][1.51071,1.81753,0.49086][0.560854,0.809169,0.175179][0.0516957,0.944169,0.256432][1.58846,1.81753,0][0.587538,0.809169,-0.00670793][0.0516957,0.948223,0.5][1.29981,1.96461,0][0.308836,0.951082,-0.0079339][0.0413755,0.933172,0.5][1.23619,1.96461,0.401661][0.296172,0.951082,0.0878899][0.0413755,0.929855,0.300692][1.23619,1.96461,0.401661][0.296172,0.951082,0.0878899][0.0413755,0.929855,0.300692][1.51071,1.81753,0.49086][0.560854,0.809169,0.175179][0.0516957,0.944169,0.256432][1.58846,1.81753,0][0.587538,0.809169,-0.00670793][0.0516957,0.948223,0.5][1.72858,1.58846,-0.561648][0.767756,0.588011,-0.254546][0.518104,0.301537,-0.221306][1.51071,1.81753,-0.49086][0.556709,0.809169,-0.187939][0.538285,0.279572,-0.256431][1.58846,1.81753,0][0.587538,0.809169,-0.00670793][0.531083,0.279572,-0.5][1.58846,1.81753,0][0.587538,0.809169,-0.00670793][0.531083,0.279572,-0.5][1.81753,1.58846,0][0.808839,0.58801,-0.00483748][0.509865,0.301537,-0.5][1.72858,1.58846,-0.561648][0.767756,0.588011,-0.254546][0.518104,0.301537,-0.221306][1.47042,1.58846,-1.06832][0.651521,0.588011,-0.479337][0.542017,0.301537,0.0301077][1.28509,1.81753,-0.933671][0.471385,0.809169,-0.350773][0.559183,0.279572,-0.0367051][1.51071,1.81753,-0.49086][0.556709,0.809169,-0.187939][0.538285,0.279572,-0.256431][1.51071,1.81753,-0.49086][0.556709,0.809169,-0.187939][0.538285,0.279572,-0.256431][1.72858,1.58846,-0.561648][0.767756,0.588011,-0.254546][0.518104,0.301537,-0.221306][1.47042,1.58846,-1.06832][0.651521,0.588011,-0.479337][0.542017,0.301537,0.0301077][1.06832,1.58846,-1.47041][0.47151,0.588011,-0.657208][0.579262,0.301537,0.229631][0.933673,1.81753,-1.28509][0.339919,0.809169,-0.479271][0.591734,0.279572,0.137671][1.28509,1.81753,-0.933671][0.471385,0.809169,-0.350773][0.559183,0.279572,-0.0367051][1.28509,1.81753,-0.933671][0.471385,0.809169,-0.350773][0.559183,0.279572,-0.0367051][1.47042,1.58846,-1.06832][0.651521,0.588011,-0.479337][0.542017,0.301537,0.0301077][1.06832,1.58846,-1.47041][0.47151,0.588011,-0.657208][0.579262,0.301537,0.229631][0.56165,1.58846,-1.72858][0.245344,0.588011,-0.770746][0.626194,0.301537,0.357732][0.490862,1.81753,-1.51071][0.175179,0.809169,-0.560854][0.632751,0.279572,0.249627][0.933673,1.81753,-1.28509][0.339919,0.809169,-0.479271][0.591734,0.279572,0.137671][0.933673,1.81753,-1.28509][0.339919,0.809169,-0.479271][0.591734,0.279572,0.137671][1.06832,1.58846,-1.47041][0.47151,0.588011,-0.657208][0.579262,0.301537,0.229631][0.56165,1.58846,-1.72858][0.245344,0.588011,-0.770746][0.626194,0.301537,0.357732][1.43051e-006,1.58846,-1.81753][-0.00483764,0.588011,-0.808839][0.678218,0.301537,0.401873][1.43051e-006,1.81753,-1.58846][-0.00670806,0.809169,-0.587538][0.678218,0.279572,0.288204][0.490862,1.81753,-1.51071][0.175179,0.809169,-0.560854][0.632751,0.279572,0.249627][0.490862,1.81753,-1.51071][0.175179,0.809169,-0.560854][0.632751,0.279572,0.249627][0.56165,1.58846,-1.72858][0.245344,0.588011,-0.770746][0.626194,0.301537,0.357732][1.43051e-006,1.58846,-1.81753][-0.00483764,0.588011,-0.808839][0.678218,0.301537,0.401873][-0.561647,1.58846,-1.72858][-0.254546,0.588011,-0.767756][0.730242,0.301537,0.357732][-0.490859,1.81753,-1.51071][-0.187939,0.809169,-0.556709][0.723685,0.279572,0.249627][1.43051e-006,1.81753,-1.58846][-0.00670806,0.809169,-0.587538][0.678218,0.279572,0.288204][1.43051e-006,1.81753,-1.58846][-0.00670806,0.809169,-0.587538][0.678218,0.279572,0.288204][1.43051e-006,1.58846,-1.81753][-0.00483764,0.588011,-0.808839][0.678218,0.301537,0.401873][-0.561647,1.58846,-1.72858][-0.254546,0.588011,-0.767756][0.730242,0.301537,0.357732][-1.06832,1.58846,-1.47041][-0.479337,0.588011,-0.651521][0.777173,0.301537,0.22963][-0.93367,1.81753,-1.28509][-0.350773,0.809169,-0.471385][0.764701,0.279572,0.137671][-0.490859,1.81753,-1.51071][-0.187939,0.809169,-0.556709][0.723685,0.279572,0.249627][-0.490859,1.81753,-1.51071][-0.187939,0.809169,-0.556709][0.723685,0.279572,0.249627][-0.561647,1.58846,-1.72858][-0.254546,0.588011,-0.767756][0.730242,0.301537,0.357732][-1.06832,1.58846,-1.47041][-0.479337,0.588011,-0.651521][0.777173,0.301537,0.22963][-1.47041,1.58846,-1.06832][-0.657208,0.588011,-0.47151][0.814418,0.301537,0.0301075][-1.28509,1.81753,-0.933671][-0.479271,0.809169,-0.339919][0.797252,0.279572,-0.0367053][-0.93367,1.81753,-1.28509][-0.350773,0.809169,-0.471385][0.764701,0.279572,0.137671][-0.93367,1.81753,-1.28509][-0.350773,0.809169,-0.471385][0.764701,0.279572,0.137671][-1.06832,1.58846,-1.47041][-0.479337,0.588011,-0.651521][0.777173,0.301537,0.22963][-1.47041,1.58846,-1.06832][-0.657208,0.588011,-0.47151][0.814418,0.301537,0.0301075][-1.72857,1.58846,-0.561648][-0.770746,0.588011,-0.245344][0.838331,0.301537,-0.221306][-1.51071,1.81753,-0.49086][-0.560854,0.809169,-0.175179][0.818151,0.279572,-0.256432][-1.28509,1.81753,-0.933671][-0.479271,0.809169,-0.339919][0.797252,0.279572,-0.0367053][-1.28509,1.81753,-0.933671][-0.479271,0.809169,-0.339919][0.797252,0.279572,-0.0367053][-1.47041,1.58846,-1.06832][-0.657208,0.588011,-0.47151][0.814418,0.301537,0.0301075][-1.72857,1.58846,-0.561648][-0.770746,0.588011,-0.245344][0.838331,0.301537,-0.221306][-1.81753,1.58846,0][-0.808839,0.588011,0.00483762][0.846571,0.301537,-0.5][-1.58845,1.81753,0][-0.587538,0.809169,0.00670803][0.825352,0.279572,-0.5][-1.51071,1.81753,-0.49086][-0.560854,0.809169,-0.175179][0.818151,0.279572,-0.256432][-1.51071,1.81753,-0.49086][-0.560854,0.809169,-0.175179][0.818151,0.279572,-0.256432][-1.72857,1.58846,-0.561648][-0.770746,0.588011,-0.245344][0.838331,0.301537,-0.221306][-1.81753,1.58846,0][-0.808839,0.588011,0.00483762][0.846571,0.301537,-0.5][-1.72857,1.58846,0.561648][-0.767756,0.588011,0.254546][0.0677696,0.775264,0.221306][-1.51071,1.81753,0.49086][-0.556709,0.809169,0.187939][0.0516957,0.786624,0.256431][-1.58845,1.81753,0][-0.587538,0.809169,0.00670803][0.0516957,0.78257,0.5][-1.58845,1.81753,0][-0.587538,0.809169,0.00670803][0.0516957,0.78257,0.5][-1.81753,1.58846,0][-0.808839,0.588011,0.00483762][0.0677696,0.770626,0.5][-1.72857,1.58846,0.561648][-0.767756,0.588011,0.254546][0.0677696,0.775264,0.221306][-1.47041,1.58846,1.06832][-0.651521,0.588011,0.479337][0.0677696,0.788725,-0.0301079][-1.28509,1.81753,0.933671][-0.471385,0.809169,0.350773][0.0516957,0.798389,0.036705][-1.51071,1.81753,0.49086][-0.556709,0.809169,0.187939][0.0516957,0.786624,0.256431][-1.51071,1.81753,0.49086][-0.556709,0.809169,0.187939][0.0516957,0.786624,0.256431][-1.72857,1.58846,0.561648][-0.767756,0.588011,0.254546][0.0677696,0.775264,0.221306][-1.47041,1.58846,1.06832][-0.651521,0.588011,0.479337][0.0677696,0.788725,-0.0301079][-1.06832,1.58846,1.47041][-0.47151,0.588011,0.657208][0.0677696,0.809692,-0.229631][-0.93367,1.81753,1.28509][-0.339919,0.809169,0.479271][0.0516957,0.816713,-0.137671][-1.28509,1.81753,0.933671][-0.471385,0.809169,0.350773][0.0516957,0.798389,0.036705][-1.28509,1.81753,0.933671][-0.471385,0.809169,0.350773][0.0516957,0.798389,0.036705][-1.47041,1.58846,1.06832][-0.651521,0.588011,0.479337][0.0677696,0.788725,-0.0301079][-1.06832,1.58846,1.47041][-0.47151,0.588011,0.657208][0.0677696,0.809692,-0.229631][-0.561646,1.58846,1.72858][-0.245344,0.588011,0.770746][0.0677696,0.836111,-0.357732][-0.490858,1.81753,1.51071][-0.175179,0.809169,0.560855][0.0516957,0.839802,-0.249627][-0.93367,1.81753,1.28509][-0.339919,0.809169,0.479271][0.0516957,0.816713,-0.137671][-0.93367,1.81753,1.28509][-0.339919,0.809169,0.479271][0.0516957,0.816713,-0.137671][-1.06832,1.58846,1.47041][-0.47151,0.588011,0.657208][0.0677696,0.809692,-0.229631][-0.561646,1.58846,1.72858][-0.245344,0.588011,0.770746][0.0677696,0.836111,-0.357732][1.78814e-006,1.58846,1.81753][0.00483757,0.588011,0.808839][0.0677696,0.865397,-0.401873][1.78814e-006,1.81753,1.58846][0.00670801,0.809169,0.587538][0.0516957,0.865397,-0.288204][-0.490858,1.81753,1.51071][-0.175179,0.809169,0.560855][0.0516957,0.839802,-0.249627][-0.490858,1.81753,1.51071][-0.175179,0.809169,0.560855][0.0516957,0.839802,-0.249627][-0.561646,1.58846,1.72858][-0.245344,0.588011,0.770746][0.0677696,0.836111,-0.357732][1.78814e-006,1.58846,1.81753][0.00483757,0.588011,0.808839][0.0677696,0.865397,-0.401873][0.56165,1.58846,1.72858][0.254546,0.588011,0.767756][0.0677696,0.894682,-0.357732][0.490862,1.81753,1.51071][0.187939,0.809169,0.556709][0.0516957,0.890991,-0.249627][1.78814e-006,1.81753,1.58846][0.00670801,0.809169,0.587538][0.0516957,0.865397,-0.288204][1.78814e-006,1.81753,1.58846][0.00670801,0.809169,0.587538][0.0516957,0.865397,-0.288204][1.78814e-006,1.58846,1.81753][0.00483757,0.588011,0.808839][0.0677696,0.865397,-0.401873][0.56165,1.58846,1.72858][0.254546,0.588011,0.767756][0.0677696,0.894682,-0.357732][1.06832,1.58846,1.47041][0.479337,0.588011,0.651521][0.0677696,0.921102,-0.229631][0.933673,1.81753,1.28509][0.350773,0.809169,0.471385][0.0516957,0.914081,-0.137671][0.490862,1.81753,1.51071][0.187939,0.809169,0.556709][0.0516957,0.890991,-0.249627][0.490862,1.81753,1.51071][0.187939,0.809169,0.556709][0.0516957,0.890991,-0.249627][0.56165,1.58846,1.72858][0.254546,0.588011,0.767756][0.0677696,0.894682,-0.357732][1.06832,1.58846,1.47041][0.479337,0.588011,0.651521][0.0677696,0.921102,-0.229631][1.47042,1.58846,1.06832][0.657208,0.588011,0.47151][0.0677696,0.942068,-0.0301076][1.28509,1.81753,0.933671][0.479271,0.809169,0.339919][0.0516957,0.932405,0.0367053][0.933673,1.81753,1.28509][0.350773,0.809169,0.471385][0.0516957,0.914081,-0.137671][0.933673,1.81753,1.28509][0.350773,0.809169,0.471385][0.0516957,0.914081,-0.137671][1.06832,1.58846,1.47041][0.479337,0.588011,0.651521][0.0677696,0.921102,-0.229631][1.47042,1.58846,1.06832][0.657208,0.588011,0.47151][0.0677696,0.942068,-0.0301076][1.72858,1.58846,0.561648][0.770746,0.588011,0.245344][0.0677696,0.955529,0.221306][1.51071,1.81753,0.49086][0.560854,0.809169,0.175179][0.0516957,0.944169,0.256432][1.28509,1.81753,0.933671][0.479271,0.809169,0.339919][0.0516957,0.932405,0.0367053][1.28509,1.81753,0.933671][0.479271,0.809169,0.339919][0.0516957,0.932405,0.0367053][1.47042,1.58846,1.06832][0.657208,0.588011,0.47151][0.0677696,0.942068,-0.0301076][1.72858,1.58846,0.561648][0.770746,0.588011,0.245344][0.0677696,0.955529,0.221306][1.81753,1.58846,0][0.808839,0.58801,-0.00483748][0.0677696,0.960167,0.5][1.58846,1.81753,0][0.587538,0.809169,-0.00670793][0.0516957,0.948223,0.5][1.51071,1.81753,0.49086][0.560854,0.809169,0.175179][0.0516957,0.944169,0.256432][1.51071,1.81753,0.49086][0.560854,0.809169,0.175179][0.0516957,0.944169,0.256432][1.72858,1.58846,0.561648][0.770746,0.588011,0.245344][0.0677696,0.955529,0.221306][1.81753,1.58846,0][0.808839,0.58801,-0.00483748][0.0677696,0.960167,0.5][1.86845,1.2998,-0.607097][0.903673,0.309184,-0.296279][0.505148,0.329214,-0.198754][1.72858,1.58846,-0.561648][0.767756,0.588011,-0.254546][0.518104,0.301537,-0.221306][1.81753,1.58846,0][0.808839,0.58801,-0.00483748][0.509865,0.301537,-0.5][1.81753,1.58846,0][0.808839,0.58801,-0.00483748][0.509865,0.301537,-0.5][1.96461,1.2998,0][0.950999,0.309183,-0.00252786][0.496242,0.329214,-0.5][1.86845,1.2998,-0.607097][0.903673,0.309184,-0.296279][0.505148,0.329214,-0.198754][1.5894,1.2998,-1.15477][0.767888,0.309184,-0.561028][0.530996,0.329214,0.0730042][1.47042,1.58846,-1.06832][0.651521,0.588011,-0.479337][0.542017,0.301537,0.0301077][1.72858,1.58846,-0.561648][0.767756,0.588011,-0.254546][0.518104,0.301537,-0.221306][1.72858,1.58846,-0.561648][0.767756,0.588011,-0.254546][0.518104,0.301537,-0.221306][1.86845,1.2998,-0.607097][0.903673,0.309184,-0.296279][0.505148,0.329214,-0.198754][1.5894,1.2998,-1.15477][0.767888,0.309184,-0.561028][0.530996,0.329214,0.0730042][1.15477,1.2998,-1.5894][0.556938,0.309184,-0.77086][0.571255,0.329214,0.288673][1.06832,1.58846,-1.47041][0.47151,0.588011,-0.657208][0.579262,0.301537,0.229631][1.47042,1.58846,-1.06832][0.651521,0.588011,-0.479337][0.542017,0.301537,0.0301077][1.47042,1.58846,-1.06832][0.651521,0.588011,-0.479337][0.542017,0.301537,0.0301077][1.5894,1.2998,-1.15477][0.767888,0.309184,-0.561028][0.530996,0.329214,0.0730042][1.15477,1.2998,-1.5894][0.556938,0.309184,-0.77086][0.571255,0.329214,0.288673][0.607098,1.2998,-1.86845][0.291471,0.309183,-0.905235][0.621984,0.329214,0.42714][0.56165,1.58846,-1.72858][0.245344,0.588011,-0.770746][0.626194,0.301537,0.357732][1.06832,1.58846,-1.47041][0.47151,0.588011,-0.657208][0.579262,0.301537,0.229631][1.06832,1.58846,-1.47041][0.47151,0.588011,-0.657208][0.579262,0.301537,0.229631][1.15477,1.2998,-1.5894][0.556938,0.309184,-0.77086][0.571255,0.329214,0.288673][0.607098,1.2998,-1.86845][0.291471,0.309183,-0.905235][0.621984,0.329214,0.42714][1.43051e-006,1.2998,-1.96461][-0.00252805,0.309183,-0.950999][0.678218,0.329214,0.474853][1.43051e-006,1.58846,-1.81753][-0.00483764,0.588011,-0.808839][0.678218,0.301537,0.401873][0.56165,1.58846,-1.72858][0.245344,0.588011,-0.770746][0.626194,0.301537,0.357732][0.56165,1.58846,-1.72858][0.245344,0.588011,-0.770746][0.626194,0.301537,0.357732][0.607098,1.2998,-1.86845][0.291471,0.309183,-0.905235][0.621984,0.329214,0.42714][1.43051e-006,1.2998,-1.96461][-0.00252805,0.309183,-0.950999][0.678218,0.329214,0.474853][-0.607095,1.2998,-1.86845][-0.296279,0.309184,-0.903673][0.734452,0.329214,0.42714][-0.561647,1.58846,-1.72858][-0.254546,0.588011,-0.767756][0.730242,0.301537,0.357732][1.43051e-006,1.58846,-1.81753][-0.00483764,0.588011,-0.808839][0.678218,0.301537,0.401873][1.43051e-006,1.58846,-1.81753][-0.00483764,0.588011,-0.808839][0.678218,0.301537,0.401873][1.43051e-006,1.2998,-1.96461][-0.00252805,0.309183,-0.950999][0.678218,0.329214,0.474853][-0.607095,1.2998,-1.86845][-0.296279,0.309184,-0.903673][0.734452,0.329214,0.42714][-1.15477,1.2998,-1.5894][-0.561028,0.309184,-0.767888][0.785181,0.329214,0.288672][-1.06832,1.58846,-1.47041][-0.479337,0.588011,-0.651521][0.777173,0.301537,0.22963][-0.561647,1.58846,-1.72858][-0.254546,0.588011,-0.767756][0.730242,0.301537,0.357732][-0.561647,1.58846,-1.72858][-0.254546,0.588011,-0.767756][0.730242,0.301537,0.357732][-0.607095,1.2998,-1.86845][-0.296279,0.309184,-0.903673][0.734452,0.329214,0.42714][-1.15477,1.2998,-1.5894][-0.561028,0.309184,-0.767888][0.785181,0.329214,0.288672][-1.5894,1.2998,-1.15477][-0.77086,0.309183,-0.556938][0.82544,0.329214,0.073004][-1.47041,1.58846,-1.06832][-0.657208,0.588011,-0.47151][0.814418,0.301537,0.0301075][-1.06832,1.58846,-1.47041][-0.479337,0.588011,-0.651521][0.777173,0.301537,0.22963][-1.06832,1.58846,-1.47041][-0.479337,0.588011,-0.651521][0.777173,0.301537,0.22963][-1.15477,1.2998,-1.5894][-0.561028,0.309184,-0.767888][0.785181,0.329214,0.288672][-1.5894,1.2998,-1.15477][-0.77086,0.309183,-0.556938][0.82544,0.329214,0.073004][-1.86845,1.2998,-0.607097][-0.905235,0.309183,-0.29147][0.851287,0.329214,-0.198754][-1.72857,1.58846,-0.561648][-0.770746,0.588011,-0.245344][0.838331,0.301537,-0.221306][-1.47041,1.58846,-1.06832][-0.657208,0.588011,-0.47151][0.814418,0.301537,0.0301075][-1.47041,1.58846,-1.06832][-0.657208,0.588011,-0.47151][0.814418,0.301537,0.0301075][-1.5894,1.2998,-1.15477][-0.77086,0.309183,-0.556938][0.82544,0.329214,0.073004][-1.86845,1.2998,-0.607097][-0.905235,0.309183,-0.29147][0.851287,0.329214,-0.198754][-1.96461,1.2998,0][-0.950999,0.309183,0.00252799][0.860194,0.329214,-0.5][-1.81753,1.58846,0][-0.808839,0.588011,0.00483762][0.846571,0.301537,-0.5][-1.72857,1.58846,-0.561648][-0.770746,0.588011,-0.245344][0.838331,0.301537,-0.221306][-1.72857,1.58846,-0.561648][-0.770746,0.588011,-0.245344][0.838331,0.301537,-0.221306][-1.86845,1.2998,-0.607097][-0.905235,0.309183,-0.29147][0.851287,0.329214,-0.198754][-1.96461,1.2998,0][-0.950999,0.309183,0.00252799][0.860194,0.329214,-0.5][-1.86845,1.2998,0.607097][-0.903673,0.309184,0.296279][0.088024,0.767971,0.198754][-1.72857,1.58846,0.561648][-0.767756,0.588011,0.254546][0.0677696,0.775264,0.221306][-1.81753,1.58846,0][-0.808839,0.588011,0.00483762][0.0677696,0.770626,0.5][-1.81753,1.58846,0][-0.808839,0.588011,0.00483762][0.0677696,0.770626,0.5][-1.96461,1.2998,0][-0.950999,0.309183,0.00252799][0.088024,0.762957,0.5][-1.86845,1.2998,0.607097][-0.903673,0.309184,0.296279][0.088024,0.767971,0.198754][-1.5894,1.2998,1.15477][-0.767888,0.309184,0.561028][0.088024,0.782521,-0.0730044][-1.47041,1.58846,1.06832][-0.651521,0.588011,0.479337][0.0677696,0.788725,-0.0301079][-1.72857,1.58846,0.561648][-0.767756,0.588011,0.254546][0.0677696,0.775264,0.221306][-1.72857,1.58846,0.561648][-0.767756,0.588011,0.254546][0.0677696,0.775264,0.221306][-1.86845,1.2998,0.607097][-0.903673,0.309184,0.296279][0.088024,0.767971,0.198754][-1.5894,1.2998,1.15477][-0.767888,0.309184,0.561028][0.088024,0.782521,-0.0730044][-1.15477,1.2998,1.5894][-0.556938,0.309184,0.77086][0.088024,0.805184,-0.288673][-1.06832,1.58846,1.47041][-0.47151,0.588011,0.657208][0.0677696,0.809692,-0.229631][-1.47041,1.58846,1.06832][-0.651521,0.588011,0.479337][0.0677696,0.788725,-0.0301079][-1.47041,1.58846,1.06832][-0.651521,0.588011,0.479337][0.0677696,0.788725,-0.0301079][-1.5894,1.2998,1.15477][-0.767888,0.309184,0.561028][0.088024,0.782521,-0.0730044][-1.15477,1.2998,1.5894][-0.556938,0.309184,0.77086][0.088024,0.805184,-0.288673][-0.607095,1.2998,1.86845][-0.29147,0.309183,0.905235][0.088024,0.833741,-0.42714][-0.561646,1.58846,1.72858][-0.245344,0.588011,0.770746][0.0677696,0.836111,-0.357732][-1.06832,1.58846,1.47041][-0.47151,0.588011,0.657208][0.0677696,0.809692,-0.229631][-1.06832,1.58846,1.47041][-0.47151,0.588011,0.657208][0.0677696,0.809692,-0.229631][-1.15477,1.2998,1.5894][-0.556938,0.309184,0.77086][0.088024,0.805184,-0.288673][-0.607095,1.2998,1.86845][-0.29147,0.309183,0.905235][0.088024,0.833741,-0.42714][1.90735e-006,1.2998,1.96461][0.00252797,0.309183,0.950999][0.088024,0.865397,-0.474853][1.78814e-006,1.58846,1.81753][0.00483757,0.588011,0.808839][0.0677696,0.865397,-0.401873][-0.561646,1.58846,1.72858][-0.245344,0.588011,0.770746][0.0677696,0.836111,-0.357732][-0.561646,1.58846,1.72858][-0.245344,0.588011,0.770746][0.0677696,0.836111,-0.357732][-0.607095,1.2998,1.86845][-0.29147,0.309183,0.905235][0.088024,0.833741,-0.42714][1.90735e-006,1.2998,1.96461][0.00252797,0.309183,0.950999][0.088024,0.865397,-0.474853][0.607099,1.2998,1.86845][0.296279,0.309184,0.903673][0.088024,0.897052,-0.42714][0.56165,1.58846,1.72858][0.254546,0.588011,0.767756][0.0677696,0.894682,-0.357732][1.78814e-006,1.58846,1.81753][0.00483757,0.588011,0.808839][0.0677696,0.865397,-0.401873][1.78814e-006,1.58846,1.81753][0.00483757,0.588011,0.808839][0.0677696,0.865397,-0.401873][1.90735e-006,1.2998,1.96461][0.00252797,0.309183,0.950999][0.088024,0.865397,-0.474853][0.607099,1.2998,1.86845][0.296279,0.309184,0.903673][0.088024,0.897052,-0.42714][1.15477,1.2998,1.5894][0.561029,0.309184,0.767888][0.088024,0.925609,-0.288672][1.06832,1.58846,1.47041][0.479337,0.588011,0.651521][0.0677696,0.921102,-0.229631][0.56165,1.58846,1.72858][0.254546,0.588011,0.767756][0.0677696,0.894682,-0.357732][0.56165,1.58846,1.72858][0.254546,0.588011,0.767756][0.0677696,0.894682,-0.357732][0.607099,1.2998,1.86845][0.296279,0.309184,0.903673][0.088024,0.897052,-0.42714][1.15477,1.2998,1.5894][0.561029,0.309184,0.767888][0.088024,0.925609,-0.288672][1.5894,1.2998,1.15477][0.77086,0.309184,0.556938][0.088024,0.948272,-0.0730041][1.47042,1.58846,1.06832][0.657208,0.588011,0.47151][0.0677696,0.942068,-0.0301076][1.06832,1.58846,1.47041][0.479337,0.588011,0.651521][0.0677696,0.921102,-0.229631][1.06832,1.58846,1.47041][0.479337,0.588011,0.651521][0.0677696,0.921102,-0.229631][1.15477,1.2998,1.5894][0.561029,0.309184,0.767888][0.088024,0.925609,-0.288672][1.5894,1.2998,1.15477][0.77086,0.309184,0.556938][0.088024,0.948272,-0.0730041][1.86845,1.2998,0.607096][0.905235,0.309184,0.29147][0.088024,0.962823,0.198754][1.72858,1.58846,0.561648][0.770746,0.588011,0.245344][0.0677696,0.955529,0.221306][1.47042,1.58846,1.06832][0.657208,0.588011,0.47151][0.0677696,0.942068,-0.0301076][1.47042,1.58846,1.06832][0.657208,0.588011,0.47151][0.0677696,0.942068,-0.0301076][1.5894,1.2998,1.15477][0.77086,0.309184,0.556938][0.088024,0.948272,-0.0730041][1.86845,1.2998,0.607096][0.905235,0.309184,0.29147][0.088024,0.962823,0.198754][1.96461,1.2998,0][0.950999,0.309183,-0.00252786][0.088024,0.967836,0.5][1.81753,1.58846,0][0.808839,0.58801,-0.00483748][0.0677696,0.960167,0.5][1.72858,1.58846,0.561648][0.770746,0.588011,0.245344][0.0677696,0.955529,0.221306][1.72858,1.58846,0.561648][0.770746,0.588011,0.245344][0.0677696,0.955529,0.221306][1.86845,1.2998,0.607096][0.905235,0.309184,0.29147][0.088024,0.962823,0.198754][1.96461,1.2998,0][0.950999,0.309183,-0.00252786][0.088024,0.967836,0.5][1.91665,0.979833,-0.622758][0.948025,0.0784716,-0.308367][0.500684,0.359894,-0.190983][1.86845,1.2998,-0.607097][0.903673,0.309184,-0.296279][0.505148,0.329214,-0.198754][1.96461,1.2998,0][0.950999,0.309183,-0.00252786][0.496242,0.329214,-0.5][1.96461,1.2998,0][0.950999,0.309183,-0.00252786][0.496242,0.329214,-0.5][2.01529,0.979833,0][0.996916,0.0784713,-0.000317951][0.491547,0.359894,-0.5][1.91665,0.979833,-0.622758][0.948025,0.0784716,-0.308367][0.500684,0.359894,-0.190983][1.6304,0.979833,-1.18456][0.806335,0.0784714,-0.58623][0.527198,0.359894,0.0877852][1.5894,1.2998,-1.15477][0.767888,0.309184,-0.561028][0.530996,0.329214,0.0730042][1.86845,1.2998,-0.607097][0.903673,0.309184,-0.296279][0.505148,0.329214,-0.198754][1.86845,1.2998,-0.607097][0.903673,0.309184,-0.296279][0.505148,0.329214,-0.198754][1.91665,0.979833,-0.622758][0.948025,0.0784716,-0.308367][0.500684,0.359894,-0.190983][1.6304,0.979833,-1.18456][0.806335,0.0784714,-0.58623][0.527198,0.359894,0.0877852][1.18456,0.979833,-1.6304][0.585715,0.0784714,-0.806709][0.568496,0.359894,0.309017][1.15477,1.2998,-1.5894][0.556938,0.309184,-0.77086][0.571255,0.329214,0.288673][1.5894,1.2998,-1.15477][0.767888,0.309184,-0.561028][0.530996,0.329214,0.0730042][1.5894,1.2998,-1.15477][0.767888,0.309184,-0.561028][0.530996,0.329214,0.0730042][1.6304,0.979833,-1.18456][0.806335,0.0784714,-0.58623][0.527198,0.359894,0.0877852][1.18456,0.979833,-1.6304][0.585715,0.0784714,-0.806709][0.568496,0.359894,0.309017][0.622759,0.979833,-1.91665][0.307762,0.0784713,-0.948222][0.620533,0.359894,0.451057][0.607098,1.2998,-1.86845][0.291471,0.309183,-0.905235][0.621984,0.329214,0.42714][1.15477,1.2998,-1.5894][0.556938,0.309184,-0.77086][0.571255,0.329214,0.288673][1.15477,1.2998,-1.5894][0.556938,0.309184,-0.77086][0.571255,0.329214,0.288673][1.18456,0.979833,-1.6304][0.585715,0.0784714,-0.806709][0.568496,0.359894,0.309017][0.622759,0.979833,-1.91665][0.307762,0.0784713,-0.948222][0.620533,0.359894,0.451057][1.43051e-006,0.979833,-2.01529][-0.000318264,0.0784713,-0.996916][0.678218,0.359894,0.5][1.43051e-006,1.2998,-1.96461][-0.00252805,0.309183,-0.950999][0.678218,0.329214,0.474853][0.607098,1.2998,-1.86845][0.291471,0.309183,-0.905235][0.621984,0.329214,0.42714][0.607098,1.2998,-1.86845][0.291471,0.309183,-0.905235][0.621984,0.329214,0.42714][0.622759,0.979833,-1.91665][0.307762,0.0784713,-0.948222][0.620533,0.359894,0.451057][1.43051e-006,0.979833,-2.01529][-0.000318264,0.0784713,-0.996916][0.678218,0.359894,0.5][-0.622756,0.979833,-1.91665][-0.308367,0.0784712,-0.948025][0.735902,0.359894,0.451056][-0.607095,1.2998,-1.86845][-0.296279,0.309184,-0.903673][0.734452,0.329214,0.42714][1.43051e-006,1.2998,-1.96461][-0.00252805,0.309183,-0.950999][0.678218,0.329214,0.474853][1.43051e-006,1.2998,-1.96461][-0.00252805,0.309183,-0.950999][0.678218,0.329214,0.474853][1.43051e-006,0.979833,-2.01529][-0.000318264,0.0784713,-0.996916][0.678218,0.359894,0.5][-0.622756,0.979833,-1.91665][-0.308367,0.0784712,-0.948025][0.735902,0.359894,0.451056][-1.18455,0.979833,-1.6304][-0.58623,0.0784712,-0.806335][0.78794,0.359894,0.309017][-1.15477,1.2998,-1.5894][-0.561028,0.309184,-0.767888][0.785181,0.329214,0.288672][-0.607095,1.2998,-1.86845][-0.296279,0.309184,-0.903673][0.734452,0.329214,0.42714][-0.607095,1.2998,-1.86845][-0.296279,0.309184,-0.903673][0.734452,0.329214,0.42714][-0.622756,0.979833,-1.91665][-0.308367,0.0784712,-0.948025][0.735902,0.359894,0.451056][-1.18455,0.979833,-1.6304][-0.58623,0.0784712,-0.806335][0.78794,0.359894,0.309017][-1.6304,0.979833,-1.18455][-0.806709,0.0784712,-0.585715][0.829237,0.359894,0.0877852][-1.5894,1.2998,-1.15477][-0.77086,0.309183,-0.556938][0.82544,0.329214,0.073004][-1.15477,1.2998,-1.5894][-0.561028,0.309184,-0.767888][0.785181,0.329214,0.288672][-1.15477,1.2998,-1.5894][-0.561028,0.309184,-0.767888][0.785181,0.329214,0.288672][-1.18455,0.979833,-1.6304][-0.58623,0.0784712,-0.806335][0.78794,0.359894,0.309017][-1.6304,0.979833,-1.18455][-0.806709,0.0784712,-0.585715][0.829237,0.359894,0.0877852][-1.91665,0.979833,-0.622757][-0.948222,0.0784712,-0.307761][0.855752,0.359894,-0.190983][-1.86845,1.2998,-0.607097][-0.905235,0.309183,-0.29147][0.851287,0.329214,-0.198754][-1.5894,1.2998,-1.15477][-0.77086,0.309183,-0.556938][0.82544,0.329214,0.073004][-1.5894,1.2998,-1.15477][-0.77086,0.309183,-0.556938][0.82544,0.329214,0.073004][-1.6304,0.979833,-1.18455][-0.806709,0.0784712,-0.585715][0.829237,0.359894,0.0877852][-1.91665,0.979833,-0.622757][-0.948222,0.0784712,-0.307761][0.855752,0.359894,-0.190983][-2.01528,0.979833,0][-0.996916,0.0784712,0.000318171][0.864888,0.359894,-0.5][-1.96461,1.2998,0][-0.950999,0.309183,0.00252799][0.860194,0.329214,-0.5][-1.86845,1.2998,-0.607097][-0.905235,0.309183,-0.29147][0.851287,0.329214,-0.198754][-1.86845,1.2998,-0.607097][-0.905235,0.309183,-0.29147][0.851287,0.329214,-0.198754][-1.91665,0.979833,-0.622757][-0.948222,0.0784712,-0.307761][0.855752,0.359894,-0.190983][-2.01528,0.979833,0][-0.996916,0.0784712,0.000318171][0.864888,0.359894,-0.5][-1.91665,0.979833,0.622758][-0.948025,0.0784711,0.308367][0.110476,0.765458,0.190983][-1.86845,1.2998,0.607097][-0.903673,0.309184,0.296279][0.088024,0.767971,0.198754][-1.96461,1.2998,0][-0.950999,0.309183,0.00252799][0.088024,0.762957,0.5][-1.96461,1.2998,0][-0.950999,0.309183,0.00252799][0.088024,0.762957,0.5][-2.01528,0.979833,0][-0.996916,0.0784712,0.000318171][0.110476,0.760314,0.5][-1.91665,0.979833,0.622758][-0.948025,0.0784711,0.308367][0.110476,0.765458,0.190983][-1.6304,0.979833,1.18456][-0.806335,0.0784712,0.58623][0.110476,0.780383,-0.0877855][-1.5894,1.2998,1.15477][-0.767888,0.309184,0.561028][0.088024,0.782521,-0.0730044][-1.86845,1.2998,0.607097][-0.903673,0.309184,0.296279][0.088024,0.767971,0.198754][-1.86845,1.2998,0.607097][-0.903673,0.309184,0.296279][0.088024,0.767971,0.198754][-1.91665,0.979833,0.622758][-0.948025,0.0784711,0.308367][0.110476,0.765458,0.190983][-1.6304,0.979833,1.18456][-0.806335,0.0784712,0.58623][0.110476,0.780383,-0.0877855][-1.18455,0.979833,1.6304][-0.585715,0.0784713,0.806709][0.110476,0.803631,-0.309017][-1.15477,1.2998,1.5894][-0.556938,0.309184,0.77086][0.088024,0.805184,-0.288673][-1.5894,1.2998,1.15477][-0.767888,0.309184,0.561028][0.088024,0.782521,-0.0730044][-1.5894,1.2998,1.15477][-0.767888,0.309184,0.561028][0.088024,0.782521,-0.0730044][-1.6304,0.979833,1.18456][-0.806335,0.0784712,0.58623][0.110476,0.780383,-0.0877855][-1.18455,0.979833,1.6304][-0.585715,0.0784713,0.806709][0.110476,0.803631,-0.309017][-0.622756,0.979833,1.91665][-0.307761,0.0784714,0.948222][0.110476,0.832924,-0.451057][-0.607095,1.2998,1.86845][-0.29147,0.309183,0.905235][0.088024,0.833741,-0.42714][-1.15477,1.2998,1.5894][-0.556938,0.309184,0.77086][0.088024,0.805184,-0.288673][-1.15477,1.2998,1.5894][-0.556938,0.309184,0.77086][0.088024,0.805184,-0.288673][-1.18455,0.979833,1.6304][-0.585715,0.0784713,0.806709][0.110476,0.803631,-0.309017][-0.622756,0.979833,1.91665][-0.307761,0.0784714,0.948222][0.110476,0.832924,-0.451057][1.90735e-006,0.979833,2.01529][0.000318188,0.0784711,0.996916][0.110476,0.865397,-0.5][1.90735e-006,1.2998,1.96461][0.00252797,0.309183,0.950999][0.088024,0.865397,-0.474853][-0.607095,1.2998,1.86845][-0.29147,0.309183,0.905235][0.088024,0.833741,-0.42714][-0.607095,1.2998,1.86845][-0.29147,0.309183,0.905235][0.088024,0.833741,-0.42714][-0.622756,0.979833,1.91665][-0.307761,0.0784714,0.948222][0.110476,0.832924,-0.451057][1.90735e-006,0.979833,2.01529][0.000318188,0.0784711,0.996916][0.110476,0.865397,-0.5][0.622759,0.979833,1.91665][0.308367,0.0784711,0.948025][0.110476,0.897869,-0.451057][0.607099,1.2998,1.86845][0.296279,0.309184,0.903673][0.088024,0.897052,-0.42714][1.90735e-006,1.2998,1.96461][0.00252797,0.309183,0.950999][0.088024,0.865397,-0.474853][1.90735e-006,1.2998,1.96461][0.00252797,0.309183,0.950999][0.088024,0.865397,-0.474853][1.90735e-006,0.979833,2.01529][0.000318188,0.0784711,0.996916][0.110476,0.865397,-0.5][0.622759,0.979833,1.91665][0.308367,0.0784711,0.948025][0.110476,0.897869,-0.451057][1.18456,0.979833,1.6304][0.58623,0.0784713,0.806335][0.110476,0.927162,-0.309017][1.15477,1.2998,1.5894][0.561029,0.309184,0.767888][0.088024,0.925609,-0.288672][0.607099,1.2998,1.86845][0.296279,0.309184,0.903673][0.088024,0.897052,-0.42714][0.607099,1.2998,1.86845][0.296279,0.309184,0.903673][0.088024,0.897052,-0.42714][0.622759,0.979833,1.91665][0.308367,0.0784711,0.948025][0.110476,0.897869,-0.451057][1.18456,0.979833,1.6304][0.58623,0.0784713,0.806335][0.110476,0.927162,-0.309017][1.6304,0.979833,1.18455][0.806709,0.0784714,0.585715][0.110476,0.95041,-0.0877852][1.5894,1.2998,1.15477][0.77086,0.309184,0.556938][0.088024,0.948272,-0.0730041][1.15477,1.2998,1.5894][0.561029,0.309184,0.767888][0.088024,0.925609,-0.288672][1.15477,1.2998,1.5894][0.561029,0.309184,0.767888][0.088024,0.925609,-0.288672][1.18456,0.979833,1.6304][0.58623,0.0784713,0.806335][0.110476,0.927162,-0.309017][1.6304,0.979833,1.18455][0.806709,0.0784714,0.585715][0.110476,0.95041,-0.0877852][1.91665,0.979833,0.622757][0.948222,0.0784717,0.307761][0.110476,0.965336,0.190983][1.86845,1.2998,0.607096][0.905235,0.309184,0.29147][0.088024,0.962823,0.198754][1.5894,1.2998,1.15477][0.77086,0.309184,0.556938][0.088024,0.948272,-0.0730041][1.5894,1.2998,1.15477][0.77086,0.309184,0.556938][0.088024,0.948272,-0.0730041][1.6304,0.979833,1.18455][0.806709,0.0784714,0.585715][0.110476,0.95041,-0.0877852][1.91665,0.979833,0.622757][0.948222,0.0784717,0.307761][0.110476,0.965336,0.190983][2.01529,0.979833,0][0.996916,0.0784713,-0.000317951][0.110476,0.970479,0.5][1.96461,1.2998,0][0.950999,0.309183,-0.00252786][0.088024,0.967836,0.5][1.86845,1.2998,0.607096][0.905235,0.309184,0.29147][0.088024,0.962823,0.198754][1.86845,1.2998,0.607096][0.905235,0.309184,0.29147][0.088024,0.962823,0.198754][1.91665,0.979833,0.622757][0.948222,0.0784717,0.307761][0.110476,0.965336,0.190983][2.01529,0.979833,0][0.996916,0.0784713,-0.000317951][0.110476,0.970479,0.5][1.91665,-0.979834,-0.622757][0.948222,-0.0784714,-0.307761][0.500684,0.547796,-0.190983][1.91665,0.979833,-0.622758][0.948025,0.0784716,-0.308367][0.500684,0.359894,-0.190983][2.01529,0.979833,0][0.996916,0.0784713,-0.000317951][0.491547,0.359894,-0.5][2.01529,0.979833,0][0.996916,0.0784713,-0.000317951][0.491547,0.359894,-0.5][2.01529,-0.979834,0][0.996916,-0.0784711,0.00031805][0.491547,0.547796,-0.5][1.91665,-0.979834,-0.622757][0.948222,-0.0784714,-0.307761][0.500684,0.547796,-0.190983][1.6304,-0.979834,-1.18455][0.806709,-0.0784711,-0.585716][0.527198,0.547796,0.0877854][1.6304,0.979833,-1.18456][0.806335,0.0784714,-0.58623][0.527198,0.359894,0.0877852][1.91665,0.979833,-0.622758][0.948025,0.0784716,-0.308367][0.500684,0.359894,-0.190983][1.91665,0.979833,-0.622758][0.948025,0.0784716,-0.308367][0.500684,0.359894,-0.190983][1.91665,-0.979834,-0.622757][0.948222,-0.0784714,-0.307761][0.500684,0.547796,-0.190983][1.6304,-0.979834,-1.18455][0.806709,-0.0784711,-0.585716][0.527198,0.547796,0.0877854][1.18456,-0.979834,-1.6304][0.58623,-0.0784712,-0.806335][0.568496,0.547796,0.309017][1.18456,0.979833,-1.6304][0.585715,0.0784714,-0.806709][0.568496,0.359894,0.309017][1.6304,0.979833,-1.18456][0.806335,0.0784714,-0.58623][0.527198,0.359894,0.0877852][1.6304,0.979833,-1.18456][0.806335,0.0784714,-0.58623][0.527198,0.359894,0.0877852][1.6304,-0.979834,-1.18455][0.806709,-0.0784711,-0.585716][0.527198,0.547796,0.0877854][1.18456,-0.979834,-1.6304][0.58623,-0.0784712,-0.806335][0.568496,0.547796,0.309017][0.622759,-0.979834,-1.91665][0.308367,-0.0784711,-0.948025][0.620533,0.547796,0.451057][0.622759,0.979833,-1.91665][0.307762,0.0784713,-0.948222][0.620533,0.359894,0.451057][1.18456,0.979833,-1.6304][0.585715,0.0784714,-0.806709][0.568496,0.359894,0.309017][1.18456,0.979833,-1.6304][0.585715,0.0784714,-0.806709][0.568496,0.359894,0.309017][1.18456,-0.979834,-1.6304][0.58623,-0.0784712,-0.806335][0.568496,0.547796,0.309017][0.622759,-0.979834,-1.91665][0.308367,-0.0784711,-0.948025][0.620533,0.547796,0.451057][1.43051e-006,-0.979834,-2.01529][0.000318032,-0.0784711,-0.996916][0.678218,0.547796,0.5][1.43051e-006,0.979833,-2.01529][-0.000318264,0.0784713,-0.996916][0.678218,0.359894,0.5][0.622759,0.979833,-1.91665][0.307762,0.0784713,-0.948222][0.620533,0.359894,0.451057][0.622759,0.979833,-1.91665][0.307762,0.0784713,-0.948222][0.620533,0.359894,0.451057][0.622759,-0.979834,-1.91665][0.308367,-0.0784711,-0.948025][0.620533,0.547796,0.451057][1.43051e-006,-0.979834,-2.01529][0.000318032,-0.0784711,-0.996916][0.678218,0.547796,0.5][-0.622756,-0.979834,-1.91665][-0.307762,-0.078471,-0.948222][0.735902,0.547796,0.451057][-0.622756,0.979833,-1.91665][-0.308367,0.0784712,-0.948025][0.735902,0.359894,0.451056][1.43051e-006,0.979833,-2.01529][-0.000318264,0.0784713,-0.996916][0.678218,0.359894,0.5][1.43051e-006,0.979833,-2.01529][-0.000318264,0.0784713,-0.996916][0.678218,0.359894,0.5][1.43051e-006,-0.979834,-2.01529][0.000318032,-0.0784711,-0.996916][0.678218,0.547796,0.5][-0.622756,-0.979834,-1.91665][-0.307762,-0.078471,-0.948222][0.735902,0.547796,0.451057][-1.18455,-0.979834,-1.6304][-0.585715,-0.078471,-0.806709][0.78794,0.547796,0.309017][-1.18455,0.979833,-1.6304][-0.58623,0.0784712,-0.806335][0.78794,0.359894,0.309017][-0.622756,0.979833,-1.91665][-0.308367,0.0784712,-0.948025][0.735902,0.359894,0.451056][-0.622756,0.979833,-1.91665][-0.308367,0.0784712,-0.948025][0.735902,0.359894,0.451056][-0.622756,-0.979834,-1.91665][-0.307762,-0.078471,-0.948222][0.735902,0.547796,0.451057][-1.18455,-0.979834,-1.6304][-0.585715,-0.078471,-0.806709][0.78794,0.547796,0.309017][-1.6304,-0.979834,-1.18455][-0.806335,-0.078471,-0.58623][0.829237,0.547796,0.0877852][-1.6304,0.979833,-1.18455][-0.806709,0.0784712,-0.585715][0.829237,0.359894,0.0877852][-1.18455,0.979833,-1.6304][-0.58623,0.0784712,-0.806335][0.78794,0.359894,0.309017][-1.18455,0.979833,-1.6304][-0.58623,0.0784712,-0.806335][0.78794,0.359894,0.309017][-1.18455,-0.979834,-1.6304][-0.585715,-0.078471,-0.806709][0.78794,0.547796,0.309017][-1.6304,-0.979834,-1.18455][-0.806335,-0.078471,-0.58623][0.829237,0.547796,0.0877852][-1.91665,-0.979834,-0.622757][-0.948026,-0.078471,-0.308367][0.855752,0.547796,-0.190983][-1.91665,0.979833,-0.622757][-0.948222,0.0784712,-0.307761][0.855752,0.359894,-0.190983][-1.6304,0.979833,-1.18455][-0.806709,0.0784712,-0.585715][0.829237,0.359894,0.0877852][-1.6304,0.979833,-1.18455][-0.806709,0.0784712,-0.585715][0.829237,0.359894,0.0877852][-1.6304,-0.979834,-1.18455][-0.806335,-0.078471,-0.58623][0.829237,0.547796,0.0877852][-1.91665,-0.979834,-0.622757][-0.948026,-0.078471,-0.308367][0.855752,0.547796,-0.190983][-2.01528,-0.979834,1.96073e-007][-0.996916,-0.0784709,-0.000318047][0.864888,0.547796,-0.5][-2.01528,0.979833,0][-0.996916,0.0784712,0.000318171][0.864888,0.359894,-0.5][-1.91665,0.979833,-0.622757][-0.948222,0.0784712,-0.307761][0.855752,0.359894,-0.190983][-1.91665,0.979833,-0.622757][-0.948222,0.0784712,-0.307761][0.855752,0.359894,-0.190983][-1.91665,-0.979834,-0.622757][-0.948026,-0.078471,-0.308367][0.855752,0.547796,-0.190983][-2.01528,-0.979834,1.96073e-007][-0.996916,-0.0784709,-0.000318047][0.864888,0.547796,-0.5][-1.91665,-0.979834,0.622758][-0.948222,-0.0784709,0.307761][0.247984,0.765458,0.190983][-1.91665,0.979833,0.622758][-0.948025,0.0784711,0.308367][0.110476,0.765458,0.190983][-2.01528,0.979833,0][-0.996916,0.0784712,0.000318171][0.110476,0.760314,0.5][-2.01528,0.979833,0][-0.996916,0.0784712,0.000318171][0.110476,0.760314,0.5][-2.01528,-0.979834,1.96073e-007][-0.996916,-0.0784709,-0.000318047][0.247984,0.760314,0.5][-1.91665,-0.979834,0.622758][-0.948222,-0.0784709,0.307761][0.247984,0.765458,0.190983][-1.6304,-0.979834,1.18456][-0.806709,-0.078471,0.585715][0.247984,0.780383,-0.0877855][-1.6304,0.979833,1.18456][-0.806335,0.0784712,0.58623][0.110476,0.780383,-0.0877855][-1.91665,0.979833,0.622758][-0.948025,0.0784711,0.308367][0.110476,0.765458,0.190983][-1.91665,0.979833,0.622758][-0.948025,0.0784711,0.308367][0.110476,0.765458,0.190983][-1.91665,-0.979834,0.622758][-0.948222,-0.0784709,0.307761][0.247984,0.765458,0.190983][-1.6304,-0.979834,1.18456][-0.806709,-0.078471,0.585715][0.247984,0.780383,-0.0877855][-1.18455,-0.979834,1.6304][-0.58623,-0.078471,0.806335][0.247984,0.803631,-0.309017][-1.18455,0.979833,1.6304][-0.585715,0.0784713,0.806709][0.110476,0.803631,-0.309017][-1.6304,0.979833,1.18456][-0.806335,0.0784712,0.58623][0.110476,0.780383,-0.0877855][-1.6304,0.979833,1.18456][-0.806335,0.0784712,0.58623][0.110476,0.780383,-0.0877855][-1.6304,-0.979834,1.18456][-0.806709,-0.078471,0.585715][0.247984,0.780383,-0.0877855][-1.18455,-0.979834,1.6304][-0.58623,-0.078471,0.806335][0.247984,0.803631,-0.309017][-0.622756,-0.979834,1.91665][-0.308366,-0.078471,0.948026][0.247984,0.832924,-0.451057][-0.622756,0.979833,1.91665][-0.307761,0.0784714,0.948222][0.110476,0.832924,-0.451057][-1.18455,0.979833,1.6304][-0.585715,0.0784713,0.806709][0.110476,0.803631,-0.309017][-1.18455,0.979833,1.6304][-0.585715,0.0784713,0.806709][0.110476,0.803631,-0.309017][-1.18455,-0.979834,1.6304][-0.58623,-0.078471,0.806335][0.247984,0.803631,-0.309017][-0.622756,-0.979834,1.91665][-0.308366,-0.078471,0.948026][0.247984,0.832924,-0.451057][1.90735e-006,-0.979834,2.01529][-0.000317888,-0.0784706,0.996916][0.247984,0.865397,-0.5][1.90735e-006,0.979833,2.01529][0.000318188,0.0784711,0.996916][0.110476,0.865397,-0.5][-0.622756,0.979833,1.91665][-0.307761,0.0784714,0.948222][0.110476,0.832924,-0.451057][-0.622756,0.979833,1.91665][-0.307761,0.0784714,0.948222][0.110476,0.832924,-0.451057][-0.622756,-0.979834,1.91665][-0.308366,-0.078471,0.948026][0.247984,0.832924,-0.451057][1.90735e-006,-0.979834,2.01529][-0.000317888,-0.0784706,0.996916][0.247984,0.865397,-0.5][0.622759,-0.979834,1.91665][0.307762,-0.078471,0.948222][0.247984,0.897869,-0.451056][0.622759,0.979833,1.91665][0.308367,0.0784711,0.948025][0.110476,0.897869,-0.451057][1.90735e-006,0.979833,2.01529][0.000318188,0.0784711,0.996916][0.110476,0.865397,-0.5][1.90735e-006,0.979833,2.01529][0.000318188,0.0784711,0.996916][0.110476,0.865397,-0.5][1.90735e-006,-0.979834,2.01529][-0.000317888,-0.0784706,0.996916][0.247984,0.865397,-0.5][0.622759,-0.979834,1.91665][0.307762,-0.078471,0.948222][0.247984,0.897869,-0.451056][1.18456,-0.979834,1.6304][0.585715,-0.078471,0.806709][0.247984,0.927162,-0.309017][1.18456,0.979833,1.6304][0.58623,0.0784713,0.806335][0.110476,0.927162,-0.309017][0.622759,0.979833,1.91665][0.308367,0.0784711,0.948025][0.110476,0.897869,-0.451057][0.622759,0.979833,1.91665][0.308367,0.0784711,0.948025][0.110476,0.897869,-0.451057][0.622759,-0.979834,1.91665][0.307762,-0.078471,0.948222][0.247984,0.897869,-0.451056][1.18456,-0.979834,1.6304][0.585715,-0.078471,0.806709][0.247984,0.927162,-0.309017][1.6304,-0.979834,1.18455][0.806335,-0.0784713,0.58623][0.247984,0.95041,-0.0877851][1.6304,0.979833,1.18455][0.806709,0.0784714,0.585715][0.110476,0.95041,-0.0877852][1.18456,0.979833,1.6304][0.58623,0.0784713,0.806335][0.110476,0.927162,-0.309017][1.18456,0.979833,1.6304][0.58623,0.0784713,0.806335][0.110476,0.927162,-0.309017][1.18456,-0.979834,1.6304][0.585715,-0.078471,0.806709][0.247984,0.927162,-0.309017][1.6304,-0.979834,1.18455][0.806335,-0.0784713,0.58623][0.247984,0.95041,-0.0877851][1.91665,-0.979834,0.622757][0.948026,-0.0784713,0.308367][0.247984,0.965336,0.190983][1.91665,0.979833,0.622757][0.948222,0.0784717,0.307761][0.110476,0.965336,0.190983][1.6304,0.979833,1.18455][0.806709,0.0784714,0.585715][0.110476,0.95041,-0.0877852][1.6304,0.979833,1.18455][0.806709,0.0784714,0.585715][0.110476,0.95041,-0.0877852][1.6304,-0.979834,1.18455][0.806335,-0.0784713,0.58623][0.247984,0.95041,-0.0877851][1.91665,-0.979834,0.622757][0.948026,-0.0784713,0.308367][0.247984,0.965336,0.190983][2.01529,-0.979834,0][0.996916,-0.0784711,0.00031805][0.247984,0.970479,0.5][2.01529,0.979833,0][0.996916,0.0784713,-0.000317951][0.110476,0.970479,0.5][1.91665,0.979833,0.622757][0.948222,0.0784717,0.307761][0.110476,0.965336,0.190983][1.91665,0.979833,0.622757][0.948222,0.0784717,0.307761][0.110476,0.965336,0.190983][1.91665,-0.979834,0.622757][0.948026,-0.0784713,0.308367][0.247984,0.965336,0.190983][2.01529,-0.979834,0][0.996916,-0.0784711,0.00031805][0.247984,0.970479,0.5][1.86845,-1.29981,-0.607097][0.905235,-0.309184,-0.29147][0.505148,0.578476,-0.198754][1.91665,-0.979834,-0.622757][0.948222,-0.0784714,-0.307761][0.500684,0.547796,-0.190983][2.01529,-0.979834,0][0.996916,-0.0784711,0.00031805][0.491547,0.547796,-0.5][2.01529,-0.979834,0][0.996916,-0.0784711,0.00031805][0.491547,0.547796,-0.5][1.96461,-1.29981,0][0.950999,-0.309184,0.00252795][0.496241,0.578476,-0.5][1.86845,-1.29981,-0.607097][0.905235,-0.309184,-0.29147][0.505148,0.578476,-0.198754][1.5894,-1.29981,-1.15477][0.77086,-0.309184,-0.556938][0.530996,0.578476,0.0730042][1.6304,-0.979834,-1.18455][0.806709,-0.0784711,-0.585716][0.527198,0.547796,0.0877854][1.91665,-0.979834,-0.622757][0.948222,-0.0784714,-0.307761][0.500684,0.547796,-0.190983][1.91665,-0.979834,-0.622757][0.948222,-0.0784714,-0.307761][0.500684,0.547796,-0.190983][1.86845,-1.29981,-0.607097][0.905235,-0.309184,-0.29147][0.505148,0.578476,-0.198754][1.5894,-1.29981,-1.15477][0.77086,-0.309184,-0.556938][0.530996,0.578476,0.0730042][1.15477,-1.29981,-1.5894][0.561028,-0.309184,-0.767888][0.571255,0.578476,0.288673][1.18456,-0.979834,-1.6304][0.58623,-0.0784712,-0.806335][0.568496,0.547796,0.309017][1.6304,-0.979834,-1.18455][0.806709,-0.0784711,-0.585716][0.527198,0.547796,0.0877854][1.6304,-0.979834,-1.18455][0.806709,-0.0784711,-0.585716][0.527198,0.547796,0.0877854][1.5894,-1.29981,-1.15477][0.77086,-0.309184,-0.556938][0.530996,0.578476,0.0730042][1.15477,-1.29981,-1.5894][0.561028,-0.309184,-0.767888][0.571255,0.578476,0.288673][0.607098,-1.29981,-1.86845][0.296279,-0.309184,-0.903673][0.621984,0.578476,0.42714][0.622759,-0.979834,-1.91665][0.308367,-0.0784711,-0.948025][0.620533,0.547796,0.451057][1.18456,-0.979834,-1.6304][0.58623,-0.0784712,-0.806335][0.568496,0.547796,0.309017][1.18456,-0.979834,-1.6304][0.58623,-0.0784712,-0.806335][0.568496,0.547796,0.309017][1.15477,-1.29981,-1.5894][0.561028,-0.309184,-0.767888][0.571255,0.578476,0.288673][0.607098,-1.29981,-1.86845][0.296279,-0.309184,-0.903673][0.621984,0.578476,0.42714][1.43051e-006,-1.29981,-1.96461][0.00252796,-0.309184,-0.950999][0.678218,0.578476,0.474853][1.43051e-006,-0.979834,-2.01529][0.000318032,-0.0784711,-0.996916][0.678218,0.547796,0.5][0.622759,-0.979834,-1.91665][0.308367,-0.0784711,-0.948025][0.620533,0.547796,0.451057][0.622759,-0.979834,-1.91665][0.308367,-0.0784711,-0.948025][0.620533,0.547796,0.451057][0.607098,-1.29981,-1.86845][0.296279,-0.309184,-0.903673][0.621984,0.578476,0.42714][1.43051e-006,-1.29981,-1.96461][0.00252796,-0.309184,-0.950999][0.678218,0.578476,0.474853][-0.607095,-1.29981,-1.86845][-0.291471,-0.309184,-0.905235][0.734452,0.578476,0.42714][-0.622756,-0.979834,-1.91665][-0.307762,-0.078471,-0.948222][0.735902,0.547796,0.451057][1.43051e-006,-0.979834,-2.01529][0.000318032,-0.0784711,-0.996916][0.678218,0.547796,0.5][1.43051e-006,-0.979834,-2.01529][0.000318032,-0.0784711,-0.996916][0.678218,0.547796,0.5][1.43051e-006,-1.29981,-1.96461][0.00252796,-0.309184,-0.950999][0.678218,0.578476,0.474853][-0.607095,-1.29981,-1.86845][-0.291471,-0.309184,-0.905235][0.734452,0.578476,0.42714][-1.15477,-1.29981,-1.5894][-0.556938,-0.309184,-0.77086][0.785181,0.578476,0.288672][-1.18455,-0.979834,-1.6304][-0.585715,-0.078471,-0.806709][0.78794,0.547796,0.309017][-0.622756,-0.979834,-1.91665][-0.307762,-0.078471,-0.948222][0.735902,0.547796,0.451057][-0.622756,-0.979834,-1.91665][-0.307762,-0.078471,-0.948222][0.735902,0.547796,0.451057][-0.607095,-1.29981,-1.86845][-0.291471,-0.309184,-0.905235][0.734452,0.578476,0.42714][-1.15477,-1.29981,-1.5894][-0.556938,-0.309184,-0.77086][0.785181,0.578476,0.288672][-1.5894,-1.29981,-1.15477][-0.767888,-0.309184,-0.561028][0.82544,0.578476,0.073004][-1.6304,-0.979834,-1.18455][-0.806335,-0.078471,-0.58623][0.829237,0.547796,0.0877852][-1.18455,-0.979834,-1.6304][-0.585715,-0.078471,-0.806709][0.78794,0.547796,0.309017][-1.18455,-0.979834,-1.6304][-0.585715,-0.078471,-0.806709][0.78794,0.547796,0.309017][-1.15477,-1.29981,-1.5894][-0.556938,-0.309184,-0.77086][0.785181,0.578476,0.288672][-1.5894,-1.29981,-1.15477][-0.767888,-0.309184,-0.561028][0.82544,0.578476,0.073004][-1.86845,-1.29981,-0.607097][-0.903673,-0.309184,-0.296279][0.851287,0.578476,-0.198754][-1.91665,-0.979834,-0.622757][-0.948026,-0.078471,-0.308367][0.855752,0.547796,-0.190983][-1.6304,-0.979834,-1.18455][-0.806335,-0.078471,-0.58623][0.829237,0.547796,0.0877852][-1.6304,-0.979834,-1.18455][-0.806335,-0.078471,-0.58623][0.829237,0.547796,0.0877852][-1.5894,-1.29981,-1.15477][-0.767888,-0.309184,-0.561028][0.82544,0.578476,0.073004][-1.86845,-1.29981,-0.607097][-0.903673,-0.309184,-0.296279][0.851287,0.578476,-0.198754][-1.96461,-1.29981,2.05629e-007][-0.950999,-0.309184,-0.00252795][0.860194,0.578476,-0.5][-2.01528,-0.979834,1.96073e-007][-0.996916,-0.0784709,-0.000318047][0.864888,0.547796,-0.5][-1.91665,-0.979834,-0.622757][-0.948026,-0.078471,-0.308367][0.855752,0.547796,-0.190983][-1.91665,-0.979834,-0.622757][-0.948026,-0.078471,-0.308367][0.855752,0.547796,-0.190983][-1.86845,-1.29981,-0.607097][-0.903673,-0.309184,-0.296279][0.851287,0.578476,-0.198754][-1.96461,-1.29981,2.05629e-007][-0.950999,-0.309184,-0.00252795][0.860194,0.578476,-0.5][-1.86845,-1.29981,0.607097][-0.905235,-0.309184,0.291471][0.270436,0.767971,0.198754][-1.91665,-0.979834,0.622758][-0.948222,-0.0784709,0.307761][0.247984,0.765458,0.190983][-2.01528,-0.979834,1.96073e-007][-0.996916,-0.0784709,-0.000318047][0.247984,0.760314,0.5][-2.01528,-0.979834,1.96073e-007][-0.996916,-0.0784709,-0.000318047][0.247984,0.760314,0.5][-1.96461,-1.29981,2.05629e-007][-0.950999,-0.309184,-0.00252795][0.270436,0.762957,0.5][-1.86845,-1.29981,0.607097][-0.905235,-0.309184,0.291471][0.270436,0.767971,0.198754][-1.5894,-1.29981,1.15477][-0.77086,-0.309184,0.556938][0.270436,0.782521,-0.0730044][-1.6304,-0.979834,1.18456][-0.806709,-0.078471,0.585715][0.247984,0.780383,-0.0877855][-1.91665,-0.979834,0.622758][-0.948222,-0.0784709,0.307761][0.247984,0.765458,0.190983][-1.91665,-0.979834,0.622758][-0.948222,-0.0784709,0.307761][0.247984,0.765458,0.190983][-1.86845,-1.29981,0.607097][-0.905235,-0.309184,0.291471][0.270436,0.767971,0.198754][-1.5894,-1.29981,1.15477][-0.77086,-0.309184,0.556938][0.270436,0.782521,-0.0730044][-1.15477,-1.29981,1.5894][-0.561028,-0.309184,0.767888][0.270436,0.805184,-0.288673][-1.18455,-0.979834,1.6304][-0.58623,-0.078471,0.806335][0.247984,0.803631,-0.309017][-1.6304,-0.979834,1.18456][-0.806709,-0.078471,0.585715][0.247984,0.780383,-0.0877855][-1.6304,-0.979834,1.18456][-0.806709,-0.078471,0.585715][0.247984,0.780383,-0.0877855][-1.5894,-1.29981,1.15477][-0.77086,-0.309184,0.556938][0.270436,0.782521,-0.0730044][-1.15477,-1.29981,1.5894][-0.561028,-0.309184,0.767888][0.270436,0.805184,-0.288673][-0.607095,-1.29981,1.86845][-0.296279,-0.309184,0.903673][0.270436,0.833741,-0.42714][-0.622756,-0.979834,1.91665][-0.308366,-0.078471,0.948026][0.247984,0.832924,-0.451057][-1.18455,-0.979834,1.6304][-0.58623,-0.078471,0.806335][0.247984,0.803631,-0.309017][-1.18455,-0.979834,1.6304][-0.58623,-0.078471,0.806335][0.247984,0.803631,-0.309017][-1.15477,-1.29981,1.5894][-0.561028,-0.309184,0.767888][0.270436,0.805184,-0.288673][-0.607095,-1.29981,1.86845][-0.296279,-0.309184,0.903673][0.270436,0.833741,-0.42714][1.90735e-006,-1.29981,1.96461][-0.00252784,-0.309184,0.950999][0.270436,0.865397,-0.474853][1.90735e-006,-0.979834,2.01529][-0.000317888,-0.0784706,0.996916][0.247984,0.865397,-0.5][-0.622756,-0.979834,1.91665][-0.308366,-0.078471,0.948026][0.247984,0.832924,-0.451057][-0.622756,-0.979834,1.91665][-0.308366,-0.078471,0.948026][0.247984,0.832924,-0.451057][-0.607095,-1.29981,1.86845][-0.296279,-0.309184,0.903673][0.270436,0.833741,-0.42714][1.90735e-006,-1.29981,1.96461][-0.00252784,-0.309184,0.950999][0.270436,0.865397,-0.474853][0.607099,-1.29981,1.86845][0.291471,-0.309184,0.905235][0.270436,0.897052,-0.42714][0.622759,-0.979834,1.91665][0.307762,-0.078471,0.948222][0.247984,0.897869,-0.451056][1.90735e-006,-0.979834,2.01529][-0.000317888,-0.0784706,0.996916][0.247984,0.865397,-0.5][1.90735e-006,-0.979834,2.01529][-0.000317888,-0.0784706,0.996916][0.247984,0.865397,-0.5][1.90735e-006,-1.29981,1.96461][-0.00252784,-0.309184,0.950999][0.270436,0.865397,-0.474853][0.607099,-1.29981,1.86845][0.291471,-0.309184,0.905235][0.270436,0.897052,-0.42714][1.15477,-1.29981,1.5894][0.556938,-0.309184,0.77086][0.270436,0.925609,-0.288672][1.18456,-0.979834,1.6304][0.585715,-0.078471,0.806709][0.247984,0.927162,-0.309017][0.622759,-0.979834,1.91665][0.307762,-0.078471,0.948222][0.247984,0.897869,-0.451056][0.622759,-0.979834,1.91665][0.307762,-0.078471,0.948222][0.247984,0.897869,-0.451056][0.607099,-1.29981,1.86845][0.291471,-0.309184,0.905235][0.270436,0.897052,-0.42714][1.15477,-1.29981,1.5894][0.556938,-0.309184,0.77086][0.270436,0.925609,-0.288672][1.5894,-1.29981,1.15477][0.767888,-0.309184,0.561028][0.270436,0.948272,-0.073004][1.6304,-0.979834,1.18455][0.806335,-0.0784713,0.58623][0.247984,0.95041,-0.0877851][1.18456,-0.979834,1.6304][0.585715,-0.078471,0.806709][0.247984,0.927162,-0.309017][1.18456,-0.979834,1.6304][0.585715,-0.078471,0.806709][0.247984,0.927162,-0.309017][1.15477,-1.29981,1.5894][0.556938,-0.309184,0.77086][0.270436,0.925609,-0.288672][1.5894,-1.29981,1.15477][0.767888,-0.309184,0.561028][0.270436,0.948272,-0.073004][1.86845,-1.29981,0.607097][0.903672,-0.309184,0.296279][0.270436,0.962823,0.198754][1.91665,-0.979834,0.622757][0.948026,-0.0784713,0.308367][0.247984,0.965336,0.190983][1.6304,-0.979834,1.18455][0.806335,-0.0784713,0.58623][0.247984,0.95041,-0.0877851][1.6304,-0.979834,1.18455][0.806335,-0.0784713,0.58623][0.247984,0.95041,-0.0877851][1.5894,-1.29981,1.15477][0.767888,-0.309184,0.561028][0.270436,0.948272,-0.073004][1.86845,-1.29981,0.607097][0.903672,-0.309184,0.296279][0.270436,0.962823,0.198754][1.96461,-1.29981,0][0.950999,-0.309184,0.00252795][0.270436,0.967836,0.5][2.01529,-0.979834,0][0.996916,-0.0784711,0.00031805][0.247984,0.970479,0.5][1.91665,-0.979834,0.622757][0.948026,-0.0784713,0.308367][0.247984,0.965336,0.190983][1.91665,-0.979834,0.622757][0.948026,-0.0784713,0.308367][0.247984,0.965336,0.190983][1.86845,-1.29981,0.607097][0.903672,-0.309184,0.296279][0.270436,0.962823,0.198754][1.96461,-1.29981,0][0.950999,-0.309184,0.00252795][0.270436,0.967836,0.5][1.72858,-1.58846,-0.561648][0.770746,-0.58801,-0.245344][0.518104,0.606153,-0.221306][1.86845,-1.29981,-0.607097][0.905235,-0.309184,-0.29147][0.505148,0.578476,-0.198754][1.96461,-1.29981,0][0.950999,-0.309184,0.00252795][0.496241,0.578476,-0.5][1.96461,-1.29981,0][0.950999,-0.309184,0.00252795][0.496241,0.578476,-0.5][1.81753,-1.58846,0][0.808839,-0.58801,0.00483746][0.509865,0.606153,-0.5][1.72858,-1.58846,-0.561648][0.770746,-0.58801,-0.245344][0.518104,0.606153,-0.221306][1.47042,-1.58846,-1.06832][0.657208,-0.58801,-0.47151][0.542017,0.606153,0.0301077][1.5894,-1.29981,-1.15477][0.77086,-0.309184,-0.556938][0.530996,0.578476,0.0730042][1.86845,-1.29981,-0.607097][0.905235,-0.309184,-0.29147][0.505148,0.578476,-0.198754][1.86845,-1.29981,-0.607097][0.905235,-0.309184,-0.29147][0.505148,0.578476,-0.198754][1.72858,-1.58846,-0.561648][0.770746,-0.58801,-0.245344][0.518104,0.606153,-0.221306][1.47042,-1.58846,-1.06832][0.657208,-0.58801,-0.47151][0.542017,0.606153,0.0301077][1.06832,-1.58846,-1.47041][0.479337,-0.58801,-0.651521][0.579262,0.606153,0.229631][1.15477,-1.29981,-1.5894][0.561028,-0.309184,-0.767888][0.571255,0.578476,0.288673][1.5894,-1.29981,-1.15477][0.77086,-0.309184,-0.556938][0.530996,0.578476,0.0730042][1.5894,-1.29981,-1.15477][0.77086,-0.309184,-0.556938][0.530996,0.578476,0.0730042][1.47042,-1.58846,-1.06832][0.657208,-0.58801,-0.47151][0.542017,0.606153,0.0301077][1.06832,-1.58846,-1.47041][0.479337,-0.58801,-0.651521][0.579262,0.606153,0.229631][0.56165,-1.58846,-1.72858][0.254546,-0.58801,-0.767757][0.626194,0.606153,0.357732][0.607098,-1.29981,-1.86845][0.296279,-0.309184,-0.903673][0.621984,0.578476,0.42714][1.15477,-1.29981,-1.5894][0.561028,-0.309184,-0.767888][0.571255,0.578476,0.288673][1.15477,-1.29981,-1.5894][0.561028,-0.309184,-0.767888][0.571255,0.578476,0.288673][1.06832,-1.58846,-1.47041][0.479337,-0.58801,-0.651521][0.579262,0.606153,0.229631][0.56165,-1.58846,-1.72858][0.254546,-0.58801,-0.767757][0.626194,0.606153,0.357732][1.43051e-006,-1.58846,-1.81753][0.00483731,-0.58801,-0.808839][0.678218,0.606153,0.401873][1.43051e-006,-1.29981,-1.96461][0.00252796,-0.309184,-0.950999][0.678218,0.578476,0.474853][0.607098,-1.29981,-1.86845][0.296279,-0.309184,-0.903673][0.621984,0.578476,0.42714][0.607098,-1.29981,-1.86845][0.296279,-0.309184,-0.903673][0.621984,0.578476,0.42714][0.56165,-1.58846,-1.72858][0.254546,-0.58801,-0.767757][0.626194,0.606153,0.357732][1.43051e-006,-1.58846,-1.81753][0.00483731,-0.58801,-0.808839][0.678218,0.606153,0.401873][-0.561647,-1.58846,-1.72857][-0.245344,-0.58801,-0.770746][0.730242,0.606153,0.357732][-0.607095,-1.29981,-1.86845][-0.291471,-0.309184,-0.905235][0.734452,0.578476,0.42714][1.43051e-006,-1.29981,-1.96461][0.00252796,-0.309184,-0.950999][0.678218,0.578476,0.474853][1.43051e-006,-1.29981,-1.96461][0.00252796,-0.309184,-0.950999][0.678218,0.578476,0.474853][1.43051e-006,-1.58846,-1.81753][0.00483731,-0.58801,-0.808839][0.678218,0.606153,0.401873][-0.561647,-1.58846,-1.72857][-0.245344,-0.58801,-0.770746][0.730242,0.606153,0.357732][-1.06832,-1.58846,-1.47041][-0.47151,-0.58801,-0.657208][0.777173,0.606153,0.229631][-1.15477,-1.29981,-1.5894][-0.556938,-0.309184,-0.77086][0.785181,0.578476,0.288672][-0.607095,-1.29981,-1.86845][-0.291471,-0.309184,-0.905235][0.734452,0.578476,0.42714][-0.607095,-1.29981,-1.86845][-0.291471,-0.309184,-0.905235][0.734452,0.578476,0.42714][-0.561647,-1.58846,-1.72857][-0.245344,-0.58801,-0.770746][0.730242,0.606153,0.357732][-1.06832,-1.58846,-1.47041][-0.47151,-0.58801,-0.657208][0.777173,0.606153,0.229631][-1.47041,-1.58846,-1.06832][-0.651521,-0.58801,-0.479337][0.814418,0.606153,0.0301076][-1.5894,-1.29981,-1.15477][-0.767888,-0.309184,-0.561028][0.82544,0.578476,0.073004][-1.15477,-1.29981,-1.5894][-0.556938,-0.309184,-0.77086][0.785181,0.578476,0.288672][-1.15477,-1.29981,-1.5894][-0.556938,-0.309184,-0.77086][0.785181,0.578476,0.288672][-1.06832,-1.58846,-1.47041][-0.47151,-0.58801,-0.657208][0.777173,0.606153,0.229631][-1.47041,-1.58846,-1.06832][-0.651521,-0.58801,-0.479337][0.814418,0.606153,0.0301076][-1.72857,-1.58846,-0.561648][-0.767757,-0.58801,-0.254546][0.838331,0.606153,-0.221306][-1.86845,-1.29981,-0.607097][-0.903673,-0.309184,-0.296279][0.851287,0.578476,-0.198754][-1.5894,-1.29981,-1.15477][-0.767888,-0.309184,-0.561028][0.82544,0.578476,0.073004][-1.5894,-1.29981,-1.15477][-0.767888,-0.309184,-0.561028][0.82544,0.578476,0.073004][-1.47041,-1.58846,-1.06832][-0.651521,-0.58801,-0.479337][0.814418,0.606153,0.0301076][-1.72857,-1.58846,-0.561648][-0.767757,-0.58801,-0.254546][0.838331,0.606153,-0.221306][-1.81753,-1.58846,2.05389e-007][-0.808839,-0.58801,-0.00483735][0.846571,0.606153,-0.5][-1.96461,-1.29981,2.05629e-007][-0.950999,-0.309184,-0.00252795][0.860194,0.578476,-0.5][-1.86845,-1.29981,-0.607097][-0.903673,-0.309184,-0.296279][0.851287,0.578476,-0.198754][-1.86845,-1.29981,-0.607097][-0.903673,-0.309184,-0.296279][0.851287,0.578476,-0.198754][-1.72857,-1.58846,-0.561648][-0.767757,-0.58801,-0.254546][0.838331,0.606153,-0.221306][-1.81753,-1.58846,2.05389e-007][-0.808839,-0.58801,-0.00483735][0.846571,0.606153,-0.5][-1.72857,-1.58846,0.561648][-0.770746,-0.58801,0.245344][0.29069,0.775264,0.221306][-1.86845,-1.29981,0.607097][-0.905235,-0.309184,0.291471][0.270436,0.767971,0.198754][-1.96461,-1.29981,2.05629e-007][-0.950999,-0.309184,-0.00252795][0.270436,0.762957,0.5][-1.96461,-1.29981,2.05629e-007][-0.950999,-0.309184,-0.00252795][0.270436,0.762957,0.5][-1.81753,-1.58846,2.05389e-007][-0.808839,-0.58801,-0.00483735][0.29069,0.770626,0.5][-1.72857,-1.58846,0.561648][-0.770746,-0.58801,0.245344][0.29069,0.775264,0.221306][-1.47041,-1.58846,1.06832][-0.657208,-0.58801,0.47151][0.29069,0.788725,-0.0301079][-1.5894,-1.29981,1.15477][-0.77086,-0.309184,0.556938][0.270436,0.782521,-0.0730044][-1.86845,-1.29981,0.607097][-0.905235,-0.309184,0.291471][0.270436,0.767971,0.198754][-1.86845,-1.29981,0.607097][-0.905235,-0.309184,0.291471][0.270436,0.767971,0.198754][-1.72857,-1.58846,0.561648][-0.770746,-0.58801,0.245344][0.29069,0.775264,0.221306][-1.47041,-1.58846,1.06832][-0.657208,-0.58801,0.47151][0.29069,0.788725,-0.0301079][-1.06832,-1.58846,1.47041][-0.479337,-0.58801,0.651521][0.29069,0.809692,-0.229631][-1.15477,-1.29981,1.5894][-0.561028,-0.309184,0.767888][0.270436,0.805184,-0.288673][-1.5894,-1.29981,1.15477][-0.77086,-0.309184,0.556938][0.270436,0.782521,-0.0730044][-1.5894,-1.29981,1.15477][-0.77086,-0.309184,0.556938][0.270436,0.782521,-0.0730044][-1.47041,-1.58846,1.06832][-0.657208,-0.58801,0.47151][0.29069,0.788725,-0.0301079][-1.06832,-1.58846,1.47041][-0.479337,-0.58801,0.651521][0.29069,0.809692,-0.229631][-0.561646,-1.58846,1.72858][-0.254546,-0.58801,0.767757][0.29069,0.836111,-0.357732][-0.607095,-1.29981,1.86845][-0.296279,-0.309184,0.903673][0.270436,0.833741,-0.42714][-1.15477,-1.29981,1.5894][-0.561028,-0.309184,0.767888][0.270436,0.805184,-0.288673][-1.15477,-1.29981,1.5894][-0.561028,-0.309184,0.767888][0.270436,0.805184,-0.288673][-1.06832,-1.58846,1.47041][-0.479337,-0.58801,0.651521][0.29069,0.809692,-0.229631][-0.561646,-1.58846,1.72858][-0.254546,-0.58801,0.767757][0.29069,0.836111,-0.357732][1.78814e-006,-1.58846,1.81753][-0.00483737,-0.58801,0.808839][0.29069,0.865397,-0.401873][1.90735e-006,-1.29981,1.96461][-0.00252784,-0.309184,0.950999][0.270436,0.865397,-0.474853][-0.607095,-1.29981,1.86845][-0.296279,-0.309184,0.903673][0.270436,0.833741,-0.42714][-0.607095,-1.29981,1.86845][-0.296279,-0.309184,0.903673][0.270436,0.833741,-0.42714][-0.561646,-1.58846,1.72858][-0.254546,-0.58801,0.767757][0.29069,0.836111,-0.357732][1.78814e-006,-1.58846,1.81753][-0.00483737,-0.58801,0.808839][0.29069,0.865397,-0.401873][0.56165,-1.58846,1.72858][0.245344,-0.58801,0.770746][0.29069,0.894682,-0.357732][0.607099,-1.29981,1.86845][0.291471,-0.309184,0.905235][0.270436,0.897052,-0.42714][1.90735e-006,-1.29981,1.96461][-0.00252784,-0.309184,0.950999][0.270436,0.865397,-0.474853][1.90735e-006,-1.29981,1.96461][-0.00252784,-0.309184,0.950999][0.270436,0.865397,-0.474853][1.78814e-006,-1.58846,1.81753][-0.00483737,-0.58801,0.808839][0.29069,0.865397,-0.401873][0.56165,-1.58846,1.72858][0.245344,-0.58801,0.770746][0.29069,0.894682,-0.357732][1.06832,-1.58846,1.47041][0.47151,-0.58801,0.657208][0.29069,0.921102,-0.22963][1.15477,-1.29981,1.5894][0.556938,-0.309184,0.77086][0.270436,0.925609,-0.288672][0.607099,-1.29981,1.86845][0.291471,-0.309184,0.905235][0.270436,0.897052,-0.42714][0.607099,-1.29981,1.86845][0.291471,-0.309184,0.905235][0.270436,0.897052,-0.42714][0.56165,-1.58846,1.72858][0.245344,-0.58801,0.770746][0.29069,0.894682,-0.357732][1.06832,-1.58846,1.47041][0.47151,-0.58801,0.657208][0.29069,0.921102,-0.22963][1.47042,-1.58846,1.06832][0.651521,-0.58801,0.479337][0.29069,0.942068,-0.0301075][1.5894,-1.29981,1.15477][0.767888,-0.309184,0.561028][0.270436,0.948272,-0.073004][1.15477,-1.29981,1.5894][0.556938,-0.309184,0.77086][0.270436,0.925609,-0.288672][1.15477,-1.29981,1.5894][0.556938,-0.309184,0.77086][0.270436,0.925609,-0.288672][1.06832,-1.58846,1.47041][0.47151,-0.58801,0.657208][0.29069,0.921102,-0.22963][1.47042,-1.58846,1.06832][0.651521,-0.58801,0.479337][0.29069,0.942068,-0.0301075][1.72858,-1.58846,0.561648][0.767757,-0.58801,0.254546][0.29069,0.955529,0.221306][1.86845,-1.29981,0.607097][0.903672,-0.309184,0.296279][0.270436,0.962823,0.198754][1.5894,-1.29981,1.15477][0.767888,-0.309184,0.561028][0.270436,0.948272,-0.073004][1.5894,-1.29981,1.15477][0.767888,-0.309184,0.561028][0.270436,0.948272,-0.073004][1.47042,-1.58846,1.06832][0.651521,-0.58801,0.479337][0.29069,0.942068,-0.0301075][1.72858,-1.58846,0.561648][0.767757,-0.58801,0.254546][0.29069,0.955529,0.221306][1.81753,-1.58846,0][0.808839,-0.58801,0.00483746][0.29069,0.960167,0.5][1.96461,-1.29981,0][0.950999,-0.309184,0.00252795][0.270436,0.967836,0.5][1.86845,-1.29981,0.607097][0.903672,-0.309184,0.296279][0.270436,0.962823,0.198754][1.86845,-1.29981,0.607097][0.903672,-0.309184,0.296279][0.270436,0.962823,0.198754][1.72858,-1.58846,0.561648][0.767757,-0.58801,0.254546][0.29069,0.955529,0.221306][1.81753,-1.58846,0][0.808839,-0.58801,0.00483746][0.29069,0.960167,0.5][1.51071,-1.81753,-0.49086][0.560855,-0.809168,-0.17518][0.538285,0.628118,-0.256431][1.72858,-1.58846,-0.561648][0.770746,-0.58801,-0.245344][0.518104,0.606153,-0.221306][1.81753,-1.58846,0][0.808839,-0.58801,0.00483746][0.509865,0.606153,-0.5][1.81753,-1.58846,0][0.808839,-0.58801,0.00483746][0.509865,0.606153,-0.5][1.58846,-1.81753,0][0.587539,-0.809168,0.00670802][0.531083,0.628118,-0.5][1.51071,-1.81753,-0.49086][0.560855,-0.809168,-0.17518][0.538285,0.628118,-0.256431][1.28509,-1.81753,-0.933671][0.479272,-0.809168,-0.33992][0.559183,0.628118,-0.0367051][1.47042,-1.58846,-1.06832][0.657208,-0.58801,-0.47151][0.542017,0.606153,0.0301077][1.72858,-1.58846,-0.561648][0.770746,-0.58801,-0.245344][0.518104,0.606153,-0.221306][1.72858,-1.58846,-0.561648][0.770746,-0.58801,-0.245344][0.518104,0.606153,-0.221306][1.51071,-1.81753,-0.49086][0.560855,-0.809168,-0.17518][0.538285,0.628118,-0.256431][1.28509,-1.81753,-0.933671][0.479272,-0.809168,-0.33992][0.559183,0.628118,-0.0367051][0.933673,-1.81753,-1.28509][0.350773,-0.809168,-0.471386][0.591734,0.628118,0.137671][1.06832,-1.58846,-1.47041][0.479337,-0.58801,-0.651521][0.579262,0.606153,0.229631][1.47042,-1.58846,-1.06832][0.657208,-0.58801,-0.47151][0.542017,0.606153,0.0301077][1.47042,-1.58846,-1.06832][0.657208,-0.58801,-0.47151][0.542017,0.606153,0.0301077][1.28509,-1.81753,-0.933671][0.479272,-0.809168,-0.33992][0.559183,0.628118,-0.0367051][0.933673,-1.81753,-1.28509][0.350773,-0.809168,-0.471386][0.591734,0.628118,0.137671][0.490862,-1.81753,-1.51071][0.187939,-0.809168,-0.556709][0.632751,0.628118,0.249627][0.56165,-1.58846,-1.72858][0.254546,-0.58801,-0.767757][0.626194,0.606153,0.357732][1.06832,-1.58846,-1.47041][0.479337,-0.58801,-0.651521][0.579262,0.606153,0.229631][1.06832,-1.58846,-1.47041][0.479337,-0.58801,-0.651521][0.579262,0.606153,0.229631][0.933673,-1.81753,-1.28509][0.350773,-0.809168,-0.471386][0.591734,0.628118,0.137671][0.490862,-1.81753,-1.51071][0.187939,-0.809168,-0.556709][0.632751,0.628118,0.249627][1.43051e-006,-1.81753,-1.58846][0.00670801,-0.809168,-0.587539][0.678218,0.628118,0.288204][1.43051e-006,-1.58846,-1.81753][0.00483731,-0.58801,-0.808839][0.678218,0.606153,0.401873][0.56165,-1.58846,-1.72858][0.254546,-0.58801,-0.767757][0.626194,0.606153,0.357732][0.56165,-1.58846,-1.72858][0.254546,-0.58801,-0.767757][0.626194,0.606153,0.357732][0.490862,-1.81753,-1.51071][0.187939,-0.809168,-0.556709][0.632751,0.628118,0.249627][1.43051e-006,-1.81753,-1.58846][0.00670801,-0.809168,-0.587539][0.678218,0.628118,0.288204][-0.490859,-1.81753,-1.51071][-0.17518,-0.809168,-0.560855][0.723685,0.628118,0.249627][-0.561647,-1.58846,-1.72857][-0.245344,-0.58801,-0.770746][0.730242,0.606153,0.357732][1.43051e-006,-1.58846,-1.81753][0.00483731,-0.58801,-0.808839][0.678218,0.606153,0.401873][1.43051e-006,-1.58846,-1.81753][0.00483731,-0.58801,-0.808839][0.678218,0.606153,0.401873][1.43051e-006,-1.81753,-1.58846][0.00670801,-0.809168,-0.587539][0.678218,0.628118,0.288204][-0.490859,-1.81753,-1.51071][-0.17518,-0.809168,-0.560855][0.723685,0.628118,0.249627][-0.93367,-1.81753,-1.28509][-0.33992,-0.809168,-0.479272][0.764701,0.628118,0.137671][-1.06832,-1.58846,-1.47041][-0.47151,-0.58801,-0.657208][0.777173,0.606153,0.229631][-0.561647,-1.58846,-1.72857][-0.245344,-0.58801,-0.770746][0.730242,0.606153,0.357732][-0.561647,-1.58846,-1.72857][-0.245344,-0.58801,-0.770746][0.730242,0.606153,0.357732][-0.490859,-1.81753,-1.51071][-0.17518,-0.809168,-0.560855][0.723685,0.628118,0.249627][-0.93367,-1.81753,-1.28509][-0.33992,-0.809168,-0.479272][0.764701,0.628118,0.137671][-1.28509,-1.81753,-0.933671][-0.471386,-0.809168,-0.350773][0.797252,0.628118,-0.0367053][-1.47041,-1.58846,-1.06832][-0.651521,-0.58801,-0.479337][0.814418,0.606153,0.0301076][-1.06832,-1.58846,-1.47041][-0.47151,-0.58801,-0.657208][0.777173,0.606153,0.229631][-1.06832,-1.58846,-1.47041][-0.47151,-0.58801,-0.657208][0.777173,0.606153,0.229631][-0.93367,-1.81753,-1.28509][-0.33992,-0.809168,-0.479272][0.764701,0.628118,0.137671][-1.28509,-1.81753,-0.933671][-0.471386,-0.809168,-0.350773][0.797252,0.628118,-0.0367053][-1.51071,-1.81753,-0.49086][-0.55671,-0.809168,-0.187939][0.818151,0.628118,-0.256432][-1.72857,-1.58846,-0.561648][-0.767757,-0.58801,-0.254546][0.838331,0.606153,-0.221306][-1.47041,-1.58846,-1.06832][-0.651521,-0.58801,-0.479337][0.814418,0.606153,0.0301076][-1.47041,-1.58846,-1.06832][-0.651521,-0.58801,-0.479337][0.814418,0.606153,0.0301076][-1.28509,-1.81753,-0.933671][-0.471386,-0.809168,-0.350773][0.797252,0.628118,-0.0367053][-1.51071,-1.81753,-0.49086][-0.55671,-0.809168,-0.187939][0.818151,0.628118,-0.256432][-1.58845,-1.81753,1.95375e-007][-0.587538,-0.809168,-0.00670802][0.825352,0.628118,-0.5][-1.81753,-1.58846,2.05389e-007][-0.808839,-0.58801,-0.00483735][0.846571,0.606153,-0.5][-1.72857,-1.58846,-0.561648][-0.767757,-0.58801,-0.254546][0.838331,0.606153,-0.221306][-1.72857,-1.58846,-0.561648][-0.767757,-0.58801,-0.254546][0.838331,0.606153,-0.221306][-1.51071,-1.81753,-0.49086][-0.55671,-0.809168,-0.187939][0.818151,0.628118,-0.256432][-1.58845,-1.81753,1.95375e-007][-0.587538,-0.809168,-0.00670802][0.825352,0.628118,-0.5][-1.51071,-1.81753,0.49086][-0.560855,-0.809168,0.17518][0.306764,0.786624,0.256431][-1.72857,-1.58846,0.561648][-0.770746,-0.58801,0.245344][0.29069,0.775264,0.221306][-1.81753,-1.58846,2.05389e-007][-0.808839,-0.58801,-0.00483735][0.29069,0.770626,0.5][-1.81753,-1.58846,2.05389e-007][-0.808839,-0.58801,-0.00483735][0.29069,0.770626,0.5][-1.58845,-1.81753,1.95375e-007][-0.587538,-0.809168,-0.00670802][0.306764,0.78257,0.5][-1.51071,-1.81753,0.49086][-0.560855,-0.809168,0.17518][0.306764,0.786624,0.256431][-1.28509,-1.81753,0.933672][-0.479272,-0.809168,0.33992][0.306764,0.798389,0.036705][-1.47041,-1.58846,1.06832][-0.657208,-0.58801,0.47151][0.29069,0.788725,-0.0301079][-1.72857,-1.58846,0.561648][-0.770746,-0.58801,0.245344][0.29069,0.775264,0.221306][-1.72857,-1.58846,0.561648][-0.770746,-0.58801,0.245344][0.29069,0.775264,0.221306][-1.51071,-1.81753,0.49086][-0.560855,-0.809168,0.17518][0.306764,0.786624,0.256431][-1.28509,-1.81753,0.933672][-0.479272,-0.809168,0.33992][0.306764,0.798389,0.036705][-0.93367,-1.81753,1.28509][-0.350773,-0.809168,0.471386][0.306764,0.816713,-0.137671][-1.06832,-1.58846,1.47041][-0.479337,-0.58801,0.651521][0.29069,0.809692,-0.229631][-1.47041,-1.58846,1.06832][-0.657208,-0.58801,0.47151][0.29069,0.788725,-0.0301079][-1.47041,-1.58846,1.06832][-0.657208,-0.58801,0.47151][0.29069,0.788725,-0.0301079][-1.28509,-1.81753,0.933672][-0.479272,-0.809168,0.33992][0.306764,0.798389,0.036705][-0.93367,-1.81753,1.28509][-0.350773,-0.809168,0.471386][0.306764,0.816713,-0.137671][-0.490858,-1.81753,1.51071][-0.187939,-0.809168,0.55671][0.306764,0.839802,-0.249627][-0.561646,-1.58846,1.72858][-0.254546,-0.58801,0.767757][0.29069,0.836111,-0.357732][-1.06832,-1.58846,1.47041][-0.479337,-0.58801,0.651521][0.29069,0.809692,-0.229631][-1.06832,-1.58846,1.47041][-0.479337,-0.58801,0.651521][0.29069,0.809692,-0.229631][-0.93367,-1.81753,1.28509][-0.350773,-0.809168,0.471386][0.306764,0.816713,-0.137671][-0.490858,-1.81753,1.51071][-0.187939,-0.809168,0.55671][0.306764,0.839802,-0.249627][1.78814e-006,-1.81753,1.58846][-0.00670801,-0.809168,0.587539][0.306764,0.865397,-0.288204][1.78814e-006,-1.58846,1.81753][-0.00483737,-0.58801,0.808839][0.29069,0.865397,-0.401873][-0.561646,-1.58846,1.72858][-0.254546,-0.58801,0.767757][0.29069,0.836111,-0.357732][-0.561646,-1.58846,1.72858][-0.254546,-0.58801,0.767757][0.29069,0.836111,-0.357732][-0.490858,-1.81753,1.51071][-0.187939,-0.809168,0.55671][0.306764,0.839802,-0.249627][1.78814e-006,-1.81753,1.58846][-0.00670801,-0.809168,0.587539][0.306764,0.865397,-0.288204][0.490862,-1.81753,1.51071][0.17518,-0.809168,0.560855][0.306764,0.890991,-0.249627][0.56165,-1.58846,1.72858][0.245344,-0.58801,0.770746][0.29069,0.894682,-0.357732][1.78814e-006,-1.58846,1.81753][-0.00483737,-0.58801,0.808839][0.29069,0.865397,-0.401873][1.78814e-006,-1.58846,1.81753][-0.00483737,-0.58801,0.808839][0.29069,0.865397,-0.401873][1.78814e-006,-1.81753,1.58846][-0.00670801,-0.809168,0.587539][0.306764,0.865397,-0.288204][0.490862,-1.81753,1.51071][0.17518,-0.809168,0.560855][0.306764,0.890991,-0.249627][0.933673,-1.81753,1.28509][0.33992,-0.809168,0.479272][0.306764,0.914081,-0.13767][1.06832,-1.58846,1.47041][0.47151,-0.58801,0.657208][0.29069,0.921102,-0.22963][0.56165,-1.58846,1.72858][0.245344,-0.58801,0.770746][0.29069,0.894682,-0.357732][0.56165,-1.58846,1.72858][0.245344,-0.58801,0.770746][0.29069,0.894682,-0.357732][0.490862,-1.81753,1.51071][0.17518,-0.809168,0.560855][0.306764,0.890991,-0.249627][0.933673,-1.81753,1.28509][0.33992,-0.809168,0.479272][0.306764,0.914081,-0.13767][1.28509,-1.81753,0.933671][0.471386,-0.809168,0.350773][0.306764,0.932405,0.0367053][1.47042,-1.58846,1.06832][0.651521,-0.58801,0.479337][0.29069,0.942068,-0.0301075][1.06832,-1.58846,1.47041][0.47151,-0.58801,0.657208][0.29069,0.921102,-0.22963][1.06832,-1.58846,1.47041][0.47151,-0.58801,0.657208][0.29069,0.921102,-0.22963][0.933673,-1.81753,1.28509][0.33992,-0.809168,0.479272][0.306764,0.914081,-0.13767][1.28509,-1.81753,0.933671][0.471386,-0.809168,0.350773][0.306764,0.932405,0.0367053][1.51071,-1.81753,0.49086][0.556709,-0.809168,0.187939][0.306764,0.944169,0.256432][1.72858,-1.58846,0.561648][0.767757,-0.58801,0.254546][0.29069,0.955529,0.221306][1.47042,-1.58846,1.06832][0.651521,-0.58801,0.479337][0.29069,0.942068,-0.0301075][1.47042,-1.58846,1.06832][0.651521,-0.58801,0.479337][0.29069,0.942068,-0.0301075][1.28509,-1.81753,0.933671][0.471386,-0.809168,0.350773][0.306764,0.932405,0.0367053][1.51071,-1.81753,0.49086][0.556709,-0.809168,0.187939][0.306764,0.944169,0.256432][1.58846,-1.81753,0][0.587539,-0.809168,0.00670802][0.306764,0.948223,0.5][1.81753,-1.58846,0][0.808839,-0.58801,0.00483746][0.29069,0.960167,0.5][1.72858,-1.58846,0.561648][0.767757,-0.58801,0.254546][0.29069,0.955529,0.221306][1.72858,-1.58846,0.561648][0.767757,-0.58801,0.254546][0.29069,0.955529,0.221306][1.51071,-1.81753,0.49086][0.556709,-0.809168,0.187939][0.306764,0.944169,0.256432][1.58846,-1.81753,0][0.587539,-0.809168,0.00670802][0.306764,0.948223,0.5][1.23619,-1.96461,-0.401662][0.296172,-0.951082,-0.08789][0.563713,0.64222,-0.300692][1.51071,-1.81753,-0.49086][0.560855,-0.809168,-0.17518][0.538285,0.628118,-0.256431][1.58846,-1.81753,0][0.587539,-0.809168,0.00670802][0.531083,0.628118,-0.5][1.58846,-1.81753,0][0.587539,-0.809168,0.00670802][0.531083,0.628118,-0.5][1.29981,-1.96461,0][0.308836,-0.951082,0.00793392][0.55782,0.64222,-0.5][1.23619,-1.96461,-0.401662][0.296172,-0.951082,-0.08789][0.563713,0.64222,-0.300692][1.05157,-1.96461,-0.764006][0.254517,-0.951082,-0.175111][0.580814,0.64222,-0.120894][1.28509,-1.81753,-0.933671][0.479272,-0.809168,-0.33992][0.559183,0.628118,-0.0367051][1.51071,-1.81753,-0.49086][0.560855,-0.809168,-0.17518][0.538285,0.628118,-0.256431][1.51071,-1.81753,-0.49086][0.560855,-0.809168,-0.17518][0.538285,0.628118,-0.256431][1.23619,-1.96461,-0.401662][0.296172,-0.951082,-0.08789][0.563713,0.64222,-0.300692][1.05157,-1.96461,-0.764006][0.254517,-0.951082,-0.175111][0.580814,0.64222,-0.120894][0.764008,-1.96461,-1.05156][0.187948,-0.951082,-0.24519][0.60745,0.64222,0.0217943][0.933673,-1.81753,-1.28509][0.350773,-0.809168,-0.471386][0.591734,0.628118,0.137671][1.28509,-1.81753,-0.933671][0.479272,-0.809168,-0.33992][0.559183,0.628118,-0.0367051][1.28509,-1.81753,-0.933671][0.479272,-0.809168,-0.33992][0.559183,0.628118,-0.0367051][1.05157,-1.96461,-0.764006][0.254517,-0.951082,-0.175111][0.580814,0.64222,-0.120894][0.764008,-1.96461,-1.05156][0.187948,-0.951082,-0.24519][0.60745,0.64222,0.0217943][0.401663,-1.96461,-1.23619][0.102981,-0.951082,-0.291269][0.641013,0.64222,0.113406][0.490862,-1.81753,-1.51071][0.187939,-0.809168,-0.556709][0.632751,0.628118,0.249627][0.933673,-1.81753,-1.28509][0.350773,-0.809168,-0.471386][0.591734,0.628118,0.137671][0.933673,-1.81753,-1.28509][0.350773,-0.809168,-0.471386][0.591734,0.628118,0.137671][0.764008,-1.96461,-1.05156][0.187948,-0.951082,-0.24519][0.60745,0.64222,0.0217943][0.401663,-1.96461,-1.23619][0.102981,-0.951082,-0.291269][0.641013,0.64222,0.113406][1.43051e-006,-1.96461,-1.2998][0.00793389,-0.951082,-0.308836][0.678218,0.64222,0.144973][1.43051e-006,-1.81753,-1.58846][0.00670801,-0.809168,-0.587539][0.678218,0.628118,0.288204][0.490862,-1.81753,-1.51071][0.187939,-0.809168,-0.556709][0.632751,0.628118,0.249627][0.490862,-1.81753,-1.51071][0.187939,-0.809168,-0.556709][0.632751,0.628118,0.249627][0.401663,-1.96461,-1.23619][0.102981,-0.951082,-0.291269][0.641013,0.64222,0.113406][1.43051e-006,-1.96461,-1.2998][0.00793389,-0.951082,-0.308836][0.678218,0.64222,0.144973][-0.40166,-1.96461,-1.23619][-0.08789,-0.951082,-0.296172][0.715423,0.64222,0.113406][-0.490859,-1.81753,-1.51071][-0.17518,-0.809168,-0.560855][0.723685,0.628118,0.249627][1.43051e-006,-1.81753,-1.58846][0.00670801,-0.809168,-0.587539][0.678218,0.628118,0.288204][1.43051e-006,-1.81753,-1.58846][0.00670801,-0.809168,-0.587539][0.678218,0.628118,0.288204][1.43051e-006,-1.96461,-1.2998][0.00793389,-0.951082,-0.308836][0.678218,0.64222,0.144973][-0.40166,-1.96461,-1.23619][-0.08789,-0.951082,-0.296172][0.715423,0.64222,0.113406][-0.764005,-1.96461,-1.05156][-0.175111,-0.951082,-0.254517][0.748986,0.64222,0.0217943][-0.93367,-1.81753,-1.28509][-0.33992,-0.809168,-0.479272][0.764701,0.628118,0.137671][-0.490859,-1.81753,-1.51071][-0.17518,-0.809168,-0.560855][0.723685,0.628118,0.249627][-0.490859,-1.81753,-1.51071][-0.17518,-0.809168,-0.560855][0.723685,0.628118,0.249627][-0.40166,-1.96461,-1.23619][-0.08789,-0.951082,-0.296172][0.715423,0.64222,0.113406][-0.764005,-1.96461,-1.05156][-0.175111,-0.951082,-0.254517][0.748986,0.64222,0.0217943][-1.05156,-1.96461,-0.764006][-0.24519,-0.951082,-0.187948][0.775621,0.64222,-0.120894][-1.28509,-1.81753,-0.933671][-0.471386,-0.809168,-0.350773][0.797252,0.628118,-0.0367053][-0.93367,-1.81753,-1.28509][-0.33992,-0.809168,-0.479272][0.764701,0.628118,0.137671][-0.93367,-1.81753,-1.28509][-0.33992,-0.809168,-0.479272][0.764701,0.628118,0.137671][-0.764005,-1.96461,-1.05156][-0.175111,-0.951082,-0.254517][0.748986,0.64222,0.0217943][-1.05156,-1.96461,-0.764006][-0.24519,-0.951082,-0.187948][0.775621,0.64222,-0.120894][-1.23619,-1.96461,-0.401662][-0.291269,-0.951082,-0.102981][0.792722,0.64222,-0.300692][-1.51071,-1.81753,-0.49086][-0.55671,-0.809168,-0.187939][0.818151,0.628118,-0.256432][-1.28509,-1.81753,-0.933671][-0.471386,-0.809168,-0.350773][0.797252,0.628118,-0.0367053][-1.28509,-1.81753,-0.933671][-0.471386,-0.809168,-0.350773][0.797252,0.628118,-0.0367053][-1.05156,-1.96461,-0.764006][-0.24519,-0.951082,-0.187948][0.775621,0.64222,-0.120894][-1.23619,-1.96461,-0.401662][-0.291269,-0.951082,-0.102981][0.792722,0.64222,-0.300692][-1.2998,-1.96461,1.7657e-007][-0.308836,-0.951082,-0.0079339][0.798615,0.64222,-0.5][-1.58845,-1.81753,1.95375e-007][-0.587538,-0.809168,-0.00670802][0.825352,0.628118,-0.5][-1.51071,-1.81753,-0.49086][-0.55671,-0.809168,-0.187939][0.818151,0.628118,-0.256432][-1.51071,-1.81753,-0.49086][-0.55671,-0.809168,-0.187939][0.818151,0.628118,-0.256432][-1.23619,-1.96461,-0.401662][-0.291269,-0.951082,-0.102981][0.792722,0.64222,-0.300692][-1.2998,-1.96461,1.7657e-007][-0.308836,-0.951082,-0.0079339][0.798615,0.64222,-0.5][-1.23619,-1.96461,0.401662][-0.296172,-0.951082,0.08789][0.317085,0.800939,0.300692][-1.51071,-1.81753,0.49086][-0.560855,-0.809168,0.17518][0.306764,0.786624,0.256431][-1.58845,-1.81753,1.95375e-007][-0.587538,-0.809168,-0.00670802][0.306764,0.78257,0.5][-1.58845,-1.81753,1.95375e-007][-0.587538,-0.809168,-0.00670802][0.306764,0.78257,0.5][-1.2998,-1.96461,1.7657e-007][-0.308836,-0.951082,-0.0079339][0.317085,0.797621,0.5][-1.23619,-1.96461,0.401662][-0.296172,-0.951082,0.08789][0.317085,0.800939,0.300692][-1.05156,-1.96461,0.764006][-0.254517,-0.951082,0.175111][0.317085,0.810565,0.120894][-1.28509,-1.81753,0.933672][-0.479272,-0.809168,0.33992][0.306764,0.798389,0.036705][-1.51071,-1.81753,0.49086][-0.560855,-0.809168,0.17518][0.306764,0.786624,0.256431][-1.51071,-1.81753,0.49086][-0.560855,-0.809168,0.17518][0.306764,0.786624,0.256431][-1.23619,-1.96461,0.401662][-0.296172,-0.951082,0.08789][0.317085,0.800939,0.300692][-1.05156,-1.96461,0.764006][-0.254517,-0.951082,0.175111][0.317085,0.810565,0.120894][-0.764005,-1.96461,1.05156][-0.187948,-0.951082,0.24519][0.317085,0.825559,-0.0217943][-0.93367,-1.81753,1.28509][-0.350773,-0.809168,0.471386][0.306764,0.816713,-0.137671][-1.28509,-1.81753,0.933672][-0.479272,-0.809168,0.33992][0.306764,0.798389,0.036705][-1.28509,-1.81753,0.933672][-0.479272,-0.809168,0.33992][0.306764,0.798389,0.036705][-1.05156,-1.96461,0.764006][-0.254517,-0.951082,0.175111][0.317085,0.810565,0.120894][-0.764005,-1.96461,1.05156][-0.187948,-0.951082,0.24519][0.317085,0.825559,-0.0217943][-0.40166,-1.96461,1.23619][-0.102981,-0.951082,0.291269][0.317085,0.844453,-0.113406][-0.490858,-1.81753,1.51071][-0.187939,-0.809168,0.55671][0.306764,0.839802,-0.249627][-0.93367,-1.81753,1.28509][-0.350773,-0.809168,0.471386][0.306764,0.816713,-0.137671][-0.93367,-1.81753,1.28509][-0.350773,-0.809168,0.471386][0.306764,0.816713,-0.137671][-0.764005,-1.96461,1.05156][-0.187948,-0.951082,0.24519][0.317085,0.825559,-0.0217943][-0.40166,-1.96461,1.23619][-0.102981,-0.951082,0.291269][0.317085,0.844453,-0.113406][1.78814e-006,-1.96461,1.29981][-0.00793389,-0.951082,0.308836][0.317085,0.865397,-0.144973][1.78814e-006,-1.81753,1.58846][-0.00670801,-0.809168,0.587539][0.306764,0.865397,-0.288204][-0.490858,-1.81753,1.51071][-0.187939,-0.809168,0.55671][0.306764,0.839802,-0.249627][-0.490858,-1.81753,1.51071][-0.187939,-0.809168,0.55671][0.306764,0.839802,-0.249627][-0.40166,-1.96461,1.23619][-0.102981,-0.951082,0.291269][0.317085,0.844453,-0.113406][1.78814e-006,-1.96461,1.29981][-0.00793389,-0.951082,0.308836][0.317085,0.865397,-0.144973][0.401663,-1.96461,1.23619][0.0878901,-0.951082,0.296172][0.317085,0.88634,-0.113406][0.490862,-1.81753,1.51071][0.17518,-0.809168,0.560855][0.306764,0.890991,-0.249627][1.78814e-006,-1.81753,1.58846][-0.00670801,-0.809168,0.587539][0.306764,0.865397,-0.288204][1.78814e-006,-1.81753,1.58846][-0.00670801,-0.809168,0.587539][0.306764,0.865397,-0.288204][1.78814e-006,-1.96461,1.29981][-0.00793389,-0.951082,0.308836][0.317085,0.865397,-0.144973][0.401663,-1.96461,1.23619][0.0878901,-0.951082,0.296172][0.317085,0.88634,-0.113406][0.764008,-1.96461,1.05156][0.175111,-0.951082,0.254517][0.317085,0.905234,-0.0217941][0.933673,-1.81753,1.28509][0.33992,-0.809168,0.479272][0.306764,0.914081,-0.13767][0.490862,-1.81753,1.51071][0.17518,-0.809168,0.560855][0.306764,0.890991,-0.249627][0.490862,-1.81753,1.51071][0.17518,-0.809168,0.560855][0.306764,0.890991,-0.249627][0.401663,-1.96461,1.23619][0.0878901,-0.951082,0.296172][0.317085,0.88634,-0.113406][0.764008,-1.96461,1.05156][0.175111,-0.951082,0.254517][0.317085,0.905234,-0.0217941][1.05157,-1.96461,0.764006][0.24519,-0.951082,0.187948][0.317085,0.920228,0.120894][1.28509,-1.81753,0.933671][0.471386,-0.809168,0.350773][0.306764,0.932405,0.0367053][0.933673,-1.81753,1.28509][0.33992,-0.809168,0.479272][0.306764,0.914081,-0.13767][0.933673,-1.81753,1.28509][0.33992,-0.809168,0.479272][0.306764,0.914081,-0.13767][0.764008,-1.96461,1.05156][0.175111,-0.951082,0.254517][0.317085,0.905234,-0.0217941][1.05157,-1.96461,0.764006][0.24519,-0.951082,0.187948][0.317085,0.920228,0.120894][1.23619,-1.96461,0.401662][0.291269,-0.951082,0.102981][0.317085,0.929855,0.300692][1.51071,-1.81753,0.49086][0.556709,-0.809168,0.187939][0.306764,0.944169,0.256432][1.28509,-1.81753,0.933671][0.471386,-0.809168,0.350773][0.306764,0.932405,0.0367053][1.28509,-1.81753,0.933671][0.471386,-0.809168,0.350773][0.306764,0.932405,0.0367053][1.05157,-1.96461,0.764006][0.24519,-0.951082,0.187948][0.317085,0.920228,0.120894][1.23619,-1.96461,0.401662][0.291269,-0.951082,0.102981][0.317085,0.929855,0.300692][1.29981,-1.96461,0][0.308836,-0.951082,0.00793392][0.317085,0.933172,0.5][1.58846,-1.81753,0][0.587539,-0.809168,0.00670802][0.306764,0.948223,0.5][1.51071,-1.81753,0.49086][0.556709,-0.809168,0.187939][0.306764,0.944169,0.256432][1.51071,-1.81753,0.49086][0.556709,-0.809168,0.187939][0.306764,0.944169,0.256432][1.23619,-1.96461,0.401662][0.291269,-0.951082,0.102981][0.317085,0.929855,0.300692][1.29981,-1.96461,0][0.308836,-0.951082,0.00793392][0.317085,0.933172,0.5][0.931877,-2.01529,-0.302785][0.0910546,-0.995548,-0.0243603][0.591901,0.64708,-0.349756][1.23619,-1.96461,-0.401662][0.296172,-0.951082,-0.08789][0.563713,0.64222,-0.300692][1.29981,-1.96461,0][0.308836,-0.951082,0.00793392][0.55782,0.64222,-0.5][1.29981,-1.96461,0][0.308836,-0.951082,0.00793392][0.55782,0.64222,-0.5][0.979834,-2.01529,0][0.0941258,-0.995548,0.00496936][0.587458,0.64708,-0.5][0.931877,-2.01529,-0.302785][0.0910546,-0.995548,-0.0243603][0.591901,0.64708,-0.349756][0.792703,-2.01529,-0.575931][0.0790703,-0.995548,-0.0513054][0.604792,0.64708,-0.214219][1.05157,-1.96461,-0.764006][0.254517,-0.951082,-0.175111][0.580814,0.64222,-0.120894][1.23619,-1.96461,-0.401662][0.296172,-0.951082,-0.08789][0.563713,0.64222,-0.300692][1.23619,-1.96461,-0.401662][0.296172,-0.951082,-0.08789][0.563713,0.64222,-0.300692][0.931877,-2.01529,-0.302785][0.0910546,-0.995548,-0.0243603][0.591901,0.64708,-0.349756][0.792703,-2.01529,-0.575931][0.0790703,-0.995548,-0.0513054][0.604792,0.64708,-0.214219][0.575933,-2.01529,-0.792701][0.059346,-0.995548,-0.0732284][0.624871,0.64708,-0.106656][0.764008,-1.96461,-1.05156][0.187948,-0.951082,-0.24519][0.60745,0.64222,0.0217943][1.05157,-1.96461,-0.764006][0.254517,-0.951082,-0.175111][0.580814,0.64222,-0.120894][1.05157,-1.96461,-0.764006][0.254517,-0.951082,-0.175111][0.580814,0.64222,-0.120894][0.792703,-2.01529,-0.575931][0.0790703,-0.995548,-0.0513054][0.604792,0.64708,-0.214219][0.575933,-2.01529,-0.792701][0.059346,-0.995548,-0.0732284][0.624871,0.64708,-0.106656][0.302786,-2.01529,-0.931876][0.0338126,-0.995548,-0.0879833][0.650172,0.64708,-0.037596][0.401663,-1.96461,-1.23619][0.102981,-0.951082,-0.291269][0.641013,0.64222,0.113406][0.764008,-1.96461,-1.05156][0.187948,-0.951082,-0.24519][0.60745,0.64222,0.0217943][0.764008,-1.96461,-1.05156][0.187948,-0.951082,-0.24519][0.60745,0.64222,0.0217943][0.575933,-2.01529,-0.792701][0.059346,-0.995548,-0.0732284][0.624871,0.64708,-0.106656][0.302786,-2.01529,-0.931876][0.0338126,-0.995548,-0.0879833][0.650172,0.64708,-0.037596][1.54972e-006,-2.01529,-0.979832][0.00496935,-0.995548,-0.0941258][0.678218,0.64708,-0.0137997][1.43051e-006,-1.96461,-1.2998][0.00793389,-0.951082,-0.308836][0.678218,0.64222,0.144973][0.401663,-1.96461,-1.23619][0.102981,-0.951082,-0.291269][0.641013,0.64222,0.113406][0.401663,-1.96461,-1.23619][0.102981,-0.951082,-0.291269][0.641013,0.64222,0.113406][0.302786,-2.01529,-0.931876][0.0338126,-0.995548,-0.0879833][0.650172,0.64708,-0.037596][1.54972e-006,-2.01529,-0.979832][0.00496935,-0.995548,-0.0941258][0.678218,0.64708,-0.0137997][-0.302783,-2.01529,-0.931876][-0.0243604,-0.995548,-0.0910546][0.706264,0.64708,-0.037596][-0.40166,-1.96461,-1.23619][-0.08789,-0.951082,-0.296172][0.715423,0.64222,0.113406][1.43051e-006,-1.96461,-1.2998][0.00793389,-0.951082,-0.308836][0.678218,0.64222,0.144973][1.43051e-006,-1.96461,-1.2998][0.00793389,-0.951082,-0.308836][0.678218,0.64222,0.144973][1.54972e-006,-2.01529,-0.979832][0.00496935,-0.995548,-0.0941258][0.678218,0.64708,-0.0137997][-0.302783,-2.01529,-0.931876][-0.0243604,-0.995548,-0.0910546][0.706264,0.64708,-0.037596][-0.575929,-2.01529,-0.792701][-0.0513055,-0.995548,-0.0790703][0.731565,0.64708,-0.106656][-0.764005,-1.96461,-1.05156][-0.175111,-0.951082,-0.254517][0.748986,0.64222,0.0217943][-0.40166,-1.96461,-1.23619][-0.08789,-0.951082,-0.296172][0.715423,0.64222,0.113406][-0.40166,-1.96461,-1.23619][-0.08789,-0.951082,-0.296172][0.715423,0.64222,0.113406][-0.302783,-2.01529,-0.931876][-0.0243604,-0.995548,-0.0910546][0.706264,0.64708,-0.037596][-0.575929,-2.01529,-0.792701][-0.0513055,-0.995548,-0.0790703][0.731565,0.64708,-0.106656][-0.7927,-2.01529,-0.575931][-0.0732284,-0.995548,-0.059346][0.751644,0.64708,-0.214219][-1.05156,-1.96461,-0.764006][-0.24519,-0.951082,-0.187948][0.775621,0.64222,-0.120894][-0.764005,-1.96461,-1.05156][-0.175111,-0.951082,-0.254517][0.748986,0.64222,0.0217943][-0.764005,-1.96461,-1.05156][-0.175111,-0.951082,-0.254517][0.748986,0.64222,0.0217943][-0.575929,-2.01529,-0.792701][-0.0513055,-0.995548,-0.0790703][0.731565,0.64708,-0.106656][-0.7927,-2.01529,-0.575931][-0.0732284,-0.995548,-0.059346][0.751644,0.64708,-0.214219][-0.931874,-2.01529,-0.302785][-0.0879833,-0.995548,-0.0338126][0.764535,0.64708,-0.349756][-1.23619,-1.96461,-0.401662][-0.291269,-0.951082,-0.102981][0.792722,0.64222,-0.300692][-1.05156,-1.96461,-0.764006][-0.24519,-0.951082,-0.187948][0.775621,0.64222,-0.120894][-1.05156,-1.96461,-0.764006][-0.24519,-0.951082,-0.187948][0.775621,0.64222,-0.120894][-0.7927,-2.01529,-0.575931][-0.0732284,-0.995548,-0.059346][0.751644,0.64708,-0.214219][-0.931874,-2.01529,-0.302785][-0.0879833,-0.995548,-0.0338126][0.764535,0.64708,-0.349756][-0.979831,-2.01529,1.50812e-007][-0.0941258,-0.995548,-0.00496935][0.768977,0.64708,-0.5][-1.2998,-1.96461,1.7657e-007][-0.308836,-0.951082,-0.0079339][0.798615,0.64222,-0.5][-1.23619,-1.96461,-0.401662][-0.291269,-0.951082,-0.102981][0.792722,0.64222,-0.300692][-1.23619,-1.96461,-0.401662][-0.291269,-0.951082,-0.102981][0.792722,0.64222,-0.300692][-0.931874,-2.01529,-0.302785][-0.0879833,-0.995548,-0.0338126][0.764535,0.64708,-0.349756][-0.979831,-2.01529,1.50812e-007][-0.0941258,-0.995548,-0.00496935][0.768977,0.64708,-0.5][-0.931874,-2.01529,0.302785][-0.0910545,-0.995548,0.0243603][0.320641,0.816806,0.349756][-1.23619,-1.96461,0.401662][-0.296172,-0.951082,0.08789][0.317085,0.800939,0.300692][-1.2998,-1.96461,1.7657e-007][-0.308836,-0.951082,-0.0079339][0.317085,0.797621,0.5][-1.2998,-1.96461,1.7657e-007][-0.308836,-0.951082,-0.0079339][0.317085,0.797621,0.5][-0.979831,-2.01529,1.50812e-007][-0.0941258,-0.995548,-0.00496935][0.320641,0.814306,0.5][-0.931874,-2.01529,0.302785][-0.0910545,-0.995548,0.0243603][0.320641,0.816806,0.349756][-0.792699,-2.01529,0.575931][-0.0790702,-0.995548,0.0513054][0.320641,0.824063,0.214218][-1.05156,-1.96461,0.764006][-0.254517,-0.951082,0.175111][0.317085,0.810565,0.120894][-1.23619,-1.96461,0.401662][-0.296172,-0.951082,0.08789][0.317085,0.800939,0.300692][-1.23619,-1.96461,0.401662][-0.296172,-0.951082,0.08789][0.317085,0.800939,0.300692][-0.931874,-2.01529,0.302785][-0.0910545,-0.995548,0.0243603][0.320641,0.816806,0.349756][-0.792699,-2.01529,0.575931][-0.0790702,-0.995548,0.0513054][0.320641,0.824063,0.214218][-0.575929,-2.01529,0.792701][-0.059346,-0.995548,0.0732284][0.320641,0.835366,0.106656][-0.764005,-1.96461,1.05156][-0.187948,-0.951082,0.24519][0.317085,0.825559,-0.0217943][-1.05156,-1.96461,0.764006][-0.254517,-0.951082,0.175111][0.317085,0.810565,0.120894][-1.05156,-1.96461,0.764006][-0.254517,-0.951082,0.175111][0.317085,0.810565,0.120894][-0.792699,-2.01529,0.575931][-0.0790702,-0.995548,0.0513054][0.320641,0.824063,0.214218][-0.575929,-2.01529,0.792701][-0.059346,-0.995548,0.0732284][0.320641,0.835366,0.106656][-0.302783,-2.01529,0.931876][-0.0338126,-0.995548,0.0879833][0.320641,0.849609,0.037596][-0.40166,-1.96461,1.23619][-0.102981,-0.951082,0.291269][0.317085,0.844453,-0.113406][-0.764005,-1.96461,1.05156][-0.187948,-0.951082,0.24519][0.317085,0.825559,-0.0217943][-0.764005,-1.96461,1.05156][-0.187948,-0.951082,0.24519][0.317085,0.825559,-0.0217943][-0.575929,-2.01529,0.792701][-0.059346,-0.995548,0.0732284][0.320641,0.835366,0.106656][-0.302783,-2.01529,0.931876][-0.0338126,-0.995548,0.0879833][0.320641,0.849609,0.037596][1.66893e-006,-2.01529,0.979832][-0.00496935,-0.995548,0.0941257][0.320641,0.865397,0.0137997][1.78814e-006,-1.96461,1.29981][-0.00793389,-0.951082,0.308836][0.317085,0.865397,-0.144973][-0.40166,-1.96461,1.23619][-0.102981,-0.951082,0.291269][0.317085,0.844453,-0.113406][-0.40166,-1.96461,1.23619][-0.102981,-0.951082,0.291269][0.317085,0.844453,-0.113406][-0.302783,-2.01529,0.931876][-0.0338126,-0.995548,0.0879833][0.320641,0.849609,0.037596][1.66893e-006,-2.01529,0.979832][-0.00496935,-0.995548,0.0941257][0.320641,0.865397,0.0137997][0.302786,-2.01529,0.931876][0.0243603,-0.995548,0.0910545][0.320641,0.881185,0.037596][0.401663,-1.96461,1.23619][0.0878901,-0.951082,0.296172][0.317085,0.88634,-0.113406][1.78814e-006,-1.96461,1.29981][-0.00793389,-0.951082,0.308836][0.317085,0.865397,-0.144973][1.78814e-006,-1.96461,1.29981][-0.00793389,-0.951082,0.308836][0.317085,0.865397,-0.144973][1.66893e-006,-2.01529,0.979832][-0.00496935,-0.995548,0.0941257][0.320641,0.865397,0.0137997][0.302786,-2.01529,0.931876][0.0243603,-0.995548,0.0910545][0.320641,0.881185,0.037596][0.575933,-2.01529,0.792701][0.0513055,-0.995548,0.0790702][0.320641,0.895427,0.106656][0.764008,-1.96461,1.05156][0.175111,-0.951082,0.254517][0.317085,0.905234,-0.0217941][0.401663,-1.96461,1.23619][0.0878901,-0.951082,0.296172][0.317085,0.88634,-0.113406][0.401663,-1.96461,1.23619][0.0878901,-0.951082,0.296172][0.317085,0.88634,-0.113406][0.302786,-2.01529,0.931876][0.0243603,-0.995548,0.0910545][0.320641,0.881185,0.037596][0.575933,-2.01529,0.792701][0.0513055,-0.995548,0.0790702][0.320641,0.895427,0.106656][0.792703,-2.01529,0.575931][0.0732284,-0.995548,0.059346][0.320641,0.90673,0.214219][1.05157,-1.96461,0.764006][0.24519,-0.951082,0.187948][0.317085,0.920228,0.120894][0.764008,-1.96461,1.05156][0.175111,-0.951082,0.254517][0.317085,0.905234,-0.0217941][0.764008,-1.96461,1.05156][0.175111,-0.951082,0.254517][0.317085,0.905234,-0.0217941][0.575933,-2.01529,0.792701][0.0513055,-0.995548,0.0790702][0.320641,0.895427,0.106656][0.792703,-2.01529,0.575931][0.0732284,-0.995548,0.059346][0.320641,0.90673,0.214219][0.931877,-2.01529,0.302785][0.0879834,-0.995548,0.0338126][0.320641,0.913987,0.349756][1.23619,-1.96461,0.401662][0.291269,-0.951082,0.102981][0.317085,0.929855,0.300692][1.05157,-1.96461,0.764006][0.24519,-0.951082,0.187948][0.317085,0.920228,0.120894][1.05157,-1.96461,0.764006][0.24519,-0.951082,0.187948][0.317085,0.920228,0.120894][0.792703,-2.01529,0.575931][0.0732284,-0.995548,0.059346][0.320641,0.90673,0.214219][0.931877,-2.01529,0.302785][0.0879834,-0.995548,0.0338126][0.320641,0.913987,0.349756][0.979834,-2.01529,0][0.0941258,-0.995548,0.00496936][0.320641,0.916488,0.5][1.29981,-1.96461,0][0.308836,-0.951082,0.00793392][0.317085,0.933172,0.5][1.23619,-1.96461,0.401662][0.291269,-0.951082,0.102981][0.317085,0.929855,0.300692][1.23619,-1.96461,0.401662][0.291269,-0.951082,0.102981][0.317085,0.929855,0.300692][0.931877,-2.01529,0.302785][0.0879834,-0.995548,0.0338126][0.320641,0.913987,0.349756][0.979834,-2.01529,0][0.0941258,-0.995548,0.00496936][0.320641,0.916488,0.5][0.979834,-2.01529,0][0.0941258,-0.995548,0.00496936][0.587458,0.64708,-0.5][1.54972e-006,-2.01529,0][0,-1,0][0.678218,0.64708,-0.5][0.931877,-2.01529,-0.302785][0.0910546,-0.995548,-0.0243603][0.591901,0.64708,-0.349756][0.931877,-2.01529,-0.302785][0.0910546,-0.995548,-0.0243603][0.591901,0.64708,-0.349756][1.54972e-006,-2.01529,0][0,-1,0][0.678218,0.64708,-0.5][0.792703,-2.01529,-0.575931][0.0790703,-0.995548,-0.0513054][0.604792,0.64708,-0.214219][0.792703,-2.01529,-0.575931][0.0790703,-0.995548,-0.0513054][0.604792,0.64708,-0.214219][1.54972e-006,-2.01529,0][0,-1,0][0.678218,0.64708,-0.5][0.575933,-2.01529,-0.792701][0.059346,-0.995548,-0.0732284][0.624871,0.64708,-0.106656][0.575933,-2.01529,-0.792701][0.059346,-0.995548,-0.0732284][0.624871,0.64708,-0.106656][1.54972e-006,-2.01529,0][0,-1,0][0.678218,0.64708,-0.5][0.302786,-2.01529,-0.931876][0.0338126,-0.995548,-0.0879833][0.650172,0.64708,-0.037596][0.302786,-2.01529,-0.931876][0.0338126,-0.995548,-0.0879833][0.650172,0.64708,-0.037596][1.54972e-006,-2.01529,0][0,-1,0][0.678218,0.64708,-0.5][1.54972e-006,-2.01529,-0.979832][0.00496935,-0.995548,-0.0941258][0.678218,0.64708,-0.0137997][1.54972e-006,-2.01529,-0.979832][0.00496935,-0.995548,-0.0941258][0.678218,0.64708,-0.0137997][1.54972e-006,-2.01529,0][0,-1,0][0.678218,0.64708,-0.5][-0.302783,-2.01529,-0.931876][-0.0243604,-0.995548,-0.0910546][0.706264,0.64708,-0.037596][-0.302783,-2.01529,-0.931876][-0.0243604,-0.995548,-0.0910546][0.706264,0.64708,-0.037596][1.54972e-006,-2.01529,0][0,-1,0][0.678218,0.64708,-0.5][-0.575929,-2.01529,-0.792701][-0.0513055,-0.995548,-0.0790703][0.731565,0.64708,-0.106656][-0.575929,-2.01529,-0.792701][-0.0513055,-0.995548,-0.0790703][0.731565,0.64708,-0.106656][1.54972e-006,-2.01529,0][0,-1,0][0.678218,0.64708,-0.5][-0.7927,-2.01529,-0.575931][-0.0732284,-0.995548,-0.059346][0.751644,0.64708,-0.214219][-0.7927,-2.01529,-0.575931][-0.0732284,-0.995548,-0.059346][0.751644,0.64708,-0.214219][1.54972e-006,-2.01529,0][0,-1,0][0.678218,0.64708,-0.5][-0.931874,-2.01529,-0.302785][-0.0879833,-0.995548,-0.0338126][0.764535,0.64708,-0.349756][-0.931874,-2.01529,-0.302785][-0.0879833,-0.995548,-0.0338126][0.764535,0.64708,-0.349756][1.54972e-006,-2.01529,0][0,-1,0][0.678218,0.64708,-0.5][-0.979831,-2.01529,1.50812e-007][-0.0941258,-0.995548,-0.00496935][0.768977,0.64708,-0.5][-0.979831,-2.01529,1.50812e-007][-0.0941258,-0.995548,-0.00496935][0.320641,0.814306,0.5][1.54972e-006,-2.01529,0][0,-1,0][0.320641,0.865397,0.5][-0.931874,-2.01529,0.302785][-0.0910545,-0.995548,0.0243603][0.320641,0.816806,0.349756][-0.931874,-2.01529,0.302785][-0.0910545,-0.995548,0.0243603][0.320641,0.816806,0.349756][1.54972e-006,-2.01529,0][0,-1,0][0.320641,0.865397,0.5][-0.792699,-2.01529,0.575931][-0.0790702,-0.995548,0.0513054][0.320641,0.824063,0.214218][-0.792699,-2.01529,0.575931][-0.0790702,-0.995548,0.0513054][0.320641,0.824063,0.214218][1.54972e-006,-2.01529,0][0,-1,0][0.320641,0.865397,0.5][-0.575929,-2.01529,0.792701][-0.059346,-0.995548,0.0732284][0.320641,0.835366,0.106656][-0.575929,-2.01529,0.792701][-0.059346,-0.995548,0.0732284][0.320641,0.835366,0.106656][1.54972e-006,-2.01529,0][0,-1,0][0.320641,0.865397,0.5][-0.302783,-2.01529,0.931876][-0.0338126,-0.995548,0.0879833][0.320641,0.849609,0.037596][-0.302783,-2.01529,0.931876][-0.0338126,-0.995548,0.0879833][0.320641,0.849609,0.037596][1.54972e-006,-2.01529,0][0,-1,0][0.320641,0.865397,0.5][1.66893e-006,-2.01529,0.979832][-0.00496935,-0.995548,0.0941257][0.320641,0.865397,0.0137997][1.66893e-006,-2.01529,0.979832][-0.00496935,-0.995548,0.0941257][0.320641,0.865397,0.0137997][1.54972e-006,-2.01529,0][0,-1,0][0.320641,0.865397,0.5][0.302786,-2.01529,0.931876][0.0243603,-0.995548,0.0910545][0.320641,0.881185,0.037596][0.302786,-2.01529,0.931876][0.0243603,-0.995548,0.0910545][0.320641,0.881185,0.037596][1.54972e-006,-2.01529,0][0,-1,0][0.320641,0.865397,0.5][0.575933,-2.01529,0.792701][0.0513055,-0.995548,0.0790702][0.320641,0.895427,0.106656][0.575933,-2.01529,0.792701][0.0513055,-0.995548,0.0790702][0.320641,0.895427,0.106656][1.54972e-006,-2.01529,0][0,-1,0][0.320641,0.865397,0.5][0.792703,-2.01529,0.575931][0.0732284,-0.995548,0.059346][0.320641,0.90673,0.214219][0.792703,-2.01529,0.575931][0.0732284,-0.995548,0.059346][0.320641,0.90673,0.214219][1.54972e-006,-2.01529,0][0,-1,0][0.320641,0.865397,0.5][0.931877,-2.01529,0.302785][0.0879834,-0.995548,0.0338126][0.320641,0.913987,0.349756][0.931877,-2.01529,0.302785][0.0879834,-0.995548,0.0338126][0.320641,0.913987,0.349756][1.54972e-006,-2.01529,0][0,-1,0][0.320641,0.865397,0.5][0.979834,-2.01529,0][0.0941258,-0.995548,0.00496936][0.320641,0.916488,0.5] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/headphones.mesh b/shareddata/charcustom/hats/fonts/headphones.mesh deleted file mode 100644 index 4172362..0000000 --- a/shareddata/charcustom/hats/fonts/headphones.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -548 -[1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,-0.283954,-0.614326][0.972214,0.0137351,-0.233691][0.960031,0.184981,0][1.50102,-0.0738427,-0.577278][0.972214,0.0928336,-0.2149][0.951392,0.233976,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,-0.0738427,-0.577278][0.972214,0.0928336,-0.2149][0.951392,0.233976,0][1.50102,0.110926,-0.470601][0.972214,0.160735,-0.170189][0.926517,0.277061,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,0.110926,-0.470601][0.972214,0.160735,-0.170189][0.926517,0.277061,0][1.50102,0.248067,-0.307163][0.972214,0.20925,-0.104951][0.888405,0.30904,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,0.248067,-0.307163][0.972214,0.20925,-0.104951][0.888405,0.30904,0][1.50102,0.321038,-0.106677][0.972214,0.232525,-0.0270538][0.841655,0.326055,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,0.321038,-0.106677][0.972214,0.232525,-0.0270538][0.841655,0.326055,0][1.50102,0.321038,0.106676][0.972214,0.227755,0.0541062][0.791905,0.326055,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,0.321038,0.106676][0.972214,0.227755,0.0541062][0.791905,0.326055,0][1.50102,0.248067,0.307162][0.972214,0.195514,0.12874][0.745155,0.30904,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,0.248067,0.307162][0.972214,0.195514,0.12874][0.745155,0.30904,0][1.50102,0.110926,0.4706][0.972214,0.139692,0.187846][0.707044,0.277061,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,0.110926,0.4706][0.972214,0.139692,0.187846][0.707044,0.277061,0][1.50102,-0.0738428,0.577276][0.972214,0.0670199,0.224295][0.682168,0.233976,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,-0.0738428,0.577276][0.972214,0.0670199,0.224295][0.682168,0.233976,0][1.50102,-0.283954,0.614324][0.972214,-0.0137356,0.23369][0.673529,0.184981,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,-0.283954,0.614324][0.972214,-0.0137356,0.23369][0.673529,0.184981,0][1.50102,-0.494066,0.577276][0.972214,-0.0928342,0.214899][0.682168,0.135986,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,-0.494066,0.577276][0.972214,-0.0928342,0.214899][0.682168,0.135986,0][1.50102,-0.678835,0.4706][0.972214,-0.160735,0.170188][0.707044,0.0929011,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,-0.678835,0.4706][0.972214,-0.160735,0.170188][0.707044,0.0929011,0][1.50102,-0.815975,0.307162][0.972214,-0.20925,0.10495][0.745155,0.0609221,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,-0.815975,0.307162][0.972214,-0.20925,0.10495][0.745155,0.0609221,0][1.50102,-0.888946,0.106675][0.972214,-0.232525,0.0270527][0.791905,0.0439065,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,-0.888946,0.106675][0.972214,-0.232525,0.0270527][0.791905,0.0439065,0][1.50102,-0.888946,-0.106677][0.972214,-0.227756,-0.0541071][0.841655,0.0439065,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,-0.888946,-0.106677][0.972214,-0.227756,-0.0541071][0.841655,0.0439065,0][1.50102,-0.815975,-0.307164][0.972214,-0.195514,-0.128741][0.888405,0.0609222,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,-0.815975,-0.307164][0.972214,-0.195514,-0.128741][0.888405,0.0609222,0][1.50102,-0.678835,-0.470601][0.972214,-0.139692,-0.187847][0.926517,0.0929012,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,-0.678835,-0.470601][0.972214,-0.139692,-0.187847][0.926517,0.0929012,0][1.50102,-0.494066,-0.577278][0.972214,-0.06702,-0.224296][0.951392,0.135986,0][1.50102,-0.283954,-8.05755e-007][1,-1.92464e-007,-5.2879e-007][0.81678,0.184981,0][1.50102,-0.494066,-0.577278][0.972214,-0.06702,-0.224296][0.951392,0.135986,0][1.50102,-0.283954,-0.614326][0.972214,0.0137351,-0.233691][0.960031,0.184981,0][1.47334,-0.0509855,-0.640077][0.708588,0.25723,-0.657067][0.966036,0.239306,0][1.50102,-0.0738427,-0.577278][0.972214,0.0928336,-0.2149][0.951392,0.233976,0][1.50102,-0.283954,-0.614326][0.972214,0.0137351,-0.233691][0.960031,0.184981,0][1.50102,-0.283954,-0.614326][0.972214,0.0137351,-0.233691][0.960031,0.184981,0][1.47334,-0.283954,-0.681156][0.708588,0.0169875,-0.705418][0.975614,0.184981,0][1.47334,-0.0509855,-0.640077][0.708588,0.25723,-0.657067][0.966036,0.239306,0][1.47334,0.153884,-0.521796][0.708588,0.466447,-0.529463][0.938454,0.287078,0][1.50102,0.110926,-0.470601][0.972214,0.160735,-0.170189][0.926517,0.277061,0][1.50102,-0.0738427,-0.577278][0.972214,0.0928336,-0.2149][0.951392,0.233976,0][1.50102,-0.0738427,-0.577278][0.972214,0.0928336,-0.2149][0.951392,0.233976,0][1.47334,-0.0509855,-0.640077][0.708588,0.25723,-0.657067][0.966036,0.239306,0][1.47334,0.153884,-0.521796][0.708588,0.466447,-0.529463][0.938454,0.287078,0][1.47334,0.305943,-0.340578][0.708588,0.619404,-0.337998][0.896197,0.322536,0][1.50102,0.248067,-0.307163][0.972214,0.20925,-0.104951][0.888405,0.30904,0][1.50102,0.110926,-0.470601][0.972214,0.160735,-0.170189][0.926517,0.277061,0][1.50102,0.110926,-0.470601][0.972214,0.160735,-0.170189][0.926517,0.277061,0][1.47334,0.153884,-0.521796][0.708588,0.466447,-0.529463][0.938454,0.287078,0][1.47334,0.305943,-0.340578][0.708588,0.619404,-0.337998][0.896197,0.322536,0][1.47334,0.386852,-0.118282][0.708588,0.697651,-0.105766][0.844361,0.341402,0][1.50102,0.321038,-0.106677][0.972214,0.232525,-0.0270538][0.841655,0.326055,0][1.50102,0.248067,-0.307163][0.972214,0.20925,-0.104951][0.888405,0.30904,0][1.50102,0.248067,-0.307163][0.972214,0.20925,-0.104951][0.888405,0.30904,0][1.47334,0.305943,-0.340578][0.708588,0.619404,-0.337998][0.896197,0.322536,0][1.47334,0.386852,-0.118282][0.708588,0.697651,-0.105766][0.844361,0.341402,0][1.47334,0.386852,0.118281][0.708588,0.691751,0.139224][0.789199,0.341402,0][1.50102,0.321038,0.106676][0.972214,0.227755,0.0541062][0.791905,0.326055,0][1.50102,0.321038,-0.106677][0.972214,0.232525,-0.0270538][0.841655,0.326055,0][1.50102,0.321038,-0.106677][0.972214,0.232525,-0.0270538][0.841655,0.326055,0][1.47334,0.386852,-0.118282][0.708588,0.697651,-0.105766][0.844361,0.341402,0][1.47334,0.386852,0.118281][0.708588,0.691751,0.139224][0.789199,0.341402,0][1.47334,0.305943,0.340577][0.708588,0.602416,0.36742][0.737363,0.322536,0][1.50102,0.248067,0.307162][0.972214,0.195514,0.12874][0.745155,0.30904,0][1.50102,0.321038,0.106676][0.972214,0.227755,0.0541062][0.791905,0.326055,0][1.50102,0.321038,0.106676][0.972214,0.227755,0.0541062][0.791905,0.326055,0][1.47334,0.386852,0.118281][0.708588,0.691751,0.139224][0.789199,0.341402,0][1.47334,0.305943,0.340577][0.708588,0.602416,0.36742][0.737363,0.322536,0][1.47334,0.153884,0.521794][0.708588,0.44042,0.551301][0.695106,0.287078,0][1.50102,0.110926,0.4706][0.972214,0.139692,0.187846][0.707044,0.277061,0][1.50102,0.248067,0.307162][0.972214,0.195514,0.12874][0.745155,0.30904,0][1.50102,0.248067,0.307162][0.972214,0.195514,0.12874][0.745155,0.30904,0][1.47334,0.305943,0.340577][0.708588,0.602416,0.36742][0.737363,0.322536,0][1.47334,0.153884,0.521794][0.708588,0.44042,0.551301][0.695106,0.287078,0][1.47334,-0.0509856,0.640076][0.708588,0.225304,0.668686][0.667525,0.239306,0][1.50102,-0.0738428,0.577276][0.972214,0.0670199,0.224295][0.682168,0.233976,0][1.50102,0.110926,0.4706][0.972214,0.139692,0.187846][0.707044,0.277061,0][1.50102,0.110926,0.4706][0.972214,0.139692,0.187846][0.707044,0.277061,0][1.47334,0.153884,0.521794][0.708588,0.44042,0.551301][0.695106,0.287078,0][1.47334,-0.0509856,0.640076][0.708588,0.225304,0.668686][0.667525,0.239306,0][1.47334,-0.283954,0.681154][0.708588,-0.0169877,0.705418][0.657946,0.184981,0][1.50102,-0.283954,0.614324][0.972214,-0.0137356,0.23369][0.673529,0.184981,0][1.50102,-0.0738428,0.577276][0.972214,0.0670199,0.224295][0.682168,0.233976,0][1.50102,-0.0738428,0.577276][0.972214,0.0670199,0.224295][0.682168,0.233976,0][1.47334,-0.0509856,0.640076][0.708588,0.225304,0.668686][0.667525,0.239306,0][1.47334,-0.283954,0.681154][0.708588,-0.0169877,0.705418][0.657946,0.184981,0][1.47334,-0.516923,0.640075][0.708588,-0.25723,0.657065][0.667525,0.130656,0][1.50102,-0.494066,0.577276][0.972214,-0.0928342,0.214899][0.682168,0.135986,0][1.50102,-0.283954,0.614324][0.972214,-0.0137356,0.23369][0.673529,0.184981,0][1.50102,-0.283954,0.614324][0.972214,-0.0137356,0.23369][0.673529,0.184981,0][1.47334,-0.283954,0.681154][0.708588,-0.0169877,0.705418][0.657946,0.184981,0][1.47334,-0.516923,0.640075][0.708588,-0.25723,0.657065][0.667525,0.130656,0][1.47334,-0.721792,0.521794][0.708588,-0.466447,0.529462][0.695106,0.0828841,0][1.50102,-0.678835,0.4706][0.972214,-0.160735,0.170188][0.707044,0.0929011,0][1.50102,-0.494066,0.577276][0.972214,-0.0928342,0.214899][0.682168,0.135986,0][1.50102,-0.494066,0.577276][0.972214,-0.0928342,0.214899][0.682168,0.135986,0][1.47334,-0.516923,0.640075][0.708588,-0.25723,0.657065][0.667525,0.130656,0][1.47334,-0.721792,0.521794][0.708588,-0.466447,0.529462][0.695106,0.0828841,0][1.47334,-0.873852,0.340577][0.708588,-0.619404,0.337997][0.737363,0.0474263,0][1.50102,-0.815975,0.307162][0.972214,-0.20925,0.10495][0.745155,0.0609221,0][1.50102,-0.678835,0.4706][0.972214,-0.160735,0.170188][0.707044,0.0929011,0][1.50102,-0.678835,0.4706][0.972214,-0.160735,0.170188][0.707044,0.0929011,0][1.47334,-0.721792,0.521794][0.708588,-0.466447,0.529462][0.695106,0.0828841,0][1.47334,-0.873852,0.340577][0.708588,-0.619404,0.337997][0.737363,0.0474263,0][1.47334,-0.954761,0.11828][0.708588,-0.697651,0.105764][0.789199,0.0285596,0][1.50102,-0.888946,0.106675][0.972214,-0.232525,0.0270527][0.791905,0.0439065,0][1.50102,-0.815975,0.307162][0.972214,-0.20925,0.10495][0.745155,0.0609221,0][1.50102,-0.815975,0.307162][0.972214,-0.20925,0.10495][0.745155,0.0609221,0][1.47334,-0.873852,0.340577][0.708588,-0.619404,0.337997][0.737363,0.0474263,0][1.47334,-0.954761,0.11828][0.708588,-0.697651,0.105764][0.789199,0.0285596,0][1.47334,-0.954761,-0.118282][0.708588,-0.691751,-0.139224][0.844361,0.0285596,0][1.50102,-0.888946,-0.106677][0.972214,-0.227756,-0.0541071][0.841655,0.0439065,0][1.50102,-0.888946,0.106675][0.972214,-0.232525,0.0270527][0.791905,0.0439065,0][1.50102,-0.888946,0.106675][0.972214,-0.232525,0.0270527][0.791905,0.0439065,0][1.47334,-0.954761,0.11828][0.708588,-0.697651,0.105764][0.789199,0.0285596,0][1.47334,-0.954761,-0.118282][0.708588,-0.691751,-0.139224][0.844361,0.0285596,0][1.47334,-0.873852,-0.340578][0.708588,-0.602416,-0.367421][0.896197,0.0474264,0][1.50102,-0.815975,-0.307164][0.972214,-0.195514,-0.128741][0.888405,0.0609222,0][1.50102,-0.888946,-0.106677][0.972214,-0.227756,-0.0541071][0.841655,0.0439065,0][1.50102,-0.888946,-0.106677][0.972214,-0.227756,-0.0541071][0.841655,0.0439065,0][1.47334,-0.954761,-0.118282][0.708588,-0.691751,-0.139224][0.844361,0.0285596,0][1.47334,-0.873852,-0.340578][0.708588,-0.602416,-0.367421][0.896197,0.0474264,0][1.47334,-0.721792,-0.521796][0.708588,-0.44042,-0.551301][0.938454,0.0828842,0][1.50102,-0.678835,-0.470601][0.972214,-0.139692,-0.187847][0.926517,0.0929012,0][1.50102,-0.815975,-0.307164][0.972214,-0.195514,-0.128741][0.888405,0.0609222,0][1.50102,-0.815975,-0.307164][0.972214,-0.195514,-0.128741][0.888405,0.0609222,0][1.47334,-0.873852,-0.340578][0.708588,-0.602416,-0.367421][0.896197,0.0474264,0][1.47334,-0.721792,-0.521796][0.708588,-0.44042,-0.551301][0.938454,0.0828842,0][1.47334,-0.516923,-0.640077][0.708588,-0.225304,-0.668687][0.966036,0.130656,0][1.50102,-0.494066,-0.577278][0.972214,-0.06702,-0.224296][0.951392,0.135986,0][1.50102,-0.678835,-0.470601][0.972214,-0.139692,-0.187847][0.926517,0.0929012,0][1.50102,-0.678835,-0.470601][0.972214,-0.139692,-0.187847][0.926517,0.0929012,0][1.47334,-0.721792,-0.521796][0.708588,-0.44042,-0.551301][0.938454,0.0828842,0][1.47334,-0.516923,-0.640077][0.708588,-0.225304,-0.668687][0.966036,0.130656,0][1.47334,-0.283954,-0.681156][0.708588,0.0169875,-0.705418][0.975614,0.184981,0][1.50102,-0.283954,-0.614326][0.972214,0.0137351,-0.233691][0.960031,0.184981,0][1.50102,-0.494066,-0.577278][0.972214,-0.06702,-0.224296][0.951392,0.135986,0][1.50102,-0.494066,-0.577278][0.972214,-0.06702,-0.224296][0.951392,0.135986,0][1.47334,-0.516923,-0.640077][0.708588,-0.225304,-0.668687][0.966036,0.130656,0][1.47334,-0.283954,-0.681156][0.708588,0.0169875,-0.705418][0.975614,0.184981,0][1.40651,-0.0415178,-0.666089][0.195305,0.337516,-0.920836][0.0726487,0.792452,0.00693029][1.47334,-0.0509855,-0.640077][0.708588,0.25723,-0.657067][0.0726487,0.806588,-0.0126314][1.47334,-0.283954,-0.681156][0.708588,0.0169875,-0.705418][0.0375301,0.806588,-0.0135044][1.47334,-0.283954,-0.681156][0.708588,0.0169875,-0.705418][0.0375301,0.806588,-0.0135044][1.40651,-0.283954,-0.708837][0.195305,0.00221706,-0.98074][0.0375301,0.792452,0.00602186][1.40651,-0.0415178,-0.666089][0.195305,0.337516,-0.920836][0.0726487,0.792452,0.00693029][1.40651,0.171677,-0.543001][0.195305,0.632106,-0.749866][0.107534,0.792452,0.00922316][1.47334,0.153884,-0.521796][0.708588,0.466447,-0.529463][0.107534,0.806588,-0.0104281][1.47334,-0.0509855,-0.640077][0.708588,0.25723,-0.657067][0.0726487,0.806588,-0.0126314][1.47334,-0.0509855,-0.640077][0.708588,0.25723,-0.657067][0.0726487,0.806588,-0.0126314][1.40651,-0.0415178,-0.666089][0.195305,0.337516,-0.920836][0.0726487,0.792452,0.00693029][1.40651,0.171677,-0.543001][0.195305,0.632106,-0.749866][0.107534,0.792452,0.00922316][1.40651,0.329916,-0.354419][0.195306,0.850454,-0.48845][0.142068,0.792452,0.0118179][1.47334,0.305943,-0.340578][0.708588,0.619404,-0.337998][0.142068,0.806588,-0.00793469][1.47334,0.153884,-0.521796][0.708588,0.466447,-0.529463][0.107534,0.806588,-0.0104281][1.47334,0.153884,-0.521796][0.708588,0.466447,-0.529463][0.107534,0.806588,-0.0104281][1.40651,0.171677,-0.543001][0.195305,0.632106,-0.749866][0.107534,0.792452,0.00922316][1.40651,0.329916,-0.354419][0.195306,0.850454,-0.48845][0.142068,0.792452,0.0118179][1.40651,0.414114,-0.123089][0.195306,0.966225,-0.16812][0.176299,0.792452,0.0135043][1.47334,0.386852,-0.118282][0.708588,0.697651,-0.105766][0.176299,0.806588,-0.0063141][1.47334,0.305943,-0.340578][0.708588,0.619404,-0.337998][0.142068,0.806588,-0.00793469][1.47334,0.305943,-0.340578][0.708588,0.619404,-0.337998][0.142068,0.806588,-0.00793469][1.40651,0.329916,-0.354419][0.195306,0.850454,-0.48845][0.142068,0.792452,0.0118179][1.40651,0.414114,-0.123089][0.195306,0.966225,-0.16812][0.176299,0.792452,0.0135043][1.40651,0.414114,0.123088][0.195306,0.965455,0.172487][0.210411,0.792452,0.0135043][1.47334,0.386852,0.118281][0.708588,0.691751,0.139224][0.210411,0.806588,-0.00631416][1.47334,0.386852,-0.118282][0.708588,0.697651,-0.105766][0.176299,0.806588,-0.0063141][1.47334,0.386852,-0.118282][0.708588,0.697651,-0.105766][0.176299,0.806588,-0.0063141][1.40651,0.414114,-0.123089][0.195306,0.966225,-0.16812][0.176299,0.792452,0.0135043][1.40651,0.414114,0.123088][0.195306,0.965455,0.172487][0.210411,0.792452,0.0135043][1.40651,0.329916,0.354418][0.195306,0.848237,0.49229][0.244641,0.792452,0.0118179][1.47334,0.305943,0.340577][0.708588,0.602416,0.36742][0.244641,0.806588,-0.00793469][1.47334,0.386852,0.118281][0.708588,0.691751,0.139224][0.210411,0.806588,-0.00631416][1.47334,0.386852,0.118281][0.708588,0.691751,0.139224][0.210411,0.806588,-0.00631416][1.40651,0.414114,0.123088][0.195306,0.965455,0.172487][0.210411,0.792452,0.0135043][1.40651,0.329916,0.354418][0.195306,0.848237,0.49229][0.244641,0.792452,0.0118179][1.40651,0.171677,0.543][0.195306,0.628709,0.752715][0.279175,0.792452,0.00922316][1.47334,0.153884,0.521794][0.708588,0.44042,0.551301][0.279175,0.806588,-0.0104281][1.47334,0.305943,0.340577][0.708588,0.602416,0.36742][0.244641,0.806588,-0.00793469][1.47334,0.305943,0.340577][0.708588,0.602416,0.36742][0.244641,0.806588,-0.00793469][1.40651,0.329916,0.354418][0.195306,0.848237,0.49229][0.244641,0.792452,0.0118179][1.40651,0.171677,0.543][0.195306,0.628709,0.752715][0.279175,0.792452,0.00922316][1.40651,-0.0415179,0.666088][0.195306,0.333349,0.922352][0.314061,0.792452,0.00693029][1.47334,-0.0509856,0.640076][0.708588,0.225304,0.668686][0.314061,0.806588,-0.0126314][1.47334,0.153884,0.521794][0.708588,0.44042,0.551301][0.279175,0.806588,-0.0104281][1.47334,0.153884,0.521794][0.708588,0.44042,0.551301][0.279175,0.806588,-0.0104281][1.40651,0.171677,0.543][0.195306,0.628709,0.752715][0.279175,0.792452,0.00922316][1.40651,-0.0415179,0.666088][0.195306,0.333349,0.922352][0.314061,0.792452,0.00693029][1.40651,-0.283954,0.708836][0.195306,-0.00221721,0.98074][0.349179,0.792452,0.00602186][1.47334,-0.283954,0.681154][0.708588,-0.0169877,0.705418][0.349179,0.806588,-0.0135044][1.47334,-0.0509856,0.640076][0.708588,0.225304,0.668686][0.314061,0.806588,-0.0126314][1.47334,-0.0509856,0.640076][0.708588,0.225304,0.668686][0.314061,0.806588,-0.0126314][1.40651,-0.0415179,0.666088][0.195306,0.333349,0.922352][0.314061,0.792452,0.00693029][1.40651,-0.283954,0.708836][0.195306,-0.00221721,0.98074][0.349179,0.792452,0.00602186][1.40651,-0.526391,0.666088][0.195306,-0.337516,0.920836][0.384298,0.792452,0.00693029][1.47334,-0.516923,0.640075][0.708588,-0.25723,0.657065][0.384298,0.806588,-0.0126314][1.47334,-0.283954,0.681154][0.708588,-0.0169877,0.705418][0.349179,0.806588,-0.0135044][1.47334,-0.283954,0.681154][0.708588,-0.0169877,0.705418][0.349179,0.806588,-0.0135044][1.40651,-0.283954,0.708836][0.195306,-0.00221721,0.98074][0.349179,0.792452,0.00602186][1.40651,-0.526391,0.666088][0.195306,-0.337516,0.920836][0.384298,0.792452,0.00693029][1.40651,-0.739586,0.543][0.195306,-0.632106,0.749865][0.419184,0.792452,0.0092231][1.47334,-0.721792,0.521794][0.708588,-0.466447,0.529462][0.419184,0.806588,-0.0104281][1.47334,-0.516923,0.640075][0.708588,-0.25723,0.657065][0.384298,0.806588,-0.0126314][1.47334,-0.516923,0.640075][0.708588,-0.25723,0.657065][0.384298,0.806588,-0.0126314][1.40651,-0.526391,0.666088][0.195306,-0.337516,0.920836][0.384298,0.792452,0.00693029][1.40651,-0.739586,0.543][0.195306,-0.632106,0.749865][0.419184,0.792452,0.0092231][1.40651,-0.897825,0.354417][0.195306,-0.850454,0.48845][0.453718,0.792452,0.0118179][1.47334,-0.873852,0.340577][0.708588,-0.619404,0.337997][0.453718,0.806588,-0.00793469][1.47334,-0.721792,0.521794][0.708588,-0.466447,0.529462][0.419184,0.806588,-0.0104281][1.47334,-0.721792,0.521794][0.708588,-0.466447,0.529462][0.419184,0.806588,-0.0104281][1.40651,-0.739586,0.543][0.195306,-0.632106,0.749865][0.419184,0.792452,0.0092231][1.40651,-0.897825,0.354417][0.195306,-0.850454,0.48845][0.453718,0.792452,0.0118179][1.40651,-0.982022,0.123087][0.195305,-0.966225,0.16812][0.487948,0.792452,0.0135043][1.47334,-0.954761,0.11828][0.708588,-0.697651,0.105764][0.487948,0.806588,-0.00631413][1.47334,-0.873852,0.340577][0.708588,-0.619404,0.337997][0.453718,0.806588,-0.00793469][1.47334,-0.873852,0.340577][0.708588,-0.619404,0.337997][0.453718,0.806588,-0.00793469][1.40651,-0.897825,0.354417][0.195306,-0.850454,0.48845][0.453718,0.792452,0.0118179][1.40651,-0.982022,0.123087][0.195305,-0.966225,0.16812][0.487948,0.792452,0.0135043][1.40651,-0.982022,-0.123089][0.195305,-0.965455,-0.172487][0.52206,0.792452,0.0135043][1.47334,-0.954761,-0.118282][0.708588,-0.691751,-0.139224][0.52206,0.806588,-0.00631413][1.47334,-0.954761,0.11828][0.708588,-0.697651,0.105764][0.487948,0.806588,-0.00631413][1.47334,-0.954761,0.11828][0.708588,-0.697651,0.105764][0.487948,0.806588,-0.00631413][1.40651,-0.982022,0.123087][0.195305,-0.966225,0.16812][0.487948,0.792452,0.0135043][1.40651,-0.982022,-0.123089][0.195305,-0.965455,-0.172487][0.52206,0.792452,0.0135043][1.40651,-0.897825,-0.354419][0.195305,-0.848237,-0.49229][0.556291,0.792452,0.0118179][1.47334,-0.873852,-0.340578][0.708588,-0.602416,-0.367421][0.556291,0.806588,-0.00793469][1.47334,-0.954761,-0.118282][0.708588,-0.691751,-0.139224][0.52206,0.806588,-0.00631413][1.47334,-0.954761,-0.118282][0.708588,-0.691751,-0.139224][0.52206,0.806588,-0.00631413][1.40651,-0.982022,-0.123089][0.195305,-0.965455,-0.172487][0.52206,0.792452,0.0135043][1.40651,-0.897825,-0.354419][0.195305,-0.848237,-0.49229][0.556291,0.792452,0.0118179][1.40651,-0.739586,-0.543001][0.195305,-0.628709,-0.752716][0.590825,0.792452,0.00922316][1.47334,-0.721792,-0.521796][0.708588,-0.44042,-0.551301][0.590825,0.806588,-0.0104281][1.47334,-0.873852,-0.340578][0.708588,-0.602416,-0.367421][0.556291,0.806588,-0.00793469][1.47334,-0.873852,-0.340578][0.708588,-0.602416,-0.367421][0.556291,0.806588,-0.00793469][1.40651,-0.897825,-0.354419][0.195305,-0.848237,-0.49229][0.556291,0.792452,0.0118179][1.40651,-0.739586,-0.543001][0.195305,-0.628709,-0.752716][0.590825,0.792452,0.00922316][1.40651,-0.52639,-0.666089][0.195305,-0.333349,-0.922352][0.62571,0.792452,0.00693023][1.47334,-0.516923,-0.640077][0.708588,-0.225304,-0.668687][0.62571,0.806588,-0.0126314][1.47334,-0.721792,-0.521796][0.708588,-0.44042,-0.551301][0.590825,0.806588,-0.0104281][1.47334,-0.721792,-0.521796][0.708588,-0.44042,-0.551301][0.590825,0.806588,-0.0104281][1.40651,-0.739586,-0.543001][0.195305,-0.628709,-0.752716][0.590825,0.792452,0.00922316][1.40651,-0.52639,-0.666089][0.195305,-0.333349,-0.922352][0.62571,0.792452,0.00693023][1.40651,-0.283954,-0.708837][0.195305,0.00221706,-0.98074][0.0375301,0.792452,0.00602186][1.47334,-0.283954,-0.681156][0.708588,0.0169875,-0.705418][0.0375301,0.806588,-0.0135044][1.47334,-0.516923,-0.640077][0.708588,-0.225304,-0.668687][0.00241143,0.806588,-0.0126314][1.47334,-0.516923,-0.640077][0.708588,-0.225304,-0.668687][0.00241143,0.806588,-0.0126314][1.40651,-0.52639,-0.666089][0.195305,-0.333349,-0.922352][0.00241143,0.792452,0.00693023][1.40651,-0.283954,-0.708837][0.195305,0.00221706,-0.98074][0.0375301,0.792452,0.00602186][1.21749,-0.0415178,-0.666089][-0.195306,0.333349,-0.922352][0.0726487,0.752469,0.00693029][1.40651,-0.0415178,-0.666089][0.195305,0.337516,-0.920836][0.0726487,0.792452,0.00693029][1.40651,-0.283954,-0.708837][0.195305,0.00221706,-0.98074][0.0375301,0.792452,0.00602186][1.40651,-0.283954,-0.708837][0.195305,0.00221706,-0.98074][0.0375301,0.792452,0.00602186][1.21749,-0.283954,-0.708837][-0.195306,-0.00221696,-0.98074][0.0375301,0.752469,0.00602186][1.21749,-0.0415178,-0.666089][-0.195306,0.333349,-0.922352][0.0726487,0.752469,0.00693029][1.21749,0.171677,-0.543001][-0.195306,0.628709,-0.752715][0.107534,0.752469,0.00922316][1.40651,0.171677,-0.543001][0.195305,0.632106,-0.749866][0.107534,0.792452,0.00922316][1.40651,-0.0415178,-0.666089][0.195305,0.337516,-0.920836][0.0726487,0.792452,0.00693029][1.40651,-0.0415178,-0.666089][0.195305,0.337516,-0.920836][0.0726487,0.792452,0.00693029][1.21749,-0.0415178,-0.666089][-0.195306,0.333349,-0.922352][0.0726487,0.752469,0.00693029][1.21749,0.171677,-0.543001][-0.195306,0.628709,-0.752715][0.107534,0.752469,0.00922316][1.21749,0.329916,-0.354419][-0.195306,0.848237,-0.49229][0.142068,0.752469,0.0118179][1.40651,0.329916,-0.354419][0.195306,0.850454,-0.48845][0.142068,0.792452,0.0118179][1.40651,0.171677,-0.543001][0.195305,0.632106,-0.749866][0.107534,0.792452,0.00922316][1.40651,0.171677,-0.543001][0.195305,0.632106,-0.749866][0.107534,0.792452,0.00922316][1.21749,0.171677,-0.543001][-0.195306,0.628709,-0.752715][0.107534,0.752469,0.00922316][1.21749,0.329916,-0.354419][-0.195306,0.848237,-0.49229][0.142068,0.752469,0.0118179][1.21749,0.414114,-0.123089][-0.195305,0.965455,-0.172487][0.176299,0.752469,0.0135043][1.40651,0.414114,-0.123089][0.195306,0.966225,-0.16812][0.176299,0.792452,0.0135043][1.40651,0.329916,-0.354419][0.195306,0.850454,-0.48845][0.142068,0.792452,0.0118179][1.40651,0.329916,-0.354419][0.195306,0.850454,-0.48845][0.142068,0.792452,0.0118179][1.21749,0.329916,-0.354419][-0.195306,0.848237,-0.49229][0.142068,0.752469,0.0118179][1.21749,0.414114,-0.123089][-0.195305,0.965455,-0.172487][0.176299,0.752469,0.0135043][1.21749,0.414114,0.123088][-0.195305,0.966225,0.168121][0.210411,0.752469,0.0135043][1.40651,0.414114,0.123088][0.195306,0.965455,0.172487][0.210411,0.792452,0.0135043][1.40651,0.414114,-0.123089][0.195306,0.966225,-0.16812][0.176299,0.792452,0.0135043][1.40651,0.414114,-0.123089][0.195306,0.966225,-0.16812][0.176299,0.792452,0.0135043][1.21749,0.414114,-0.123089][-0.195305,0.965455,-0.172487][0.176299,0.752469,0.0135043][1.21749,0.414114,0.123088][-0.195305,0.966225,0.168121][0.210411,0.752469,0.0135043][1.21749,0.329916,0.354418][-0.195305,0.850454,0.48845][0.244641,0.752469,0.0118179][1.40651,0.329916,0.354418][0.195306,0.848237,0.49229][0.244641,0.792452,0.0118179][1.40651,0.414114,0.123088][0.195306,0.965455,0.172487][0.210411,0.792452,0.0135043][1.40651,0.414114,0.123088][0.195306,0.965455,0.172487][0.210411,0.792452,0.0135043][1.21749,0.414114,0.123088][-0.195305,0.966225,0.168121][0.210411,0.752469,0.0135043][1.21749,0.329916,0.354418][-0.195305,0.850454,0.48845][0.244641,0.752469,0.0118179][1.21749,0.171677,0.543][-0.195305,0.632106,0.749865][0.279175,0.752469,0.00922316][1.40651,0.171677,0.543][0.195306,0.628709,0.752715][0.279175,0.792452,0.00922316][1.40651,0.329916,0.354418][0.195306,0.848237,0.49229][0.244641,0.792452,0.0118179][1.40651,0.329916,0.354418][0.195306,0.848237,0.49229][0.244641,0.792452,0.0118179][1.21749,0.329916,0.354418][-0.195305,0.850454,0.48845][0.244641,0.752469,0.0118179][1.21749,0.171677,0.543][-0.195305,0.632106,0.749865][0.279175,0.752469,0.00922316][1.21749,-0.0415179,0.666088][-0.195305,0.337516,0.920836][0.314061,0.752469,0.00693029][1.40651,-0.0415179,0.666088][0.195306,0.333349,0.922352][0.314061,0.792452,0.00693029][1.40651,0.171677,0.543][0.195306,0.628709,0.752715][0.279175,0.792452,0.00922316][1.40651,0.171677,0.543][0.195306,0.628709,0.752715][0.279175,0.792452,0.00922316][1.21749,0.171677,0.543][-0.195305,0.632106,0.749865][0.279175,0.752469,0.00922316][1.21749,-0.0415179,0.666088][-0.195305,0.337516,0.920836][0.314061,0.752469,0.00693029][1.21749,-0.283954,0.708836][-0.195305,0.00221694,0.98074][0.349179,0.752469,0.00602186][1.40651,-0.283954,0.708836][0.195306,-0.00221721,0.98074][0.349179,0.792452,0.00602186][1.40651,-0.0415179,0.666088][0.195306,0.333349,0.922352][0.314061,0.792452,0.00693029][1.40651,-0.0415179,0.666088][0.195306,0.333349,0.922352][0.314061,0.792452,0.00693029][1.21749,-0.0415179,0.666088][-0.195305,0.337516,0.920836][0.314061,0.752469,0.00693029][1.21749,-0.283954,0.708836][-0.195305,0.00221694,0.98074][0.349179,0.752469,0.00602186][1.21749,-0.526391,0.666088][-0.195305,-0.33335,0.922352][0.384298,0.752469,0.00693029][1.40651,-0.526391,0.666088][0.195306,-0.337516,0.920836][0.384298,0.792452,0.00693029][1.40651,-0.283954,0.708836][0.195306,-0.00221721,0.98074][0.349179,0.792452,0.00602186][1.40651,-0.283954,0.708836][0.195306,-0.00221721,0.98074][0.349179,0.792452,0.00602186][1.21749,-0.283954,0.708836][-0.195305,0.00221694,0.98074][0.349179,0.752469,0.00602186][1.21749,-0.526391,0.666088][-0.195305,-0.33335,0.922352][0.384298,0.752469,0.00693029][1.21749,-0.739586,0.543][-0.195305,-0.628709,0.752715][0.419184,0.752469,0.0092231][1.40651,-0.739586,0.543][0.195306,-0.632106,0.749865][0.419184,0.792452,0.0092231][1.40651,-0.526391,0.666088][0.195306,-0.337516,0.920836][0.384298,0.792452,0.00693029][1.40651,-0.526391,0.666088][0.195306,-0.337516,0.920836][0.384298,0.792452,0.00693029][1.21749,-0.526391,0.666088][-0.195305,-0.33335,0.922352][0.384298,0.752469,0.00693029][1.21749,-0.739586,0.543][-0.195305,-0.628709,0.752715][0.419184,0.752469,0.0092231][1.21749,-0.897825,0.354418][-0.195305,-0.848237,0.49229][0.453718,0.752469,0.0118178][1.40651,-0.897825,0.354417][0.195306,-0.850454,0.48845][0.453718,0.792452,0.0118179][1.40651,-0.739586,0.543][0.195306,-0.632106,0.749865][0.419184,0.792452,0.0092231][1.40651,-0.739586,0.543][0.195306,-0.632106,0.749865][0.419184,0.792452,0.0092231][1.21749,-0.739586,0.543][-0.195305,-0.628709,0.752715][0.419184,0.752469,0.0092231][1.21749,-0.897825,0.354418][-0.195305,-0.848237,0.49229][0.453718,0.752469,0.0118178][1.21749,-0.982022,0.123087][-0.195305,-0.965455,0.172487][0.487948,0.752469,0.0135043][1.40651,-0.982022,0.123087][0.195305,-0.966225,0.16812][0.487948,0.792452,0.0135043][1.40651,-0.897825,0.354417][0.195306,-0.850454,0.48845][0.453718,0.792452,0.0118179][1.40651,-0.897825,0.354417][0.195306,-0.850454,0.48845][0.453718,0.792452,0.0118179][1.21749,-0.897825,0.354418][-0.195305,-0.848237,0.49229][0.453718,0.752469,0.0118178][1.21749,-0.982022,0.123087][-0.195305,-0.965455,0.172487][0.487948,0.752469,0.0135043][1.21749,-0.982022,-0.123089][-0.195306,-0.966225,-0.16812][0.52206,0.752469,0.0135043][1.40651,-0.982022,-0.123089][0.195305,-0.965455,-0.172487][0.52206,0.792452,0.0135043][1.40651,-0.982022,0.123087][0.195305,-0.966225,0.16812][0.487948,0.792452,0.0135043][1.40651,-0.982022,0.123087][0.195305,-0.966225,0.16812][0.487948,0.792452,0.0135043][1.21749,-0.982022,0.123087][-0.195305,-0.965455,0.172487][0.487948,0.752469,0.0135043][1.21749,-0.982022,-0.123089][-0.195306,-0.966225,-0.16812][0.52206,0.752469,0.0135043][1.21749,-0.897825,-0.354419][-0.195306,-0.850454,-0.48845][0.556291,0.752469,0.0118179][1.40651,-0.897825,-0.354419][0.195305,-0.848237,-0.49229][0.556291,0.792452,0.0118179][1.40651,-0.982022,-0.123089][0.195305,-0.965455,-0.172487][0.52206,0.792452,0.0135043][1.40651,-0.982022,-0.123089][0.195305,-0.965455,-0.172487][0.52206,0.792452,0.0135043][1.21749,-0.982022,-0.123089][-0.195306,-0.966225,-0.16812][0.52206,0.752469,0.0135043][1.21749,-0.897825,-0.354419][-0.195306,-0.850454,-0.48845][0.556291,0.752469,0.0118179][1.21749,-0.739586,-0.543001][-0.195306,-0.632105,-0.749865][0.590825,0.752469,0.0092231][1.40651,-0.739586,-0.543001][0.195305,-0.628709,-0.752716][0.590825,0.792452,0.00922316][1.40651,-0.897825,-0.354419][0.195305,-0.848237,-0.49229][0.556291,0.792452,0.0118179][1.40651,-0.897825,-0.354419][0.195305,-0.848237,-0.49229][0.556291,0.792452,0.0118179][1.21749,-0.897825,-0.354419][-0.195306,-0.850454,-0.48845][0.556291,0.752469,0.0118179][1.21749,-0.739586,-0.543001][-0.195306,-0.632105,-0.749865][0.590825,0.752469,0.0092231][1.21749,-0.52639,-0.666089][-0.195306,-0.337516,-0.920836][0.62571,0.752469,0.00693023][1.40651,-0.52639,-0.666089][0.195305,-0.333349,-0.922352][0.62571,0.792452,0.00693023][1.40651,-0.739586,-0.543001][0.195305,-0.628709,-0.752716][0.590825,0.792452,0.00922316][1.40651,-0.739586,-0.543001][0.195305,-0.628709,-0.752716][0.590825,0.792452,0.00922316][1.21749,-0.739586,-0.543001][-0.195306,-0.632105,-0.749865][0.590825,0.752469,0.0092231][1.21749,-0.52639,-0.666089][-0.195306,-0.337516,-0.920836][0.62571,0.752469,0.00693023][1.21749,-0.283954,-0.708837][-0.195306,-0.00221696,-0.98074][0.0375301,0.752469,0.00602186][1.40651,-0.283954,-0.708837][0.195305,0.00221706,-0.98074][0.0375301,0.792452,0.00602186][1.40651,-0.52639,-0.666089][0.195305,-0.333349,-0.922352][0.00241143,0.792452,0.00693023][1.40651,-0.52639,-0.666089][0.195305,-0.333349,-0.922352][0.00241143,0.792452,0.00693023][1.21749,-0.52639,-0.666089][-0.195306,-0.337516,-0.920836][0.00241143,0.752469,0.00693023][1.21749,-0.283954,-0.708837][-0.195306,-0.00221696,-0.98074][0.0375301,0.752469,0.00602186][1.15066,-0.0509855,-0.640077][-0.708589,0.225304,-0.668686][0.0726487,0.738333,-0.0126314][1.21749,-0.0415178,-0.666089][-0.195306,0.333349,-0.922352][0.0726487,0.752469,0.00693029][1.21749,-0.283954,-0.708837][-0.195306,-0.00221696,-0.98074][0.0375301,0.752469,0.00602186][1.21749,-0.283954,-0.708837][-0.195306,-0.00221696,-0.98074][0.0375301,0.752469,0.00602186][1.15066,-0.283954,-0.681156][-0.708588,-0.0169874,-0.705418][0.0375301,0.738333,-0.0135044][1.15066,-0.0509855,-0.640077][-0.708589,0.225304,-0.668686][0.0726487,0.738333,-0.0126314][1.15066,0.153884,-0.521796][-0.708588,0.440421,-0.5513][0.107534,0.738333,-0.0104281][1.21749,0.171677,-0.543001][-0.195306,0.628709,-0.752715][0.107534,0.752469,0.00922316][1.21749,-0.0415178,-0.666089][-0.195306,0.333349,-0.922352][0.0726487,0.752469,0.00693029][1.21749,-0.0415178,-0.666089][-0.195306,0.333349,-0.922352][0.0726487,0.752469,0.00693029][1.15066,-0.0509855,-0.640077][-0.708589,0.225304,-0.668686][0.0726487,0.738333,-0.0126314][1.15066,0.153884,-0.521796][-0.708588,0.440421,-0.5513][0.107534,0.738333,-0.0104281][1.15066,0.305943,-0.340578][-0.708588,0.602416,-0.36742][0.142068,0.738333,-0.00793466][1.21749,0.329916,-0.354419][-0.195306,0.848237,-0.49229][0.142068,0.752469,0.0118179][1.21749,0.171677,-0.543001][-0.195306,0.628709,-0.752715][0.107534,0.752469,0.00922316][1.21749,0.171677,-0.543001][-0.195306,0.628709,-0.752715][0.107534,0.752469,0.00922316][1.15066,0.153884,-0.521796][-0.708588,0.440421,-0.5513][0.107534,0.738333,-0.0104281][1.15066,0.305943,-0.340578][-0.708588,0.602416,-0.36742][0.142068,0.738333,-0.00793466][1.15066,0.386853,-0.118282][-0.708588,0.691752,-0.139224][0.176299,0.738333,-0.00631407][1.21749,0.414114,-0.123089][-0.195305,0.965455,-0.172487][0.176299,0.752469,0.0135043][1.21749,0.329916,-0.354419][-0.195306,0.848237,-0.49229][0.142068,0.752469,0.0118179][1.21749,0.329916,-0.354419][-0.195306,0.848237,-0.49229][0.142068,0.752469,0.0118179][1.15066,0.305943,-0.340578][-0.708588,0.602416,-0.36742][0.142068,0.738333,-0.00793466][1.15066,0.386853,-0.118282][-0.708588,0.691752,-0.139224][0.176299,0.738333,-0.00631407][1.15066,0.386852,0.118281][-0.708588,0.697651,0.105766][0.210411,0.738333,-0.00631413][1.21749,0.414114,0.123088][-0.195305,0.966225,0.168121][0.210411,0.752469,0.0135043][1.21749,0.414114,-0.123089][-0.195305,0.965455,-0.172487][0.176299,0.752469,0.0135043][1.21749,0.414114,-0.123089][-0.195305,0.965455,-0.172487][0.176299,0.752469,0.0135043][1.15066,0.386853,-0.118282][-0.708588,0.691752,-0.139224][0.176299,0.738333,-0.00631407][1.15066,0.386852,0.118281][-0.708588,0.697651,0.105766][0.210411,0.738333,-0.00631413][1.15066,0.305943,0.340577][-0.708588,0.619404,0.337998][0.244641,0.738333,-0.00793466][1.21749,0.329916,0.354418][-0.195305,0.850454,0.48845][0.244641,0.752469,0.0118179][1.21749,0.414114,0.123088][-0.195305,0.966225,0.168121][0.210411,0.752469,0.0135043][1.21749,0.414114,0.123088][-0.195305,0.966225,0.168121][0.210411,0.752469,0.0135043][1.15066,0.386852,0.118281][-0.708588,0.697651,0.105766][0.210411,0.738333,-0.00631413][1.15066,0.305943,0.340577][-0.708588,0.619404,0.337998][0.244641,0.738333,-0.00793466][1.15066,0.153884,0.521794][-0.708588,0.466447,0.529462][0.279175,0.738333,-0.0104281][1.21749,0.171677,0.543][-0.195305,0.632106,0.749865][0.279175,0.752469,0.00922316][1.21749,0.329916,0.354418][-0.195305,0.850454,0.48845][0.244641,0.752469,0.0118179][1.21749,0.329916,0.354418][-0.195305,0.850454,0.48845][0.244641,0.752469,0.0118179][1.15066,0.305943,0.340577][-0.708588,0.619404,0.337998][0.244641,0.738333,-0.00793466][1.15066,0.153884,0.521794][-0.708588,0.466447,0.529462][0.279175,0.738333,-0.0104281][1.15066,-0.0509856,0.640076][-0.708588,0.25723,0.657066][0.314061,0.738333,-0.0126314][1.21749,-0.0415179,0.666088][-0.195305,0.337516,0.920836][0.314061,0.752469,0.00693029][1.21749,0.171677,0.543][-0.195305,0.632106,0.749865][0.279175,0.752469,0.00922316][1.21749,0.171677,0.543][-0.195305,0.632106,0.749865][0.279175,0.752469,0.00922316][1.15066,0.153884,0.521794][-0.708588,0.466447,0.529462][0.279175,0.738333,-0.0104281][1.15066,-0.0509856,0.640076][-0.708588,0.25723,0.657066][0.314061,0.738333,-0.0126314][1.15066,-0.283954,0.681154][-0.708588,0.0169877,0.705418][0.349179,0.738333,-0.0135044][1.21749,-0.283954,0.708836][-0.195305,0.00221694,0.98074][0.349179,0.752469,0.00602186][1.21749,-0.0415179,0.666088][-0.195305,0.337516,0.920836][0.314061,0.752469,0.00693029][1.21749,-0.0415179,0.666088][-0.195305,0.337516,0.920836][0.314061,0.752469,0.00693029][1.15066,-0.0509856,0.640076][-0.708588,0.25723,0.657066][0.314061,0.738333,-0.0126314][1.15066,-0.283954,0.681154][-0.708588,0.0169877,0.705418][0.349179,0.738333,-0.0135044][1.15066,-0.516923,0.640076][-0.708588,-0.225304,0.668687][0.384298,0.738333,-0.0126314][1.21749,-0.526391,0.666088][-0.195305,-0.33335,0.922352][0.384298,0.752469,0.00693029][1.21749,-0.283954,0.708836][-0.195305,0.00221694,0.98074][0.349179,0.752469,0.00602186][1.21749,-0.283954,0.708836][-0.195305,0.00221694,0.98074][0.349179,0.752469,0.00602186][1.15066,-0.283954,0.681154][-0.708588,0.0169877,0.705418][0.349179,0.738333,-0.0135044][1.15066,-0.516923,0.640076][-0.708588,-0.225304,0.668687][0.384298,0.738333,-0.0126314][1.15066,-0.721792,0.521794][-0.708588,-0.440421,0.551301][0.419184,0.738333,-0.0104281][1.21749,-0.739586,0.543][-0.195305,-0.628709,0.752715][0.419184,0.752469,0.0092231][1.21749,-0.526391,0.666088][-0.195305,-0.33335,0.922352][0.384298,0.752469,0.00693029][1.21749,-0.526391,0.666088][-0.195305,-0.33335,0.922352][0.384298,0.752469,0.00693029][1.15066,-0.516923,0.640076][-0.708588,-0.225304,0.668687][0.384298,0.738333,-0.0126314][1.15066,-0.721792,0.521794][-0.708588,-0.440421,0.551301][0.419184,0.738333,-0.0104281][1.15066,-0.873852,0.340577][-0.708588,-0.602416,0.367421][0.453718,0.738333,-0.00793472][1.21749,-0.897825,0.354418][-0.195305,-0.848237,0.49229][0.453718,0.752469,0.0118178][1.21749,-0.739586,0.543][-0.195305,-0.628709,0.752715][0.419184,0.752469,0.0092231][1.21749,-0.739586,0.543][-0.195305,-0.628709,0.752715][0.419184,0.752469,0.0092231][1.15066,-0.721792,0.521794][-0.708588,-0.440421,0.551301][0.419184,0.738333,-0.0104281][1.15066,-0.873852,0.340577][-0.708588,-0.602416,0.367421][0.453718,0.738333,-0.00793472][1.15066,-0.954761,0.118281][-0.708588,-0.691751,0.139224][0.487948,0.738333,-0.00631416][1.21749,-0.982022,0.123087][-0.195305,-0.965455,0.172487][0.487948,0.752469,0.0135043][1.21749,-0.897825,0.354418][-0.195305,-0.848237,0.49229][0.453718,0.752469,0.0118178][1.21749,-0.897825,0.354418][-0.195305,-0.848237,0.49229][0.453718,0.752469,0.0118178][1.15066,-0.873852,0.340577][-0.708588,-0.602416,0.367421][0.453718,0.738333,-0.00793472][1.15066,-0.954761,0.118281][-0.708588,-0.691751,0.139224][0.487948,0.738333,-0.00631416][1.15066,-0.954761,-0.118282][-0.708588,-0.697651,-0.105765][0.52206,0.738333,-0.00631413][1.21749,-0.982022,-0.123089][-0.195306,-0.966225,-0.16812][0.52206,0.752469,0.0135043][1.21749,-0.982022,0.123087][-0.195305,-0.965455,0.172487][0.487948,0.752469,0.0135043][1.21749,-0.982022,0.123087][-0.195305,-0.965455,0.172487][0.487948,0.752469,0.0135043][1.15066,-0.954761,0.118281][-0.708588,-0.691751,0.139224][0.487948,0.738333,-0.00631416][1.15066,-0.954761,-0.118282][-0.708588,-0.697651,-0.105765][0.52206,0.738333,-0.00631413][1.15066,-0.873852,-0.340578][-0.708588,-0.619403,-0.337997][0.556291,0.738333,-0.00793469][1.21749,-0.897825,-0.354419][-0.195306,-0.850454,-0.48845][0.556291,0.752469,0.0118179][1.21749,-0.982022,-0.123089][-0.195306,-0.966225,-0.16812][0.52206,0.752469,0.0135043][1.21749,-0.982022,-0.123089][-0.195306,-0.966225,-0.16812][0.52206,0.752469,0.0135043][1.15066,-0.954761,-0.118282][-0.708588,-0.697651,-0.105765][0.52206,0.738333,-0.00631413][1.15066,-0.873852,-0.340578][-0.708588,-0.619403,-0.337997][0.556291,0.738333,-0.00793469][1.15066,-0.721792,-0.521796][-0.708588,-0.466447,-0.529462][0.590825,0.738333,-0.0104281][1.21749,-0.739586,-0.543001][-0.195306,-0.632105,-0.749865][0.590825,0.752469,0.0092231][1.21749,-0.897825,-0.354419][-0.195306,-0.850454,-0.48845][0.556291,0.752469,0.0118179][1.21749,-0.897825,-0.354419][-0.195306,-0.850454,-0.48845][0.556291,0.752469,0.0118179][1.15066,-0.873852,-0.340578][-0.708588,-0.619403,-0.337997][0.556291,0.738333,-0.00793469][1.15066,-0.721792,-0.521796][-0.708588,-0.466447,-0.529462][0.590825,0.738333,-0.0104281][1.15066,-0.516923,-0.640077][-0.708588,-0.25723,-0.657066][0.62571,0.738333,-0.0126314][1.21749,-0.52639,-0.666089][-0.195306,-0.337516,-0.920836][0.62571,0.752469,0.00693023][1.21749,-0.739586,-0.543001][-0.195306,-0.632105,-0.749865][0.590825,0.752469,0.0092231][1.21749,-0.739586,-0.543001][-0.195306,-0.632105,-0.749865][0.590825,0.752469,0.0092231][1.15066,-0.721792,-0.521796][-0.708588,-0.466447,-0.529462][0.590825,0.738333,-0.0104281][1.15066,-0.516923,-0.640077][-0.708588,-0.25723,-0.657066][0.62571,0.738333,-0.0126314][1.15066,-0.283954,-0.681156][-0.708588,-0.0169874,-0.705418][0.0375301,0.738333,-0.0135044][1.21749,-0.283954,-0.708837][-0.195306,-0.00221696,-0.98074][0.0375301,0.752469,0.00602186][1.21749,-0.52639,-0.666089][-0.195306,-0.337516,-0.920836][0.00241143,0.752469,0.00693023][1.21749,-0.52639,-0.666089][-0.195306,-0.337516,-0.920836][0.00241143,0.752469,0.00693023][1.15066,-0.516923,-0.640077][-0.708588,-0.25723,-0.657066][0.00241143,0.738333,-0.0126314][1.15066,-0.283954,-0.681156][-0.708588,-0.0169874,-0.705418][0.0375301,0.738333,-0.0135044][1.12298,-0.0738426,-0.577277][-0.972214,0.0670202,-0.224295][0.148854,0.379514,0][1.15066,-0.0509855,-0.640077][-0.708589,0.225304,-0.668686][0.156643,0.376679,0][1.15066,-0.283954,-0.681156][-0.708588,-0.0169874,-0.705418][0.161739,0.405575,0][1.15066,-0.283954,-0.681156][-0.708588,-0.0169874,-0.705418][0.161739,0.405575,0][1.12298,-0.283954,-0.614326][-0.972214,-0.0137351,-0.233691][0.153449,0.405575,0][1.12298,-0.0738426,-0.577277][-0.972214,0.0670202,-0.224295][0.148854,0.379514,0][1.12298,0.110926,-0.470601][-0.972214,0.139692,-0.187846][0.135623,0.356596,0][1.15066,0.153884,-0.521796][-0.708588,0.440421,-0.5513][0.141972,0.351268,0][1.15066,-0.0509855,-0.640077][-0.708589,0.225304,-0.668686][0.156643,0.376679,0][1.15066,-0.0509855,-0.640077][-0.708589,0.225304,-0.668686][0.156643,0.376679,0][1.12298,-0.0738426,-0.577277][-0.972214,0.0670202,-0.224295][0.148854,0.379514,0][1.12298,0.110926,-0.470601][-0.972214,0.139692,-0.187846][0.135623,0.356596,0][1.12298,0.248067,-0.307163][-0.972214,0.195514,-0.12874][0.115351,0.339586,0][1.15066,0.305943,-0.340578][-0.708588,0.602416,-0.36742][0.119495,0.332407,0][1.15066,0.153884,-0.521796][-0.708588,0.440421,-0.5513][0.141972,0.351268,0][1.15066,0.153884,-0.521796][-0.708588,0.440421,-0.5513][0.141972,0.351268,0][1.12298,0.110926,-0.470601][-0.972214,0.139692,-0.187846][0.135623,0.356596,0][1.12298,0.248067,-0.307163][-0.972214,0.195514,-0.12874][0.115351,0.339586,0][1.12298,0.321038,-0.106677][-0.972214,0.227755,-0.0541063][0.0904836,0.330535,0][1.15066,0.386853,-0.118282][-0.708588,0.691752,-0.139224][0.091923,0.322372,0][1.15066,0.305943,-0.340578][-0.708588,0.602416,-0.36742][0.119495,0.332407,0][1.15066,0.305943,-0.340578][-0.708588,0.602416,-0.36742][0.119495,0.332407,0][1.12298,0.248067,-0.307163][-0.972214,0.195514,-0.12874][0.115351,0.339586,0][1.12298,0.321038,-0.106677][-0.972214,0.227755,-0.0541063][0.0904836,0.330535,0][1.12298,0.321038,0.106676][-0.972214,0.232526,0.0270539][0.0640206,0.330535,0][1.15066,0.386852,0.118281][-0.708588,0.697651,0.105766][0.0625812,0.322372,0][1.15066,0.386853,-0.118282][-0.708588,0.691752,-0.139224][0.091923,0.322372,0][1.15066,0.386853,-0.118282][-0.708588,0.691752,-0.139224][0.091923,0.322372,0][1.12298,0.321038,-0.106677][-0.972214,0.227755,-0.0541063][0.0904836,0.330535,0][1.12298,0.321038,0.106676][-0.972214,0.232526,0.0270539][0.0640206,0.330535,0][1.12298,0.248067,0.307162][-0.972214,0.20925,0.104951][0.0391535,0.339586,0][1.15066,0.305943,0.340577][-0.708588,0.619404,0.337998][0.0350089,0.332407,0][1.15066,0.386852,0.118281][-0.708588,0.697651,0.105766][0.0625812,0.322372,0][1.15066,0.386852,0.118281][-0.708588,0.697651,0.105766][0.0625812,0.322372,0][1.12298,0.321038,0.106676][-0.972214,0.232526,0.0270539][0.0640206,0.330535,0][1.12298,0.248067,0.307162][-0.972214,0.20925,0.104951][0.0391535,0.339586,0][1.12298,0.110926,0.4706][-0.972214,0.160735,0.170189][0.0188816,0.356596,0][1.15066,0.153884,0.521794][-0.708588,0.466447,0.529462][0.0125318,0.351268,0][1.15066,0.305943,0.340577][-0.708588,0.619404,0.337998][0.0350089,0.332407,0][1.15066,0.305943,0.340577][-0.708588,0.619404,0.337998][0.0350089,0.332407,0][1.12298,0.248067,0.307162][-0.972214,0.20925,0.104951][0.0391535,0.339586,0][1.12298,0.110926,0.4706][-0.972214,0.160735,0.170189][0.0188816,0.356596,0][1.12298,-0.0738427,0.577276][-0.972214,0.092834,0.2149][0.00565014,0.379514,0][1.15066,-0.0509856,0.640076][-0.708588,0.25723,0.657066][-0.00213912,0.376679,0][1.15066,0.153884,0.521794][-0.708588,0.466447,0.529462][0.0125318,0.351268,0][1.15066,0.153884,0.521794][-0.708588,0.466447,0.529462][0.0125318,0.351268,0][1.12298,0.110926,0.4706][-0.972214,0.160735,0.170189][0.0188816,0.356596,0][1.12298,-0.0738427,0.577276][-0.972214,0.092834,0.2149][0.00565014,0.379514,0][1.12298,-0.283954,0.614325][-0.972214,0.0137355,0.233691][0.00105487,0.405575,0][1.15066,-0.283954,0.681154][-0.708588,0.0169877,0.705418][-0.00723428,0.405575,0][1.15066,-0.0509856,0.640076][-0.708588,0.25723,0.657066][-0.00213912,0.376679,0][1.15066,-0.0509856,0.640076][-0.708588,0.25723,0.657066][-0.00213912,0.376679,0][1.12298,-0.0738427,0.577276][-0.972214,0.092834,0.2149][0.00565014,0.379514,0][1.12298,-0.283954,0.614325][-0.972214,0.0137355,0.233691][0.00105487,0.405575,0][1.12298,-0.494066,0.577276][-0.972214,-0.0670196,0.224296][0.00565014,0.431636,0][1.15066,-0.516923,0.640076][-0.708588,-0.225304,0.668687][-0.00213912,0.434471,0][1.15066,-0.283954,0.681154][-0.708588,0.0169877,0.705418][-0.00723428,0.405575,0][1.15066,-0.283954,0.681154][-0.708588,0.0169877,0.705418][-0.00723428,0.405575,0][1.12298,-0.283954,0.614325][-0.972214,0.0137355,0.233691][0.00105487,0.405575,0][1.12298,-0.494066,0.577276][-0.972214,-0.0670196,0.224296][0.00565014,0.431636,0][1.12298,-0.678835,0.4706][-0.972214,-0.139691,0.187847][0.0188817,0.454553,0][1.15066,-0.721792,0.521794][-0.708588,-0.440421,0.551301][0.0125318,0.459882,0][1.15066,-0.516923,0.640076][-0.708588,-0.225304,0.668687][-0.00213912,0.434471,0][1.15066,-0.516923,0.640076][-0.708588,-0.225304,0.668687][-0.00213912,0.434471,0][1.12298,-0.494066,0.577276][-0.972214,-0.0670196,0.224296][0.00565014,0.431636,0][1.12298,-0.678835,0.4706][-0.972214,-0.139691,0.187847][0.0188817,0.454553,0][1.12298,-0.815975,0.307162][-0.972214,-0.195514,0.128741][0.0391535,0.471563,0][1.15066,-0.873852,0.340577][-0.708588,-0.602416,0.367421][0.0350089,0.478742,0][1.15066,-0.721792,0.521794][-0.708588,-0.440421,0.551301][0.0125318,0.459882,0][1.15066,-0.721792,0.521794][-0.708588,-0.440421,0.551301][0.0125318,0.459882,0][1.12298,-0.678835,0.4706][-0.972214,-0.139691,0.187847][0.0188817,0.454553,0][1.12298,-0.815975,0.307162][-0.972214,-0.195514,0.128741][0.0391535,0.471563,0][1.12298,-0.888946,0.106676][-0.972214,-0.227755,0.0541068][0.0640206,0.480614,0][1.15066,-0.954761,0.118281][-0.708588,-0.691751,0.139224][0.0625812,0.488778,0][1.15066,-0.873852,0.340577][-0.708588,-0.602416,0.367421][0.0350089,0.478742,0][1.15066,-0.873852,0.340577][-0.708588,-0.602416,0.367421][0.0350089,0.478742,0][1.12298,-0.815975,0.307162][-0.972214,-0.195514,0.128741][0.0391535,0.471563,0][1.12298,-0.888946,0.106676][-0.972214,-0.227755,0.0541068][0.0640206,0.480614,0][1.12298,-0.888946,-0.106677][-0.972214,-0.232525,-0.0270528][0.0904837,0.480614,0][1.15066,-0.954761,-0.118282][-0.708588,-0.697651,-0.105765][0.0919231,0.488778,0][1.15066,-0.954761,0.118281][-0.708588,-0.691751,0.139224][0.0625812,0.488778,0][1.15066,-0.954761,0.118281][-0.708588,-0.691751,0.139224][0.0625812,0.488778,0][1.12298,-0.888946,0.106676][-0.972214,-0.227755,0.0541068][0.0640206,0.480614,0][1.12298,-0.888946,-0.106677][-0.972214,-0.232525,-0.0270528][0.0904837,0.480614,0][1.12298,-0.815975,-0.307163][-0.972214,-0.209249,-0.104949][0.115351,0.471563,0][1.15066,-0.873852,-0.340578][-0.708588,-0.619403,-0.337997][0.119495,0.478742,0][1.15066,-0.954761,-0.118282][-0.708588,-0.697651,-0.105765][0.0919231,0.488778,0][1.15066,-0.954761,-0.118282][-0.708588,-0.697651,-0.105765][0.0919231,0.488778,0][1.12298,-0.888946,-0.106677][-0.972214,-0.232525,-0.0270528][0.0904837,0.480614,0][1.12298,-0.815975,-0.307163][-0.972214,-0.209249,-0.104949][0.115351,0.471563,0][1.12298,-0.678835,-0.470601][-0.972214,-0.160735,-0.170188][0.135623,0.454553,0][1.15066,-0.721792,-0.521796][-0.708588,-0.466447,-0.529462][0.141972,0.459882,0][1.15066,-0.873852,-0.340578][-0.708588,-0.619403,-0.337997][0.119495,0.478742,0][1.15066,-0.873852,-0.340578][-0.708588,-0.619403,-0.337997][0.119495,0.478742,0][1.12298,-0.815975,-0.307163][-0.972214,-0.209249,-0.104949][0.115351,0.471563,0][1.12298,-0.678835,-0.470601][-0.972214,-0.160735,-0.170188][0.135623,0.454553,0][1.12298,-0.494066,-0.577277][-0.972214,-0.0928339,-0.2149][0.148854,0.431636,0][1.15066,-0.516923,-0.640077][-0.708588,-0.25723,-0.657066][0.156643,0.434471,0][1.15066,-0.721792,-0.521796][-0.708588,-0.466447,-0.529462][0.141972,0.459882,0][1.15066,-0.721792,-0.521796][-0.708588,-0.466447,-0.529462][0.141972,0.459882,0][1.12298,-0.678835,-0.470601][-0.972214,-0.160735,-0.170188][0.135623,0.454553,0][1.12298,-0.494066,-0.577277][-0.972214,-0.0928339,-0.2149][0.148854,0.431636,0][1.12298,-0.283954,-0.614326][-0.972214,-0.0137351,-0.233691][0.153449,0.405575,0][1.15066,-0.283954,-0.681156][-0.708588,-0.0169874,-0.705418][0.161739,0.405575,0][1.15066,-0.516923,-0.640077][-0.708588,-0.25723,-0.657066][0.156643,0.434471,0][1.15066,-0.516923,-0.640077][-0.708588,-0.25723,-0.657066][0.156643,0.434471,0][1.12298,-0.494066,-0.577277][-0.972214,-0.0928339,-0.2149][0.148854,0.431636,0][1.12298,-0.283954,-0.614326][-0.972214,-0.0137351,-0.233691][0.153449,0.405575,0][1.12298,-0.283954,-0.614326][-0.972214,-0.0137351,-0.233691][0.153449,0.405575,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,-0.0738426,-0.577277][-0.972214,0.0670202,-0.224295][0.148854,0.379514,0][1.12298,-0.0738426,-0.577277][-0.972214,0.0670202,-0.224295][0.148854,0.379514,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,0.110926,-0.470601][-0.972214,0.139692,-0.187846][0.135623,0.356596,0][1.12298,0.110926,-0.470601][-0.972214,0.139692,-0.187846][0.135623,0.356596,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,0.248067,-0.307163][-0.972214,0.195514,-0.12874][0.115351,0.339586,0][1.12298,0.248067,-0.307163][-0.972214,0.195514,-0.12874][0.115351,0.339586,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,0.321038,-0.106677][-0.972214,0.227755,-0.0541063][0.0904836,0.330535,0][1.12298,0.321038,-0.106677][-0.972214,0.227755,-0.0541063][0.0904836,0.330535,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,0.321038,0.106676][-0.972214,0.232526,0.0270539][0.0640206,0.330535,0][1.12298,0.321038,0.106676][-0.972214,0.232526,0.0270539][0.0640206,0.330535,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,0.248067,0.307162][-0.972214,0.20925,0.104951][0.0391535,0.339586,0][1.12298,0.248067,0.307162][-0.972214,0.20925,0.104951][0.0391535,0.339586,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,0.110926,0.4706][-0.972214,0.160735,0.170189][0.0188816,0.356596,0][1.12298,0.110926,0.4706][-0.972214,0.160735,0.170189][0.0188816,0.356596,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,-0.0738427,0.577276][-0.972214,0.092834,0.2149][0.00565014,0.379514,0][1.12298,-0.0738427,0.577276][-0.972214,0.092834,0.2149][0.00565014,0.379514,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,-0.283954,0.614325][-0.972214,0.0137355,0.233691][0.00105487,0.405575,0][1.12298,-0.283954,0.614325][-0.972214,0.0137355,0.233691][0.00105487,0.405575,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,-0.494066,0.577276][-0.972214,-0.0670196,0.224296][0.00565014,0.431636,0][1.12298,-0.494066,0.577276][-0.972214,-0.0670196,0.224296][0.00565014,0.431636,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,-0.678835,0.4706][-0.972214,-0.139691,0.187847][0.0188817,0.454553,0][1.12298,-0.678835,0.4706][-0.972214,-0.139691,0.187847][0.0188817,0.454553,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,-0.815975,0.307162][-0.972214,-0.195514,0.128741][0.0391535,0.471563,0][1.12298,-0.815975,0.307162][-0.972214,-0.195514,0.128741][0.0391535,0.471563,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,-0.888946,0.106676][-0.972214,-0.227755,0.0541068][0.0640206,0.480614,0][1.12298,-0.888946,0.106676][-0.972214,-0.227755,0.0541068][0.0640206,0.480614,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,-0.888946,-0.106677][-0.972214,-0.232525,-0.0270528][0.0904837,0.480614,0][1.12298,-0.888946,-0.106677][-0.972214,-0.232525,-0.0270528][0.0904837,0.480614,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,-0.815975,-0.307163][-0.972214,-0.209249,-0.104949][0.115351,0.471563,0][1.12298,-0.815975,-0.307163][-0.972214,-0.209249,-0.104949][0.115351,0.471563,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,-0.678835,-0.470601][-0.972214,-0.160735,-0.170188][0.135623,0.454553,0][1.12298,-0.678835,-0.470601][-0.972214,-0.160735,-0.170188][0.135623,0.454553,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,-0.494066,-0.577277][-0.972214,-0.0928339,-0.2149][0.148854,0.431636,0][1.12298,-0.494066,-0.577277][-0.972214,-0.0928339,-0.2149][0.148854,0.431636,0][1.12298,-0.283954,-6.20981e-007][-1,1.87342e-007,5.14717e-007][0.0772521,0.405575,0][1.12298,-0.283954,-0.614326][-0.972214,-0.0137351,-0.233691][0.153449,0.405575,0][-1.23788,0.498359,-0.345849][-2.85398,0.787491,1.93097e-006][0.623299,0.615853,-0.20435][-1.26752,0.308662,-0.345849][-0.988012,0.154374,6.59885e-007][0.623299,0.623299,-0.483731][-1.26752,0.308662,0.354151][-1.97602,0.308748,1.33292e-006][0,0.623299,-0.483731][-1.26752,0.308662,0.354151][-1.97602,0.308748,1.33292e-006][0,0.623299,-0.483731][-1.23788,0.498359,0.354151][-2.74392,1.11186,1.86915e-006][0,0.615853,-0.20435][-1.23788,0.498359,-0.345849][-2.85398,0.787491,1.93097e-006][0.623299,0.615853,-0.20435][-1.14549,0.667793,-0.345849][-2.41313,1.71118,1.64382e-006][0.623299,0.593124,0.0447331][-1.23788,0.498359,-0.345849][-2.85398,0.787491,1.93097e-006][0.623299,0.615853,-0.20435][-1.23788,0.498359,0.354151][-2.74392,1.11186,1.86915e-006][0,0.615853,-0.20435][-1.23788,0.498359,0.354151][-2.74392,1.11186,1.86915e-006][0,0.615853,-0.20435][-1.14549,0.667793,0.354151][-2.1924,1.98614,1.49345e-006][0,0.593124,0.0447329][-1.14549,0.667793,-0.345849][-2.41313,1.71118,1.64382e-006][0.623299,0.593124,0.0447331][-0.99827,0.796168,-0.345849][-1.73599,2.4142,1.18255e-006][0.623298,0.557069,0.232923][-1.14549,0.667793,-0.345849][-2.41313,1.71118,1.64382e-006][0.623299,0.593124,0.0447331][-1.14549,0.667793,0.354151][-2.1924,1.98614,1.49345e-006][0,0.593124,0.0447329][-1.14549,0.667793,0.354151][-2.1924,1.98614,1.49345e-006][0,0.593124,0.0447329][-0.99827,0.796168,0.354151][-1.50032,2.56731,8.78431e-007][0,0.557069,0.232923][-0.99827,0.796168,-0.345849][-1.73599,2.4142,1.18255e-006][0.623298,0.557069,0.232923][-0.807155,0.885011,-0.345849][-1.08247,2.78454,5.12267e-007][0.623299,0.510352,0.362549][-0.99827,0.796168,-0.345849][-1.73599,2.4142,1.18255e-006][0.623298,0.557069,0.232923][-0.99827,0.796168,0.354151][-1.50032,2.56731,8.78431e-007][0,0.557069,0.232923][-0.99827,0.796168,0.354151][-1.50032,2.56731,8.78431e-007][0,0.557069,0.232923][-0.807155,0.885011,0.354151][-0.90031,2.84866,3.4741e-007][0,0.510352,0.362549][-0.807155,0.885011,-0.345849][-1.08247,2.78454,5.12267e-007][0.623299,0.510352,0.362549][-0.57733,0.941675,-0.345849][-0.593289,2.93527,2.62343e-007][0.623299,0.45423,0.44448][-0.807155,0.885011,-0.345849][-1.08247,2.78454,5.12267e-007][0.623299,0.510352,0.362549][-0.807155,0.885011,0.354151][-0.90031,2.84866,3.4741e-007][0,0.510352,0.362549][-0.807155,0.885011,0.354151][-0.90031,2.84866,3.4741e-007][0,0.510352,0.362549][-0.57733,0.941675,0.354151][-0.468433,2.95777,2.19817e-007][0,0.45423,0.444479][-0.57733,0.941675,-0.345849][-0.593289,2.93527,2.62343e-007][0.623299,0.45423,0.44448][-0.309723,0.972526,-0.345849][-0.26013,2.98636,0][0.623299,0.388921,0.488106][-0.57733,0.941675,-0.345849][-0.593289,2.93527,2.62343e-007][0.623299,0.45423,0.44448][-0.57733,0.941675,0.354151][-0.468433,2.95777,2.19817e-007][0,0.45423,0.444479][-0.57733,0.941675,0.354151][-0.468433,2.95777,2.19817e-007][0,0.45423,0.444479][-0.309722,0.972526,0.354151][-0.176681,2.99245,0][0,0.388921,0.488106][-0.309723,0.972526,-0.345849][-0.26013,2.98636,0][0.623299,0.388921,0.488106][-0.00428641,0.982022,-0.34585][-0.0312546,2.99856,0][0.623299,0.31441,0.5][-0.309723,0.972526,-0.345849][-0.26013,2.98636,0][0.623299,0.388921,0.488106][-0.309722,0.972526,0.354151][-0.176681,2.99245,0][0,0.388921,0.488106][-0.309722,0.972526,0.354151][-0.176681,2.99245,0][0,0.388921,0.488106][-0.00428617,0.982022,0.35415][0.0307232,2.99856,-1.85944e-007][0,0.31441,0.5][-0.00428641,0.982022,-0.34585][-0.0312546,2.99856,0][0.623299,0.31441,0.5][0.302677,0.972532,-0.34585][0.174497,2.99267,-4.23319e-007][0.623299,0.239548,0.4839][-0.00428641,0.982022,-0.34585][-0.0312546,2.99856,0][0.623299,0.31441,0.5][-0.00428617,0.982022,0.35415][0.0307232,2.99856,-1.85944e-007][0,0.31441,0.5][-0.00428617,0.982022,0.35415][0.0307232,2.99856,-1.85944e-007][0,0.31441,0.5][0.302678,0.972533,0.35415][0.256293,2.98678,-4.89563e-007][0,0.239548,0.4839][0.302677,0.972532,-0.34585][0.174497,2.99267,-4.23319e-007][0.623299,0.239548,0.4839][0.57415,0.941742,-0.34585][0.45886,2.95962,-4.62596e-007][0.623299,0.173367,0.436651][0.302677,0.972532,-0.34585][0.174497,2.99267,-4.23319e-007][0.623299,0.239548,0.4839][0.302678,0.972533,0.35415][0.256293,2.98678,-4.89563e-007][0,0.239548,0.4839][0.302678,0.972533,0.35415][0.256293,2.98678,-4.89563e-007][0,0.239548,0.4839][0.57415,0.941742,0.35415][0.57963,2.93836,-5.40555e-007][0,0.173367,0.43665][0.57415,0.941742,-0.34585][0.45886,2.95962,-4.62596e-007][0.623299,0.173367,0.436651][0.809114,0.885327,-0.34585][0.876092,2.85719,-8.63055e-007][0.623299,0.11612,0.351886][0.57415,0.941742,-0.34585][0.45886,2.95962,-4.62596e-007][0.623299,0.173367,0.436651][0.57415,0.941742,0.35415][0.57963,2.93836,-5.40555e-007][0,0.173367,0.43665][0.57415,0.941742,0.35415][0.57963,2.93836,-5.40555e-007][0,0.173367,0.43665][0.809114,0.885327,0.35415][1.05178,2.79729,-9.13056e-007][0,0.11612,0.351885][0.809114,0.885327,-0.34585][0.876092,2.85719,-8.63055e-007][0.623299,0.11612,0.351886][1.00583,0.797119,-0.34585][1.45886,2.59285,-9.35556e-007][0.623299,0.0682399,0.220526][0.809114,0.885327,-0.34585][0.876092,2.85719,-8.63055e-007][0.623299,0.11612,0.351886][0.809114,0.885327,0.35415][1.05178,2.79729,-9.13056e-007][0,0.11612,0.351885][0.809114,0.885327,0.35415][1.05178,2.79729,-9.13056e-007][0,0.11612,0.351885][1.00583,0.797119,0.35415][1.69024,2.44832,-9.94313e-007][0,0.0682399,0.220526][1.00583,0.797119,-0.34585][1.45886,2.59285,-9.35556e-007][0.623299,0.0682399,0.220526][1.15879,0.669528,-0.34585][2.14821,2.03393,-1.31311e-006][0.623299,0.0310746,0.0314227][1.00583,0.797119,-0.34585][1.45886,2.59285,-9.35556e-007][0.623299,0.0682399,0.220526][1.00583,0.797119,0.35415][1.69024,2.44832,-9.94313e-007][0,0.0682399,0.220526][1.00583,0.797119,0.35415][1.69024,2.44832,-9.94313e-007][0,0.0682399,0.220526][1.15879,0.669528,0.35415][2.3748,1.76408,-1.66137e-006][0,0.0310746,0.0314227][1.15879,0.669528,-0.34585][2.14821,2.03393,-1.31311e-006][0.623299,0.0310746,0.0314227][1.25624,0.499869,-0.34585][2.72073,1.16011,-1.90325e-006][0.623299,0.00749806,-0.219299][1.15879,0.669528,-0.34585][2.14821,2.03393,-1.31311e-006][0.623299,0.0310746,0.0314227][1.15879,0.669528,0.35415][2.3748,1.76408,-1.66137e-006][0,0.0310746,0.0314227][1.15879,0.669528,0.35415][2.3748,1.76408,-1.66137e-006][0,0.0310746,0.0314227][1.25624,0.499869,0.35415][2.84007,0.825989,-1.87939e-006][1.48606e-007,0.00749806,-0.219299][1.25624,0.499869,-0.34585][2.72073,1.16011,-1.90325e-006][0.623299,0.00749806,-0.219299][1.28787,0.309562,-0.34585][1.97294,0.327911,-1.20388e-006][0.623299,0,-0.5][1.25624,0.499869,-0.34585][2.72073,1.16011,-1.90325e-006][0.623299,0.00749806,-0.219299][1.25624,0.499869,0.35415][2.84007,0.825989,-1.87939e-006][1.48606e-007,0.00749806,-0.219299][1.25624,0.499869,0.35415][2.84007,0.825989,-1.87939e-006][1.48606e-007,0.00749806,-0.219299][1.28787,0.309562,0.35415][0.986468,0.163955,-5.03983e-007][0,0,-0.5][1.28787,0.309562,-0.34585][1.97294,0.327911,-1.20388e-006][0.623299,0,-0.5][-1.1686,0.29402,0.354151][1.97845,-0.292839,-1.33524e-006][0.298237,0.837201,0][-1.1686,0.29402,-0.345849][0.989223,-0.146419,-6.61387e-007][0.385061,0.837201,0][-1.14305,0.466623,-0.345849][2.85653,-0.771349,-1.93339e-006][0.385061,0.85861,0][-1.14305,0.466623,-0.345849][2.85653,-0.771349,-1.93339e-006][0.385061,0.85861,0][-1.14305,0.466623,0.354151][2.74539,-1.10344,-1.8294e-006][0.298237,0.85861,0][-1.1686,0.29402,0.354151][1.97845,-0.292839,-1.33524e-006][0.298237,0.837201,0][-1.14305,0.466623,0.354151][2.74539,-1.10344,-1.8294e-006][0.298237,0.85861,0][-1.14305,0.466623,-0.345849][2.85653,-0.771349,-1.93339e-006][0.385061,0.85861,0][-1.0676,0.60508,-0.345849][2.41104,-1.71276,-1.53729e-006][0.385061,0.875783,0][-1.0676,0.60508,-0.345849][2.41104,-1.71276,-1.53729e-006][0.385061,0.875783,0][-1.0676,0.60508,0.354151][2.18783,-1.98999,-1.25654e-006][0.298237,0.875783,0][-1.14305,0.466623,0.354151][2.74539,-1.10344,-1.8294e-006][0.298237,0.85861,0][-1.0676,0.60508,0.354151][2.18783,-1.98999,-1.25654e-006][0.451564,0.265259,0][-1.0676,0.60508,-0.345849][2.41104,-1.71276,-1.53729e-006][0.451564,0.352082,0][-0.944027,0.712158,-0.345849][1.72902,-2.41934,-8.30142e-007][0.436237,0.352082,0][-0.944027,0.712158,-0.345849][1.72902,-2.41934,-8.30142e-007][0.436237,0.352082,0][-0.944027,0.712158,0.354151][1.49343,-2.57146,-5.91202e-007][0.436237,0.265259,0][-1.0676,0.60508,0.354151][2.18783,-1.98999,-1.25654e-006][0.451564,0.265259,0][-0.944027,0.712158,0.354151][1.49343,-2.57146,-5.91202e-007][0.436237,0.265259,0][-0.944027,0.712158,-0.345849][1.72902,-2.41934,-8.30142e-007][0.436237,0.352082,0][-0.774124,0.790624,-0.345849][1.07686,-2.78691,-3.54974e-007][0.415163,0.352082,0][-0.774124,0.790624,-0.345849][1.07686,-2.78691,-3.54974e-007][0.415163,0.352082,0][-0.774124,0.790624,0.354151][0.895895,-2.85024,-1.39747e-007][0.415163,0.265259,0][-0.944027,0.712158,0.354151][1.49343,-2.57146,-5.91202e-007][0.436237,0.265259,0][-0.774124,0.790624,0.354151][0.895895,-2.85024,-1.39747e-007][0.415163,0.265259,0][-0.774124,0.790624,-0.345849][1.07686,-2.78691,-3.54974e-007][0.415163,0.352082,0][-0.559674,0.843246,-0.345849][0.59073,-2.93585,1.33378e-007][0.388564,0.352082,0][-0.559674,0.843246,-0.345849][0.59073,-2.93585,1.33378e-007][0.388564,0.352082,0][-0.559674,0.843246,0.354151][0.466533,-2.95813,1.56246e-007][0.388564,0.265259,0][-0.774124,0.790624,0.354151][0.895895,-2.85024,-1.39747e-007][0.415163,0.265259,0][-0.559674,0.843246,0.354151][0.466533,-2.95813,1.56246e-007][0.388564,0.265259,0][-0.559674,0.843246,-0.345849][0.59073,-2.93585,1.33378e-007][0.388564,0.352082,0][-0.302463,0.872789,-0.345849][0.259172,-2.98646,0][0.356661,0.352082,0][-0.302463,0.872789,-0.345849][0.259172,-2.98646,0][0.356661,0.352082,0][-0.302463,0.872789,0.354151][0.17601,-2.99251,0][0.356661,0.265259,0][-0.559674,0.843246,0.354151][0.466533,-2.95813,1.56246e-007][0.388564,0.265259,0][-0.302463,0.872789,0.354151][0.17601,-2.99251,0][0.356661,0.265259,0][-0.302463,0.872789,-0.345849][0.259172,-2.98646,0][0.356661,0.352082,0][-0.00427806,0.882022,-0.34585][0.0311151,-2.99857,3.24567e-007][0.319676,0.352082,0][-0.00427806,0.882022,-0.34585][0.0311151,-2.99857,3.24567e-007][0.319676,0.352082,0][-0.00427783,0.882022,0.35415][-0.030618,-2.99857,3.56107e-007][0.319676,0.265259,0][-0.302463,0.872789,0.354151][0.17601,-2.99251,0][0.356661,0.265259,0][-0.00427783,0.882022,0.35415][-0.030618,-2.99857,3.56107e-007][0.319676,0.265259,0][-0.00427806,0.882022,-0.34585][0.0311151,-2.99857,3.24567e-007][0.319676,0.352082,0][0.295516,0.872789,-0.34585][-0.17389,-2.99272,2.53816e-007][0.282492,0.352082,0][0.295516,0.872789,-0.34585][-0.17389,-2.99272,2.53816e-007][0.282492,0.352082,0][0.295516,0.872789,0.35415][-0.255429,-2.98687,1.30498e-007][0.282492,0.265259,0][-0.00427783,0.882022,0.35415][-0.030618,-2.99857,3.56107e-007][0.319676,0.265259,0][0.295516,0.872789,0.35415][-0.255429,-2.98687,1.30498e-007][0.282492,0.265259,0][0.295516,0.872789,-0.34585][-0.17389,-2.99272,2.53816e-007][0.282492,0.352082,0][0.556876,0.843246,-0.34585][-0.457149,-2.95994,2.33556e-007][0.250074,0.352082,0][0.556876,0.843246,-0.34585][-0.457149,-2.95994,2.33556e-007][0.250074,0.352082,0][0.556877,0.843246,0.35415][-0.577331,-2.93886,2.94956e-007][0.250074,0.265259,0][0.295516,0.872789,0.35415][-0.255429,-2.98687,1.30498e-007][0.282492,0.265259,0][0.556877,0.843246,0.35415][-0.577331,-2.93886,2.94956e-007][0.250074,0.265259,0][0.556876,0.843246,-0.34585][-0.457149,-2.95994,2.33556e-007][0.250074,0.352082,0][0.777,0.790624,-0.34585][-0.872039,-2.85861,4.45522e-007][0.222771,0.352082,0][0.777,0.790624,-0.34585][-0.872039,-2.85861,4.45522e-007][0.222771,0.352082,0][0.777001,0.790624,0.35415][-1.04657,-2.79942,5.34687e-007][0.222771,0.265259,0][0.556877,0.843246,0.35415][-0.577331,-2.93886,2.94956e-007][0.250074,0.265259,0][0.777001,0.790624,0.35415][-1.04657,-2.79942,5.34687e-007][0.222771,0.265259,0][0.777,0.790624,-0.34585][-0.872039,-2.85861,4.45522e-007][0.222771,0.352082,0][0.953086,0.712157,-0.34585][-1.45204,-2.59688,7.41845e-007][0.200931,0.352082,0][0.953086,0.712157,-0.34585][-1.45204,-2.59688,7.41845e-007][0.200931,0.352082,0][0.953086,0.712157,0.35415][-1.68299,-2.45352,1.03405e-006][0.200931,0.265259,0][0.777001,0.790624,0.35415][-1.04657,-2.79942,5.34687e-007][0.222771,0.265259,0][0.953086,0.712157,0.35415][-1.68299,-2.45352,1.03405e-006][0.200931,0.265259,0][0.953086,0.712157,-0.34585][-1.45204,-2.59688,7.41845e-007][0.200931,0.352082,0][1.08233,0.605079,-0.34585][-2.1429,-2.03852,1.4591e-006][0.1849,0.352082,0][1.08233,0.605079,-0.34585][-2.1429,-2.03852,1.4591e-006][0.1849,0.352082,0][1.08233,0.605079,0.35415][-2.37185,-1.76689,1.61851e-006][0.1849,0.265259,0][0.953086,0.712157,0.35415][-1.68299,-2.45352,1.03405e-006][0.200931,0.265259,0][1.08233,0.605079,0.35415][-2.37185,-1.76689,1.61851e-006][0.549025,0.910739,0][1.08233,0.605079,-0.34585][-2.1429,-2.03852,1.4591e-006][0.635849,0.910739,0][1.16193,0.466622,-0.34585][-2.72172,-1.15226,1.63627e-006][0.635849,0.927912,0][1.16193,0.466622,-0.34585][-2.72172,-1.15226,1.63627e-006][0.635849,0.927912,0][1.16193,0.466622,0.35415][-2.84263,-0.809268,1.50797e-006][0.549025,0.927912,0][1.08233,0.605079,0.35415][-2.37185,-1.76689,1.61851e-006][0.549025,0.910739,0][1.16193,0.466622,0.35415][-2.84263,-0.809268,1.50797e-006][0.549025,0.927912,0][1.16193,0.466622,-0.34585][-2.72172,-1.15226,1.63627e-006][0.635849,0.927912,0][1.18909,0.294019,-0.34585][-1.9757,-0.310849,1.02261e-006][0.635849,0.949321,0][1.18909,0.294019,-0.34585][-1.9757,-0.310849,1.02261e-006][0.635849,0.949321,0][1.18909,0.294019,0.35415][-0.987848,-0.155424,5.04688e-007][0.549025,0.949321,0][1.16193,0.466622,0.35415][-2.84263,-0.809268,1.50797e-006][0.549025,0.927912,0][-1.1686,0.29402,0.354151][1.97845,-0.292839,-1.33524e-006][0.95258,0.467338,0][-1.14305,0.466623,0.354151][2.74539,-1.10344,-1.8294e-006][0.949411,0.445929,0][-1.23788,0.498359,0.354151][-2.74392,1.11186,1.86915e-006][0.961173,0.441993,0][-1.23788,0.498359,0.354151][-2.74392,1.11186,1.86915e-006][0.961173,0.441993,0][-1.26752,0.308662,0.354151][-1.97602,0.308748,1.33292e-006][0.96485,0.465521,0][-1.1686,0.29402,0.354151][1.97845,-0.292839,-1.33524e-006][0.95258,0.467338,0][-1.14305,0.466623,-0.345849][2.85653,-0.771349,-1.93339e-006][0.505385,0.886352,0][-1.1686,0.29402,-0.345849][0.989223,-0.146419,-6.61387e-007][0.508554,0.864943,0][-1.26752,0.308662,-0.345849][-0.988012,0.154374,6.59885e-007][0.520823,0.866759,0][-1.26752,0.308662,-0.345849][-0.988012,0.154374,6.59885e-007][0.520823,0.866759,0][-1.23788,0.498359,-0.345849][-2.85398,0.787491,1.93097e-006][0.517147,0.890288,0][-1.14305,0.466623,-0.345849][2.85653,-0.771349,-1.93339e-006][0.505385,0.886352,0][-1.1686,0.29402,-0.345849][0.989223,-0.146419,-6.61387e-007][0.0360453,0.918754,0][-1.1686,0.29402,0.354151][1.97845,-0.292839,-1.33524e-006][0.122869,0.918754,0][-1.26752,0.308662,0.354151][-1.97602,0.308748,1.33292e-006][0.122869,0.931023,0][-1.26752,0.308662,0.354151][-1.97602,0.308748,1.33292e-006][0.122869,0.931023,0][-1.26752,0.308662,-0.345849][-0.988012,0.154374,6.59885e-007][0.0360453,0.931023,0][-1.1686,0.29402,-0.345849][0.989223,-0.146419,-6.61387e-007][0.0360453,0.918754,0][-1.14305,0.466623,0.354151][2.74539,-1.10344,-1.8294e-006][0.949411,0.445929,0][-1.0676,0.60508,0.354151][2.18783,-1.98999,-1.25654e-006][0.940053,0.428756,0][-1.14549,0.667793,0.354151][-2.1924,1.98614,1.49345e-006][0.949714,0.420977,0][-1.14549,0.667793,0.354151][-2.1924,1.98614,1.49345e-006][0.949714,0.420977,0][-1.23788,0.498359,0.354151][-2.74392,1.11186,1.86915e-006][0.961173,0.441993,0][-1.14305,0.466623,0.354151][2.74539,-1.10344,-1.8294e-006][0.949411,0.445929,0][-1.0676,0.60508,-0.345849][2.41104,-1.71276,-1.53729e-006][0.496026,0.903525,0][-1.14305,0.466623,-0.345849][2.85653,-0.771349,-1.93339e-006][0.505385,0.886352,0][-1.23788,0.498359,-0.345849][-2.85398,0.787491,1.93097e-006][0.517147,0.890288,0][-1.23788,0.498359,-0.345849][-2.85398,0.787491,1.93097e-006][0.517147,0.890288,0][-1.14549,0.667793,-0.345849][-2.41313,1.71118,1.64382e-006][0.505687,0.911304,0][-1.0676,0.60508,-0.345849][2.41104,-1.71276,-1.53729e-006][0.496026,0.903525,0][-1.0676,0.60508,0.354151][2.18783,-1.98999,-1.25654e-006][0.940053,0.428756,0][-0.944027,0.712158,0.354151][1.49343,-2.57146,-5.91202e-007][0.924725,0.415474,0][-0.99827,0.796168,0.354151][-1.50032,2.56731,8.78431e-007][0.931453,0.405054,0][-0.99827,0.796168,0.354151][-1.50032,2.56731,8.78431e-007][0.931453,0.405054,0][-1.14549,0.667793,0.354151][-2.1924,1.98614,1.49345e-006][0.949714,0.420977,0][-1.0676,0.60508,0.354151][2.18783,-1.98999,-1.25654e-006][0.940053,0.428756,0][-0.944027,0.712158,-0.345849][1.72902,-2.41934,-8.30142e-007][0.480699,0.916806,0][-1.0676,0.60508,-0.345849][2.41104,-1.71276,-1.53729e-006][0.496026,0.903525,0][-1.14549,0.667793,-0.345849][-2.41313,1.71118,1.64382e-006][0.505687,0.911304,0][-1.14549,0.667793,-0.345849][-2.41313,1.71118,1.64382e-006][0.505687,0.911304,0][-0.99827,0.796168,-0.345849][-1.73599,2.4142,1.18255e-006][0.487427,0.927226,0][-0.944027,0.712158,-0.345849][1.72902,-2.41934,-8.30142e-007][0.480699,0.916806,0][-0.944027,0.712158,0.354151][1.49343,-2.57146,-5.91202e-007][0.924725,0.415474,0][-0.774124,0.790624,0.354151][0.895895,-2.85024,-1.39747e-007][0.903652,0.405742,0][-0.807155,0.885011,0.354151][-0.90031,2.84866,3.4741e-007][0.907749,0.394034,0][-0.807155,0.885011,0.354151][-0.90031,2.84866,3.4741e-007][0.907749,0.394034,0][-0.99827,0.796168,0.354151][-1.50032,2.56731,8.78431e-007][0.931453,0.405054,0][-0.944027,0.712158,0.354151][1.49343,-2.57146,-5.91202e-007][0.924725,0.415474,0][-0.774124,0.790624,-0.345849][1.07686,-2.78691,-3.54974e-007][0.459625,0.926539,0][-0.944027,0.712158,-0.345849][1.72902,-2.41934,-8.30142e-007][0.480699,0.916806,0][-0.99827,0.796168,-0.345849][-1.73599,2.4142,1.18255e-006][0.487427,0.927226,0][-0.99827,0.796168,-0.345849][-1.73599,2.4142,1.18255e-006][0.487427,0.927226,0][-0.807155,0.885011,-0.345849][-1.08247,2.78454,5.12267e-007][0.463722,0.938246,0][-0.774124,0.790624,-0.345849][1.07686,-2.78691,-3.54974e-007][0.459625,0.926539,0][-0.774124,0.790624,0.354151][0.895895,-2.85024,-1.39747e-007][0.903652,0.405742,0][-0.559674,0.843246,0.354151][0.466533,-2.95813,1.56246e-007][0.877053,0.399215,0][-0.57733,0.941675,0.354151][-0.468433,2.95777,2.19817e-007][0.879243,0.387006,0][-0.57733,0.941675,0.354151][-0.468433,2.95777,2.19817e-007][0.879243,0.387006,0][-0.807155,0.885011,0.354151][-0.90031,2.84866,3.4741e-007][0.907749,0.394034,0][-0.774124,0.790624,0.354151][0.895895,-2.85024,-1.39747e-007][0.903652,0.405742,0][-0.559674,0.843246,-0.345849][0.59073,-2.93585,1.33378e-007][0.433026,0.933066,0][-0.774124,0.790624,-0.345849][1.07686,-2.78691,-3.54974e-007][0.459625,0.926539,0][-0.807155,0.885011,-0.345849][-1.08247,2.78454,5.12267e-007][0.463722,0.938246,0][-0.807155,0.885011,-0.345849][-1.08247,2.78454,5.12267e-007][0.463722,0.938246,0][-0.57733,0.941675,-0.345849][-0.593289,2.93527,2.62343e-007][0.435216,0.945274,0][-0.559674,0.843246,-0.345849][0.59073,-2.93585,1.33378e-007][0.433026,0.933066,0][-0.559674,0.843246,0.354151][0.466533,-2.95813,1.56246e-007][0.877053,0.399215,0][-0.302463,0.872789,0.354151][0.17601,-2.99251,0][0.84515,0.39555,0][-0.309722,0.972526,0.354151][-0.176681,2.99245,0][0.84605,0.38318,0][-0.309722,0.972526,0.354151][-0.176681,2.99245,0][0.84605,0.38318,0][-0.57733,0.941675,0.354151][-0.468433,2.95777,2.19817e-007][0.879243,0.387006,0][-0.559674,0.843246,0.354151][0.466533,-2.95813,1.56246e-007][0.877053,0.399215,0][-0.302463,0.872789,-0.345849][0.259172,-2.98646,0][0.401123,0.93673,0][-0.559674,0.843246,-0.345849][0.59073,-2.93585,1.33378e-007][0.433026,0.933066,0][-0.57733,0.941675,-0.345849][-0.593289,2.93527,2.62343e-007][0.435216,0.945274,0][-0.57733,0.941675,-0.345849][-0.593289,2.93527,2.62343e-007][0.435216,0.945274,0][-0.309723,0.972526,-0.345849][-0.26013,2.98636,0][0.402024,0.949101,0][-0.302463,0.872789,-0.345849][0.259172,-2.98646,0][0.401123,0.93673,0][-0.302463,0.872789,0.354151][0.17601,-2.99251,0][0.84515,0.39555,0][-0.00427783,0.882022,0.35415][-0.030618,-2.99857,3.56107e-007][0.808165,0.394405,0][-0.00428617,0.982022,0.35415][0.0307232,2.99856,-1.85944e-007][0.808166,0.382002,0][-0.00428617,0.982022,0.35415][0.0307232,2.99856,-1.85944e-007][0.808166,0.382002,0][-0.309722,0.972526,0.354151][-0.176681,2.99245,0][0.84605,0.38318,0][-0.302463,0.872789,0.354151][0.17601,-2.99251,0][0.84515,0.39555,0][-0.00427806,0.882022,-0.34585][0.0311151,-2.99857,3.24567e-007][0.364138,0.937875,0][-0.302463,0.872789,-0.345849][0.259172,-2.98646,0][0.401123,0.93673,0][-0.309723,0.972526,-0.345849][-0.26013,2.98636,0][0.402024,0.949101,0][-0.309723,0.972526,-0.345849][-0.26013,2.98636,0][0.402024,0.949101,0][-0.00428641,0.982022,-0.34585][-0.0312546,2.99856,0][0.364139,0.950279,0][-0.00427806,0.882022,-0.34585][0.0311151,-2.99857,3.24567e-007][0.364138,0.937875,0][-0.00427783,0.882022,0.35415][-0.030618,-2.99857,3.56107e-007][0.808165,0.394405,0][0.295516,0.872789,0.35415][-0.255429,-2.98687,1.30498e-007][0.77098,0.39555,0][0.302678,0.972533,0.35415][0.256293,2.98678,-4.89563e-007][0.770092,0.383179,0][0.302678,0.972533,0.35415][0.256293,2.98678,-4.89563e-007][0.770092,0.383179,0][-0.00428617,0.982022,0.35415][0.0307232,2.99856,-1.85944e-007][0.808166,0.382002,0][-0.00427783,0.882022,0.35415][-0.030618,-2.99857,3.56107e-007][0.808165,0.394405,0][0.295516,0.872789,-0.34585][-0.17389,-2.99272,2.53816e-007][0.326954,0.93673,0][-0.00427806,0.882022,-0.34585][0.0311151,-2.99857,3.24567e-007][0.364138,0.937875,0][-0.00428641,0.982022,-0.34585][-0.0312546,2.99856,0][0.364139,0.950279,0][-0.00428641,0.982022,-0.34585][-0.0312546,2.99856,0][0.364139,0.950279,0][0.302677,0.972532,-0.34585][0.174497,2.99267,-4.23319e-007][0.326065,0.949102,0][0.295516,0.872789,-0.34585][-0.17389,-2.99272,2.53816e-007][0.326954,0.93673,0][0.295516,0.872789,0.35415][-0.255429,-2.98687,1.30498e-007][0.77098,0.39555,0][0.556877,0.843246,0.35415][-0.577331,-2.93886,2.94956e-007][0.738562,0.399215,0][0.57415,0.941742,0.35415][0.57963,2.93836,-5.40555e-007][0.73642,0.386998,0][0.57415,0.941742,0.35415][0.57963,2.93836,-5.40555e-007][0.73642,0.386998,0][0.302678,0.972533,0.35415][0.256293,2.98678,-4.89563e-007][0.770092,0.383179,0][0.295516,0.872789,0.35415][-0.255429,-2.98687,1.30498e-007][0.77098,0.39555,0][0.556876,0.843246,-0.34585][-0.457149,-2.95994,2.33556e-007][0.294536,0.933066,0][0.295516,0.872789,-0.34585][-0.17389,-2.99272,2.53816e-007][0.326954,0.93673,0][0.302677,0.972532,-0.34585][0.174497,2.99267,-4.23319e-007][0.326065,0.949102,0][0.302677,0.972532,-0.34585][0.174497,2.99267,-4.23319e-007][0.326065,0.949102,0][0.57415,0.941742,-0.34585][0.45886,2.95962,-4.62596e-007][0.292394,0.945283,0][0.556876,0.843246,-0.34585][-0.457149,-2.95994,2.33556e-007][0.294536,0.933066,0][0.556877,0.843246,0.35415][-0.577331,-2.93886,2.94956e-007][0.738562,0.399215,0][0.777001,0.790624,0.35415][-1.04657,-2.79942,5.34687e-007][0.711259,0.405742,0][0.809114,0.885327,0.35415][1.05178,2.79729,-9.13056e-007][0.707276,0.393995,0][0.809114,0.885327,0.35415][1.05178,2.79729,-9.13056e-007][0.707276,0.393995,0][0.57415,0.941742,0.35415][0.57963,2.93836,-5.40555e-007][0.73642,0.386998,0][0.556877,0.843246,0.35415][-0.577331,-2.93886,2.94956e-007][0.738562,0.399215,0][0.777,0.790624,-0.34585][-0.872039,-2.85861,4.45522e-007][0.267233,0.926539,0][0.556876,0.843246,-0.34585][-0.457149,-2.95994,2.33556e-007][0.294536,0.933066,0][0.57415,0.941742,-0.34585][0.45886,2.95962,-4.62596e-007][0.292394,0.945283,0][0.57415,0.941742,-0.34585][0.45886,2.95962,-4.62596e-007][0.292394,0.945283,0][0.809114,0.885327,-0.34585][0.876092,2.85719,-8.63055e-007][0.26325,0.938285,0][0.777,0.790624,-0.34585][-0.872039,-2.85861,4.45522e-007][0.267233,0.926539,0][0.777001,0.790624,0.35415][-1.04657,-2.79942,5.34687e-007][0.711259,0.405742,0][0.953086,0.712157,0.35415][-1.68299,-2.45352,1.03405e-006][0.689419,0.415474,0][1.00583,0.797119,0.35415][1.69024,2.44832,-9.94313e-007][0.682877,0.404936,0][1.00583,0.797119,0.35415][1.69024,2.44832,-9.94313e-007][0.682877,0.404936,0][0.809114,0.885327,0.35415][1.05178,2.79729,-9.13056e-007][0.707276,0.393995,0][0.777001,0.790624,0.35415][-1.04657,-2.79942,5.34687e-007][0.711259,0.405742,0][0.953086,0.712157,-0.34585][-1.45204,-2.59688,7.41845e-007][0.245393,0.916806,0][0.777,0.790624,-0.34585][-0.872039,-2.85861,4.45522e-007][0.267233,0.926539,0][0.809114,0.885327,-0.34585][0.876092,2.85719,-8.63055e-007][0.26325,0.938285,0][0.809114,0.885327,-0.34585][0.876092,2.85719,-8.63055e-007][0.26325,0.938285,0][1.00583,0.797119,-0.34585][1.45886,2.59285,-9.35556e-007][0.238851,0.927344,0][0.953086,0.712157,-0.34585][-1.45204,-2.59688,7.41845e-007][0.245393,0.916806,0][0.953086,0.712157,0.35415][-1.68299,-2.45352,1.03405e-006][0.689419,0.415474,0][1.08233,0.605079,0.35415][-2.37185,-1.76689,1.61851e-006][0.673388,0.428756,0][1.15879,0.669528,0.35415][2.3748,1.76408,-1.66137e-006][0.663904,0.420762,0][1.15879,0.669528,0.35415][2.3748,1.76408,-1.66137e-006][0.663904,0.420762,0][1.00583,0.797119,0.35415][1.69024,2.44832,-9.94313e-007][0.682877,0.404936,0][0.953086,0.712157,0.35415][-1.68299,-2.45352,1.03405e-006][0.689419,0.415474,0][1.08233,0.605079,-0.34585][-2.1429,-2.03852,1.4591e-006][0.229362,0.903525,0][0.953086,0.712157,-0.34585][-1.45204,-2.59688,7.41845e-007][0.245393,0.916806,0][1.00583,0.797119,-0.34585][1.45886,2.59285,-9.35556e-007][0.238851,0.927344,0][1.00583,0.797119,-0.34585][1.45886,2.59285,-9.35556e-007][0.238851,0.927344,0][1.15879,0.669528,-0.34585][2.14821,2.03393,-1.31311e-006][0.219878,0.911519,0][1.08233,0.605079,-0.34585][-2.1429,-2.03852,1.4591e-006][0.229362,0.903525,0][1.08233,0.605079,0.35415][-2.37185,-1.76689,1.61851e-006][0.673388,0.428756,0][1.16193,0.466622,0.35415][-2.84263,-0.809268,1.50797e-006][0.663515,0.445929,0][1.25624,0.499869,0.35415][2.84007,0.825989,-1.87939e-006][0.651817,0.441805,0][1.25624,0.499869,0.35415][2.84007,0.825989,-1.87939e-006][0.651817,0.441805,0][1.15879,0.669528,0.35415][2.3748,1.76408,-1.66137e-006][0.663904,0.420762,0][1.08233,0.605079,0.35415][-2.37185,-1.76689,1.61851e-006][0.673388,0.428756,0][1.16193,0.466622,-0.34585][-2.72172,-1.15226,1.63627e-006][0.219489,0.886352,0][1.08233,0.605079,-0.34585][-2.1429,-2.03852,1.4591e-006][0.229362,0.903525,0][1.15879,0.669528,-0.34585][2.14821,2.03393,-1.31311e-006][0.219878,0.911519,0][1.15879,0.669528,-0.34585][2.14821,2.03393,-1.31311e-006][0.219878,0.911519,0][1.25624,0.499869,-0.34585][2.72073,1.16011,-1.90325e-006][0.207791,0.890475,0][1.16193,0.466622,-0.34585][-2.72172,-1.15226,1.63627e-006][0.219489,0.886352,0][1.16193,0.466622,0.35415][-2.84263,-0.809268,1.50797e-006][0.663515,0.445929,0][1.18909,0.294019,0.35415][-0.987848,-0.155424,5.04688e-007][0.660146,0.467338,0][1.28787,0.309562,0.35415][0.986468,0.163955,-5.03983e-007][0.647894,0.46541,0][1.28787,0.309562,0.35415][0.986468,0.163955,-5.03983e-007][0.647894,0.46541,0][1.25624,0.499869,0.35415][2.84007,0.825989,-1.87939e-006][0.651817,0.441805,0][1.16193,0.466622,0.35415][-2.84263,-0.809268,1.50797e-006][0.663515,0.445929,0][1.18909,0.294019,0.35415][-0.987848,-0.155424,5.04688e-007][0.125281,0.977322,0][1.18909,0.294019,-0.34585][-1.9757,-0.310849,1.02261e-006][0.0384567,0.977322,0][1.28787,0.309562,-0.34585][1.97294,0.327911,-1.20388e-006][0.0384567,0.965069,0][1.28787,0.309562,-0.34585][1.97294,0.327911,-1.20388e-006][0.0384567,0.965069,0][1.28787,0.309562,0.35415][0.986468,0.163955,-5.03983e-007][0.125281,0.965069,0][1.18909,0.294019,0.35415][-0.987848,-0.155424,5.04688e-007][0.125281,0.977322,0][1.18909,0.294019,-0.34585][-1.9757,-0.310849,1.02261e-006][0.21612,0.864943,0][1.16193,0.466622,-0.34585][-2.72172,-1.15226,1.63627e-006][0.219489,0.886352,0][1.25624,0.499869,-0.34585][2.72073,1.16011,-1.90325e-006][0.207791,0.890475,0][1.25624,0.499869,-0.34585][2.72073,1.16011,-1.90325e-006][0.207791,0.890475,0][1.28787,0.309562,-0.34585][1.97294,0.327911,-1.20388e-006][0.203868,0.866871,0][1.18909,0.294019,-0.34585][-1.9757,-0.310849,1.02261e-006][0.21612,0.864943,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,-0.283954,-0.614325][0.972214,0.0137354,-0.233691][0.54332,0.121786,0][-1.123,-0.0738425,-0.577276][0.972214,0.0928341,-0.2149][0.538725,0.147847,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,-0.0738425,-0.577276][0.972214,0.0928341,-0.2149][0.538725,0.147847,0][-1.123,0.110927,-0.4706][0.972214,0.160736,-0.170189][0.525494,0.170764,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,0.110927,-0.4706][0.972214,0.160736,-0.170189][0.525494,0.170764,0][-1.123,0.248067,-0.307162][0.972214,0.20925,-0.104951][0.505222,0.187774,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,0.248067,-0.307162][0.972214,0.20925,-0.104951][0.505222,0.187774,0][-1.123,0.321038,-0.106676][0.972214,0.232526,-0.0270537][0.480355,0.196825,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,0.321038,-0.106676][0.972214,0.232526,-0.0270537][0.480355,0.196825,0][-1.123,0.321038,0.106677][0.972214,0.227756,0.0541061][0.453892,0.196825,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,0.321038,0.106677][0.972214,0.227756,0.0541061][0.453892,0.196825,0][-1.123,0.248067,0.307163][0.972214,0.195515,0.12874][0.429025,0.187774,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,0.248067,0.307163][0.972214,0.195515,0.12874][0.429025,0.187774,0][-1.123,0.110926,0.470601][0.972214,0.139692,0.187846][0.408753,0.170764,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,0.110926,0.470601][0.972214,0.139692,0.187846][0.408753,0.170764,0][-1.123,-0.0738426,0.577277][0.972214,0.0670199,0.224295][0.395521,0.147847,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,-0.0738426,0.577277][0.972214,0.0670199,0.224295][0.395521,0.147847,0][-1.123,-0.283954,0.614326][0.972214,-0.0137354,0.233691][0.390926,0.121786,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,-0.283954,0.614326][0.972214,-0.0137354,0.233691][0.390926,0.121786,0][-1.123,-0.494066,0.577277][0.972214,-0.0928339,0.214899][0.395521,0.0957247,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,-0.494066,0.577277][0.972214,-0.0928339,0.214899][0.395521,0.0957247,0][-1.123,-0.678835,0.470601][0.972214,-0.160735,0.170188][0.408753,0.072807,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,-0.678835,0.470601][0.972214,-0.160735,0.170188][0.408753,0.072807,0][-1.123,-0.815975,0.307163][0.972214,-0.20925,0.10495][0.429025,0.0557969,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,-0.815975,0.307163][0.972214,-0.20925,0.10495][0.429025,0.0557969,0][-1.123,-0.888946,0.106677][0.972214,-0.232526,0.0270529][0.453892,0.0467461,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,-0.888946,0.106677][0.972214,-0.232526,0.0270529][0.453892,0.0467461,0][-1.123,-0.888946,-0.106676][0.972214,-0.227755,-0.0541073][0.480355,0.0467461,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,-0.888946,-0.106676][0.972214,-0.227755,-0.0541073][0.480355,0.0467461,0][-1.123,-0.815975,-0.307162][0.972214,-0.195514,-0.128741][0.505222,0.055797,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,-0.815975,-0.307162][0.972214,-0.195514,-0.128741][0.505222,0.055797,0][-1.123,-0.678835,-0.4706][0.972214,-0.139692,-0.187847][0.525494,0.0728071,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,-0.678835,-0.4706][0.972214,-0.139692,-0.187847][0.525494,0.0728071,0][-1.123,-0.494065,-0.577276][0.972214,-0.0670201,-0.224296][0.538725,0.0957247,0][-1.123,-0.283954,5.91467e-007][1,0,-4.66708e-007][0.467123,0.121786,0][-1.123,-0.494065,-0.577276][0.972214,-0.0670201,-0.224296][0.538725,0.0957247,0][-1.123,-0.283954,-0.614325][0.972214,0.0137354,-0.233691][0.54332,0.121786,0][-1.15068,-0.0509854,-0.640076][0.708587,0.25723,-0.657067][0.546515,0.150682,0][-1.123,-0.0738425,-0.577276][0.972214,0.0928341,-0.2149][0.538725,0.147847,0][-1.123,-0.283954,-0.614325][0.972214,0.0137354,-0.233691][0.54332,0.121786,0][-1.123,-0.283954,-0.614325][0.972214,0.0137354,-0.233691][0.54332,0.121786,0][-1.15068,-0.283954,-0.681154][0.708587,0.0169876,-0.705419][0.55161,0.121786,0][-1.15068,-0.0509854,-0.640076][0.708587,0.25723,-0.657067][0.546515,0.150682,0][-1.15068,0.153884,-0.521794][0.708587,0.466447,-0.529463][0.531844,0.176093,0][-1.123,0.110927,-0.4706][0.972214,0.160736,-0.170189][0.525494,0.170764,0][-1.123,-0.0738425,-0.577276][0.972214,0.0928341,-0.2149][0.538725,0.147847,0][-1.123,-0.0738425,-0.577276][0.972214,0.0928341,-0.2149][0.538725,0.147847,0][-1.15068,-0.0509854,-0.640076][0.708587,0.25723,-0.657067][0.546515,0.150682,0][-1.15068,0.153884,-0.521794][0.708587,0.466447,-0.529463][0.531844,0.176093,0][-1.15068,0.305943,-0.340577][0.708588,0.619404,-0.337998][0.509366,0.194953,0][-1.123,0.248067,-0.307162][0.972214,0.20925,-0.104951][0.505222,0.187774,0][-1.123,0.110927,-0.4706][0.972214,0.160736,-0.170189][0.525494,0.170764,0][-1.123,0.110927,-0.4706][0.972214,0.160736,-0.170189][0.525494,0.170764,0][-1.15068,0.153884,-0.521794][0.708587,0.466447,-0.529463][0.531844,0.176093,0][-1.15068,0.305943,-0.340577][0.708588,0.619404,-0.337998][0.509366,0.194953,0][-1.15068,0.386853,-0.118281][0.708588,0.697651,-0.105765][0.481794,0.204989,0][-1.123,0.321038,-0.106676][0.972214,0.232526,-0.0270537][0.480355,0.196825,0][-1.123,0.248067,-0.307162][0.972214,0.20925,-0.104951][0.505222,0.187774,0][-1.123,0.248067,-0.307162][0.972214,0.20925,-0.104951][0.505222,0.187774,0][-1.15068,0.305943,-0.340577][0.708588,0.619404,-0.337998][0.509366,0.194953,0][-1.15068,0.386853,-0.118281][0.708588,0.697651,-0.105765][0.481794,0.204989,0][-1.15068,0.386853,0.118282][0.708588,0.691751,0.139224][0.452452,0.204989,0][-1.123,0.321038,0.106677][0.972214,0.227756,0.0541061][0.453892,0.196825,0][-1.123,0.321038,-0.106676][0.972214,0.232526,-0.0270537][0.480355,0.196825,0][-1.123,0.321038,-0.106676][0.972214,0.232526,-0.0270537][0.480355,0.196825,0][-1.15068,0.386853,-0.118281][0.708588,0.697651,-0.105765][0.481794,0.204989,0][-1.15068,0.386853,0.118282][0.708588,0.691751,0.139224][0.452452,0.204989,0][-1.15068,0.305943,0.340578][0.708588,0.602417,0.36742][0.42488,0.194953,0][-1.123,0.248067,0.307163][0.972214,0.195515,0.12874][0.429025,0.187774,0][-1.123,0.321038,0.106677][0.972214,0.227756,0.0541061][0.453892,0.196825,0][-1.123,0.321038,0.106677][0.972214,0.227756,0.0541061][0.453892,0.196825,0][-1.15068,0.386853,0.118282][0.708588,0.691751,0.139224][0.452452,0.204989,0][-1.15068,0.305943,0.340578][0.708588,0.602417,0.36742][0.42488,0.194953,0][-1.15068,0.153884,0.521796][0.708588,0.440421,0.551301][0.402403,0.176092,0][-1.123,0.110926,0.470601][0.972214,0.139692,0.187846][0.408753,0.170764,0][-1.123,0.248067,0.307163][0.972214,0.195515,0.12874][0.429025,0.187774,0][-1.123,0.248067,0.307163][0.972214,0.195515,0.12874][0.429025,0.187774,0][-1.15068,0.305943,0.340578][0.708588,0.602417,0.36742][0.42488,0.194953,0][-1.15068,0.153884,0.521796][0.708588,0.440421,0.551301][0.402403,0.176092,0][-1.15068,-0.0509855,0.640077][0.708588,0.225304,0.668687][0.387732,0.150682,0][-1.123,-0.0738426,0.577277][0.972214,0.0670199,0.224295][0.395521,0.147847,0][-1.123,0.110926,0.470601][0.972214,0.139692,0.187846][0.408753,0.170764,0][-1.123,0.110926,0.470601][0.972214,0.139692,0.187846][0.408753,0.170764,0][-1.15068,0.153884,0.521796][0.708588,0.440421,0.551301][0.402403,0.176092,0][-1.15068,-0.0509855,0.640077][0.708588,0.225304,0.668687][0.387732,0.150682,0][-1.15068,-0.283954,0.681156][0.708587,-0.0169876,0.705418][0.382637,0.121786,0][-1.123,-0.283954,0.614326][0.972214,-0.0137354,0.233691][0.390926,0.121786,0][-1.123,-0.0738426,0.577277][0.972214,0.0670199,0.224295][0.395521,0.147847,0][-1.123,-0.0738426,0.577277][0.972214,0.0670199,0.224295][0.395521,0.147847,0][-1.15068,-0.0509855,0.640077][0.708588,0.225304,0.668687][0.387732,0.150682,0][-1.15068,-0.283954,0.681156][0.708587,-0.0169876,0.705418][0.382637,0.121786,0][-1.15068,-0.516923,0.640077][0.708588,-0.257231,0.657066][0.387732,0.0928896,0][-1.123,-0.494066,0.577277][0.972214,-0.0928339,0.214899][0.395521,0.0957247,0][-1.123,-0.283954,0.614326][0.972214,-0.0137354,0.233691][0.390926,0.121786,0][-1.123,-0.283954,0.614326][0.972214,-0.0137354,0.233691][0.390926,0.121786,0][-1.15068,-0.283954,0.681156][0.708587,-0.0169876,0.705418][0.382637,0.121786,0][-1.15068,-0.516923,0.640077][0.708588,-0.257231,0.657066][0.387732,0.0928896,0][-1.15068,-0.721792,0.521796][0.708588,-0.466448,0.529462][0.402403,0.0674789,0][-1.123,-0.678835,0.470601][0.972214,-0.160735,0.170188][0.408753,0.072807,0][-1.123,-0.494066,0.577277][0.972214,-0.0928339,0.214899][0.395521,0.0957247,0][-1.123,-0.494066,0.577277][0.972214,-0.0928339,0.214899][0.395521,0.0957247,0][-1.15068,-0.516923,0.640077][0.708588,-0.257231,0.657066][0.387732,0.0928896,0][-1.15068,-0.721792,0.521796][0.708588,-0.466448,0.529462][0.402403,0.0674789,0][-1.15068,-0.873852,0.340578][0.708588,-0.619404,0.337997][0.42488,0.0486183,0][-1.123,-0.815975,0.307163][0.972214,-0.20925,0.10495][0.429025,0.0557969,0][-1.123,-0.678835,0.470601][0.972214,-0.160735,0.170188][0.408753,0.072807,0][-1.123,-0.678835,0.470601][0.972214,-0.160735,0.170188][0.408753,0.072807,0][-1.15068,-0.721792,0.521796][0.708588,-0.466448,0.529462][0.402403,0.0674789,0][-1.15068,-0.873852,0.340578][0.708588,-0.619404,0.337997][0.42488,0.0486183,0][-1.15068,-0.954761,0.118282][0.708587,-0.697652,0.105765][0.452452,0.0385828,0][-1.123,-0.888946,0.106677][0.972214,-0.232526,0.0270529][0.453892,0.0467461,0][-1.123,-0.815975,0.307163][0.972214,-0.20925,0.10495][0.429025,0.0557969,0][-1.123,-0.815975,0.307163][0.972214,-0.20925,0.10495][0.429025,0.0557969,0][-1.15068,-0.873852,0.340578][0.708588,-0.619404,0.337997][0.42488,0.0486183,0][-1.15068,-0.954761,0.118282][0.708587,-0.697652,0.105765][0.452452,0.0385828,0][-1.15068,-0.954761,-0.118281][0.708587,-0.691752,-0.139225][0.481794,0.0385828,0][-1.123,-0.888946,-0.106676][0.972214,-0.227755,-0.0541073][0.480355,0.0467461,0][-1.123,-0.888946,0.106677][0.972214,-0.232526,0.0270529][0.453892,0.0467461,0][-1.123,-0.888946,0.106677][0.972214,-0.232526,0.0270529][0.453892,0.0467461,0][-1.15068,-0.954761,0.118282][0.708587,-0.697652,0.105765][0.452452,0.0385828,0][-1.15068,-0.954761,-0.118281][0.708587,-0.691752,-0.139225][0.481794,0.0385828,0][-1.15068,-0.873851,-0.340577][0.708587,-0.602416,-0.367422][0.509366,0.0486183,0][-1.123,-0.815975,-0.307162][0.972214,-0.195514,-0.128741][0.505222,0.055797,0][-1.123,-0.888946,-0.106676][0.972214,-0.227755,-0.0541073][0.480355,0.0467461,0][-1.123,-0.888946,-0.106676][0.972214,-0.227755,-0.0541073][0.480355,0.0467461,0][-1.15068,-0.954761,-0.118281][0.708587,-0.691752,-0.139225][0.481794,0.0385828,0][-1.15068,-0.873851,-0.340577][0.708587,-0.602416,-0.367422][0.509366,0.0486183,0][-1.15068,-0.721792,-0.521794][0.708587,-0.440421,-0.551301][0.531844,0.0674789,0][-1.123,-0.678835,-0.4706][0.972214,-0.139692,-0.187847][0.525494,0.0728071,0][-1.123,-0.815975,-0.307162][0.972214,-0.195514,-0.128741][0.505222,0.055797,0][-1.123,-0.815975,-0.307162][0.972214,-0.195514,-0.128741][0.505222,0.055797,0][-1.15068,-0.873851,-0.340577][0.708587,-0.602416,-0.367422][0.509366,0.0486183,0][-1.15068,-0.721792,-0.521794][0.708587,-0.440421,-0.551301][0.531844,0.0674789,0][-1.15068,-0.516923,-0.640076][0.708587,-0.225304,-0.668687][0.546515,0.0928897,0][-1.123,-0.494065,-0.577276][0.972214,-0.0670201,-0.224296][0.538725,0.0957247,0][-1.123,-0.678835,-0.4706][0.972214,-0.139692,-0.187847][0.525494,0.0728071,0][-1.123,-0.678835,-0.4706][0.972214,-0.139692,-0.187847][0.525494,0.0728071,0][-1.15068,-0.721792,-0.521794][0.708587,-0.440421,-0.551301][0.531844,0.0674789,0][-1.15068,-0.516923,-0.640076][0.708587,-0.225304,-0.668687][0.546515,0.0928897,0][-1.15068,-0.283954,-0.681154][0.708587,0.0169876,-0.705419][0.55161,0.121786,0][-1.123,-0.283954,-0.614325][0.972214,0.0137354,-0.233691][0.54332,0.121786,0][-1.123,-0.494065,-0.577276][0.972214,-0.0670201,-0.224296][0.538725,0.0957247,0][-1.123,-0.494065,-0.577276][0.972214,-0.0670201,-0.224296][0.538725,0.0957247,0][-1.15068,-0.516923,-0.640076][0.708587,-0.225304,-0.668687][0.546515,0.0928897,0][-1.15068,-0.283954,-0.681154][0.708587,0.0169876,-0.705419][0.55161,0.121786,0][-1.21751,-0.0415176,-0.666088][0.195305,0.337516,-0.920836][0.0351186,0.702013,0.00693023][-1.15068,-0.0509854,-0.640076][0.708587,0.25723,-0.657067][0.0351186,0.716149,-0.0126315][-1.15068,-0.283954,-0.681154][0.708587,0.0169876,-0.705419][0,0.716149,-0.0135044][-1.15068,-0.283954,-0.681154][0.708587,0.0169876,-0.705419][0,0.716149,-0.0135044][-1.21751,-0.283954,-0.708836][0.195305,0.0022172,-0.98074][0,0.702013,0.00602183][-1.21751,-0.0415176,-0.666088][0.195305,0.337516,-0.920836][0.0351186,0.702013,0.00693023][-1.21751,0.171677,-0.543][0.195305,0.632106,-0.749865][0.0700042,0.702013,0.0092231][-1.15068,0.153884,-0.521794][0.708587,0.466447,-0.529463][0.0700042,0.716149,-0.0104281][-1.15068,-0.0509854,-0.640076][0.708587,0.25723,-0.657067][0.0351186,0.716149,-0.0126315][-1.15068,-0.0509854,-0.640076][0.708587,0.25723,-0.657067][0.0351186,0.716149,-0.0126315][-1.21751,-0.0415176,-0.666088][0.195305,0.337516,-0.920836][0.0351186,0.702013,0.00693023][-1.21751,0.171677,-0.543][0.195305,0.632106,-0.749865][0.0700042,0.702013,0.0092231][-1.21751,0.329917,-0.354418][0.195305,0.850454,-0.48845][0.104538,0.702013,0.0118179][-1.15068,0.305943,-0.340577][0.708588,0.619404,-0.337998][0.104538,0.716149,-0.00793472][-1.15068,0.153884,-0.521794][0.708587,0.466447,-0.529463][0.0700042,0.716149,-0.0104281][-1.15068,0.153884,-0.521794][0.708587,0.466447,-0.529463][0.0700042,0.716149,-0.0104281][-1.21751,0.171677,-0.543][0.195305,0.632106,-0.749865][0.0700042,0.702013,0.0092231][-1.21751,0.329917,-0.354418][0.195305,0.850454,-0.48845][0.104538,0.702013,0.0118179][-1.21751,0.414114,-0.123088][0.195305,0.966225,-0.16812][0.138769,0.702013,0.0135043][-1.15068,0.386853,-0.118281][0.708588,0.697651,-0.105765][0.138769,0.716149,-0.0063141][-1.15068,0.305943,-0.340577][0.708588,0.619404,-0.337998][0.104538,0.716149,-0.00793472][-1.15068,0.305943,-0.340577][0.708588,0.619404,-0.337998][0.104538,0.716149,-0.00793472][-1.21751,0.329917,-0.354418][0.195305,0.850454,-0.48845][0.104538,0.702013,0.0118179][-1.21751,0.414114,-0.123088][0.195305,0.966225,-0.16812][0.138769,0.702013,0.0135043][-1.21751,0.414114,0.123089][0.195306,0.965455,0.172487][0.172881,0.702013,0.0135043][-1.15068,0.386853,0.118282][0.708588,0.691751,0.139224][0.172881,0.716149,-0.0063141][-1.15068,0.386853,-0.118281][0.708588,0.697651,-0.105765][0.138769,0.716149,-0.0063141][-1.15068,0.386853,-0.118281][0.708588,0.697651,-0.105765][0.138769,0.716149,-0.0063141][-1.21751,0.414114,-0.123088][0.195305,0.966225,-0.16812][0.138769,0.702013,0.0135043][-1.21751,0.414114,0.123089][0.195306,0.965455,0.172487][0.172881,0.702013,0.0135043][-1.21751,0.329916,0.354419][0.195306,0.848237,0.49229][0.207111,0.702013,0.0118179][-1.15068,0.305943,0.340578][0.708588,0.602417,0.36742][0.207111,0.716149,-0.00793463][-1.15068,0.386853,0.118282][0.708588,0.691751,0.139224][0.172881,0.716149,-0.0063141][-1.15068,0.386853,0.118282][0.708588,0.691751,0.139224][0.172881,0.716149,-0.0063141][-1.21751,0.414114,0.123089][0.195306,0.965455,0.172487][0.172881,0.702013,0.0135043][-1.21751,0.329916,0.354419][0.195306,0.848237,0.49229][0.207111,0.702013,0.0118179][-1.21751,0.171677,0.543001][0.195306,0.628709,0.752715][0.241645,0.702013,0.00922322][-1.15068,0.153884,0.521796][0.708588,0.440421,0.551301][0.241645,0.716149,-0.010428][-1.15068,0.305943,0.340578][0.708588,0.602417,0.36742][0.207111,0.716149,-0.00793463][-1.15068,0.305943,0.340578][0.708588,0.602417,0.36742][0.207111,0.716149,-0.00793463][-1.21751,0.329916,0.354419][0.195306,0.848237,0.49229][0.207111,0.702013,0.0118179][-1.21751,0.171677,0.543001][0.195306,0.628709,0.752715][0.241645,0.702013,0.00922322][-1.21751,-0.0415177,0.666089][0.195306,0.333349,0.922352][0.276531,0.702013,0.00693041][-1.15068,-0.0509855,0.640077][0.708588,0.225304,0.668687][0.276531,0.716149,-0.0126312][-1.15068,0.153884,0.521796][0.708588,0.440421,0.551301][0.241645,0.716149,-0.010428][-1.15068,0.153884,0.521796][0.708588,0.440421,0.551301][0.241645,0.716149,-0.010428][-1.21751,0.171677,0.543001][0.195306,0.628709,0.752715][0.241645,0.702013,0.00922322][-1.21751,-0.0415177,0.666089][0.195306,0.333349,0.922352][0.276531,0.702013,0.00693041][-1.21751,-0.283954,0.708837][0.195305,-0.00221715,0.98074][0.311649,0.702013,0.00602204][-1.15068,-0.283954,0.681156][0.708587,-0.0169876,0.705418][0.311649,0.716149,-0.0135042][-1.15068,-0.0509855,0.640077][0.708588,0.225304,0.668687][0.276531,0.716149,-0.0126312][-1.15068,-0.0509855,0.640077][0.708588,0.225304,0.668687][0.276531,0.716149,-0.0126312][-1.21751,-0.0415177,0.666089][0.195306,0.333349,0.922352][0.276531,0.702013,0.00693041][-1.21751,-0.283954,0.708837][0.195305,-0.00221715,0.98074][0.311649,0.702013,0.00602204][-1.21751,-0.526391,0.666089][0.195305,-0.337516,0.920836][0.346768,0.702013,0.00693047][-1.15068,-0.516923,0.640077][0.708588,-0.257231,0.657066][0.346768,0.716149,-0.0126312][-1.15068,-0.283954,0.681156][0.708587,-0.0169876,0.705418][0.311649,0.716149,-0.0135042][-1.15068,-0.283954,0.681156][0.708587,-0.0169876,0.705418][0.311649,0.716149,-0.0135042][-1.21751,-0.283954,0.708837][0.195305,-0.00221715,0.98074][0.311649,0.702013,0.00602204][-1.21751,-0.526391,0.666089][0.195305,-0.337516,0.920836][0.346768,0.702013,0.00693047][-1.21751,-0.739586,0.543001][0.195305,-0.632106,0.749865][0.381654,0.702013,0.00922328][-1.15068,-0.721792,0.521796][0.708588,-0.466448,0.529462][0.381654,0.716149,-0.0104279][-1.15068,-0.516923,0.640077][0.708588,-0.257231,0.657066][0.346768,0.716149,-0.0126312][-1.15068,-0.516923,0.640077][0.708588,-0.257231,0.657066][0.346768,0.716149,-0.0126312][-1.21751,-0.526391,0.666089][0.195305,-0.337516,0.920836][0.346768,0.702013,0.00693047][-1.21751,-0.739586,0.543001][0.195305,-0.632106,0.749865][0.381654,0.702013,0.00922328][-1.21751,-0.897825,0.354419][0.195306,-0.850454,0.48845][0.416188,0.702013,0.011818][-1.15068,-0.873852,0.340578][0.708588,-0.619404,0.337997][0.416188,0.716149,-0.00793457][-1.15068,-0.721792,0.521796][0.708588,-0.466448,0.529462][0.381654,0.716149,-0.0104279][-1.15068,-0.721792,0.521796][0.708588,-0.466448,0.529462][0.381654,0.716149,-0.0104279][-1.21751,-0.739586,0.543001][0.195305,-0.632106,0.749865][0.381654,0.702013,0.00922328][-1.21751,-0.897825,0.354419][0.195306,-0.850454,0.48845][0.416188,0.702013,0.011818][-1.21751,-0.982022,0.123089][0.195305,-0.966226,0.16812][0.450418,0.702013,0.0135044][-1.15068,-0.954761,0.118282][0.708587,-0.697652,0.105765][0.450418,0.716149,-0.00631398][-1.15068,-0.873852,0.340578][0.708588,-0.619404,0.337997][0.416188,0.716149,-0.00793457][-1.15068,-0.873852,0.340578][0.708588,-0.619404,0.337997][0.416188,0.716149,-0.00793457][-1.21751,-0.897825,0.354419][0.195306,-0.850454,0.48845][0.416188,0.702013,0.011818][-1.21751,-0.982022,0.123089][0.195305,-0.966226,0.16812][0.450418,0.702013,0.0135044][-1.21751,-0.982022,-0.123088][0.195305,-0.965455,-0.172487][0.48453,0.702013,0.0135044][-1.15068,-0.954761,-0.118281][0.708587,-0.691752,-0.139225][0.48453,0.716149,-0.00631404][-1.15068,-0.954761,0.118282][0.708587,-0.697652,0.105765][0.450418,0.716149,-0.00631398][-1.15068,-0.954761,0.118282][0.708587,-0.697652,0.105765][0.450418,0.716149,-0.00631398][-1.21751,-0.982022,0.123089][0.195305,-0.966226,0.16812][0.450418,0.702013,0.0135044][-1.21751,-0.982022,-0.123088][0.195305,-0.965455,-0.172487][0.48453,0.702013,0.0135044][-1.21751,-0.897825,-0.354418][0.195305,-0.848237,-0.49229][0.518761,0.702013,0.0118179][-1.15068,-0.873851,-0.340577][0.708587,-0.602416,-0.367422][0.518761,0.716149,-0.0079346][-1.15068,-0.954761,-0.118281][0.708587,-0.691752,-0.139225][0.48453,0.716149,-0.00631404][-1.15068,-0.954761,-0.118281][0.708587,-0.691752,-0.139225][0.48453,0.716149,-0.00631404][-1.21751,-0.982022,-0.123088][0.195305,-0.965455,-0.172487][0.48453,0.702013,0.0135044][-1.21751,-0.897825,-0.354418][0.195305,-0.848237,-0.49229][0.518761,0.702013,0.0118179][-1.21751,-0.739585,-0.543][0.195305,-0.628709,-0.752716][0.553294,0.702013,0.00922316][-1.15068,-0.721792,-0.521794][0.708587,-0.440421,-0.551301][0.553294,0.716149,-0.0104281][-1.15068,-0.873851,-0.340577][0.708587,-0.602416,-0.367422][0.518761,0.716149,-0.0079346][-1.15068,-0.873851,-0.340577][0.708587,-0.602416,-0.367422][0.518761,0.716149,-0.0079346][-1.21751,-0.897825,-0.354418][0.195305,-0.848237,-0.49229][0.518761,0.702013,0.0118179][-1.21751,-0.739585,-0.543][0.195305,-0.628709,-0.752716][0.553294,0.702013,0.00922316][-1.21751,-0.52639,-0.666088][0.195305,-0.333349,-0.922353][0.58818,0.702013,0.00693023][-1.15068,-0.516923,-0.640076][0.708587,-0.225304,-0.668687][0.58818,0.716149,-0.0126314][-1.15068,-0.721792,-0.521794][0.708587,-0.440421,-0.551301][0.553294,0.716149,-0.0104281][-1.15068,-0.721792,-0.521794][0.708587,-0.440421,-0.551301][0.553294,0.716149,-0.0104281][-1.21751,-0.739585,-0.543][0.195305,-0.628709,-0.752716][0.553294,0.702013,0.00922316][-1.21751,-0.52639,-0.666088][0.195305,-0.333349,-0.922353][0.58818,0.702013,0.00693023][-1.21751,-0.283954,-0.708836][0.195305,0.0022172,-0.98074][0.623299,0.702013,0.00602183][-1.15068,-0.283954,-0.681154][0.708587,0.0169876,-0.705419][0.623299,0.716149,-0.0135044][-1.15068,-0.516923,-0.640076][0.708587,-0.225304,-0.668687][0.58818,0.716149,-0.0126314][-1.15068,-0.516923,-0.640076][0.708587,-0.225304,-0.668687][0.58818,0.716149,-0.0126314][-1.21751,-0.52639,-0.666088][0.195305,-0.333349,-0.922353][0.58818,0.702013,0.00693023][-1.21751,-0.283954,-0.708836][0.195305,0.0022172,-0.98074][0.623299,0.702013,0.00602183][-1.40654,-0.0415176,-0.666088][-0.195305,0.333349,-0.922352][0.0351187,0.66203,0.00693023][-1.21751,-0.0415176,-0.666088][0.195305,0.337516,-0.920836][0.0351186,0.702013,0.00693023][-1.21751,-0.283954,-0.708836][0.195305,0.0022172,-0.98074][0,0.702013,0.00602183][-1.21751,-0.283954,-0.708836][0.195305,0.0022172,-0.98074][0,0.702013,0.00602183][-1.40654,-0.283954,-0.708836][-0.195306,-0.00221692,-0.98074][0,0.66203,0.00602183][-1.40654,-0.0415176,-0.666088][-0.195305,0.333349,-0.922352][0.0351187,0.66203,0.00693023][-1.40654,0.171677,-0.543][-0.195305,0.628709,-0.752716][0.0700042,0.66203,0.0092231][-1.21751,0.171677,-0.543][0.195305,0.632106,-0.749865][0.0700042,0.702013,0.0092231][-1.21751,-0.0415176,-0.666088][0.195305,0.337516,-0.920836][0.0351186,0.702013,0.00693023][-1.21751,-0.0415176,-0.666088][0.195305,0.337516,-0.920836][0.0351186,0.702013,0.00693023][-1.40654,-0.0415176,-0.666088][-0.195305,0.333349,-0.922352][0.0351187,0.66203,0.00693023][-1.40654,0.171677,-0.543][-0.195305,0.628709,-0.752716][0.0700042,0.66203,0.0092231][-1.40654,0.329917,-0.354418][-0.195305,0.848237,-0.49229][0.104538,0.66203,0.0118179][-1.21751,0.329917,-0.354418][0.195305,0.850454,-0.48845][0.104538,0.702013,0.0118179][-1.21751,0.171677,-0.543][0.195305,0.632106,-0.749865][0.0700042,0.702013,0.0092231][-1.21751,0.171677,-0.543][0.195305,0.632106,-0.749865][0.0700042,0.702013,0.0092231][-1.40654,0.171677,-0.543][-0.195305,0.628709,-0.752716][0.0700042,0.66203,0.0092231][-1.40654,0.329917,-0.354418][-0.195305,0.848237,-0.49229][0.104538,0.66203,0.0118179][-1.40653,0.414114,-0.123087][-0.195304,0.965456,-0.172487][0.138769,0.66203,0.0135043][-1.21751,0.414114,-0.123088][0.195305,0.966225,-0.16812][0.138769,0.702013,0.0135043][-1.21751,0.329917,-0.354418][0.195305,0.850454,-0.48845][0.104538,0.702013,0.0118179][-1.21751,0.329917,-0.354418][0.195305,0.850454,-0.48845][0.104538,0.702013,0.0118179][-1.40654,0.329917,-0.354418][-0.195305,0.848237,-0.49229][0.104538,0.66203,0.0118179][-1.40653,0.414114,-0.123087][-0.195304,0.965456,-0.172487][0.138769,0.66203,0.0135043][-1.40653,0.414114,0.123089][-0.195304,0.966226,0.168121][0.172881,0.66203,0.0135043][-1.21751,0.414114,0.123089][0.195306,0.965455,0.172487][0.172881,0.702013,0.0135043][-1.21751,0.414114,-0.123088][0.195305,0.966225,-0.16812][0.138769,0.702013,0.0135043][-1.21751,0.414114,-0.123088][0.195305,0.966225,-0.16812][0.138769,0.702013,0.0135043][-1.40653,0.414114,-0.123087][-0.195304,0.965456,-0.172487][0.138769,0.66203,0.0135043][-1.40653,0.414114,0.123089][-0.195304,0.966226,0.168121][0.172881,0.66203,0.0135043][-1.40653,0.329916,0.354419][-0.195305,0.850454,0.48845][0.207111,0.66203,0.0118179][-1.21751,0.329916,0.354419][0.195306,0.848237,0.49229][0.207111,0.702013,0.0118179][-1.21751,0.414114,0.123089][0.195306,0.965455,0.172487][0.172881,0.702013,0.0135043][-1.21751,0.414114,0.123089][0.195306,0.965455,0.172487][0.172881,0.702013,0.0135043][-1.40653,0.414114,0.123089][-0.195304,0.966226,0.168121][0.172881,0.66203,0.0135043][-1.40653,0.329916,0.354419][-0.195305,0.850454,0.48845][0.207111,0.66203,0.0118179][-1.40653,0.171677,0.543001][-0.195305,0.632106,0.749865][0.241645,0.66203,0.00922328][-1.21751,0.171677,0.543001][0.195306,0.628709,0.752715][0.241645,0.702013,0.00922322][-1.21751,0.329916,0.354419][0.195306,0.848237,0.49229][0.207111,0.702013,0.0118179][-1.21751,0.329916,0.354419][0.195306,0.848237,0.49229][0.207111,0.702013,0.0118179][-1.40653,0.329916,0.354419][-0.195305,0.850454,0.48845][0.207111,0.66203,0.0118179][-1.40653,0.171677,0.543001][-0.195305,0.632106,0.749865][0.241645,0.66203,0.00922328][-1.40653,-0.0415177,0.666089][-0.195305,0.337516,0.920836][0.276531,0.66203,0.00693041][-1.21751,-0.0415177,0.666089][0.195306,0.333349,0.922352][0.276531,0.702013,0.00693041][-1.21751,0.171677,0.543001][0.195306,0.628709,0.752715][0.241645,0.702013,0.00922322][-1.21751,0.171677,0.543001][0.195306,0.628709,0.752715][0.241645,0.702013,0.00922322][-1.40653,0.171677,0.543001][-0.195305,0.632106,0.749865][0.241645,0.66203,0.00922328][-1.40653,-0.0415177,0.666089][-0.195305,0.337516,0.920836][0.276531,0.66203,0.00693041][-1.40653,-0.283954,0.708838][-0.195305,0.00221691,0.98074][0.311649,0.66203,0.00602204][-1.21751,-0.283954,0.708837][0.195305,-0.00221715,0.98074][0.311649,0.702013,0.00602204][-1.21751,-0.0415177,0.666089][0.195306,0.333349,0.922352][0.276531,0.702013,0.00693041][-1.21751,-0.0415177,0.666089][0.195306,0.333349,0.922352][0.276531,0.702013,0.00693041][-1.40653,-0.0415177,0.666089][-0.195305,0.337516,0.920836][0.276531,0.66203,0.00693041][-1.40653,-0.283954,0.708838][-0.195305,0.00221691,0.98074][0.311649,0.66203,0.00602204][-1.40653,-0.526391,0.666089][-0.195305,-0.33335,0.922352][0.346768,0.66203,0.00693047][-1.21751,-0.526391,0.666089][0.195305,-0.337516,0.920836][0.346768,0.702013,0.00693047][-1.21751,-0.283954,0.708837][0.195305,-0.00221715,0.98074][0.311649,0.702013,0.00602204][-1.21751,-0.283954,0.708837][0.195305,-0.00221715,0.98074][0.311649,0.702013,0.00602204][-1.40653,-0.283954,0.708838][-0.195305,0.00221691,0.98074][0.311649,0.66203,0.00602204][-1.40653,-0.526391,0.666089][-0.195305,-0.33335,0.922352][0.346768,0.66203,0.00693047][-1.40653,-0.739586,0.543001][-0.195305,-0.628709,0.752715][0.381654,0.66203,0.00922328][-1.21751,-0.739586,0.543001][0.195305,-0.632106,0.749865][0.381654,0.702013,0.00922328][-1.21751,-0.526391,0.666089][0.195305,-0.337516,0.920836][0.346768,0.702013,0.00693047][-1.21751,-0.526391,0.666089][0.195305,-0.337516,0.920836][0.346768,0.702013,0.00693047][-1.40653,-0.526391,0.666089][-0.195305,-0.33335,0.922352][0.346768,0.66203,0.00693047][-1.40653,-0.739586,0.543001][-0.195305,-0.628709,0.752715][0.381654,0.66203,0.00922328][-1.40653,-0.897825,0.354419][-0.195306,-0.848237,0.49229][0.416188,0.66203,0.011818][-1.21751,-0.897825,0.354419][0.195306,-0.850454,0.48845][0.416188,0.702013,0.011818][-1.21751,-0.739586,0.543001][0.195305,-0.632106,0.749865][0.381654,0.702013,0.00922328][-1.21751,-0.739586,0.543001][0.195305,-0.632106,0.749865][0.381654,0.702013,0.00922328][-1.40653,-0.739586,0.543001][-0.195305,-0.628709,0.752715][0.381654,0.66203,0.00922328][-1.40653,-0.897825,0.354419][-0.195306,-0.848237,0.49229][0.416188,0.66203,0.011818][-1.40654,-0.982022,0.123089][-0.195306,-0.965455,0.172487][0.450418,0.66203,0.0135044][-1.21751,-0.982022,0.123089][0.195305,-0.966226,0.16812][0.450418,0.702013,0.0135044][-1.21751,-0.897825,0.354419][0.195306,-0.850454,0.48845][0.416188,0.702013,0.011818][-1.21751,-0.897825,0.354419][0.195306,-0.850454,0.48845][0.416188,0.702013,0.011818][-1.40653,-0.897825,0.354419][-0.195306,-0.848237,0.49229][0.416188,0.66203,0.011818][-1.40654,-0.982022,0.123089][-0.195306,-0.965455,0.172487][0.450418,0.66203,0.0135044][-1.40654,-0.982022,-0.123088][-0.195306,-0.966225,-0.16812][0.48453,0.66203,0.0135044][-1.21751,-0.982022,-0.123088][0.195305,-0.965455,-0.172487][0.48453,0.702013,0.0135044][-1.21751,-0.982022,0.123089][0.195305,-0.966226,0.16812][0.450418,0.702013,0.0135044][-1.21751,-0.982022,0.123089][0.195305,-0.966226,0.16812][0.450418,0.702013,0.0135044][-1.40654,-0.982022,0.123089][-0.195306,-0.965455,0.172487][0.450418,0.66203,0.0135044][-1.40654,-0.982022,-0.123088][-0.195306,-0.966225,-0.16812][0.48453,0.66203,0.0135044][-1.40654,-0.897825,-0.354418][-0.195306,-0.850454,-0.48845][0.518761,0.66203,0.0118179][-1.21751,-0.897825,-0.354418][0.195305,-0.848237,-0.49229][0.518761,0.702013,0.0118179][-1.21751,-0.982022,-0.123088][0.195305,-0.965455,-0.172487][0.48453,0.702013,0.0135044][-1.21751,-0.982022,-0.123088][0.195305,-0.965455,-0.172487][0.48453,0.702013,0.0135044][-1.40654,-0.982022,-0.123088][-0.195306,-0.966225,-0.16812][0.48453,0.66203,0.0135044][-1.40654,-0.897825,-0.354418][-0.195306,-0.850454,-0.48845][0.518761,0.66203,0.0118179][-1.40654,-0.739585,-0.543][-0.195306,-0.632106,-0.749866][0.553294,0.66203,0.00922316][-1.21751,-0.739585,-0.543][0.195305,-0.628709,-0.752716][0.553294,0.702013,0.00922316][-1.21751,-0.897825,-0.354418][0.195305,-0.848237,-0.49229][0.518761,0.702013,0.0118179][-1.21751,-0.897825,-0.354418][0.195305,-0.848237,-0.49229][0.518761,0.702013,0.0118179][-1.40654,-0.897825,-0.354418][-0.195306,-0.850454,-0.48845][0.518761,0.66203,0.0118179][-1.40654,-0.739585,-0.543][-0.195306,-0.632106,-0.749866][0.553294,0.66203,0.00922316][-1.40654,-0.52639,-0.666088][-0.195306,-0.337516,-0.920836][0.58818,0.66203,0.00693023][-1.21751,-0.52639,-0.666088][0.195305,-0.333349,-0.922353][0.58818,0.702013,0.00693023][-1.21751,-0.739585,-0.543][0.195305,-0.628709,-0.752716][0.553294,0.702013,0.00922316][-1.21751,-0.739585,-0.543][0.195305,-0.628709,-0.752716][0.553294,0.702013,0.00922316][-1.40654,-0.739585,-0.543][-0.195306,-0.632106,-0.749866][0.553294,0.66203,0.00922316][-1.40654,-0.52639,-0.666088][-0.195306,-0.337516,-0.920836][0.58818,0.66203,0.00693023][-1.40654,-0.283954,-0.708836][-0.195306,-0.00221692,-0.98074][0.623299,0.66203,0.00602183][-1.21751,-0.283954,-0.708836][0.195305,0.0022172,-0.98074][0.623299,0.702013,0.00602183][-1.21751,-0.52639,-0.666088][0.195305,-0.333349,-0.922353][0.58818,0.702013,0.00693023][-1.21751,-0.52639,-0.666088][0.195305,-0.333349,-0.922353][0.58818,0.702013,0.00693023][-1.40654,-0.52639,-0.666088][-0.195306,-0.337516,-0.920836][0.58818,0.66203,0.00693023][-1.40654,-0.283954,-0.708836][-0.195306,-0.00221692,-0.98074][0.623299,0.66203,0.00602183][-1.47336,-0.0509853,-0.640075][-0.708589,0.225304,-0.668686][0.0351186,0.647894,-0.0126315][-1.40654,-0.0415176,-0.666088][-0.195305,0.333349,-0.922352][0.0351187,0.66203,0.00693023][-1.40654,-0.283954,-0.708836][-0.195306,-0.00221692,-0.98074][0,0.66203,0.00602183][-1.40654,-0.283954,-0.708836][-0.195306,-0.00221692,-0.98074][0,0.66203,0.00602183][-1.47336,-0.283954,-0.681154][-0.708589,-0.0169876,-0.705417][0,0.647894,-0.0135044][-1.47336,-0.0509853,-0.640075][-0.708589,0.225304,-0.668686][0.0351186,0.647894,-0.0126315][-1.47336,0.153884,-0.521794][-0.708589,0.44042,-0.551301][0.0700042,0.647894,-0.0104281][-1.40654,0.171677,-0.543][-0.195305,0.628709,-0.752716][0.0700042,0.66203,0.0092231][-1.40654,-0.0415176,-0.666088][-0.195305,0.333349,-0.922352][0.0351187,0.66203,0.00693023][-1.40654,-0.0415176,-0.666088][-0.195305,0.333349,-0.922352][0.0351187,0.66203,0.00693023][-1.47336,-0.0509853,-0.640075][-0.708589,0.225304,-0.668686][0.0351186,0.647894,-0.0126315][-1.47336,0.153884,-0.521794][-0.708589,0.44042,-0.551301][0.0700042,0.647894,-0.0104281][-1.47336,0.305943,-0.340577][-0.708589,0.602416,-0.36742][0.104538,0.647894,-0.00793469][-1.40654,0.329917,-0.354418][-0.195305,0.848237,-0.49229][0.104538,0.66203,0.0118179][-1.40654,0.171677,-0.543][-0.195305,0.628709,-0.752716][0.0700042,0.66203,0.0092231][-1.40654,0.171677,-0.543][-0.195305,0.628709,-0.752716][0.0700042,0.66203,0.0092231][-1.47336,0.153884,-0.521794][-0.708589,0.44042,-0.551301][0.0700042,0.647894,-0.0104281][-1.47336,0.305943,-0.340577][-0.708589,0.602416,-0.36742][0.104538,0.647894,-0.00793469][-1.47336,0.386853,-0.118281][-0.708588,0.691751,-0.139224][0.138769,0.647894,-0.0063141][-1.40653,0.414114,-0.123087][-0.195304,0.965456,-0.172487][0.138769,0.66203,0.0135043][-1.40654,0.329917,-0.354418][-0.195305,0.848237,-0.49229][0.104538,0.66203,0.0118179][-1.40654,0.329917,-0.354418][-0.195305,0.848237,-0.49229][0.104538,0.66203,0.0118179][-1.47336,0.305943,-0.340577][-0.708589,0.602416,-0.36742][0.104538,0.647894,-0.00793469][-1.47336,0.386853,-0.118281][-0.708588,0.691751,-0.139224][0.138769,0.647894,-0.0063141][-1.47336,0.386853,0.118282][-0.708588,0.697651,0.105765][0.172881,0.647894,-0.00631407][-1.40653,0.414114,0.123089][-0.195304,0.966226,0.168121][0.172881,0.66203,0.0135043][-1.40653,0.414114,-0.123087][-0.195304,0.965456,-0.172487][0.138769,0.66203,0.0135043][-1.40653,0.414114,-0.123087][-0.195304,0.965456,-0.172487][0.138769,0.66203,0.0135043][-1.47336,0.386853,-0.118281][-0.708588,0.691751,-0.139224][0.138769,0.647894,-0.0063141][-1.47336,0.386853,0.118282][-0.708588,0.697651,0.105765][0.172881,0.647894,-0.00631407][-1.47336,0.305943,0.340578][-0.708588,0.619404,0.337997][0.207111,0.647894,-0.00793463][-1.40653,0.329916,0.354419][-0.195305,0.850454,0.48845][0.207111,0.66203,0.0118179][-1.40653,0.414114,0.123089][-0.195304,0.966226,0.168121][0.172881,0.66203,0.0135043][-1.40653,0.414114,0.123089][-0.195304,0.966226,0.168121][0.172881,0.66203,0.0135043][-1.47336,0.386853,0.118282][-0.708588,0.697651,0.105765][0.172881,0.647894,-0.00631407][-1.47336,0.305943,0.340578][-0.708588,0.619404,0.337997][0.207111,0.647894,-0.00793463][-1.47336,0.153884,0.521796][-0.708588,0.466447,0.529462][0.241645,0.647894,-0.010428][-1.40653,0.171677,0.543001][-0.195305,0.632106,0.749865][0.241645,0.66203,0.00922328][-1.40653,0.329916,0.354419][-0.195305,0.850454,0.48845][0.207111,0.66203,0.0118179][-1.40653,0.329916,0.354419][-0.195305,0.850454,0.48845][0.207111,0.66203,0.0118179][-1.47336,0.305943,0.340578][-0.708588,0.619404,0.337997][0.207111,0.647894,-0.00793463][-1.47336,0.153884,0.521796][-0.708588,0.466447,0.529462][0.241645,0.647894,-0.010428][-1.47336,-0.0509854,0.640077][-0.708588,0.25723,0.657066][0.276531,0.647894,-0.0126312][-1.40653,-0.0415177,0.666089][-0.195305,0.337516,0.920836][0.276531,0.66203,0.00693041][-1.40653,0.171677,0.543001][-0.195305,0.632106,0.749865][0.241645,0.66203,0.00922328][-1.40653,0.171677,0.543001][-0.195305,0.632106,0.749865][0.241645,0.66203,0.00922328][-1.47336,0.153884,0.521796][-0.708588,0.466447,0.529462][0.241645,0.647894,-0.010428][-1.47336,-0.0509854,0.640077][-0.708588,0.25723,0.657066][0.276531,0.647894,-0.0126312][-1.47336,-0.283954,0.681156][-0.708588,0.0169875,0.705418][0.311649,0.647894,-0.0135042][-1.40653,-0.283954,0.708838][-0.195305,0.00221691,0.98074][0.311649,0.66203,0.00602204][-1.40653,-0.0415177,0.666089][-0.195305,0.337516,0.920836][0.276531,0.66203,0.00693041][-1.40653,-0.0415177,0.666089][-0.195305,0.337516,0.920836][0.276531,0.66203,0.00693041][-1.47336,-0.0509854,0.640077][-0.708588,0.25723,0.657066][0.276531,0.647894,-0.0126312][-1.47336,-0.283954,0.681156][-0.708588,0.0169875,0.705418][0.311649,0.647894,-0.0135042][-1.47336,-0.516923,0.640077][-0.708589,-0.225304,0.668686][0.346768,0.647894,-0.0126312][-1.40653,-0.526391,0.666089][-0.195305,-0.33335,0.922352][0.346768,0.66203,0.00693047][-1.40653,-0.283954,0.708838][-0.195305,0.00221691,0.98074][0.311649,0.66203,0.00602204][-1.40653,-0.283954,0.708838][-0.195305,0.00221691,0.98074][0.311649,0.66203,0.00602204][-1.47336,-0.283954,0.681156][-0.708588,0.0169875,0.705418][0.311649,0.647894,-0.0135042][-1.47336,-0.516923,0.640077][-0.708589,-0.225304,0.668686][0.346768,0.647894,-0.0126312][-1.47336,-0.721792,0.521796][-0.708589,-0.440421,0.5513][0.381654,0.647894,-0.0104279][-1.40653,-0.739586,0.543001][-0.195305,-0.628709,0.752715][0.381654,0.66203,0.00922328][-1.40653,-0.526391,0.666089][-0.195305,-0.33335,0.922352][0.346768,0.66203,0.00693047][-1.40653,-0.526391,0.666089][-0.195305,-0.33335,0.922352][0.346768,0.66203,0.00693047][-1.47336,-0.516923,0.640077][-0.708589,-0.225304,0.668686][0.346768,0.647894,-0.0126312][-1.47336,-0.721792,0.521796][-0.708589,-0.440421,0.5513][0.381654,0.647894,-0.0104279][-1.47336,-0.873852,0.340578][-0.708589,-0.602415,0.367421][0.416188,0.647894,-0.00793457][-1.40653,-0.897825,0.354419][-0.195306,-0.848237,0.49229][0.416188,0.66203,0.011818][-1.40653,-0.739586,0.543001][-0.195305,-0.628709,0.752715][0.381654,0.66203,0.00922328][-1.40653,-0.739586,0.543001][-0.195305,-0.628709,0.752715][0.381654,0.66203,0.00922328][-1.47336,-0.721792,0.521796][-0.708589,-0.440421,0.5513][0.381654,0.647894,-0.0104279][-1.47336,-0.873852,0.340578][-0.708589,-0.602415,0.367421][0.416188,0.647894,-0.00793457][-1.47336,-0.954761,0.118282][-0.708589,-0.69175,0.139224][0.450418,0.647894,-0.00631401][-1.40654,-0.982022,0.123089][-0.195306,-0.965455,0.172487][0.450418,0.66203,0.0135044][-1.40653,-0.897825,0.354419][-0.195306,-0.848237,0.49229][0.416188,0.66203,0.011818][-1.40653,-0.897825,0.354419][-0.195306,-0.848237,0.49229][0.416188,0.66203,0.011818][-1.47336,-0.873852,0.340578][-0.708589,-0.602415,0.367421][0.416188,0.647894,-0.00793457][-1.47336,-0.954761,0.118282][-0.708589,-0.69175,0.139224][0.450418,0.647894,-0.00631401][-1.47336,-0.954761,-0.118281][-0.708589,-0.69765,-0.105765][0.48453,0.647894,-0.00631407][-1.40654,-0.982022,-0.123088][-0.195306,-0.966225,-0.16812][0.48453,0.66203,0.0135044][-1.40654,-0.982022,0.123089][-0.195306,-0.965455,0.172487][0.450418,0.66203,0.0135044][-1.40654,-0.982022,0.123089][-0.195306,-0.965455,0.172487][0.450418,0.66203,0.0135044][-1.47336,-0.954761,0.118282][-0.708589,-0.69175,0.139224][0.450418,0.647894,-0.00631401][-1.47336,-0.954761,-0.118281][-0.708589,-0.69765,-0.105765][0.48453,0.647894,-0.00631407][-1.47336,-0.873851,-0.340577][-0.708589,-0.619403,-0.337997][0.518761,0.647894,-0.00793463][-1.40654,-0.897825,-0.354418][-0.195306,-0.850454,-0.48845][0.518761,0.66203,0.0118179][-1.40654,-0.982022,-0.123088][-0.195306,-0.966225,-0.16812][0.48453,0.66203,0.0135044][-1.40654,-0.982022,-0.123088][-0.195306,-0.966225,-0.16812][0.48453,0.66203,0.0135044][-1.47336,-0.954761,-0.118281][-0.708589,-0.69765,-0.105765][0.48453,0.647894,-0.00631407][-1.47336,-0.873851,-0.340577][-0.708589,-0.619403,-0.337997][0.518761,0.647894,-0.00793463][-1.47336,-0.721792,-0.521794][-0.708589,-0.466447,-0.529462][0.553294,0.647894,-0.0104281][-1.40654,-0.739585,-0.543][-0.195306,-0.632106,-0.749866][0.553294,0.66203,0.00922316][-1.40654,-0.897825,-0.354418][-0.195306,-0.850454,-0.48845][0.518761,0.66203,0.0118179][-1.40654,-0.897825,-0.354418][-0.195306,-0.850454,-0.48845][0.518761,0.66203,0.0118179][-1.47336,-0.873851,-0.340577][-0.708589,-0.619403,-0.337997][0.518761,0.647894,-0.00793463][-1.47336,-0.721792,-0.521794][-0.708589,-0.466447,-0.529462][0.553294,0.647894,-0.0104281][-1.47336,-0.516923,-0.640076][-0.708589,-0.25723,-0.657065][0.58818,0.647894,-0.0126314][-1.40654,-0.52639,-0.666088][-0.195306,-0.337516,-0.920836][0.58818,0.66203,0.00693023][-1.40654,-0.739585,-0.543][-0.195306,-0.632106,-0.749866][0.553294,0.66203,0.00922316][-1.40654,-0.739585,-0.543][-0.195306,-0.632106,-0.749866][0.553294,0.66203,0.00922316][-1.47336,-0.721792,-0.521794][-0.708589,-0.466447,-0.529462][0.553294,0.647894,-0.0104281][-1.47336,-0.516923,-0.640076][-0.708589,-0.25723,-0.657065][0.58818,0.647894,-0.0126314][-1.47336,-0.283954,-0.681154][-0.708589,-0.0169876,-0.705417][0.623299,0.647894,-0.0135044][-1.40654,-0.283954,-0.708836][-0.195306,-0.00221692,-0.98074][0.623299,0.66203,0.00602183][-1.40654,-0.52639,-0.666088][-0.195306,-0.337516,-0.920836][0.58818,0.66203,0.00693023][-1.40654,-0.52639,-0.666088][-0.195306,-0.337516,-0.920836][0.58818,0.66203,0.00693023][-1.47336,-0.516923,-0.640076][-0.708589,-0.25723,-0.657065][0.58818,0.647894,-0.0126314][-1.47336,-0.283954,-0.681154][-0.708589,-0.0169876,-0.705417][0.623299,0.647894,-0.0135044][-1.50105,-0.0738424,-0.577276][-0.972214,0.0670194,-0.224294][0.678247,0.862194,0][-1.47336,-0.0509853,-0.640075][-0.708589,0.225304,-0.668686][0.662233,0.866485,0][-1.47336,-0.283954,-0.681154][-0.708589,-0.0169876,-0.705417][0.657118,0.808025,0][-1.47336,-0.283954,-0.681154][-0.708589,-0.0169876,-0.705417][0.657118,0.808025,0][-1.50105,-0.283954,-0.614324][-0.972214,-0.0137352,-0.233689][0.673634,0.80947,0][-1.50105,-0.0738424,-0.577276][-0.972214,0.0670194,-0.224294][0.678247,0.862194,0][-1.50105,0.110927,-0.4706][-0.972214,0.139691,-0.187845][0.700614,0.910161,0][-1.47336,0.153884,-0.521794][-0.708589,0.44042,-0.551301][0.687034,0.91967,0][-1.47336,-0.0509853,-0.640075][-0.708589,0.225304,-0.668686][0.662233,0.866485,0][-1.47336,-0.0509853,-0.640075][-0.708589,0.225304,-0.668686][0.662233,0.866485,0][-1.50105,-0.0738424,-0.577276][-0.972214,0.0670194,-0.224294][0.678247,0.862194,0][-1.50105,0.110927,-0.4706][-0.972214,0.139691,-0.187845][0.700614,0.910161,0][-1.50105,0.248067,-0.307162][-0.972214,0.195513,-0.128739][0.738038,0.947586,0][-1.47336,0.305943,-0.340577][-0.708589,0.602416,-0.36742][0.728529,0.961166,0][-1.47336,0.153884,-0.521794][-0.708589,0.44042,-0.551301][0.687034,0.91967,0][-1.47336,0.153884,-0.521794][-0.708589,0.44042,-0.551301][0.687034,0.91967,0][-1.50105,0.110927,-0.4706][-0.972214,0.139691,-0.187845][0.700614,0.910161,0][-1.50105,0.248067,-0.307162][-0.972214,0.195513,-0.128739][0.738038,0.947586,0][-1.50105,0.321038,-0.106676][-0.972214,0.227754,-0.0541057][0.786006,0.969953,0][-1.47336,0.386853,-0.118281][-0.708588,0.691751,-0.139224][0.781715,0.985967,0][-1.47336,0.305943,-0.340577][-0.708589,0.602416,-0.36742][0.728529,0.961166,0][-1.47336,0.305943,-0.340577][-0.708589,0.602416,-0.36742][0.728529,0.961166,0][-1.50105,0.248067,-0.307162][-0.972214,0.195513,-0.128739][0.738038,0.947586,0][-1.50105,0.321038,-0.106676][-0.972214,0.227754,-0.0541057][0.786006,0.969953,0][-1.50105,0.321038,0.106677][-0.972214,0.232524,0.0270536][0.83873,0.974566,0][-1.47336,0.386853,0.118282][-0.708588,0.697651,0.105765][0.840175,0.991081,0][-1.47336,0.386853,-0.118281][-0.708588,0.691751,-0.139224][0.781715,0.985967,0][-1.47336,0.386853,-0.118281][-0.708588,0.691751,-0.139224][0.781715,0.985967,0][-1.50105,0.321038,-0.106676][-0.972214,0.227754,-0.0541057][0.786006,0.969953,0][-1.50105,0.321038,0.106677][-0.972214,0.232524,0.0270536][0.83873,0.974566,0][-1.50105,0.248067,0.307163][-0.972214,0.209248,0.10495][0.889853,0.960868,0][-1.47336,0.305943,0.340578][-0.708588,0.619404,0.337997][0.896859,0.975893,0][-1.47336,0.386853,0.118282][-0.708588,0.697651,0.105765][0.840175,0.991081,0][-1.47336,0.386853,0.118282][-0.708588,0.697651,0.105765][0.840175,0.991081,0][-1.50105,0.321038,0.106677][-0.972214,0.232524,0.0270536][0.83873,0.974566,0][-1.50105,0.248067,0.307163][-0.972214,0.209248,0.10495][0.889853,0.960868,0][-1.50105,0.110927,0.470601][-0.972214,0.160734,0.170188][0.933208,0.930511,0][-1.47336,0.153884,0.521796][-0.708588,0.466447,0.529462][0.94493,0.942233,0][-1.47336,0.305943,0.340578][-0.708588,0.619404,0.337997][0.896859,0.975893,0][-1.47336,0.305943,0.340578][-0.708588,0.619404,0.337997][0.896859,0.975893,0][-1.50105,0.248067,0.307163][-0.972214,0.209248,0.10495][0.889853,0.960868,0][-1.50105,0.110927,0.470601][-0.972214,0.160734,0.170188][0.933208,0.930511,0][-1.50105,-0.0738425,0.577278][-0.972214,0.0928334,0.214898][0.963565,0.887156,0][-1.47336,-0.0509854,0.640077][-0.708588,0.25723,0.657066][0.97859,0.894163,0][-1.47336,0.153884,0.521796][-0.708588,0.466447,0.529462][0.94493,0.942233,0][-1.47336,0.153884,0.521796][-0.708588,0.466447,0.529462][0.94493,0.942233,0][-1.50105,0.110927,0.470601][-0.972214,0.160734,0.170188][0.933208,0.930511,0][-1.50105,-0.0738425,0.577278][-0.972214,0.0928334,0.214898][0.963565,0.887156,0][-1.50105,-0.283954,0.614326][-0.972214,0.0137352,0.23369][0.977263,0.836034,0][-1.47336,-0.283954,0.681156][-0.708588,0.0169875,0.705418][0.993778,0.837479,0][-1.47336,-0.0509854,0.640077][-0.708588,0.25723,0.657066][0.97859,0.894163,0][-1.47336,-0.0509854,0.640077][-0.708588,0.25723,0.657066][0.97859,0.894163,0][-1.50105,-0.0738425,0.577278][-0.972214,0.0928334,0.214898][0.963565,0.887156,0][-1.50105,-0.283954,0.614326][-0.972214,0.0137352,0.23369][0.977263,0.836034,0][-1.50105,-0.494066,0.577278][-0.972214,-0.0670196,0.224294][0.97265,0.783309,0][-1.47336,-0.516923,0.640077][-0.708589,-0.225304,0.668686][0.988663,0.779018,0][-1.47336,-0.283954,0.681156][-0.708588,0.0169875,0.705418][0.993778,0.837479,0][-1.47336,-0.283954,0.681156][-0.708588,0.0169875,0.705418][0.993778,0.837479,0][-1.50105,-0.283954,0.614326][-0.972214,0.0137352,0.23369][0.977263,0.836034,0][-1.50105,-0.494066,0.577278][-0.972214,-0.0670196,0.224294][0.97265,0.783309,0][-1.50105,-0.678835,0.470601][-0.972214,-0.139691,0.187845][0.950282,0.735342,0][-1.47336,-0.721792,0.521796][-0.708589,-0.440421,0.5513][0.963863,0.725833,0][-1.47336,-0.516923,0.640077][-0.708589,-0.225304,0.668686][0.988663,0.779018,0][-1.47336,-0.516923,0.640077][-0.708589,-0.225304,0.668686][0.988663,0.779018,0][-1.50105,-0.494066,0.577278][-0.972214,-0.0670196,0.224294][0.97265,0.783309,0][-1.50105,-0.678835,0.470601][-0.972214,-0.139691,0.187845][0.950282,0.735342,0][-1.50105,-0.815975,0.307163][-0.972214,-0.195513,0.12874][0.912858,0.697917,0][-1.47336,-0.873852,0.340578][-0.708589,-0.602415,0.367421][0.922367,0.684337,0][-1.47336,-0.721792,0.521796][-0.708589,-0.440421,0.5513][0.963863,0.725833,0][-1.47336,-0.721792,0.521796][-0.708589,-0.440421,0.5513][0.963863,0.725833,0][-1.50105,-0.678835,0.470601][-0.972214,-0.139691,0.187845][0.950282,0.735342,0][-1.50105,-0.815975,0.307163][-0.972214,-0.195513,0.12874][0.912858,0.697917,0][-1.50105,-0.888946,0.106677][-0.972214,-0.227754,0.0541069][0.864891,0.67555,0][-1.47336,-0.954761,0.118282][-0.708589,-0.69175,0.139224][0.869182,0.659537,0][-1.47336,-0.873852,0.340578][-0.708589,-0.602415,0.367421][0.922367,0.684337,0][-1.47336,-0.873852,0.340578][-0.708589,-0.602415,0.367421][0.922367,0.684337,0][-1.50105,-0.815975,0.307163][-0.972214,-0.195513,0.12874][0.912858,0.697917,0][-1.50105,-0.888946,0.106677][-0.972214,-0.227754,0.0541069][0.864891,0.67555,0][-1.50105,-0.888946,-0.106676][-0.972214,-0.232524,-0.0270528][0.812166,0.670937,0][-1.47336,-0.954761,-0.118281][-0.708589,-0.69765,-0.105765][0.810721,0.654422,0][-1.47336,-0.954761,0.118282][-0.708589,-0.69175,0.139224][0.869182,0.659537,0][-1.47336,-0.954761,0.118282][-0.708589,-0.69175,0.139224][0.869182,0.659537,0][-1.50105,-0.888946,0.106677][-0.972214,-0.227754,0.0541069][0.864891,0.67555,0][-1.50105,-0.888946,-0.106676][-0.972214,-0.232524,-0.0270528][0.812166,0.670937,0][-1.50105,-0.815975,-0.307162][-0.972214,-0.209248,-0.104949][0.761044,0.684635,0][-1.47336,-0.873851,-0.340577][-0.708589,-0.619403,-0.337997][0.754037,0.66961,0][-1.47336,-0.954761,-0.118281][-0.708589,-0.69765,-0.105765][0.810721,0.654422,0][-1.47336,-0.954761,-0.118281][-0.708589,-0.69765,-0.105765][0.810721,0.654422,0][-1.50105,-0.888946,-0.106676][-0.972214,-0.232524,-0.0270528][0.812166,0.670937,0][-1.50105,-0.815975,-0.307162][-0.972214,-0.209248,-0.104949][0.761044,0.684635,0][-1.50105,-0.678835,-0.4706][-0.972214,-0.160734,-0.170187][0.717689,0.714993,0][-1.47336,-0.721792,-0.521794][-0.708589,-0.466447,-0.529462][0.705967,0.70327,0][-1.47336,-0.873851,-0.340577][-0.708589,-0.619403,-0.337997][0.754037,0.66961,0][-1.47336,-0.873851,-0.340577][-0.708589,-0.619403,-0.337997][0.754037,0.66961,0][-1.50105,-0.815975,-0.307162][-0.972214,-0.209248,-0.104949][0.761044,0.684635,0][-1.50105,-0.678835,-0.4706][-0.972214,-0.160734,-0.170187][0.717689,0.714993,0][-1.50105,-0.494065,-0.577276][-0.972214,-0.0928332,-0.214898][0.687332,0.758347,0][-1.47336,-0.516923,-0.640076][-0.708589,-0.25723,-0.657065][0.672307,0.751341,0][-1.47336,-0.721792,-0.521794][-0.708589,-0.466447,-0.529462][0.705967,0.70327,0][-1.47336,-0.721792,-0.521794][-0.708589,-0.466447,-0.529462][0.705967,0.70327,0][-1.50105,-0.678835,-0.4706][-0.972214,-0.160734,-0.170187][0.717689,0.714993,0][-1.50105,-0.494065,-0.577276][-0.972214,-0.0928332,-0.214898][0.687332,0.758347,0][-1.50105,-0.283954,-0.614324][-0.972214,-0.0137352,-0.233689][0.673634,0.80947,0][-1.47336,-0.283954,-0.681154][-0.708589,-0.0169876,-0.705417][0.657118,0.808025,0][-1.47336,-0.516923,-0.640076][-0.708589,-0.25723,-0.657065][0.672307,0.751341,0][-1.47336,-0.516923,-0.640076][-0.708589,-0.25723,-0.657065][0.672307,0.751341,0][-1.50105,-0.494065,-0.577276][-0.972214,-0.0928332,-0.214898][0.687332,0.758347,0][-1.50105,-0.283954,-0.614324][-0.972214,-0.0137352,-0.233689][0.673634,0.80947,0][-1.50105,-0.283954,-0.614324][-0.972214,-0.0137352,-0.233689][0.673634,0.80947,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,-0.0738424,-0.577276][-0.972214,0.0670194,-0.224294][0.678247,0.862194,0][-1.50105,-0.0738424,-0.577276][-0.972214,0.0670194,-0.224294][0.678247,0.862194,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,0.110927,-0.4706][-0.972214,0.139691,-0.187845][0.700614,0.910161,0][-1.50105,0.110927,-0.4706][-0.972214,0.139691,-0.187845][0.700614,0.910161,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,0.248067,-0.307162][-0.972214,0.195513,-0.128739][0.738038,0.947586,0][-1.50105,0.248067,-0.307162][-0.972214,0.195513,-0.128739][0.738038,0.947586,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,0.321038,-0.106676][-0.972214,0.227754,-0.0541057][0.786006,0.969953,0][-1.50105,0.321038,-0.106676][-0.972214,0.227754,-0.0541057][0.786006,0.969953,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,0.321038,0.106677][-0.972214,0.232524,0.0270536][0.83873,0.974566,0][-1.50105,0.321038,0.106677][-0.972214,0.232524,0.0270536][0.83873,0.974566,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,0.248067,0.307163][-0.972214,0.209248,0.10495][0.889853,0.960868,0][-1.50105,0.248067,0.307163][-0.972214,0.209248,0.10495][0.889853,0.960868,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,0.110927,0.470601][-0.972214,0.160734,0.170188][0.933208,0.930511,0][-1.50105,0.110927,0.470601][-0.972214,0.160734,0.170188][0.933208,0.930511,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,-0.0738425,0.577278][-0.972214,0.0928334,0.214898][0.963565,0.887156,0][-1.50105,-0.0738425,0.577278][-0.972214,0.0928334,0.214898][0.963565,0.887156,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,-0.283954,0.614326][-0.972214,0.0137352,0.23369][0.977263,0.836034,0][-1.50105,-0.283954,0.614326][-0.972214,0.0137352,0.23369][0.977263,0.836034,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,-0.494066,0.577278][-0.972214,-0.0670196,0.224294][0.97265,0.783309,0][-1.50105,-0.494066,0.577278][-0.972214,-0.0670196,0.224294][0.97265,0.783309,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,-0.678835,0.470601][-0.972214,-0.139691,0.187845][0.950282,0.735342,0][-1.50105,-0.678835,0.470601][-0.972214,-0.139691,0.187845][0.950282,0.735342,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,-0.815975,0.307163][-0.972214,-0.195513,0.12874][0.912858,0.697917,0][-1.50105,-0.815975,0.307163][-0.972214,-0.195513,0.12874][0.912858,0.697917,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,-0.888946,0.106677][-0.972214,-0.227754,0.0541069][0.864891,0.67555,0][-1.50105,-0.888946,0.106677][-0.972214,-0.227754,0.0541069][0.864891,0.67555,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,-0.888946,-0.106676][-0.972214,-0.232524,-0.0270528][0.812166,0.670937,0][-1.50105,-0.888946,-0.106676][-0.972214,-0.232524,-0.0270528][0.812166,0.670937,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,-0.815975,-0.307162][-0.972214,-0.209248,-0.104949][0.761044,0.684635,0][-1.50105,-0.815975,-0.307162][-0.972214,-0.209248,-0.104949][0.761044,0.684635,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,-0.678835,-0.4706][-0.972214,-0.160734,-0.170187][0.717689,0.714993,0][-1.50105,-0.678835,-0.4706][-0.972214,-0.160734,-0.170187][0.717689,0.714993,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,-0.494065,-0.577276][-0.972214,-0.0928332,-0.214898][0.687332,0.758347,0][-1.50105,-0.494065,-0.577276][-0.972214,-0.0928332,-0.214898][0.687332,0.758347,0][-1.50105,-0.283954,7.76242e-007][-1,0,4.66708e-007][0.825448,0.822752,0][-1.50105,-0.283954,-0.614324][-0.972214,-0.0137352,-0.233689][0.673634,0.80947,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/ono.mesh b/shareddata/charcustom/hats/fonts/ono.mesh deleted file mode 100644 index 3bf8ccb..0000000 --- a/shareddata/charcustom/hats/fonts/ono.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -24 -[5.38969,-0.901281,0.16894][-3.04123e-007,0,2][0.524416,0.01,0][5.38969,1.36734,0.16894][-1.52061e-007,0,1][0.524416,0.332368,0][-5.38969,1.36734,0.168939][-3.04123e-007,0,2][0.01,0.332368,0][-5.38969,1.36734,0.168939][-3.04123e-007,0,2][0.01,0.332368,0][-5.38969,-0.901281,0.168939][-1.52061e-007,0,1][0.01,0.01,0][5.38969,-0.901281,0.16894][-3.04123e-007,0,2][0.524416,0.01,0][5.38969,-0.901281,-0.168939][2.98593e-007,0,-2][0.00861186,0.357678,0][-5.38969,-0.901281,-0.16894][1.49297e-007,0,-1][0.97849,0.349214,0][-5.38969,1.36734,-0.16894][2.98593e-007,0,-2][0.981303,0.671569,0][-5.38969,1.36734,-0.16894][2.98593e-007,0,-2][0.981303,0.671569,0][5.38969,1.36734,-0.168939][1.49297e-007,0,-1][0.011425,0.680033,0][5.38969,-0.901281,-0.168939][2.98593e-007,0,-2][0.00861186,0.357678,0][5.38969,-0.901281,0.16894][-3.04123e-007,0,2][0.524416,0.910826,0][-5.38969,-0.901281,0.168939][-1.52061e-007,0,1][0.01,0.910826,0][-5.38969,-0.901281,-0.16894][1.49297e-007,0,-1][0.01,0.862814,0][-5.38969,-0.901281,-0.16894][1.49297e-007,0,-1][0.01,0.862814,0][5.38969,-0.901281,-0.168939][2.98593e-007,0,-2][0.524416,0.862814,0][5.38969,-0.901281,0.16894][-3.04123e-007,0,2][0.524416,0.910826,0][-5.38969,-0.901281,0.168939][-1.52061e-007,0,1][0.867856,0.0580122,0][-5.38969,1.36734,0.168939][-3.04123e-007,0,2][0.545489,0.0580122,0][-5.38969,1.36734,-0.16894][2.98593e-007,0,-2][0.545489,0.01,0][-5.38969,1.36734,-0.16894][2.98593e-007,0,-2][0.545489,0.01,0][-5.38969,-0.901281,-0.16894][1.49297e-007,0,-1][0.867856,0.01,0][-5.38969,-0.901281,0.168939][-1.52061e-007,0,1][0.867856,0.0580122,0][-5.38969,1.36734,0.168939][-3.04123e-007,0,2][0.524416,0.979911,0][5.38969,1.36734,0.16894][-1.52061e-007,0,1][0.01,0.979911,0][5.38969,1.36734,-0.168939][1.49297e-007,0,-1][0.01,0.931899,0][5.38969,1.36734,-0.168939][1.49297e-007,0,-1][0.01,0.931899,0][-5.38969,1.36734,-0.16894][2.98593e-007,0,-2][0.524416,0.931899,0][-5.38969,1.36734,0.168939][-3.04123e-007,0,2][0.524416,0.979911,0][5.38969,1.36734,0.16894][-1.52061e-007,0,1][0.87548,0.222302,0][5.38969,-0.901281,0.16894][-3.04123e-007,0,2][0.553112,0.222302,0][5.38969,-0.901281,-0.168939][2.98593e-007,0,-2][0.553112,0.17429,0][5.38969,-0.901281,-0.168939][2.98593e-007,0,-2][0.553112,0.17429,0][5.38969,1.36734,-0.168939][1.49297e-007,0,-1][0.87548,0.17429,0][5.38969,1.36734,0.16894][-1.52061e-007,0,1][0.87548,0.222302,0][0.193074,-1.67472,0.0965369][-3.08714e-007,0,2][0.485952,0.834718,0][0.193074,1.67472,0.0965369][-1.54357e-007,0,1][0.01,0.834718,0][-0.193074,1.67472,0.0965369][-3.08714e-007,0,2][0.01,0.779847,0][-0.193074,1.67472,0.0965369][-3.08714e-007,0,2][0.01,0.779847,0][-0.193074,-1.67472,0.0965369][-1.54357e-007,0,1][0.485952,0.779847,0][0.193074,-1.67472,0.0965369][-3.08714e-007,0,2][0.485952,0.834718,0][0.193074,-1.67472,-0.0965369][3.08714e-007,0,-2][0.01,0.751751,0][-0.193074,-1.67472,-0.0965369][1.54357e-007,0,-1][0.01,0.69688,0][-0.193074,1.67472,-0.0965369][3.08714e-007,0,-2][0.485952,0.69688,0][-0.193074,1.67472,-0.0965369][3.08714e-007,0,-2][0.485952,0.69688,0][0.193074,1.67472,-0.0965369][1.54357e-007,0,-1][0.485952,0.751751,0][0.193074,-1.67472,-0.0965369][3.08714e-007,0,-2][0.01,0.751751,0][0.193074,-1.67472,0.0965369][-3.08714e-007,0,2][0.60036,0.89025,0][-0.193074,-1.67472,0.0965369][-1.54357e-007,0,1][0.545489,0.89025,0][-0.193074,-1.67472,-0.0965369][1.54357e-007,0,-1][0.545489,0.862814,0][-0.193074,-1.67472,-0.0965369][1.54357e-007,0,-1][0.545489,0.862814,0][0.193074,-1.67472,-0.0965369][3.08714e-007,0,-2][0.60036,0.862814,0][0.193074,-1.67472,0.0965369][-3.08714e-007,0,2][0.60036,0.89025,0][-0.193074,-1.67472,0.0965369][-1.54357e-007,0,1][0.99,0.807283,0][-0.193074,1.67472,0.0965369][-3.08714e-007,0,2][0.514048,0.807283,0][-0.193074,1.67472,-0.0965369][3.08714e-007,0,-2][0.514048,0.779847,0][-0.193074,1.67472,-0.0965369][3.08714e-007,0,-2][0.514048,0.779847,0][-0.193074,-1.67472,-0.0965369][1.54357e-007,0,-1][0.99,0.779847,0][-0.193074,-1.67472,0.0965369][-1.54357e-007,0,1][0.99,0.807283,0][-0.193074,1.67472,0.0965369][-3.08714e-007,0,2][0.60036,0.959334,0][0.193074,1.67472,0.0965369][-1.54357e-007,0,1][0.545489,0.959334,0][0.193074,1.67472,-0.0965369][1.54357e-007,0,-1][0.545489,0.931899,0][0.193074,1.67472,-0.0965369][1.54357e-007,0,-1][0.545489,0.931899,0][-0.193074,1.67472,-0.0965369][3.08714e-007,0,-2][0.60036,0.931899,0][-0.193074,1.67472,0.0965369][-3.08714e-007,0,2][0.60036,0.959334,0][0.193074,1.67472,0.0965369][-1.54357e-007,0,1][0.991906,0.74528,0][0.193074,-1.67472,0.0965369][-3.08714e-007,0,2][0.515954,0.74528,0][0.193074,-1.67472,-0.0965369][3.08714e-007,0,-2][0.515954,0.717844,0][0.193074,-1.67472,-0.0965369][3.08714e-007,0,-2][0.515954,0.717844,0][0.193074,1.67472,-0.0965369][1.54357e-007,0,-1][0.991906,0.717844,0][0.193074,1.67472,0.0965369][-1.54357e-007,0,1][0.991906,0.74528,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/pumpkin.mesh b/shareddata/charcustom/hats/fonts/pumpkin.mesh deleted file mode 100644 index 8d610d3..0000000 --- a/shareddata/charcustom/hats/fonts/pumpkin.mesh +++ /dev/null @@ -1,3 +0,0 @@ -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/charcustom/hats/fonts/shades.mesh b/shareddata/charcustom/hats/fonts/shades.mesh deleted file mode 100644 index e918153..0000000 --- a/shareddata/charcustom/hats/fonts/shades.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -416 -[1.26939,0.197656,0.266834][1.52062,0.0120941,-0.400334][0.0842391,0.955275,-0.138794][1.27014,0.0938496,0.26684][1.51666,0.0109271,-0.399112][0.0840765,0.896485,-0.138797][1.09998,0.0942261,-0.379771][2.86034,0.0161471,-1.55774][0.120964,0.896698,0.197539][-1.41561e-007,0.114535,-0.961258][0.00661092,-0.00125711,-2.41801][0.359422,0.9082,0.5][-1.41561e-007,0.195875,-0.961258][0.00385752,0,-1.57129][0.359422,0.954267,0.5][0.151694,0.19595,-0.960886][0.393876,-0.0199821,-3.09245][0.326537,0.954309,0.499806][0.0547316,0.0525793,-0.961038][0.0101358,-0.00316528,-3.47218][0.347557,0.873112,0.499886][-1.41561e-007,0.114535,-0.961258][0.00661092,-0.00125711,-2.41801][0.359422,0.9082,0.5][0.151694,0.19595,-0.960886][0.393876,-0.0199821,-3.09245][0.326537,0.954309,0.499806][0.0982664,-0.0524437,-0.960818][0.0221649,-0.00568752,-3.37505][0.33812,0.813633,0.499771][0.0547316,0.0525793,-0.961038][0.0101358,-0.00316528,-3.47218][0.347557,0.873112,0.499886][0.151694,0.19595,-0.960886][0.393876,-0.0199821,-3.09245][0.326537,0.954309,0.499806][0.121522,-0.197083,-0.960378][0.348285,-0.0289219,-1.69158][0.333078,0.731717,0.499542][0.0982664,-0.0524437,-0.960818][0.0221649,-0.00568752,-3.37505][0.33812,0.813633,0.499771][0.151694,0.19595,-0.960886][0.393876,-0.0199821,-3.09245][0.326537,0.954309,0.499806][0.723674,-0.197042,-0.817015][1.05365,-0.0122828,-1.92707][0.202542,0.73174,0.424972][0.121522,-0.197083,-0.960378][0.348285,-0.0289219,-1.69158][0.333078,0.731717,0.499542][0.151694,0.19595,-0.960886][0.393876,-0.0199821,-3.09245][0.326537,0.954309,0.499806][0.723674,-0.197042,-0.817015][1.05365,-0.0122828,-1.92707][0.202542,0.73174,0.424972][0.151694,0.19595,-0.960886][0.393876,-0.0199821,-3.09245][0.326537,0.954309,0.499806][0.726351,0.196406,-0.81552][1.61788,-0.0827351,-2.49759][0.201961,0.954567,0.424194][0.788242,-0.0708443,-0.707704][2.69544,-0.147363,-1.9126][0.188544,0.803212,0.368113][0.723674,-0.197042,-0.817015][1.05365,-0.0122828,-1.92707][0.202542,0.73174,0.424972][0.726351,0.196406,-0.81552][1.61788,-0.0827351,-2.49759][0.201961,0.954567,0.424194][0.901259,0.0323137,-0.598393][2.6212,-0.289633,-2.33041][0.164044,0.861635,0.311255][0.788242,-0.0708443,-0.707704][2.69544,-0.147363,-1.9126][0.188544,0.803212,0.368113][0.726351,0.196406,-0.81552][1.61788,-0.0827351,-2.49759][0.201961,0.954567,0.424194][1.09998,0.0942261,-0.379771][2.86034,0.0161471,-1.55774][0.120964,0.896698,0.197539][0.901259,0.0323137,-0.598393][2.6212,-0.289633,-2.33041][0.164044,0.861635,0.311255][0.726351,0.196406,-0.81552][1.61788,-0.0827351,-2.49759][0.201961,0.954567,0.424194][1.09998,0.0942261,-0.379771][2.86034,0.0161471,-1.55774][0.120964,0.896698,0.197539][0.726351,0.196406,-0.81552][1.61788,-0.0827351,-2.49759][0.201961,0.954567,0.424194][1.09877,0.197506,-0.378519][2.71975,0.048994,-1.42019][0.121226,0.95519,0.196887][1.26939,0.197656,0.266834][1.52062,0.0120941,-0.400334][0.0842391,0.955275,-0.138794][1.09998,0.0942261,-0.379771][2.86034,0.0161471,-1.55774][0.120964,0.896698,0.197539][1.09877,0.197506,-0.378519][2.71975,0.048994,-1.42019][0.121226,0.95519,0.196887][1.05658,0.0934149,-0.355484][-2.87198,-0.0169172,1.55214][0.130373,0.896239,0.184905][1.22201,0.093415,0.279382][-1.51824,-0.0109387,0.395612][0.094511,0.896239,-0.145321][1.22126,0.197169,0.279382][-1.52071,-0.0126197,0.396526][0.0946731,0.954999,-0.145321][1.05658,0.0934149,-0.355484][-2.87198,-0.0169172,1.55214][0.130373,0.896239,0.184905][1.22126,0.197169,0.279382][-1.52071,-0.0126197,0.396526][0.0946731,0.954999,-0.145321][1.0547,0.196497,-0.355484][-2.72196,-0.0496403,1.42148][0.130781,0.954619,0.184905][1.05658,0.0934149,-0.355484][-2.87198,-0.0169172,1.55214][0.130373,0.896239,0.184905][1.0547,0.196497,-0.355484][-2.72196,-0.0496403,1.42148][0.130781,0.954619,0.184905][0.700154,0.196369,-0.773235][-1.60985,0.0819601,2.49807][0.20764,0.954546,0.402199][0.145619,0.195978,-0.911516][-0.533622,0.0755882,3.10555][0.327854,0.954325,0.474127][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][0.145619,0.195978,-0.911516][-0.533622,0.0755882,3.10555][0.327854,0.954325,0.474127][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][0.0524028,0.0525956,-0.911516][-0.516807,-0.238596,0.822181][0.348062,0.873121,0.474127][0.145619,0.195978,-0.911516][-0.533622,0.0755882,3.10555][0.327854,0.954325,0.474127][0.0524028,0.0525956,-0.911516][-0.516807,-0.238596,0.822181][0.348062,0.873121,0.474127][0.0936088,-0.0524111,-0.911516][-0.586369,-0.157247,0.794635][0.339129,0.813651,0.474126][0.145619,0.195978,-0.911516][-0.533622,0.0755882,3.10555][0.327854,0.954325,0.474127][0.0936088,-0.0524111,-0.911516][-0.586369,-0.157247,0.794635][0.339129,0.813651,0.474126][0.112207,-0.197018,-0.911516][-0.340715,0.0289672,1.66115][0.335097,0.731754,0.474126][0.145619,0.195978,-0.911516][-0.533622,0.0755882,3.10555][0.327854,0.954325,0.474127][0.112207,-0.197018,-0.911516][-0.340715,0.0289672,1.66115][0.335097,0.731754,0.474126][0.700061,-0.197018,-0.773235][-1.03415,0.0119413,1.9039][0.20766,0.731754,0.402199][0.700154,0.196369,-0.773235][-1.60985,0.0819601,2.49807][0.20764,0.954546,0.402199][0.145619,0.195978,-0.911516][-0.533622,0.0755882,3.10555][0.327854,0.954325,0.474127][0.700061,-0.197018,-0.773235][-1.03415,0.0119413,1.9039][0.20766,0.731754,0.402199][0.700154,0.196369,-0.773235][-1.60985,0.0819601,2.49807][0.20764,0.954546,0.402199][0.700061,-0.197018,-0.773235][-1.03415,0.0119413,1.9039][0.20766,0.731754,0.402199][0.759682,-0.0710288,-0.668797][-2.71701,0.133735,1.89108][0.194735,0.803107,0.347876][0.700154,0.196369,-0.773235][-1.60985,0.0819601,2.49807][0.20764,0.954546,0.402199][0.759682,-0.0710288,-0.668797][-2.71701,0.133735,1.89108][0.194735,0.803107,0.347876][0.867751,0.0319203,-0.564359][-2.63473,0.279254,2.33391][0.171308,0.861412,0.293552][1.05658,0.0934149,-0.355484][-2.87198,-0.0169172,1.55214][0.130373,0.896239,0.184905][0.700154,0.196369,-0.773235][-1.60985,0.0819601,2.49807][0.20764,0.954546,0.402199][0.867751,0.0319203,-0.564359][-2.63473,0.279254,2.33391][0.171308,0.861412,0.293552][1.08268,0.202574,0.956261][-0.354124,0.00169486,0.935197][0.124715,0.95806,-0.497401][1.08336,0.090001,0.956729][-0.350303,0.00187431,0.936634][0.124568,0.894305,-0.497644][1.08723,0.0900263,0.958192][-0.272501,0.00229974,0.962153][0.123728,0.89432,-0.498405][1.08723,0.0900263,0.958192][-0.272501,0.00229974,0.962153][0.123728,0.89432,-0.498405][1.08655,0.202554,0.957737][-0.273827,0.00226824,0.961776][0.123876,0.958049,-0.498169][1.08268,0.202574,0.956261][-0.354124,0.00169486,0.935197][0.124715,0.95806,-0.497401][1.0788,0.202592,0.954801][-0.426139,0.00128227,0.904657][0.125556,0.95807,-0.496641][1.07947,0.0899781,0.955289][-0.424128,0.00135488,0.905601][0.125411,0.894292,-0.496895][1.08336,0.090001,0.956729][-0.350303,0.00187431,0.936634][0.124568,0.894305,-0.497644][1.08336,0.090001,0.956729][-0.350303,0.00187431,0.936634][0.124568,0.894305,-0.497644][1.08268,0.202574,0.956261][-0.354124,0.00169486,0.935197][0.124715,0.95806,-0.497401][1.0788,0.202592,0.954801][-0.426139,0.00128227,0.904657][0.125556,0.95807,-0.496641][1.24722,0.089241,0.277362][0.00612441,-0.999981,0.00077785][0.0890459,0.893875,-0.14427][1.07909,0.0877906,-0.366347][0.0245278,-0.993862,0.107873][0.125493,0.893054,0.190556][1.08203,0.0876479,-0.368367][0.174005,-0.984256,0.0310246][0.124855,0.892973,0.191607][1.08203,0.0876479,-0.368367][0.174005,-0.984256,0.0310246][0.124855,0.892973,0.191607][1.25123,0.0892663,0.276336][0.0870258,-0.995988,-0.0208511][0.0881754,0.893889,-0.143737][1.24722,0.089241,0.277362][0.00612441,-0.999981,0.00077785][0.0890459,0.893875,-0.14427][1.24321,0.0892181,0.278412][-0.0731549,-0.997097,0.0211241][0.089915,0.893862,-0.144816][1.07618,0.0879502,-0.364276][-0.0486494,-0.988871,0.140595][0.126125,0.893144,0.189479][1.07909,0.0877906,-0.366347][0.0245278,-0.993862,0.107873][0.125493,0.893054,0.190556][1.07909,0.0877906,-0.366347][0.0245278,-0.993862,0.107873][0.125493,0.893054,0.190556][1.24722,0.089241,0.277362][0.00612441,-0.999981,0.00077785][0.0890459,0.893875,-0.14427][1.24321,0.0892181,0.278412][-0.0731549,-0.997097,0.0211241][0.089915,0.893862,-0.144816][1.07661,0.203218,-0.366939][-0.0496379,0.998408,0.0267785][0.126031,0.958425,0.190864][1.24639,0.201814,0.277368][0.00478307,0.999988,0.000750457][0.0892247,0.95763,-0.144273][1.25041,0.201794,0.276356][0.077006,0.996868,-0.0180313][0.0883533,0.957619,-0.143747][1.25041,0.201794,0.276356][0.077006,0.996868,-0.0180313][0.0883533,0.957619,-0.143747][1.07982,0.203422,-0.368603][0.0912097,0.994699,-0.0474803][0.125336,0.958541,0.191729][1.07661,0.203218,-0.366939][-0.0496379,0.998408,0.0267785][0.126031,0.958425,0.190864][1.07342,0.203013,-0.365238][-0.124873,0.989985,0.065846][0.126722,0.958309,0.189979][1.24238,0.201832,0.278397][-0.0833654,0.996247,0.0232641][0.090095,0.95764,-0.144809][1.24639,0.201814,0.277368][0.00478307,0.999988,0.000750457][0.0892247,0.95763,-0.144273][1.24639,0.201814,0.277368][0.00478307,0.999988,0.000750457][0.0892247,0.95763,-0.144273][1.07661,0.203218,-0.366939][-0.0496379,0.998408,0.0267785][0.126031,0.958425,0.190864][1.07342,0.203013,-0.365238][-0.124873,0.989985,0.065846][0.126722,0.958309,0.189979][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][-1.41561e-007,0.200329,-0.936381][-0.839713,0.0835737,-0.536561][0.359422,0.956789,0.48706][0.148645,0.202182,-0.936207][-0.00943332,0.999954,-0.00151363][0.327198,0.957838,0.486969][0.148645,0.202182,-0.936207][-0.00943332,0.999954,-0.00151363][0.327198,0.957838,0.486969][0.149077,0.202187,-0.940172][0.00840545,0.991648,-0.128699][0.327105,0.957841,0.489032][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][-1.41561e-007,0.200329,-0.936381][-0.839713,0.0835737,-0.536561][0.359422,0.956789,0.48706][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][0.148152,0.202177,-0.932248][-0.0209463,0.993666,0.110406][0.327305,0.957836,0.48491][0.148152,0.202177,-0.932248][-0.0209463,0.993666,0.110406][0.327305,0.957836,0.48491][0.148645,0.202182,-0.936207][-0.00943332,0.999954,-0.00151363][0.327198,0.957838,0.486969][-1.41561e-007,0.200329,-0.936381][-0.839713,0.0835737,-0.536561][0.359422,0.956789,0.48706][0.713251,0.202605,-0.794386][0.0156056,0.999506,-0.0272748][0.204801,0.958078,0.413201][1.07661,0.203218,-0.366939][-0.0496379,0.998408,0.0267785][0.126031,0.958425,0.190864][1.07982,0.203422,-0.368603][0.0912097,0.994699,-0.0474803][0.125336,0.958541,0.191729][1.07982,0.203422,-0.368603][0.0912097,0.994699,-0.0474803][0.125336,0.958541,0.191729][0.714858,0.202507,-0.797057][0.077696,0.988821,-0.127264][0.204453,0.958023,0.41459][0.713251,0.202605,-0.794386][0.0156056,0.999506,-0.0272748][0.204801,0.958078,0.413201][0.711642,0.202703,-0.791739][-0.0411506,0.997067,0.0645238][0.20515,0.958134,0.411824][1.07342,0.203013,-0.365238][-0.124873,0.989985,0.065846][0.126722,0.958309,0.189979][1.07661,0.203218,-0.366939][-0.0496379,0.998408,0.0267785][0.126031,0.958425,0.190864][1.07661,0.203218,-0.366939][-0.0496379,0.998408,0.0267785][0.126031,0.958425,0.190864][0.713251,0.202605,-0.794386][0.0156056,0.999506,-0.0272748][0.204801,0.958078,0.413201][0.711642,0.202703,-0.791739][-0.0411506,0.997067,0.0645238][0.20515,0.958134,0.411824][0.776331,-0.0772749,-0.690385][0.645352,-0.711853,0.277103][0.191126,0.79957,0.359105][0.775201,-0.0769539,-0.687352][0.609113,-0.731504,0.306403][0.191371,0.799752,0.357527][0.713249,-0.203043,-0.794354][0.441192,-0.880985,0.170923][0.204802,0.728342,0.413185][0.713249,-0.203043,-0.794354][0.441192,-0.880985,0.170923][0.204802,0.728342,0.413185][0.713774,-0.203424,-0.797725][0.394484,-0.916535,0.0659192][0.204688,0.728126,0.414938][0.776331,-0.0772749,-0.690385][0.645352,-0.711853,0.277103][0.191126,0.79957,0.359105][0.775201,-0.0769539,-0.687352][0.609113,-0.731504,0.306403][0.191371,0.799752,0.357527][0.774069,-0.0766197,-0.684325][0.468521,-0.766112,0.439956][0.191617,0.799941,0.355953][0.712711,-0.202651,-0.791008][0.416081,-0.867939,0.271216][0.204918,0.728564,0.411444][0.712711,-0.202651,-0.791008][0.416081,-0.867939,0.271216][0.204918,0.728564,0.411444][0.713249,-0.203043,-0.794354][0.441192,-0.880985,0.170923][0.204802,0.728342,0.413185][0.775201,-0.0769539,-0.687352][0.609113,-0.731504,0.306403][0.191371,0.799752,0.357527][0.148645,0.202182,-0.936207][-0.00943332,0.999954,-0.00151363][0.327198,0.957838,0.486969][0.713251,0.202605,-0.794386][0.0156056,0.999506,-0.0272748][0.204801,0.958078,0.413201][0.714858,0.202507,-0.797057][0.077696,0.988821,-0.127264][0.204453,0.958023,0.41459][0.714858,0.202507,-0.797057][0.077696,0.988821,-0.127264][0.204453,0.958023,0.41459][0.149077,0.202187,-0.940172][0.00840545,0.991648,-0.128699][0.327105,0.957841,0.489032][0.148645,0.202182,-0.936207][-0.00943332,0.999954,-0.00151363][0.327198,0.957838,0.486969][0.148152,0.202177,-0.932248][-0.0209463,0.993666,0.110406][0.327305,0.957836,0.48491][0.711642,0.202703,-0.791739][-0.0411506,0.997067,0.0645238][0.20515,0.958134,0.411824][0.713251,0.202605,-0.794386][0.0156056,0.999506,-0.0272748][0.204801,0.958078,0.413201][0.713251,0.202605,-0.794386][0.0156056,0.999506,-0.0272748][0.204801,0.958078,0.413201][0.148645,0.202182,-0.936207][-0.00943332,0.999954,-0.00151363][0.327198,0.957838,0.486969][0.148152,0.202177,-0.932248][-0.0209463,0.993666,0.110406][0.327305,0.957836,0.48491][0.713249,-0.203043,-0.794354][0.441192,-0.880985,0.170923][0.204802,0.728342,0.413185][0.113634,-0.202328,-0.936553][-0.0631696,-3.13584,0.251913][0.334788,0.728747,0.48715][0.115089,-0.202664,-0.940419][0.0394102,-3.1805,-0.181069][0.334473,0.728556,0.48916][0.115089,-0.202664,-0.940419][0.0394102,-3.1805,-0.181069][0.334473,0.728556,0.48916][0.713774,-0.203424,-0.797725][0.394484,-0.916535,0.0659192][0.204688,0.728126,0.414938][0.713249,-0.203043,-0.794354][0.441192,-0.880985,0.170923][0.204802,0.728342,0.413185][0.712711,-0.202651,-0.791008][0.416081,-0.867939,0.271216][0.204918,0.728564,0.411444][0.112158,-0.201985,-0.932689][-0.0930861,-2.76738,0.383854][0.335108,0.728941,0.48514][0.113634,-0.202328,-0.936553][-0.0631696,-3.13584,0.251913][0.334788,0.728747,0.48715][0.113634,-0.202328,-0.936553][-0.0631696,-3.13584,0.251913][0.334788,0.728747,0.48715][0.713249,-0.203043,-0.794354][0.441192,-0.880985,0.170923][0.204802,0.728342,0.413185][0.712711,-0.202651,-0.791008][0.416081,-0.867939,0.271216][0.204918,0.728564,0.411444][1.10817,0.0946096,0.961258][-0.122941,0.00336717,0.992408][0.119189,0.896915,-0.5][1.10756,0.198416,0.960823][-0.122329,0.0034451,0.992484][0.119322,0.955705,-0.499774][1.09485,0.201199,0.959246][-0.154013,0.00318819,0.988064][0.122077,0.957282,-0.498954][1.09485,0.201199,0.959246][-0.154013,0.00318819,0.988064][0.122077,0.957282,-0.498954][1.09551,0.0915503,0.9597][-0.155116,0.00309512,0.987891][0.121934,0.895183,-0.499189][1.10817,0.0946096,0.961258][-0.122941,0.00336717,0.992408][0.119189,0.896915,-0.5][1.26939,0.197656,0.266834][1.52062,0.0120941,-0.400334][0.0842391,0.955275,-0.138794][1.09877,0.197506,-0.378519][2.71975,0.048994,-1.42019][0.121226,0.95519,0.196887][1.0874,0.201479,-0.372571][0.23327,0.964631,-0.122765][0.123692,0.95744,0.193793][1.0874,0.201479,-0.372571][0.23327,0.964631,-0.122765][0.123692,0.95744,0.193793][1.25808,0.200439,0.272833][0.180761,0.982464,-0.0457195][0.0866922,0.956851,-0.141915][1.26939,0.197656,0.266834][1.52062,0.0120941,-0.400334][0.0842391,0.955275,-0.138794][1.09877,0.197506,-0.378519][2.71975,0.048994,-1.42019][0.121226,0.95519,0.196887][0.726351,0.196406,-0.81552][1.61788,-0.0827351,-2.49759][0.201961,0.954567,0.424194][0.719451,0.200476,-0.804436][0.141194,0.963039,-0.22939][0.203457,0.956872,0.418429][0.719451,0.200476,-0.804436][0.141194,0.963039,-0.22939][0.203457,0.956872,0.418429][1.0874,0.201479,-0.372571][0.23327,0.964631,-0.122765][0.123692,0.95744,0.193793][1.09877,0.197506,-0.378519][2.71975,0.048994,-1.42019][0.121226,0.95519,0.196887][0.726351,0.196406,-0.81552][1.61788,-0.0827351,-2.49759][0.201961,0.954567,0.424194][0.151694,0.19595,-0.960886][0.393876,-0.0199821,-3.09245][0.326537,0.954309,0.499806][0.150128,0.200097,-0.948457][0.0326396,0.959953,-0.278253][0.326877,0.956658,0.493341][0.150128,0.200097,-0.948457][0.0326396,0.959953,-0.278253][0.326877,0.956658,0.493341][0.719451,0.200476,-0.804436][0.141194,0.963039,-0.22939][0.203457,0.956872,0.418429][0.726351,0.196406,-0.81552][1.61788,-0.0827351,-2.49759][0.201961,0.954567,0.424194][-1.41561e-007,0.195875,-0.961258][0.00385752,0,-1.57129][0.359422,0.954267,0.5][-1.41561e-007,0.19883,-0.948816][0,0.992615,-0.121307][0.359422,0.95594,0.493528][0.150128,0.200097,-0.948457][0.0326396,0.959953,-0.278253][0.326877,0.956658,0.493341][0.150128,0.200097,-0.948457][0.0326396,0.959953,-0.278253][0.326877,0.956658,0.493341][0.151694,0.19595,-0.960886][0.393876,-0.0199821,-3.09245][0.326537,0.954309,0.499806][-1.41561e-007,0.195875,-0.961258][0.00385752,0,-1.57129][0.359422,0.954267,0.5][0.121522,-0.197083,-0.960378][0.348285,-0.0289219,-1.69158][0.333078,0.731717,0.499542][0.723674,-0.197042,-0.817015][1.05365,-0.0122828,-1.92707][0.202542,0.73174,0.424972][0.717838,-0.201334,-0.805402][0.480763,-0.876047,-0.037521][0.203807,0.72931,0.418931][0.717838,-0.201334,-0.805402][0.480763,-0.876047,-0.037521][0.203807,0.72931,0.418931][0.117413,-0.200848,-0.948456][0.17517,-2.99502,-0.748291][0.333969,0.729585,0.493341][0.121522,-0.197083,-0.960378][0.348285,-0.0289219,-1.69158][0.333078,0.731717,0.499542][0.788242,-0.0708443,-0.707704][2.69544,-0.147363,-1.9126][0.188544,0.803212,0.368113][0.781189,-0.0751547,-0.697264][0.675212,-0.706265,0.212787][0.190073,0.80077,0.362683][0.717838,-0.201334,-0.805402][0.480763,-0.876047,-0.037521][0.203807,0.72931,0.418931][0.717838,-0.201334,-0.805402][0.480763,-0.876047,-0.037521][0.203807,0.72931,0.418931][0.723674,-0.197042,-0.817015][1.05365,-0.0122828,-1.92707][0.202542,0.73174,0.424972][0.788242,-0.0708443,-0.707704][2.69544,-0.147363,-1.9126][0.188544,0.803212,0.368113][1.09998,0.0942261,-0.379771][2.86034,0.0161471,-1.55774][0.120964,0.896698,0.197539][1.27014,0.0938496,0.26684][1.51666,0.0109271,-0.399112][0.0840765,0.896485,-0.138797][1.25888,0.0907904,0.272825][0.200482,-0.978309,-0.0521428][0.0865184,0.894752,-0.14191][1.25888,0.0907904,0.272825][0.200482,-0.978309,-0.0521428][0.0865184,0.894752,-0.14191][1.08928,0.0898585,-0.372851][0.31253,-0.948472,-0.0522199][0.123285,0.894225,0.193939][1.09998,0.0942261,-0.379771][2.86034,0.0161471,-1.55774][0.120964,0.896698,0.197539][1.22201,0.093415,0.279382][-1.51824,-0.0109387,0.395612][0.094511,0.896239,-0.145321][1.05658,0.0934149,-0.355484][-2.87198,-0.0169172,1.55214][0.130373,0.896239,0.184905][1.0684,0.0897568,-0.360676][-0.161399,-0.964666,0.208253][0.12781,0.894167,0.187606][1.0684,0.0897568,-0.360676][-0.161399,-0.964666,0.208253][0.12781,0.894167,0.187606][1.23481,0.0906207,0.279079][-0.183375,-0.981804,0.0493475][0.0917367,0.894656,-0.145164][1.22201,0.093415,0.279382][-1.51824,-0.0109387,0.395612][0.094511,0.896239,-0.145321][0.867751,0.0319203,-0.564359][-2.63473,0.279254,2.33391][0.171308,0.861412,0.293552][0.877501,0.0282326,-0.572269][0.0781735,-0.887681,0.453775][0.169194,0.859323,0.297666][1.0684,0.0897568,-0.360676][-0.161399,-0.964666,0.208253][0.12781,0.894167,0.187606][1.0684,0.0897568,-0.360676][-0.161399,-0.964666,0.208253][0.12781,0.894167,0.187606][1.05658,0.0934149,-0.355484][-2.87198,-0.0169172,1.55214][0.130373,0.896239,0.184905][0.867751,0.0319203,-0.564359][-2.63473,0.279254,2.33391][0.171308,0.861412,0.293552][0.700061,-0.197018,-0.773235][-1.03415,0.0119413,1.9039][0.20766,0.731754,0.402199][0.112207,-0.197018,-0.911516][-0.340715,0.0289672,1.66115][0.335097,0.731754,0.474126][0.111998,-0.200287,-0.92425][-0.0781939,-1.28649,0.332338][0.335143,0.729903,0.48075][0.111998,-0.200287,-0.92425][-0.0781939,-1.28649,0.332338][0.335143,0.729903,0.48075][0.707737,-0.200735,-0.783861][0.22158,-0.88049,0.419094][0.205996,0.729649,0.407726][0.700061,-0.197018,-0.773235][-1.03415,0.0119413,1.9039][0.20766,0.731754,0.402199][0.112207,-0.197018,-0.911516][-0.340715,0.0289672,1.66115][0.335097,0.731754,0.474126][0.0936088,-0.0524111,-0.911516][-0.586369,-0.157247,0.794635][0.339129,0.813651,0.474126][0.0917197,-0.0543952,-0.924101][-0.956317,-0.249151,0.152907][0.339539,0.812528,0.480673][0.0917197,-0.0543952,-0.924101][-0.956317,-0.249151,0.152907][0.339539,0.812528,0.480673][0.111998,-0.200287,-0.92425][-0.0781939,-1.28649,0.332338][0.335143,0.729903,0.48075][0.112207,-0.197018,-0.911516][-0.340715,0.0289672,1.66115][0.335097,0.731754,0.474126][0.145619,0.195978,-0.911516][-0.533622,0.0755882,3.10555][0.327854,0.954325,0.474127][0.700154,0.196369,-0.773235][-1.60985,0.0819601,2.49807][0.20764,0.954546,0.402199][0.707042,0.200589,-0.784331][-0.140307,0.964285,0.224653][0.206147,0.956937,0.407971][0.707042,0.200589,-0.784331][-0.140307,0.964285,0.224653][0.206147,0.956937,0.407971][0.147143,0.200121,-0.923954][-0.0418425,0.961646,0.271083][0.327524,0.956671,0.480596][0.145619,0.195978,-0.911516][-0.533622,0.0755882,3.10555][0.327854,0.954325,0.474127][0.700154,0.196369,-0.773235][-1.60985,0.0819601,2.49807][0.20764,0.954546,0.402199][1.0547,0.196497,-0.355484][-2.72196,-0.0496403,1.42148][0.130781,0.954619,0.184905][1.06593,0.200813,-0.361338][-0.250343,0.959254,0.130997][0.128345,0.957063,0.18795][1.06593,0.200813,-0.361338][-0.250343,0.959254,0.130997][0.128345,0.957063,0.18795][0.707042,0.200589,-0.784331][-0.140307,0.964285,0.224653][0.206147,0.956937,0.407971][0.700154,0.196369,-0.773235][-1.60985,0.0819601,2.49807][0.20764,0.954546,0.402199][1.0547,0.196497,-0.355484][-2.72196,-0.0496403,1.42148][0.130781,0.954619,0.184905][1.22126,0.197169,0.279382][-1.52071,-0.0126197,0.396526][0.0946731,0.954999,-0.145321][1.234,0.200255,0.279074][-0.204539,0.977383,0.0537187][0.0919112,0.956747,-0.145161][1.234,0.200255,0.279074][-0.204539,0.977383,0.0537187][0.0919112,0.956747,-0.145161][1.06593,0.200813,-0.361338][-0.250343,0.959254,0.130997][0.128345,0.957063,0.18795][1.0547,0.196497,-0.355484][-2.72196,-0.0496403,1.42148][0.130781,0.954619,0.184905][1.06093,0.197929,0.943495][-0.553703,0.000218509,0.832714][0.129429,0.955429,-0.49076][1.06155,0.0941749,0.943924][-0.554016,0.000170674,0.832506][0.129296,0.896669,-0.490983][1.0722,0.0913806,0.951016][-0.527563,0.000430358,0.849516][0.126986,0.895087,-0.494673][1.0722,0.0913806,0.951016][-0.527563,0.000430358,0.849516][0.126986,0.895087,-0.494673][1.07155,0.201015,0.950551][-0.526815,0.000500919,0.84998][0.127128,0.957177,-0.49443][1.06093,0.197929,0.943495][-0.553703,0.000218509,0.832714][0.129429,0.955429,-0.49076][1.09551,0.0915503,0.9597][-0.155116,0.00309512,0.987891][0.121934,0.895183,-0.499189][1.09485,0.201199,0.959246][-0.154013,0.00318819,0.988064][0.122077,0.957282,-0.498954][1.08655,0.202554,0.957737][-0.273827,0.00226824,0.961776][0.123876,0.958049,-0.498169][1.08655,0.202554,0.957737][-0.273827,0.00226824,0.961776][0.123876,0.958049,-0.498169][1.08723,0.0900263,0.958192][-0.272501,0.00229974,0.962153][0.123728,0.89432,-0.498405][1.09551,0.0915503,0.9597][-0.155116,0.00309512,0.987891][0.121934,0.895183,-0.499189][1.25808,0.200439,0.272833][0.180761,0.982464,-0.0457195][0.0866922,0.956851,-0.141915][1.0874,0.201479,-0.372571][0.23327,0.964631,-0.122765][0.123692,0.95744,0.193793][1.07982,0.203422,-0.368603][0.0912097,0.994699,-0.0474803][0.125336,0.958541,0.191729][1.07982,0.203422,-0.368603][0.0912097,0.994699,-0.0474803][0.125336,0.958541,0.191729][1.25041,0.201794,0.276356][0.077006,0.996868,-0.0180313][0.0883533,0.957619,-0.143747][1.25808,0.200439,0.272833][0.180761,0.982464,-0.0457195][0.0866922,0.956851,-0.141915][1.0874,0.201479,-0.372571][0.23327,0.964631,-0.122765][0.123692,0.95744,0.193793][0.719451,0.200476,-0.804436][0.141194,0.963039,-0.22939][0.203457,0.956872,0.418429][0.714858,0.202507,-0.797057][0.077696,0.988821,-0.127264][0.204453,0.958023,0.41459][0.714858,0.202507,-0.797057][0.077696,0.988821,-0.127264][0.204453,0.958023,0.41459][1.07982,0.203422,-0.368603][0.0912097,0.994699,-0.0474803][0.125336,0.958541,0.191729][1.0874,0.201479,-0.372571][0.23327,0.964631,-0.122765][0.123692,0.95744,0.193793][0.719451,0.200476,-0.804436][0.141194,0.963039,-0.22939][0.203457,0.956872,0.418429][0.150128,0.200097,-0.948457][0.0326396,0.959953,-0.278253][0.326877,0.956658,0.493341][0.149077,0.202187,-0.940172][0.00840545,0.991648,-0.128699][0.327105,0.957841,0.489032][0.149077,0.202187,-0.940172][0.00840545,0.991648,-0.128699][0.327105,0.957841,0.489032][0.714858,0.202507,-0.797057][0.077696,0.988821,-0.127264][0.204453,0.958023,0.41459][0.719451,0.200476,-0.804436][0.141194,0.963039,-0.22939][0.203457,0.956872,0.418429][-1.41561e-007,0.19883,-0.948816][0,0.992615,-0.121307][0.359422,0.95594,0.493528][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][0.149077,0.202187,-0.940172][0.00840545,0.991648,-0.128699][0.327105,0.957841,0.489032][0.149077,0.202187,-0.940172][0.00840545,0.991648,-0.128699][0.327105,0.957841,0.489032][0.150128,0.200097,-0.948457][0.0326396,0.959953,-0.278253][0.326877,0.956658,0.493341][-1.41561e-007,0.19883,-0.948816][0,0.992615,-0.121307][0.359422,0.95594,0.493528][0.117413,-0.200848,-0.948456][0.17517,-2.99502,-0.748291][0.333969,0.729585,0.493341][0.717838,-0.201334,-0.805402][0.480763,-0.876047,-0.037521][0.203807,0.72931,0.418931][0.713774,-0.203424,-0.797725][0.394484,-0.916535,0.0659192][0.204688,0.728126,0.414938][0.713774,-0.203424,-0.797725][0.394484,-0.916535,0.0659192][0.204688,0.728126,0.414938][0.115089,-0.202664,-0.940419][0.0394102,-3.1805,-0.181069][0.334473,0.728556,0.48916][0.117413,-0.200848,-0.948456][0.17517,-2.99502,-0.748291][0.333969,0.729585,0.493341][0.781189,-0.0751547,-0.697264][0.675212,-0.706265,0.212787][0.190073,0.80077,0.362683][0.776331,-0.0772749,-0.690385][0.645352,-0.711853,0.277103][0.191126,0.79957,0.359105][0.713774,-0.203424,-0.797725][0.394484,-0.916535,0.0659192][0.204688,0.728126,0.414938][0.713774,-0.203424,-0.797725][0.394484,-0.916535,0.0659192][0.204688,0.728126,0.414938][0.717838,-0.201334,-0.805402][0.480763,-0.876047,-0.037521][0.203807,0.72931,0.418931][0.781189,-0.0751547,-0.697264][0.675212,-0.706265,0.212787][0.190073,0.80077,0.362683][1.08928,0.0898585,-0.372851][0.31253,-0.948472,-0.0522199][0.123285,0.894225,0.193939][1.25888,0.0907904,0.272825][0.200482,-0.978309,-0.0521428][0.0865184,0.894752,-0.14191][1.25123,0.0892663,0.276336][0.0870258,-0.995988,-0.0208511][0.0881754,0.893889,-0.143737][1.25123,0.0892663,0.276336][0.0870258,-0.995988,-0.0208511][0.0881754,0.893889,-0.143737][1.08203,0.0876479,-0.368367][0.174005,-0.984256,0.0310246][0.124855,0.892973,0.191607][1.08928,0.0898585,-0.372851][0.31253,-0.948472,-0.0522199][0.123285,0.894225,0.193939][1.23481,0.0906207,0.279079][-0.183375,-0.981804,0.0493475][0.0917367,0.894656,-0.145164][1.0684,0.0897568,-0.360676][-0.161399,-0.964666,0.208253][0.12781,0.894167,0.187606][1.07618,0.0879502,-0.364276][-0.0486494,-0.988871,0.140595][0.126125,0.893144,0.189479][1.07618,0.0879502,-0.364276][-0.0486494,-0.988871,0.140595][0.126125,0.893144,0.189479][1.24321,0.0892181,0.278412][-0.0731549,-0.997097,0.0211241][0.089915,0.893862,-0.144816][1.23481,0.0906207,0.279079][-0.183375,-0.981804,0.0493475][0.0917367,0.894656,-0.145164][0.877501,0.0282326,-0.572269][0.0781735,-0.887681,0.453775][0.169194,0.859323,0.297666][0.883875,0.0263715,-0.577642][0.181599,-0.920023,0.347244][0.167813,0.858269,0.300461][1.07618,0.0879502,-0.364276][-0.0486494,-0.988871,0.140595][0.126125,0.893144,0.189479][1.07618,0.0879502,-0.364276][-0.0486494,-0.988871,0.140595][0.126125,0.893144,0.189479][1.0684,0.0897568,-0.360676][-0.161399,-0.964666,0.208253][0.12781,0.894167,0.187606][0.877501,0.0282326,-0.572269][0.0781735,-0.887681,0.453775][0.169194,0.859323,0.297666][0.707737,-0.200735,-0.783861][0.22158,-0.88049,0.419094][0.205996,0.729649,0.407726][0.111998,-0.200287,-0.92425][-0.0781939,-1.28649,0.332338][0.335143,0.729903,0.48075][0.112158,-0.201985,-0.932689][-0.0930861,-2.76738,0.383854][0.335108,0.728941,0.48514][0.112158,-0.201985,-0.932689][-0.0930861,-2.76738,0.383854][0.335108,0.728941,0.48514][0.712711,-0.202651,-0.791008][0.416081,-0.867939,0.271216][0.204918,0.728564,0.411444][0.707737,-0.200735,-0.783861][0.22158,-0.88049,0.419094][0.205996,0.729649,0.407726][0.111998,-0.200287,-0.92425][-0.0781939,-1.28649,0.332338][0.335143,0.729903,0.48075][0.0917197,-0.0543952,-0.924101][-0.956317,-0.249151,0.152907][0.339539,0.812528,0.480673][0.090885,-0.0554055,-0.932426][-0.96532,-0.259682,0.0268799][0.33972,0.811955,0.485003][0.090885,-0.0554055,-0.932426][-0.96532,-0.259682,0.0268799][0.33972,0.811955,0.485003][0.112158,-0.201985,-0.932689][-0.0930861,-2.76738,0.383854][0.335108,0.728941,0.48514][0.111998,-0.200287,-0.92425][-0.0781939,-1.28649,0.332338][0.335143,0.729903,0.48075][0.147143,0.200121,-0.923954][-0.0418425,0.961646,0.271083][0.327524,0.956671,0.480596][0.707042,0.200589,-0.784331][-0.140307,0.964285,0.224653][0.206147,0.956937,0.407971][0.711642,0.202703,-0.791739][-0.0411506,0.997067,0.0645238][0.20515,0.958134,0.411824][0.711642,0.202703,-0.791739][-0.0411506,0.997067,0.0645238][0.20515,0.958134,0.411824][0.148152,0.202177,-0.932248][-0.0209463,0.993666,0.110406][0.327305,0.957836,0.48491][0.147143,0.200121,-0.923954][-0.0418425,0.961646,0.271083][0.327524,0.956671,0.480596][0.707042,0.200589,-0.784331][-0.140307,0.964285,0.224653][0.206147,0.956937,0.407971][1.06593,0.200813,-0.361338][-0.250343,0.959254,0.130997][0.128345,0.957063,0.18795][1.07342,0.203013,-0.365238][-0.124873,0.989985,0.065846][0.126722,0.958309,0.189979][1.07342,0.203013,-0.365238][-0.124873,0.989985,0.065846][0.126722,0.958309,0.189979][0.711642,0.202703,-0.791739][-0.0411506,0.997067,0.0645238][0.20515,0.958134,0.411824][0.707042,0.200589,-0.784331][-0.140307,0.964285,0.224653][0.206147,0.956937,0.407971][1.06593,0.200813,-0.361338][-0.250343,0.959254,0.130997][0.128345,0.957063,0.18795][1.234,0.200255,0.279074][-0.204539,0.977383,0.0537187][0.0919112,0.956747,-0.145161][1.24238,0.201832,0.278397][-0.0833654,0.996247,0.0232641][0.090095,0.95764,-0.144809][1.24238,0.201832,0.278397][-0.0833654,0.996247,0.0232641][0.090095,0.95764,-0.144809][1.07342,0.203013,-0.365238][-0.124873,0.989985,0.065846][0.126722,0.958309,0.189979][1.06593,0.200813,-0.361338][-0.250343,0.959254,0.130997][0.128345,0.957063,0.18795][1.07155,0.201015,0.950551][-0.526815,0.000500919,0.84998][0.127128,0.957177,-0.49443][1.0722,0.0913806,0.951016][-0.527563,0.000430358,0.849516][0.126986,0.895087,-0.494673][1.07947,0.0899781,0.955289][-0.424128,0.00135488,0.905601][0.125411,0.894292,-0.496895][1.07947,0.0899781,0.955289][-0.424128,0.00135488,0.905601][0.125411,0.894292,-0.496895][1.0788,0.202592,0.954801][-0.426139,0.00128227,0.904657][0.125556,0.95807,-0.496641][1.07155,0.201015,0.950551][-0.526815,0.000500919,0.84998][0.127128,0.957177,-0.49443][1.08203,0.0876479,-0.368367][0.174005,-0.984256,0.0310246][0.124855,0.892973,0.191607][1.07909,0.0877906,-0.366347][0.0245278,-0.993862,0.107873][0.125493,0.893054,0.190556][0.885602,0.0260954,-0.58035][0.280125,-0.921014,0.270673][0.167438,0.858113,0.30187][0.885602,0.0260954,-0.58035][0.280125,-0.921014,0.270673][0.167438,0.858113,0.30187][0.887336,0.0258338,-0.583046][0.380709,-0.904953,0.190056][0.167062,0.857965,0.303272][1.08203,0.0876479,-0.368367][0.174005,-0.984256,0.0310246][0.124855,0.892973,0.191607][1.07909,0.0877906,-0.366347][0.0245278,-0.993862,0.107873][0.125493,0.893054,0.190556][1.07618,0.0879502,-0.364276][-0.0486494,-0.988871,0.140595][0.126125,0.893144,0.189479][0.883875,0.0263715,-0.577642][0.181599,-0.920023,0.347244][0.167813,0.858269,0.300461][0.883875,0.0263715,-0.577642][0.181599,-0.920023,0.347244][0.167813,0.858269,0.300461][0.885602,0.0260954,-0.58035][0.280125,-0.921014,0.270673][0.167438,0.858113,0.30187][1.07909,0.0877906,-0.366347][0.0245278,-0.993862,0.107873][0.125493,0.893054,0.190556][0.901259,0.0323137,-0.598393][2.6212,-0.289633,-2.33041][0.164044,0.861635,0.311255][1.09998,0.0942261,-0.379771][2.86034,0.0161471,-1.55774][0.120964,0.896698,0.197539][1.08928,0.0898585,-0.372851][0.31253,-0.948472,-0.0522199][0.123285,0.894225,0.193939][1.08928,0.0898585,-0.372851][0.31253,-0.948472,-0.0522199][0.123285,0.894225,0.193939][0.892988,0.0279842,-0.589127][0.469769,-0.880596,0.062195][0.165837,0.859183,0.306435][0.901259,0.0323137,-0.598393][2.6212,-0.289633,-2.33041][0.164044,0.861635,0.311255][0.759682,-0.0710288,-0.668797][-2.71701,0.133735,1.89108][0.194735,0.803107,0.347876][0.768395,-0.0747312,-0.678065][0.326243,-0.755857,0.567667][0.192847,0.80101,0.352696][0.877501,0.0282326,-0.572269][0.0781735,-0.887681,0.453775][0.169194,0.859323,0.297666][0.877501,0.0282326,-0.572269][0.0781735,-0.887681,0.453775][0.169194,0.859323,0.297666][0.867751,0.0319203,-0.564359][-2.63473,0.279254,2.33391][0.171308,0.861412,0.293552][0.759682,-0.0710288,-0.668797][-2.71701,0.133735,1.89108][0.194735,0.803107,0.347876][0.892988,0.0279842,-0.589127][0.469769,-0.880596,0.062195][0.165837,0.859183,0.306435][1.08928,0.0898585,-0.372851][0.31253,-0.948472,-0.0522199][0.123285,0.894225,0.193939][1.08203,0.0876479,-0.368367][0.174005,-0.984256,0.0310246][0.124855,0.892973,0.191607][1.08203,0.0876479,-0.368367][0.174005,-0.984256,0.0310246][0.124855,0.892973,0.191607][0.887336,0.0258338,-0.583046][0.380709,-0.904953,0.190056][0.167062,0.857965,0.303272][0.892988,0.0279842,-0.589127][0.469769,-0.880596,0.062195][0.165837,0.859183,0.306435][0.768395,-0.0747312,-0.678065][0.326243,-0.755857,0.567667][0.192847,0.80101,0.352696][0.774069,-0.0766197,-0.684325][0.468521,-0.766112,0.439956][0.191617,0.799941,0.355953][0.883875,0.0263715,-0.577642][0.181599,-0.920023,0.347244][0.167813,0.858269,0.300461][0.883875,0.0263715,-0.577642][0.181599,-0.920023,0.347244][0.167813,0.858269,0.300461][0.877501,0.0282326,-0.572269][0.0781735,-0.887681,0.453775][0.169194,0.859323,0.297666][0.768395,-0.0747312,-0.678065][0.326243,-0.755857,0.567667][0.192847,0.80101,0.352696][0.091699,-0.0561375,-0.940431][-0.947816,-0.25845,-0.186678][0.339543,0.811541,0.489166][0.115089,-0.202664,-0.940419][0.0394102,-3.1805,-0.181069][0.334473,0.728556,0.48916][0.113634,-0.202328,-0.936553][-0.0631696,-3.13584,0.251913][0.334788,0.728747,0.48715][0.113634,-0.202328,-0.936553][-0.0631696,-3.13584,0.251913][0.334788,0.728747,0.48715][0.0912961,-0.0557755,-0.936428][-0.961677,-0.263975,-0.0741249][0.339631,0.811746,0.487084][0.091699,-0.0561375,-0.940431][-0.947816,-0.25845,-0.186678][0.339543,0.811541,0.489166][0.0912961,-0.0557755,-0.936428][-0.961677,-0.263975,-0.0741249][0.339631,0.811746,0.487084][0.113634,-0.202328,-0.936553][-0.0631696,-3.13584,0.251913][0.334788,0.728747,0.48715][0.112158,-0.201985,-0.932689][-0.0930861,-2.76738,0.383854][0.335108,0.728941,0.48514][0.112158,-0.201985,-0.932689][-0.0930861,-2.76738,0.383854][0.335108,0.728941,0.48514][0.090885,-0.0554055,-0.932426][-0.96532,-0.259682,0.0268799][0.33972,0.811955,0.485003][0.0912961,-0.0557755,-0.936428][-0.961677,-0.263975,-0.0741249][0.339631,0.811746,0.487084][0.121522,-0.197083,-0.960378][0.348285,-0.0289219,-1.69158][0.333078,0.731717,0.499542][0.117413,-0.200848,-0.948456][0.17517,-2.99502,-0.748291][0.333969,0.729585,0.493341][0.0939627,-0.0549272,-0.948639][-0.908346,-0.256034,-0.330687][0.339053,0.812226,0.493436][0.0939627,-0.0549272,-0.948639][-0.908346,-0.256034,-0.330687][0.339053,0.812226,0.493436][0.0982664,-0.0524437,-0.960818][0.0221649,-0.00568752,-3.37505][0.33812,0.813633,0.499771][0.121522,-0.197083,-0.960378][0.348285,-0.0289219,-1.69158][0.333078,0.731717,0.499542][0.0936088,-0.0524111,-0.911516][-0.586369,-0.157247,0.794635][0.339129,0.813651,0.474126][0.0524028,0.0525956,-0.911516][-0.516807,-0.238596,0.822181][0.348062,0.873121,0.474127][0.049674,0.0512539,-0.924026][-0.8396,-0.502588,0.206103][0.348654,0.872361,0.480634][0.049674,0.0512539,-0.924026][-0.8396,-0.502588,0.206103][0.348654,0.872361,0.480634][0.0917197,-0.0543952,-0.924101][-0.956317,-0.249151,0.152907][0.339539,0.812528,0.480673][0.0936088,-0.0524111,-0.911516][-0.586369,-0.157247,0.794635][0.339129,0.813651,0.474126][0.117413,-0.200848,-0.948456][0.17517,-2.99502,-0.748291][0.333969,0.729585,0.493341][0.115089,-0.202664,-0.940419][0.0394102,-3.1805,-0.181069][0.334473,0.728556,0.48916][0.091699,-0.0561375,-0.940431][-0.947816,-0.25845,-0.186678][0.339543,0.811541,0.489166][0.091699,-0.0561375,-0.940431][-0.947816,-0.25845,-0.186678][0.339543,0.811541,0.489166][0.0939627,-0.0549272,-0.948639][-0.908346,-0.256034,-0.330687][0.339053,0.812226,0.493436][0.117413,-0.200848,-0.948456][0.17517,-2.99502,-0.748291][0.333969,0.729585,0.493341][0.049674,0.0512539,-0.924026][-0.8396,-0.502588,0.206103][0.348654,0.872361,0.480634][0.0483419,0.0505878,-0.932294][-0.846357,-0.516961,0.128186][0.348942,0.871984,0.484934][0.090885,-0.0554055,-0.932426][-0.96532,-0.259682,0.0268799][0.33972,0.811955,0.485003][0.090885,-0.0554055,-0.932426][-0.96532,-0.259682,0.0268799][0.33972,0.811955,0.485003][0.0917197,-0.0543952,-0.924101][-0.956317,-0.249151,0.152907][0.339539,0.812528,0.480673][0.049674,0.0512539,-0.924026][-0.8396,-0.502588,0.206103][0.348654,0.872361,0.480634][0.0480975,0.0498293,-0.940437][-0.859609,-0.49771,-0.115577][0.348995,0.871554,0.48917][0.091699,-0.0561375,-0.940431][-0.947816,-0.25845,-0.186678][0.339543,0.811541,0.489166][0.0912961,-0.0557755,-0.936428][-0.961677,-0.263975,-0.0741249][0.339631,0.811746,0.487084][0.0912961,-0.0557755,-0.936428][-0.961677,-0.263975,-0.0741249][0.339631,0.811746,0.487084][0.0482204,0.0502042,-0.936365][-0.853798,-0.515804,0.0705301][0.348969,0.871767,0.487052][0.0480975,0.0498293,-0.940437][-0.859609,-0.49771,-0.115577][0.348995,0.871554,0.48917][0.0482204,0.0502042,-0.936365][-0.853798,-0.515804,0.0705301][0.348969,0.871767,0.487052][0.0912961,-0.0557755,-0.936428][-0.961677,-0.263975,-0.0741249][0.339631,0.811746,0.487084][0.090885,-0.0554055,-0.932426][-0.96532,-0.259682,0.0268799][0.33972,0.811955,0.485003][0.090885,-0.0554055,-0.932426][-0.96532,-0.259682,0.0268799][0.33972,0.811955,0.485003][0.0483419,0.0505878,-0.932294][-0.846357,-0.516961,0.128186][0.348942,0.871984,0.484934][0.0482204,0.0502042,-0.936365][-0.853798,-0.515804,0.0705301][0.348969,0.871767,0.487052][0.0547316,0.0525793,-0.961038][0.0101358,-0.00316528,-3.47218][0.347557,0.873112,0.499886][0.0982664,-0.0524437,-0.960818][0.0221649,-0.00568752,-3.37505][0.33812,0.813633,0.499771][0.0939627,-0.0549272,-0.948639][-0.908346,-0.256034,-0.330687][0.339053,0.812226,0.493436][0.0939627,-0.0549272,-0.948639][-0.908346,-0.256034,-0.330687][0.339053,0.812226,0.493436][0.0503305,0.0507365,-0.948731][-0.81544,-0.491145,-0.306325][0.348511,0.872068,0.493484][0.0547316,0.0525793,-0.961038][0.0101358,-0.00316528,-3.47218][0.347557,0.873112,0.499886][0.0939627,-0.0549272,-0.948639][-0.908346,-0.256034,-0.330687][0.339053,0.812226,0.493436][0.091699,-0.0561375,-0.940431][-0.947816,-0.25845,-0.186678][0.339543,0.811541,0.489166][0.0480975,0.0498293,-0.940437][-0.859609,-0.49771,-0.115577][0.348995,0.871554,0.48917][0.0480975,0.0498293,-0.940437][-0.859609,-0.49771,-0.115577][0.348995,0.871554,0.48917][0.0503305,0.0507365,-0.948731][-0.81544,-0.491145,-0.306325][0.348511,0.872068,0.493484][0.0939627,-0.0549272,-0.948639][-0.908346,-0.256034,-0.330687][0.339053,0.812226,0.493436][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-1.41561e-007,0.109642,-0.923957][1,0,0][0.359422,0.905429,0.480597][0.049674,0.0512539,-0.924026][-0.8396,-0.502588,0.206103][0.348654,0.872361,0.480634][0.049674,0.0512539,-0.924026][-0.8396,-0.502588,0.206103][0.348654,0.872361,0.480634][0.0524028,0.0525956,-0.911516][-0.516807,-0.238596,0.822181][0.348062,0.873121,0.474127][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][0.049674,0.0512539,-0.924026][-0.8396,-0.502588,0.206103][0.348654,0.872361,0.480634][-1.41561e-007,0.109642,-0.923957][1,0,0][0.359422,0.905429,0.480597][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][0.0483419,0.0505878,-0.932294][-0.846357,-0.516961,0.128186][0.348942,0.871984,0.484934][0.049674,0.0512539,-0.924026][-0.8396,-0.502588,0.206103][0.348654,0.872361,0.480634][0.887336,0.0258338,-0.583046][0.380709,-0.904953,0.190056][0.167062,0.857965,0.303272][0.885602,0.0260954,-0.58035][0.280125,-0.921014,0.270673][0.167438,0.858113,0.30187][0.775201,-0.0769539,-0.687352][0.609113,-0.731504,0.306403][0.191371,0.799752,0.357527][0.775201,-0.0769539,-0.687352][0.609113,-0.731504,0.306403][0.191371,0.799752,0.357527][0.776331,-0.0772749,-0.690385][0.645352,-0.711853,0.277103][0.191126,0.79957,0.359105][0.887336,0.0258338,-0.583046][0.380709,-0.904953,0.190056][0.167062,0.857965,0.303272][0.885602,0.0260954,-0.58035][0.280125,-0.921014,0.270673][0.167438,0.858113,0.30187][0.883875,0.0263715,-0.577642][0.181599,-0.920023,0.347244][0.167813,0.858269,0.300461][0.774069,-0.0766197,-0.684325][0.468521,-0.766112,0.439956][0.191617,0.799941,0.355953][0.774069,-0.0766197,-0.684325][0.468521,-0.766112,0.439956][0.191617,0.799941,0.355953][0.775201,-0.0769539,-0.687352][0.609113,-0.731504,0.306403][0.191371,0.799752,0.357527][0.885602,0.0260954,-0.58035][0.280125,-0.921014,0.270673][0.167438,0.858113,0.30187][0.788242,-0.0708443,-0.707704][2.69544,-0.147363,-1.9126][0.188544,0.803212,0.368113][0.901259,0.0323137,-0.598393][2.6212,-0.289633,-2.33041][0.164044,0.861635,0.311255][0.892988,0.0279842,-0.589127][0.469769,-0.880596,0.062195][0.165837,0.859183,0.306435][0.892988,0.0279842,-0.589127][0.469769,-0.880596,0.062195][0.165837,0.859183,0.306435][0.781189,-0.0751547,-0.697264][0.675212,-0.706265,0.212787][0.190073,0.80077,0.362683][0.788242,-0.0708443,-0.707704][2.69544,-0.147363,-1.9126][0.188544,0.803212,0.368113][0.892988,0.0279842,-0.589127][0.469769,-0.880596,0.062195][0.165837,0.859183,0.306435][0.887336,0.0258338,-0.583046][0.380709,-0.904953,0.190056][0.167062,0.857965,0.303272][0.776331,-0.0772749,-0.690385][0.645352,-0.711853,0.277103][0.191126,0.79957,0.359105][0.776331,-0.0772749,-0.690385][0.645352,-0.711853,0.277103][0.191126,0.79957,0.359105][0.781189,-0.0751547,-0.697264][0.675212,-0.706265,0.212787][0.190073,0.80077,0.362683][0.892988,0.0279842,-0.589127][0.469769,-0.880596,0.062195][0.165837,0.859183,0.306435][0.700061,-0.197018,-0.773235][-1.03415,0.0119413,1.9039][0.20766,0.731754,0.402199][0.707737,-0.200735,-0.783861][0.22158,-0.88049,0.419094][0.205996,0.729649,0.407726][0.768395,-0.0747312,-0.678065][0.326243,-0.755857,0.567667][0.192847,0.80101,0.352696][0.768395,-0.0747312,-0.678065][0.326243,-0.755857,0.567667][0.192847,0.80101,0.352696][0.759682,-0.0710288,-0.668797][-2.71701,0.133735,1.89108][0.194735,0.803107,0.347876][0.700061,-0.197018,-0.773235][-1.03415,0.0119413,1.9039][0.20766,0.731754,0.402199][0.707737,-0.200735,-0.783861][0.22158,-0.88049,0.419094][0.205996,0.729649,0.407726][0.712711,-0.202651,-0.791008][0.416081,-0.867939,0.271216][0.204918,0.728564,0.411444][0.774069,-0.0766197,-0.684325][0.468521,-0.766112,0.439956][0.191617,0.799941,0.355953][0.774069,-0.0766197,-0.684325][0.468521,-0.766112,0.439956][0.191617,0.799941,0.355953][0.768395,-0.0747312,-0.678065][0.326243,-0.755857,0.567667][0.192847,0.80101,0.352696][0.707737,-0.200735,-0.783861][0.22158,-0.88049,0.419094][0.205996,0.729649,0.407726][1.27014,0.0938496,0.26684][1.51666,0.0109271,-0.399112][0.0840765,0.896485,-0.138797][1.26939,0.197656,0.266834][1.52062,0.0120941,-0.400334][0.0842391,0.955275,-0.138794][1.10756,0.198416,0.960823][-0.122329,0.0034451,0.992484][0.119322,0.955705,-0.499774][1.10756,0.198416,0.960823][-0.122329,0.0034451,0.992484][0.119322,0.955705,-0.499774][1.10817,0.0946096,0.961258][-0.122941,0.00336717,0.992408][0.119189,0.896915,-0.5][1.27014,0.0938496,0.26684][1.51666,0.0109271,-0.399112][0.0840765,0.896485,-0.138797][1.26939,0.197656,0.266834][1.52062,0.0120941,-0.400334][0.0842391,0.955275,-0.138794][1.25808,0.200439,0.272833][0.180761,0.982464,-0.0457195][0.0866922,0.956851,-0.141915][1.09485,0.201199,0.959246][-0.154013,0.00318819,0.988064][0.122077,0.957282,-0.498954][1.09485,0.201199,0.959246][-0.154013,0.00318819,0.988064][0.122077,0.957282,-0.498954][1.10756,0.198416,0.960823][-0.122329,0.0034451,0.992484][0.119322,0.955705,-0.499774][1.26939,0.197656,0.266834][1.52062,0.0120941,-0.400334][0.0842391,0.955275,-0.138794][1.25808,0.200439,0.272833][0.180761,0.982464,-0.0457195][0.0866922,0.956851,-0.141915][1.25041,0.201794,0.276356][0.077006,0.996868,-0.0180313][0.0883533,0.957619,-0.143747][1.08655,0.202554,0.957737][-0.273827,0.00226824,0.961776][0.123876,0.958049,-0.498169][1.08655,0.202554,0.957737][-0.273827,0.00226824,0.961776][0.123876,0.958049,-0.498169][1.09485,0.201199,0.959246][-0.154013,0.00318819,0.988064][0.122077,0.957282,-0.498954][1.25808,0.200439,0.272833][0.180761,0.982464,-0.0457195][0.0866922,0.956851,-0.141915][1.25041,0.201794,0.276356][0.077006,0.996868,-0.0180313][0.0883533,0.957619,-0.143747][1.24639,0.201814,0.277368][0.00478307,0.999988,0.000750457][0.0892247,0.95763,-0.144273][1.08268,0.202574,0.956261][-0.354124,0.00169486,0.935197][0.124715,0.95806,-0.497401][1.08268,0.202574,0.956261][-0.354124,0.00169486,0.935197][0.124715,0.95806,-0.497401][1.08655,0.202554,0.957737][-0.273827,0.00226824,0.961776][0.123876,0.958049,-0.498169][1.25041,0.201794,0.276356][0.077006,0.996868,-0.0180313][0.0883533,0.957619,-0.143747][1.24639,0.201814,0.277368][0.00478307,0.999988,0.000750457][0.0892247,0.95763,-0.144273][1.24238,0.201832,0.278397][-0.0833654,0.996247,0.0232641][0.090095,0.95764,-0.144809][1.0788,0.202592,0.954801][-0.426139,0.00128227,0.904657][0.125556,0.95807,-0.496641][1.0788,0.202592,0.954801][-0.426139,0.00128227,0.904657][0.125556,0.95807,-0.496641][1.08268,0.202574,0.956261][-0.354124,0.00169486,0.935197][0.124715,0.95806,-0.497401][1.24639,0.201814,0.277368][0.00478307,0.999988,0.000750457][0.0892247,0.95763,-0.144273][1.24238,0.201832,0.278397][-0.0833654,0.996247,0.0232641][0.090095,0.95764,-0.144809][1.234,0.200255,0.279074][-0.204539,0.977383,0.0537187][0.0919112,0.956747,-0.145161][1.07155,0.201015,0.950551][-0.526815,0.000500919,0.84998][0.127128,0.957177,-0.49443][1.07155,0.201015,0.950551][-0.526815,0.000500919,0.84998][0.127128,0.957177,-0.49443][1.0788,0.202592,0.954801][-0.426139,0.00128227,0.904657][0.125556,0.95807,-0.496641][1.24238,0.201832,0.278397][-0.0833654,0.996247,0.0232641][0.090095,0.95764,-0.144809][1.234,0.200255,0.279074][-0.204539,0.977383,0.0537187][0.0919112,0.956747,-0.145161][1.22126,0.197169,0.279382][-1.52071,-0.0126197,0.396526][0.0946731,0.954999,-0.145321][1.06093,0.197929,0.943495][-0.553703,0.000218509,0.832714][0.129429,0.955429,-0.49076][1.06093,0.197929,0.943495][-0.553703,0.000218509,0.832714][0.129429,0.955429,-0.49076][1.07155,0.201015,0.950551][-0.526815,0.000500919,0.84998][0.127128,0.957177,-0.49443][1.234,0.200255,0.279074][-0.204539,0.977383,0.0537187][0.0919112,0.956747,-0.145161][1.22126,0.197169,0.279382][-1.52071,-0.0126197,0.396526][0.0946731,0.954999,-0.145321][1.22201,0.093415,0.279382][-1.51824,-0.0109387,0.395612][0.094511,0.896239,-0.145321][1.06155,0.0941749,0.943924][-0.554016,0.000170674,0.832506][0.129296,0.896669,-0.490983][1.06155,0.0941749,0.943924][-0.554016,0.000170674,0.832506][0.129296,0.896669,-0.490983][1.06093,0.197929,0.943495][-0.553703,0.000218509,0.832714][0.129429,0.955429,-0.49076][1.22126,0.197169,0.279382][-1.52071,-0.0126197,0.396526][0.0946731,0.954999,-0.145321][1.22201,0.093415,0.279382][-1.51824,-0.0109387,0.395612][0.094511,0.896239,-0.145321][1.23481,0.0906207,0.279079][-0.183375,-0.981804,0.0493475][0.0917367,0.894656,-0.145164][1.0722,0.0913806,0.951016][-0.527563,0.000430358,0.849516][0.126986,0.895087,-0.494673][1.0722,0.0913806,0.951016][-0.527563,0.000430358,0.849516][0.126986,0.895087,-0.494673][1.06155,0.0941749,0.943924][-0.554016,0.000170674,0.832506][0.129296,0.896669,-0.490983][1.22201,0.093415,0.279382][-1.51824,-0.0109387,0.395612][0.094511,0.896239,-0.145321][1.23481,0.0906207,0.279079][-0.183375,-0.981804,0.0493475][0.0917367,0.894656,-0.145164][1.24321,0.0892181,0.278412][-0.0731549,-0.997097,0.0211241][0.089915,0.893862,-0.144816][1.07947,0.0899781,0.955289][-0.424128,0.00135488,0.905601][0.125411,0.894292,-0.496895][1.07947,0.0899781,0.955289][-0.424128,0.00135488,0.905601][0.125411,0.894292,-0.496895][1.0722,0.0913806,0.951016][-0.527563,0.000430358,0.849516][0.126986,0.895087,-0.494673][1.23481,0.0906207,0.279079][-0.183375,-0.981804,0.0493475][0.0917367,0.894656,-0.145164][1.24321,0.0892181,0.278412][-0.0731549,-0.997097,0.0211241][0.089915,0.893862,-0.144816][1.24722,0.089241,0.277362][0.00612441,-0.999981,0.00077785][0.0890459,0.893875,-0.14427][1.08336,0.090001,0.956729][-0.350303,0.00187431,0.936634][0.124568,0.894305,-0.497644][1.08336,0.090001,0.956729][-0.350303,0.00187431,0.936634][0.124568,0.894305,-0.497644][1.07947,0.0899781,0.955289][-0.424128,0.00135488,0.905601][0.125411,0.894292,-0.496895][1.24321,0.0892181,0.278412][-0.0731549,-0.997097,0.0211241][0.089915,0.893862,-0.144816][1.24722,0.089241,0.277362][0.00612441,-0.999981,0.00077785][0.0890459,0.893875,-0.14427][1.25123,0.0892663,0.276336][0.0870258,-0.995988,-0.0208511][0.0881754,0.893889,-0.143737][1.08723,0.0900263,0.958192][-0.272501,0.00229974,0.962153][0.123728,0.89432,-0.498405][1.08723,0.0900263,0.958192][-0.272501,0.00229974,0.962153][0.123728,0.89432,-0.498405][1.08336,0.090001,0.956729][-0.350303,0.00187431,0.936634][0.124568,0.894305,-0.497644][1.24722,0.089241,0.277362][0.00612441,-0.999981,0.00077785][0.0890459,0.893875,-0.14427][1.25123,0.0892663,0.276336][0.0870258,-0.995988,-0.0208511][0.0881754,0.893889,-0.143737][1.25888,0.0907904,0.272825][0.200482,-0.978309,-0.0521428][0.0865184,0.894752,-0.14191][1.09551,0.0915503,0.9597][-0.155116,0.00309512,0.987891][0.121934,0.895183,-0.499189][1.09551,0.0915503,0.9597][-0.155116,0.00309512,0.987891][0.121934,0.895183,-0.499189][1.08723,0.0900263,0.958192][-0.272501,0.00229974,0.962153][0.123728,0.89432,-0.498405][1.25123,0.0892663,0.276336][0.0870258,-0.995988,-0.0208511][0.0881754,0.893889,-0.143737][1.25888,0.0907904,0.272825][0.200482,-0.978309,-0.0521428][0.0865184,0.894752,-0.14191][1.27014,0.0938496,0.26684][1.51666,0.0109271,-0.399112][0.0840765,0.896485,-0.138797][1.10817,0.0946096,0.961258][-0.122941,0.00336717,0.992408][0.119189,0.896915,-0.5][1.10817,0.0946096,0.961258][-0.122941,0.00336717,0.992408][0.119189,0.896915,-0.5][1.09551,0.0915503,0.9597][-0.155116,0.00309512,0.987891][0.121934,0.895183,-0.499189][1.25888,0.0907904,0.272825][0.200482,-0.978309,-0.0521428][0.0865184,0.894752,-0.14191][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][0.0480975,0.0498293,-0.940437][-0.859609,-0.49771,-0.115577][0.348995,0.871554,0.48917][0.0482204,0.0502042,-0.936365][-0.853798,-0.515804,0.0705301][0.348969,0.871767,0.487052][0.0482204,0.0502042,-0.936365][-0.853798,-0.515804,0.0705301][0.348969,0.871767,0.487052][-1.41561e-007,0.106101,-0.936309][-0.60615,0.495278,-0.62232][0.359422,0.903424,0.487023][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-1.41561e-007,0.106101,-0.936309][-0.60615,0.495278,-0.62232][0.359422,0.903424,0.487023][0.0482204,0.0502042,-0.936365][-0.853798,-0.515804,0.0705301][0.348969,0.871767,0.487052][0.0483419,0.0505878,-0.932294][-0.846357,-0.516961,0.128186][0.348942,0.871984,0.484934][0.0483419,0.0505878,-0.932294][-0.846357,-0.516961,0.128186][0.348942,0.871984,0.484934][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-1.41561e-007,0.106101,-0.936309][-0.60615,0.495278,-0.62232][0.359422,0.903424,0.487023][-1.41561e-007,0.114535,-0.961258][0.00661092,-0.00125711,-2.41801][0.359422,0.9082,0.5][0.0547316,0.0525793,-0.961038][0.0101358,-0.00316528,-3.47218][0.347557,0.873112,0.499886][0.0503305,0.0507365,-0.948731][-0.81544,-0.491145,-0.306325][0.348511,0.872068,0.493484][0.0503305,0.0507365,-0.948731][-0.81544,-0.491145,-0.306325][0.348511,0.872068,0.493484][-1.41561e-007,0.108197,-0.948815][0,-0.968945,-0.247277][0.359422,0.904611,0.493528][-1.41561e-007,0.114535,-0.961258][0.00661092,-0.00125711,-2.41801][0.359422,0.9082,0.5][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][0.145619,0.195978,-0.911516][-0.533622,0.0755882,3.10555][0.327854,0.954325,0.474127][0.147143,0.200121,-0.923954][-0.0418425,0.961646,0.271083][0.327524,0.956671,0.480596][0.147143,0.200121,-0.923954][-0.0418425,0.961646,0.271083][0.327524,0.956671,0.480596][-1.41561e-007,0.198829,-0.923952][1,0,0][0.359422,0.955939,0.480595][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][0.0503305,0.0507365,-0.948731][-0.81544,-0.491145,-0.306325][0.348511,0.872068,0.493484][0.0480975,0.0498293,-0.940437][-0.859609,-0.49771,-0.115577][0.348995,0.871554,0.48917][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-1.41561e-007,0.108197,-0.948815][0,-0.968945,-0.247277][0.359422,0.904611,0.493528][0.0503305,0.0507365,-0.948731][-0.81544,-0.491145,-0.306325][0.348511,0.872068,0.493484][0.147143,0.200121,-0.923954][-0.0418425,0.961646,0.271083][0.327524,0.956671,0.480596][0.148152,0.202177,-0.932248][-0.0209463,0.993666,0.110406][0.327305,0.957836,0.48491][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][-1.41561e-007,0.198829,-0.923952][1,0,0][0.359422,0.955939,0.480595][0.147143,0.200121,-0.923954][-0.0418425,0.961646,0.271083][0.327524,0.956671,0.480596][-0.151694,0.19595,-0.960886][-0.393877,-0.0199819,-3.09245][0.0625,0.960938,0.499806][-1.41561e-007,0.195875,-0.961258][0.00385752,0,-1.57129][0.03125,0.910156,0.5][-1.41561e-007,0.114535,-0.961258][0.00661092,-0.00125711,-2.41801][0.03125,0.785156,0.5][-0.151694,0.19595,-0.960886][-0.393877,-0.0199819,-3.09245][0.0625,0.960938,0.499806][-1.41561e-007,0.114535,-0.961258][0.00661092,-0.00125711,-2.41801][0.03125,0.785156,0.5][-0.0547319,0.0525793,-0.961038][-0.010137,-0.00316463,-3.47218][0.117188,0.683594,0.499886][-0.151694,0.19595,-0.960886][-0.393877,-0.0199819,-3.09245][0.0625,0.960938,0.499806][-0.0547319,0.0525793,-0.961038][-0.010137,-0.00316463,-3.47218][0.117188,0.683594,0.499886][-0.0982667,-0.0524437,-0.960818][-0.0221669,-0.00568714,-3.37505][0.03125,0.542969,0.499771][-0.151694,0.19595,-0.960886][-0.393877,-0.0199819,-3.09245][0.0625,0.960938,0.499806][-0.0982667,-0.0524437,-0.960818][-0.0221669,-0.00568714,-3.37505][0.03125,0.542969,0.499771][-0.121523,-0.197083,-0.960378][-0.348286,-0.0289217,-1.69158][0.0117188,0.351563,0.499542][-0.151694,0.19595,-0.960886][-0.393877,-0.0199819,-3.09245][0.0625,0.960938,0.499806][-0.121523,-0.197083,-0.960378][-0.348286,-0.0289217,-1.69158][0.0117188,0.351563,0.499542][-0.723674,-0.197042,-0.817015][-1.05365,-0.012283,-1.92707][0.996094,0.351563,0.424972][-0.726351,0.196406,-0.815519][-1.61788,-0.0827357,-2.49758][0.988281,0.960938,0.424194][-0.151694,0.19595,-0.960886][-0.393877,-0.0199819,-3.09245][0.0625,0.960938,0.499806][-0.723674,-0.197042,-0.817015][-1.05365,-0.012283,-1.92707][0.996094,0.351563,0.424972][-0.726351,0.196406,-0.815519][-1.61788,-0.0827357,-2.49758][0.988281,0.960938,0.424194][-0.723674,-0.197042,-0.817015][-1.05365,-0.012283,-1.92707][0.996094,0.351563,0.424972][-0.788243,-0.0708443,-0.707704][-2.69544,-0.147365,-1.9126][0.996094,0.570313,0.368113][-0.726351,0.196406,-0.815519][-1.61788,-0.0827357,-2.49758][0.988281,0.960938,0.424194][-0.788243,-0.0708443,-0.707704][-2.69544,-0.147365,-1.9126][0.996094,0.570313,0.368113][-0.901259,0.0323137,-0.598393][-2.6212,-0.289633,-2.33041][0.367188,0.660156,0.311255][-0.726351,0.196406,-0.815519][-1.61788,-0.0827357,-2.49758][0.988281,0.960938,0.424194][-0.901259,0.0323137,-0.598393][-2.6212,-0.289633,-2.33041][0.367188,0.660156,0.311255][-1.09998,0.0942261,-0.379771][-2.86034,0.0161445,-1.55774][0.6875,0.75,0.197539][-1.09878,0.197506,-0.378518][-2.71975,0.0489911,-1.42019][0.683594,0.914063,0.196887][-0.726351,0.196406,-0.815519][-1.61788,-0.0827357,-2.49758][0.988281,0.960938,0.424194][-1.09998,0.0942261,-0.379771][-2.86034,0.0161445,-1.55774][0.6875,0.75,0.197539][-1.26939,0.197656,0.266834][-1.52062,0.0120934,-0.400334][0.957031,0.914063,-0.138794][-1.09878,0.197506,-0.378518][-2.71975,0.0489911,-1.42019][0.683594,0.914063,0.196887][-1.09998,0.0942261,-0.379771][-2.86034,0.0161445,-1.55774][0.6875,0.75,0.197539][-1.26939,0.197656,0.266834][-1.52062,0.0120934,-0.400334][0.957031,0.914063,-0.138794][-1.09998,0.0942261,-0.379771][-2.86034,0.0161445,-1.55774][0.6875,0.75,0.197539][-1.27014,0.0938496,0.266841][-1.51666,0.0109265,-0.399111][0.957031,0.75,-0.138797][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][-0.145619,0.195978,-0.911516][0.533623,0.0755879,3.10555][0.39099,0.954325,0.474127][-0.0524031,0.0525956,-0.911516][0.516807,-0.238597,0.822181][0.370782,0.873121,0.474127][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-0.145619,0.195978,-0.911516][0.533623,0.0755879,3.10555][0.39099,0.954325,0.474127][-0.0936091,-0.0524111,-0.911516][0.58637,-0.157246,0.794635][0.379715,0.813651,0.474126][-0.0524031,0.0525956,-0.911516][0.516807,-0.238597,0.822181][0.370782,0.873121,0.474127][-0.145619,0.195978,-0.911516][0.533623,0.0755879,3.10555][0.39099,0.954325,0.474127][-0.112208,-0.197018,-0.911516][0.340715,0.0289672,1.66115][0.383747,0.731754,0.474126][-0.0936091,-0.0524111,-0.911516][0.58637,-0.157246,0.794635][0.379715,0.813651,0.474126][-0.145619,0.195978,-0.911516][0.533623,0.0755879,3.10555][0.39099,0.954325,0.474127][-0.700061,-0.197018,-0.773234][1.03415,0.0119411,1.9039][0.511184,0.731754,0.402199][-0.112208,-0.197018,-0.911516][0.340715,0.0289672,1.66115][0.383747,0.731754,0.474126][-0.145619,0.195978,-0.911516][0.533623,0.0755879,3.10555][0.39099,0.954325,0.474127][-0.700061,-0.197018,-0.773234][1.03415,0.0119411,1.9039][0.511184,0.731754,0.402199][-0.145619,0.195978,-0.911516][0.533623,0.0755879,3.10555][0.39099,0.954325,0.474127][-0.700154,0.196369,-0.773234][1.60985,0.08196,2.49807][0.511204,0.954546,0.402199][-0.759682,-0.0710288,-0.668797][2.71702,0.133735,1.89107][0.524109,0.803107,0.347876][-0.700061,-0.197018,-0.773234][1.03415,0.0119411,1.9039][0.511184,0.731754,0.402199][-0.700154,0.196369,-0.773234][1.60985,0.08196,2.49807][0.511204,0.954546,0.402199][-0.867752,0.0319203,-0.564359][2.63473,0.279254,2.3339][0.547536,0.861412,0.293552][-0.759682,-0.0710288,-0.668797][2.71702,0.133735,1.89107][0.524109,0.803107,0.347876][-0.700154,0.196369,-0.773234][1.60985,0.08196,2.49807][0.511204,0.954546,0.402199][-1.05658,0.0934149,-0.355483][2.87198,-0.0169167,1.55214][0.588471,0.896239,0.184905][-0.867752,0.0319203,-0.564359][2.63473,0.279254,2.3339][0.547536,0.861412,0.293552][-0.700154,0.196369,-0.773234][1.60985,0.08196,2.49807][0.511204,0.954546,0.402199][-1.05658,0.0934149,-0.355483][2.87198,-0.0169167,1.55214][0.588471,0.896239,0.184905][-0.700154,0.196369,-0.773234][1.60985,0.08196,2.49807][0.511204,0.954546,0.402199][-1.0547,0.196497,-0.355484][2.72197,-0.0496396,1.42148][0.588064,0.954619,0.184905][-1.05658,0.0934149,-0.355483][2.87198,-0.0169167,1.55214][0.588471,0.896239,0.184905][-1.0547,0.196497,-0.355484][2.72197,-0.0496396,1.42148][0.588064,0.954619,0.184905][-1.22126,0.197169,0.279383][1.52071,-0.0126209,0.396525][0.624171,0.954999,-0.145321][-1.05658,0.0934149,-0.355483][2.87198,-0.0169167,1.55214][0.588471,0.896239,0.184905][-1.22126,0.197169,0.279383][1.52071,-0.0126209,0.396525][0.624171,0.954999,-0.145321][-1.22201,0.093415,0.279383][1.51824,-0.01094,0.395611][0.624333,0.896239,-0.145321][-1.08268,0.202574,0.956261][0.354141,0.00169425,0.93519][0.594129,0.95806,-0.497401][-1.08655,0.202554,0.957738][0.27384,0.00226721,0.961773][0.594968,0.958049,-0.498169][-1.08723,0.0900263,0.958192][0.272501,0.00229924,0.962153][0.595117,0.894319,-0.498405][-1.08723,0.0900263,0.958192][0.272501,0.00229924,0.962153][0.595117,0.894319,-0.498405][-1.08336,0.090001,0.956729][0.350303,0.00187449,0.936634][0.594276,0.894305,-0.497644][-1.08268,0.202574,0.956261][0.354141,0.00169425,0.93519][0.594129,0.95806,-0.497401][-1.0788,0.202592,0.954801][0.42614,0.00128252,0.904656][0.593288,0.95807,-0.496641][-1.08268,0.202574,0.956261][0.354141,0.00169425,0.93519][0.594129,0.95806,-0.497401][-1.08336,0.090001,0.956729][0.350303,0.00187449,0.936634][0.594276,0.894305,-0.497644][-1.08336,0.090001,0.956729][0.350303,0.00187449,0.936634][0.594276,0.894305,-0.497644][-1.07947,0.0899781,0.955289][0.424128,0.00135509,0.905601][0.593434,0.894292,-0.496895][-1.0788,0.202592,0.954801][0.42614,0.00128252,0.904656][0.593288,0.95807,-0.496641][-1.24722,0.089241,0.277363][-0.00612463,-0.999981,0.000777796][0.629798,0.893875,-0.14427][-1.25123,0.0892663,0.276337][-0.0870248,-0.995988,-0.0208508][0.630669,0.893889,-0.143737][-1.08203,0.0876479,-0.368367][-0.174003,-0.984256,0.0310259][0.59399,0.892973,0.191607][-1.08203,0.0876479,-0.368367][-0.174003,-0.984256,0.0310259][0.59399,0.892973,0.191607][-1.07909,0.0877906,-0.366346][-0.0245278,-0.993862,0.107873][0.593352,0.893053,0.190556][-1.24722,0.089241,0.277363][-0.00612463,-0.999981,0.000777796][0.629798,0.893875,-0.14427][-1.24321,0.0892181,0.278412][0.0731549,-0.997097,0.0211241][0.628929,0.893862,-0.144816][-1.24722,0.089241,0.277363][-0.00612463,-0.999981,0.000777796][0.629798,0.893875,-0.14427][-1.07909,0.0877906,-0.366346][-0.0245278,-0.993862,0.107873][0.593352,0.893053,0.190556][-1.07909,0.0877906,-0.366346][-0.0245278,-0.993862,0.107873][0.593352,0.893053,0.190556][-1.07618,0.0879502,-0.364276][0.0486501,-0.988871,0.140596][0.592719,0.893144,0.189479][-1.24321,0.0892181,0.278412][0.0731549,-0.997097,0.0211241][0.628929,0.893862,-0.144816][-1.07661,0.203218,-0.366939][0.0496385,0.998408,0.0267787][0.592814,0.958425,0.190864][-1.07982,0.203422,-0.368603][-0.0912095,0.994699,-0.0474802][0.593509,0.958541,0.191729][-1.25041,0.201794,0.276356][-0.0770062,0.996868,-0.0180313][0.630491,0.957618,-0.143747][-1.25041,0.201794,0.276356][-0.0770062,0.996868,-0.0180313][0.630491,0.957618,-0.143747][-1.24639,0.201814,0.277368][-0.00478302,0.999988,0.000750474][0.62962,0.95763,-0.144273][-1.07661,0.203218,-0.366939][0.0496385,0.998408,0.0267787][0.592814,0.958425,0.190864][-1.07342,0.203013,-0.365237][0.124871,0.989986,0.0658451][0.592122,0.958309,0.189979][-1.07661,0.203218,-0.366939][0.0496385,0.998408,0.0267787][0.592814,0.958425,0.190864][-1.24639,0.201814,0.277368][-0.00478302,0.999988,0.000750474][0.62962,0.95763,-0.144273][-1.24639,0.201814,0.277368][-0.00478302,0.999988,0.000750474][0.62962,0.95763,-0.144273][-1.24238,0.201832,0.278398][0.0833671,0.996247,0.0232645][0.628749,0.95764,-0.144809][-1.07342,0.203013,-0.365237][0.124871,0.989986,0.0658451][0.592122,0.958309,0.189979][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][-0.149077,0.202187,-0.940172][-0.00840547,0.991648,-0.128699][0.39174,0.957841,0.489032][-0.148645,0.202182,-0.936207][0.00943333,0.999954,-0.00151357][0.391646,0.957838,0.486969][-0.148645,0.202182,-0.936207][0.00943333,0.999954,-0.00151357][0.391646,0.957838,0.486969][-1.41561e-007,0.200329,-0.936381][0.83975,0.0832138,-0.536559][0.359422,0.956789,0.48706][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][-1.41561e-007,0.200329,-0.936381][0.83975,0.0832138,-0.536559][0.359422,0.956789,0.48706][-0.148645,0.202182,-0.936207][0.00943333,0.999954,-0.00151357][0.391646,0.957838,0.486969][-0.148152,0.202177,-0.932248][0.0209463,0.993666,0.110406][0.391539,0.957836,0.48491][-0.148152,0.202177,-0.932248][0.0209463,0.993666,0.110406][0.391539,0.957836,0.48491][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][-1.41561e-007,0.200329,-0.936381][0.83975,0.0832138,-0.536559][0.359422,0.956789,0.48706][-0.713251,0.202605,-0.794386][-0.0156054,0.999506,-0.0272746][0.514043,0.958078,0.413201][-0.714859,0.202507,-0.797057][-0.0776957,0.988821,-0.127264][0.514392,0.958023,0.41459][-1.07982,0.203422,-0.368603][-0.0912095,0.994699,-0.0474802][0.593509,0.958541,0.191729][-1.07982,0.203422,-0.368603][-0.0912095,0.994699,-0.0474802][0.593509,0.958541,0.191729][-1.07661,0.203218,-0.366939][0.0496385,0.998408,0.0267787][0.592814,0.958425,0.190864][-0.713251,0.202605,-0.794386][-0.0156054,0.999506,-0.0272746][0.514043,0.958078,0.413201][-0.711642,0.202703,-0.791738][0.0411508,0.997067,0.0645241][0.513694,0.958134,0.411824][-0.713251,0.202605,-0.794386][-0.0156054,0.999506,-0.0272746][0.514043,0.958078,0.413201][-1.07661,0.203218,-0.366939][0.0496385,0.998408,0.0267787][0.592814,0.958425,0.190864][-1.07661,0.203218,-0.366939][0.0496385,0.998408,0.0267787][0.592814,0.958425,0.190864][-1.07342,0.203013,-0.365237][0.124871,0.989986,0.0658451][0.592122,0.958309,0.189979][-0.711642,0.202703,-0.791738][0.0411508,0.997067,0.0645241][0.513694,0.958134,0.411824][-0.776331,-0.0772749,-0.690385][-0.645351,-0.711853,0.277105][0.527718,0.79957,0.359105][-0.713775,-0.203424,-0.797725][-0.394482,-0.916536,0.0659168][0.514157,0.728126,0.414938][-0.713249,-0.203043,-0.794354][-0.441198,-0.880984,0.170915][0.514043,0.728342,0.413185][-0.713249,-0.203043,-0.794354][-0.441198,-0.880984,0.170915][0.514043,0.728342,0.413185][-0.775202,-0.0769539,-0.687352][-0.609113,-0.731504,0.306403][0.527473,0.799752,0.357527][-0.776331,-0.0772749,-0.690385][-0.645351,-0.711853,0.277105][0.527718,0.79957,0.359105][-0.775202,-0.0769539,-0.687352][-0.609113,-0.731504,0.306403][0.527473,0.799752,0.357527][-0.713249,-0.203043,-0.794354][-0.441198,-0.880984,0.170915][0.514043,0.728342,0.413185][-0.712711,-0.202651,-0.791008][-0.416087,-0.867937,0.271215][0.513926,0.728564,0.411444][-0.712711,-0.202651,-0.791008][-0.416087,-0.867937,0.271215][0.513926,0.728564,0.411444][-0.774069,-0.0766197,-0.684325][-0.468522,-0.766112,0.439955][0.527228,0.799941,0.355953][-0.775202,-0.0769539,-0.687352][-0.609113,-0.731504,0.306403][0.527473,0.799752,0.357527][-0.148645,0.202182,-0.936207][0.00943333,0.999954,-0.00151357][0.391646,0.957838,0.486969][-0.149077,0.202187,-0.940172][-0.00840547,0.991648,-0.128699][0.39174,0.957841,0.489032][-0.714859,0.202507,-0.797057][-0.0776957,0.988821,-0.127264][0.514392,0.958023,0.41459][-0.714859,0.202507,-0.797057][-0.0776957,0.988821,-0.127264][0.514392,0.958023,0.41459][-0.713251,0.202605,-0.794386][-0.0156054,0.999506,-0.0272746][0.514043,0.958078,0.413201][-0.148645,0.202182,-0.936207][0.00943333,0.999954,-0.00151357][0.391646,0.957838,0.486969][-0.148152,0.202177,-0.932248][0.0209463,0.993666,0.110406][0.391539,0.957836,0.48491][-0.148645,0.202182,-0.936207][0.00943333,0.999954,-0.00151357][0.391646,0.957838,0.486969][-0.713251,0.202605,-0.794386][-0.0156054,0.999506,-0.0272746][0.514043,0.958078,0.413201][-0.713251,0.202605,-0.794386][-0.0156054,0.999506,-0.0272746][0.514043,0.958078,0.413201][-0.711642,0.202703,-0.791738][0.0411508,0.997067,0.0645241][0.513694,0.958134,0.411824][-0.148152,0.202177,-0.932248][0.0209463,0.993666,0.110406][0.391539,0.957836,0.48491][-0.713249,-0.203043,-0.794354][-0.441198,-0.880984,0.170915][0.514043,0.728342,0.413185][-0.713775,-0.203424,-0.797725][-0.394482,-0.916536,0.0659168][0.514157,0.728126,0.414938][-0.115089,-0.202664,-0.940419][-0.0394118,-3.18047,-0.181075][0.384371,0.728556,0.48916][-0.115089,-0.202664,-0.940419][-0.0394118,-3.18047,-0.181075][0.384371,0.728556,0.48916][-0.113634,-0.202328,-0.936553][0.0631691,-3.13583,0.251911][0.384056,0.728747,0.48715][-0.713249,-0.203043,-0.794354][-0.441198,-0.880984,0.170915][0.514043,0.728342,0.413185][-0.712711,-0.202651,-0.791008][-0.416087,-0.867937,0.271215][0.513926,0.728564,0.411444][-0.713249,-0.203043,-0.794354][-0.441198,-0.880984,0.170915][0.514043,0.728342,0.413185][-0.113634,-0.202328,-0.936553][0.0631691,-3.13583,0.251911][0.384056,0.728747,0.48715][-0.113634,-0.202328,-0.936553][0.0631691,-3.13583,0.251911][0.384056,0.728747,0.48715][-0.112158,-0.201985,-0.932689][0.0930864,-2.76739,0.383855][0.383736,0.728941,0.48514][-0.712711,-0.202651,-0.791008][-0.416087,-0.867937,0.271215][0.513926,0.728564,0.411444][-1.10817,0.0946096,0.961259][0.122941,0.00336622,0.992408][0.599655,0.896915,-0.5][-1.09551,0.0915503,0.9597][0.155115,0.00309413,0.987891][0.596911,0.895183,-0.499189][-1.09485,0.201199,0.959247][0.154012,0.00318727,0.988064][0.596767,0.957282,-0.498954][-1.09485,0.201199,0.959247][0.154012,0.00318727,0.988064][0.596767,0.957282,-0.498954][-1.10756,0.198416,0.960823][0.122329,0.0034441,0.992484][0.599523,0.955705,-0.499774][-1.10817,0.0946096,0.961259][0.122941,0.00336622,0.992408][0.599655,0.896915,-0.5][-1.26939,0.197656,0.266834][-1.52062,0.0120934,-0.400334][0.634605,0.955275,-0.138794][-1.25807,0.200439,0.272833][-0.180761,0.982464,-0.0457196][0.632152,0.956851,-0.141915][-1.0874,0.201479,-0.37257][-0.233269,0.964632,-0.122765][0.595153,0.95744,0.193793][-1.0874,0.201479,-0.37257][-0.233269,0.964632,-0.122765][0.595153,0.95744,0.193793][-1.09878,0.197506,-0.378518][-2.71975,0.0489911,-1.42019][0.597618,0.95519,0.196887][-1.26939,0.197656,0.266834][-1.52062,0.0120934,-0.400334][0.634605,0.955275,-0.138794][-1.09878,0.197506,-0.378518][-2.71975,0.0489911,-1.42019][0.597618,0.95519,0.196887][-1.0874,0.201479,-0.37257][-0.233269,0.964632,-0.122765][0.595153,0.95744,0.193793][-0.719452,0.200476,-0.804436][-0.141194,0.963039,-0.22939][0.515387,0.956872,0.418429][-0.719452,0.200476,-0.804436][-0.141194,0.963039,-0.22939][0.515387,0.956872,0.418429][-0.726351,0.196406,-0.815519][-1.61788,-0.0827357,-2.49758][0.516883,0.954567,0.424194][-1.09878,0.197506,-0.378518][-2.71975,0.0489911,-1.42019][0.597618,0.95519,0.196887][-0.726351,0.196406,-0.815519][-1.61788,-0.0827357,-2.49758][0.516883,0.954567,0.424194][-0.719452,0.200476,-0.804436][-0.141194,0.963039,-0.22939][0.515387,0.956872,0.418429][-0.150129,0.200097,-0.948457][-0.0326397,0.959953,-0.278253][0.391968,0.956658,0.493341][-0.150129,0.200097,-0.948457][-0.0326397,0.959953,-0.278253][0.391968,0.956658,0.493341][-0.151694,0.19595,-0.960886][-0.393877,-0.0199819,-3.09245][0.392307,0.954309,0.499806][-0.726351,0.196406,-0.815519][-1.61788,-0.0827357,-2.49758][0.516883,0.954567,0.424194][-1.41561e-007,0.195875,-0.961258][0.00385752,0,-1.57129][0.359422,0.954267,0.5][-0.151694,0.19595,-0.960886][-0.393877,-0.0199819,-3.09245][0.392307,0.954309,0.499806][-0.150129,0.200097,-0.948457][-0.0326397,0.959953,-0.278253][0.391968,0.956658,0.493341][-0.150129,0.200097,-0.948457][-0.0326397,0.959953,-0.278253][0.391968,0.956658,0.493341][-1.41561e-007,0.19883,-0.948816][0,0.992615,-0.121307][0.359422,0.95594,0.493528][-1.41561e-007,0.195875,-0.961258][0.00385752,0,-1.57129][0.359422,0.954267,0.5][-0.121523,-0.197083,-0.960378][-0.348286,-0.0289217,-1.69158][0.385766,0.731717,0.499542][-0.117414,-0.200848,-0.948456][-0.175171,-2.99503,-0.748294][0.384875,0.729585,0.493341][-0.717838,-0.201334,-0.805402][-0.480764,-0.876047,-0.0375199][0.515038,0.72931,0.418931][-0.717838,-0.201334,-0.805402][-0.480764,-0.876047,-0.0375199][0.515038,0.72931,0.418931][-0.723674,-0.197042,-0.817015][-1.05365,-0.012283,-1.92707][0.516303,0.73174,0.424972][-0.121523,-0.197083,-0.960378][-0.348286,-0.0289217,-1.69158][0.385766,0.731717,0.499542][-0.788243,-0.0708443,-0.707704][-2.69544,-0.147365,-1.9126][0.5303,0.803212,0.368113][-0.723674,-0.197042,-0.817015][-1.05365,-0.012283,-1.92707][0.516303,0.73174,0.424972][-0.717838,-0.201334,-0.805402][-0.480764,-0.876047,-0.0375199][0.515038,0.72931,0.418931][-0.717838,-0.201334,-0.805402][-0.480764,-0.876047,-0.0375199][0.515038,0.72931,0.418931][-0.781189,-0.0751547,-0.697264][-0.675211,-0.706266,0.212788][0.528771,0.80077,0.362683][-0.788243,-0.0708443,-0.707704][-2.69544,-0.147365,-1.9126][0.5303,0.803212,0.368113][-1.09998,0.0942261,-0.379771][-2.86034,0.0161445,-1.55774][0.59788,0.896698,0.197539][-1.08928,0.0898585,-0.372851][-0.31253,-0.948471,-0.0522198][0.595559,0.894225,0.193939][-1.25888,0.0907904,0.272825][-0.20048,-0.978309,-0.0521424][0.632326,0.894752,-0.14191][-1.25888,0.0907904,0.272825][-0.20048,-0.978309,-0.0521424][0.632326,0.894752,-0.14191][-1.27014,0.0938496,0.266841][-1.51666,0.0109265,-0.399111][0.634768,0.896485,-0.138797][-1.09998,0.0942261,-0.379771][-2.86034,0.0161445,-1.55774][0.59788,0.896698,0.197539][-1.22201,0.093415,0.279383][1.51824,-0.01094,0.395611][0.624333,0.896239,-0.145321][-1.23481,0.0906207,0.27908][0.183375,-0.981804,0.0493474][0.627108,0.894656,-0.145164][-1.0684,0.0897568,-0.360676][0.1614,-0.964666,0.208252][0.591034,0.894167,0.187606][-1.0684,0.0897568,-0.360676][0.1614,-0.964666,0.208252][0.591034,0.894167,0.187606][-1.05658,0.0934149,-0.355483][2.87198,-0.0169167,1.55214][0.588471,0.896239,0.184905][-1.22201,0.093415,0.279383][1.51824,-0.01094,0.395611][0.624333,0.896239,-0.145321][-0.867752,0.0319203,-0.564359][2.63473,0.279254,2.3339][0.547536,0.861412,0.293552][-1.05658,0.0934149,-0.355483][2.87198,-0.0169167,1.55214][0.588471,0.896239,0.184905][-1.0684,0.0897568,-0.360676][0.1614,-0.964666,0.208252][0.591034,0.894167,0.187606][-1.0684,0.0897568,-0.360676][0.1614,-0.964666,0.208252][0.591034,0.894167,0.187606][-0.877501,0.0282326,-0.572268][-0.0781743,-0.887681,0.453774][0.54965,0.859323,0.297666][-0.867752,0.0319203,-0.564359][2.63473,0.279254,2.3339][0.547536,0.861412,0.293552][-0.700061,-0.197018,-0.773234][1.03415,0.0119411,1.9039][0.511184,0.731754,0.402199][-0.707737,-0.200735,-0.783861][-0.221577,-0.88049,0.419095][0.512848,0.729649,0.407726][-0.111998,-0.200287,-0.92425][0.0781936,-1.28648,0.332337][0.383701,0.729903,0.48075][-0.111998,-0.200287,-0.92425][0.0781936,-1.28648,0.332337][0.383701,0.729903,0.48075][-0.112208,-0.197018,-0.911516][0.340715,0.0289672,1.66115][0.383747,0.731754,0.474126][-0.700061,-0.197018,-0.773234][1.03415,0.0119411,1.9039][0.511184,0.731754,0.402199][-0.112208,-0.197018,-0.911516][0.340715,0.0289672,1.66115][0.383747,0.731754,0.474126][-0.111998,-0.200287,-0.92425][0.0781936,-1.28648,0.332337][0.383701,0.729903,0.48075][-0.09172,-0.0543952,-0.924101][0.956317,-0.249151,0.152907][0.379305,0.812528,0.480673][-0.09172,-0.0543952,-0.924101][0.956317,-0.249151,0.152907][0.379305,0.812528,0.480673][-0.0936091,-0.0524111,-0.911516][0.58637,-0.157246,0.794635][0.379715,0.813651,0.474126][-0.112208,-0.197018,-0.911516][0.340715,0.0289672,1.66115][0.383747,0.731754,0.474126][-0.145619,0.195978,-0.911516][0.533623,0.0755879,3.10555][0.39099,0.954325,0.474127][-0.147144,0.200121,-0.923954][0.0418427,0.961646,0.271083][0.39132,0.956671,0.480596][-0.707043,0.200589,-0.784331][0.140307,0.964285,0.224653][0.512697,0.956937,0.407971][-0.707043,0.200589,-0.784331][0.140307,0.964285,0.224653][0.512697,0.956937,0.407971][-0.700154,0.196369,-0.773234][1.60985,0.08196,2.49807][0.511204,0.954546,0.402199][-0.145619,0.195978,-0.911516][0.533623,0.0755879,3.10555][0.39099,0.954325,0.474127][-0.700154,0.196369,-0.773234][1.60985,0.08196,2.49807][0.511204,0.954546,0.402199][-0.707043,0.200589,-0.784331][0.140307,0.964285,0.224653][0.512697,0.956937,0.407971][-1.06593,0.200813,-0.361337][0.250342,0.959254,0.130997][0.590499,0.957063,0.18795][-1.06593,0.200813,-0.361337][0.250342,0.959254,0.130997][0.590499,0.957063,0.18795][-1.0547,0.196497,-0.355484][2.72197,-0.0496396,1.42148][0.588064,0.954619,0.184905][-0.700154,0.196369,-0.773234][1.60985,0.08196,2.49807][0.511204,0.954546,0.402199][-1.0547,0.196497,-0.355484][2.72197,-0.0496396,1.42148][0.588064,0.954619,0.184905][-1.06593,0.200813,-0.361337][0.250342,0.959254,0.130997][0.590499,0.957063,0.18795][-1.234,0.200255,0.279075][0.20454,0.977383,0.0537188][0.626933,0.956747,-0.145161][-1.234,0.200255,0.279075][0.20454,0.977383,0.0537188][0.626933,0.956747,-0.145161][-1.22126,0.197169,0.279383][1.52071,-0.0126209,0.396525][0.624171,0.954999,-0.145321][-1.0547,0.196497,-0.355484][2.72197,-0.0496396,1.42148][0.588064,0.954619,0.184905][-1.06093,0.197929,0.943495][0.553702,0.000218509,0.832715][0.589415,0.955429,-0.49076][-1.07155,0.201015,0.950551][0.526812,0.000501237,0.849982][0.591716,0.957177,-0.49443][-1.0722,0.0913806,0.951016][0.527563,0.000430358,0.849516][0.591858,0.895087,-0.494673][-1.0722,0.0913806,0.951016][0.527563,0.000430358,0.849516][0.591858,0.895087,-0.494673][-1.06155,0.0941749,0.943924][0.554016,0.000170674,0.832506][0.589548,0.896669,-0.490983][-1.06093,0.197929,0.943495][0.553702,0.000218509,0.832715][0.589415,0.955429,-0.49076][-1.09551,0.0915503,0.9597][0.155115,0.00309413,0.987891][0.596911,0.895183,-0.499189][-1.08723,0.0900263,0.958192][0.272501,0.00229924,0.962153][0.595117,0.894319,-0.498405][-1.08655,0.202554,0.957738][0.27384,0.00226721,0.961773][0.594968,0.958049,-0.498169][-1.08655,0.202554,0.957738][0.27384,0.00226721,0.961773][0.594968,0.958049,-0.498169][-1.09485,0.201199,0.959247][0.154012,0.00318727,0.988064][0.596767,0.957282,-0.498954][-1.09551,0.0915503,0.9597][0.155115,0.00309413,0.987891][0.596911,0.895183,-0.499189][-1.25807,0.200439,0.272833][-0.180761,0.982464,-0.0457196][0.632152,0.956851,-0.141915][-1.25041,0.201794,0.276356][-0.0770062,0.996868,-0.0180313][0.630491,0.957618,-0.143747][-1.07982,0.203422,-0.368603][-0.0912095,0.994699,-0.0474802][0.593509,0.958541,0.191729][-1.07982,0.203422,-0.368603][-0.0912095,0.994699,-0.0474802][0.593509,0.958541,0.191729][-1.0874,0.201479,-0.37257][-0.233269,0.964632,-0.122765][0.595153,0.95744,0.193793][-1.25807,0.200439,0.272833][-0.180761,0.982464,-0.0457196][0.632152,0.956851,-0.141915][-1.0874,0.201479,-0.37257][-0.233269,0.964632,-0.122765][0.595153,0.95744,0.193793][-1.07982,0.203422,-0.368603][-0.0912095,0.994699,-0.0474802][0.593509,0.958541,0.191729][-0.714859,0.202507,-0.797057][-0.0776957,0.988821,-0.127264][0.514392,0.958023,0.41459][-0.714859,0.202507,-0.797057][-0.0776957,0.988821,-0.127264][0.514392,0.958023,0.41459][-0.719452,0.200476,-0.804436][-0.141194,0.963039,-0.22939][0.515387,0.956872,0.418429][-1.0874,0.201479,-0.37257][-0.233269,0.964632,-0.122765][0.595153,0.95744,0.193793][-0.719452,0.200476,-0.804436][-0.141194,0.963039,-0.22939][0.515387,0.956872,0.418429][-0.714859,0.202507,-0.797057][-0.0776957,0.988821,-0.127264][0.514392,0.958023,0.41459][-0.149077,0.202187,-0.940172][-0.00840547,0.991648,-0.128699][0.39174,0.957841,0.489032][-0.149077,0.202187,-0.940172][-0.00840547,0.991648,-0.128699][0.39174,0.957841,0.489032][-0.150129,0.200097,-0.948457][-0.0326397,0.959953,-0.278253][0.391968,0.956658,0.493341][-0.719452,0.200476,-0.804436][-0.141194,0.963039,-0.22939][0.515387,0.956872,0.418429][-1.41561e-007,0.19883,-0.948816][0,0.992615,-0.121307][0.359422,0.95594,0.493528][-0.150129,0.200097,-0.948457][-0.0326397,0.959953,-0.278253][0.391968,0.956658,0.493341][-0.149077,0.202187,-0.940172][-0.00840547,0.991648,-0.128699][0.39174,0.957841,0.489032][-0.149077,0.202187,-0.940172][-0.00840547,0.991648,-0.128699][0.39174,0.957841,0.489032][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][-1.41561e-007,0.19883,-0.948816][0,0.992615,-0.121307][0.359422,0.95594,0.493528][-0.117414,-0.200848,-0.948456][-0.175171,-2.99503,-0.748294][0.384875,0.729585,0.493341][-0.115089,-0.202664,-0.940419][-0.0394118,-3.18047,-0.181075][0.384371,0.728556,0.48916][-0.713775,-0.203424,-0.797725][-0.394482,-0.916536,0.0659168][0.514157,0.728126,0.414938][-0.713775,-0.203424,-0.797725][-0.394482,-0.916536,0.0659168][0.514157,0.728126,0.414938][-0.717838,-0.201334,-0.805402][-0.480764,-0.876047,-0.0375199][0.515038,0.72931,0.418931][-0.117414,-0.200848,-0.948456][-0.175171,-2.99503,-0.748294][0.384875,0.729585,0.493341][-0.781189,-0.0751547,-0.697264][-0.675211,-0.706266,0.212788][0.528771,0.80077,0.362683][-0.717838,-0.201334,-0.805402][-0.480764,-0.876047,-0.0375199][0.515038,0.72931,0.418931][-0.713775,-0.203424,-0.797725][-0.394482,-0.916536,0.0659168][0.514157,0.728126,0.414938][-0.713775,-0.203424,-0.797725][-0.394482,-0.916536,0.0659168][0.514157,0.728126,0.414938][-0.776331,-0.0772749,-0.690385][-0.645351,-0.711853,0.277105][0.527718,0.79957,0.359105][-0.781189,-0.0751547,-0.697264][-0.675211,-0.706266,0.212788][0.528771,0.80077,0.362683][-1.08928,0.0898585,-0.372851][-0.31253,-0.948471,-0.0522198][0.595559,0.894225,0.193939][-1.08203,0.0876479,-0.368367][-0.174003,-0.984256,0.0310259][0.59399,0.892973,0.191607][-1.25123,0.0892663,0.276337][-0.0870248,-0.995988,-0.0208508][0.630669,0.893889,-0.143737][-1.25123,0.0892663,0.276337][-0.0870248,-0.995988,-0.0208508][0.630669,0.893889,-0.143737][-1.25888,0.0907904,0.272825][-0.20048,-0.978309,-0.0521424][0.632326,0.894752,-0.14191][-1.08928,0.0898585,-0.372851][-0.31253,-0.948471,-0.0522198][0.595559,0.894225,0.193939][-1.23481,0.0906207,0.27908][0.183375,-0.981804,0.0493474][0.627108,0.894656,-0.145164][-1.24321,0.0892181,0.278412][0.0731549,-0.997097,0.0211241][0.628929,0.893862,-0.144816][-1.07618,0.0879502,-0.364276][0.0486501,-0.988871,0.140596][0.592719,0.893144,0.189479][-1.07618,0.0879502,-0.364276][0.0486501,-0.988871,0.140596][0.592719,0.893144,0.189479][-1.0684,0.0897568,-0.360676][0.1614,-0.964666,0.208252][0.591034,0.894167,0.187606][-1.23481,0.0906207,0.27908][0.183375,-0.981804,0.0493474][0.627108,0.894656,-0.145164][-0.877501,0.0282326,-0.572268][-0.0781743,-0.887681,0.453774][0.54965,0.859323,0.297666][-1.0684,0.0897568,-0.360676][0.1614,-0.964666,0.208252][0.591034,0.894167,0.187606][-1.07618,0.0879502,-0.364276][0.0486501,-0.988871,0.140596][0.592719,0.893144,0.189479][-1.07618,0.0879502,-0.364276][0.0486501,-0.988871,0.140596][0.592719,0.893144,0.189479][-0.883875,0.0263715,-0.577642][-0.181599,-0.920023,0.347245][0.551032,0.858269,0.300461][-0.877501,0.0282326,-0.572268][-0.0781743,-0.887681,0.453774][0.54965,0.859323,0.297666][-0.707737,-0.200735,-0.783861][-0.221577,-0.88049,0.419095][0.512848,0.729649,0.407726][-0.712711,-0.202651,-0.791008][-0.416087,-0.867937,0.271215][0.513926,0.728564,0.411444][-0.112158,-0.201985,-0.932689][0.0930864,-2.76739,0.383855][0.383736,0.728941,0.48514][-0.112158,-0.201985,-0.932689][0.0930864,-2.76739,0.383855][0.383736,0.728941,0.48514][-0.111998,-0.200287,-0.92425][0.0781936,-1.28648,0.332337][0.383701,0.729903,0.48075][-0.707737,-0.200735,-0.783861][-0.221577,-0.88049,0.419095][0.512848,0.729649,0.407726][-0.111998,-0.200287,-0.92425][0.0781936,-1.28648,0.332337][0.383701,0.729903,0.48075][-0.112158,-0.201985,-0.932689][0.0930864,-2.76739,0.383855][0.383736,0.728941,0.48514][-0.0908853,-0.0554055,-0.932425][0.96532,-0.259682,0.0268809][0.379125,0.811955,0.485003][-0.0908853,-0.0554055,-0.932425][0.96532,-0.259682,0.0268809][0.379125,0.811955,0.485003][-0.09172,-0.0543952,-0.924101][0.956317,-0.249151,0.152907][0.379305,0.812528,0.480673][-0.111998,-0.200287,-0.92425][0.0781936,-1.28648,0.332337][0.383701,0.729903,0.48075][-0.147144,0.200121,-0.923954][0.0418427,0.961646,0.271083][0.39132,0.956671,0.480596][-0.148152,0.202177,-0.932248][0.0209463,0.993666,0.110406][0.391539,0.957836,0.48491][-0.711642,0.202703,-0.791738][0.0411508,0.997067,0.0645241][0.513694,0.958134,0.411824][-0.711642,0.202703,-0.791738][0.0411508,0.997067,0.0645241][0.513694,0.958134,0.411824][-0.707043,0.200589,-0.784331][0.140307,0.964285,0.224653][0.512697,0.956937,0.407971][-0.147144,0.200121,-0.923954][0.0418427,0.961646,0.271083][0.39132,0.956671,0.480596][-0.707043,0.200589,-0.784331][0.140307,0.964285,0.224653][0.512697,0.956937,0.407971][-0.711642,0.202703,-0.791738][0.0411508,0.997067,0.0645241][0.513694,0.958134,0.411824][-1.07342,0.203013,-0.365237][0.124871,0.989986,0.0658451][0.592122,0.958309,0.189979][-1.07342,0.203013,-0.365237][0.124871,0.989986,0.0658451][0.592122,0.958309,0.189979][-1.06593,0.200813,-0.361337][0.250342,0.959254,0.130997][0.590499,0.957063,0.18795][-0.707043,0.200589,-0.784331][0.140307,0.964285,0.224653][0.512697,0.956937,0.407971][-1.06593,0.200813,-0.361337][0.250342,0.959254,0.130997][0.590499,0.957063,0.18795][-1.07342,0.203013,-0.365237][0.124871,0.989986,0.0658451][0.592122,0.958309,0.189979][-1.24238,0.201832,0.278398][0.0833671,0.996247,0.0232645][0.628749,0.95764,-0.144809][-1.24238,0.201832,0.278398][0.0833671,0.996247,0.0232645][0.628749,0.95764,-0.144809][-1.234,0.200255,0.279075][0.20454,0.977383,0.0537188][0.626933,0.956747,-0.145161][-1.06593,0.200813,-0.361337][0.250342,0.959254,0.130997][0.590499,0.957063,0.18795][-1.07155,0.201015,0.950551][0.526812,0.000501237,0.849982][0.591716,0.957177,-0.49443][-1.0788,0.202592,0.954801][0.42614,0.00128252,0.904656][0.593288,0.95807,-0.496641][-1.07947,0.0899781,0.955289][0.424128,0.00135509,0.905601][0.593434,0.894292,-0.496895][-1.07947,0.0899781,0.955289][0.424128,0.00135509,0.905601][0.593434,0.894292,-0.496895][-1.0722,0.0913806,0.951016][0.527563,0.000430358,0.849516][0.591858,0.895087,-0.494673][-1.07155,0.201015,0.950551][0.526812,0.000501237,0.849982][0.591716,0.957177,-0.49443][-1.08203,0.0876479,-0.368367][-0.174003,-0.984256,0.0310259][0.59399,0.892973,0.191607][-0.887336,0.0258338,-0.583046][-0.38071,-0.904952,0.190057][0.551782,0.857965,0.303272][-0.885602,0.0260954,-0.58035][-0.280124,-0.921014,0.270672][0.551406,0.858113,0.30187][-0.885602,0.0260954,-0.58035][-0.280124,-0.921014,0.270672][0.551406,0.858113,0.30187][-1.07909,0.0877906,-0.366346][-0.0245278,-0.993862,0.107873][0.593352,0.893053,0.190556][-1.08203,0.0876479,-0.368367][-0.174003,-0.984256,0.0310259][0.59399,0.892973,0.191607][-1.07909,0.0877906,-0.366346][-0.0245278,-0.993862,0.107873][0.593352,0.893053,0.190556][-0.885602,0.0260954,-0.58035][-0.280124,-0.921014,0.270672][0.551406,0.858113,0.30187][-0.883875,0.0263715,-0.577642][-0.181599,-0.920023,0.347245][0.551032,0.858269,0.300461][-0.883875,0.0263715,-0.577642][-0.181599,-0.920023,0.347245][0.551032,0.858269,0.300461][-1.07618,0.0879502,-0.364276][0.0486501,-0.988871,0.140596][0.592719,0.893144,0.189479][-1.07909,0.0877906,-0.366346][-0.0245278,-0.993862,0.107873][0.593352,0.893053,0.190556][-0.901259,0.0323137,-0.598393][-2.6212,-0.289633,-2.33041][0.5548,0.861635,0.311255][-0.892988,0.0279842,-0.589126][-0.469768,-0.880596,0.0621948][0.553007,0.859183,0.306435][-1.08928,0.0898585,-0.372851][-0.31253,-0.948471,-0.0522198][0.595559,0.894225,0.193939][-1.08928,0.0898585,-0.372851][-0.31253,-0.948471,-0.0522198][0.595559,0.894225,0.193939][-1.09998,0.0942261,-0.379771][-2.86034,0.0161445,-1.55774][0.59788,0.896698,0.197539][-0.901259,0.0323137,-0.598393][-2.6212,-0.289633,-2.33041][0.5548,0.861635,0.311255][-0.759682,-0.0710288,-0.668797][2.71702,0.133735,1.89107][0.524109,0.803107,0.347876][-0.867752,0.0319203,-0.564359][2.63473,0.279254,2.3339][0.547536,0.861412,0.293552][-0.877501,0.0282326,-0.572268][-0.0781743,-0.887681,0.453774][0.54965,0.859323,0.297666][-0.877501,0.0282326,-0.572268][-0.0781743,-0.887681,0.453774][0.54965,0.859323,0.297666][-0.768395,-0.0747312,-0.678065][-0.326243,-0.755857,0.567666][0.525997,0.80101,0.352696][-0.759682,-0.0710288,-0.668797][2.71702,0.133735,1.89107][0.524109,0.803107,0.347876][-0.892988,0.0279842,-0.589126][-0.469768,-0.880596,0.0621948][0.553007,0.859183,0.306435][-0.887336,0.0258338,-0.583046][-0.38071,-0.904952,0.190057][0.551782,0.857965,0.303272][-1.08203,0.0876479,-0.368367][-0.174003,-0.984256,0.0310259][0.59399,0.892973,0.191607][-1.08203,0.0876479,-0.368367][-0.174003,-0.984256,0.0310259][0.59399,0.892973,0.191607][-1.08928,0.0898585,-0.372851][-0.31253,-0.948471,-0.0522198][0.595559,0.894225,0.193939][-0.892988,0.0279842,-0.589126][-0.469768,-0.880596,0.0621948][0.553007,0.859183,0.306435][-0.768395,-0.0747312,-0.678065][-0.326243,-0.755857,0.567666][0.525997,0.80101,0.352696][-0.877501,0.0282326,-0.572268][-0.0781743,-0.887681,0.453774][0.54965,0.859323,0.297666][-0.883875,0.0263715,-0.577642][-0.181599,-0.920023,0.347245][0.551032,0.858269,0.300461][-0.883875,0.0263715,-0.577642][-0.181599,-0.920023,0.347245][0.551032,0.858269,0.300461][-0.774069,-0.0766197,-0.684325][-0.468522,-0.766112,0.439955][0.527228,0.799941,0.355953][-0.768395,-0.0747312,-0.678065][-0.326243,-0.755857,0.567666][0.525997,0.80101,0.352696][-0.0916993,-0.0561375,-0.940431][0.947816,-0.25845,-0.186677][0.379301,0.811541,0.489166][-0.0912964,-0.0557755,-0.936428][0.961677,-0.263975,-0.0741207][0.379214,0.811746,0.487084][-0.113634,-0.202328,-0.936553][0.0631691,-3.13583,0.251911][0.384056,0.728747,0.48715][-0.113634,-0.202328,-0.936553][0.0631691,-3.13583,0.251911][0.384056,0.728747,0.48715][-0.115089,-0.202664,-0.940419][-0.0394118,-3.18047,-0.181075][0.384371,0.728556,0.48916][-0.0916993,-0.0561375,-0.940431][0.947816,-0.25845,-0.186677][0.379301,0.811541,0.489166][-0.0912964,-0.0557755,-0.936428][0.961677,-0.263975,-0.0741207][0.379214,0.811746,0.487084][-0.0908853,-0.0554055,-0.932425][0.96532,-0.259682,0.0268809][0.379125,0.811955,0.485003][-0.112158,-0.201985,-0.932689][0.0930864,-2.76739,0.383855][0.383736,0.728941,0.48514][-0.112158,-0.201985,-0.932689][0.0930864,-2.76739,0.383855][0.383736,0.728941,0.48514][-0.113634,-0.202328,-0.936553][0.0631691,-3.13583,0.251911][0.384056,0.728747,0.48715][-0.0912964,-0.0557755,-0.936428][0.961677,-0.263975,-0.0741207][0.379214,0.811746,0.487084][-0.121523,-0.197083,-0.960378][-0.348286,-0.0289217,-1.69158][0.385766,0.731717,0.499542][-0.0982667,-0.0524437,-0.960818][-0.0221669,-0.00568714,-3.37505][0.380725,0.813633,0.499771][-0.093963,-0.0549272,-0.948639][0.908346,-0.256034,-0.330688][0.379792,0.812226,0.493436][-0.093963,-0.0549272,-0.948639][0.908346,-0.256034,-0.330688][0.379792,0.812226,0.493436][-0.117414,-0.200848,-0.948456][-0.175171,-2.99503,-0.748294][0.384875,0.729585,0.493341][-0.121523,-0.197083,-0.960378][-0.348286,-0.0289217,-1.69158][0.385766,0.731717,0.499542][-0.0936091,-0.0524111,-0.911516][0.58637,-0.157246,0.794635][0.379715,0.813651,0.474126][-0.09172,-0.0543952,-0.924101][0.956317,-0.249151,0.152907][0.379305,0.812528,0.480673][-0.0496743,0.0512539,-0.924026][0.8396,-0.502588,0.206102][0.370191,0.872361,0.480634][-0.0496743,0.0512539,-0.924026][0.8396,-0.502588,0.206102][0.370191,0.872361,0.480634][-0.0524031,0.0525956,-0.911516][0.516807,-0.238597,0.822181][0.370782,0.873121,0.474127][-0.0936091,-0.0524111,-0.911516][0.58637,-0.157246,0.794635][0.379715,0.813651,0.474126][-0.117414,-0.200848,-0.948456][-0.175171,-2.99503,-0.748294][0.384875,0.729585,0.493341][-0.093963,-0.0549272,-0.948639][0.908346,-0.256034,-0.330688][0.379792,0.812226,0.493436][-0.0916993,-0.0561375,-0.940431][0.947816,-0.25845,-0.186677][0.379301,0.811541,0.489166][-0.0916993,-0.0561375,-0.940431][0.947816,-0.25845,-0.186677][0.379301,0.811541,0.489166][-0.115089,-0.202664,-0.940419][-0.0394118,-3.18047,-0.181075][0.384371,0.728556,0.48916][-0.117414,-0.200848,-0.948456][-0.175171,-2.99503,-0.748294][0.384875,0.729585,0.493341][-0.0496743,0.0512539,-0.924026][0.8396,-0.502588,0.206102][0.370191,0.872361,0.480634][-0.09172,-0.0543952,-0.924101][0.956317,-0.249151,0.152907][0.379305,0.812528,0.480673][-0.0908853,-0.0554055,-0.932425][0.96532,-0.259682,0.0268809][0.379125,0.811955,0.485003][-0.0908853,-0.0554055,-0.932425][0.96532,-0.259682,0.0268809][0.379125,0.811955,0.485003][-0.0483421,0.0505878,-0.932294][0.846357,-0.516961,0.128184][0.369902,0.871984,0.484934][-0.0496743,0.0512539,-0.924026][0.8396,-0.502588,0.206102][0.370191,0.872361,0.480634][-0.0480977,0.0498293,-0.940437][0.859609,-0.49771,-0.115575][0.369849,0.871554,0.48917][-0.0482207,0.0502042,-0.936365][0.853799,-0.515804,0.0705301][0.369876,0.871767,0.487052][-0.0912964,-0.0557755,-0.936428][0.961677,-0.263975,-0.0741207][0.379214,0.811746,0.487084][-0.0912964,-0.0557755,-0.936428][0.961677,-0.263975,-0.0741207][0.379214,0.811746,0.487084][-0.0916993,-0.0561375,-0.940431][0.947816,-0.25845,-0.186677][0.379301,0.811541,0.489166][-0.0480977,0.0498293,-0.940437][0.859609,-0.49771,-0.115575][0.369849,0.871554,0.48917][-0.0482207,0.0502042,-0.936365][0.853799,-0.515804,0.0705301][0.369876,0.871767,0.487052][-0.0483421,0.0505878,-0.932294][0.846357,-0.516961,0.128184][0.369902,0.871984,0.484934][-0.0908853,-0.0554055,-0.932425][0.96532,-0.259682,0.0268809][0.379125,0.811955,0.485003][-0.0908853,-0.0554055,-0.932425][0.96532,-0.259682,0.0268809][0.379125,0.811955,0.485003][-0.0912964,-0.0557755,-0.936428][0.961677,-0.263975,-0.0741207][0.379214,0.811746,0.487084][-0.0482207,0.0502042,-0.936365][0.853799,-0.515804,0.0705301][0.369876,0.871767,0.487052][-0.0547319,0.0525793,-0.961038][-0.010137,-0.00316463,-3.47218][0.371287,0.873112,0.499886][-0.0503308,0.0507365,-0.948731][0.815439,-0.491145,-0.306325][0.370333,0.872068,0.493484][-0.093963,-0.0549272,-0.948639][0.908346,-0.256034,-0.330688][0.379792,0.812226,0.493436][-0.093963,-0.0549272,-0.948639][0.908346,-0.256034,-0.330688][0.379792,0.812226,0.493436][-0.0982667,-0.0524437,-0.960818][-0.0221669,-0.00568714,-3.37505][0.380725,0.813633,0.499771][-0.0547319,0.0525793,-0.961038][-0.010137,-0.00316463,-3.47218][0.371287,0.873112,0.499886][-0.093963,-0.0549272,-0.948639][0.908346,-0.256034,-0.330688][0.379792,0.812226,0.493436][-0.0503308,0.0507365,-0.948731][0.815439,-0.491145,-0.306325][0.370333,0.872068,0.493484][-0.0480977,0.0498293,-0.940437][0.859609,-0.49771,-0.115575][0.369849,0.871554,0.48917][-0.0480977,0.0498293,-0.940437][0.859609,-0.49771,-0.115575][0.369849,0.871554,0.48917][-0.0916993,-0.0561375,-0.940431][0.947816,-0.25845,-0.186677][0.379301,0.811541,0.489166][-0.093963,-0.0549272,-0.948639][0.908346,-0.256034,-0.330688][0.379792,0.812226,0.493436][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-0.0524031,0.0525956,-0.911516][0.516807,-0.238597,0.822181][0.370782,0.873121,0.474127][-0.0496743,0.0512539,-0.924026][0.8396,-0.502588,0.206102][0.370191,0.872361,0.480634][-0.0496743,0.0512539,-0.924026][0.8396,-0.502588,0.206102][0.370191,0.872361,0.480634][-1.41561e-007,0.109642,-0.923957][1,0,0][0.359422,0.905429,0.480597][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-0.0496743,0.0512539,-0.924026][0.8396,-0.502588,0.206102][0.370191,0.872361,0.480634][-0.0483421,0.0505878,-0.932294][0.846357,-0.516961,0.128184][0.369902,0.871984,0.484934][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-1.41561e-007,0.109642,-0.923957][1,0,0][0.359422,0.905429,0.480597][-0.0496743,0.0512539,-0.924026][0.8396,-0.502588,0.206102][0.370191,0.872361,0.480634][-0.887336,0.0258338,-0.583046][-0.38071,-0.904952,0.190057][0.551782,0.857965,0.303272][-0.776331,-0.0772749,-0.690385][-0.645351,-0.711853,0.277105][0.527718,0.79957,0.359105][-0.775202,-0.0769539,-0.687352][-0.609113,-0.731504,0.306403][0.527473,0.799752,0.357527][-0.775202,-0.0769539,-0.687352][-0.609113,-0.731504,0.306403][0.527473,0.799752,0.357527][-0.885602,0.0260954,-0.58035][-0.280124,-0.921014,0.270672][0.551406,0.858113,0.30187][-0.887336,0.0258338,-0.583046][-0.38071,-0.904952,0.190057][0.551782,0.857965,0.303272][-0.885602,0.0260954,-0.58035][-0.280124,-0.921014,0.270672][0.551406,0.858113,0.30187][-0.775202,-0.0769539,-0.687352][-0.609113,-0.731504,0.306403][0.527473,0.799752,0.357527][-0.774069,-0.0766197,-0.684325][-0.468522,-0.766112,0.439955][0.527228,0.799941,0.355953][-0.774069,-0.0766197,-0.684325][-0.468522,-0.766112,0.439955][0.527228,0.799941,0.355953][-0.883875,0.0263715,-0.577642][-0.181599,-0.920023,0.347245][0.551032,0.858269,0.300461][-0.885602,0.0260954,-0.58035][-0.280124,-0.921014,0.270672][0.551406,0.858113,0.30187][-0.788243,-0.0708443,-0.707704][-2.69544,-0.147365,-1.9126][0.5303,0.803212,0.368113][-0.781189,-0.0751547,-0.697264][-0.675211,-0.706266,0.212788][0.528771,0.80077,0.362683][-0.892988,0.0279842,-0.589126][-0.469768,-0.880596,0.0621948][0.553007,0.859183,0.306435][-0.892988,0.0279842,-0.589126][-0.469768,-0.880596,0.0621948][0.553007,0.859183,0.306435][-0.901259,0.0323137,-0.598393][-2.6212,-0.289633,-2.33041][0.5548,0.861635,0.311255][-0.788243,-0.0708443,-0.707704][-2.69544,-0.147365,-1.9126][0.5303,0.803212,0.368113][-0.892988,0.0279842,-0.589126][-0.469768,-0.880596,0.0621948][0.553007,0.859183,0.306435][-0.781189,-0.0751547,-0.697264][-0.675211,-0.706266,0.212788][0.528771,0.80077,0.362683][-0.776331,-0.0772749,-0.690385][-0.645351,-0.711853,0.277105][0.527718,0.79957,0.359105][-0.776331,-0.0772749,-0.690385][-0.645351,-0.711853,0.277105][0.527718,0.79957,0.359105][-0.887336,0.0258338,-0.583046][-0.38071,-0.904952,0.190057][0.551782,0.857965,0.303272][-0.892988,0.0279842,-0.589126][-0.469768,-0.880596,0.0621948][0.553007,0.859183,0.306435][-0.700061,-0.197018,-0.773234][1.03415,0.0119411,1.9039][0.511184,0.731754,0.402199][-0.759682,-0.0710288,-0.668797][2.71702,0.133735,1.89107][0.524109,0.803107,0.347876][-0.768395,-0.0747312,-0.678065][-0.326243,-0.755857,0.567666][0.525997,0.80101,0.352696][-0.768395,-0.0747312,-0.678065][-0.326243,-0.755857,0.567666][0.525997,0.80101,0.352696][-0.707737,-0.200735,-0.783861][-0.221577,-0.88049,0.419095][0.512848,0.729649,0.407726][-0.700061,-0.197018,-0.773234][1.03415,0.0119411,1.9039][0.511184,0.731754,0.402199][-0.707737,-0.200735,-0.783861][-0.221577,-0.88049,0.419095][0.512848,0.729649,0.407726][-0.768395,-0.0747312,-0.678065][-0.326243,-0.755857,0.567666][0.525997,0.80101,0.352696][-0.774069,-0.0766197,-0.684325][-0.468522,-0.766112,0.439955][0.527228,0.799941,0.355953][-0.774069,-0.0766197,-0.684325][-0.468522,-0.766112,0.439955][0.527228,0.799941,0.355953][-0.712711,-0.202651,-0.791008][-0.416087,-0.867937,0.271215][0.513926,0.728564,0.411444][-0.707737,-0.200735,-0.783861][-0.221577,-0.88049,0.419095][0.512848,0.729649,0.407726][-1.27014,0.0938496,0.266841][-1.51666,0.0109265,-0.399111][0.634768,0.896485,-0.138797][-1.10817,0.0946096,0.961259][0.122941,0.00336622,0.992408][0.599655,0.896915,-0.5][-1.10756,0.198416,0.960823][0.122329,0.0034441,0.992484][0.599523,0.955705,-0.499774][-1.10756,0.198416,0.960823][0.122329,0.0034441,0.992484][0.599523,0.955705,-0.499774][-1.26939,0.197656,0.266834][-1.52062,0.0120934,-0.400334][0.634605,0.955275,-0.138794][-1.27014,0.0938496,0.266841][-1.51666,0.0109265,-0.399111][0.634768,0.896485,-0.138797][-1.26939,0.197656,0.266834][-1.52062,0.0120934,-0.400334][0.634605,0.955275,-0.138794][-1.10756,0.198416,0.960823][0.122329,0.0034441,0.992484][0.599523,0.955705,-0.499774][-1.09485,0.201199,0.959247][0.154012,0.00318727,0.988064][0.596767,0.957282,-0.498954][-1.09485,0.201199,0.959247][0.154012,0.00318727,0.988064][0.596767,0.957282,-0.498954][-1.25807,0.200439,0.272833][-0.180761,0.982464,-0.0457196][0.632152,0.956851,-0.141915][-1.26939,0.197656,0.266834][-1.52062,0.0120934,-0.400334][0.634605,0.955275,-0.138794][-1.25807,0.200439,0.272833][-0.180761,0.982464,-0.0457196][0.632152,0.956851,-0.141915][-1.09485,0.201199,0.959247][0.154012,0.00318727,0.988064][0.596767,0.957282,-0.498954][-1.08655,0.202554,0.957738][0.27384,0.00226721,0.961773][0.594968,0.958049,-0.498169][-1.08655,0.202554,0.957738][0.27384,0.00226721,0.961773][0.594968,0.958049,-0.498169][-1.25041,0.201794,0.276356][-0.0770062,0.996868,-0.0180313][0.630491,0.957618,-0.143747][-1.25807,0.200439,0.272833][-0.180761,0.982464,-0.0457196][0.632152,0.956851,-0.141915][-1.25041,0.201794,0.276356][-0.0770062,0.996868,-0.0180313][0.630491,0.957618,-0.143747][-1.08655,0.202554,0.957738][0.27384,0.00226721,0.961773][0.594968,0.958049,-0.498169][-1.08268,0.202574,0.956261][0.354141,0.00169425,0.93519][0.594129,0.95806,-0.497401][-1.08268,0.202574,0.956261][0.354141,0.00169425,0.93519][0.594129,0.95806,-0.497401][-1.24639,0.201814,0.277368][-0.00478302,0.999988,0.000750474][0.62962,0.95763,-0.144273][-1.25041,0.201794,0.276356][-0.0770062,0.996868,-0.0180313][0.630491,0.957618,-0.143747][-1.24639,0.201814,0.277368][-0.00478302,0.999988,0.000750474][0.62962,0.95763,-0.144273][-1.08268,0.202574,0.956261][0.354141,0.00169425,0.93519][0.594129,0.95806,-0.497401][-1.0788,0.202592,0.954801][0.42614,0.00128252,0.904656][0.593288,0.95807,-0.496641][-1.0788,0.202592,0.954801][0.42614,0.00128252,0.904656][0.593288,0.95807,-0.496641][-1.24238,0.201832,0.278398][0.0833671,0.996247,0.0232645][0.628749,0.95764,-0.144809][-1.24639,0.201814,0.277368][-0.00478302,0.999988,0.000750474][0.62962,0.95763,-0.144273][-1.24238,0.201832,0.278398][0.0833671,0.996247,0.0232645][0.628749,0.95764,-0.144809][-1.0788,0.202592,0.954801][0.42614,0.00128252,0.904656][0.593288,0.95807,-0.496641][-1.07155,0.201015,0.950551][0.526812,0.000501237,0.849982][0.591716,0.957177,-0.49443][-1.07155,0.201015,0.950551][0.526812,0.000501237,0.849982][0.591716,0.957177,-0.49443][-1.234,0.200255,0.279075][0.20454,0.977383,0.0537188][0.626933,0.956747,-0.145161][-1.24238,0.201832,0.278398][0.0833671,0.996247,0.0232645][0.628749,0.95764,-0.144809][-1.234,0.200255,0.279075][0.20454,0.977383,0.0537188][0.626933,0.956747,-0.145161][-1.07155,0.201015,0.950551][0.526812,0.000501237,0.849982][0.591716,0.957177,-0.49443][-1.06093,0.197929,0.943495][0.553702,0.000218509,0.832715][0.589415,0.955429,-0.49076][-1.06093,0.197929,0.943495][0.553702,0.000218509,0.832715][0.589415,0.955429,-0.49076][-1.22126,0.197169,0.279383][1.52071,-0.0126209,0.396525][0.624171,0.954999,-0.145321][-1.234,0.200255,0.279075][0.20454,0.977383,0.0537188][0.626933,0.956747,-0.145161][-1.22126,0.197169,0.279383][1.52071,-0.0126209,0.396525][0.624171,0.954999,-0.145321][-1.06093,0.197929,0.943495][0.553702,0.000218509,0.832715][0.589415,0.955429,-0.49076][-1.06155,0.0941749,0.943924][0.554016,0.000170674,0.832506][0.589548,0.896669,-0.490983][-1.06155,0.0941749,0.943924][0.554016,0.000170674,0.832506][0.589548,0.896669,-0.490983][-1.22201,0.093415,0.279383][1.51824,-0.01094,0.395611][0.624333,0.896239,-0.145321][-1.22126,0.197169,0.279383][1.52071,-0.0126209,0.396525][0.624171,0.954999,-0.145321][-1.22201,0.093415,0.279383][1.51824,-0.01094,0.395611][0.624333,0.896239,-0.145321][-1.06155,0.0941749,0.943924][0.554016,0.000170674,0.832506][0.589548,0.896669,-0.490983][-1.0722,0.0913806,0.951016][0.527563,0.000430358,0.849516][0.591858,0.895087,-0.494673][-1.0722,0.0913806,0.951016][0.527563,0.000430358,0.849516][0.591858,0.895087,-0.494673][-1.23481,0.0906207,0.27908][0.183375,-0.981804,0.0493474][0.627108,0.894656,-0.145164][-1.22201,0.093415,0.279383][1.51824,-0.01094,0.395611][0.624333,0.896239,-0.145321][-1.23481,0.0906207,0.27908][0.183375,-0.981804,0.0493474][0.627108,0.894656,-0.145164][-1.0722,0.0913806,0.951016][0.527563,0.000430358,0.849516][0.591858,0.895087,-0.494673][-1.07947,0.0899781,0.955289][0.424128,0.00135509,0.905601][0.593434,0.894292,-0.496895][-1.07947,0.0899781,0.955289][0.424128,0.00135509,0.905601][0.593434,0.894292,-0.496895][-1.24321,0.0892181,0.278412][0.0731549,-0.997097,0.0211241][0.628929,0.893862,-0.144816][-1.23481,0.0906207,0.27908][0.183375,-0.981804,0.0493474][0.627108,0.894656,-0.145164][-1.24321,0.0892181,0.278412][0.0731549,-0.997097,0.0211241][0.628929,0.893862,-0.144816][-1.07947,0.0899781,0.955289][0.424128,0.00135509,0.905601][0.593434,0.894292,-0.496895][-1.08336,0.090001,0.956729][0.350303,0.00187449,0.936634][0.594276,0.894305,-0.497644][-1.08336,0.090001,0.956729][0.350303,0.00187449,0.936634][0.594276,0.894305,-0.497644][-1.24722,0.089241,0.277363][-0.00612463,-0.999981,0.000777796][0.629798,0.893875,-0.14427][-1.24321,0.0892181,0.278412][0.0731549,-0.997097,0.0211241][0.628929,0.893862,-0.144816][-1.24722,0.089241,0.277363][-0.00612463,-0.999981,0.000777796][0.629798,0.893875,-0.14427][-1.08336,0.090001,0.956729][0.350303,0.00187449,0.936634][0.594276,0.894305,-0.497644][-1.08723,0.0900263,0.958192][0.272501,0.00229924,0.962153][0.595117,0.894319,-0.498405][-1.08723,0.0900263,0.958192][0.272501,0.00229924,0.962153][0.595117,0.894319,-0.498405][-1.25123,0.0892663,0.276337][-0.0870248,-0.995988,-0.0208508][0.630669,0.893889,-0.143737][-1.24722,0.089241,0.277363][-0.00612463,-0.999981,0.000777796][0.629798,0.893875,-0.14427][-1.25123,0.0892663,0.276337][-0.0870248,-0.995988,-0.0208508][0.630669,0.893889,-0.143737][-1.08723,0.0900263,0.958192][0.272501,0.00229924,0.962153][0.595117,0.894319,-0.498405][-1.09551,0.0915503,0.9597][0.155115,0.00309413,0.987891][0.596911,0.895183,-0.499189][-1.09551,0.0915503,0.9597][0.155115,0.00309413,0.987891][0.596911,0.895183,-0.499189][-1.25888,0.0907904,0.272825][-0.20048,-0.978309,-0.0521424][0.632326,0.894752,-0.14191][-1.25123,0.0892663,0.276337][-0.0870248,-0.995988,-0.0208508][0.630669,0.893889,-0.143737][-1.25888,0.0907904,0.272825][-0.20048,-0.978309,-0.0521424][0.632326,0.894752,-0.14191][-1.09551,0.0915503,0.9597][0.155115,0.00309413,0.987891][0.596911,0.895183,-0.499189][-1.10817,0.0946096,0.961259][0.122941,0.00336622,0.992408][0.599655,0.896915,-0.5][-1.10817,0.0946096,0.961259][0.122941,0.00336622,0.992408][0.599655,0.896915,-0.5][-1.27014,0.0938496,0.266841][-1.51666,0.0109265,-0.399111][0.634768,0.896485,-0.138797][-1.25888,0.0907904,0.272825][-0.20048,-0.978309,-0.0521424][0.632326,0.894752,-0.14191][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-1.41561e-007,0.106101,-0.936309][0.606099,0.495327,-0.62233][0.359422,0.903424,0.487023][-0.0482207,0.0502042,-0.936365][0.853799,-0.515804,0.0705301][0.369876,0.871767,0.487052][-0.0482207,0.0502042,-0.936365][0.853799,-0.515804,0.0705301][0.369876,0.871767,0.487052][-0.0480977,0.0498293,-0.940437][0.859609,-0.49771,-0.115575][0.369849,0.871554,0.48917][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-1.41561e-007,0.106101,-0.936309][0.606099,0.495327,-0.62233][0.359422,0.903424,0.487023][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-0.0483421,0.0505878,-0.932294][0.846357,-0.516961,0.128184][0.369902,0.871984,0.484934][-0.0483421,0.0505878,-0.932294][0.846357,-0.516961,0.128184][0.369902,0.871984,0.484934][-0.0482207,0.0502042,-0.936365][0.853799,-0.515804,0.0705301][0.369876,0.871767,0.487052][-1.41561e-007,0.106101,-0.936309][0.606099,0.495327,-0.62233][0.359422,0.903424,0.487023][-1.41561e-007,0.114535,-0.961258][0.00661092,-0.00125711,-2.41801][0.359422,0.9082,0.5][-1.41561e-007,0.108197,-0.948815][0,-0.968945,-0.247277][0.359422,0.904611,0.493528][-0.0503308,0.0507365,-0.948731][0.815439,-0.491145,-0.306325][0.370333,0.872068,0.493484][-0.0503308,0.0507365,-0.948731][0.815439,-0.491145,-0.306325][0.370333,0.872068,0.493484][-0.0547319,0.0525793,-0.961038][-0.010137,-0.00316463,-3.47218][0.371287,0.873112,0.499886][-1.41561e-007,0.114535,-0.961258][0.00661092,-0.00125711,-2.41801][0.359422,0.9082,0.5][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][-1.41561e-007,0.198829,-0.923952][1,0,0][0.359422,0.955939,0.480595][-0.147144,0.200121,-0.923954][0.0418427,0.961646,0.271083][0.39132,0.956671,0.480596][-0.147144,0.200121,-0.923954][0.0418427,0.961646,0.271083][0.39132,0.956671,0.480596][-0.145619,0.195978,-0.911516][0.533623,0.0755879,3.10555][0.39099,0.954325,0.474127][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][-0.0503308,0.0507365,-0.948731][0.815439,-0.491145,-0.306325][0.370333,0.872068,0.493484][-1.41561e-007,0.108197,-0.948815][0,-0.968945,-0.247277][0.359422,0.904611,0.493528][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-1.41561e-007,0.108922,-0.928044][-2.44695e-007,-0.375875,0.926671][0.359422,0.905021,0.482724][-0.0480977,0.0498293,-0.940437][0.859609,-0.49771,-0.115575][0.369849,0.871554,0.48917][-0.0503308,0.0507365,-0.948731][0.815439,-0.491145,-0.306325][0.370333,0.872068,0.493484][-0.147144,0.200121,-0.923954][0.0418427,0.961646,0.271083][0.39132,0.956671,0.480596][-1.41561e-007,0.198829,-0.923952][1,0,0][0.359422,0.955939,0.480595][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][-1.41561e-007,0.198843,-0.928093][-0.175431,0.000827512,1.54124][0.359422,0.955947,0.482749][-0.148152,0.202177,-0.932248][0.0209463,0.993666,0.110406][0.391539,0.957836,0.48491][-0.147144,0.200121,-0.923954][0.0418427,0.961646,0.271083][0.39132,0.956671,0.480596] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/teapot.mesh b/shareddata/charcustom/hats/fonts/teapot.mesh deleted file mode 100644 index a2ca30b..0000000 --- a/shareddata/charcustom/hats/fonts/teapot.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -1024 -[2.44381e-007,0.4125,-0.592969][-0.0634999,-0.255236,0.964791][0.552452,0.289641,0][0.27475,0.4125,-0.538719][-0.42824,-0.255972,0.866654][0.496156,0.289641,0][0.270917,0.449414,-0.52971][-0.362921,0.242936,0.899594][0.496942,0.282077,0][0.270917,0.449414,-0.52971][-0.362921,0.242936,0.899594][0.496942,0.282077,0][2.67196e-007,0.449414,-0.583203][0.00843247,0.242334,0.970156][0.552452,0.282077,0][2.44381e-007,0.4125,-0.592969][-0.0634999,-0.255236,0.964791][0.552452,0.289641,0][2.67196e-007,0.449414,-0.583203][0.00843247,0.242334,0.970156][0.552452,0.282077,0][0.270917,0.449414,-0.52971][-0.362921,0.242936,0.899594][0.496942,0.282077,0][0.275364,0.461719,-0.54016][-0.0162795,0.985002,0.171776][0.496031,0.279556,0][0.275364,0.461719,-0.54016][-0.0162795,0.985002,0.171776][0.496031,0.279556,0][2.67674e-007,0.461719,-0.594531][0.050113,0.985051,0.164812][0.552452,0.279556,0][2.67196e-007,0.449414,-0.583203][0.00843247,0.242334,0.970156][0.552452,0.282077,0][2.67674e-007,0.461719,-0.594531][0.050113,0.985051,0.164812][0.608863,0.01,0][0.275364,0.461719,-0.54016][-0.0162795,0.985002,0.171776][0.665284,0.01,0][0.284409,0.449414,-0.561421][0.265066,0.747027,-0.609664][0.667138,0.0125212,0][0.284409,0.449414,-0.561421][0.265066,0.747027,-0.609664][0.667138,0.0125212,0][2.50395e-007,0.449414,-0.617578][0.0117618,0.746274,-0.665535][0.608863,0.0125212,0][2.67674e-007,0.461719,-0.594531][0.050113,0.985051,0.164812][0.608863,0.01,0][2.50395e-007,0.449414,-0.617578][0.0117618,0.746274,-0.665535][0.608863,0.0125212,0][0.284409,0.449414,-0.561421][0.265066,0.747027,-0.609664][0.667138,0.0125212,0][0.294375,0.4125,-0.584844][0.334021,0.497847,-0.800361][0.66918,0.0200849,0][0.294375,0.4125,-0.584844][0.334021,0.497847,-0.800361][0.66918,0.0200849,0][2.19943e-007,0.4125,-0.642969][0.00262834,0.496955,-0.867772][0.608863,0.0200849,0][2.50395e-007,0.449414,-0.617578][0.0117618,0.746274,-0.665535][0.608863,0.0125212,0][0.27475,0.4125,-0.538719][-0.42824,-0.255972,0.866654][0.496156,0.289641,0][0.497,0.4125,-0.389969][-0.727058,-0.256209,0.63698][0.450617,0.289641,0][0.490067,0.449414,-0.383035][-0.679895,0.242859,0.691927][0.452038,0.282077,0][0.490067,0.449414,-0.383035][-0.679895,0.242859,0.691927][0.452038,0.282077,0][0.270917,0.449414,-0.52971][-0.362921,0.242936,0.899594][0.496942,0.282077,0][0.27475,0.4125,-0.538719][-0.42824,-0.255972,0.866654][0.496156,0.289641,0][0.270917,0.449414,-0.52971][-0.362921,0.242936,0.899594][0.496942,0.282077,0][0.490067,0.449414,-0.383035][-0.679895,0.242859,0.691927][0.452038,0.282077,0][0.49811,0.461718,-0.391078][-0.0810019,0.985081,0.151838][0.45039,0.279556,0][0.49811,0.461718,-0.391078][-0.0810019,0.985081,0.151838][0.45039,0.279556,0][0.275364,0.461719,-0.54016][-0.0162795,0.985002,0.171776][0.496031,0.279556,0][0.270917,0.449414,-0.52971][-0.362921,0.242936,0.899594][0.496942,0.282077,0][0.275364,0.461719,-0.54016][-0.0162795,0.985002,0.171776][0.665284,0.01,0][0.49811,0.461718,-0.391078][-0.0810019,0.985081,0.151838][0.710925,0.01,0][0.514473,0.449414,-0.407442][0.478003,0.747475,-0.461296][0.714278,0.0125212,0][0.514473,0.449414,-0.407442][0.478003,0.747475,-0.461296][0.714278,0.0125212,0][0.284409,0.449414,-0.561421][0.265066,0.747027,-0.609664][0.667138,0.0125212,0][0.275364,0.461719,-0.54016][-0.0162795,0.985002,0.171776][0.665284,0.01,0][0.284409,0.449414,-0.561421][0.265066,0.747027,-0.609664][0.667138,0.0125212,0][0.514473,0.449414,-0.407442][0.478003,0.747475,-0.461296][0.714278,0.0125212,0][0.5325,0.4125,-0.425469][0.614869,0.498464,-0.611121][0.717972,0.0200849,0][0.5325,0.4125,-0.425469][0.614869,0.498464,-0.611121][0.717972,0.0200849,0][0.294375,0.4125,-0.584844][0.334021,0.497847,-0.800361][0.66918,0.0200849,0][0.284409,0.449414,-0.561421][0.265066,0.747027,-0.609664][0.667138,0.0125212,0][0.497,0.4125,-0.389969][-0.727058,-0.256209,0.63698][0.450617,0.289641,0][0.64575,0.4125,-0.167719][-0.915918,-0.255656,0.309409][0.420139,0.289641,0][0.636742,0.449414,-0.163886][-0.893156,0.242454,0.378799][0.421984,0.282077,0][0.636742,0.449414,-0.163886][-0.893156,0.242454,0.378799][0.421984,0.282077,0][0.490067,0.449414,-0.383035][-0.679895,0.242859,0.691927][0.452038,0.282077,0][0.497,0.4125,-0.389969][-0.727058,-0.256209,0.63698][0.450617,0.289641,0][0.490067,0.449414,-0.383035][-0.679895,0.242859,0.691927][0.452038,0.282077,0][0.636742,0.449414,-0.163886][-0.893156,0.242454,0.378799][0.421984,0.282077,0][0.647192,0.461718,-0.168332][-0.132499,0.985099,0.109658][0.419843,0.279556,0][0.647192,0.461718,-0.168332][-0.132499,0.985099,0.109658][0.419843,0.279556,0][0.49811,0.461718,-0.391078][-0.0810019,0.985081,0.151838][0.45039,0.279556,0][0.490067,0.449414,-0.383035][-0.679895,0.242859,0.691927][0.452038,0.282077,0][0.49811,0.461718,-0.391078][-0.0810019,0.985081,0.151838][0.414709,0.328161,0][0.647192,0.461718,-0.168332][-0.132499,0.985099,0.109658][0.460349,0.328161,0][0.668453,0.449414,-0.177378][0.618798,0.747005,-0.243046][0.458496,0.330682,0][0.668453,0.449414,-0.177378][0.618798,0.747005,-0.243046][0.458496,0.330682,0][0.514473,0.449414,-0.407442][0.478003,0.747475,-0.461296][0.411356,0.330682,0][0.49811,0.461718,-0.391078][-0.0810019,0.985081,0.151838][0.414709,0.328161,0][0.514473,0.449414,-0.407442][0.478003,0.747475,-0.461296][0.714278,0.0125212,0][0.668453,0.449414,-0.177378][0.618798,0.747005,-0.243046][0.745828,0.0125212,0][0.691875,0.4125,-0.187344][0.802376,0.497896,-0.329078][0.750627,0.0200849,0][0.691875,0.4125,-0.187344][0.802376,0.497896,-0.329078][0.750627,0.0200849,0][0.5325,0.4125,-0.425469][0.614869,0.498464,-0.611121][0.717972,0.0200849,0][0.514473,0.449414,-0.407442][0.478003,0.747475,-0.461296][0.714278,0.0125212,0][0.64575,0.4125,-0.167719][-0.915918,-0.255656,0.309409][0.256506,0.791725,0][0.700001,0.4125,0.107031][-0.960836,-0.271213,-0.0569096][0.256506,0.735429,0][0.690235,0.449414,0.107031][-0.972221,0.233884,0.00920377][0.264069,0.735429,0][0.690235,0.449414,0.107031][-0.972221,0.233884,0.00920377][0.264069,0.735429,0][0.636742,0.449414,-0.163886][-0.893156,0.242454,0.378799][0.264069,0.79094,0][0.64575,0.4125,-0.167719][-0.915918,-0.255656,0.309409][0.256506,0.791725,0][0.636742,0.449414,-0.163886][-0.893156,0.242454,0.378799][0.264069,0.79094,0][0.690235,0.449414,0.107031][-0.972221,0.233884,0.00920377][0.264069,0.735429,0][0.701563,0.461718,0.107031][-0.163566,0.985239,0.0505076][0.266591,0.735429,0][0.701563,0.461718,0.107031][-0.163566,0.985239,0.0505076][0.266591,0.735429,0][0.647192,0.461718,-0.168332][-0.132499,0.985099,0.109658][0.266591,0.791851,0][0.636742,0.449414,-0.163886][-0.893156,0.242454,0.378799][0.264069,0.79094,0][0.647192,0.461718,-0.168332][-0.132499,0.985099,0.109658][0.460349,0.328161,0][0.701563,0.461718,0.107031][-0.163566,0.985239,0.0505076][0.516771,0.328161,0][0.72461,0.449414,0.107031][0.665673,0.746151,0.0117379][0.516771,0.330682,0][0.72461,0.449414,0.107031][0.665673,0.746151,0.0117379][0.516771,0.330682,0][0.668453,0.449414,-0.177378][0.618798,0.747005,-0.243046][0.458496,0.330682,0][0.647192,0.461718,-0.168332][-0.132499,0.985099,0.109658][0.460349,0.328161,0][0.668453,0.449414,-0.177378][0.618798,0.747005,-0.243046][0.458496,0.330682,0][0.72461,0.449414,0.107031][0.665673,0.746151,0.0117379][0.516771,0.330682,0][0.750001,0.4125,0.107031][0.867772,0.496955,0.00262816][0.516771,0.338246,0][0.750001,0.4125,0.107031][0.867772,0.496955,0.00262816][0.516771,0.338246,0][0.691875,0.4125,-0.187344][0.802376,0.497896,-0.329078][0.456454,0.338246,0][0.668453,0.449414,-0.177378][0.618798,0.747005,-0.243046][0.458496,0.330682,0][0.700001,0.4125,0.107031][-0.960836,-0.271213,-0.0569096][0.256506,0.735429,0][0.645751,0.4125,0.400765][-0.837541,-0.362667,-0.408654][0.256506,0.675243,0][0.636742,0.449414,0.385957][-0.916036,0.152477,-0.370984][0.264069,0.678278,0][0.636742,0.449414,0.385957][-0.916036,0.152477,-0.370984][0.264069,0.678278,0][0.690235,0.449414,0.107031][-0.972221,0.233884,0.00920377][0.264069,0.735429,0][0.700001,0.4125,0.107031][-0.960836,-0.271213,-0.0569096][0.256506,0.735429,0][0.690235,0.449414,0.107031][-0.972221,0.233884,0.00920377][0.264069,0.735429,0][0.636742,0.449414,0.385957][-0.916036,0.152477,-0.370984][0.264069,0.678278,0][0.647192,0.461718,0.384767][-0.194991,0.980501,-0.0244072][0.266591,0.678521,0][0.647192,0.461718,0.384767][-0.194991,0.980501,-0.0244072][0.266591,0.678521,0][0.701563,0.461718,0.107031][-0.163566,0.985239,0.0505076][0.266591,0.735429,0][0.690235,0.449414,0.107031][-0.972221,0.233884,0.00920377][0.264069,0.735429,0][0.701563,0.461718,0.107031][-0.163566,0.985239,0.0505076][0.516771,0.328161,0][0.647192,0.461718,0.384767][-0.194991,0.980501,-0.0244072][0.573679,0.328161,0][0.668453,0.449414,0.391737][0.613716,0.742967,0.267119][0.575107,0.330682,0][0.668453,0.449414,0.391737][0.613716,0.742967,0.267119][0.575107,0.330682,0][0.72461,0.449414,0.107031][0.665673,0.746151,0.0117379][0.516771,0.330682,0][0.701563,0.461718,0.107031][-0.163566,0.985239,0.0505076][0.516771,0.328161,0][0.72461,0.449414,0.107031][0.665673,0.746151,0.0117379][0.516771,0.330682,0][0.668453,0.449414,0.391737][0.613716,0.742967,0.267119][0.575107,0.330682,0][0.691876,0.4125,0.401406][0.800678,0.497242,0.334162][0.577088,0.338246,0][0.691876,0.4125,0.401406][0.800678,0.497242,0.334162][0.577088,0.338246,0][0.750001,0.4125,0.107031][0.867772,0.496955,0.00262816][0.516771,0.338246,0][0.72461,0.449414,0.107031][0.665673,0.746151,0.0117379][0.516771,0.330682,0][0.645751,0.4125,0.400765][-0.837541,-0.362667,-0.408654][0.910479,0.544371,0][0.497001,0.4125,0.620906][-0.595663,-0.386395,-0.70419][0.880001,0.544371,0][0.490067,0.449414,0.604217][-0.702532,0.0906177,-0.705859][0.87858,0.536808,0][0.490067,0.449414,0.604217][-0.702532,0.0906177,-0.705859][0.87858,0.536808,0][0.636742,0.449414,0.385957][-0.916036,0.152477,-0.370984][0.908633,0.536808,0][0.645751,0.4125,0.400765][-0.837541,-0.362667,-0.408654][0.910479,0.544371,0][0.636742,0.449414,0.385957][-0.916036,0.152477,-0.370984][0.908633,0.536808,0][0.490067,0.449414,0.604217][-0.702532,0.0906177,-0.705859][0.87858,0.536808,0][0.49811,0.461718,0.60725][-0.208507,0.969627,-0.127862][0.880228,0.534287,0][0.49811,0.461718,0.60725][-0.208507,0.969627,-0.127862][0.880228,0.534287,0][0.647192,0.461718,0.384767][-0.194991,0.980501,-0.0244072][0.910775,0.534287,0][0.636742,0.449414,0.385957][-0.916036,0.152477,-0.370984][0.908633,0.536808,0][0.647192,0.461718,0.384767][-0.194991,0.980501,-0.0244072][0.573679,0.328161,0][0.49811,0.461718,0.60725][-0.208507,0.969627,-0.127862][0.619265,0.328161,0][0.514473,0.449414,0.621767][0.468393,0.738576,0.484885][0.62224,0.330682,0][0.514473,0.449414,0.621767][0.468393,0.738576,0.484885][0.62224,0.330682,0][0.668453,0.449414,0.391737][0.613716,0.742967,0.267119][0.575107,0.330682,0][0.647192,0.461718,0.384767][-0.194991,0.980501,-0.0244072][0.573679,0.328161,0][0.668453,0.449414,0.391737][0.613716,0.742967,0.267119][0.0620542,0.330682,0][0.514473,0.449414,0.621767][0.468393,0.738576,0.484885][0.0936045,0.330682,0][0.532501,0.4125,0.639531][0.611723,0.497022,0.615438][0.0899107,0.338246,0][0.532501,0.4125,0.639531][0.611723,0.497022,0.615438][0.0899107,0.338246,0][0.691876,0.4125,0.401406][0.800678,0.497242,0.334162][0.0572549,0.338246,0][0.668453,0.449414,0.391737][0.613716,0.742967,0.267119][0.0620542,0.330682,0][0.497001,0.4125,0.620906][-0.595663,-0.386395,-0.70419][0.880001,0.544371,0][0.274751,0.4125,0.759109][-0.28391,-0.309681,-0.907465][0.834462,0.544371,0][0.270918,0.449414,0.746442][-0.369963,0.15557,-0.915929][0.833676,0.536808,0][0.270918,0.449414,0.746442][-0.369963,0.15557,-0.915929][0.833676,0.536808,0][0.490067,0.449414,0.604217][-0.702532,0.0906177,-0.705859][0.87858,0.536808,0][0.497001,0.4125,0.620906][-0.595663,-0.386395,-0.70419][0.880001,0.544371,0][0.490067,0.449414,0.604217][-0.702532,0.0906177,-0.705859][0.87858,0.536808,0][0.270918,0.449414,0.746442][-0.369963,0.15557,-0.915929][0.833676,0.536808,0][0.275364,0.461719,0.755014][-0.136578,0.973514,-0.183346][0.834587,0.534287,0][0.275364,0.461719,0.755014][-0.136578,0.973514,-0.183346][0.834587,0.534287,0][0.49811,0.461718,0.60725][-0.208507,0.969627,-0.127862][0.880228,0.534287,0][0.490067,0.449414,0.604217][-0.702532,0.0906177,-0.705859][0.87858,0.536808,0][0.49811,0.461718,0.60725][-0.208507,0.969627,-0.127862][0.0969573,0.328161,0][0.275364,0.461719,0.755014][-0.136578,0.973514,-0.183346][0.142598,0.328161,0][0.28441,0.449414,0.775582][0.246027,0.740672,0.6252][0.140744,0.330682,0][0.28441,0.449414,0.775582][0.246027,0.740672,0.6252][0.140744,0.330682,0][0.514473,0.449414,0.621767][0.468393,0.738576,0.484885][0.0936045,0.330682,0][0.49811,0.461718,0.60725][-0.208507,0.969627,-0.127862][0.0969573,0.328161,0][0.514473,0.449414,0.621767][0.468393,0.738576,0.484885][0.0936045,0.330682,0][0.28441,0.449414,0.775582][0.246027,0.740672,0.6252][0.140744,0.330682,0][0.294376,0.4125,0.798906][0.329317,0.496814,0.802948][0.138702,0.338246,0][0.294376,0.4125,0.798906][0.329317,0.496814,0.802948][0.138702,0.338246,0][0.532501,0.4125,0.639531][0.611723,0.497022,0.615438][0.0899107,0.338246,0][0.514473,0.449414,0.621767][0.468393,0.738576,0.484885][0.0936045,0.330682,0][0.274751,0.4125,0.759109][-0.28391,-0.309681,-0.907465][0.834462,0.544371,0][9.28648e-007,0.4125,0.807031][0.070564,-0.255115,-0.964333][0.778166,0.544371,0][9.41917e-007,0.449414,0.797266][-0.000322285,0.227695,-0.973733][0.778166,0.536808,0][9.41917e-007,0.449414,0.797266][-0.000322285,0.227695,-0.973733][0.778166,0.536808,0][0.270918,0.449414,0.746442][-0.369963,0.15557,-0.915929][0.833676,0.536808,0][0.274751,0.4125,0.759109][-0.28391,-0.309681,-0.907465][0.834462,0.544371,0][0.270918,0.449414,0.746442][-0.369963,0.15557,-0.915929][0.833676,0.536808,0][9.41917e-007,0.449414,0.797266][-0.000322285,0.227695,-0.973733][0.778166,0.536808,0][9.53468e-007,0.461719,0.808594][-0.0513984,0.982501,-0.179027][0.778166,0.534287,0][9.53468e-007,0.461719,0.808594][-0.0513984,0.982501,-0.179027][0.778166,0.534287,0][0.275364,0.461719,0.755014][-0.136578,0.973514,-0.183346][0.834587,0.534287,0][0.270918,0.449414,0.746442][-0.369963,0.15557,-0.915929][0.833676,0.536808,0][0.275364,0.461719,0.755014][-0.136578,0.973514,-0.183346][0.142598,0.328161,0][9.53468e-007,0.461719,0.808594][-0.0513984,0.982501,-0.179027][0.19902,0.328161,0][9.58718e-007,0.449414,0.831641][-0.0116822,0.744838,0.667143][0.19902,0.330682,0][9.58718e-007,0.449414,0.831641][-0.0116822,0.744838,0.667143][0.19902,0.330682,0][0.28441,0.449414,0.775582][0.246027,0.740672,0.6252][0.140744,0.330682,0][0.275364,0.461719,0.755014][-0.136578,0.973514,-0.183346][0.142598,0.328161,0][0.28441,0.449414,0.775582][0.246027,0.740672,0.6252][0.140744,0.330682,0][9.58718e-007,0.449414,0.831641][-0.0116822,0.744838,0.667143][0.19902,0.330682,0][9.53086e-007,0.4125,0.857031][-0.00264142,0.496692,0.867923][0.19902,0.338246,0][9.53086e-007,0.4125,0.857031][-0.00264142,0.496692,0.867923][0.19902,0.338246,0][0.294376,0.4125,0.798906][0.329317,0.496814,0.802948][0.138702,0.338246,0][0.28441,0.449414,0.775582][0.246027,0.740672,0.6252][0.140744,0.330682,0][9.28648e-007,0.4125,0.807031][0.070564,-0.255115,-0.964333][0.778166,0.544371,0][-0.274749,0.4125,0.752781][0.42824,-0.255971,-0.866654][0.72187,0.544371,0][-0.270916,0.449414,0.743773][0.362922,0.242935,-0.899594][0.722655,0.536808,0][-0.270916,0.449414,0.743773][0.362922,0.242935,-0.899594][0.722655,0.536808,0][9.41917e-007,0.449414,0.797266][-0.000322285,0.227695,-0.973733][0.778166,0.536808,0][9.28648e-007,0.4125,0.807031][0.070564,-0.255115,-0.964333][0.778166,0.544371,0][9.41917e-007,0.449414,0.797266][-0.000322285,0.227695,-0.973733][0.778166,0.536808,0][-0.270916,0.449414,0.743773][0.362922,0.242935,-0.899594][0.722655,0.536808,0][-0.275362,0.461719,0.754223][0.0162803,0.985002,-0.171776][0.721744,0.534287,0][-0.275362,0.461719,0.754223][0.0162803,0.985002,-0.171776][0.721744,0.534287,0][9.53468e-007,0.461719,0.808594][-0.0513984,0.982501,-0.179027][0.778166,0.534287,0][9.41917e-007,0.449414,0.797266][-0.000322285,0.227695,-0.973733][0.778166,0.536808,0][9.53468e-007,0.461719,0.808594][-0.0513984,0.982501,-0.179027][0.19902,0.328161,0][-0.275362,0.461719,0.754223][0.0162803,0.985002,-0.171776][0.255441,0.328161,0][-0.284408,0.449414,0.775484][-0.265066,0.747027,0.609664][0.257295,0.330682,0][-0.284408,0.449414,0.775484][-0.265066,0.747027,0.609664][0.257295,0.330682,0][9.58718e-007,0.449414,0.831641][-0.0116822,0.744838,0.667143][0.19902,0.330682,0][9.53468e-007,0.461719,0.808594][-0.0513984,0.982501,-0.179027][0.19902,0.328161,0][9.58718e-007,0.449414,0.831641][-0.0116822,0.744838,0.667143][0.19902,0.330682,0][-0.284408,0.449414,0.775484][-0.265066,0.747027,0.609664][0.257295,0.330682,0][-0.294374,0.4125,0.798906][-0.334021,0.497848,0.800361][0.259337,0.338246,0][-0.294374,0.4125,0.798906][-0.334021,0.497848,0.800361][0.259337,0.338246,0][9.53086e-007,0.4125,0.857031][-0.00264142,0.496692,0.867923][0.19902,0.338246,0][9.58718e-007,0.449414,0.831641][-0.0116822,0.744838,0.667143][0.19902,0.330682,0][-0.274749,0.4125,0.752781][0.42824,-0.255971,-0.866654][0.72187,0.544371,0][-0.496999,0.4125,0.604032][0.727058,-0.256209,-0.636981][0.676331,0.544371,0][-0.490066,0.449414,0.597098][0.679895,0.242858,-0.691927][0.677751,0.536808,0][-0.490066,0.449414,0.597098][0.679895,0.242858,-0.691927][0.677751,0.536808,0][-0.270916,0.449414,0.743773][0.362922,0.242935,-0.899594][0.722655,0.536808,0][-0.274749,0.4125,0.752781][0.42824,-0.255971,-0.866654][0.72187,0.544371,0][-0.270916,0.449414,0.743773][0.362922,0.242935,-0.899594][0.722655,0.536808,0][-0.490066,0.449414,0.597098][0.679895,0.242858,-0.691927][0.677751,0.536808,0][-0.498109,0.461719,0.605141][0.0810029,0.985081,-0.151838][0.676103,0.534287,0][-0.498109,0.461719,0.605141][0.0810029,0.985081,-0.151838][0.676103,0.534287,0][-0.275362,0.461719,0.754223][0.0162803,0.985002,-0.171776][0.721744,0.534287,0][-0.270916,0.449414,0.743773][0.362922,0.242935,-0.899594][0.722655,0.536808,0][-0.275362,0.461719,0.754223][0.0162803,0.985002,-0.171776][0.255441,0.328161,0][-0.498109,0.461719,0.605141][0.0810029,0.985081,-0.151838][0.301082,0.328161,0][-0.514472,0.449414,0.621504][-0.478003,0.747475,0.461296][0.304435,0.330682,0][-0.514472,0.449414,0.621504][-0.478003,0.747475,0.461296][0.304435,0.330682,0][-0.284408,0.449414,0.775484][-0.265066,0.747027,0.609664][0.257295,0.330682,0][-0.275362,0.461719,0.754223][0.0162803,0.985002,-0.171776][0.255441,0.328161,0][-0.284408,0.449414,0.775484][-0.265066,0.747027,0.609664][0.257295,0.330682,0][-0.514472,0.449414,0.621504][-0.478003,0.747475,0.461296][0.304435,0.330682,0][-0.532499,0.4125,0.639532][-0.614869,0.498465,0.611121][0.308128,0.338246,0][-0.532499,0.4125,0.639532][-0.614869,0.498465,0.611121][0.308128,0.338246,0][-0.294374,0.4125,0.798906][-0.334021,0.497848,0.800361][0.259337,0.338246,0][-0.284408,0.449414,0.775484][-0.265066,0.747027,0.609664][0.257295,0.330682,0][-0.496999,0.4125,0.604032][0.727058,-0.256209,-0.636981][0.676331,0.544371,0][-0.645749,0.4125,0.381782][0.915918,-0.255656,-0.309409][0.645852,0.544371,0][-0.636741,0.449414,0.377949][0.893156,0.242454,-0.378799][0.647698,0.536808,0][-0.636741,0.449414,0.377949][0.893156,0.242454,-0.378799][0.647698,0.536808,0][-0.490066,0.449414,0.597098][0.679895,0.242858,-0.691927][0.677751,0.536808,0][-0.496999,0.4125,0.604032][0.727058,-0.256209,-0.636981][0.676331,0.544371,0][-0.490066,0.449414,0.597098][0.679895,0.242858,-0.691927][0.677751,0.536808,0][-0.636741,0.449414,0.377949][0.893156,0.242454,-0.378799][0.647698,0.536808,0][-0.647191,0.461719,0.382395][0.132499,0.985099,-0.109658][0.645557,0.534287,0][-0.647191,0.461719,0.382395][0.132499,0.985099,-0.109658][0.645557,0.534287,0][-0.498109,0.461719,0.605141][0.0810029,0.985081,-0.151838][0.676103,0.534287,0][-0.490066,0.449414,0.597098][0.679895,0.242858,-0.691927][0.677751,0.536808,0][-0.498109,0.461719,0.605141][0.0810029,0.985081,-0.151838][0.25367,0.597717,0][-0.647191,0.461719,0.382395][0.132499,0.985099,-0.109658][0.29931,0.597717,0][-0.668451,0.449414,0.391441][-0.618798,0.747005,0.243047][0.297456,0.600238,0][-0.668451,0.449414,0.391441][-0.618798,0.747005,0.243047][0.297456,0.600238,0][-0.514472,0.449414,0.621504][-0.478003,0.747475,0.461296][0.250317,0.600238,0][-0.498109,0.461719,0.605141][0.0810029,0.985081,-0.151838][0.25367,0.597717,0][-0.514472,0.449414,0.621504][-0.478003,0.747475,0.461296][0.304435,0.330682,0][-0.668451,0.449414,0.391441][-0.618798,0.747005,0.243047][0.335985,0.330682,0][-0.691874,0.4125,0.401407][-0.802376,0.497896,0.329078][0.340784,0.338246,0][-0.691874,0.4125,0.401407][-0.802376,0.497896,0.329078][0.340784,0.338246,0][-0.532499,0.4125,0.639532][-0.614869,0.498465,0.611121][0.308128,0.338246,0][-0.514472,0.449414,0.621504][-0.478003,0.747475,0.461296][0.304435,0.330682,0][-0.645749,0.4125,0.381782][0.915918,-0.255656,-0.309409][0.451062,0.791725,0][-0.699999,0.4125,0.107032][0.964791,-0.255236,0.0634998][0.451062,0.735429,0][-0.690234,0.449414,0.107032][0.970156,0.242334,-0.00843237][0.458626,0.735429,0][-0.690234,0.449414,0.107032][0.970156,0.242334,-0.00843237][0.458626,0.735429,0][-0.636741,0.449414,0.377949][0.893156,0.242454,-0.378799][0.458626,0.79094,0][-0.645749,0.4125,0.381782][0.915918,-0.255656,-0.309409][0.451062,0.791725,0][-0.636741,0.449414,0.377949][0.893156,0.242454,-0.378799][0.458626,0.79094,0][-0.690234,0.449414,0.107032][0.970156,0.242334,-0.00843237][0.458626,0.735429,0][-0.701562,0.461719,0.107032][0.164812,0.985051,-0.0501126][0.461147,0.735429,0][-0.701562,0.461719,0.107032][0.164812,0.985051,-0.0501126][0.461147,0.735429,0][-0.647191,0.461719,0.382395][0.132499,0.985099,-0.109658][0.461147,0.791851,0][-0.636741,0.449414,0.377949][0.893156,0.242454,-0.378799][0.458626,0.79094,0][-0.647191,0.461719,0.382395][0.132499,0.985099,-0.109658][0.29931,0.597717,0][-0.701562,0.461719,0.107032][0.164812,0.985051,-0.0501126][0.355732,0.597717,0][-0.724609,0.449414,0.107032][-0.665535,0.746274,-0.0117615][0.355732,0.600238,0][-0.724609,0.449414,0.107032][-0.665535,0.746274,-0.0117615][0.355732,0.600238,0][-0.668451,0.449414,0.391441][-0.618798,0.747005,0.243047][0.297456,0.600238,0][-0.647191,0.461719,0.382395][0.132499,0.985099,-0.109658][0.29931,0.597717,0][-0.668451,0.449414,0.391441][-0.618798,0.747005,0.243047][0.297456,0.600238,0][-0.724609,0.449414,0.107032][-0.665535,0.746274,-0.0117615][0.355732,0.600238,0][-0.749999,0.4125,0.107032][-0.867772,0.496955,-0.00262815][0.355732,0.607802,0][-0.749999,0.4125,0.107032][-0.867772,0.496955,-0.00262815][0.355732,0.607802,0][-0.691874,0.4125,0.401407][-0.802376,0.497896,0.329078][0.295415,0.607802,0][-0.668451,0.449414,0.391441][-0.618798,0.747005,0.243047][0.297456,0.600238,0][-0.699999,0.4125,0.107032][0.964791,-0.255236,0.0634998][0.451062,0.735429,0][-0.645749,0.4125,-0.167718][0.866654,-0.255972,0.42824][0.451062,0.679133,0][-0.636741,0.449414,-0.163885][0.899594,0.242936,0.362921][0.458626,0.679919,0][-0.636741,0.449414,-0.163885][0.899594,0.242936,0.362921][0.458626,0.679919,0][-0.690234,0.449414,0.107032][0.970156,0.242334,-0.00843237][0.458626,0.735429,0][-0.699999,0.4125,0.107032][0.964791,-0.255236,0.0634998][0.451062,0.735429,0][-0.690234,0.449414,0.107032][0.970156,0.242334,-0.00843237][0.458626,0.735429,0][-0.636741,0.449414,-0.163885][0.899594,0.242936,0.362921][0.458626,0.679919,0][-0.647191,0.461719,-0.168332][0.171776,0.985002,0.0162797][0.461147,0.679008,0][-0.647191,0.461719,-0.168332][0.171776,0.985002,0.0162797][0.461147,0.679008,0][-0.701562,0.461719,0.107032][0.164812,0.985051,-0.0501126][0.461147,0.735429,0][-0.690234,0.449414,0.107032][0.970156,0.242334,-0.00843237][0.458626,0.735429,0][-0.701562,0.461719,0.107032][0.164812,0.985051,-0.0501126][0.355732,0.597717,0][-0.647191,0.461719,-0.168332][0.171776,0.985002,0.0162797][0.412153,0.597717,0][-0.668452,0.449414,-0.177377][-0.609664,0.747027,-0.265066][0.414007,0.600238,0][-0.668452,0.449414,-0.177377][-0.609664,0.747027,-0.265066][0.414007,0.600238,0][-0.724609,0.449414,0.107032][-0.665535,0.746274,-0.0117615][0.355732,0.600238,0][-0.701562,0.461719,0.107032][0.164812,0.985051,-0.0501126][0.355732,0.597717,0][-0.724609,0.449414,0.107032][-0.665535,0.746274,-0.0117615][0.355732,0.600238,0][-0.668452,0.449414,-0.177377][-0.609664,0.747027,-0.265066][0.414007,0.600238,0][-0.691875,0.4125,-0.187343][-0.800361,0.497848,-0.334021][0.416049,0.607802,0][-0.691875,0.4125,-0.187343][-0.800361,0.497848,-0.334021][0.416049,0.607802,0][-0.749999,0.4125,0.107032][-0.867772,0.496955,-0.00262815][0.355732,0.607802,0][-0.724609,0.449414,0.107032][-0.665535,0.746274,-0.0117615][0.355732,0.600238,0][-0.645749,0.4125,-0.167718][0.866654,-0.255972,0.42824][0.684766,0.289641,0][-0.497,0.4125,-0.389968][0.63698,-0.256209,0.727058][0.654287,0.289641,0][-0.490066,0.449414,-0.383035][0.691927,0.242859,0.679895][0.652866,0.282077,0][-0.490066,0.449414,-0.383035][0.691927,0.242859,0.679895][0.652866,0.282077,0][-0.636741,0.449414,-0.163885][0.899594,0.242936,0.362921][0.68292,0.282077,0][-0.645749,0.4125,-0.167718][0.866654,-0.255972,0.42824][0.684766,0.289641,0][-0.636741,0.449414,-0.163885][0.899594,0.242936,0.362921][0.68292,0.282077,0][-0.490066,0.449414,-0.383035][0.691927,0.242859,0.679895][0.652866,0.282077,0][-0.498109,0.461719,-0.391078][0.151838,0.985081,0.0810019][0.654514,0.279556,0][-0.498109,0.461719,-0.391078][0.151838,0.985081,0.0810019][0.654514,0.279556,0][-0.647191,0.461719,-0.168332][0.171776,0.985002,0.0162797][0.685061,0.279556,0][-0.636741,0.449414,-0.163885][0.899594,0.242936,0.362921][0.68292,0.282077,0][-0.647191,0.461719,-0.168332][0.171776,0.985002,0.0162797][0.412153,0.597717,0][-0.498109,0.461719,-0.391078][0.151838,0.985081,0.0810019][0.457794,0.597717,0][-0.514472,0.449414,-0.407441][-0.461296,0.747475,-0.478003][0.461147,0.600238,0][-0.514472,0.449414,-0.407441][-0.461296,0.747475,-0.478003][0.461147,0.600238,0][-0.668452,0.449414,-0.177377][-0.609664,0.747027,-0.265066][0.414007,0.600238,0][-0.647191,0.461719,-0.168332][0.171776,0.985002,0.0162797][0.412153,0.597717,0][-0.668452,0.449414,-0.177377][-0.609664,0.747027,-0.265066][0.471897,0.0125212,0][-0.514472,0.449414,-0.407441][-0.461296,0.747475,-0.478003][0.503448,0.0125212,0][-0.5325,0.4125,-0.425468][-0.611121,0.498465,-0.614869][0.499754,0.0200849,0][-0.5325,0.4125,-0.425468][-0.611121,0.498465,-0.614869][0.499754,0.0200849,0][-0.691875,0.4125,-0.187343][-0.800361,0.497848,-0.334021][0.467098,0.0200849,0][-0.668452,0.449414,-0.177377][-0.609664,0.747027,-0.265066][0.471897,0.0125212,0][-0.497,0.4125,-0.389968][0.63698,-0.256209,0.727058][0.654287,0.289641,0][-0.27475,0.4125,-0.538719][0.309409,-0.255656,0.915918][0.608748,0.289641,0][-0.270917,0.449414,-0.52971][0.378799,0.242454,0.893156][0.607963,0.282077,0][-0.270917,0.449414,-0.52971][0.378799,0.242454,0.893156][0.607963,0.282077,0][-0.490066,0.449414,-0.383035][0.691927,0.242859,0.679895][0.652866,0.282077,0][-0.497,0.4125,-0.389968][0.63698,-0.256209,0.727058][0.654287,0.289641,0][-0.490066,0.449414,-0.383035][0.691927,0.242859,0.679895][0.652866,0.282077,0][-0.270917,0.449414,-0.52971][0.378799,0.242454,0.893156][0.607963,0.282077,0][-0.275363,0.461719,-0.54016][0.109658,0.985099,0.132498][0.608874,0.279556,0][-0.275363,0.461719,-0.54016][0.109658,0.985099,0.132498][0.608874,0.279556,0][-0.498109,0.461719,-0.391078][0.151838,0.985081,0.0810019][0.654514,0.279556,0][-0.490066,0.449414,-0.383035][0.691927,0.242859,0.679895][0.652866,0.282077,0][-0.498109,0.461719,-0.391078][0.151838,0.985081,0.0810019][0.506801,0.01,0][-0.275363,0.461719,-0.54016][0.109658,0.985099,0.132498][0.552441,0.01,0][-0.284409,0.449414,-0.561421][-0.243046,0.747005,-0.618799][0.550588,0.0125212,0][-0.284409,0.449414,-0.561421][-0.243046,0.747005,-0.618799][0.550588,0.0125212,0][-0.514472,0.449414,-0.407441][-0.461296,0.747475,-0.478003][0.503448,0.0125212,0][-0.498109,0.461719,-0.391078][0.151838,0.985081,0.0810019][0.506801,0.01,0][-0.514472,0.449414,-0.407441][-0.461296,0.747475,-0.478003][0.503448,0.0125212,0][-0.284409,0.449414,-0.561421][-0.243046,0.747005,-0.618799][0.550588,0.0125212,0][-0.294375,0.4125,-0.584844][-0.329078,0.497896,-0.802376][0.548546,0.0200849,0][-0.294375,0.4125,-0.584844][-0.329078,0.497896,-0.802376][0.548546,0.0200849,0][-0.5325,0.4125,-0.425468][-0.611121,0.498465,-0.614869][0.499754,0.0200849,0][-0.514472,0.449414,-0.407441][-0.461296,0.747475,-0.478003][0.503448,0.0125212,0][-0.27475,0.4125,-0.538719][0.309409,-0.255656,0.915918][0.608748,0.289641,0][2.44381e-007,0.4125,-0.592969][-0.0634999,-0.255236,0.964791][0.552452,0.289641,0][2.67196e-007,0.449414,-0.583203][0.00843247,0.242334,0.970156][0.552452,0.282077,0][2.67196e-007,0.449414,-0.583203][0.00843247,0.242334,0.970156][0.552452,0.282077,0][-0.270917,0.449414,-0.52971][0.378799,0.242454,0.893156][0.607963,0.282077,0][-0.27475,0.4125,-0.538719][0.309409,-0.255656,0.915918][0.608748,0.289641,0][-0.270917,0.449414,-0.52971][0.378799,0.242454,0.893156][0.607963,0.282077,0][2.67196e-007,0.449414,-0.583203][0.00843247,0.242334,0.970156][0.552452,0.282077,0][2.67674e-007,0.461719,-0.594531][0.050113,0.985051,0.164812][0.552452,0.279556,0][2.67674e-007,0.461719,-0.594531][0.050113,0.985051,0.164812][0.552452,0.279556,0][-0.275363,0.461719,-0.54016][0.109658,0.985099,0.132498][0.608874,0.279556,0][-0.270917,0.449414,-0.52971][0.378799,0.242454,0.893156][0.607963,0.282077,0][-0.275363,0.461719,-0.54016][0.109658,0.985099,0.132498][0.552441,0.01,0][2.67674e-007,0.461719,-0.594531][0.050113,0.985051,0.164812][0.608863,0.01,0][2.50395e-007,0.449414,-0.617578][0.0117618,0.746274,-0.665535][0.608863,0.0125212,0][2.50395e-007,0.449414,-0.617578][0.0117618,0.746274,-0.665535][0.608863,0.0125212,0][-0.284409,0.449414,-0.561421][-0.243046,0.747005,-0.618799][0.550588,0.0125212,0][-0.275363,0.461719,-0.54016][0.109658,0.985099,0.132498][0.552441,0.01,0][-0.284409,0.449414,-0.561421][-0.243046,0.747005,-0.618799][0.550588,0.0125212,0][2.50395e-007,0.449414,-0.617578][0.0117618,0.746274,-0.665535][0.608863,0.0125212,0][2.19943e-007,0.4125,-0.642969][0.00262834,0.496955,-0.867772][0.608863,0.0200849,0][2.19943e-007,0.4125,-0.642969][0.00262834,0.496955,-0.867772][0.608863,0.0200849,0][-0.294375,0.4125,-0.584844][-0.329078,0.497896,-0.802376][0.548546,0.0200849,0][-0.284409,0.449414,-0.561421][-0.243046,0.747005,-0.618799][0.550588,0.0125212,0][2.19943e-007,0.4125,-0.642969][0.00262834,0.496955,-0.867772][0.608863,0.0200849,0][0.294375,0.4125,-0.584844][0.334021,0.497847,-0.800361][0.66918,0.0200849,0][0.330405,0.216211,-0.669526][0.350176,0.404552,-0.844816][0.676562,0.0603043,0][0.330405,0.216211,-0.669526][0.350176,0.404552,-0.844816][0.676562,0.0603043,0][0,0.216211,-0.734766][0.000562586,0.403725,-0.91488][0.608863,0.0603043,0][2.19943e-007,0.4125,-0.642969][0.00262834,0.496955,-0.867772][0.608863,0.0200849,0][0,0.216211,-0.734766][0.000562586,0.403725,-0.91488][0.608863,0.0603043,0][0.330405,0.216211,-0.669526][0.350176,0.404552,-0.844816][0.676562,0.0603043,0][0.361836,0.0234373,-0.743398][0.360724,0.338796,-0.868963][0.683003,0.0998035,0][0.361836,0.0234373,-0.743398][0.360724,0.338796,-0.868963][0.683003,0.0998035,0][0,0.0234374,-0.814844][0.00105162,0.33808,-0.941117][0.608863,0.0998035,0][0,0.216211,-0.734766][0.000562586,0.403725,-0.91488][0.608863,0.0603043,0][0,0.0234374,-0.814844][0.00105162,0.33808,-0.941117][0.608863,0.0998035,0][0.361836,0.0234373,-0.743398][0.360724,0.338796,-0.868963][0.683003,0.0998035,0][0.384067,-0.162305,-0.795649][0.375089,0.207976,-0.903357][0.687558,0.137862,0][0.384067,-0.162305,-0.795649][0.375089,0.207976,-0.903357][0.687558,0.137862,0][-1.7269e-007,-0.162305,-0.871484][0.00114796,0.207541,-0.978226][0.608863,0.137862,0][0,0.0234374,-0.814844][0.00105162,0.33808,-0.941117][0.608863,0.0998035,0][-1.7269e-007,-0.162305,-0.871484][0.00114796,0.207541,-0.978226][0.608863,0.137862,0][0.384067,-0.162305,-0.795649][0.375089,0.207976,-0.903357][0.687558,0.137862,0][0.3925,-0.3375,-0.815469][0.38071,-0.0681312,-0.922181][0.689286,0.173759,0][0.3925,-0.3375,-0.815469][0.38071,-0.0681312,-0.922181][0.689286,0.173759,0][-2.68819e-007,-0.3375,-0.892969][-0.000826517,-0.0678514,-0.997695][0.608863,0.173759,0][-1.7269e-007,-0.162305,-0.871484][0.00114796,0.207541,-0.978226][0.608863,0.137862,0][0.294375,0.4125,-0.584844][0.334021,0.497847,-0.800361][0.66918,0.0200849,0][0.5325,0.4125,-0.425469][0.614869,0.498464,-0.611121][0.717972,0.0200849,0][0.597676,0.216211,-0.490645][0.646888,0.405104,-0.646085][0.731326,0.0603043,0][0.597676,0.216211,-0.490645][0.646888,0.405104,-0.646085][0.731326,0.0603043,0][0.330405,0.216211,-0.669526][0.350176,0.404552,-0.844816][0.676562,0.0603043,0][0.294375,0.4125,-0.584844][0.334021,0.497847,-0.800361][0.66918,0.0200849,0][0.330405,0.216211,-0.669526][0.350176,0.404552,-0.844816][0.676562,0.0603043,0][0.597676,0.216211,-0.490645][0.646888,0.405104,-0.646085][0.731326,0.0603043,0][0.654531,0.0234371,-0.5475][0.665911,0.339299,-0.664409][0.742976,0.0998035,0][0.654531,0.0234371,-0.5475][0.665911,0.339299,-0.664409][0.742976,0.0998035,0][0.361836,0.0234373,-0.743398][0.360724,0.338796,-0.868963][0.683003,0.0998035,0][0.330405,0.216211,-0.669526][0.350176,0.404552,-0.844816][0.676562,0.0603043,0][0.361836,0.0234373,-0.743398][0.360724,0.338796,-0.868963][0.683003,0.0998035,0][0.654531,0.0234371,-0.5475][0.665911,0.339299,-0.664409][0.742976,0.0998035,0][0.694746,-0.162305,-0.587715][0.69241,0.208342,-0.690769][0.751216,0.137862,0][0.694746,-0.162305,-0.587715][0.69241,0.208342,-0.690769][0.751216,0.137862,0][0.384067,-0.162305,-0.795649][0.375089,0.207976,-0.903357][0.687558,0.137862,0][0.361836,0.0234373,-0.743398][0.360724,0.338796,-0.868963][0.683003,0.0998035,0][0.384067,-0.162305,-0.795649][0.375089,0.207976,-0.903357][0.687558,0.137862,0][0.694746,-0.162305,-0.587715][0.69241,0.208342,-0.690769][0.751216,0.137862,0][0.71,-0.3375,-0.602969][0.704874,-0.0681097,-0.706055][0.754341,0.173759,0][0.71,-0.3375,-0.602969][0.704874,-0.0681097,-0.706055][0.754341,0.173759,0][0.3925,-0.3375,-0.815469][0.38071,-0.0681312,-0.922181][0.689286,0.173759,0][0.384067,-0.162305,-0.795649][0.375089,0.207976,-0.903357][0.687558,0.137862,0][0.5325,0.4125,-0.425469][0.614869,0.498464,-0.611121][0.717972,0.0200849,0][0.691875,0.4125,-0.187344][0.802376,0.497896,-0.329078][0.750627,0.0200849,0][0.776558,0.216211,-0.223374][0.845246,0.40457,-0.349117][0.767979,0.0603043,0][0.776558,0.216211,-0.223374][0.845246,0.40457,-0.349117][0.767979,0.0603043,0][0.597676,0.216211,-0.490645][0.646888,0.405104,-0.646085][0.731326,0.0603043,0][0.5325,0.4125,-0.425469][0.614869,0.498464,-0.611121][0.717972,0.0200849,0][0.597676,0.216211,-0.490645][0.646888,0.405104,-0.646085][0.731326,0.0603043,0][0.776558,0.216211,-0.223374][0.845246,0.40457,-0.349117][0.767979,0.0603043,0][0.85043,0.023437,-0.254805][0.869764,0.338843,-0.358742][0.783115,0.0998035,0][0.85043,0.023437,-0.254805][0.869764,0.338843,-0.358742][0.783115,0.0998035,0][0.654531,0.0234371,-0.5475][0.665911,0.339299,-0.664409][0.742976,0.0998035,0][0.597676,0.216211,-0.490645][0.646888,0.405104,-0.646085][0.731326,0.0603043,0][0.654531,0.0234371,-0.5475][0.665911,0.339299,-0.664409][0.742976,0.0998035,0][0.85043,0.023437,-0.254805][0.869764,0.338843,-0.358742][0.783115,0.0998035,0][0.902681,-0.162305,-0.277036][0.90423,0.208078,-0.372924][0.793821,0.137862,0][0.902681,-0.162305,-0.277036][0.90423,0.208078,-0.372924][0.793821,0.137862,0][0.694746,-0.162305,-0.587715][0.69241,0.208342,-0.690769][0.751216,0.137862,0][0.654531,0.0234371,-0.5475][0.665911,0.339299,-0.664409][0.742976,0.0998035,0][0.694746,-0.162305,-0.587715][0.69241,0.208342,-0.690769][0.751216,0.137862,0][0.902681,-0.162305,-0.277036][0.90423,0.208078,-0.372924][0.793821,0.137862,0][0.9225,-0.3375,-0.285469][0.921553,-0.0678888,-0.38227][0.797882,0.173759,0][0.9225,-0.3375,-0.285469][0.921553,-0.0678888,-0.38227][0.797882,0.173759,0][0.71,-0.3375,-0.602969][0.704874,-0.0681097,-0.706055][0.754341,0.173759,0][0.694746,-0.162305,-0.587715][0.69241,0.208342,-0.690769][0.751216,0.137862,0][0.691875,0.4125,-0.187344][0.802376,0.497896,-0.329078][0.456454,0.338246,0][0.750001,0.4125,0.107031][0.867772,0.496955,0.00262816][0.516771,0.338246,0][0.841797,0.216211,0.107031][0.914881,0.403724,0.000562399][0.516771,0.378465,0][0.841797,0.216211,0.107031][0.914881,0.403724,0.000562399][0.516771,0.378465,0][0.776558,0.216211,-0.223374][0.845246,0.40457,-0.349117][0.449071,0.378465,0][0.691875,0.4125,-0.187344][0.802376,0.497896,-0.329078][0.456454,0.338246,0][0.776558,0.216211,-0.223374][0.845246,0.40457,-0.349117][0.449071,0.378465,0][0.841797,0.216211,0.107031][0.914881,0.403724,0.000562399][0.516771,0.378465,0][0.921875,0.023437,0.107031][0.941117,0.33808,0.00105146][0.516771,0.417965,0][0.921875,0.023437,0.107031][0.941117,0.33808,0.00105146][0.516771,0.417965,0][0.85043,0.023437,-0.254805][0.869764,0.338843,-0.358742][0.442631,0.417965,0][0.776558,0.216211,-0.223374][0.845246,0.40457,-0.349117][0.449071,0.378465,0][0.85043,0.023437,-0.254805][0.869764,0.338843,-0.358742][0.442631,0.417965,0][0.921875,0.023437,0.107031][0.941117,0.33808,0.00105146][0.516771,0.417965,0][0.978516,-0.162305,0.107031][0.978226,0.207541,0.00114786][0.516771,0.456023,0][0.978516,-0.162305,0.107031][0.978226,0.207541,0.00114786][0.516771,0.456023,0][0.902681,-0.162305,-0.277036][0.90423,0.208078,-0.372924][0.438076,0.456023,0][0.85043,0.023437,-0.254805][0.869764,0.338843,-0.358742][0.442631,0.417965,0][0.902681,-0.162305,-0.277036][0.90423,0.208078,-0.372924][0.438076,0.456023,0][0.978516,-0.162305,0.107031][0.978226,0.207541,0.00114786][0.516771,0.456023,0][1,-0.337501,0.107031][0.997695,-0.0678519,-0.000826502][0.516771,0.49192,0][1,-0.337501,0.107031][0.997695,-0.0678519,-0.000826502][0.516771,0.49192,0][0.9225,-0.3375,-0.285469][0.921553,-0.0678888,-0.38227][0.436348,0.49192,0][0.902681,-0.162305,-0.277036][0.90423,0.208078,-0.372924][0.438076,0.456023,0][0.750001,0.4125,0.107031][0.867772,0.496955,0.00262816][0.516771,0.338246,0][0.691876,0.4125,0.401406][0.800678,0.497242,0.334162][0.577088,0.338246,0][0.776558,0.216211,0.437436][0.844817,0.404552,0.350176][0.584471,0.378465,0][0.776558,0.216211,0.437436][0.844817,0.404552,0.350176][0.584471,0.378465,0][0.841797,0.216211,0.107031][0.914881,0.403724,0.000562399][0.516771,0.378465,0][0.750001,0.4125,0.107031][0.867772,0.496955,0.00262816][0.516771,0.338246,0][0.841797,0.216211,0.107031][0.914881,0.403724,0.000562399][0.516771,0.378465,0][0.776558,0.216211,0.437436][0.844817,0.404552,0.350176][0.584471,0.378465,0][0.85043,0.023437,0.468867][0.868963,0.338795,0.360724][0.590911,0.417965,0][0.85043,0.023437,0.468867][0.868963,0.338795,0.360724][0.590911,0.417965,0][0.921875,0.023437,0.107031][0.941117,0.33808,0.00105146][0.516771,0.417965,0][0.841797,0.216211,0.107031][0.914881,0.403724,0.000562399][0.516771,0.378465,0][0.921875,0.023437,0.107031][0.941117,0.33808,0.00105146][0.516771,0.417965,0][0.85043,0.023437,0.468867][0.868963,0.338795,0.360724][0.590911,0.417965,0][0.902681,-0.162305,0.491098][0.903357,0.207976,0.375089][0.595466,0.456023,0][0.902681,-0.162305,0.491098][0.903357,0.207976,0.375089][0.595466,0.456023,0][0.978516,-0.162305,0.107031][0.978226,0.207541,0.00114786][0.516771,0.456023,0][0.921875,0.023437,0.107031][0.941117,0.33808,0.00105146][0.516771,0.417965,0][0.978516,-0.162305,0.107031][0.978226,0.207541,0.00114786][0.516771,0.456023,0][0.902681,-0.162305,0.491098][0.903357,0.207976,0.375089][0.595466,0.456023,0][0.9225,-0.337501,0.499531][0.922181,-0.0681315,0.38071][0.597194,0.49192,0][0.9225,-0.337501,0.499531][0.922181,-0.0681315,0.38071][0.597194,0.49192,0][1,-0.337501,0.107031][0.997695,-0.0678519,-0.000826502][0.516771,0.49192,0][0.978516,-0.162305,0.107031][0.978226,0.207541,0.00114786][0.516771,0.456023,0][0.691876,0.4125,0.401406][0.800678,0.497242,0.334162][0.0572549,0.338246,0][0.532501,0.4125,0.639531][0.611723,0.497022,0.615438][0.0899107,0.338246,0][0.597677,0.216211,0.704707][0.646086,0.405104,0.646888][0.0765562,0.378465,0][0.597677,0.216211,0.704707][0.646086,0.405104,0.646888][0.0765562,0.378465,0][0.776558,0.216211,0.437436][0.844817,0.404552,0.350176][0.0399035,0.378465,0][0.691876,0.4125,0.401406][0.800678,0.497242,0.334162][0.0572549,0.338246,0][0.776558,0.216211,0.437436][0.844817,0.404552,0.350176][0.0399035,0.378465,0][0.597677,0.216211,0.704707][0.646086,0.405104,0.646888][0.0765562,0.378465,0][0.654532,0.0234371,0.761562][0.664409,0.339299,0.665911][0.0649066,0.417965,0][0.654532,0.0234371,0.761562][0.664409,0.339299,0.665911][0.0649066,0.417965,0][0.85043,0.023437,0.468867][0.868963,0.338795,0.360724][0.0247672,0.417965,0][0.776558,0.216211,0.437436][0.844817,0.404552,0.350176][0.0399035,0.378465,0][0.85043,0.023437,0.468867][0.868963,0.338795,0.360724][0.0247672,0.417965,0][0.654532,0.0234371,0.761562][0.664409,0.339299,0.665911][0.0649066,0.417965,0][0.694747,-0.162305,0.801777][0.690769,0.208342,0.69241][0.0566666,0.456023,0][0.694747,-0.162305,0.801777][0.690769,0.208342,0.69241][0.0566666,0.456023,0][0.902681,-0.162305,0.491098][0.903357,0.207976,0.375089][0.014061,0.456023,0][0.85043,0.023437,0.468867][0.868963,0.338795,0.360724][0.0247672,0.417965,0][0.902681,-0.162305,0.491098][0.903357,0.207976,0.375089][0.014061,0.456023,0][0.694747,-0.162305,0.801777][0.690769,0.208342,0.69241][0.0566666,0.456023,0][0.710001,-0.3375,0.817031][0.706055,-0.0681097,0.704874][0.0535411,0.49192,0][0.710001,-0.3375,0.817031][0.706055,-0.0681097,0.704874][0.0535411,0.49192,0][0.9225,-0.337501,0.499531][0.922181,-0.0681315,0.38071][0.01,0.49192,0][0.902681,-0.162305,0.491098][0.903357,0.207976,0.375089][0.014061,0.456023,0][0.532501,0.4125,0.639531][0.611723,0.497022,0.615438][0.0899107,0.338246,0][0.294376,0.4125,0.798906][0.329317,0.496814,0.802948][0.138702,0.338246,0][0.330406,0.216211,0.883589][0.349117,0.40457,0.845246][0.13132,0.378465,0][0.330406,0.216211,0.883589][0.349117,0.40457,0.845246][0.13132,0.378465,0][0.597677,0.216211,0.704707][0.646086,0.405104,0.646888][0.0765562,0.378465,0][0.532501,0.4125,0.639531][0.611723,0.497022,0.615438][0.0899107,0.338246,0][0.597677,0.216211,0.704707][0.646086,0.405104,0.646888][0.0765562,0.378465,0][0.330406,0.216211,0.883589][0.349117,0.40457,0.845246][0.13132,0.378465,0][0.361837,0.0234373,0.957461][0.358742,0.338843,0.869764][0.12488,0.417965,0][0.361837,0.0234373,0.957461][0.358742,0.338843,0.869764][0.12488,0.417965,0][0.654532,0.0234371,0.761562][0.664409,0.339299,0.665911][0.0649066,0.417965,0][0.597677,0.216211,0.704707][0.646086,0.405104,0.646888][0.0765562,0.378465,0][0.654532,0.0234371,0.761562][0.664409,0.339299,0.665911][0.0649066,0.417965,0][0.361837,0.0234373,0.957461][0.358742,0.338843,0.869764][0.12488,0.417965,0][0.384068,-0.162305,1.00971][0.372924,0.208079,0.904229][0.120324,0.456023,0][0.384068,-0.162305,1.00971][0.372924,0.208079,0.904229][0.120324,0.456023,0][0.694747,-0.162305,0.801777][0.690769,0.208342,0.69241][0.0566666,0.456023,0][0.654532,0.0234371,0.761562][0.664409,0.339299,0.665911][0.0649066,0.417965,0][0.694747,-0.162305,0.801777][0.690769,0.208342,0.69241][0.0566666,0.456023,0][0.384068,-0.162305,1.00971][0.372924,0.208079,0.904229][0.120324,0.456023,0][0.392501,-0.3375,1.02953][0.38227,-0.0678884,0.921554][0.118597,0.49192,0][0.392501,-0.3375,1.02953][0.38227,-0.0678884,0.921554][0.118597,0.49192,0][0.710001,-0.3375,0.817031][0.706055,-0.0681097,0.704874][0.0535411,0.49192,0][0.694747,-0.162305,0.801777][0.690769,0.208342,0.69241][0.0566666,0.456023,0][0.294376,0.4125,0.798906][0.329317,0.496814,0.802948][0.138702,0.338246,0][9.53086e-007,0.4125,0.857031][-0.00264142,0.496692,0.867923][0.19902,0.338246,0][9.02014e-007,0.216211,0.948828][-0.000562258,0.403725,0.91488][0.19902,0.378465,0][9.02014e-007,0.216211,0.948828][-0.000562258,0.403725,0.91488][0.19902,0.378465,0][0.330406,0.216211,0.883589][0.349117,0.40457,0.845246][0.13132,0.378465,0][0.294376,0.4125,0.798906][0.329317,0.496814,0.802948][0.138702,0.338246,0][0.330406,0.216211,0.883589][0.349117,0.40457,0.845246][0.13132,0.378465,0][9.02014e-007,0.216211,0.948828][-0.000562258,0.403725,0.91488][0.19902,0.378465,0][8.46933e-007,0.0234374,1.02891][-0.00105128,0.33808,0.941117][0.19902,0.417965,0][8.46933e-007,0.0234374,1.02891][-0.00105128,0.33808,0.941117][0.19902,0.417965,0][0.361837,0.0234373,0.957461][0.358742,0.338843,0.869764][0.12488,0.417965,0][0.330406,0.216211,0.883589][0.349117,0.40457,0.845246][0.13132,0.378465,0][0.361837,0.0234373,0.957461][0.358742,0.338843,0.869764][0.12488,0.417965,0][8.46933e-007,0.0234374,1.02891][-0.00105128,0.33808,0.941117][0.19902,0.417965,0][7.83833e-007,-0.162305,1.08555][-0.00114769,0.207541,0.978226][0.19902,0.456023,0][7.83833e-007,-0.162305,1.08555][-0.00114769,0.207541,0.978226][0.19902,0.456023,0][0.384068,-0.162305,1.00971][0.372924,0.208079,0.904229][0.120324,0.456023,0][0.361837,0.0234373,0.957461][0.358742,0.338843,0.869764][0.12488,0.417965,0][0.384068,-0.162305,1.00971][0.372924,0.208079,0.904229][0.120324,0.456023,0][7.83833e-007,-0.162305,1.08555][-0.00114769,0.207541,0.978226][0.19902,0.456023,0][7.08705e-007,-0.3375,1.10703][0.000826376,-0.0678512,0.997695][0.19902,0.49192,0][7.08705e-007,-0.3375,1.10703][0.000826376,-0.0678512,0.997695][0.19902,0.49192,0][0.392501,-0.3375,1.02953][0.38227,-0.0678884,0.921554][0.118597,0.49192,0][0.384068,-0.162305,1.00971][0.372924,0.208079,0.904229][0.120324,0.456023,0][9.53086e-007,0.4125,0.857031][-0.00264142,0.496692,0.867923][0.19902,0.338246,0][-0.294374,0.4125,0.798906][-0.334021,0.497848,0.800361][0.259337,0.338246,0][-0.330404,0.216211,0.883589][-0.350176,0.404552,0.844816][0.266719,0.378465,0][-0.330404,0.216211,0.883589][-0.350176,0.404552,0.844816][0.266719,0.378465,0][9.02014e-007,0.216211,0.948828][-0.000562258,0.403725,0.91488][0.19902,0.378465,0][9.53086e-007,0.4125,0.857031][-0.00264142,0.496692,0.867923][0.19902,0.338246,0][9.02014e-007,0.216211,0.948828][-0.000562258,0.403725,0.91488][0.19902,0.378465,0][-0.330404,0.216211,0.883589][-0.350176,0.404552,0.844816][0.266719,0.378465,0][-0.361835,0.0234376,0.957461][-0.360723,0.338796,0.868962][0.273159,0.417965,0][-0.361835,0.0234376,0.957461][-0.360723,0.338796,0.868962][0.273159,0.417965,0][8.46933e-007,0.0234374,1.02891][-0.00105128,0.33808,0.941117][0.19902,0.417965,0][9.02014e-007,0.216211,0.948828][-0.000562258,0.403725,0.91488][0.19902,0.378465,0][8.46933e-007,0.0234374,1.02891][-0.00105128,0.33808,0.941117][0.19902,0.417965,0][-0.361835,0.0234376,0.957461][-0.360723,0.338796,0.868962][0.273159,0.417965,0][-0.384067,-0.162305,1.00971][-0.375089,0.207976,0.903357][0.277715,0.456023,0][-0.384067,-0.162305,1.00971][-0.375089,0.207976,0.903357][0.277715,0.456023,0][7.83833e-007,-0.162305,1.08555][-0.00114769,0.207541,0.978226][0.19902,0.456023,0][8.46933e-007,0.0234374,1.02891][-0.00105128,0.33808,0.941117][0.19902,0.417965,0][7.83833e-007,-0.162305,1.08555][-0.00114769,0.207541,0.978226][0.19902,0.456023,0][-0.384067,-0.162305,1.00971][-0.375089,0.207976,0.903357][0.277715,0.456023,0][-0.392499,-0.3375,1.02953][-0.38071,-0.0681309,0.922181][0.279442,0.49192,0][-0.392499,-0.3375,1.02953][-0.38071,-0.0681309,0.922181][0.279442,0.49192,0][7.08705e-007,-0.3375,1.10703][0.000826376,-0.0678512,0.997695][0.19902,0.49192,0][7.83833e-007,-0.162305,1.08555][-0.00114769,0.207541,0.978226][0.19902,0.456023,0][-0.294374,0.4125,0.798906][-0.334021,0.497848,0.800361][0.259337,0.338246,0][-0.532499,0.4125,0.639532][-0.614869,0.498465,0.611121][0.308128,0.338246,0][-0.597675,0.216211,0.704707][-0.646888,0.405105,0.646085][0.321483,0.378465,0][-0.597675,0.216211,0.704707][-0.646888,0.405105,0.646085][0.321483,0.378465,0][-0.330404,0.216211,0.883589][-0.350176,0.404552,0.844816][0.266719,0.378465,0][-0.294374,0.4125,0.798906][-0.334021,0.497848,0.800361][0.259337,0.338246,0][-0.330404,0.216211,0.883589][-0.350176,0.404552,0.844816][0.266719,0.378465,0][-0.597675,0.216211,0.704707][-0.646888,0.405105,0.646085][0.321483,0.378465,0][-0.654531,0.0234377,0.761563][-0.66591,0.3393,0.664409][0.333132,0.417965,0][-0.654531,0.0234377,0.761563][-0.66591,0.3393,0.664409][0.333132,0.417965,0][-0.361835,0.0234376,0.957461][-0.360723,0.338796,0.868962][0.273159,0.417965,0][-0.330404,0.216211,0.883589][-0.350176,0.404552,0.844816][0.266719,0.378465,0][-0.361835,0.0234376,0.957461][-0.360723,0.338796,0.868962][0.273159,0.417965,0][-0.654531,0.0234377,0.761563][-0.66591,0.3393,0.664409][0.333132,0.417965,0][-0.694745,-0.162304,0.801778][-0.69241,0.208342,0.690769][0.341372,0.456023,0][-0.694745,-0.162304,0.801778][-0.69241,0.208342,0.690769][0.341372,0.456023,0][-0.384067,-0.162305,1.00971][-0.375089,0.207976,0.903357][0.277715,0.456023,0][-0.361835,0.0234376,0.957461][-0.360723,0.338796,0.868962][0.273159,0.417965,0][-0.384067,-0.162305,1.00971][-0.375089,0.207976,0.903357][0.277715,0.456023,0][-0.694745,-0.162304,0.801778][-0.69241,0.208342,0.690769][0.341372,0.456023,0][-0.709999,-0.3375,0.817032][-0.704874,-0.068109,0.706055][0.344498,0.49192,0][-0.709999,-0.3375,0.817032][-0.704874,-0.068109,0.706055][0.344498,0.49192,0][-0.392499,-0.3375,1.02953][-0.38071,-0.0681309,0.922181][0.279442,0.49192,0][-0.384067,-0.162305,1.00971][-0.375089,0.207976,0.903357][0.277715,0.456023,0][-0.532499,0.4125,0.639532][-0.614869,0.498465,0.611121][0.308128,0.338246,0][-0.691874,0.4125,0.401407][-0.802376,0.497896,0.329078][0.340784,0.338246,0][-0.776557,0.216211,0.437437][-0.845246,0.40457,0.349117][0.358136,0.378465,0][-0.776557,0.216211,0.437437][-0.845246,0.40457,0.349117][0.358136,0.378465,0][-0.597675,0.216211,0.704707][-0.646888,0.405105,0.646085][0.321483,0.378465,0][-0.532499,0.4125,0.639532][-0.614869,0.498465,0.611121][0.308128,0.338246,0][-0.597675,0.216211,0.704707][-0.646888,0.405105,0.646085][0.321483,0.378465,0][-0.776557,0.216211,0.437437][-0.845246,0.40457,0.349117][0.358136,0.378465,0][-0.850429,0.0234379,0.468868][-0.869764,0.338843,0.358742][0.373272,0.417965,0][-0.850429,0.0234379,0.468868][-0.869764,0.338843,0.358742][0.373272,0.417965,0][-0.654531,0.0234377,0.761563][-0.66591,0.3393,0.664409][0.333132,0.417965,0][-0.597675,0.216211,0.704707][-0.646888,0.405105,0.646085][0.321483,0.378465,0][-0.654531,0.0234377,0.761563][-0.66591,0.3393,0.664409][0.333132,0.417965,0][-0.850429,0.0234379,0.468868][-0.869764,0.338843,0.358742][0.373272,0.417965,0][-0.90268,-0.162304,0.491099][-0.904229,0.208079,0.372924][0.383978,0.456023,0][-0.90268,-0.162304,0.491099][-0.904229,0.208079,0.372924][0.383978,0.456023,0][-0.694745,-0.162304,0.801778][-0.69241,0.208342,0.690769][0.341372,0.456023,0][-0.654531,0.0234377,0.761563][-0.66591,0.3393,0.664409][0.333132,0.417965,0][-0.694745,-0.162304,0.801778][-0.69241,0.208342,0.690769][0.341372,0.456023,0][-0.90268,-0.162304,0.491099][-0.904229,0.208079,0.372924][0.383978,0.456023,0][-0.9225,-0.3375,0.499532][-0.921554,-0.0678878,0.38227][0.388039,0.49192,0][-0.9225,-0.3375,0.499532][-0.921554,-0.0678878,0.38227][0.388039,0.49192,0][-0.709999,-0.3375,0.817032][-0.704874,-0.068109,0.706055][0.344498,0.49192,0][-0.694745,-0.162304,0.801778][-0.69241,0.208342,0.690769][0.341372,0.456023,0][-0.691874,0.4125,0.401407][-0.802376,0.497896,0.329078][0.295415,0.607802,0][-0.749999,0.4125,0.107032][-0.867772,0.496955,-0.00262815][0.355732,0.607802,0][-0.841796,0.216211,0.107032][-0.91488,0.403725,-0.000562422][0.355732,0.648021,0][-0.841796,0.216211,0.107032][-0.91488,0.403725,-0.000562422][0.355732,0.648021,0][-0.776557,0.216211,0.437437][-0.845246,0.40457,0.349117][0.288032,0.648021,0][-0.691874,0.4125,0.401407][-0.802376,0.497896,0.329078][0.295415,0.607802,0][-0.776557,0.216211,0.437437][-0.845246,0.40457,0.349117][0.288032,0.648021,0][-0.841796,0.216211,0.107032][-0.91488,0.403725,-0.000562422][0.355732,0.648021,0][-0.921875,0.0234379,0.107032][-0.941117,0.338081,-0.00105146][0.355732,0.687521,0][-0.921875,0.0234379,0.107032][-0.941117,0.338081,-0.00105146][0.355732,0.687521,0][-0.850429,0.0234379,0.468868][-0.869764,0.338843,0.358742][0.281592,0.687521,0][-0.776557,0.216211,0.437437][-0.845246,0.40457,0.349117][0.288032,0.648021,0][-0.850429,0.0234379,0.468868][-0.869764,0.338843,0.358742][0.281592,0.687521,0][-0.921875,0.0234379,0.107032][-0.941117,0.338081,-0.00105146][0.355732,0.687521,0][-0.978515,-0.162304,0.107032][-0.978226,0.207542,-0.00114785][0.355732,0.725579,0][-0.978515,-0.162304,0.107032][-0.978226,0.207542,-0.00114785][0.355732,0.725579,0][-0.90268,-0.162304,0.491099][-0.904229,0.208079,0.372924][0.277037,0.725579,0][-0.850429,0.0234379,0.468868][-0.869764,0.338843,0.358742][0.281592,0.687521,0][-0.90268,-0.162304,0.491099][-0.904229,0.208079,0.372924][0.277037,0.725579,0][-0.978515,-0.162304,0.107032][-0.978226,0.207542,-0.00114785][0.355732,0.725579,0][-1,-0.3375,0.107032][-0.997695,-0.0678509,0.000826494][0.355732,0.761476,0][-1,-0.3375,0.107032][-0.997695,-0.0678509,0.000826494][0.355732,0.761476,0][-0.9225,-0.3375,0.499532][-0.921554,-0.0678878,0.38227][0.275309,0.761476,0][-0.90268,-0.162304,0.491099][-0.904229,0.208079,0.372924][0.277037,0.725579,0][-0.749999,0.4125,0.107032][-0.867772,0.496955,-0.00262815][0.355732,0.607802,0][-0.691875,0.4125,-0.187343][-0.800361,0.497848,-0.334021][0.416049,0.607802,0][-0.776557,0.216211,-0.223374][-0.844816,0.404552,-0.350176][0.423431,0.648021,0][-0.776557,0.216211,-0.223374][-0.844816,0.404552,-0.350176][0.423431,0.648021,0][-0.841796,0.216211,0.107032][-0.91488,0.403725,-0.000562422][0.355732,0.648021,0][-0.749999,0.4125,0.107032][-0.867772,0.496955,-0.00262815][0.355732,0.607802,0][-0.841796,0.216211,0.107032][-0.91488,0.403725,-0.000562422][0.355732,0.648021,0][-0.776557,0.216211,-0.223374][-0.844816,0.404552,-0.350176][0.423431,0.648021,0][-0.850429,0.0234379,-0.254804][-0.868962,0.338796,-0.360724][0.429872,0.687521,0][-0.850429,0.0234379,-0.254804][-0.868962,0.338796,-0.360724][0.429872,0.687521,0][-0.921875,0.0234379,0.107032][-0.941117,0.338081,-0.00105146][0.355732,0.687521,0][-0.841796,0.216211,0.107032][-0.91488,0.403725,-0.000562422][0.355732,0.648021,0][-0.921875,0.0234379,0.107032][-0.941117,0.338081,-0.00105146][0.355732,0.687521,0][-0.850429,0.0234379,-0.254804][-0.868962,0.338796,-0.360724][0.429872,0.687521,0][-0.902681,-0.162304,-0.277036][-0.903357,0.207977,-0.375089][0.434427,0.725579,0][-0.902681,-0.162304,-0.277036][-0.903357,0.207977,-0.375089][0.434427,0.725579,0][-0.978515,-0.162304,0.107032][-0.978226,0.207542,-0.00114785][0.355732,0.725579,0][-0.921875,0.0234379,0.107032][-0.941117,0.338081,-0.00105146][0.355732,0.687521,0][-0.978515,-0.162304,0.107032][-0.978226,0.207542,-0.00114785][0.355732,0.725579,0][-0.902681,-0.162304,-0.277036][-0.903357,0.207977,-0.375089][0.434427,0.725579,0][-0.9225,-0.3375,-0.285468][-0.922181,-0.0681305,-0.38071][0.436155,0.761476,0][-0.9225,-0.3375,-0.285468][-0.922181,-0.0681305,-0.38071][0.436155,0.761476,0][-1,-0.3375,0.107032][-0.997695,-0.0678509,0.000826494][0.355732,0.761476,0][-0.978515,-0.162304,0.107032][-0.978226,0.207542,-0.00114785][0.355732,0.725579,0][-0.691875,0.4125,-0.187343][-0.800361,0.497848,-0.334021][0.467098,0.0200849,0][-0.5325,0.4125,-0.425468][-0.611121,0.498465,-0.614869][0.499754,0.0200849,0][-0.597676,0.216211,-0.490644][-0.646085,0.405105,-0.646888][0.486399,0.0603043,0][-0.597676,0.216211,-0.490644][-0.646085,0.405105,-0.646888][0.486399,0.0603043,0][-0.776557,0.216211,-0.223374][-0.844816,0.404552,-0.350176][0.449747,0.0603043,0][-0.691875,0.4125,-0.187343][-0.800361,0.497848,-0.334021][0.467098,0.0200849,0][-0.776557,0.216211,-0.223374][-0.844816,0.404552,-0.350176][0.449747,0.0603043,0][-0.597676,0.216211,-0.490644][-0.646085,0.405105,-0.646888][0.486399,0.0603043,0][-0.654531,0.0234377,-0.5475][-0.664409,0.3393,-0.66591][0.47475,0.0998035,0][-0.654531,0.0234377,-0.5475][-0.664409,0.3393,-0.66591][0.47475,0.0998035,0][-0.850429,0.0234379,-0.254804][-0.868962,0.338796,-0.360724][0.43461,0.0998035,0][-0.776557,0.216211,-0.223374][-0.844816,0.404552,-0.350176][0.449747,0.0603043,0][-0.850429,0.0234379,-0.254804][-0.868962,0.338796,-0.360724][0.43461,0.0998035,0][-0.654531,0.0234377,-0.5475][-0.664409,0.3393,-0.66591][0.47475,0.0998035,0][-0.694746,-0.162304,-0.587714][-0.690769,0.208342,-0.69241][0.46651,0.137862,0][-0.694746,-0.162304,-0.587714][-0.690769,0.208342,-0.69241][0.46651,0.137862,0][-0.902681,-0.162304,-0.277036][-0.903357,0.207977,-0.375089][0.423904,0.137862,0][-0.850429,0.0234379,-0.254804][-0.868962,0.338796,-0.360724][0.43461,0.0998035,0][-0.902681,-0.162304,-0.277036][-0.903357,0.207977,-0.375089][0.423904,0.137862,0][-0.694746,-0.162304,-0.587714][-0.690769,0.208342,-0.69241][0.46651,0.137862,0][-0.71,-0.3375,-0.602968][-0.706055,-0.068109,-0.704874][0.463384,0.173759,0][-0.71,-0.3375,-0.602968][-0.706055,-0.068109,-0.704874][0.463384,0.173759,0][-0.9225,-0.3375,-0.285468][-0.922181,-0.0681305,-0.38071][0.419843,0.173759,0][-0.902681,-0.162304,-0.277036][-0.903357,0.207977,-0.375089][0.423904,0.137862,0][-0.5325,0.4125,-0.425468][-0.611121,0.498465,-0.614869][0.499754,0.0200849,0][-0.294375,0.4125,-0.584844][-0.329078,0.497896,-0.802376][0.548546,0.0200849,0][-0.330405,0.216211,-0.669526][-0.349117,0.40457,-0.845246][0.541163,0.0603043,0][-0.330405,0.216211,-0.669526][-0.349117,0.40457,-0.845246][0.541163,0.0603043,0][-0.597676,0.216211,-0.490644][-0.646085,0.405105,-0.646888][0.486399,0.0603043,0][-0.5325,0.4125,-0.425468][-0.611121,0.498465,-0.614869][0.499754,0.0200849,0][-0.597676,0.216211,-0.490644][-0.646085,0.405105,-0.646888][0.486399,0.0603043,0][-0.330405,0.216211,-0.669526][-0.349117,0.40457,-0.845246][0.541163,0.0603043,0][-0.361836,0.0234376,-0.743398][-0.358742,0.338843,-0.869764][0.534723,0.0998035,0][-0.361836,0.0234376,-0.743398][-0.358742,0.338843,-0.869764][0.534723,0.0998035,0][-0.654531,0.0234377,-0.5475][-0.664409,0.3393,-0.66591][0.47475,0.0998035,0][-0.597676,0.216211,-0.490644][-0.646085,0.405105,-0.646888][0.486399,0.0603043,0][-0.654531,0.0234377,-0.5475][-0.664409,0.3393,-0.66591][0.47475,0.0998035,0][-0.361836,0.0234376,-0.743398][-0.358742,0.338843,-0.869764][0.534723,0.0998035,0][-0.384068,-0.162305,-0.795649][-0.372924,0.208079,-0.904229][0.530168,0.137862,0][-0.384068,-0.162305,-0.795649][-0.372924,0.208079,-0.904229][0.530168,0.137862,0][-0.694746,-0.162304,-0.587714][-0.690769,0.208342,-0.69241][0.46651,0.137862,0][-0.654531,0.0234377,-0.5475][-0.664409,0.3393,-0.66591][0.47475,0.0998035,0][-0.694746,-0.162304,-0.587714][-0.690769,0.208342,-0.69241][0.46651,0.137862,0][-0.384068,-0.162305,-0.795649][-0.372924,0.208079,-0.904229][0.530168,0.137862,0][-0.3925,-0.3375,-0.815468][-0.38227,-0.0678882,-0.921553][0.52844,0.173759,0][-0.3925,-0.3375,-0.815468][-0.38227,-0.0678882,-0.921553][0.52844,0.173759,0][-0.71,-0.3375,-0.602968][-0.706055,-0.068109,-0.704874][0.463384,0.173759,0][-0.694746,-0.162304,-0.587714][-0.690769,0.208342,-0.69241][0.46651,0.137862,0][-0.294375,0.4125,-0.584844][-0.329078,0.497896,-0.802376][0.548546,0.0200849,0][2.19943e-007,0.4125,-0.642969][0.00262834,0.496955,-0.867772][0.608863,0.0200849,0][0,0.216211,-0.734766][0.000562586,0.403725,-0.91488][0.608863,0.0603043,0][0,0.216211,-0.734766][0.000562586,0.403725,-0.91488][0.608863,0.0603043,0][-0.330405,0.216211,-0.669526][-0.349117,0.40457,-0.845246][0.541163,0.0603043,0][-0.294375,0.4125,-0.584844][-0.329078,0.497896,-0.802376][0.548546,0.0200849,0][-0.330405,0.216211,-0.669526][-0.349117,0.40457,-0.845246][0.541163,0.0603043,0][0,0.216211,-0.734766][0.000562586,0.403725,-0.91488][0.608863,0.0603043,0][0,0.0234374,-0.814844][0.00105162,0.33808,-0.941117][0.608863,0.0998035,0][0,0.0234374,-0.814844][0.00105162,0.33808,-0.941117][0.608863,0.0998035,0][-0.361836,0.0234376,-0.743398][-0.358742,0.338843,-0.869764][0.534723,0.0998035,0][-0.330405,0.216211,-0.669526][-0.349117,0.40457,-0.845246][0.541163,0.0603043,0][-0.361836,0.0234376,-0.743398][-0.358742,0.338843,-0.869764][0.534723,0.0998035,0][0,0.0234374,-0.814844][0.00105162,0.33808,-0.941117][0.608863,0.0998035,0][-1.7269e-007,-0.162305,-0.871484][0.00114796,0.207541,-0.978226][0.608863,0.137862,0][-1.7269e-007,-0.162305,-0.871484][0.00114796,0.207541,-0.978226][0.608863,0.137862,0][-0.384068,-0.162305,-0.795649][-0.372924,0.208079,-0.904229][0.530168,0.137862,0][-0.361836,0.0234376,-0.743398][-0.358742,0.338843,-0.869764][0.534723,0.0998035,0][-0.384068,-0.162305,-0.795649][-0.372924,0.208079,-0.904229][0.530168,0.137862,0][-1.7269e-007,-0.162305,-0.871484][0.00114796,0.207541,-0.978226][0.608863,0.137862,0][-2.68819e-007,-0.3375,-0.892969][-0.000826517,-0.0678514,-0.997695][0.608863,0.173759,0][-2.68819e-007,-0.3375,-0.892969][-0.000826517,-0.0678514,-0.997695][0.608863,0.173759,0][-0.3925,-0.3375,-0.815468][-0.38227,-0.0678882,-0.921553][0.52844,0.173759,0][-0.384068,-0.162305,-0.795649][-0.372924,0.208079,-0.904229][0.530168,0.137862,0][-2.68819e-007,-0.3375,-0.892969][-0.000826517,-0.0678514,-0.997695][0.608863,0.173759,0][0.3925,-0.3375,-0.815469][0.38071,-0.0681312,-0.922181][0.689286,0.173759,0][0.377168,-0.485742,-0.779434][0.336541,-0.446624,-0.829015][0.686144,0.204134,0][0.377168,-0.485742,-0.779434][0.336541,-0.446624,-0.829015][0.686144,0.204134,0][-3.22182e-007,-0.485742,-0.853906][-0.00587768,-0.445725,-0.895151][0.608863,0.204134,0][-2.68819e-007,-0.3375,-0.892969][-0.000826517,-0.0678514,-0.997695][0.608863,0.173759,0][-3.22182e-007,-0.485742,-0.853906][-0.00587768,-0.445725,-0.895151][0.608863,0.204134,0][0.377168,-0.485742,-0.779434][0.336541,-0.446624,-0.829015][0.686144,0.204134,0][0.343437,-0.595313,-0.700156][0.272365,-0.690737,-0.66985][0.679233,0.226585,0][0.343437,-0.595313,-0.700156][0.272365,-0.690737,-0.66985][0.679233,0.226585,0][-3.33733e-007,-0.595313,-0.767969][-0.00428624,-0.689854,-0.723936][0.608863,0.226585,0][-3.22182e-007,-0.485742,-0.853906][-0.00587768,-0.445725,-0.895151][0.608863,0.204134,0][-3.33733e-007,-0.595313,-0.767969][-0.00428624,-0.689854,-0.723936][0.608863,0.226585,0][0.343437,-0.595313,-0.700156][0.272365,-0.690737,-0.66985][0.679233,0.226585,0][0.309707,-0.669727,-0.620879][0.26885,-0.717289,-0.642819][0.672321,0.241832,0][0.309707,-0.669727,-0.620879][0.26885,-0.717289,-0.642819][0.672321,0.241832,0][-3.28101e-007,-0.669727,-0.682031][0.00271075,-0.716431,-0.697653][0.608863,0.241832,0][-3.33733e-007,-0.595313,-0.767969][-0.00428624,-0.689854,-0.723936][0.608863,0.226585,0][-3.28101e-007,-0.669727,-0.682031][0.00271075,-0.716431,-0.697653][0.608863,0.241832,0][0.309707,-0.669727,-0.620879][0.26885,-0.717289,-0.642819][0.672321,0.241832,0][0.294375,-0.7125,-0.584844][0.308229,-0.603413,-0.735451][0.66918,0.250596,0][0.294375,-0.7125,-0.584844][0.308229,-0.603413,-0.735451][0.66918,0.250596,0][-3.29914e-007,-0.7125,-0.642969][0.00363247,-0.60249,-0.798118][0.608863,0.250596,0][-3.28101e-007,-0.669727,-0.682031][0.00271075,-0.716431,-0.697653][0.608863,0.241832,0][0.3925,-0.3375,-0.815469][0.38071,-0.0681312,-0.922181][0.689286,0.173759,0][0.71,-0.3375,-0.602969][0.704874,-0.0681097,-0.706055][0.754341,0.173759,0][0.682265,-0.485743,-0.575235][0.6283,-0.447071,-0.636684][0.748658,0.204134,0][0.682265,-0.485743,-0.575235][0.6283,-0.447071,-0.636684][0.748658,0.204134,0][0.377168,-0.485742,-0.779434][0.336541,-0.446624,-0.829015][0.686144,0.204134,0][0.3925,-0.3375,-0.815469][0.38071,-0.0681312,-0.922181][0.689286,0.173759,0][0.377168,-0.485742,-0.779434][0.336541,-0.446624,-0.829015][0.686144,0.204134,0][0.682265,-0.485743,-0.575235][0.6283,-0.447071,-0.636684][0.748658,0.204134,0][0.62125,-0.595313,-0.514219][0.507874,-0.691303,-0.513969][0.736156,0.226585,0][0.62125,-0.595313,-0.514219][0.507874,-0.691303,-0.513969][0.736156,0.226585,0][0.343437,-0.595313,-0.700156][0.272365,-0.690737,-0.66985][0.679233,0.226585,0][0.377168,-0.485742,-0.779434][0.336541,-0.446624,-0.829015][0.686144,0.204134,0][0.343437,-0.595313,-0.700156][0.272365,-0.690737,-0.66985][0.679233,0.226585,0][0.62125,-0.595313,-0.514219][0.507874,-0.691303,-0.513969][0.736156,0.226585,0][0.560234,-0.669727,-0.453203][0.494214,-0.717844,-0.49036][0.723654,0.241832,0][0.560234,-0.669727,-0.453203][0.494214,-0.717844,-0.49036][0.723654,0.241832,0][0.309707,-0.669727,-0.620879][0.26885,-0.717289,-0.642819][0.672321,0.241832,0][0.343437,-0.595313,-0.700156][0.272365,-0.690737,-0.66985][0.679233,0.226585,0][0.309707,-0.669727,-0.620879][0.26885,-0.717289,-0.642819][0.672321,0.241832,0][0.560234,-0.669727,-0.453203][0.494214,-0.717844,-0.49036][0.723654,0.241832,0][0.5325,-0.7125,-0.425469][0.566117,-0.604031,-0.560944][0.717972,0.250596,0][0.5325,-0.7125,-0.425469][0.566117,-0.604031,-0.560944][0.717972,0.250596,0][0.294375,-0.7125,-0.584844][0.308229,-0.603413,-0.735451][0.66918,0.250596,0][0.309707,-0.669727,-0.620879][0.26885,-0.717289,-0.642819][0.672321,0.241832,0][0.71,-0.3375,-0.602969][0.704874,-0.0681097,-0.706055][0.754341,0.173759,0][0.9225,-0.3375,-0.285469][0.921553,-0.0678888,-0.38227][0.797882,0.173759,0][0.886465,-0.485743,-0.270137][0.824516,-0.446481,-0.347602][0.790499,0.204134,0][0.886465,-0.485743,-0.270137][0.824516,-0.446481,-0.347602][0.790499,0.204134,0][0.682265,-0.485743,-0.575235][0.6283,-0.447071,-0.636684][0.748658,0.204134,0][0.71,-0.3375,-0.602969][0.704874,-0.0681097,-0.706055][0.754341,0.173759,0][0.682265,-0.485743,-0.575235][0.6283,-0.447071,-0.636684][0.748658,0.204134,0][0.886465,-0.485743,-0.270137][0.824516,-0.446481,-0.347602][0.790499,0.204134,0][0.807187,-0.595313,-0.236407][0.666532,-0.690732,-0.2804][0.774255,0.226585,0][0.807187,-0.595313,-0.236407][0.666532,-0.690732,-0.2804][0.774255,0.226585,0][0.62125,-0.595313,-0.514219][0.507874,-0.691303,-0.513969][0.736156,0.226585,0][0.682265,-0.485743,-0.575235][0.6283,-0.447071,-0.636684][0.748658,0.204134,0][0.62125,-0.595313,-0.514219][0.507874,-0.691303,-0.513969][0.736156,0.226585,0][0.807187,-0.595313,-0.236407][0.666532,-0.690732,-0.2804][0.774255,0.226585,0][0.72791,-0.669727,-0.202676][0.644921,-0.717288,-0.263771][0.758011,0.241832,0][0.72791,-0.669727,-0.202676][0.644921,-0.717288,-0.263771][0.758011,0.241832,0][0.560234,-0.669727,-0.453203][0.494214,-0.717844,-0.49036][0.723654,0.241832,0][0.62125,-0.595313,-0.514219][0.507874,-0.691303,-0.513969][0.736156,0.226585,0][0.560234,-0.669727,-0.453203][0.494214,-0.717844,-0.49036][0.723654,0.241832,0][0.72791,-0.669727,-0.202676][0.644921,-0.717288,-0.263771][0.758011,0.241832,0][0.691875,-0.7125,-0.187344][0.738249,-0.603441,-0.301408][0.750627,0.250596,0][0.691875,-0.7125,-0.187344][0.738249,-0.603441,-0.301408][0.750627,0.250596,0][0.5325,-0.7125,-0.425469][0.566117,-0.604031,-0.560944][0.717972,0.250596,0][0.560234,-0.669727,-0.453203][0.494214,-0.717844,-0.49036][0.723654,0.241832,0][0.9225,-0.3375,-0.285469][0.921553,-0.0678888,-0.38227][0.436348,0.49192,0][1,-0.337501,0.107031][0.997695,-0.0678519,-0.000826502][0.516771,0.49192,0][0.960938,-0.485743,0.107031][0.89515,-0.445726,-0.00587747][0.516771,0.522295,0][0.960938,-0.485743,0.107031][0.89515,-0.445726,-0.00587747][0.516771,0.522295,0][0.886465,-0.485743,-0.270137][0.824516,-0.446481,-0.347602][0.439489,0.522295,0][0.9225,-0.3375,-0.285469][0.921553,-0.0678888,-0.38227][0.436348,0.49192,0][0.886465,-0.485743,-0.270137][0.824516,-0.446481,-0.347602][0.396324,0.116293,0][0.960938,-0.485743,0.107031][0.89515,-0.445726,-0.00587747][0.396527,0.195066,0][0.875,-0.595313,0.107031][0.723936,-0.689854,-0.00428595][0.379243,0.1917,0][0.875,-0.595313,0.107031][0.723936,-0.689854,-0.00428595][0.379243,0.1917,0][0.807187,-0.595313,-0.236407][0.666532,-0.690732,-0.2804][0.379058,0.119971,0][0.886465,-0.485743,-0.270137][0.824516,-0.446481,-0.347602][0.396324,0.116293,0][0.807187,-0.595313,-0.236407][0.666532,-0.690732,-0.2804][0.379058,0.119971,0][0.875,-0.595313,0.107031][0.723936,-0.689854,-0.00428595][0.379243,0.1917,0][0.789063,-0.669727,0.107031][0.697653,-0.716431,0.00271109][0.361959,0.188333,0][0.789063,-0.669727,0.107031][0.697653,-0.716431,0.00271109][0.361959,0.188333,0][0.72791,-0.669727,-0.202676][0.644921,-0.717288,-0.263771][0.361793,0.123649,0][0.807187,-0.595313,-0.236407][0.666532,-0.690732,-0.2804][0.379058,0.119971,0][0.72791,-0.669727,-0.202676][0.644921,-0.717288,-0.263771][0.361793,0.123649,0][0.789063,-0.669727,0.107031][0.697653,-0.716431,0.00271109][0.361959,0.188333,0][0.75,-0.7125,0.107031][0.798118,-0.602491,0.00363278][0.354103,0.186803,0][0.75,-0.7125,0.107031][0.798118,-0.602491,0.00363278][0.354103,0.186803,0][0.691875,-0.7125,-0.187344][0.738249,-0.603441,-0.301408][0.353945,0.125321,0][0.72791,-0.669727,-0.202676][0.644921,-0.717288,-0.263771][0.361793,0.123649,0][1,-0.337501,0.107031][0.997695,-0.0678519,-0.000826502][0.516771,0.49192,0][0.9225,-0.337501,0.499531][0.922181,-0.0681315,0.38071][0.597194,0.49192,0][0.886465,-0.485743,0.484199][0.829015,-0.446625,0.336542][0.594052,0.522295,0][0.886465,-0.485743,0.484199][0.829015,-0.446625,0.336542][0.594052,0.522295,0][0.960938,-0.485743,0.107031][0.89515,-0.445726,-0.00587747][0.516771,0.522295,0][1,-0.337501,0.107031][0.997695,-0.0678519,-0.000826502][0.516771,0.49192,0][0.960938,-0.485743,0.107031][0.89515,-0.445726,-0.00587747][0.396527,0.195066,0][0.886465,-0.485743,0.484199][0.829015,-0.446625,0.336542][0.366773,0.268005,0][0.807188,-0.595313,0.450468][0.66985,-0.690737,0.272366][0.352151,0.258115,0][0.807188,-0.595313,0.450468][0.66985,-0.690737,0.272366][0.352151,0.258115,0][0.875,-0.595313,0.107031][0.723936,-0.689854,-0.00428595][0.379243,0.1917,0][0.960938,-0.485743,0.107031][0.89515,-0.445726,-0.00587747][0.396527,0.195066,0][0.875,-0.595313,0.107031][0.723936,-0.689854,-0.00428595][0.379243,0.1917,0][0.807188,-0.595313,0.450468][0.66985,-0.690737,0.272366][0.352151,0.258115,0][0.72791,-0.669727,0.416738][0.642819,-0.717289,0.26885][0.337528,0.248226,0][0.72791,-0.669727,0.416738][0.642819,-0.717289,0.26885][0.337528,0.248226,0][0.789063,-0.669727,0.107031][0.697653,-0.716431,0.00271109][0.361959,0.188333,0][0.875,-0.595313,0.107031][0.723936,-0.689854,-0.00428595][0.379243,0.1917,0][0.789063,-0.669727,0.107031][0.697653,-0.716431,0.00271109][0.361959,0.188333,0][0.72791,-0.669727,0.416738][0.642819,-0.717289,0.26885][0.337528,0.248226,0][0.691875,-0.7125,0.401406][0.73545,-0.603413,0.308229][0.330881,0.24373,0][0.691875,-0.7125,0.401406][0.73545,-0.603413,0.308229][0.330881,0.24373,0][0.75,-0.7125,0.107031][0.798118,-0.602491,0.00363278][0.354103,0.186803,0][0.789063,-0.669727,0.107031][0.697653,-0.716431,0.00271109][0.361959,0.188333,0][0.9225,-0.337501,0.499531][0.922181,-0.0681315,0.38071][0.01,0.49192,0][0.710001,-0.3375,0.817031][0.706055,-0.0681097,0.704874][0.0535411,0.49192,0][0.682266,-0.485743,0.789297][0.636684,-0.447071,0.6283][0.0592238,0.522295,0][0.682266,-0.485743,0.789297][0.636684,-0.447071,0.6283][0.0592238,0.522295,0][0.886465,-0.485743,0.484199][0.829015,-0.446625,0.336542][0.0173836,0.522295,0][0.9225,-0.337501,0.499531][0.922181,-0.0681315,0.38071][0.01,0.49192,0][0.886465,-0.485743,0.484199][0.829015,-0.446625,0.336542][0.0173836,0.522295,0][0.682266,-0.485743,0.789297][0.636684,-0.447071,0.6283][0.0592238,0.522295,0][0.62125,-0.595313,0.728281][0.513969,-0.691303,0.507874][0.0717259,0.544746,0][0.62125,-0.595313,0.728281][0.513969,-0.691303,0.507874][0.0717259,0.544746,0][0.807188,-0.595313,0.450468][0.66985,-0.690737,0.272366][0.0336274,0.544746,0][0.886465,-0.485743,0.484199][0.829015,-0.446625,0.336542][0.0173836,0.522295,0][0.807188,-0.595313,0.450468][0.66985,-0.690737,0.272366][0.0336274,0.544746,0][0.62125,-0.595313,0.728281][0.513969,-0.691303,0.507874][0.0717259,0.544746,0][0.560235,-0.669727,0.667265][0.49036,-0.717844,0.494214][0.0842279,0.559993,0][0.560235,-0.669727,0.667265][0.49036,-0.717844,0.494214][0.0842279,0.559993,0][0.72791,-0.669727,0.416738][0.642819,-0.717289,0.26885][0.0498713,0.559993,0][0.807188,-0.595313,0.450468][0.66985,-0.690737,0.272366][0.0336274,0.544746,0][0.72791,-0.669727,0.416738][0.642819,-0.717289,0.26885][0.0498713,0.559993,0][0.560235,-0.669727,0.667265][0.49036,-0.717844,0.494214][0.0842279,0.559993,0][0.5325,-0.7125,0.639531][0.560944,-0.604031,0.566117][0.0899107,0.568757,0][0.5325,-0.7125,0.639531][0.560944,-0.604031,0.566117][0.0899107,0.568757,0][0.691875,-0.7125,0.401406][0.73545,-0.603413,0.308229][0.0572549,0.568757,0][0.72791,-0.669727,0.416738][0.642819,-0.717289,0.26885][0.0498713,0.559993,0][0.710001,-0.3375,0.817031][0.706055,-0.0681097,0.704874][0.0535411,0.49192,0][0.392501,-0.3375,1.02953][0.38227,-0.0678884,0.921554][0.118597,0.49192,0][0.377169,-0.485742,0.993496][0.347602,-0.446481,0.824517][0.121738,0.522295,0][0.377169,-0.485742,0.993496][0.347602,-0.446481,0.824517][0.121738,0.522295,0][0.682266,-0.485743,0.789297][0.636684,-0.447071,0.6283][0.0592238,0.522295,0][0.710001,-0.3375,0.817031][0.706055,-0.0681097,0.704874][0.0535411,0.49192,0][0.682266,-0.485743,0.789297][0.636684,-0.447071,0.6283][0.0592238,0.522295,0][0.377169,-0.485742,0.993496][0.347602,-0.446481,0.824517][0.121738,0.522295,0][0.343438,-0.595313,0.914219][0.280399,-0.690732,0.666533][0.128649,0.544746,0][0.343438,-0.595313,0.914219][0.280399,-0.690732,0.666533][0.128649,0.544746,0][0.62125,-0.595313,0.728281][0.513969,-0.691303,0.507874][0.0717259,0.544746,0][0.682266,-0.485743,0.789297][0.636684,-0.447071,0.6283][0.0592238,0.522295,0][0.62125,-0.595313,0.728281][0.513969,-0.691303,0.507874][0.0717259,0.544746,0][0.343438,-0.595313,0.914219][0.280399,-0.690732,0.666533][0.128649,0.544746,0][0.309707,-0.669727,0.834941][0.26377,-0.717287,0.644922][0.135561,0.559993,0][0.309707,-0.669727,0.834941][0.26377,-0.717287,0.644922][0.135561,0.559993,0][0.560235,-0.669727,0.667265][0.49036,-0.717844,0.494214][0.0842279,0.559993,0][0.62125,-0.595313,0.728281][0.513969,-0.691303,0.507874][0.0717259,0.544746,0][0.560235,-0.669727,0.667265][0.49036,-0.717844,0.494214][0.0842279,0.559993,0][0.309707,-0.669727,0.834941][0.26377,-0.717287,0.644922][0.135561,0.559993,0][0.294375,-0.7125,0.798906][0.301408,-0.60344,0.73825][0.138702,0.568757,0][0.294375,-0.7125,0.798906][0.301408,-0.60344,0.73825][0.138702,0.568757,0][0.5325,-0.7125,0.639531][0.560944,-0.604031,0.566117][0.0899107,0.568757,0][0.560235,-0.669727,0.667265][0.49036,-0.717844,0.494214][0.0842279,0.559993,0][0.392501,-0.3375,1.02953][0.38227,-0.0678884,0.921554][0.118597,0.49192,0][7.08705e-007,-0.3375,1.10703][0.000826376,-0.0678512,0.997695][0.19902,0.49192,0][6.17158e-007,-0.485742,1.06797][0.00587723,-0.445725,0.895151][0.19902,0.522295,0][6.17158e-007,-0.485742,1.06797][0.00587723,-0.445725,0.895151][0.19902,0.522295,0][0.377169,-0.485742,0.993496][0.347602,-0.446481,0.824517][0.121738,0.522295,0][0.392501,-0.3375,1.02953][0.38227,-0.0678884,0.921554][0.118597,0.49192,0][0.377169,-0.485742,0.993496][0.347602,-0.446481,0.824517][0.121738,0.522295,0][6.17158e-007,-0.485742,1.06797][0.00587723,-0.445725,0.895151][0.19902,0.522295,0][5.21601e-007,-0.595313,0.982031][0.00428555,-0.689854,0.723936][0.19902,0.544746,0][5.21601e-007,-0.595313,0.982031][0.00428555,-0.689854,0.723936][0.19902,0.544746,0][0.343438,-0.595313,0.914219][0.280399,-0.690732,0.666533][0.128649,0.544746,0][0.377169,-0.485742,0.993496][0.347602,-0.446481,0.824517][0.121738,0.522295,0][0.343438,-0.595313,0.914219][0.280399,-0.690732,0.666533][0.128649,0.544746,0][5.21601e-007,-0.595313,0.982031][0.00428555,-0.689854,0.723936][0.19902,0.544746,0][4.43227e-007,-0.669727,0.896094][-0.00271145,-0.716431,0.697653][0.19902,0.559993,0][4.43227e-007,-0.669727,0.896094][-0.00271145,-0.716431,0.697653][0.19902,0.559993,0][0.309707,-0.669727,0.834941][0.26377,-0.717287,0.644922][0.135561,0.559993,0][0.343438,-0.595313,0.914219][0.280399,-0.690732,0.666533][0.128649,0.544746,0][0.309707,-0.669727,0.834941][0.26377,-0.717287,0.644922][0.135561,0.559993,0][4.43227e-007,-0.669727,0.896094][-0.00271145,-0.716431,0.697653][0.19902,0.559993,0][4.03229e-007,-0.7125,0.857031][-0.00363306,-0.60249,0.798118][0.19902,0.568757,0][4.03229e-007,-0.7125,0.857031][-0.00363306,-0.60249,0.798118][0.19902,0.568757,0][0.294375,-0.7125,0.798906][0.301408,-0.60344,0.73825][0.138702,0.568757,0][0.309707,-0.669727,0.834941][0.26377,-0.717287,0.644922][0.135561,0.559993,0][7.08705e-007,-0.3375,1.10703][0.000826376,-0.0678512,0.997695][0.19902,0.49192,0][-0.392499,-0.3375,1.02953][-0.38071,-0.0681309,0.922181][0.279442,0.49192,0][-0.377167,-0.485742,0.993496][-0.336542,-0.446624,0.829015][0.276301,0.522295,0][-0.377167,-0.485742,0.993496][-0.336542,-0.446624,0.829015][0.276301,0.522295,0][6.17158e-007,-0.485742,1.06797][0.00587723,-0.445725,0.895151][0.19902,0.522295,0][7.08705e-007,-0.3375,1.10703][0.000826376,-0.0678512,0.997695][0.19902,0.49192,0][6.17158e-007,-0.485742,1.06797][0.00587723,-0.445725,0.895151][0.19902,0.522295,0][-0.377167,-0.485742,0.993496][-0.336542,-0.446624,0.829015][0.276301,0.522295,0][-0.343437,-0.595312,0.914219][-0.272366,-0.690737,0.66985][0.26939,0.544746,0][-0.343437,-0.595312,0.914219][-0.272366,-0.690737,0.66985][0.26939,0.544746,0][5.21601e-007,-0.595313,0.982031][0.00428555,-0.689854,0.723936][0.19902,0.544746,0][6.17158e-007,-0.485742,1.06797][0.00587723,-0.445725,0.895151][0.19902,0.522295,0][5.21601e-007,-0.595313,0.982031][0.00428555,-0.689854,0.723936][0.19902,0.544746,0][-0.343437,-0.595312,0.914219][-0.272366,-0.690737,0.66985][0.26939,0.544746,0][-0.309707,-0.669726,0.834942][-0.26885,-0.717289,0.642819][0.262478,0.559993,0][-0.309707,-0.669726,0.834942][-0.26885,-0.717289,0.642819][0.262478,0.559993,0][4.43227e-007,-0.669727,0.896094][-0.00271145,-0.716431,0.697653][0.19902,0.559993,0][5.21601e-007,-0.595313,0.982031][0.00428555,-0.689854,0.723936][0.19902,0.544746,0][4.43227e-007,-0.669727,0.896094][-0.00271145,-0.716431,0.697653][0.19902,0.559993,0][-0.309707,-0.669726,0.834942][-0.26885,-0.717289,0.642819][0.262478,0.559993,0][-0.294375,-0.7125,0.798906][-0.30823,-0.603412,0.735451][0.259337,0.568757,0][-0.294375,-0.7125,0.798906][-0.30823,-0.603412,0.735451][0.259337,0.568757,0][4.03229e-007,-0.7125,0.857031][-0.00363306,-0.60249,0.798118][0.19902,0.568757,0][4.43227e-007,-0.669727,0.896094][-0.00271145,-0.716431,0.697653][0.19902,0.559993,0][-0.392499,-0.3375,1.02953][-0.38071,-0.0681309,0.922181][0.279442,0.49192,0][-0.709999,-0.3375,0.817032][-0.704874,-0.068109,0.706055][0.344498,0.49192,0][-0.682265,-0.485742,0.789297][-0.6283,-0.447071,0.636684][0.338815,0.522295,0][-0.682265,-0.485742,0.789297][-0.6283,-0.447071,0.636684][0.338815,0.522295,0][-0.377167,-0.485742,0.993496][-0.336542,-0.446624,0.829015][0.276301,0.522295,0][-0.392499,-0.3375,1.02953][-0.38071,-0.0681309,0.922181][0.279442,0.49192,0][-0.377167,-0.485742,0.993496][-0.336542,-0.446624,0.829015][0.276301,0.522295,0][-0.682265,-0.485742,0.789297][-0.6283,-0.447071,0.636684][0.338815,0.522295,0][-0.62125,-0.595312,0.728282][-0.507875,-0.691302,0.513969][0.326313,0.544746,0][-0.62125,-0.595312,0.728282][-0.507875,-0.691302,0.513969][0.326313,0.544746,0][-0.343437,-0.595312,0.914219][-0.272366,-0.690737,0.66985][0.26939,0.544746,0][-0.377167,-0.485742,0.993496][-0.336542,-0.446624,0.829015][0.276301,0.522295,0][-0.343437,-0.595312,0.914219][-0.272366,-0.690737,0.66985][0.26939,0.544746,0][-0.62125,-0.595312,0.728282][-0.507875,-0.691302,0.513969][0.326313,0.544746,0][-0.560234,-0.669726,0.667266][-0.494214,-0.717843,0.49036][0.313811,0.559993,0][-0.560234,-0.669726,0.667266][-0.494214,-0.717843,0.49036][0.313811,0.559993,0][-0.309707,-0.669726,0.834942][-0.26885,-0.717289,0.642819][0.262478,0.559993,0][-0.343437,-0.595312,0.914219][-0.272366,-0.690737,0.66985][0.26939,0.544746,0][-0.309707,-0.669726,0.834942][-0.26885,-0.717289,0.642819][0.262478,0.559993,0][-0.560234,-0.669726,0.667266][-0.494214,-0.717843,0.49036][0.313811,0.559993,0][-0.5325,-0.7125,0.639532][-0.566118,-0.60403,0.560944][0.308128,0.568757,0][-0.5325,-0.7125,0.639532][-0.566118,-0.60403,0.560944][0.308128,0.568757,0][-0.294375,-0.7125,0.798906][-0.30823,-0.603412,0.735451][0.259337,0.568757,0][-0.309707,-0.669726,0.834942][-0.26885,-0.717289,0.642819][0.262478,0.559993,0][-0.709999,-0.3375,0.817032][-0.704874,-0.068109,0.706055][0.344498,0.49192,0][-0.9225,-0.3375,0.499532][-0.921554,-0.0678878,0.38227][0.388039,0.49192,0][-0.886464,-0.485742,0.4842][-0.824517,-0.446481,0.347602][0.380655,0.522295,0][-0.886464,-0.485742,0.4842][-0.824517,-0.446481,0.347602][0.380655,0.522295,0][-0.682265,-0.485742,0.789297][-0.6283,-0.447071,0.636684][0.338815,0.522295,0][-0.709999,-0.3375,0.817032][-0.704874,-0.068109,0.706055][0.344498,0.49192,0][-0.682265,-0.485742,0.789297][-0.6283,-0.447071,0.636684][0.338815,0.522295,0][-0.886464,-0.485742,0.4842][-0.824517,-0.446481,0.347602][0.380655,0.522295,0][-0.807187,-0.595312,0.450469][-0.666533,-0.690732,0.280399][0.364412,0.544746,0][-0.807187,-0.595312,0.450469][-0.666533,-0.690732,0.280399][0.364412,0.544746,0][-0.62125,-0.595312,0.728282][-0.507875,-0.691302,0.513969][0.326313,0.544746,0][-0.682265,-0.485742,0.789297][-0.6283,-0.447071,0.636684][0.338815,0.522295,0][-0.62125,-0.595312,0.728282][-0.507875,-0.691302,0.513969][0.326313,0.544746,0][-0.807187,-0.595312,0.450469][-0.666533,-0.690732,0.280399][0.364412,0.544746,0][-0.72791,-0.669726,0.416739][-0.644922,-0.717287,0.263771][0.348168,0.559993,0][-0.72791,-0.669726,0.416739][-0.644922,-0.717287,0.263771][0.348168,0.559993,0][-0.560234,-0.669726,0.667266][-0.494214,-0.717843,0.49036][0.313811,0.559993,0][-0.62125,-0.595312,0.728282][-0.507875,-0.691302,0.513969][0.326313,0.544746,0][-0.560234,-0.669726,0.667266][-0.494214,-0.717843,0.49036][0.313811,0.559993,0][-0.72791,-0.669726,0.416739][-0.644922,-0.717287,0.263771][0.348168,0.559993,0][-0.691875,-0.7125,0.401407][-0.73825,-0.60344,0.301408][0.340784,0.568757,0][-0.691875,-0.7125,0.401407][-0.73825,-0.60344,0.301408][0.340784,0.568757,0][-0.5325,-0.7125,0.639532][-0.566118,-0.60403,0.560944][0.308128,0.568757,0][-0.560234,-0.669726,0.667266][-0.494214,-0.717843,0.49036][0.313811,0.559993,0][-0.9225,-0.3375,0.499532][-0.921554,-0.0678878,0.38227][0.275309,0.761476,0][-1,-0.3375,0.107032][-0.997695,-0.0678509,0.000826494][0.355732,0.761476,0][-0.960937,-0.485742,0.107032][-0.895151,-0.445725,0.00587747][0.355732,0.791851,0][-0.960937,-0.485742,0.107032][-0.895151,-0.445725,0.00587747][0.355732,0.791851,0][-0.886464,-0.485742,0.4842][-0.824517,-0.446481,0.347602][0.27845,0.791851,0][-0.9225,-0.3375,0.499532][-0.921554,-0.0678878,0.38227][0.275309,0.761476,0][-0.886464,-0.485742,0.4842][-0.824517,-0.446481,0.347602][0.0102026,0.198551,0][-0.960937,-0.485742,0.107032][-0.895151,-0.445725,0.00587747][0.01,0.119778,0][-0.875,-0.595312,0.107032][-0.723936,-0.689853,0.0042859][0.0272837,0.123145,0][-0.875,-0.595312,0.107032][-0.723936,-0.689853,0.0042859][0.0272837,0.123145,0][-0.807187,-0.595312,0.450469][-0.666533,-0.690732,0.280399][0.0274682,0.194873,0][-0.886464,-0.485742,0.4842][-0.824517,-0.446481,0.347602][0.0102026,0.198551,0][-0.807187,-0.595312,0.450469][-0.666533,-0.690732,0.280399][0.0274682,0.194873,0][-0.875,-0.595312,0.107032][-0.723936,-0.689853,0.0042859][0.0272837,0.123145,0][-0.789062,-0.669726,0.107032][-0.697653,-0.71643,-0.00271108][0.0445674,0.126511,0][-0.789062,-0.669726,0.107032][-0.697653,-0.71643,-0.00271108][0.0445674,0.126511,0][-0.72791,-0.669726,0.416739][-0.644922,-0.717287,0.263771][0.0447338,0.191195,0][-0.807187,-0.595312,0.450469][-0.666533,-0.690732,0.280399][0.0274682,0.194873,0][-0.72791,-0.669726,0.416739][-0.644922,-0.717287,0.263771][0.0447338,0.191195,0][-0.789062,-0.669726,0.107032][-0.697653,-0.71643,-0.00271108][0.0445674,0.126511,0][-0.75,-0.7125,0.107032][-0.798119,-0.602489,-0.00363282][0.0524236,0.128041,0][-0.75,-0.7125,0.107032][-0.798119,-0.602489,-0.00363282][0.0524236,0.128041,0][-0.691875,-0.7125,0.401407][-0.73825,-0.60344,0.301408][0.0525818,0.189523,0][-0.72791,-0.669726,0.416739][-0.644922,-0.717287,0.263771][0.0447338,0.191195,0][-1,-0.3375,0.107032][-0.997695,-0.0678509,0.000826494][0.355732,0.761476,0][-0.9225,-0.3375,-0.285468][-0.922181,-0.0681305,-0.38071][0.436155,0.761476,0][-0.886465,-0.485742,-0.270136][-0.829016,-0.446624,-0.336542][0.433013,0.791851,0][-0.886465,-0.485742,-0.270136][-0.829016,-0.446624,-0.336542][0.433013,0.791851,0][-0.960937,-0.485742,0.107032][-0.895151,-0.445725,0.00587747][0.355732,0.791851,0][-1,-0.3375,0.107032][-0.997695,-0.0678509,0.000826494][0.355732,0.761476,0][-0.960937,-0.485742,0.107032][-0.895151,-0.445725,0.00587747][0.01,0.119778,0][-0.886465,-0.485742,-0.270136][-0.829016,-0.446624,-0.336542][0.0397532,0.0468398,0][-0.807188,-0.595312,-0.236406][-0.669851,-0.690737,-0.272366][0.054376,0.0567292,0][-0.807188,-0.595312,-0.236406][-0.669851,-0.690737,-0.272366][0.054376,0.0567292,0][-0.875,-0.595312,0.107032][-0.723936,-0.689853,0.0042859][0.0272837,0.123145,0][-0.960937,-0.485742,0.107032][-0.895151,-0.445725,0.00587747][0.01,0.119778,0][-0.875,-0.595312,0.107032][-0.723936,-0.689853,0.0042859][0.0272837,0.123145,0][-0.807188,-0.595312,-0.236406][-0.669851,-0.690737,-0.272366][0.054376,0.0567292,0][-0.72791,-0.669726,-0.202675][-0.64282,-0.717288,-0.26885][0.0689989,0.0666187,0][-0.72791,-0.669726,-0.202675][-0.64282,-0.717288,-0.26885][0.0689989,0.0666187,0][-0.789062,-0.669726,0.107032][-0.697653,-0.71643,-0.00271108][0.0445674,0.126511,0][-0.875,-0.595312,0.107032][-0.723936,-0.689853,0.0042859][0.0272837,0.123145,0][-0.789062,-0.669726,0.107032][-0.697653,-0.71643,-0.00271108][0.0445674,0.126511,0][-0.72791,-0.669726,-0.202675][-0.64282,-0.717288,-0.26885][0.0689989,0.0666187,0][-0.691875,-0.7125,-0.187343][-0.735451,-0.603412,-0.308229][0.0756456,0.0711139,0][-0.691875,-0.7125,-0.187343][-0.735451,-0.603412,-0.308229][0.0756456,0.0711139,0][-0.75,-0.7125,0.107032][-0.798119,-0.602489,-0.00363282][0.0524236,0.128041,0][-0.789062,-0.669726,0.107032][-0.697653,-0.71643,-0.00271108][0.0445674,0.126511,0][-0.9225,-0.3375,-0.285468][-0.922181,-0.0681305,-0.38071][0.419843,0.173759,0][-0.71,-0.3375,-0.602968][-0.706055,-0.068109,-0.704874][0.463384,0.173759,0][-0.682266,-0.485742,-0.575234][-0.636684,-0.447071,-0.6283][0.469067,0.204134,0][-0.682266,-0.485742,-0.575234][-0.636684,-0.447071,-0.6283][0.469067,0.204134,0][-0.886465,-0.485742,-0.270136][-0.829016,-0.446624,-0.336542][0.427227,0.204134,0][-0.9225,-0.3375,-0.285468][-0.922181,-0.0681305,-0.38071][0.419843,0.173759,0][-0.886465,-0.485742,-0.270136][-0.829016,-0.446624,-0.336542][0.427227,0.204134,0][-0.682266,-0.485742,-0.575234][-0.636684,-0.447071,-0.6283][0.469067,0.204134,0][-0.62125,-0.595312,-0.514218][-0.51397,-0.691302,-0.507874][0.481569,0.226585,0][-0.62125,-0.595312,-0.514218][-0.51397,-0.691302,-0.507874][0.481569,0.226585,0][-0.807188,-0.595312,-0.236406][-0.669851,-0.690737,-0.272366][0.443471,0.226585,0][-0.886465,-0.485742,-0.270136][-0.829016,-0.446624,-0.336542][0.427227,0.204134,0][-0.807188,-0.595312,-0.236406][-0.669851,-0.690737,-0.272366][0.443471,0.226585,0][-0.62125,-0.595312,-0.514218][-0.51397,-0.691302,-0.507874][0.481569,0.226585,0][-0.560235,-0.669726,-0.453203][-0.490361,-0.717843,-0.494214][0.494071,0.241832,0][-0.560235,-0.669726,-0.453203][-0.490361,-0.717843,-0.494214][0.494071,0.241832,0][-0.72791,-0.669726,-0.202675][-0.64282,-0.717288,-0.26885][0.459715,0.241832,0][-0.807188,-0.595312,-0.236406][-0.669851,-0.690737,-0.272366][0.443471,0.226585,0][-0.72791,-0.669726,-0.202675][-0.64282,-0.717288,-0.26885][0.459715,0.241832,0][-0.560235,-0.669726,-0.453203][-0.490361,-0.717843,-0.494214][0.494071,0.241832,0][-0.5325,-0.7125,-0.425468][-0.560944,-0.60403,-0.566117][0.499754,0.250596,0][-0.5325,-0.7125,-0.425468][-0.560944,-0.60403,-0.566117][0.499754,0.250596,0][-0.691875,-0.7125,-0.187343][-0.735451,-0.603412,-0.308229][0.467098,0.250596,0][-0.72791,-0.669726,-0.202675][-0.64282,-0.717288,-0.26885][0.459715,0.241832,0][-0.71,-0.3375,-0.602968][-0.706055,-0.068109,-0.704874][0.463384,0.173759,0][-0.3925,-0.3375,-0.815468][-0.38227,-0.0678882,-0.921553][0.52844,0.173759,0][-0.377168,-0.485742,-0.779433][-0.347602,-0.446481,-0.824517][0.531581,0.204134,0][-0.377168,-0.485742,-0.779433][-0.347602,-0.446481,-0.824517][0.531581,0.204134,0][-0.682266,-0.485742,-0.575234][-0.636684,-0.447071,-0.6283][0.469067,0.204134,0][-0.71,-0.3375,-0.602968][-0.706055,-0.068109,-0.704874][0.463384,0.173759,0][-0.682266,-0.485742,-0.575234][-0.636684,-0.447071,-0.6283][0.469067,0.204134,0][-0.377168,-0.485742,-0.779433][-0.347602,-0.446481,-0.824517][0.531581,0.204134,0][-0.343438,-0.595312,-0.700156][-0.2804,-0.690732,-0.666532][0.538493,0.226585,0][-0.343438,-0.595312,-0.700156][-0.2804,-0.690732,-0.666532][0.538493,0.226585,0][-0.62125,-0.595312,-0.514218][-0.51397,-0.691302,-0.507874][0.481569,0.226585,0][-0.682266,-0.485742,-0.575234][-0.636684,-0.447071,-0.6283][0.469067,0.204134,0][-0.62125,-0.595312,-0.514218][-0.51397,-0.691302,-0.507874][0.481569,0.226585,0][-0.343438,-0.595312,-0.700156][-0.2804,-0.690732,-0.666532][0.538493,0.226585,0][-0.309707,-0.669726,-0.620879][-0.263771,-0.717287,-0.644922][0.545404,0.241832,0][-0.309707,-0.669726,-0.620879][-0.263771,-0.717287,-0.644922][0.545404,0.241832,0][-0.560235,-0.669726,-0.453203][-0.490361,-0.717843,-0.494214][0.494071,0.241832,0][-0.62125,-0.595312,-0.514218][-0.51397,-0.691302,-0.507874][0.481569,0.226585,0][-0.560235,-0.669726,-0.453203][-0.490361,-0.717843,-0.494214][0.494071,0.241832,0][-0.309707,-0.669726,-0.620879][-0.263771,-0.717287,-0.644922][0.545404,0.241832,0][-0.294375,-0.7125,-0.584844][-0.301408,-0.60344,-0.73825][0.548546,0.250596,0][-0.294375,-0.7125,-0.584844][-0.301408,-0.60344,-0.73825][0.548546,0.250596,0][-0.5325,-0.7125,-0.425468][-0.560944,-0.60403,-0.566117][0.499754,0.250596,0][-0.560235,-0.669726,-0.453203][-0.490361,-0.717843,-0.494214][0.494071,0.241832,0][-0.3925,-0.3375,-0.815468][-0.38227,-0.0678882,-0.921553][0.52844,0.173759,0][-2.68819e-007,-0.3375,-0.892969][-0.000826517,-0.0678514,-0.997695][0.608863,0.173759,0][-3.22182e-007,-0.485742,-0.853906][-0.00587768,-0.445725,-0.895151][0.608863,0.204134,0][-3.22182e-007,-0.485742,-0.853906][-0.00587768,-0.445725,-0.895151][0.608863,0.204134,0][-0.377168,-0.485742,-0.779433][-0.347602,-0.446481,-0.824517][0.531581,0.204134,0][-0.3925,-0.3375,-0.815468][-0.38227,-0.0678882,-0.921553][0.52844,0.173759,0][-0.377168,-0.485742,-0.779433][-0.347602,-0.446481,-0.824517][0.531581,0.204134,0][-3.22182e-007,-0.485742,-0.853906][-0.00587768,-0.445725,-0.895151][0.608863,0.204134,0][-3.33733e-007,-0.595313,-0.767969][-0.00428624,-0.689854,-0.723936][0.608863,0.226585,0][-3.33733e-007,-0.595313,-0.767969][-0.00428624,-0.689854,-0.723936][0.608863,0.226585,0][-0.343438,-0.595312,-0.700156][-0.2804,-0.690732,-0.666532][0.538493,0.226585,0][-0.377168,-0.485742,-0.779433][-0.347602,-0.446481,-0.824517][0.531581,0.204134,0][-0.343438,-0.595312,-0.700156][-0.2804,-0.690732,-0.666532][0.538493,0.226585,0][-3.33733e-007,-0.595313,-0.767969][-0.00428624,-0.689854,-0.723936][0.608863,0.226585,0][-3.28101e-007,-0.669727,-0.682031][0.00271075,-0.716431,-0.697653][0.608863,0.241832,0][-3.28101e-007,-0.669727,-0.682031][0.00271075,-0.716431,-0.697653][0.608863,0.241832,0][-0.309707,-0.669726,-0.620879][-0.263771,-0.717287,-0.644922][0.545404,0.241832,0][-0.343438,-0.595312,-0.700156][-0.2804,-0.690732,-0.666532][0.538493,0.226585,0][-0.309707,-0.669726,-0.620879][-0.263771,-0.717287,-0.644922][0.545404,0.241832,0][-3.28101e-007,-0.669727,-0.682031][0.00271075,-0.716431,-0.697653][0.608863,0.241832,0][-3.29914e-007,-0.7125,-0.642969][0.00363247,-0.60249,-0.798118][0.608863,0.250596,0][-3.29914e-007,-0.7125,-0.642969][0.00363247,-0.60249,-0.798118][0.608863,0.250596,0][-0.294375,-0.7125,-0.584844][-0.301408,-0.60344,-0.73825][0.548546,0.250596,0][-0.309707,-0.669726,-0.620879][-0.263771,-0.717287,-0.644922][0.545404,0.241832,0][-3.29914e-007,-0.7125,-0.642969][0.00363247,-0.60249,-0.798118][0.608863,0.250596,0][0.294375,-0.7125,-0.584844][0.308229,-0.603413,-0.735451][0.66918,0.250596,0][0.287705,-0.740039,-0.569168][0.207145,-0.804954,-0.556004][0.667813,0.256239,0][0.287705,-0.740039,-0.569168][0.207145,-0.804954,-0.556004][0.667813,0.256239,0][-3.35069e-007,-0.740039,-0.625976][-0.0208413,-0.804452,-0.593652][0.608863,0.256239,0][-3.29914e-007,-0.7125,-0.642969][0.00363247,-0.60249,-0.798118][0.608863,0.250596,0][-3.35069e-007,-0.740039,-0.625976][-0.0208413,-0.804452,-0.593652][0.231978,0.01,0][0.287705,-0.740039,-0.569168][0.207145,-0.804954,-0.556004][0.287616,0.0326959,0][0.252058,-0.764063,-0.485387][0.0578292,-0.986122,-0.155628][0.277165,0.0481496,0][0.252058,-0.764063,-0.485387][0.0578292,-0.986122,-0.155628][0.277165,0.0481496,0][-3.02422e-007,-0.764063,-0.535156][-0.00594979,-0.986065,-0.166252][0.22842,0.0282657,0][-3.35069e-007,-0.740039,-0.625976][-0.0208413,-0.804452,-0.593652][0.231978,0.01,0][-3.02422e-007,-0.764063,-0.535156][-0.00594979,-0.986065,-0.166252][0.22842,0.0282657,0][0.252058,-0.764063,-0.485387][0.0578292,-0.986122,-0.155628][0.277165,0.0481496,0][0.163976,-0.781055,-0.278365][0.0168485,-0.998674,-0.0486496][0.25134,0.0863351,0][0.163976,-0.781055,-0.278365][0.0168485,-0.998674,-0.0486496][0.25134,0.0863351,0][-2.01042e-007,-0.781055,-0.310742][-0.00298331,-0.998669,-0.0514921][0.219629,0.0733998,0][-3.02422e-007,-0.764063,-0.535156][-0.00594979,-0.986065,-0.166252][0.22842,0.0282657,0][-2.01042e-007,-0.781055,-0.310742][-0.00298331,-0.998669,-0.0514921][0.219629,0.0733998,0][0.163976,-0.781055,-0.278365][0.0168485,-0.998674,-0.0486496][0.25134,0.0863351,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.964619,0.431258,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.964619,0.431258,0][-2.01042e-007,-0.781055,-0.310742][-0.00298331,-0.998669,-0.0514921][0.879017,0.429937,0][0.294375,-0.7125,-0.584844][0.308229,-0.603413,-0.735451][0.66918,0.250596,0][0.5325,-0.7125,-0.425469][0.566117,-0.604031,-0.560944][0.717972,0.250596,0][0.520435,-0.740039,-0.413404][0.404179,-0.805297,-0.433747][0.7155,0.256239,0][0.520435,-0.740039,-0.413404][0.404179,-0.805297,-0.433747][0.7155,0.256239,0][0.287705,-0.740039,-0.569168][0.207145,-0.804954,-0.556004][0.667813,0.256239,0][0.294375,-0.7125,-0.584844][0.308229,-0.603413,-0.735451][0.66918,0.250596,0][0.287705,-0.740039,-0.569168][0.207145,-0.804954,-0.556004][0.287616,0.0326959,0][0.520435,-0.740039,-0.413404][0.404179,-0.805297,-0.433747][0.328321,0.0731401,0][0.455953,-0.764063,-0.348922][0.112894,-0.986174,-0.121305][0.312826,0.0835827,0][0.455953,-0.764063,-0.348922][0.112894,-0.986174,-0.121305][0.312826,0.0835827,0][0.252058,-0.764063,-0.485387][0.0578292,-0.986122,-0.155628][0.277165,0.0481496,0][0.287705,-0.740039,-0.569168][0.207145,-0.804954,-0.556004][0.287616,0.0326959,0][0.252058,-0.764063,-0.485387][0.0578292,-0.986122,-0.155628][0.277165,0.0481496,0][0.455953,-0.764063,-0.348922][0.112894,-0.986174,-0.121305][0.312826,0.0835827,0][0.296619,-0.781055,-0.189588][0.0341545,-0.99868,-0.0383703][0.274539,0.109386,0][0.296619,-0.781055,-0.189588][0.0341545,-0.99868,-0.0383703][0.274539,0.109386,0][0.163976,-0.781055,-0.278365][0.0168485,-0.998674,-0.0486496][0.25134,0.0863351,0][0.252058,-0.764063,-0.485387][0.0578292,-0.986122,-0.155628][0.277165,0.0481496,0][0.163976,-0.781055,-0.278365][0.0168485,-0.998674,-0.0486496][0.25134,0.0863351,0][0.296619,-0.781055,-0.189588][0.0341545,-0.99868,-0.0383703][0.274539,0.109386,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.620577,0.428588,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.620577,0.428588,0][0.163976,-0.781055,-0.278365][0.0168485,-0.998674,-0.0486496][0.62224,0.342786,0][0.5325,-0.7125,-0.425469][0.566117,-0.604031,-0.560944][0.717972,0.250596,0][0.691875,-0.7125,-0.187344][0.738249,-0.603441,-0.301408][0.750627,0.250596,0][0.6762,-0.740039,-0.180675][0.53977,-0.805032,-0.246112][0.747415,0.256239,0][0.6762,-0.740039,-0.180675][0.53977,-0.805032,-0.246112][0.747415,0.256239,0][0.520435,-0.740039,-0.413404][0.404179,-0.805297,-0.433747][0.7155,0.256239,0][0.5325,-0.7125,-0.425469][0.566117,-0.604031,-0.560944][0.717972,0.250596,0][0.520435,-0.740039,-0.413404][0.404179,-0.805297,-0.433747][0.328321,0.0731401,0][0.6762,-0.740039,-0.180675][0.53977,-0.805032,-0.246112][0.350531,0.126049,0][0.592418,-0.764063,-0.145028][0.150926,-0.986141,-0.0689002][0.332284,0.129936,0][0.592418,-0.764063,-0.145028][0.150926,-0.986141,-0.0689002][0.332284,0.129936,0][0.455953,-0.764063,-0.348922][0.112894,-0.986174,-0.121305][0.312826,0.0835827,0][0.520435,-0.740039,-0.413404][0.404179,-0.805297,-0.433747][0.328321,0.0731401,0][0.455953,-0.764063,-0.348922][0.112894,-0.986174,-0.121305][0.312826,0.0835827,0][0.592418,-0.764063,-0.145028][0.150926,-0.986141,-0.0689002][0.332284,0.129936,0][0.385396,-0.781055,-0.0569449][0.0462888,-0.998677,-0.0223969][0.287198,0.139541,0][0.385396,-0.781055,-0.0569449][0.0462888,-0.998677,-0.0223969][0.287198,0.139541,0][0.296619,-0.781055,-0.189588][0.0341545,-0.99868,-0.0383703][0.274539,0.109386,0][0.455953,-0.764063,-0.348922][0.112894,-0.986174,-0.121305][0.312826,0.0835827,0][0.296619,-0.781055,-0.189588][0.0341545,-0.99868,-0.0383703][0.274539,0.109386,0][0.385396,-0.781055,-0.0569449][0.0462888,-0.998677,-0.0223969][0.287198,0.139541,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.418178,0.43636,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.418178,0.43636,0][0.296619,-0.781055,-0.189588][0.0341545,-0.99868,-0.0383703][0.416493,0.522295,0][0.691875,-0.7125,-0.187344][0.738249,-0.603441,-0.301408][0.353945,0.125321,0][0.75,-0.7125,0.107031][0.798118,-0.602491,0.00363278][0.354103,0.186803,0][0.733008,-0.740039,0.107031][0.593651,-0.804452,-0.0208409][0.350685,0.186137,0][0.733008,-0.740039,0.107031][0.593651,-0.804452,-0.0208409][0.350685,0.186137,0][0.6762,-0.740039,-0.180675][0.53977,-0.805032,-0.246112][0.350531,0.126049,0][0.691875,-0.7125,-0.187344][0.738249,-0.603441,-0.301408][0.353945,0.125321,0][0.6762,-0.740039,-0.180675][0.53977,-0.805032,-0.246112][0.350531,0.126049,0][0.733008,-0.740039,0.107031][0.593651,-0.804452,-0.0208409][0.350685,0.186137,0][0.642187,-0.764063,0.107031][0.166251,-0.986065,-0.00594936][0.33242,0.182579,0][0.642187,-0.764063,0.107031][0.166251,-0.986065,-0.00594936][0.33242,0.182579,0][0.592418,-0.764063,-0.145028][0.150926,-0.986141,-0.0689002][0.332284,0.129936,0][0.6762,-0.740039,-0.180675][0.53977,-0.805032,-0.246112][0.350531,0.126049,0][0.592418,-0.764063,-0.145028][0.150926,-0.986141,-0.0689002][0.332284,0.129936,0][0.642187,-0.764063,0.107031][0.166251,-0.986065,-0.00594936][0.33242,0.182579,0][0.417773,-0.781055,0.107031][0.0514916,-0.998669,-0.00298277][0.287286,0.173788,0][0.417773,-0.781055,0.107031][0.0514916,-0.998669,-0.00298277][0.287286,0.173788,0][0.385396,-0.781055,-0.0569449][0.0462888,-0.998677,-0.0223969][0.287198,0.139541,0][0.592418,-0.764063,-0.145028][0.150926,-0.986141,-0.0689002][0.332284,0.129936,0][0.385396,-0.781055,-0.0569449][0.0462888,-0.998677,-0.0223969][0.287198,0.139541,0][0.417773,-0.781055,0.107031][0.0514916,-0.998669,-0.00298277][0.287286,0.173788,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.570264,0.62016,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.570264,0.62016,0][0.385396,-0.781055,-0.0569449][0.0462888,-0.998677,-0.0223969][0.484463,0.618458,0][0.75,-0.7125,0.107031][0.798118,-0.602491,0.00363278][0.354103,0.186803,0][0.691875,-0.7125,0.401406][0.73545,-0.603413,0.308229][0.330881,0.24373,0][0.6762,-0.740039,0.394737][0.556003,-0.804954,0.207145][0.32799,0.241775,0][0.6762,-0.740039,0.394737][0.556003,-0.804954,0.207145][0.32799,0.241775,0][0.733008,-0.740039,0.107031][0.593651,-0.804452,-0.0208409][0.350685,0.186137,0][0.75,-0.7125,0.107031][0.798118,-0.602491,0.00363278][0.354103,0.186803,0][0.733008,-0.740039,0.107031][0.593651,-0.804452,-0.0208409][0.350685,0.186137,0][0.6762,-0.740039,0.394737][0.556003,-0.804954,0.207145][0.32799,0.241775,0][0.592418,-0.764063,0.35909][0.155627,-0.986122,0.0578297][0.312536,0.231324,0][0.592418,-0.764063,0.35909][0.155627,-0.986122,0.0578297][0.312536,0.231324,0][0.642187,-0.764063,0.107031][0.166251,-0.986065,-0.00594936][0.33242,0.182579,0][0.733008,-0.740039,0.107031][0.593651,-0.804452,-0.0208409][0.350685,0.186137,0][0.642187,-0.764063,0.107031][0.166251,-0.986065,-0.00594936][0.33242,0.182579,0][0.592418,-0.764063,0.35909][0.155627,-0.986122,0.0578297][0.312536,0.231324,0][0.385396,-0.781055,0.271007][0.0486491,-0.998674,0.0168489][0.27435,0.205499,0][0.385396,-0.781055,0.271007][0.0486491,-0.998674,0.0168489][0.27435,0.205499,0][0.417773,-0.781055,0.107031][0.0514916,-0.998669,-0.00298277][0.287286,0.173788,0][0.642187,-0.764063,0.107031][0.166251,-0.986065,-0.00594936][0.33242,0.182579,0][0.417773,-0.781055,0.107031][0.0514916,-0.998669,-0.00298277][0.287286,0.173788,0][0.385396,-0.781055,0.271007][0.0486491,-0.998674,0.0168489][0.27435,0.205499,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.821199,0.263992,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.821199,0.263992,0][0.417773,-0.781055,0.107031][0.0514916,-0.998669,-0.00298277][0.9068,0.263992,0][0.691875,-0.7125,0.401406][0.73545,-0.603413,0.308229][0.0572549,0.568757,0][0.5325,-0.7125,0.639531][0.560944,-0.604031,0.566117][0.0899107,0.568757,0][0.520436,-0.740039,0.627467][0.433746,-0.805297,0.40418][0.0923827,0.5744,0][0.520436,-0.740039,0.627467][0.433746,-0.805297,0.40418][0.0923827,0.5744,0][0.6762,-0.740039,0.394737][0.556003,-0.804954,0.207145][0.0604667,0.5744,0][0.691875,-0.7125,0.401406][0.73545,-0.603413,0.308229][0.0572549,0.568757,0][0.6762,-0.740039,0.394737][0.556003,-0.804954,0.207145][0.32799,0.241775,0][0.520436,-0.740039,0.627467][0.433746,-0.805297,0.40418][0.287545,0.28248,0][0.455953,-0.764063,0.562984][0.121304,-0.986174,0.112895][0.277103,0.266985,0][0.455953,-0.764063,0.562984][0.121304,-0.986174,0.112895][0.277103,0.266985,0][0.592418,-0.764063,0.35909][0.155627,-0.986122,0.0578297][0.312536,0.231324,0][0.6762,-0.740039,0.394737][0.556003,-0.804954,0.207145][0.32799,0.241775,0][0.592418,-0.764063,0.35909][0.155627,-0.986122,0.0578297][0.312536,0.231324,0][0.455953,-0.764063,0.562984][0.121304,-0.986174,0.112895][0.277103,0.266985,0][0.296619,-0.781055,0.40365][0.0383698,-0.99868,0.034155][0.251299,0.228698,0][0.296619,-0.781055,0.40365][0.0383698,-0.99868,0.034155][0.251299,0.228698,0][0.385396,-0.781055,0.271007][0.0486491,-0.998674,0.0168489][0.27435,0.205499,0][0.592418,-0.764063,0.35909][0.155627,-0.986122,0.0578297][0.312536,0.231324,0][0.385396,-0.781055,0.271007][0.0486491,-0.998674,0.0168489][0.27435,0.205499,0][0.296619,-0.781055,0.40365][0.0383698,-0.99868,0.034155][0.251299,0.228698,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.612782,0.342919,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.612782,0.342919,0][0.385396,-0.781055,0.271007][0.0486491,-0.998674,0.0168489][0.61112,0.428721,0][0.5325,-0.7125,0.639531][0.560944,-0.604031,0.566117][0.0899107,0.568757,0][0.294375,-0.7125,0.798906][0.301408,-0.60344,0.73825][0.138702,0.568757,0][0.287706,-0.740039,0.783231][0.246112,-0.805032,0.539771][0.140069,0.5744,0][0.287706,-0.740039,0.783231][0.246112,-0.805032,0.539771][0.140069,0.5744,0][0.520436,-0.740039,0.627467][0.433746,-0.805297,0.40418][0.0923827,0.5744,0][0.5325,-0.7125,0.639531][0.560944,-0.604031,0.566117][0.0899107,0.568757,0][0.520436,-0.740039,0.627467][0.433746,-0.805297,0.40418][0.287545,0.28248,0][0.287706,-0.740039,0.783231][0.246112,-0.805032,0.539771][0.234637,0.30469,0][0.252059,-0.764063,0.699449][0.0688997,-0.986141,0.150926][0.23075,0.286443,0][0.252059,-0.764063,0.699449][0.0688997,-0.986141,0.150926][0.23075,0.286443,0][0.455953,-0.764063,0.562984][0.121304,-0.986174,0.112895][0.277103,0.266985,0][0.520436,-0.740039,0.627467][0.433746,-0.805297,0.40418][0.287545,0.28248,0][0.455953,-0.764063,0.562984][0.121304,-0.986174,0.112895][0.277103,0.266985,0][0.252059,-0.764063,0.699449][0.0688997,-0.986141,0.150926][0.23075,0.286443,0][0.163976,-0.781055,0.492427][0.0223965,-0.998677,0.0462893][0.221144,0.241356,0][0.163976,-0.781055,0.492427][0.0223965,-0.998677,0.0462893][0.221144,0.241356,0][0.296619,-0.781055,0.40365][0.0383698,-0.99868,0.034155][0.251299,0.228698,0][0.455953,-0.764063,0.562984][0.121304,-0.986174,0.112895][0.277103,0.266985,0][0.296619,-0.781055,0.40365][0.0383698,-0.99868,0.034155][0.251299,0.228698,0][0.163976,-0.781055,0.492427][0.0223965,-0.998677,0.0462893][0.221144,0.241356,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.731492,0.389374,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.731492,0.389374,0][0.296619,-0.781055,0.40365][0.0383698,-0.99868,0.034155][0.645557,0.387689,0][0.294375,-0.7125,0.798906][0.301408,-0.60344,0.73825][0.138702,0.568757,0][4.03229e-007,-0.7125,0.857031][-0.00363306,-0.60249,0.798118][0.19902,0.568757,0][3.81464e-007,-0.740039,0.840039][0.0208405,-0.804452,0.593652][0.19902,0.5744,0][3.81464e-007,-0.740039,0.840039][0.0208405,-0.804452,0.593652][0.19902,0.5744,0][0.287706,-0.740039,0.783231][0.246112,-0.805032,0.539771][0.140069,0.5744,0][0.294375,-0.7125,0.798906][0.301408,-0.60344,0.73825][0.138702,0.568757,0][0.287706,-0.740039,0.783231][0.246112,-0.805032,0.539771][0.234637,0.30469,0][3.81464e-007,-0.740039,0.840039][0.0208405,-0.804452,0.593652][0.174548,0.304844,0][3.25332e-007,-0.764063,0.749219][0.00594882,-0.986065,0.166252][0.178106,0.286579,0][3.25332e-007,-0.764063,0.749219][0.00594882,-0.986065,0.166252][0.178106,0.286579,0][0.252059,-0.764063,0.699449][0.0688997,-0.986141,0.150926][0.23075,0.286443,0][0.287706,-0.740039,0.783231][0.246112,-0.805032,0.539771][0.234637,0.30469,0][0.252059,-0.764063,0.699449][0.0688997,-0.986141,0.150926][0.23075,0.286443,0][3.25332e-007,-0.764063,0.749219][0.00594882,-0.986065,0.166252][0.178106,0.286579,0][2.07342e-007,-0.781055,0.524805][0.00298225,-0.998669,0.0514921][0.186897,0.241445,0][2.07342e-007,-0.781055,0.524805][0.00298225,-0.998669,0.0514921][0.186897,0.241445,0][0.163976,-0.781055,0.492427][0.0223965,-0.998677,0.0462893][0.221144,0.241356,0][0.252059,-0.764063,0.699449][0.0688997,-0.986141,0.150926][0.23075,0.286443,0][0.163976,-0.781055,0.492427][0.0223965,-0.998677,0.0462893][0.221144,0.241356,0][2.07342e-007,-0.781055,0.524805][0.00298225,-0.998669,0.0514921][0.186897,0.241445,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.484463,0.599509,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.484463,0.599509,0][0.163976,-0.781055,0.492427][0.0223965,-0.998677,0.0462893][0.570264,0.601211,0][4.03229e-007,-0.7125,0.857031][-0.00363306,-0.60249,0.798118][0.19902,0.568757,0][-0.294375,-0.7125,0.798906][-0.30823,-0.603412,0.735451][0.259337,0.568757,0][-0.287705,-0.740039,0.783231][-0.207146,-0.804954,0.556004][0.25797,0.5744,0][-0.287705,-0.740039,0.783231][-0.207146,-0.804954,0.556004][0.25797,0.5744,0][3.81464e-007,-0.740039,0.840039][0.0208405,-0.804452,0.593652][0.19902,0.5744,0][4.03229e-007,-0.7125,0.857031][-0.00363306,-0.60249,0.798118][0.19902,0.568757,0][3.81464e-007,-0.740039,0.840039][0.0208405,-0.804452,0.593652][0.174548,0.304844,0][-0.287705,-0.740039,0.783231][-0.207146,-0.804954,0.556004][0.11891,0.282148,0][-0.252058,-0.764062,0.699449][-0.0578302,-0.986122,0.155628][0.129362,0.266695,0][-0.252058,-0.764062,0.699449][-0.0578302,-0.986122,0.155628][0.129362,0.266695,0][3.25332e-007,-0.764063,0.749219][0.00594882,-0.986065,0.166252][0.178106,0.286579,0][3.81464e-007,-0.740039,0.840039][0.0208405,-0.804452,0.593652][0.174548,0.304844,0][3.25332e-007,-0.764063,0.749219][0.00594882,-0.986065,0.166252][0.178106,0.286579,0][-0.252058,-0.764062,0.699449][-0.0578302,-0.986122,0.155628][0.129362,0.266695,0][-0.163976,-0.781055,0.492427][-0.0168494,-0.998674,0.0486496][0.155187,0.228509,0][-0.163976,-0.781055,0.492427][-0.0168494,-0.998674,0.0486496][0.155187,0.228509,0][2.07342e-007,-0.781055,0.524805][0.00298225,-0.998669,0.0514921][0.186897,0.241445,0][3.25332e-007,-0.764063,0.749219][0.00594882,-0.986065,0.166252][0.178106,0.286579,0][2.07342e-007,-0.781055,0.524805][0.00298225,-0.998669,0.0514921][0.186897,0.241445,0][-0.163976,-0.781055,0.492427][-0.0168494,-0.998674,0.0486496][0.155187,0.228509,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.416858,0.342986,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.416858,0.342986,0][2.07342e-007,-0.781055,0.524805][0.00298225,-0.998669,0.0514921][0.418178,0.428588,0][-0.294375,-0.7125,0.798906][-0.30823,-0.603412,0.735451][0.259337,0.568757,0][-0.5325,-0.7125,0.639532][-0.566118,-0.60403,0.560944][0.308128,0.568757,0][-0.520435,-0.740039,0.627467][-0.40418,-0.805296,0.433747][0.305656,0.5744,0][-0.520435,-0.740039,0.627467][-0.40418,-0.805296,0.433747][0.305656,0.5744,0][-0.287705,-0.740039,0.783231][-0.207146,-0.804954,0.556004][0.25797,0.5744,0][-0.294375,-0.7125,0.798906][-0.30823,-0.603412,0.735451][0.259337,0.568757,0][-0.287705,-0.740039,0.783231][-0.207146,-0.804954,0.556004][0.11891,0.282148,0][-0.520435,-0.740039,0.627467][-0.40418,-0.805296,0.433747][0.0782059,0.241704,0][-0.455953,-0.764062,0.562985][-0.112895,-0.986174,0.121305][0.0937006,0.231262,0][-0.455953,-0.764062,0.562985][-0.112895,-0.986174,0.121305][0.0937006,0.231262,0][-0.252058,-0.764062,0.699449][-0.0578302,-0.986122,0.155628][0.129362,0.266695,0][-0.287705,-0.740039,0.783231][-0.207146,-0.804954,0.556004][0.11891,0.282148,0][-0.252058,-0.764062,0.699449][-0.0578302,-0.986122,0.155628][0.129362,0.266695,0][-0.455953,-0.764062,0.562985][-0.112895,-0.986174,0.121305][0.0937006,0.231262,0][-0.296619,-0.781055,0.403651][-0.0341556,-0.99868,0.0383702][0.131988,0.205458,0][-0.296619,-0.781055,0.403651][-0.0341556,-0.99868,0.0383702][0.131988,0.205458,0][-0.163976,-0.781055,0.492427][-0.0168494,-0.998674,0.0486496][0.155187,0.228509,0][-0.252058,-0.764062,0.699449][-0.0578302,-0.986122,0.155628][0.129362,0.266695,0][-0.163976,-0.781055,0.492427][-0.0168494,-0.998674,0.0486496][0.155187,0.228509,0][-0.296619,-0.781055,0.403651][-0.0341556,-0.99868,0.0383702][0.131988,0.205458,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.645557,0.397146,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.645557,0.397146,0][-0.163976,-0.781055,0.492427][-0.0168494,-0.998674,0.0486496][0.731358,0.398848,0][-0.5325,-0.7125,0.639532][-0.566118,-0.60403,0.560944][0.308128,0.568757,0][-0.691875,-0.7125,0.401407][-0.73825,-0.60344,0.301408][0.340784,0.568757,0][-0.6762,-0.740039,0.394737][-0.539771,-0.805031,0.246112][0.337572,0.5744,0][-0.6762,-0.740039,0.394737][-0.539771,-0.805031,0.246112][0.337572,0.5744,0][-0.520435,-0.740039,0.627467][-0.40418,-0.805296,0.433747][0.305656,0.5744,0][-0.5325,-0.7125,0.639532][-0.566118,-0.60403,0.560944][0.308128,0.568757,0][-0.520435,-0.740039,0.627467][-0.40418,-0.805296,0.433747][0.0782059,0.241704,0][-0.6762,-0.740039,0.394737][-0.539771,-0.805031,0.246112][0.0559957,0.188796,0][-0.592418,-0.764062,0.35909][-0.150926,-0.986141,0.0689002][0.0742423,0.184909,0][-0.592418,-0.764062,0.35909][-0.150926,-0.986141,0.0689002][0.0742423,0.184909,0][-0.455953,-0.764062,0.562985][-0.112895,-0.986174,0.121305][0.0937006,0.231262,0][-0.520435,-0.740039,0.627467][-0.40418,-0.805296,0.433747][0.0782059,0.241704,0][-0.455953,-0.764062,0.562985][-0.112895,-0.986174,0.121305][0.0937006,0.231262,0][-0.592418,-0.764062,0.35909][-0.150926,-0.986141,0.0689002][0.0742423,0.184909,0][-0.385396,-0.781054,0.271008][-0.0462898,-0.998677,0.022397][0.119329,0.175303,0][-0.385396,-0.781054,0.271008][-0.0462898,-0.998677,0.022397][0.119329,0.175303,0][-0.296619,-0.781055,0.403651][-0.0341556,-0.99868,0.0383702][0.131988,0.205458,0][-0.455953,-0.764062,0.562985][-0.112895,-0.986174,0.121305][0.0937006,0.231262,0][-0.296619,-0.781055,0.403651][-0.0341556,-0.99868,0.0383702][0.131988,0.205458,0][-0.385396,-0.781054,0.271008][-0.0462898,-0.998677,0.022397][0.119329,0.175303,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.427636,0.43636,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.427636,0.43636,0][-0.296619,-0.781055,0.403651][-0.0341556,-0.99868,0.0383702][0.425951,0.522295,0][-0.691875,-0.7125,0.401407][-0.73825,-0.60344,0.301408][0.0525818,0.189523,0][-0.75,-0.7125,0.107032][-0.798119,-0.602489,-0.00363282][0.0524236,0.128041,0][-0.733008,-0.740039,0.107032][-0.593653,-0.804451,0.0208409][0.0558411,0.128707,0][-0.733008,-0.740039,0.107032][-0.593653,-0.804451,0.0208409][0.0558411,0.128707,0][-0.6762,-0.740039,0.394737][-0.539771,-0.805031,0.246112][0.0559957,0.188796,0][-0.691875,-0.7125,0.401407][-0.73825,-0.60344,0.301408][0.0525818,0.189523,0][-0.6762,-0.740039,0.394737][-0.539771,-0.805031,0.246112][0.0559957,0.188796,0][-0.733008,-0.740039,0.107032][-0.593653,-0.804451,0.0208409][0.0558411,0.128707,0][-0.642187,-0.764062,0.107032][-0.166252,-0.986065,0.00594932][0.0741068,0.132265,0][-0.642187,-0.764062,0.107032][-0.166252,-0.986065,0.00594932][0.0741068,0.132265,0][-0.592418,-0.764062,0.35909][-0.150926,-0.986141,0.0689002][0.0742423,0.184909,0][-0.6762,-0.740039,0.394737][-0.539771,-0.805031,0.246112][0.0559957,0.188796,0][-0.592418,-0.764062,0.35909][-0.150926,-0.986141,0.0689002][0.0742423,0.184909,0][-0.642187,-0.764062,0.107032][-0.166252,-0.986065,0.00594932][0.0741068,0.132265,0][-0.417773,-0.781054,0.107032][-0.0514925,-0.998669,0.0029828][0.119241,0.141056,0][-0.417773,-0.781054,0.107032][-0.0514925,-0.998669,0.0029828][0.119241,0.141056,0][-0.385396,-0.781054,0.271008][-0.0462898,-0.998677,0.022397][0.119329,0.175303,0][-0.592418,-0.764062,0.35909][-0.150926,-0.986141,0.0689002][0.0742423,0.184909,0][-0.385396,-0.781054,0.271008][-0.0462898,-0.998677,0.022397][0.119329,0.175303,0][-0.417773,-0.781054,0.107032][-0.0514925,-0.998669,0.0029828][0.119241,0.141056,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.612782,0.436493,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.612782,0.436493,0][-0.385396,-0.781054,0.271008][-0.0462898,-0.998677,0.022397][0.61112,0.522295,0][-0.75,-0.7125,0.107032][-0.798119,-0.602489,-0.00363282][0.0524236,0.128041,0][-0.691875,-0.7125,-0.187343][-0.735451,-0.603412,-0.308229][0.0756456,0.0711139,0][-0.6762,-0.740039,-0.180674][-0.556005,-0.804953,-0.207145][0.078537,0.0730694,0][-0.6762,-0.740039,-0.180674][-0.556005,-0.804953,-0.207145][0.078537,0.0730694,0][-0.733008,-0.740039,0.107032][-0.593653,-0.804451,0.0208409][0.0558411,0.128707,0][-0.75,-0.7125,0.107032][-0.798119,-0.602489,-0.00363282][0.0524236,0.128041,0][-0.733008,-0.740039,0.107032][-0.593653,-0.804451,0.0208409][0.0558411,0.128707,0][-0.6762,-0.740039,-0.180674][-0.556005,-0.804953,-0.207145][0.078537,0.0730694,0][-0.592418,-0.764062,-0.145027][-0.155628,-0.986121,-0.0578297][0.0939907,0.0835208,0][-0.592418,-0.764062,-0.145027][-0.155628,-0.986121,-0.0578297][0.0939907,0.0835208,0][-0.642187,-0.764062,0.107032][-0.166252,-0.986065,0.00594932][0.0741068,0.132265,0][-0.733008,-0.740039,0.107032][-0.593653,-0.804451,0.0208409][0.0558411,0.128707,0][-0.642187,-0.764062,0.107032][-0.166252,-0.986065,0.00594932][0.0741068,0.132265,0][-0.592418,-0.764062,-0.145027][-0.155628,-0.986121,-0.0578297][0.0939907,0.0835208,0][-0.385396,-0.781054,-0.0569445][-0.0486501,-0.998674,-0.0168489][0.132176,0.109346,0][-0.385396,-0.781054,-0.0569445][-0.0486501,-0.998674,-0.0168489][0.132176,0.109346,0][-0.417773,-0.781054,0.107032][-0.0514925,-0.998669,0.0029828][0.119241,0.141056,0][-0.642187,-0.764062,0.107032][-0.166252,-0.986065,0.00594932][0.0741068,0.132265,0][-0.417773,-0.781054,0.107032][-0.0514925,-0.998669,0.0029828][0.119241,0.141056,0][-0.385396,-0.781054,-0.0569445][-0.0486501,-0.998674,-0.0168489][0.132176,0.109346,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.696902,0.7757,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.696902,0.7757,0][-0.417773,-0.781054,0.107032][-0.0514925,-0.998669,0.0029828][0.782504,0.7757,0][-0.691875,-0.7125,-0.187343][-0.735451,-0.603412,-0.308229][0.467098,0.250596,0][-0.5325,-0.7125,-0.425468][-0.560944,-0.60403,-0.566117][0.499754,0.250596,0][-0.520436,-0.740039,-0.413404][-0.433747,-0.805296,-0.40418][0.502226,0.256239,0][-0.520436,-0.740039,-0.413404][-0.433747,-0.805296,-0.40418][0.502226,0.256239,0][-0.6762,-0.740039,-0.180674][-0.556005,-0.804953,-0.207145][0.47031,0.256239,0][-0.691875,-0.7125,-0.187343][-0.735451,-0.603412,-0.308229][0.467098,0.250596,0][-0.6762,-0.740039,-0.180674][-0.556005,-0.804953,-0.207145][0.078537,0.0730694,0][-0.520436,-0.740039,-0.413404][-0.433747,-0.805296,-0.40418][0.118981,0.0323648,0][-0.455953,-0.764062,-0.348922][-0.121305,-0.986174,-0.112895][0.129424,0.0478595,0][-0.455953,-0.764062,-0.348922][-0.121305,-0.986174,-0.112895][0.129424,0.0478595,0][-0.592418,-0.764062,-0.145027][-0.155628,-0.986121,-0.0578297][0.0939907,0.0835208,0][-0.6762,-0.740039,-0.180674][-0.556005,-0.804953,-0.207145][0.078537,0.0730694,0][-0.592418,-0.764062,-0.145027][-0.155628,-0.986121,-0.0578297][0.0939907,0.0835208,0][-0.455953,-0.764062,-0.348922][-0.121305,-0.986174,-0.112895][0.129424,0.0478595,0][-0.296619,-0.781055,-0.189588][-0.0383708,-0.99868,-0.034155][0.155227,0.0861464,0][-0.296619,-0.781055,-0.189588][-0.0383708,-0.99868,-0.034155][0.155227,0.0861464,0][-0.385396,-0.781054,-0.0569445][-0.0486501,-0.998674,-0.0168489][0.132176,0.109346,0][-0.592418,-0.764062,-0.145027][-0.155628,-0.986121,-0.0578297][0.0939907,0.0835208,0][-0.385396,-0.781054,-0.0569445][-0.0486501,-0.998674,-0.0168489][0.132176,0.109346,0][-0.296619,-0.781055,-0.189588][-0.0383708,-0.99868,-0.034155][0.155227,0.0861464,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.570264,0.610686,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.570264,0.610686,0][-0.385396,-0.781054,-0.0569445][-0.0486501,-0.998674,-0.0168489][0.484463,0.608983,0][-0.5325,-0.7125,-0.425468][-0.560944,-0.60403,-0.566117][0.499754,0.250596,0][-0.294375,-0.7125,-0.584844][-0.301408,-0.60344,-0.73825][0.548546,0.250596,0][-0.287706,-0.740039,-0.569168][-0.246112,-0.805032,-0.539771][0.549912,0.256239,0][-0.287706,-0.740039,-0.569168][-0.246112,-0.805032,-0.539771][0.549912,0.256239,0][-0.520436,-0.740039,-0.413404][-0.433747,-0.805296,-0.40418][0.502226,0.256239,0][-0.5325,-0.7125,-0.425468][-0.560944,-0.60403,-0.566117][0.499754,0.250596,0][-0.520436,-0.740039,-0.413404][-0.433747,-0.805296,-0.40418][0.118981,0.0323648,0][-0.287706,-0.740039,-0.569168][-0.246112,-0.805032,-0.539771][0.17189,0.0101546,0][-0.252059,-0.764062,-0.485386][-0.0689007,-0.986141,-0.150926][0.175777,0.0284012,0][-0.252059,-0.764062,-0.485386][-0.0689007,-0.986141,-0.150926][0.175777,0.0284012,0][-0.455953,-0.764062,-0.348922][-0.121305,-0.986174,-0.112895][0.129424,0.0478595,0][-0.520436,-0.740039,-0.413404][-0.433747,-0.805296,-0.40418][0.118981,0.0323648,0][-0.455953,-0.764062,-0.348922][-0.121305,-0.986174,-0.112895][0.129424,0.0478595,0][-0.252059,-0.764062,-0.485386][-0.0689007,-0.986141,-0.150926][0.175777,0.0284012,0][-0.163976,-0.781055,-0.278365][-0.0223975,-0.998677,-0.0462893][0.185382,0.0734879,0][-0.163976,-0.781055,-0.278365][-0.0223975,-0.998677,-0.0462893][0.185382,0.0734879,0][-0.296619,-0.781055,-0.189588][-0.0383708,-0.99868,-0.034155][0.155227,0.0861464,0][-0.455953,-0.764062,-0.348922][-0.121305,-0.986174,-0.112895][0.129424,0.0478595,0][-0.296619,-0.781055,-0.189588][-0.0383708,-0.99868,-0.034155][0.155227,0.0861464,0][-0.163976,-0.781055,-0.278365][-0.0223975,-0.998677,-0.0462893][0.185382,0.0734879,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.62224,0.43636,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.62224,0.43636,0][-0.296619,-0.781055,-0.189588][-0.0383708,-0.99868,-0.034155][0.620555,0.522295,0][-0.294375,-0.7125,-0.584844][-0.301408,-0.60344,-0.73825][0.548546,0.250596,0][-3.29914e-007,-0.7125,-0.642969][0.00363247,-0.60249,-0.798118][0.608863,0.250596,0][-3.35069e-007,-0.740039,-0.625976][-0.0208413,-0.804452,-0.593652][0.608863,0.256239,0][-3.35069e-007,-0.740039,-0.625976][-0.0208413,-0.804452,-0.593652][0.608863,0.256239,0][-0.287706,-0.740039,-0.569168][-0.246112,-0.805032,-0.539771][0.549912,0.256239,0][-0.294375,-0.7125,-0.584844][-0.301408,-0.60344,-0.73825][0.548546,0.250596,0][-0.287706,-0.740039,-0.569168][-0.246112,-0.805032,-0.539771][0.17189,0.0101546,0][-3.35069e-007,-0.740039,-0.625976][-0.0208413,-0.804452,-0.593652][0.231978,0.01,0][-3.02422e-007,-0.764063,-0.535156][-0.00594979,-0.986065,-0.166252][0.22842,0.0282657,0][-3.02422e-007,-0.764063,-0.535156][-0.00594979,-0.986065,-0.166252][0.22842,0.0282657,0][-0.252059,-0.764062,-0.485386][-0.0689007,-0.986141,-0.150926][0.175777,0.0284012,0][-0.287706,-0.740039,-0.569168][-0.246112,-0.805032,-0.539771][0.17189,0.0101546,0][-0.252059,-0.764062,-0.485386][-0.0689007,-0.986141,-0.150926][0.175777,0.0284012,0][-3.02422e-007,-0.764063,-0.535156][-0.00594979,-0.986065,-0.166252][0.22842,0.0282657,0][-2.01042e-007,-0.781055,-0.310742][-0.00298331,-0.998669,-0.0514921][0.219629,0.0733998,0][-2.01042e-007,-0.781055,-0.310742][-0.00298331,-0.998669,-0.0514921][0.219629,0.0733998,0][-0.163976,-0.781055,-0.278365][-0.0223975,-0.998677,-0.0462893][0.185382,0.0734879,0][-0.252059,-0.764062,-0.485386][-0.0689007,-0.986141,-0.150926][0.175777,0.0284012,0][-0.163976,-0.781055,-0.278365][-0.0223975,-0.998677,-0.0462893][0.185382,0.0734879,0][-2.01042e-007,-0.781055,-0.310742][-0.00298331,-0.998669,-0.0514921][0.219629,0.0733998,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.425973,0.428588,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.425973,0.428588,0][-0.163976,-0.781055,-0.278365][-0.0223975,-0.998677,-0.0462893][0.427636,0.342786,0][8.85881e-007,0.225,0.907031][0.0684016,-0.997628,-0.00772621][0.251917,0.954209,0][0.0843759,0.242578,0.899219][0.643193,-0.765676,-0.00651759][0.250317,0.936921,0][0.084376,0.240546,1.14758][0.539351,-0.841351,-0.0350444][0.301206,0.936921,0][0.084376,0.240546,1.14758][0.539351,-0.841351,-0.0350444][0.301206,0.936921,0][9.99194e-007,0.223242,1.14063][-0.00183116,-0.999175,-0.040558][0.299781,0.954209,0][8.85881e-007,0.225,0.907031][0.0684016,-0.997628,-0.00772621][0.251917,0.954209,0][9.99194e-007,0.223242,1.14063][-0.00183116,-0.999175,-0.040558][0.299781,0.954209,0][0.084376,0.240546,1.14758][0.539351,-0.841351,-0.0350444][0.301206,0.936921,0][0.0843761,0.226318,1.32988][0.551287,-0.818237,-0.163008][0.338559,0.936921,0][0.0843761,0.226318,1.32988][0.551287,-0.818237,-0.163008][0.338559,0.936921,0][1.07757e-006,0.210938,1.31328][-0.00256553,-0.981532,-0.191281][0.335158,0.954209,0][9.99194e-007,0.223242,1.14063][-0.00183116,-0.999175,-0.040558][0.299781,0.954209,0][1.07757e-006,0.210938,1.31328][-0.00256553,-0.981532,-0.191281][0.335158,0.954209,0][0.0843761,0.226318,1.32988][0.551287,-0.818237,-0.163008][0.338559,0.936921,0][0.0843761,0.187701,1.44216][0.611745,-0.624372,-0.485724][0.361566,0.936921,0][0.0843761,0.187701,1.44216][0.611745,-0.624372,-0.485724][0.361566,0.936921,0][1.11356e-006,0.177539,1.42031][0.000641875,-0.772068,-0.63554][0.357088,0.954209,0][1.07757e-006,0.210938,1.31328][-0.00256553,-0.981532,-0.191281][0.335158,0.954209,0][1.11356e-006,0.177539,1.42031][0.000641875,-0.772068,-0.63554][0.870783,0.620768,0][0.0843761,0.187701,1.44216][0.611745,-0.624372,-0.485724][0.872865,0.638057,0][0.0843761,0.1125,1.48047][0.630861,-0.146018,-0.762032][0.857457,0.638057,0][0.0843761,0.1125,1.48047][0.630861,-0.146018,-0.762032][0.857457,0.638057,0][1.09971e-006,0.1125,1.45703][-0.00339488,-0.154746,-0.987948][0.857457,0.620768,0][1.11356e-006,0.177539,1.42031][0.000641875,-0.772068,-0.63554][0.870783,0.620768,0][0.0843759,0.242578,0.899219][0.643193,-0.765676,-0.00651759][0.158603,0.843791,0][0.112501,0.28125,0.882031][0.971276,0.237943,0.00245936][0.167177,0.842501,0][0.112501,0.278613,1.16289][0.999931,0.00227662,0.0114849][0.151365,0.897837,0][0.112501,0.278613,1.16289][0.999931,0.00227662,0.0114849][0.151365,0.897837,0][0.084376,0.240546,1.14758][0.539351,-0.841351,-0.0350444][0.144679,0.89274,0][0.0843759,0.242578,0.899219][0.643193,-0.765676,-0.00651759][0.158603,0.843791,0][0.084376,0.240546,1.14758][0.539351,-0.841351,-0.0350444][0.144679,0.89274,0][0.112501,0.278613,1.16289][0.999931,0.00227662,0.0114849][0.151365,0.897837,0][0.112501,0.260156,1.36641][0.999168,-0.0113043,0.0391786][0.136638,0.937033,0][0.112501,0.260156,1.36641][0.999168,-0.0113043,0.0391786][0.136638,0.937033,0][0.0843761,0.226318,1.32988][0.551287,-0.818237,-0.163008][0.131943,0.927976,0][0.084376,0.240546,1.14758][0.539351,-0.841351,-0.0350444][0.144679,0.89274,0][0.0843761,0.226318,1.32988][0.551287,-0.818237,-0.163008][0.131943,0.927976,0][0.112501,0.260156,1.36641][0.999168,-0.0113043,0.0391786][0.136638,0.937033,0][0.112501,0.210059,1.49023][0.996038,-0.0663925,0.0591675][0.12,0.958765,0][0.112501,0.210059,1.49023][0.996038,-0.0663925,0.0591675][0.12,0.958765,0][0.0843761,0.187701,1.44216][0.611745,-0.624372,-0.485724][0.118201,0.948052,0][0.0843761,0.226318,1.32988][0.551287,-0.818237,-0.163008][0.131943,0.927976,0][0.0843761,0.187701,1.44216][0.611745,-0.624372,-0.485724][0.872865,0.638057,0][0.112501,0.210059,1.49023][0.996038,-0.0663925,0.0591675][0.877446,0.643819,0][0.112501,0.1125,1.53203][0.998112,-0.0605968,0.0100636][0.857457,0.643819,0][0.112501,0.1125,1.53203][0.998112,-0.0605968,0.0100636][0.857457,0.643819,0][0.0843761,0.1125,1.48047][0.630861,-0.146018,-0.762032][0.857457,0.638057,0][0.0843761,0.187701,1.44216][0.611745,-0.624372,-0.485724][0.872865,0.638057,0][0.112501,0.28125,0.882031][0.971276,0.237943,0.00245936][0.167177,0.842501,0][0.0843759,0.319922,0.864844][0.429505,0.903015,0.00946833][0.175752,0.841212,0][0.0843761,0.316681,1.1782][0.542566,0.838511,0.0502133][0.158051,0.902933,0][0.0843761,0.316681,1.1782][0.542566,0.838511,0.0502133][0.158051,0.902933,0][0.112501,0.278613,1.16289][0.999931,0.00227662,0.0114849][0.151365,0.897837,0][0.112501,0.28125,0.882031][0.971276,0.237943,0.00245936][0.167177,0.842501,0][0.112501,0.278613,1.16289][0.999931,0.00227662,0.0114849][0.151365,0.897837,0][0.0843761,0.316681,1.1782][0.542566,0.838511,0.0502133][0.158051,0.902933,0][0.0843762,0.293994,1.40293][0.562948,0.795061,0.225761][0.141334,0.94609,0][0.0843762,0.293994,1.40293][0.562948,0.795061,0.225761][0.141334,0.94609,0][0.112501,0.260156,1.36641][0.999168,-0.0113043,0.0391786][0.136638,0.937033,0][0.112501,0.278613,1.16289][0.999931,0.00227662,0.0114849][0.151365,0.897837,0][0.112501,0.260156,1.36641][0.999168,-0.0113043,0.0391786][0.136638,0.937033,0][0.0843762,0.293994,1.40293][0.562948,0.795061,0.225761][0.141334,0.94609,0][0.0843762,0.232416,1.53831][0.621897,0.51984,0.585671][0.121799,0.969478,0][0.0843762,0.232416,1.53831][0.621897,0.51984,0.585671][0.121799,0.969478,0][0.112501,0.210059,1.49023][0.996038,-0.0663925,0.0591675][0.12,0.958765,0][0.112501,0.260156,1.36641][0.999168,-0.0113043,0.0391786][0.136638,0.937033,0][0.112501,0.210059,1.49023][0.996038,-0.0663925,0.0591675][0.627393,0.698509,0][0.0843762,0.232416,1.53831][0.621897,0.51984,0.585671][0.631974,0.704272,0][0.0843762,0.1125,1.58359][0.629265,0.0432929,0.775984][0.607403,0.704272,0][0.0843762,0.1125,1.58359][0.629265,0.0432929,0.775984][0.607403,0.704272,0][0.112501,0.1125,1.53203][0.998112,-0.0605968,0.0100636][0.607403,0.698509,0][0.112501,0.210059,1.49023][0.996038,-0.0663925,0.0591675][0.627393,0.698509,0][0.0843759,0.319922,0.864844][0.429505,0.903015,0.00946833][0.824356,0.432967,0][9.16429e-007,0.3375,0.857031][-0.0685125,0.997594,0.010565][0.825957,0.450255,0][1.07509e-006,0.333984,1.18516][0.000913579,0.99838,0.0568935][0.758724,0.450255,0][1.07509e-006,0.333984,1.18516][0.000913579,0.99838,0.0568935][0.758724,0.450255,0][0.0843761,0.316681,1.1782][0.542566,0.838511,0.0502133][0.76015,0.432967,0][0.0843759,0.319922,0.864844][0.429505,0.903015,0.00946833][0.824356,0.432967,0][0.0843761,0.316681,1.1782][0.542566,0.838511,0.0502133][0.76015,0.432967,0][1.07509e-006,0.333984,1.18516][0.000913579,0.99838,0.0568935][0.758724,0.450255,0][1.17761e-006,0.309375,1.41953][-0.0010362,0.96377,0.266734][0.710701,0.450255,0][1.17761e-006,0.309375,1.41953][-0.0010362,0.96377,0.266734][0.710701,0.450255,0][0.0843762,0.293994,1.40293][0.562948,0.795061,0.225761][0.714103,0.432967,0][0.0843761,0.316681,1.1782][0.542566,0.838511,0.0502133][0.76015,0.432967,0][0.0843762,0.293994,1.40293][0.562948,0.795061,0.225761][0.644591,0.704272,0][1.17761e-006,0.309375,1.41953][-0.0010362,0.96377,0.266734][0.647743,0.72156,0][1.2137e-006,0.242578,1.56016][-0.00266023,0.677428,0.735585][0.634056,0.72156,0][1.2137e-006,0.242578,1.56016][-0.00266023,0.677428,0.735585][0.634056,0.72156,0][0.0843762,0.232416,1.53831][0.621897,0.51984,0.585671][0.631974,0.704272,0][0.0843762,0.293994,1.40293][0.562948,0.795061,0.225761][0.644591,0.704272,0][0.0843762,0.232416,1.53831][0.621897,0.51984,0.585671][0.631974,0.704272,0][1.2137e-006,0.242578,1.56016][-0.00266023,0.677428,0.735585][0.634056,0.72156,0][1.17303e-006,0.1125,1.60703][0.00199165,0.0763455,0.997079][0.607403,0.72156,0][1.17303e-006,0.1125,1.60703][0.00199165,0.0763455,0.997079][0.607403,0.72156,0][0.0843762,0.1125,1.58359][0.629265,0.0432929,0.775984][0.607403,0.704272,0][0.0843762,0.232416,1.53831][0.621897,0.51984,0.585671][0.631974,0.704272,0][9.16429e-007,0.3375,0.857031][-0.0685125,0.997594,0.010565][0.825957,0.450255,0][-0.0843741,0.319922,0.864844][-0.643253,0.765615,0.00771937][0.824356,0.467543,0][-0.0843739,0.316681,1.1782][-0.541111,0.839876,0.0425065][0.76015,0.467543,0][-0.0843739,0.316681,1.1782][-0.541111,0.839876,0.0425065][0.76015,0.467543,0][1.07509e-006,0.333984,1.18516][0.000913579,0.99838,0.0568935][0.758724,0.450255,0][9.16429e-007,0.3375,0.857031][-0.0685125,0.997594,0.010565][0.825957,0.450255,0][1.07509e-006,0.333984,1.18516][0.000913579,0.99838,0.0568935][0.758724,0.450255,0][-0.0843739,0.316681,1.1782][-0.541111,0.839876,0.0425065][0.76015,0.467543,0][-0.0843738,0.293994,1.40293][-0.562383,0.802694,0.198514][0.714103,0.467543,0][-0.0843738,0.293994,1.40293][-0.562383,0.802694,0.198514][0.714103,0.467543,0][1.17761e-006,0.309375,1.41953][-0.0010362,0.96377,0.266734][0.710701,0.450255,0][1.07509e-006,0.333984,1.18516][0.000913579,0.99838,0.0568935][0.758724,0.450255,0][1.17761e-006,0.309375,1.41953][-0.0010362,0.96377,0.266734][0.647743,0.72156,0][-0.0843738,0.293994,1.40293][-0.562383,0.802694,0.198514][0.644591,0.738849,0][-0.0843738,0.232416,1.53831][-0.623079,0.565181,0.540688][0.631974,0.738849,0][-0.0843738,0.232416,1.53831][-0.623079,0.565181,0.540688][0.631974,0.738849,0][1.2137e-006,0.242578,1.56016][-0.00266023,0.677428,0.735585][0.634056,0.72156,0][1.17761e-006,0.309375,1.41953][-0.0010362,0.96377,0.266734][0.647743,0.72156,0][1.2137e-006,0.242578,1.56016][-0.00266023,0.677428,0.735585][0.634056,0.72156,0][-0.0843738,0.232416,1.53831][-0.623079,0.565181,0.540688][0.631974,0.738849,0][-0.0843738,0.1125,1.58359][-0.628363,0.0861403,0.773136][0.607403,0.738849,0][-0.0843738,0.1125,1.58359][-0.628363,0.0861403,0.773136][0.607403,0.738849,0][1.17303e-006,0.1125,1.60703][0.00199165,0.0763455,0.997079][0.607403,0.72156,0][1.2137e-006,0.242578,1.56016][-0.00266023,0.677428,0.735585][0.634056,0.72156,0][-0.0843741,0.319922,0.864844][-0.643253,0.765615,0.00771937][0.821199,0.01,0][-0.112499,0.28125,0.882031][-0.971317,-0.237779,-0.00194679][0.829717,0.0116248,0][-0.112499,0.278613,1.16289][-0.999959,-0.00313342,-0.00855136][0.843348,0.0675376,0][-0.112499,0.278613,1.16289][-0.999959,-0.00313342,-0.00855136][0.843348,0.0675376,0][-0.0843739,0.316681,1.1782][-0.541111,0.839876,0.0425065][0.836467,0.0723679,0][-0.0843741,0.319922,0.864844][-0.643253,0.765615,0.00771937][0.821199,0.01,0][-0.0843739,0.316681,1.1782][-0.541111,0.839876,0.0425065][0.836467,0.0723679,0][-0.112499,0.278613,1.16289][-0.999959,-0.00313342,-0.00855136][0.843348,0.0675376,0][-0.112499,0.260156,1.36641][-0.999597,0.00236412,-0.028289][0.856526,0.107281,0][-0.112499,0.260156,1.36641][-0.999597,0.00236412,-0.028289][0.856526,0.107281,0][-0.0843738,0.293994,1.40293][-0.562383,0.802694,0.198514][0.851479,0.116147,0][-0.0843739,0.316681,1.1782][-0.541111,0.839876,0.0425065][0.836467,0.0723679,0][-0.0843738,0.293994,1.40293][-0.562383,0.802694,0.198514][0.851479,0.116147,0][-0.112499,0.260156,1.36641][-0.999597,0.00236412,-0.028289][0.856526,0.107281,0][-0.112499,0.210059,1.49023][-0.997805,0.0466247,-0.0470218][0.872299,0.129649,0][-0.112499,0.210059,1.49023][-0.997805,0.0466247,-0.0470218][0.872299,0.129649,0][-0.0843738,0.232416,1.53831][-0.623079,0.565181,0.540688][0.870082,0.140283,0][-0.0843738,0.293994,1.40293][-0.562383,0.802694,0.198514][0.851479,0.116147,0][-0.0843738,0.232416,1.53831][-0.623079,0.565181,0.540688][0.631974,0.738849,0][-0.112499,0.210059,1.49023][-0.997805,0.0466247,-0.0470218][0.627393,0.744611,0][-0.112499,0.1125,1.53203][-0.998776,0.0486472,-0.00892921][0.607403,0.744611,0][-0.112499,0.1125,1.53203][-0.998776,0.0486472,-0.00892921][0.607403,0.744611,0][-0.0843738,0.1125,1.58359][-0.628363,0.0861403,0.773136][0.607403,0.738849,0][-0.0843738,0.232416,1.53831][-0.623079,0.565181,0.540688][0.631974,0.738849,0][-0.112499,0.28125,0.882031][-0.971317,-0.237779,-0.00194679][0.829717,0.0116248,0][-0.0843741,0.242578,0.899219][-0.429675,-0.902955,-0.00716057][0.838234,0.0132495,0][-0.084374,0.240546,1.14758][-0.541127,-0.840104,-0.0375018][0.850228,0.0627072,0][-0.084374,0.240546,1.14758][-0.541127,-0.840104,-0.0375018][0.850228,0.0627072,0][-0.112499,0.278613,1.16289][-0.999959,-0.00313342,-0.00855136][0.843348,0.0675376,0][-0.112499,0.28125,0.882031][-0.971317,-0.237779,-0.00194679][0.829717,0.0116248,0][-0.112499,0.278613,1.16289][-0.999959,-0.00313342,-0.00855136][0.843348,0.0675376,0][-0.084374,0.240546,1.14758][-0.541127,-0.840104,-0.0375018][0.850228,0.0627072,0][-0.0843739,0.226318,1.32988][-0.551822,-0.815806,-0.173069][0.861573,0.0984151,0][-0.0843739,0.226318,1.32988][-0.551822,-0.815806,-0.173069][0.861573,0.0984151,0][-0.112499,0.260156,1.36641][-0.999597,0.00236412,-0.028289][0.856526,0.107281,0][-0.112499,0.278613,1.16289][-0.999959,-0.00313342,-0.00855136][0.843348,0.0675376,0][-0.112499,0.260156,1.36641][-0.999597,0.00236412,-0.028289][0.856526,0.107281,0][-0.0843739,0.226318,1.32988][-0.551822,-0.815806,-0.173069][0.861573,0.0984151,0][-0.0843739,0.187701,1.44216][-0.610485,-0.585202,-0.53371][0.874517,0.119015,0][-0.0843739,0.187701,1.44216][-0.610485,-0.585202,-0.53371][0.874517,0.119015,0][-0.112499,0.210059,1.49023][-0.997805,0.0466247,-0.0470218][0.872299,0.129649,0][-0.112499,0.260156,1.36641][-0.999597,0.00236412,-0.028289][0.856526,0.107281,0][-0.112499,0.210059,1.49023][-0.997805,0.0466247,-0.0470218][0.877446,0.597717,0][-0.0843739,0.187701,1.44216][-0.610485,-0.585202,-0.53371][0.872865,0.60348,0][-0.0843739,0.1125,1.48047][-0.632325,-0.0741885,-0.771143][0.857457,0.60348,0][-0.0843739,0.1125,1.48047][-0.632325,-0.0741885,-0.771143][0.857457,0.60348,0][-0.112499,0.1125,1.53203][-0.998776,0.0486472,-0.00892921][0.857457,0.597717,0][-0.112499,0.210059,1.49023][-0.997805,0.0466247,-0.0470218][0.877446,0.597717,0][-0.0843741,0.242578,0.899219][-0.429675,-0.902955,-0.00716057][0.250317,0.971498,0][8.85881e-007,0.225,0.907031][0.0684016,-0.997628,-0.00772621][0.251917,0.954209,0][9.99194e-007,0.223242,1.14063][-0.00183116,-0.999175,-0.040558][0.299781,0.954209,0][9.99194e-007,0.223242,1.14063][-0.00183116,-0.999175,-0.040558][0.299781,0.954209,0][-0.084374,0.240546,1.14758][-0.541127,-0.840104,-0.0375018][0.301206,0.971498,0][-0.0843741,0.242578,0.899219][-0.429675,-0.902955,-0.00716057][0.250317,0.971498,0][-0.084374,0.240546,1.14758][-0.541127,-0.840104,-0.0375018][0.301206,0.971498,0][9.99194e-007,0.223242,1.14063][-0.00183116,-0.999175,-0.040558][0.299781,0.954209,0][1.07757e-006,0.210938,1.31328][-0.00256553,-0.981532,-0.191281][0.335158,0.954209,0][1.07757e-006,0.210938,1.31328][-0.00256553,-0.981532,-0.191281][0.335158,0.954209,0][-0.0843739,0.226318,1.32988][-0.551822,-0.815806,-0.173069][0.338559,0.971498,0][-0.084374,0.240546,1.14758][-0.541127,-0.840104,-0.0375018][0.301206,0.971498,0][-0.0843739,0.226318,1.32988][-0.551822,-0.815806,-0.173069][0.338559,0.971498,0][1.07757e-006,0.210938,1.31328][-0.00256553,-0.981532,-0.191281][0.335158,0.954209,0][1.11356e-006,0.177539,1.42031][0.000641875,-0.772068,-0.63554][0.357088,0.954209,0][1.11356e-006,0.177539,1.42031][0.000641875,-0.772068,-0.63554][0.357088,0.954209,0][-0.0843739,0.187701,1.44216][-0.610485,-0.585202,-0.53371][0.361566,0.971498,0][-0.0843739,0.226318,1.32988][-0.551822,-0.815806,-0.173069][0.338559,0.971498,0][-0.0843739,0.187701,1.44216][-0.610485,-0.585202,-0.53371][0.872865,0.60348,0][1.11356e-006,0.177539,1.42031][0.000641875,-0.772068,-0.63554][0.870783,0.620768,0][1.09971e-006,0.1125,1.45703][-0.00339488,-0.154746,-0.987948][0.857457,0.620768,0][1.09971e-006,0.1125,1.45703][-0.00339488,-0.154746,-0.987948][0.857457,0.620768,0][-0.0843739,0.1125,1.48047][-0.632325,-0.0741885,-0.771143][0.857457,0.60348,0][-0.0843739,0.187701,1.44216][-0.610485,-0.585202,-0.53371][0.872865,0.60348,0][1.09971e-006,0.1125,1.45703][-0.00339488,-0.154746,-0.987948][0.857457,0.620768,0][0.0843761,0.1125,1.48047][0.630861,-0.146018,-0.762032][0.857457,0.638057,0][0.0843761,0.000704885,1.4588][0.615086,0.254087,-0.746398][0.83455,0.638057,0][0.0843761,0.000704885,1.4588][0.615086,0.254087,-0.746398][0.83455,0.638057,0][1.04034e-006,0.0105469,1.4375][-0.00523934,0.325175,-0.945639][0.836567,0.620768,0][1.09971e-006,0.1125,1.45703][-0.00339488,-0.154746,-0.987948][0.857457,0.620768,0][1.04034e-006,0.0105469,1.4375][-0.00523934,0.325175,-0.945639][0.836567,0.620768,0][0.0843761,0.000704885,1.4588][0.615086,0.254087,-0.746398][0.83455,0.638057,0][0.084376,-0.127515,1.39092][0.583295,0.465344,-0.665749][0.808278,0.638057,0][0.084376,-0.127515,1.39092][0.583295,0.465344,-0.665749][0.808278,0.638057,0][9.50031e-007,-0.1125,1.37578][-0.0138316,0.566893,-0.823675][0.811354,0.620768,0][1.04034e-006,0.0105469,1.4375][-0.00523934,0.325175,-0.945639][0.836567,0.620768,0][9.50031e-007,-0.1125,1.37578][-0.0138316,0.566893,-0.823675][0.811354,0.620768,0][0.084376,-0.127515,1.39092][0.583295,0.465344,-0.665749][0.808278,0.638057,0][0.0843758,-0.254086,1.2725][0.54489,0.641463,-0.540019][0.782343,0.638057,0][0.0843758,-0.254086,1.2725][0.54489,0.641463,-0.540019][0.782343,0.638057,0][8.36814e-007,-0.235547,1.26719][-0.0112685,0.764819,-0.644146][0.786142,0.620768,0][9.50031e-007,-0.1125,1.37578][-0.0138316,0.566893,-0.823675][0.811354,0.620768,0][8.36814e-007,-0.235547,1.26719][-0.0112685,0.764819,-0.644146][0.786142,0.620768,0][0.0843758,-0.254086,1.2725][0.54489,0.641463,-0.540019][0.782343,0.638057,0][0.0843757,-0.360938,1.09922][0.413376,0.772438,-0.48214][0.76045,0.638057,0][0.0843757,-0.360938,1.09922][0.413376,0.772438,-0.48214][0.76045,0.638057,0][7.08705e-007,-0.3375,1.10703][-0.0735847,0.843841,-0.531524][0.765252,0.620768,0][8.36814e-007,-0.235547,1.26719][-0.0112685,0.764819,-0.644146][0.786142,0.620768,0][0.0843761,0.1125,1.48047][0.630861,-0.146018,-0.762032][0.857457,0.638057,0][0.112501,0.1125,1.53203][0.998112,-0.0605968,0.0100636][0.857457,0.643819,0][0.112501,-0.0209473,1.50566][0.999341,-0.0358497,-0.00569341][0.830114,0.643819,0][0.112501,-0.0209473,1.50566][0.999341,-0.0358497,-0.00569341][0.830114,0.643819,0][0.0843761,0.000704885,1.4588][0.615086,0.254087,-0.746398][0.83455,0.638057,0][0.0843761,0.1125,1.48047][0.630861,-0.146018,-0.762032][0.857457,0.638057,0][0.0843761,0.000704885,1.4588][0.615086,0.254087,-0.746398][0.83455,0.638057,0][0.112501,-0.0209473,1.50566][0.999341,-0.0358497,-0.00569341][0.830114,0.643819,0][0.112501,-0.160547,1.42422][0.99902,-0.043879,-0.00587595][0.80151,0.643819,0][0.112501,-0.160547,1.42422][0.99902,-0.043879,-0.00587595][0.80151,0.643819,0][0.084376,-0.127515,1.39092][0.583295,0.465344,-0.665749][0.808278,0.638057,0][0.0843761,0.000704885,1.4588][0.615086,0.254087,-0.746398][0.83455,0.638057,0][0.084376,-0.127515,1.39092][0.583295,0.465344,-0.665749][0.808278,0.638057,0][0.112501,-0.160547,1.42422][0.99902,-0.043879,-0.00587595][0.80151,0.643819,0][0.112501,-0.294873,1.28418][0.999157,-0.0369142,-0.0179651][0.773986,0.643819,0][0.112501,-0.294873,1.28418][0.999157,-0.0369142,-0.0179651][0.773986,0.643819,0][0.0843758,-0.254086,1.2725][0.54489,0.641463,-0.540019][0.782343,0.638057,0][0.084376,-0.127515,1.39092][0.583295,0.465344,-0.665749][0.808278,0.638057,0][0.0843758,-0.254086,1.2725][0.54489,0.641463,-0.540019][0.0401713,0.890484,0][0.112501,-0.294873,1.28418][0.999157,-0.0369142,-0.0179651][0.0314786,0.890571,0][0.112501,-0.4125,1.08203][0.972205,0.199003,-0.12335][0.0192495,0.844236,0][0.112501,-0.4125,1.08203][0.972205,0.199003,-0.12335][0.0192495,0.844236,0][0.0843757,-0.360938,1.09922][0.413376,0.772438,-0.48214][0.028499,0.850439,0][0.0843758,-0.254086,1.2725][0.54489,0.641463,-0.540019][0.0401713,0.890484,0][0.112501,0.1125,1.53203][0.998112,-0.0605968,0.0100636][0.607403,0.698509,0][0.0843762,0.1125,1.58359][0.629265,0.0432929,0.775984][0.607403,0.704272,0][0.0843761,-0.0425996,1.55253][0.620416,-0.307163,0.721619][0.575623,0.704272,0][0.0843761,-0.0425996,1.55253][0.620416,-0.307163,0.721619][0.575623,0.704272,0][0.112501,-0.0209473,1.50566][0.999341,-0.0358497,-0.00569341][0.58006,0.698509,0][0.112501,0.1125,1.53203][0.998112,-0.0605968,0.0100636][0.607403,0.698509,0][0.112501,-0.0209473,1.50566][0.999341,-0.0358497,-0.00569341][0.58006,0.698509,0][0.0843761,-0.0425996,1.55253][0.620416,-0.307163,0.721619][0.575623,0.704272,0][0.084376,-0.193579,1.45752][0.597115,-0.529732,0.60236][0.544688,0.704272,0][0.084376,-0.193579,1.45752][0.597115,-0.529732,0.60236][0.544688,0.704272,0][0.112501,-0.160547,1.42422][0.99902,-0.043879,-0.00587595][0.551456,0.698509,0][0.112501,-0.0209473,1.50566][0.999341,-0.0358497,-0.00569341][0.58006,0.698509,0][0.112501,-0.160547,1.42422][0.99902,-0.043879,-0.00587595][0.0503879,0.925547,0][0.084376,-0.193579,1.45752][0.597115,-0.529732,0.60236][0.0420498,0.930327,0][0.0843758,-0.33566,1.29586][0.559989,-0.679874,0.47348][0.0227858,0.890658,0][0.0843758,-0.33566,1.29586][0.559989,-0.679874,0.47348][0.838488,0.467543,0][0.112501,-0.294873,1.28418][0.999157,-0.0369142,-0.0179651][0.833729,0.458576,0][0.112501,-0.160547,1.42422][0.99902,-0.043879,-0.00587595][0.836909,0.431237,0][0.112501,-0.294873,1.28418][0.999157,-0.0369142,-0.0179651][0.0314786,0.890571,0][0.0843758,-0.33566,1.29586][0.559989,-0.679874,0.47348][0.0227858,0.890658,0][0.0843756,-0.464063,1.06484][0.641886,-0.668126,0.376284][0.01,0.838034,0][0.0843756,-0.464063,1.06484][0.641886,-0.668126,0.376284][0.01,0.838034,0][0.112501,-0.4125,1.08203][0.972205,0.199003,-0.12335][0.0192495,0.844236,0][0.112501,-0.294873,1.28418][0.999157,-0.0369142,-0.0179651][0.0314786,0.890571,0][0.0843762,0.1125,1.58359][0.629265,0.0432929,0.775984][0.607403,0.704272,0][1.17303e-006,0.1125,1.60703][0.00199165,0.0763455,0.997079][0.607403,0.72156,0][1.07618e-006,-0.0524415,1.57383][0.00389019,-0.375113,0.926971][0.573607,0.72156,0][1.07618e-006,-0.0524415,1.57383][0.00389019,-0.375113,0.926971][0.573607,0.72156,0][0.0843761,-0.0425996,1.55253][0.620416,-0.307163,0.721619][0.575623,0.704272,0][0.0843762,0.1125,1.58359][0.629265,0.0432929,0.775984][0.607403,0.704272,0][0.0843761,-0.0425996,1.55253][0.620416,-0.307163,0.721619][0.575623,0.704272,0][1.07618e-006,-0.0524415,1.57383][0.00389019,-0.375113,0.926971][0.573607,0.72156,0][9.50413e-007,-0.208594,1.47266][0.0105186,-0.656438,0.754307][0.541611,0.72156,0][9.50413e-007,-0.208594,1.47266][0.0105186,-0.656438,0.754307][0.541611,0.72156,0][0.084376,-0.193579,1.45752][0.597115,-0.529732,0.60236][0.544688,0.704272,0][0.0843761,-0.0425996,1.55253][0.620416,-0.307163,0.721619][0.575623,0.704272,0][0.084376,-0.193579,1.45752][0.597115,-0.529732,0.60236][0.544688,0.704272,0][9.50413e-007,-0.208594,1.47266][0.0105186,-0.656438,0.754307][0.541611,0.72156,0][7.95432e-007,-0.354199,1.30117][0.00812779,-0.82197,0.569473][0.511777,0.72156,0][7.95432e-007,-0.354199,1.30117][0.00812779,-0.82197,0.569473][0.511777,0.72156,0][0.0843758,-0.33566,1.29586][0.559989,-0.679874,0.47348][0.515575,0.704272,0][0.084376,-0.193579,1.45752][0.597115,-0.529732,0.60236][0.544688,0.704272,0][0.0843758,-0.33566,1.29586][0.559989,-0.679874,0.47348][0.515575,0.704272,0][7.95432e-007,-0.354199,1.30117][0.00812779,-0.82197,0.569473][0.511777,0.72156,0][6.10953e-007,-0.4875,1.05703][0.0733757,-0.874124,0.480128][0.484463,0.72156,0][6.10953e-007,-0.4875,1.05703][0.0733757,-0.874124,0.480128][0.484463,0.72156,0][0.0843756,-0.464063,1.06484][0.641886,-0.668126,0.376284][0.489266,0.704272,0][0.0843758,-0.33566,1.29586][0.559989,-0.679874,0.47348][0.515575,0.704272,0][1.17303e-006,0.1125,1.60703][0.00199165,0.0763455,0.997079][0.607403,0.72156,0][-0.0843738,0.1125,1.58359][-0.628363,0.0861403,0.773136][0.607403,0.738849,0][-0.0843739,-0.0425995,1.55253][-0.617685,-0.275043,0.736761][0.575623,0.738849,0][-0.0843739,-0.0425995,1.55253][-0.617685,-0.275043,0.736761][0.575623,0.738849,0][1.07618e-006,-0.0524415,1.57383][0.00389019,-0.375113,0.926971][0.573607,0.72156,0][1.17303e-006,0.1125,1.60703][0.00199165,0.0763455,0.997079][0.607403,0.72156,0][1.07618e-006,-0.0524415,1.57383][0.00389019,-0.375113,0.926971][0.573607,0.72156,0][-0.0843739,-0.0425995,1.55253][-0.617685,-0.275043,0.736761][0.575623,0.738849,0][-0.0843741,-0.193579,1.45752][-0.588138,-0.515656,0.623051][0.544688,0.738849,0][-0.0843741,-0.193579,1.45752][-0.588138,-0.515656,0.623051][0.544688,0.738849,0][9.50413e-007,-0.208594,1.47266][0.0105186,-0.656438,0.754307][0.541611,0.72156,0][1.07618e-006,-0.0524415,1.57383][0.00389019,-0.375113,0.926971][0.573607,0.72156,0][9.50413e-007,-0.208594,1.47266][0.0105186,-0.656438,0.754307][0.541611,0.72156,0][-0.0843741,-0.193579,1.45752][-0.588138,-0.515656,0.623051][0.544688,0.738849,0][-0.0843742,-0.33566,1.29586][-0.552401,-0.677499,0.485642][0.515575,0.738849,0][-0.0843742,-0.33566,1.29586][-0.552401,-0.677499,0.485642][0.515575,0.738849,0][7.95432e-007,-0.354199,1.30117][0.00812779,-0.82197,0.569473][0.511777,0.72156,0][9.50413e-007,-0.208594,1.47266][0.0105186,-0.656438,0.754307][0.541611,0.72156,0][7.95432e-007,-0.354199,1.30117][0.00812779,-0.82197,0.569473][0.511777,0.72156,0][-0.0843742,-0.33566,1.29586][-0.552401,-0.677499,0.485642][0.515575,0.738849,0][-0.0843744,-0.464062,1.06484][-0.425734,-0.792156,0.437311][0.489266,0.738849,0][-0.0843744,-0.464062,1.06484][-0.425734,-0.792156,0.437311][0.489266,0.738849,0][6.10953e-007,-0.4875,1.05703][0.0733757,-0.874124,0.480128][0.484463,0.72156,0][7.95432e-007,-0.354199,1.30117][0.00812779,-0.82197,0.569473][0.511777,0.72156,0][-0.0843738,0.1125,1.58359][-0.628363,0.0861403,0.773136][0.607403,0.738849,0][-0.112499,0.1125,1.53203][-0.998776,0.0486472,-0.00892921][0.607403,0.744611,0][-0.112499,-0.0209473,1.50566][-0.999573,0.0291062,0.0024559][0.58006,0.744611,0][-0.112499,-0.0209473,1.50566][-0.999573,0.0291062,0.0024559][0.58006,0.744611,0][-0.0843739,-0.0425995,1.55253][-0.617685,-0.275043,0.736761][0.575623,0.738849,0][-0.0843738,0.1125,1.58359][-0.628363,0.0861403,0.773136][0.607403,0.738849,0][-0.0843739,-0.0425995,1.55253][-0.617685,-0.275043,0.736761][0.575623,0.738849,0][-0.112499,-0.0209473,1.50566][-0.999573,0.0291062,0.0024559][0.58006,0.744611,0][-0.112499,-0.160547,1.42422][-0.999502,0.0309369,-0.00624331][0.551456,0.744611,0][-0.112499,-0.160547,1.42422][-0.999502,0.0309369,-0.00624331][0.551456,0.744611,0][-0.0843741,-0.193579,1.45752][-0.588138,-0.515656,0.623051][0.544688,0.738849,0][-0.0843739,-0.0425995,1.55253][-0.617685,-0.275043,0.736761][0.575623,0.738849,0][-0.0843741,-0.193579,1.45752][-0.588138,-0.515656,0.623051][0.544688,0.738849,0][-0.112499,-0.160547,1.42422][-0.999502,0.0309369,-0.00624331][0.551456,0.744611,0][-0.112499,-0.294873,1.28418][-0.999561,0.0295881,0.00152952][0.523933,0.744611,0][-0.112499,-0.294873,1.28418][-0.999561,0.0295881,0.00152952][0.523933,0.744611,0][-0.0843742,-0.33566,1.29586][-0.552401,-0.677499,0.485642][0.515575,0.738849,0][-0.0843741,-0.193579,1.45752][-0.588138,-0.515656,0.623051][0.544688,0.738849,0][-0.0843742,-0.33566,1.29586][-0.552401,-0.677499,0.485642][0.972109,0.0654054,0][-0.112499,-0.294873,1.28418][-0.999561,0.0295881,0.00152952][0.963426,0.0649778,0][-0.112499,-0.4125,1.08203][-0.974329,-0.196976,0.109008][0.977463,0.0191575,0][-0.112499,-0.4125,1.08203][-0.974329,-0.196976,0.109008][0.977463,0.0191575,0][-0.0843744,-0.464062,1.06484][-0.425734,-0.792156,0.437311][0.986948,0.0133224,0][-0.0843742,-0.33566,1.29586][-0.552401,-0.677499,0.485642][0.972109,0.0654054,0][-0.112499,0.1125,1.53203][-0.998776,0.0486472,-0.00892921][0.857457,0.597717,0][-0.0843739,0.1125,1.48047][-0.632325,-0.0741885,-0.771143][0.857457,0.60348,0][-0.084374,0.000705004,1.4588][-0.617933,0.270271,-0.738318][0.83455,0.60348,0][-0.084374,0.000705004,1.4588][-0.617933,0.270271,-0.738318][0.83455,0.60348,0][-0.112499,-0.0209473,1.50566][-0.999573,0.0291062,0.0024559][0.830113,0.597717,0][-0.112499,0.1125,1.53203][-0.998776,0.0486472,-0.00892921][0.857457,0.597717,0][-0.112499,-0.0209473,1.50566][-0.999573,0.0291062,0.0024559][0.830113,0.597717,0][-0.084374,0.000705004,1.4588][-0.617933,0.270271,-0.738318][0.83455,0.60348,0][-0.0843741,-0.127515,1.39092][-0.594158,0.475632,-0.648653][0.808278,0.60348,0][-0.0843741,-0.127515,1.39092][-0.594158,0.475632,-0.648653][0.808278,0.60348,0][-0.112499,-0.160547,1.42422][-0.999502,0.0309369,-0.00624331][0.80151,0.597717,0][-0.112499,-0.0209473,1.50566][-0.999573,0.0291062,0.0024559][0.830113,0.597717,0][-0.112499,-0.160547,1.42422][-0.999502,0.0309369,-0.00624331][0.80151,0.597717,0][-0.0843741,-0.127515,1.39092][-0.594158,0.475632,-0.648653][0.808278,0.60348,0][-0.0843742,-0.254086,1.2725][-0.556494,0.651685,-0.515385][0.782343,0.60348,0][-0.0843742,-0.254086,1.2725][-0.556494,0.651685,-0.515385][0.782343,0.60348,0][-0.112499,-0.294873,1.28418][-0.999561,0.0295881,0.00152952][0.773986,0.597717,0][-0.112499,-0.160547,1.42422][-0.999502,0.0309369,-0.00624331][0.80151,0.597717,0][-0.112499,-0.294873,1.28418][-0.999561,0.0295881,0.00152952][0.963426,0.0649778,0][-0.0843742,-0.254086,1.2725][-0.556494,0.651685,-0.515385][0.954744,0.0645501,0][-0.0843743,-0.360938,1.09922][-0.638178,0.658237,-0.399315][0.967977,0.0249926,0][-0.0843743,-0.360938,1.09922][-0.638178,0.658237,-0.399315][0.967977,0.0249926,0][-0.112499,-0.4125,1.08203][-0.974329,-0.196976,0.109008][0.977463,0.0191575,0][-0.112499,-0.294873,1.28418][-0.999561,0.0295881,0.00152952][0.963426,0.0649778,0][-0.0843739,0.1125,1.48047][-0.632325,-0.0741885,-0.771143][0.857457,0.60348,0][1.09971e-006,0.1125,1.45703][-0.00339488,-0.154746,-0.987948][0.857457,0.620768,0][1.04034e-006,0.0105469,1.4375][-0.00523934,0.325175,-0.945639][0.836567,0.620768,0][1.04034e-006,0.0105469,1.4375][-0.00523934,0.325175,-0.945639][0.836567,0.620768,0][-0.084374,0.000705004,1.4588][-0.617933,0.270271,-0.738318][0.83455,0.60348,0][-0.0843739,0.1125,1.48047][-0.632325,-0.0741885,-0.771143][0.857457,0.60348,0][-0.084374,0.000705004,1.4588][-0.617933,0.270271,-0.738318][0.83455,0.60348,0][1.04034e-006,0.0105469,1.4375][-0.00523934,0.325175,-0.945639][0.836567,0.620768,0][9.50031e-007,-0.1125,1.37578][-0.0138316,0.566893,-0.823675][0.811354,0.620768,0][9.50031e-007,-0.1125,1.37578][-0.0138316,0.566893,-0.823675][0.811354,0.620768,0][-0.0843741,-0.127515,1.39092][-0.594158,0.475632,-0.648653][0.808278,0.60348,0][-0.084374,0.000705004,1.4588][-0.617933,0.270271,-0.738318][0.83455,0.60348,0][-0.0843741,-0.127515,1.39092][-0.594158,0.475632,-0.648653][0.808278,0.60348,0][9.50031e-007,-0.1125,1.37578][-0.0138316,0.566893,-0.823675][0.811354,0.620768,0][8.36814e-007,-0.235547,1.26719][-0.0112685,0.764819,-0.644146][0.786142,0.620768,0][8.36814e-007,-0.235547,1.26719][-0.0112685,0.764819,-0.644146][0.786142,0.620768,0][-0.0843742,-0.254086,1.2725][-0.556494,0.651685,-0.515385][0.782343,0.60348,0][-0.0843741,-0.127515,1.39092][-0.594158,0.475632,-0.648653][0.808278,0.60348,0][-0.0843742,-0.254086,1.2725][-0.556494,0.651685,-0.515385][0.782343,0.60348,0][8.36814e-007,-0.235547,1.26719][-0.0112685,0.764819,-0.644146][0.786142,0.620768,0][7.08705e-007,-0.3375,1.10703][-0.0735847,0.843841,-0.531524][0.765252,0.620768,0][7.08705e-007,-0.3375,1.10703][-0.0735847,0.843841,-0.531524][0.765252,0.620768,0][-0.0843743,-0.360938,1.09922][-0.638178,0.658237,-0.399315][0.76045,0.60348,0][-0.0843742,-0.254086,1.2725][-0.556494,0.651685,-0.515385][0.782343,0.60348,0][0,-0.075,-0.742969][0.100414,0.967998,0.229992][0.649501,0.470005,0][0.185625,-0.139453,-0.742969][0.762089,0.63394,0.131682][0.645557,0.429937,0][0.167607,-0.0677125,-1.00112][0.653305,0.684621,0.323243][0.700502,0.432878,0][0.167607,-0.0677125,-1.00112][0.653305,0.684621,0.323243][0.700502,0.432878,0][-1.57511e-007,-0.019922,-0.982812][-0.00948683,0.841845,0.539636][0.699897,0.468764,0][0,-0.075,-0.742969][0.100414,0.967998,0.229992][0.649501,0.470005,0][-1.57511e-007,-0.019922,-0.982812][-0.00948683,0.841845,0.539636][0.830991,0.197943,0][0.167607,-0.0677125,-1.00112][0.653305,0.684621,0.323243][0.821199,0.1636,0][0.127969,0.0846679,-1.11016][0.631105,0.480622,0.608859][0.852422,0.171722,0][0.127969,0.0846679,-1.11016][0.631105,0.480622,0.608859][0.852422,0.171722,0][-1.43574e-007,0.1125,-1.08672][0.013332,0.491531,0.870758][0.858124,0.197943,0][-1.57511e-007,-0.019922,-0.982812][-0.00948683,0.841845,0.539636][0.830991,0.197943,0][-1.43574e-007,0.1125,-1.08672][0.013332,0.491531,0.870758][0.858124,0.197943,0][0.127969,0.0846679,-1.11016][0.631105,0.480622,0.608859][0.852422,0.171722,0][0.08833,0.262976,-1.17231][0.666104,0.419844,0.61647][0.888957,0.179844,0][0.08833,0.262976,-1.17231][0.666104,0.419844,0.61647][0.888957,0.179844,0][0,0.273047,-1.14375][0.0415913,0.480806,0.87584][0.89102,0.197943,0][-1.43574e-007,0.1125,-1.08672][0.013332,0.491531,0.870758][0.858124,0.197943,0][0,0.273047,-1.14375][0.0415913,0.480806,0.87584][0.89102,0.197943,0][0.08833,0.262976,-1.17231][0.666104,0.419844,0.61647][0.888957,0.179844,0][0.0703124,0.4125,-1.28984][0.667563,0.595271,0.447227][0.919594,0.183536,0][0.0703124,0.4125,-1.28984][0.667563,0.595271,0.447227][0.919594,0.183536,0][0,0.4125,-1.24297][0.00716274,0.756117,0.654397][0.919594,0.197943,0][0,0.273047,-1.14375][0.0415913,0.480806,0.87584][0.89102,0.197943,0][0.185625,-0.139453,-0.742969][0.762089,0.63394,0.131682][0.847043,0.328161,0][0.2475,-0.28125,-0.742969][0.981621,-0.139634,-0.130084][0.868724,0.347502,0][0.223476,-0.172852,-1.04141][0.977688,0.10022,-0.184614][0.811443,0.378348,0][0.223476,-0.172852,-1.04141][0.977688,0.10022,-0.184614][0.811443,0.378348,0][0.167607,-0.0677125,-1.00112][0.653305,0.684621,0.323243][0.800861,0.357847,0][0.185625,-0.139453,-0.742969][0.762089,0.63394,0.131682][0.847043,0.328161,0][0.167607,-0.0677125,-1.00112][0.653305,0.684621,0.323243][0.800861,0.357847,0][0.223476,-0.172852,-1.04141][0.977688,0.10022,-0.184614][0.811443,0.378348,0][0.170625,0.0234374,-1.16172][0.971804,0.188165,-0.142095][0.765019,0.36997,0][0.170625,0.0234374,-1.16172][0.971804,0.188165,-0.142095][0.765019,0.36997,0][0.127969,0.0846679,-1.11016][0.631105,0.480622,0.608859][0.76269,0.353734,0][0.167607,-0.0677125,-1.00112][0.653305,0.684621,0.323243][0.800861,0.357847,0][0.127969,0.0846679,-1.11016][0.631105,0.480622,0.608859][0.76269,0.353734,0][0.170625,0.0234374,-1.16172][0.971804,0.188165,-0.142095][0.765019,0.36997,0][0.117773,0.24082,-1.23516][0.99027,0.138611,-0.0123642][0.721764,0.351547,0][0.117773,0.24082,-1.23516][0.99027,0.138611,-0.0123642][0.721764,0.351547,0][0.08833,0.262976,-1.17231][0.666104,0.419844,0.61647][0.726948,0.338917,0][0.127969,0.0846679,-1.11016][0.631105,0.480622,0.608859][0.76269,0.353734,0][0.08833,0.262976,-1.17231][0.666104,0.419844,0.61647][0.726948,0.338917,0][0.117773,0.24082,-1.23516][0.99027,0.138611,-0.0123642][0.721764,0.351547,0][0.0937499,0.4125,-1.39297][0.991428,0.130378,0.00845761][0.673989,0.35226,0][0.0937499,0.4125,-1.39297][0.991428,0.130378,0.00845761][0.673989,0.35226,0][0.0703124,0.4125,-1.28984][0.667563,0.595271,0.447227][0.688055,0.336492,0][0.08833,0.262976,-1.17231][0.666104,0.419844,0.61647][0.726948,0.338917,0][0.2475,-0.28125,-0.742969][0.981621,-0.139634,-0.130084][0.868724,0.347502,0][0.185625,-0.423047,-0.742969][0.534307,-0.765623,-0.358242][0.890405,0.366843,0][0.167607,-0.277991,-1.08169][0.626319,-0.512491,-0.587433][0.822024,0.398848,0][0.167607,-0.277991,-1.08169][0.626319,-0.512491,-0.587433][0.822024,0.398848,0][0.223476,-0.172852,-1.04141][0.977688,0.10022,-0.184614][0.811443,0.378348,0][0.2475,-0.28125,-0.742969][0.981621,-0.139634,-0.130084][0.868724,0.347502,0][0.223476,-0.172852,-1.04141][0.977688,0.10022,-0.184614][0.371121,0.815324,0][0.167607,-0.277991,-1.08169][0.626319,-0.512491,-0.587433][0.394158,0.823351,0][0.127968,-0.0377931,-1.21328][0.572435,-0.241147,-0.783688][0.346757,0.838886,0][0.127968,-0.0377931,-1.21328][0.572435,-0.241147,-0.783688][0.346757,0.838886,0][0.170625,0.0234374,-1.16172][0.971804,0.188165,-0.142095][0.333024,0.832162,0][0.223476,-0.172852,-1.04141][0.977688,0.10022,-0.184614][0.371121,0.815324,0][0.170625,0.0234374,-1.16172][0.971804,0.188165,-0.142095][0.333024,0.832162,0][0.127968,-0.0377931,-1.21328][0.572435,-0.241147,-0.783688][0.346757,0.838886,0][0.0883299,0.218665,-1.298][0.672724,-0.336649,-0.65887][0.296063,0.85493,0][0.0883299,0.218665,-1.298][0.672724,-0.336649,-0.65887][0.296063,0.85493,0][0.117773,0.24082,-1.23516][0.99027,0.138611,-0.0123642][0.290656,0.84966,0][0.170625,0.0234374,-1.16172][0.971804,0.188165,-0.142095][0.333024,0.832162,0][0.117773,0.24082,-1.23516][0.99027,0.138611,-0.0123642][0.721764,0.351547,0][0.0883299,0.218665,-1.298][0.672724,-0.336649,-0.65887][0.71658,0.364178,0][0.0703123,0.4125,-1.49609][0.720364,-0.547425,-0.425912][0.659922,0.368028,0][0.0703123,0.4125,-1.49609][0.720364,-0.547425,-0.425912][0.659922,0.368028,0][0.0937499,0.4125,-1.39297][0.991428,0.130378,0.00845761][0.673989,0.35226,0][0.117773,0.24082,-1.23516][0.99027,0.138611,-0.0123642][0.721764,0.351547,0][0.185625,-0.423047,-0.742969][0.534307,-0.765623,-0.358242][0.422969,0.815168,0][-2.68819e-007,-0.4875,-0.742969][-0.101527,-0.906912,-0.408904][0.441823,0.850742,0][-3.6428e-007,-0.325781,-1.1][0.00913871,-0.724276,-0.68945][0.409075,0.855797,0][-3.6428e-007,-0.325781,-1.1][0.00913871,-0.724276,-0.68945][0.409075,0.855797,0][0.167607,-0.277991,-1.08169][0.626319,-0.512491,-0.587433][0.394158,0.823351,0][0.185625,-0.423047,-0.742969][0.534307,-0.765623,-0.358242][0.422969,0.815168,0][0.167607,-0.277991,-1.08169][0.626319,-0.512491,-0.587433][0.394158,0.823351,0][-3.6428e-007,-0.325781,-1.1][0.00913871,-0.724276,-0.68945][0.409075,0.855797,0][-3.03949e-007,-0.0656251,-1.23672][-0.0169935,-0.381675,-0.92414][0.356393,0.86393,0][-3.03949e-007,-0.0656251,-1.23672][-0.0169935,-0.381675,-0.92414][0.356393,0.86393,0][0.127968,-0.0377931,-1.21328][0.572435,-0.241147,-0.783688][0.346757,0.838886,0][0.167607,-0.277991,-1.08169][0.626319,-0.512491,-0.587433][0.394158,0.823351,0][0.127968,-0.0377931,-1.21328][0.572435,-0.241147,-0.783688][0.346757,0.838886,0][-3.03949e-007,-0.0656251,-1.23672][-0.0169935,-0.381675,-0.92414][0.356393,0.86393,0][-2.13833e-007,0.208594,-1.32656][-0.0338671,-0.521908,-0.852329][0.300864,0.872502,0][-2.13833e-007,0.208594,-1.32656][-0.0338671,-0.521908,-0.852329][0.300864,0.872502,0][0.0883299,0.218665,-1.298][0.672724,-0.336649,-0.65887][0.296063,0.85493,0][0.127968,-0.0377931,-1.21328][0.572435,-0.241147,-0.783688][0.346757,0.838886,0][0.0883299,0.218665,-1.298][0.672724,-0.336649,-0.65887][0.296063,0.85493,0][-2.13833e-007,0.208594,-1.32656][-0.0338671,-0.521908,-0.852329][0.300864,0.872502,0][-2.19943e-007,0.4125,-1.54297][-0.00178382,-0.817547,-0.57586][0.259572,0.878876,0][-2.19943e-007,0.4125,-1.54297][-0.00178382,-0.817547,-0.57586][0.259572,0.878876,0][0.0703123,0.4125,-1.49609][0.720364,-0.547425,-0.425912][0.257374,0.864637,0][0.0883299,0.218665,-1.298][0.672724,-0.336649,-0.65887][0.296063,0.85493,0][-2.68819e-007,-0.4875,-0.742969][-0.101527,-0.906912,-0.408904][0.441823,0.850742,0][-0.185625,-0.423047,-0.742969][-0.749941,-0.59286,-0.293438][0.434574,0.890346,0][-0.167608,-0.277991,-1.08169][-0.622239,-0.542661,-0.564215][0.404637,0.891232,0][-0.167608,-0.277991,-1.08169][-0.622239,-0.542661,-0.564215][0.404637,0.891232,0][-3.6428e-007,-0.325781,-1.1][0.00913871,-0.724276,-0.68945][0.409075,0.855797,0][-2.68819e-007,-0.4875,-0.742969][-0.101527,-0.906912,-0.408904][0.441823,0.850742,0][-3.6428e-007,-0.325781,-1.1][0.00913871,-0.724276,-0.68945][0.409075,0.855797,0][-0.167608,-0.277991,-1.08169][-0.622239,-0.542661,-0.564215][0.404637,0.891232,0][-0.127969,-0.037793,-1.21328][-0.589368,-0.242454,-0.770624][0.354757,0.890713,0][-0.127969,-0.037793,-1.21328][-0.589368,-0.242454,-0.770624][0.354757,0.890713,0][-3.03949e-007,-0.0656251,-1.23672][-0.0169935,-0.381675,-0.92414][0.356393,0.86393,0][-3.6428e-007,-0.325781,-1.1][0.00913871,-0.724276,-0.68945][0.409075,0.855797,0][-3.03949e-007,-0.0656251,-1.23672][-0.0169935,-0.381675,-0.92414][0.356393,0.86393,0][-0.127969,-0.037793,-1.21328][-0.589368,-0.242454,-0.770624][0.354757,0.890713,0][-0.0883303,0.218665,-1.298][-0.686527,-0.29676,-0.663788][0.301585,0.890703,0][-0.0883303,0.218665,-1.298][-0.686527,-0.29676,-0.663788][0.301585,0.890703,0][-2.13833e-007,0.208594,-1.32656][-0.0338671,-0.521908,-0.852329][0.300864,0.872502,0][-3.03949e-007,-0.0656251,-1.23672][-0.0169935,-0.381675,-0.92414][0.356393,0.86393,0][-2.13833e-007,0.208594,-1.32656][-0.0338671,-0.521908,-0.852329][0.300864,0.872502,0][-0.0883303,0.218665,-1.298][-0.686527,-0.29676,-0.663788][0.301585,0.890703,0][-0.0703127,0.4125,-1.49609][-0.731143,-0.514578,-0.447928][0.26177,0.893114,0][-0.0703127,0.4125,-1.49609][-0.731143,-0.514578,-0.447928][0.26177,0.893114,0][-2.19943e-007,0.4125,-1.54297][-0.00178382,-0.817547,-0.57586][0.259572,0.878876,0][-2.13833e-007,0.208594,-1.32656][-0.0338671,-0.521908,-0.852329][0.300864,0.872502,0][-0.185625,-0.423047,-0.742969][-0.749941,-0.59286,-0.293438][0.729361,0.627145,0][-0.2475,-0.28125,-0.742969][-0.986048,0.163973,-0.0286719][0.708418,0.647283,0][-0.223477,-0.172852,-1.04141][-0.994484,0.0518401,-0.0911849][0.650024,0.618598,0][-0.223477,-0.172852,-1.04141][-0.994484,0.0518401,-0.0911849][0.650024,0.618598,0][-0.167608,-0.277991,-1.08169][-0.622239,-0.542661,-0.564215][0.659832,0.597717,0][-0.185625,-0.423047,-0.742969][-0.749941,-0.59286,-0.293438][0.729361,0.627145,0][-0.167608,-0.277991,-1.08169][-0.622239,-0.542661,-0.564215][0.404637,0.891232,0][-0.223477,-0.172852,-1.04141][-0.994484,0.0518401,-0.0911849][0.385092,0.905832,0][-0.170625,0.0234376,-1.16172][-0.977265,0.134868,-0.163595][0.343691,0.901265,0][-0.170625,0.0234376,-1.16172][-0.977265,0.134868,-0.163595][0.343691,0.901265,0][-0.127969,-0.037793,-1.21328][-0.589368,-0.242454,-0.770624][0.354757,0.890713,0][-0.167608,-0.277991,-1.08169][-0.622239,-0.542661,-0.564215][0.404637,0.891232,0][-0.127969,-0.037793,-1.21328][-0.589368,-0.242454,-0.770624][0.354757,0.890713,0][-0.170625,0.0234376,-1.16172][-0.977265,0.134868,-0.163595][0.343691,0.901265,0][-0.117774,0.24082,-1.23516][-0.98388,0.141513,-0.109339][0.298019,0.897358,0][-0.117774,0.24082,-1.23516][-0.98388,0.141513,-0.109339][0.298019,0.897358,0][-0.0883303,0.218665,-1.298][-0.686527,-0.29676,-0.663788][0.301585,0.890703,0][-0.127969,-0.037793,-1.21328][-0.589368,-0.242454,-0.770624][0.354757,0.890713,0][-0.0883303,0.218665,-1.298][-0.686527,-0.29676,-0.663788][0.301585,0.890703,0][-0.117774,0.24082,-1.23516][-0.98388,0.141513,-0.109339][0.298019,0.897358,0][-0.0937501,0.4125,-1.39297][-0.98742,0.153079,-0.0396155][0.262503,0.89786,0][-0.0937501,0.4125,-1.39297][-0.98742,0.153079,-0.0396155][0.513641,0.649803,0][-0.0703127,0.4125,-1.49609][-0.731143,-0.514578,-0.447928][0.498995,0.634572,0][-0.0883303,0.218665,-1.298][-0.686527,-0.29676,-0.663788][0.555757,0.636302,0][-0.2475,-0.28125,-0.742969][-0.986048,0.163973,-0.0286719][0.708418,0.647283,0][-0.185625,-0.139453,-0.742969][-0.552298,0.814059,0.179654][0.687474,0.66742,0][-0.167608,-0.0677124,-1.00112][-0.663418,0.634276,0.396952][0.640216,0.63948,0][-0.167608,-0.0677124,-1.00112][-0.663418,0.634276,0.396952][0.640216,0.63948,0][-0.223477,-0.172852,-1.04141][-0.994484,0.0518401,-0.0911849][0.650024,0.618598,0][-0.2475,-0.28125,-0.742969][-0.986048,0.163973,-0.0286719][0.708418,0.647283,0][-0.223477,-0.172852,-1.04141][-0.994484,0.0518401,-0.0911849][0.650024,0.618598,0][-0.167608,-0.0677124,-1.00112][-0.663418,0.634276,0.396952][0.640216,0.63948,0][-0.127969,0.084668,-1.11016][-0.644387,0.44543,0.621577][0.602225,0.645016,0][-0.127969,0.084668,-1.11016][-0.644387,0.44543,0.621577][0.602225,0.645016,0][-0.170625,0.0234376,-1.16172][-0.977265,0.134868,-0.163595][0.603946,0.628705,0][-0.223477,-0.172852,-1.04141][-0.994484,0.0518401,-0.0911849][0.650024,0.618598,0][-0.170625,0.0234376,-1.16172][-0.977265,0.134868,-0.163595][0.839876,0.232903,0][-0.127969,0.084668,-1.11016][-0.644387,0.44543,0.621577][0.852422,0.224163,0][-0.0883302,0.262976,-1.17231][-0.674281,0.447279,0.587611][0.888957,0.216041,0][-0.0883302,0.262976,-1.17231][-0.674281,0.447279,0.587611][0.567062,0.661158,0][-0.117774,0.24082,-1.23516][-0.98388,0.141513,-0.109339][0.56141,0.64873,0][-0.170625,0.0234376,-1.16172][-0.977265,0.134868,-0.163595][0.603946,0.628705,0][-0.117774,0.24082,-1.23516][-0.98388,0.141513,-0.109339][0.56141,0.64873,0][-0.0883302,0.262976,-1.17231][-0.674281,0.447279,0.587611][0.567062,0.661158,0][-0.0703126,0.4125,-1.28984][-0.673649,0.613585,0.411959][0.528286,0.665034,0][-0.0703126,0.4125,-1.28984][-0.673649,0.613585,0.411959][0.528286,0.665034,0][-0.0937501,0.4125,-1.39297][-0.98742,0.153079,-0.0396155][0.513641,0.649803,0][-0.117774,0.24082,-1.23516][-0.98388,0.141513,-0.109339][0.56141,0.64873,0][-0.185625,-0.139453,-0.742969][-0.552298,0.814059,0.179654][0.64681,0.502021,0][0,-0.075,-0.742969][0.100414,0.967998,0.229992][0.649501,0.470005,0][-1.57511e-007,-0.019922,-0.982812][-0.00948683,0.841845,0.539636][0.699897,0.468764,0][-1.57511e-007,-0.019922,-0.982812][-0.00948683,0.841845,0.539636][0.699897,0.468764,0][-0.167608,-0.0677124,-1.00112][-0.663418,0.634276,0.396952][0.701634,0.497965,0][-0.185625,-0.139453,-0.742969][-0.552298,0.814059,0.179654][0.64681,0.502021,0][-0.167608,-0.0677124,-1.00112][-0.663418,0.634276,0.396952][0.821199,0.232285,0][-1.57511e-007,-0.019922,-0.982812][-0.00948683,0.841845,0.539636][0.830991,0.197943,0][-1.43574e-007,0.1125,-1.08672][0.013332,0.491531,0.870758][0.858124,0.197943,0][-1.43574e-007,0.1125,-1.08672][0.013332,0.491531,0.870758][0.858124,0.197943,0][-0.127969,0.084668,-1.11016][-0.644387,0.44543,0.621577][0.852422,0.224163,0][-0.167608,-0.0677124,-1.00112][-0.663418,0.634276,0.396952][0.821199,0.232285,0][-0.127969,0.084668,-1.11016][-0.644387,0.44543,0.621577][0.852422,0.224163,0][-1.43574e-007,0.1125,-1.08672][0.013332,0.491531,0.870758][0.858124,0.197943,0][0,0.273047,-1.14375][0.0415913,0.480806,0.87584][0.89102,0.197943,0][0,0.273047,-1.14375][0.0415913,0.480806,0.87584][0.89102,0.197943,0][-0.0883302,0.262976,-1.17231][-0.674281,0.447279,0.587611][0.888957,0.216041,0][-0.127969,0.084668,-1.11016][-0.644387,0.44543,0.621577][0.852422,0.224163,0][-0.0883302,0.262976,-1.17231][-0.674281,0.447279,0.587611][0.888957,0.216041,0][0,0.273047,-1.14375][0.0415913,0.480806,0.87584][0.89102,0.197943,0][0,0.4125,-1.24297][0.00716274,0.756117,0.654397][0.919594,0.197943,0][0,0.4125,-1.24297][0.00716274,0.756117,0.654397][0.919594,0.197943,0][-0.0703126,0.4125,-1.28984][-0.673649,0.613585,0.411959][0.919594,0.21235,0][-0.0883302,0.262976,-1.17231][-0.674281,0.447279,0.587611][0.888957,0.216041,0][0,0.4125,-1.24297][0.00716274,0.756117,0.654397][0.919594,0.197943,0][0.0703124,0.4125,-1.28984][0.667563,0.595271,0.447227][0.919594,0.183536,0][0.0659179,0.434624,-1.32911][0.449689,0.850509,0.27279][0.924127,0.184436,0][0.0659179,0.434624,-1.32911][0.449689,0.850509,0.27279][0.924127,0.184436,0][0,0.433594,-1.27891][-0.0202446,0.927833,0.372447][0.923916,0.197943,0][0,0.4125,-1.24297][0.00716274,0.756117,0.654397][0.919594,0.197943,0][0,0.433594,-1.27891][-0.0202446,0.927833,0.372447][0.781956,0.491314,0][0.0659179,0.434624,-1.32911][0.449689,0.850509,0.27279][0.791742,0.4776,0][0.0562499,0.442273,-1.35259][-0.165117,0.986112,-0.017878][0.796824,0.479496,0][0.0562499,0.442273,-1.35259][-0.165117,0.986112,-0.017878][0.796824,0.479496,0][0,0.440625,-1.30547][-0.131682,0.972484,-0.192184][0.787585,0.491235,0][0,0.433594,-1.27891][-0.0202446,0.927833,0.372447][0.781956,0.491314,0][0,0.440625,-1.30547][-0.131682,0.972484,-0.192184][0.713486,0.496184,0][0.0562499,0.442273,-1.35259][-0.165117,0.986112,-0.017878][0.723147,0.496225,0][0.0465819,0.435036,-1.35329][-0.847881,0.273297,-0.454321][0.723232,0.497713,0][0.0465819,0.435036,-1.35329][-0.847881,0.273297,-0.454321][0.723232,0.497713,0][0,0.433594,-1.31328][0.00958808,0.0313133,-0.999464][0.715029,0.497687,0][0,0.440625,-1.30547][-0.131682,0.972484,-0.192184][0.713486,0.496184,0][0,0.433594,-1.31328][0.00958808,0.0313133,-0.999464][0.715029,0.497687,0][0.0465819,0.435036,-1.35329][-0.847881,0.273297,-0.454321][0.723232,0.497713,0][0.0421874,0.4125,-1.32422][-0.703389,-0.487634,-0.517162][0.717099,0.502093,0][0.0421874,0.4125,-1.32422][-0.703389,-0.487634,-0.517162][0.717099,0.502093,0][0,0.4125,-1.29297][0.17901,-0.703034,-0.688257][0.710701,0.501842,0][0,0.433594,-1.31328][0.00958808,0.0313133,-0.999464][0.715029,0.497687,0][0.0703124,0.4125,-1.28984][0.667563,0.595271,0.447227][0.688055,0.336492,0][0.0937499,0.4125,-1.39297][0.991428,0.130378,0.00845761][0.673989,0.35226,0][0.0878905,0.43689,-1.43955][0.823588,0.567129,0.00817843][0.663906,0.356055,0][0.0878905,0.43689,-1.43955][0.823588,0.567129,0.00817843][0.663906,0.356055,0][0.0659179,0.434624,-1.32911][0.449689,0.850509,0.27279][0.679317,0.339478,0][0.0703124,0.4125,-1.28984][0.667563,0.595271,0.447227][0.688055,0.336492,0][0.0659179,0.434624,-1.32911][0.449689,0.850509,0.27279][0.679317,0.339478,0][0.0878905,0.43689,-1.43955][0.823588,0.567129,0.00817843][0.663906,0.356055,0][0.0749998,0.445898,-1.45625][0.0278497,0.998247,0.0522209][0.660251,0.35738,0][0.0749998,0.445898,-1.45625][0.0278497,0.998247,0.0522209][0.660251,0.35738,0][0.0562499,0.442273,-1.35259][-0.165117,0.986112,-0.017878][0.674944,0.342024,0][0.0659179,0.434624,-1.32911][0.449689,0.850509,0.27279][0.679317,0.339478,0][0.0562499,0.442273,-1.35259][-0.165117,0.986112,-0.017878][0.723147,0.496225,0][0.0749998,0.445898,-1.45625][0.0278497,0.998247,0.0522209][0.7444,0.496316,0][0.0621092,0.438208,-1.44131][-0.776191,0.630135,0.0213714][0.741279,0.49777,0][0.0621092,0.438208,-1.44131][-0.776191,0.630135,0.0213714][0.741279,0.49777,0][0.0465819,0.435036,-1.35329][-0.847881,0.273297,-0.454321][0.723232,0.497713,0][0.0562499,0.442273,-1.35259][-0.165117,0.986112,-0.017878][0.723147,0.496225,0][0.0465819,0.435036,-1.35329][-0.847881,0.273297,-0.454321][0.723232,0.497713,0][0.0621092,0.438208,-1.44131][-0.776191,0.630135,0.0213714][0.741279,0.49777,0][0.0562499,0.4125,-1.39297][-0.990147,0.119825,-0.0724634][0.731175,0.502645,0][0.0562499,0.4125,-1.39297][-0.990147,0.119825,-0.0724634][0.731175,0.502645,0][0.0421874,0.4125,-1.32422][-0.703389,-0.487634,-0.517162][0.717099,0.502093,0][0.0465819,0.435036,-1.35329][-0.847881,0.273297,-0.454321][0.723232,0.497713,0][0.0937499,0.4125,-1.39297][0.991428,0.130378,0.00845761][0.673989,0.35226,0][0.0703123,0.4125,-1.49609][0.720364,-0.547425,-0.425912][0.659922,0.368028,0][0.0659178,0.439156,-1.54999][0.834679,-0.247089,-0.492197][0.648495,0.372633,0][0.0659178,0.439156,-1.54999][0.834679,-0.247089,-0.492197][0.648495,0.372633,0][0.0878905,0.43689,-1.43955][0.823588,0.567129,0.00817843][0.663906,0.356055,0][0.0937499,0.4125,-1.39297][0.991428,0.130378,0.00845761][0.673989,0.35226,0][0.0878905,0.43689,-1.43955][0.823588,0.567129,0.00817843][0.663906,0.356055,0][0.0659178,0.439156,-1.54999][0.834679,-0.247089,-0.492197][0.648495,0.372633,0][0.0562498,0.449524,-1.55991][0.314075,0.943188,-0.108411][0.645557,0.372735,0][0.0562498,0.449524,-1.55991][0.314075,0.943188,-0.108411][0.645557,0.372735,0][0.0749998,0.445898,-1.45625][0.0278497,0.998247,0.0522209][0.660251,0.35738,0][0.0878905,0.43689,-1.43955][0.823588,0.567129,0.00817843][0.663906,0.356055,0][0.0749998,0.445898,-1.45625][0.0278497,0.998247,0.0522209][0.7444,0.496316,0][0.0562498,0.449524,-1.55991][0.314075,0.943188,-0.108411][0.765653,0.496406,0][0.0465818,0.44138,-1.52933][-0.412282,0.882215,0.227419][0.759326,0.497828,0][0.0465818,0.44138,-1.52933][-0.412282,0.882215,0.227419][0.759326,0.497828,0][0.0621092,0.438208,-1.44131][-0.776191,0.630135,0.0213714][0.741279,0.49777,0][0.0749998,0.445898,-1.45625][0.0278497,0.998247,0.0522209][0.7444,0.496316,0][0.0621092,0.438208,-1.44131][-0.776191,0.630135,0.0213714][0.741279,0.49777,0][0.0465818,0.44138,-1.52933][-0.412282,0.882215,0.227419][0.759326,0.497828,0][0.0421873,0.4125,-1.46172][-0.689201,0.680691,0.248317][0.745251,0.503198,0][0.0421873,0.4125,-1.46172][-0.689201,0.680691,0.248317][0.745251,0.503198,0][0.0562499,0.4125,-1.39297][-0.990147,0.119825,-0.0724634][0.731175,0.502645,0][0.0621092,0.438208,-1.44131][-0.776191,0.630135,0.0213714][0.741279,0.49777,0][0.0703123,0.4125,-1.49609][0.720364,-0.547425,-0.425912][0.257374,0.864637,0][-2.19943e-007,0.4125,-1.54297][-0.00178382,-0.817547,-0.57586][0.259572,0.878876,0][-2.34382e-007,0.440186,-1.6002][-0.0648946,-0.72196,-0.688885][0.253966,0.879741,0][-2.34382e-007,0.440186,-1.6002][-0.0648946,-0.72196,-0.688885][0.253966,0.879741,0][0.0659178,0.439156,-1.54999][0.834679,-0.247089,-0.492197][0.252114,0.86636,0][0.0703123,0.4125,-1.49609][0.720364,-0.547425,-0.425912][0.257374,0.864637,0][0.0659178,0.439156,-1.54999][0.834679,-0.247089,-0.492197][0.252114,0.86636,0][-2.34382e-007,0.440186,-1.6002][-0.0648946,-0.72196,-0.688885][0.253966,0.879741,0][-2.32353e-007,0.451172,-1.60703][0.295735,0.739752,-0.604407][0.251741,0.880084,0][-2.32353e-007,0.451172,-1.60703][0.295735,0.739752,-0.604407][0.251741,0.880084,0][0.0562498,0.449524,-1.55991][0.314075,0.943188,-0.108411][0.250317,0.868642,0][0.0659178,0.439156,-1.54999][0.834679,-0.247089,-0.492197][0.252114,0.86636,0][0.0562498,0.449524,-1.55991][0.314075,0.943188,-0.108411][0.83831,0.475902,0][-2.32353e-007,0.451172,-1.60703][0.295735,0.739752,-0.604407][0.847928,0.486007,0][-2.1801e-007,0.442822,-1.56934][0.0209395,0.955865,0.293059][0.840023,0.486221,0][-2.1801e-007,0.442822,-1.56934][0.0209395,0.955865,0.293059][0.840023,0.486221,0][0.0465818,0.44138,-1.52933][-0.412282,0.882215,0.227419][0.831858,0.477868,0][0.0562498,0.449524,-1.55991][0.314075,0.943188,-0.108411][0.83831,0.475902,0][0.0465818,0.44138,-1.52933][-0.412282,0.882215,0.227419][0.916672,0.171718,0][-2.1801e-007,0.442822,-1.56934][0.0209395,0.955865,0.293059][0.907127,0.172014,0][-1.95505e-007,0.4125,-1.49297][-0.0973256,0.923894,0.370063][0.907127,0.165801,0][-1.95505e-007,0.4125,-1.49297][-0.0973256,0.923894,0.370063][0.907127,0.165801,0][0.0421873,0.4125,-1.46172][-0.689201,0.680691,0.248317][0.915771,0.165801,0][0.0465818,0.44138,-1.52933][-0.412282,0.882215,0.227419][0.916672,0.171718,0][-2.19943e-007,0.4125,-1.54297][-0.00178382,-0.817547,-0.57586][0.259572,0.878876,0][-0.0703127,0.4125,-1.49609][-0.731143,-0.514578,-0.447928][0.26177,0.893114,0][-0.0659182,0.439156,-1.54999][-0.85098,-0.186467,-0.490982][0.256235,0.893057,0][-0.0659182,0.439156,-1.54999][-0.85098,-0.186467,-0.490982][0.256235,0.893057,0][-2.34382e-007,0.440186,-1.6002][-0.0648946,-0.72196,-0.688885][0.253966,0.879741,0][-2.19943e-007,0.4125,-1.54297][-0.00178382,-0.817547,-0.57586][0.259572,0.878876,0][-2.34382e-007,0.440186,-1.6002][-0.0648946,-0.72196,-0.688885][0.253966,0.879741,0][-0.0659182,0.439156,-1.54999][-0.85098,-0.186467,-0.490982][0.256235,0.893057,0][-0.0562502,0.449524,-1.55991][-0.305185,0.876001,-0.373476][0.253833,0.891424,0][-0.0562502,0.449524,-1.55991][-0.305185,0.876001,-0.373476][0.253833,0.891424,0][-2.32353e-007,0.451172,-1.60703][0.295735,0.739752,-0.604407][0.251741,0.880084,0][-2.34382e-007,0.440186,-1.6002][-0.0648946,-0.72196,-0.688885][0.253966,0.879741,0][-2.32353e-007,0.451172,-1.60703][0.295735,0.739752,-0.604407][0.847928,0.486007,0][-0.0562502,0.449524,-1.55991][-0.305185,0.876001,-0.373476][0.83869,0.497746,0][-0.0465822,0.44138,-1.52933][0.479646,0.849486,0.219801][0.832173,0.495957,0][-0.0465822,0.44138,-1.52933][0.479646,0.849486,0.219801][0.832173,0.495957,0][-2.1801e-007,0.442822,-1.56934][0.0209395,0.955865,0.293059][0.840023,0.486221,0][-2.32353e-007,0.451172,-1.60703][0.295735,0.739752,-0.604407][0.847928,0.486007,0][-2.1801e-007,0.442822,-1.56934][0.0209395,0.955865,0.293059][0.907127,0.172014,0][-0.0465822,0.44138,-1.52933][0.479646,0.849486,0.219801][0.897582,0.171718,0][-0.0421877,0.4125,-1.46172][0.486837,0.815412,0.313197][0.898483,0.165801,0][-0.0421877,0.4125,-1.46172][0.486837,0.815412,0.313197][0.898483,0.165801,0][-1.95505e-007,0.4125,-1.49297][-0.0973256,0.923894,0.370063][0.907127,0.165801,0][-2.1801e-007,0.442822,-1.56934][0.0209395,0.955865,0.293059][0.907127,0.172014,0][-0.0703127,0.4125,-1.49609][-0.731143,-0.514578,-0.447928][0.498995,0.634572,0][-0.0937501,0.4125,-1.39297][-0.98742,0.153079,-0.0396155][0.513641,0.649803,0][-0.0878908,0.43689,-1.43955][-0.854777,0.51833,-0.0262719][0.503423,0.646387,0][-0.0878908,0.43689,-1.43955][-0.854777,0.51833,-0.0262719][0.503423,0.646387,0][-0.0659182,0.439156,-1.54999][-0.85098,-0.186467,-0.490982][0.487403,0.630396,0][-0.0703127,0.4125,-1.49609][-0.731143,-0.514578,-0.447928][0.498995,0.634572,0][-0.0659182,0.439156,-1.54999][-0.85098,-0.186467,-0.490982][0.487403,0.630396,0][-0.0878908,0.43689,-1.43955][-0.854777,0.51833,-0.0262719][0.503423,0.646387,0][-0.0750002,0.445898,-1.45625][-0.0698128,0.996949,-0.0349124][0.499721,0.6452,0][-0.0750002,0.445898,-1.45625][-0.0698128,0.996949,-0.0349124][0.499721,0.6452,0][-0.0562502,0.449524,-1.55991][-0.305185,0.876001,-0.373476][0.484463,0.630404,0][-0.0659182,0.439156,-1.54999][-0.85098,-0.186467,-0.490982][0.487403,0.630396,0][-0.0562502,0.449524,-1.55991][-0.305185,0.876001,-0.373476][0.765643,0.488286,0][-0.0750002,0.445898,-1.45625][-0.0698128,0.996949,-0.0349124][0.74439,0.488338,0][-0.0621095,0.438208,-1.44131][0.819063,0.573572,-0.0123112][0.741271,0.486877,0][-0.0621095,0.438208,-1.44131][0.819063,0.573572,-0.0123112][0.741271,0.486877,0][-0.0465822,0.44138,-1.52933][0.479646,0.849486,0.219801][0.759318,0.486853,0][-0.0562502,0.449524,-1.55991][-0.305185,0.876001,-0.373476][0.765643,0.488286,0][-0.0465822,0.44138,-1.52933][0.479646,0.849486,0.219801][0.759318,0.486853,0][-0.0621095,0.438208,-1.44131][0.819063,0.573572,-0.0123112][0.741271,0.486877,0][-0.0562502,0.4125,-1.39297][0.947581,0.315574,0.0500395][0.731177,0.481983,0][-0.0562502,0.4125,-1.39297][0.947581,0.315574,0.0500395][0.731177,0.481983,0][-0.0421877,0.4125,-1.46172][0.486837,0.815412,0.313197][0.745254,0.481457,0][-0.0465822,0.44138,-1.52933][0.479646,0.849486,0.219801][0.759318,0.486853,0][-0.0937501,0.4125,-1.39297][-0.98742,0.153079,-0.0396155][0.513641,0.649803,0][-0.0703126,0.4125,-1.28984][-0.673649,0.613585,0.411959][0.528286,0.665034,0][-0.0659181,0.434624,-1.32911][-0.495177,0.832161,0.249615][0.519442,0.662377,0][-0.0659181,0.434624,-1.32911][-0.495177,0.832161,0.249615][0.519442,0.662377,0][-0.0878908,0.43689,-1.43955][-0.854777,0.51833,-0.0262719][0.503423,0.646387,0][-0.0937501,0.4125,-1.39297][-0.98742,0.153079,-0.0396155][0.513641,0.649803,0][-0.0878908,0.43689,-1.43955][-0.854777,0.51833,-0.0262719][0.503423,0.646387,0][-0.0659181,0.434624,-1.32911][-0.495177,0.832161,0.249615][0.519442,0.662377,0][-0.0562501,0.442273,-1.35259][0.100288,0.983888,-0.148006][0.514978,0.659996,0][-0.0562501,0.442273,-1.35259][0.100288,0.983888,-0.148006][0.514978,0.659996,0][-0.0750002,0.445898,-1.45625][-0.0698128,0.996949,-0.0349124][0.499721,0.6452,0][-0.0878908,0.43689,-1.43955][-0.854777,0.51833,-0.0262719][0.503423,0.646387,0][-0.0750002,0.445898,-1.45625][-0.0698128,0.996949,-0.0349124][0.74439,0.488338,0][-0.0562501,0.442273,-1.35259][0.100288,0.983888,-0.148006][0.723136,0.488389,0][-0.0465822,0.435036,-1.35329][0.841119,0.236599,-0.486354][0.723225,0.486901,0][-0.0465822,0.435036,-1.35329][0.841119,0.236599,-0.486354][0.723225,0.486901,0][-0.0621095,0.438208,-1.44131][0.819063,0.573572,-0.0123112][0.741271,0.486877,0][-0.0750002,0.445898,-1.45625][-0.0698128,0.996949,-0.0349124][0.74439,0.488338,0][-0.0621095,0.438208,-1.44131][0.819063,0.573572,-0.0123112][0.741271,0.486877,0][-0.0465822,0.435036,-1.35329][0.841119,0.236599,-0.486354][0.723225,0.486901,0][-0.0421876,0.4125,-1.32422][0.879461,-0.317376,-0.354712][0.7171,0.48251,0][-0.0421876,0.4125,-1.32422][0.879461,-0.317376,-0.354712][0.7171,0.48251,0][-0.0562502,0.4125,-1.39297][0.947581,0.315574,0.0500395][0.731177,0.481983,0][-0.0621095,0.438208,-1.44131][0.819063,0.573572,-0.0123112][0.741271,0.486877,0][-0.0703126,0.4125,-1.28984][-0.673649,0.613585,0.411959][0.919594,0.21235,0][0,0.4125,-1.24297][0.00716274,0.756117,0.654397][0.919594,0.197943,0][0,0.433594,-1.27891][-0.0202446,0.927833,0.372447][0.923916,0.197943,0][0,0.433594,-1.27891][-0.0202446,0.927833,0.372447][0.923916,0.197943,0][-0.0659181,0.434624,-1.32911][-0.495177,0.832161,0.249615][0.924127,0.211449,0][-0.0703126,0.4125,-1.28984][-0.673649,0.613585,0.411959][0.919594,0.21235,0][-0.0659181,0.434624,-1.32911][-0.495177,0.832161,0.249615][0.792187,0.503198,0][0,0.433594,-1.27891][-0.0202446,0.927833,0.372447][0.781956,0.491314,0][0,0.440625,-1.30547][-0.131682,0.972484,-0.192184][0.787585,0.491235,0][0,0.440625,-1.30547][-0.131682,0.972484,-0.192184][0.787585,0.491235,0][-0.0562501,0.442273,-1.35259][0.100288,0.983888,-0.148006][0.797204,0.50134,0][-0.0659181,0.434624,-1.32911][-0.495177,0.832161,0.249615][0.792187,0.503198,0][-0.0562501,0.442273,-1.35259][0.100288,0.983888,-0.148006][0.723136,0.488389,0][0,0.440625,-1.30547][-0.131682,0.972484,-0.192184][0.713476,0.488412,0][0,0.433594,-1.31328][0.00958808,0.0313133,-0.999464][0.715022,0.486912,0][0,0.433594,-1.31328][0.00958808,0.0313133,-0.999464][0.715022,0.486912,0][-0.0465822,0.435036,-1.35329][0.841119,0.236599,-0.486354][0.723225,0.486901,0][-0.0562501,0.442273,-1.35259][0.100288,0.983888,-0.148006][0.723136,0.488389,0][-0.0465822,0.435036,-1.35329][0.841119,0.236599,-0.486354][0.723225,0.486901,0][0,0.433594,-1.31328][0.00958808,0.0313133,-0.999464][0.715022,0.486912,0][0,0.4125,-1.29297][0.17901,-0.703034,-0.688257][0.710701,0.482749,0][0,0.4125,-1.29297][0.17901,-0.703034,-0.688257][0.710701,0.482749,0][-0.0421876,0.4125,-1.32422][0.879461,-0.317376,-0.354712][0.7171,0.48251,0][-0.0465822,0.435036,-1.35329][0.841119,0.236599,-0.486354][0.723225,0.486901,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.166172,0.947204,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.166172,0.947204,0][0.0670263,0.762891,-0.0501413][0.390958,0.445238,-0.805553][0.166242,0.914607,0][0.0670263,0.762891,-0.0501413][0.390958,0.445238,-0.805553][0.96307,0.39665,0][6.7453e-007,0.762891,-0.0632812][0.0532257,0.44522,-0.893838][0.949075,0.396667,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][6.7453e-007,0.762891,-0.0632812][0.0532257,0.44522,-0.893838][0.986948,0.108079,0][0.0670263,0.762891,-0.0501413][0.390958,0.445238,-0.805553][0.986948,0.121812,0][0.0639401,0.703125,-0.0429277][0.339954,-0.412166,-0.845311][0.974702,0.12118,0][0.0639401,0.703125,-0.0429277][0.339954,-0.412166,-0.845311][0.974702,0.12118,0][6.49137e-007,0.703125,-0.0554687][-0.0077585,-0.410976,-0.911613][0.974702,0.108079,0][6.7453e-007,0.762891,-0.0632812][0.0532257,0.44522,-0.893838][0.986948,0.108079,0][6.49137e-007,0.703125,-0.0554687][-0.0077585,-0.410976,-0.911613][0.974702,0.108079,0][0.0639401,0.703125,-0.0429277][0.339954,-0.412166,-0.845311][0.974702,0.12118,0][0.0386967,0.629297,0.0162029][0.366645,-0.341256,-0.865515][0.959575,0.116007,0][0.0386967,0.629297,0.0162029][0.366645,-0.341256,-0.865515][0.959575,0.116007,0][6.44364e-007,0.629297,0.00859384][0.00855159,-0.34039,-0.940246][0.959575,0.108079,0][6.49137e-007,0.703125,-0.0554687][-0.0077585,-0.410976,-0.911613][0.974702,0.108079,0][6.44364e-007,0.629297,0.00859384][0.00855159,-0.34039,-0.940246][0.959575,0.108079,0][0.0386967,0.629297,0.0162029][0.366645,-0.341256,-0.865515][0.959575,0.116007,0][0.0392506,0.5625,0.0147813][0.28248,0.593949,-0.753279][0.945888,0.116121,0][0.0392506,0.5625,0.0147813][0.28248,0.593949,-0.753279][0.945888,0.116121,0][6.10953e-007,0.5625,0.00703134][-0.0262733,0.593494,-0.804409][0.945888,0.108079,0][6.44364e-007,0.629297,0.00859384][0.00855159,-0.34039,-0.940246][0.959575,0.108079,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.910224,0.0298061,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.910224,0.0298061,0][0.121081,0.762891,-0.0140488][0.670274,0.445119,-0.593803][0.945303,0.030494,0][0.121081,0.762891,-0.0140488][0.670274,0.445119,-0.593803][0.975355,0.391509,0][0.0670263,0.762891,-0.0501413][0.390958,0.445238,-0.805553][0.96307,0.39665,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][0.0670263,0.762891,-0.0501413][0.390958,0.445238,-0.805553][0.986948,0.121812,0][0.121081,0.762891,-0.0140488][0.670274,0.445119,-0.593803][0.986948,0.132888,0][0.115516,0.703125,-0.00848434][0.63833,-0.412738,-0.649755][0.974702,0.131748,0][0.115516,0.703125,-0.00848434][0.63833,-0.412738,-0.649755][0.974702,0.131748,0][0.0639401,0.703125,-0.0429277][0.339954,-0.412166,-0.845311][0.974702,0.12118,0][0.0670263,0.762891,-0.0501413][0.390958,0.445238,-0.805553][0.986948,0.121812,0][0.0639401,0.703125,-0.0429277][0.339954,-0.412166,-0.845311][0.974702,0.12118,0][0.115516,0.703125,-0.00848434][0.63833,-0.412738,-0.649755][0.974702,0.131748,0][0.069944,0.629297,0.0370879][0.670306,-0.342091,-0.658531][0.959575,0.12241,0][0.069944,0.629297,0.0370879][0.670306,-0.342091,-0.658531][0.959575,0.12241,0][0.0386967,0.629297,0.0162029][0.366645,-0.341256,-0.865515][0.959575,0.116007,0][0.0639401,0.703125,-0.0429277][0.339954,-0.412166,-0.845311][0.974702,0.12118,0][0.0386967,0.629297,0.0162029][0.366645,-0.341256,-0.865515][0.959575,0.116007,0][0.069944,0.629297,0.0370879][0.670306,-0.342091,-0.658531][0.959575,0.12241,0][0.0710006,0.5625,0.0360313][0.549762,0.593768,-0.587538][0.945888,0.122626,0][0.0710006,0.5625,0.0360313][0.549762,0.593768,-0.587538][0.945888,0.122626,0][0.0392506,0.5625,0.0147813][0.28248,0.593949,-0.753279][0.945888,0.116121,0][0.0386967,0.629297,0.0162029][0.366645,-0.341256,-0.865515][0.959575,0.116007,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.889284,0.105279,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.889284,0.105279,0][0.157173,0.76289,0.0400056][0.846896,0.445407,-0.290482][0.888618,0.140283,0][0.157173,0.76289,0.0400056][0.846896,0.445407,-0.290482][0.984732,0.382052,0][0.121081,0.762891,-0.0140488][0.670274,0.445119,-0.593803][0.975355,0.391509,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][0.121081,0.762891,-0.0140488][0.670274,0.445119,-0.593803][0.986948,0.132888,0][0.157173,0.76289,0.0400056][0.846896,0.445407,-0.290482][0.986948,0.140283,0][0.14996,0.703125,0.0430918][0.839301,-0.411887,-0.354855][0.974702,0.138805,0][0.14996,0.703125,0.0430918][0.839301,-0.411887,-0.354855][0.974702,0.138805,0][0.115516,0.703125,-0.00848434][0.63833,-0.412738,-0.649755][0.974702,0.131748,0][0.121081,0.762891,-0.0140488][0.670274,0.445119,-0.593803][0.986948,0.132888,0][0.115516,0.703125,-0.00848434][0.63833,-0.412738,-0.649755][0.974702,0.131748,0][0.14996,0.703125,0.0430918][0.839301,-0.411887,-0.354855][0.974702,0.138805,0][0.090829,0.629297,0.0683353][0.871915,-0.341525,-0.350893][0.959575,0.126689,0][0.090829,0.629297,0.0683353][0.871915,-0.341525,-0.350893][0.959575,0.126689,0][0.069944,0.629297,0.0370879][0.670306,-0.342091,-0.658531][0.959575,0.12241,0][0.115516,0.703125,-0.00848434][0.63833,-0.412738,-0.649755][0.974702,0.131748,0][0.069944,0.629297,0.0370879][0.670306,-0.342091,-0.658531][0.959575,0.12241,0][0.090829,0.629297,0.0683353][0.871915,-0.341525,-0.350893][0.959575,0.126689,0][0.0922506,0.5625,0.0677813][0.733001,0.593626,-0.332142][0.945888,0.126981,0][0.0922506,0.5625,0.0677813][0.733001,0.593626,-0.332142][0.945888,0.126981,0][0.0710006,0.5625,0.0360313][0.549762,0.593768,-0.587538][0.945888,0.122626,0][0.069944,0.629297,0.0370879][0.670306,-0.342091,-0.658531][0.959575,0.12241,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.0724687,0.91934,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.0724687,0.91934,0][0.170313,0.76289,0.107031][0.893838,0.44522,0.0532257][0.107366,0.91934,0][0.170313,0.76289,0.107031][0.893838,0.44522,0.0532257][0.99,0.369086,0][0.157173,0.76289,0.0400056][0.846896,0.445407,-0.290482][0.984732,0.382052,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][0.157173,0.76289,0.0400056][0.846896,0.445407,-0.290482][0.0510599,0.942011,0][0.170313,0.76289,0.107031][0.893838,0.44522,0.0532257][0.0510599,0.955745,0][0.162501,0.703125,0.107031][0.911613,-0.410976,-0.00775851][0.0388139,0.955745,0][0.162501,0.703125,0.107031][0.911613,-0.410976,-0.00775851][0.0388139,0.955745,0][0.14996,0.703125,0.0430918][0.839301,-0.411887,-0.354855][0.0388139,0.942644,0][0.157173,0.76289,0.0400056][0.846896,0.445407,-0.290482][0.0510599,0.942011,0][0.14996,0.703125,0.0430918][0.839301,-0.411887,-0.354855][0.0388139,0.942644,0][0.162501,0.703125,0.107031][0.911613,-0.410976,-0.00775851][0.0388139,0.955745,0][0.0984382,0.629297,0.107031][0.940245,-0.340391,0.00855163][0.0236866,0.955745,0][0.0984382,0.629297,0.107031][0.940245,-0.340391,0.00855163][0.0236866,0.955745,0][0.090829,0.629297,0.0683353][0.871915,-0.341525,-0.350893][0.0236866,0.947816,0][0.14996,0.703125,0.0430918][0.839301,-0.411887,-0.354855][0.0388139,0.942644,0][0.090829,0.629297,0.0683353][0.871915,-0.341525,-0.350893][0.0236866,0.947816,0][0.0984382,0.629297,0.107031][0.940245,-0.340391,0.00855163][0.0236866,0.955745,0][0.100001,0.5625,0.107031][0.80441,0.593494,-0.0262733][0.01,0.955745,0][0.100001,0.5625,0.107031][0.80441,0.593494,-0.0262733][0.01,0.955745,0][0.0922506,0.5625,0.0677813][0.733001,0.593626,-0.332142][0.01,0.947703,0][0.090829,0.629297,0.0683353][0.871915,-0.341525,-0.350893][0.0236866,0.947816,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.799292,0.398848,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.799292,0.398848,0][0.157173,0.76289,0.174057][0.805553,0.445238,0.390957][0.764288,0.398141,0][0.157173,0.76289,0.174057][0.805553,0.445238,0.390957][0.989983,0.355091,0][0.170313,0.76289,0.107031][0.893838,0.44522,0.0532257][0.99,0.369086,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][0.170313,0.76289,0.107031][0.893838,0.44522,0.0532257][0.0510599,0.955745,0][0.157173,0.76289,0.174057][0.805553,0.445238,0.390957][0.0510599,0.969478,0][0.14996,0.703125,0.170971][0.845311,-0.412166,0.339954][0.038814,0.968846,0][0.14996,0.703125,0.170971][0.845311,-0.412166,0.339954][0.038814,0.968846,0][0.162501,0.703125,0.107031][0.911613,-0.410976,-0.00775851][0.0388139,0.955745,0][0.170313,0.76289,0.107031][0.893838,0.44522,0.0532257][0.0510599,0.955745,0][0.162501,0.703125,0.107031][0.911613,-0.410976,-0.00775851][0.0388139,0.955745,0][0.14996,0.703125,0.170971][0.845311,-0.412166,0.339954][0.038814,0.968846,0][0.0908291,0.629297,0.145727][0.865515,-0.341256,0.366645][0.0236866,0.963674,0][0.0908291,0.629297,0.145727][0.865515,-0.341256,0.366645][0.0236866,0.963674,0][0.0984382,0.629297,0.107031][0.940245,-0.340391,0.00855163][0.0236866,0.955745,0][0.162501,0.703125,0.107031][0.911613,-0.410976,-0.00775851][0.0388139,0.955745,0][0.0984382,0.629297,0.107031][0.940245,-0.340391,0.00855163][0.0236866,0.955745,0][0.0908291,0.629297,0.145727][0.865515,-0.341256,0.366645][0.0236866,0.963674,0][0.0922507,0.5625,0.146281][0.75328,0.593948,0.28248][0.01,0.963787,0][0.0922507,0.5625,0.146281][0.75328,0.593948,0.28248][0.01,0.963787,0][0.100001,0.5625,0.107031][0.80441,0.593494,-0.0262733][0.01,0.955745,0][0.0984382,0.629297,0.107031][0.940245,-0.340391,0.00855163][0.0236866,0.955745,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.799367,0.390369,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.799367,0.390369,0][0.121081,0.762891,0.228111][0.593803,0.445119,0.670274][0.764288,0.389681,0][0.121081,0.762891,0.228111][0.593803,0.445119,0.670274][0.984842,0.342806,0][0.157173,0.76289,0.174057][0.805553,0.445238,0.390957][0.989983,0.355091,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][0.157173,0.76289,0.174057][0.805553,0.445238,0.390957][0.938116,0.0758741,0][0.121081,0.762891,0.228111][0.593803,0.445119,0.670274][0.938116,0.0832694,0][0.115516,0.703125,0.222547][0.649755,-0.412738,0.638331][0.92587,0.0844096,0][0.115516,0.703125,0.222547][0.649755,-0.412738,0.638331][0.92587,0.0844096,0][0.14996,0.703125,0.170971][0.845311,-0.412166,0.339954][0.92587,0.0773521,0][0.157173,0.76289,0.174057][0.805553,0.445238,0.390957][0.938116,0.0758741,0][0.14996,0.703125,0.170971][0.845311,-0.412166,0.339954][0.92587,0.0773521,0][0.115516,0.703125,0.222547][0.649755,-0.412738,0.638331][0.92587,0.0844096,0][0.0699441,0.629297,0.176975][0.658531,-0.342092,0.670306][0.910743,0.0937473,0][0.0699441,0.629297,0.176975][0.658531,-0.342092,0.670306][0.910743,0.0937473,0][0.0908291,0.629297,0.145727][0.865515,-0.341256,0.366645][0.910743,0.089468,0][0.14996,0.703125,0.170971][0.845311,-0.412166,0.339954][0.92587,0.0773521,0][0.0908291,0.629297,0.145727][0.865515,-0.341256,0.366645][0.910743,0.089468,0][0.0699441,0.629297,0.176975][0.658531,-0.342092,0.670306][0.910743,0.0937473,0][0.0710007,0.5625,0.178031][0.587538,0.593768,0.549762][0.897056,0.0935308,0][0.0710007,0.5625,0.178031][0.587538,0.593768,0.549762][0.897056,0.0935308,0][0.0922507,0.5625,0.146281][0.75328,0.593948,0.28248][0.897056,0.0891767,0][0.0908291,0.629297,0.145727][0.865515,-0.341256,0.366645][0.910743,0.089468,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.826101,0.116814,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.826101,0.116814,0][0.0670265,0.762891,0.264204][0.290482,0.445408,0.846896][0.827308,0.0842392,0][0.0670265,0.762891,0.264204][0.290482,0.445408,0.846896][0.975384,0.333429,0][0.121081,0.762891,0.228111][0.593803,0.445119,0.670274][0.984842,0.342806,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][0.121081,0.762891,0.228111][0.593803,0.445119,0.670274][0.938116,0.0832694,0][0.0670265,0.762891,0.264204][0.290482,0.445408,0.846896][0.938116,0.0943451,0][0.0639403,0.703125,0.25699][0.354855,-0.411886,0.839302][0.92587,0.0949775,0][0.0639403,0.703125,0.25699][0.354855,-0.411886,0.839302][0.92587,0.0949775,0][0.115516,0.703125,0.222547][0.649755,-0.412738,0.638331][0.92587,0.0844096,0][0.121081,0.762891,0.228111][0.593803,0.445119,0.670274][0.938116,0.0832694,0][0.115516,0.703125,0.222547][0.649755,-0.412738,0.638331][0.92587,0.0844096,0][0.0639403,0.703125,0.25699][0.354855,-0.411886,0.839302][0.92587,0.0949775,0][0.0386968,0.629297,0.19786][0.350893,-0.341525,0.871915][0.910743,0.10015,0][0.0386968,0.629297,0.19786][0.350893,-0.341525,0.871915][0.910743,0.10015,0][0.0699441,0.629297,0.176975][0.658531,-0.342092,0.670306][0.910743,0.0937473,0][0.115516,0.703125,0.222547][0.649755,-0.412738,0.638331][0.92587,0.0844096,0][0.0699441,0.629297,0.176975][0.658531,-0.342092,0.670306][0.910743,0.0937473,0][0.0386968,0.629297,0.19786][0.350893,-0.341525,0.871915][0.910743,0.10015,0][0.0392507,0.5625,0.199281][0.332142,0.593627,0.733][0.897056,0.100036,0][0.0392507,0.5625,0.199281][0.332142,0.593627,0.733][0.897056,0.100036,0][0.0710007,0.5625,0.178031][0.587538,0.593768,0.549762][0.897056,0.0935308,0][0.0699441,0.629297,0.176975][0.658531,-0.342092,0.670306][0.910743,0.0937473,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.635937,0.609111,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.635937,0.609111,0][8.41014e-007,0.762891,0.277344][-0.0532258,0.44522,0.893838][0.600691,0.610088,0][8.41014e-007,0.762891,0.277344][-0.0532258,0.44522,0.893838][0.962419,0.328161,0][0.0670265,0.762891,0.264204][0.290482,0.445408,0.846896][0.975384,0.333429,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][0.0670265,0.762891,0.264204][0.290482,0.445408,0.846896][0.938116,0.0943451,0][8.41014e-007,0.762891,0.277344][-0.0532258,0.44522,0.893838][0.938116,0.108079,0][8.07985e-007,0.703125,0.269531][0.00775853,-0.410976,0.911613][0.92587,0.108079,0][8.07985e-007,0.703125,0.269531][0.00775853,-0.410976,0.911613][0.92587,0.108079,0][0.0639403,0.703125,0.25699][0.354855,-0.411886,0.839302][0.92587,0.0949775,0][0.0670265,0.762891,0.264204][0.290482,0.445408,0.846896][0.938116,0.0943451,0][0.0639403,0.703125,0.25699][0.354855,-0.411886,0.839302][0.92587,0.0949775,0][8.07985e-007,0.703125,0.269531][0.00775853,-0.410976,0.911613][0.92587,0.108079,0][7.40589e-007,0.629297,0.205469][-0.00855172,-0.34039,0.940245][0.910743,0.108079,0][7.40589e-007,0.629297,0.205469][-0.00855172,-0.34039,0.940245][0.910743,0.108079,0][0.0386968,0.629297,0.19786][0.350893,-0.341525,0.871915][0.910743,0.10015,0][0.0639403,0.703125,0.25699][0.354855,-0.411886,0.839302][0.92587,0.0949775,0][0.0386968,0.629297,0.19786][0.350893,-0.341525,0.871915][0.910743,0.10015,0][7.40589e-007,0.629297,0.205469][-0.00855172,-0.34039,0.940245][0.910743,0.108079,0][7.08705e-007,0.5625,0.207031][0.0262732,0.593494,0.804409][0.897056,0.108079,0][7.08705e-007,0.5625,0.207031][0.0262732,0.593494,0.804409][0.897056,0.108079,0][0.0392507,0.5625,0.199281][0.332142,0.593627,0.733][0.897056,0.100036,0][0.0386968,0.629297,0.19786][0.350893,-0.341525,0.871915][0.910743,0.10015,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.874687,0.0477322,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.874687,0.0477322,0][-0.0670248,0.762891,0.264204][-0.390958,0.445239,0.805552][0.875895,0.0151577,0][-0.0670248,0.762891,0.264204][-0.390958,0.445239,0.805552][0.948424,0.328178,0][8.41014e-007,0.762891,0.277344][-0.0532258,0.44522,0.893838][0.962419,0.328161,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][8.41014e-007,0.762891,0.277344][-0.0532258,0.44522,0.893838][0.938116,0.108079,0][-0.0670248,0.762891,0.264204][-0.390958,0.445239,0.805552][0.938116,0.121812,0][-0.0639386,0.703125,0.25699][-0.339954,-0.412165,0.845311][0.92587,0.12118,0][-0.0639386,0.703125,0.25699][-0.339954,-0.412165,0.845311][0.92587,0.12118,0][8.07985e-007,0.703125,0.269531][0.00775853,-0.410976,0.911613][0.92587,0.108079,0][8.41014e-007,0.762891,0.277344][-0.0532258,0.44522,0.893838][0.938116,0.108079,0][8.07985e-007,0.703125,0.269531][0.00775853,-0.410976,0.911613][0.92587,0.108079,0][-0.0639386,0.703125,0.25699][-0.339954,-0.412165,0.845311][0.92587,0.12118,0][-0.0386953,0.629297,0.19786][-0.366645,-0.341255,0.865515][0.910743,0.116007,0][-0.0386953,0.629297,0.19786][-0.366645,-0.341255,0.865515][0.910743,0.116007,0][7.40589e-007,0.629297,0.205469][-0.00855172,-0.34039,0.940245][0.910743,0.108079,0][8.07985e-007,0.703125,0.269531][0.00775853,-0.410976,0.911613][0.92587,0.108079,0][7.40589e-007,0.629297,0.205469][-0.00855172,-0.34039,0.940245][0.910743,0.108079,0][-0.0386953,0.629297,0.19786][-0.366645,-0.341255,0.865515][0.910743,0.116007,0][-0.0392493,0.5625,0.199281][-0.282479,0.593949,0.753279][0.897056,0.116121,0][-0.0392493,0.5625,0.199281][-0.282479,0.593949,0.753279][0.897056,0.116121,0][7.08705e-007,0.5625,0.207031][0.0262732,0.593494,0.804409][0.897056,0.108079,0][7.40589e-007,0.629297,0.205469][-0.00855172,-0.34039,0.940245][0.910743,0.108079,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.875895,0.0555044,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.875895,0.0555044,0][-0.121079,0.762891,0.228111][-0.670273,0.445119,0.593803][0.875207,0.0905832,0][-0.121079,0.762891,0.228111][-0.670273,0.445119,0.593803][0.936138,0.333319,0][-0.0670248,0.762891,0.264204][-0.390958,0.445239,0.805552][0.948424,0.328178,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][-0.0670248,0.762891,0.264204][-0.390958,0.445239,0.805552][0.938116,0.121812,0][-0.121079,0.762891,0.228111][-0.670273,0.445119,0.593803][0.938116,0.132888,0][-0.115515,0.703125,0.222547][-0.638331,-0.412738,0.649755][0.92587,0.131748,0][-0.115515,0.703125,0.222547][-0.638331,-0.412738,0.649755][0.92587,0.131748,0][-0.0639386,0.703125,0.25699][-0.339954,-0.412165,0.845311][0.92587,0.12118,0][-0.0670248,0.762891,0.264204][-0.390958,0.445239,0.805552][0.938116,0.121812,0][-0.0639386,0.703125,0.25699][-0.339954,-0.412165,0.845311][0.92587,0.12118,0][-0.115515,0.703125,0.222547][-0.638331,-0.412738,0.649755][0.92587,0.131748,0][-0.0699426,0.629297,0.176975][-0.670307,-0.342091,0.658531][0.910743,0.12241,0][-0.0699426,0.629297,0.176975][-0.670307,-0.342091,0.658531][0.910743,0.12241,0][-0.0386953,0.629297,0.19786][-0.366645,-0.341255,0.865515][0.910743,0.116007,0][-0.0639386,0.703125,0.25699][-0.339954,-0.412165,0.845311][0.92587,0.12118,0][-0.0386953,0.629297,0.19786][-0.366645,-0.341255,0.865515][0.910743,0.116007,0][-0.0699426,0.629297,0.176975][-0.670307,-0.342091,0.658531][0.910743,0.12241,0][-0.0709993,0.5625,0.178031][-0.549762,0.593769,0.587537][0.897056,0.122626,0][-0.0709993,0.5625,0.178031][-0.549762,0.593769,0.587537][0.897056,0.122626,0][-0.0392493,0.5625,0.199281][-0.282479,0.593949,0.753279][0.897056,0.116121,0][-0.0386953,0.629297,0.19786][-0.366645,-0.341255,0.865515][0.910743,0.116007,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.635695,0.601339,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.635695,0.601339,0][-0.157172,0.762891,0.174057][-0.846895,0.445408,0.290482][0.600691,0.600632,0][-0.157172,0.762891,0.174057][-0.846895,0.445408,0.290482][0.926762,0.342777,0][-0.121079,0.762891,0.228111][-0.670273,0.445119,0.593803][0.936138,0.333319,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][-0.121079,0.762891,0.228111][-0.670273,0.445119,0.593803][0.938116,0.132888,0][-0.157172,0.762891,0.174057][-0.846895,0.445408,0.290482][0.938116,0.140283,0][-0.149958,0.703125,0.170971][-0.839302,-0.411885,0.354855][0.92587,0.138805,0][-0.149958,0.703125,0.170971][-0.839302,-0.411885,0.354855][0.92587,0.138805,0][-0.115515,0.703125,0.222547][-0.638331,-0.412738,0.649755][0.92587,0.131748,0][-0.121079,0.762891,0.228111][-0.670273,0.445119,0.593803][0.938116,0.132888,0][-0.115515,0.703125,0.222547][-0.638331,-0.412738,0.649755][0.92587,0.131748,0][-0.149958,0.703125,0.170971][-0.839302,-0.411885,0.354855][0.92587,0.138805,0][-0.0908277,0.629297,0.145727][-0.871915,-0.341524,0.350893][0.910743,0.126689,0][-0.0908277,0.629297,0.145727][-0.871915,-0.341524,0.350893][0.910743,0.126689,0][-0.0699426,0.629297,0.176975][-0.670307,-0.342091,0.658531][0.910743,0.12241,0][-0.115515,0.703125,0.222547][-0.638331,-0.412738,0.649755][0.92587,0.131748,0][-0.0699426,0.629297,0.176975][-0.670307,-0.342091,0.658531][0.910743,0.12241,0][-0.0908277,0.629297,0.145727][-0.871915,-0.341524,0.350893][0.910743,0.126689,0][-0.0922493,0.5625,0.146281][-0.733,0.593627,0.332141][0.897056,0.126981,0][-0.0922493,0.5625,0.146281][-0.733,0.593627,0.332141][0.897056,0.126981,0][-0.0709993,0.5625,0.178031][-0.549762,0.593769,0.587537][0.897056,0.122626,0][-0.0699426,0.629297,0.176975][-0.670307,-0.342091,0.658531][0.910743,0.12241,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.0481753,0.846875,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.0481753,0.846875,0][-0.170312,0.762891,0.107031][-0.893838,0.445221,-0.0532258][0.0481753,0.881772,0][-0.170312,0.762891,0.107031][-0.893838,0.445221,-0.0532258][0.921494,0.355742,0][-0.157172,0.762891,0.174057][-0.846895,0.445408,0.290482][0.926762,0.342777,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][-0.157172,0.762891,0.174057][-0.846895,0.445408,0.290482][0.945303,0.0382663,0][-0.170312,0.762891,0.107031][-0.893838,0.445221,-0.0532258][0.945303,0.0519997,0][-0.162499,0.703125,0.107031][-0.911614,-0.410975,0.00775847][0.933057,0.0519997,0][-0.162499,0.703125,0.107031][-0.911614,-0.410975,0.00775847][0.933057,0.0519997,0][-0.149958,0.703125,0.170971][-0.839302,-0.411885,0.354855][0.933057,0.0388986,0][-0.157172,0.762891,0.174057][-0.846895,0.445408,0.290482][0.945303,0.0382663,0][-0.149958,0.703125,0.170971][-0.839302,-0.411885,0.354855][0.933057,0.0388986,0][-0.162499,0.703125,0.107031][-0.911614,-0.410975,0.00775847][0.933057,0.0519997,0][-0.0984368,0.629297,0.107031][-0.940246,-0.340389,-0.00855155][0.91793,0.0519997,0][-0.0984368,0.629297,0.107031][-0.940246,-0.340389,-0.00855155][0.91793,0.0519997,0][-0.0908277,0.629297,0.145727][-0.871915,-0.341524,0.350893][0.91793,0.044071,0][-0.149958,0.703125,0.170971][-0.839302,-0.411885,0.354855][0.933057,0.0388986,0][-0.0908277,0.629297,0.145727][-0.871915,-0.341524,0.350893][0.91793,0.044071,0][-0.0984368,0.629297,0.107031][-0.940246,-0.340389,-0.00855155][0.91793,0.0519997,0][-0.0999993,0.5625,0.107031][-0.804409,0.593495,0.0262734][0.904243,0.0519997,0][-0.0999993,0.5625,0.107031][-0.804409,0.593495,0.0262734][0.904243,0.0519997,0][-0.0922493,0.5625,0.146281][-0.733,0.593627,0.332141][0.904243,0.0439575,0][-0.0908277,0.629297,0.145727][-0.871915,-0.341524,0.350893][0.91793,0.044071,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.945303,0.0220339,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.945303,0.0220339,0][-0.157172,0.762891,0.0400058][-0.805552,0.445239,-0.390958][0.910299,0.0213682,0][-0.157172,0.762891,0.0400058][-0.805552,0.445239,-0.390958][0.921511,0.369737,0][-0.170312,0.762891,0.107031][-0.893838,0.445221,-0.0532258][0.921494,0.355742,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][-0.170312,0.762891,0.107031][-0.893838,0.445221,-0.0532258][0.945303,0.0519997,0][-0.157172,0.762891,0.0400058][-0.805552,0.445239,-0.390958][0.945303,0.0657332,0][-0.149958,0.703125,0.043092][-0.845312,-0.412165,-0.339954][0.933057,0.0651009,0][-0.149958,0.703125,0.043092][-0.845312,-0.412165,-0.339954][0.933057,0.0651009,0][-0.162499,0.703125,0.107031][-0.911614,-0.410975,0.00775847][0.933057,0.0519997,0][-0.170312,0.762891,0.107031][-0.893838,0.445221,-0.0532258][0.945303,0.0519997,0][-0.162499,0.703125,0.107031][-0.911614,-0.410975,0.00775847][0.933057,0.0519997,0][-0.149958,0.703125,0.043092][-0.845312,-0.412165,-0.339954][0.933057,0.0651009,0][-0.0908277,0.629297,0.0683353][-0.865515,-0.341255,-0.366645][0.91793,0.0599285,0][-0.0908277,0.629297,0.0683353][-0.865515,-0.341255,-0.366645][0.91793,0.0599285,0][-0.0984368,0.629297,0.107031][-0.940246,-0.340389,-0.00855155][0.91793,0.0519997,0][-0.162499,0.703125,0.107031][-0.911614,-0.410975,0.00775847][0.933057,0.0519997,0][-0.0984368,0.629297,0.107031][-0.940246,-0.340389,-0.00855155][0.91793,0.0519997,0][-0.0908277,0.629297,0.0683353][-0.865515,-0.341255,-0.366645][0.91793,0.0599285,0][-0.0922494,0.5625,0.0677814][-0.753279,0.593949,-0.282479][0.904243,0.060042,0][-0.0922494,0.5625,0.0677814][-0.753279,0.593949,-0.282479][0.904243,0.060042,0][-0.0999993,0.5625,0.107031][-0.804409,0.593495,0.0262734][0.904243,0.0519997,0][-0.0984368,0.629297,0.107031][-0.940246,-0.340389,-0.00855155][0.91793,0.0519997,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.862013,0.01961,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.862013,0.01961,0][-0.121079,0.762891,-0.0140487][-0.593803,0.445119,-0.670274][0.861325,0.0546888,0][-0.121079,0.762891,-0.0140487][-0.593803,0.445119,-0.670274][0.926652,0.382023,0][-0.157172,0.762891,0.0400058][-0.805552,0.445239,-0.390958][0.921511,0.369737,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][-0.157172,0.762891,0.0400058][-0.805552,0.445239,-0.390958][0.986948,0.0758741,0][-0.121079,0.762891,-0.0140487][-0.593803,0.445119,-0.670274][0.986948,0.0832694,0][-0.115515,0.703125,-0.00848422][-0.649755,-0.412738,-0.638331][0.974702,0.0844096,0][-0.115515,0.703125,-0.00848422][-0.649755,-0.412738,-0.638331][0.974702,0.0844096,0][-0.149958,0.703125,0.043092][-0.845312,-0.412165,-0.339954][0.974702,0.0773521,0][-0.157172,0.762891,0.0400058][-0.805552,0.445239,-0.390958][0.986948,0.0758741,0][-0.149958,0.703125,0.043092][-0.845312,-0.412165,-0.339954][0.974702,0.0773521,0][-0.115515,0.703125,-0.00848422][-0.649755,-0.412738,-0.638331][0.974702,0.0844096,0][-0.0699427,0.629297,0.037088][-0.658531,-0.342091,-0.670306][0.959575,0.0937473,0][-0.0699427,0.629297,0.037088][-0.658531,-0.342091,-0.670306][0.959575,0.0937473,0][-0.0908277,0.629297,0.0683353][-0.865515,-0.341255,-0.366645][0.959575,0.089468,0][-0.149958,0.703125,0.043092][-0.845312,-0.412165,-0.339954][0.974702,0.0773521,0][-0.0908277,0.629297,0.0683353][-0.865515,-0.341255,-0.366645][0.959575,0.089468,0][-0.0699427,0.629297,0.037088][-0.658531,-0.342091,-0.670306][0.959575,0.0937473,0][-0.0709994,0.5625,0.0360314][-0.587537,0.593769,-0.549762][0.945888,0.0935308,0][-0.0709994,0.5625,0.0360314][-0.587537,0.593769,-0.549762][0.945888,0.0935308,0][-0.0922494,0.5625,0.0677814][-0.753279,0.593949,-0.282479][0.945888,0.0891767,0][-0.0908277,0.629297,0.0683353][-0.865515,-0.341255,-0.366645][0.959575,0.089468,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.0585868,0.930498,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.0585868,0.930498,0][-0.0670249,0.762891,-0.0501412][-0.290482,0.445408,-0.846896][0.0586571,0.897901,0][-0.0670249,0.762891,-0.0501412][-0.290482,0.445408,-0.846896][0.93611,0.391399,0][-0.121079,0.762891,-0.0140487][-0.593803,0.445119,-0.670274][0.926652,0.382023,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][-0.121079,0.762891,-0.0140487][-0.593803,0.445119,-0.670274][0.986948,0.0832694,0][-0.0670249,0.762891,-0.0501412][-0.290482,0.445408,-0.846896][0.986948,0.0943451,0][-0.0639388,0.703125,-0.0429276][-0.354855,-0.411886,-0.839302][0.974702,0.0949775,0][-0.0639388,0.703125,-0.0429276][-0.354855,-0.411886,-0.839302][0.974702,0.0949775,0][-0.115515,0.703125,-0.00848422][-0.649755,-0.412738,-0.638331][0.974702,0.0844096,0][-0.121079,0.762891,-0.0140487][-0.593803,0.445119,-0.670274][0.986948,0.0832694,0][-0.115515,0.703125,-0.00848422][-0.649755,-0.412738,-0.638331][0.974702,0.0844096,0][-0.0639388,0.703125,-0.0429276][-0.354855,-0.411886,-0.839302][0.974702,0.0949775,0][-0.0386954,0.629297,0.016203][-0.350893,-0.341524,-0.871915][0.959575,0.10015,0][-0.0386954,0.629297,0.016203][-0.350893,-0.341524,-0.871915][0.959575,0.10015,0][-0.0699427,0.629297,0.037088][-0.658531,-0.342091,-0.670306][0.959575,0.0937473,0][-0.115515,0.703125,-0.00848422][-0.649755,-0.412738,-0.638331][0.974702,0.0844096,0][-0.0699427,0.629297,0.037088][-0.658531,-0.342091,-0.670306][0.959575,0.0937473,0][-0.0386954,0.629297,0.016203][-0.350893,-0.341524,-0.871915][0.959575,0.10015,0][-0.0392494,0.5625,0.0147814][-0.332142,0.593627,-0.733][0.945888,0.100036,0][-0.0392494,0.5625,0.0147814][-0.332142,0.593627,-0.733][0.945888,0.100036,0][-0.0709994,0.5625,0.0360314][-0.587537,0.593769,-0.549762][0.945888,0.0935308,0][-0.0699427,0.629297,0.037088][-0.658531,-0.342091,-0.670306][0.959575,0.0937473,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.0724687,0.878987,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.0724687,0.878987,0][6.7453e-007,0.762891,-0.0632812][0.0532257,0.44522,-0.893838][0.107726,0.878647,0][6.7453e-007,0.762891,-0.0632812][0.0532257,0.44522,-0.893838][0.949075,0.396667,0][-0.0670249,0.762891,-0.0501412][-0.290482,0.445408,-0.846896][0.93611,0.391399,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][-0.0670249,0.762891,-0.0501412][-0.290482,0.445408,-0.846896][0.986948,0.0943451,0][6.7453e-007,0.762891,-0.0632812][0.0532257,0.44522,-0.893838][0.986948,0.108079,0][6.49137e-007,0.703125,-0.0554687][-0.0077585,-0.410976,-0.911613][0.974702,0.108079,0][6.49137e-007,0.703125,-0.0554687][-0.0077585,-0.410976,-0.911613][0.974702,0.108079,0][-0.0639388,0.703125,-0.0429276][-0.354855,-0.411886,-0.839302][0.974702,0.0949775,0][-0.0670249,0.762891,-0.0501412][-0.290482,0.445408,-0.846896][0.986948,0.0943451,0][-0.0639388,0.703125,-0.0429276][-0.354855,-0.411886,-0.839302][0.974702,0.0949775,0][6.49137e-007,0.703125,-0.0554687][-0.0077585,-0.410976,-0.911613][0.974702,0.108079,0][6.44364e-007,0.629297,0.00859384][0.00855159,-0.34039,-0.940246][0.959575,0.108079,0][6.44364e-007,0.629297,0.00859384][0.00855159,-0.34039,-0.940246][0.959575,0.108079,0][-0.0386954,0.629297,0.016203][-0.350893,-0.341524,-0.871915][0.959575,0.10015,0][-0.0639388,0.703125,-0.0429276][-0.354855,-0.411886,-0.839302][0.974702,0.0949775,0][-0.0386954,0.629297,0.016203][-0.350893,-0.341524,-0.871915][0.959575,0.10015,0][6.44364e-007,0.629297,0.00859384][0.00855159,-0.34039,-0.940246][0.959575,0.108079,0][6.10953e-007,0.5625,0.00703134][-0.0262733,0.593494,-0.804409][0.945888,0.108079,0][6.10953e-007,0.5625,0.00703134][-0.0262733,0.593494,-0.804409][0.945888,0.108079,0][-0.0392494,0.5625,0.0147814][-0.332142,0.593627,-0.733][0.945888,0.100036,0][-0.0386954,0.629297,0.016203][-0.350893,-0.341524,-0.871915][0.959575,0.10015,0][6.10953e-007,0.5625,0.00703134][-0.0262733,0.593494,-0.804409][0.122355,0.734101,0][0.0392506,0.5625,0.0147813][0.28248,0.593949,-0.753279][0.130552,0.73408,0][0.0895396,0.517969,-0.103414][0.088892,0.969258,-0.229426][0.136036,0.759821,0][0.0895396,0.517969,-0.103414][0.088892,0.969258,-0.229426][0.136036,0.759821,0][5.26565e-007,0.517969,-0.121094][-0.00544525,0.969128,-0.246499][0.117336,0.75987,0][6.10953e-007,0.5625,0.00703134][-0.0262733,0.593494,-0.804409][0.122355,0.734101,0][5.26565e-007,0.517969,-0.121094][-0.00544525,0.969128,-0.246499][0.117336,0.75987,0][0.0895396,0.517969,-0.103414][0.088892,0.969258,-0.229426][0.136036,0.759821,0][0.161907,0.4875,-0.2735][0.0660968,0.985171,-0.158332][0.143928,0.796864,0][0.161907,0.4875,-0.2735][0.0660968,0.985171,-0.158332][0.143928,0.796864,0][4.21557e-007,0.4875,-0.305469][0.000588319,0.985098,-0.171991][0.110113,0.796951,0][5.26565e-007,0.517969,-0.121094][-0.00544525,0.969128,-0.246499][0.117336,0.75987,0][4.21557e-007,0.4875,-0.305469][0.000588319,0.985098,-0.171991][0.110113,0.796951,0][0.161907,0.4875,-0.2735][0.0660968,0.985171,-0.158332][0.143928,0.796864,0][0.226914,0.457031,-0.426289][0.14786,0.93335,-0.3271][0.151017,0.83014,0][0.226914,0.457031,-0.426289][0.14786,0.93335,-0.3271][0.151017,0.83014,0][3.25714e-007,0.457031,-0.471094][0.011522,0.933038,-0.359593][0.103625,0.830261,0][4.21557e-007,0.4875,-0.305469][0.000588319,0.985098,-0.171991][0.110113,0.796951,0][3.25714e-007,0.457031,-0.471094][0.011522,0.933038,-0.359593][0.579024,0.808142,0][0.226914,0.457031,-0.426289][0.14786,0.93335,-0.3271][0.625519,0.808142,0][0.255125,0.4125,-0.492594][0.168496,0.849969,-0.499161][0.631299,0.817266,0][0.255125,0.4125,-0.492594][0.168496,0.849969,-0.499161][0.631299,0.817266,0][2.68819e-007,0.4125,-0.542969][-0.0346433,0.849558,-0.526356][0.579024,0.817266,0][3.25714e-007,0.457031,-0.471094][0.011522,0.933038,-0.359593][0.579024,0.808142,0][0.0392506,0.5625,0.0147813][0.28248,0.593949,-0.753279][0.130552,0.73408,0][0.0710006,0.5625,0.0360313][0.549762,0.593768,-0.587538][0.13777,0.73105,0][0.161969,0.517969,-0.0549375][0.169794,0.969364,-0.177495][0.152502,0.752909,0][0.161969,0.517969,-0.0549375][0.169794,0.969364,-0.177495][0.152502,0.752909,0][0.0895396,0.517969,-0.103414][0.088892,0.969258,-0.229426][0.136036,0.759821,0][0.0392506,0.5625,0.0147813][0.28248,0.593949,-0.753279][0.130552,0.73408,0][0.0895396,0.517969,-0.103414][0.088892,0.969258,-0.229426][0.136036,0.759821,0][0.161969,0.517969,-0.0549375][0.169794,0.969364,-0.177495][0.152502,0.752909,0][0.292875,0.4875,-0.185844][0.121551,0.985217,-0.12072][0.173702,0.784365,0][0.292875,0.4875,-0.185844][0.121551,0.985217,-0.12072][0.173702,0.784365,0][0.161907,0.4875,-0.2735][0.0660968,0.985171,-0.158332][0.143928,0.796864,0][0.0895396,0.517969,-0.103414][0.088892,0.969258,-0.229426][0.136036,0.759821,0][0.161907,0.4875,-0.2735][0.0660968,0.985171,-0.158332][0.143928,0.796864,0][0.292875,0.4875,-0.185844][0.121551,0.985217,-0.12072][0.173702,0.784365,0][0.410469,0.457031,-0.303438][0.261583,0.933496,-0.245276][0.192746,0.812622,0][0.410469,0.457031,-0.303438][0.261583,0.933496,-0.245276][0.192746,0.812622,0][0.226914,0.457031,-0.426289][0.14786,0.93335,-0.3271][0.151017,0.83014,0][0.161907,0.4875,-0.2735][0.0660968,0.985171,-0.158332][0.143928,0.796864,0][0.226914,0.457031,-0.426289][0.14786,0.93335,-0.3271][0.625519,0.808142,0][0.410469,0.457031,-0.303438][0.261583,0.933496,-0.245276][0.663129,0.808142,0][0.4615,0.4125,-0.354469][0.346586,0.850518,-0.395598][0.673585,0.817266,0][0.4615,0.4125,-0.354469][0.346586,0.850518,-0.395598][0.673585,0.817266,0][0.255125,0.4125,-0.492594][0.168496,0.849969,-0.499161][0.631299,0.817266,0][0.226914,0.457031,-0.426289][0.14786,0.93335,-0.3271][0.625519,0.808142,0][0.0710006,0.5625,0.0360313][0.549762,0.593768,-0.587538][0.13777,0.73105,0][0.0922506,0.5625,0.0677813][0.733001,0.593626,-0.332142][0.143288,0.725497,0][0.210446,0.517969,0.0174922][0.225129,0.969283,-0.0990293][0.165089,0.740241,0][0.210446,0.517969,0.0174922][0.225129,0.969283,-0.0990293][0.165089,0.740241,0][0.161969,0.517969,-0.0549375][0.169794,0.969364,-0.177495][0.152502,0.752909,0][0.0710006,0.5625,0.0360313][0.549762,0.593768,-0.587538][0.13777,0.73105,0][0.161969,0.517969,-0.0549375][0.169794,0.969364,-0.177495][0.152502,0.752909,0][0.210446,0.517969,0.0174922][0.225129,0.969283,-0.0990293][0.165089,0.740241,0][0.380532,0.4875,-0.0548751][0.158797,0.985169,-0.0650027][0.196462,0.761459,0][0.380532,0.4875,-0.0548751][0.158797,0.985169,-0.0650027][0.196462,0.761459,0][0.292875,0.4875,-0.185844][0.121551,0.985217,-0.12072][0.173702,0.784365,0][0.161969,0.517969,-0.0549375][0.169794,0.969364,-0.177495][0.152502,0.752909,0][0.292875,0.4875,-0.185844][0.121551,0.985217,-0.12072][0.173702,0.784365,0][0.380532,0.4875,-0.0548751][0.158797,0.985169,-0.0650027][0.196462,0.761459,0][0.533321,0.457031,-0.119883][0.336164,0.933285,-0.126386][0.224644,0.780519,0][0.533321,0.457031,-0.119883][0.336164,0.933285,-0.126386][0.224644,0.780519,0][0.410469,0.457031,-0.303438][0.261583,0.933496,-0.245276][0.192746,0.812622,0][0.292875,0.4875,-0.185844][0.121551,0.985217,-0.12072][0.173702,0.784365,0][0.410469,0.457031,-0.303438][0.261583,0.933496,-0.245276][0.49492,0.7757,0][0.533321,0.457031,-0.119883][0.336164,0.933285,-0.126386][0.53253,0.7757,0][0.599625,0.4125,-0.148094][0.471909,0.850288,-0.233051][0.526749,0.784825,0][0.599625,0.4125,-0.148094][0.471909,0.850288,-0.233051][0.526749,0.784825,0][0.4615,0.4125,-0.354469][0.346586,0.850518,-0.395598][0.484463,0.784825,0][0.410469,0.457031,-0.303438][0.261583,0.933496,-0.245276][0.49492,0.7757,0][0.0922506,0.5625,0.0677813][0.733001,0.593626,-0.332142][0.143288,0.725497,0][0.100001,0.5625,0.107031][0.80441,0.593494,-0.0262733][0.146384,0.717907,0][0.228126,0.517969,0.107031][0.2465,0.969128,-0.0054454][0.172153,0.722926,0][0.228126,0.517969,0.107031][0.2465,0.969128,-0.0054454][0.172153,0.722926,0][0.210446,0.517969,0.0174922][0.225129,0.969283,-0.0990293][0.165089,0.740241,0][0.0922506,0.5625,0.0677813][0.733001,0.593626,-0.332142][0.143288,0.725497,0][0.210446,0.517969,0.0174922][0.225129,0.969283,-0.0990293][0.165089,0.740241,0][0.228126,0.517969,0.107031][0.2465,0.969128,-0.0054454][0.172153,0.722926,0][0.412501,0.4875,0.107031][0.171992,0.985098,0.000587724][0.209234,0.730149,0][0.412501,0.4875,0.107031][0.171992,0.985098,0.000587724][0.209234,0.730149,0][0.380532,0.4875,-0.0548751][0.158797,0.985169,-0.0650027][0.196462,0.761459,0][0.210446,0.517969,0.0174922][0.225129,0.969283,-0.0990293][0.165089,0.740241,0][0.380532,0.4875,-0.0548751][0.158797,0.985169,-0.0650027][0.196462,0.761459,0][0.412501,0.4875,0.107031][0.171992,0.985098,0.000587724][0.209234,0.730149,0][0.578126,0.457031,0.107031][0.359594,0.933038,0.0115214][0.242544,0.736637,0][0.578126,0.457031,0.107031][0.359594,0.933038,0.0115214][0.242544,0.736637,0][0.533321,0.457031,-0.119883][0.336164,0.933285,-0.126386][0.224644,0.780519,0][0.380532,0.4875,-0.0548751][0.158797,0.985169,-0.0650027][0.196462,0.761459,0][0.533321,0.457031,-0.119883][0.336164,0.933285,-0.126386][0.53253,0.7757,0][0.578126,0.457031,0.107031][0.359594,0.933038,0.0115214][0.579024,0.7757,0][0.650001,0.4125,0.107031][0.526357,0.849558,-0.0346437][0.579024,0.784825,0][0.650001,0.4125,0.107031][0.526357,0.849558,-0.0346437][0.579024,0.784825,0][0.599625,0.4125,-0.148094][0.471909,0.850288,-0.233051][0.526749,0.784825,0][0.533321,0.457031,-0.119883][0.336164,0.933285,-0.126386][0.53253,0.7757,0][0.100001,0.5625,0.107031][0.80441,0.593494,-0.0262733][0.146384,0.717907,0][0.0922507,0.5625,0.146281][0.75328,0.593948,0.28248][0.146363,0.709709,0][0.210446,0.517969,0.19657][0.229427,0.969258,0.0888917][0.172105,0.704225,0][0.210446,0.517969,0.19657][0.229427,0.969258,0.0888917][0.172105,0.704225,0][0.228126,0.517969,0.107031][0.2465,0.969128,-0.0054454][0.172153,0.722926,0][0.100001,0.5625,0.107031][0.80441,0.593494,-0.0262733][0.146384,0.717907,0][0.228126,0.517969,0.107031][0.2465,0.969128,-0.0054454][0.172153,0.722926,0][0.210446,0.517969,0.19657][0.229427,0.969258,0.0888917][0.172105,0.704225,0][0.380532,0.4875,0.268937][0.158333,0.985171,0.0660963][0.209147,0.696334,0][0.380532,0.4875,0.268937][0.158333,0.985171,0.0660963][0.209147,0.696334,0][0.412501,0.4875,0.107031][0.171992,0.985098,0.000587724][0.209234,0.730149,0][0.228126,0.517969,0.107031][0.2465,0.969128,-0.0054454][0.172153,0.722926,0][0.412501,0.4875,0.107031][0.171992,0.985098,0.000587724][0.209234,0.730149,0][0.380532,0.4875,0.268937][0.158333,0.985171,0.0660963][0.209147,0.696334,0][0.533321,0.457031,0.333945][0.327101,0.93335,0.147859][0.242423,0.689245,0][0.533321,0.457031,0.333945][0.327101,0.93335,0.147859][0.242423,0.689245,0][0.578126,0.457031,0.107031][0.359594,0.933038,0.0115214][0.242544,0.736637,0][0.412501,0.4875,0.107031][0.171992,0.985098,0.000587724][0.209234,0.730149,0][0.578126,0.457031,0.107031][0.359594,0.933038,0.0115214][0.579024,0.7757,0][0.533321,0.457031,0.333945][0.327101,0.93335,0.147859][0.625519,0.7757,0][0.599626,0.4125,0.362156][0.499162,0.849969,0.168496][0.631299,0.784825,0][0.599626,0.4125,0.362156][0.499162,0.849969,0.168496][0.631299,0.784825,0][0.650001,0.4125,0.107031][0.526357,0.849558,-0.0346437][0.579024,0.784825,0][0.578126,0.457031,0.107031][0.359594,0.933038,0.0115214][0.579024,0.7757,0][0.0922507,0.5625,0.146281][0.75328,0.593948,0.28248][0.146363,0.709709,0][0.0710007,0.5625,0.178031][0.587538,0.593768,0.549762][0.143333,0.702491,0][0.161969,0.517969,0.269][0.177495,0.969364,0.169793][0.165192,0.687759,0][0.161969,0.517969,0.269][0.177495,0.969364,0.169793][0.165192,0.687759,0][0.210446,0.517969,0.19657][0.229427,0.969258,0.0888917][0.172105,0.704225,0][0.0922507,0.5625,0.146281][0.75328,0.593948,0.28248][0.146363,0.709709,0][0.210446,0.517969,0.19657][0.229427,0.969258,0.0888917][0.172105,0.704225,0][0.161969,0.517969,0.269][0.177495,0.969364,0.169793][0.165192,0.687759,0][0.292876,0.4875,0.399906][0.12072,0.985217,0.121551][0.196648,0.666559,0][0.292876,0.4875,0.399906][0.12072,0.985217,0.121551][0.196648,0.666559,0][0.380532,0.4875,0.268937][0.158333,0.985171,0.0660963][0.209147,0.696334,0][0.210446,0.517969,0.19657][0.229427,0.969258,0.0888917][0.172105,0.704225,0][0.380532,0.4875,0.268937][0.158333,0.985171,0.0660963][0.209147,0.696334,0][0.292876,0.4875,0.399906][0.12072,0.985217,0.121551][0.196648,0.666559,0][0.41047,0.457031,0.5175][0.245276,0.933496,0.261583][0.224905,0.647516,0][0.41047,0.457031,0.5175][0.245276,0.933496,0.261583][0.224905,0.647516,0][0.533321,0.457031,0.333945][0.327101,0.93335,0.147859][0.242423,0.689245,0][0.380532,0.4875,0.268937][0.158333,0.985171,0.0660963][0.209147,0.696334,0][0.533321,0.457031,0.333945][0.327101,0.93335,0.147859][0.625519,0.7757,0][0.41047,0.457031,0.5175][0.245276,0.933496,0.261583][0.663129,0.7757,0][0.461501,0.4125,0.568531][0.395598,0.850518,0.346586][0.673585,0.784825,0][0.461501,0.4125,0.568531][0.395598,0.850518,0.346586][0.673585,0.784825,0][0.599626,0.4125,0.362156][0.499162,0.849969,0.168496][0.631299,0.784825,0][0.533321,0.457031,0.333945][0.327101,0.93335,0.147859][0.625519,0.7757,0][0.0710007,0.5625,0.178031][0.587538,0.593768,0.549762][0.143333,0.702491,0][0.0392507,0.5625,0.199281][0.332142,0.593627,0.733][0.13778,0.696974,0][0.0895398,0.517969,0.317477][0.0990296,0.969283,0.225129][0.152524,0.675172,0][0.0895398,0.517969,0.317477][0.0990296,0.969283,0.225129][0.152524,0.675172,0][0.161969,0.517969,0.269][0.177495,0.969364,0.169793][0.165192,0.687759,0][0.0710007,0.5625,0.178031][0.587538,0.593768,0.549762][0.143333,0.702491,0][0.161969,0.517969,0.269][0.177495,0.969364,0.169793][0.165192,0.687759,0][0.0895398,0.517969,0.317477][0.0990296,0.969283,0.225129][0.152524,0.675172,0][0.161907,0.4875,0.487563][0.0650034,0.985169,0.158797][0.173742,0.6438,0][0.161907,0.4875,0.487563][0.0650034,0.985169,0.158797][0.173742,0.6438,0][0.292876,0.4875,0.399906][0.12072,0.985217,0.121551][0.196648,0.666559,0][0.161969,0.517969,0.269][0.177495,0.969364,0.169793][0.165192,0.687759,0][0.292876,0.4875,0.399906][0.12072,0.985217,0.121551][0.196648,0.666559,0][0.161907,0.4875,0.487563][0.0650034,0.985169,0.158797][0.173742,0.6438,0][0.226915,0.457031,0.640352][0.126387,0.933285,0.336163][0.192801,0.615617,0][0.226915,0.457031,0.640352][0.126387,0.933285,0.336163][0.192801,0.615617,0][0.41047,0.457031,0.5175][0.245276,0.933496,0.261583][0.224905,0.647516,0][0.292876,0.4875,0.399906][0.12072,0.985217,0.121551][0.196648,0.666559,0][0.41047,0.457031,0.5175][0.245276,0.933496,0.261583][0.421812,0.545612,0][0.226915,0.457031,0.640352][0.126387,0.933285,0.336163][0.459422,0.545612,0][0.255126,0.4125,0.706656][0.233051,0.850288,0.471908][0.453642,0.554736,0][0.255126,0.4125,0.706656][0.233051,0.850288,0.471908][0.453642,0.554736,0][0.461501,0.4125,0.568531][0.395598,0.850518,0.346586][0.411356,0.554736,0][0.41047,0.457031,0.5175][0.245276,0.933496,0.261583][0.421812,0.545612,0][0.0392507,0.5625,0.199281][0.332142,0.593627,0.733][0.13778,0.696974,0][7.08705e-007,0.5625,0.207031][0.0262732,0.593494,0.804409][0.13019,0.693877,0][7.49562e-007,0.517969,0.335156][0.00544548,0.969128,0.246499][0.135209,0.668109,0][7.49562e-007,0.517969,0.335156][0.00544548,0.969128,0.246499][0.135209,0.668109,0][0.0895398,0.517969,0.317477][0.0990296,0.969283,0.225129][0.152524,0.675172,0][0.0392507,0.5625,0.199281][0.332142,0.593627,0.733][0.13778,0.696974,0][0.0895398,0.517969,0.317477][0.0990296,0.969283,0.225129][0.152524,0.675172,0][7.49562e-007,0.517969,0.335156][0.00544548,0.969128,0.246499][0.135209,0.668109,0][8.24786e-007,0.4875,0.519531][-0.000587182,0.985098,0.171991][0.142432,0.631027,0][8.24786e-007,0.4875,0.519531][-0.000587182,0.985098,0.171991][0.142432,0.631027,0][0.161907,0.4875,0.487563][0.0650034,0.985169,0.158797][0.173742,0.6438,0][0.0895398,0.517969,0.317477][0.0990296,0.969283,0.225129][0.152524,0.675172,0][0.161907,0.4875,0.487563][0.0650034,0.985169,0.158797][0.173742,0.6438,0][8.24786e-007,0.4875,0.519531][-0.000587182,0.985098,0.171991][0.142432,0.631027,0][8.90845e-007,0.457031,0.685156][-0.011521,0.933038,0.359593][0.14892,0.597717,0][8.90845e-007,0.457031,0.685156][-0.011521,0.933038,0.359593][0.14892,0.597717,0][0.226915,0.457031,0.640352][0.126387,0.933285,0.336163][0.192801,0.615617,0][0.161907,0.4875,0.487563][0.0650034,0.985169,0.158797][0.173742,0.6438,0][0.226915,0.457031,0.640352][0.126387,0.933285,0.336163][0.459422,0.545612,0][8.90845e-007,0.457031,0.685156][-0.011521,0.933038,0.359593][0.505917,0.545612,0][9.0421e-007,0.4125,0.757031][0.0346441,0.849558,0.526356][0.505917,0.554736,0][9.0421e-007,0.4125,0.757031][0.0346441,0.849558,0.526356][0.505917,0.554736,0][0.255126,0.4125,0.706656][0.233051,0.850288,0.471908][0.453642,0.554736,0][0.226915,0.457031,0.640352][0.126387,0.933285,0.336163][0.459422,0.545612,0][7.08705e-007,0.5625,0.207031][0.0262732,0.593494,0.804409][0.13019,0.693877,0][-0.0392493,0.5625,0.199281][-0.282479,0.593949,0.753279][0.121992,0.693898,0][-0.0895383,0.517969,0.317477][-0.0888911,0.969259,0.229426][0.116508,0.668157,0][-0.0895383,0.517969,0.317477][-0.0888911,0.969259,0.229426][0.116508,0.668157,0][7.49562e-007,0.517969,0.335156][0.00544548,0.969128,0.246499][0.135209,0.668109,0][7.08705e-007,0.5625,0.207031][0.0262732,0.593494,0.804409][0.13019,0.693877,0][7.49562e-007,0.517969,0.335156][0.00544548,0.969128,0.246499][0.135209,0.668109,0][-0.0895383,0.517969,0.317477][-0.0888911,0.969259,0.229426][0.116508,0.668157,0][-0.161905,0.4875,0.487563][-0.0660959,0.985171,0.158332][0.108617,0.631114,0][-0.161905,0.4875,0.487563][-0.0660959,0.985171,0.158332][0.108617,0.631114,0][8.24786e-007,0.4875,0.519531][-0.000587182,0.985098,0.171991][0.142432,0.631027,0][7.49562e-007,0.517969,0.335156][0.00544548,0.969128,0.246499][0.135209,0.668109,0][8.24786e-007,0.4875,0.519531][-0.000587182,0.985098,0.171991][0.142432,0.631027,0][-0.161905,0.4875,0.487563][-0.0660959,0.985171,0.158332][0.108617,0.631114,0][-0.226913,0.457031,0.640352][-0.147859,0.93335,0.327101][0.101528,0.597839,0][-0.226913,0.457031,0.640352][-0.147859,0.93335,0.327101][0.101528,0.597839,0][8.90845e-007,0.457031,0.685156][-0.011521,0.933038,0.359593][0.14892,0.597717,0][8.24786e-007,0.4875,0.519531][-0.000587182,0.985098,0.171991][0.142432,0.631027,0][8.90845e-007,0.457031,0.685156][-0.011521,0.933038,0.359593][0.505917,0.545612,0][-0.226913,0.457031,0.640352][-0.147859,0.93335,0.327101][0.552411,0.545612,0][-0.255124,0.4125,0.706656][-0.168495,0.849969,0.499161][0.558192,0.554736,0][-0.255124,0.4125,0.706656][-0.168495,0.849969,0.499161][0.558192,0.554736,0][9.0421e-007,0.4125,0.757031][0.0346441,0.849558,0.526356][0.505917,0.554736,0][8.90845e-007,0.457031,0.685156][-0.011521,0.933038,0.359593][0.505917,0.545612,0][-0.0392493,0.5625,0.199281][-0.282479,0.593949,0.753279][0.121992,0.693898,0][-0.0709993,0.5625,0.178031][-0.549762,0.593769,0.587537][0.114774,0.696928,0][-0.161968,0.517969,0.269][-0.169792,0.969364,0.177495][0.100042,0.675069,0][-0.161968,0.517969,0.269][-0.169792,0.969364,0.177495][0.100042,0.675069,0][-0.0895383,0.517969,0.317477][-0.0888911,0.969259,0.229426][0.116508,0.668157,0][-0.0392493,0.5625,0.199281][-0.282479,0.593949,0.753279][0.121992,0.693898,0][-0.0895383,0.517969,0.317477][-0.0888911,0.969259,0.229426][0.116508,0.668157,0][-0.161968,0.517969,0.269][-0.169792,0.969364,0.177495][0.100042,0.675069,0][-0.292874,0.4875,0.399906][-0.12155,0.985217,0.12072][0.0788425,0.643613,0][-0.292874,0.4875,0.399906][-0.12155,0.985217,0.12072][0.0788425,0.643613,0][-0.161905,0.4875,0.487563][-0.0660959,0.985171,0.158332][0.108617,0.631114,0][-0.0895383,0.517969,0.317477][-0.0888911,0.969259,0.229426][0.116508,0.668157,0][-0.161905,0.4875,0.487563][-0.0660959,0.985171,0.158332][0.108617,0.631114,0][-0.292874,0.4875,0.399906][-0.12155,0.985217,0.12072][0.0788425,0.643613,0][-0.410468,0.457031,0.5175][-0.261583,0.933496,0.245276][0.0597987,0.615356,0][-0.410468,0.457031,0.5175][-0.261583,0.933496,0.245276][0.0597987,0.615356,0][-0.226913,0.457031,0.640352][-0.147859,0.93335,0.327101][0.101528,0.597839,0][-0.161905,0.4875,0.487563][-0.0660959,0.985171,0.158332][0.108617,0.631114,0][-0.226913,0.457031,0.640352][-0.147859,0.93335,0.327101][0.552411,0.545612,0][-0.410468,0.457031,0.5175][-0.261583,0.933496,0.245276][0.590021,0.545612,0][-0.461499,0.4125,0.568532][-0.346585,0.850518,0.395598][0.600478,0.554736,0][-0.461499,0.4125,0.568532][-0.346585,0.850518,0.395598][0.600478,0.554736,0][-0.255124,0.4125,0.706656][-0.168495,0.849969,0.499161][0.558192,0.554736,0][-0.226913,0.457031,0.640352][-0.147859,0.93335,0.327101][0.552411,0.545612,0][-0.0709993,0.5625,0.178031][-0.549762,0.593769,0.587537][0.114774,0.696928,0][-0.0922493,0.5625,0.146281][-0.733,0.593627,0.332141][0.109257,0.702481,0][-0.210445,0.517969,0.196571][-0.225128,0.969284,0.0990287][0.0874552,0.687737,0][-0.210445,0.517969,0.196571][-0.225128,0.969284,0.0990287][0.0874552,0.687737,0][-0.161968,0.517969,0.269][-0.169792,0.969364,0.177495][0.100042,0.675069,0][-0.0709993,0.5625,0.178031][-0.549762,0.593769,0.587537][0.114774,0.696928,0][-0.161968,0.517969,0.269][-0.169792,0.969364,0.177495][0.100042,0.675069,0][-0.210445,0.517969,0.196571][-0.225128,0.969284,0.0990287][0.0874552,0.687737,0][-0.380531,0.4875,0.268938][-0.158796,0.985169,0.0650029][0.0560825,0.66652,0][-0.380531,0.4875,0.268938][-0.158796,0.985169,0.0650029][0.0560825,0.66652,0][-0.292874,0.4875,0.399906][-0.12155,0.985217,0.12072][0.0788425,0.643613,0][-0.161968,0.517969,0.269][-0.169792,0.969364,0.177495][0.100042,0.675069,0][-0.292874,0.4875,0.399906][-0.12155,0.985217,0.12072][0.0788425,0.643613,0][-0.380531,0.4875,0.268938][-0.158796,0.985169,0.0650029][0.0560825,0.66652,0][-0.53332,0.457031,0.333946][-0.336163,0.933285,0.126386][0.0279003,0.64746,0][-0.53332,0.457031,0.333946][-0.336163,0.933285,0.126386][0.0279003,0.64746,0][-0.410468,0.457031,0.5175][-0.261583,0.933496,0.245276][0.0597987,0.615356,0][-0.292874,0.4875,0.399906][-0.12155,0.985217,0.12072][0.0788425,0.643613,0][-0.410468,0.457031,0.5175][-0.261583,0.933496,0.245276][0.689288,0.698509,0][-0.53332,0.457031,0.333946][-0.336163,0.933285,0.126386][0.726898,0.698509,0][-0.599624,0.4125,0.362157][-0.471909,0.850288,0.233051][0.721117,0.707634,0][-0.599624,0.4125,0.362157][-0.471909,0.850288,0.233051][0.721117,0.707634,0][-0.461499,0.4125,0.568532][-0.346585,0.850518,0.395598][0.678832,0.707634,0][-0.410468,0.457031,0.5175][-0.261583,0.933496,0.245276][0.689288,0.698509,0][-0.0922493,0.5625,0.146281][-0.733,0.593627,0.332141][0.109257,0.702481,0][-0.0999993,0.5625,0.107031][-0.804409,0.593495,0.0262734][0.10616,0.710072,0][-0.228124,0.517969,0.107031][-0.246498,0.969128,0.00544538][0.0803918,0.705053,0][-0.228124,0.517969,0.107031][-0.246498,0.969128,0.00544538][0.0803918,0.705053,0][-0.210445,0.517969,0.196571][-0.225128,0.969284,0.0990287][0.0874552,0.687737,0][-0.0922493,0.5625,0.146281][-0.733,0.593627,0.332141][0.109257,0.702481,0][-0.210445,0.517969,0.196571][-0.225128,0.969284,0.0990287][0.0874552,0.687737,0][-0.228124,0.517969,0.107031][-0.246498,0.969128,0.00544538][0.0803918,0.705053,0][-0.412499,0.4875,0.107032][-0.171991,0.985098,-0.000587766][0.0433104,0.69783,0][-0.412499,0.4875,0.107032][-0.171991,0.985098,-0.000587766][0.0433104,0.69783,0][-0.380531,0.4875,0.268938][-0.158796,0.985169,0.0650029][0.0560825,0.66652,0][-0.210445,0.517969,0.196571][-0.225128,0.969284,0.0990287][0.0874552,0.687737,0][-0.380531,0.4875,0.268938][-0.158796,0.985169,0.0650029][0.0560825,0.66652,0][-0.412499,0.4875,0.107032][-0.171991,0.985098,-0.000587766][0.0433104,0.69783,0][-0.578124,0.457031,0.107032][-0.359593,0.933038,-0.0115215][0.01,0.691342,0][-0.578124,0.457031,0.107032][-0.359593,0.933038,-0.0115215][0.01,0.691342,0][-0.53332,0.457031,0.333946][-0.336163,0.933285,0.126386][0.0279003,0.64746,0][-0.380531,0.4875,0.268938][-0.158796,0.985169,0.0650029][0.0560825,0.66652,0][-0.53332,0.457031,0.333946][-0.336163,0.933285,0.126386][0.726898,0.698509,0][-0.578124,0.457031,0.107032][-0.359593,0.933038,-0.0115215][0.773392,0.698509,0][-0.649999,0.4125,0.107032][-0.526356,0.849558,0.0346437][0.773392,0.707634,0][-0.649999,0.4125,0.107032][-0.526356,0.849558,0.0346437][0.773392,0.707634,0][-0.599624,0.4125,0.362157][-0.471909,0.850288,0.233051][0.721117,0.707634,0][-0.53332,0.457031,0.333946][-0.336163,0.933285,0.126386][0.726898,0.698509,0][-0.0999993,0.5625,0.107031][-0.804409,0.593495,0.0262734][0.10616,0.710072,0][-0.0922494,0.5625,0.0677814][-0.753279,0.593949,-0.282479][0.106181,0.718269,0][-0.210445,0.517969,0.0174924][-0.229425,0.969259,-0.0888915][0.0804399,0.723753,0][-0.210445,0.517969,0.0174924][-0.229425,0.969259,-0.0888915][0.0804399,0.723753,0][-0.228124,0.517969,0.107031][-0.246498,0.969128,0.00544538][0.0803918,0.705053,0][-0.0999993,0.5625,0.107031][-0.804409,0.593495,0.0262734][0.10616,0.710072,0][-0.228124,0.517969,0.107031][-0.246498,0.969128,0.00544538][0.0803918,0.705053,0][-0.210445,0.517969,0.0174924][-0.229425,0.969259,-0.0888915][0.0804399,0.723753,0][-0.380531,0.4875,-0.0548747][-0.158331,0.985171,-0.0660964][0.0433974,0.731645,0][-0.380531,0.4875,-0.0548747][-0.158331,0.985171,-0.0660964][0.0433974,0.731645,0][-0.412499,0.4875,0.107032][-0.171991,0.985098,-0.000587766][0.0433104,0.69783,0][-0.228124,0.517969,0.107031][-0.246498,0.969128,0.00544538][0.0803918,0.705053,0][-0.412499,0.4875,0.107032][-0.171991,0.985098,-0.000587766][0.0433104,0.69783,0][-0.380531,0.4875,-0.0548747][-0.158331,0.985171,-0.0660964][0.0433974,0.731645,0][-0.53332,0.457031,-0.119882][-0.3271,0.93335,-0.147859][0.0101219,0.738734,0][-0.53332,0.457031,-0.119882][-0.3271,0.93335,-0.147859][0.0101219,0.738734,0][-0.578124,0.457031,0.107032][-0.359593,0.933038,-0.0115215][0.01,0.691342,0][-0.412499,0.4875,0.107032][-0.171991,0.985098,-0.000587766][0.0433104,0.69783,0][-0.578124,0.457031,0.107032][-0.359593,0.933038,-0.0115215][0.773392,0.698509,0][-0.53332,0.457031,-0.119882][-0.3271,0.93335,-0.147859][0.819887,0.698509,0][-0.599625,0.4125,-0.148093][-0.499161,0.849969,-0.168496][0.825667,0.707634,0][-0.599625,0.4125,-0.148093][-0.499161,0.849969,-0.168496][0.825667,0.707634,0][-0.649999,0.4125,0.107032][-0.526356,0.849558,0.0346437][0.773392,0.707634,0][-0.578124,0.457031,0.107032][-0.359593,0.933038,-0.0115215][0.773392,0.698509,0][-0.0922494,0.5625,0.0677814][-0.753279,0.593949,-0.282479][0.106181,0.718269,0][-0.0709994,0.5625,0.0360314][-0.587537,0.593769,-0.549762][0.109211,0.725487,0][-0.161968,0.517969,-0.0549373][-0.177494,0.969364,-0.169793][0.0873521,0.740219,0][-0.161968,0.517969,-0.0549373][-0.177494,0.969364,-0.169793][0.0873521,0.740219,0][-0.210445,0.517969,0.0174924][-0.229425,0.969259,-0.0888915][0.0804399,0.723753,0][-0.0922494,0.5625,0.0677814][-0.753279,0.593949,-0.282479][0.106181,0.718269,0][-0.210445,0.517969,0.0174924][-0.229425,0.969259,-0.0888915][0.0804399,0.723753,0][-0.161968,0.517969,-0.0549373][-0.177494,0.969364,-0.169793][0.0873521,0.740219,0][-0.292875,0.4875,-0.185843][-0.120719,0.985217,-0.121551][0.0558962,0.761419,0][-0.292875,0.4875,-0.185843][-0.120719,0.985217,-0.121551][0.0558962,0.761419,0][-0.380531,0.4875,-0.0548747][-0.158331,0.985171,-0.0660964][0.0433974,0.731645,0][-0.210445,0.517969,0.0174924][-0.229425,0.969259,-0.0888915][0.0804399,0.723753,0][-0.380531,0.4875,-0.0548747][-0.158331,0.985171,-0.0660964][0.0433974,0.731645,0][-0.292875,0.4875,-0.185843][-0.120719,0.985217,-0.121551][0.0558962,0.761419,0][-0.410468,0.457031,-0.303437][-0.245275,0.933496,-0.261583][0.0276391,0.780463,0][-0.410468,0.457031,-0.303437][-0.245275,0.933496,-0.261583][0.0276391,0.780463,0][-0.53332,0.457031,-0.119882][-0.3271,0.93335,-0.147859][0.0101219,0.738734,0][-0.380531,0.4875,-0.0548747][-0.158331,0.985171,-0.0660964][0.0433974,0.731645,0][-0.53332,0.457031,-0.119882][-0.3271,0.93335,-0.147859][0.819887,0.698509,0][-0.410468,0.457031,-0.303437][-0.245275,0.933496,-0.261583][0.857497,0.698509,0][-0.4615,0.4125,-0.354468][-0.395598,0.850518,-0.346586][0.867953,0.707634,0][-0.4615,0.4125,-0.354468][-0.395598,0.850518,-0.346586][0.867953,0.707634,0][-0.599625,0.4125,-0.148093][-0.499161,0.849969,-0.168496][0.825667,0.707634,0][-0.53332,0.457031,-0.119882][-0.3271,0.93335,-0.147859][0.819887,0.698509,0][-0.0709994,0.5625,0.0360314][-0.587537,0.593769,-0.549762][0.109211,0.725487,0][-0.0392494,0.5625,0.0147814][-0.332142,0.593627,-0.733][0.114764,0.731005,0][-0.0895385,0.517969,-0.103414][-0.0990283,0.969284,-0.225129][0.10002,0.752806,0][-0.0895385,0.517969,-0.103414][-0.0990283,0.969284,-0.225129][0.10002,0.752806,0][-0.161968,0.517969,-0.0549373][-0.177494,0.969364,-0.169793][0.0873521,0.740219,0][-0.0709994,0.5625,0.0360314][-0.587537,0.593769,-0.549762][0.109211,0.725487,0][-0.161968,0.517969,-0.0549373][-0.177494,0.969364,-0.169793][0.0873521,0.740219,0][-0.0895385,0.517969,-0.103414][-0.0990283,0.969284,-0.225129][0.10002,0.752806,0][-0.161906,0.4875,-0.2735][-0.0650022,0.985169,-0.158797][0.0788027,0.784179,0][-0.161906,0.4875,-0.2735][-0.0650022,0.985169,-0.158797][0.0788027,0.784179,0][-0.292875,0.4875,-0.185843][-0.120719,0.985217,-0.121551][0.0558962,0.761419,0][-0.161968,0.517969,-0.0549373][-0.177494,0.969364,-0.169793][0.0873521,0.740219,0][-0.292875,0.4875,-0.185843][-0.120719,0.985217,-0.121551][0.0558962,0.761419,0][-0.161906,0.4875,-0.2735][-0.0650022,0.985169,-0.158797][0.0788027,0.784179,0][-0.226914,0.457031,-0.426289][-0.126386,0.933285,-0.336164][0.059743,0.812361,0][-0.226914,0.457031,-0.426289][-0.126386,0.933285,-0.336164][0.059743,0.812361,0][-0.410468,0.457031,-0.303437][-0.245275,0.933496,-0.261583][0.0276391,0.780463,0][-0.292875,0.4875,-0.185843][-0.120719,0.985217,-0.121551][0.0558962,0.761419,0][-0.410468,0.457031,-0.303437][-0.245275,0.933496,-0.261583][0.49492,0.808142,0][-0.226914,0.457031,-0.426289][-0.126386,0.933285,-0.336164][0.53253,0.808142,0][-0.255125,0.4125,-0.492594][-0.23305,0.850288,-0.471909][0.526749,0.817266,0][-0.255125,0.4125,-0.492594][-0.23305,0.850288,-0.471909][0.526749,0.817266,0][-0.4615,0.4125,-0.354468][-0.395598,0.850518,-0.346586][0.484463,0.817266,0][-0.410468,0.457031,-0.303437][-0.245275,0.933496,-0.261583][0.49492,0.808142,0][-0.0392494,0.5625,0.0147814][-0.332142,0.593627,-0.733][0.114764,0.731005,0][6.10953e-007,0.5625,0.00703134][-0.0262733,0.593494,-0.804409][0.122355,0.734101,0][5.26565e-007,0.517969,-0.121094][-0.00544525,0.969128,-0.246499][0.117336,0.75987,0][5.26565e-007,0.517969,-0.121094][-0.00544525,0.969128,-0.246499][0.117336,0.75987,0][-0.0895385,0.517969,-0.103414][-0.0990283,0.969284,-0.225129][0.10002,0.752806,0][-0.0392494,0.5625,0.0147814][-0.332142,0.593627,-0.733][0.114764,0.731005,0][-0.0895385,0.517969,-0.103414][-0.0990283,0.969284,-0.225129][0.10002,0.752806,0][5.26565e-007,0.517969,-0.121094][-0.00544525,0.969128,-0.246499][0.117336,0.75987,0][4.21557e-007,0.4875,-0.305469][0.000588319,0.985098,-0.171991][0.110113,0.796951,0][4.21557e-007,0.4875,-0.305469][0.000588319,0.985098,-0.171991][0.110113,0.796951,0][-0.161906,0.4875,-0.2735][-0.0650022,0.985169,-0.158797][0.0788027,0.784179,0][-0.0895385,0.517969,-0.103414][-0.0990283,0.969284,-0.225129][0.10002,0.752806,0][-0.161906,0.4875,-0.2735][-0.0650022,0.985169,-0.158797][0.0788027,0.784179,0][4.21557e-007,0.4875,-0.305469][0.000588319,0.985098,-0.171991][0.110113,0.796951,0][3.25714e-007,0.457031,-0.471094][0.011522,0.933038,-0.359593][0.103625,0.830261,0][3.25714e-007,0.457031,-0.471094][0.011522,0.933038,-0.359593][0.103625,0.830261,0][-0.226914,0.457031,-0.426289][-0.126386,0.933285,-0.336164][0.059743,0.812361,0][-0.161906,0.4875,-0.2735][-0.0650022,0.985169,-0.158797][0.0788027,0.784179,0][-0.226914,0.457031,-0.426289][-0.126386,0.933285,-0.336164][0.53253,0.808142,0][3.25714e-007,0.457031,-0.471094][0.011522,0.933038,-0.359593][0.579024,0.808142,0][2.68819e-007,0.4125,-0.542969][-0.0346433,0.849558,-0.526356][0.579024,0.817266,0][2.68819e-007,0.4125,-0.542969][-0.0346433,0.849558,-0.526356][0.579024,0.817266,0][-0.255125,0.4125,-0.492594][-0.23305,0.850288,-0.471909][0.526749,0.817266,0][-0.226914,0.457031,-0.426289][-0.126386,0.933285,-0.336164][0.53253,0.808142,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/tophat.mesh b/shareddata/charcustom/hats/fonts/tophat.mesh deleted file mode 100644 index b60e79c..0000000 --- a/shareddata/charcustom/hats/fonts/tophat.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -438 -[1.11387,-0.723019,-0.383455][0,-3.43927,2.6626e-007][0.878875,0.0784093,-0.24975][1.84615,-0.723019,-0.671919][0,-2.79253,1.28487e-007][0.872899,0.0935805,-0.24975][1.96464,-0.723019,2.59168e-005][0,-2.79253,0][0.88682,0.0960352,-0.24975][1.96464,-0.723019,2.59168e-005][0,-2.79253,0][0.88682,0.0960352,-0.24975][1.15859,-0.723019,0.142153][0,-3.14159,0][0.889765,0.0793359,-0.24975][1.1811,-0.723019,2.7796e-005][0,-3.47223,0][0.88682,0.0798023,-0.24975][1.11387,-0.723019,-0.383455][0,-3.43927,2.6626e-007][0.878875,0.0784093,-0.24975][1.96464,-0.723019,2.59168e-005][0,-2.79253,0][0.88682,0.0960352,-0.24975][1.1811,-0.723019,2.7796e-005][0,-3.47223,0][0.88682,0.0798023,-0.24975][0.955532,-0.723019,-0.694207][1.21693e-007,-3.45575,2.23907e-007][0.872437,0.075129,-0.24975][0.796166,-0.723019,-0.853573][0,-3.14159,0][0.869136,0.0718274,-0.24975][1.505,-0.723019,-1.26282][0,-2.79253,0][0.860657,0.0865126,-0.24975][0.955532,-0.723019,-0.694207][1.21693e-007,-3.45575,2.23907e-007][0.872437,0.075129,-0.24975][1.505,-0.723019,-1.26282][0,-2.79253,0][0.860657,0.0865126,-0.24975][1.84615,-0.723019,-0.671919][0,-2.79253,1.28487e-007][0.872899,0.0935805,-0.24975][0.955532,-0.723019,-0.694207][1.21693e-007,-3.45575,2.23907e-007][0.872437,0.075129,-0.24975][1.84615,-0.723019,-0.671919][0,-2.79253,1.28487e-007][0.872899,0.0935805,-0.24975][1.11387,-0.723019,-0.383455][0,-3.43927,2.6626e-007][0.878875,0.0784093,-0.24975][0.694235,-0.723019,-0.955504][0,-3.47941,0][0.867024,0.0697156,-0.24975][0.334843,-0.723019,-1.12804][0,-3.4321,0][0.863449,0.0622699,-0.24975][0.982318,-0.723019,-1.7014][0,-2.79253,0][0.851571,0.075684,-0.24975][0.982318,-0.723019,-1.7014][0,-2.79253,0][0.851571,0.075684,-0.24975][1.505,-0.723019,-1.26282][0,-2.79253,0][0.860657,0.0865126,-0.24975][0.796166,-0.723019,-0.853573][0,-3.14159,0][0.869136,0.0718274,-0.24975][0.694235,-0.723019,-0.955504][0,-3.47941,0][0.867024,0.0697156,-0.24975][0.982318,-0.723019,-1.7014][0,-2.79253,0][0.851571,0.075684,-0.24975][0.796166,-0.723019,-0.853573][0,-3.14159,0][0.869136,0.0718274,-0.24975][0,-0.723019,-1.18107][0,-3.45575,0][0.862351,0.0553328,-0.24975][-0.350444,-0.723019,-1.12557][0,-3.44389,0][0.863501,0.0480724,-0.24975][0.341155,-0.723019,-1.93476][0,-2.79253,0][0.846736,0.0624006,-0.24975][0.341155,-0.723019,-1.93476][0,-2.79253,0][0.846736,0.0624006,-0.24975][0.982318,-0.723019,-1.7014][0,-2.79253,0][0.851571,0.075684,-0.24975][0.334843,-0.723019,-1.12804][0,-3.4321,0][0.863449,0.0622699,-0.24975][0,-0.723019,-1.18107][0,-3.45575,0][0.862351,0.0553328,-0.24975][0.341155,-0.723019,-1.93476][0,-2.79253,0][0.846736,0.0624006,-0.24975][0.334843,-0.723019,-1.12804][0,-3.4321,0][0.863449,0.0622699,-0.24975][-0.341156,-0.723019,-1.93476][0,-2.79253,0][0.846736,0.0482648,-0.24975][0.341155,-0.723019,-1.93476][0,-2.79253,0][0.846736,0.0624006,-0.24975][-0.350444,-0.723019,-1.12557][0,-3.44389,0][0.863501,0.0480724,-0.24975][-0.341156,-0.723019,-1.93476][0,-2.79253,0][0.846736,0.0482648,-0.24975][-0.350444,-0.723019,-1.12557][0,-3.44389,0][0.863501,0.0480724,-0.24975][-0.694235,-0.723019,-0.955504][0,-3.46761,0][0.867024,0.0409499,-0.24975][-0.341156,-0.723019,-1.93476][0,-2.79253,0][0.846736,0.0482648,-0.24975][-0.694235,-0.723019,-0.955504][0,-3.46761,0][0.867024,0.0409499,-0.24975][-0.955532,-0.723019,-0.694207][-7.39302e-007,-3.45575,-3.45391e-007][0.872437,0.0355364,-0.24975][-1.1233,-0.723019,-0.364953][2.89893e-006,-3.45575,2.0209e-006][0.879259,0.0320608,-0.24975][-1.15755,-0.723019,-0.148675][0,-3.14159,0][0.883739,0.0313511,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-0.955532,-0.723019,-0.694207][-7.39302e-007,-3.45575,-3.45391e-007][0.872437,0.0355364,-0.24975][-1.1233,-0.723019,-0.364953][2.89893e-006,-3.45575,2.0209e-006][0.879259,0.0320608,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-0.341156,-0.723019,-1.93476][0,-2.79253,0][0.846736,0.0482648,-0.24975][-0.955532,-0.723019,-0.694207][-7.39302e-007,-3.45575,-3.45391e-007][0.872437,0.0355364,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-0.982319,-0.723019,-1.7014][0,-2.79253,0][0.851571,0.0349815,-0.24975][-0.341156,-0.723019,-1.93476][0,-2.79253,0][0.846736,0.0482648,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-1.505,-0.723019,-1.26282][0,-2.79253,0][0.860657,0.0241528,-0.24975][-0.982319,-0.723019,-1.7014][0,-2.79253,0][0.851571,0.0349815,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-1.84615,-0.723019,-0.671919][-4.574e-007,-2.79253,0][0.872899,0.0170849,-0.24975][-1.505,-0.723019,-1.26282][0,-2.79253,0][0.860657,0.0241528,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-1.96464,-0.723019,2.62643e-005][0,-2.79253,0][0.88682,0.0146303,-0.24975][-1.84615,-0.723019,-0.671919][-4.574e-007,-2.79253,0][0.872899,0.0170849,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-0.982318,-0.723019,1.70145][0,-2.79253,2.52372e-007][0.92207,0.0349815,-0.24975][-1.505,-0.723019,1.26287][-4.58469e-007,-2.79253,5.46383e-007][0.912983,0.0241528,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-0.341155,-0.723019,1.93482][0,-2.79253,1.44425e-007][0.926904,0.0482648,-0.24975][-0.982318,-0.723019,1.70145][0,-2.79253,2.52372e-007][0.92207,0.0349815,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][0.341156,-0.723019,1.93482][0,-2.79253,0][0.926904,0.0624006,-0.24975][-0.341155,-0.723019,1.93482][0,-2.79253,1.44425e-007][0.926904,0.0482648,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][0.982319,-0.723019,1.70145][0,-2.79253,0][0.92207,0.075684,-0.24975][0.341156,-0.723019,1.93482][0,-2.79253,0][0.926904,0.0624006,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-0.791936,-0.723019,0.857859][2.16452e-007,-3.15748,-2.15115e-007][0.904592,0.0389258,-0.24975][-0.694234,-0.723019,0.95556][3.28859e-007,-3.45575,-6.09476e-007][0.906616,0.0409499,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-0.694234,-0.723019,0.95556][3.28859e-007,-3.45575,-6.09476e-007][0.906616,0.0409499,-0.24975][-0.364981,-0.723019,1.12332][4.38518e-007,-3.45575,-1.01548e-006][0.910092,0.0477712,-0.24975][0.364981,-0.723019,1.12332][0,-3.45575,0][0.910092,0.0628942,-0.24975][0.454605,-0.723019,1.07766][0,-3.14159,2.34201e-007][0.909146,0.064751,-0.24975][1.505,-0.723019,1.26287][0,-0.872662,0][0.912983,0.0865126,-0.24975][1.58328e-007,-0.723019,1.18113][0,-3.45575,0][0.91129,0.0553328,-0.24975][0.364981,-0.723019,1.12332][0,-3.45575,0][0.910092,0.0628942,-0.24975][1.505,-0.723019,1.26287][0,-0.872662,0][0.912983,0.0865126,-0.24975][1.58328e-007,-0.723019,1.18113][0,-3.45575,0][0.91129,0.0553328,-0.24975][1.505,-0.723019,1.26287][0,-0.872662,0][0.912983,0.0865126,-0.24975][0.982319,-0.723019,1.70145][0,-2.79253,0][0.92207,0.075684,-0.24975][-0.364981,-0.723019,1.12332][4.38518e-007,-3.45575,-1.01548e-006][0.910092,0.0477712,-0.24975][1.58328e-007,-0.723019,1.18113][0,-3.45575,0][0.91129,0.0553328,-0.24975][0.982319,-0.723019,1.70145][0,-2.79253,0][0.92207,0.075684,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-0.364981,-0.723019,1.12332][4.38518e-007,-3.45575,-1.01548e-006][0.910092,0.0477712,-0.24975][0.982319,-0.723019,1.70145][0,-2.79253,0][0.92207,0.075684,-0.24975][1.84615,-0.723019,0.671971][0,-1.75792,0][0.900741,0.0935805,-0.24975][0.961211,-0.723019,0.683117][-2.38534e-007,-3.44562,-5.12656e-007][0.900972,0.0752467,-0.24975][1.1233,-0.723019,0.365008][0,-3.45575,2.527e-007][0.894382,0.0786047,-0.24975][1.96464,-0.723019,2.59168e-005][0,-2.79253,0][0.88682,0.0960352,-0.24975][1.84615,-0.723019,0.671971][0,-1.75792,0][0.900741,0.0935805,-0.24975][1.1233,-0.723019,0.365008][0,-3.45575,2.527e-007][0.894382,0.0786047,-0.24975][1.96464,-0.723019,2.59168e-005][0,-2.79253,0][0.88682,0.0960352,-0.24975][1.1233,-0.723019,0.365008][0,-3.45575,2.527e-007][0.894382,0.0786047,-0.24975][1.15859,-0.723019,0.142153][0,-3.14159,0][0.889765,0.0793359,-0.24975][1.96464,-0.723019,2.59168e-005][0,-2.79253,0][0.156439,0.0330797,0.999001][1.84615,-0.723019,-0.671919][0,-2.79253,1.28487e-007][0.192747,0.0330797,0.999001][1.84615,-0.474455,-0.67192][2.90728,-2.41848e-007,-1.05816][0.192747,0.126404,0.999001][1.84615,-0.474455,-0.67192][2.90728,-2.41848e-007,-1.05816][0.192747,0.126404,0.999001][1.96464,-0.474455,2.5906e-005][3.09386,0,0][0.156439,0.126404,0.999001][1.96464,-0.723019,2.59168e-005][0,-2.79253,0][0.156439,0.0330797,0.999001][1.84615,-0.723019,-0.671919][0,-2.79253,1.28487e-007][0.192747,0.0330797,0.999001][1.505,-0.723019,-1.26282][0,-2.79253,0][0.229055,0.0330797,0.999001][1.505,-0.474455,-1.26282][2.37004,0,-1.9887][0.229055,0.126404,0.999001][1.505,-0.474455,-1.26282][2.37004,0,-1.9887][0.229055,0.126404,0.999001][1.84615,-0.474455,-0.67192][2.90728,-2.41848e-007,-1.05816][0.192747,0.126404,0.999001][1.84615,-0.723019,-0.671919][0,-2.79253,1.28487e-007][0.192747,0.0330797,0.999001][1.505,-0.723019,-1.26282][0,-2.79253,0][0.229055,0.0330797,0.999001][0.982318,-0.723019,-1.7014][0,-2.79253,0][0.265363,0.0330797,0.999001][0.982318,-0.474455,-1.7014][1.54693,0,-2.67937][0.265363,0.126404,0.999001][0.982318,-0.474455,-1.7014][1.54693,0,-2.67937][0.265363,0.126404,0.999001][1.505,-0.474455,-1.26282][2.37004,0,-1.9887][0.229055,0.126404,0.999001][1.505,-0.723019,-1.26282][0,-2.79253,0][0.229055,0.0330797,0.999001][0.982318,-0.723019,-1.7014][0,-2.79253,0][0.265363,0.0330797,0.999001][0.341155,-0.723019,-1.93476][0,-2.79253,0][0.301671,0.0330797,0.999001][0.341155,-0.474455,-1.93476][0.537244,0,-3.04686][0.301671,0.126404,0.999001][0.341155,-0.474455,-1.93476][0.537244,0,-3.04686][0.301671,0.126404,0.999001][0.982318,-0.474455,-1.7014][1.54693,0,-2.67937][0.265363,0.126404,0.999001][0.982318,-0.723019,-1.7014][0,-2.79253,0][0.265363,0.0330797,0.999001][0.341155,-0.723019,-1.93476][0,-2.79253,0][0.301671,0.0330797,0.999001][-0.341156,-0.723019,-1.93476][0,-2.79253,0][0.337979,0.0330797,0.999001][-0.341156,-0.474455,-1.93476][-0.537244,0,-3.04686][0.337979,0.126404,0.999001][-0.341156,-0.474455,-1.93476][-0.537244,0,-3.04686][0.337979,0.126404,0.999001][0.341155,-0.474455,-1.93476][0.537244,0,-3.04686][0.301671,0.126404,0.999001][0.341155,-0.723019,-1.93476][0,-2.79253,0][0.301671,0.0330797,0.999001][-0.341156,-0.723019,-1.93476][0,-2.79253,0][0.337979,0.0330797,0.999001][-0.982319,-0.723019,-1.7014][0,-2.79253,0][0.374287,0.0330797,0.999001][-0.982319,-0.474455,-1.7014][-1.54693,0,-2.67937][0.374287,0.126404,0.999001][-0.982319,-0.474455,-1.7014][-1.54693,0,-2.67937][0.374287,0.126404,0.999001][-0.341156,-0.474455,-1.93476][-0.537244,0,-3.04686][0.337979,0.126404,0.999001][-0.341156,-0.723019,-1.93476][0,-2.79253,0][0.337979,0.0330797,0.999001][-0.982319,-0.723019,-1.7014][0,-2.79253,0][0.374287,0.0330797,0.999001][-1.505,-0.723019,-1.26282][0,-2.79253,0][0.410595,0.0330797,0.999001][-1.505,-0.474455,-1.26282][-2.37004,0,-1.9887][0.410595,0.126404,0.999001][-1.505,-0.474455,-1.26282][-2.37004,0,-1.9887][0.410595,0.126404,0.999001][-0.982319,-0.474455,-1.7014][-1.54693,0,-2.67937][0.374287,0.126404,0.999001][-0.982319,-0.723019,-1.7014][0,-2.79253,0][0.374287,0.0330797,0.999001][-1.505,-0.723019,-1.26282][0,-2.79253,0][0.410595,0.0330797,0.999001][-1.84615,-0.723019,-0.671919][-4.574e-007,-2.79253,0][0.446903,0.0330797,0.999001][-1.84615,-0.474455,-0.671919][-2.90728,-2.11856e-007,-1.05816][0.446903,0.126404,0.999001][-1.84615,-0.474455,-0.671919][-2.90728,-2.11856e-007,-1.05816][0.446903,0.126404,0.999001][-1.505,-0.474455,-1.26282][-2.37004,0,-1.9887][0.410595,0.126404,0.999001][-1.505,-0.723019,-1.26282][0,-2.79253,0][0.410595,0.0330797,0.999001][-1.84615,-0.723019,-0.671919][-4.574e-007,-2.79253,0][0.446903,0.0330797,0.999001][-1.96464,-0.723019,2.62643e-005][0,-2.79253,0][0.483211,0.0330797,0.999001][-1.96464,-0.474455,2.62534e-005][-3.09386,0,5.29411e-007][0.483211,0.126404,0.999001][-1.96464,-0.474455,2.62534e-005][-3.09386,0,5.29411e-007][0.483211,0.126404,0.999001][-1.84615,-0.474455,-0.671919][-2.90728,-2.11856e-007,-1.05816][0.446903,0.126404,0.999001][-1.84615,-0.723019,-0.671919][-4.574e-007,-2.79253,0][0.446903,0.0330797,0.999001][-1.96464,-0.723019,2.62643e-005][0,-2.79253,0][0.483211,0.0330797,0.999001][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.519519,0.0330797,0.999001][-1.84615,-0.474455,0.671972][-2.90728,0,1.05816][0.519519,0.126404,0.999001][-1.84615,-0.474455,0.671972][-2.90728,0,1.05816][0.519519,0.126404,0.999001][-1.96464,-0.474455,2.62534e-005][-3.09386,0,5.29411e-007][0.483211,0.126404,0.999001][-1.96464,-0.723019,2.62643e-005][0,-2.79253,0][0.483211,0.0330797,0.999001][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.519519,0.0330797,0.999001][-1.505,-0.723019,1.26287][-4.58469e-007,-2.79253,5.46383e-007][0.555827,0.0330797,0.999001][-1.505,-0.474455,1.26287][-2.37004,8.69988e-007,1.9887][0.555827,0.126404,0.999001][-1.505,-0.474455,1.26287][-2.37004,8.69988e-007,1.9887][0.555827,0.126404,0.999001][-1.84615,-0.474455,0.671972][-2.90728,0,1.05816][0.519519,0.126404,0.999001][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.519519,0.0330797,0.999001][-1.505,-0.723019,1.26287][-4.58469e-007,-2.79253,5.46383e-007][0.555827,0.0330797,0.999001][-0.982318,-0.723019,1.70145][0,-2.79253,2.52372e-007][0.592135,0.0330797,0.999001][-0.982318,-0.474455,1.70145][-1.54693,1.28349e-007,2.67937][0.592135,0.126404,0.999001][-0.982318,-0.474455,1.70145][-1.54693,1.28349e-007,2.67937][0.592135,0.126404,0.999001][-1.505,-0.474455,1.26287][-2.37004,8.69988e-007,1.9887][0.555827,0.126404,0.999001][-1.505,-0.723019,1.26287][-4.58469e-007,-2.79253,5.46383e-007][0.555827,0.0330797,0.999001][-0.982318,-0.723019,1.70145][0,-2.79253,2.52372e-007][0.592135,0.0330797,0.999001][-0.341155,-0.723019,1.93482][0,-2.79253,1.44425e-007][0.628442,0.0330797,0.999001][-0.341155,-0.474455,1.93482][-0.537243,0,3.04686][0.628442,0.126404,0.999001][-0.341155,-0.474455,1.93482][-0.537243,0,3.04686][0.628442,0.126404,0.999001][-0.982318,-0.474455,1.70145][-1.54693,1.28349e-007,2.67937][0.592135,0.126404,0.999001][-0.982318,-0.723019,1.70145][0,-2.79253,2.52372e-007][0.592135,0.0330797,0.999001][-0.341155,-0.723019,1.93482][0,-2.79253,1.44425e-007][0.628442,0.0330797,0.999001][0.341156,-0.723019,1.93482][0,-2.79253,0][0.66475,0.0330797,0.999001][0.341156,-0.474455,1.93482][0.537245,0,3.04686][0.66475,0.126404,0.999001][0.341156,-0.474455,1.93482][0.537245,0,3.04686][0.66475,0.126404,0.999001][-0.341155,-0.474455,1.93482][-0.537243,0,3.04686][0.628442,0.126404,0.999001][-0.341155,-0.723019,1.93482][0,-2.79253,1.44425e-007][0.628442,0.0330797,0.999001][0.341156,-0.723019,1.93482][0,-2.79253,0][0.66475,0.0330797,0.999001][0.982319,-0.723019,1.70145][0,-2.79253,0][0.701058,0.0330797,0.999001][0.982319,-0.474455,1.70145][1.54693,0,2.67936][0.701058,0.126404,0.999001][0.982319,-0.474455,1.70145][1.54693,0,2.67936][0.701058,0.126404,0.999001][0.341156,-0.474455,1.93482][0.537245,0,3.04686][0.66475,0.126404,0.999001][0.341156,-0.723019,1.93482][0,-2.79253,0][0.66475,0.0330797,0.999001][0.982319,-0.723019,1.70145][0,-2.79253,0][0.701058,0.0330797,0.999001][1.505,-0.723019,1.26287][0,-0.872662,0][0.737366,0.0330797,0.999001][1.505,-0.474455,1.26287][2.37004,0,1.9887][0.737366,0.126404,0.999001][1.505,-0.474455,1.26287][2.37004,0,1.9887][0.737366,0.126404,0.999001][0.982319,-0.474455,1.70145][1.54693,0,2.67936][0.701058,0.126404,0.999001][0.982319,-0.723019,1.70145][0,-2.79253,0][0.701058,0.0330797,0.999001][1.505,-0.723019,1.26287][0,-0.872662,0][0.737366,0.0330797,0.999001][1.84615,-0.723019,0.671971][0,-1.75792,0][0.773674,0.0330797,0.999001][1.84615,-0.474455,0.671971][2.90728,0,1.05816][0.773674,0.126404,0.999001][1.84615,-0.474455,0.671971][2.90728,0,1.05816][0.773674,0.126404,0.999001][1.505,-0.474455,1.26287][2.37004,0,1.9887][0.737366,0.126404,0.999001][1.505,-0.723019,1.26287][0,-0.872662,0][0.737366,0.0330797,0.999001][1.84615,-0.723019,0.671971][0,-1.75792,0][0.773674,0.0330797,0.999001][1.96464,-0.723019,2.59168e-005][0,-2.79253,0][0.809982,0.0330797,0.999001][1.96464,-0.474455,2.5906e-005][3.09386,0,0][0.809982,0.126404,0.999001][1.96464,-0.474455,2.5906e-005][3.09386,0,0][0.809982,0.126404,0.999001][1.84615,-0.474455,0.671971][2.90728,0,1.05816][0.773674,0.126404,0.999001][1.84615,-0.723019,0.671971][0,-1.75792,0][0.773674,0.0330797,0.999001][1.96464,-0.474455,2.5906e-005][3.09386,0,0][0.0800584,0.136724,-0.178352][1.84615,-0.474455,-0.67192][2.90728,-2.41848e-007,-1.05816][0.0599331,0.133176,-0.178352][1.18819,-0.474455,-0.432439][0,3.49066,-1.929e-007][0.0671057,0.113469,-0.178352][1.18819,-0.474455,-0.432439][0,3.49066,-1.929e-007][0.0671057,0.113469,-0.178352][1.26444,-0.474455,2.59105e-005][0,3.49066,0][0.0800584,0.115753,-0.178352][1.96464,-0.474455,2.5906e-005][3.09386,0,0][0.0800584,0.136724,-0.178352][1.84615,-0.474455,-0.67192][2.90728,-2.41848e-007,-1.05816][0.0599331,0.133176,-0.178352][1.505,-0.474455,-1.26282][2.37004,0,-1.9887][0.0422353,0.122958,-0.178352][0.96862,-0.474455,-0.812743][0,3.49066,-1.82136e-007][0.0557153,0.106893,-0.178352][0.96862,-0.474455,-0.812743][0,3.49066,-1.82136e-007][0.0557153,0.106893,-0.178352][1.18819,-0.474455,-0.432439][0,3.49066,-1.929e-007][0.0671057,0.113469,-0.178352][1.84615,-0.474455,-0.67192][2.90728,-2.41848e-007,-1.05816][0.0599331,0.133176,-0.178352][1.505,-0.474455,-1.26282][2.37004,0,-1.9887][0.0422353,0.122958,-0.178352][0.982318,-0.474455,-1.7014][1.54693,0,-2.67937][0.0290994,0.107303,-0.178352][0.632222,-0.474455,-1.09501][0,3.49066,-1.88806e-007][0.0472611,0.0968175,-0.178352][0.632222,-0.474455,-1.09501][0,3.49066,-1.88806e-007][0.0472611,0.0968175,-0.178352][0.96862,-0.474455,-0.812743][0,3.49066,-1.82136e-007][0.0557153,0.106893,-0.178352][1.505,-0.474455,-1.26282][2.37004,0,-1.9887][0.0422353,0.122958,-0.178352][0.982318,-0.474455,-1.7014][1.54693,0,-2.67937][0.0290994,0.107303,-0.178352][0.341155,-0.474455,-1.93476][0.537244,0,-3.04686][0.02211,0.0880999,-0.178352][0.219568,-0.474455,-1.24521][0,3.49066,-1.83518e-007][0.0427627,0.0844583,-0.178352][0.219568,-0.474455,-1.24521][0,3.49066,-1.83518e-007][0.0427627,0.0844583,-0.178352][0.632222,-0.474455,-1.09501][0,3.49066,-1.88806e-007][0.0472611,0.0968175,-0.178352][0.982318,-0.474455,-1.7014][1.54693,0,-2.67937][0.0290994,0.107303,-0.178352][0.341155,-0.474455,-1.93476][0.537244,0,-3.04686][0.02211,0.0880999,-0.178352][-0.341156,-0.474455,-1.93476][-0.537244,0,-3.04686][0.02211,0.0676641,-0.178352][-0.219568,-0.474455,-1.24521][0,3.49066,-1.67201e-007][0.0427627,0.0713058,-0.178352][-0.219568,-0.474455,-1.24521][0,3.49066,-1.67201e-007][0.0427627,0.0713058,-0.178352][0.219568,-0.474455,-1.24521][0,3.49066,-1.83518e-007][0.0427627,0.0844583,-0.178352][0.341155,-0.474455,-1.93476][0.537244,0,-3.04686][0.02211,0.0880999,-0.178352][-0.341156,-0.474455,-1.93476][-0.537244,0,-3.04686][0.02211,0.0676641,-0.178352][-0.982319,-0.474455,-1.7014][-1.54693,0,-2.67937][0.0290994,0.0484609,-0.178352][-0.632222,-0.474455,-1.09501][0,3.49066,-1.58306e-007][0.0472611,0.0589466,-0.178352][-0.632222,-0.474455,-1.09501][0,3.49066,-1.58306e-007][0.0472611,0.0589466,-0.178352][-0.219568,-0.474455,-1.24521][0,3.49066,-1.67201e-007][0.0427627,0.0713058,-0.178352][-0.341156,-0.474455,-1.93476][-0.537244,0,-3.04686][0.02211,0.0676641,-0.178352][-0.982319,-0.474455,-1.7014][-1.54693,0,-2.67937][0.0290994,0.0484609,-0.178352][-1.505,-0.474455,-1.26282][-2.37004,0,-1.9887][0.0422353,0.0328062,-0.178352][-0.96862,-0.474455,-0.812743][0,3.49066,-1.87637e-007][0.0557153,0.0488711,-0.178352][-0.96862,-0.474455,-0.812743][0,3.49066,-1.87637e-007][0.0557153,0.0488711,-0.178352][-0.632222,-0.474455,-1.09501][0,3.49066,-1.58306e-007][0.0472611,0.0589466,-0.178352][-0.982319,-0.474455,-1.7014][-1.54693,0,-2.67937][0.0290994,0.0484609,-0.178352][-1.505,-0.474455,-1.26282][-2.37004,0,-1.9887][0.0422353,0.0328062,-0.178352][-1.84615,-0.474455,-0.671919][-2.90728,-2.11856e-007,-1.05816][0.0599331,0.0225884,-0.178352][-1.18819,-0.474455,-0.432439][0,3.49066,-1.33425e-007][0.0671057,0.0422949,-0.178352][-1.18819,-0.474455,-0.432439][0,3.49066,-1.33425e-007][0.0671057,0.0422949,-0.178352][-0.96862,-0.474455,-0.812743][0,3.49066,-1.87637e-007][0.0557153,0.0488711,-0.178352][-1.505,-0.474455,-1.26282][-2.37004,0,-1.9887][0.0422353,0.0328062,-0.178352][-1.84615,-0.474455,-0.671919][-2.90728,-2.11856e-007,-1.05816][0.0599331,0.0225884,-0.178352][-1.96464,-0.474455,2.62534e-005][-3.09386,0,5.29411e-007][0.0800583,0.0190398,-0.178352][-1.26444,-0.474455,2.61341e-005][0,3.49066,-1.64961e-007][0.0800583,0.040011,-0.178352][-1.26444,-0.474455,2.61341e-005][0,3.49066,-1.64961e-007][0.0800583,0.040011,-0.178352][-1.18819,-0.474455,-0.432439][0,3.49066,-1.33425e-007][0.0671057,0.0422949,-0.178352][-1.84615,-0.474455,-0.671919][-2.90728,-2.11856e-007,-1.05816][0.0599331,0.0225884,-0.178352][-1.96464,-0.474455,2.62534e-005][-3.09386,0,5.29411e-007][0.0800583,0.0190398,-0.178352][-1.84615,-0.474455,0.671972][-2.90728,0,1.05816][0.100184,0.0225884,-0.178352][-1.18819,-0.474455,0.432491][0,3.49066,0][0.093011,0.0422949,-0.178352][-1.18819,-0.474455,0.432491][0,3.49066,0][0.093011,0.0422949,-0.178352][-1.26444,-0.474455,2.61341e-005][0,3.49066,-1.64961e-007][0.0800583,0.040011,-0.178352][-1.96464,-0.474455,2.62534e-005][-3.09386,0,5.29411e-007][0.0800583,0.0190398,-0.178352][-1.84615,-0.474455,0.671972][-2.90728,0,1.05816][0.100184,0.0225884,-0.178352][-1.505,-0.474455,1.26287][-2.37004,8.69988e-007,1.9887][0.117881,0.0328062,-0.178352][-0.96862,-0.474455,0.812795][0,3.49066,-1.97572e-007][0.104401,0.0488711,-0.178352][-0.96862,-0.474455,0.812795][0,3.49066,-1.97572e-007][0.104401,0.0488711,-0.178352][-1.18819,-0.474455,0.432491][0,3.49066,0][0.093011,0.0422949,-0.178352][-1.84615,-0.474455,0.671972][-2.90728,0,1.05816][0.100184,0.0225884,-0.178352][-1.505,-0.474455,1.26287][-2.37004,8.69988e-007,1.9887][0.117881,0.0328062,-0.178352][-0.982318,-0.474455,1.70145][-1.54693,1.28349e-007,2.67937][0.131017,0.0484609,-0.178352][-0.632222,-0.474455,1.09507][0,3.49066,-1.9456e-007][0.112856,0.0589465,-0.178352][-0.632222,-0.474455,1.09507][0,3.49066,-1.9456e-007][0.112856,0.0589465,-0.178352][-0.96862,-0.474455,0.812795][0,3.49066,-1.97572e-007][0.104401,0.0488711,-0.178352][-1.505,-0.474455,1.26287][-2.37004,8.69988e-007,1.9887][0.117881,0.0328062,-0.178352][-0.982318,-0.474455,1.70145][-1.54693,1.28349e-007,2.67937][0.131017,0.0484609,-0.178352][-0.341155,-0.474455,1.93482][-0.537243,0,3.04686][0.138007,0.0676641,-0.178352][-0.219568,-0.474455,1.24526][0,3.49066,-1.46316e-007][0.117354,0.0713058,-0.178352][-0.219568,-0.474455,1.24526][0,3.49066,-1.46316e-007][0.117354,0.0713058,-0.178352][-0.632222,-0.474455,1.09507][0,3.49066,-1.9456e-007][0.112856,0.0589465,-0.178352][-0.982318,-0.474455,1.70145][-1.54693,1.28349e-007,2.67937][0.131017,0.0484609,-0.178352][-0.341155,-0.474455,1.93482][-0.537243,0,3.04686][0.138007,0.0676641,-0.178352][0.341156,-0.474455,1.93482][0.537245,0,3.04686][0.138007,0.0880999,-0.178352][0.219569,-0.474455,1.24526][0,3.49066,-1.46316e-007][0.117354,0.0844583,-0.178352][0.219569,-0.474455,1.24526][0,3.49066,-1.46316e-007][0.117354,0.0844583,-0.178352][-0.219568,-0.474455,1.24526][0,3.49066,-1.46316e-007][0.117354,0.0713058,-0.178352][-0.341155,-0.474455,1.93482][-0.537243,0,3.04686][0.138007,0.0676641,-0.178352][0.341156,-0.474455,1.93482][0.537245,0,3.04686][0.138007,0.0880999,-0.178352][0.982319,-0.474455,1.70145][1.54693,0,2.67936][0.131017,0.107303,-0.178352][0.632222,-0.474455,1.09507][0,3.49066,-1.88806e-007][0.112856,0.0968175,-0.178352][0.632222,-0.474455,1.09507][0,3.49066,-1.88806e-007][0.112856,0.0968175,-0.178352][0.219569,-0.474455,1.24526][0,3.49066,-1.46316e-007][0.117354,0.0844583,-0.178352][0.341156,-0.474455,1.93482][0.537245,0,3.04686][0.138007,0.0880999,-0.178352][0.982319,-0.474455,1.70145][1.54693,0,2.67936][0.131017,0.107303,-0.178352][1.505,-0.474455,1.26287][2.37004,0,1.9887][0.117881,0.122958,-0.178352][0.96862,-0.474455,0.812794][0,3.49066,-1.55227e-007][0.104401,0.106893,-0.178352][0.96862,-0.474455,0.812794][0,3.49066,-1.55227e-007][0.104401,0.106893,-0.178352][0.632222,-0.474455,1.09507][0,3.49066,-1.88806e-007][0.112856,0.0968175,-0.178352][0.982319,-0.474455,1.70145][1.54693,0,2.67936][0.131017,0.107303,-0.178352][1.505,-0.474455,1.26287][2.37004,0,1.9887][0.117881,0.122958,-0.178352][1.84615,-0.474455,0.671971][2.90728,0,1.05816][0.100184,0.133176,-0.178352][1.18819,-0.474455,0.432491][0,3.49066,-1.67941e-007][0.093011,0.113469,-0.178352][1.18819,-0.474455,0.432491][0,3.49066,-1.67941e-007][0.093011,0.113469,-0.178352][0.96862,-0.474455,0.812794][0,3.49066,-1.55227e-007][0.104401,0.106893,-0.178352][1.505,-0.474455,1.26287][2.37004,0,1.9887][0.117881,0.122958,-0.178352][1.84615,-0.474455,0.671971][2.90728,0,1.05816][0.100184,0.133176,-0.178352][1.96464,-0.474455,2.5906e-005][3.09386,0,0][0.0800584,0.136724,-0.178352][1.26444,-0.474455,2.59105e-005][0,3.49066,0][0.0800584,0.115753,-0.178352][1.26444,-0.474455,2.59105e-005][0,3.49066,0][0.0800584,0.115753,-0.178352][1.18819,-0.474455,0.432491][0,3.49066,-1.67941e-007][0.093011,0.113469,-0.178352][1.84615,-0.474455,0.671971][2.90728,0,1.05816][0.100184,0.133176,-0.178352][1.26444,-0.474455,2.59105e-005][0,3.49066,0][0.0179743,0.156828,0.642959][1.18819,-0.474455,-0.432439][0,3.49066,-1.929e-007][0.0714258,0.156828,0.642959][1.17314,1.01593,-0.426962][2.91057,0.0332832,-1.05936][0.0714258,0.980605,0.634815][1.17314,1.01593,-0.426962][2.91057,0.0332832,-1.05936][0.0714258,0.980605,0.634815][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0179743,0.980605,0.634815][1.26444,-0.474455,2.59105e-005][0,3.49066,0][0.0179743,0.156828,0.642959][1.18819,-0.474455,-0.432439][0,3.49066,-1.929e-007][0.0714258,0.156828,0.642959][0.96862,-0.474455,-0.812743][0,3.49066,-1.82136e-007][0.124877,0.156828,0.642959][0.956352,1.01593,-0.802449][2.37272,0.0332833,-1.99095][0.124877,0.980605,0.634815][0.956352,1.01593,-0.802449][2.37272,0.0332833,-1.99095][0.124877,0.980605,0.634815][1.17314,1.01593,-0.426962][2.91057,0.0332832,-1.05936][0.0714258,0.980605,0.634815][1.18819,-0.474455,-0.432439][0,3.49066,-1.929e-007][0.0714258,0.156828,0.642959][0.96862,-0.474455,-0.812743][0,3.49066,-1.82136e-007][0.124877,0.156828,0.642959][0.632222,-0.474455,-1.09501][0,3.49066,-1.88806e-007][0.178329,0.156828,0.642959][0.624214,1.01593,-1.08114][1.54868,0.0332835,-2.6824][0.178329,0.980605,0.634815][0.624214,1.01593,-1.08114][1.54868,0.0332835,-2.6824][0.178329,0.980605,0.634815][0.956352,1.01593,-0.802449][2.37272,0.0332833,-1.99095][0.124877,0.980605,0.634815][0.96862,-0.474455,-0.812743][0,3.49066,-1.82136e-007][0.124877,0.156828,0.642959][0.632222,-0.474455,-1.09501][0,3.49066,-1.88806e-007][0.178329,0.156828,0.642959][0.219568,-0.474455,-1.24521][0,3.49066,-1.83518e-007][0.23178,0.156828,0.642959][0.216787,1.01593,-1.22944][0.537852,0.0332834,-3.05031][0.23178,0.980605,0.634815][0.216787,1.01593,-1.22944][0.537852,0.0332834,-3.05031][0.23178,0.980605,0.634815][0.624214,1.01593,-1.08114][1.54868,0.0332835,-2.6824][0.178329,0.980605,0.634815][0.632222,-0.474455,-1.09501][0,3.49066,-1.88806e-007][0.178329,0.156828,0.642959][0.219568,-0.474455,-1.24521][0,3.49066,-1.83518e-007][0.23178,0.156828,0.642959][-0.219568,-0.474455,-1.24521][0,3.49066,-1.67201e-007][0.285232,0.156828,0.642959][-0.216787,1.01593,-1.22944][-0.537853,0.0332832,-3.05031][0.285232,0.980605,0.634815][-0.216787,1.01593,-1.22944][-0.537853,0.0332832,-3.05031][0.285232,0.980605,0.634815][0.216787,1.01593,-1.22944][0.537852,0.0332834,-3.05031][0.23178,0.980605,0.634815][0.219568,-0.474455,-1.24521][0,3.49066,-1.83518e-007][0.23178,0.156828,0.642959][-0.219568,-0.474455,-1.24521][0,3.49066,-1.67201e-007][0.285232,0.156828,0.642959][-0.632222,-0.474455,-1.09501][0,3.49066,-1.58306e-007][0.338683,0.156828,0.642959][-0.624214,1.01593,-1.08114][-1.54868,0.0332833,-2.6824][0.338683,0.980605,0.634815][-0.624214,1.01593,-1.08114][-1.54868,0.0332833,-2.6824][0.338683,0.980605,0.634815][-0.216787,1.01593,-1.22944][-0.537853,0.0332832,-3.05031][0.285232,0.980605,0.634815][-0.219568,-0.474455,-1.24521][0,3.49066,-1.67201e-007][0.285232,0.156828,0.642959][-0.632222,-0.474455,-1.09501][0,3.49066,-1.58306e-007][0.338683,0.156828,0.642959][-0.96862,-0.474455,-0.812743][0,3.49066,-1.87637e-007][0.392135,0.156828,0.642959][-0.956352,1.01593,-0.802448][-2.37272,0.0332835,-1.99095][0.392135,0.980605,0.634815][-0.956352,1.01593,-0.802448][-2.37272,0.0332835,-1.99095][0.392135,0.980605,0.634815][-0.624214,1.01593,-1.08114][-1.54868,0.0332833,-2.6824][0.338683,0.980605,0.634815][-0.632222,-0.474455,-1.09501][0,3.49066,-1.58306e-007][0.338683,0.156828,0.642959][-0.96862,-0.474455,-0.812743][0,3.49066,-1.87637e-007][0.392135,0.156828,0.642959][-1.18819,-0.474455,-0.432439][0,3.49066,-1.33425e-007][0.445586,0.156828,0.642959][-1.17314,1.01593,-0.426962][-2.91057,0.0332836,-1.05936][0.445586,0.980605,0.634815][-1.17314,1.01593,-0.426962][-2.91057,0.0332836,-1.05936][0.445586,0.980605,0.634815][-0.956352,1.01593,-0.802448][-2.37272,0.0332835,-1.99095][0.392135,0.980605,0.634815][-0.96862,-0.474455,-0.812743][0,3.49066,-1.87637e-007][0.392135,0.156828,0.642959][-1.18819,-0.474455,-0.432439][0,3.49066,-1.33425e-007][0.445586,0.156828,0.642959][-1.26444,-0.474455,2.61341e-005][0,3.49066,-1.64961e-007][0.499038,0.156828,0.642959][-1.24843,1.01593,2.6125e-005][-3.09737,0.0332833,1.0069e-006][0.499038,0.980605,0.634815][-1.24843,1.01593,2.6125e-005][-3.09737,0.0332833,1.0069e-006][0.499038,0.980605,0.634815][-1.17314,1.01593,-0.426962][-2.91057,0.0332836,-1.05936][0.445586,0.980605,0.634815][-1.18819,-0.474455,-0.432439][0,3.49066,-1.33425e-007][0.445586,0.156828,0.642959][-1.26444,-0.474455,2.61341e-005][0,3.49066,-1.64961e-007][0.499038,0.156828,0.642959][-1.18819,-0.474455,0.432491][0,3.49066,0][0.55249,0.156828,0.642959][-1.17314,1.01593,0.427014][-2.91057,0.0332833,1.05936][0.55249,0.980605,0.634815][-1.17314,1.01593,0.427014][-2.91057,0.0332833,1.05936][0.55249,0.980605,0.634815][-1.24843,1.01593,2.6125e-005][-3.09737,0.0332833,1.0069e-006][0.499038,0.980605,0.634815][-1.26444,-0.474455,2.61341e-005][0,3.49066,-1.64961e-007][0.499038,0.156828,0.642959][-1.18819,-0.474455,0.432491][0,3.49066,0][0.55249,0.156828,0.642959][-0.96862,-0.474455,0.812795][0,3.49066,-1.97572e-007][0.605941,0.156828,0.642959][-0.956352,1.01593,0.8025][-2.37272,0.0332832,1.99095][0.605941,0.980605,0.634815][-0.956352,1.01593,0.8025][-2.37272,0.0332832,1.99095][0.605941,0.980605,0.634815][-1.17314,1.01593,0.427014][-2.91057,0.0332833,1.05936][0.55249,0.980605,0.634815][-1.18819,-0.474455,0.432491][0,3.49066,0][0.55249,0.156828,0.642959][-0.96862,-0.474455,0.812795][0,3.49066,-1.97572e-007][0.605941,0.156828,0.642959][-0.632222,-0.474455,1.09507][0,3.49066,-1.9456e-007][0.659392,0.156828,0.642959][-0.624214,1.01593,1.0812][-1.54868,0.0332832,2.6824][0.659393,0.980605,0.634815][-0.624214,1.01593,1.0812][-1.54868,0.0332832,2.6824][0.659393,0.980605,0.634815][-0.956352,1.01593,0.8025][-2.37272,0.0332832,1.99095][0.605941,0.980605,0.634815][-0.96862,-0.474455,0.812795][0,3.49066,-1.97572e-007][0.605941,0.156828,0.642959][-0.632222,-0.474455,1.09507][0,3.49066,-1.9456e-007][0.659392,0.156828,0.642959][-0.219568,-0.474455,1.24526][0,3.49066,-1.46316e-007][0.712844,0.156828,0.642959][-0.216787,1.01593,1.22949][-0.537851,0.0332833,3.05031][0.712844,0.980605,0.634815][-0.216787,1.01593,1.22949][-0.537851,0.0332833,3.05031][0.712844,0.980605,0.634815][-0.624214,1.01593,1.0812][-1.54868,0.0332832,2.6824][0.659393,0.980605,0.634815][-0.632222,-0.474455,1.09507][0,3.49066,-1.9456e-007][0.659392,0.156828,0.642959][-0.219568,-0.474455,1.24526][0,3.49066,-1.46316e-007][0.712844,0.156828,0.642959][0.219569,-0.474455,1.24526][0,3.49066,-1.46316e-007][0.766295,0.156828,0.642959][0.216788,1.01593,1.22949][0.537853,0.0332834,3.05031][0.766295,0.980605,0.634815][0.216788,1.01593,1.22949][0.537853,0.0332834,3.05031][0.766295,0.980605,0.634815][-0.216787,1.01593,1.22949][-0.537851,0.0332833,3.05031][0.712844,0.980605,0.634815][-0.219568,-0.474455,1.24526][0,3.49066,-1.46316e-007][0.712844,0.156828,0.642959][0.219569,-0.474455,1.24526][0,3.49066,-1.46316e-007][0.766295,0.156828,0.642959][0.632222,-0.474455,1.09507][0,3.49066,-1.88806e-007][0.819747,0.156828,0.642959][0.624215,1.01593,1.0812][1.54868,0.0332833,2.6824][0.819747,0.980605,0.634815][0.624215,1.01593,1.0812][1.54868,0.0332833,2.6824][0.819747,0.980605,0.634815][0.216788,1.01593,1.22949][0.537853,0.0332834,3.05031][0.766295,0.980605,0.634815][0.219569,-0.474455,1.24526][0,3.49066,-1.46316e-007][0.766295,0.156828,0.642959][0.632222,-0.474455,1.09507][0,3.49066,-1.88806e-007][0.819747,0.156828,0.642959][0.96862,-0.474455,0.812794][0,3.49066,-1.55227e-007][0.873199,0.156828,0.642959][0.956352,1.01593,0.8025][2.37272,0.0332832,1.99095][0.873199,0.980605,0.634815][0.956352,1.01593,0.8025][2.37272,0.0332832,1.99095][0.873199,0.980605,0.634815][0.624215,1.01593,1.0812][1.54868,0.0332833,2.6824][0.819747,0.980605,0.634815][0.632222,-0.474455,1.09507][0,3.49066,-1.88806e-007][0.819747,0.156828,0.642959][0.96862,-0.474455,0.812794][0,3.49066,-1.55227e-007][0.873199,0.156828,0.642959][1.18819,-0.474455,0.432491][0,3.49066,-1.67941e-007][0.92665,0.156828,0.642959][1.17314,1.01593,0.427013][2.91057,0.0332832,1.05936][0.92665,0.980605,0.634815][1.17314,1.01593,0.427013][2.91057,0.0332832,1.05936][0.92665,0.980605,0.634815][0.956352,1.01593,0.8025][2.37272,0.0332832,1.99095][0.873199,0.980605,0.634815][0.96862,-0.474455,0.812794][0,3.49066,-1.55227e-007][0.873199,0.156828,0.642959][1.18819,-0.474455,0.432491][0,3.49066,-1.67941e-007][0.92665,0.156828,0.642959][1.26444,-0.474455,2.59105e-005][0,3.49066,0][0.980102,0.156828,0.642959][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.980102,0.980605,0.634815][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.980102,0.980605,0.634815][1.17314,1.01593,0.427013][2.91057,0.0332832,1.05936][0.92665,0.980605,0.634815][1.18819,-0.474455,0.432491][0,3.49066,-1.67941e-007][0.92665,0.156828,0.642959][1.17314,1.01593,0.427013][2.91057,0.0332832,1.05936][0.0928469,0.113018,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][0.956352,1.01593,0.8025][2.37272,0.0332832,1.99095][0.104093,0.106525,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][1.17314,1.01593,-0.426962][2.91057,0.0332832,-1.05936][0.0672698,0.113018,0.24975][0.956352,1.01593,-0.802449][2.37272,0.0332833,-1.99095][0.0560237,0.106525,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][0.956352,1.01593,-0.802449][2.37272,0.0332833,-1.99095][0.0560237,0.106525,0.24975][0.624214,1.01593,-1.08114][1.54868,0.0332835,-2.6824][0.0476765,0.0965777,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][0.624214,1.01593,-1.08114][1.54868,0.0332835,-2.6824][0.0476765,0.0965777,0.24975][0.216787,1.01593,-1.22944][0.537852,0.0332834,-3.05031][0.0432351,0.084375,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][0.216787,1.01593,-1.22944][0.537852,0.0332834,-3.05031][0.0432351,0.084375,0.24975][-0.216787,1.01593,-1.22944][-0.537853,0.0332832,-3.05031][0.0432351,0.0713891,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][-0.216787,1.01593,-1.22944][-0.537853,0.0332832,-3.05031][0.0432351,0.0713891,0.24975][-0.624214,1.01593,-1.08114][-1.54868,0.0332833,-2.6824][0.0476765,0.0591864,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][-0.624214,1.01593,-1.08114][-1.54868,0.0332833,-2.6824][0.0476765,0.0591864,0.24975][-0.956352,1.01593,-0.802448][-2.37272,0.0332835,-1.99095][0.0560237,0.0492386,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][-0.956352,1.01593,-0.802448][-2.37272,0.0332835,-1.99095][0.0560237,0.0492386,0.24975][-1.17314,1.01593,-0.426962][-2.91057,0.0332836,-1.05936][0.0672698,0.0427457,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][-1.17314,1.01593,-0.426962][-2.91057,0.0332836,-1.05936][0.0672698,0.0427457,0.24975][-1.24843,1.01593,2.6125e-005][-3.09737,0.0332833,1.0069e-006][0.0800583,0.0404907,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][-1.24843,1.01593,2.6125e-005][-3.09737,0.0332833,1.0069e-006][0.0800583,0.0404907,0.24975][-1.17314,1.01593,0.427014][-2.91057,0.0332833,1.05936][0.0928469,0.0427457,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][-1.17314,1.01593,0.427014][-2.91057,0.0332833,1.05936][0.0928469,0.0427457,0.24975][-0.956352,1.01593,0.8025][-2.37272,0.0332832,1.99095][0.104093,0.0492386,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][-0.956352,1.01593,0.8025][-2.37272,0.0332832,1.99095][0.104093,0.0492386,0.24975][-0.624214,1.01593,1.0812][-1.54868,0.0332832,2.6824][0.11244,0.0591864,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][-0.624214,1.01593,1.0812][-1.54868,0.0332832,2.6824][0.11244,0.0591864,0.24975][-0.216787,1.01593,1.22949][-0.537851,0.0332833,3.05031][0.116882,0.0713891,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][-0.216787,1.01593,1.22949][-0.537851,0.0332833,3.05031][0.116882,0.0713891,0.24975][0.216788,1.01593,1.22949][0.537853,0.0332834,3.05031][0.116882,0.084375,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][0.216788,1.01593,1.22949][0.537853,0.0332834,3.05031][0.116882,0.084375,0.24975][0.624215,1.01593,1.0812][1.54868,0.0332833,2.6824][0.11244,0.0965777,0.24975][1.24843,1.01593,2.59042e-005][3.09737,0.0332833,0][0.0800584,0.115273,0.24975][0.624215,1.01593,1.0812][1.54868,0.0332833,2.6824][0.11244,0.0965777,0.24975][0.956352,1.01593,0.8025][2.37272,0.0332832,1.99095][0.104093,0.106525,0.24975][-1.11387,-0.723019,0.383509][0,-3.40327,0][0.894765,0.0322561,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-1.13931,-0.723019,0.263876][0,-3.19408,0][0.892287,0.031729,-0.24975][-1.1811,-0.723019,2.79015e-005][0,-3.45575,0][0.88682,0.0308632,-0.24975][-1.16518,-0.723019,0.100565][0,-3.14159,0][0.888903,0.0311931,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-1.15755,-0.723019,-0.148675][0,-3.14159,0][0.883739,0.0313511,-0.24975][-1.1811,-0.723019,2.79015e-005][0,-3.45575,0][0.88682,0.0308632,-0.24975][-1.13931,-0.723019,0.263876][0,-3.19408,0][0.892287,0.031729,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-1.16518,-0.723019,0.100565][0,-3.14159,0][0.888903,0.0311931,-0.24975][-0.961211,-0.723019,0.683117][2.28766e-007,-3.43986,2.32108e-007][0.900972,0.0354188,-0.24975][-0.791936,-0.723019,0.857859][2.16452e-007,-3.15748,-2.15115e-007][0.904592,0.0389258,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-1.03937,-0.723019,0.529714][0,-3.14159,6.65801e-007][0.897794,0.0337995,-0.24975][-0.961211,-0.723019,0.683117][2.28766e-007,-3.43986,2.32108e-007][0.900972,0.0354188,-0.24975][1.505,-0.723019,1.26287][0,-0.872662,0][0.912983,0.0865126,-0.24975][0.454605,-0.723019,1.07766][0,-3.14159,2.34201e-007][0.909146,0.064751,-0.24975][0.694235,-0.723019,0.95556][-1.69456e-007,-3.46589,7.48257e-007][0.906616,0.0697156,-0.24975][1.84615,-0.723019,0.671971][0,-1.75792,0][0.900741,0.0935805,-0.24975][1.505,-0.723019,1.26287][0,-0.872662,0][0.912983,0.0865126,-0.24975][0.694235,-0.723019,0.95556][-1.69456e-007,-3.46589,7.48257e-007][0.906616,0.0697156,-0.24975][1.84615,-0.723019,0.671971][0,-1.75792,0][0.900741,0.0935805,-0.24975][0.694235,-0.723019,0.95556][-1.69456e-007,-3.46589,7.48257e-007][0.906616,0.0697156,-0.24975][0.961211,-0.723019,0.683117][-2.38534e-007,-3.44562,-5.12656e-007][0.900972,0.0752467,-0.24975][-1.03937,-0.723019,0.529714][0,-3.14159,6.65801e-007][0.897794,0.0337995,-0.24975][-1.84615,-0.723019,0.671972][0,-1.74533,0][0.900741,0.0170849,-0.24975][-1.11387,-0.723019,0.383509][0,-3.40327,0][0.894765,0.0322561,-0.24975][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][0.546146,0.802623,-0.177426][-0.0820255,-0.996274,0.0266517][0.883144,0.0666476,0.18848][0.574252,0.802623,2.77211e-005][-0.0862467,-0.996274,1.69377e-007][0.88682,0.0672298,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][0.46458,0.802623,-0.337509][-0.0697751,-0.996274,0.0506946][0.879827,0.0649577,0.18848][0.546146,0.802623,-0.177426][-0.0820255,-0.996274,0.0266517][0.883144,0.0666476,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][0.337537,0.802623,-0.464552][-0.0506945,-0.996274,0.0697751][0.877195,0.0623257,0.18848][0.46458,0.802623,-0.337509][-0.0697751,-0.996274,0.0506946][0.879827,0.0649577,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][0.177454,0.802623,-0.546119][-0.0266518,-0.996274,0.0820257][0.875505,0.0590092,0.18848][0.337537,0.802623,-0.464552][-0.0506945,-0.996274,0.0697751][0.877195,0.0623257,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][0,0.802623,-0.574225][0,-0.996274,0.0862469][0.874923,0.0553328,0.18848][0.177454,0.802623,-0.546119][-0.0266518,-0.996274,0.0820257][0.875505,0.0590092,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][-0.177454,0.802623,-0.546119][0.0266517,-0.996274,0.0820257][0.875505,0.0516563,0.18848][0,0.802623,-0.574225][0,-0.996274,0.0862469][0.874923,0.0553328,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][-0.337537,0.802623,-0.464552][0.0506946,-0.996274,0.0697751][0.877195,0.0483398,0.18848][-0.177454,0.802623,-0.546119][0.0266517,-0.996274,0.0820257][0.875505,0.0516563,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][-0.46458,0.802623,-0.337509][0.0697751,-0.996274,0.0506946][0.879827,0.0457078,0.18848][-0.337537,0.802623,-0.464552][0.0506946,-0.996274,0.0697751][0.877195,0.0483398,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][-0.546146,0.802623,-0.177426][0.0820255,-0.996274,0.0266517][0.883144,0.0440179,0.18848][-0.46458,0.802623,-0.337509][0.0697751,-0.996274,0.0506946][0.879827,0.0457078,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][-0.574252,0.802623,2.77713e-005][0.0862468,-0.996274,0][0.88682,0.0434356,0.18848][-0.546146,0.802623,-0.177426][0.0820255,-0.996274,0.0266517][0.883144,0.0440179,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][-0.546146,0.802623,0.177482][0.0820257,-0.996274,-0.0266516][0.890497,0.0440179,0.18848][-0.574252,0.802623,2.77713e-005][0.0862468,-0.996274,0][0.88682,0.0434356,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][-0.46458,0.802623,0.337565][0.0697752,-0.996274,-0.0506947][0.893813,0.0457078,0.18848][-0.546146,0.802623,0.177482][0.0820257,-0.996274,-0.0266516][0.890497,0.0440179,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][-0.337537,0.802623,0.464608][0.0506946,-0.996274,-0.0697751][0.896445,0.0483398,0.18848][-0.46458,0.802623,0.337565][0.0697752,-0.996274,-0.0506947][0.893813,0.0457078,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][-0.177454,0.802623,0.546174][0.0266517,-0.996274,-0.0820255][0.898135,0.0516563,0.18848][-0.337537,0.802623,0.464608][0.0506946,-0.996274,-0.0697751][0.896445,0.0483398,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][0,0.802623,0.57428][0,-0.996274,-0.0862467][0.898717,0.0553328,0.18848][-0.177454,0.802623,0.546174][0.0266517,-0.996274,-0.0820255][0.898135,0.0516563,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][0.177454,0.802623,0.546174][-0.0266518,-0.996274,-0.0820255][0.898135,0.0590091,0.18848][0,0.802623,0.57428][0,-0.996274,-0.0862467][0.898717,0.0553328,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][0.337537,0.802623,0.464608][-0.0506947,-0.996274,-0.0697752][0.896445,0.0623257,0.18848][0.177454,0.802623,0.546174][-0.0266518,-0.996274,-0.0820255][0.898135,0.0590091,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][0.46458,0.802623,0.337565][-0.0697752,-0.996274,-0.0506946][0.893813,0.0649577,0.18848][0.337537,0.802623,0.464608][-0.0506947,-0.996274,-0.0697752][0.896445,0.0623257,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][0.546146,0.802623,0.177481][-0.0820256,-0.996274,-0.0266516][0.890497,0.0666475,0.18848][0.46458,0.802623,0.337565][-0.0697752,-0.996274,-0.0506946][0.893813,0.0649577,0.18848][0,0.802623,2.77211e-005][0,-1,0][0.88682,0.0553328,0.18848][0.574252,0.802623,2.77211e-005][-0.0862467,-0.996274,1.69377e-007][0.88682,0.0672298,0.18848][0.546146,0.802623,0.177481][-0.0820256,-0.996274,-0.0266516][0.890497,0.0666475,0.18848][0.724495,0.772922,-0.235375][-0.307215,-0.946391,0.0998201][0.881943,0.0703425,0.179949][0.761779,0.772922,2.77224e-005][-0.323025,-0.946391,0][0.88682,0.0711149,0.179949][0.574252,0.802623,2.77211e-005][-0.0862467,-0.996274,1.69377e-007][0.88682,0.0672298,0.18848][0.574252,0.802623,2.77211e-005][-0.0862467,-0.996274,1.69377e-007][0.88682,0.0672298,0.18848][0.546146,0.802623,-0.177426][-0.0820255,-0.996274,0.0266517][0.883144,0.0666476,0.18848][0.724495,0.772922,-0.235375][-0.307215,-0.946391,0.0998201][0.881943,0.0703425,0.179949][0.616292,0.772922,-0.447735][-0.261333,-0.946391,0.189869][0.877544,0.0681008,0.179949][0.724495,0.772922,-0.235375][-0.307215,-0.946391,0.0998201][0.881943,0.0703425,0.179949][0.546146,0.802623,-0.177426][-0.0820255,-0.996274,0.0266517][0.883144,0.0666476,0.18848][0.546146,0.802623,-0.177426][-0.0820255,-0.996274,0.0266517][0.883144,0.0666476,0.18848][0.46458,0.802623,-0.337509][-0.0697751,-0.996274,0.0506946][0.879827,0.0649577,0.18848][0.616292,0.772922,-0.447735][-0.261333,-0.946391,0.189869][0.877544,0.0681008,0.179949][0.447763,0.772922,-0.616265][-0.189869,-0.946391,0.261333][0.874052,0.0646093,0.179949][0.616292,0.772922,-0.447735][-0.261333,-0.946391,0.189869][0.877544,0.0681008,0.179949][0.46458,0.802623,-0.337509][-0.0697751,-0.996274,0.0506946][0.879827,0.0649577,0.18848][0.46458,0.802623,-0.337509][-0.0697751,-0.996274,0.0506946][0.879827,0.0649577,0.18848][0.337537,0.802623,-0.464552][-0.0506945,-0.996274,0.0697751][0.877195,0.0623257,0.18848][0.447763,0.772922,-0.616265][-0.189869,-0.946391,0.261333][0.874052,0.0646093,0.179949][0.235403,0.772922,-0.724467][-0.09982,-0.946391,0.307215][0.87181,0.0602097,0.179949][0.447763,0.772922,-0.616265][-0.189869,-0.946391,0.261333][0.874052,0.0646093,0.179949][0.337537,0.802623,-0.464552][-0.0506945,-0.996274,0.0697751][0.877195,0.0623257,0.18848][0.337537,0.802623,-0.464552][-0.0506945,-0.996274,0.0697751][0.877195,0.0623257,0.18848][0.177454,0.802623,-0.546119][-0.0266518,-0.996274,0.0820257][0.875505,0.0590092,0.18848][0.235403,0.772922,-0.724467][-0.09982,-0.946391,0.307215][0.87181,0.0602097,0.179949][0,0.772922,-0.761752][0,-0.946391,0.323025][0.871038,0.0553328,0.179949][0.235403,0.772922,-0.724467][-0.09982,-0.946391,0.307215][0.87181,0.0602097,0.179949][0.177454,0.802623,-0.546119][-0.0266518,-0.996274,0.0820257][0.875505,0.0590092,0.18848][0.177454,0.802623,-0.546119][-0.0266518,-0.996274,0.0820257][0.875505,0.0590092,0.18848][0,0.802623,-0.574225][0,-0.996274,0.0862469][0.874923,0.0553328,0.18848][0,0.772922,-0.761752][0,-0.946391,0.323025][0.871038,0.0553328,0.179949][-0.235403,0.772922,-0.724467][0.0998201,-0.946391,0.307215][0.87181,0.0504558,0.179949][0,0.772922,-0.761752][0,-0.946391,0.323025][0.871038,0.0553328,0.179949][0,0.802623,-0.574225][0,-0.996274,0.0862469][0.874923,0.0553328,0.18848][0,0.802623,-0.574225][0,-0.996274,0.0862469][0.874923,0.0553328,0.18848][-0.177454,0.802623,-0.546119][0.0266517,-0.996274,0.0820257][0.875505,0.0516563,0.18848][-0.235403,0.772922,-0.724467][0.0998201,-0.946391,0.307215][0.87181,0.0504558,0.179949][-0.447763,0.772922,-0.616265][0.189869,-0.946391,0.261333][0.874052,0.0460562,0.179949][-0.235403,0.772922,-0.724467][0.0998201,-0.946391,0.307215][0.87181,0.0504558,0.179949][-0.177454,0.802623,-0.546119][0.0266517,-0.996274,0.0820257][0.875505,0.0516563,0.18848][-0.177454,0.802623,-0.546119][0.0266517,-0.996274,0.0820257][0.875505,0.0516563,0.18848][-0.337537,0.802623,-0.464552][0.0506946,-0.996274,0.0697751][0.877195,0.0483398,0.18848][-0.447763,0.772922,-0.616265][0.189869,-0.946391,0.261333][0.874052,0.0460562,0.179949][-0.616292,0.772922,-0.447735][0.261332,-0.946391,0.189869][0.877544,0.0425647,0.179949][-0.447763,0.772922,-0.616265][0.189869,-0.946391,0.261333][0.874052,0.0460562,0.179949][-0.337537,0.802623,-0.464552][0.0506946,-0.996274,0.0697751][0.877195,0.0483398,0.18848][-0.337537,0.802623,-0.464552][0.0506946,-0.996274,0.0697751][0.877195,0.0483398,0.18848][-0.46458,0.802623,-0.337509][0.0697751,-0.996274,0.0506946][0.879827,0.0457078,0.18848][-0.616292,0.772922,-0.447735][0.261332,-0.946391,0.189869][0.877544,0.0425647,0.179949][-0.724495,0.772922,-0.235375][0.307215,-0.946391,0.0998201][0.881943,0.040323,0.179949][-0.616292,0.772922,-0.447735][0.261332,-0.946391,0.189869][0.877544,0.0425647,0.179949][-0.46458,0.802623,-0.337509][0.0697751,-0.996274,0.0506946][0.879827,0.0457078,0.18848][-0.46458,0.802623,-0.337509][0.0697751,-0.996274,0.0506946][0.879827,0.0457078,0.18848][-0.546146,0.802623,-0.177426][0.0820255,-0.996274,0.0266517][0.883144,0.0440179,0.18848][-0.724495,0.772922,-0.235375][0.307215,-0.946391,0.0998201][0.881943,0.040323,0.179949][-0.761779,0.772922,2.7789e-005][0.323025,-0.946391,0][0.88682,0.0395505,0.179949][-0.724495,0.772922,-0.235375][0.307215,-0.946391,0.0998201][0.881943,0.040323,0.179949][-0.546146,0.802623,-0.177426][0.0820255,-0.996274,0.0266517][0.883144,0.0440179,0.18848][-0.546146,0.802623,-0.177426][0.0820255,-0.996274,0.0266517][0.883144,0.0440179,0.18848][-0.574252,0.802623,2.77713e-005][0.0862468,-0.996274,0][0.88682,0.0434356,0.18848][-0.761779,0.772922,2.7789e-005][0.323025,-0.946391,0][0.88682,0.0395505,0.179949][-0.724495,0.772922,0.235431][0.307215,-0.946391,-0.0998201][0.891697,0.040323,0.179949][-0.761779,0.772922,2.7789e-005][0.323025,-0.946391,0][0.88682,0.0395505,0.179949][-0.574252,0.802623,2.77713e-005][0.0862468,-0.996274,0][0.88682,0.0434356,0.18848][-0.574252,0.802623,2.77713e-005][0.0862468,-0.996274,0][0.88682,0.0434356,0.18848][-0.546146,0.802623,0.177482][0.0820257,-0.996274,-0.0266516][0.890497,0.0440179,0.18848][-0.724495,0.772922,0.235431][0.307215,-0.946391,-0.0998201][0.891697,0.040323,0.179949][-0.616292,0.772922,0.44779][0.261332,-0.946391,-0.189869][0.896097,0.0425647,0.179949][-0.724495,0.772922,0.235431][0.307215,-0.946391,-0.0998201][0.891697,0.040323,0.179949][-0.546146,0.802623,0.177482][0.0820257,-0.996274,-0.0266516][0.890497,0.0440179,0.18848][-0.546146,0.802623,0.177482][0.0820257,-0.996274,-0.0266516][0.890497,0.0440179,0.18848][-0.46458,0.802623,0.337565][0.0697752,-0.996274,-0.0506947][0.893813,0.0457078,0.18848][-0.616292,0.772922,0.44779][0.261332,-0.946391,-0.189869][0.896097,0.0425647,0.179949][-0.447763,0.772922,0.61632][0.189869,-0.946391,-0.261332][0.899588,0.0460562,0.179949][-0.616292,0.772922,0.44779][0.261332,-0.946391,-0.189869][0.896097,0.0425647,0.179949][-0.46458,0.802623,0.337565][0.0697752,-0.996274,-0.0506947][0.893813,0.0457078,0.18848][-0.46458,0.802623,0.337565][0.0697752,-0.996274,-0.0506947][0.893813,0.0457078,0.18848][-0.337537,0.802623,0.464608][0.0506946,-0.996274,-0.0697751][0.896445,0.0483398,0.18848][-0.447763,0.772922,0.61632][0.189869,-0.946391,-0.261332][0.899588,0.0460562,0.179949][-0.235403,0.772922,0.724523][0.0998202,-0.946391,-0.307215][0.90183,0.0504558,0.179949][-0.447763,0.772922,0.61632][0.189869,-0.946391,-0.261332][0.899588,0.0460562,0.179949][-0.337537,0.802623,0.464608][0.0506946,-0.996274,-0.0697751][0.896445,0.0483398,0.18848][-0.337537,0.802623,0.464608][0.0506946,-0.996274,-0.0697751][0.896445,0.0483398,0.18848][-0.177454,0.802623,0.546174][0.0266517,-0.996274,-0.0820255][0.898135,0.0516563,0.18848][-0.235403,0.772922,0.724523][0.0998202,-0.946391,-0.307215][0.90183,0.0504558,0.179949][0,0.772922,0.761807][0,-0.946391,-0.323025][0.902602,0.0553328,0.179949][-0.235403,0.772922,0.724523][0.0998202,-0.946391,-0.307215][0.90183,0.0504558,0.179949][-0.177454,0.802623,0.546174][0.0266517,-0.996274,-0.0820255][0.898135,0.0516563,0.18848][-0.177454,0.802623,0.546174][0.0266517,-0.996274,-0.0820255][0.898135,0.0516563,0.18848][0,0.802623,0.57428][0,-0.996274,-0.0862467][0.898717,0.0553328,0.18848][0,0.772922,0.761807][0,-0.946391,-0.323025][0.902602,0.0553328,0.179949][0.235403,0.772922,0.724523][-0.0998203,-0.946391,-0.307215][0.90183,0.0602097,0.179949][0,0.772922,0.761807][0,-0.946391,-0.323025][0.902602,0.0553328,0.179949][0,0.802623,0.57428][0,-0.996274,-0.0862467][0.898717,0.0553328,0.18848][0,0.802623,0.57428][0,-0.996274,-0.0862467][0.898717,0.0553328,0.18848][0.177454,0.802623,0.546174][-0.0266518,-0.996274,-0.0820255][0.898135,0.0590091,0.18848][0.235403,0.772922,0.724523][-0.0998203,-0.946391,-0.307215][0.90183,0.0602097,0.179949][0.447763,0.772922,0.61632][-0.189869,-0.946391,-0.261332][0.899588,0.0646093,0.179949][0.235403,0.772922,0.724523][-0.0998203,-0.946391,-0.307215][0.90183,0.0602097,0.179949][0.177454,0.802623,0.546174][-0.0266518,-0.996274,-0.0820255][0.898135,0.0590091,0.18848][0.177454,0.802623,0.546174][-0.0266518,-0.996274,-0.0820255][0.898135,0.0590091,0.18848][0.337537,0.802623,0.464608][-0.0506947,-0.996274,-0.0697752][0.896445,0.0623257,0.18848][0.447763,0.772922,0.61632][-0.189869,-0.946391,-0.261332][0.899588,0.0646093,0.179949][0.616292,0.772922,0.44779][-0.261332,-0.946391,-0.189869][0.896097,0.0681008,0.179949][0.447763,0.772922,0.61632][-0.189869,-0.946391,-0.261332][0.899588,0.0646093,0.179949][0.337537,0.802623,0.464608][-0.0506947,-0.996274,-0.0697752][0.896445,0.0623257,0.18848][0.337537,0.802623,0.464608][-0.0506947,-0.996274,-0.0697752][0.896445,0.0623257,0.18848][0.46458,0.802623,0.337565][-0.0697752,-0.996274,-0.0506946][0.893813,0.0649577,0.18848][0.616292,0.772922,0.44779][-0.261332,-0.946391,-0.189869][0.896097,0.0681008,0.179949][0.724495,0.772922,0.23543][-0.307215,-0.946391,-0.0998201][0.891697,0.0703425,0.179949][0.616292,0.772922,0.44779][-0.261332,-0.946391,-0.189869][0.896097,0.0681008,0.179949][0.46458,0.802623,0.337565][-0.0697752,-0.996274,-0.0506946][0.893813,0.0649577,0.18848][0.46458,0.802623,0.337565][-0.0697752,-0.996274,-0.0506946][0.893813,0.0649577,0.18848][0.546146,0.802623,0.177481][-0.0820256,-0.996274,-0.0266516][0.890497,0.0666475,0.18848][0.724495,0.772922,0.23543][-0.307215,-0.946391,-0.0998201][0.891697,0.0703425,0.179949][0.761779,0.772922,2.77224e-005][-0.323025,-0.946391,0][0.88682,0.0711149,0.179949][0.724495,0.772922,0.23543][-0.307215,-0.946391,-0.0998201][0.891697,0.0703425,0.179949][0.546146,0.802623,0.177481][-0.0820256,-0.996274,-0.0266516][0.890497,0.0666475,0.18848][0.546146,0.802623,0.177481][-0.0820256,-0.996274,-0.0266516][0.890497,0.0666475,0.18848][0.574252,0.802623,2.77211e-005][-0.0862467,-0.996274,1.69377e-007][0.88682,0.0672298,0.18848][0.761779,0.772922,2.77224e-005][-0.323025,-0.946391,0][0.88682,0.0711149,0.179949][0.885386,0.686725,-0.287652][-0.568566,-0.801626,0.184738][0.88086,0.0736758,0.155189][0.93095,0.686725,2.77261e-005][-0.597826,-0.801626,0][0.88682,0.0746197,0.155189][0.761779,0.772922,2.77224e-005][-0.323025,-0.946391,0][0.88682,0.0711149,0.179949][0.761779,0.772922,2.77224e-005][-0.323025,-0.946391,0][0.88682,0.0711149,0.179949][0.724495,0.772922,-0.235375][-0.307215,-0.946391,0.0998201][0.881943,0.0703425,0.179949][0.885386,0.686725,-0.287652][-0.568566,-0.801626,0.184738][0.88086,0.0736758,0.155189][0.753154,0.686725,-0.547171][-0.483651,-0.801626,0.351393][0.875484,0.0709363,0.155189][0.885386,0.686725,-0.287652][-0.568566,-0.801626,0.184738][0.88086,0.0736758,0.155189][0.724495,0.772922,-0.235375][-0.307215,-0.946391,0.0998201][0.881943,0.0703425,0.179949][0.724495,0.772922,-0.235375][-0.307215,-0.946391,0.0998201][0.881943,0.0703425,0.179949][0.616292,0.772922,-0.447735][-0.261333,-0.946391,0.189869][0.877544,0.0681008,0.179949][0.753154,0.686725,-0.547171][-0.483651,-0.801626,0.351393][0.875484,0.0709363,0.155189][0.547199,0.686725,-0.753127][-0.351393,-0.801626,0.483651][0.871217,0.0666693,0.155189][0.753154,0.686725,-0.547171][-0.483651,-0.801626,0.351393][0.875484,0.0709363,0.155189][0.616292,0.772922,-0.447735][-0.261333,-0.946391,0.189869][0.877544,0.0681008,0.179949][0.616292,0.772922,-0.447735][-0.261333,-0.946391,0.189869][0.877544,0.0681008,0.179949][0.447763,0.772922,-0.616265][-0.189869,-0.946391,0.261333][0.874052,0.0646093,0.179949][0.547199,0.686725,-0.753127][-0.351393,-0.801626,0.483651][0.871217,0.0666693,0.155189][0.287679,0.686725,-0.885358][-0.184738,-0.801626,0.568566][0.868477,0.0612927,0.155189][0.547199,0.686725,-0.753127][-0.351393,-0.801626,0.483651][0.871217,0.0666693,0.155189][0.447763,0.772922,-0.616265][-0.189869,-0.946391,0.261333][0.874052,0.0646093,0.179949][0.447763,0.772922,-0.616265][-0.189869,-0.946391,0.261333][0.874052,0.0646093,0.179949][0.235403,0.772922,-0.724467][-0.09982,-0.946391,0.307215][0.87181,0.0602097,0.179949][0.287679,0.686725,-0.885358][-0.184738,-0.801626,0.568566][0.868477,0.0612927,0.155189][0,0.686725,-0.930922][0,-0.801626,0.597826][0.867533,0.0553328,0.155189][0.287679,0.686725,-0.885358][-0.184738,-0.801626,0.568566][0.868477,0.0612927,0.155189][0.235403,0.772922,-0.724467][-0.09982,-0.946391,0.307215][0.87181,0.0602097,0.179949][0.235403,0.772922,-0.724467][-0.09982,-0.946391,0.307215][0.87181,0.0602097,0.179949][0,0.772922,-0.761752][0,-0.946391,0.323025][0.871038,0.0553328,0.179949][0,0.686725,-0.930922][0,-0.801626,0.597826][0.867533,0.0553328,0.155189][-0.287679,0.686725,-0.885358][0.184738,-0.801626,0.568566][0.868477,0.0493727,0.155189][0,0.686725,-0.930922][0,-0.801626,0.597826][0.867533,0.0553328,0.155189][0,0.772922,-0.761752][0,-0.946391,0.323025][0.871038,0.0553328,0.179949][0,0.772922,-0.761752][0,-0.946391,0.323025][0.871038,0.0553328,0.179949][-0.235403,0.772922,-0.724467][0.0998201,-0.946391,0.307215][0.87181,0.0504558,0.179949][-0.287679,0.686725,-0.885358][0.184738,-0.801626,0.568566][0.868477,0.0493727,0.155189][-0.547199,0.686725,-0.753126][0.351393,-0.801626,0.483651][0.871217,0.0439961,0.155189][-0.287679,0.686725,-0.885358][0.184738,-0.801626,0.568566][0.868477,0.0493727,0.155189][-0.235403,0.772922,-0.724467][0.0998201,-0.946391,0.307215][0.87181,0.0504558,0.179949][-0.235403,0.772922,-0.724467][0.0998201,-0.946391,0.307215][0.87181,0.0504558,0.179949][-0.447763,0.772922,-0.616265][0.189869,-0.946391,0.261333][0.874052,0.0460562,0.179949][-0.547199,0.686725,-0.753126][0.351393,-0.801626,0.483651][0.871217,0.0439961,0.155189][-0.753154,0.686725,-0.547171][0.483651,-0.801626,0.351393][0.875484,0.0397292,0.155189][-0.547199,0.686725,-0.753126][0.351393,-0.801626,0.483651][0.871217,0.0439961,0.155189][-0.447763,0.772922,-0.616265][0.189869,-0.946391,0.261333][0.874052,0.0460562,0.179949][-0.447763,0.772922,-0.616265][0.189869,-0.946391,0.261333][0.874052,0.0460562,0.179949][-0.616292,0.772922,-0.447735][0.261332,-0.946391,0.189869][0.877544,0.0425647,0.179949][-0.753154,0.686725,-0.547171][0.483651,-0.801626,0.351393][0.875484,0.0397292,0.155189][-0.885386,0.686725,-0.287652][0.568566,-0.801626,0.184738][0.88086,0.0369897,0.155189][-0.753154,0.686725,-0.547171][0.483651,-0.801626,0.351393][0.875484,0.0397292,0.155189][-0.616292,0.772922,-0.447735][0.261332,-0.946391,0.189869][0.877544,0.0425647,0.179949][-0.616292,0.772922,-0.447735][0.261332,-0.946391,0.189869][0.877544,0.0425647,0.179949][-0.724495,0.772922,-0.235375][0.307215,-0.946391,0.0998201][0.881943,0.040323,0.179949][-0.885386,0.686725,-0.287652][0.568566,-0.801626,0.184738][0.88086,0.0369897,0.155189][-0.93095,0.686725,2.78075e-005][0.597826,-0.801626,0][0.88682,0.0360457,0.155189][-0.885386,0.686725,-0.287652][0.568566,-0.801626,0.184738][0.88086,0.0369897,0.155189][-0.724495,0.772922,-0.235375][0.307215,-0.946391,0.0998201][0.881943,0.040323,0.179949][-0.724495,0.772922,-0.235375][0.307215,-0.946391,0.0998201][0.881943,0.040323,0.179949][-0.761779,0.772922,2.7789e-005][0.323025,-0.946391,0][0.88682,0.0395505,0.179949][-0.93095,0.686725,2.78075e-005][0.597826,-0.801626,0][0.88682,0.0360457,0.155189][-0.885386,0.686725,0.287707][0.568566,-0.801626,-0.184738][0.89278,0.0369897,0.155189][-0.93095,0.686725,2.78075e-005][0.597826,-0.801626,0][0.88682,0.0360457,0.155189][-0.761779,0.772922,2.7789e-005][0.323025,-0.946391,0][0.88682,0.0395505,0.179949][-0.761779,0.772922,2.7789e-005][0.323025,-0.946391,0][0.88682,0.0395505,0.179949][-0.724495,0.772922,0.235431][0.307215,-0.946391,-0.0998201][0.891697,0.040323,0.179949][-0.885386,0.686725,0.287707][0.568566,-0.801626,-0.184738][0.89278,0.0369897,0.155189][-0.753154,0.686725,0.547226][0.483651,-0.801626,-0.351393][0.898157,0.0397292,0.155189][-0.885386,0.686725,0.287707][0.568566,-0.801626,-0.184738][0.89278,0.0369897,0.155189][-0.724495,0.772922,0.235431][0.307215,-0.946391,-0.0998201][0.891697,0.040323,0.179949][-0.724495,0.772922,0.235431][0.307215,-0.946391,-0.0998201][0.891697,0.040323,0.179949][-0.616292,0.772922,0.44779][0.261332,-0.946391,-0.189869][0.896097,0.0425647,0.179949][-0.753154,0.686725,0.547226][0.483651,-0.801626,-0.351393][0.898157,0.0397292,0.155189][-0.547199,0.686725,0.753182][0.351393,-0.801626,-0.483651][0.902424,0.0439961,0.155189][-0.753154,0.686725,0.547226][0.483651,-0.801626,-0.351393][0.898157,0.0397292,0.155189][-0.616292,0.772922,0.44779][0.261332,-0.946391,-0.189869][0.896097,0.0425647,0.179949][-0.616292,0.772922,0.44779][0.261332,-0.946391,-0.189869][0.896097,0.0425647,0.179949][-0.447763,0.772922,0.61632][0.189869,-0.946391,-0.261332][0.899588,0.0460562,0.179949][-0.547199,0.686725,0.753182][0.351393,-0.801626,-0.483651][0.902424,0.0439961,0.155189][-0.287679,0.686725,0.885414][0.184738,-0.801626,-0.568566][0.905163,0.0493727,0.155189][-0.547199,0.686725,0.753182][0.351393,-0.801626,-0.483651][0.902424,0.0439961,0.155189][-0.447763,0.772922,0.61632][0.189869,-0.946391,-0.261332][0.899588,0.0460562,0.179949][-0.447763,0.772922,0.61632][0.189869,-0.946391,-0.261332][0.899588,0.0460562,0.179949][-0.235403,0.772922,0.724523][0.0998202,-0.946391,-0.307215][0.90183,0.0504558,0.179949][-0.287679,0.686725,0.885414][0.184738,-0.801626,-0.568566][0.905163,0.0493727,0.155189][1.22079e-007,0.686725,0.930978][0,-0.801626,-0.597826][0.906107,0.0553328,0.155189][-0.287679,0.686725,0.885414][0.184738,-0.801626,-0.568566][0.905163,0.0493727,0.155189][-0.235403,0.772922,0.724523][0.0998202,-0.946391,-0.307215][0.90183,0.0504558,0.179949][-0.235403,0.772922,0.724523][0.0998202,-0.946391,-0.307215][0.90183,0.0504558,0.179949][0,0.772922,0.761807][0,-0.946391,-0.323025][0.902602,0.0553328,0.179949][1.22079e-007,0.686725,0.930978][0,-0.801626,-0.597826][0.906107,0.0553328,0.155189][0.287679,0.686725,0.885414][-0.184738,-0.801626,-0.568567][0.905163,0.0612927,0.155189][1.22079e-007,0.686725,0.930978][0,-0.801626,-0.597826][0.906107,0.0553328,0.155189][0,0.772922,0.761807][0,-0.946391,-0.323025][0.902602,0.0553328,0.179949][0,0.772922,0.761807][0,-0.946391,-0.323025][0.902602,0.0553328,0.179949][0.235403,0.772922,0.724523][-0.0998203,-0.946391,-0.307215][0.90183,0.0602097,0.179949][0.287679,0.686725,0.885414][-0.184738,-0.801626,-0.568567][0.905163,0.0612927,0.155189][0.547199,0.686725,0.753182][-0.351393,-0.801626,-0.483651][0.902424,0.0666693,0.155189][0.287679,0.686725,0.885414][-0.184738,-0.801626,-0.568567][0.905163,0.0612927,0.155189][0.235403,0.772922,0.724523][-0.0998203,-0.946391,-0.307215][0.90183,0.0602097,0.179949][0.235403,0.772922,0.724523][-0.0998203,-0.946391,-0.307215][0.90183,0.0602097,0.179949][0.447763,0.772922,0.61632][-0.189869,-0.946391,-0.261332][0.899588,0.0646093,0.179949][0.547199,0.686725,0.753182][-0.351393,-0.801626,-0.483651][0.902424,0.0666693,0.155189][0.753154,0.686725,0.547226][-0.483651,-0.801626,-0.351393][0.898157,0.0709363,0.155189][0.547199,0.686725,0.753182][-0.351393,-0.801626,-0.483651][0.902424,0.0666693,0.155189][0.447763,0.772922,0.61632][-0.189869,-0.946391,-0.261332][0.899588,0.0646093,0.179949][0.447763,0.772922,0.61632][-0.189869,-0.946391,-0.261332][0.899588,0.0646093,0.179949][0.616292,0.772922,0.44779][-0.261332,-0.946391,-0.189869][0.896097,0.0681008,0.179949][0.753154,0.686725,0.547226][-0.483651,-0.801626,-0.351393][0.898157,0.0709363,0.155189][0.885386,0.686725,0.287707][-0.568566,-0.801626,-0.184738][0.89278,0.0736758,0.155189][0.753154,0.686725,0.547226][-0.483651,-0.801626,-0.351393][0.898157,0.0709363,0.155189][0.616292,0.772922,0.44779][-0.261332,-0.946391,-0.189869][0.896097,0.0681008,0.179949][0.616292,0.772922,0.44779][-0.261332,-0.946391,-0.189869][0.896097,0.0681008,0.179949][0.724495,0.772922,0.23543][-0.307215,-0.946391,-0.0998201][0.891697,0.0703425,0.179949][0.885386,0.686725,0.287707][-0.568566,-0.801626,-0.184738][0.89278,0.0736758,0.155189][0.93095,0.686725,2.77261e-005][-0.597826,-0.801626,0][0.88682,0.0746197,0.155189][0.885386,0.686725,0.287707][-0.568566,-0.801626,-0.184738][0.89278,0.0736758,0.155189][0.724495,0.772922,0.23543][-0.307215,-0.946391,-0.0998201][0.891697,0.0703425,0.179949][0.724495,0.772922,0.23543][-0.307215,-0.946391,-0.0998201][0.891697,0.0703425,0.179949][0.761779,0.772922,2.77224e-005][-0.323025,-0.946391,0][0.88682,0.0711149,0.179949][0.93095,0.686725,2.77261e-005][-0.597826,-0.801626,0][0.88682,0.0746197,0.155189][1.01307,0.552471,-0.329139][-0.774422,-0.580478,0.251625][0.880001,0.076321,0.116626][1.0652,0.552471,2.7732e-005][-0.814276,-0.580478,0][0.88682,0.0774012,0.116626][0.93095,0.686725,2.77261e-005][-0.597826,-0.801626,0][0.88682,0.0746197,0.155189][0.93095,0.686725,2.77261e-005][-0.597826,-0.801626,0][0.88682,0.0746197,0.155189][0.885386,0.686725,-0.287652][-0.568566,-0.801626,0.184738][0.88086,0.0736758,0.155189][1.01307,0.552471,-0.329139][-0.774422,-0.580478,0.251625][0.880001,0.076321,0.116626][0.861769,0.552471,-0.626084][-0.658763,-0.580478,0.478619][0.873849,0.0731865,0.116626][1.01307,0.552471,-0.329139][-0.774422,-0.580478,0.251625][0.880001,0.076321,0.116626][0.885386,0.686725,-0.287652][-0.568566,-0.801626,0.184738][0.88086,0.0736758,0.155189][0.885386,0.686725,-0.287652][-0.568566,-0.801626,0.184738][0.88086,0.0736758,0.155189][0.753154,0.686725,-0.547171][-0.483651,-0.801626,0.351393][0.875484,0.0709363,0.155189][0.861769,0.552471,-0.626084][-0.658763,-0.580478,0.478619][0.873849,0.0731865,0.116626][0.626111,0.552471,-0.861741][-0.478619,-0.580478,0.658763][0.868966,0.0683042,0.116626][0.861769,0.552471,-0.626084][-0.658763,-0.580478,0.478619][0.873849,0.0731865,0.116626][0.753154,0.686725,-0.547171][-0.483651,-0.801626,0.351393][0.875484,0.0709363,0.155189][0.753154,0.686725,-0.547171][-0.483651,-0.801626,0.351393][0.875484,0.0709363,0.155189][0.547199,0.686725,-0.753127][-0.351393,-0.801626,0.483651][0.871217,0.0666693,0.155189][0.626111,0.552471,-0.861741][-0.478619,-0.580478,0.658763][0.868966,0.0683042,0.116626][0.329166,0.552471,-1.01304][-0.251625,-0.580478,0.774422][0.865832,0.0621522,0.116626][0.626111,0.552471,-0.861741][-0.478619,-0.580478,0.658763][0.868966,0.0683042,0.116626][0.547199,0.686725,-0.753127][-0.351393,-0.801626,0.483651][0.871217,0.0666693,0.155189][0.547199,0.686725,-0.753127][-0.351393,-0.801626,0.483651][0.871217,0.0666693,0.155189][0.287679,0.686725,-0.885358][-0.184738,-0.801626,0.568566][0.868477,0.0612927,0.155189][0.329166,0.552471,-1.01304][-0.251625,-0.580478,0.774422][0.865832,0.0621522,0.116626][0,0.552471,-1.06518][1.62271e-007,-0.580478,0.814276][0.864752,0.0553328,0.116626][0.329166,0.552471,-1.01304][-0.251625,-0.580478,0.774422][0.865832,0.0621522,0.116626][0.287679,0.686725,-0.885358][-0.184738,-0.801626,0.568566][0.868477,0.0612927,0.155189][0.287679,0.686725,-0.885358][-0.184738,-0.801626,0.568566][0.868477,0.0612927,0.155189][0,0.686725,-0.930922][0,-0.801626,0.597826][0.867533,0.0553328,0.155189][0,0.552471,-1.06518][1.62271e-007,-0.580478,0.814276][0.864752,0.0553328,0.116626][-0.329166,0.552471,-1.01304][0.251625,-0.580478,0.774422][0.865832,0.0485132,0.116626][0,0.552471,-1.06518][1.62271e-007,-0.580478,0.814276][0.864752,0.0553328,0.116626][0,0.686725,-0.930922][0,-0.801626,0.597826][0.867533,0.0553328,0.155189][0,0.686725,-0.930922][0,-0.801626,0.597826][0.867533,0.0553328,0.155189][-0.287679,0.686725,-0.885358][0.184738,-0.801626,0.568566][0.868477,0.0493727,0.155189][-0.329166,0.552471,-1.01304][0.251625,-0.580478,0.774422][0.865832,0.0485132,0.116626][-0.626112,0.552471,-0.861741][0.478619,-0.580478,0.658763][0.868966,0.0423612,0.116626][-0.329166,0.552471,-1.01304][0.251625,-0.580478,0.774422][0.865832,0.0485132,0.116626][-0.287679,0.686725,-0.885358][0.184738,-0.801626,0.568566][0.868477,0.0493727,0.155189][-0.287679,0.686725,-0.885358][0.184738,-0.801626,0.568566][0.868477,0.0493727,0.155189][-0.547199,0.686725,-0.753126][0.351393,-0.801626,0.483651][0.871217,0.0439961,0.155189][-0.626112,0.552471,-0.861741][0.478619,-0.580478,0.658763][0.868966,0.0423612,0.116626][-0.861769,0.552471,-0.626084][0.658763,-0.580478,0.478619][0.873849,0.037479,0.116626][-0.626112,0.552471,-0.861741][0.478619,-0.580478,0.658763][0.868966,0.0423612,0.116626][-0.547199,0.686725,-0.753126][0.351393,-0.801626,0.483651][0.871217,0.0439961,0.155189][-0.547199,0.686725,-0.753126][0.351393,-0.801626,0.483651][0.871217,0.0439961,0.155189][-0.753154,0.686725,-0.547171][0.483651,-0.801626,0.351393][0.875484,0.0397292,0.155189][-0.861769,0.552471,-0.626084][0.658763,-0.580478,0.478619][0.873849,0.037479,0.116626][-1.01307,0.552471,-0.329138][0.774422,-0.580478,0.251625][0.880001,0.0343444,0.116626][-0.861769,0.552471,-0.626084][0.658763,-0.580478,0.478619][0.873849,0.037479,0.116626][-0.753154,0.686725,-0.547171][0.483651,-0.801626,0.351393][0.875484,0.0397292,0.155189][-0.753154,0.686725,-0.547171][0.483651,-0.801626,0.351393][0.875484,0.0397292,0.155189][-0.885386,0.686725,-0.287652][0.568566,-0.801626,0.184738][0.88086,0.0369897,0.155189][-1.01307,0.552471,-0.329138][0.774422,-0.580478,0.251625][0.880001,0.0343444,0.116626][-1.0652,0.552471,2.78251e-005][0.814276,-0.580478,0][0.88682,0.0332643,0.116626][-1.01307,0.552471,-0.329138][0.774422,-0.580478,0.251625][0.880001,0.0343444,0.116626][-0.885386,0.686725,-0.287652][0.568566,-0.801626,0.184738][0.88086,0.0369897,0.155189][-0.885386,0.686725,-0.287652][0.568566,-0.801626,0.184738][0.88086,0.0369897,0.155189][-0.93095,0.686725,2.78075e-005][0.597826,-0.801626,0][0.88682,0.0360457,0.155189][-1.0652,0.552471,2.78251e-005][0.814276,-0.580478,0][0.88682,0.0332643,0.116626][-1.01307,0.552471,0.329194][0.774422,-0.580478,-0.251625][0.89364,0.0343444,0.116626][-1.0652,0.552471,2.78251e-005][0.814276,-0.580478,0][0.88682,0.0332643,0.116626][-0.93095,0.686725,2.78075e-005][0.597826,-0.801626,0][0.88682,0.0360457,0.155189][-0.93095,0.686725,2.78075e-005][0.597826,-0.801626,0][0.88682,0.0360457,0.155189][-0.885386,0.686725,0.287707][0.568566,-0.801626,-0.184738][0.89278,0.0369897,0.155189][-1.01307,0.552471,0.329194][0.774422,-0.580478,-0.251625][0.89364,0.0343444,0.116626][-0.861768,0.552471,0.626139][0.658763,-0.580478,-0.478619][0.899792,0.037479,0.116626][-1.01307,0.552471,0.329194][0.774422,-0.580478,-0.251625][0.89364,0.0343444,0.116626][-0.885386,0.686725,0.287707][0.568566,-0.801626,-0.184738][0.89278,0.0369897,0.155189][-0.885386,0.686725,0.287707][0.568566,-0.801626,-0.184738][0.89278,0.0369897,0.155189][-0.753154,0.686725,0.547226][0.483651,-0.801626,-0.351393][0.898157,0.0397292,0.155189][-0.861768,0.552471,0.626139][0.658763,-0.580478,-0.478619][0.899792,0.037479,0.116626][-0.626111,0.552471,0.861796][0.478619,-0.580478,-0.658763][0.904674,0.0423612,0.116626][-0.861768,0.552471,0.626139][0.658763,-0.580478,-0.478619][0.899792,0.037479,0.116626][-0.753154,0.686725,0.547226][0.483651,-0.801626,-0.351393][0.898157,0.0397292,0.155189][-0.753154,0.686725,0.547226][0.483651,-0.801626,-0.351393][0.898157,0.0397292,0.155189][-0.547199,0.686725,0.753182][0.351393,-0.801626,-0.483651][0.902424,0.0439961,0.155189][-0.626111,0.552471,0.861796][0.478619,-0.580478,-0.658763][0.904674,0.0423612,0.116626][-0.329166,0.552471,1.0131][0.251625,-0.580478,-0.774422][0.907809,0.0485132,0.116626][-0.626111,0.552471,0.861796][0.478619,-0.580478,-0.658763][0.904674,0.0423612,0.116626][-0.547199,0.686725,0.753182][0.351393,-0.801626,-0.483651][0.902424,0.0439961,0.155189][-0.547199,0.686725,0.753182][0.351393,-0.801626,-0.483651][0.902424,0.0439961,0.155189][-0.287679,0.686725,0.885414][0.184738,-0.801626,-0.568566][0.905163,0.0493727,0.155189][-0.329166,0.552471,1.0131][0.251625,-0.580478,-0.774422][0.907809,0.0485132,0.116626][1.39685e-007,0.552471,1.06523][-1.93906e-007,-0.580478,-0.814276][0.908889,0.0553328,0.116626][-0.329166,0.552471,1.0131][0.251625,-0.580478,-0.774422][0.907809,0.0485132,0.116626][-0.287679,0.686725,0.885414][0.184738,-0.801626,-0.568566][0.905163,0.0493727,0.155189][-0.287679,0.686725,0.885414][0.184738,-0.801626,-0.568566][0.905163,0.0493727,0.155189][1.22079e-007,0.686725,0.930978][0,-0.801626,-0.597826][0.906107,0.0553328,0.155189][1.39685e-007,0.552471,1.06523][-1.93906e-007,-0.580478,-0.814276][0.908889,0.0553328,0.116626][0.329166,0.552471,1.0131][-0.251625,-0.580478,-0.774422][0.907809,0.0621522,0.116626][1.39685e-007,0.552471,1.06523][-1.93906e-007,-0.580478,-0.814276][0.908889,0.0553328,0.116626][1.22079e-007,0.686725,0.930978][0,-0.801626,-0.597826][0.906107,0.0553328,0.155189][1.22079e-007,0.686725,0.930978][0,-0.801626,-0.597826][0.906107,0.0553328,0.155189][0.287679,0.686725,0.885414][-0.184738,-0.801626,-0.568567][0.905163,0.0612927,0.155189][0.329166,0.552471,1.0131][-0.251625,-0.580478,-0.774422][0.907809,0.0621522,0.116626][0.626112,0.552471,0.861796][-0.478619,-0.580478,-0.658763][0.904674,0.0683042,0.116626][0.329166,0.552471,1.0131][-0.251625,-0.580478,-0.774422][0.907809,0.0621522,0.116626][0.287679,0.686725,0.885414][-0.184738,-0.801626,-0.568567][0.905163,0.0612927,0.155189][0.287679,0.686725,0.885414][-0.184738,-0.801626,-0.568567][0.905163,0.0612927,0.155189][0.547199,0.686725,0.753182][-0.351393,-0.801626,-0.483651][0.902424,0.0666693,0.155189][0.626112,0.552471,0.861796][-0.478619,-0.580478,-0.658763][0.904674,0.0683042,0.116626][0.861769,0.552471,0.626139][-0.658763,-0.580478,-0.478619][0.899792,0.0731865,0.116626][0.626112,0.552471,0.861796][-0.478619,-0.580478,-0.658763][0.904674,0.0683042,0.116626][0.547199,0.686725,0.753182][-0.351393,-0.801626,-0.483651][0.902424,0.0666693,0.155189][0.547199,0.686725,0.753182][-0.351393,-0.801626,-0.483651][0.902424,0.0666693,0.155189][0.753154,0.686725,0.547226][-0.483651,-0.801626,-0.351393][0.898157,0.0709363,0.155189][0.861769,0.552471,0.626139][-0.658763,-0.580478,-0.478619][0.899792,0.0731865,0.116626][1.01307,0.552471,0.329194][-0.774422,-0.580478,-0.251625][0.89364,0.076321,0.116626][0.861769,0.552471,0.626139][-0.658763,-0.580478,-0.478619][0.899792,0.0731865,0.116626][0.753154,0.686725,0.547226][-0.483651,-0.801626,-0.351393][0.898157,0.0709363,0.155189][0.753154,0.686725,0.547226][-0.483651,-0.801626,-0.351393][0.898157,0.0709363,0.155189][0.885386,0.686725,0.287707][-0.568566,-0.801626,-0.184738][0.89278,0.0736758,0.155189][1.01307,0.552471,0.329194][-0.774422,-0.580478,-0.251625][0.89364,0.076321,0.116626][1.0652,0.552471,2.7732e-005][-0.814276,-0.580478,0][0.88682,0.0774012,0.116626][1.01307,0.552471,0.329194][-0.774422,-0.580478,-0.251625][0.89364,0.076321,0.116626][0.885386,0.686725,0.287707][-0.568566,-0.801626,-0.184738][0.89278,0.0736758,0.155189][0.885386,0.686725,0.287707][-0.568566,-0.801626,-0.184738][0.89278,0.0736758,0.155189][0.93095,0.686725,2.77261e-005][-0.597826,-0.801626,0][0.88682,0.0746197,0.155189][1.0652,0.552471,2.7732e-005][-0.814276,-0.580478,0][0.88682,0.0774012,0.116626][1.09505,0.3833,-0.355775][-0.905884,-0.304531,0.29434][0.911266,0.0664202,0.585477][1.1514,0.3833,2.77394e-005][-0.952503,-0.304531,0][0.907192,0.0664202,0.585478][1.0652,0.552471,2.7732e-005][-0.814276,-0.580478,0][0.907192,0.0743395,0.541647][1.0652,0.552471,2.7732e-005][-0.814276,-0.580478,0][0.907192,0.0743395,0.541647][1.01307,0.552471,-0.329139][-0.774422,-0.580478,0.251625][0.911266,0.0743395,0.541647][1.09505,0.3833,-0.355775][-0.905884,-0.304531,0.29434][0.911266,0.0664202,0.585477][0.931503,0.3833,-0.676749][-0.770591,-0.304531,0.559867][0.91534,0.0664202,0.585477][1.09505,0.3833,-0.355775][-0.905884,-0.304531,0.29434][0.911266,0.0664202,0.585477][1.01307,0.552471,-0.329139][-0.774422,-0.580478,0.251625][0.911266,0.0743395,0.541647][1.01307,0.552471,-0.329139][-0.774422,-0.580478,0.251625][0.911266,0.0743395,0.541647][0.861769,0.552471,-0.626084][-0.658763,-0.580478,0.478619][0.91534,0.0743395,0.541647][0.931503,0.3833,-0.676749][-0.770591,-0.304531,0.559867][0.91534,0.0664202,0.585477][0.676777,0.3833,-0.931475][-0.559867,-0.304531,0.770591][0.919415,0.0664202,0.585477][0.931503,0.3833,-0.676749][-0.770591,-0.304531,0.559867][0.91534,0.0664202,0.585477][0.861769,0.552471,-0.626084][-0.658763,-0.580478,0.478619][0.91534,0.0743395,0.541647][0.861769,0.552471,-0.626084][-0.658763,-0.580478,0.478619][0.91534,0.0743395,0.541647][0.626111,0.552471,-0.861741][-0.478619,-0.580478,0.658763][0.919415,0.0743395,0.541647][0.676777,0.3833,-0.931475][-0.559867,-0.304531,0.770591][0.919415,0.0664202,0.585477][0.355802,0.3833,-1.09502][-0.294339,-0.304531,0.905884][0.923489,0.0664202,0.585477][0.676777,0.3833,-0.931475][-0.559867,-0.304531,0.770591][0.919415,0.0664202,0.585477][0.626111,0.552471,-0.861741][-0.478619,-0.580478,0.658763][0.919415,0.0743395,0.541647][0.626111,0.552471,-0.861741][-0.478619,-0.580478,0.658763][0.919415,0.0743395,0.541647][0.329166,0.552471,-1.01304][-0.251625,-0.580478,0.774422][0.923489,0.0743395,0.541646][0.355802,0.3833,-1.09502][-0.294339,-0.304531,0.905884][0.923489,0.0664202,0.585477][0,0.3833,-1.15137][0,-0.304531,0.952502][0.927563,0.0664202,0.585477][0.355802,0.3833,-1.09502][-0.294339,-0.304531,0.905884][0.923489,0.0664202,0.585477][0.329166,0.552471,-1.01304][-0.251625,-0.580478,0.774422][0.923489,0.0743395,0.541646][0.329166,0.552471,-1.01304][-0.251625,-0.580478,0.774422][0.923489,0.0743395,0.541646][0,0.552471,-1.06518][1.62271e-007,-0.580478,0.814276][0.927563,0.0743395,0.541646][0,0.3833,-1.15137][0,-0.304531,0.952502][0.927563,0.0664202,0.585477][-0.355803,0.3833,-1.09502][0.29434,-0.304531,0.905884][0.931638,0.0664202,0.585477][0,0.3833,-1.15137][0,-0.304531,0.952502][0.927563,0.0664202,0.585477][0,0.552471,-1.06518][1.62271e-007,-0.580478,0.814276][0.927563,0.0743395,0.541646][0,0.552471,-1.06518][1.62271e-007,-0.580478,0.814276][0.927563,0.0743395,0.541646][-0.329166,0.552471,-1.01304][0.251625,-0.580478,0.774422][0.931638,0.0743395,0.541646][-0.355803,0.3833,-1.09502][0.29434,-0.304531,0.905884][0.931638,0.0664202,0.585477][-0.676777,0.3833,-0.931475][0.559867,-0.304531,0.770591][0.935712,0.0664202,0.585477][-0.355803,0.3833,-1.09502][0.29434,-0.304531,0.905884][0.931638,0.0664202,0.585477][-0.329166,0.552471,-1.01304][0.251625,-0.580478,0.774422][0.931638,0.0743395,0.541646][-0.329166,0.552471,-1.01304][0.251625,-0.580478,0.774422][0.931638,0.0743395,0.541646][-0.626112,0.552471,-0.861741][0.478619,-0.580478,0.658763][0.935712,0.0743395,0.541647][-0.676777,0.3833,-0.931475][0.559867,-0.304531,0.770591][0.935712,0.0664202,0.585477][-0.931503,0.3833,-0.676749][0.770591,-0.304531,0.559867][0.939786,0.0664202,0.585477][-0.676777,0.3833,-0.931475][0.559867,-0.304531,0.770591][0.935712,0.0664202,0.585477][-0.626112,0.552471,-0.861741][0.478619,-0.580478,0.658763][0.935712,0.0743395,0.541647][-0.626112,0.552471,-0.861741][0.478619,-0.580478,0.658763][0.935712,0.0743395,0.541647][-0.861769,0.552471,-0.626084][0.658763,-0.580478,0.478619][0.939786,0.0743395,0.541647][-0.931503,0.3833,-0.676749][0.770591,-0.304531,0.559867][0.939786,0.0664202,0.585477][-1.09505,0.3833,-0.355775][0.905884,-0.304531,0.294339][0.943861,0.0664202,0.585477][-0.931503,0.3833,-0.676749][0.770591,-0.304531,0.559867][0.939786,0.0664202,0.585477][-0.861769,0.552471,-0.626084][0.658763,-0.580478,0.478619][0.939786,0.0743395,0.541647][-0.861769,0.552471,-0.626084][0.658763,-0.580478,0.478619][0.939786,0.0743395,0.541647][-1.01307,0.552471,-0.329138][0.774422,-0.580478,0.251625][0.943861,0.0743395,0.541647][-1.09505,0.3833,-0.355775][0.905884,-0.304531,0.294339][0.943861,0.0664202,0.585477][-1.1514,0.3833,2.784e-005][0.952503,-0.304531,0][0.947935,0.0664202,0.585478][-1.09505,0.3833,-0.355775][0.905884,-0.304531,0.294339][0.943861,0.0664202,0.585477][-1.01307,0.552471,-0.329138][0.774422,-0.580478,0.251625][0.943861,0.0743395,0.541647][-1.01307,0.552471,-0.329138][0.774422,-0.580478,0.251625][0.943861,0.0743395,0.541647][-1.0652,0.552471,2.78251e-005][0.814276,-0.580478,0][0.947935,0.0743395,0.541647][-1.1514,0.3833,2.784e-005][0.952503,-0.304531,0][0.947935,0.0664202,0.585478][-1.09505,0.3833,0.35583][0.905884,-0.304531,-0.29434][0.952009,0.0664202,0.585478][-1.1514,0.3833,2.784e-005][0.952503,-0.304531,0][0.947935,0.0664202,0.585478][-1.0652,0.552471,2.78251e-005][0.814276,-0.580478,0][0.947935,0.0743395,0.541647][-1.0652,0.552471,2.78251e-005][0.814276,-0.580478,0][0.947935,0.0743395,0.541647][-1.01307,0.552471,0.329194][0.774422,-0.580478,-0.251625][0.952009,0.0743395,0.541648][-1.09505,0.3833,0.35583][0.905884,-0.304531,-0.29434][0.952009,0.0664202,0.585478][-0.931503,0.3833,0.676804][0.770591,-0.304531,-0.559867][0.956084,0.0664202,0.585478][-1.09505,0.3833,0.35583][0.905884,-0.304531,-0.29434][0.952009,0.0664202,0.585478][-1.01307,0.552471,0.329194][0.774422,-0.580478,-0.251625][0.952009,0.0743395,0.541648][-1.01307,0.552471,0.329194][0.774422,-0.580478,-0.251625][0.952009,0.0743395,0.541648][-0.861768,0.552471,0.626139][0.658763,-0.580478,-0.478619][0.956084,0.0743395,0.541648][-0.931503,0.3833,0.676804][0.770591,-0.304531,-0.559867][0.956084,0.0664202,0.585478][-0.676776,0.3833,0.931531][0.559867,-0.304531,-0.770591][0.960158,0.0664202,0.585478][-0.931503,0.3833,0.676804][0.770591,-0.304531,-0.559867][0.956084,0.0664202,0.585478][-0.861768,0.552471,0.626139][0.658763,-0.580478,-0.478619][0.956084,0.0743395,0.541648][-0.861768,0.552471,0.626139][0.658763,-0.580478,-0.478619][0.956084,0.0743395,0.541648][-0.626111,0.552471,0.861796][0.478619,-0.580478,-0.658763][0.960158,0.0743395,0.541648][-0.676776,0.3833,0.931531][0.559867,-0.304531,-0.770591][0.960158,0.0664202,0.585478][-0.355802,0.3833,1.09508][0.294339,-0.304531,-0.905884][0.964232,0.0664202,0.585478][-0.676776,0.3833,0.931531][0.559867,-0.304531,-0.770591][0.960158,0.0664202,0.585478][-0.626111,0.552471,0.861796][0.478619,-0.580478,-0.658763][0.960158,0.0743395,0.541648][-0.626111,0.552471,0.861796][0.478619,-0.580478,-0.658763][0.960158,0.0743395,0.541648][-0.329166,0.552471,1.0131][0.251625,-0.580478,-0.774422][0.964232,0.0743395,0.541648][-0.355802,0.3833,1.09508][0.294339,-0.304531,-0.905884][0.964232,0.0664202,0.585478][1.50988e-007,0.3833,1.15143][0,-0.304531,-0.952502][0.968306,0.0664202,0.585479][-0.355802,0.3833,1.09508][0.294339,-0.304531,-0.905884][0.964232,0.0664202,0.585478][-0.329166,0.552471,1.0131][0.251625,-0.580478,-0.774422][0.964232,0.0743395,0.541648][-0.329166,0.552471,1.0131][0.251625,-0.580478,-0.774422][0.964232,0.0743395,0.541648][1.39685e-007,0.552471,1.06523][-1.93906e-007,-0.580478,-0.814276][0.968306,0.0743395,0.541648][1.50988e-007,0.3833,1.15143][0,-0.304531,-0.952502][0.968306,0.0664202,0.585479][0.355803,0.3833,1.09508][-0.29434,-0.304531,-0.905884][0.972381,0.0664202,0.585478][1.50988e-007,0.3833,1.15143][0,-0.304531,-0.952502][0.968306,0.0664202,0.585479][1.39685e-007,0.552471,1.06523][-1.93906e-007,-0.580478,-0.814276][0.968306,0.0743395,0.541648][1.39685e-007,0.552471,1.06523][-1.93906e-007,-0.580478,-0.814276][0.968306,0.0743395,0.541648][0.329166,0.552471,1.0131][-0.251625,-0.580478,-0.774422][0.972381,0.0743395,0.541648][0.355803,0.3833,1.09508][-0.29434,-0.304531,-0.905884][0.972381,0.0664202,0.585478][0.676777,0.3833,0.931531][-0.559867,-0.304531,-0.770591][0.976455,0.0664202,0.585478][0.355803,0.3833,1.09508][-0.29434,-0.304531,-0.905884][0.972381,0.0664202,0.585478][0.329166,0.552471,1.0131][-0.251625,-0.580478,-0.774422][0.972381,0.0743395,0.541648][0.329166,0.552471,1.0131][-0.251625,-0.580478,-0.774422][0.972381,0.0743395,0.541648][0.626112,0.552471,0.861796][-0.478619,-0.580478,-0.658763][0.976455,0.0743395,0.541648][0.676777,0.3833,0.931531][-0.559867,-0.304531,-0.770591][0.976455,0.0664202,0.585478][0.931503,0.3833,0.676804][-0.770591,-0.304531,-0.559867][0.980529,0.0664202,0.585478][0.676777,0.3833,0.931531][-0.559867,-0.304531,-0.770591][0.976455,0.0664202,0.585478][0.626112,0.552471,0.861796][-0.478619,-0.580478,-0.658763][0.976455,0.0743395,0.541648][0.626112,0.552471,0.861796][-0.478619,-0.580478,-0.658763][0.976455,0.0743395,0.541648][0.861769,0.552471,0.626139][-0.658763,-0.580478,-0.478619][0.980529,0.0743395,0.541648][0.931503,0.3833,0.676804][-0.770591,-0.304531,-0.559867][0.980529,0.0664202,0.585478][1.09505,0.3833,0.35583][-0.905884,-0.304531,-0.294339][0.984604,0.0664202,0.585478][0.931503,0.3833,0.676804][-0.770591,-0.304531,-0.559867][0.980529,0.0664202,0.585478][0.861769,0.552471,0.626139][-0.658763,-0.580478,-0.478619][0.980529,0.0743395,0.541648][0.861769,0.552471,0.626139][-0.658763,-0.580478,-0.478619][0.980529,0.0743395,0.541648][1.01307,0.552471,0.329194][-0.774422,-0.580478,-0.251625][0.984604,0.0743395,0.541648][1.09505,0.3833,0.35583][-0.905884,-0.304531,-0.294339][0.984604,0.0664202,0.585478][1.1514,0.3833,2.77394e-005][-0.952503,-0.304531,0][0.988678,0.0664202,0.585478][1.09505,0.3833,0.35583][-0.905884,-0.304531,-0.294339][0.984604,0.0664202,0.585478][1.01307,0.552471,0.329194][-0.774422,-0.580478,-0.251625][0.984604,0.0743395,0.541648][1.01307,0.552471,0.329194][-0.774422,-0.580478,-0.251625][0.984604,0.0743395,0.541648][1.0652,0.552471,2.7732e-005][-0.814276,-0.580478,0][0.988678,0.0743395,0.541647][1.1514,0.3833,2.77394e-005][-0.952503,-0.304531,0][0.988678,0.0664202,0.585478][1.1233,0.195773,-0.364953][-0.948218,-0.0774221,0.30804][0.911266,0.0576415,0.60058][1.1811,0.195773,2.77476e-005][-0.996965,-0.0778548,0][0.907192,0.0576415,0.60058][1.1514,0.3833,2.77394e-005][-0.952503,-0.304531,0][0.907192,0.0664202,0.585478][1.1514,0.3833,2.77394e-005][-0.952503,-0.304531,0][0.907192,0.0664202,0.585478][1.09505,0.3833,-0.355775][-0.905884,-0.304531,0.29434][0.911266,0.0664202,0.585477][1.1233,0.195773,-0.364953][-0.948218,-0.0774221,0.30804][0.911266,0.0576415,0.60058][0.955532,0.195773,-0.694207][-0.806561,-0.0778548,0.586001][0.91534,0.0576415,0.60058][1.1233,0.195773,-0.364953][-0.948218,-0.0774221,0.30804][0.911266,0.0576415,0.60058][1.09505,0.3833,-0.355775][-0.905884,-0.304531,0.29434][0.911266,0.0664202,0.585477][1.09505,0.3833,-0.355775][-0.905884,-0.304531,0.29434][0.911266,0.0664202,0.585477][0.931503,0.3833,-0.676749][-0.770591,-0.304531,0.559867][0.91534,0.0664202,0.585477][0.955532,0.195773,-0.694207][-0.806561,-0.0778548,0.586001][0.91534,0.0576415,0.60058][0.694235,0.195773,-0.955504][-0.586001,-0.0778548,0.806561][0.919415,0.0576415,0.60058][0.955532,0.195773,-0.694207][-0.806561,-0.0778548,0.586001][0.91534,0.0576415,0.60058][0.931503,0.3833,-0.676749][-0.770591,-0.304531,0.559867][0.91534,0.0664202,0.585477][0.931503,0.3833,-0.676749][-0.770591,-0.304531,0.559867][0.91534,0.0664202,0.585477][0.676777,0.3833,-0.931475][-0.559867,-0.304531,0.770591][0.919415,0.0664202,0.585477][0.694235,0.195773,-0.955504][-0.586001,-0.0778548,0.806561][0.919415,0.0576415,0.60058][0.364981,0.195773,-1.12327][-0.308165,-0.0772185,0.948194][0.923489,0.0576415,0.60058][0.694235,0.195773,-0.955504][-0.586001,-0.0778548,0.806561][0.919415,0.0576415,0.60058][0.676777,0.3833,-0.931475][-0.559867,-0.304531,0.770591][0.919415,0.0664202,0.585477][0.676777,0.3833,-0.931475][-0.559867,-0.304531,0.770591][0.919415,0.0664202,0.585477][0.355802,0.3833,-1.09502][-0.294339,-0.304531,0.905884][0.923489,0.0664202,0.585477][0.364981,0.195773,-1.12327][-0.308165,-0.0772185,0.948194][0.923489,0.0576415,0.60058][0,0.195773,-1.18107][2.62148e-007,-0.0778548,0.996965][0.927563,0.0576415,0.60058][0.364981,0.195773,-1.12327][-0.308165,-0.0772185,0.948194][0.923489,0.0576415,0.60058][0.355802,0.3833,-1.09502][-0.294339,-0.304531,0.905884][0.923489,0.0664202,0.585477][0.355802,0.3833,-1.09502][-0.294339,-0.304531,0.905884][0.923489,0.0664202,0.585477][0,0.3833,-1.15137][0,-0.304531,0.952502][0.927563,0.0664202,0.585477][0,0.195773,-1.18107][2.62148e-007,-0.0778548,0.996965][0.927563,0.0576415,0.60058][-0.364981,0.195773,-1.12327][0.308866,-0.0765932,0.948016][0.931638,0.0576415,0.60058][0,0.195773,-1.18107][2.62148e-007,-0.0778548,0.996965][0.927563,0.0576415,0.60058][0,0.3833,-1.15137][0,-0.304531,0.952502][0.927563,0.0664202,0.585477][0,0.3833,-1.15137][0,-0.304531,0.952502][0.927563,0.0664202,0.585477][-0.355803,0.3833,-1.09502][0.29434,-0.304531,0.905884][0.931638,0.0664202,0.585477][-0.364981,0.195773,-1.12327][0.308866,-0.0765932,0.948016][0.931638,0.0576415,0.60058][-0.694235,0.195773,-0.955504][0.585433,-0.0769221,0.807063][0.854226,0.0576415,0.60058][-0.364981,0.195773,-1.12327][0.308866,-0.0765932,0.948016][0.850151,0.0576415,0.60058][-0.355803,0.3833,-1.09502][0.29434,-0.304531,0.905884][0.850151,0.0664202,0.585477][-0.355803,0.3833,-1.09502][0.29434,-0.304531,0.905884][0.850151,0.0664202,0.585477][-0.676777,0.3833,-0.931475][0.559867,-0.304531,0.770591][0.854226,0.0664202,0.585477][-0.694235,0.195773,-0.955504][0.585433,-0.0769221,0.807063][0.854226,0.0576415,0.60058][-0.955532,0.195773,-0.694207][0.806561,-0.0778549,0.586001][0.8583,0.0576415,0.60058][-0.694235,0.195773,-0.955504][0.585433,-0.0769221,0.807063][0.854226,0.0576415,0.60058][-0.676777,0.3833,-0.931475][0.559867,-0.304531,0.770591][0.854226,0.0664202,0.585477][-0.676777,0.3833,-0.931475][0.559867,-0.304531,0.770591][0.854226,0.0664202,0.585477][-0.931503,0.3833,-0.676749][0.770591,-0.304531,0.559867][0.8583,0.0664202,0.585477][-0.955532,0.195773,-0.694207][0.806561,-0.0778549,0.586001][0.8583,0.0576415,0.60058][-1.1233,0.195773,-0.364953][0.94817,-0.0778549,0.308079][0.862374,0.0576415,0.60058][-0.955532,0.195773,-0.694207][0.806561,-0.0778549,0.586001][0.8583,0.0576415,0.60058][-0.931503,0.3833,-0.676749][0.770591,-0.304531,0.559867][0.8583,0.0664202,0.585477][-0.931503,0.3833,-0.676749][0.770591,-0.304531,0.559867][0.8583,0.0664202,0.585477][-1.09505,0.3833,-0.355775][0.905884,-0.304531,0.294339][0.862374,0.0664202,0.585477][-1.1233,0.195773,-0.364953][0.94817,-0.0778549,0.308079][0.862374,0.0576415,0.60058][-1.1811,0.195773,2.78508e-005][0.996965,-0.0778548,-1.37165e-007][0.866449,0.0576415,0.60058][-1.1233,0.195773,-0.364953][0.94817,-0.0778549,0.308079][0.862374,0.0576415,0.60058][-1.09505,0.3833,-0.355775][0.905884,-0.304531,0.294339][0.862374,0.0664202,0.585477][-1.09505,0.3833,-0.355775][0.905884,-0.304531,0.294339][0.862374,0.0664202,0.585477][-1.1514,0.3833,2.784e-005][0.952503,-0.304531,0][0.866449,0.0664202,0.585478][-1.1811,0.195773,2.78508e-005][0.996965,-0.0778548,-1.37165e-007][0.866449,0.0576415,0.60058][-1.1233,0.195773,0.365009][0.94818,-0.0777292,-0.308079][0.870523,0.0576415,0.600581][-1.1811,0.195773,2.78508e-005][0.996965,-0.0778548,-1.37165e-007][0.866449,0.0576415,0.60058][-1.1514,0.3833,2.784e-005][0.952503,-0.304531,0][0.866449,0.0664202,0.585478][-1.1514,0.3833,2.784e-005][0.952503,-0.304531,0][0.866449,0.0664202,0.585478][-1.09505,0.3833,0.35583][0.905884,-0.304531,-0.29434][0.870523,0.0664202,0.585478][-1.1233,0.195773,0.365009][0.94818,-0.0777292,-0.308079][0.870523,0.0576415,0.600581][-0.955532,0.195773,0.694262][0.806564,-0.0776868,-0.586019][0.874597,0.0576415,0.600581][-1.1233,0.195773,0.365009][0.94818,-0.0777292,-0.308079][0.870523,0.0576415,0.600581][-1.09505,0.3833,0.35583][0.905884,-0.304531,-0.29434][0.870523,0.0664202,0.585478][-1.09505,0.3833,0.35583][0.905884,-0.304531,-0.29434][0.870523,0.0664202,0.585478][-0.931503,0.3833,0.676804][0.770591,-0.304531,-0.559867][0.874597,0.0664202,0.585478][-0.955532,0.195773,0.694262][0.806564,-0.0776868,-0.586019][0.874597,0.0576415,0.600581][-0.694234,0.195773,0.95556][0.586001,-0.0778548,-0.806561][0.878672,0.0576415,0.600581][-0.955532,0.195773,0.694262][0.806564,-0.0776868,-0.586019][0.874597,0.0576415,0.600581][-0.931503,0.3833,0.676804][0.770591,-0.304531,-0.559867][0.874597,0.0664202,0.585478][-0.931503,0.3833,0.676804][0.770591,-0.304531,-0.559867][0.874597,0.0664202,0.585478][-0.676776,0.3833,0.931531][0.559867,-0.304531,-0.770591][0.878672,0.0664202,0.585478][-0.694234,0.195773,0.95556][0.586001,-0.0778548,-0.806561][0.878672,0.0576415,0.600581][-0.364981,0.195773,1.12332][0.308079,-0.0778549,-0.94817][0.882746,0.0576415,0.600581][-0.694234,0.195773,0.95556][0.586001,-0.0778548,-0.806561][0.878672,0.0576415,0.600581][-0.676776,0.3833,0.931531][0.559867,-0.304531,-0.770591][0.878672,0.0664202,0.585478][-0.676776,0.3833,0.931531][0.559867,-0.304531,-0.770591][0.878672,0.0664202,0.585478][-0.355802,0.3833,1.09508][0.294339,-0.304531,-0.905884][0.882746,0.0664202,0.585478][-0.364981,0.195773,1.12332][0.308079,-0.0778549,-0.94817][0.882746,0.0576415,0.600581][1.54883e-007,0.195773,1.18113][-1.39364e-007,-0.0778548,-0.996965][0.88682,0.0576415,0.600581][-0.364981,0.195773,1.12332][0.308079,-0.0778549,-0.94817][0.882746,0.0576415,0.600581][-0.355802,0.3833,1.09508][0.294339,-0.304531,-0.905884][0.882746,0.0664202,0.585478][-0.355802,0.3833,1.09508][0.294339,-0.304531,-0.905884][0.882746,0.0664202,0.585478][1.50988e-007,0.3833,1.15143][0,-0.304531,-0.952502][0.88682,0.0664202,0.585479][1.54883e-007,0.195773,1.18113][-1.39364e-007,-0.0778548,-0.996965][0.88682,0.0576415,0.600581][0.364981,0.195773,1.12332][-0.308079,-0.0778547,-0.94817][0.890895,0.0576415,0.600581][1.54883e-007,0.195773,1.18113][-1.39364e-007,-0.0778548,-0.996965][0.88682,0.0576415,0.600581][1.50988e-007,0.3833,1.15143][0,-0.304531,-0.952502][0.88682,0.0664202,0.585479][1.50988e-007,0.3833,1.15143][0,-0.304531,-0.952502][0.88682,0.0664202,0.585479][0.355803,0.3833,1.09508][-0.29434,-0.304531,-0.905884][0.890895,0.0664202,0.585478][0.364981,0.195773,1.12332][-0.308079,-0.0778547,-0.94817][0.890895,0.0576415,0.600581][0.694235,0.195773,0.955559][-0.586001,-0.0778547,-0.806561][0.894969,0.0576415,0.600581][0.364981,0.195773,1.12332][-0.308079,-0.0778547,-0.94817][0.890895,0.0576415,0.600581][0.355803,0.3833,1.09508][-0.29434,-0.304531,-0.905884][0.890895,0.0664202,0.585478][0.355803,0.3833,1.09508][-0.29434,-0.304531,-0.905884][0.890895,0.0664202,0.585478][0.676777,0.3833,0.931531][-0.559867,-0.304531,-0.770591][0.894969,0.0664202,0.585478][0.694235,0.195773,0.955559][-0.586001,-0.0778547,-0.806561][0.894969,0.0576415,0.600581][0.955532,0.195773,0.694262][-0.806559,-0.0775945,-0.586039][0.899043,0.0576415,0.600581][0.694235,0.195773,0.955559][-0.586001,-0.0778547,-0.806561][0.894969,0.0576415,0.600581][0.676777,0.3833,0.931531][-0.559867,-0.304531,-0.770591][0.894969,0.0664202,0.585478][0.676777,0.3833,0.931531][-0.559867,-0.304531,-0.770591][0.894969,0.0664202,0.585478][0.931503,0.3833,0.676804][-0.770591,-0.304531,-0.559867][0.899043,0.0664202,0.585478][0.955532,0.195773,0.694262][-0.806559,-0.0775945,-0.586039][0.899043,0.0576415,0.600581][1.1233,0.195773,0.365008][-0.94817,-0.0778549,-0.308079][0.903117,0.0576415,0.600581][0.955532,0.195773,0.694262][-0.806559,-0.0775945,-0.586039][0.899043,0.0576415,0.600581][0.931503,0.3833,0.676804][-0.770591,-0.304531,-0.559867][0.899043,0.0664202,0.585478][0.931503,0.3833,0.676804][-0.770591,-0.304531,-0.559867][0.899043,0.0664202,0.585478][1.09505,0.3833,0.35583][-0.905884,-0.304531,-0.294339][0.903117,0.0664202,0.585478][1.1233,0.195773,0.365008][-0.94817,-0.0778549,-0.308079][0.903117,0.0576415,0.600581][1.1811,0.195773,2.77476e-005][-0.996965,-0.0778548,0][0.907192,0.0576415,0.60058][1.1233,0.195773,0.365008][-0.94817,-0.0778549,-0.308079][0.903117,0.0576415,0.600581][1.09505,0.3833,0.35583][-0.905884,-0.304531,-0.294339][0.903117,0.0664202,0.585478][1.09505,0.3833,0.35583][-0.905884,-0.304531,-0.294339][0.903117,0.0664202,0.585478][1.1514,0.3833,2.77394e-005][-0.952503,-0.304531,0][0.907192,0.0664202,0.585478][1.1811,0.195773,2.77476e-005][-0.996965,-0.0778548,0][0.907192,0.0576415,0.60058][1.1233,0.195773,-0.364953][-0.948218,-0.0774221,0.30804][0.911266,0.0576415,0.60058][1.11387,-0.723019,-0.383455][0,-3.43927,2.6626e-007][0.911492,0.0146303,0.599019][1.1811,-0.723019,2.7796e-005][0,-3.47223,0][0.907192,0.0146303,0.60058][1.1811,-0.723019,2.7796e-005][0,-3.47223,0][0.907192,0.0146303,0.60058][1.1811,0.195773,2.77476e-005][-0.996965,-0.0778548,0][0.907192,0.0576415,0.60058][1.1233,0.195773,-0.364953][-0.948218,-0.0774221,0.30804][0.911266,0.0576415,0.60058][0.955532,0.195773,-0.694207][-0.806561,-0.0778548,0.586001][0.91534,0.0576415,0.60058][0.955532,-0.723019,-0.694207][1.21693e-007,-3.45575,2.23907e-007][0.91534,0.0146303,0.60058][1.11387,-0.723019,-0.383455][0,-3.43927,2.6626e-007][0.911492,0.0146303,0.599019][1.11387,-0.723019,-0.383455][0,-3.43927,2.6626e-007][0.911492,0.0146303,0.599019][1.1233,0.195773,-0.364953][-0.948218,-0.0774221,0.30804][0.911266,0.0576415,0.60058][0.955532,0.195773,-0.694207][-0.806561,-0.0778548,0.586001][0.91534,0.0576415,0.60058][1.15859,-0.723019,0.142153][0,-3.14159,0][0.905609,0.0146303,0.59355][1.1233,-0.723019,0.365008][0,-3.45575,2.527e-007][0.903117,0.0146303,0.600581][1.1233,0.195773,0.365008][-0.94817,-0.0778549,-0.308079][0.903117,0.0576415,0.600581][1.15859,-0.723019,0.142153][0,-3.14159,0][0.905609,0.0146303,0.59355][1.1233,0.195773,0.365008][-0.94817,-0.0778549,-0.308079][0.903117,0.0576415,0.600581][1.1811,0.195773,2.77476e-005][-0.996965,-0.0778548,0][0.907192,0.0576415,0.60058][1.1811,-0.723019,2.7796e-005][0,-3.47223,0][0.907192,0.0146303,0.60058][1.15859,-0.723019,0.142153][0,-3.14159,0][0.905609,0.0146303,0.59355][1.1811,0.195773,2.77476e-005][-0.996965,-0.0778548,0][0.907192,0.0576415,0.60058][0.796166,-0.723019,-0.853573][0,-3.14159,0][0.917829,0.0146303,0.593545][0.955532,-0.723019,-0.694207][1.21693e-007,-3.45575,2.23907e-007][0.91534,0.0146303,0.60058][0.955532,0.195773,-0.694207][-0.806561,-0.0778548,0.586001][0.91534,0.0576415,0.60058][0.796166,-0.723019,-0.853573][0,-3.14159,0][0.917829,0.0146303,0.593545][0.955532,0.195773,-0.694207][-0.806561,-0.0778548,0.586001][0.91534,0.0576415,0.60058][0.694235,0.195773,-0.955504][-0.586001,-0.0778548,0.806561][0.919415,0.0576415,0.60058][0.796166,-0.723019,-0.853573][0,-3.14159,0][0.917829,0.0146303,0.593545][0.694235,0.195773,-0.955504][-0.586001,-0.0778548,0.806561][0.919415,0.0576415,0.60058][0.694235,-0.723019,-0.955504][0,-3.47941,0][0.919415,0.0146303,0.60058][-1.16518,-0.723019,0.100565][0,-3.14159,0][0.867565,0.0146303,0.594685][-1.1811,-0.723019,2.79015e-005][0,-3.45575,0][0.866449,0.0146303,0.60058][-1.1811,0.195773,2.78508e-005][0.996965,-0.0778548,-1.37165e-007][0.866449,0.0576415,0.60058][-1.13931,-0.723019,0.263876][0,-3.19408,0][0.8694,0.0146303,0.594664][-1.16518,-0.723019,0.100565][0,-3.14159,0][0.867565,0.0146303,0.594685][-1.1811,0.195773,2.78508e-005][0.996965,-0.0778548,-1.37165e-007][0.866449,0.0576415,0.60058][-1.13931,-0.723019,0.263876][0,-3.19408,0][0.8694,0.0146303,0.594664][-1.1811,0.195773,2.78508e-005][0.996965,-0.0778548,-1.37165e-007][0.866449,0.0576415,0.60058][-1.1233,0.195773,0.365009][0.94818,-0.0777292,-0.308079][0.870523,0.0576415,0.600581][-1.11387,-0.723019,0.383509][0,-3.40327,0][0.870749,0.0146303,0.59902][-1.13931,-0.723019,0.263876][0,-3.19408,0][0.8694,0.0146303,0.594664][-1.1233,0.195773,0.365009][0.94818,-0.0777292,-0.308079][0.870523,0.0576415,0.600581][0.364981,0.195773,-1.12327][-0.308165,-0.0772185,0.948194][0.923489,0.0576415,0.60058][0.334843,-0.723019,-1.12804][0,-3.4321,0][0.923821,0.0146303,0.598349][0.694235,-0.723019,-0.955504][0,-3.47941,0][0.919415,0.0146303,0.60058][0.694235,-0.723019,-0.955504][0,-3.47941,0][0.919415,0.0146303,0.60058][0.694235,0.195773,-0.955504][-0.586001,-0.0778548,0.806561][0.919415,0.0576415,0.60058][0.364981,0.195773,-1.12327][-0.308165,-0.0772185,0.948194][0.923489,0.0576415,0.60058][0,0.195773,-1.18107][2.62148e-007,-0.0778548,0.996965][0.927563,0.0576415,0.60058][0,-0.723019,-1.18107][0,-3.45575,0][0.927563,0.0146303,0.60058][0.334843,-0.723019,-1.12804][0,-3.4321,0][0.923821,0.0146303,0.598349][0.334843,-0.723019,-1.12804][0,-3.4321,0][0.923821,0.0146303,0.598349][0.364981,0.195773,-1.12327][-0.308165,-0.0772185,0.948194][0.923489,0.0576415,0.60058][0,0.195773,-1.18107][2.62148e-007,-0.0778548,0.996965][0.927563,0.0576415,0.60058][-0.350444,-0.723019,-1.12557][0,-3.44389,0][0.849991,0.0146303,0.599454][0,-0.723019,-1.18107][0,-3.45575,0][0.846077,0.0146303,0.60058][0,0.195773,-1.18107][2.62148e-007,-0.0778548,0.996965][0.846077,0.0576415,0.60058][-0.350444,-0.723019,-1.12557][0,-3.44389,0][0.849991,0.0146303,0.599454][0,0.195773,-1.18107][2.62148e-007,-0.0778548,0.996965][0.846077,0.0576415,0.60058][-0.364981,0.195773,-1.12327][0.308866,-0.0765932,0.948016][0.850151,0.0576415,0.60058][-0.350444,-0.723019,-1.12557][0,-3.44389,0][0.849991,0.0146303,0.599454][-0.364981,0.195773,-1.12327][0.308866,-0.0765932,0.948016][0.850151,0.0576415,0.60058][-0.694235,0.195773,-0.955504][0.585433,-0.0769221,0.807063][0.854226,0.0576415,0.60058][-0.350444,-0.723019,-1.12557][0,-3.44389,0][0.849991,0.0146303,0.599454][-0.694235,0.195773,-0.955504][0.585433,-0.0769221,0.807063][0.854226,0.0576415,0.60058][-0.694235,-0.723019,-0.955504][0,-3.46761,0][0.854226,0.0146303,0.60058][-1.15755,-0.723019,-0.148675][0,-3.14159,0][0.864792,0.0146303,0.593441][-1.1233,-0.723019,-0.364953][2.89893e-006,-3.45575,2.0209e-006][0.862374,0.0146303,0.60058][-1.1233,0.195773,-0.364953][0.94817,-0.0778549,0.308079][0.862374,0.0576415,0.60058][-1.15755,-0.723019,-0.148675][0,-3.14159,0][0.864792,0.0146303,0.593441][-1.1233,0.195773,-0.364953][0.94817,-0.0778549,0.308079][0.862374,0.0576415,0.60058][-1.1811,0.195773,2.78508e-005][0.996965,-0.0778548,-1.37165e-007][0.866449,0.0576415,0.60058][-1.1811,-0.723019,2.79015e-005][0,-3.45575,0][0.866449,0.0146303,0.60058][-1.15755,-0.723019,-0.148675][0,-3.14159,0][0.864792,0.0146303,0.593441][-1.1811,0.195773,2.78508e-005][0.996965,-0.0778548,-1.37165e-007][0.866449,0.0576415,0.60058][-0.955532,0.195773,-0.694207][0.806561,-0.0778549,0.586001][0.8583,0.0576415,0.60058][-0.955532,-0.723019,-0.694207][-7.39302e-007,-3.45575,-3.45391e-007][0.8583,0.0146303,0.60058][-0.694235,-0.723019,-0.955504][0,-3.46761,0][0.854226,0.0146303,0.60058][-0.694235,-0.723019,-0.955504][0,-3.46761,0][0.854226,0.0146303,0.60058][-0.694235,0.195773,-0.955504][0.585433,-0.0769221,0.807063][0.854226,0.0576415,0.60058][-0.955532,0.195773,-0.694207][0.806561,-0.0778549,0.586001][0.8583,0.0576415,0.60058][-1.1233,0.195773,-0.364953][0.94817,-0.0778549,0.308079][0.862374,0.0576415,0.60058][-1.1233,-0.723019,-0.364953][2.89893e-006,-3.45575,2.0209e-006][0.862374,0.0146303,0.60058][-0.955532,-0.723019,-0.694207][-7.39302e-007,-3.45575,-3.45391e-007][0.8583,0.0146303,0.60058][-0.955532,-0.723019,-0.694207][-7.39302e-007,-3.45575,-3.45391e-007][0.8583,0.0146303,0.60058][-0.955532,0.195773,-0.694207][0.806561,-0.0778549,0.586001][0.8583,0.0576415,0.60058][-1.1233,0.195773,-0.364953][0.94817,-0.0778549,0.308079][0.862374,0.0576415,0.60058][-1.03937,-0.723019,0.529714][0,-3.14159,6.65801e-007][0.872561,0.0146303,0.593187][-1.11387,-0.723019,0.383509][0,-3.40327,0][0.870749,0.0146303,0.59902][-1.1233,0.195773,0.365009][0.94818,-0.0777292,-0.308079][0.870523,0.0576415,0.600581][-1.03937,-0.723019,0.529714][0,-3.14159,6.65801e-007][0.872561,0.0146303,0.593187][-1.1233,0.195773,0.365009][0.94818,-0.0777292,-0.308079][0.870523,0.0576415,0.600581][-0.955532,0.195773,0.694262][0.806564,-0.0776868,-0.586019][0.874597,0.0576415,0.600581][-0.961211,-0.723019,0.683117][2.28766e-007,-3.43986,2.32108e-007][0.874461,0.0146303,0.599619][-1.03937,-0.723019,0.529714][0,-3.14159,6.65801e-007][0.872561,0.0146303,0.593187][-0.955532,0.195773,0.694262][0.806564,-0.0776868,-0.586019][0.874597,0.0576415,0.600581][-0.791936,-0.723019,0.857859][2.16452e-007,-3.15748,-2.15115e-007][0.877152,0.0146303,0.59366][-0.961211,-0.723019,0.683117][2.28766e-007,-3.43986,2.32108e-007][0.874461,0.0146303,0.599619][-0.955532,0.195773,0.694262][0.806564,-0.0776868,-0.586019][0.874597,0.0576415,0.600581][-0.791936,-0.723019,0.857859][2.16452e-007,-3.15748,-2.15115e-007][0.877152,0.0146303,0.59366][-0.955532,0.195773,0.694262][0.806564,-0.0776868,-0.586019][0.874597,0.0576415,0.600581][-0.694234,0.195773,0.95556][0.586001,-0.0778548,-0.806561][0.878672,0.0576415,0.600581][-0.694234,-0.723019,0.95556][3.28859e-007,-3.45575,-6.09476e-007][0.878672,0.0146303,0.600581][-0.791936,-0.723019,0.857859][2.16452e-007,-3.15748,-2.15115e-007][0.877152,0.0146303,0.59366][-0.694234,0.195773,0.95556][0.586001,-0.0778548,-0.806561][0.878672,0.0576415,0.600581][-0.364981,0.195773,1.12332][0.308079,-0.0778549,-0.94817][0.882746,0.0576415,0.600581][-0.364981,-0.723019,1.12332][4.38518e-007,-3.45575,-1.01548e-006][0.882746,0.0146303,0.600581][-0.694234,-0.723019,0.95556][3.28859e-007,-3.45575,-6.09476e-007][0.878672,0.0146303,0.600581][-0.694234,-0.723019,0.95556][3.28859e-007,-3.45575,-6.09476e-007][0.878672,0.0146303,0.600581][-0.694234,0.195773,0.95556][0.586001,-0.0778548,-0.806561][0.878672,0.0576415,0.600581][-0.364981,0.195773,1.12332][0.308079,-0.0778549,-0.94817][0.882746,0.0576415,0.600581][1.54883e-007,0.195773,1.18113][-1.39364e-007,-0.0778548,-0.996965][0.88682,0.0576415,0.600581][1.58328e-007,-0.723019,1.18113][0,-3.45575,0][0.88682,0.0146303,0.600581][-0.364981,-0.723019,1.12332][4.38518e-007,-3.45575,-1.01548e-006][0.882746,0.0146303,0.600581][-0.364981,-0.723019,1.12332][4.38518e-007,-3.45575,-1.01548e-006][0.882746,0.0146303,0.600581][-0.364981,0.195773,1.12332][0.308079,-0.0778549,-0.94817][0.882746,0.0576415,0.600581][1.54883e-007,0.195773,1.18113][-1.39364e-007,-0.0778548,-0.996965][0.88682,0.0576415,0.600581][0.364981,0.195773,1.12332][-0.308079,-0.0778547,-0.94817][0.890895,0.0576415,0.600581][0.364981,-0.723019,1.12332][0,-3.45575,0][0.890895,0.0146303,0.600581][1.58328e-007,-0.723019,1.18113][0,-3.45575,0][0.88682,0.0146303,0.600581][1.58328e-007,-0.723019,1.18113][0,-3.45575,0][0.88682,0.0146303,0.600581][1.54883e-007,0.195773,1.18113][-1.39364e-007,-0.0778548,-0.996965][0.88682,0.0576415,0.600581][0.364981,0.195773,1.12332][-0.308079,-0.0778547,-0.94817][0.890895,0.0576415,0.600581][0.454605,-0.723019,1.07766][0,-3.14159,2.34201e-007][0.891997,0.0146303,0.59473][0.364981,-0.723019,1.12332][0,-3.45575,0][0.890895,0.0146303,0.600581][0.364981,0.195773,1.12332][-0.308079,-0.0778547,-0.94817][0.890895,0.0576415,0.600581][0.454605,-0.723019,1.07766][0,-3.14159,2.34201e-007][0.891997,0.0146303,0.59473][0.364981,0.195773,1.12332][-0.308079,-0.0778547,-0.94817][0.890895,0.0576415,0.600581][0.694235,0.195773,0.955559][-0.586001,-0.0778547,-0.806561][0.894969,0.0576415,0.600581][0.454605,-0.723019,1.07766][0,-3.14159,2.34201e-007][0.891997,0.0146303,0.59473][0.694235,0.195773,0.955559][-0.586001,-0.0778547,-0.806561][0.894969,0.0576415,0.600581][0.694235,-0.723019,0.95556][-1.69456e-007,-3.46589,7.48257e-007][0.894969,0.0146303,0.600581][0.955532,0.195773,0.694262][-0.806559,-0.0775945,-0.586039][0.899043,0.0576415,0.600581][0.961211,-0.723019,0.683117][-2.38534e-007,-3.44562,-5.12656e-007][0.899179,0.0146303,0.599619][0.694235,-0.723019,0.95556][-1.69456e-007,-3.46589,7.48257e-007][0.894969,0.0146303,0.600581][0.694235,-0.723019,0.95556][-1.69456e-007,-3.46589,7.48257e-007][0.894969,0.0146303,0.600581][0.694235,0.195773,0.955559][-0.586001,-0.0778547,-0.806561][0.894969,0.0576415,0.600581][0.955532,0.195773,0.694262][-0.806559,-0.0775945,-0.586039][0.899043,0.0576415,0.600581][1.1233,0.195773,0.365008][-0.94817,-0.0778549,-0.308079][0.903117,0.0576415,0.600581][1.1233,-0.723019,0.365008][0,-3.45575,2.527e-007][0.903117,0.0146303,0.600581][0.961211,-0.723019,0.683117][-2.38534e-007,-3.44562,-5.12656e-007][0.899179,0.0146303,0.599619][0.961211,-0.723019,0.683117][-2.38534e-007,-3.44562,-5.12656e-007][0.899179,0.0146303,0.599619][0.955532,0.195773,0.694262][-0.806559,-0.0775945,-0.586039][0.899043,0.0576415,0.600581][1.1233,0.195773,0.365008][-0.94817,-0.0778549,-0.308079][0.903117,0.0576415,0.600581] \ No newline at end of file diff --git a/shareddata/charcustom/hats/fonts/visor.mesh b/shareddata/charcustom/hats/fonts/visor.mesh deleted file mode 100644 index b7ee9f1..0000000 --- a/shareddata/charcustom/hats/fonts/visor.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -140 -[-1.16827,-0.222815,0.838872][-0.889406,-0.022847,0.456547][0.914968,0.669096,0][-1.265,0.244922,0.375417][-0.755994,0.651503,0.0633717][0.826912,0.954345,0][-1.265,-0.198513,0.353227][-0.999957,0.00705972,-0.00604897][0.827077,0.669095,0][-1.16827,0.202463,0.860155][-0.667524,0.629777,0.397232][0.914968,0.954612,0][-1.265,0.244922,0.375417][-0.755994,0.651503,0.0633717][0.826912,0.954345,0][-1.16827,-0.222815,0.838872][-0.889406,-0.022847,0.456547][0.914968,0.669096,0][-0.835923,-0.240536,1.19293][-0.729535,-0.0341841,0.683089][0.994891,0.669096,0][-1.16827,0.202463,0.860155][-0.667524,0.629777,0.397232][0.914968,0.954612,0][-1.16827,-0.222815,0.838872][-0.889406,-0.022847,0.456547][0.914968,0.669096,0][-0.835923,0.166824,1.21332][-0.722543,0.0736519,0.687391][0.997126,0.98377,0][-1.16827,0.202463,0.860155][-0.667524,0.629777,0.397232][0.914968,0.954612,0][-0.835923,-0.240536,1.19293][-0.729535,-0.0341841,0.683089][0.994891,0.669096,0][-0.480607,-0.139844,-0.819226][-0.375961,0.191381,-0.906657][0.581744,0.669094,0][-0.00231893,0.539453,-0.778446][0,0.764754,-0.644322][0.49974,0.953708,0][-0.00231891,-0.135008,-0.915828][1.32402e-007,0.199593,-0.979879][0.49974,0.669094,0][-0.480608,0.507211,-0.68017][-0.327575,0.758916,-0.562798][0.581744,0.953763,0][-0.00231893,0.539453,-0.778446][0,0.764754,-0.644322][0.49974,0.953708,0][-0.480607,-0.139844,-0.819226][-0.375961,0.191381,-0.906657][0.581744,0.669094,0][-0.892834,-0.153606,-0.54413][-0.691817,0.147639,-0.706818][0.662171,0.669094,0][-0.480608,0.507211,-0.68017][-0.327575,0.758916,-0.562798][0.581744,0.953763,0][-0.480607,-0.139844,-0.819226][-0.375961,0.191381,-0.906657][0.581744,0.669094,0][-0.892834,0.415725,-0.427265][-0.570468,0.720001,-0.395177][0.662171,0.953902,0][-0.480608,0.507211,-0.68017][-0.327575,0.758916,-0.562798][0.581744,0.953763,0][-0.892834,-0.153606,-0.54413][-0.691817,0.147639,-0.706818][0.662171,0.669094,0][-1.16827,-0.174209,-0.13242][-0.915255,0.0748559,-0.395861][0.740664,0.669095,0][-0.892834,0.415725,-0.427265][-0.570468,0.720001,-0.395177][0.662171,0.953902,0][-0.892834,-0.153606,-0.54413][-0.691817,0.147639,-0.706818][0.662171,0.669094,0][-1.16827,0.312561,-0.0461932][-0.713027,0.678937,-0.175034][0.740664,0.954112,0][-0.892834,0.415725,-0.427265][-0.570468,0.720001,-0.395177][0.662171,0.953902,0][-1.16827,-0.174209,-0.13242][-0.915255,0.0748559,-0.395861][0.740664,0.669095,0][-1.265,-0.198513,0.353227][-0.999957,0.00705972,-0.00604897][0.827077,0.669095,0][-1.16827,0.312561,-0.0461932][-0.713027,0.678937,-0.175034][0.740664,0.954112,0][-1.16827,-0.174209,-0.13242][-0.915255,0.0748559,-0.395861][0.740664,0.669095,0][-1.265,0.244922,0.375417][-0.755994,0.651503,0.0633717][0.826912,0.954345,0][-1.16827,0.312561,-0.0461932][-0.713027,0.678937,-0.175034][0.740664,0.954112,0][-1.265,-0.198513,0.353227][-0.999957,0.00705972,-0.00604897][0.827077,0.669095,0][-0.00231882,-0.140126,-1.4768][0,0.975373,-0.220561][0.247364,0.00758553,0][-0.478721,-0.0197334,-0.766954][-0.148815,0.964585,-0.217786][0.348543,0.158344,0][-0.00231891,0.00904279,-0.881366][0,0.970023,-0.243013][0.247364,0.134044,0][-0.478721,-0.0197334,-0.766954][-0.148815,0.964585,-0.217786][0.348543,0.158344,0][-0.00231882,-0.140126,-1.4768][0,0.975373,-0.220561][0.247364,0.00758553,0][-0.464728,-0.167507,-1.46919][-0.125935,0.970269,-0.206685][0.345571,0.00920022,0][-1.03628,-0.227365,-1.05844][-0.327162,0.917302,-0.226984][0.466959,0.096438,0][-1.16904,-0.074008,-0.095268][-0.406445,0.891954,-0.19804][0.49431,0.300998,0][-0.89375,-0.0391302,-0.503164][-0.34227,0.91653,-0.206939][0.436688,0.214368,0][-1.1789,-0.198513,0.353227][0.999954,-0.00738394,0.0061888][0.810588,0.54171,0][-1.1789,0.244922,0.375417][0.99968,-0.00126465,0.0252735][0.810588,0.622187,0][-1.08873,-0.221171,0.805966][0.925957,0.0188742,-0.377158][0.915862,0.541828,0][-1.08873,-0.221171,0.805966][0.925957,0.0188742,-0.377158][0.915862,0.541828,0][-1.1789,0.244922,0.375417][0.99968,-0.00126465,0.0252735][0.810588,0.622187,0][-1.08873,0.204109,0.827249][0.927759,0.0186518,-0.372713][0.915862,0.622336,0][-1.08873,-0.221171,0.805966][0.925957,0.0188742,-0.377158][0.915862,0.541828,0][-1.08873,0.204109,0.827249][0.927759,0.0186518,-0.372713][0.915862,0.622336,0][-0.835923,-0.240536,1.19293][0.837491,0.0273122,-0.545768][0.997967,0.541928,0][-0.835923,-0.240536,1.19293][0.837491,0.0273122,-0.545768][0.997967,0.541928,0][-1.08873,0.204109,0.827249][0.927759,0.0186518,-0.372713][0.915862,0.622336,0][-0.835923,0.166824,1.21332][0.837491,0.0273122,-0.545768][0.997967,0.622463,0][-0.00231892,-0.139316,-0.829837][-1.3311e-007,-0.199589,0.97988][0.500246,0.541402,0][-0.00231894,0.535151,-0.692457][-1.74607e-007,-0.206064,0.978539][0.500246,0.621834,0][-0.447659,-0.143819,-0.739783][0.376114,-0.191251,0.906621][0.566581,0.541425,0][-0.447659,-0.143819,-0.739783][0.376114,-0.191251,0.906621][0.566581,0.541425,0][-0.00231894,0.535151,-0.692457][-1.74607e-007,-0.206064,0.978539][0.500246,0.621834,0][-0.447659,0.503231,-0.600726][0.378718,-0.19234,0.905306][0.566581,0.621865,0][-0.447659,-0.143819,-0.739783][0.376114,-0.191251,0.906621][0.566581,0.541425,0][-0.447659,0.503231,-0.600726][0.378718,-0.19234,0.905306][0.566581,0.621865,0][-0.831954,-0.156648,-0.483327][0.691787,-0.147735,0.706827][0.635874,0.541492,0][-0.831954,-0.156648,-0.483327][0.691787,-0.147735,0.706827][0.635874,0.541492,0][-0.447659,0.503231,-0.600726][0.378718,-0.19234,0.905306][0.566581,0.621865,0][-0.831954,0.412685,-0.366461][0.688935,-0.141872,0.710803][0.635874,0.621942,0][-0.831954,-0.156648,-0.483327][0.691787,-0.147735,0.706827][0.635874,0.541492,0][-0.831954,0.412685,-0.366461][0.688935,-0.141872,0.710803][0.635874,0.621942,0][-1.08873,-0.175856,-0.0995118][0.915215,-0.0750618,0.395913][0.704967,0.541592,0][-1.08873,-0.175856,-0.0995118][0.915215,-0.0750618,0.395913][0.704967,0.541592,0][-0.831954,0.412685,-0.366461][0.688935,-0.141872,0.710803][0.635874,0.621942,0][-1.08873,0.310916,-0.0132849][0.914428,-0.0638842,0.399675][0.704967,0.622059,0][-1.08873,-0.175856,-0.0995118][0.915215,-0.0750618,0.395913][0.704967,0.541592,0][-1.08873,0.310916,-0.0132849][0.914428,-0.0638842,0.399675][0.704967,0.622059,0][-1.1789,-0.198513,0.353227][0.999954,-0.00738394,0.0061888][0.810588,0.54171,0][-1.1789,-0.198513,0.353227][0.999954,-0.00738394,0.0061888][0.810588,0.54171,0][-1.08873,0.310916,-0.0132849][0.914428,-0.0638842,0.399675][0.704967,0.622059,0][-1.1789,0.244922,0.375417][0.99968,-0.00126465,0.0252735][0.810588,0.622187,0][-0.464728,-0.167507,-1.46919][-0.125935,0.970269,-0.206685][0.345571,0.00920022,0][-0.719989,-0.209883,-1.41966][-0.232421,0.948444,-0.215487][0.399784,0.0197193,0][-0.478721,-0.0197334,-0.766954][-0.148815,0.964585,-0.217786][0.348543,0.158344,0][-0.719989,-0.209883,-1.41966][-0.232421,0.948444,-0.215487][0.399784,0.0197193,0][-0.89375,-0.0391302,-0.503164][-0.34227,0.91653,-0.206939][0.436688,0.214368,0][-0.478721,-0.0197334,-0.766954][-0.148815,0.964585,-0.217786][0.348543,0.158344,0][-0.719989,-0.209883,-1.41966][-0.232421,0.948444,-0.215487][0.399784,0.0197193,0][-0.922601,-0.246137,-1.28676][-0.315779,0.920169,-0.231458][0.442815,0.0479453,0][-0.89375,-0.0391302,-0.503164][-0.34227,0.91653,-0.206939][0.436688,0.214368,0][-1.03628,-0.227365,-1.05844][-0.327162,0.917302,-0.226984][0.466959,0.096438,0][-0.89375,-0.0391302,-0.503164][-0.34227,0.91653,-0.206939][0.436688,0.214368,0][-0.922601,-0.246137,-1.28676][-0.315779,0.920169,-0.231458][0.442815,0.0479453,0][1.26036,-0.198513,0.353227][0.980785,-0.00975045,0.194847][0.172892,0.669095,0][1.26036,0.244922,0.375417][0.755994,0.651503,0.0633718][0.172933,0.954345,0][1.16364,-0.222815,0.838873][0.980785,-0.00975045,0.194847][0.0837499,0.669096,0][1.16364,-0.222815,0.838873][0.846664,-0.0265961,0.531462][0.0837485,0.669096,0][1.26036,0.244922,0.375417][0.755994,0.651503,0.0633718][0.172933,0.954345,0][1.16364,0.202463,0.860155][0.667524,0.629777,0.397232][0.0837743,0.954612,0][1.16364,-0.222815,0.838873][0.846664,-0.0265961,0.531462][0.0837485,0.669096,0][1.16364,0.202463,0.860155][0.667524,0.629777,0.397232][0.0837743,0.954612,0][0.831285,-0.240536,1.19293][0.729535,-0.0341841,0.683089][0.00178784,0.669096,0][0.831285,-0.240536,1.19293][0.729535,-0.0341841,0.683089][0.00178784,0.669096,0][1.16364,0.202463,0.860155][0.667524,0.629777,0.397232][0.0837743,0.954612,0][0.831285,0.166824,1.21332][0.722543,0.0736518,0.687391][-0.000446641,0.98377,0][-0.00231891,-0.135008,-0.915828][1.32402e-007,0.199593,-0.979879][0.49974,0.669094,0][-0.00231893,0.539453,-0.778446][0,0.764754,-0.644322][0.49974,0.953708,0][0.47597,-0.139844,-0.819226][0.375961,0.191381,-0.906657][0.417736,0.669094,0][0.47597,-0.139844,-0.819226][0.375961,0.191381,-0.906657][0.417736,0.669094,0][-0.00231893,0.539453,-0.778446][0,0.764754,-0.644322][0.49974,0.953708,0][0.47597,0.507211,-0.68017][0.327575,0.758916,-0.562798][0.417736,0.953763,0][0.47597,-0.139844,-0.819226][0.375961,0.191381,-0.906657][0.417736,0.669094,0][0.47597,0.507211,-0.68017][0.327575,0.758916,-0.562798][0.417736,0.953763,0][0.888196,-0.153606,-0.54413][0.691817,0.147639,-0.706818][0.33733,0.669094,0][0.888196,-0.153606,-0.54413][0.691817,0.147639,-0.706818][0.33733,0.669094,0][0.47597,0.507211,-0.68017][0.327575,0.758916,-0.562798][0.417736,0.953763,0][0.888196,0.415725,-0.427264][0.570469,0.720001,-0.395177][0.33733,0.953902,0][0.888196,-0.153606,-0.54413][0.691817,0.147639,-0.706818][0.33733,0.669094,0][0.888196,0.415725,-0.427264][0.570469,0.720001,-0.395177][0.33733,0.953902,0][1.16364,-0.174209,-0.132419][0.915255,0.0748562,-0.39586][0.258882,0.669095,0][1.16364,-0.174209,-0.132419][0.915255,0.0748562,-0.39586][0.258882,0.669095,0][0.888196,0.415725,-0.427264][0.570469,0.720001,-0.395177][0.33733,0.953902,0][1.16364,0.312561,-0.0461928][0.713027,0.678937,-0.175034][0.258882,0.954112,0][1.16364,-0.174209,-0.132419][0.915255,0.0748562,-0.39586][0.258882,0.669095,0][1.16364,0.312561,-0.0461928][0.713027,0.678937,-0.175034][0.258882,0.954112,0][1.26036,-0.198513,0.353227][0.978123,0.0235798,-0.206687][0.172891,0.669095,0][1.26036,-0.198513,0.353227][0.978123,0.0235798,-0.206687][0.172891,0.669095,0][1.16364,0.312561,-0.0461928][0.713027,0.678937,-0.175034][0.258882,0.954112,0][1.26036,0.244922,0.375417][0.755994,0.651503,0.0633718][0.172933,0.954345,0][-0.00231891,0.00904279,-0.881366][0,0.970023,-0.243013][0.247364,0.134044,0][0.474083,-0.0197334,-0.766953][0.148815,0.964585,-0.217786][0.146184,0.158344,0][-0.00231882,-0.140126,-1.4768][0,0.975373,-0.220561][0.247364,0.00758553,0][0.460091,-0.167507,-1.46919][0.125935,0.970269,-0.206685][0.149156,0.00920022,0][-0.00231882,-0.140126,-1.4768][0,0.975373,-0.220561][0.247364,0.00758553,0][0.474083,-0.0197334,-0.766953][0.148815,0.964585,-0.217786][0.146184,0.158344,0][0.889112,-0.0391302,-0.503164][0.344776,0.915787,-0.206068][0.0580394,0.214368,0][1.16043,-0.074008,-0.0952677][0.41011,0.890586,-0.196636][0.000417214,0.300998,0][1.03164,-0.227365,-1.05844][0.327605,0.917182,-0.22683][0.0277683,0.096438,0][1.08409,-0.221171,0.805967][-0.925957,0.0188742,-0.377158][0.0846315,0.541828,0][1.17426,0.244922,0.375417][-0.99968,-0.00126463,0.0252733][0.189906,0.622187,0][1.17426,-0.198513,0.353227][-0.999954,-0.00738404,0.00618839][0.189906,0.54171,0][1.08409,0.204109,0.827249][-0.927759,0.0186519,-0.372713][0.0846315,0.622336,0][1.17426,0.244922,0.375417][-0.99968,-0.00126463,0.0252733][0.189906,0.622187,0][1.08409,-0.221171,0.805967][-0.925957,0.0188742,-0.377158][0.0846315,0.541828,0][0.831285,-0.240536,1.19293][-0.837491,0.0273122,-0.545769][0.00252654,0.541928,0][1.08409,0.204109,0.827249][-0.927759,0.0186519,-0.372713][0.0846315,0.622336,0][1.08409,-0.221171,0.805967][-0.925957,0.0188742,-0.377158][0.0846315,0.541828,0][0.831285,0.166824,1.21332][-0.837491,0.0273122,-0.545769][0.00252654,0.622463,0][1.08409,0.204109,0.827249][-0.927759,0.0186519,-0.372713][0.0846315,0.622336,0][0.831285,-0.240536,1.19293][-0.837491,0.0273122,-0.545769][0.00252654,0.541928,0][0.443022,-0.143819,-0.739783][-0.376115,-0.191251,0.906621][0.433912,0.541425,0][-0.00231894,0.535151,-0.692457][-1.74607e-007,-0.206064,0.978539][0.500246,0.621834,0][-0.00231892,-0.139316,-0.829837][-1.3311e-007,-0.199589,0.97988][0.500246,0.541402,0][0.443022,0.503231,-0.600726][-0.378718,-0.19234,0.905305][0.433912,0.621865,0][-0.00231894,0.535151,-0.692457][-1.74607e-007,-0.206064,0.978539][0.500246,0.621834,0][0.443022,-0.143819,-0.739783][-0.376115,-0.191251,0.906621][0.433912,0.541425,0][0.827316,-0.156648,-0.483326][-0.691787,-0.147735,0.706827][0.364619,0.541492,0][0.443022,0.503231,-0.600726][-0.378718,-0.19234,0.905305][0.433912,0.621865,0][0.443022,-0.143819,-0.739783][-0.376115,-0.191251,0.906621][0.433912,0.541425,0][0.827316,0.412685,-0.366461][-0.688935,-0.141872,0.710803][0.364619,0.621942,0][0.443022,0.503231,-0.600726][-0.378718,-0.19234,0.905305][0.433912,0.621865,0][0.827316,-0.156648,-0.483326][-0.691787,-0.147735,0.706827][0.364619,0.541492,0][1.08409,-0.175856,-0.0995115][-0.915215,-0.075062,0.395913][0.295526,0.541592,0][0.827316,0.412685,-0.366461][-0.688935,-0.141872,0.710803][0.364619,0.621942,0][0.827316,-0.156648,-0.483326][-0.691787,-0.147735,0.706827][0.364619,0.541492,0][1.08409,0.310916,-0.0132846][-0.914428,-0.0638844,0.399674][0.295526,0.622059,0][0.827316,0.412685,-0.366461][-0.688935,-0.141872,0.710803][0.364619,0.621942,0][1.08409,-0.175856,-0.0995115][-0.915215,-0.075062,0.395913][0.295526,0.541592,0][1.17426,-0.198513,0.353227][-0.999954,-0.00738404,0.00618839][0.189906,0.54171,0][1.08409,0.310916,-0.0132846][-0.914428,-0.0638844,0.399674][0.295526,0.622059,0][1.08409,-0.175856,-0.0995115][-0.915215,-0.075062,0.395913][0.295526,0.541592,0][1.17426,0.244922,0.375417][-0.99968,-0.00126463,0.0252733][0.189906,0.622187,0][1.08409,0.310916,-0.0132846][-0.914428,-0.0638844,0.399674][0.295526,0.622059,0][1.17426,-0.198513,0.353227][-0.999954,-0.00738404,0.00618839][0.189906,0.54171,0][0.474083,-0.0197334,-0.766953][0.148815,0.964585,-0.217786][0.146184,0.158344,0][0.715352,-0.209883,-1.41966][0.232421,0.948444,-0.215487][0.094943,0.0197193,0][0.460091,-0.167507,-1.46919][0.125935,0.970269,-0.206685][0.149156,0.00920022,0][0.474083,-0.0197334,-0.766953][0.148815,0.964585,-0.217786][0.146184,0.158344,0][0.889112,-0.0391302,-0.503164][0.344776,0.915787,-0.206068][0.0580394,0.214368,0][0.715352,-0.209883,-1.41966][0.232421,0.948444,-0.215487][0.094943,0.0197193,0][0.889112,-0.0391302,-0.503164][0.344776,0.915787,-0.206068][0.0580394,0.214368,0][0.917963,-0.246137,-1.28676][0.315779,0.920169,-0.231458][0.0519119,0.0479453,0][0.715352,-0.209883,-1.41966][0.232421,0.948444,-0.215487][0.094943,0.0197193,0][0.917963,-0.246137,-1.28676][0.315779,0.920169,-0.231458][0.0519119,0.0479453,0][0.889112,-0.0391302,-0.503164][0.344776,0.915787,-0.206068][0.0580394,0.214368,0][1.03164,-0.227365,-1.05844][0.327605,0.917182,-0.22683][0.0277683,0.096438,0][-1.16827,-0.174209,-0.13242][-0.986192,0.0509162,-0.157586][0.998356,0.634735,0][-1.16904,-0.074008,-0.095268][-0.987226,0.0388345,-0.154523][0.997727,0.662808,0][-1.03359,-0.320723,-1.02265][-0.961557,-0.106183,-0.253247][0.786448,0.634655,0][-1.16904,-0.074008,-0.095268][-0.987226,0.0388345,-0.154523][0.997727,0.662808,0][-1.03628,-0.227365,-1.05844][-0.943294,-0.142208,-0.299957][0.786144,0.662778,0][-1.03359,-0.320723,-1.02265][-0.961557,-0.106183,-0.253247][0.786448,0.634655,0][-0.464728,-0.167507,-1.46919][-0.0640033,-0.276286,-0.958942][0.605156,0.662765,0][-0.00231883,-0.229035,-1.4533][1.24436e-007,-0.25841,-0.966035][0.499322,0.634618,0][-0.468023,-0.25198,-1.44448][-0.0777739,-0.267738,-0.960348][0.605136,0.634619,0][-0.00231883,-0.229035,-1.4533][1.24436e-007,-0.25841,-0.966035][0.499322,0.634618,0][-0.464728,-0.167507,-1.46919][-0.0640033,-0.276286,-0.958942][0.605156,0.662765,0][-0.00231882,-0.140126,-1.4768][1.2461e-007,-0.255464,-0.966819][0.499322,0.662765,0][-0.468023,-0.25198,-1.44448][-0.0777739,-0.267738,-0.960348][0.605136,0.634619,0][-0.719989,-0.209883,-1.41966][-0.305715,-0.190442,-0.932883][0.671138,0.662767,0][-0.464728,-0.167507,-1.46919][-0.0640033,-0.276286,-0.958942][0.605156,0.662765,0][-0.719989,-0.209883,-1.41966][-0.305715,-0.190442,-0.932883][0.671138,0.662767,0][-0.468023,-0.25198,-1.44448][-0.0777739,-0.267738,-0.960348][0.605136,0.634619,0][-0.717953,-0.297612,-1.40341][-0.355271,-0.173886,-0.918447][0.670793,0.634624,0][-0.717953,-0.297612,-1.40341][-0.355271,-0.173886,-0.918447][0.670793,0.634624,0][-0.922601,-0.246137,-1.28676][-0.724862,-0.113006,-0.679562][0.73531,0.662771,0][-0.719989,-0.209883,-1.41966][-0.305715,-0.190442,-0.932883][0.671138,0.662767,0][-0.922601,-0.246137,-1.28676][-0.724862,-0.113006,-0.679562][0.73531,0.662771,0][-0.717953,-0.297612,-1.40341][-0.355271,-0.173886,-0.918447][0.670793,0.634624,0][-0.925783,-0.333562,-1.2714][-0.779616,-0.0807744,-0.621027][0.735263,0.634635,0][-0.925783,-0.333562,-1.2714][-0.779616,-0.0807744,-0.621027][0.735263,0.634635,0][-1.03359,-0.320723,-1.02265][-0.961557,-0.106183,-0.253247][0.786448,0.634655,0][-0.922601,-0.246137,-1.28676][-0.724862,-0.113006,-0.679562][0.73531,0.662771,0][-1.03628,-0.227365,-1.05844][-0.943294,-0.142208,-0.299957][0.786144,0.662778,0][-0.922601,-0.246137,-1.28676][-0.724862,-0.113006,-0.679562][0.73531,0.662771,0][-1.03359,-0.320723,-1.02265][-0.961557,-0.106183,-0.253247][0.786448,0.634655,0][1.02895,-0.320723,-1.02265][0.962252,-0.104101,-0.251465][0.213371,0.634654,0][1.16043,-0.074008,-0.0952677][0.984172,0.0764671,-0.159871][-0.000451628,0.662808,0][1.16364,-0.174209,-0.132419][0.982181,0.0921938,-0.163772][0.000975841,0.634733,0][1.02895,-0.320723,-1.02265][0.962252,-0.104101,-0.251465][0.213371,0.634654,0][1.03164,-0.227365,-1.05844][0.943866,-0.141637,-0.298423][0.212166,0.662778,0][1.16043,-0.074008,-0.0952677][0.984172,0.0764671,-0.159871][-0.000451628,0.662808,0][0.463385,-0.25198,-1.44448][0.077774,-0.267738,-0.960348][0.393281,0.634619,0][-0.00231883,-0.229035,-1.4533][1.24436e-007,-0.25841,-0.966035][0.499322,0.634618,0][0.460091,-0.167507,-1.46919][0.0640035,-0.276286,-0.958942][0.393487,0.662765,0][-0.00231882,-0.140126,-1.4768][1.2461e-007,-0.255464,-0.966819][0.499322,0.662765,0][0.460091,-0.167507,-1.46919][0.0640035,-0.276286,-0.958942][0.393487,0.662765,0][-0.00231883,-0.229035,-1.4533][1.24436e-007,-0.25841,-0.966035][0.499322,0.634618,0][0.460091,-0.167507,-1.46919][0.0640035,-0.276286,-0.958942][0.393487,0.662765,0][0.715352,-0.209883,-1.41966][0.305715,-0.190442,-0.932883][0.327433,0.662767,0][0.463385,-0.25198,-1.44448][0.077774,-0.267738,-0.960348][0.393281,0.634619,0][0.713315,-0.297612,-1.40341][0.355272,-0.173886,-0.918447][0.327368,0.634623,0][0.463385,-0.25198,-1.44448][0.077774,-0.267738,-0.960348][0.393281,0.634619,0][0.715352,-0.209883,-1.41966][0.305715,-0.190442,-0.932883][0.327433,0.662767,0][0.715352,-0.209883,-1.41966][0.305715,-0.190442,-0.932883][0.327433,0.662767,0][0.917963,-0.246137,-1.28676][0.724862,-0.113006,-0.679562][0.263144,0.662771,0][0.713315,-0.297612,-1.40341][0.355272,-0.173886,-0.918447][0.327368,0.634623,0][0.921145,-0.333562,-1.2714][0.779616,-0.0807743,-0.621026][0.263348,0.634635,0][0.713315,-0.297612,-1.40341][0.355272,-0.173886,-0.918447][0.327368,0.634623,0][0.917963,-0.246137,-1.28676][0.724862,-0.113006,-0.679562][0.263144,0.662771,0][0.917963,-0.246137,-1.28676][0.724862,-0.113006,-0.679562][0.263144,0.662771,0][1.02895,-0.320723,-1.02265][0.962252,-0.104101,-0.251465][0.213371,0.634654,0][0.921145,-0.333562,-1.2714][0.779616,-0.0807743,-0.621026][0.263348,0.634635,0][1.02895,-0.320723,-1.02265][0.962252,-0.104101,-0.251465][0.213371,0.634654,0][0.917963,-0.246137,-1.28676][0.724862,-0.113006,-0.679562][0.263144,0.662771,0][1.03164,-0.227365,-1.05844][0.943866,-0.141637,-0.298423][0.212166,0.662778,0][-1.265,0.244922,0.375417][-0.755994,0.651503,0.0633717][0.826912,0.954345,0][-1.08873,0.204109,0.827249][0.0139899,0.996228,0.0856393][0.914968,0.99904,0][-1.1789,0.244922,0.375417][-0.00250797,0.99222,0.12447][0.826384,0.998966,0][-1.16827,0.202463,0.860155][-0.667524,0.629777,0.397232][0.914968,0.954612,0][-1.08873,0.204109,0.827249][0.0139899,0.996228,0.0856393][0.914968,0.99904,0][-1.265,0.244922,0.375417][-0.755994,0.651503,0.0633717][0.826912,0.954345,0][-1.16827,0.202463,0.860155][-0.667524,0.629777,0.397232][0.914968,0.954612,0][-0.835923,0.166824,1.21332][-0.722543,0.0736519,0.687391][0.997126,0.98377,0][-1.08873,0.204109,0.827249][0.0139899,0.996228,0.0856393][0.914968,0.99904,0][-0.00231893,0.539453,-0.778446][0,0.764754,-0.644322][0.49974,0.953708,0][-0.447659,0.503231,-0.600726][-0.106671,0.989978,0.0925457][0.581993,0.998807,0][-0.00231894,0.535151,-0.692457][0,0.998751,0.0499672][0.49974,0.998792,0][-0.480608,0.507211,-0.68017][-0.327575,0.758916,-0.562798][0.581744,0.953763,0][-0.447659,0.503231,-0.600726][-0.106671,0.989978,0.0925457][0.581993,0.998807,0][-0.00231893,0.539453,-0.778446][0,0.764754,-0.644322][0.49974,0.953708,0][-0.480608,0.507211,-0.68017][-0.327575,0.758916,-0.562798][0.581744,0.953763,0][-0.831954,0.412685,-0.366461][-0.127217,0.976941,0.171472][0.662221,0.998845,0][-0.447659,0.503231,-0.600726][-0.106671,0.989978,0.0925457][0.581993,0.998807,0][-0.892834,0.415725,-0.427265][-0.570468,0.720001,-0.395177][0.662171,0.953902,0][-0.831954,0.412685,-0.366461][-0.127217,0.976941,0.171472][0.662221,0.998845,0][-0.480608,0.507211,-0.68017][-0.327575,0.758916,-0.562798][0.581744,0.953763,0][-0.892834,0.415725,-0.427265][-0.570468,0.720001,-0.395177][0.662171,0.953902,0][-1.08873,0.310916,-0.0132849][-0.0601806,0.980949,0.184712][0.740812,0.998903,0][-0.831954,0.412685,-0.366461][-0.127217,0.976941,0.171472][0.662221,0.998845,0][-1.16827,0.312561,-0.0461932][-0.713027,0.678937,-0.175034][0.740664,0.954112,0][-1.08873,0.310916,-0.0132849][-0.0601806,0.980949,0.184712][0.740812,0.998903,0][-0.892834,0.415725,-0.427265][-0.570468,0.720001,-0.395177][0.662171,0.953902,0][-1.16827,0.312561,-0.0461932][-0.713027,0.678937,-0.175034][0.740664,0.954112,0][-1.1789,0.244922,0.375417][-0.00250797,0.99222,0.12447][0.826384,0.998966,0][-1.08873,0.310916,-0.0132849][-0.0601806,0.980949,0.184712][0.740812,0.998903,0][-1.265,0.244922,0.375417][-0.755994,0.651503,0.0633717][0.826912,0.954345,0][-1.1789,0.244922,0.375417][-0.00250797,0.99222,0.12447][0.826384,0.998966,0][-1.16827,0.312561,-0.0461932][-0.713027,0.678937,-0.175034][0.740664,0.954112,0][1.17426,0.244922,0.375417][0.00250792,0.99222,0.12447][0.172935,0.998966,0][1.08409,0.204109,0.827249][-0.0139899,0.996228,0.0856393][0.0837742,0.99904,0][1.26036,0.244922,0.375417][0.755994,0.651503,0.0633718][0.172933,0.954345,0][1.26036,0.244922,0.375417][0.755994,0.651503,0.0633718][0.172933,0.954345,0][1.08409,0.204109,0.827249][-0.0139899,0.996228,0.0856393][0.0837742,0.99904,0][1.16364,0.202463,0.860155][0.667524,0.629777,0.397232][0.0837743,0.954612,0][1.08409,0.204109,0.827249][-0.0139899,0.996228,0.0856393][0.0837742,0.99904,0][0.831285,0.166824,1.21332][0.722543,0.0736518,0.687391][-0.000446641,0.98377,0][1.16364,0.202463,0.860155][0.667524,0.629777,0.397232][0.0837743,0.954612,0][-0.00231894,0.535151,-0.692457][0,0.998751,0.0499672][0.49974,0.998792,0][0.443022,0.503231,-0.600726][0.106671,0.989978,0.0925457][0.416532,0.998807,0][-0.00231893,0.539453,-0.778446][0,0.764754,-0.644322][0.49974,0.953708,0][-0.00231893,0.539453,-0.778446][0,0.764754,-0.644322][0.49974,0.953708,0][0.443022,0.503231,-0.600726][0.106671,0.989978,0.0925457][0.416532,0.998807,0][0.47597,0.507211,-0.68017][0.327575,0.758916,-0.562798][0.417736,0.953763,0][0.443022,0.503231,-0.600726][0.106671,0.989978,0.0925457][0.416532,0.998807,0][0.827316,0.412685,-0.366461][0.127217,0.976941,0.171472][0.337498,0.998845,0][0.47597,0.507211,-0.68017][0.327575,0.758916,-0.562798][0.417736,0.953763,0][0.47597,0.507211,-0.68017][0.327575,0.758916,-0.562798][0.417736,0.953763,0][0.827316,0.412685,-0.366461][0.127217,0.976941,0.171472][0.337498,0.998845,0][0.888196,0.415725,-0.427264][0.570469,0.720001,-0.395177][0.33733,0.953902,0][0.827316,0.412685,-0.366461][0.127217,0.976941,0.171472][0.337498,0.998845,0][1.08409,0.310916,-0.0132846][0.0601806,0.980949,0.184712][0.259003,0.998903,0][0.888196,0.415725,-0.427264][0.570469,0.720001,-0.395177][0.33733,0.953902,0][0.888196,0.415725,-0.427264][0.570469,0.720001,-0.395177][0.33733,0.953902,0][1.08409,0.310916,-0.0132846][0.0601806,0.980949,0.184712][0.259003,0.998903,0][1.16364,0.312561,-0.0461928][0.713027,0.678937,-0.175034][0.258882,0.954112,0][1.08409,0.310916,-0.0132846][0.0601806,0.980949,0.184712][0.259003,0.998903,0][1.17426,0.244922,0.375417][0.00250792,0.99222,0.12447][0.172935,0.998966,0][1.16364,0.312561,-0.0461928][0.713027,0.678937,-0.175034][0.258882,0.954112,0][1.16364,0.312561,-0.0461928][0.713027,0.678937,-0.175034][0.258882,0.954112,0][1.17426,0.244922,0.375417][0.00250792,0.99222,0.12447][0.172935,0.998966,0][1.26036,0.244922,0.375417][0.755994,0.651503,0.0633718][0.172933,0.954345,0][-1.1789,-0.198513,0.353227][0,-0.99875,-0.0499838][0.979184,0.360958,0][-1.08873,-0.221171,0.805966][-3.51524e-005,-0.998751,-0.0499636][0.961426,0.450122,0][-1.265,-0.198513,0.353227][-2.50904e-006,-0.99875,-0.0499828][0.99614,0.360958,0][-1.265,-0.198513,0.353227][-2.50904e-006,-0.99875,-0.0499828][0.99614,0.360958,0][-1.08873,-0.221171,0.805966][-3.51524e-005,-0.998751,-0.0499636][0.961426,0.450122,0][-1.16827,-0.222815,0.838872][-3.72844e-005,-0.998751,-0.0499632][0.977091,0.456603,0][-1.08873,-0.221171,0.805966][-3.51524e-005,-0.998751,-0.0499636][0.961426,0.450122,0][-0.835923,-0.240536,1.19293][-3.44508e-005,-0.998751,-0.0499564][0.911637,0.526333,0][-1.16827,-0.222815,0.838872][-3.72844e-005,-0.998751,-0.0499632][0.977091,0.456603,0][-0.00231892,-0.139316,-0.829837][0,-0.998748,-0.0500327][0.747464,0.127961,0][-0.447659,-0.143819,-0.739783][-1.47793e-006,-0.99875,-0.0499749][0.835171,0.145697,0][-0.00231891,-0.135008,-0.915828][0,-0.997012,0.0772524][0.747464,0.111026,0][-0.00231891,-0.135008,-0.915828][0,-0.997012,0.0772524][0.747464,0.111026,0][-0.447659,-0.143819,-0.739783][-1.47793e-006,-0.99875,-0.0499749][0.835171,0.145697,0][-0.480607,-0.139844,-0.819226][0.080415,-0.992846,0.0882623][0.84166,0.130051,0][-0.447659,-0.143819,-0.739783][-1.47793e-006,-0.99875,-0.0499749][0.835171,0.145697,0][-0.831954,-0.156648,-0.483327][9.27321e-006,-0.998751,-0.0499663][0.910855,0.196204,0][-0.480607,-0.139844,-0.819226][0.080415,-0.992846,0.0882623][0.84166,0.130051,0][-0.480607,-0.139844,-0.819226][0.080415,-0.992846,0.0882623][0.84166,0.130051,0][-0.831954,-0.156648,-0.483327][9.27321e-006,-0.998751,-0.0499663][0.910855,0.196204,0][-0.892834,-0.153606,-0.54413][0.182182,-0.978217,0.0995002][0.922845,0.18423,0][-0.831954,-0.156648,-0.483327][9.27321e-006,-0.998751,-0.0499663][0.910855,0.196204,0][-1.08873,-0.175856,-0.0995118][-9.74166e-007,-0.99875,-0.049981][0.961426,0.271794,0][-0.892834,-0.153606,-0.54413][0.182182,-0.978217,0.0995002][0.922845,0.18423,0][-0.892834,-0.153606,-0.54413][0.182182,-0.978217,0.0995002][0.922845,0.18423,0][-1.08873,-0.175856,-0.0995118][-9.74166e-007,-0.99875,-0.049981][0.961426,0.271794,0][-1.16827,-0.174209,-0.13242][0.0567499,-0.998316,-0.0119917][0.977091,0.265313,0][-1.08873,-0.175856,-0.0995118][-9.74166e-007,-0.99875,-0.049981][0.961426,0.271794,0][-1.1789,-0.198513,0.353227][0,-0.99875,-0.0499838][0.979184,0.360958,0][-1.16827,-0.174209,-0.13242][0.0567499,-0.998316,-0.0119917][0.977091,0.265313,0][-1.16827,-0.174209,-0.13242][0.0567499,-0.998316,-0.0119917][0.977091,0.265313,0][-1.1789,-0.198513,0.353227][0,-0.99875,-0.0499838][0.979184,0.360958,0][-1.265,-0.198513,0.353227][-2.50904e-006,-0.99875,-0.0499828][0.99614,0.360958,0][-0.00231891,-0.135008,-0.915828][0,-0.997012,0.0772524][0.747464,0.111026,0][-0.468023,-0.25198,-1.44448][0.122772,-0.976688,0.176087][0.839181,0.00691217,0][-0.00231883,-0.229035,-1.4533][0,-0.98504,0.172326][0.747464,0.00517374,0][-0.468023,-0.25198,-1.44448][0.122772,-0.976688,0.176087][0.839181,0.00691217,0][-0.00231891,-0.135008,-0.915828][0,-0.997012,0.0772524][0.747464,0.111026,0][-0.480607,-0.139844,-0.819226][0.080415,-0.992846,0.0882623][0.84166,0.130051,0][-0.892834,-0.153606,-0.54413][0.182182,-0.978217,0.0995002][0.922845,0.18423,0][-1.16827,-0.174209,-0.13242][0.0567499,-0.998316,-0.0119917][0.977091,0.265313,0][-1.03359,-0.320723,-1.02265][0.371099,-0.905231,0.206984][0.950565,0.0899884,0][-1.03359,-0.320723,-1.02265][0.371099,-0.905231,0.206984][0.950565,0.0899884,0][-0.925783,-0.333562,-1.2714][0.261474,-0.94746,0.184257][0.929334,0.0409992,0][-0.892834,-0.153606,-0.54413][0.182182,-0.978217,0.0995002][0.922845,0.18423,0][-0.892834,-0.153606,-0.54413][0.182182,-0.978217,0.0995002][0.922845,0.18423,0][-0.925783,-0.333562,-1.2714][0.261474,-0.94746,0.184257][0.929334,0.0409992,0][-0.480607,-0.139844,-0.819226][0.080415,-0.992846,0.0882623][0.84166,0.130051,0][-0.717953,-0.297612,-1.40341][0.23429,-0.9583,0.163616][0.888403,0.0149998,0][-0.480607,-0.139844,-0.819226][0.080415,-0.992846,0.0882623][0.84166,0.130051,0][-0.925783,-0.333562,-1.2714][0.261474,-0.94746,0.184257][0.929334,0.0409992,0][-0.717953,-0.297612,-1.40341][0.23429,-0.9583,0.163616][0.888403,0.0149998,0][-0.468023,-0.25198,-1.44448][0.122772,-0.976688,0.176087][0.839181,0.00691217,0][-0.480607,-0.139844,-0.819226][0.080415,-0.992846,0.0882623][0.84166,0.130051,0][1.26036,-0.198513,0.353227][2.52752e-006,-0.99875,-0.0499828][0.498788,0.360958,0][1.08409,-0.221171,0.805967][3.51854e-005,-0.998751,-0.0499636][0.533502,0.450122,0][1.17426,-0.198513,0.353227][0,-0.99875,-0.0499838][0.515744,0.360958,0][1.16364,-0.222815,0.838873][3.73184e-005,-0.998751,-0.0499632][0.517836,0.456603,0][1.08409,-0.221171,0.805967][3.51854e-005,-0.998751,-0.0499636][0.533502,0.450122,0][1.26036,-0.198513,0.353227][2.52752e-006,-0.99875,-0.0499828][0.498788,0.360958,0][1.16364,-0.222815,0.838873][3.73184e-005,-0.998751,-0.0499632][0.517836,0.456603,0][0.831285,-0.240536,1.19293][3.44828e-005,-0.998751,-0.0499563][0.583291,0.526333,0][1.08409,-0.221171,0.805967][3.51854e-005,-0.998751,-0.0499636][0.533502,0.450122,0][-0.00231891,-0.135008,-0.915828][0,-0.997012,0.0772524][0.747464,0.111026,0][0.443022,-0.143819,-0.739783][1.48984e-006,-0.99875,-0.0499749][0.659757,0.145697,0][-0.00231892,-0.139316,-0.829837][0,-0.998748,-0.0500327][0.747464,0.127961,0][0.47597,-0.139844,-0.819226][-0.080415,-0.992846,0.0882622][0.653268,0.130051,0][0.443022,-0.143819,-0.739783][1.48984e-006,-0.99875,-0.0499749][0.659757,0.145697,0][-0.00231891,-0.135008,-0.915828][0,-0.997012,0.0772524][0.747464,0.111026,0][0.47597,-0.139844,-0.819226][-0.080415,-0.992846,0.0882622][0.653268,0.130051,0][0.827316,-0.156648,-0.483326][-9.26523e-006,-0.998751,-0.0499663][0.584072,0.196204,0][0.443022,-0.143819,-0.739783][1.48984e-006,-0.99875,-0.0499749][0.659757,0.145697,0][0.888196,-0.153606,-0.54413][-0.182182,-0.978217,0.0995001][0.572083,0.18423,0][0.827316,-0.156648,-0.483326][-9.26523e-006,-0.998751,-0.0499663][0.584072,0.196204,0][0.47597,-0.139844,-0.819226][-0.080415,-0.992846,0.0882622][0.653268,0.130051,0][0.888196,-0.153606,-0.54413][-0.182182,-0.978217,0.0995001][0.572083,0.18423,0][1.08409,-0.175856,-0.0995115][9.92512e-007,-0.99875,-0.049981][0.533502,0.271794,0][0.827316,-0.156648,-0.483326][-9.26523e-006,-0.998751,-0.0499663][0.584072,0.196204,0][1.16364,-0.174209,-0.132419][-0.0567498,-0.998316,-0.0119917][0.517836,0.265313,0][1.08409,-0.175856,-0.0995115][9.92512e-007,-0.99875,-0.049981][0.533502,0.271794,0][0.888196,-0.153606,-0.54413][-0.182182,-0.978217,0.0995001][0.572083,0.18423,0][1.16364,-0.174209,-0.132419][-0.0567498,-0.998316,-0.0119917][0.517836,0.265313,0][1.17426,-0.198513,0.353227][0,-0.99875,-0.0499838][0.515744,0.360958,0][1.08409,-0.175856,-0.0995115][9.92512e-007,-0.99875,-0.049981][0.533502,0.271794,0][1.26036,-0.198513,0.353227][2.52752e-006,-0.99875,-0.0499828][0.498788,0.360958,0][1.17426,-0.198513,0.353227][0,-0.99875,-0.0499838][0.515744,0.360958,0][1.16364,-0.174209,-0.132419][-0.0567498,-0.998316,-0.0119917][0.517836,0.265313,0][-0.00231883,-0.229035,-1.4533][0,-0.98504,0.172326][0.747464,0.00517374,0][0.463385,-0.25198,-1.44448][-0.122772,-0.976688,0.176087][0.655746,0.00691217,0][-0.00231891,-0.135008,-0.915828][0,-0.997012,0.0772524][0.747464,0.111026,0][0.47597,-0.139844,-0.819226][-0.080415,-0.992846,0.0882622][0.653268,0.130051,0][-0.00231891,-0.135008,-0.915828][0,-0.997012,0.0772524][0.747464,0.111026,0][0.463385,-0.25198,-1.44448][-0.122772,-0.976688,0.176087][0.655746,0.00691217,0][1.02895,-0.320723,-1.02265][-0.371099,-0.905231,0.206984][0.544362,0.0899884,0][1.16364,-0.174209,-0.132419][-0.0567498,-0.998316,-0.0119917][0.517836,0.265313,0][0.888196,-0.153606,-0.54413][-0.182182,-0.978217,0.0995001][0.572083,0.18423,0][0.888196,-0.153606,-0.54413][-0.182182,-0.978217,0.0995001][0.572083,0.18423,0][0.921145,-0.333562,-1.2714][-0.261474,-0.94746,0.184257][0.565593,0.0409992,0][1.02895,-0.320723,-1.02265][-0.371099,-0.905231,0.206984][0.544362,0.0899884,0][0.47597,-0.139844,-0.819226][-0.080415,-0.992846,0.0882622][0.653268,0.130051,0][0.921145,-0.333562,-1.2714][-0.261474,-0.94746,0.184257][0.565593,0.0409992,0][0.888196,-0.153606,-0.54413][-0.182182,-0.978217,0.0995001][0.572083,0.18423,0][0.921145,-0.333562,-1.2714][-0.261474,-0.94746,0.184257][0.565593,0.0409992,0][0.47597,-0.139844,-0.819226][-0.080415,-0.992846,0.0882622][0.653268,0.130051,0][0.713315,-0.297612,-1.40341][-0.23429,-0.9583,0.163615][0.606524,0.0149998,0][0.47597,-0.139844,-0.819226][-0.080415,-0.992846,0.0882622][0.653268,0.130051,0][0.463385,-0.25198,-1.44448][-0.122772,-0.976688,0.176087][0.655746,0.00691217,0][0.713315,-0.297612,-1.40341][-0.23429,-0.9583,0.163615][0.606524,0.0149998,0] \ No newline at end of file diff --git a/shareddata/charcustom/hats/headphones.png b/shareddata/charcustom/hats/headphones.png deleted file mode 100644 index 64ab7aa..0000000 Binary files a/shareddata/charcustom/hats/headphones.png and /dev/null differ diff --git a/shareddata/charcustom/hats/headphones.rbxm b/shareddata/charcustom/hats/headphones.rbxm deleted file mode 100644 index 8320b89..0000000 --- a/shareddata/charcustom/hats/headphones.rbxm +++ /dev/null @@ -1,118 +0,0 @@ - - null - nil - - - - 0 - 0.300000012 - 0 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - Headphones - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - 22.8933411 - 1.19915128 - 0.0744339004 - 0.00410806853 - 0.000436081347 - -0.999991357 - -0.0018205964 - 0.999998271 - 0.000428605301 - 0.999989808 - 0.00181882014 - 0.00410885504 - - true - true - 0 - true - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 1 - 1.60000002 - 1 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/headphones.mesh - 5 - Mesh - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/headphones.png - - 1 - 1 - 1 - - true - - - - - \ No newline at end of file diff --git a/shareddata/charcustom/hats/shades.png b/shareddata/charcustom/hats/shades.png deleted file mode 100644 index 285867c..0000000 Binary files a/shareddata/charcustom/hats/shades.png and /dev/null differ diff --git a/shareddata/charcustom/hats/shades.rbxm b/shareddata/charcustom/hats/shades.rbxm deleted file mode 100644 index 945a848..0000000 --- a/shareddata/charcustom/hats/shades.rbxm +++ /dev/null @@ -1,116 +0,0 @@ - - null - nil - - - - 0 - 0.25999999 - 0.150000006 - 1 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 1 - - 2 - ClockworksShades - true - - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - 21.5 - 22.7000008 - 18.5 - -1 - 0 - -0 - -0 - 1 - -0 - -0 - 0 - -1 - - true - 0 - true - false - 0.5 - 2 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - true - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 1 - 1.60000002 - 1 - - - - - rbxasset://../../../shareddata/charcustom/hats/fonts/shades.mesh - 5 - Mesh - - 1 - 1.29999995 - 1 - - rbxasset://../../../shareddata/charcustom/hats/textures/shades.png - - 1 - 1 - 1 - - true - - - - - diff --git a/shareddata/charcustom/hats/sounds/Activation.wav b/shareddata/charcustom/hats/sounds/Activation.wav deleted file mode 100644 index bbe89e8..0000000 Binary files a/shareddata/charcustom/hats/sounds/Activation.wav and /dev/null differ diff --git a/shareddata/charcustom/hats/sounds/Katon.mp3 b/shareddata/charcustom/hats/sounds/Katon.mp3 deleted file mode 100644 index de121ef..0000000 Binary files a/shareddata/charcustom/hats/sounds/Katon.mp3 and /dev/null differ diff --git a/shareddata/charcustom/hats/sounds/gravityhammerswing.mp3 b/shareddata/charcustom/hats/sounds/gravityhammerswing.mp3 deleted file mode 100644 index 641af9a..0000000 Binary files a/shareddata/charcustom/hats/sounds/gravityhammerswing.mp3 and /dev/null differ diff --git a/shareddata/charcustom/hats/sounds/hurray.wav b/shareddata/charcustom/hats/sounds/hurray.wav deleted file mode 100644 index 11a7c7f..0000000 Binary files a/shareddata/charcustom/hats/sounds/hurray.wav and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/ArrowHat.png b/shareddata/charcustom/hats/textures/ArrowHat.png deleted file mode 100644 index 6728e1c..0000000 Binary files a/shareddata/charcustom/hats/textures/ArrowHat.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/BaseballCapRed.png b/shareddata/charcustom/hats/textures/BaseballCapRed.png deleted file mode 100644 index ef4b355..0000000 Binary files a/shareddata/charcustom/hats/textures/BaseballCapRed.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/BiggerHead.png b/shareddata/charcustom/hats/textures/BiggerHead.png deleted file mode 100644 index 5673525..0000000 Binary files a/shareddata/charcustom/hats/textures/BiggerHead.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/Bighead.png b/shareddata/charcustom/hats/textures/Bighead.png deleted file mode 100644 index db9eac1..0000000 Binary files a/shareddata/charcustom/hats/textures/Bighead.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/BlackIronHelm.png b/shareddata/charcustom/hats/textures/BlackIronHelm.png deleted file mode 100644 index 54dda6f..0000000 Binary files a/shareddata/charcustom/hats/textures/BlackIronHelm.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/BlockheadBaseballCap.png b/shareddata/charcustom/hats/textures/BlockheadBaseballCap.png deleted file mode 100644 index 4cd0917..0000000 Binary files a/shareddata/charcustom/hats/textures/BlockheadBaseballCap.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/BlueBaseballCap.png b/shareddata/charcustom/hats/textures/BlueBaseballCap.png deleted file mode 100644 index 2a79a4e..0000000 Binary files a/shareddata/charcustom/hats/textures/BlueBaseballCap.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/BlueROBLOXVisor.png b/shareddata/charcustom/hats/textures/BlueROBLOXVisor.png deleted file mode 100644 index 6ff7ae2..0000000 Binary files a/shareddata/charcustom/hats/textures/BlueROBLOXVisor.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/BlueSteelBatHelm.png b/shareddata/charcustom/hats/textures/BlueSteelBatHelm.png deleted file mode 100644 index 83dbec7..0000000 Binary files a/shareddata/charcustom/hats/textures/BlueSteelBatHelm.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/Bolt.png b/shareddata/charcustom/hats/textures/Bolt.png deleted file mode 100644 index 2636207..0000000 Binary files a/shareddata/charcustom/hats/textures/Bolt.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/BusinessFedora.png b/shareddata/charcustom/hats/textures/BusinessFedora.png deleted file mode 100644 index 981852f..0000000 Binary files a/shareddata/charcustom/hats/textures/BusinessFedora.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/ChristmasBaseballCap.png b/shareddata/charcustom/hats/textures/ChristmasBaseballCap.png deleted file mode 100644 index e1db568..0000000 Binary files a/shareddata/charcustom/hats/textures/ChristmasBaseballCap.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/CoifOfGlory.png b/shareddata/charcustom/hats/textures/CoifOfGlory.png deleted file mode 100644 index 8039f85..0000000 Binary files a/shareddata/charcustom/hats/textures/CoifOfGlory.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/CrimsonCatseye.png b/shareddata/charcustom/hats/textures/CrimsonCatseye.png deleted file mode 100644 index 7238d61..0000000 Binary files a/shareddata/charcustom/hats/textures/CrimsonCatseye.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/CrownOfWarlords.png b/shareddata/charcustom/hats/textures/CrownOfWarlords.png deleted file mode 100644 index bd81ad4..0000000 Binary files a/shareddata/charcustom/hats/textures/CrownOfWarlords.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/Darkseed.png b/shareddata/charcustom/hats/textures/Darkseed.png deleted file mode 100644 index 4faaa28..0000000 Binary files a/shareddata/charcustom/hats/textures/Darkseed.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/DominoCrown.png b/shareddata/charcustom/hats/textures/DominoCrown.png deleted file mode 100644 index 5e182e1..0000000 Binary files a/shareddata/charcustom/hats/textures/DominoCrown.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/EmeraldEye.png b/shareddata/charcustom/hats/textures/EmeraldEye.png deleted file mode 100644 index 9abc70a..0000000 Binary files a/shareddata/charcustom/hats/textures/EmeraldEye.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/EvilDuck.png b/shareddata/charcustom/hats/textures/EvilDuck.png deleted file mode 100644 index ae423b8..0000000 Binary files a/shareddata/charcustom/hats/textures/EvilDuck.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/ExtremeSkateHelmet.png b/shareddata/charcustom/hats/textures/ExtremeSkateHelmet.png deleted file mode 100644 index 3f12efb..0000000 Binary files a/shareddata/charcustom/hats/textures/ExtremeSkateHelmet.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/FirefighterHat.png b/shareddata/charcustom/hats/textures/FirefighterHat.png deleted file mode 100644 index 10f2b0d..0000000 Binary files a/shareddata/charcustom/hats/textures/FirefighterHat.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/GoldTeapot.png b/shareddata/charcustom/hats/textures/GoldTeapot.png deleted file mode 100644 index b993ac7..0000000 Binary files a/shareddata/charcustom/hats/textures/GoldTeapot.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/GreenPumpkinHead.png b/shareddata/charcustom/hats/textures/GreenPumpkinHead.png deleted file mode 100644 index 8f68bf3..0000000 Binary files a/shareddata/charcustom/hats/textures/GreenPumpkinHead.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/GreenTopHat.png b/shareddata/charcustom/hats/textures/GreenTopHat.png deleted file mode 100644 index cb173d0..0000000 Binary files a/shareddata/charcustom/hats/textures/GreenTopHat.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/HalloweenBaseballCap.png b/shareddata/charcustom/hats/textures/HalloweenBaseballCap.png deleted file mode 100644 index ffb30ad..0000000 Binary files a/shareddata/charcustom/hats/textures/HalloweenBaseballCap.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/HalloweenSantaHat.png b/shareddata/charcustom/hats/textures/HalloweenSantaHat.png deleted file mode 100644 index fa3974e..0000000 Binary files a/shareddata/charcustom/hats/textures/HalloweenSantaHat.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/HalloweenSombrero.png b/shareddata/charcustom/hats/textures/HalloweenSombrero.png deleted file mode 100644 index 64082dd..0000000 Binary files a/shareddata/charcustom/hats/textures/HalloweenSombrero.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/HelmOfIce.png b/shareddata/charcustom/hats/textures/HelmOfIce.png deleted file mode 100644 index 3fbf90e..0000000 Binary files a/shareddata/charcustom/hats/textures/HelmOfIce.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/KleosAphthiton.png b/shareddata/charcustom/hats/textures/KleosAphthiton.png deleted file mode 100644 index 741c6d1..0000000 Binary files a/shareddata/charcustom/hats/textures/KleosAphthiton.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/LeafHelm.png b/shareddata/charcustom/hats/textures/LeafHelm.png deleted file mode 100644 index e857985..0000000 Binary files a/shareddata/charcustom/hats/textures/LeafHelm.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/Lightbulb.png b/shareddata/charcustom/hats/textures/Lightbulb.png deleted file mode 100644 index 4f27db1..0000000 Binary files a/shareddata/charcustom/hats/textures/Lightbulb.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/NinjaMaskOfAwesomeness.png b/shareddata/charcustom/hats/textures/NinjaMaskOfAwesomeness.png deleted file mode 100644 index 8f25889..0000000 Binary files a/shareddata/charcustom/hats/textures/NinjaMaskOfAwesomeness.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/NinjaMaskOfLight.png b/shareddata/charcustom/hats/textures/NinjaMaskOfLight.png deleted file mode 100644 index 28671fe..0000000 Binary files a/shareddata/charcustom/hats/textures/NinjaMaskOfLight.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/PaperBag.png b/shareddata/charcustom/hats/textures/PaperBag.png deleted file mode 100644 index fe62059..0000000 Binary files a/shareddata/charcustom/hats/textures/PaperBag.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/PoliceCap.png b/shareddata/charcustom/hats/textures/PoliceCap.png deleted file mode 100644 index 75e20d8..0000000 Binary files a/shareddata/charcustom/hats/textures/PoliceCap.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/PumpkinHead.png b/shareddata/charcustom/hats/textures/PumpkinHead.png deleted file mode 100644 index 9c0fcd7..0000000 Binary files a/shareddata/charcustom/hats/textures/PumpkinHead.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/PurpleBaseballCap.png b/shareddata/charcustom/hats/textures/PurpleBaseballCap.png deleted file mode 100644 index 69fc140..0000000 Binary files a/shareddata/charcustom/hats/textures/PurpleBaseballCap.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/ROBLOXVisor.png b/shareddata/charcustom/hats/textures/ROBLOXVisor.png deleted file mode 100644 index 4a785b9..0000000 Binary files a/shareddata/charcustom/hats/textures/ROBLOXVisor.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/RedTopHat.png b/shareddata/charcustom/hats/textures/RedTopHat.png deleted file mode 100644 index ae28ae7..0000000 Binary files a/shareddata/charcustom/hats/textures/RedTopHat.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/RiddlingSkull.png b/shareddata/charcustom/hats/textures/RiddlingSkull.png deleted file mode 100644 index 4efa075..0000000 Binary files a/shareddata/charcustom/hats/textures/RiddlingSkull.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/RubberDuckie.png b/shareddata/charcustom/hats/textures/RubberDuckie.png deleted file mode 100644 index a623b4f..0000000 Binary files a/shareddata/charcustom/hats/textures/RubberDuckie.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/SantaHat.png b/shareddata/charcustom/hats/textures/SantaHat.png deleted file mode 100644 index df6ef9d..0000000 Binary files a/shareddata/charcustom/hats/textures/SantaHat.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/SapphireEye.png b/shareddata/charcustom/hats/textures/SapphireEye.png deleted file mode 100644 index 4b87536..0000000 Binary files a/shareddata/charcustom/hats/textures/SapphireEye.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/Satellite.png b/shareddata/charcustom/hats/textures/Satellite.png deleted file mode 100644 index a826752..0000000 Binary files a/shareddata/charcustom/hats/textures/Satellite.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/ShadowNinjaMask.png b/shareddata/charcustom/hats/textures/ShadowNinjaMask.png deleted file mode 100644 index efbd6fa..0000000 Binary files a/shareddata/charcustom/hats/textures/ShadowNinjaMask.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/Shaggy.png b/shareddata/charcustom/hats/textures/Shaggy.png deleted file mode 100644 index 559e69e..0000000 Binary files a/shareddata/charcustom/hats/textures/Shaggy.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/Sombrero.png b/shareddata/charcustom/hats/textures/Sombrero.png deleted file mode 100644 index 52727f0..0000000 Binary files a/shareddata/charcustom/hats/textures/Sombrero.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/SpaceHat.png b/shareddata/charcustom/hats/textures/SpaceHat.png deleted file mode 100644 index e878fac..0000000 Binary files a/shareddata/charcustom/hats/textures/SpaceHat.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/SparkleTimeFedora.png b/shareddata/charcustom/hats/textures/SparkleTimeFedora.png deleted file mode 100644 index 9f1c588..0000000 Binary files a/shareddata/charcustom/hats/textures/SparkleTimeFedora.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/StageProp.png b/shareddata/charcustom/hats/textures/StageProp.png deleted file mode 100644 index 1f3b1fc..0000000 Binary files a/shareddata/charcustom/hats/textures/StageProp.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/StrawHat.png b/shareddata/charcustom/hats/textures/StrawHat.png deleted file mode 100644 index 2df5798..0000000 Binary files a/shareddata/charcustom/hats/textures/StrawHat.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/Swordpack.png b/shareddata/charcustom/hats/textures/Swordpack.png deleted file mode 100644 index e889a90..0000000 Binary files a/shareddata/charcustom/hats/textures/Swordpack.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/TeapotTurret.png b/shareddata/charcustom/hats/textures/TeapotTurret.png deleted file mode 100644 index df6dcbe..0000000 Binary files a/shareddata/charcustom/hats/textures/TeapotTurret.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/TheDusekkar.png b/shareddata/charcustom/hats/textures/TheDusekkar.png deleted file mode 100644 index f9cccc2..0000000 Binary files a/shareddata/charcustom/hats/textures/TheDusekkar.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/TopHatPurple.png b/shareddata/charcustom/hats/textures/TopHatPurple.png deleted file mode 100644 index 1387bd6..0000000 Binary files a/shareddata/charcustom/hats/textures/TopHatPurple.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/VoidStar.png b/shareddata/charcustom/hats/textures/VoidStar.png deleted file mode 100644 index 962cc0e..0000000 Binary files a/shareddata/charcustom/hats/textures/VoidStar.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/WhiteTopHat.png b/shareddata/charcustom/hats/textures/WhiteTopHat.png deleted file mode 100644 index 5464c06..0000000 Binary files a/shareddata/charcustom/hats/textures/WhiteTopHat.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/YellowBaseballCap.png b/shareddata/charcustom/hats/textures/YellowBaseballCap.png deleted file mode 100644 index f3bbd78..0000000 Binary files a/shareddata/charcustom/hats/textures/YellowBaseballCap.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/YellowROBLOXVisor.png b/shareddata/charcustom/hats/textures/YellowROBLOXVisor.png deleted file mode 100644 index 31bd0d7..0000000 Binary files a/shareddata/charcustom/hats/textures/YellowROBLOXVisor.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/bag.png b/shareddata/charcustom/hats/textures/bag.png deleted file mode 100644 index d95280e..0000000 Binary files a/shareddata/charcustom/hats/textures/bag.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/fedora.png b/shareddata/charcustom/hats/textures/fedora.png deleted file mode 100644 index 86ce089..0000000 Binary files a/shareddata/charcustom/hats/textures/fedora.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/gravityhammer.png b/shareddata/charcustom/hats/textures/gravityhammer.png deleted file mode 100644 index 7acc0df..0000000 Binary files a/shareddata/charcustom/hats/textures/gravityhammer.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/gravityhammericon.png b/shareddata/charcustom/hats/textures/gravityhammericon.png deleted file mode 100644 index 268f3b8..0000000 Binary files a/shareddata/charcustom/hats/textures/gravityhammericon.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/hardhat_bc.png b/shareddata/charcustom/hats/textures/hardhat_bc.png deleted file mode 100644 index 08d6d7c..0000000 Binary files a/shareddata/charcustom/hats/textures/hardhat_bc.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/hardhat_obc.png b/shareddata/charcustom/hats/textures/hardhat_obc.png deleted file mode 100644 index 26d57ed..0000000 Binary files a/shareddata/charcustom/hats/textures/hardhat_obc.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/hardhat_tbc.png b/shareddata/charcustom/hats/textures/hardhat_tbc.png deleted file mode 100644 index 16b8532..0000000 Binary files a/shareddata/charcustom/hats/textures/hardhat_tbc.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/headphones.png b/shareddata/charcustom/hats/textures/headphones.png deleted file mode 100644 index a1f1903..0000000 Binary files a/shareddata/charcustom/hats/textures/headphones.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/ono.png b/shareddata/charcustom/hats/textures/ono.png deleted file mode 100644 index c7b7b61..0000000 Binary files a/shareddata/charcustom/hats/textures/ono.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/pirate.png b/shareddata/charcustom/hats/textures/pirate.png deleted file mode 100644 index 789bc0b..0000000 Binary files a/shareddata/charcustom/hats/textures/pirate.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/shades.png b/shareddata/charcustom/hats/textures/shades.png deleted file mode 100644 index b8f4aca..0000000 Binary files a/shareddata/charcustom/hats/textures/shades.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/teapot.png b/shareddata/charcustom/hats/textures/teapot.png deleted file mode 100644 index 55efe85..0000000 Binary files a/shareddata/charcustom/hats/textures/teapot.png and /dev/null differ diff --git a/shareddata/charcustom/hats/textures/viking.png b/shareddata/charcustom/hats/textures/viking.png deleted file mode 100644 index 2c7e374..0000000 Binary files a/shareddata/charcustom/hats/textures/viking.png and /dev/null differ diff --git a/shareddata/charcustom/heads/Barrel.png b/shareddata/charcustom/heads/Barrel.png deleted file mode 100644 index 915f185..0000000 Binary files a/shareddata/charcustom/heads/Barrel.png and /dev/null differ diff --git a/shareddata/charcustom/heads/Barrel.rbxm b/shareddata/charcustom/heads/Barrel.rbxm deleted file mode 100644 index fe7f763..0000000 --- a/shareddata/charcustom/heads/Barrel.rbxm +++ /dev/null @@ -1,29 +0,0 @@ - - null - nil - - - 0 - 0 - 0.5 - 1 - 2 - Mesh - - 0 - 0 - 0 - - - 1.25 - 1.25 - 1.25 - - - 1 - 1 - 1 - - - - \ No newline at end of file diff --git a/shareddata/charcustom/heads/Blockhead.png b/shareddata/charcustom/heads/Blockhead.png deleted file mode 100644 index 0257e23..0000000 Binary files a/shareddata/charcustom/heads/Blockhead.png and /dev/null differ diff --git a/shareddata/charcustom/heads/Blockhead.rbxm b/shareddata/charcustom/heads/Blockhead.rbxm deleted file mode 100644 index 64be692..0000000 --- a/shareddata/charcustom/heads/Blockhead.rbxm +++ /dev/null @@ -1,29 +0,0 @@ - - null - nil - - - 0 - 0 - 0 - 2 - 2 - Mesh - - 0 - 0 - 0 - - - 0.560000002 - 1.10000002 - 1.10000002 - - - 1 - 1 - 1 - - - - \ No newline at end of file diff --git a/shareddata/charcustom/heads/CoolThing.png b/shareddata/charcustom/heads/CoolThing.png deleted file mode 100644 index 4c02380..0000000 Binary files a/shareddata/charcustom/heads/CoolThing.png and /dev/null differ diff --git a/shareddata/charcustom/heads/CoolThing.rbxm b/shareddata/charcustom/heads/CoolThing.rbxm deleted file mode 100644 index be854b1..0000000 --- a/shareddata/charcustom/heads/CoolThing.rbxm +++ /dev/null @@ -1,29 +0,0 @@ - - null - nil - - - 0.100000001 - 0 - 0.5 - 1 - 2 - Mesh - - 0 - 0 - 0 - - - 1.25 - 1.25 - 1.25 - - - 1 - 1 - 1 - - - - \ No newline at end of file diff --git a/shareddata/charcustom/heads/CylinderMadness.png b/shareddata/charcustom/heads/CylinderMadness.png deleted file mode 100644 index 1c304ee..0000000 Binary files a/shareddata/charcustom/heads/CylinderMadness.png and /dev/null differ diff --git a/shareddata/charcustom/heads/CylinderMadness.rbxm b/shareddata/charcustom/heads/CylinderMadness.rbxm deleted file mode 100644 index 18b169d..0000000 --- a/shareddata/charcustom/heads/CylinderMadness.rbxm +++ /dev/null @@ -1,29 +0,0 @@ - - null - nil - - - 0.400000006 - 0 - 0 - 2 - 2 - Mesh - - 0 - 0 - 0 - - - 1.39999998 - 1.39999998 - 1.35000002 - - - 1 - 1 - 1 - - - - \ No newline at end of file diff --git a/shareddata/charcustom/heads/DefaultHead.png b/shareddata/charcustom/heads/DefaultHead.png deleted file mode 100644 index 673fad2..0000000 Binary files a/shareddata/charcustom/heads/DefaultHead.png and /dev/null differ diff --git a/shareddata/charcustom/heads/DefaultHead.rbxm b/shareddata/charcustom/heads/DefaultHead.rbxm deleted file mode 100644 index 7396c8f..0000000 --- a/shareddata/charcustom/heads/DefaultHead.rbxm +++ /dev/null @@ -1,23 +0,0 @@ - - null - nil - - - - 0 - Mesh - - 1.25 - 1.25 - 1.25 - - - - 1 - 1 - 1 - - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/heads/Diamond.png b/shareddata/charcustom/heads/Diamond.png deleted file mode 100644 index 5d8f700..0000000 Binary files a/shareddata/charcustom/heads/Diamond.png and /dev/null differ diff --git a/shareddata/charcustom/heads/Diamond.rbxm b/shareddata/charcustom/heads/Diamond.rbxm deleted file mode 100644 index 643022e..0000000 --- a/shareddata/charcustom/heads/Diamond.rbxm +++ /dev/null @@ -1,29 +0,0 @@ - - null - nil - - - 0.660000026 - 0 - 0.5 - 2 - 2 - Mesh - - 0 - 0 - 0 - - - 1.39999998 - 1.60000002 - 1.35000002 - - - 1 - 1 - 1 - - - - \ No newline at end of file diff --git a/shareddata/charcustom/heads/Eraserhead.png b/shareddata/charcustom/heads/Eraserhead.png deleted file mode 100644 index 777860b..0000000 Binary files a/shareddata/charcustom/heads/Eraserhead.png and /dev/null differ diff --git a/shareddata/charcustom/heads/Eraserhead.rbxm b/shareddata/charcustom/heads/Eraserhead.rbxm deleted file mode 100644 index 6994e51..0000000 --- a/shareddata/charcustom/heads/Eraserhead.rbxm +++ /dev/null @@ -1,29 +0,0 @@ - - null - nil - - - 0 - 0 - 0 - 1 - 0 - Mesh - - 0 - 0 - 0 - - - 1.25 - 1.25 - 1.25 - - - 1 - 1 - 1 - - - - \ No newline at end of file diff --git a/shareddata/charcustom/heads/FatHead.png b/shareddata/charcustom/heads/FatHead.png deleted file mode 100644 index 4611ce4..0000000 Binary files a/shareddata/charcustom/heads/FatHead.png and /dev/null differ diff --git a/shareddata/charcustom/heads/FatHead.rbxm b/shareddata/charcustom/heads/FatHead.rbxm deleted file mode 100644 index 03c7622..0000000 --- a/shareddata/charcustom/heads/FatHead.rbxm +++ /dev/null @@ -1,29 +0,0 @@ - - null - nil - - - 0 - 0 - 1 - 2 - 2 - Mesh - - 0 - 0 - 0 - - - 1.25 - 1.25 - 1.25 - - - 1 - 1 - 1 - - - - \ No newline at end of file diff --git a/shareddata/charcustom/heads/FlatTop.png b/shareddata/charcustom/heads/FlatTop.png deleted file mode 100644 index efaed58..0000000 Binary files a/shareddata/charcustom/heads/FlatTop.png and /dev/null differ diff --git a/shareddata/charcustom/heads/FlatTop.rbxm b/shareddata/charcustom/heads/FlatTop.rbxm deleted file mode 100644 index f9f292f..0000000 --- a/shareddata/charcustom/heads/FlatTop.rbxm +++ /dev/null @@ -1,29 +0,0 @@ - - null - nil - - - 0.200000003 - 0 - 1 - 2 - 2 - Mesh - - 0 - 0 - 0 - - - 1.29999995 - 1.29999995 - 1.29999995 - - - 1 - 1 - 1 - - - - \ No newline at end of file diff --git a/shareddata/charcustom/heads/HeadlessHead.png b/shareddata/charcustom/heads/HeadlessHead.png deleted file mode 100644 index d4c1e34..0000000 Binary files a/shareddata/charcustom/heads/HeadlessHead.png and /dev/null differ diff --git a/shareddata/charcustom/heads/HeadlessHead.rbxm b/shareddata/charcustom/heads/HeadlessHead.rbxm deleted file mode 100644 index 1301635..0000000 --- a/shareddata/charcustom/heads/HeadlessHead.rbxm +++ /dev/null @@ -1,29 +0,0 @@ - - null - nil - - - 2 - 2 - rbxasset://../../../shareddata/charcustom/heads/fonts/HeadlessHead.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 1 - 1 - 1 - - rbxasset://../../../shareddata/charcustom/heads/textures/HeadlessHead.png - - 1 - 1 - 1 - - - - \ No newline at end of file diff --git a/shareddata/charcustom/heads/Hex.png b/shareddata/charcustom/heads/Hex.png deleted file mode 100644 index 15f7034..0000000 Binary files a/shareddata/charcustom/heads/Hex.png and /dev/null differ diff --git a/shareddata/charcustom/heads/Hex.rbxm b/shareddata/charcustom/heads/Hex.rbxm deleted file mode 100644 index 9141ac7..0000000 --- a/shareddata/charcustom/heads/Hex.rbxm +++ /dev/null @@ -1,29 +0,0 @@ - - null - nil - - - 0.5 - 0 - 0 - 2 - 2 - Mesh - - 0 - 0 - 0 - - - 0.800000012 - 1.29999995 - 1.20000005 - - - 1 - 1 - 1 - - - - \ No newline at end of file diff --git a/shareddata/charcustom/heads/Octoblox.png b/shareddata/charcustom/heads/Octoblox.png deleted file mode 100644 index 066ab50..0000000 Binary files a/shareddata/charcustom/heads/Octoblox.png and /dev/null differ diff --git a/shareddata/charcustom/heads/Octoblox.rbxm b/shareddata/charcustom/heads/Octoblox.rbxm deleted file mode 100644 index addbe81..0000000 --- a/shareddata/charcustom/heads/Octoblox.rbxm +++ /dev/null @@ -1,29 +0,0 @@ - - null - nil - - - 0.300000012 - 0 - 0 - 2 - 2 - Mesh - - 0 - 0 - 0 - - - 0.629999995 - 1.29999995 - 1.10000002 - - - 1 - 1 - 1 - - - - \ No newline at end of file diff --git a/shareddata/charcustom/heads/Peabrain.png b/shareddata/charcustom/heads/Peabrain.png deleted file mode 100644 index f396bde..0000000 Binary files a/shareddata/charcustom/heads/Peabrain.png and /dev/null differ diff --git a/shareddata/charcustom/heads/Peabrain.rbxm b/shareddata/charcustom/heads/Peabrain.rbxm deleted file mode 100644 index 2e5c719..0000000 --- a/shareddata/charcustom/heads/Peabrain.rbxm +++ /dev/null @@ -1,30 +0,0 @@ - - null - nil - - - 2 - 2 - - 0 - Mesh - - 0 - 0 - 0 - - - 1 - 1 - 1 - - - - 1 - 1 - 1 - - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/heads/Perfection.png b/shareddata/charcustom/heads/Perfection.png deleted file mode 100644 index a821ad3..0000000 Binary files a/shareddata/charcustom/heads/Perfection.png and /dev/null differ diff --git a/shareddata/charcustom/heads/Perfection.rbxm b/shareddata/charcustom/heads/Perfection.rbxm deleted file mode 100644 index 2143d76..0000000 --- a/shareddata/charcustom/heads/Perfection.rbxm +++ /dev/null @@ -1,30 +0,0 @@ - - null - nil - - - 2 - 2 - - 3 - Mesh - - 0 - 0 - 0 - - - 0.75 - 1.45000005 - 1.45000005 - - - - 1 - 1 - 1 - - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/heads/ROXBOX.png b/shareddata/charcustom/heads/ROXBOX.png deleted file mode 100644 index e28b238..0000000 Binary files a/shareddata/charcustom/heads/ROXBOX.png and /dev/null differ diff --git a/shareddata/charcustom/heads/ROXBOX.rbxm b/shareddata/charcustom/heads/ROXBOX.rbxm deleted file mode 100644 index ccf46cf..0000000 --- a/shareddata/charcustom/heads/ROXBOX.rbxm +++ /dev/null @@ -1,29 +0,0 @@ - - null - nil - - - 0.0500000007 - 0 - 0 - 2 - 2 - Mesh - - 0 - 0 - 0 - - - 0.560000002 - 1.10000002 - 1.10000002 - - - 1 - 1 - 1 - - - - \ No newline at end of file diff --git a/shareddata/charcustom/heads/Roll.png b/shareddata/charcustom/heads/Roll.png deleted file mode 100644 index 1f547bc..0000000 Binary files a/shareddata/charcustom/heads/Roll.png and /dev/null differ diff --git a/shareddata/charcustom/heads/Roll.rbxm b/shareddata/charcustom/heads/Roll.rbxm deleted file mode 100644 index e09f550..0000000 --- a/shareddata/charcustom/heads/Roll.rbxm +++ /dev/null @@ -1,29 +0,0 @@ - - null - nil - - - 0.400000006 - 1 - 0 - 2 - 2 - Mesh - - 0 - 0 - 0 - - - 1.39999998 - 1.39999998 - 1.35000002 - - - 1 - 1 - 1 - - - - \ No newline at end of file diff --git a/shareddata/charcustom/heads/Roundy.png b/shareddata/charcustom/heads/Roundy.png deleted file mode 100644 index 0142f17..0000000 Binary files a/shareddata/charcustom/heads/Roundy.png and /dev/null differ diff --git a/shareddata/charcustom/heads/Roundy.rbxm b/shareddata/charcustom/heads/Roundy.rbxm deleted file mode 100644 index 4906543..0000000 --- a/shareddata/charcustom/heads/Roundy.rbxm +++ /dev/null @@ -1,29 +0,0 @@ - - null - nil - - - 0.200000003 - 0 - 0.5 - 1 - 2 - Mesh - - 0 - 0 - 0 - - - 1.29999995 - 1.29999995 - 1.29999995 - - - 1 - 1 - 1 - - - - \ No newline at end of file diff --git a/shareddata/charcustom/heads/Trim.png b/shareddata/charcustom/heads/Trim.png deleted file mode 100644 index a686b10..0000000 Binary files a/shareddata/charcustom/heads/Trim.png and /dev/null differ diff --git a/shareddata/charcustom/heads/Trim.rbxm b/shareddata/charcustom/heads/Trim.rbxm deleted file mode 100644 index 9d42d9d..0000000 --- a/shareddata/charcustom/heads/Trim.rbxm +++ /dev/null @@ -1,29 +0,0 @@ - - null - nil - - - 0.100000001 - 0 - 0 - 2 - 2 - Mesh - - 0 - 0 - 0 - - - 1.25 - 1.25 - 1.25 - - - 1 - 1 - 1 - - - - \ No newline at end of file diff --git a/shareddata/charcustom/heads/fonts/HeadlessHead.mesh b/shareddata/charcustom/heads/fonts/HeadlessHead.mesh deleted file mode 100644 index a86a84a..0000000 --- a/shareddata/charcustom/heads/fonts/HeadlessHead.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -48 -[0,-1.15848,0.00687642][0,0,1][0,1,0][0,-1.15361,0.00486237][0,0.748616,0.663004][0,0.75,0][-0.00343821,-1.15504,0.00486237][-0.529351,0.529351,0.663004][0.125,0.75,0][0,-1.15848,0.00687642][0,0,1][0.125,1,0][-0.00343821,-1.15504,0.00486237][-0.529351,0.529351,0.663004][0.125,0.75,0][-0.00486237,-1.15848,0.00486237][-0.748616,0,0.663004][0.25,0.75,0][0,-1.15848,0.00687642][0,0,1][0.25,1,0][-0.00486237,-1.15848,0.00486237][-0.748616,0,0.663004][0.25,0.75,0][-0.00343821,-1.16191,0.00486237][-0.529351,-0.529351,0.663004][0.375,0.75,0][0,-1.15848,0.00687642][0,0,1][0.375,1,0][-0.00343821,-1.16191,0.00486237][-0.529351,-0.529351,0.663004][0.375,0.75,0][0,-1.16334,0.00486237][0,-0.748616,0.663004][0.5,0.75,0][0,-1.15848,0.00687642][0,0,1][0.5,1,0][0,-1.16334,0.00486237][0,-0.748616,0.663004][0.5,0.75,0][0.00343821,-1.16191,0.00486237][0.529351,-0.529351,0.663004][0.625,0.75,0][0,-1.15848,0.00687642][0,0,1][0.625,1,0][0.00343821,-1.16191,0.00486237][0.529351,-0.529351,0.663004][0.625,0.75,0][0.00486237,-1.15848,0.00486237][0.748616,-2.18582e-007,0.663004][0.75,0.75,0][0,-1.15848,0.00687642][0,0,1][0.75,1,0][0.00486237,-1.15848,0.00486237][0.748616,-2.18582e-007,0.663004][0.75,0.75,0][0.00343821,-1.15504,0.00486237][0.529351,0.529351,0.663004][0.875,0.75,0][0,-1.15848,0.00687642][0,0,1][0.875,1,0][0.00343821,-1.15504,0.00486237][0.529351,0.529351,0.663004][0.875,0.75,0][0,-1.15361,0.00486237][0,0.748616,0.663004][1,0.75,0][0,-1.15361,0.00486237][0,0.748616,0.663004][0,0.75,0][0,-1.1516,0][0,1,0][0,0.5,0][-0.00486237,-1.15361,0][-0.707107,0.707107,0][0.125,0.5,0][0,-1.15361,0.00486237][0,0.748616,0.663004][0,0.75,0][-0.00486237,-1.15361,0][-0.707107,0.707107,0][0.125,0.5,0][-0.00343821,-1.15504,0.00486237][-0.529351,0.529351,0.663004][0.125,0.75,0][-0.00343821,-1.15504,0.00486237][-0.529351,0.529351,0.663004][0.125,0.75,0][-0.00486237,-1.15361,0][-0.707107,0.707107,0][0.125,0.5,0][-0.00687642,-1.15848,0][-1,0,0][0.25,0.5,0][-0.00343821,-1.15504,0.00486237][-0.529351,0.529351,0.663004][0.125,0.75,0][-0.00687642,-1.15848,0][-1,0,0][0.25,0.5,0][-0.00486237,-1.15848,0.00486237][-0.748616,0,0.663004][0.25,0.75,0][-0.00486237,-1.15848,0.00486237][-0.748616,0,0.663004][0.25,0.75,0][-0.00687642,-1.15848,0][-1,0,0][0.25,0.5,0][-0.00486237,-1.16334,0][-0.707107,-0.707107,0][0.375,0.5,0][-0.00486237,-1.15848,0.00486237][-0.748616,0,0.663004][0.25,0.75,0][-0.00486237,-1.16334,0][-0.707107,-0.707107,0][0.375,0.5,0][-0.00343821,-1.16191,0.00486237][-0.529351,-0.529351,0.663004][0.375,0.75,0][-0.00343821,-1.16191,0.00486237][-0.529351,-0.529351,0.663004][0.375,0.75,0][-0.00486237,-1.16334,0][-0.707107,-0.707107,0][0.375,0.5,0][0,-1.16535,0][0,-1,0][0.5,0.5,0][-0.00343821,-1.16191,0.00486237][-0.529351,-0.529351,0.663004][0.375,0.75,0][0,-1.16535,0][0,-1,0][0.5,0.5,0][0,-1.16334,0.00486237][0,-0.748616,0.663004][0.5,0.75,0][0,-1.16334,0.00486237][0,-0.748616,0.663004][0.5,0.75,0][0,-1.16535,0][0,-1,0][0.5,0.5,0][0.00486237,-1.16334,0][0.707107,-0.707107,0][0.625,0.5,0][0,-1.16334,0.00486237][0,-0.748616,0.663004][0.5,0.75,0][0.00486237,-1.16334,0][0.707107,-0.707107,0][0.625,0.5,0][0.00343821,-1.16191,0.00486237][0.529351,-0.529351,0.663004][0.625,0.75,0][0.00343821,-1.16191,0.00486237][0.529351,-0.529351,0.663004][0.625,0.75,0][0.00486237,-1.16334,0][0.707107,-0.707107,0][0.625,0.5,0][0.00687642,-1.15848,0][1,-3.27484e-007,0][0.75,0.5,0][0.00343821,-1.16191,0.00486237][0.529351,-0.529351,0.663004][0.625,0.75,0][0.00687642,-1.15848,0][1,-3.27484e-007,0][0.75,0.5,0][0.00486237,-1.15848,0.00486237][0.748616,-2.18582e-007,0.663004][0.75,0.75,0][0.00486237,-1.15848,0.00486237][0.748616,-2.18582e-007,0.663004][0.75,0.75,0][0.00687642,-1.15848,0][1,-3.27484e-007,0][0.75,0.5,0][0.00486237,-1.15361,0][0.707107,0.707107,0][0.875,0.5,0][0.00486237,-1.15848,0.00486237][0.748616,-2.18582e-007,0.663004][0.75,0.75,0][0.00486237,-1.15361,0][0.707107,0.707107,0][0.875,0.5,0][0.00343821,-1.15504,0.00486237][0.529351,0.529351,0.663004][0.875,0.75,0][0.00343821,-1.15504,0.00486237][0.529351,0.529351,0.663004][0.875,0.75,0][0.00486237,-1.15361,0][0.707107,0.707107,0][0.875,0.5,0][0,-1.1516,0][0,1,0][1,0.5,0][0.00343821,-1.15504,0.00486237][0.529351,0.529351,0.663004][0.875,0.75,0][0,-1.1516,0][0,1,0][1,0.5,0][0,-1.15361,0.00486237][0,0.748616,0.663004][1,0.75,0][0,-1.1516,0][0,1,0][0,0.5,0][0,-1.15361,-0.00486237][0,0.748616,-0.663004][0,0.25,0][-0.00343821,-1.15504,-0.00486237][-0.529351,0.529351,-0.663004][0.125,0.25,0][0,-1.1516,0][0,1,0][0,0.5,0][-0.00343821,-1.15504,-0.00486237][-0.529351,0.529351,-0.663004][0.125,0.25,0][-0.00486237,-1.15361,0][-0.707107,0.707107,0][0.125,0.5,0][-0.00486237,-1.15361,0][-0.707107,0.707107,0][0.125,0.5,0][-0.00343821,-1.15504,-0.00486237][-0.529351,0.529351,-0.663004][0.125,0.25,0][-0.00486237,-1.15848,-0.00486237][-0.748616,0,-0.663004][0.25,0.25,0][-0.00486237,-1.15361,0][-0.707107,0.707107,0][0.125,0.5,0][-0.00486237,-1.15848,-0.00486237][-0.748616,0,-0.663004][0.25,0.25,0][-0.00687642,-1.15848,0][-1,0,0][0.25,0.5,0][-0.00687642,-1.15848,0][-1,0,0][0.25,0.5,0][-0.00486237,-1.15848,-0.00486237][-0.748616,0,-0.663004][0.25,0.25,0][-0.00343821,-1.16191,-0.00486237][-0.529351,-0.529351,-0.663004][0.375,0.25,0][-0.00687642,-1.15848,0][-1,0,0][0.25,0.5,0][-0.00343821,-1.16191,-0.00486237][-0.529351,-0.529351,-0.663004][0.375,0.25,0][-0.00486237,-1.16334,0][-0.707107,-0.707107,0][0.375,0.5,0][-0.00486237,-1.16334,0][-0.707107,-0.707107,0][0.375,0.5,0][-0.00343821,-1.16191,-0.00486237][-0.529351,-0.529351,-0.663004][0.375,0.25,0][0,-1.16334,-0.00486237][0,-0.748616,-0.663004][0.5,0.25,0][-0.00486237,-1.16334,0][-0.707107,-0.707107,0][0.375,0.5,0][0,-1.16334,-0.00486237][0,-0.748616,-0.663004][0.5,0.25,0][0,-1.16535,0][0,-1,0][0.5,0.5,0][0,-1.16535,0][0,-1,0][0.5,0.5,0][0,-1.16334,-0.00486237][0,-0.748616,-0.663004][0.5,0.25,0][0.00343821,-1.16191,-0.00486237][0.529351,-0.529351,-0.663004][0.625,0.25,0][0,-1.16535,0][0,-1,0][0.5,0.5,0][0.00343821,-1.16191,-0.00486237][0.529351,-0.529351,-0.663004][0.625,0.25,0][0.00486237,-1.16334,0][0.707107,-0.707107,0][0.625,0.5,0][0.00486237,-1.16334,0][0.707107,-0.707107,0][0.625,0.5,0][0.00343821,-1.16191,-0.00486237][0.529351,-0.529351,-0.663004][0.625,0.25,0][0.00486237,-1.15848,-0.00486237][0.748616,-2.1283e-007,-0.663004][0.75,0.25,0][0.00486237,-1.16334,0][0.707107,-0.707107,0][0.625,0.5,0][0.00486237,-1.15848,-0.00486237][0.748616,-2.1283e-007,-0.663004][0.75,0.25,0][0.00687642,-1.15848,0][1,-3.27484e-007,0][0.75,0.5,0][0.00687642,-1.15848,0][1,-3.27484e-007,0][0.75,0.5,0][0.00486237,-1.15848,-0.00486237][0.748616,-2.1283e-007,-0.663004][0.75,0.25,0][0.00343821,-1.15504,-0.00486237][0.529351,0.529351,-0.663004][0.875,0.25,0][0.00687642,-1.15848,0][1,-3.27484e-007,0][0.75,0.5,0][0.00343821,-1.15504,-0.00486237][0.529351,0.529351,-0.663004][0.875,0.25,0][0.00486237,-1.15361,0][0.707107,0.707107,0][0.875,0.5,0][0.00486237,-1.15361,0][0.707107,0.707107,0][0.875,0.5,0][0.00343821,-1.15504,-0.00486237][0.529351,0.529351,-0.663004][0.875,0.25,0][0,-1.15361,-0.00486237][0,0.748616,-0.663004][1,0.25,0][0.00486237,-1.15361,0][0.707107,0.707107,0][0.875,0.5,0][0,-1.15361,-0.00486237][0,0.748616,-0.663004][1,0.25,0][0,-1.1516,0][0,1,0][1,0.5,0][0,-1.15848,-0.00687642][0,0,-1][0,0,0][-0.00343821,-1.15504,-0.00486237][-0.529351,0.529351,-0.663004][0.125,0.25,0][0,-1.15361,-0.00486237][0,0.748616,-0.663004][0,0.25,0][0,-1.15848,-0.00687642][0,0,-1][0.125,0,0][-0.00486237,-1.15848,-0.00486237][-0.748616,0,-0.663004][0.25,0.25,0][-0.00343821,-1.15504,-0.00486237][-0.529351,0.529351,-0.663004][0.125,0.25,0][0,-1.15848,-0.00687642][0,0,-1][0.25,0,0][-0.00343821,-1.16191,-0.00486237][-0.529351,-0.529351,-0.663004][0.375,0.25,0][-0.00486237,-1.15848,-0.00486237][-0.748616,0,-0.663004][0.25,0.25,0][0,-1.15848,-0.00687642][0,0,-1][0.375,0,0][0,-1.16334,-0.00486237][0,-0.748616,-0.663004][0.5,0.25,0][-0.00343821,-1.16191,-0.00486237][-0.529351,-0.529351,-0.663004][0.375,0.25,0][0,-1.15848,-0.00687642][0,0,-1][0.5,0,0][0.00343821,-1.16191,-0.00486237][0.529351,-0.529351,-0.663004][0.625,0.25,0][0,-1.16334,-0.00486237][0,-0.748616,-0.663004][0.5,0.25,0][0,-1.15848,-0.00687642][0,0,-1][0.625,0,0][0.00486237,-1.15848,-0.00486237][0.748616,-2.1283e-007,-0.663004][0.75,0.25,0][0.00343821,-1.16191,-0.00486237][0.529351,-0.529351,-0.663004][0.625,0.25,0][0,-1.15848,-0.00687642][0,0,-1][0.75,0,0][0.00343821,-1.15504,-0.00486237][0.529351,0.529351,-0.663004][0.875,0.25,0][0.00486237,-1.15848,-0.00486237][0.748616,-2.1283e-007,-0.663004][0.75,0.25,0][0,-1.15848,-0.00687642][0,0,-1][0.875,0,0][0,-1.15361,-0.00486237][0,0.748616,-0.663004][1,0.25,0][0.00343821,-1.15504,-0.00486237][0.529351,0.529351,-0.663004][0.875,0.25,0] \ No newline at end of file diff --git a/shareddata/charcustom/heads/textures/HeadlessHead.png b/shareddata/charcustom/heads/textures/HeadlessHead.png deleted file mode 100644 index d93d23b..0000000 Binary files a/shareddata/charcustom/heads/textures/HeadlessHead.png and /dev/null differ diff --git a/shareddata/charcustom/pants/NoPants.png b/shareddata/charcustom/pants/NoPants.png deleted file mode 100644 index 081f49a..0000000 Binary files a/shareddata/charcustom/pants/NoPants.png and /dev/null differ diff --git a/shareddata/charcustom/pants/NoPants.rbxm b/shareddata/charcustom/pants/NoPants.rbxm deleted file mode 100644 index ab10a6c..0000000 --- a/shareddata/charcustom/pants/NoPants.rbxm +++ /dev/null @@ -1,4 +0,0 @@ - - null - nil - \ No newline at end of file diff --git a/shareddata/charcustom/shirts/NoShirt.png b/shareddata/charcustom/shirts/NoShirt.png deleted file mode 100644 index 081f49a..0000000 Binary files a/shareddata/charcustom/shirts/NoShirt.png and /dev/null differ diff --git a/shareddata/charcustom/shirts/NoShirt.rbxm b/shareddata/charcustom/shirts/NoShirt.rbxm deleted file mode 100644 index ab10a6c..0000000 --- a/shareddata/charcustom/shirts/NoShirt.rbxm +++ /dev/null @@ -1,4 +0,0 @@ - - null - nil - \ No newline at end of file diff --git a/shareddata/charcustom/tshirts/2006Shirt.png b/shareddata/charcustom/tshirts/2006Shirt.png deleted file mode 100644 index b3a267a..0000000 Binary files a/shareddata/charcustom/tshirts/2006Shirt.png and /dev/null differ diff --git a/shareddata/charcustom/tshirts/2006Shirt.rbxm b/shareddata/charcustom/tshirts/2006Shirt.rbxm deleted file mode 100644 index d76e8e2..0000000 --- a/shareddata/charcustom/tshirts/2006Shirt.rbxm +++ /dev/null @@ -1,11 +0,0 @@ - - null - nil - - - rbxasset://../../../shareddata/charcustom/tshirts/2006Shirt.png - Shirt Graphic - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/tshirts/2007Shirt.png b/shareddata/charcustom/tshirts/2007Shirt.png deleted file mode 100644 index 4c02e4b..0000000 Binary files a/shareddata/charcustom/tshirts/2007Shirt.png and /dev/null differ diff --git a/shareddata/charcustom/tshirts/2007Shirt.rbxm b/shareddata/charcustom/tshirts/2007Shirt.rbxm deleted file mode 100644 index 5b4222f..0000000 --- a/shareddata/charcustom/tshirts/2007Shirt.rbxm +++ /dev/null @@ -1,11 +0,0 @@ - - null - nil - - - rbxasset://../../../shareddata/charcustom/tshirts/2007Shirt.png - Shirt Graphic - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/tshirts/AIM.png b/shareddata/charcustom/tshirts/AIM.png deleted file mode 100644 index f8425bb..0000000 Binary files a/shareddata/charcustom/tshirts/AIM.png and /dev/null differ diff --git a/shareddata/charcustom/tshirts/AIM.rbxm b/shareddata/charcustom/tshirts/AIM.rbxm deleted file mode 100644 index 76780eb..0000000 --- a/shareddata/charcustom/tshirts/AIM.rbxm +++ /dev/null @@ -1,11 +0,0 @@ - - null - nil - - - rbxasset://../../../shareddata/charcustom/tshirts/AIM.png - Shirt Graphic - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/tshirts/BlameBitl.png b/shareddata/charcustom/tshirts/BlameBitl.png deleted file mode 100644 index 05a1e7f..0000000 Binary files a/shareddata/charcustom/tshirts/BlameBitl.png and /dev/null differ diff --git a/shareddata/charcustom/tshirts/BlameBitl.rbxm b/shareddata/charcustom/tshirts/BlameBitl.rbxm deleted file mode 100644 index 17ba2df..0000000 --- a/shareddata/charcustom/tshirts/BlameBitl.rbxm +++ /dev/null @@ -1,11 +0,0 @@ - - null - nil - - - rbxasset://../../../shareddata/charcustom/tshirts/BlameBitl.png - Shirt Graphic - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/tshirts/BlameJohn.png b/shareddata/charcustom/tshirts/BlameJohn.png deleted file mode 100644 index 621b76b..0000000 Binary files a/shareddata/charcustom/tshirts/BlameJohn.png and /dev/null differ diff --git a/shareddata/charcustom/tshirts/BlameJohn.rbxm b/shareddata/charcustom/tshirts/BlameJohn.rbxm deleted file mode 100644 index 8876916..0000000 --- a/shareddata/charcustom/tshirts/BlameJohn.rbxm +++ /dev/null @@ -1,11 +0,0 @@ - - null - nil - - - rbxasset://../../../shareddata/charcustom/tshirts/BlameJohn.png - Shirt Graphic - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/tshirts/Bloxxer.png b/shareddata/charcustom/tshirts/Bloxxer.png deleted file mode 100644 index 9027e93..0000000 Binary files a/shareddata/charcustom/tshirts/Bloxxer.png and /dev/null differ diff --git a/shareddata/charcustom/tshirts/Bloxxer.rbxm b/shareddata/charcustom/tshirts/Bloxxer.rbxm deleted file mode 100644 index 4494c0a..0000000 --- a/shareddata/charcustom/tshirts/Bloxxer.rbxm +++ /dev/null @@ -1,11 +0,0 @@ - - null - nil - - - rbxasset://../../../shareddata/charcustom/tshirts/Bloxxer.png - Shirt Graphic - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/tshirts/BuildermanTShirt.png b/shareddata/charcustom/tshirts/BuildermanTShirt.png deleted file mode 100644 index ad53215..0000000 Binary files a/shareddata/charcustom/tshirts/BuildermanTShirt.png and /dev/null differ diff --git a/shareddata/charcustom/tshirts/BuildermanTShirt.rbxm b/shareddata/charcustom/tshirts/BuildermanTShirt.rbxm deleted file mode 100644 index d0af5ad..0000000 --- a/shareddata/charcustom/tshirts/BuildermanTShirt.rbxm +++ /dev/null @@ -1,11 +0,0 @@ - - null - nil - - - rbxasset://../../../shareddata/charcustom/tshirts/BuildermanTShirt.png - Shirt Graphic - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/tshirts/ErikIsMyHero.png b/shareddata/charcustom/tshirts/ErikIsMyHero.png deleted file mode 100644 index ff96b18..0000000 Binary files a/shareddata/charcustom/tshirts/ErikIsMyHero.png and /dev/null differ diff --git a/shareddata/charcustom/tshirts/ErikIsMyHero.rbxm b/shareddata/charcustom/tshirts/ErikIsMyHero.rbxm deleted file mode 100644 index 5d3185b..0000000 --- a/shareddata/charcustom/tshirts/ErikIsMyHero.rbxm +++ /dev/null @@ -1,11 +0,0 @@ - - null - nil - - - rbxasset://../../../shareddata/charcustom/tshirts/ErikIsMyHero.png - Shirt Graphic - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/tshirts/ExpensiveRedSuit.png b/shareddata/charcustom/tshirts/ExpensiveRedSuit.png deleted file mode 100644 index ef9ceea..0000000 Binary files a/shareddata/charcustom/tshirts/ExpensiveRedSuit.png and /dev/null differ diff --git a/shareddata/charcustom/tshirts/ExpensiveRedSuit.rbxm b/shareddata/charcustom/tshirts/ExpensiveRedSuit.rbxm deleted file mode 100644 index 4f0c9da..0000000 --- a/shareddata/charcustom/tshirts/ExpensiveRedSuit.rbxm +++ /dev/null @@ -1,11 +0,0 @@ - - null - nil - - - rbxasset://../../../shareddata/charcustom/tshirts/ExpensiveRedSuit.png - Shirt Graphic - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/tshirts/FaitLux.png b/shareddata/charcustom/tshirts/FaitLux.png deleted file mode 100644 index 0c92f28..0000000 Binary files a/shareddata/charcustom/tshirts/FaitLux.png and /dev/null differ diff --git a/shareddata/charcustom/tshirts/FaitLux.rbxm b/shareddata/charcustom/tshirts/FaitLux.rbxm deleted file mode 100644 index a8548a6..0000000 --- a/shareddata/charcustom/tshirts/FaitLux.rbxm +++ /dev/null @@ -1,11 +0,0 @@ - - null - nil - - - rbxasset://../../../shareddata/charcustom/tshirts/FaitLux.png - Shirt Graphic - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/tshirts/FleskhjertaChocobo.png b/shareddata/charcustom/tshirts/FleskhjertaChocobo.png deleted file mode 100644 index eff0345..0000000 Binary files a/shareddata/charcustom/tshirts/FleskhjertaChocobo.png and /dev/null differ diff --git a/shareddata/charcustom/tshirts/FleskhjertaChocobo.rbxm b/shareddata/charcustom/tshirts/FleskhjertaChocobo.rbxm deleted file mode 100644 index cd058d4..0000000 --- a/shareddata/charcustom/tshirts/FleskhjertaChocobo.rbxm +++ /dev/null @@ -1,11 +0,0 @@ - - null - nil - - - rbxasset://../../../shareddata/charcustom/tshirts/FleskhjertaChocobo.png - Shirt Graphic - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/tshirts/IHasABucket.png b/shareddata/charcustom/tshirts/IHasABucket.png deleted file mode 100644 index 277ebe2..0000000 Binary files a/shareddata/charcustom/tshirts/IHasABucket.png and /dev/null differ diff --git a/shareddata/charcustom/tshirts/IHasABucket.rbxm b/shareddata/charcustom/tshirts/IHasABucket.rbxm deleted file mode 100644 index 12652c3..0000000 --- a/shareddata/charcustom/tshirts/IHasABucket.rbxm +++ /dev/null @@ -1,11 +0,0 @@ - - null - nil - - - rbxasset://../../../shareddata/charcustom/tshirts/IHasABucket.png - Shirt Graphic - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/tshirts/ISeekBooks.png.png b/shareddata/charcustom/tshirts/ISeekBooks.png.png deleted file mode 100644 index f0c8d6c..0000000 Binary files a/shareddata/charcustom/tshirts/ISeekBooks.png.png and /dev/null differ diff --git a/shareddata/charcustom/tshirts/ISeekBooks.png.rbxm b/shareddata/charcustom/tshirts/ISeekBooks.png.rbxm deleted file mode 100644 index 7d226de..0000000 --- a/shareddata/charcustom/tshirts/ISeekBooks.png.rbxm +++ /dev/null @@ -1,11 +0,0 @@ - - null - nil - - - rbxasset://../../../shareddata/charcustom/tshirts/ISeekBooks.png.png - Shirt Graphic - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/tshirts/MikedShirtM.png b/shareddata/charcustom/tshirts/MikedShirtM.png deleted file mode 100644 index fe45057..0000000 Binary files a/shareddata/charcustom/tshirts/MikedShirtM.png and /dev/null differ diff --git a/shareddata/charcustom/tshirts/MikedShirtM.rbxm b/shareddata/charcustom/tshirts/MikedShirtM.rbxm deleted file mode 100644 index 3e95002..0000000 --- a/shareddata/charcustom/tshirts/MikedShirtM.rbxm +++ /dev/null @@ -1,11 +0,0 @@ - - null - nil - - - rbxasset://../../../shareddata/charcustom/tshirts/MikedShirtM.png - Shirt Graphic - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/tshirts/NoTShirt.png b/shareddata/charcustom/tshirts/NoTShirt.png deleted file mode 100644 index 081f49a..0000000 Binary files a/shareddata/charcustom/tshirts/NoTShirt.png and /dev/null differ diff --git a/shareddata/charcustom/tshirts/NoTShirt.rbxm b/shareddata/charcustom/tshirts/NoTShirt.rbxm deleted file mode 100644 index ab10a6c..0000000 --- a/shareddata/charcustom/tshirts/NoTShirt.rbxm +++ /dev/null @@ -1,4 +0,0 @@ - - null - nil - \ No newline at end of file diff --git a/shareddata/charcustom/tshirts/NovetusShirt.png b/shareddata/charcustom/tshirts/NovetusShirt.png deleted file mode 100644 index c5b8671..0000000 Binary files a/shareddata/charcustom/tshirts/NovetusShirt.png and /dev/null differ diff --git a/shareddata/charcustom/tshirts/NovetusShirt.rbxm b/shareddata/charcustom/tshirts/NovetusShirt.rbxm deleted file mode 100644 index 6cb1e0c..0000000 --- a/shareddata/charcustom/tshirts/NovetusShirt.rbxm +++ /dev/null @@ -1,11 +0,0 @@ - - null - nil - - - rbxasset://../../../shareddata/charcustom/tshirts/NovetusShirt.png - Shirt Graphic - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/tshirts/Pokeball.png b/shareddata/charcustom/tshirts/Pokeball.png deleted file mode 100644 index 68b3201..0000000 Binary files a/shareddata/charcustom/tshirts/Pokeball.png and /dev/null differ diff --git a/shareddata/charcustom/tshirts/Pokeball.rbxm b/shareddata/charcustom/tshirts/Pokeball.rbxm deleted file mode 100644 index 5069765..0000000 --- a/shareddata/charcustom/tshirts/Pokeball.rbxm +++ /dev/null @@ -1,11 +0,0 @@ - - null - nil - - - rbxasset://../../../shareddata/charcustom/tshirts/Pokeball.png - Shirt Graphic - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/tshirts/Silverbolt.png b/shareddata/charcustom/tshirts/Silverbolt.png deleted file mode 100644 index 4bcf8f9..0000000 Binary files a/shareddata/charcustom/tshirts/Silverbolt.png and /dev/null differ diff --git a/shareddata/charcustom/tshirts/Silverbolt.rbxm b/shareddata/charcustom/tshirts/Silverbolt.rbxm deleted file mode 100644 index fe5ea44..0000000 --- a/shareddata/charcustom/tshirts/Silverbolt.rbxm +++ /dev/null @@ -1,11 +0,0 @@ - - null - nil - - - rbxasset://../../../shareddata/charcustom/tshirts/Silverbolt.png - Shirt Graphic - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/tshirts/SilverboltClassic.png b/shareddata/charcustom/tshirts/SilverboltClassic.png deleted file mode 100644 index 86f644a..0000000 Binary files a/shareddata/charcustom/tshirts/SilverboltClassic.png and /dev/null differ diff --git a/shareddata/charcustom/tshirts/SilverboltClassic.rbxm b/shareddata/charcustom/tshirts/SilverboltClassic.rbxm deleted file mode 100644 index 8ca4aa0..0000000 --- a/shareddata/charcustom/tshirts/SilverboltClassic.rbxm +++ /dev/null @@ -1,11 +0,0 @@ - - null - nil - - - rbxasset://../../../shareddata/charcustom/tshirts/SilverboltClassic.png - Shirt Graphic - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/tshirts/SuitWithPurpleTie.png b/shareddata/charcustom/tshirts/SuitWithPurpleTie.png deleted file mode 100644 index 8a0e491..0000000 Binary files a/shareddata/charcustom/tshirts/SuitWithPurpleTie.png and /dev/null differ diff --git a/shareddata/charcustom/tshirts/SuitWithPurpleTie.rbxm b/shareddata/charcustom/tshirts/SuitWithPurpleTie.rbxm deleted file mode 100644 index e1a8ea2..0000000 --- a/shareddata/charcustom/tshirts/SuitWithPurpleTie.rbxm +++ /dev/null @@ -1,11 +0,0 @@ - - null - nil - - - rbxasset://../../../shareddata/charcustom/tshirts/SuitWithPurpleTie.png - Shirt Graphic - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/tshirts/TEAPOT.png b/shareddata/charcustom/tshirts/TEAPOT.png deleted file mode 100644 index 55934b2..0000000 Binary files a/shareddata/charcustom/tshirts/TEAPOT.png and /dev/null differ diff --git a/shareddata/charcustom/tshirts/TEAPOT.rbxm b/shareddata/charcustom/tshirts/TEAPOT.rbxm deleted file mode 100644 index f4dd146..0000000 --- a/shareddata/charcustom/tshirts/TEAPOT.rbxm +++ /dev/null @@ -1,11 +0,0 @@ - - null - nil - - - rbxasset://../../../shareddata/charcustom/tshirts/TEAPOT.png - Shirt Graphic - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/tshirts/TeapotSign.png b/shareddata/charcustom/tshirts/TeapotSign.png deleted file mode 100644 index 67a1985..0000000 Binary files a/shareddata/charcustom/tshirts/TeapotSign.png and /dev/null differ diff --git a/shareddata/charcustom/tshirts/TeapotSign.rbxm b/shareddata/charcustom/tshirts/TeapotSign.rbxm deleted file mode 100644 index fc440e0..0000000 --- a/shareddata/charcustom/tshirts/TeapotSign.rbxm +++ /dev/null @@ -1,11 +0,0 @@ - - null - nil - - - rbxasset://../../../shareddata/charcustom/tshirts/TeapotSign.png - Shirt Graphic - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/tshirts/VikingMario.png b/shareddata/charcustom/tshirts/VikingMario.png deleted file mode 100644 index 059b3e3..0000000 Binary files a/shareddata/charcustom/tshirts/VikingMario.png and /dev/null differ diff --git a/shareddata/charcustom/tshirts/VikingMario.rbxm b/shareddata/charcustom/tshirts/VikingMario.rbxm deleted file mode 100644 index 0140ff4..0000000 --- a/shareddata/charcustom/tshirts/VikingMario.rbxm +++ /dev/null @@ -1,11 +0,0 @@ - - null - nil - - - rbxasset://../../../shareddata/charcustom/tshirts/VikingMario.png - Shirt Graphic - true - - - \ No newline at end of file diff --git a/shareddata/charcustom/tshirts/Windows95.png b/shareddata/charcustom/tshirts/Windows95.png deleted file mode 100644 index 7baf63f..0000000 Binary files a/shareddata/charcustom/tshirts/Windows95.png and /dev/null differ diff --git a/shareddata/charcustom/tshirts/Windows95.rbxm b/shareddata/charcustom/tshirts/Windows95.rbxm deleted file mode 100644 index f250907..0000000 --- a/shareddata/charcustom/tshirts/Windows95.rbxm +++ /dev/null @@ -1,11 +0,0 @@ - - null - nil - - - rbxasset://../../../shareddata/charcustom/tshirts/Windows95.png - Shirt Graphic - true - - - \ No newline at end of file diff --git a/shareddata/fonts/RiddlingSkull.mesh b/shareddata/fonts/RiddlingSkull.mesh deleted file mode 100644 index a4fdfe1..0000000 --- a/shareddata/fonts/RiddlingSkull.mesh +++ /dev/null @@ -1,3 +0,0 @@ -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 deleted file mode 100644 index 8d610d3..0000000 --- a/shareddata/fonts/pumpkin.mesh +++ /dev/null @@ -1,3 +0,0 @@ -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 deleted file mode 100644 index 7db5d0d..0000000 --- a/shareddata/fonts/spike.mesh +++ /dev/null @@ -1,3 +0,0 @@ -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/shareddata/fonts/teapotdodge.mesh b/shareddata/fonts/teapotdodge.mesh deleted file mode 100644 index e5bc122..0000000 --- a/shareddata/fonts/teapotdodge.mesh +++ /dev/null @@ -1,3 +0,0 @@ -version 1.00 -992 -[20.1973,15.4158,10.3298][-0.899594,0.242936,-0.362922][1.75,1.975,0][22.2369,15.4158,3.00157e-006][-0.970156,0.242335,0.0084321][2,1.975,0][22.6093,14.0083,2.72752e-006][-0.964792,-0.255235,-0.0635001][2,2,0][22.6093,14.0083,2.72752e-006][-0.964792,-0.255235,-0.0635001][2,2,0][20.5408,14.0083,10.4759][-0.866654,-0.25597,-0.42824][1.75,2,0][20.1973,15.4158,10.3298][-0.899594,0.242936,-0.362922][1.75,1.975,0][20.5958,15.885,10.4993][-0.171774,0.985002,-0.0162784][1.75,1.95,0][22.6689,15.885,3.09292e-006][-0.164808,0.985052,0.0501133][2,1.95,0][22.2369,15.4158,3.00157e-006][-0.970156,0.242335,0.0084321][2,1.975,0][22.2369,15.4158,3.00157e-006][-0.970156,0.242335,0.0084321][2,1.975,0][20.1973,15.4158,10.3298][-0.899594,0.242936,-0.362922][1.75,1.975,0][20.5958,15.885,10.4993][-0.171774,0.985002,-0.0162784][1.75,1.95,0][21.4064,15.4158,10.8442][0.609666,0.747025,0.265067][1.75,1.925,0][23.5476,15.4158,3.00157e-006][0.665537,0.746272,0.0117618][2,1.925,0][22.6689,15.885,3.09292e-006][-0.164808,0.985052,0.0501133][2,1.95,0][22.6689,15.885,3.09292e-006][-0.164808,0.985052,0.0501133][2,1.95,0][20.5958,15.885,10.4993][-0.171774,0.985002,-0.0162784][1.75,1.95,0][21.4064,15.4158,10.8442][0.609666,0.747025,0.265067][1.75,1.925,0][22.2995,14.0083,11.2242][0.800361,0.497848,0.334021][1.75,1.9,0][24.5157,14.0083,2.72752e-006][0.867772,0.496956,0.00262869][2,1.9,0][23.5476,15.4158,3.00157e-006][0.665537,0.746272,0.0117618][2,1.925,0][23.5476,15.4158,3.00157e-006][0.665537,0.746272,0.0117618][2,1.925,0][21.4064,15.4158,10.8442][0.609666,0.747025,0.265067][1.75,1.925,0][22.2995,14.0083,11.2242][0.800361,0.497848,0.334021][1.75,1.9,0][14.6047,15.4158,18.6857][-0.691926,0.242859,-0.679895][1.5,1.975,0][20.1973,15.4158,10.3298][-0.899594,0.242936,-0.362922][1.75,1.975,0][20.5408,14.0083,10.4759][-0.866654,-0.25597,-0.42824][1.75,2,0][20.5408,14.0083,10.4759][-0.866654,-0.25597,-0.42824][1.75,2,0][14.8691,14.0083,18.9501][-0.63698,-0.256207,-0.727058][1.5,2,0][14.6047,15.4158,18.6857][-0.691926,0.242859,-0.679895][1.5,1.975,0][14.9114,15.885,18.9924][-0.151836,0.985081,-0.0810006][1.5,1.95,0][20.5958,15.885,10.4993][-0.171774,0.985002,-0.0162784][1.75,1.95,0][20.1973,15.4158,10.3298][-0.899594,0.242936,-0.362922][1.75,1.975,0][20.1973,15.4158,10.3298][-0.899594,0.242936,-0.362922][1.75,1.975,0][14.6047,15.4158,18.6857][-0.691926,0.242859,-0.679895][1.5,1.975,0][14.9114,15.885,18.9924][-0.151836,0.985081,-0.0810006][1.5,1.95,0][15.5353,15.4158,19.6163][0.461298,0.747473,0.478005][1.5,1.925,0][21.4064,15.4158,10.8442][0.609666,0.747025,0.265067][1.75,1.925,0][20.5958,15.885,10.4993][-0.171774,0.985002,-0.0162784][1.75,1.95,0][20.5958,15.885,10.4993][-0.171774,0.985002,-0.0162784][1.75,1.95,0][14.9114,15.885,18.9924][-0.151836,0.985081,-0.0810006][1.5,1.95,0][15.5353,15.4158,19.6163][0.461298,0.747473,0.478005][1.5,1.925,0][16.2227,14.0083,20.3037][0.611121,0.498465,0.614869][1.5,1.9,0][22.2995,14.0083,11.2242][0.800361,0.497848,0.334021][1.75,1.9,0][21.4064,15.4158,10.8442][0.609666,0.747025,0.265067][1.75,1.925,0][21.4064,15.4158,10.8442][0.609666,0.747025,0.265067][1.75,1.925,0][15.5353,15.4158,19.6163][0.461298,0.747473,0.478005][1.5,1.925,0][16.2227,14.0083,20.3037][0.611121,0.498465,0.614869][1.5,1.9,0][6.2488,15.4158,24.2783][-0.378799,0.242454,-0.893156][1.25,1.975,0][14.6047,15.4158,18.6857][-0.691926,0.242859,-0.679895][1.5,1.975,0][14.8691,14.0083,18.9501][-0.63698,-0.256207,-0.727058][1.5,2,0][14.8691,14.0083,18.9501][-0.63698,-0.256207,-0.727058][1.5,2,0][6.39494,14.0083,24.6218][-0.309409,-0.255654,-0.915919][1.25,2,0][6.2488,15.4158,24.2783][-0.378799,0.242454,-0.893156][1.25,1.975,0][6.41833,15.885,24.6767][-0.109657,0.985099,-0.132497][1.25,1.95,0][14.9114,15.885,18.9924][-0.151836,0.985081,-0.0810006][1.5,1.95,0][14.6047,15.4158,18.6857][-0.691926,0.242859,-0.679895][1.5,1.975,0][14.6047,15.4158,18.6857][-0.691926,0.242859,-0.679895][1.5,1.975,0][6.2488,15.4158,24.2783][-0.378799,0.242454,-0.893156][1.25,1.975,0][6.41833,15.885,24.6767][-0.109657,0.985099,-0.132497][1.25,1.95,0][6.76324,15.4158,25.4874][0.243047,0.747004,0.6188][1.25,1.925,0][15.5353,15.4158,19.6163][0.461298,0.747473,0.478005][1.5,1.925,0][14.9114,15.885,18.9924][-0.151836,0.985081,-0.0810006][1.5,1.95,0][14.9114,15.885,18.9924][-0.151836,0.985081,-0.0810006][1.5,1.95,0][6.41833,15.885,24.6767][-0.109657,0.985099,-0.132497][1.25,1.95,0][6.76324,15.4158,25.4874][0.243047,0.747004,0.6188][1.25,1.925,0][7.14322,14.0083,26.3805][0.329078,0.497896,0.802376][1.25,1.9,0][16.2227,14.0083,20.3037][0.611121,0.498465,0.614869][1.5,1.9,0][15.5353,15.4158,19.6163][0.461298,0.747473,0.478005][1.5,1.925,0][15.5353,15.4158,19.6163][0.461298,0.747473,0.478005][1.5,1.925,0][6.76324,15.4158,25.4874][0.243047,0.747004,0.6188][1.25,1.925,0][7.14322,14.0083,26.3805][0.329078,0.497896,0.802376][1.25,1.9,0][-4.08099,15.4158,26.3179][-0.00920341,0.233885,-0.972221][1,1.975,0][6.2488,15.4158,24.2783][-0.378799,0.242454,-0.893156][1.25,1.975,0][6.39494,14.0083,24.6218][-0.309409,-0.255654,-0.915919][1.25,2,0][6.39494,14.0083,24.6218][-0.309409,-0.255654,-0.915919][1.25,2,0][-4.08099,14.0083,26.6903][0.0569098,-0.271212,-0.960836][1,2,0][-4.08099,15.4158,26.3179][-0.00920341,0.233885,-0.972221][1,1.975,0][-4.08099,15.885,26.7499][-0.050508,0.985239,-0.163563][1,1.95,0][6.41833,15.885,24.6767][-0.109657,0.985099,-0.132497][1.25,1.95,0][6.2488,15.4158,24.2783][-0.378799,0.242454,-0.893156][1.25,1.975,0][6.2488,15.4158,24.2783][-0.378799,0.242454,-0.893156][1.25,1.975,0][-4.08099,15.4158,26.3179][-0.00920341,0.233885,-0.972221][1,1.975,0][-4.08099,15.885,26.7499][-0.050508,0.985239,-0.163563][1,1.95,0][-4.08099,15.4158,27.6286][-0.011738,0.746149,0.665675][1,1.925,0][6.76324,15.4158,25.4874][0.243047,0.747004,0.6188][1.25,1.925,0][6.41833,15.885,24.6767][-0.109657,0.985099,-0.132497][1.25,1.95,0][6.41833,15.885,24.6767][-0.109657,0.985099,-0.132497][1.25,1.95,0][-4.08099,15.885,26.7499][-0.050508,0.985239,-0.163563][1,1.95,0][-4.08099,15.4158,27.6286][-0.011738,0.746149,0.665675][1,1.925,0][-4.08099,14.0083,28.5967][-0.00262851,0.496956,0.867772][1,1.9,0][7.14322,14.0083,26.3805][0.329078,0.497896,0.802376][1.25,1.9,0][6.76324,15.4158,25.4874][0.243047,0.747004,0.6188][1.25,1.925,0][6.76324,15.4158,25.4874][0.243047,0.747004,0.6188][1.25,1.925,0][-4.08099,15.4158,27.6286][-0.011738,0.746149,0.665675][1,1.925,0][-4.08099,14.0083,28.5967][-0.00262851,0.496956,0.867772][1,1.9,0][-14.7162,15.4158,24.2783][0.370984,0.152476,-0.916036][0.75,1.975,0][-4.08099,15.4158,26.3179][-0.00920341,0.233885,-0.972221][1,1.975,0][-4.08099,14.0083,26.6903][0.0569098,-0.271212,-0.960836][1,2,0][-4.08099,14.0083,26.6903][0.0569098,-0.271212,-0.960836][1,2,0][-15.2808,14.0083,24.6218][0.408654,-0.362666,-0.837541][0.75,2,0][-14.7162,15.4158,24.2783][0.370984,0.152476,-0.916036][0.75,1.975,0][-14.6708,15.885,24.6767][0.0244054,0.980502,-0.194988][0.75,1.95,0][-4.08099,15.885,26.7499][-0.050508,0.985239,-0.163563][1,1.95,0][-4.08099,15.4158,26.3179][-0.00920341,0.233885,-0.972221][1,1.975,0][-4.08099,15.4158,26.3179][-0.00920341,0.233885,-0.972221][1,1.975,0][-14.7162,15.4158,24.2783][0.370984,0.152476,-0.916036][0.75,1.975,0][-14.6708,15.885,24.6767][0.0244054,0.980502,-0.194988][0.75,1.95,0][-14.9365,15.4158,25.4874][-0.26712,0.742965,0.613718][0.75,1.925,0][-4.08099,15.4158,27.6286][-0.011738,0.746149,0.665675][1,1.925,0][-4.08099,15.885,26.7499][-0.050508,0.985239,-0.163563][1,1.95,0][-4.08099,15.885,26.7499][-0.050508,0.985239,-0.163563][1,1.95,0][-14.6708,15.885,24.6767][0.0244054,0.980502,-0.194988][0.75,1.95,0][-14.9365,15.4158,25.4874][-0.26712,0.742965,0.613718][0.75,1.925,0][-15.3052,14.0083,26.3805][-0.334163,0.497243,0.800678][0.75,1.9,0][-4.08099,14.0083,28.5967][-0.00262851,0.496956,0.867772][1,1.9,0][-4.08099,15.4158,27.6286][-0.011738,0.746149,0.665675][1,1.925,0][-4.08099,15.4158,27.6286][-0.011738,0.746149,0.665675][1,1.925,0][-14.9365,15.4158,25.4874][-0.26712,0.742965,0.613718][0.75,1.925,0][-15.3052,14.0083,26.3805][-0.334163,0.497243,0.800678][0.75,1.9,0][-23.0382,15.4158,18.6857][0.70586,0.0906161,-0.702532][0.5,1.975,0][-14.7162,15.4158,24.2783][0.370984,0.152476,-0.916036][0.75,1.975,0][-15.2808,14.0083,24.6218][0.408654,-0.362666,-0.837541][0.75,2,0][-15.2808,14.0083,24.6218][0.408654,-0.362666,-0.837541][0.75,2,0][-23.6745,14.0083,18.9501][0.704191,-0.386394,-0.595663][0.5,2,0][-23.0382,15.4158,18.6857][0.70586,0.0906161,-0.702532][0.5,1.975,0][-23.1538,15.885,18.9924][0.127861,0.969627,-0.208506][0.5,1.95,0][-14.6708,15.885,24.6767][0.0244054,0.980502,-0.194988][0.75,1.95,0][-14.7162,15.4158,24.2783][0.370984,0.152476,-0.916036][0.75,1.975,0][-14.7162,15.4158,24.2783][0.370984,0.152476,-0.916036][0.75,1.975,0][-23.0382,15.4158,18.6857][0.70586,0.0906161,-0.702532][0.5,1.975,0][-23.1538,15.885,18.9924][0.127861,0.969627,-0.208506][0.5,1.95,0][-23.7074,15.4158,19.6163][-0.484887,0.738574,0.468394][0.5,1.925,0][-14.9365,15.4158,25.4874][-0.26712,0.742965,0.613718][0.75,1.925,0][-14.6708,15.885,24.6767][0.0244054,0.980502,-0.194988][0.75,1.95,0][-14.6708,15.885,24.6767][0.0244054,0.980502,-0.194988][0.75,1.95,0][-23.1538,15.885,18.9924][0.127861,0.969627,-0.208506][0.5,1.95,0][-23.7074,15.4158,19.6163][-0.484887,0.738574,0.468394][0.5,1.925,0][-24.3847,14.0083,20.3037][-0.615438,0.497023,0.611722][0.5,1.9,0][-15.3052,14.0083,26.3805][-0.334163,0.497243,0.800678][0.75,1.9,0][-14.9365,15.4158,25.4874][-0.26712,0.742965,0.613718][0.75,1.925,0][-14.9365,15.4158,25.4874][-0.26712,0.742965,0.613718][0.75,1.925,0][-23.7074,15.4158,19.6163][-0.484887,0.738574,0.468394][0.5,1.925,0][-24.3847,14.0083,20.3037][-0.615438,0.497023,0.611722][0.5,1.9,0][-28.4611,15.4158,10.3298][0.915929,0.155571,-0.369963][0.25,1.975,0][-23.0382,15.4158,18.6857][0.70586,0.0906161,-0.702532][0.5,1.975,0][-23.6745,14.0083,18.9501][0.704191,-0.386394,-0.595663][0.5,2,0][-23.6745,14.0083,18.9501][0.704191,-0.386394,-0.595663][0.5,2,0][-28.9441,14.0083,10.4759][0.907465,-0.30968,-0.28391][0.25,2,0][-28.4611,15.4158,10.3298][0.915929,0.155571,-0.369963][0.25,1.975,0][-28.7879,15.885,10.4993][0.183344,0.973515,-0.136578][0.25,1.95,0][-23.1538,15.885,18.9924][0.127861,0.969627,-0.208506][0.5,1.95,0][-23.0382,15.4158,18.6857][0.70586,0.0906161,-0.702532][0.5,1.975,0][-23.0382,15.4158,18.6857][0.70586,0.0906161,-0.702532][0.5,1.975,0][-28.4611,15.4158,10.3298][0.915929,0.155571,-0.369963][0.25,1.975,0][-28.7879,15.885,10.4993][0.183344,0.973515,-0.136578][0.25,1.95,0][-29.5722,15.4158,10.8442][-0.625202,0.740671,0.246027][0.25,1.925,0][-23.7074,15.4158,19.6163][-0.484887,0.738574,0.468394][0.5,1.925,0][-23.1538,15.885,18.9924][0.127861,0.969627,-0.208506][0.5,1.95,0][-23.1538,15.885,18.9924][0.127861,0.969627,-0.208506][0.5,1.95,0][-28.7879,15.885,10.4993][0.183344,0.973515,-0.136578][0.25,1.95,0][-29.5722,15.4158,10.8442][-0.625202,0.740671,0.246027][0.25,1.925,0][-30.4615,14.0083,11.2242][-0.802949,0.496814,0.329317][0.25,1.9,0][-24.3847,14.0083,20.3037][-0.615438,0.497023,0.611722][0.5,1.9,0][-23.7074,15.4158,19.6163][-0.484887,0.738574,0.468394][0.5,1.925,0][-23.7074,15.4158,19.6163][-0.484887,0.738574,0.468394][0.5,1.925,0][-29.5722,15.4158,10.8442][-0.625202,0.740671,0.246027][0.25,1.925,0][-30.4615,14.0083,11.2242][-0.802949,0.496814,0.329317][0.25,1.9,0][-30.3989,15.4158,3.00157e-006][0.973732,0.227695,-0.000322004][0,1.975,0][-28.4611,15.4158,10.3298][0.915929,0.155571,-0.369963][0.25,1.975,0][-28.9441,14.0083,10.4759][0.907465,-0.30968,-0.28391][0.25,2,0][-28.9441,14.0083,10.4759][0.907465,-0.30968,-0.28391][0.25,2,0][-30.7713,14.0083,2.72752e-006][0.964333,-0.255114,0.0705642][0,2,0][-30.3989,15.4158,3.00157e-006][0.973732,0.227695,-0.000322004][0,1.975,0][-30.8309,15.885,3.09292e-006][0.179023,0.982501,-0.0513988][0,1.95,0][-28.7879,15.885,10.4993][0.183344,0.973515,-0.136578][0.25,1.95,0][-28.4611,15.4158,10.3298][0.915929,0.155571,-0.369963][0.25,1.975,0][-28.4611,15.4158,10.3298][0.915929,0.155571,-0.369963][0.25,1.975,0][-30.3989,15.4158,3.00157e-006][0.973732,0.227695,-0.000322004][0,1.975,0][-30.8309,15.885,3.09292e-006][0.179023,0.982501,-0.0513988][0,1.95,0][-31.7096,15.4158,3.00157e-006][-0.667145,0.744837,-0.0116825][0,1.925,0][-29.5722,15.4158,10.8442][-0.625202,0.740671,0.246027][0.25,1.925,0][-28.7879,15.885,10.4993][0.183344,0.973515,-0.136578][0.25,1.95,0][-28.7879,15.885,10.4993][0.183344,0.973515,-0.136578][0.25,1.95,0][-30.8309,15.885,3.09292e-006][0.179023,0.982501,-0.0513988][0,1.95,0][-31.7096,15.4158,3.00157e-006][-0.667145,0.744837,-0.0116825][0,1.925,0][-32.6777,14.0083,2.72752e-006][-0.867923,0.496693,-0.00264185][0,1.9,0][-30.4615,14.0083,11.2242][-0.802949,0.496814,0.329317][0.25,1.9,0][-29.5722,15.4158,10.8442][-0.625202,0.740671,0.246027][0.25,1.925,0][-29.5722,15.4158,10.8442][-0.625202,0.740671,0.246027][0.25,1.925,0][-31.7096,15.4158,3.00157e-006][-0.667145,0.744837,-0.0116825][0,1.925,0][-32.6777,14.0083,2.72752e-006][-0.867923,0.496693,-0.00264185][0,1.9,0][-28.3593,15.4158,-10.3298][0.899594,0.242935,0.362922][1.75,1.975,0][-30.3989,15.4158,3.00157e-006][0.973732,0.227695,-0.000322004][2,1.975,0][-30.7713,14.0083,2.72752e-006][0.964333,-0.255114,0.0705642][2,2,0][-30.7713,14.0083,2.72752e-006][0.964333,-0.255114,0.0705642][2,2,0][-28.7028,14.0083,-10.4759][0.866654,-0.25597,0.42824][1.75,2,0][-28.3593,15.4158,-10.3298][0.899594,0.242935,0.362922][1.75,1.975,0][-28.7577,15.885,-10.4993][0.171774,0.985002,0.0162787][1.75,1.95,0][-30.8309,15.885,3.09292e-006][0.179023,0.982501,-0.0513988][2,1.95,0][-30.3989,15.4158,3.00157e-006][0.973732,0.227695,-0.000322004][2,1.975,0][-30.3989,15.4158,3.00157e-006][0.973732,0.227695,-0.000322004][2,1.975,0][-28.3593,15.4158,-10.3298][0.899594,0.242935,0.362922][1.75,1.975,0][-28.7577,15.885,-10.4993][0.171774,0.985002,0.0162787][1.75,1.95,0][-29.5684,15.4158,-10.8442][-0.609666,0.747025,-0.265067][1.75,1.925,0][-31.7096,15.4158,3.00157e-006][-0.667145,0.744837,-0.0116825][2,1.925,0][-30.8309,15.885,3.09292e-006][0.179023,0.982501,-0.0513988][2,1.95,0][-30.8309,15.885,3.09292e-006][0.179023,0.982501,-0.0513988][2,1.95,0][-28.7577,15.885,-10.4993][0.171774,0.985002,0.0162787][1.75,1.95,0][-29.5684,15.4158,-10.8442][-0.609666,0.747025,-0.265067][1.75,1.925,0][-30.4615,14.0083,-11.2242][-0.80036,0.497848,-0.334021][1.75,1.9,0][-32.6777,14.0083,2.72752e-006][-0.867923,0.496693,-0.00264185][2,1.9,0][-31.7096,15.4158,3.00157e-006][-0.667145,0.744837,-0.0116825][2,1.925,0][-31.7096,15.4158,3.00157e-006][-0.667145,0.744837,-0.0116825][2,1.925,0][-29.5684,15.4158,-10.8442][-0.609666,0.747025,-0.265067][1.75,1.925,0][-30.4615,14.0083,-11.2242][-0.80036,0.497848,-0.334021][1.75,1.9,0][-22.7667,15.4158,-18.6857][0.691926,0.242858,0.679895][1.5,1.975,0][-28.3593,15.4158,-10.3298][0.899594,0.242935,0.362922][1.75,1.975,0][-28.7028,14.0083,-10.4759][0.866654,-0.25597,0.42824][1.75,2,0][-28.7028,14.0083,-10.4759][0.866654,-0.25597,0.42824][1.75,2,0][-23.0311,14.0083,-18.9501][0.63698,-0.256207,0.727058][1.5,2,0][-22.7667,15.4158,-18.6857][0.691926,0.242858,0.679895][1.5,1.975,0][-23.0734,15.885,-18.9924][0.151836,0.985081,0.0810005][1.5,1.95,0][-28.7577,15.885,-10.4993][0.171774,0.985002,0.0162787][1.75,1.95,0][-28.3593,15.4158,-10.3298][0.899594,0.242935,0.362922][1.75,1.975,0][-28.3593,15.4158,-10.3298][0.899594,0.242935,0.362922][1.75,1.975,0][-22.7667,15.4158,-18.6857][0.691926,0.242858,0.679895][1.5,1.975,0][-23.0734,15.885,-18.9924][0.151836,0.985081,0.0810005][1.5,1.95,0][-23.6973,15.4158,-19.6163][-0.461298,0.747473,-0.478005][1.5,1.925,0][-29.5684,15.4158,-10.8442][-0.609666,0.747025,-0.265067][1.75,1.925,0][-28.7577,15.885,-10.4993][0.171774,0.985002,0.0162787][1.75,1.95,0][-28.7577,15.885,-10.4993][0.171774,0.985002,0.0162787][1.75,1.95,0][-23.0734,15.885,-18.9924][0.151836,0.985081,0.0810005][1.5,1.95,0][-23.6973,15.4158,-19.6163][-0.461298,0.747473,-0.478005][1.5,1.925,0][-24.3847,14.0083,-20.3037][-0.611121,0.498465,-0.614869][1.5,1.9,0][-30.4615,14.0083,-11.2242][-0.80036,0.497848,-0.334021][1.75,1.9,0][-29.5684,15.4158,-10.8442][-0.609666,0.747025,-0.265067][1.75,1.925,0][-29.5684,15.4158,-10.8442][-0.609666,0.747025,-0.265067][1.75,1.925,0][-23.6973,15.4158,-19.6163][-0.461298,0.747473,-0.478005][1.5,1.925,0][-24.3847,14.0083,-20.3037][-0.611121,0.498465,-0.614869][1.5,1.9,0][-14.4108,15.4158,-24.2783][0.378799,0.242454,0.893156][1.25,1.975,0][-22.7667,15.4158,-18.6857][0.691926,0.242858,0.679895][1.5,1.975,0][-23.0311,14.0083,-18.9501][0.63698,-0.256207,0.727058][1.5,2,0][-23.0311,14.0083,-18.9501][0.63698,-0.256207,0.727058][1.5,2,0][-14.5569,14.0083,-24.6218][0.309409,-0.255654,0.915919][1.25,2,0][-14.4108,15.4158,-24.2783][0.378799,0.242454,0.893156][1.25,1.975,0][-14.5803,15.885,-24.6767][0.109657,0.985099,0.132497][1.25,1.95,0][-23.0734,15.885,-18.9924][0.151836,0.985081,0.0810005][1.5,1.95,0][-22.7667,15.4158,-18.6857][0.691926,0.242858,0.679895][1.5,1.975,0][-22.7667,15.4158,-18.6857][0.691926,0.242858,0.679895][1.5,1.975,0][-14.4108,15.4158,-24.2783][0.378799,0.242454,0.893156][1.25,1.975,0][-14.5803,15.885,-24.6767][0.109657,0.985099,0.132497][1.25,1.95,0][-14.9252,15.4158,-25.4874][-0.243047,0.747004,-0.6188][1.25,1.925,0][-23.6973,15.4158,-19.6163][-0.461298,0.747473,-0.478005][1.5,1.925,0][-23.0734,15.885,-18.9924][0.151836,0.985081,0.0810005][1.5,1.95,0][-23.0734,15.885,-18.9924][0.151836,0.985081,0.0810005][1.5,1.95,0][-14.5803,15.885,-24.6767][0.109657,0.985099,0.132497][1.25,1.95,0][-14.9252,15.4158,-25.4874][-0.243047,0.747004,-0.6188][1.25,1.925,0][-15.3052,14.0083,-26.3805][-0.329078,0.497897,-0.802376][1.25,1.9,0][-24.3847,14.0083,-20.3037][-0.611121,0.498465,-0.614869][1.5,1.9,0][-23.6973,15.4158,-19.6163][-0.461298,0.747473,-0.478005][1.5,1.925,0][-23.6973,15.4158,-19.6163][-0.461298,0.747473,-0.478005][1.5,1.925,0][-14.9252,15.4158,-25.4874][-0.243047,0.747004,-0.6188][1.25,1.925,0][-15.3052,14.0083,-26.3805][-0.329078,0.497897,-0.802376][1.25,1.9,0][-4.08099,15.4158,-26.3179][0.00843199,0.242335,0.970156][1,1.975,0][-14.4108,15.4158,-24.2783][0.378799,0.242454,0.893156][1.25,1.975,0][-14.5569,14.0083,-24.6218][0.309409,-0.255654,0.915919][1.25,2,0][-14.5569,14.0083,-24.6218][0.309409,-0.255654,0.915919][1.25,2,0][-4.08099,14.0083,-26.6903][-0.0635,-0.255235,0.964792][1,2,0][-4.08099,15.4158,-26.3179][0.00843199,0.242335,0.970156][1,1.975,0][-4.08099,15.885,-26.7499][0.0501129,0.985052,0.164808][1,1.95,0][-14.5803,15.885,-24.6767][0.109657,0.985099,0.132497][1.25,1.95,0][-14.4108,15.4158,-24.2783][0.378799,0.242454,0.893156][1.25,1.975,0][-14.4108,15.4158,-24.2783][0.378799,0.242454,0.893156][1.25,1.975,0][-4.08099,15.4158,-26.3179][0.00843199,0.242335,0.970156][1,1.975,0][-4.08099,15.885,-26.7499][0.0501129,0.985052,0.164808][1,1.95,0][-4.08099,15.4158,-27.6286][0.0117615,0.746272,-0.665537][1,1.925,0][-14.9252,15.4158,-25.4874][-0.243047,0.747004,-0.6188][1.25,1.925,0][-14.5803,15.885,-24.6767][0.109657,0.985099,0.132497][1.25,1.95,0][-14.5803,15.885,-24.6767][0.109657,0.985099,0.132497][1.25,1.95,0][-4.08099,15.885,-26.7499][0.0501129,0.985052,0.164808][1,1.95,0][-4.08099,15.4158,-27.6286][0.0117615,0.746272,-0.665537][1,1.925,0][-4.08099,14.0083,-28.5967][0.00262855,0.496956,-0.867772][1,1.9,0][-15.3052,14.0083,-26.3805][-0.329078,0.497897,-0.802376][1.25,1.9,0][-14.9252,15.4158,-25.4874][-0.243047,0.747004,-0.6188][1.25,1.925,0][-14.9252,15.4158,-25.4874][-0.243047,0.747004,-0.6188][1.25,1.925,0][-4.08099,15.4158,-27.6286][0.0117615,0.746272,-0.665537][1,1.925,0][-4.08099,14.0083,-28.5967][0.00262855,0.496956,-0.867772][1,1.9,0][6.2488,15.4158,-24.2783][-0.362922,0.242936,0.899594][0.75,1.975,0][-4.08099,15.4158,-26.3179][0.00843199,0.242335,0.970156][1,1.975,0][-4.08099,14.0083,-26.6903][-0.0635,-0.255235,0.964792][1,2,0][-4.08099,14.0083,-26.6903][-0.0635,-0.255235,0.964792][1,2,0][6.39494,14.0083,-24.6218][-0.42824,-0.25597,0.866654][0.75,2,0][6.2488,15.4158,-24.2783][-0.362922,0.242936,0.899594][0.75,1.975,0][6.41833,15.885,-24.6767][-0.0162786,0.985002,0.171774][0.75,1.95,0][-4.08099,15.885,-26.7499][0.0501129,0.985052,0.164808][1,1.95,0][-4.08099,15.4158,-26.3179][0.00843199,0.242335,0.970156][1,1.975,0][-4.08099,15.4158,-26.3179][0.00843199,0.242335,0.970156][1,1.975,0][6.2488,15.4158,-24.2783][-0.362922,0.242936,0.899594][0.75,1.975,0][6.41833,15.885,-24.6767][-0.0162786,0.985002,0.171774][0.75,1.95,0][6.76324,15.4158,-25.4874][0.265067,0.747025,-0.609666][0.75,1.925,0][-4.08099,15.4158,-27.6286][0.0117615,0.746272,-0.665537][1,1.925,0][-4.08099,15.885,-26.7499][0.0501129,0.985052,0.164808][1,1.95,0][-4.08099,15.885,-26.7499][0.0501129,0.985052,0.164808][1,1.95,0][6.41833,15.885,-24.6767][-0.0162786,0.985002,0.171774][0.75,1.95,0][6.76324,15.4158,-25.4874][0.265067,0.747025,-0.609666][0.75,1.925,0][7.14322,14.0083,-26.3805][0.334021,0.497848,-0.80036][0.75,1.9,0][-4.08099,14.0083,-28.5967][0.00262855,0.496956,-0.867772][1,1.9,0][-4.08099,15.4158,-27.6286][0.0117615,0.746272,-0.665537][1,1.925,0][-4.08099,15.4158,-27.6286][0.0117615,0.746272,-0.665537][1,1.925,0][6.76324,15.4158,-25.4874][0.265067,0.747025,-0.609666][0.75,1.925,0][7.14322,14.0083,-26.3805][0.334021,0.497848,-0.80036][0.75,1.9,0][14.6047,15.4158,-18.6857][-0.679895,0.242858,0.691926][0.5,1.975,0][6.2488,15.4158,-24.2783][-0.362922,0.242936,0.899594][0.75,1.975,0][6.39494,14.0083,-24.6218][-0.42824,-0.25597,0.866654][0.75,2,0][6.39494,14.0083,-24.6218][-0.42824,-0.25597,0.866654][0.75,2,0][14.8691,14.0083,-18.9501][-0.727058,-0.256207,0.63698][0.5,2,0][14.6047,15.4158,-18.6857][-0.679895,0.242858,0.691926][0.5,1.975,0][14.9114,15.885,-18.9924][-0.0810006,0.985081,0.151836][0.5,1.95,0][6.41833,15.885,-24.6767][-0.0162786,0.985002,0.171774][0.75,1.95,0][6.2488,15.4158,-24.2783][-0.362922,0.242936,0.899594][0.75,1.975,0][6.2488,15.4158,-24.2783][-0.362922,0.242936,0.899594][0.75,1.975,0][14.6047,15.4158,-18.6857][-0.679895,0.242858,0.691926][0.5,1.975,0][14.9114,15.885,-18.9924][-0.0810006,0.985081,0.151836][0.5,1.95,0][15.5353,15.4158,-19.6163][0.478005,0.747473,-0.461298][0.5,1.925,0][6.76324,15.4158,-25.4874][0.265067,0.747025,-0.609666][0.75,1.925,0][6.41833,15.885,-24.6767][-0.0162786,0.985002,0.171774][0.75,1.95,0][6.41833,15.885,-24.6767][-0.0162786,0.985002,0.171774][0.75,1.95,0][14.9114,15.885,-18.9924][-0.0810006,0.985081,0.151836][0.5,1.95,0][15.5353,15.4158,-19.6163][0.478005,0.747473,-0.461298][0.5,1.925,0][16.2227,14.0083,-20.3037][0.614869,0.498465,-0.611121][0.5,1.9,0][7.14322,14.0083,-26.3805][0.334021,0.497848,-0.80036][0.75,1.9,0][6.76324,15.4158,-25.4874][0.265067,0.747025,-0.609666][0.75,1.925,0][6.76324,15.4158,-25.4874][0.265067,0.747025,-0.609666][0.75,1.925,0][15.5353,15.4158,-19.6163][0.478005,0.747473,-0.461298][0.5,1.925,0][16.2227,14.0083,-20.3037][0.614869,0.498465,-0.611121][0.5,1.9,0][20.1973,15.4158,-10.3298][-0.893156,0.242454,0.378799][0.25,1.975,0][14.6047,15.4158,-18.6857][-0.679895,0.242858,0.691926][0.5,1.975,0][14.8691,14.0083,-18.9501][-0.727058,-0.256207,0.63698][0.5,2,0][14.8691,14.0083,-18.9501][-0.727058,-0.256207,0.63698][0.5,2,0][20.5408,14.0083,-10.4759][-0.915919,-0.255654,0.309409][0.25,2,0][20.1973,15.4158,-10.3298][-0.893156,0.242454,0.378799][0.25,1.975,0][20.5958,15.885,-10.4993][-0.132497,0.985099,0.109658][0.25,1.95,0][14.9114,15.885,-18.9924][-0.0810006,0.985081,0.151836][0.5,1.95,0][14.6047,15.4158,-18.6857][-0.679895,0.242858,0.691926][0.5,1.975,0][14.6047,15.4158,-18.6857][-0.679895,0.242858,0.691926][0.5,1.975,0][20.1973,15.4158,-10.3298][-0.893156,0.242454,0.378799][0.25,1.975,0][20.5958,15.885,-10.4993][-0.132497,0.985099,0.109658][0.25,1.95,0][21.4064,15.4158,-10.8442][0.6188,0.747004,-0.243047][0.25,1.925,0][15.5353,15.4158,-19.6163][0.478005,0.747473,-0.461298][0.5,1.925,0][14.9114,15.885,-18.9924][-0.0810006,0.985081,0.151836][0.5,1.95,0][14.9114,15.885,-18.9924][-0.0810006,0.985081,0.151836][0.5,1.95,0][20.5958,15.885,-10.4993][-0.132497,0.985099,0.109658][0.25,1.95,0][21.4064,15.4158,-10.8442][0.6188,0.747004,-0.243047][0.25,1.925,0][22.2995,14.0083,-11.2242][0.802376,0.497897,-0.329078][0.25,1.9,0][16.2227,14.0083,-20.3037][0.614869,0.498465,-0.611121][0.5,1.9,0][15.5353,15.4158,-19.6163][0.478005,0.747473,-0.461298][0.5,1.925,0][15.5353,15.4158,-19.6163][0.478005,0.747473,-0.461298][0.5,1.925,0][21.4064,15.4158,-10.8442][0.6188,0.747004,-0.243047][0.25,1.925,0][22.2995,14.0083,-11.2242][0.802376,0.497897,-0.329078][0.25,1.9,0][22.2369,15.4158,3.00157e-006][-0.970156,0.242335,0.0084321][0,1.975,0][20.1973,15.4158,-10.3298][-0.893156,0.242454,0.378799][0.25,1.975,0][20.5408,14.0083,-10.4759][-0.915919,-0.255654,0.309409][0.25,2,0][20.5408,14.0083,-10.4759][-0.915919,-0.255654,0.309409][0.25,2,0][22.6093,14.0083,2.72752e-006][-0.964792,-0.255235,-0.0635001][0,2,0][22.2369,15.4158,3.00157e-006][-0.970156,0.242335,0.0084321][0,1.975,0][22.6689,15.885,3.09292e-006][-0.164808,0.985052,0.0501133][0,1.95,0][20.5958,15.885,-10.4993][-0.132497,0.985099,0.109658][0.25,1.95,0][20.1973,15.4158,-10.3298][-0.893156,0.242454,0.378799][0.25,1.975,0][20.1973,15.4158,-10.3298][-0.893156,0.242454,0.378799][0.25,1.975,0][22.2369,15.4158,3.00157e-006][-0.970156,0.242335,0.0084321][0,1.975,0][22.6689,15.885,3.09292e-006][-0.164808,0.985052,0.0501133][0,1.95,0][23.5476,15.4158,3.00157e-006][0.665537,0.746272,0.0117618][0,1.925,0][21.4064,15.4158,-10.8442][0.6188,0.747004,-0.243047][0.25,1.925,0][20.5958,15.885,-10.4993][-0.132497,0.985099,0.109658][0.25,1.95,0][20.5958,15.885,-10.4993][-0.132497,0.985099,0.109658][0.25,1.95,0][22.6689,15.885,3.09292e-006][-0.164808,0.985052,0.0501133][0,1.95,0][23.5476,15.4158,3.00157e-006][0.665537,0.746272,0.0117618][0,1.925,0][24.5157,14.0083,2.72752e-006][0.867772,0.496956,0.00262869][0,1.9,0][22.2995,14.0083,-11.2242][0.802376,0.497897,-0.329078][0.25,1.9,0][21.4064,15.4158,-10.8442][0.6188,0.747004,-0.243047][0.25,1.925,0][21.4064,15.4158,-10.8442][0.6188,0.747004,-0.243047][0.25,1.925,0][23.5476,15.4158,3.00157e-006][0.665537,0.746272,0.0117618][0,1.925,0][24.5157,14.0083,2.72752e-006][0.867772,0.496956,0.00262869][0,1.9,0][25.5284,6.52403,12.598][0.844816,0.404552,0.350176][1.75,1.675,0][28.0159,6.52403,1.27028e-006][0.91488,0.403725,0.000562846][2,1.675,0][24.5157,14.0083,2.72752e-006][0.867772,0.496956,0.00262869][2,1.9,0][24.5157,14.0083,2.72752e-006][0.867772,0.496956,0.00262869][2,1.9,0][22.2995,14.0083,11.2242][0.800361,0.497848,0.334021][1.75,1.9,0][25.5284,6.52403,12.598][0.844816,0.404552,0.350176][1.75,1.675,0][28.345,-0.826221,13.7964][0.868962,0.338796,0.360724][1.75,1.45,0][31.0692,-0.82622,-1.60871e-007][0.941117,0.33808,0.00105182][2,1.45,0][28.0159,6.52403,1.27028e-006][0.91488,0.403725,0.000562846][2,1.675,0][28.0159,6.52403,1.27028e-006][0.91488,0.403725,0.000562846][2,1.675,0][25.5284,6.52403,12.598][0.844816,0.404552,0.350176][1.75,1.675,0][28.345,-0.826221,13.7964][0.868962,0.338796,0.360724][1.75,1.45,0][30.3373,-7.90838,14.6441][0.903357,0.207976,0.37509][1.75,1.225,0][33.2288,-7.90838,-1.53982e-006][0.978226,0.207541,0.00114835][2,1.225,0][31.0692,-0.82622,-1.60871e-007][0.941117,0.33808,0.00105182][2,1.45,0][31.0692,-0.82622,-1.60871e-007][0.941117,0.33808,0.00105182][2,1.45,0][28.345,-0.826221,13.7964][0.868962,0.338796,0.360724][1.75,1.45,0][30.3373,-7.90838,14.6441][0.903357,0.207976,0.37509][1.75,1.225,0][31.093,-14.5884,14.9656][0.922181,-0.068131,0.380711][1.75,1,0][34.048,-14.5884,-2.84047e-006][0.997695,-0.0678514,-0.000826041][2,1,0][33.2288,-7.90838,-1.53982e-006][0.978226,0.207541,0.00114835][2,1.225,0][33.2288,-7.90838,-1.53982e-006][0.978226,0.207541,0.00114835][2,1.225,0][30.3373,-7.90838,14.6441][0.903357,0.207976,0.37509][1.75,1.225,0][31.093,-14.5884,14.9656][0.922181,-0.068131,0.380711][1.75,1,0][18.7078,6.52403,22.7888][0.646085,0.405105,0.646888][1.5,1.675,0][25.5284,6.52403,12.598][0.844816,0.404552,0.350176][1.75,1.675,0][22.2995,14.0083,11.2242][0.800361,0.497848,0.334021][1.75,1.9,0][22.2995,14.0083,11.2242][0.800361,0.497848,0.334021][1.75,1.9,0][16.2227,14.0083,20.3037][0.611121,0.498465,0.614869][1.5,1.9,0][18.7078,6.52403,22.7888][0.646085,0.405105,0.646888][1.5,1.675,0][20.8756,-0.826225,24.9566][0.664409,0.339299,0.665911][1.5,1.45,0][28.345,-0.826221,13.7964][0.868962,0.338796,0.360724][1.75,1.45,0][25.5284,6.52403,12.598][0.844816,0.404552,0.350176][1.75,1.675,0][25.5284,6.52403,12.598][0.844816,0.404552,0.350176][1.75,1.675,0][18.7078,6.52403,22.7888][0.646085,0.405105,0.646888][1.5,1.675,0][20.8756,-0.826225,24.9566][0.664409,0.339299,0.665911][1.5,1.45,0][22.409,-7.90838,26.49][0.690769,0.208342,0.69241][1.5,1.225,0][30.3373,-7.90838,14.6441][0.903357,0.207976,0.37509][1.75,1.225,0][28.345,-0.826221,13.7964][0.868962,0.338796,0.360724][1.75,1.45,0][28.345,-0.826221,13.7964][0.868962,0.338796,0.360724][1.75,1.45,0][20.8756,-0.826225,24.9566][0.664409,0.339299,0.665911][1.5,1.45,0][22.409,-7.90838,26.49][0.690769,0.208342,0.69241][1.5,1.225,0][22.9906,-14.5884,27.0716][0.706055,-0.0681096,0.704874][1.5,1,0][31.093,-14.5884,14.9656][0.922181,-0.068131,0.380711][1.75,1,0][30.3373,-7.90838,14.6441][0.903357,0.207976,0.37509][1.75,1.225,0][30.3373,-7.90838,14.6441][0.903357,0.207976,0.37509][1.75,1.225,0][22.409,-7.90838,26.49][0.690769,0.208342,0.69241][1.5,1.225,0][22.9906,-14.5884,27.0716][0.706055,-0.0681096,0.704874][1.5,1,0][8.51702,6.52403,29.6093][0.349116,0.40457,0.845246][1.25,1.675,0][18.7078,6.52403,22.7888][0.646085,0.405105,0.646888][1.5,1.675,0][16.2227,14.0083,20.3037][0.611121,0.498465,0.614869][1.5,1.9,0][16.2227,14.0083,20.3037][0.611121,0.498465,0.614869][1.5,1.9,0][7.14322,14.0083,26.3805][0.329078,0.497896,0.802376][1.25,1.9,0][8.51702,6.52403,29.6093][0.349116,0.40457,0.845246][1.25,1.675,0][9.71544,-0.826225,32.426][0.358742,0.338843,0.869764][1.25,1.45,0][20.8756,-0.826225,24.9566][0.664409,0.339299,0.665911][1.5,1.45,0][18.7078,6.52403,22.7888][0.646085,0.405105,0.646888][1.5,1.675,0][18.7078,6.52403,22.7888][0.646085,0.405105,0.646888][1.5,1.675,0][8.51702,6.52403,29.6093][0.349116,0.40457,0.845246][1.25,1.675,0][9.71544,-0.826225,32.426][0.358742,0.338843,0.869764][1.25,1.45,0][10.5631,-7.90839,34.4183][0.372923,0.208079,0.90423][1.25,1.225,0][22.409,-7.90838,26.49][0.690769,0.208342,0.69241][1.5,1.225,0][20.8756,-0.826225,24.9566][0.664409,0.339299,0.665911][1.5,1.45,0][20.8756,-0.826225,24.9566][0.664409,0.339299,0.665911][1.5,1.45,0][9.71544,-0.826225,32.426][0.358742,0.338843,0.869764][1.25,1.45,0][10.5631,-7.90839,34.4183][0.372923,0.208079,0.90423][1.25,1.225,0][10.8846,-14.5884,35.174][0.38227,-0.0678884,0.921554][1.25,1,0][22.9906,-14.5884,27.0716][0.706055,-0.0681096,0.704874][1.5,1,0][22.409,-7.90838,26.49][0.690769,0.208342,0.69241][1.5,1.225,0][22.409,-7.90838,26.49][0.690769,0.208342,0.69241][1.5,1.225,0][10.5631,-7.90839,34.4183][0.372923,0.208079,0.90423][1.25,1.225,0][10.8846,-14.5884,35.174][0.38227,-0.0678884,0.921554][1.25,1,0][-4.08099,6.52403,32.0969][-0.000562724,0.403724,0.914881][1,1.675,0][8.51702,6.52403,29.6093][0.349116,0.40457,0.845246][1.25,1.675,0][7.14322,14.0083,26.3805][0.329078,0.497896,0.802376][1.25,1.9,0][7.14322,14.0083,26.3805][0.329078,0.497896,0.802376][1.25,1.9,0][-4.08099,14.0083,28.5967][-0.00262851,0.496956,0.867772][1,1.9,0][-4.08099,6.52403,32.0969][-0.000562724,0.403724,0.914881][1,1.675,0][-4.08099,-0.826227,35.1501][-0.00105181,0.33808,0.941117][1,1.45,0][9.71544,-0.826225,32.426][0.358742,0.338843,0.869764][1.25,1.45,0][8.51702,6.52403,29.6093][0.349116,0.40457,0.845246][1.25,1.675,0][8.51702,6.52403,29.6093][0.349116,0.40457,0.845246][1.25,1.675,0][-4.08099,6.52403,32.0969][-0.000562724,0.403724,0.914881][1,1.675,0][-4.08099,-0.826227,35.1501][-0.00105181,0.33808,0.941117][1,1.45,0][-4.08099,-7.90839,37.3098][-0.00114835,0.207541,0.978226][1,1.225,0][10.5631,-7.90839,34.4183][0.372923,0.208079,0.90423][1.25,1.225,0][9.71544,-0.826225,32.426][0.358742,0.338843,0.869764][1.25,1.45,0][9.71544,-0.826225,32.426][0.358742,0.338843,0.869764][1.25,1.45,0][-4.08099,-0.826227,35.1501][-0.00105181,0.33808,0.941117][1,1.45,0][-4.08099,-7.90839,37.3098][-0.00114835,0.207541,0.978226][1,1.225,0][-4.08099,-14.5884,38.129][0.000826015,-0.0678514,0.997695][1,1,0][10.8846,-14.5884,35.174][0.38227,-0.0678884,0.921554][1.25,1,0][10.5631,-7.90839,34.4183][0.372923,0.208079,0.90423][1.25,1.225,0][10.5631,-7.90839,34.4183][0.372923,0.208079,0.90423][1.25,1.225,0][-4.08099,-7.90839,37.3098][-0.00114835,0.207541,0.978226][1,1.225,0][-4.08099,-14.5884,38.129][0.000826015,-0.0678514,0.997695][1,1,0][-16.679,6.52403,29.6093][-0.350176,0.404552,0.844816][0.75,1.675,0][-4.08099,6.52403,32.0969][-0.000562724,0.403724,0.914881][1,1.675,0][-4.08099,14.0083,28.5967][-0.00262851,0.496956,0.867772][1,1.9,0][-4.08099,14.0083,28.5967][-0.00262851,0.496956,0.867772][1,1.9,0][-15.3052,14.0083,26.3805][-0.334163,0.497243,0.800678][0.75,1.9,0][-16.679,6.52403,29.6093][-0.350176,0.404552,0.844816][0.75,1.675,0][-17.8774,-0.826225,32.426][-0.360724,0.338796,0.868962][0.75,1.45,0][-4.08099,-0.826227,35.1501][-0.00105181,0.33808,0.941117][1,1.45,0][-4.08099,6.52403,32.0969][-0.000562724,0.403724,0.914881][1,1.675,0][-4.08099,6.52403,32.0969][-0.000562724,0.403724,0.914881][1,1.675,0][-16.679,6.52403,29.6093][-0.350176,0.404552,0.844816][0.75,1.675,0][-17.8774,-0.826225,32.426][-0.360724,0.338796,0.868962][0.75,1.45,0][-18.7251,-7.90839,34.4183][-0.37509,0.207976,0.903357][0.75,1.225,0][-4.08099,-7.90839,37.3098][-0.00114835,0.207541,0.978226][1,1.225,0][-4.08099,-0.826227,35.1501][-0.00105181,0.33808,0.941117][1,1.45,0][-4.08099,-0.826227,35.1501][-0.00105181,0.33808,0.941117][1,1.45,0][-17.8774,-0.826225,32.426][-0.360724,0.338796,0.868962][0.75,1.45,0][-18.7251,-7.90839,34.4183][-0.37509,0.207976,0.903357][0.75,1.225,0][-19.0466,-14.5884,35.174][-0.380711,-0.0681309,0.922181][0.75,1,0][-4.08099,-14.5884,38.129][0.000826015,-0.0678514,0.997695][1,1,0][-4.08099,-7.90839,37.3098][-0.00114835,0.207541,0.978226][1,1.225,0][-4.08099,-7.90839,37.3098][-0.00114835,0.207541,0.978226][1,1.225,0][-18.7251,-7.90839,34.4183][-0.37509,0.207976,0.903357][0.75,1.225,0][-19.0466,-14.5884,35.174][-0.380711,-0.0681309,0.922181][0.75,1,0][-26.8698,6.52403,22.7888][-0.646888,0.405104,0.646085][0.5,1.675,0][-16.679,6.52403,29.6093][-0.350176,0.404552,0.844816][0.75,1.675,0][-15.3052,14.0083,26.3805][-0.334163,0.497243,0.800678][0.75,1.9,0][-15.3052,14.0083,26.3805][-0.334163,0.497243,0.800678][0.75,1.9,0][-24.3847,14.0083,20.3037][-0.615438,0.497023,0.611722][0.5,1.9,0][-26.8698,6.52403,22.7888][-0.646888,0.405104,0.646085][0.5,1.675,0][-29.0376,-0.826225,24.9566][-0.665911,0.339299,0.664409][0.5,1.45,0][-17.8774,-0.826225,32.426][-0.360724,0.338796,0.868962][0.75,1.45,0][-16.679,6.52403,29.6093][-0.350176,0.404552,0.844816][0.75,1.675,0][-16.679,6.52403,29.6093][-0.350176,0.404552,0.844816][0.75,1.675,0][-26.8698,6.52403,22.7888][-0.646888,0.405104,0.646085][0.5,1.675,0][-29.0376,-0.826225,24.9566][-0.665911,0.339299,0.664409][0.5,1.45,0][-30.5709,-7.90838,26.49][-0.69241,0.208342,0.690769][0.5,1.225,0][-18.7251,-7.90839,34.4183][-0.37509,0.207976,0.903357][0.75,1.225,0][-17.8774,-0.826225,32.426][-0.360724,0.338796,0.868962][0.75,1.45,0][-17.8774,-0.826225,32.426][-0.360724,0.338796,0.868962][0.75,1.45,0][-29.0376,-0.826225,24.9566][-0.665911,0.339299,0.664409][0.5,1.45,0][-30.5709,-7.90838,26.49][-0.69241,0.208342,0.690769][0.5,1.225,0][-31.1526,-14.5884,27.0716][-0.704874,-0.0681096,0.706055][0.5,1,0][-19.0466,-14.5884,35.174][-0.380711,-0.0681309,0.922181][0.75,1,0][-18.7251,-7.90839,34.4183][-0.37509,0.207976,0.903357][0.75,1.225,0][-18.7251,-7.90839,34.4183][-0.37509,0.207976,0.903357][0.75,1.225,0][-30.5709,-7.90838,26.49][-0.69241,0.208342,0.690769][0.5,1.225,0][-31.1526,-14.5884,27.0716][-0.704874,-0.0681096,0.706055][0.5,1,0][-33.6903,6.52403,12.598][-0.845246,0.40457,0.349117][0.25,1.675,0][-26.8698,6.52403,22.7888][-0.646888,0.405104,0.646085][0.5,1.675,0][-24.3847,14.0083,20.3037][-0.615438,0.497023,0.611722][0.5,1.9,0][-24.3847,14.0083,20.3037][-0.615438,0.497023,0.611722][0.5,1.9,0][-30.4615,14.0083,11.2242][-0.802949,0.496814,0.329317][0.25,1.9,0][-33.6903,6.52403,12.598][-0.845246,0.40457,0.349117][0.25,1.675,0][-36.507,-0.826221,13.7964][-0.869764,0.338843,0.358742][0.25,1.45,0][-29.0376,-0.826225,24.9566][-0.665911,0.339299,0.664409][0.5,1.45,0][-26.8698,6.52403,22.7888][-0.646888,0.405104,0.646085][0.5,1.675,0][-26.8698,6.52403,22.7888][-0.646888,0.405104,0.646085][0.5,1.675,0][-33.6903,6.52403,12.598][-0.845246,0.40457,0.349117][0.25,1.675,0][-36.507,-0.826221,13.7964][-0.869764,0.338843,0.358742][0.25,1.45,0][-38.4993,-7.90838,14.6441][-0.90423,0.208079,0.372924][0.25,1.225,0][-30.5709,-7.90838,26.49][-0.69241,0.208342,0.690769][0.5,1.225,0][-29.0376,-0.826225,24.9566][-0.665911,0.339299,0.664409][0.5,1.45,0][-29.0376,-0.826225,24.9566][-0.665911,0.339299,0.664409][0.5,1.45,0][-36.507,-0.826221,13.7964][-0.869764,0.338843,0.358742][0.25,1.45,0][-38.4993,-7.90838,14.6441][-0.90423,0.208079,0.372924][0.25,1.225,0][-39.255,-14.5884,14.9656][-0.921554,-0.0678885,0.38227][0.25,1,0][-31.1526,-14.5884,27.0716][-0.704874,-0.0681096,0.706055][0.5,1,0][-30.5709,-7.90838,26.49][-0.69241,0.208342,0.690769][0.5,1.225,0][-30.5709,-7.90838,26.49][-0.69241,0.208342,0.690769][0.5,1.225,0][-38.4993,-7.90838,14.6441][-0.90423,0.208079,0.372924][0.25,1.225,0][-39.255,-14.5884,14.9656][-0.921554,-0.0678885,0.38227][0.25,1,0][-36.1778,6.52403,1.27028e-006][-0.91488,0.403725,-0.000562634][0,1.675,0][-33.6903,6.52403,12.598][-0.845246,0.40457,0.349117][0.25,1.675,0][-30.4615,14.0083,11.2242][-0.802949,0.496814,0.329317][0.25,1.9,0][-30.4615,14.0083,11.2242][-0.802949,0.496814,0.329317][0.25,1.9,0][-32.6777,14.0083,2.72752e-006][-0.867923,0.496693,-0.00264185][0,1.9,0][-36.1778,6.52403,1.27028e-006][-0.91488,0.403725,-0.000562634][0,1.675,0][-39.2311,-0.82622,-1.60871e-007][-0.941117,0.33808,-0.00105174][0,1.45,0][-36.507,-0.826221,13.7964][-0.869764,0.338843,0.358742][0.25,1.45,0][-33.6903,6.52403,12.598][-0.845246,0.40457,0.349117][0.25,1.675,0][-33.6903,6.52403,12.598][-0.845246,0.40457,0.349117][0.25,1.675,0][-36.1778,6.52403,1.27028e-006][-0.91488,0.403725,-0.000562634][0,1.675,0][-39.2311,-0.82622,-1.60871e-007][-0.941117,0.33808,-0.00105174][0,1.45,0][-41.3908,-7.90838,-1.53982e-006][-0.978226,0.207541,-0.00114833][0,1.225,0][-38.4993,-7.90838,14.6441][-0.90423,0.208079,0.372924][0.25,1.225,0][-36.507,-0.826221,13.7964][-0.869764,0.338843,0.358742][0.25,1.45,0][-36.507,-0.826221,13.7964][-0.869764,0.338843,0.358742][0.25,1.45,0][-39.2311,-0.82622,-1.60871e-007][-0.941117,0.33808,-0.00105174][0,1.45,0][-41.3908,-7.90838,-1.53982e-006][-0.978226,0.207541,-0.00114833][0,1.225,0][-42.21,-14.5884,-2.84047e-006][-0.997695,-0.0678514,0.000825994][0,1,0][-39.255,-14.5884,14.9656][-0.921554,-0.0678885,0.38227][0.25,1,0][-38.4993,-7.90838,14.6441][-0.90423,0.208079,0.372924][0.25,1.225,0][-38.4993,-7.90838,14.6441][-0.90423,0.208079,0.372924][0.25,1.225,0][-41.3908,-7.90838,-1.53982e-006][-0.978226,0.207541,-0.00114833][0,1.225,0][-42.21,-14.5884,-2.84047e-006][-0.997695,-0.0678514,0.000825994][0,1,0][-33.6903,6.52404,-12.598][-0.844816,0.404552,-0.350176][1.75,1.675,0][-36.1778,6.52403,1.27028e-006][-0.91488,0.403725,-0.000562634][2,1.675,0][-32.6777,14.0083,2.72752e-006][-0.867923,0.496693,-0.00264185][2,1.9,0][-32.6777,14.0083,2.72752e-006][-0.867923,0.496693,-0.00264185][2,1.9,0][-30.4615,14.0083,-11.2242][-0.80036,0.497848,-0.334021][1.75,1.9,0][-33.6903,6.52404,-12.598][-0.844816,0.404552,-0.350176][1.75,1.675,0][-36.507,-0.826218,-13.7964][-0.868962,0.338796,-0.360724][1.75,1.45,0][-39.2311,-0.82622,-1.60871e-007][-0.941117,0.33808,-0.00105174][2,1.45,0][-36.1778,6.52403,1.27028e-006][-0.91488,0.403725,-0.000562634][2,1.675,0][-36.1778,6.52403,1.27028e-006][-0.91488,0.403725,-0.000562634][2,1.675,0][-33.6903,6.52404,-12.598][-0.844816,0.404552,-0.350176][1.75,1.675,0][-36.507,-0.826218,-13.7964][-0.868962,0.338796,-0.360724][1.75,1.45,0][-38.4993,-7.90838,-14.6441][-0.903357,0.207976,-0.37509][1.75,1.225,0][-41.3908,-7.90838,-1.53982e-006][-0.978226,0.207541,-0.00114833][2,1.225,0][-39.2311,-0.82622,-1.60871e-007][-0.941117,0.33808,-0.00105174][2,1.45,0][-39.2311,-0.82622,-1.60871e-007][-0.941117,0.33808,-0.00105174][2,1.45,0][-36.507,-0.826218,-13.7964][-0.868962,0.338796,-0.360724][1.75,1.45,0][-38.4993,-7.90838,-14.6441][-0.903357,0.207976,-0.37509][1.75,1.225,0][-39.255,-14.5884,-14.9656][-0.922181,-0.0681307,-0.380711][1.75,1,0][-42.21,-14.5884,-2.84047e-006][-0.997695,-0.0678514,0.000825994][2,1,0][-41.3908,-7.90838,-1.53982e-006][-0.978226,0.207541,-0.00114833][2,1.225,0][-41.3908,-7.90838,-1.53982e-006][-0.978226,0.207541,-0.00114833][2,1.225,0][-38.4993,-7.90838,-14.6441][-0.903357,0.207976,-0.37509][1.75,1.225,0][-39.255,-14.5884,-14.9656][-0.922181,-0.0681307,-0.380711][1.75,1,0][-26.8698,6.52404,-22.7888][-0.646085,0.405105,-0.646888][1.5,1.675,0][-33.6903,6.52404,-12.598][-0.844816,0.404552,-0.350176][1.75,1.675,0][-30.4615,14.0083,-11.2242][-0.80036,0.497848,-0.334021][1.75,1.9,0][-30.4615,14.0083,-11.2242][-0.80036,0.497848,-0.334021][1.75,1.9,0][-24.3847,14.0083,-20.3037][-0.611121,0.498465,-0.614869][1.5,1.9,0][-26.8698,6.52404,-22.7888][-0.646085,0.405105,-0.646888][1.5,1.675,0][-29.0376,-0.826214,-24.9566][-0.664409,0.339299,-0.665911][1.5,1.45,0][-36.507,-0.826218,-13.7964][-0.868962,0.338796,-0.360724][1.75,1.45,0][-33.6903,6.52404,-12.598][-0.844816,0.404552,-0.350176][1.75,1.675,0][-33.6903,6.52404,-12.598][-0.844816,0.404552,-0.350176][1.75,1.675,0][-26.8698,6.52404,-22.7888][-0.646085,0.405105,-0.646888][1.5,1.675,0][-29.0376,-0.826214,-24.9566][-0.664409,0.339299,-0.665911][1.5,1.45,0][-30.5709,-7.90837,-26.49][-0.690769,0.208342,-0.69241][1.5,1.225,0][-38.4993,-7.90838,-14.6441][-0.903357,0.207976,-0.37509][1.75,1.225,0][-36.507,-0.826218,-13.7964][-0.868962,0.338796,-0.360724][1.75,1.45,0][-36.507,-0.826218,-13.7964][-0.868962,0.338796,-0.360724][1.75,1.45,0][-29.0376,-0.826214,-24.9566][-0.664409,0.339299,-0.665911][1.5,1.45,0][-30.5709,-7.90837,-26.49][-0.690769,0.208342,-0.69241][1.5,1.225,0][-31.1526,-14.5884,-27.0716][-0.706055,-0.0681093,-0.704874][1.5,1,0][-39.255,-14.5884,-14.9656][-0.922181,-0.0681307,-0.380711][1.75,1,0][-38.4993,-7.90838,-14.6441][-0.903357,0.207976,-0.37509][1.75,1.225,0][-38.4993,-7.90838,-14.6441][-0.903357,0.207976,-0.37509][1.75,1.225,0][-30.5709,-7.90837,-26.49][-0.690769,0.208342,-0.69241][1.5,1.225,0][-31.1526,-14.5884,-27.0716][-0.706055,-0.0681093,-0.704874][1.5,1,0][-16.679,6.52404,-29.6093][-0.349117,0.40457,-0.845246][1.25,1.675,0][-26.8698,6.52404,-22.7888][-0.646085,0.405105,-0.646888][1.5,1.675,0][-24.3847,14.0083,-20.3037][-0.611121,0.498465,-0.614869][1.5,1.9,0][-24.3847,14.0083,-20.3037][-0.611121,0.498465,-0.614869][1.5,1.9,0][-15.3052,14.0083,-26.3805][-0.329078,0.497897,-0.802376][1.25,1.9,0][-16.679,6.52404,-29.6093][-0.349117,0.40457,-0.845246][1.25,1.675,0][-17.8774,-0.826214,-32.426][-0.358742,0.338843,-0.869764][1.25,1.45,0][-29.0376,-0.826214,-24.9566][-0.664409,0.339299,-0.665911][1.5,1.45,0][-26.8698,6.52404,-22.7888][-0.646085,0.405105,-0.646888][1.5,1.675,0][-26.8698,6.52404,-22.7888][-0.646085,0.405105,-0.646888][1.5,1.675,0][-16.679,6.52404,-29.6093][-0.349117,0.40457,-0.845246][1.25,1.675,0][-17.8774,-0.826214,-32.426][-0.358742,0.338843,-0.869764][1.25,1.45,0][-18.7251,-7.90837,-34.4183][-0.372924,0.208079,-0.90423][1.25,1.225,0][-30.5709,-7.90837,-26.49][-0.690769,0.208342,-0.69241][1.5,1.225,0][-29.0376,-0.826214,-24.9566][-0.664409,0.339299,-0.665911][1.5,1.45,0][-29.0376,-0.826214,-24.9566][-0.664409,0.339299,-0.665911][1.5,1.45,0][-17.8774,-0.826214,-32.426][-0.358742,0.338843,-0.869764][1.25,1.45,0][-18.7251,-7.90837,-34.4183][-0.372924,0.208079,-0.90423][1.25,1.225,0][-19.0466,-14.5884,-35.174][-0.38227,-0.0678884,-0.921554][1.25,1,0][-31.1526,-14.5884,-27.0716][-0.706055,-0.0681093,-0.704874][1.5,1,0][-30.5709,-7.90837,-26.49][-0.690769,0.208342,-0.69241][1.5,1.225,0][-30.5709,-7.90837,-26.49][-0.690769,0.208342,-0.69241][1.5,1.225,0][-18.7251,-7.90837,-34.4183][-0.372924,0.208079,-0.90423][1.25,1.225,0][-19.0466,-14.5884,-35.174][-0.38227,-0.0678884,-0.921554][1.25,1,0][-4.08099,6.52404,-32.0969][0.000562773,0.403725,-0.91488][1,1.675,0][-16.679,6.52404,-29.6093][-0.349117,0.40457,-0.845246][1.25,1.675,0][-15.3052,14.0083,-26.3805][-0.329078,0.497897,-0.802376][1.25,1.9,0][-15.3052,14.0083,-26.3805][-0.329078,0.497897,-0.802376][1.25,1.9,0][-4.08099,14.0083,-28.5967][0.00262855,0.496956,-0.867772][1,1.9,0][-4.08099,6.52404,-32.0969][0.000562773,0.403725,-0.91488][1,1.675,0][-4.08099,-0.826212,-35.1501][0.00105177,0.338081,-0.941117][1,1.45,0][-17.8774,-0.826214,-32.426][-0.358742,0.338843,-0.869764][1.25,1.45,0][-16.679,6.52404,-29.6093][-0.349117,0.40457,-0.845246][1.25,1.675,0][-16.679,6.52404,-29.6093][-0.349117,0.40457,-0.845246][1.25,1.675,0][-4.08099,6.52404,-32.0969][0.000562773,0.403725,-0.91488][1,1.675,0][-4.08099,-0.826212,-35.1501][0.00105177,0.338081,-0.941117][1,1.45,0][-4.08099,-7.90837,-37.3098][0.00114836,0.207541,-0.978226][1,1.225,0][-18.7251,-7.90837,-34.4183][-0.372924,0.208079,-0.90423][1.25,1.225,0][-17.8774,-0.826214,-32.426][-0.358742,0.338843,-0.869764][1.25,1.45,0][-17.8774,-0.826214,-32.426][-0.358742,0.338843,-0.869764][1.25,1.45,0][-4.08099,-0.826212,-35.1501][0.00105177,0.338081,-0.941117][1,1.45,0][-4.08099,-7.90837,-37.3098][0.00114836,0.207541,-0.978226][1,1.225,0][-4.08099,-14.5884,-38.129][-0.000826005,-0.0678513,-0.997695][1,1,0][-19.0466,-14.5884,-35.174][-0.38227,-0.0678884,-0.921554][1.25,1,0][-18.7251,-7.90837,-34.4183][-0.372924,0.208079,-0.90423][1.25,1.225,0][-18.7251,-7.90837,-34.4183][-0.372924,0.208079,-0.90423][1.25,1.225,0][-4.08099,-7.90837,-37.3098][0.00114836,0.207541,-0.978226][1,1.225,0][-4.08099,-14.5884,-38.129][-0.000826005,-0.0678513,-0.997695][1,1,0][8.51702,6.52404,-29.6093][0.350176,0.404552,-0.844816][0.75,1.675,0][-4.08099,6.52404,-32.0969][0.000562773,0.403725,-0.91488][1,1.675,0][-4.08099,14.0083,-28.5967][0.00262855,0.496956,-0.867772][1,1.9,0][-4.08099,14.0083,-28.5967][0.00262855,0.496956,-0.867772][1,1.9,0][7.14322,14.0083,-26.3805][0.334021,0.497848,-0.80036][0.75,1.9,0][8.51702,6.52404,-29.6093][0.350176,0.404552,-0.844816][0.75,1.675,0][9.71544,-0.826214,-32.426][0.360724,0.338796,-0.868962][0.75,1.45,0][-4.08099,-0.826212,-35.1501][0.00105177,0.338081,-0.941117][1,1.45,0][-4.08099,6.52404,-32.0969][0.000562773,0.403725,-0.91488][1,1.675,0][-4.08099,6.52404,-32.0969][0.000562773,0.403725,-0.91488][1,1.675,0][8.51702,6.52404,-29.6093][0.350176,0.404552,-0.844816][0.75,1.675,0][9.71544,-0.826214,-32.426][0.360724,0.338796,-0.868962][0.75,1.45,0][10.5631,-7.90837,-34.4183][0.37509,0.207976,-0.903357][0.75,1.225,0][-4.08099,-7.90837,-37.3098][0.00114836,0.207541,-0.978226][1,1.225,0][-4.08099,-0.826212,-35.1501][0.00105177,0.338081,-0.941117][1,1.45,0][-4.08099,-0.826212,-35.1501][0.00105177,0.338081,-0.941117][1,1.45,0][9.71544,-0.826214,-32.426][0.360724,0.338796,-0.868962][0.75,1.45,0][10.5631,-7.90837,-34.4183][0.37509,0.207976,-0.903357][0.75,1.225,0][10.8846,-14.5884,-35.174][0.380711,-0.0681308,-0.922181][0.75,1,0][-4.08099,-14.5884,-38.129][-0.000826005,-0.0678513,-0.997695][1,1,0][-4.08099,-7.90837,-37.3098][0.00114836,0.207541,-0.978226][1,1.225,0][-4.08099,-7.90837,-37.3098][0.00114836,0.207541,-0.978226][1,1.225,0][10.5631,-7.90837,-34.4183][0.37509,0.207976,-0.903357][0.75,1.225,0][10.8846,-14.5884,-35.174][0.380711,-0.0681308,-0.922181][0.75,1,0][18.7078,6.52404,-22.7888][0.646888,0.405105,-0.646085][0.5,1.675,0][8.51702,6.52404,-29.6093][0.350176,0.404552,-0.844816][0.75,1.675,0][7.14322,14.0083,-26.3805][0.334021,0.497848,-0.80036][0.75,1.9,0][7.14322,14.0083,-26.3805][0.334021,0.497848,-0.80036][0.75,1.9,0][16.2227,14.0083,-20.3037][0.614869,0.498465,-0.611121][0.5,1.9,0][18.7078,6.52404,-22.7888][0.646888,0.405105,-0.646085][0.5,1.675,0][20.8756,-0.826214,-24.9566][0.665911,0.339299,-0.664409][0.5,1.45,0][9.71544,-0.826214,-32.426][0.360724,0.338796,-0.868962][0.75,1.45,0][8.51702,6.52404,-29.6093][0.350176,0.404552,-0.844816][0.75,1.675,0][8.51702,6.52404,-29.6093][0.350176,0.404552,-0.844816][0.75,1.675,0][18.7078,6.52404,-22.7888][0.646888,0.405105,-0.646085][0.5,1.675,0][20.8756,-0.826214,-24.9566][0.665911,0.339299,-0.664409][0.5,1.45,0][22.409,-7.90837,-26.49][0.69241,0.208342,-0.690769][0.5,1.225,0][10.5631,-7.90837,-34.4183][0.37509,0.207976,-0.903357][0.75,1.225,0][9.71544,-0.826214,-32.426][0.360724,0.338796,-0.868962][0.75,1.45,0][9.71544,-0.826214,-32.426][0.360724,0.338796,-0.868962][0.75,1.45,0][20.8756,-0.826214,-24.9566][0.665911,0.339299,-0.664409][0.5,1.45,0][22.409,-7.90837,-26.49][0.69241,0.208342,-0.690769][0.5,1.225,0][22.9906,-14.5884,-27.0716][0.704874,-0.0681093,-0.706055][0.5,1,0][10.8846,-14.5884,-35.174][0.380711,-0.0681308,-0.922181][0.75,1,0][10.5631,-7.90837,-34.4183][0.37509,0.207976,-0.903357][0.75,1.225,0][10.5631,-7.90837,-34.4183][0.37509,0.207976,-0.903357][0.75,1.225,0][22.409,-7.90837,-26.49][0.69241,0.208342,-0.690769][0.5,1.225,0][22.9906,-14.5884,-27.0716][0.704874,-0.0681093,-0.706055][0.5,1,0][25.5284,6.52404,-12.598][0.845246,0.40457,-0.349116][0.25,1.675,0][18.7078,6.52404,-22.7888][0.646888,0.405105,-0.646085][0.5,1.675,0][16.2227,14.0083,-20.3037][0.614869,0.498465,-0.611121][0.5,1.9,0][16.2227,14.0083,-20.3037][0.614869,0.498465,-0.611121][0.5,1.9,0][22.2995,14.0083,-11.2242][0.802376,0.497897,-0.329078][0.25,1.9,0][25.5284,6.52404,-12.598][0.845246,0.40457,-0.349116][0.25,1.675,0][28.345,-0.826218,-13.7964][0.869764,0.338843,-0.358742][0.25,1.45,0][20.8756,-0.826214,-24.9566][0.665911,0.339299,-0.664409][0.5,1.45,0][18.7078,6.52404,-22.7888][0.646888,0.405105,-0.646085][0.5,1.675,0][18.7078,6.52404,-22.7888][0.646888,0.405105,-0.646085][0.5,1.675,0][25.5284,6.52404,-12.598][0.845246,0.40457,-0.349116][0.25,1.675,0][28.345,-0.826218,-13.7964][0.869764,0.338843,-0.358742][0.25,1.45,0][30.3373,-7.90838,-14.6441][0.90423,0.208079,-0.372923][0.25,1.225,0][22.409,-7.90837,-26.49][0.69241,0.208342,-0.690769][0.5,1.225,0][20.8756,-0.826214,-24.9566][0.665911,0.339299,-0.664409][0.5,1.45,0][20.8756,-0.826214,-24.9566][0.665911,0.339299,-0.664409][0.5,1.45,0][28.345,-0.826218,-13.7964][0.869764,0.338843,-0.358742][0.25,1.45,0][30.3373,-7.90838,-14.6441][0.90423,0.208079,-0.372923][0.25,1.225,0][31.093,-14.5884,-14.9656][0.921554,-0.0678883,-0.38227][0.25,1,0][22.9906,-14.5884,-27.0716][0.704874,-0.0681093,-0.706055][0.5,1,0][22.409,-7.90837,-26.49][0.69241,0.208342,-0.690769][0.5,1.225,0][22.409,-7.90837,-26.49][0.69241,0.208342,-0.690769][0.5,1.225,0][30.3373,-7.90838,-14.6441][0.90423,0.208079,-0.372923][0.25,1.225,0][31.093,-14.5884,-14.9656][0.921554,-0.0678883,-0.38227][0.25,1,0][28.0159,6.52403,1.27028e-006][0.91488,0.403725,0.000562846][0,1.675,0][25.5284,6.52404,-12.598][0.845246,0.40457,-0.349116][0.25,1.675,0][22.2995,14.0083,-11.2242][0.802376,0.497897,-0.329078][0.25,1.9,0][22.2995,14.0083,-11.2242][0.802376,0.497897,-0.329078][0.25,1.9,0][24.5157,14.0083,2.72752e-006][0.867772,0.496956,0.00262869][0,1.9,0][28.0159,6.52403,1.27028e-006][0.91488,0.403725,0.000562846][0,1.675,0][31.0692,-0.82622,-1.60871e-007][0.941117,0.33808,0.00105182][0,1.45,0][28.345,-0.826218,-13.7964][0.869764,0.338843,-0.358742][0.25,1.45,0][25.5284,6.52404,-12.598][0.845246,0.40457,-0.349116][0.25,1.675,0][25.5284,6.52404,-12.598][0.845246,0.40457,-0.349116][0.25,1.675,0][28.0159,6.52403,1.27028e-006][0.91488,0.403725,0.000562846][0,1.675,0][31.0692,-0.82622,-1.60871e-007][0.941117,0.33808,0.00105182][0,1.45,0][33.2288,-7.90838,-1.53982e-006][0.978226,0.207541,0.00114835][0,1.225,0][30.3373,-7.90838,-14.6441][0.90423,0.208079,-0.372923][0.25,1.225,0][28.345,-0.826218,-13.7964][0.869764,0.338843,-0.358742][0.25,1.45,0][28.345,-0.826218,-13.7964][0.869764,0.338843,-0.358742][0.25,1.45,0][31.0692,-0.82622,-1.60871e-007][0.941117,0.33808,0.00105182][0,1.45,0][33.2288,-7.90838,-1.53982e-006][0.978226,0.207541,0.00114835][0,1.225,0][34.048,-14.5884,-2.84047e-006][0.997695,-0.0678514,-0.000826041][0,1,0][31.093,-14.5884,-14.9656][0.921554,-0.0678883,-0.38227][0.25,1,0][30.3373,-7.90838,-14.6441][0.90423,0.208079,-0.372923][0.25,1.225,0][30.3373,-7.90838,-14.6441][0.90423,0.208079,-0.372923][0.25,1.225,0][33.2288,-7.90838,-1.53982e-006][0.978226,0.207541,0.00114835][0,1.225,0][34.048,-14.5884,-2.84047e-006][0.997695,-0.0678514,-0.000826041][0,1,0][29.719,-20.2407,14.381][0.829015,-0.446624,0.336542][1.75,0.85,0][32.5586,-20.2407,-3.94101e-006][0.895151,-0.445725,-0.00587718][2,0.85,0][34.048,-14.5884,-2.84047e-006][0.997695,-0.0678514,-0.000826041][2,1,0][34.048,-14.5884,-2.84047e-006][0.997695,-0.0678514,-0.000826041][2,1,0][31.093,-14.5884,14.9656][0.922181,-0.068131,0.380711][1.75,1,0][29.719,-20.2407,14.381][0.829015,-0.446624,0.336542][1.75,0.85,0][26.6962,-24.4185,13.0949][0.66985,-0.690737,0.272366][1.75,0.7,0][29.2819,-24.4185,-4.75446e-006][0.723936,-0.689854,-0.00428558][2,0.7,0][32.5586,-20.2407,-3.94101e-006][0.895151,-0.445725,-0.00587718][2,0.85,0][32.5586,-20.2407,-3.94101e-006][0.895151,-0.445725,-0.00587718][2,0.85,0][29.719,-20.2407,14.381][0.829015,-0.446624,0.336542][1.75,0.85,0][26.6962,-24.4185,13.0949][0.66985,-0.690737,0.272366][1.75,0.7,0][23.6735,-27.2559,11.8088][0.642819,-0.717289,0.26885][1.75,0.55,0][26.0052,-27.2559,-5.30691e-006][0.697653,-0.716431,0.00271131][2,0.55,0][29.2819,-24.4185,-4.75446e-006][0.723936,-0.689854,-0.00428558][2,0.7,0][29.2819,-24.4185,-4.75446e-006][0.723936,-0.689854,-0.00428558][2,0.7,0][26.6962,-24.4185,13.0949][0.66985,-0.690737,0.272366][1.75,0.7,0][23.6735,-27.2559,11.8088][0.642819,-0.717289,0.26885][1.75,0.55,0][22.2995,-28.8868,11.2242][0.735451,-0.603413,0.308229][1.75,0.4,0][24.5157,-28.8868,-5.62446e-006][0.798118,-0.60249,0.00363301][2,0.4,0][26.0052,-27.2559,-5.30691e-006][0.697653,-0.716431,0.00271131][2,0.55,0][26.0052,-27.2559,-5.30691e-006][0.697653,-0.716431,0.00271131][2,0.55,0][23.6735,-27.2559,11.8088][0.642819,-0.717289,0.26885][1.75,0.55,0][22.2995,-28.8868,11.2242][0.735451,-0.603413,0.308229][1.75,0.4,0][21.9331,-20.2407,26.0141][0.636684,-0.447071,0.6283][1.5,0.85,0][29.719,-20.2407,14.381][0.829015,-0.446624,0.336542][1.75,0.85,0][31.093,-14.5884,14.9656][0.922181,-0.068131,0.380711][1.75,1,0][31.093,-14.5884,14.9656][0.922181,-0.068131,0.380711][1.75,1,0][22.9906,-14.5884,27.0716][0.706055,-0.0681096,0.704874][1.5,1,0][21.9331,-20.2407,26.0141][0.636684,-0.447071,0.6283][1.5,0.85,0][19.6066,-24.4185,23.6876][0.513969,-0.691303,0.507874][1.5,0.7,0][26.6962,-24.4185,13.0949][0.66985,-0.690737,0.272366][1.75,0.7,0][29.719,-20.2407,14.381][0.829015,-0.446624,0.336542][1.75,0.85,0][29.719,-20.2407,14.381][0.829015,-0.446624,0.336542][1.75,0.85,0][21.9331,-20.2407,26.0141][0.636684,-0.447071,0.6283][1.5,0.85,0][19.6066,-24.4185,23.6876][0.513969,-0.691303,0.507874][1.5,0.7,0][17.2802,-27.2559,21.3612][0.49036,-0.717844,0.494214][1.5,0.55,0][23.6735,-27.2559,11.8088][0.642819,-0.717289,0.26885][1.75,0.55,0][26.6962,-24.4185,13.0949][0.66985,-0.690737,0.272366][1.75,0.7,0][26.6962,-24.4185,13.0949][0.66985,-0.690737,0.272366][1.75,0.7,0][19.6066,-24.4185,23.6876][0.513969,-0.691303,0.507874][1.5,0.7,0][17.2802,-27.2559,21.3612][0.49036,-0.717844,0.494214][1.5,0.55,0][16.2227,-28.8868,20.3037][0.560944,-0.604031,0.566117][1.5,0.4,0][22.2995,-28.8868,11.2242][0.735451,-0.603413,0.308229][1.75,0.4,0][23.6735,-27.2559,11.8088][0.642819,-0.717289,0.26885][1.75,0.55,0][23.6735,-27.2559,11.8088][0.642819,-0.717289,0.26885][1.75,0.55,0][17.2802,-27.2559,21.3612][0.49036,-0.717844,0.494214][1.5,0.55,0][16.2227,-28.8868,20.3037][0.560944,-0.604031,0.566117][1.5,0.4,0][10.3,-20.2407,33.8][0.347602,-0.446481,0.824517][1.25,0.85,0][21.9331,-20.2407,26.0141][0.636684,-0.447071,0.6283][1.5,0.85,0][22.9906,-14.5884,27.0716][0.706055,-0.0681096,0.704874][1.5,1,0][22.9906,-14.5884,27.0716][0.706055,-0.0681096,0.704874][1.5,1,0][10.8846,-14.5884,35.174][0.38227,-0.0678884,0.921554][1.25,1,0][10.3,-20.2407,33.8][0.347602,-0.446481,0.824517][1.25,0.85,0][9.01393,-24.4185,30.7772][0.280399,-0.690732,0.666532][1.25,0.7,0][19.6066,-24.4185,23.6876][0.513969,-0.691303,0.507874][1.5,0.7,0][21.9331,-20.2407,26.0141][0.636684,-0.447071,0.6283][1.5,0.85,0][21.9331,-20.2407,26.0141][0.636684,-0.447071,0.6283][1.5,0.85,0][10.3,-20.2407,33.8][0.347602,-0.446481,0.824517][1.25,0.85,0][9.01393,-24.4185,30.7772][0.280399,-0.690732,0.666532][1.25,0.7,0][7.72782,-27.2559,27.7545][0.26377,-0.717288,0.644921][1.25,0.55,0][17.2802,-27.2559,21.3612][0.49036,-0.717844,0.494214][1.5,0.55,0][19.6066,-24.4185,23.6876][0.513969,-0.691303,0.507874][1.5,0.7,0][19.6066,-24.4185,23.6876][0.513969,-0.691303,0.507874][1.5,0.7,0][9.01393,-24.4185,30.7772][0.280399,-0.690732,0.666532][1.25,0.7,0][7.72782,-27.2559,27.7545][0.26377,-0.717288,0.644921][1.25,0.55,0][7.14322,-28.8868,26.3805][0.301408,-0.603441,0.73825][1.25,0.4,0][16.2227,-28.8868,20.3037][0.560944,-0.604031,0.566117][1.5,0.4,0][17.2802,-27.2559,21.3612][0.49036,-0.717844,0.494214][1.5,0.55,0][17.2802,-27.2559,21.3612][0.49036,-0.717844,0.494214][1.5,0.55,0][7.72782,-27.2559,27.7545][0.26377,-0.717288,0.644921][1.25,0.55,0][7.14322,-28.8868,26.3805][0.301408,-0.603441,0.73825][1.25,0.4,0][-4.08099,-20.2407,36.6396][0.00587715,-0.445726,0.89515][1,0.85,0][10.3,-20.2407,33.8][0.347602,-0.446481,0.824517][1.25,0.85,0][10.8846,-14.5884,35.174][0.38227,-0.0678884,0.921554][1.25,1,0][10.8846,-14.5884,35.174][0.38227,-0.0678884,0.921554][1.25,1,0][-4.08099,-14.5884,38.129][0.000826015,-0.0678514,0.997695][1,1,0][-4.08099,-20.2407,36.6396][0.00587715,-0.445726,0.89515][1,0.85,0][-4.08099,-24.4185,33.3628][0.00428548,-0.689854,0.723936][1,0.7,0][9.01393,-24.4185,30.7772][0.280399,-0.690732,0.666532][1.25,0.7,0][10.3,-20.2407,33.8][0.347602,-0.446481,0.824517][1.25,0.85,0][10.3,-20.2407,33.8][0.347602,-0.446481,0.824517][1.25,0.85,0][-4.08099,-20.2407,36.6396][0.00587715,-0.445726,0.89515][1,0.85,0][-4.08099,-24.4185,33.3628][0.00428548,-0.689854,0.723936][1,0.7,0][-4.08099,-27.2559,30.0861][-0.00271152,-0.716431,0.697653][1,0.55,0][7.72782,-27.2559,27.7545][0.26377,-0.717288,0.644921][1.25,0.55,0][9.01393,-24.4185,30.7772][0.280399,-0.690732,0.666532][1.25,0.7,0][9.01393,-24.4185,30.7772][0.280399,-0.690732,0.666532][1.25,0.7,0][-4.08099,-24.4185,33.3628][0.00428548,-0.689854,0.723936][1,0.7,0][-4.08099,-27.2559,30.0861][-0.00271152,-0.716431,0.697653][1,0.55,0][-4.08099,-28.8868,28.5967][-0.00363312,-0.60249,0.798118][1,0.4,0][7.14322,-28.8868,26.3805][0.301408,-0.603441,0.73825][1.25,0.4,0][7.72782,-27.2559,27.7545][0.26377,-0.717288,0.644921][1.25,0.55,0][7.72782,-27.2559,27.7545][0.26377,-0.717288,0.644921][1.25,0.55,0][-4.08099,-27.2559,30.0861][-0.00271152,-0.716431,0.697653][1,0.55,0][-4.08099,-28.8868,28.5967][-0.00363312,-0.60249,0.798118][1,0.4,0][-18.462,-20.2407,33.8][-0.336542,-0.446624,0.829015][0.75,0.85,0][-4.08099,-20.2407,36.6396][0.00587715,-0.445726,0.89515][1,0.85,0][-4.08099,-14.5884,38.129][0.000826015,-0.0678514,0.997695][1,1,0][-4.08099,-14.5884,38.129][0.000826015,-0.0678514,0.997695][1,1,0][-19.0466,-14.5884,35.174][-0.380711,-0.0681309,0.922181][0.75,1,0][-18.462,-20.2407,33.8][-0.336542,-0.446624,0.829015][0.75,0.85,0][-17.1759,-24.4185,30.7772][-0.272366,-0.690737,0.66985][0.75,0.7,0][-4.08099,-24.4185,33.3628][0.00428548,-0.689854,0.723936][1,0.7,0][-4.08099,-20.2407,36.6396][0.00587715,-0.445726,0.89515][1,0.85,0][-4.08099,-20.2407,36.6396][0.00587715,-0.445726,0.89515][1,0.85,0][-18.462,-20.2407,33.8][-0.336542,-0.446624,0.829015][0.75,0.85,0][-17.1759,-24.4185,30.7772][-0.272366,-0.690737,0.66985][0.75,0.7,0][-15.8898,-27.2559,27.7545][-0.26885,-0.717289,0.642819][0.75,0.55,0][-4.08099,-27.2559,30.0861][-0.00271152,-0.716431,0.697653][1,0.55,0][-4.08099,-24.4185,33.3628][0.00428548,-0.689854,0.723936][1,0.7,0][-4.08099,-24.4185,33.3628][0.00428548,-0.689854,0.723936][1,0.7,0][-17.1759,-24.4185,30.7772][-0.272366,-0.690737,0.66985][0.75,0.7,0][-15.8898,-27.2559,27.7545][-0.26885,-0.717289,0.642819][0.75,0.55,0][-15.3052,-28.8868,26.3805][-0.30823,-0.603413,0.735451][0.75,0.4,0][-4.08099,-28.8868,28.5967][-0.00363312,-0.60249,0.798118][1,0.4,0][-4.08099,-27.2559,30.0861][-0.00271152,-0.716431,0.697653][1,0.55,0][-4.08099,-27.2559,30.0861][-0.00271152,-0.716431,0.697653][1,0.55,0][-15.8898,-27.2559,27.7545][-0.26885,-0.717289,0.642819][0.75,0.55,0][-15.3052,-28.8868,26.3805][-0.30823,-0.603413,0.735451][0.75,0.4,0][-30.0951,-20.2407,26.0141][-0.6283,-0.447071,0.636684][0.5,0.85,0][-18.462,-20.2407,33.8][-0.336542,-0.446624,0.829015][0.75,0.85,0][-19.0466,-14.5884,35.174][-0.380711,-0.0681309,0.922181][0.75,1,0][-19.0466,-14.5884,35.174][-0.380711,-0.0681309,0.922181][0.75,1,0][-31.1526,-14.5884,27.0716][-0.704874,-0.0681096,0.706055][0.5,1,0][-30.0951,-20.2407,26.0141][-0.6283,-0.447071,0.636684][0.5,0.85,0][-27.7686,-24.4185,23.6876][-0.507875,-0.691303,0.513969][0.5,0.7,0][-17.1759,-24.4185,30.7772][-0.272366,-0.690737,0.66985][0.75,0.7,0][-18.462,-20.2407,33.8][-0.336542,-0.446624,0.829015][0.75,0.85,0][-18.462,-20.2407,33.8][-0.336542,-0.446624,0.829015][0.75,0.85,0][-30.0951,-20.2407,26.0141][-0.6283,-0.447071,0.636684][0.5,0.85,0][-27.7686,-24.4185,23.6876][-0.507875,-0.691303,0.513969][0.5,0.7,0][-25.4422,-27.2559,21.3612][-0.494214,-0.717844,0.49036][0.5,0.55,0][-15.8898,-27.2559,27.7545][-0.26885,-0.717289,0.642819][0.75,0.55,0][-17.1759,-24.4185,30.7772][-0.272366,-0.690737,0.66985][0.75,0.7,0][-17.1759,-24.4185,30.7772][-0.272366,-0.690737,0.66985][0.75,0.7,0][-27.7686,-24.4185,23.6876][-0.507875,-0.691303,0.513969][0.5,0.7,0][-25.4422,-27.2559,21.3612][-0.494214,-0.717844,0.49036][0.5,0.55,0][-24.3847,-28.8868,20.3037][-0.566117,-0.604031,0.560943][0.5,0.4,0][-15.3052,-28.8868,26.3805][-0.30823,-0.603413,0.735451][0.75,0.4,0][-15.8898,-27.2559,27.7545][-0.26885,-0.717289,0.642819][0.75,0.55,0][-15.8898,-27.2559,27.7545][-0.26885,-0.717289,0.642819][0.75,0.55,0][-25.4422,-27.2559,21.3612][-0.494214,-0.717844,0.49036][0.5,0.55,0][-24.3847,-28.8868,20.3037][-0.566117,-0.604031,0.560943][0.5,0.4,0][-37.881,-20.2407,14.381][-0.824517,-0.446481,0.347602][0.25,0.85,0][-30.0951,-20.2407,26.0141][-0.6283,-0.447071,0.636684][0.5,0.85,0][-31.1526,-14.5884,27.0716][-0.704874,-0.0681096,0.706055][0.5,1,0][-31.1526,-14.5884,27.0716][-0.704874,-0.0681096,0.706055][0.5,1,0][-39.255,-14.5884,14.9656][-0.921554,-0.0678885,0.38227][0.25,1,0][-37.881,-20.2407,14.381][-0.824517,-0.446481,0.347602][0.25,0.85,0][-34.8582,-24.4185,13.0949][-0.666533,-0.690732,0.280399][0.25,0.7,0][-27.7686,-24.4185,23.6876][-0.507875,-0.691303,0.513969][0.5,0.7,0][-30.0951,-20.2407,26.0141][-0.6283,-0.447071,0.636684][0.5,0.85,0][-30.0951,-20.2407,26.0141][-0.6283,-0.447071,0.636684][0.5,0.85,0][-37.881,-20.2407,14.381][-0.824517,-0.446481,0.347602][0.25,0.85,0][-34.8582,-24.4185,13.0949][-0.666533,-0.690732,0.280399][0.25,0.7,0][-31.8355,-27.2559,11.8088][-0.644921,-0.717288,0.26377][0.25,0.55,0][-25.4422,-27.2559,21.3612][-0.494214,-0.717844,0.49036][0.5,0.55,0][-27.7686,-24.4185,23.6876][-0.507875,-0.691303,0.513969][0.5,0.7,0][-27.7686,-24.4185,23.6876][-0.507875,-0.691303,0.513969][0.5,0.7,0][-34.8582,-24.4185,13.0949][-0.666533,-0.690732,0.280399][0.25,0.7,0][-31.8355,-27.2559,11.8088][-0.644921,-0.717288,0.26377][0.25,0.55,0][-30.4615,-28.8868,11.2242][-0.73825,-0.603441,0.301408][0.25,0.4,0][-24.3847,-28.8868,20.3037][-0.566117,-0.604031,0.560943][0.5,0.4,0][-25.4422,-27.2559,21.3612][-0.494214,-0.717844,0.49036][0.5,0.55,0][-25.4422,-27.2559,21.3612][-0.494214,-0.717844,0.49036][0.5,0.55,0][-31.8355,-27.2559,11.8088][-0.644921,-0.717288,0.26377][0.25,0.55,0][-30.4615,-28.8868,11.2242][-0.73825,-0.603441,0.301408][0.25,0.4,0][-40.7206,-20.2407,-3.94101e-006][-0.89515,-0.445725,0.00587701][0,0.85,0][-37.881,-20.2407,14.381][-0.824517,-0.446481,0.347602][0.25,0.85,0][-39.255,-14.5884,14.9656][-0.921554,-0.0678885,0.38227][0.25,1,0][-39.255,-14.5884,14.9656][-0.921554,-0.0678885,0.38227][0.25,1,0][-42.21,-14.5884,-2.84047e-006][-0.997695,-0.0678514,0.000825994][0,1,0][-40.7206,-20.2407,-3.94101e-006][-0.89515,-0.445725,0.00587701][0,0.85,0][-37.4438,-24.4185,-4.75446e-006][-0.723936,-0.689854,0.00428535][0,0.7,0][-34.8582,-24.4185,13.0949][-0.666533,-0.690732,0.280399][0.25,0.7,0][-37.881,-20.2407,14.381][-0.824517,-0.446481,0.347602][0.25,0.85,0][-37.881,-20.2407,14.381][-0.824517,-0.446481,0.347602][0.25,0.85,0][-40.7206,-20.2407,-3.94101e-006][-0.89515,-0.445725,0.00587701][0,0.85,0][-37.4438,-24.4185,-4.75446e-006][-0.723936,-0.689854,0.00428535][0,0.7,0][-34.1671,-27.2559,-5.30691e-006][-0.697653,-0.716431,-0.00271166][0,0.55,0][-31.8355,-27.2559,11.8088][-0.644921,-0.717288,0.26377][0.25,0.55,0][-34.8582,-24.4185,13.0949][-0.666533,-0.690732,0.280399][0.25,0.7,0][-34.8582,-24.4185,13.0949][-0.666533,-0.690732,0.280399][0.25,0.7,0][-37.4438,-24.4185,-4.75446e-006][-0.723936,-0.689854,0.00428535][0,0.7,0][-34.1671,-27.2559,-5.30691e-006][-0.697653,-0.716431,-0.00271166][0,0.55,0][-32.6777,-28.8868,-5.62446e-006][-0.798118,-0.60249,-0.00363327][0,0.4,0][-30.4615,-28.8868,11.2242][-0.73825,-0.603441,0.301408][0.25,0.4,0][-31.8355,-27.2559,11.8088][-0.644921,-0.717288,0.26377][0.25,0.55,0][-31.8355,-27.2559,11.8088][-0.644921,-0.717288,0.26377][0.25,0.55,0][-34.1671,-27.2559,-5.30691e-006][-0.697653,-0.716431,-0.00271166][0,0.55,0][-32.6777,-28.8868,-5.62446e-006][-0.798118,-0.60249,-0.00363327][0,0.4,0][-37.881,-20.2407,-14.381][-0.829015,-0.446624,-0.336542][1.75,0.85,0][-40.7206,-20.2407,-3.94101e-006][-0.89515,-0.445725,0.00587701][2,0.85,0][-42.21,-14.5884,-2.84047e-006][-0.997695,-0.0678514,0.000825994][2,1,0][-42.21,-14.5884,-2.84047e-006][-0.997695,-0.0678514,0.000825994][2,1,0][-39.255,-14.5884,-14.9656][-0.922181,-0.0681307,-0.380711][1.75,1,0][-37.881,-20.2407,-14.381][-0.829015,-0.446624,-0.336542][1.75,0.85,0][-34.8582,-24.4185,-13.0949][-0.66985,-0.690737,-0.272366][1.75,0.7,0][-37.4438,-24.4185,-4.75446e-006][-0.723936,-0.689854,0.00428535][2,0.7,0][-40.7206,-20.2407,-3.94101e-006][-0.89515,-0.445725,0.00587701][2,0.85,0][-40.7206,-20.2407,-3.94101e-006][-0.89515,-0.445725,0.00587701][2,0.85,0][-37.881,-20.2407,-14.381][-0.829015,-0.446624,-0.336542][1.75,0.85,0][-34.8582,-24.4185,-13.0949][-0.66985,-0.690737,-0.272366][1.75,0.7,0][-31.8355,-27.2559,-11.8088][-0.642819,-0.717289,-0.26885][1.75,0.55,0][-34.1671,-27.2559,-5.30691e-006][-0.697653,-0.716431,-0.00271166][2,0.55,0][-37.4438,-24.4185,-4.75446e-006][-0.723936,-0.689854,0.00428535][2,0.7,0][-37.4438,-24.4185,-4.75446e-006][-0.723936,-0.689854,0.00428535][2,0.7,0][-34.8582,-24.4185,-13.0949][-0.66985,-0.690737,-0.272366][1.75,0.7,0][-31.8355,-27.2559,-11.8088][-0.642819,-0.717289,-0.26885][1.75,0.55,0][-30.4615,-28.8868,-11.2242][-0.735451,-0.603413,-0.30823][1.75,0.4,0][-32.6777,-28.8868,-5.62446e-006][-0.798118,-0.60249,-0.00363327][2,0.4,0][-34.1671,-27.2559,-5.30691e-006][-0.697653,-0.716431,-0.00271166][2,0.55,0][-34.1671,-27.2559,-5.30691e-006][-0.697653,-0.716431,-0.00271166][2,0.55,0][-31.8355,-27.2559,-11.8088][-0.642819,-0.717289,-0.26885][1.75,0.55,0][-30.4615,-28.8868,-11.2242][-0.735451,-0.603413,-0.30823][1.75,0.4,0][-30.0951,-20.2407,-26.0141][-0.636684,-0.447071,-0.6283][1.5,0.85,0][-37.881,-20.2407,-14.381][-0.829015,-0.446624,-0.336542][1.75,0.85,0][-39.255,-14.5884,-14.9656][-0.922181,-0.0681307,-0.380711][1.75,1,0][-39.255,-14.5884,-14.9656][-0.922181,-0.0681307,-0.380711][1.75,1,0][-31.1526,-14.5884,-27.0716][-0.706055,-0.0681093,-0.704874][1.5,1,0][-30.0951,-20.2407,-26.0141][-0.636684,-0.447071,-0.6283][1.5,0.85,0][-27.7686,-24.4185,-23.6876][-0.513969,-0.691302,-0.507875][1.5,0.7,0][-34.8582,-24.4185,-13.0949][-0.66985,-0.690737,-0.272366][1.75,0.7,0][-37.881,-20.2407,-14.381][-0.829015,-0.446624,-0.336542][1.75,0.85,0][-37.881,-20.2407,-14.381][-0.829015,-0.446624,-0.336542][1.75,0.85,0][-30.0951,-20.2407,-26.0141][-0.636684,-0.447071,-0.6283][1.5,0.85,0][-27.7686,-24.4185,-23.6876][-0.513969,-0.691302,-0.507875][1.5,0.7,0][-25.4422,-27.2559,-21.3612][-0.49036,-0.717844,-0.494214][1.5,0.55,0][-31.8355,-27.2559,-11.8088][-0.642819,-0.717289,-0.26885][1.75,0.55,0][-34.8582,-24.4185,-13.0949][-0.66985,-0.690737,-0.272366][1.75,0.7,0][-34.8582,-24.4185,-13.0949][-0.66985,-0.690737,-0.272366][1.75,0.7,0][-27.7686,-24.4185,-23.6876][-0.513969,-0.691302,-0.507875][1.5,0.7,0][-25.4422,-27.2559,-21.3612][-0.49036,-0.717844,-0.494214][1.5,0.55,0][-24.3847,-28.8868,-20.3037][-0.560944,-0.604031,-0.566117][1.5,0.4,0][-30.4615,-28.8868,-11.2242][-0.735451,-0.603413,-0.30823][1.75,0.4,0][-31.8355,-27.2559,-11.8088][-0.642819,-0.717289,-0.26885][1.75,0.55,0][-31.8355,-27.2559,-11.8088][-0.642819,-0.717289,-0.26885][1.75,0.55,0][-25.4422,-27.2559,-21.3612][-0.49036,-0.717844,-0.494214][1.5,0.55,0][-24.3847,-28.8868,-20.3037][-0.560944,-0.604031,-0.566117][1.5,0.4,0][-18.462,-20.2407,-33.8][-0.347602,-0.446481,-0.824517][1.25,0.85,0][-30.0951,-20.2407,-26.0141][-0.636684,-0.447071,-0.6283][1.5,0.85,0][-31.1526,-14.5884,-27.0716][-0.706055,-0.0681093,-0.704874][1.5,1,0][-31.1526,-14.5884,-27.0716][-0.706055,-0.0681093,-0.704874][1.5,1,0][-19.0466,-14.5884,-35.174][-0.38227,-0.0678884,-0.921554][1.25,1,0][-18.462,-20.2407,-33.8][-0.347602,-0.446481,-0.824517][1.25,0.85,0][-17.1759,-24.4185,-30.7772][-0.280399,-0.690732,-0.666533][1.25,0.7,0][-27.7686,-24.4185,-23.6876][-0.513969,-0.691302,-0.507875][1.5,0.7,0][-30.0951,-20.2407,-26.0141][-0.636684,-0.447071,-0.6283][1.5,0.85,0][-30.0951,-20.2407,-26.0141][-0.636684,-0.447071,-0.6283][1.5,0.85,0][-18.462,-20.2407,-33.8][-0.347602,-0.446481,-0.824517][1.25,0.85,0][-17.1759,-24.4185,-30.7772][-0.280399,-0.690732,-0.666533][1.25,0.7,0][-15.8898,-27.2558,-27.7545][-0.26377,-0.717287,-0.644922][1.25,0.55,0][-25.4422,-27.2559,-21.3612][-0.49036,-0.717844,-0.494214][1.5,0.55,0][-27.7686,-24.4185,-23.6876][-0.513969,-0.691302,-0.507875][1.5,0.7,0][-27.7686,-24.4185,-23.6876][-0.513969,-0.691302,-0.507875][1.5,0.7,0][-17.1759,-24.4185,-30.7772][-0.280399,-0.690732,-0.666533][1.25,0.7,0][-15.8898,-27.2558,-27.7545][-0.26377,-0.717287,-0.644922][1.25,0.55,0][-15.3052,-28.8868,-26.3805][-0.301408,-0.603441,-0.73825][1.25,0.4,0][-24.3847,-28.8868,-20.3037][-0.560944,-0.604031,-0.566117][1.5,0.4,0][-25.4422,-27.2559,-21.3612][-0.49036,-0.717844,-0.494214][1.5,0.55,0][-25.4422,-27.2559,-21.3612][-0.49036,-0.717844,-0.494214][1.5,0.55,0][-15.8898,-27.2558,-27.7545][-0.26377,-0.717287,-0.644922][1.25,0.55,0][-15.3052,-28.8868,-26.3805][-0.301408,-0.603441,-0.73825][1.25,0.4,0][-4.08099,-20.2407,-36.6396][-0.00587706,-0.445725,-0.895151][1,0.85,0][-18.462,-20.2407,-33.8][-0.347602,-0.446481,-0.824517][1.25,0.85,0][-19.0466,-14.5884,-35.174][-0.38227,-0.0678884,-0.921554][1.25,1,0][-19.0466,-14.5884,-35.174][-0.38227,-0.0678884,-0.921554][1.25,1,0][-4.08099,-14.5884,-38.129][-0.000826005,-0.0678513,-0.997695][1,1,0][-4.08099,-20.2407,-36.6396][-0.00587706,-0.445725,-0.895151][1,0.85,0][-4.08099,-24.4185,-33.3629][-0.00428548,-0.689854,-0.723936][1,0.7,0][-17.1759,-24.4185,-30.7772][-0.280399,-0.690732,-0.666533][1.25,0.7,0][-18.462,-20.2407,-33.8][-0.347602,-0.446481,-0.824517][1.25,0.85,0][-18.462,-20.2407,-33.8][-0.347602,-0.446481,-0.824517][1.25,0.85,0][-4.08099,-20.2407,-36.6396][-0.00587706,-0.445725,-0.895151][1,0.85,0][-4.08099,-24.4185,-33.3629][-0.00428548,-0.689854,-0.723936][1,0.7,0][-4.08099,-27.2558,-30.0861][0.00271141,-0.716431,-0.697653][1,0.55,0][-15.8898,-27.2558,-27.7545][-0.26377,-0.717287,-0.644922][1.25,0.55,0][-17.1759,-24.4185,-30.7772][-0.280399,-0.690732,-0.666533][1.25,0.7,0][-17.1759,-24.4185,-30.7772][-0.280399,-0.690732,-0.666533][1.25,0.7,0][-4.08099,-24.4185,-33.3629][-0.00428548,-0.689854,-0.723936][1,0.7,0][-4.08099,-27.2558,-30.0861][0.00271141,-0.716431,-0.697653][1,0.55,0][-4.08099,-28.8868,-28.5967][0.00363315,-0.60249,-0.798118][1,0.4,0][-15.3052,-28.8868,-26.3805][-0.301408,-0.603441,-0.73825][1.25,0.4,0][-15.8898,-27.2558,-27.7545][-0.26377,-0.717287,-0.644922][1.25,0.55,0][-15.8898,-27.2558,-27.7545][-0.26377,-0.717287,-0.644922][1.25,0.55,0][-4.08099,-27.2558,-30.0861][0.00271141,-0.716431,-0.697653][1,0.55,0][-4.08099,-28.8868,-28.5967][0.00363315,-0.60249,-0.798118][1,0.4,0][10.3,-20.2407,-33.8][0.336542,-0.446624,-0.829015][0.75,0.85,0][-4.08099,-20.2407,-36.6396][-0.00587706,-0.445725,-0.895151][1,0.85,0][-4.08099,-14.5884,-38.129][-0.000826005,-0.0678513,-0.997695][1,1,0][-4.08099,-14.5884,-38.129][-0.000826005,-0.0678513,-0.997695][1,1,0][10.8846,-14.5884,-35.174][0.380711,-0.0681308,-0.922181][0.75,1,0][10.3,-20.2407,-33.8][0.336542,-0.446624,-0.829015][0.75,0.85,0][9.01393,-24.4185,-30.7772][0.272366,-0.690737,-0.66985][0.75,0.7,0][-4.08099,-24.4185,-33.3629][-0.00428548,-0.689854,-0.723936][1,0.7,0][-4.08099,-20.2407,-36.6396][-0.00587706,-0.445725,-0.895151][1,0.85,0][-4.08099,-20.2407,-36.6396][-0.00587706,-0.445725,-0.895151][1,0.85,0][10.3,-20.2407,-33.8][0.336542,-0.446624,-0.829015][0.75,0.85,0][9.01393,-24.4185,-30.7772][0.272366,-0.690737,-0.66985][0.75,0.7,0][7.72782,-27.2558,-27.7545][0.26885,-0.717289,-0.642819][0.75,0.55,0][-4.08099,-27.2558,-30.0861][0.00271141,-0.716431,-0.697653][1,0.55,0][-4.08099,-24.4185,-33.3629][-0.00428548,-0.689854,-0.723936][1,0.7,0][-4.08099,-24.4185,-33.3629][-0.00428548,-0.689854,-0.723936][1,0.7,0][9.01393,-24.4185,-30.7772][0.272366,-0.690737,-0.66985][0.75,0.7,0][7.72782,-27.2558,-27.7545][0.26885,-0.717289,-0.642819][0.75,0.55,0][7.14322,-28.8868,-26.3805][0.30823,-0.603413,-0.735451][0.75,0.4,0][-4.08099,-28.8868,-28.5967][0.00363315,-0.60249,-0.798118][1,0.4,0][-4.08099,-27.2558,-30.0861][0.00271141,-0.716431,-0.697653][1,0.55,0][-4.08099,-27.2558,-30.0861][0.00271141,-0.716431,-0.697653][1,0.55,0][7.72782,-27.2558,-27.7545][0.26885,-0.717289,-0.642819][0.75,0.55,0][7.14322,-28.8868,-26.3805][0.30823,-0.603413,-0.735451][0.75,0.4,0][21.9331,-20.2407,-26.0141][0.6283,-0.447071,-0.636684][0.5,0.85,0][10.3,-20.2407,-33.8][0.336542,-0.446624,-0.829015][0.75,0.85,0][10.8846,-14.5884,-35.174][0.380711,-0.0681308,-0.922181][0.75,1,0][10.8846,-14.5884,-35.174][0.380711,-0.0681308,-0.922181][0.75,1,0][22.9906,-14.5884,-27.0716][0.704874,-0.0681093,-0.706055][0.5,1,0][21.9331,-20.2407,-26.0141][0.6283,-0.447071,-0.636684][0.5,0.85,0][19.6066,-24.4185,-23.6876][0.507875,-0.691302,-0.513969][0.5,0.7,0][9.01393,-24.4185,-30.7772][0.272366,-0.690737,-0.66985][0.75,0.7,0][10.3,-20.2407,-33.8][0.336542,-0.446624,-0.829015][0.75,0.85,0][10.3,-20.2407,-33.8][0.336542,-0.446624,-0.829015][0.75,0.85,0][21.9331,-20.2407,-26.0141][0.6283,-0.447071,-0.636684][0.5,0.85,0][19.6066,-24.4185,-23.6876][0.507875,-0.691302,-0.513969][0.5,0.7,0][17.2802,-27.2559,-21.3612][0.494214,-0.717843,-0.49036][0.5,0.55,0][7.72782,-27.2558,-27.7545][0.26885,-0.717289,-0.642819][0.75,0.55,0][9.01393,-24.4185,-30.7772][0.272366,-0.690737,-0.66985][0.75,0.7,0][9.01393,-24.4185,-30.7772][0.272366,-0.690737,-0.66985][0.75,0.7,0][19.6066,-24.4185,-23.6876][0.507875,-0.691302,-0.513969][0.5,0.7,0][17.2802,-27.2559,-21.3612][0.494214,-0.717843,-0.49036][0.5,0.55,0][16.2227,-28.8868,-20.3037][0.566117,-0.604031,-0.560944][0.5,0.4,0][7.14322,-28.8868,-26.3805][0.30823,-0.603413,-0.735451][0.75,0.4,0][7.72782,-27.2558,-27.7545][0.26885,-0.717289,-0.642819][0.75,0.55,0][7.72782,-27.2558,-27.7545][0.26885,-0.717289,-0.642819][0.75,0.55,0][17.2802,-27.2559,-21.3612][0.494214,-0.717843,-0.49036][0.5,0.55,0][16.2227,-28.8868,-20.3037][0.566117,-0.604031,-0.560944][0.5,0.4,0][29.719,-20.2407,-14.381][0.824517,-0.446481,-0.347602][0.25,0.85,0][21.9331,-20.2407,-26.0141][0.6283,-0.447071,-0.636684][0.5,0.85,0][22.9906,-14.5884,-27.0716][0.704874,-0.0681093,-0.706055][0.5,1,0][22.9906,-14.5884,-27.0716][0.704874,-0.0681093,-0.706055][0.5,1,0][31.093,-14.5884,-14.9656][0.921554,-0.0678883,-0.38227][0.25,1,0][29.719,-20.2407,-14.381][0.824517,-0.446481,-0.347602][0.25,0.85,0][26.6962,-24.4185,-13.0949][0.666533,-0.690732,-0.280399][0.25,0.7,0][19.6066,-24.4185,-23.6876][0.507875,-0.691302,-0.513969][0.5,0.7,0][21.9331,-20.2407,-26.0141][0.6283,-0.447071,-0.636684][0.5,0.85,0][21.9331,-20.2407,-26.0141][0.6283,-0.447071,-0.636684][0.5,0.85,0][29.719,-20.2407,-14.381][0.824517,-0.446481,-0.347602][0.25,0.85,0][26.6962,-24.4185,-13.0949][0.666533,-0.690732,-0.280399][0.25,0.7,0][23.6735,-27.2559,-11.8088][0.644922,-0.717287,-0.26377][0.25,0.55,0][17.2802,-27.2559,-21.3612][0.494214,-0.717843,-0.49036][0.5,0.55,0][19.6066,-24.4185,-23.6876][0.507875,-0.691302,-0.513969][0.5,0.7,0][19.6066,-24.4185,-23.6876][0.507875,-0.691302,-0.513969][0.5,0.7,0][26.6962,-24.4185,-13.0949][0.666533,-0.690732,-0.280399][0.25,0.7,0][23.6735,-27.2559,-11.8088][0.644922,-0.717287,-0.26377][0.25,0.55,0][22.2995,-28.8868,-11.2242][0.73825,-0.603441,-0.301408][0.25,0.4,0][16.2227,-28.8868,-20.3037][0.566117,-0.604031,-0.560944][0.5,0.4,0][17.2802,-27.2559,-21.3612][0.494214,-0.717843,-0.49036][0.5,0.55,0][17.2802,-27.2559,-21.3612][0.494214,-0.717843,-0.49036][0.5,0.55,0][23.6735,-27.2559,-11.8088][0.644922,-0.717287,-0.26377][0.25,0.55,0][22.2995,-28.8868,-11.2242][0.73825,-0.603441,-0.301408][0.25,0.4,0][32.5586,-20.2407,-3.94101e-006][0.895151,-0.445725,-0.00587718][0,0.85,0][29.719,-20.2407,-14.381][0.824517,-0.446481,-0.347602][0.25,0.85,0][31.093,-14.5884,-14.9656][0.921554,-0.0678883,-0.38227][0.25,1,0][31.093,-14.5884,-14.9656][0.921554,-0.0678883,-0.38227][0.25,1,0][34.048,-14.5884,-2.84047e-006][0.997695,-0.0678514,-0.000826041][0,1,0][32.5586,-20.2407,-3.94101e-006][0.895151,-0.445725,-0.00587718][0,0.85,0][29.2819,-24.4185,-4.75446e-006][0.723936,-0.689854,-0.00428558][0,0.7,0][26.6962,-24.4185,-13.0949][0.666533,-0.690732,-0.280399][0.25,0.7,0][29.719,-20.2407,-14.381][0.824517,-0.446481,-0.347602][0.25,0.85,0][29.719,-20.2407,-14.381][0.824517,-0.446481,-0.347602][0.25,0.85,0][32.5586,-20.2407,-3.94101e-006][0.895151,-0.445725,-0.00587718][0,0.85,0][29.2819,-24.4185,-4.75446e-006][0.723936,-0.689854,-0.00428558][0,0.7,0][26.0052,-27.2559,-5.30691e-006][0.697653,-0.716431,0.00271131][0,0.55,0][23.6735,-27.2559,-11.8088][0.644922,-0.717287,-0.26377][0.25,0.55,0][26.6962,-24.4185,-13.0949][0.666533,-0.690732,-0.280399][0.25,0.7,0][26.6962,-24.4185,-13.0949][0.666533,-0.690732,-0.280399][0.25,0.7,0][29.2819,-24.4185,-4.75446e-006][0.723936,-0.689854,-0.00428558][0,0.7,0][26.0052,-27.2559,-5.30691e-006][0.697653,-0.716431,0.00271131][0,0.55,0][24.5157,-28.8868,-5.62446e-006][0.798118,-0.60249,0.00363301][0,0.4,0][22.2995,-28.8868,-11.2242][0.73825,-0.603441,-0.301408][0.25,0.4,0][23.6735,-27.2559,-11.8088][0.644922,-0.717287,-0.26377][0.25,0.55,0][23.6735,-27.2559,-11.8088][0.644922,-0.717287,-0.26377][0.25,0.55,0][26.0052,-27.2559,-5.30691e-006][0.697653,-0.716431,0.00271131][0,0.55,0][24.5157,-28.8868,-5.62446e-006][0.798118,-0.60249,0.00363301][0,0.4,0][21.7018,-29.9368,10.9699][0.556004,-0.804954,0.207145][1.75,0.3,0][23.8678,-29.9368,-5.82891e-006][0.593652,-0.804452,-0.0208408][2,0.3,0][24.5157,-28.8868,-5.62446e-006][0.798118,-0.60249,0.00363301][2,0.4,0][24.5157,-28.8868,-5.62446e-006][0.798118,-0.60249,0.00363301][2,0.4,0][22.2995,-28.8868,11.2242][0.735451,-0.603413,0.308229][1.75,0.4,0][21.7018,-29.9368,10.9699][0.556004,-0.804954,0.207145][1.75,0.3,0][18.5073,-30.8528,9.61073][0.155628,-0.986122,0.0578295][1.75,0.2,0][20.405,-30.8528,-6.00726e-006][0.166252,-0.986065,-0.00594939][2,0.2,0][23.8678,-29.9368,-5.82891e-006][0.593652,-0.804452,-0.0208408][2,0.3,0][23.8678,-29.9368,-5.82891e-006][0.593652,-0.804452,-0.0208408][2,0.3,0][21.7018,-29.9368,10.9699][0.556004,-0.804954,0.207145][1.75,0.3,0][18.5073,-30.8528,9.61073][0.155628,-0.986122,0.0578295][1.75,0.2,0][10.6138,-31.5007,6.25223][0.0486496,-0.998674,0.0168487][1.75,0.1,0][11.8483,-31.5007,-6.13341e-006][0.0514921,-0.998669,-0.00298292][2,0.1,0][20.405,-30.8528,-6.00726e-006][0.166252,-0.986065,-0.00594939][2,0.2,0][20.405,-30.8528,-6.00726e-006][0.166252,-0.986065,-0.00594939][2,0.2,0][18.5073,-30.8528,9.61073][0.155628,-0.986122,0.0578295][1.75,0.2,0][10.6138,-31.5007,6.25223][0.0486496,-0.998674,0.0168487][1.75,0.1,0][11.8483,-31.5007,-6.13341e-006][0.0514921,-0.998669,-0.00298292][2,0.1,0][10.6138,-31.5007,6.25223][0.0486496,-0.998674,0.0168487][1.75,0.1,0][-4.08099,-31.7464,-6.18126e-006][0,-1,-2.02355e-007][1.75,0,0][15.7627,-29.9368,19.8437][0.433746,-0.805297,0.40418][1.5,0.3,0][21.7018,-29.9368,10.9699][0.556004,-0.804954,0.207145][1.75,0.3,0][22.2995,-28.8868,11.2242][0.735451,-0.603413,0.308229][1.75,0.4,0][22.2995,-28.8868,11.2242][0.735451,-0.603413,0.308229][1.75,0.4,0][16.2227,-28.8868,20.3037][0.560944,-0.604031,0.566117][1.5,0.4,0][15.7627,-29.9368,19.8437][0.433746,-0.805297,0.40418][1.5,0.3,0][13.304,-30.8528,17.385][0.121305,-0.986174,0.112895][1.5,0.2,0][18.5073,-30.8528,9.61073][0.155628,-0.986122,0.0578295][1.75,0.2,0][21.7018,-29.9368,10.9699][0.556004,-0.804954,0.207145][1.75,0.3,0][21.7018,-29.9368,10.9699][0.556004,-0.804954,0.207145][1.75,0.3,0][15.7627,-29.9368,19.8437][0.433746,-0.805297,0.40418][1.5,0.3,0][13.304,-30.8528,17.385][0.121305,-0.986174,0.112895][1.5,0.2,0][7.22879,-31.5007,11.3098][0.0383703,-0.99868,0.0341548][1.5,0.1,0][10.6138,-31.5007,6.25223][0.0486496,-0.998674,0.0168487][1.75,0.1,0][18.5073,-30.8528,9.61073][0.155628,-0.986122,0.0578295][1.75,0.2,0][18.5073,-30.8528,9.61073][0.155628,-0.986122,0.0578295][1.75,0.2,0][13.304,-30.8528,17.385][0.121305,-0.986174,0.112895][1.5,0.2,0][7.22879,-31.5007,11.3098][0.0383703,-0.99868,0.0341548][1.5,0.1,0][10.6138,-31.5007,6.25223][0.0486496,-0.998674,0.0168487][1.75,0.1,0][7.22879,-31.5007,11.3098][0.0383703,-0.99868,0.0341548][1.5,0.1,0][-4.08099,-31.7464,-6.18126e-006][0,-1,-2.02355e-007][1.5,0,0][6.88893,-29.9368,25.7828][0.246112,-0.805032,0.53977][1.25,0.3,0][15.7627,-29.9368,19.8437][0.433746,-0.805297,0.40418][1.5,0.3,0][16.2227,-28.8868,20.3037][0.560944,-0.604031,0.566117][1.5,0.4,0][16.2227,-28.8868,20.3037][0.560944,-0.604031,0.566117][1.5,0.4,0][7.14322,-28.8868,26.3805][0.301408,-0.603441,0.73825][1.25,0.4,0][6.88893,-29.9368,25.7828][0.246112,-0.805032,0.53977][1.25,0.3,0][5.52974,-30.8528,22.5883][0.0689002,-0.986141,0.150926][1.25,0.2,0][13.304,-30.8528,17.385][0.121305,-0.986174,0.112895][1.5,0.2,0][15.7627,-29.9368,19.8437][0.433746,-0.805297,0.40418][1.5,0.3,0][15.7627,-29.9368,19.8437][0.433746,-0.805297,0.40418][1.5,0.3,0][6.88893,-29.9368,25.7828][0.246112,-0.805032,0.53977][1.25,0.3,0][5.52974,-30.8528,22.5883][0.0689002,-0.986141,0.150926][1.25,0.2,0][2.17125,-31.5007,14.6947][0.0223969,-0.998677,0.0462892][1.25,0.1,0][7.22879,-31.5007,11.3098][0.0383703,-0.99868,0.0341548][1.5,0.1,0][13.304,-30.8528,17.385][0.121305,-0.986174,0.112895][1.5,0.2,0][13.304,-30.8528,17.385][0.121305,-0.986174,0.112895][1.5,0.2,0][5.52974,-30.8528,22.5883][0.0689002,-0.986141,0.150926][1.25,0.2,0][2.17125,-31.5007,14.6947][0.0223969,-0.998677,0.0462892][1.25,0.1,0][7.22879,-31.5007,11.3098][0.0383703,-0.99868,0.0341548][1.5,0.1,0][2.17125,-31.5007,14.6947][0.0223969,-0.998677,0.0462892][1.25,0.1,0][-4.08099,-31.7464,-6.18126e-006][0,-1,-2.02355e-007][1.25,0,0][-4.08099,-29.9368,27.9488][0.0208406,-0.804452,0.593652][1,0.3,0][6.88893,-29.9368,25.7828][0.246112,-0.805032,0.53977][1.25,0.3,0][7.14322,-28.8868,26.3805][0.301408,-0.603441,0.73825][1.25,0.4,0][7.14322,-28.8868,26.3805][0.301408,-0.603441,0.73825][1.25,0.4,0][-4.08099,-28.8868,28.5967][-0.00363312,-0.60249,0.798118][1,0.4,0][-4.08099,-29.9368,27.9488][0.0208406,-0.804452,0.593652][1,0.3,0][-4.08099,-30.8528,24.4859][0.00594922,-0.986065,0.166252][1,0.2,0][5.52974,-30.8528,22.5883][0.0689002,-0.986141,0.150926][1.25,0.2,0][6.88893,-29.9368,25.7828][0.246112,-0.805032,0.53977][1.25,0.3,0][6.88893,-29.9368,25.7828][0.246112,-0.805032,0.53977][1.25,0.3,0][-4.08099,-29.9368,27.9488][0.0208406,-0.804452,0.593652][1,0.3,0][-4.08099,-30.8528,24.4859][0.00594922,-0.986065,0.166252][1,0.2,0][-4.08099,-31.5007,15.9293][0.0029828,-0.998669,0.0514919][1,0.1,0][2.17125,-31.5007,14.6947][0.0223969,-0.998677,0.0462892][1.25,0.1,0][5.52974,-30.8528,22.5883][0.0689002,-0.986141,0.150926][1.25,0.2,0][5.52974,-30.8528,22.5883][0.0689002,-0.986141,0.150926][1.25,0.2,0][-4.08099,-30.8528,24.4859][0.00594922,-0.986065,0.166252][1,0.2,0][-4.08099,-31.5007,15.9293][0.0029828,-0.998669,0.0514919][1,0.1,0][2.17125,-31.5007,14.6947][0.0223969,-0.998677,0.0462892][1.25,0.1,0][-4.08099,-31.5007,15.9293][0.0029828,-0.998669,0.0514919][1,0.1,0][-4.08099,-31.7464,-6.18126e-006][0,-1,-2.02355e-007][1,0,0][-15.0509,-29.9368,25.7828][-0.207146,-0.804954,0.556004][0.75,0.3,0][-4.08099,-29.9368,27.9488][0.0208406,-0.804452,0.593652][1,0.3,0][-4.08099,-28.8868,28.5967][-0.00363312,-0.60249,0.798118][1,0.4,0][-4.08099,-28.8868,28.5967][-0.00363312,-0.60249,0.798118][1,0.4,0][-15.3052,-28.8868,26.3805][-0.30823,-0.603413,0.735451][0.75,0.4,0][-15.0509,-29.9368,25.7828][-0.207146,-0.804954,0.556004][0.75,0.3,0][-13.6917,-30.8528,22.5883][-0.0578297,-0.986122,0.155628][0.75,0.2,0][-4.08099,-30.8528,24.4859][0.00594922,-0.986065,0.166252][1,0.2,0][-4.08099,-29.9368,27.9488][0.0208406,-0.804452,0.593652][1,0.3,0][-4.08099,-29.9368,27.9488][0.0208406,-0.804452,0.593652][1,0.3,0][-15.0509,-29.9368,25.7828][-0.207146,-0.804954,0.556004][0.75,0.3,0][-13.6917,-30.8528,22.5883][-0.0578297,-0.986122,0.155628][0.75,0.2,0][-10.3332,-31.5007,14.6947][-0.0168489,-0.998674,0.0486494][0.75,0.1,0][-4.08099,-31.5007,15.9293][0.0029828,-0.998669,0.0514919][1,0.1,0][-4.08099,-30.8528,24.4859][0.00594922,-0.986065,0.166252][1,0.2,0][-4.08099,-30.8528,24.4859][0.00594922,-0.986065,0.166252][1,0.2,0][-13.6917,-30.8528,22.5883][-0.0578297,-0.986122,0.155628][0.75,0.2,0][-10.3332,-31.5007,14.6947][-0.0168489,-0.998674,0.0486494][0.75,0.1,0][-4.08099,-31.5007,15.9293][0.0029828,-0.998669,0.0514919][1,0.1,0][-10.3332,-31.5007,14.6947][-0.0168489,-0.998674,0.0486494][0.75,0.1,0][-4.08099,-31.7464,-6.18126e-006][0,-1,-2.02355e-007][0.75,0,0][-23.9247,-29.9368,19.8437][-0.40418,-0.805297,0.433746][0.5,0.3,0][-15.0509,-29.9368,25.7828][-0.207146,-0.804954,0.556004][0.75,0.3,0][-15.3052,-28.8868,26.3805][-0.30823,-0.603413,0.735451][0.75,0.4,0][-15.3052,-28.8868,26.3805][-0.30823,-0.603413,0.735451][0.75,0.4,0][-24.3847,-28.8868,20.3037][-0.566117,-0.604031,0.560943][0.5,0.4,0][-23.9247,-29.9368,19.8437][-0.40418,-0.805297,0.433746][0.5,0.3,0][-21.466,-30.8528,17.385][-0.112895,-0.986174,0.121305][0.5,0.2,0][-13.6917,-30.8528,22.5883][-0.0578297,-0.986122,0.155628][0.75,0.2,0][-15.0509,-29.9368,25.7828][-0.207146,-0.804954,0.556004][0.75,0.3,0][-15.0509,-29.9368,25.7828][-0.207146,-0.804954,0.556004][0.75,0.3,0][-23.9247,-29.9368,19.8437][-0.40418,-0.805297,0.433746][0.5,0.3,0][-21.466,-30.8528,17.385][-0.112895,-0.986174,0.121305][0.5,0.2,0][-15.3908,-31.5007,11.3098][-0.0341551,-0.99868,0.0383701][0.5,0.1,0][-10.3332,-31.5007,14.6947][-0.0168489,-0.998674,0.0486494][0.75,0.1,0][-13.6917,-30.8528,22.5883][-0.0578297,-0.986122,0.155628][0.75,0.2,0][-13.6917,-30.8528,22.5883][-0.0578297,-0.986122,0.155628][0.75,0.2,0][-21.466,-30.8528,17.385][-0.112895,-0.986174,0.121305][0.5,0.2,0][-15.3908,-31.5007,11.3098][-0.0341551,-0.99868,0.0383701][0.5,0.1,0][-10.3332,-31.5007,14.6947][-0.0168489,-0.998674,0.0486494][0.75,0.1,0][-15.3908,-31.5007,11.3098][-0.0341551,-0.99868,0.0383701][0.5,0.1,0][-4.08099,-31.7464,-6.18126e-006][0,-1,-2.02355e-007][0.5,0,0][-29.8638,-29.9368,10.9699][-0.539771,-0.805032,0.246112][0.25,0.3,0][-23.9247,-29.9368,19.8437][-0.40418,-0.805297,0.433746][0.5,0.3,0][-24.3847,-28.8868,20.3037][-0.566117,-0.604031,0.560943][0.5,0.4,0][-24.3847,-28.8868,20.3037][-0.566117,-0.604031,0.560943][0.5,0.4,0][-30.4615,-28.8868,11.2242][-0.73825,-0.603441,0.301408][0.25,0.4,0][-29.8638,-29.9368,10.9699][-0.539771,-0.805032,0.246112][0.25,0.3,0][-26.6693,-30.8528,9.61073][-0.150926,-0.986141,0.0689][0.25,0.2,0][-21.466,-30.8528,17.385][-0.112895,-0.986174,0.121305][0.5,0.2,0][-23.9247,-29.9368,19.8437][-0.40418,-0.805297,0.433746][0.5,0.3,0][-23.9247,-29.9368,19.8437][-0.40418,-0.805297,0.433746][0.5,0.3,0][-29.8638,-29.9368,10.9699][-0.539771,-0.805032,0.246112][0.25,0.3,0][-26.6693,-30.8528,9.61073][-0.150926,-0.986141,0.0689][0.25,0.2,0][-18.7757,-31.5007,6.25223][-0.0462894,-0.998677,0.0223968][0.25,0.1,0][-15.3908,-31.5007,11.3098][-0.0341551,-0.99868,0.0383701][0.5,0.1,0][-21.466,-30.8528,17.385][-0.112895,-0.986174,0.121305][0.5,0.2,0][-21.466,-30.8528,17.385][-0.112895,-0.986174,0.121305][0.5,0.2,0][-26.6693,-30.8528,9.61073][-0.150926,-0.986141,0.0689][0.25,0.2,0][-18.7757,-31.5007,6.25223][-0.0462894,-0.998677,0.0223968][0.25,0.1,0][-15.3908,-31.5007,11.3098][-0.0341551,-0.99868,0.0383701][0.5,0.1,0][-18.7757,-31.5007,6.25223][-0.0462894,-0.998677,0.0223968][0.25,0.1,0][-4.08099,-31.7464,-6.18126e-006][0,-1,-2.02355e-007][0.25,0,0][-32.0298,-29.9368,-5.82891e-006][-0.593652,-0.804452,0.0208405][0,0.3,0][-29.8638,-29.9368,10.9699][-0.539771,-0.805032,0.246112][0.25,0.3,0][-30.4615,-28.8868,11.2242][-0.73825,-0.603441,0.301408][0.25,0.4,0][-30.4615,-28.8868,11.2242][-0.73825,-0.603441,0.301408][0.25,0.4,0][-32.6777,-28.8868,-5.62446e-006][-0.798118,-0.60249,-0.00363327][0,0.4,0][-32.0298,-29.9368,-5.82891e-006][-0.593652,-0.804452,0.0208405][0,0.3,0][-28.5669,-30.8528,-6.00726e-006][-0.166252,-0.986065,0.00594903][0,0.2,0][-26.6693,-30.8528,9.61073][-0.150926,-0.986141,0.0689][0.25,0.2,0][-29.8638,-29.9368,10.9699][-0.539771,-0.805032,0.246112][0.25,0.3,0][-29.8638,-29.9368,10.9699][-0.539771,-0.805032,0.246112][0.25,0.3,0][-32.0298,-29.9368,-5.82891e-006][-0.593652,-0.804452,0.0208405][0,0.3,0][-28.5669,-30.8528,-6.00726e-006][-0.166252,-0.986065,0.00594903][0,0.2,0][-20.0103,-31.5007,-6.13341e-006][-0.0514921,-0.998669,0.00298259][0,0.1,0][-18.7757,-31.5007,6.25223][-0.0462894,-0.998677,0.0223968][0.25,0.1,0][-26.6693,-30.8528,9.61073][-0.150926,-0.986141,0.0689][0.25,0.2,0][-26.6693,-30.8528,9.61073][-0.150926,-0.986141,0.0689][0.25,0.2,0][-28.5669,-30.8528,-6.00726e-006][-0.166252,-0.986065,0.00594903][0,0.2,0][-20.0103,-31.5007,-6.13341e-006][-0.0514921,-0.998669,0.00298259][0,0.1,0][-18.7757,-31.5007,6.25223][-0.0462894,-0.998677,0.0223968][0.25,0.1,0][-20.0103,-31.5007,-6.13341e-006][-0.0514921,-0.998669,0.00298259][0,0.1,0][-4.08099,-31.7464,-6.18126e-006][0,-1,-2.02355e-007][0,0,0][-29.8638,-29.9368,-10.9699][-0.556004,-0.804954,-0.207146][1.75,0.3,0][-32.0298,-29.9368,-5.82891e-006][-0.593652,-0.804452,0.0208405][2,0.3,0][-32.6777,-28.8868,-5.62446e-006][-0.798118,-0.60249,-0.00363327][2,0.4,0][-32.6777,-28.8868,-5.62446e-006][-0.798118,-0.60249,-0.00363327][2,0.4,0][-30.4615,-28.8868,-11.2242][-0.735451,-0.603413,-0.30823][1.75,0.4,0][-29.8638,-29.9368,-10.9699][-0.556004,-0.804954,-0.207146][1.75,0.3,0][-26.6693,-30.8528,-9.61074][-0.155628,-0.986122,-0.0578299][1.75,0.2,0][-28.5669,-30.8528,-6.00726e-006][-0.166252,-0.986065,0.00594903][2,0.2,0][-32.0298,-29.9368,-5.82891e-006][-0.593652,-0.804452,0.0208405][2,0.3,0][-32.0298,-29.9368,-5.82891e-006][-0.593652,-0.804452,0.0208405][2,0.3,0][-29.8638,-29.9368,-10.9699][-0.556004,-0.804954,-0.207146][1.75,0.3,0][-26.6693,-30.8528,-9.61074][-0.155628,-0.986122,-0.0578299][1.75,0.2,0][-18.7757,-31.5007,-6.25225][-0.0486496,-0.998674,-0.0168492][1.75,0.1,0][-20.0103,-31.5007,-6.13341e-006][-0.0514921,-0.998669,0.00298259][2,0.1,0][-28.5669,-30.8528,-6.00726e-006][-0.166252,-0.986065,0.00594903][2,0.2,0][-28.5669,-30.8528,-6.00726e-006][-0.166252,-0.986065,0.00594903][2,0.2,0][-26.6693,-30.8528,-9.61074][-0.155628,-0.986122,-0.0578299][1.75,0.2,0][-18.7757,-31.5007,-6.25225][-0.0486496,-0.998674,-0.0168492][1.75,0.1,0][-20.0103,-31.5007,-6.13341e-006][-0.0514921,-0.998669,0.00298259][2,0.1,0][-18.7757,-31.5007,-6.25225][-0.0486496,-0.998674,-0.0168492][1.75,0.1,0][-4.08099,-31.7464,-6.18126e-006][0,-1,-2.02355e-007][1.75,0,0][-23.9247,-29.9368,-19.8437][-0.433746,-0.805297,-0.40418][1.5,0.3,0][-29.8638,-29.9368,-10.9699][-0.556004,-0.804954,-0.207146][1.75,0.3,0][-30.4615,-28.8868,-11.2242][-0.735451,-0.603413,-0.30823][1.75,0.4,0][-30.4615,-28.8868,-11.2242][-0.735451,-0.603413,-0.30823][1.75,0.4,0][-24.3847,-28.8868,-20.3037][-0.560944,-0.604031,-0.566117][1.5,0.4,0][-23.9247,-29.9368,-19.8437][-0.433746,-0.805297,-0.40418][1.5,0.3,0][-21.466,-30.8528,-17.385][-0.121305,-0.986174,-0.112895][1.5,0.2,0][-26.6693,-30.8528,-9.61074][-0.155628,-0.986122,-0.0578299][1.75,0.2,0][-29.8638,-29.9368,-10.9699][-0.556004,-0.804954,-0.207146][1.75,0.3,0][-29.8638,-29.9368,-10.9699][-0.556004,-0.804954,-0.207146][1.75,0.3,0][-23.9247,-29.9368,-19.8437][-0.433746,-0.805297,-0.40418][1.5,0.3,0][-21.466,-30.8528,-17.385][-0.121305,-0.986174,-0.112895][1.5,0.2,0][-15.3908,-31.5007,-11.3098][-0.0383703,-0.99868,-0.0341553][1.5,0.1,0][-18.7757,-31.5007,-6.25225][-0.0486496,-0.998674,-0.0168492][1.75,0.1,0][-26.6693,-30.8528,-9.61074][-0.155628,-0.986122,-0.0578299][1.75,0.2,0][-26.6693,-30.8528,-9.61074][-0.155628,-0.986122,-0.0578299][1.75,0.2,0][-21.466,-30.8528,-17.385][-0.121305,-0.986174,-0.112895][1.5,0.2,0][-15.3908,-31.5007,-11.3098][-0.0383703,-0.99868,-0.0341553][1.5,0.1,0][-18.7757,-31.5007,-6.25225][-0.0486496,-0.998674,-0.0168492][1.75,0.1,0][-15.3908,-31.5007,-11.3098][-0.0383703,-0.99868,-0.0341553][1.5,0.1,0][-4.08099,-31.7464,-6.18126e-006][0,-1,-2.02355e-007][1.5,0,0][-15.0509,-29.9368,-25.7828][-0.246112,-0.805032,-0.539771][1.25,0.3,0][-23.9247,-29.9368,-19.8437][-0.433746,-0.805297,-0.40418][1.5,0.3,0][-24.3847,-28.8868,-20.3037][-0.560944,-0.604031,-0.566117][1.5,0.4,0][-24.3847,-28.8868,-20.3037][-0.560944,-0.604031,-0.566117][1.5,0.4,0][-15.3052,-28.8868,-26.3805][-0.301408,-0.603441,-0.73825][1.25,0.4,0][-15.0509,-29.9368,-25.7828][-0.246112,-0.805032,-0.539771][1.25,0.3,0][-13.6917,-30.8528,-22.5883][-0.0689002,-0.986141,-0.150926][1.25,0.2,0][-21.466,-30.8528,-17.385][-0.121305,-0.986174,-0.112895][1.5,0.2,0][-23.9247,-29.9368,-19.8437][-0.433746,-0.805297,-0.40418][1.5,0.3,0][-23.9247,-29.9368,-19.8437][-0.433746,-0.805297,-0.40418][1.5,0.3,0][-15.0509,-29.9368,-25.7828][-0.246112,-0.805032,-0.539771][1.25,0.3,0][-13.6917,-30.8528,-22.5883][-0.0689002,-0.986141,-0.150926][1.25,0.2,0][-10.3332,-31.5007,-14.6948][-0.022397,-0.998677,-0.0462895][1.25,0.1,0][-15.3908,-31.5007,-11.3098][-0.0383703,-0.99868,-0.0341553][1.5,0.1,0][-21.466,-30.8528,-17.385][-0.121305,-0.986174,-0.112895][1.5,0.2,0][-21.466,-30.8528,-17.385][-0.121305,-0.986174,-0.112895][1.5,0.2,0][-13.6917,-30.8528,-22.5883][-0.0689002,-0.986141,-0.150926][1.25,0.2,0][-10.3332,-31.5007,-14.6948][-0.022397,-0.998677,-0.0462895][1.25,0.1,0][-15.3908,-31.5007,-11.3098][-0.0383703,-0.99868,-0.0341553][1.5,0.1,0][-10.3332,-31.5007,-14.6948][-0.022397,-0.998677,-0.0462895][1.25,0.1,0][-4.08099,-31.7464,-6.18126e-006][0,-1,-2.02355e-007][1.25,0,0][-4.08099,-29.9368,-27.9488][-0.0208406,-0.804452,-0.593653][1,0.3,0][-15.0509,-29.9368,-25.7828][-0.246112,-0.805032,-0.539771][1.25,0.3,0][-15.3052,-28.8868,-26.3805][-0.301408,-0.603441,-0.73825][1.25,0.4,0][-15.3052,-28.8868,-26.3805][-0.301408,-0.603441,-0.73825][1.25,0.4,0][-4.08099,-28.8868,-28.5967][0.00363315,-0.60249,-0.798118][1,0.4,0][-4.08099,-29.9368,-27.9488][-0.0208406,-0.804452,-0.593653][1,0.3,0][-4.08099,-30.8528,-24.486][-0.0059492,-0.986065,-0.166252][1,0.2,0][-13.6917,-30.8528,-22.5883][-0.0689002,-0.986141,-0.150926][1.25,0.2,0][-15.0509,-29.9368,-25.7828][-0.246112,-0.805032,-0.539771][1.25,0.3,0][-15.0509,-29.9368,-25.7828][-0.246112,-0.805032,-0.539771][1.25,0.3,0][-4.08099,-29.9368,-27.9488][-0.0208406,-0.804452,-0.593653][1,0.3,0][-4.08099,-30.8528,-24.486][-0.0059492,-0.986065,-0.166252][1,0.2,0][-4.08099,-31.5007,-15.9293][-0.00298276,-0.998669,-0.0514923][1,0.1,0][-10.3332,-31.5007,-14.6948][-0.022397,-0.998677,-0.0462895][1.25,0.1,0][-13.6917,-30.8528,-22.5883][-0.0689002,-0.986141,-0.150926][1.25,0.2,0][-13.6917,-30.8528,-22.5883][-0.0689002,-0.986141,-0.150926][1.25,0.2,0][-4.08099,-30.8528,-24.486][-0.0059492,-0.986065,-0.166252][1,0.2,0][-4.08099,-31.5007,-15.9293][-0.00298276,-0.998669,-0.0514923][1,0.1,0][-10.3332,-31.5007,-14.6948][-0.022397,-0.998677,-0.0462895][1.25,0.1,0][-4.08099,-31.5007,-15.9293][-0.00298276,-0.998669,-0.0514923][1,0.1,0][-4.08099,-31.7464,-6.18126e-006][0,-1,-2.02355e-007][1,0,0][6.88893,-29.9368,-25.7828][0.207146,-0.804954,-0.556004][0.75,0.3,0][-4.08099,-29.9368,-27.9488][-0.0208406,-0.804452,-0.593653][1,0.3,0][-4.08099,-28.8868,-28.5967][0.00363315,-0.60249,-0.798118][1,0.4,0][-4.08099,-28.8868,-28.5967][0.00363315,-0.60249,-0.798118][1,0.4,0][7.14322,-28.8868,-26.3805][0.30823,-0.603413,-0.735451][0.75,0.4,0][6.88893,-29.9368,-25.7828][0.207146,-0.804954,-0.556004][0.75,0.3,0][5.52974,-30.8528,-22.5883][0.0578297,-0.986122,-0.155628][0.75,0.2,0][-4.08099,-30.8528,-24.486][-0.0059492,-0.986065,-0.166252][1,0.2,0][-4.08099,-29.9368,-27.9488][-0.0208406,-0.804452,-0.593653][1,0.3,0][-4.08099,-29.9368,-27.9488][-0.0208406,-0.804452,-0.593653][1,0.3,0][6.88893,-29.9368,-25.7828][0.207146,-0.804954,-0.556004][0.75,0.3,0][5.52974,-30.8528,-22.5883][0.0578297,-0.986122,-0.155628][0.75,0.2,0][2.17125,-31.5007,-14.6948][0.016849,-0.998674,-0.0486497][0.75,0.1,0][-4.08099,-31.5007,-15.9293][-0.00298276,-0.998669,-0.0514923][1,0.1,0][-4.08099,-30.8528,-24.486][-0.0059492,-0.986065,-0.166252][1,0.2,0][-4.08099,-30.8528,-24.486][-0.0059492,-0.986065,-0.166252][1,0.2,0][5.52974,-30.8528,-22.5883][0.0578297,-0.986122,-0.155628][0.75,0.2,0][2.17125,-31.5007,-14.6948][0.016849,-0.998674,-0.0486497][0.75,0.1,0][-4.08099,-31.5007,-15.9293][-0.00298276,-0.998669,-0.0514923][1,0.1,0][2.17125,-31.5007,-14.6948][0.016849,-0.998674,-0.0486497][0.75,0.1,0][-4.08099,-31.7464,-6.18126e-006][0,-1,-2.02355e-007][0.75,0,0][15.7627,-29.9368,-19.8437][0.40418,-0.805297,-0.433746][0.5,0.3,0][6.88893,-29.9368,-25.7828][0.207146,-0.804954,-0.556004][0.75,0.3,0][7.14322,-28.8868,-26.3805][0.30823,-0.603413,-0.735451][0.75,0.4,0][7.14322,-28.8868,-26.3805][0.30823,-0.603413,-0.735451][0.75,0.4,0][16.2227,-28.8868,-20.3037][0.566117,-0.604031,-0.560944][0.5,0.4,0][15.7627,-29.9368,-19.8437][0.40418,-0.805297,-0.433746][0.5,0.3,0][13.304,-30.8528,-17.385][0.112895,-0.986174,-0.121305][0.5,0.2,0][5.52974,-30.8528,-22.5883][0.0578297,-0.986122,-0.155628][0.75,0.2,0][6.88893,-29.9368,-25.7828][0.207146,-0.804954,-0.556004][0.75,0.3,0][6.88893,-29.9368,-25.7828][0.207146,-0.804954,-0.556004][0.75,0.3,0][15.7627,-29.9368,-19.8437][0.40418,-0.805297,-0.433746][0.5,0.3,0][13.304,-30.8528,-17.385][0.112895,-0.986174,-0.121305][0.5,0.2,0][7.22879,-31.5007,-11.3098][0.0341551,-0.99868,-0.0383705][0.5,0.1,0][2.17125,-31.5007,-14.6948][0.016849,-0.998674,-0.0486497][0.75,0.1,0][5.52974,-30.8528,-22.5883][0.0578297,-0.986122,-0.155628][0.75,0.2,0][5.52974,-30.8528,-22.5883][0.0578297,-0.986122,-0.155628][0.75,0.2,0][13.304,-30.8528,-17.385][0.112895,-0.986174,-0.121305][0.5,0.2,0][7.22879,-31.5007,-11.3098][0.0341551,-0.99868,-0.0383705][0.5,0.1,0][2.17125,-31.5007,-14.6948][0.016849,-0.998674,-0.0486497][0.75,0.1,0][7.22879,-31.5007,-11.3098][0.0341551,-0.99868,-0.0383705][0.5,0.1,0][-4.08099,-31.7464,-6.18126e-006][0,-1,-2.02355e-007][0.5,0,0][21.7018,-29.9368,-10.9699][0.539771,-0.805032,-0.246112][0.25,0.3,0][15.7627,-29.9368,-19.8437][0.40418,-0.805297,-0.433746][0.5,0.3,0][16.2227,-28.8868,-20.3037][0.566117,-0.604031,-0.560944][0.5,0.4,0][16.2227,-28.8868,-20.3037][0.566117,-0.604031,-0.560944][0.5,0.4,0][22.2995,-28.8868,-11.2242][0.73825,-0.603441,-0.301408][0.25,0.4,0][21.7018,-29.9368,-10.9699][0.539771,-0.805032,-0.246112][0.25,0.3,0][18.5073,-30.8528,-9.61074][0.150926,-0.986141,-0.0689004][0.25,0.2,0][13.304,-30.8528,-17.385][0.112895,-0.986174,-0.121305][0.5,0.2,0][15.7627,-29.9368,-19.8437][0.40418,-0.805297,-0.433746][0.5,0.3,0][15.7627,-29.9368,-19.8437][0.40418,-0.805297,-0.433746][0.5,0.3,0][21.7018,-29.9368,-10.9699][0.539771,-0.805032,-0.246112][0.25,0.3,0][18.5073,-30.8528,-9.61074][0.150926,-0.986141,-0.0689004][0.25,0.2,0][10.6138,-31.5007,-6.25225][0.0462893,-0.998677,-0.0223972][0.25,0.1,0][7.22879,-31.5007,-11.3098][0.0341551,-0.99868,-0.0383705][0.5,0.1,0][13.304,-30.8528,-17.385][0.112895,-0.986174,-0.121305][0.5,0.2,0][13.304,-30.8528,-17.385][0.112895,-0.986174,-0.121305][0.5,0.2,0][18.5073,-30.8528,-9.61074][0.150926,-0.986141,-0.0689004][0.25,0.2,0][10.6138,-31.5007,-6.25225][0.0462893,-0.998677,-0.0223972][0.25,0.1,0][7.22879,-31.5007,-11.3098][0.0341551,-0.99868,-0.0383705][0.5,0.1,0][10.6138,-31.5007,-6.25225][0.0462893,-0.998677,-0.0223972][0.25,0.1,0][-4.08099,-31.7464,-6.18126e-006][0,-1,-2.02355e-007][0.25,0,0][23.8678,-29.9368,-5.82891e-006][0.593652,-0.804452,-0.0208408][0,0.3,0][21.7018,-29.9368,-10.9699][0.539771,-0.805032,-0.246112][0.25,0.3,0][22.2995,-28.8868,-11.2242][0.73825,-0.603441,-0.301408][0.25,0.4,0][22.2995,-28.8868,-11.2242][0.73825,-0.603441,-0.301408][0.25,0.4,0][24.5157,-28.8868,-5.62446e-006][0.798118,-0.60249,0.00363301][0,0.4,0][23.8678,-29.9368,-5.82891e-006][0.593652,-0.804452,-0.0208408][0,0.3,0][20.405,-30.8528,-6.00726e-006][0.166252,-0.986065,-0.00594939][0,0.2,0][18.5073,-30.8528,-9.61074][0.150926,-0.986141,-0.0689004][0.25,0.2,0][21.7018,-29.9368,-10.9699][0.539771,-0.805032,-0.246112][0.25,0.3,0][21.7018,-29.9368,-10.9699][0.539771,-0.805032,-0.246112][0.25,0.3,0][23.8678,-29.9368,-5.82891e-006][0.593652,-0.804452,-0.0208408][0,0.3,0][20.405,-30.8528,-6.00726e-006][0.166252,-0.986065,-0.00594939][0,0.2,0][11.8483,-31.5007,-6.13341e-006][0.0514921,-0.998669,-0.00298292][0,0.1,0][10.6138,-31.5007,-6.25225][0.0462893,-0.998677,-0.0223972][0.25,0.1,0][18.5073,-30.8528,-9.61074][0.150926,-0.986141,-0.0689004][0.25,0.2,0][18.5073,-30.8528,-9.61074][0.150926,-0.986141,-0.0689004][0.25,0.2,0][20.405,-30.8528,-6.00726e-006][0.166252,-0.986065,-0.00594939][0,0.2,0][11.8483,-31.5007,-6.13341e-006][0.0514921,-0.998669,-0.00298292][0,0.1,0][10.6138,-31.5007,-6.25225][0.0462893,-0.998677,-0.0223972][0.25,0.1,0][11.8483,-31.5007,-6.13341e-006][0.0514921,-0.998669,-0.00298292][0,0.1,0][-4.08099,-31.7464,-6.18126e-006][0,-1,-2.02355e-007][0,0,0][-43.7562,7.45189,3.21713][0.0350439,-0.841351,0.539351][0.875,0.875,0][-43.4909,6.79213,1.32247e-006][0.0405579,-0.999175,-0.00183099][1,0.875,0][-34.5842,6.85915,1.33553e-006][0.00772617,-0.997628,0.0684012][1,1,0][-34.5842,6.85915,1.33553e-006][0.00772617,-0.997628,0.0684012][1,1,0][-34.2863,7.52939,3.21713][0.00651747,-0.765676,0.643194][0.875,1,0][-43.7562,7.45189,3.21713][0.0350439,-0.841351,0.539351][0.875,0.875,0][-50.7071,6.90942,3.21713][0.163008,-0.818237,0.551286][0.875,0.75,0][-50.0741,6.32297,1.23113e-006][0.191281,-0.981532,-0.00256499][1,0.75,0][-43.4909,6.79213,1.32247e-006][0.0405579,-0.999175,-0.00183099][1,0.875,0][-43.4909,6.79213,1.32247e-006][0.0405579,-0.999175,-0.00183099][1,0.875,0][-43.7562,7.45189,3.21713][0.0350439,-0.841351,0.539351][0.875,0.875,0][-50.7071,6.90942,3.21713][0.163008,-0.818237,0.551286][0.875,0.75,0][-54.9882,5.43699,3.21713][0.485724,-0.624371,0.611746][0.875,0.625,0][-54.1551,5.04951,9.83176e-007][0.635539,-0.772068,0.000642177][1,0.625,0][-50.0741,6.32297,1.23113e-006][0.191281,-0.981532,-0.00256499][1,0.75,0][-50.0741,6.32297,1.23113e-006][0.191281,-0.981532,-0.00256499][1,0.75,0][-50.7071,6.90942,3.21713][0.163008,-0.818237,0.551286][0.875,0.75,0][-54.9882,5.43699,3.21713][0.485724,-0.624371,0.611746][0.875,0.625,0][-56.4488,2.56964,3.21713][0.762032,-0.146018,0.630861][0.875,0.5,0][-55.5551,2.56964,5.00326e-007][0.987948,-0.154746,-0.00339481][1,0.5,0][-54.1551,5.04951,9.83176e-007][0.635539,-0.772068,0.000642177][1,0.625,0][-54.1551,5.04951,9.83176e-007][0.635539,-0.772068,0.000642177][1,0.625,0][-54.9882,5.43699,3.21713][0.485724,-0.624371,0.611746][0.875,0.625,0][-56.4488,2.56964,3.21713][0.762032,-0.146018,0.630861][0.875,0.5,0][-44.3398,8.90337,4.28951][-0.0114854,0.00227689,0.999931][0.75,0.875,0][-43.7562,7.45189,3.21713][0.0350439,-0.841351,0.539351][0.875,0.875,0][-34.2863,7.52939,3.21713][0.00651747,-0.765676,0.643194][0.875,1,0][-34.2863,7.52939,3.21713][0.00651747,-0.765676,0.643194][0.875,1,0][-33.6309,9.00391,4.28951][-0.00245975,0.237943,0.971276][0.75,1,0][-44.3398,8.90337,4.28951][-0.0114854,0.00227689,0.999931][0.75,0.875,0][-52.0997,8.19963,4.28951][-0.0391792,-0.011304,0.999168][0.75,0.75,0][-50.7071,6.90942,3.21713][0.163008,-0.818237,0.551286][0.875,0.75,0][-43.7562,7.45189,3.21713][0.0350439,-0.841351,0.539351][0.875,0.875,0][-43.7562,7.45189,3.21713][0.0350439,-0.841351,0.539351][0.875,0.875,0][-44.3398,8.90337,4.28951][-0.0114854,0.00227689,0.999931][0.75,0.875,0][-52.0997,8.19963,4.28951][-0.0391792,-0.011304,0.999168][0.75,0.75,0][-56.8211,6.28945,4.28951][-0.059168,-0.0663923,0.996038][0.75,0.625,0][-54.9882,5.43699,3.21713][0.485724,-0.624371,0.611746][0.875,0.625,0][-50.7071,6.90942,3.21713][0.163008,-0.818237,0.551286][0.875,0.75,0][-50.7071,6.90942,3.21713][0.163008,-0.818237,0.551286][0.875,0.75,0][-52.0997,8.19963,4.28951][-0.0391792,-0.011304,0.999168][0.75,0.75,0][-56.8211,6.28945,4.28951][-0.059168,-0.0663923,0.996038][0.75,0.625,0][-58.4148,2.56964,4.28951][-0.0100636,-0.0605966,0.998112][0.75,0.5,0][-56.4488,2.56964,3.21713][0.762032,-0.146018,0.630861][0.875,0.5,0][-54.9882,5.43699,3.21713][0.485724,-0.624371,0.611746][0.875,0.625,0][-54.9882,5.43699,3.21713][0.485724,-0.624371,0.611746][0.875,0.625,0][-56.8211,6.28945,4.28951][-0.059168,-0.0663923,0.996038][0.75,0.625,0][-58.4148,2.56964,4.28951][-0.0100636,-0.0605966,0.998112][0.75,0.5,0][-44.9235,10.3549,3.21713][-0.0502136,0.838511,0.542567][0.625,0.875,0][-44.3398,8.90337,4.28951][-0.0114854,0.00227689,0.999931][0.75,0.875,0][-33.6309,9.00391,4.28951][-0.00245975,0.237943,0.971276][0.75,1,0][-33.6309,9.00391,4.28951][-0.00245975,0.237943,0.971276][0.75,1,0][-32.9756,10.4784,3.21713][-0.00946828,0.903015,0.429504][0.625,1,0][-44.9235,10.3549,3.21713][-0.0502136,0.838511,0.542567][0.625,0.875,0][-53.4923,9.48982,3.21713][-0.225761,0.795061,0.562948][0.625,0.75,0][-52.0997,8.19963,4.28951][-0.0391792,-0.011304,0.999168][0.75,0.75,0][-44.3398,8.90337,4.28951][-0.0114854,0.00227689,0.999931][0.75,0.875,0][-44.3398,8.90337,4.28951][-0.0114854,0.00227689,0.999931][0.75,0.875,0][-44.9235,10.3549,3.21713][-0.0502136,0.838511,0.542567][0.625,0.875,0][-53.4923,9.48982,3.21713][-0.225761,0.795061,0.562948][0.625,0.75,0][-58.654,7.14191,3.21713][-0.585671,0.51984,0.621896][0.625,0.625,0][-56.8211,6.28945,4.28951][-0.059168,-0.0663923,0.996038][0.75,0.625,0][-52.0997,8.19963,4.28951][-0.0391792,-0.011304,0.999168][0.75,0.75,0][-52.0997,8.19963,4.28951][-0.0391792,-0.011304,0.999168][0.75,0.75,0][-53.4923,9.48982,3.21713][-0.225761,0.795061,0.562948][0.625,0.75,0][-58.654,7.14191,3.21713][-0.585671,0.51984,0.621896][0.625,0.625,0][-60.3808,2.56964,3.21713][-0.775984,0.0432928,0.629265][0.625,0.5,0][-58.4148,2.56964,4.28951][-0.0100636,-0.0605966,0.998112][0.75,0.5,0][-56.8211,6.28945,4.28951][-0.059168,-0.0663923,0.996038][0.75,0.625,0][-56.8211,6.28945,4.28951][-0.059168,-0.0663923,0.996038][0.75,0.625,0][-58.654,7.14191,3.21713][-0.585671,0.51984,0.621896][0.625,0.625,0][-60.3808,2.56964,3.21713][-0.775984,0.0432928,0.629265][0.625,0.5,0][-45.1888,11.0146,2.14462e-006][-0.0568935,0.99838,0.000913686][0.5,0.875,0][-44.9235,10.3549,3.21713][-0.0502136,0.838511,0.542567][0.625,0.875,0][-32.9756,10.4784,3.21713][-0.00946828,0.903015,0.429504][0.625,1,0][-32.9756,10.4784,3.21713][-0.00946828,0.903015,0.429504][0.625,1,0][-32.6777,11.1487,2.17072e-006][-0.0105647,0.997594,-0.0685125][0.5,1,0][-45.1888,11.0146,2.14462e-006][-0.0568935,0.99838,0.000913686][0.5,0.875,0][-54.1253,10.0763,1.96192e-006][-0.266734,0.96377,-0.00103586][0.5,0.75,0][-53.4923,9.48982,3.21713][-0.225761,0.795061,0.562948][0.625,0.75,0][-44.9235,10.3549,3.21713][-0.0502136,0.838511,0.542567][0.625,0.875,0][-44.9235,10.3549,3.21713][-0.0502136,0.838511,0.542567][0.625,0.875,0][-45.1888,11.0146,2.14462e-006][-0.0568935,0.99838,0.000913686][0.5,0.875,0][-54.1253,10.0763,1.96192e-006][-0.266734,0.96377,-0.00103586][0.5,0.75,0][-59.4872,7.52939,1.46603e-006][-0.735585,0.677427,-0.00265932][0.5,0.625,0][-58.654,7.14191,3.21713][-0.585671,0.51984,0.621896][0.625,0.625,0][-53.4923,9.48982,3.21713][-0.225761,0.795061,0.562948][0.625,0.75,0][-53.4923,9.48982,3.21713][-0.225761,0.795061,0.562948][0.625,0.75,0][-54.1253,10.0763,1.96192e-006][-0.266734,0.96377,-0.00103586][0.5,0.75,0][-59.4872,7.52939,1.46603e-006][-0.735585,0.677427,-0.00265932][0.5,0.625,0][-61.2745,2.56964,5.00326e-007][-0.997079,0.0763457,0.00199222][0.5,0.5,0][-60.3808,2.56964,3.21713][-0.775984,0.0432928,0.629265][0.625,0.5,0][-58.654,7.14191,3.21713][-0.585671,0.51984,0.621896][0.625,0.625,0][-58.654,7.14191,3.21713][-0.585671,0.51984,0.621896][0.625,0.625,0][-59.4872,7.52939,1.46603e-006][-0.735585,0.677427,-0.00265932][0.5,0.625,0][-61.2745,2.56964,5.00326e-007][-0.997079,0.0763457,0.00199222][0.5,0.5,0][-44.9235,10.3549,-3.21713][-0.0425061,0.839876,-0.541112][0.375,0.875,0][-45.1888,11.0146,2.14462e-006][-0.0568935,0.99838,0.000913686][0.5,0.875,0][-32.6777,11.1487,2.17072e-006][-0.0105647,0.997594,-0.0685125][0.5,1,0][-32.6777,11.1487,2.17072e-006][-0.0105647,0.997594,-0.0685125][0.5,1,0][-32.9756,10.4784,-3.21713][-0.00771893,0.765615,-0.643253][0.375,1,0][-44.9235,10.3549,-3.21713][-0.0425061,0.839876,-0.541112][0.375,0.875,0][-53.4923,9.48982,-3.21713][-0.198514,0.802694,-0.562384][0.375,0.75,0][-54.1253,10.0763,1.96192e-006][-0.266734,0.96377,-0.00103586][0.5,0.75,0][-45.1888,11.0146,2.14462e-006][-0.0568935,0.99838,0.000913686][0.5,0.875,0][-45.1888,11.0146,2.14462e-006][-0.0568935,0.99838,0.000913686][0.5,0.875,0][-44.9235,10.3549,-3.21713][-0.0425061,0.839876,-0.541112][0.375,0.875,0][-53.4923,9.48982,-3.21713][-0.198514,0.802694,-0.562384][0.375,0.75,0][-58.654,7.14191,-3.21713][-0.540688,0.56518,-0.623079][0.375,0.625,0][-59.4872,7.52939,1.46603e-006][-0.735585,0.677427,-0.00265932][0.5,0.625,0][-54.1253,10.0763,1.96192e-006][-0.266734,0.96377,-0.00103586][0.5,0.75,0][-54.1253,10.0763,1.96192e-006][-0.266734,0.96377,-0.00103586][0.5,0.75,0][-53.4923,9.48982,-3.21713][-0.198514,0.802694,-0.562384][0.375,0.75,0][-58.654,7.14191,-3.21713][-0.540688,0.56518,-0.623079][0.375,0.625,0][-60.3808,2.56964,-3.21713][-0.773136,0.0861401,-0.628364][0.375,0.5,0][-61.2745,2.56964,5.00326e-007][-0.997079,0.0763457,0.00199222][0.5,0.5,0][-59.4872,7.52939,1.46603e-006][-0.735585,0.677427,-0.00265932][0.5,0.625,0][-59.4872,7.52939,1.46603e-006][-0.735585,0.677427,-0.00265932][0.5,0.625,0][-58.654,7.14191,-3.21713][-0.540688,0.56518,-0.623079][0.375,0.625,0][-60.3808,2.56964,-3.21713][-0.773136,0.0861401,-0.628364][0.375,0.5,0][-44.3398,8.90337,-4.28951][0.00855182,-0.00313363,-0.999959][0.25,0.875,0][-44.9235,10.3549,-3.21713][-0.0425061,0.839876,-0.541112][0.375,0.875,0][-32.9756,10.4784,-3.21713][-0.00771893,0.765615,-0.643253][0.375,1,0][-32.9756,10.4784,-3.21713][-0.00771893,0.765615,-0.643253][0.375,1,0][-33.6309,9.00391,-4.28951][0.00194727,-0.237778,-0.971318][0.25,1,0][-44.3398,8.90337,-4.28951][0.00855182,-0.00313363,-0.999959][0.25,0.875,0][-52.0997,8.19963,-4.28951][0.0282896,0.00236356,-0.999597][0.25,0.75,0][-53.4923,9.48982,-3.21713][-0.198514,0.802694,-0.562384][0.375,0.75,0][-44.9235,10.3549,-3.21713][-0.0425061,0.839876,-0.541112][0.375,0.875,0][-44.9235,10.3549,-3.21713][-0.0425061,0.839876,-0.541112][0.375,0.875,0][-44.3398,8.90337,-4.28951][0.00855182,-0.00313363,-0.999959][0.25,0.875,0][-52.0997,8.19963,-4.28951][0.0282896,0.00236356,-0.999597][0.25,0.75,0][-56.8211,6.28945,-4.28951][0.0470234,0.0466238,-0.997805][0.25,0.625,0][-58.654,7.14191,-3.21713][-0.540688,0.56518,-0.623079][0.375,0.625,0][-53.4923,9.48982,-3.21713][-0.198514,0.802694,-0.562384][0.375,0.75,0][-53.4923,9.48982,-3.21713][-0.198514,0.802694,-0.562384][0.375,0.75,0][-52.0997,8.19963,-4.28951][0.0282896,0.00236356,-0.999597][0.25,0.75,0][-56.8211,6.28945,-4.28951][0.0470234,0.0466238,-0.997805][0.25,0.625,0][-58.4148,2.56964,-4.28951][0.00893193,0.0486465,-0.998776][0.25,0.5,0][-60.3808,2.56964,-3.21713][-0.773136,0.0861401,-0.628364][0.375,0.5,0][-58.654,7.14191,-3.21713][-0.540688,0.56518,-0.623079][0.375,0.625,0][-58.654,7.14191,-3.21713][-0.540688,0.56518,-0.623079][0.375,0.625,0][-56.8211,6.28945,-4.28951][0.0470234,0.0466238,-0.997805][0.25,0.625,0][-58.4148,2.56964,-4.28951][0.00893193,0.0486465,-0.998776][0.25,0.5,0][-43.7562,7.45189,-3.21713][0.0375019,-0.840104,-0.541127][0.125,0.875,0][-44.3398,8.90337,-4.28951][0.00855182,-0.00313363,-0.999959][0.25,0.875,0][-33.6309,9.00391,-4.28951][0.00194727,-0.237778,-0.971318][0.25,1,0][-33.6309,9.00391,-4.28951][0.00194727,-0.237778,-0.971318][0.25,1,0][-34.2863,7.52939,-3.21713][0.00716085,-0.902955,-0.429675][0.125,1,0][-43.7562,7.45189,-3.21713][0.0375019,-0.840104,-0.541127][0.125,0.875,0][-50.7071,6.90942,-3.21713][0.173069,-0.815806,-0.551822][0.125,0.75,0][-52.0997,8.19963,-4.28951][0.0282896,0.00236356,-0.999597][0.25,0.75,0][-44.3398,8.90337,-4.28951][0.00855182,-0.00313363,-0.999959][0.25,0.875,0][-44.3398,8.90337,-4.28951][0.00855182,-0.00313363,-0.999959][0.25,0.875,0][-43.7562,7.45189,-3.21713][0.0375019,-0.840104,-0.541127][0.125,0.875,0][-50.7071,6.90942,-3.21713][0.173069,-0.815806,-0.551822][0.125,0.75,0][-54.9882,5.43699,-3.21713][0.53371,-0.585202,-0.610485][0.125,0.625,0][-56.8211,6.28945,-4.28951][0.0470234,0.0466238,-0.997805][0.25,0.625,0][-52.0997,8.19963,-4.28951][0.0282896,0.00236356,-0.999597][0.25,0.75,0][-52.0997,8.19963,-4.28951][0.0282896,0.00236356,-0.999597][0.25,0.75,0][-50.7071,6.90942,-3.21713][0.173069,-0.815806,-0.551822][0.125,0.75,0][-54.9882,5.43699,-3.21713][0.53371,-0.585202,-0.610485][0.125,0.625,0][-56.4488,2.56964,-3.21713][0.771144,-0.0741885,-0.632324][0.125,0.5,0][-58.4148,2.56964,-4.28951][0.00893193,0.0486465,-0.998776][0.25,0.5,0][-56.8211,6.28945,-4.28951][0.0470234,0.0466238,-0.997805][0.25,0.625,0][-56.8211,6.28945,-4.28951][0.0470234,0.0466238,-0.997805][0.25,0.625,0][-54.9882,5.43699,-3.21713][0.53371,-0.585202,-0.610485][0.125,0.625,0][-56.4488,2.56964,-3.21713][0.771144,-0.0741885,-0.632324][0.125,0.5,0][-43.4909,6.79213,1.32247e-006][0.0405579,-0.999175,-0.00183099][0,0.875,0][-43.7562,7.45189,-3.21713][0.0375019,-0.840104,-0.541127][0.125,0.875,0][-34.2863,7.52939,-3.21713][0.00716085,-0.902955,-0.429675][0.125,1,0][-34.2863,7.52939,-3.21713][0.00716085,-0.902955,-0.429675][0.125,1,0][-34.5842,6.85915,1.33553e-006][0.00772617,-0.997628,0.0684012][0,1,0][-43.4909,6.79213,1.32247e-006][0.0405579,-0.999175,-0.00183099][0,0.875,0][-50.0741,6.32297,1.23113e-006][0.191281,-0.981532,-0.00256499][0,0.75,0][-50.7071,6.90942,-3.21713][0.173069,-0.815806,-0.551822][0.125,0.75,0][-43.7562,7.45189,-3.21713][0.0375019,-0.840104,-0.541127][0.125,0.875,0][-43.7562,7.45189,-3.21713][0.0375019,-0.840104,-0.541127][0.125,0.875,0][-43.4909,6.79213,1.32247e-006][0.0405579,-0.999175,-0.00183099][0,0.875,0][-50.0741,6.32297,1.23113e-006][0.191281,-0.981532,-0.00256499][0,0.75,0][-54.1551,5.04951,9.83176e-007][0.635539,-0.772068,0.000642177][0,0.625,0][-54.9882,5.43699,-3.21713][0.53371,-0.585202,-0.610485][0.125,0.625,0][-50.7071,6.90942,-3.21713][0.173069,-0.815806,-0.551822][0.125,0.75,0][-50.7071,6.90942,-3.21713][0.173069,-0.815806,-0.551822][0.125,0.75,0][-50.0741,6.32297,1.23113e-006][0.191281,-0.981532,-0.00256499][0,0.75,0][-54.1551,5.04951,9.83176e-007][0.635539,-0.772068,0.000642177][0,0.625,0][-55.5551,2.56964,5.00326e-007][0.987948,-0.154746,-0.00339481][0,0.5,0][-56.4488,2.56964,-3.21713][0.771144,-0.0741885,-0.632324][0.125,0.5,0][-54.9882,5.43699,-3.21713][0.53371,-0.585202,-0.610485][0.125,0.625,0][-54.9882,5.43699,-3.21713][0.53371,-0.585202,-0.610485][0.125,0.625,0][-54.1551,5.04951,9.83176e-007][0.635539,-0.772068,0.000642177][0,0.625,0][-55.5551,2.56964,5.00326e-007][0.987948,-0.154746,-0.00339481][0,0.5,0][-55.6226,-1.69299,3.21713][0.746398,0.254087,0.615086][0.875,0.375,0][-54.8104,-1.31773,-2.56572e-007][0.945639,0.325175,-0.00523942][1,0.375,0][-55.5551,2.56964,5.00326e-007][0.987948,-0.154746,-0.00339481][1,0.5,0][-55.5551,2.56964,5.00326e-007][0.987948,-0.154746,-0.00339481][1,0.5,0][-56.4488,2.56964,3.21713][0.762032,-0.146018,0.630861][0.875,0.5,0][-55.6226,-1.69299,3.21713][0.746398,0.254087,0.615086][0.875,0.375,0][-53.0343,-6.58187,3.21713][0.665749,0.465345,0.583295][0.875,0.25,0][-52.4571,-6.00938,-1.17007e-006][0.823675,0.566893,-0.0138323][1,0.25,0][-54.8104,-1.31773,-2.56572e-007][0.945639,0.325175,-0.00523942][1,0.375,0][-54.8104,-1.31773,-2.56572e-007][0.945639,0.325175,-0.00523942][1,0.375,0][-55.6226,-1.69299,3.21713][0.746398,0.254087,0.615086][0.875,0.375,0][-53.0343,-6.58187,3.21713][0.665749,0.465345,0.583295][0.875,0.25,0][-48.519,-11.4079,3.21713][0.540019,0.641463,0.54489][0.875,0.125,0][-48.3166,-10.701,-2.08357e-006][0.644146,0.764819,-0.0112694][1,0.125,0][-52.4571,-6.00938,-1.17007e-006][0.823675,0.566893,-0.0138323][1,0.25,0][-52.4571,-6.00938,-1.17007e-006][0.823675,0.566893,-0.0138323][1,0.25,0][-53.0343,-6.58187,3.21713][0.665749,0.465345,0.583295][0.875,0.25,0][-48.519,-11.4079,3.21713][0.540019,0.641463,0.54489][0.875,0.125,0][-41.9121,-15.482,3.21713][0.48214,0.772438,0.413376][0.875,0,0][-42.21,-14.5884,-2.84047e-006][0.531524,0.843841,-0.0735852][1,0,0][-48.3166,-10.701,-2.08357e-006][0.644146,0.764819,-0.0112694][1,0.125,0][-48.3166,-10.701,-2.08357e-006][0.644146,0.764819,-0.0112694][1,0.125,0][-48.519,-11.4079,3.21713][0.540019,0.641463,0.54489][0.875,0.125,0][-41.9121,-15.482,3.21713][0.48214,0.772438,0.413376][0.875,0,0][-57.4094,-2.51857,4.28951][0.00569312,-0.0358494,0.999341][0.75,0.375,0][-55.6226,-1.69299,3.21713][0.746398,0.254087,0.615086][0.875,0.375,0][-56.4488,2.56964,3.21713][0.762032,-0.146018,0.630861][0.875,0.5,0][-56.4488,2.56964,3.21713][0.762032,-0.146018,0.630861][0.875,0.5,0][-58.4148,2.56964,4.28951][-0.0100636,-0.0605966,0.998112][0.75,0.5,0][-57.4094,-2.51857,4.28951][0.00569312,-0.0358494,0.999341][0.75,0.375,0][-54.304,-7.84136,4.28951][0.0058757,-0.0438784,0.99902][0.75,0.25,0][-53.0343,-6.58187,3.21713][0.665749,0.465345,0.583295][0.875,0.25,0][-55.6226,-1.69299,3.21713][0.746398,0.254087,0.615086][0.875,0.375,0][-55.6226,-1.69299,3.21713][0.746398,0.254087,0.615086][0.875,0.375,0][-57.4094,-2.51857,4.28951][0.00569312,-0.0358494,0.999341][0.75,0.375,0][-54.304,-7.84136,4.28951][0.0058757,-0.0438784,0.99902][0.75,0.25,0][-48.9645,-12.9631,4.28951][0.0179643,-0.036914,0.999157][0.75,0.125,0][-48.519,-11.4079,3.21713][0.540019,0.641463,0.54489][0.875,0.125,0][-53.0343,-6.58187,3.21713][0.665749,0.465345,0.583295][0.875,0.25,0][-53.0343,-6.58187,3.21713][0.665749,0.465345,0.583295][0.875,0.25,0][-54.304,-7.84136,4.28951][0.0058757,-0.0438784,0.99902][0.75,0.25,0][-48.9645,-12.9631,4.28951][0.0179643,-0.036914,0.999157][0.75,0.125,0][-41.2567,-17.4481,4.28951][0.123349,0.199003,0.972205][0.75,0,0][-41.9121,-15.482,3.21713][0.48214,0.772438,0.413376][0.875,0,0][-48.519,-11.4079,3.21713][0.540019,0.641463,0.54489][0.875,0.125,0][-48.519,-11.4079,3.21713][0.540019,0.641463,0.54489][0.875,0.125,0][-48.9645,-12.9631,4.28951][0.0179643,-0.036914,0.999157][0.75,0.125,0][-41.2567,-17.4481,4.28951][0.123349,0.199003,0.972205][0.75,0,0][-59.1963,-3.34414,3.21713][-0.721619,-0.307162,0.620417][0.625,0.375,0][-57.4094,-2.51857,4.28951][0.00569312,-0.0358494,0.999341][0.75,0.375,0][-58.4148,2.56964,4.28951][-0.0100636,-0.0605966,0.998112][0.75,0.5,0][-58.4148,2.56964,4.28951][-0.0100636,-0.0605966,0.998112][0.75,0.5,0][-60.3808,2.56964,3.21713][-0.775984,0.0432928,0.629265][0.625,0.5,0][-59.1963,-3.34414,3.21713][-0.721619,-0.307162,0.620417][0.625,0.375,0][-55.5737,-9.10084,3.21713][-0.60236,-0.529731,0.597115][0.625,0.25,0][-54.304,-7.84136,4.28951][0.0058757,-0.0438784,0.99902][0.75,0.25,0][-57.4094,-2.51857,4.28951][0.00569312,-0.0358494,0.999341][0.75,0.375,0][-57.4094,-2.51857,4.28951][0.00569312,-0.0358494,0.999341][0.75,0.375,0][-59.1963,-3.34414,3.21713][-0.721619,-0.307162,0.620417][0.625,0.375,0][-55.5737,-9.10084,3.21713][-0.60236,-0.529731,0.597115][0.625,0.25,0][-49.4099,-14.5182,3.21713][-0.47348,-0.679874,0.559989][0.625,0.125,0][-48.9645,-12.9631,4.28951][0.0179643,-0.036914,0.999157][0.75,0.125,0][-54.304,-7.84136,4.28951][0.0058757,-0.0438784,0.99902][0.75,0.25,0][-54.304,-7.84136,4.28951][0.0058757,-0.0438784,0.99902][0.75,0.25,0][-55.5737,-9.10084,3.21713][-0.60236,-0.529731,0.597115][0.625,0.25,0][-49.4099,-14.5182,3.21713][-0.47348,-0.679874,0.559989][0.625,0.125,0][-40.6014,-19.4141,3.21713][-0.376284,-0.668126,0.641886][0.625,0,0][-41.2567,-17.4481,4.28951][0.123349,0.199003,0.972205][0.75,0,0][-48.9645,-12.9631,4.28951][0.0179643,-0.036914,0.999157][0.75,0.125,0][-48.9645,-12.9631,4.28951][0.0179643,-0.036914,0.999157][0.75,0.125,0][-49.4099,-14.5182,3.21713][-0.47348,-0.679874,0.559989][0.625,0.125,0][-40.6014,-19.4141,3.21713][-0.376284,-0.668126,0.641886][0.625,0,0][-60.0085,-3.7194,-7.24196e-007][-0.926971,-0.375113,0.00389129][0.5,0.375,0][-59.1963,-3.34414,3.21713][-0.721619,-0.307162,0.620417][0.625,0.375,0][-60.3808,2.56964,3.21713][-0.775984,0.0432928,0.629265][0.625,0.5,0][-60.3808,2.56964,3.21713][-0.775984,0.0432928,0.629265][0.625,0.5,0][-61.2745,2.56964,5.00326e-007][-0.997079,0.0763457,0.00199222][0.5,0.5,0][-60.0085,-3.7194,-7.24196e-007][-0.926971,-0.375113,0.00389129][0.5,0.375,0][-56.1509,-9.67334,-1.88347e-006][-0.754307,-0.656438,0.0105195][0.5,0.25,0][-55.5737,-9.10084,3.21713][-0.60236,-0.529731,0.597115][0.625,0.25,0][-59.1963,-3.34414,3.21713][-0.721619,-0.307162,0.620417][0.625,0.375,0][-59.1963,-3.34414,3.21713][-0.721619,-0.307162,0.620417][0.625,0.375,0][-60.0085,-3.7194,-7.24196e-007][-0.926971,-0.375113,0.00389129][0.5,0.375,0][-56.1509,-9.67334,-1.88347e-006][-0.754307,-0.656438,0.0105195][0.5,0.25,0][-49.6124,-15.2251,-2.96444e-006][-0.569473,-0.82197,0.00812807][0.5,0.125,0][-49.4099,-14.5182,3.21713][-0.47348,-0.679874,0.559989][0.625,0.125,0][-55.5737,-9.10084,3.21713][-0.60236,-0.529731,0.597115][0.625,0.25,0][-55.5737,-9.10084,3.21713][-0.60236,-0.529731,0.597115][0.625,0.25,0][-56.1509,-9.67334,-1.88347e-006][-0.754307,-0.656438,0.0105195][0.5,0.25,0][-49.6124,-15.2251,-2.96444e-006][-0.569473,-0.82197,0.00812807][0.5,0.125,0][-40.3035,-20.3077,-3.95406e-006][-0.480128,-0.874124,0.0733752][0.5,0,0][-40.6014,-19.4141,3.21713][-0.376284,-0.668126,0.641886][0.625,0,0][-49.4099,-14.5182,3.21713][-0.47348,-0.679874,0.559989][0.625,0.125,0][-49.4099,-14.5182,3.21713][-0.47348,-0.679874,0.559989][0.625,0.125,0][-49.6124,-15.2251,-2.96444e-006][-0.569473,-0.82197,0.00812807][0.5,0.125,0][-40.3035,-20.3077,-3.95406e-006][-0.480128,-0.874124,0.0733752][0.5,0,0][-59.1963,-3.34414,-3.21713][-0.73676,-0.275043,-0.617686][0.375,0.375,0][-60.0085,-3.7194,-7.24196e-007][-0.926971,-0.375113,0.00389129][0.5,0.375,0][-61.2745,2.56964,5.00326e-007][-0.997079,0.0763457,0.00199222][0.5,0.5,0][-61.2745,2.56964,5.00326e-007][-0.997079,0.0763457,0.00199222][0.5,0.5,0][-60.3808,2.56964,-3.21713][-0.773136,0.0861401,-0.628364][0.375,0.5,0][-59.1963,-3.34414,-3.21713][-0.73676,-0.275043,-0.617686][0.375,0.375,0][-55.5737,-9.10084,-3.21713][-0.623051,-0.515656,-0.588138][0.375,0.25,0][-56.1509,-9.67334,-1.88347e-006][-0.754307,-0.656438,0.0105195][0.5,0.25,0][-60.0085,-3.7194,-7.24196e-007][-0.926971,-0.375113,0.00389129][0.5,0.375,0][-60.0085,-3.7194,-7.24196e-007][-0.926971,-0.375113,0.00389129][0.5,0.375,0][-59.1963,-3.34414,-3.21713][-0.73676,-0.275043,-0.617686][0.375,0.375,0][-55.5737,-9.10084,-3.21713][-0.623051,-0.515656,-0.588138][0.375,0.25,0][-49.4099,-14.5182,-3.21714][-0.485642,-0.6775,-0.5524][0.375,0.125,0][-49.6124,-15.2251,-2.96444e-006][-0.569473,-0.82197,0.00812807][0.5,0.125,0][-56.1509,-9.67334,-1.88347e-006][-0.754307,-0.656438,0.0105195][0.5,0.25,0][-56.1509,-9.67334,-1.88347e-006][-0.754307,-0.656438,0.0105195][0.5,0.25,0][-55.5737,-9.10084,-3.21713][-0.623051,-0.515656,-0.588138][0.375,0.25,0][-49.4099,-14.5182,-3.21714][-0.485642,-0.6775,-0.5524][0.375,0.125,0][-40.6014,-19.4141,-3.21714][-0.43731,-0.792156,-0.425733][0.375,0,0][-40.3035,-20.3077,-3.95406e-006][-0.480128,-0.874124,0.0733752][0.5,0,0][-49.6124,-15.2251,-2.96444e-006][-0.569473,-0.82197,0.00812807][0.5,0.125,0][-49.6124,-15.2251,-2.96444e-006][-0.569473,-0.82197,0.00812807][0.5,0.125,0][-49.4099,-14.5182,-3.21714][-0.485642,-0.6775,-0.5524][0.375,0.125,0][-40.6014,-19.4141,-3.21714][-0.43731,-0.792156,-0.425733][0.375,0,0][-57.4094,-2.51857,-4.28951][-0.0024531,0.0291067,-0.999573][0.25,0.375,0][-59.1963,-3.34414,-3.21713][-0.73676,-0.275043,-0.617686][0.375,0.375,0][-60.3808,2.56964,-3.21713][-0.773136,0.0861401,-0.628364][0.375,0.5,0][-60.3808,2.56964,-3.21713][-0.773136,0.0861401,-0.628364][0.375,0.5,0][-58.4148,2.56964,-4.28951][0.00893193,0.0486465,-0.998776][0.25,0.5,0][-57.4094,-2.51857,-4.28951][-0.0024531,0.0291067,-0.999573][0.25,0.375,0][-54.304,-7.84136,-4.28951][0.0062448,0.0309373,-0.999502][0.25,0.25,0][-55.5737,-9.10084,-3.21713][-0.623051,-0.515656,-0.588138][0.375,0.25,0][-59.1963,-3.34414,-3.21713][-0.73676,-0.275043,-0.617686][0.375,0.375,0][-59.1963,-3.34414,-3.21713][-0.73676,-0.275043,-0.617686][0.375,0.375,0][-57.4094,-2.51857,-4.28951][-0.0024531,0.0291067,-0.999573][0.25,0.375,0][-54.304,-7.84136,-4.28951][0.0062448,0.0309373,-0.999502][0.25,0.25,0][-48.9645,-12.9631,-4.28951][-0.00152892,0.0295878,-0.999561][0.25,0.125,0][-49.4099,-14.5182,-3.21714][-0.485642,-0.6775,-0.5524][0.375,0.125,0][-55.5737,-9.10084,-3.21713][-0.623051,-0.515656,-0.588138][0.375,0.25,0][-55.5737,-9.10084,-3.21713][-0.623051,-0.515656,-0.588138][0.375,0.25,0][-54.304,-7.84136,-4.28951][0.0062448,0.0309373,-0.999502][0.25,0.25,0][-48.9645,-12.9631,-4.28951][-0.00152892,0.0295878,-0.999561][0.25,0.125,0][-41.2567,-17.4481,-4.28951][-0.109008,-0.196977,-0.974329][0.25,0,0][-40.6014,-19.4141,-3.21714][-0.43731,-0.792156,-0.425733][0.375,0,0][-49.4099,-14.5182,-3.21714][-0.485642,-0.6775,-0.5524][0.375,0.125,0][-49.4099,-14.5182,-3.21714][-0.485642,-0.6775,-0.5524][0.375,0.125,0][-48.9645,-12.9631,-4.28951][-0.00152892,0.0295878,-0.999561][0.25,0.125,0][-41.2567,-17.4481,-4.28951][-0.109008,-0.196977,-0.974329][0.25,0,0][-55.6226,-1.69299,-3.21713][0.738318,0.270271,-0.617932][0.125,0.375,0][-57.4094,-2.51857,-4.28951][-0.0024531,0.0291067,-0.999573][0.25,0.375,0][-58.4148,2.56964,-4.28951][0.00893193,0.0486465,-0.998776][0.25,0.5,0][-58.4148,2.56964,-4.28951][0.00893193,0.0486465,-0.998776][0.25,0.5,0][-56.4488,2.56964,-3.21713][0.771144,-0.0741885,-0.632324][0.125,0.5,0][-55.6226,-1.69299,-3.21713][0.738318,0.270271,-0.617932][0.125,0.375,0][-53.0343,-6.58187,-3.21713][0.648653,0.475632,-0.594158][0.125,0.25,0][-54.304,-7.84136,-4.28951][0.0062448,0.0309373,-0.999502][0.25,0.25,0][-57.4094,-2.51857,-4.28951][-0.0024531,0.0291067,-0.999573][0.25,0.375,0][-57.4094,-2.51857,-4.28951][-0.0024531,0.0291067,-0.999573][0.25,0.375,0][-55.6226,-1.69299,-3.21713][0.738318,0.270271,-0.617932][0.125,0.375,0][-53.0343,-6.58187,-3.21713][0.648653,0.475632,-0.594158][0.125,0.25,0][-48.519,-11.4079,-3.21713][0.515385,0.651685,-0.556494][0.125,0.125,0][-48.9645,-12.9631,-4.28951][-0.00152892,0.0295878,-0.999561][0.25,0.125,0][-54.304,-7.84136,-4.28951][0.0062448,0.0309373,-0.999502][0.25,0.25,0][-54.304,-7.84136,-4.28951][0.0062448,0.0309373,-0.999502][0.25,0.25,0][-53.0343,-6.58187,-3.21713][0.648653,0.475632,-0.594158][0.125,0.25,0][-48.519,-11.4079,-3.21713][0.515385,0.651685,-0.556494][0.125,0.125,0][-41.9121,-15.482,-3.21714][0.399315,0.658237,-0.638178][0.125,0,0][-41.2567,-17.4481,-4.28951][-0.109008,-0.196977,-0.974329][0.25,0,0][-48.9645,-12.9631,-4.28951][-0.00152892,0.0295878,-0.999561][0.25,0.125,0][-48.9645,-12.9631,-4.28951][-0.00152892,0.0295878,-0.999561][0.25,0.125,0][-48.519,-11.4079,-3.21713][0.515385,0.651685,-0.556494][0.125,0.125,0][-41.9121,-15.482,-3.21714][0.399315,0.658237,-0.638178][0.125,0,0][-54.8104,-1.31773,-2.56572e-007][0.945639,0.325175,-0.00523942][0,0.375,0][-55.6226,-1.69299,-3.21713][0.738318,0.270271,-0.617932][0.125,0.375,0][-56.4488,2.56964,-3.21713][0.771144,-0.0741885,-0.632324][0.125,0.5,0][-56.4488,2.56964,-3.21713][0.771144,-0.0741885,-0.632324][0.125,0.5,0][-55.5551,2.56964,5.00326e-007][0.987948,-0.154746,-0.00339481][0,0.5,0][-54.8104,-1.31773,-2.56572e-007][0.945639,0.325175,-0.00523942][0,0.375,0][-52.4571,-6.00938,-1.17007e-006][0.823675,0.566893,-0.0138323][0,0.25,0][-53.0343,-6.58187,-3.21713][0.648653,0.475632,-0.594158][0.125,0.25,0][-55.6226,-1.69299,-3.21713][0.738318,0.270271,-0.617932][0.125,0.375,0][-55.6226,-1.69299,-3.21713][0.738318,0.270271,-0.617932][0.125,0.375,0][-54.8104,-1.31773,-2.56572e-007][0.945639,0.325175,-0.00523942][0,0.375,0][-52.4571,-6.00938,-1.17007e-006][0.823675,0.566893,-0.0138323][0,0.25,0][-48.3166,-10.701,-2.08357e-006][0.644146,0.764819,-0.0112694][0,0.125,0][-48.519,-11.4079,-3.21713][0.515385,0.651685,-0.556494][0.125,0.125,0][-53.0343,-6.58187,-3.21713][0.648653,0.475632,-0.594158][0.125,0.25,0][-53.0343,-6.58187,-3.21713][0.648653,0.475632,-0.594158][0.125,0.25,0][-52.4571,-6.00938,-1.17007e-006][0.823675,0.566893,-0.0138323][0,0.25,0][-48.3166,-10.701,-2.08357e-006][0.644146,0.764819,-0.0112694][0,0.125,0][-42.21,-14.5884,-2.84047e-006][0.531524,0.843841,-0.0735852][0,0,0][-41.9121,-15.482,-3.21714][0.399315,0.658237,-0.638178][0.125,0,0][-48.519,-11.4079,-3.21713][0.515385,0.651685,-0.556494][0.125,0.125,0][-48.519,-11.4079,-3.21713][0.515385,0.651685,-0.556494][0.125,0.125,0][-48.3166,-10.701,-2.08357e-006][0.644146,0.764819,-0.0112694][0,0.125,0][-42.21,-14.5884,-2.84047e-006][0.531524,0.843841,-0.0735852][0,0,0][38.1718,-4.30168,6.3907][-0.323244,0.684622,0.653304][0.625,0.225,0][37.4736,-2.47947,-4.82771e-007][-0.539636,0.841845,-0.00948738][0.5,0.225,0][28.3286,-4.57954,-8.91671e-007][-0.229992,0.967998,0.100414][0.5,0,0][28.3286,-4.57954,-8.91671e-007][-0.229992,0.967998,0.100414][0.5,0,0][28.3286,-7.03708,7.07769][-0.131683,0.633941,0.762088][0.625,0,0][38.1718,-4.30168,6.3907][-0.323244,0.684622,0.653304][0.625,0.225,0][42.3291,1.50843,4.87932][-0.60886,0.480622,0.631104][0.625,0.45,0][41.4355,2.56964,5.00326e-007][-0.870758,0.491531,0.0133314][0.5,0.45,0][37.4736,-2.47947,-4.82771e-007][-0.539636,0.841845,-0.00948738][0.5,0.225,0][37.4736,-2.47947,-4.82771e-007][-0.539636,0.841845,-0.00948738][0.5,0.225,0][38.1718,-4.30168,6.3907][-0.323244,0.684622,0.653304][0.625,0.225,0][42.3291,1.50843,4.87932][-0.60886,0.480622,0.631104][0.625,0.45,0][44.6991,8.30714,3.36794][-0.61647,0.419844,0.666105][0.625,0.675,0][43.61,8.69113,1.69222e-006][-0.87584,0.480806,0.0415912][0.5,0.675,0][41.4355,2.56964,5.00326e-007][-0.870758,0.491531,0.0133314][0.5,0.45,0][41.4355,2.56964,5.00326e-007][-0.870758,0.491531,0.0133314][0.5,0.45,0][42.3291,1.50843,4.87932][-0.60886,0.480622,0.631104][0.625,0.45,0][44.6991,8.30714,3.36794][-0.61647,0.419844,0.666105][0.625,0.675,0][49.1804,14.0083,2.68095][-0.447228,0.59527,0.667564][0.625,0.9,0][47.3931,14.0083,2.72752e-006][-0.654399,0.756115,0.00716304][0.5,0.9,0][43.61,8.69113,1.69222e-006][-0.87584,0.480806,0.0415912][0.5,0.675,0][43.61,8.69113,1.69222e-006][-0.87584,0.480806,0.0415912][0.5,0.675,0][44.6991,8.30714,3.36794][-0.61647,0.419844,0.666105][0.625,0.675,0][49.1804,14.0083,2.68095][-0.447228,0.59527,0.667564][0.625,0.9,0][39.7077,-8.31052,8.52093][0.184614,0.10022,0.977688][0.75,0.225,0][38.1718,-4.30168,6.3907][-0.323244,0.684622,0.653304][0.625,0.225,0][28.3286,-7.03708,7.07769][-0.131683,0.633941,0.762088][0.625,0,0][28.3286,-7.03708,7.07769][-0.131683,0.633941,0.762088][0.625,0,0][28.3286,-12.4436,9.43692][0.130084,-0.139634,0.981621][0.75,0,0][39.7077,-8.31052,8.52093][0.184614,0.10022,0.977688][0.75,0.225,0][44.2951,-0.826221,6.50576][0.142094,0.188166,0.971804][0.75,0.45,0][42.3291,1.50843,4.87932][-0.60886,0.480622,0.631104][0.625,0.45,0][38.1718,-4.30168,6.3907][-0.323244,0.684622,0.653304][0.625,0.225,0][38.1718,-4.30168,6.3907][-0.323244,0.684622,0.653304][0.625,0.225,0][39.7077,-8.31052,8.52093][0.184614,0.10022,0.977688][0.75,0.225,0][44.2951,-0.826221,6.50576][0.142094,0.188166,0.971804][0.75,0.45,0][47.0952,7.46236,4.49058][0.0123642,0.138611,0.99027][0.75,0.675,0][44.6991,8.30714,3.36794][-0.61647,0.419844,0.666105][0.625,0.675,0][42.3291,1.50843,4.87932][-0.60886,0.480622,0.631104][0.625,0.45,0][42.3291,1.50843,4.87932][-0.60886,0.480622,0.631104][0.625,0.45,0][44.2951,-0.826221,6.50576][0.142094,0.188166,0.971804][0.75,0.45,0][47.0952,7.46236,4.49058][0.0123642,0.138611,0.99027][0.75,0.675,0][53.1125,14.0083,3.57459][-0.00845812,0.130379,0.991428][0.75,0.9,0][49.1804,14.0083,2.68095][-0.447228,0.59527,0.667564][0.625,0.9,0][44.6991,8.30714,3.36794][-0.61647,0.419844,0.666105][0.625,0.675,0][44.6991,8.30714,3.36794][-0.61647,0.419844,0.666105][0.625,0.675,0][47.0952,7.46236,4.49058][0.0123642,0.138611,0.99027][0.75,0.675,0][53.1125,14.0083,3.57459][-0.00845812,0.130379,0.991428][0.75,0.9,0][41.2437,-12.3194,6.3907][0.587433,-0.512491,0.626319][0.875,0.225,0][39.7077,-8.31052,8.52093][0.184614,0.10022,0.977688][0.75,0.225,0][28.3286,-12.4436,9.43692][0.130084,-0.139634,0.981621][0.75,0,0][28.3286,-12.4436,9.43692][0.130084,-0.139634,0.981621][0.75,0,0][28.3286,-17.8502,7.07769][0.358242,-0.765623,0.534308][0.875,0,0][41.2437,-12.3194,6.3907][0.587433,-0.512491,0.626319][0.875,0.225,0][46.2612,-3.16088,4.87932][0.783688,-0.241146,0.572435][0.875,0.45,0][44.2951,-0.826221,6.50576][0.142094,0.188166,0.971804][0.75,0.45,0][39.7077,-8.31052,8.52093][0.184614,0.10022,0.977688][0.75,0.225,0][39.7077,-8.31052,8.52093][0.184614,0.10022,0.977688][0.75,0.225,0][41.2437,-12.3194,6.3907][0.587433,-0.512491,0.626319][0.875,0.225,0][46.2612,-3.16088,4.87932][0.783688,-0.241146,0.572435][0.875,0.45,0][49.4913,6.61759,3.36794][0.65887,-0.336649,0.672724][0.875,0.675,0][47.0952,7.46236,4.49058][0.0123642,0.138611,0.99027][0.75,0.675,0][44.2951,-0.826221,6.50576][0.142094,0.188166,0.971804][0.75,0.45,0][44.2951,-0.826221,6.50576][0.142094,0.188166,0.971804][0.75,0.45,0][46.2612,-3.16088,4.87932][0.783688,-0.241146,0.572435][0.875,0.45,0][49.4913,6.61759,3.36794][0.65887,-0.336649,0.672724][0.875,0.675,0][57.0445,14.0083,2.68095][0.425912,-0.547425,0.720364][0.875,0.9,0][53.1125,14.0083,3.57459][-0.00845812,0.130379,0.991428][0.75,0.9,0][47.0952,7.46236,4.49058][0.0123642,0.138611,0.99027][0.75,0.675,0][47.0952,7.46236,4.49058][0.0123642,0.138611,0.99027][0.75,0.675,0][49.4913,6.61759,3.36794][0.65887,-0.336649,0.672724][0.875,0.675,0][57.0445,14.0083,2.68095][0.425912,-0.547425,0.720364][0.875,0.9,0][41.9419,-14.1416,-2.75347e-006][0.68945,-0.724276,0.00913923][1,0.225,0][41.2437,-12.3194,6.3907][0.587433,-0.512491,0.626319][0.875,0.225,0][28.3286,-17.8502,7.07769][0.358242,-0.765623,0.534308][0.875,0,0][28.3286,-17.8502,7.07769][0.358242,-0.765623,0.534308][0.875,0,0][28.3286,-20.3077,-3.95406e-006][0.408904,-0.906912,-0.101527][1,0,0][41.9419,-14.1416,-2.75347e-006][0.68945,-0.724276,0.00913923][1,0.225,0][47.1548,-4.22208,-8.2207e-007][0.92414,-0.381675,-0.0169928][1,0.45,0][46.2612,-3.16088,4.87932][0.783688,-0.241146,0.572435][0.875,0.45,0][41.2437,-12.3194,6.3907][0.587433,-0.512491,0.626319][0.875,0.225,0][41.2437,-12.3194,6.3907][0.587433,-0.512491,0.626319][0.875,0.225,0][41.9419,-14.1416,-2.75347e-006][0.68945,-0.724276,0.00913923][1,0.225,0][47.1548,-4.22208,-8.2207e-007][0.92414,-0.381675,-0.0169928][1,0.45,0][50.5805,6.2336,1.21373e-006][0.852329,-0.521908,-0.0338668][1,0.675,0][49.4913,6.61759,3.36794][0.65887,-0.336649,0.672724][0.875,0.675,0][46.2612,-3.16088,4.87932][0.783688,-0.241146,0.572435][0.875,0.45,0][46.2612,-3.16088,4.87932][0.783688,-0.241146,0.572435][0.875,0.45,0][47.1548,-4.22208,-8.2207e-007][0.92414,-0.381675,-0.0169928][1,0.45,0][50.5805,6.2336,1.21373e-006][0.852329,-0.521908,-0.0338668][1,0.675,0][58.8318,14.0083,2.72752e-006][0.57586,-0.817546,-0.00178365][1,0.9,0][57.0445,14.0083,2.68095][0.425912,-0.547425,0.720364][0.875,0.9,0][49.4913,6.61759,3.36794][0.65887,-0.336649,0.672724][0.875,0.675,0][49.4913,6.61759,3.36794][0.65887,-0.336649,0.672724][0.875,0.675,0][50.5805,6.2336,1.21373e-006][0.852329,-0.521908,-0.0338668][1,0.675,0][58.8318,14.0083,2.72752e-006][0.57586,-0.817546,-0.00178365][1,0.9,0][41.2437,-12.3194,-6.3907][0.564215,-0.542661,-0.622238][0.125,0.225,0][41.9419,-14.1416,-2.75347e-006][0.68945,-0.724276,0.00913923][0,0.225,0][28.3286,-20.3077,-3.95406e-006][0.408904,-0.906912,-0.101527][0,0,0][28.3286,-20.3077,-3.95406e-006][0.408904,-0.906912,-0.101527][0,0,0][28.3286,-17.8502,-7.07769][0.293438,-0.59286,-0.749941][0.125,0,0][41.2437,-12.3194,-6.3907][0.564215,-0.542661,-0.622238][0.125,0.225,0][46.2612,-3.16088,-4.87932][0.770625,-0.242454,-0.589367][0.125,0.45,0][47.1548,-4.22208,-8.2207e-007][0.92414,-0.381675,-0.0169928][0,0.45,0][41.9419,-14.1416,-2.75347e-006][0.68945,-0.724276,0.00913923][0,0.225,0][41.9419,-14.1416,-2.75347e-006][0.68945,-0.724276,0.00913923][0,0.225,0][41.2437,-12.3194,-6.3907][0.564215,-0.542661,-0.622238][0.125,0.225,0][46.2612,-3.16088,-4.87932][0.770625,-0.242454,-0.589367][0.125,0.45,0][49.4913,6.61759,-3.36793][0.663789,-0.29676,-0.686526][0.125,0.675,0][50.5805,6.2336,1.21373e-006][0.852329,-0.521908,-0.0338668][0,0.675,0][47.1548,-4.22208,-8.2207e-007][0.92414,-0.381675,-0.0169928][0,0.45,0][47.1548,-4.22208,-8.2207e-007][0.92414,-0.381675,-0.0169928][0,0.45,0][46.2612,-3.16088,-4.87932][0.770625,-0.242454,-0.589367][0.125,0.45,0][49.4913,6.61759,-3.36793][0.663789,-0.29676,-0.686526][0.125,0.675,0][57.0445,14.0083,-2.68094][0.447928,-0.514577,-0.731143][0.125,0.9,0][58.8318,14.0083,2.72752e-006][0.57586,-0.817546,-0.00178365][0,0.9,0][50.5805,6.2336,1.21373e-006][0.852329,-0.521908,-0.0338668][0,0.675,0][50.5805,6.2336,1.21373e-006][0.852329,-0.521908,-0.0338668][0,0.675,0][49.4913,6.61759,-3.36793][0.663789,-0.29676,-0.686526][0.125,0.675,0][57.0445,14.0083,-2.68094][0.447928,-0.514577,-0.731143][0.125,0.9,0][39.7077,-8.31052,-8.52093][0.0911853,0.0518399,-0.994484][0.25,0.225,0][41.2437,-12.3194,-6.3907][0.564215,-0.542661,-0.622238][0.125,0.225,0][28.3286,-17.8502,-7.07769][0.293438,-0.59286,-0.749941][0.125,0,0][28.3286,-17.8502,-7.07769][0.293438,-0.59286,-0.749941][0.125,0,0][28.3286,-12.4436,-9.43692][0.0286723,0.163973,-0.986048][0.25,0,0][39.7077,-8.31052,-8.52093][0.0911853,0.0518399,-0.994484][0.25,0.225,0][44.2951,-0.826218,-6.50576][0.163595,0.134868,-0.977265][0.25,0.45,0][46.2612,-3.16088,-4.87932][0.770625,-0.242454,-0.589367][0.125,0.45,0][41.2437,-12.3194,-6.3907][0.564215,-0.542661,-0.622238][0.125,0.225,0][41.2437,-12.3194,-6.3907][0.564215,-0.542661,-0.622238][0.125,0.225,0][39.7077,-8.31052,-8.52093][0.0911853,0.0518399,-0.994484][0.25,0.225,0][44.2951,-0.826218,-6.50576][0.163595,0.134868,-0.977265][0.25,0.45,0][47.0952,7.46236,-4.49058][0.10934,0.141512,-0.98388][0.25,0.675,0][49.4913,6.61759,-3.36793][0.663789,-0.29676,-0.686526][0.125,0.675,0][46.2612,-3.16088,-4.87932][0.770625,-0.242454,-0.589367][0.125,0.45,0][46.2612,-3.16088,-4.87932][0.770625,-0.242454,-0.589367][0.125,0.45,0][44.2951,-0.826218,-6.50576][0.163595,0.134868,-0.977265][0.25,0.45,0][47.0952,7.46236,-4.49058][0.10934,0.141512,-0.98388][0.25,0.675,0][53.1125,14.0083,-3.57459][0.0396161,0.153078,-0.98742][0.25,0.9,0][57.0445,14.0083,-2.68094][0.447928,-0.514577,-0.731143][0.125,0.9,0][49.4913,6.61759,-3.36793][0.663789,-0.29676,-0.686526][0.125,0.675,0][49.4913,6.61759,-3.36793][0.663789,-0.29676,-0.686526][0.125,0.675,0][47.0952,7.46236,-4.49058][0.10934,0.141512,-0.98388][0.25,0.675,0][53.1125,14.0083,-3.57459][0.0396161,0.153078,-0.98742][0.25,0.9,0][38.1718,-4.30167,-6.3907][-0.396952,0.634275,-0.663418][0.375,0.225,0][39.7077,-8.31052,-8.52093][0.0911853,0.0518399,-0.994484][0.25,0.225,0][28.3286,-12.4436,-9.43692][0.0286723,0.163973,-0.986048][0.25,0,0][28.3286,-12.4436,-9.43692][0.0286723,0.163973,-0.986048][0.25,0,0][28.3286,-7.03707,-7.07769][-0.179654,0.814058,-0.552298][0.375,0,0][38.1718,-4.30167,-6.3907][-0.396952,0.634275,-0.663418][0.375,0.225,0][42.3291,1.50843,-4.87932][-0.621577,0.445429,-0.644387][0.375,0.45,0][44.2951,-0.826218,-6.50576][0.163595,0.134868,-0.977265][0.25,0.45,0][39.7077,-8.31052,-8.52093][0.0911853,0.0518399,-0.994484][0.25,0.225,0][39.7077,-8.31052,-8.52093][0.0911853,0.0518399,-0.994484][0.25,0.225,0][38.1718,-4.30167,-6.3907][-0.396952,0.634275,-0.663418][0.375,0.225,0][42.3291,1.50843,-4.87932][-0.621577,0.445429,-0.644387][0.375,0.45,0][44.6991,8.30714,-3.36793][-0.587611,0.447279,-0.674281][0.375,0.675,0][47.0952,7.46236,-4.49058][0.10934,0.141512,-0.98388][0.25,0.675,0][44.2951,-0.826218,-6.50576][0.163595,0.134868,-0.977265][0.25,0.45,0][44.2951,-0.826218,-6.50576][0.163595,0.134868,-0.977265][0.25,0.45,0][42.3291,1.50843,-4.87932][-0.621577,0.445429,-0.644387][0.375,0.45,0][44.6991,8.30714,-3.36793][-0.587611,0.447279,-0.674281][0.375,0.675,0][49.1804,14.0083,-2.68094][-0.41196,0.613583,-0.67365][0.375,0.9,0][53.1125,14.0083,-3.57459][0.0396161,0.153078,-0.98742][0.25,0.9,0][47.0952,7.46236,-4.49058][0.10934,0.141512,-0.98388][0.25,0.675,0][47.0952,7.46236,-4.49058][0.10934,0.141512,-0.98388][0.25,0.675,0][44.6991,8.30714,-3.36793][-0.587611,0.447279,-0.674281][0.375,0.675,0][49.1804,14.0083,-2.68094][-0.41196,0.613583,-0.67365][0.375,0.9,0][37.4736,-2.47947,-4.82771e-007][-0.539636,0.841845,-0.00948738][0.5,0.225,0][38.1718,-4.30167,-6.3907][-0.396952,0.634275,-0.663418][0.375,0.225,0][28.3286,-7.03707,-7.07769][-0.179654,0.814058,-0.552298][0.375,0,0][28.3286,-7.03707,-7.07769][-0.179654,0.814058,-0.552298][0.375,0,0][28.3286,-4.57954,-8.91671e-007][-0.229992,0.967998,0.100414][0.5,0,0][37.4736,-2.47947,-4.82771e-007][-0.539636,0.841845,-0.00948738][0.5,0.225,0][41.4355,2.56964,5.00326e-007][-0.870758,0.491531,0.0133314][0.5,0.45,0][42.3291,1.50843,-4.87932][-0.621577,0.445429,-0.644387][0.375,0.45,0][38.1718,-4.30167,-6.3907][-0.396952,0.634275,-0.663418][0.375,0.225,0][38.1718,-4.30167,-6.3907][-0.396952,0.634275,-0.663418][0.375,0.225,0][37.4736,-2.47947,-4.82771e-007][-0.539636,0.841845,-0.00948738][0.5,0.225,0][41.4355,2.56964,5.00326e-007][-0.870758,0.491531,0.0133314][0.5,0.45,0][43.61,8.69113,1.69222e-006][-0.87584,0.480806,0.0415912][0.5,0.675,0][44.6991,8.30714,-3.36793][-0.587611,0.447279,-0.674281][0.375,0.675,0][42.3291,1.50843,-4.87932][-0.621577,0.445429,-0.644387][0.375,0.45,0][42.3291,1.50843,-4.87932][-0.621577,0.445429,-0.644387][0.375,0.45,0][41.4355,2.56964,5.00326e-007][-0.870758,0.491531,0.0133314][0.5,0.45,0][43.61,8.69113,1.69222e-006][-0.87584,0.480806,0.0415912][0.5,0.675,0][47.3931,14.0083,2.72752e-006][-0.654399,0.756115,0.00716304][0.5,0.9,0][49.1804,14.0083,-2.68094][-0.41196,0.613583,-0.67365][0.375,0.9,0][44.6991,8.30714,-3.36793][-0.587611,0.447279,-0.674281][0.375,0.675,0][44.6991,8.30714,-3.36793][-0.587611,0.447279,-0.674281][0.375,0.675,0][43.61,8.69113,1.69222e-006][-0.87584,0.480806,0.0415912][0.5,0.675,0][47.3931,14.0083,2.72752e-006][-0.654399,0.756115,0.00716304][0.5,0.9,0][50.6775,14.8519,2.51339][-0.272791,0.850509,0.449688][0.625,0.925,0][48.7634,14.8126,2.88412e-006][-0.372445,0.927833,-0.0202464][0.5,0.925,0][47.3931,14.0083,2.72752e-006][-0.654399,0.756115,0.00716304][0.5,0.9,0][47.3931,14.0083,2.72752e-006][-0.654399,0.756115,0.00716304][0.5,0.9,0][49.1804,14.0083,2.68095][-0.447228,0.59527,0.667564][0.625,0.9,0][50.6775,14.8519,2.51339][-0.272791,0.850509,0.449688][0.625,0.925,0][51.5728,15.1435,2.14476][0.0178814,0.986111,-0.165121][0.625,0.95,0][49.7762,15.0807,2.93632e-006][0.192189,0.972483,-0.131681][0.5,0.95,0][48.7634,14.8126,2.88412e-006][-0.372445,0.927833,-0.0202464][0.5,0.925,0][48.7634,14.8126,2.88412e-006][-0.372445,0.927833,-0.0202464][0.5,0.925,0][50.6775,14.8519,2.51339][-0.272791,0.850509,0.449688][0.625,0.925,0][51.5728,15.1435,2.14476][0.0178814,0.986111,-0.165121][0.625,0.95,0][51.5996,14.8676,1.77613][0.454321,0.273296,-0.847881][0.625,0.975,0][50.0741,14.8126,2.88412e-006][0.999464,0.0313125,0.00958715][0.5,0.975,0][49.7762,15.0807,2.93632e-006][0.192189,0.972483,-0.131681][0.5,0.95,0][49.7762,15.0807,2.93632e-006][0.192189,0.972483,-0.131681][0.5,0.95,0][51.5728,15.1435,2.14476][0.0178814,0.986111,-0.165121][0.625,0.95,0][51.5996,14.8676,1.77613][0.454321,0.273296,-0.847881][0.625,0.975,0][50.4911,14.0083,1.60857][0.517161,-0.487636,-0.703389][0.625,1,0][49.2996,14.0083,2.72752e-006][0.688256,-0.703036,0.179009][0.5,1,0][50.0741,14.8126,2.88412e-006][0.999464,0.0313125,0.00958715][0.5,0.975,0][50.0741,14.8126,2.88412e-006][0.999464,0.0313125,0.00958715][0.5,0.975,0][51.5996,14.8676,1.77613][0.454321,0.273296,-0.847881][0.625,0.975,0][50.4911,14.0083,1.60857][0.517161,-0.487636,-0.703389][0.625,1,0][54.8886,14.9383,3.35118][-0.0081786,0.567128,0.823589][0.75,0.925,0][50.6775,14.8519,2.51339][-0.272791,0.850509,0.449688][0.625,0.925,0][49.1804,14.0083,2.68095][-0.447228,0.59527,0.667564][0.625,0.9,0][49.1804,14.0083,2.68095][-0.447228,0.59527,0.667564][0.625,0.9,0][53.1125,14.0083,3.57459][-0.00845812,0.130379,0.991428][0.75,0.9,0][54.8886,14.9383,3.35118][-0.0081786,0.567128,0.823589][0.75,0.925,0][55.5253,15.2818,2.85968][-0.0522206,0.998247,0.0278473][0.75,0.95,0][51.5728,15.1435,2.14476][0.0178814,0.986111,-0.165121][0.625,0.95,0][50.6775,14.8519,2.51339][-0.272791,0.850509,0.449688][0.625,0.925,0][50.6775,14.8519,2.51339][-0.272791,0.850509,0.449688][0.625,0.925,0][54.8886,14.9383,3.35118][-0.0081786,0.567128,0.823589][0.75,0.925,0][55.5253,15.2818,2.85968][-0.0522206,0.998247,0.0278473][0.75,0.95,0][54.9556,14.9886,2.36817][-0.0213714,0.630135,-0.776191][0.75,0.975,0][51.5996,14.8676,1.77613][0.454321,0.273296,-0.847881][0.625,0.975,0][51.5728,15.1435,2.14476][0.0178814,0.986111,-0.165121][0.625,0.95,0][51.5728,15.1435,2.14476][0.0178814,0.986111,-0.165121][0.625,0.95,0][55.5253,15.2818,2.85968][-0.0522206,0.998247,0.0278473][0.75,0.95,0][54.9556,14.9886,2.36817][-0.0213714,0.630135,-0.776191][0.75,0.975,0][53.1125,14.0083,2.14476][0.0724638,0.119824,-0.990147][0.75,1,0][50.4911,14.0083,1.60857][0.517161,-0.487636,-0.703389][0.625,1,0][51.5996,14.8676,1.77613][0.454321,0.273296,-0.847881][0.625,0.975,0][51.5996,14.8676,1.77613][0.454321,0.273296,-0.847881][0.625,0.975,0][54.9556,14.9886,2.36817][-0.0213714,0.630135,-0.776191][0.75,0.975,0][53.1125,14.0083,2.14476][0.0724638,0.119824,-0.990147][0.75,1,0][59.0997,15.0247,2.51339][0.492198,-0.247085,0.83468][0.875,0.925,0][54.8886,14.9383,3.35118][-0.0081786,0.567128,0.823589][0.75,0.925,0][53.1125,14.0083,3.57459][-0.00845812,0.130379,0.991428][0.75,0.9,0][53.1125,14.0083,3.57459][-0.00845812,0.130379,0.991428][0.75,0.9,0][57.0445,14.0083,2.68095][0.425912,-0.547425,0.720364][0.875,0.9,0][59.0997,15.0247,2.51339][0.492198,-0.247085,0.83468][0.875,0.925,0][59.4778,15.42,2.14476][0.10841,0.943189,0.314074][0.875,0.95,0][55.5253,15.2818,2.85968][-0.0522206,0.998247,0.0278473][0.75,0.95,0][54.8886,14.9383,3.35118][-0.0081786,0.567128,0.823589][0.75,0.925,0][54.8886,14.9383,3.35118][-0.0081786,0.567128,0.823589][0.75,0.925,0][59.0997,15.0247,2.51339][0.492198,-0.247085,0.83468][0.875,0.925,0][59.4778,15.42,2.14476][0.10841,0.943189,0.314074][0.875,0.95,0][58.3117,15.1095,1.77613][-0.227419,0.882215,-0.412283][0.875,0.975,0][54.9556,14.9886,2.36817][-0.0213714,0.630135,-0.776191][0.75,0.975,0][55.5253,15.2818,2.85968][-0.0522206,0.998247,0.0278473][0.75,0.95,0][55.5253,15.2818,2.85968][-0.0522206,0.998247,0.0278473][0.75,0.95,0][59.4778,15.42,2.14476][0.10841,0.943189,0.314074][0.875,0.95,0][58.3117,15.1095,1.77613][-0.227419,0.882215,-0.412283][0.875,0.975,0][55.7338,14.0083,1.60857][-0.248317,0.68069,-0.689202][0.875,1,0][53.1125,14.0083,2.14476][0.0724638,0.119824,-0.990147][0.75,1,0][54.9556,14.9886,2.36817][-0.0213714,0.630135,-0.776191][0.75,0.975,0][54.9556,14.9886,2.36817][-0.0213714,0.630135,-0.776191][0.75,0.975,0][58.3117,15.1095,1.77613][-0.227419,0.882215,-0.412283][0.875,0.975,0][55.7338,14.0083,1.60857][-0.248317,0.68069,-0.689202][0.875,1,0][61.0138,15.064,2.93306e-006][0.688888,-0.721958,-0.0648951][1,0.925,0][59.0997,15.0247,2.51339][0.492198,-0.247085,0.83468][0.875,0.925,0][57.0445,14.0083,2.68095][0.425912,-0.547425,0.720364][0.875,0.9,0][57.0445,14.0083,2.68095][0.425912,-0.547425,0.720364][0.875,0.9,0][58.8318,14.0083,2.72752e-006][0.57586,-0.817546,-0.00178365][1,0.9,0][61.0138,15.064,2.93306e-006][0.688888,-0.721958,-0.0648951][1,0.925,0][61.2745,15.4829,3.01462e-006][0.604403,0.739756,0.295735][1,0.95,0][59.4778,15.42,2.14476][0.10841,0.943189,0.314074][0.875,0.95,0][59.0997,15.0247,2.51339][0.492198,-0.247085,0.83468][0.875,0.925,0][59.0997,15.0247,2.51339][0.492198,-0.247085,0.83468][0.875,0.925,0][61.0138,15.064,2.93306e-006][0.688888,-0.721958,-0.0648951][1,0.925,0][61.2745,15.4829,3.01462e-006][0.604403,0.739756,0.295735][1,0.95,0][59.8372,15.1645,2.95263e-006][-0.29306,0.955865,0.0209397][1,0.975,0][58.3117,15.1095,1.77613][-0.227419,0.882215,-0.412283][0.875,0.975,0][59.4778,15.42,2.14476][0.10841,0.943189,0.314074][0.875,0.95,0][59.4778,15.42,2.14476][0.10841,0.943189,0.314074][0.875,0.95,0][61.2745,15.4829,3.01462e-006][0.604403,0.739756,0.295735][1,0.95,0][59.8372,15.1645,2.95263e-006][-0.29306,0.955865,0.0209397][1,0.975,0][56.9254,14.0083,2.72752e-006][-0.370064,0.923894,-0.0973262][1,1,0][55.7338,14.0083,1.60857][-0.248317,0.68069,-0.689202][0.875,1,0][58.3117,15.1095,1.77613][-0.227419,0.882215,-0.412283][0.875,0.975,0][58.3117,15.1095,1.77613][-0.227419,0.882215,-0.412283][0.875,0.975,0][59.8372,15.1645,2.95263e-006][-0.29306,0.955865,0.0209397][1,0.975,0][56.9254,14.0083,2.72752e-006][-0.370064,0.923894,-0.0973262][1,1,0][59.0997,15.0247,-2.51338][0.490983,-0.186465,-0.85098][0.125,0.925,0][61.0138,15.064,2.93306e-006][0.688888,-0.721958,-0.0648951][0,0.925,0][58.8318,14.0083,2.72752e-006][0.57586,-0.817546,-0.00178365][0,0.9,0][58.8318,14.0083,2.72752e-006][0.57586,-0.817546,-0.00178365][0,0.9,0][57.0445,14.0083,-2.68094][0.447928,-0.514577,-0.731143][0.125,0.9,0][59.0997,15.0247,-2.51338][0.490983,-0.186465,-0.85098][0.125,0.925,0][59.4778,15.42,-2.14475][0.373475,0.876001,-0.305185][0.125,0.95,0][61.2745,15.4829,3.01462e-006][0.604403,0.739756,0.295735][0,0.95,0][61.0138,15.064,2.93306e-006][0.688888,-0.721958,-0.0648951][0,0.925,0][61.0138,15.064,2.93306e-006][0.688888,-0.721958,-0.0648951][0,0.925,0][59.0997,15.0247,-2.51338][0.490983,-0.186465,-0.85098][0.125,0.925,0][59.4778,15.42,-2.14475][0.373475,0.876001,-0.305185][0.125,0.95,0][58.3117,15.1095,-1.77612][-0.219802,0.849485,0.479647][0.125,0.975,0][59.8372,15.1645,2.95263e-006][-0.29306,0.955865,0.0209397][0,0.975,0][61.2745,15.4829,3.01462e-006][0.604403,0.739756,0.295735][0,0.95,0][61.2745,15.4829,3.01462e-006][0.604403,0.739756,0.295735][0,0.95,0][59.4778,15.42,-2.14475][0.373475,0.876001,-0.305185][0.125,0.95,0][58.3117,15.1095,-1.77612][-0.219802,0.849485,0.479647][0.125,0.975,0][55.7338,14.0083,-1.60856][-0.313198,0.815411,0.486838][0.125,1,0][56.9254,14.0083,2.72752e-006][-0.370064,0.923894,-0.0973262][0,1,0][59.8372,15.1645,2.95263e-006][-0.29306,0.955865,0.0209397][0,0.975,0][59.8372,15.1645,2.95263e-006][-0.29306,0.955865,0.0209397][0,0.975,0][58.3117,15.1095,-1.77612][-0.219802,0.849485,0.479647][0.125,0.975,0][55.7338,14.0083,-1.60856][-0.313198,0.815411,0.486838][0.125,1,0][54.8886,14.9383,-3.35118][0.026273,0.518332,-0.854776][0.25,0.925,0][59.0997,15.0247,-2.51338][0.490983,-0.186465,-0.85098][0.125,0.925,0][57.0445,14.0083,-2.68094][0.447928,-0.514577,-0.731143][0.125,0.9,0][57.0445,14.0083,-2.68094][0.447928,-0.514577,-0.731143][0.125,0.9,0][53.1125,14.0083,-3.57459][0.0396161,0.153078,-0.98742][0.25,0.9,0][54.8886,14.9383,-3.35118][0.026273,0.518332,-0.854776][0.25,0.925,0][55.5253,15.2818,-2.85967][0.0349122,0.996949,-0.0698139][0.25,0.95,0][59.4778,15.42,-2.14475][0.373475,0.876001,-0.305185][0.125,0.95,0][59.0997,15.0247,-2.51338][0.490983,-0.186465,-0.85098][0.125,0.925,0][59.0997,15.0247,-2.51338][0.490983,-0.186465,-0.85098][0.125,0.925,0][54.8886,14.9383,-3.35118][0.026273,0.518332,-0.854776][0.25,0.925,0][55.5253,15.2818,-2.85967][0.0349122,0.996949,-0.0698139][0.25,0.95,0][54.9556,14.9886,-2.36816][0.0123107,0.573572,0.819063][0.25,0.975,0][58.3117,15.1095,-1.77612][-0.219802,0.849485,0.479647][0.125,0.975,0][59.4778,15.42,-2.14475][0.373475,0.876001,-0.305185][0.125,0.95,0][59.4778,15.42,-2.14475][0.373475,0.876001,-0.305185][0.125,0.95,0][55.5253,15.2818,-2.85967][0.0349122,0.996949,-0.0698139][0.25,0.95,0][54.9556,14.9886,-2.36816][0.0123107,0.573572,0.819063][0.25,0.975,0][53.1125,14.0083,-2.14475][-0.0500401,0.315573,0.947581][0.25,1,0][55.7338,14.0083,-1.60856][-0.313198,0.815411,0.486838][0.125,1,0][58.3117,15.1095,-1.77612][-0.219802,0.849485,0.479647][0.125,0.975,0][58.3117,15.1095,-1.77612][-0.219802,0.849485,0.479647][0.125,0.975,0][54.9556,14.9886,-2.36816][0.0123107,0.573572,0.819063][0.25,0.975,0][53.1125,14.0083,-2.14475][-0.0500401,0.315573,0.947581][0.25,1,0][50.6775,14.8519,-2.51338][-0.249612,0.832163,-0.495174][0.375,0.925,0][54.8886,14.9383,-3.35118][0.026273,0.518332,-0.854776][0.25,0.925,0][53.1125,14.0083,-3.57459][0.0396161,0.153078,-0.98742][0.25,0.9,0][53.1125,14.0083,-3.57459][0.0396161,0.153078,-0.98742][0.25,0.9,0][49.1804,14.0083,-2.68094][-0.41196,0.613583,-0.67365][0.375,0.9,0][50.6775,14.8519,-2.51338][-0.249612,0.832163,-0.495174][0.375,0.925,0][51.5728,15.1435,-2.14475][0.148007,0.983888,0.100291][0.375,0.95,0][55.5253,15.2818,-2.85967][0.0349122,0.996949,-0.0698139][0.25,0.95,0][54.8886,14.9383,-3.35118][0.026273,0.518332,-0.854776][0.25,0.925,0][54.8886,14.9383,-3.35118][0.026273,0.518332,-0.854776][0.25,0.925,0][50.6775,14.8519,-2.51338][-0.249612,0.832163,-0.495174][0.375,0.925,0][51.5728,15.1435,-2.14475][0.148007,0.983888,0.100291][0.375,0.95,0][51.5996,14.8676,-1.77612][0.486353,0.236601,0.841119][0.375,0.975,0][54.9556,14.9886,-2.36816][0.0123107,0.573572,0.819063][0.25,0.975,0][55.5253,15.2818,-2.85967][0.0349122,0.996949,-0.0698139][0.25,0.95,0][55.5253,15.2818,-2.85967][0.0349122,0.996949,-0.0698139][0.25,0.95,0][51.5728,15.1435,-2.14475][0.148007,0.983888,0.100291][0.375,0.95,0][51.5996,14.8676,-1.77612][0.486353,0.236601,0.841119][0.375,0.975,0][50.4911,14.0083,-1.60856][0.354711,-0.317376,0.879461][0.375,1,0][53.1125,14.0083,-2.14475][-0.0500401,0.315573,0.947581][0.25,1,0][54.9556,14.9886,-2.36816][0.0123107,0.573572,0.819063][0.25,0.975,0][54.9556,14.9886,-2.36816][0.0123107,0.573572,0.819063][0.25,0.975,0][51.5996,14.8676,-1.77612][0.486353,0.236601,0.841119][0.375,0.975,0][50.4911,14.0083,-1.60856][0.354711,-0.317376,0.879461][0.375,1,0][48.7634,14.8126,2.88412e-006][-0.372445,0.927833,-0.0202464][0.5,0.925,0][50.6775,14.8519,-2.51338][-0.249612,0.832163,-0.495174][0.375,0.925,0][49.1804,14.0083,-2.68094][-0.41196,0.613583,-0.67365][0.375,0.9,0][49.1804,14.0083,-2.68094][-0.41196,0.613583,-0.67365][0.375,0.9,0][47.3931,14.0083,2.72752e-006][-0.654399,0.756115,0.00716304][0.5,0.9,0][48.7634,14.8126,2.88412e-006][-0.372445,0.927833,-0.0202464][0.5,0.925,0][49.7762,15.0807,2.93632e-006][0.192189,0.972483,-0.131681][0.5,0.95,0][51.5728,15.1435,-2.14475][0.148007,0.983888,0.100291][0.375,0.95,0][50.6775,14.8519,-2.51338][-0.249612,0.832163,-0.495174][0.375,0.925,0][50.6775,14.8519,-2.51338][-0.249612,0.832163,-0.495174][0.375,0.925,0][48.7634,14.8126,2.88412e-006][-0.372445,0.927833,-0.0202464][0.5,0.925,0][49.7762,15.0807,2.93632e-006][0.192189,0.972483,-0.131681][0.5,0.95,0][50.0741,14.8126,2.88412e-006][0.999464,0.0313125,0.00958715][0.5,0.975,0][51.5996,14.8676,-1.77612][0.486353,0.236601,0.841119][0.375,0.975,0][51.5728,15.1435,-2.14475][0.148007,0.983888,0.100291][0.375,0.95,0][51.5728,15.1435,-2.14475][0.148007,0.983888,0.100291][0.375,0.95,0][49.7762,15.0807,2.93632e-006][0.192189,0.972483,-0.131681][0.5,0.95,0][50.0741,14.8126,2.88412e-006][0.999464,0.0313125,0.00958715][0.5,0.975,0][49.2996,14.0083,2.72752e-006][0.688256,-0.703036,0.179009][0.5,1,0][50.4911,14.0083,-1.60856][0.354711,-0.317376,0.879461][0.375,1,0][51.5996,14.8676,-1.77612][0.486353,0.236601,0.841119][0.375,0.975,0][51.5996,14.8676,-1.77612][0.486353,0.236601,0.841119][0.375,0.975,0][50.0741,14.8126,2.88412e-006][0.999464,0.0313125,0.00958715][0.5,0.975,0][49.2996,14.0083,2.72752e-006][0.688256,-0.703036,0.179009][0.5,1,0][2.72357,30.681,2.90178][0.805552,0.445238,0.390958][0.875,0.75,0][3.29244,30.681,6.05771e-006][0.893838,0.44522,0.053226][1,0.75,0][-4.08099,31.7464,6.26516e-006][0,1,0][1,1,0][2.41126,28.0935,2.76817][0.845311,-0.412166,0.339954][0.875,0.5,0][2.95421,28.0935,5.55391e-006][0.911613,-0.410976,-0.00775837][1,0.5,0][3.29244,30.681,6.05771e-006][0.893838,0.44522,0.053226][1,0.75,0][3.29244,30.681,6.05771e-006][0.893838,0.44522,0.053226][1,0.75,0][2.72357,30.681,2.90178][0.805552,0.445238,0.390958][0.875,0.75,0][2.41126,28.0935,2.76817][0.845311,-0.412166,0.339954][0.875,0.5,0][-0.14871,24.8973,1.67529][0.865515,-0.341256,0.366645][0.875,0.25,0][0.180716,24.8973,4.93158e-006][0.940245,-0.34039,0.00855214][1,0.25,0][2.95421,28.0935,5.55391e-006][0.911613,-0.410976,-0.00775837][1,0.5,0][2.95421,28.0935,5.55391e-006][0.911613,-0.410976,-0.00775837][1,0.5,0][2.41126,28.0935,2.76817][0.845311,-0.412166,0.339954][0.875,0.5,0][-0.14871,24.8973,1.67529][0.865515,-0.341256,0.366645][0.875,0.25,0][-0.0871627,22.0054,1.69928][0.753279,0.593949,0.28248][0.875,0,0][0.248362,22.0054,4.36851e-006][0.804409,0.593494,-0.0262729][1,0,0][0.180716,24.8973,4.93158e-006][0.940245,-0.34039,0.00855214][1,0.25,0][0.180716,24.8973,4.93158e-006][0.940245,-0.34039,0.00855214][1,0.25,0][-0.14871,24.8973,1.67529][0.865515,-0.341256,0.366645][0.875,0.25,0][-0.0871627,22.0054,1.69928][0.753279,0.593949,0.28248][0.875,0,0][1.16099,30.681,5.24199][0.593803,0.445119,0.670274][0.75,0.75,0][2.72357,30.681,2.90178][0.805552,0.445238,0.390958][0.875,0.75,0][-4.08099,31.7464,6.26516e-006][0,1,0][0.875,1,0][0.920089,28.0935,5.00109][0.649754,-0.412738,0.638331][0.75,0.5,0][2.41126,28.0935,2.76817][0.845311,-0.412166,0.339954][0.875,0.5,0][2.72357,30.681,2.90178][0.805552,0.445238,0.390958][0.875,0.75,0][2.72357,30.681,2.90178][0.805552,0.445238,0.390958][0.875,0.75,0][1.16099,30.681,5.24199][0.593803,0.445119,0.670274][0.75,0.75,0][0.920089,28.0935,5.00109][0.649754,-0.412738,0.638331][0.75,0.5,0][-1.0529,24.8973,3.0281][0.65853,-0.342092,0.670307][0.75,0.25,0][-0.14871,24.8973,1.67529][0.865515,-0.341256,0.366645][0.875,0.25,0][2.41126,28.0935,2.76817][0.845311,-0.412166,0.339954][0.875,0.5,0][2.41126,28.0935,2.76817][0.845311,-0.412166,0.339954][0.875,0.5,0][0.920089,28.0935,5.00109][0.649754,-0.412738,0.638331][0.75,0.5,0][-1.0529,24.8973,3.0281][0.65853,-0.342092,0.670307][0.75,0.25,0][-1.00715,22.0054,3.07385][0.587537,0.593769,0.549763][0.75,0,0][-0.0871627,22.0054,1.69928][0.753279,0.593949,0.28248][0.875,0,0][-0.14871,24.8973,1.67529][0.865515,-0.341256,0.366645][0.875,0.25,0][-0.14871,24.8973,1.67529][0.865515,-0.341256,0.366645][0.875,0.25,0][-1.0529,24.8973,3.0281][0.65853,-0.342092,0.670307][0.75,0.25,0][-1.00715,22.0054,3.07385][0.587537,0.593769,0.549763][0.75,0,0][-1.17922,30.681,6.80456][0.290482,0.445407,0.846896][0.625,0.75,0][1.16099,30.681,5.24199][0.593803,0.445119,0.670274][0.75,0.75,0][-4.08099,31.7464,6.26516e-006][0,1,0][0.75,1,0][-1.31283,28.0935,6.49226][0.354855,-0.411887,0.839302][0.625,0.5,0][0.920089,28.0935,5.00109][0.649754,-0.412738,0.638331][0.75,0.5,0][1.16099,30.681,5.24199][0.593803,0.445119,0.670274][0.75,0.75,0][1.16099,30.681,5.24199][0.593803,0.445119,0.670274][0.75,0.75,0][-1.17922,30.681,6.80456][0.290482,0.445407,0.846896][0.625,0.75,0][-1.31283,28.0935,6.49226][0.354855,-0.411887,0.839302][0.625,0.5,0][-2.4057,24.8973,3.93229][0.350892,-0.341525,0.871915][0.625,0.25,0][-1.0529,24.8973,3.0281][0.65853,-0.342092,0.670307][0.75,0.25,0][0.920089,28.0935,5.00109][0.649754,-0.412738,0.638331][0.75,0.5,0][0.920089,28.0935,5.00109][0.649754,-0.412738,0.638331][0.75,0.5,0][-1.31283,28.0935,6.49226][0.354855,-0.411887,0.839302][0.625,0.5,0][-2.4057,24.8973,3.93229][0.350892,-0.341525,0.871915][0.625,0.25,0][-2.38172,22.0054,3.99383][0.332142,0.593627,0.733][0.625,0,0][-1.00715,22.0054,3.07385][0.587537,0.593769,0.549763][0.75,0,0][-1.0529,24.8973,3.0281][0.65853,-0.342092,0.670307][0.75,0.25,0][-1.0529,24.8973,3.0281][0.65853,-0.342092,0.670307][0.75,0.25,0][-2.4057,24.8973,3.93229][0.350892,-0.341525,0.871915][0.625,0.25,0][-2.38172,22.0054,3.99383][0.332142,0.593627,0.733][0.625,0,0][-4.08099,30.681,7.37344][-0.0532261,0.44522,0.893838][0.5,0.75,0][-1.17922,30.681,6.80456][0.290482,0.445407,0.846896][0.625,0.75,0][-4.08099,31.7464,6.26516e-006][0,1,0][0.625,1,0][-4.08099,28.0935,7.03521][0.0077583,-0.410976,0.911613][0.5,0.5,0][-1.31283,28.0935,6.49226][0.354855,-0.411887,0.839302][0.625,0.5,0][-1.17922,30.681,6.80456][0.290482,0.445407,0.846896][0.625,0.75,0][-1.17922,30.681,6.80456][0.290482,0.445407,0.846896][0.625,0.75,0][-4.08099,30.681,7.37344][-0.0532261,0.44522,0.893838][0.5,0.75,0][-4.08099,28.0935,7.03521][0.0077583,-0.410976,0.911613][0.5,0.5,0][-4.08099,24.8973,4.26171][-0.00855213,-0.34039,0.940245][0.5,0.25,0][-2.4057,24.8973,3.93229][0.350892,-0.341525,0.871915][0.625,0.25,0][-1.31283,28.0935,6.49226][0.354855,-0.411887,0.839302][0.625,0.5,0][-1.31283,28.0935,6.49226][0.354855,-0.411887,0.839302][0.625,0.5,0][-4.08099,28.0935,7.03521][0.0077583,-0.410976,0.911613][0.5,0.5,0][-4.08099,24.8973,4.26171][-0.00855213,-0.34039,0.940245][0.5,0.25,0][-4.08099,22.0054,4.32936][0.0262731,0.593494,0.804409][0.5,0,0][-2.38172,22.0054,3.99383][0.332142,0.593627,0.733][0.625,0,0][-2.4057,24.8973,3.93229][0.350892,-0.341525,0.871915][0.625,0.25,0][-2.4057,24.8973,3.93229][0.350892,-0.341525,0.871915][0.625,0.25,0][-4.08099,24.8973,4.26171][-0.00855213,-0.34039,0.940245][0.5,0.25,0][-4.08099,22.0054,4.32936][0.0262731,0.593494,0.804409][0.5,0,0][-6.98277,30.681,6.80456][-0.390958,0.445238,0.805553][0.375,0.75,0][-4.08099,30.681,7.37344][-0.0532261,0.44522,0.893838][0.5,0.75,0][-4.08099,31.7464,6.26516e-006][0,1,0][0.5,1,0][-6.84916,28.0935,6.49226][-0.339954,-0.412166,0.845311][0.375,0.5,0][-4.08099,28.0935,7.03521][0.0077583,-0.410976,0.911613][0.5,0.5,0][-4.08099,30.681,7.37344][-0.0532261,0.44522,0.893838][0.5,0.75,0][-4.08099,30.681,7.37344][-0.0532261,0.44522,0.893838][0.5,0.75,0][-6.98277,30.681,6.80456][-0.390958,0.445238,0.805553][0.375,0.75,0][-6.84916,28.0935,6.49226][-0.339954,-0.412166,0.845311][0.375,0.5,0][-5.75628,24.8973,3.93229][-0.366645,-0.341256,0.865515][0.375,0.25,0][-4.08099,24.8973,4.26171][-0.00855213,-0.34039,0.940245][0.5,0.25,0][-4.08099,28.0935,7.03521][0.0077583,-0.410976,0.911613][0.5,0.5,0][-4.08099,28.0935,7.03521][0.0077583,-0.410976,0.911613][0.5,0.5,0][-6.84916,28.0935,6.49226][-0.339954,-0.412166,0.845311][0.375,0.5,0][-5.75628,24.8973,3.93229][-0.366645,-0.341256,0.865515][0.375,0.25,0][-5.78026,22.0054,3.99383][-0.28248,0.593949,0.753279][0.375,0,0][-4.08099,22.0054,4.32936][0.0262731,0.593494,0.804409][0.5,0,0][-4.08099,24.8973,4.26171][-0.00855213,-0.34039,0.940245][0.5,0.25,0][-4.08099,24.8973,4.26171][-0.00855213,-0.34039,0.940245][0.5,0.25,0][-5.75628,24.8973,3.93229][-0.366645,-0.341256,0.865515][0.375,0.25,0][-5.78026,22.0054,3.99383][-0.28248,0.593949,0.753279][0.375,0,0][-9.32298,30.681,5.24199][-0.670274,0.445119,0.593803][0.25,0.75,0][-6.98277,30.681,6.80456][-0.390958,0.445238,0.805553][0.375,0.75,0][-4.08099,31.7464,6.26516e-006][0,1,0][0.375,1,0][-9.08207,28.0935,5.00109][-0.638331,-0.412738,0.649754][0.25,0.5,0][-6.84916,28.0935,6.49226][-0.339954,-0.412166,0.845311][0.375,0.5,0][-6.98277,30.681,6.80456][-0.390958,0.445238,0.805553][0.375,0.75,0][-6.98277,30.681,6.80456][-0.390958,0.445238,0.805553][0.375,0.75,0][-9.32298,30.681,5.24199][-0.670274,0.445119,0.593803][0.25,0.75,0][-9.08207,28.0935,5.00109][-0.638331,-0.412738,0.649754][0.25,0.5,0][-7.10909,24.8973,3.0281][-0.670307,-0.342092,0.65853][0.25,0.25,0][-5.75628,24.8973,3.93229][-0.366645,-0.341256,0.865515][0.375,0.25,0][-6.84916,28.0935,6.49226][-0.339954,-0.412166,0.845311][0.375,0.5,0][-6.84916,28.0935,6.49226][-0.339954,-0.412166,0.845311][0.375,0.5,0][-9.08207,28.0935,5.00109][-0.638331,-0.412738,0.649754][0.25,0.5,0][-7.10909,24.8973,3.0281][-0.670307,-0.342092,0.65853][0.25,0.25,0][-7.15483,22.0054,3.07385][-0.549763,0.593769,0.587537][0.25,0,0][-5.78026,22.0054,3.99383][-0.28248,0.593949,0.753279][0.375,0,0][-5.75628,24.8973,3.93229][-0.366645,-0.341256,0.865515][0.375,0.25,0][-5.75628,24.8973,3.93229][-0.366645,-0.341256,0.865515][0.375,0.25,0][-7.10909,24.8973,3.0281][-0.670307,-0.342092,0.65853][0.25,0.25,0][-7.15483,22.0054,3.07385][-0.549763,0.593769,0.587537][0.25,0,0][-10.8856,30.681,2.90178][-0.846896,0.445407,0.290482][0.125,0.75,0][-9.32298,30.681,5.24199][-0.670274,0.445119,0.593803][0.25,0.75,0][-4.08099,31.7464,6.26516e-006][0,1,0][0.25,1,0][-10.5732,28.0935,2.76817][-0.839302,-0.411886,0.354855][0.125,0.5,0][-9.08207,28.0935,5.00109][-0.638331,-0.412738,0.649754][0.25,0.5,0][-9.32298,30.681,5.24199][-0.670274,0.445119,0.593803][0.25,0.75,0][-9.32298,30.681,5.24199][-0.670274,0.445119,0.593803][0.25,0.75,0][-10.8856,30.681,2.90178][-0.846896,0.445407,0.290482][0.125,0.75,0][-10.5732,28.0935,2.76817][-0.839302,-0.411886,0.354855][0.125,0.5,0][-8.01328,24.8973,1.67529][-0.871915,-0.341525,0.350892][0.125,0.25,0][-7.10909,24.8973,3.0281][-0.670307,-0.342092,0.65853][0.25,0.25,0][-9.08207,28.0935,5.00109][-0.638331,-0.412738,0.649754][0.25,0.5,0][-9.08207,28.0935,5.00109][-0.638331,-0.412738,0.649754][0.25,0.5,0][-10.5732,28.0935,2.76817][-0.839302,-0.411886,0.354855][0.125,0.5,0][-8.01328,24.8973,1.67529][-0.871915,-0.341525,0.350892][0.125,0.25,0][-8.07482,22.0054,1.69928][-0.733,0.593627,0.332142][0.125,0,0][-7.15483,22.0054,3.07385][-0.549763,0.593769,0.587537][0.25,0,0][-7.10909,24.8973,3.0281][-0.670307,-0.342092,0.65853][0.25,0.25,0][-7.10909,24.8973,3.0281][-0.670307,-0.342092,0.65853][0.25,0.25,0][-8.01328,24.8973,1.67529][-0.871915,-0.341525,0.350892][0.125,0.25,0][-8.07482,22.0054,1.69928][-0.733,0.593627,0.332142][0.125,0,0][-11.4544,30.681,6.05771e-006][-0.893838,0.44522,-0.053226][0,0.75,0][-10.8856,30.681,2.90178][-0.846896,0.445407,0.290482][0.125,0.75,0][-4.08099,31.7464,6.26516e-006][0,1,0][0.125,1,0][-11.1162,28.0935,5.55391e-006][-0.911613,-0.410976,0.00775831][0,0.5,0][-10.5732,28.0935,2.76817][-0.839302,-0.411886,0.354855][0.125,0.5,0][-10.8856,30.681,2.90178][-0.846896,0.445407,0.290482][0.125,0.75,0][-10.8856,30.681,2.90178][-0.846896,0.445407,0.290482][0.125,0.75,0][-11.4544,30.681,6.05771e-006][-0.893838,0.44522,-0.053226][0,0.75,0][-11.1162,28.0935,5.55391e-006][-0.911613,-0.410976,0.00775831][0,0.5,0][-8.3427,24.8973,4.93158e-006][-0.940245,-0.34039,-0.00855223][0,0.25,0][-8.01328,24.8973,1.67529][-0.871915,-0.341525,0.350892][0.125,0.25,0][-10.5732,28.0935,2.76817][-0.839302,-0.411886,0.354855][0.125,0.5,0][-10.5732,28.0935,2.76817][-0.839302,-0.411886,0.354855][0.125,0.5,0][-11.1162,28.0935,5.55391e-006][-0.911613,-0.410976,0.00775831][0,0.5,0][-8.3427,24.8973,4.93158e-006][-0.940245,-0.34039,-0.00855223][0,0.25,0][-8.41035,22.0054,4.36851e-006][-0.804409,0.593494,0.0262729][0,0,0][-8.07482,22.0054,1.69928][-0.733,0.593627,0.332142][0.125,0,0][-8.01328,24.8973,1.67529][-0.871915,-0.341525,0.350892][0.125,0.25,0][-8.01328,24.8973,1.67529][-0.871915,-0.341525,0.350892][0.125,0.25,0][-8.3427,24.8973,4.93158e-006][-0.940245,-0.34039,-0.00855223][0,0.25,0][-8.41035,22.0054,4.36851e-006][-0.804409,0.593494,0.0262729][0,0,0][-10.8856,30.681,-2.90177][-0.805552,0.445238,-0.390958][0.875,0.75,0][-11.4544,30.681,6.05771e-006][-0.893838,0.44522,-0.053226][1,0.75,0][-4.08099,31.7464,6.26516e-006][0,1,0][1,1,0][-10.5732,28.0935,-2.76816][-0.845311,-0.412166,-0.339954][0.875,0.5,0][-11.1162,28.0935,5.55391e-006][-0.911613,-0.410976,0.00775831][1,0.5,0][-11.4544,30.681,6.05771e-006][-0.893838,0.44522,-0.053226][1,0.75,0][-11.4544,30.681,6.05771e-006][-0.893838,0.44522,-0.053226][1,0.75,0][-10.8856,30.681,-2.90177][-0.805552,0.445238,-0.390958][0.875,0.75,0][-10.5732,28.0935,-2.76816][-0.845311,-0.412166,-0.339954][0.875,0.5,0][-8.01328,24.8973,-1.67528][-0.865515,-0.341256,-0.366645][0.875,0.25,0][-8.3427,24.8973,4.93158e-006][-0.940245,-0.34039,-0.00855223][1,0.25,0][-11.1162,28.0935,5.55391e-006][-0.911613,-0.410976,0.00775831][1,0.5,0][-11.1162,28.0935,5.55391e-006][-0.911613,-0.410976,0.00775831][1,0.5,0][-10.5732,28.0935,-2.76816][-0.845311,-0.412166,-0.339954][0.875,0.5,0][-8.01328,24.8973,-1.67528][-0.865515,-0.341256,-0.366645][0.875,0.25,0][-8.07482,22.0054,-1.69927][-0.753279,0.593949,-0.28248][0.875,0,0][-8.41035,22.0054,4.36851e-006][-0.804409,0.593494,0.0262729][1,0,0][-8.3427,24.8973,4.93158e-006][-0.940245,-0.34039,-0.00855223][1,0.25,0][-8.3427,24.8973,4.93158e-006][-0.940245,-0.34039,-0.00855223][1,0.25,0][-8.01328,24.8973,-1.67528][-0.865515,-0.341256,-0.366645][0.875,0.25,0][-8.07482,22.0054,-1.69927][-0.753279,0.593949,-0.28248][0.875,0,0][-9.32298,30.681,-5.24198][-0.593803,0.445119,-0.670274][0.75,0.75,0][-10.8856,30.681,-2.90177][-0.805552,0.445238,-0.390958][0.875,0.75,0][-4.08099,31.7464,6.26516e-006][0,1,0][0.875,1,0][-9.08207,28.0935,-5.00108][-0.649754,-0.412738,-0.638331][0.75,0.5,0][-10.5732,28.0935,-2.76816][-0.845311,-0.412166,-0.339954][0.875,0.5,0][-10.8856,30.681,-2.90177][-0.805552,0.445238,-0.390958][0.875,0.75,0][-10.8856,30.681,-2.90177][-0.805552,0.445238,-0.390958][0.875,0.75,0][-9.32298,30.681,-5.24198][-0.593803,0.445119,-0.670274][0.75,0.75,0][-9.08207,28.0935,-5.00108][-0.649754,-0.412738,-0.638331][0.75,0.5,0][-7.10909,24.8973,-3.02809][-0.65853,-0.342091,-0.670307][0.75,0.25,0][-8.01328,24.8973,-1.67528][-0.865515,-0.341256,-0.366645][0.875,0.25,0][-10.5732,28.0935,-2.76816][-0.845311,-0.412166,-0.339954][0.875,0.5,0][-10.5732,28.0935,-2.76816][-0.845311,-0.412166,-0.339954][0.875,0.5,0][-9.08207,28.0935,-5.00108][-0.649754,-0.412738,-0.638331][0.75,0.5,0][-7.10909,24.8973,-3.02809][-0.65853,-0.342091,-0.670307][0.75,0.25,0][-7.15483,22.0054,-3.07384][-0.587537,0.593769,-0.549763][0.75,0,0][-8.07482,22.0054,-1.69927][-0.753279,0.593949,-0.28248][0.875,0,0][-8.01328,24.8973,-1.67528][-0.865515,-0.341256,-0.366645][0.875,0.25,0][-8.01328,24.8973,-1.67528][-0.865515,-0.341256,-0.366645][0.875,0.25,0][-7.10909,24.8973,-3.02809][-0.65853,-0.342091,-0.670307][0.75,0.25,0][-7.15483,22.0054,-3.07384][-0.587537,0.593769,-0.549763][0.75,0,0][-6.98277,30.681,-6.80455][-0.290481,0.445408,-0.846896][0.625,0.75,0][-9.32298,30.681,-5.24198][-0.593803,0.445119,-0.670274][0.75,0.75,0][-4.08099,31.7464,6.26516e-006][0,1,0][0.75,1,0][-6.84916,28.0935,-6.49225][-0.354854,-0.411886,-0.839302][0.625,0.5,0][-9.08207,28.0935,-5.00108][-0.649754,-0.412738,-0.638331][0.75,0.5,0][-9.32298,30.681,-5.24198][-0.593803,0.445119,-0.670274][0.75,0.75,0][-9.32298,30.681,-5.24198][-0.593803,0.445119,-0.670274][0.75,0.75,0][-6.98277,30.681,-6.80455][-0.290481,0.445408,-0.846896][0.625,0.75,0][-6.84916,28.0935,-6.49225][-0.354854,-0.411886,-0.839302][0.625,0.5,0][-5.75628,24.8973,-3.93228][-0.350892,-0.341525,-0.871915][0.625,0.25,0][-7.10909,24.8973,-3.02809][-0.65853,-0.342091,-0.670307][0.75,0.25,0][-9.08207,28.0935,-5.00108][-0.649754,-0.412738,-0.638331][0.75,0.5,0][-9.08207,28.0935,-5.00108][-0.649754,-0.412738,-0.638331][0.75,0.5,0][-6.84916,28.0935,-6.49225][-0.354854,-0.411886,-0.839302][0.625,0.5,0][-5.75628,24.8973,-3.93228][-0.350892,-0.341525,-0.871915][0.625,0.25,0][-5.78026,22.0054,-3.99383][-0.332142,0.593627,-0.733][0.625,0,0][-7.15483,22.0054,-3.07384][-0.587537,0.593769,-0.549763][0.75,0,0][-7.10909,24.8973,-3.02809][-0.65853,-0.342091,-0.670307][0.75,0.25,0][-7.10909,24.8973,-3.02809][-0.65853,-0.342091,-0.670307][0.75,0.25,0][-5.75628,24.8973,-3.93228][-0.350892,-0.341525,-0.871915][0.625,0.25,0][-5.78026,22.0054,-3.99383][-0.332142,0.593627,-0.733][0.625,0,0][-4.08099,30.681,-7.37343][0.053226,0.44522,-0.893838][0.5,0.75,0][-6.98277,30.681,-6.80455][-0.290481,0.445408,-0.846896][0.625,0.75,0][-4.08099,31.7464,6.26516e-006][0,1,0][0.625,1,0][-4.08099,28.0935,-7.0352][-0.00775832,-0.410976,-0.911613][0.5,0.5,0][-6.84916,28.0935,-6.49225][-0.354854,-0.411886,-0.839302][0.625,0.5,0][-6.98277,30.681,-6.80455][-0.290481,0.445408,-0.846896][0.625,0.75,0][-6.98277,30.681,-6.80455][-0.290481,0.445408,-0.846896][0.625,0.75,0][-4.08099,30.681,-7.37343][0.053226,0.44522,-0.893838][0.5,0.75,0][-4.08099,28.0935,-7.0352][-0.00775832,-0.410976,-0.911613][0.5,0.5,0][-4.08099,24.8973,-4.2617][0.00855215,-0.34039,-0.940246][0.5,0.25,0][-5.75628,24.8973,-3.93228][-0.350892,-0.341525,-0.871915][0.625,0.25,0][-6.84916,28.0935,-6.49225][-0.354854,-0.411886,-0.839302][0.625,0.5,0][-6.84916,28.0935,-6.49225][-0.354854,-0.411886,-0.839302][0.625,0.5,0][-4.08099,28.0935,-7.0352][-0.00775832,-0.410976,-0.911613][0.5,0.5,0][-4.08099,24.8973,-4.2617][0.00855215,-0.34039,-0.940246][0.5,0.25,0][-4.08099,22.0054,-4.32935][-0.0262727,0.593494,-0.804409][0.5,0,0][-5.78026,22.0054,-3.99383][-0.332142,0.593627,-0.733][0.625,0,0][-5.75628,24.8973,-3.93228][-0.350892,-0.341525,-0.871915][0.625,0.25,0][-5.75628,24.8973,-3.93228][-0.350892,-0.341525,-0.871915][0.625,0.25,0][-4.08099,24.8973,-4.2617][0.00855215,-0.34039,-0.940246][0.5,0.25,0][-4.08099,22.0054,-4.32935][-0.0262727,0.593494,-0.804409][0.5,0,0][-1.17922,30.681,-6.80455][0.390958,0.445238,-0.805552][0.375,0.75,0][-4.08099,30.681,-7.37343][0.053226,0.44522,-0.893838][0.5,0.75,0][-4.08099,31.7464,6.26516e-006][0,1,0][0.5,1,0][-1.31283,28.0935,-6.49225][0.339954,-0.412166,-0.845311][0.375,0.5,0][-4.08099,28.0935,-7.0352][-0.00775832,-0.410976,-0.911613][0.5,0.5,0][-4.08099,30.681,-7.37343][0.053226,0.44522,-0.893838][0.5,0.75,0][-4.08099,30.681,-7.37343][0.053226,0.44522,-0.893838][0.5,0.75,0][-1.17922,30.681,-6.80455][0.390958,0.445238,-0.805552][0.375,0.75,0][-1.31283,28.0935,-6.49225][0.339954,-0.412166,-0.845311][0.375,0.5,0][-2.4057,24.8973,-3.93228][0.366645,-0.341256,-0.865515][0.375,0.25,0][-4.08099,24.8973,-4.2617][0.00855215,-0.34039,-0.940246][0.5,0.25,0][-4.08099,28.0935,-7.0352][-0.00775832,-0.410976,-0.911613][0.5,0.5,0][-4.08099,28.0935,-7.0352][-0.00775832,-0.410976,-0.911613][0.5,0.5,0][-1.31283,28.0935,-6.49225][0.339954,-0.412166,-0.845311][0.375,0.5,0][-2.4057,24.8973,-3.93228][0.366645,-0.341256,-0.865515][0.375,0.25,0][-2.38172,22.0054,-3.99383][0.28248,0.593949,-0.753279][0.375,0,0][-4.08099,22.0054,-4.32935][-0.0262727,0.593494,-0.804409][0.5,0,0][-4.08099,24.8973,-4.2617][0.00855215,-0.34039,-0.940246][0.5,0.25,0][-4.08099,24.8973,-4.2617][0.00855215,-0.34039,-0.940246][0.5,0.25,0][-2.4057,24.8973,-3.93228][0.366645,-0.341256,-0.865515][0.375,0.25,0][-2.38172,22.0054,-3.99383][0.28248,0.593949,-0.753279][0.375,0,0][1.16099,30.681,-5.24198][0.670274,0.445119,-0.593803][0.25,0.75,0][-1.17922,30.681,-6.80455][0.390958,0.445238,-0.805552][0.375,0.75,0][-4.08099,31.7464,6.26516e-006][0,1,0][0.375,1,0][0.920089,28.0935,-5.00108][0.638331,-0.412738,-0.649754][0.25,0.5,0][-1.31283,28.0935,-6.49225][0.339954,-0.412166,-0.845311][0.375,0.5,0][-1.17922,30.681,-6.80455][0.390958,0.445238,-0.805552][0.375,0.75,0][-1.17922,30.681,-6.80455][0.390958,0.445238,-0.805552][0.375,0.75,0][1.16099,30.681,-5.24198][0.670274,0.445119,-0.593803][0.25,0.75,0][0.920089,28.0935,-5.00108][0.638331,-0.412738,-0.649754][0.25,0.5,0][-1.0529,24.8973,-3.02809][0.670307,-0.342092,-0.65853][0.25,0.25,0][-2.4057,24.8973,-3.93228][0.366645,-0.341256,-0.865515][0.375,0.25,0][-1.31283,28.0935,-6.49225][0.339954,-0.412166,-0.845311][0.375,0.5,0][-1.31283,28.0935,-6.49225][0.339954,-0.412166,-0.845311][0.375,0.5,0][0.920089,28.0935,-5.00108][0.638331,-0.412738,-0.649754][0.25,0.5,0][-1.0529,24.8973,-3.02809][0.670307,-0.342092,-0.65853][0.25,0.25,0][-1.00715,22.0054,-3.07384][0.549763,0.593769,-0.587537][0.25,0,0][-2.38172,22.0054,-3.99383][0.28248,0.593949,-0.753279][0.375,0,0][-2.4057,24.8973,-3.93228][0.366645,-0.341256,-0.865515][0.375,0.25,0][-2.4057,24.8973,-3.93228][0.366645,-0.341256,-0.865515][0.375,0.25,0][-1.0529,24.8973,-3.02809][0.670307,-0.342092,-0.65853][0.25,0.25,0][-1.00715,22.0054,-3.07384][0.549763,0.593769,-0.587537][0.25,0,0][2.72357,30.681,-2.90177][0.846896,0.445407,-0.290481][0.125,0.75,0][1.16099,30.681,-5.24198][0.670274,0.445119,-0.593803][0.25,0.75,0][-4.08099,31.7464,6.26516e-006][0,1,0][0.25,1,0][2.41126,28.0935,-2.76816][0.839302,-0.411886,-0.354854][0.125,0.5,0][0.920089,28.0935,-5.00108][0.638331,-0.412738,-0.649754][0.25,0.5,0][1.16099,30.681,-5.24198][0.670274,0.445119,-0.593803][0.25,0.75,0][1.16099,30.681,-5.24198][0.670274,0.445119,-0.593803][0.25,0.75,0][2.72357,30.681,-2.90177][0.846896,0.445407,-0.290481][0.125,0.75,0][2.41126,28.0935,-2.76816][0.839302,-0.411886,-0.354854][0.125,0.5,0][-0.14871,24.8973,-1.67528][0.871915,-0.341525,-0.350892][0.125,0.25,0][-1.0529,24.8973,-3.02809][0.670307,-0.342092,-0.65853][0.25,0.25,0][0.920089,28.0935,-5.00108][0.638331,-0.412738,-0.649754][0.25,0.5,0][0.920089,28.0935,-5.00108][0.638331,-0.412738,-0.649754][0.25,0.5,0][2.41126,28.0935,-2.76816][0.839302,-0.411886,-0.354854][0.125,0.5,0][-0.14871,24.8973,-1.67528][0.871915,-0.341525,-0.350892][0.125,0.25,0][-0.0871627,22.0054,-1.69927][0.733,0.593627,-0.332142][0.125,0,0][-1.00715,22.0054,-3.07384][0.549763,0.593769,-0.587537][0.25,0,0][-1.0529,24.8973,-3.02809][0.670307,-0.342092,-0.65853][0.25,0.25,0][-1.0529,24.8973,-3.02809][0.670307,-0.342092,-0.65853][0.25,0.25,0][-0.14871,24.8973,-1.67528][0.871915,-0.341525,-0.350892][0.125,0.25,0][-0.0871627,22.0054,-1.69927][0.733,0.593627,-0.332142][0.125,0,0][3.29244,30.681,6.05771e-006][0.893838,0.44522,0.053226][0,0.75,0][2.72357,30.681,-2.90177][0.846896,0.445407,-0.290481][0.125,0.75,0][-4.08099,31.7464,6.26516e-006][0,1,0][0.125,1,0][2.95421,28.0935,5.55391e-006][0.911613,-0.410976,-0.00775837][0,0.5,0][2.41126,28.0935,-2.76816][0.839302,-0.411886,-0.354854][0.125,0.5,0][2.72357,30.681,-2.90177][0.846896,0.445407,-0.290481][0.125,0.75,0][2.72357,30.681,-2.90177][0.846896,0.445407,-0.290481][0.125,0.75,0][3.29244,30.681,6.05771e-006][0.893838,0.44522,0.053226][0,0.75,0][2.95421,28.0935,5.55391e-006][0.911613,-0.410976,-0.00775837][0,0.5,0][0.180716,24.8973,4.93158e-006][0.940245,-0.34039,0.00855214][0,0.25,0][-0.14871,24.8973,-1.67528][0.871915,-0.341525,-0.350892][0.125,0.25,0][2.41126,28.0935,-2.76816][0.839302,-0.411886,-0.354854][0.125,0.5,0][2.41126,28.0935,-2.76816][0.839302,-0.411886,-0.354854][0.125,0.5,0][2.95421,28.0935,5.55391e-006][0.911613,-0.410976,-0.00775837][0,0.5,0][0.180716,24.8973,4.93158e-006][0.940245,-0.34039,0.00855214][0,0.25,0][0.248362,22.0054,4.36851e-006][0.804409,0.593494,-0.0262729][0,0,0][-0.0871627,22.0054,-1.69927][0.733,0.593627,-0.332142][0.125,0,0][-0.14871,24.8973,-1.67528][0.871915,-0.341525,-0.350892][0.125,0.25,0][-0.14871,24.8973,-1.67528][0.871915,-0.341525,-0.350892][0.125,0.25,0][0.180716,24.8973,4.93158e-006][0.940245,-0.34039,0.00855214][0,0.25,0][0.248362,22.0054,4.36851e-006][0.804409,0.593494,-0.0262729][0,0,0][5.02993,20.0775,3.87647][0.229426,0.969258,0.0888914][0.875,0.75,0][5.79535,20.0775,3.99313e-006][0.246499,0.969128,-0.00544524][1,0.75,0][0.248362,22.0054,4.36851e-006][0.804409,0.593494,-0.0262729][1,1,0][0.248362,22.0054,4.36851e-006][0.804409,0.593494,-0.0262729][1,1,0][-0.0871627,22.0054,1.69928][0.753279,0.593949,0.28248][0.875,1,0][5.02993,20.0775,3.87647][0.229426,0.969258,0.0888914][0.875,0.75,0][12.3936,18.7584,7.0095][0.158332,0.985171,0.0660963][0.875,0.5,0][13.7776,18.7584,3.73629e-006][0.171991,0.985098,0.000587889][1,0.5,0][5.79535,20.0775,3.99313e-006][0.246499,0.969128,-0.00544524][1,0.75,0][5.79535,20.0775,3.99313e-006][0.246499,0.969128,-0.00544524][1,0.75,0][5.02993,20.0775,3.87647][0.229426,0.969258,0.0888914][0.875,0.75,0][12.3936,18.7584,7.0095][0.158332,0.985171,0.0660963][0.875,0.5,0][19.0083,17.4393,9.82392][0.327101,0.93335,0.14786][0.875,0.25,0][20.9481,17.4393,3.47945e-006][0.359593,0.933038,0.011522][1,0.25,0][13.7776,18.7584,3.73629e-006][0.171991,0.985098,0.000587889][1,0.5,0][13.7776,18.7584,3.73629e-006][0.171991,0.985098,0.000587889][1,0.5,0][12.3936,18.7584,7.0095][0.158332,0.985171,0.0660963][0.875,0.5,0][19.0083,17.4393,9.82392][0.327101,0.93335,0.14786][0.875,0.25,0][21.8789,15.5114,11.0453][0.499162,0.849969,0.168496][0.875,0,0][24.0598,15.5114,3.10407e-006][0.526357,0.849558,-0.0346432][1,0,0][20.9481,17.4393,3.47945e-006][0.359593,0.933038,0.011522][1,0.25,0][20.9481,17.4393,3.47945e-006][0.359593,0.933038,0.011522][1,0.25,0][19.0083,17.4393,9.82392][0.327101,0.93335,0.14786][0.875,0.25,0][21.8789,15.5114,11.0453][0.499162,0.849969,0.168496][0.875,0,0][2.93121,20.0775,7.0122][0.177494,0.969364,0.169793][0.75,0.75,0][5.02993,20.0775,3.87647][0.229426,0.969258,0.0888914][0.875,0.75,0][-0.0871627,22.0054,1.69928][0.753279,0.593949,0.28248][0.875,1,0][-0.0871627,22.0054,1.69928][0.753279,0.593949,0.28248][0.875,1,0][-1.00715,22.0054,3.07385][0.587537,0.593769,0.549763][0.75,1,0][2.93121,20.0775,7.0122][0.177494,0.969364,0.169793][0.75,0.75,0][8.5986,18.7584,12.6796][0.12072,0.985217,0.121551][0.75,0.5,0][12.3936,18.7584,7.0095][0.158332,0.985171,0.0660963][0.875,0.5,0][5.02993,20.0775,3.87647][0.229426,0.969258,0.0888914][0.875,0.75,0][5.02993,20.0775,3.87647][0.229426,0.969258,0.0888914][0.875,0.75,0][2.93121,20.0775,7.0122][0.177494,0.969364,0.169793][0.75,0.75,0][8.5986,18.7584,12.6796][0.12072,0.985217,0.121551][0.75,0.5,0][13.6897,17.4393,17.7706][0.245276,0.933496,0.261583][0.75,0.25,0][19.0083,17.4393,9.82392][0.327101,0.93335,0.14786][0.875,0.25,0][12.3936,18.7584,7.0095][0.158332,0.985171,0.0660963][0.875,0.5,0][12.3936,18.7584,7.0095][0.158332,0.985171,0.0660963][0.875,0.5,0][8.5986,18.7584,12.6796][0.12072,0.985217,0.121551][0.75,0.5,0][13.6897,17.4393,17.7706][0.245276,0.933496,0.261583][0.75,0.25,0][15.899,15.5114,19.98][0.395598,0.850517,0.346586][0.75,0,0][21.8789,15.5114,11.0453][0.499162,0.849969,0.168496][0.875,0,0][19.0083,17.4393,9.82392][0.327101,0.93335,0.14786][0.875,0.25,0][19.0083,17.4393,9.82392][0.327101,0.93335,0.14786][0.875,0.25,0][13.6897,17.4393,17.7706][0.245276,0.933496,0.261583][0.75,0.25,0][15.899,15.5114,19.98][0.395598,0.850517,0.346586][0.75,0,0][-0.204529,20.0775,9.11093][0.0990286,0.969283,0.225129][0.625,0.75,0][2.93121,20.0775,7.0122][0.177494,0.969364,0.169793][0.75,0.75,0][-1.00715,22.0054,3.07385][0.587537,0.593769,0.549763][0.75,1,0][-1.00715,22.0054,3.07385][0.587537,0.593769,0.549763][0.75,1,0][-2.38172,22.0054,3.99383][0.332142,0.593627,0.733][0.625,1,0][-0.204529,20.0775,9.11093][0.0990286,0.969283,0.225129][0.625,0.75,0][2.9285,18.7584,16.4745][0.0650024,0.985169,0.158797][0.625,0.5,0][8.5986,18.7584,12.6796][0.12072,0.985217,0.121551][0.75,0.5,0][2.93121,20.0775,7.0122][0.177494,0.969364,0.169793][0.75,0.75,0][2.93121,20.0775,7.0122][0.177494,0.969364,0.169793][0.75,0.75,0][-0.204529,20.0775,9.11093][0.0990286,0.969283,0.225129][0.625,0.75,0][2.9285,18.7584,16.4745][0.0650024,0.985169,0.158797][0.625,0.5,0][5.74292,17.4393,23.0893][0.126386,0.933285,0.336164][0.625,0.25,0][13.6897,17.4393,17.7706][0.245276,0.933496,0.261583][0.75,0.25,0][8.5986,18.7584,12.6796][0.12072,0.985217,0.121551][0.75,0.5,0][8.5986,18.7584,12.6796][0.12072,0.985217,0.121551][0.75,0.5,0][2.9285,18.7584,16.4745][0.0650024,0.985169,0.158797][0.625,0.5,0][5.74292,17.4393,23.0893][0.126386,0.933285,0.336164][0.625,0.25,0][6.96427,15.5114,25.9599][0.233051,0.850287,0.471909][0.625,0,0][15.899,15.5114,19.98][0.395598,0.850517,0.346586][0.75,0,0][13.6897,17.4393,17.7706][0.245276,0.933496,0.261583][0.75,0.25,0][13.6897,17.4393,17.7706][0.245276,0.933496,0.261583][0.75,0.25,0][5.74292,17.4393,23.0893][0.126386,0.933285,0.336164][0.625,0.25,0][6.96427,15.5114,25.9599][0.233051,0.850287,0.471909][0.625,0,0][-4.08099,20.0775,9.87634][0.00544522,0.969128,0.246499][0.5,0.75,0][-0.204529,20.0775,9.11093][0.0990286,0.969283,0.225129][0.625,0.75,0][-2.38172,22.0054,3.99383][0.332142,0.593627,0.733][0.625,1,0][-2.38172,22.0054,3.99383][0.332142,0.593627,0.733][0.625,1,0][-4.08099,22.0054,4.32936][0.0262731,0.593494,0.804409][0.5,1,0][-4.08099,20.0775,9.87634][0.00544522,0.969128,0.246499][0.5,0.75,0][-4.08099,18.7584,17.8586][-0.000587946,0.985098,0.171991][0.5,0.5,0][2.9285,18.7584,16.4745][0.0650024,0.985169,0.158797][0.625,0.5,0][-0.204529,20.0775,9.11093][0.0990286,0.969283,0.225129][0.625,0.75,0][-0.204529,20.0775,9.11093][0.0990286,0.969283,0.225129][0.625,0.75,0][-4.08099,20.0775,9.87634][0.00544522,0.969128,0.246499][0.5,0.75,0][-4.08099,18.7584,17.8586][-0.000587946,0.985098,0.171991][0.5,0.5,0][-4.08099,17.4393,25.0291][-0.0115217,0.933038,0.359593][0.5,0.25,0][5.74292,17.4393,23.0893][0.126386,0.933285,0.336164][0.625,0.25,0][2.9285,18.7584,16.4745][0.0650024,0.985169,0.158797][0.625,0.5,0][2.9285,18.7584,16.4745][0.0650024,0.985169,0.158797][0.625,0.5,0][-4.08099,18.7584,17.8586][-0.000587946,0.985098,0.171991][0.5,0.5,0][-4.08099,17.4393,25.0291][-0.0115217,0.933038,0.359593][0.5,0.25,0][-4.08099,15.5114,28.1408][0.0346435,0.849558,0.526357][0.5,0,0][6.96427,15.5114,25.9599][0.233051,0.850287,0.471909][0.625,0,0][5.74292,17.4393,23.0893][0.126386,0.933285,0.336164][0.625,0.25,0][5.74292,17.4393,23.0893][0.126386,0.933285,0.336164][0.625,0.25,0][-4.08099,17.4393,25.0291][-0.0115217,0.933038,0.359593][0.5,0.25,0][-4.08099,15.5114,28.1408][0.0346435,0.849558,0.526357][0.5,0,0][-7.95746,20.0775,9.11093][-0.0888911,0.969258,0.229427][0.375,0.75,0][-4.08099,20.0775,9.87634][0.00544522,0.969128,0.246499][0.5,0.75,0][-4.08099,22.0054,4.32936][0.0262731,0.593494,0.804409][0.5,1,0][-4.08099,22.0054,4.32936][0.0262731,0.593494,0.804409][0.5,1,0][-5.78026,22.0054,3.99383][-0.28248,0.593949,0.753279][0.375,1,0][-7.95746,20.0775,9.11093][-0.0888911,0.969258,0.229427][0.375,0.75,0][-11.0905,18.7584,16.4745][-0.066096,0.985171,0.158332][0.375,0.5,0][-4.08099,18.7584,17.8586][-0.000587946,0.985098,0.171991][0.5,0.5,0][-4.08099,20.0775,9.87634][0.00544522,0.969128,0.246499][0.5,0.75,0][-4.08099,20.0775,9.87634][0.00544522,0.969128,0.246499][0.5,0.75,0][-7.95746,20.0775,9.11093][-0.0888911,0.969258,0.229427][0.375,0.75,0][-11.0905,18.7584,16.4745][-0.066096,0.985171,0.158332][0.375,0.5,0][-13.9049,17.4393,23.0893][-0.147859,0.93335,0.3271][0.375,0.25,0][-4.08099,17.4393,25.0291][-0.0115217,0.933038,0.359593][0.5,0.25,0][-4.08099,18.7584,17.8586][-0.000587946,0.985098,0.171991][0.5,0.5,0][-4.08099,18.7584,17.8586][-0.000587946,0.985098,0.171991][0.5,0.5,0][-11.0905,18.7584,16.4745][-0.066096,0.985171,0.158332][0.375,0.5,0][-13.9049,17.4393,23.0893][-0.147859,0.93335,0.3271][0.375,0.25,0][-15.1263,15.5114,25.9599][-0.168496,0.849969,0.499162][0.375,0,0][-4.08099,15.5114,28.1408][0.0346435,0.849558,0.526357][0.5,0,0][-4.08099,17.4393,25.0291][-0.0115217,0.933038,0.359593][0.5,0.25,0][-4.08099,17.4393,25.0291][-0.0115217,0.933038,0.359593][0.5,0.25,0][-13.9049,17.4393,23.0893][-0.147859,0.93335,0.3271][0.375,0.25,0][-15.1263,15.5114,25.9599][-0.168496,0.849969,0.499162][0.375,0,0][-11.0932,20.0775,7.0122][-0.169793,0.969364,0.177494][0.25,0.75,0][-7.95746,20.0775,9.11093][-0.0888911,0.969258,0.229427][0.375,0.75,0][-5.78026,22.0054,3.99383][-0.28248,0.593949,0.753279][0.375,1,0][-5.78026,22.0054,3.99383][-0.28248,0.593949,0.753279][0.375,1,0][-7.15483,22.0054,3.07385][-0.549763,0.593769,0.587537][0.25,1,0][-11.0932,20.0775,7.0122][-0.169793,0.969364,0.177494][0.25,0.75,0][-16.7606,18.7584,12.6796][-0.121551,0.985217,0.12072][0.25,0.5,0][-11.0905,18.7584,16.4745][-0.066096,0.985171,0.158332][0.375,0.5,0][-7.95746,20.0775,9.11093][-0.0888911,0.969258,0.229427][0.375,0.75,0][-7.95746,20.0775,9.11093][-0.0888911,0.969258,0.229427][0.375,0.75,0][-11.0932,20.0775,7.0122][-0.169793,0.969364,0.177494][0.25,0.75,0][-16.7606,18.7584,12.6796][-0.121551,0.985217,0.12072][0.25,0.5,0][-21.8516,17.4393,17.7706][-0.261583,0.933496,0.245276][0.25,0.25,0][-13.9049,17.4393,23.0893][-0.147859,0.93335,0.3271][0.375,0.25,0][-11.0905,18.7584,16.4745][-0.066096,0.985171,0.158332][0.375,0.5,0][-11.0905,18.7584,16.4745][-0.066096,0.985171,0.158332][0.375,0.5,0][-16.7606,18.7584,12.6796][-0.121551,0.985217,0.12072][0.25,0.5,0][-21.8516,17.4393,17.7706][-0.261583,0.933496,0.245276][0.25,0.25,0][-24.061,15.5114,19.98][-0.346586,0.850517,0.395598][0.25,0,0][-15.1263,15.5114,25.9599][-0.168496,0.849969,0.499162][0.375,0,0][-13.9049,17.4393,23.0893][-0.147859,0.93335,0.3271][0.375,0.25,0][-13.9049,17.4393,23.0893][-0.147859,0.93335,0.3271][0.375,0.25,0][-21.8516,17.4393,17.7706][-0.261583,0.933496,0.245276][0.25,0.25,0][-24.061,15.5114,19.98][-0.346586,0.850517,0.395598][0.25,0,0][-13.1919,20.0775,3.87647][-0.225129,0.969283,0.0990288][0.125,0.75,0][-11.0932,20.0775,7.0122][-0.169793,0.969364,0.177494][0.25,0.75,0][-7.15483,22.0054,3.07385][-0.549763,0.593769,0.587537][0.25,1,0][-7.15483,22.0054,3.07385][-0.549763,0.593769,0.587537][0.25,1,0][-8.07482,22.0054,1.69928][-0.733,0.593627,0.332142][0.125,1,0][-13.1919,20.0775,3.87647][-0.225129,0.969283,0.0990288][0.125,0.75,0][-20.5555,18.7584,7.0095][-0.158797,0.985169,0.0650026][0.125,0.5,0][-16.7606,18.7584,12.6796][-0.121551,0.985217,0.12072][0.25,0.5,0][-11.0932,20.0775,7.0122][-0.169793,0.969364,0.177494][0.25,0.75,0][-11.0932,20.0775,7.0122][-0.169793,0.969364,0.177494][0.25,0.75,0][-13.1919,20.0775,3.87647][-0.225129,0.969283,0.0990288][0.125,0.75,0][-20.5555,18.7584,7.0095][-0.158797,0.985169,0.0650026][0.125,0.5,0][-27.1703,17.4393,9.82392][-0.336164,0.933285,0.126386][0.125,0.25,0][-21.8516,17.4393,17.7706][-0.261583,0.933496,0.245276][0.25,0.25,0][-16.7606,18.7584,12.6796][-0.121551,0.985217,0.12072][0.25,0.5,0][-16.7606,18.7584,12.6796][-0.121551,0.985217,0.12072][0.25,0.5,0][-20.5555,18.7584,7.0095][-0.158797,0.985169,0.0650026][0.125,0.5,0][-27.1703,17.4393,9.82392][-0.336164,0.933285,0.126386][0.125,0.25,0][-30.0409,15.5114,11.0453][-0.471909,0.850287,0.233051][0.125,0,0][-24.061,15.5114,19.98][-0.346586,0.850517,0.395598][0.25,0,0][-21.8516,17.4393,17.7706][-0.261583,0.933496,0.245276][0.25,0.25,0][-21.8516,17.4393,17.7706][-0.261583,0.933496,0.245276][0.25,0.25,0][-27.1703,17.4393,9.82392][-0.336164,0.933285,0.126386][0.125,0.25,0][-30.0409,15.5114,11.0453][-0.471909,0.850287,0.233051][0.125,0,0][-13.9573,20.0775,3.99313e-006][-0.246499,0.969128,0.00544527][0,0.75,0][-13.1919,20.0775,3.87647][-0.225129,0.969283,0.0990288][0.125,0.75,0][-8.07482,22.0054,1.69928][-0.733,0.593627,0.332142][0.125,1,0][-8.07482,22.0054,1.69928][-0.733,0.593627,0.332142][0.125,1,0][-8.41035,22.0054,4.36851e-006][-0.804409,0.593494,0.0262729][0,1,0][-13.9573,20.0775,3.99313e-006][-0.246499,0.969128,0.00544527][0,0.75,0][-21.9396,18.7584,3.73629e-006][-0.171991,0.985098,-0.000587725][0,0.5,0][-20.5555,18.7584,7.0095][-0.158797,0.985169,0.0650026][0.125,0.5,0][-13.1919,20.0775,3.87647][-0.225129,0.969283,0.0990288][0.125,0.75,0][-13.1919,20.0775,3.87647][-0.225129,0.969283,0.0990288][0.125,0.75,0][-13.9573,20.0775,3.99313e-006][-0.246499,0.969128,0.00544527][0,0.75,0][-21.9396,18.7584,3.73629e-006][-0.171991,0.985098,-0.000587725][0,0.5,0][-29.1101,17.4393,3.47945e-006][-0.359593,0.933038,-0.0115214][0,0.25,0][-27.1703,17.4393,9.82392][-0.336164,0.933285,0.126386][0.125,0.25,0][-20.5555,18.7584,7.0095][-0.158797,0.985169,0.0650026][0.125,0.5,0][-20.5555,18.7584,7.0095][-0.158797,0.985169,0.0650026][0.125,0.5,0][-21.9396,18.7584,3.73629e-006][-0.171991,0.985098,-0.000587725][0,0.5,0][-29.1101,17.4393,3.47945e-006][-0.359593,0.933038,-0.0115214][0,0.25,0][-32.2218,15.5114,3.10407e-006][-0.526357,0.849558,0.0346438][0,0,0][-30.0409,15.5114,11.0453][-0.471909,0.850287,0.233051][0.125,0,0][-27.1703,17.4393,9.82392][-0.336164,0.933285,0.126386][0.125,0.25,0][-27.1703,17.4393,9.82392][-0.336164,0.933285,0.126386][0.125,0.25,0][-29.1101,17.4393,3.47945e-006][-0.359593,0.933038,-0.0115214][0,0.25,0][-32.2218,15.5114,3.10407e-006][-0.526357,0.849558,0.0346438][0,0,0][-13.1919,20.0775,-3.87646][-0.229426,0.969258,-0.0888912][0.875,0.75,0][-13.9573,20.0775,3.99313e-006][-0.246499,0.969128,0.00544527][1,0.75,0][-8.41035,22.0054,4.36851e-006][-0.804409,0.593494,0.0262729][1,1,0][-8.41035,22.0054,4.36851e-006][-0.804409,0.593494,0.0262729][1,1,0][-8.07482,22.0054,-1.69927][-0.753279,0.593949,-0.28248][0.875,1,0][-13.1919,20.0775,-3.87646][-0.229426,0.969258,-0.0888912][0.875,0.75,0][-20.5555,18.7584,-7.00949][-0.158332,0.985171,-0.0660958][0.875,0.5,0][-21.9396,18.7584,3.73629e-006][-0.171991,0.985098,-0.000587725][1,0.5,0][-13.9573,20.0775,3.99313e-006][-0.246499,0.969128,0.00544527][1,0.75,0][-13.9573,20.0775,3.99313e-006][-0.246499,0.969128,0.00544527][1,0.75,0][-13.1919,20.0775,-3.87646][-0.229426,0.969258,-0.0888912][0.875,0.75,0][-20.5555,18.7584,-7.00949][-0.158332,0.985171,-0.0660958][0.875,0.5,0][-27.1703,17.4393,-9.82391][-0.3271,0.93335,-0.147859][0.875,0.25,0][-29.1101,17.4393,3.47945e-006][-0.359593,0.933038,-0.0115214][1,0.25,0][-21.9396,18.7584,3.73629e-006][-0.171991,0.985098,-0.000587725][1,0.5,0][-21.9396,18.7584,3.73629e-006][-0.171991,0.985098,-0.000587725][1,0.5,0][-20.5555,18.7584,-7.00949][-0.158332,0.985171,-0.0660958][0.875,0.5,0][-27.1703,17.4393,-9.82391][-0.3271,0.93335,-0.147859][0.875,0.25,0][-30.0409,15.5114,-11.0453][-0.499162,0.849969,-0.168496][0.875,0,0][-32.2218,15.5114,3.10407e-006][-0.526357,0.849558,0.0346438][1,0,0][-29.1101,17.4393,3.47945e-006][-0.359593,0.933038,-0.0115214][1,0.25,0][-29.1101,17.4393,3.47945e-006][-0.359593,0.933038,-0.0115214][1,0.25,0][-27.1703,17.4393,-9.82391][-0.3271,0.93335,-0.147859][0.875,0.25,0][-30.0409,15.5114,-11.0453][-0.499162,0.849969,-0.168496][0.875,0,0][-11.0932,20.0775,-7.0122][-0.177494,0.969364,-0.169793][0.75,0.75,0][-13.1919,20.0775,-3.87646][-0.229426,0.969258,-0.0888912][0.875,0.75,0][-8.07482,22.0054,-1.69927][-0.753279,0.593949,-0.28248][0.875,1,0][-8.07482,22.0054,-1.69927][-0.753279,0.593949,-0.28248][0.875,1,0][-7.15483,22.0054,-3.07384][-0.587537,0.593769,-0.549763][0.75,1,0][-11.0932,20.0775,-7.0122][-0.177494,0.969364,-0.169793][0.75,0.75,0][-16.7606,18.7584,-12.6796][-0.12072,0.985217,-0.12155][0.75,0.5,0][-20.5555,18.7584,-7.00949][-0.158332,0.985171,-0.0660958][0.875,0.5,0][-13.1919,20.0775,-3.87646][-0.229426,0.969258,-0.0888912][0.875,0.75,0][-13.1919,20.0775,-3.87646][-0.229426,0.969258,-0.0888912][0.875,0.75,0][-11.0932,20.0775,-7.0122][-0.177494,0.969364,-0.169793][0.75,0.75,0][-16.7606,18.7584,-12.6796][-0.12072,0.985217,-0.12155][0.75,0.5,0][-21.8516,17.4393,-17.7706][-0.245276,0.933496,-0.261583][0.75,0.25,0][-27.1703,17.4393,-9.82391][-0.3271,0.93335,-0.147859][0.875,0.25,0][-20.5555,18.7584,-7.00949][-0.158332,0.985171,-0.0660958][0.875,0.5,0][-20.5555,18.7584,-7.00949][-0.158332,0.985171,-0.0660958][0.875,0.5,0][-16.7606,18.7584,-12.6796][-0.12072,0.985217,-0.12155][0.75,0.5,0][-21.8516,17.4393,-17.7706][-0.245276,0.933496,-0.261583][0.75,0.25,0][-24.061,15.5114,-19.98][-0.395598,0.850517,-0.346586][0.75,0,0][-30.0409,15.5114,-11.0453][-0.499162,0.849969,-0.168496][0.875,0,0][-27.1703,17.4393,-9.82391][-0.3271,0.93335,-0.147859][0.875,0.25,0][-27.1703,17.4393,-9.82391][-0.3271,0.93335,-0.147859][0.875,0.25,0][-21.8516,17.4393,-17.7706][-0.245276,0.933496,-0.261583][0.75,0.25,0][-24.061,15.5114,-19.98][-0.395598,0.850517,-0.346586][0.75,0,0][-7.95746,20.0775,-9.11092][-0.0990291,0.969283,-0.225128][0.625,0.75,0][-11.0932,20.0775,-7.0122][-0.177494,0.969364,-0.169793][0.75,0.75,0][-7.15483,22.0054,-3.07384][-0.587537,0.593769,-0.549763][0.75,1,0][-7.15483,22.0054,-3.07384][-0.587537,0.593769,-0.549763][0.75,1,0][-5.78026,22.0054,-3.99383][-0.332142,0.593627,-0.733][0.625,1,0][-7.95746,20.0775,-9.11092][-0.0990291,0.969283,-0.225128][0.625,0.75,0][-11.0905,18.7584,-16.4745][-0.0650022,0.985169,-0.158796][0.625,0.5,0][-16.7606,18.7584,-12.6796][-0.12072,0.985217,-0.12155][0.75,0.5,0][-11.0932,20.0775,-7.0122][-0.177494,0.969364,-0.169793][0.75,0.75,0][-11.0932,20.0775,-7.0122][-0.177494,0.969364,-0.169793][0.75,0.75,0][-7.95746,20.0775,-9.11092][-0.0990291,0.969283,-0.225128][0.625,0.75,0][-11.0905,18.7584,-16.4745][-0.0650022,0.985169,-0.158796][0.625,0.5,0][-13.9049,17.4393,-23.0893][-0.126386,0.933285,-0.336164][0.625,0.25,0][-21.8516,17.4393,-17.7706][-0.245276,0.933496,-0.261583][0.75,0.25,0][-16.7606,18.7584,-12.6796][-0.12072,0.985217,-0.12155][0.75,0.5,0][-16.7606,18.7584,-12.6796][-0.12072,0.985217,-0.12155][0.75,0.5,0][-11.0905,18.7584,-16.4745][-0.0650022,0.985169,-0.158796][0.625,0.5,0][-13.9049,17.4393,-23.0893][-0.126386,0.933285,-0.336164][0.625,0.25,0][-15.1263,15.5114,-25.9599][-0.233051,0.850287,-0.471909][0.625,0,0][-24.061,15.5114,-19.98][-0.395598,0.850517,-0.346586][0.75,0,0][-21.8516,17.4393,-17.7706][-0.245276,0.933496,-0.261583][0.75,0.25,0][-21.8516,17.4393,-17.7706][-0.245276,0.933496,-0.261583][0.75,0.25,0][-13.9049,17.4393,-23.0893][-0.126386,0.933285,-0.336164][0.625,0.25,0][-15.1263,15.5114,-25.9599][-0.233051,0.850287,-0.471909][0.625,0,0][-4.08099,20.0775,-9.87634][-0.00544526,0.969128,-0.246499][0.5,0.75,0][-7.95746,20.0775,-9.11092][-0.0990291,0.969283,-0.225128][0.625,0.75,0][-5.78026,22.0054,-3.99383][-0.332142,0.593627,-0.733][0.625,1,0][-5.78026,22.0054,-3.99383][-0.332142,0.593627,-0.733][0.625,1,0][-4.08099,22.0054,-4.32935][-0.0262727,0.593494,-0.804409][0.5,1,0][-4.08099,20.0775,-9.87634][-0.00544526,0.969128,-0.246499][0.5,0.75,0][-4.08099,18.7584,-17.8586][0.000587654,0.985098,-0.171991][0.5,0.5,0][-11.0905,18.7584,-16.4745][-0.0650022,0.985169,-0.158796][0.625,0.5,0][-7.95746,20.0775,-9.11092][-0.0990291,0.969283,-0.225128][0.625,0.75,0][-7.95746,20.0775,-9.11092][-0.0990291,0.969283,-0.225128][0.625,0.75,0][-4.08099,20.0775,-9.87634][-0.00544526,0.969128,-0.246499][0.5,0.75,0][-4.08099,18.7584,-17.8586][0.000587654,0.985098,-0.171991][0.5,0.5,0][-4.08099,17.4393,-25.0291][0.0115217,0.933038,-0.359593][0.5,0.25,0][-13.9049,17.4393,-23.0893][-0.126386,0.933285,-0.336164][0.625,0.25,0][-11.0905,18.7584,-16.4745][-0.0650022,0.985169,-0.158796][0.625,0.5,0][-11.0905,18.7584,-16.4745][-0.0650022,0.985169,-0.158796][0.625,0.5,0][-4.08099,18.7584,-17.8586][0.000587654,0.985098,-0.171991][0.5,0.5,0][-4.08099,17.4393,-25.0291][0.0115217,0.933038,-0.359593][0.5,0.25,0][-4.08099,15.5114,-28.1408][-0.0346435,0.849558,-0.526357][0.5,0,0][-15.1263,15.5114,-25.9599][-0.233051,0.850287,-0.471909][0.625,0,0][-13.9049,17.4393,-23.0893][-0.126386,0.933285,-0.336164][0.625,0.25,0][-13.9049,17.4393,-23.0893][-0.126386,0.933285,-0.336164][0.625,0.25,0][-4.08099,17.4393,-25.0291][0.0115217,0.933038,-0.359593][0.5,0.25,0][-4.08099,15.5114,-28.1408][-0.0346435,0.849558,-0.526357][0.5,0,0][-0.204529,20.0775,-9.11092][0.0888915,0.969258,-0.229426][0.375,0.75,0][-4.08099,20.0775,-9.87634][-0.00544526,0.969128,-0.246499][0.5,0.75,0][-4.08099,22.0054,-4.32935][-0.0262727,0.593494,-0.804409][0.5,1,0][-4.08099,22.0054,-4.32935][-0.0262727,0.593494,-0.804409][0.5,1,0][-2.38172,22.0054,-3.99383][0.28248,0.593949,-0.753279][0.375,1,0][-0.204529,20.0775,-9.11092][0.0888915,0.969258,-0.229426][0.375,0.75,0][2.9285,18.7584,-16.4745][0.0660961,0.985171,-0.158332][0.375,0.5,0][-4.08099,18.7584,-17.8586][0.000587654,0.985098,-0.171991][0.5,0.5,0][-4.08099,20.0775,-9.87634][-0.00544526,0.969128,-0.246499][0.5,0.75,0][-4.08099,20.0775,-9.87634][-0.00544526,0.969128,-0.246499][0.5,0.75,0][-0.204529,20.0775,-9.11092][0.0888915,0.969258,-0.229426][0.375,0.75,0][2.9285,18.7584,-16.4745][0.0660961,0.985171,-0.158332][0.375,0.5,0][5.74292,17.4393,-23.0893][0.147859,0.93335,-0.3271][0.375,0.25,0][-4.08099,17.4393,-25.0291][0.0115217,0.933038,-0.359593][0.5,0.25,0][-4.08099,18.7584,-17.8586][0.000587654,0.985098,-0.171991][0.5,0.5,0][-4.08099,18.7584,-17.8586][0.000587654,0.985098,-0.171991][0.5,0.5,0][2.9285,18.7584,-16.4745][0.0660961,0.985171,-0.158332][0.375,0.5,0][5.74292,17.4393,-23.0893][0.147859,0.93335,-0.3271][0.375,0.25,0][6.96427,15.5114,-25.9599][0.168496,0.849969,-0.499162][0.375,0,0][-4.08099,15.5114,-28.1408][-0.0346435,0.849558,-0.526357][0.5,0,0][-4.08099,17.4393,-25.0291][0.0115217,0.933038,-0.359593][0.5,0.25,0][-4.08099,17.4393,-25.0291][0.0115217,0.933038,-0.359593][0.5,0.25,0][5.74292,17.4393,-23.0893][0.147859,0.93335,-0.3271][0.375,0.25,0][6.96427,15.5114,-25.9599][0.168496,0.849969,-0.499162][0.375,0,0][2.93121,20.0775,-7.0122][0.169793,0.969364,-0.177494][0.25,0.75,0][-0.204529,20.0775,-9.11092][0.0888915,0.969258,-0.229426][0.375,0.75,0][-2.38172,22.0054,-3.99383][0.28248,0.593949,-0.753279][0.375,1,0][-2.38172,22.0054,-3.99383][0.28248,0.593949,-0.753279][0.375,1,0][-1.00715,22.0054,-3.07384][0.549763,0.593769,-0.587537][0.25,1,0][2.93121,20.0775,-7.0122][0.169793,0.969364,-0.177494][0.25,0.75,0][8.5986,18.7584,-12.6796][0.12155,0.985217,-0.120719][0.25,0.5,0][2.9285,18.7584,-16.4745][0.0660961,0.985171,-0.158332][0.375,0.5,0][-0.204529,20.0775,-9.11092][0.0888915,0.969258,-0.229426][0.375,0.75,0][-0.204529,20.0775,-9.11092][0.0888915,0.969258,-0.229426][0.375,0.75,0][2.93121,20.0775,-7.0122][0.169793,0.969364,-0.177494][0.25,0.75,0][8.5986,18.7584,-12.6796][0.12155,0.985217,-0.120719][0.25,0.5,0][13.6897,17.4393,-17.7706][0.261583,0.933496,-0.245276][0.25,0.25,0][5.74292,17.4393,-23.0893][0.147859,0.93335,-0.3271][0.375,0.25,0][2.9285,18.7584,-16.4745][0.0660961,0.985171,-0.158332][0.375,0.5,0][2.9285,18.7584,-16.4745][0.0660961,0.985171,-0.158332][0.375,0.5,0][8.5986,18.7584,-12.6796][0.12155,0.985217,-0.120719][0.25,0.5,0][13.6897,17.4393,-17.7706][0.261583,0.933496,-0.245276][0.25,0.25,0][15.899,15.5114,-19.98][0.346586,0.850517,-0.395598][0.25,0,0][6.96427,15.5114,-25.9599][0.168496,0.849969,-0.499162][0.375,0,0][5.74292,17.4393,-23.0893][0.147859,0.93335,-0.3271][0.375,0.25,0][5.74292,17.4393,-23.0893][0.147859,0.93335,-0.3271][0.375,0.25,0][13.6897,17.4393,-17.7706][0.261583,0.933496,-0.245276][0.25,0.25,0][15.899,15.5114,-19.98][0.346586,0.850517,-0.395598][0.25,0,0][5.02993,20.0775,-3.87646][0.225129,0.969283,-0.0990288][0.125,0.75,0][2.93121,20.0775,-7.0122][0.169793,0.969364,-0.177494][0.25,0.75,0][-1.00715,22.0054,-3.07384][0.549763,0.593769,-0.587537][0.25,1,0][-1.00715,22.0054,-3.07384][0.549763,0.593769,-0.587537][0.25,1,0][-0.0871627,22.0054,-1.69927][0.733,0.593627,-0.332142][0.125,1,0][5.02993,20.0775,-3.87646][0.225129,0.969283,-0.0990288][0.125,0.75,0][12.3936,18.7584,-7.00949][0.158796,0.985169,-0.065002][0.125,0.5,0][8.5986,18.7584,-12.6796][0.12155,0.985217,-0.120719][0.25,0.5,0][2.93121,20.0775,-7.0122][0.169793,0.969364,-0.177494][0.25,0.75,0][2.93121,20.0775,-7.0122][0.169793,0.969364,-0.177494][0.25,0.75,0][5.02993,20.0775,-3.87646][0.225129,0.969283,-0.0990288][0.125,0.75,0][12.3936,18.7584,-7.00949][0.158796,0.985169,-0.065002][0.125,0.5,0][19.0083,17.4393,-9.82391][0.336164,0.933285,-0.126385][0.125,0.25,0][13.6897,17.4393,-17.7706][0.261583,0.933496,-0.245276][0.25,0.25,0][8.5986,18.7584,-12.6796][0.12155,0.985217,-0.120719][0.25,0.5,0][8.5986,18.7584,-12.6796][0.12155,0.985217,-0.120719][0.25,0.5,0][12.3936,18.7584,-7.00949][0.158796,0.985169,-0.065002][0.125,0.5,0][19.0083,17.4393,-9.82391][0.336164,0.933285,-0.126385][0.125,0.25,0][21.8789,15.5114,-11.0453][0.47191,0.850287,-0.233051][0.125,0,0][15.899,15.5114,-19.98][0.346586,0.850517,-0.395598][0.25,0,0][13.6897,17.4393,-17.7706][0.261583,0.933496,-0.245276][0.25,0.25,0][13.6897,17.4393,-17.7706][0.261583,0.933496,-0.245276][0.25,0.25,0][19.0083,17.4393,-9.82391][0.336164,0.933285,-0.126385][0.125,0.25,0][21.8789,15.5114,-11.0453][0.47191,0.850287,-0.233051][0.125,0,0][5.79535,20.0775,3.99313e-006][0.246499,0.969128,-0.00544524][0,0.75,0][5.02993,20.0775,-3.87646][0.225129,0.969283,-0.0990288][0.125,0.75,0][-0.0871627,22.0054,-1.69927][0.733,0.593627,-0.332142][0.125,1,0][-0.0871627,22.0054,-1.69927][0.733,0.593627,-0.332142][0.125,1,0][0.248362,22.0054,4.36851e-006][0.804409,0.593494,-0.0262729][0,1,0][5.79535,20.0775,3.99313e-006][0.246499,0.969128,-0.00544524][0,0.75,0][13.7776,18.7584,3.73629e-006][0.171991,0.985098,0.000587889][0,0.5,0][12.3936,18.7584,-7.00949][0.158796,0.985169,-0.065002][0.125,0.5,0][5.02993,20.0775,-3.87646][0.225129,0.969283,-0.0990288][0.125,0.75,0][5.02993,20.0775,-3.87646][0.225129,0.969283,-0.0990288][0.125,0.75,0][5.79535,20.0775,3.99313e-006][0.246499,0.969128,-0.00544524][0,0.75,0][13.7776,18.7584,3.73629e-006][0.171991,0.985098,0.000587889][0,0.5,0][20.9481,17.4393,3.47945e-006][0.359593,0.933038,0.011522][0,0.25,0][19.0083,17.4393,-9.82391][0.336164,0.933285,-0.126385][0.125,0.25,0][12.3936,18.7584,-7.00949][0.158796,0.985169,-0.065002][0.125,0.5,0][12.3936,18.7584,-7.00949][0.158796,0.985169,-0.065002][0.125,0.5,0][13.7776,18.7584,3.73629e-006][0.171991,0.985098,0.000587889][0,0.5,0][20.9481,17.4393,3.47945e-006][0.359593,0.933038,0.011522][0,0.25,0][24.0598,15.5114,3.10407e-006][0.526357,0.849558,-0.0346432][0,0,0][21.8789,15.5114,-11.0453][0.47191,0.850287,-0.233051][0.125,0,0][19.0083,17.4393,-9.82391][0.336164,0.933285,-0.126385][0.125,0.25,0][19.0083,17.4393,-9.82391][0.336164,0.933285,-0.126385][0.125,0.25,0][20.9481,17.4393,3.47945e-006][0.359593,0.933038,0.011522][0,0.25,0][24.0598,15.5114,3.10407e-006][0.526357,0.849558,-0.0346432][0,0,0] \ No newline at end of file diff --git a/shareddata/music/music_alliwantforchristmas_midi.mp3 b/shareddata/music/music_alliwantforchristmas_midi.mp3 deleted file mode 100644 index 775695f..0000000 Binary files a/shareddata/music/music_alliwantforchristmas_midi.mp3 and /dev/null differ diff --git a/shareddata/sky/GreySky_bk.png b/shareddata/sky/GreySky_bk.png deleted file mode 100644 index 8561c28..0000000 Binary files a/shareddata/sky/GreySky_bk.png and /dev/null differ diff --git a/shareddata/sky/GreySky_dn.png b/shareddata/sky/GreySky_dn.png deleted file mode 100644 index a4696d6..0000000 Binary files a/shareddata/sky/GreySky_dn.png and /dev/null differ diff --git a/shareddata/sky/GreySky_ft.png b/shareddata/sky/GreySky_ft.png deleted file mode 100644 index 1e06bf9..0000000 Binary files a/shareddata/sky/GreySky_ft.png and /dev/null differ diff --git a/shareddata/sky/GreySky_lf.png b/shareddata/sky/GreySky_lf.png deleted file mode 100644 index 1e06bf9..0000000 Binary files a/shareddata/sky/GreySky_lf.png and /dev/null differ diff --git a/shareddata/sky/GreySky_rt.png b/shareddata/sky/GreySky_rt.png deleted file mode 100644 index 431f5e8..0000000 Binary files a/shareddata/sky/GreySky_rt.png and /dev/null differ diff --git a/shareddata/sky/GreySky_up.png b/shareddata/sky/GreySky_up.png deleted file mode 100644 index bdde771..0000000 Binary files a/shareddata/sky/GreySky_up.png and /dev/null differ diff --git a/shareddata/sky/darksky512_bk.png b/shareddata/sky/darksky512_bk.png deleted file mode 100644 index 33fc5e2..0000000 Binary files a/shareddata/sky/darksky512_bk.png and /dev/null differ diff --git a/shareddata/sky/darksky512_dn.png b/shareddata/sky/darksky512_dn.png deleted file mode 100644 index a94d098..0000000 Binary files a/shareddata/sky/darksky512_dn.png and /dev/null differ diff --git a/shareddata/sky/darksky512_ft.png b/shareddata/sky/darksky512_ft.png deleted file mode 100644 index 87edc89..0000000 Binary files a/shareddata/sky/darksky512_ft.png and /dev/null differ diff --git a/shareddata/sky/darksky512_lf.png b/shareddata/sky/darksky512_lf.png deleted file mode 100644 index 897c709..0000000 Binary files a/shareddata/sky/darksky512_lf.png and /dev/null differ diff --git a/shareddata/sky/darksky512_rt.png b/shareddata/sky/darksky512_rt.png deleted file mode 100644 index 5649f18..0000000 Binary files a/shareddata/sky/darksky512_rt.png and /dev/null differ diff --git a/shareddata/sky/darksky512_up.png b/shareddata/sky/darksky512_up.png deleted file mode 100644 index 892d9b7..0000000 Binary files a/shareddata/sky/darksky512_up.png and /dev/null differ diff --git a/shareddata/sky/greenscreen.png b/shareddata/sky/greenscreen.png deleted file mode 100644 index 7f4698f..0000000 Binary files a/shareddata/sky/greenscreen.png and /dev/null differ diff --git a/shareddata/sky/redsky512_bk.png b/shareddata/sky/redsky512_bk.png deleted file mode 100644 index acef02e..0000000 Binary files a/shareddata/sky/redsky512_bk.png and /dev/null differ diff --git a/shareddata/sky/redsky512_dn.png b/shareddata/sky/redsky512_dn.png deleted file mode 100644 index c8d5494..0000000 Binary files a/shareddata/sky/redsky512_dn.png and /dev/null differ diff --git a/shareddata/sky/redsky512_ft.png b/shareddata/sky/redsky512_ft.png deleted file mode 100644 index 490fc65..0000000 Binary files a/shareddata/sky/redsky512_ft.png and /dev/null differ diff --git a/shareddata/sky/redsky512_lf.png b/shareddata/sky/redsky512_lf.png deleted file mode 100644 index 093afb5..0000000 Binary files a/shareddata/sky/redsky512_lf.png and /dev/null differ diff --git a/shareddata/sky/redsky512_rt.png b/shareddata/sky/redsky512_rt.png deleted file mode 100644 index 7391b01..0000000 Binary files a/shareddata/sky/redsky512_rt.png and /dev/null differ diff --git a/shareddata/sky/redsky512_up.png b/shareddata/sky/redsky512_up.png deleted file mode 100644 index 8b3bf16..0000000 Binary files a/shareddata/sky/redsky512_up.png and /dev/null differ diff --git a/shareddata/textures/10face.png b/shareddata/textures/10face.png deleted file mode 100644 index dbdeec6..0000000 Binary files a/shareddata/textures/10face.png and /dev/null differ diff --git a/shareddata/textures/1Face.png b/shareddata/textures/1Face.png deleted file mode 100644 index b6f7d2d..0000000 Binary files a/shareddata/textures/1Face.png and /dev/null differ diff --git a/shareddata/textures/BillboardBloxMart.png b/shareddata/textures/BillboardBloxMart.png deleted file mode 100644 index f3ce4fd..0000000 Binary files a/shareddata/textures/BillboardBloxMart.png and /dev/null differ diff --git a/shareddata/textures/BillboardBloxflakes.png b/shareddata/textures/BillboardBloxflakes.png deleted file mode 100644 index 9fb633d..0000000 Binary files a/shareddata/textures/BillboardBloxflakes.png and /dev/null differ diff --git a/shareddata/textures/BillboardBloxflakesSanta.png b/shareddata/textures/BillboardBloxflakesSanta.png deleted file mode 100644 index a27cf48..0000000 Binary files a/shareddata/textures/BillboardBloxflakesSanta.png and /dev/null differ diff --git a/shareddata/textures/BillboardCrowbar.png b/shareddata/textures/BillboardCrowbar.png deleted file mode 100644 index 110b5f8..0000000 Binary files a/shareddata/textures/BillboardCrowbar.png and /dev/null differ diff --git a/shareddata/textures/BillboardGodbuilder.png b/shareddata/textures/BillboardGodbuilder.png deleted file mode 100644 index 9927e58..0000000 Binary files a/shareddata/textures/BillboardGodbuilder.png and /dev/null differ diff --git a/shareddata/textures/BillboardHauntedMansion.png b/shareddata/textures/BillboardHauntedMansion.png deleted file mode 100644 index 18e1ce2..0000000 Binary files a/shareddata/textures/BillboardHauntedMansion.png and /dev/null differ diff --git a/shareddata/textures/BillboardImperialZombieArmy.png b/shareddata/textures/BillboardImperialZombieArmy.png deleted file mode 100644 index e4a1b22..0000000 Binary files a/shareddata/textures/BillboardImperialZombieArmy.png and /dev/null differ diff --git a/shareddata/textures/BillboardInsureblox.png b/shareddata/textures/BillboardInsureblox.png deleted file mode 100644 index f612ec2..0000000 Binary files a/shareddata/textures/BillboardInsureblox.png and /dev/null differ diff --git a/shareddata/textures/BillboardLawCenter.png b/shareddata/textures/BillboardLawCenter.png deleted file mode 100644 index 22dc96c..0000000 Binary files a/shareddata/textures/BillboardLawCenter.png and /dev/null differ diff --git a/shareddata/textures/BillboardMicrosoftFlybugRepellent.png b/shareddata/textures/BillboardMicrosoftFlybugRepellent.png deleted file mode 100644 index 7616862..0000000 Binary files a/shareddata/textures/BillboardMicrosoftFlybugRepellent.png and /dev/null differ diff --git a/shareddata/textures/BillboardNukesForKids.png b/shareddata/textures/BillboardNukesForKids.png deleted file mode 100644 index 6cb5954..0000000 Binary files a/shareddata/textures/BillboardNukesForKids.png and /dev/null differ diff --git a/shareddata/textures/BillboardQualityHomes.png b/shareddata/textures/BillboardQualityHomes.png deleted file mode 100644 index 33b4a46..0000000 Binary files a/shareddata/textures/BillboardQualityHomes.png and /dev/null differ diff --git a/shareddata/textures/BillboardRobloxNews.png b/shareddata/textures/BillboardRobloxNews.png deleted file mode 100644 index 1c1e1d0..0000000 Binary files a/shareddata/textures/BillboardRobloxNews.png and /dev/null differ diff --git a/shareddata/textures/BillboardRobloxianWireless.png b/shareddata/textures/BillboardRobloxianWireless.png deleted file mode 100644 index d3a683f..0000000 Binary files a/shareddata/textures/BillboardRobloxianWireless.png and /dev/null differ diff --git a/shareddata/textures/BillboardStudioARE.png b/shareddata/textures/BillboardStudioARE.png deleted file mode 100644 index f62e01a..0000000 Binary files a/shareddata/textures/BillboardStudioARE.png and /dev/null differ diff --git a/shareddata/textures/BillboardWitchShoppe.png b/shareddata/textures/BillboardWitchShoppe.png deleted file mode 100644 index 6deecdb..0000000 Binary files a/shareddata/textures/BillboardWitchShoppe.png and /dev/null differ diff --git a/shareddata/textures/BlueVortex.png b/shareddata/textures/BlueVortex.png deleted file mode 100644 index b0e2226..0000000 Binary files a/shareddata/textures/BlueVortex.png and /dev/null differ diff --git a/shareddata/textures/Disappear.png b/shareddata/textures/Disappear.png deleted file mode 100644 index e5f238e..0000000 Binary files a/shareddata/textures/Disappear.png and /dev/null differ diff --git a/shareddata/textures/FreeBricks.png b/shareddata/textures/FreeBricks.png deleted file mode 100644 index eabfdc7..0000000 Binary files a/shareddata/textures/FreeBricks.png and /dev/null differ diff --git a/shareddata/textures/Metal.png b/shareddata/textures/Metal.png deleted file mode 100644 index 317d8b4..0000000 Binary files a/shareddata/textures/Metal.png and /dev/null differ diff --git a/shareddata/textures/NukeTheWhales.png b/shareddata/textures/NukeTheWhales.png deleted file mode 100644 index b79b099..0000000 Binary files a/shareddata/textures/NukeTheWhales.png and /dev/null differ diff --git a/shareddata/textures/PossiblyJackFrostIDK.png b/shareddata/textures/PossiblyJackFrostIDK.png deleted file mode 100644 index 0ed1d9c..0000000 Binary files a/shareddata/textures/PossiblyJackFrostIDK.png and /dev/null differ diff --git a/shareddata/textures/PowerTools.png b/shareddata/textures/PowerTools.png deleted file mode 100644 index 030ace5..0000000 Binary files a/shareddata/textures/PowerTools.png and /dev/null differ diff --git a/shareddata/textures/Pumpkin.png b/shareddata/textures/Pumpkin.png deleted file mode 100644 index 9c0fcd7..0000000 Binary files a/shareddata/textures/Pumpkin.png and /dev/null differ diff --git a/shareddata/textures/RiddlingSkull.png b/shareddata/textures/RiddlingSkull.png deleted file mode 100644 index 4efa075..0000000 Binary files a/shareddata/textures/RiddlingSkull.png and /dev/null differ diff --git a/shareddata/textures/SECRETCONTEST.png b/shareddata/textures/SECRETCONTEST.png deleted file mode 100644 index 4dc2c75..0000000 Binary files a/shareddata/textures/SECRETCONTEST.png and /dev/null differ diff --git a/shareddata/textures/SECRETCONTEST2.png b/shareddata/textures/SECRETCONTEST2.png deleted file mode 100644 index 42df9ad..0000000 Binary files a/shareddata/textures/SECRETCONTEST2.png and /dev/null differ diff --git a/shareddata/textures/TeapotSign.png b/shareddata/textures/TeapotSign.png deleted file mode 100644 index e33e5f6..0000000 Binary files a/shareddata/textures/TeapotSign.png and /dev/null differ diff --git a/shareddata/textures/TurnItUp.png b/shareddata/textures/TurnItUp.png deleted file mode 100644 index 51cf189..0000000 Binary files a/shareddata/textures/TurnItUp.png and /dev/null differ diff --git a/shareddata/textures/Vortex.png b/shareddata/textures/Vortex.png deleted file mode 100644 index ef8c703..0000000 Binary files a/shareddata/textures/Vortex.png and /dev/null differ diff --git a/shareddata/textures/Wood.png b/shareddata/textures/Wood.png deleted file mode 100644 index 8773940..0000000 Binary files a/shareddata/textures/Wood.png and /dev/null differ diff --git a/shareddata/textures/YellowCap.png b/shareddata/textures/YellowCap.png deleted file mode 100644 index 20a8728..0000000 Binary files a/shareddata/textures/YellowCap.png and /dev/null differ diff --git a/shareddata/textures/cake.png b/shareddata/textures/cake.png deleted file mode 100644 index 7dcf3ce..0000000 Binary files a/shareddata/textures/cake.png and /dev/null differ diff --git a/shareddata/textures/cap.png b/shareddata/textures/cap.png deleted file mode 100644 index c24dbf8..0000000 Binary files a/shareddata/textures/cap.png and /dev/null differ diff --git a/shareddata/textures/easteregg.png b/shareddata/textures/easteregg.png deleted file mode 100644 index 30948f4..0000000 Binary files a/shareddata/textures/easteregg.png and /dev/null differ diff --git a/shareddata/textures/fish.png b/shareddata/textures/fish.png deleted file mode 100644 index c8df0b2..0000000 Binary files a/shareddata/textures/fish.png and /dev/null differ diff --git a/shareddata/textures/flush.png b/shareddata/textures/flush.png deleted file mode 100644 index db07e1a..0000000 Binary files a/shareddata/textures/flush.png and /dev/null differ diff --git a/shareddata/textures/health.png b/shareddata/textures/health.png deleted file mode 100644 index fbdc5ec..0000000 Binary files a/shareddata/textures/health.png and /dev/null differ diff --git a/shareddata/textures/healthgui/Bar.png b/shareddata/textures/healthgui/Bar.png deleted file mode 100644 index 9c6d9d4..0000000 Binary files a/shareddata/textures/healthgui/Bar.png and /dev/null differ diff --git a/shareddata/textures/healthgui/BarRed.png b/shareddata/textures/healthgui/BarRed.png deleted file mode 100644 index 11504fb..0000000 Binary files a/shareddata/textures/healthgui/BarRed.png and /dev/null differ diff --git a/shareddata/textures/healthgui/HurtOverlay.png b/shareddata/textures/healthgui/HurtOverlay.png deleted file mode 100644 index 8ba9733..0000000 Binary files a/shareddata/textures/healthgui/HurtOverlay.png and /dev/null differ diff --git a/shareddata/textures/healthgui/bkg.png b/shareddata/textures/healthgui/bkg.png deleted file mode 100644 index 1234597..0000000 Binary files a/shareddata/textures/healthgui/bkg.png and /dev/null differ diff --git a/shareddata/textures/healthgui/label.png b/shareddata/textures/healthgui/label.png deleted file mode 100644 index 45e055f..0000000 Binary files a/shareddata/textures/healthgui/label.png and /dev/null differ diff --git a/shareddata/textures/napkincarpet.png b/shareddata/textures/napkincarpet.png deleted file mode 100644 index d602852..0000000 Binary files a/shareddata/textures/napkincarpet.png and /dev/null differ diff --git a/shareddata/textures/plug.png b/shareddata/textures/plug.png deleted file mode 100644 index cc641c7..0000000 Binary files a/shareddata/textures/plug.png and /dev/null differ diff --git a/shareddata/textures/skullface.png b/shareddata/textures/skullface.png deleted file mode 100644 index f48c28a..0000000 Binary files a/shareddata/textures/skullface.png and /dev/null differ diff --git a/shareddata/textures/stripe.png b/shareddata/textures/stripe.png deleted file mode 100644 index 64fa4cb..0000000 Binary files a/shareddata/textures/stripe.png and /dev/null differ diff --git a/shareddata/textures/wall.png b/shareddata/textures/wall.png deleted file mode 100644 index 7d16059..0000000 Binary files a/shareddata/textures/wall.png and /dev/null differ diff --git a/shareddata/textures/wood2.png b/shareddata/textures/wood2.png deleted file mode 100644 index 5f05344..0000000 Binary files a/shareddata/textures/wood2.png and /dev/null differ